diff --git a/api/.env.development b/api/.env.development deleted file mode 100644 index 574941b..0000000 --- a/api/.env.development +++ /dev/null @@ -1,12 +0,0 @@ -# DATABASE SETTINGS -DB_HOST=127.0.0.1 -DB_PORT=3306 -DB_DATABASE=ranger_unit_tracker -DB_USERNAME=dev -DB_PASSWORD=dev - -# AUTH SETTINGS -AUTH_MODE=mock # mock bypasses authentik - -# SERVER SETTINGS -SERVER_PORT=3000 \ No newline at end of file diff --git a/api/migrations/20251029012626_init_database.down.sql b/api/migrations/20251231010446_initial.down.sql similarity index 100% rename from api/migrations/20251029012626_init_database.down.sql rename to api/migrations/20251231010446_initial.down.sql diff --git a/api/migrations/20251029012626_init_database.up.sql b/api/migrations/20251231010446_initial.up.sql similarity index 50% rename from api/migrations/20251029012626_init_database.up.sql rename to api/migrations/20251231010446_initial.up.sql index b80df9b..85e173a 100644 --- a/api/migrations/20251029012626_init_database.up.sql +++ b/api/migrations/20251231010446_initial.up.sql @@ -1,8 +1,8 @@ -- -------------------------------------------------------- --- Host: gs.iceberg-gaming.com --- Server version: 10.6.5-MariaDB - mariadb.org binary distribution +-- Host: iceberg-gaming.com +-- Server version: 10.6.5-MariaDB-log - mariadb.org binary distribution -- Server OS: Win64 --- HeidiSQL Version: 12.12.0.7122 +-- HeidiSQL Version: 12.13.0.7147 -- -------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; @@ -15,11 +15,29 @@ /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; --- Dumping database structure for ranger_unit_tracker -CREATE DATABASE IF NOT EXISTS `ranger_unit_tracker` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci */; -USE `ranger_unit_tracker`; +-- Dumping database structure for milsim_website_development +CREATE DATABASE IF NOT EXISTS `milsim_website_development` /*!40100 DEFAULT CHARACTER SET utf8mb4 */; +USE `milsim_website_development`; --- Dumping structure for table ranger_unit_tracker.applications +-- Dumping structure for table milsim_website_development.application_comments +CREATE TABLE IF NOT EXISTS `application_comments` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `post_content` text COLLATE utf8mb4_unicode_ci NOT NULL, + `application_id` int(11) NOT NULL, + `poster_id` int(11) NOT NULL, + `post_time` timestamp NOT NULL DEFAULT current_timestamp(), + `last_modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', + `admin_only` tinyint(1) DEFAULT 0, + PRIMARY KEY (`id`), + KEY `poster_id` (`poster_id`), + KEY `application_id` (`application_id`), + CONSTRAINT `application_comments_ibfk_1` FOREIGN KEY (`application_id`) REFERENCES `applications` (`id`), + CONSTRAINT `application_comments_ibfk_2` FOREIGN KEY (`poster_id`) REFERENCES `members` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- Data exporting was unselected. + +-- Dumping structure for table milsim_website_development.applications CREATE TABLE IF NOT EXISTS `applications` ( `id` int(11) NOT NULL AUTO_INCREMENT, `member_id` int(11) NOT NULL, @@ -31,34 +49,20 @@ CREATE TABLE IF NOT EXISTS `applications` ( `denied_at` datetime DEFAULT NULL, `app_status` varchar(20) GENERATED ALWAYS AS (case when `approved_at` is not null then 'Accepted' when `denied_at` is not null then 'Denied' else 'Pending' end) STORED, `decision_at` datetime GENERATED ALWAYS AS (coalesce(`approved_at`,`denied_at`)) STORED, + `approved_by` int(11) DEFAULT NULL, PRIMARY KEY (`id`), - UNIQUE KEY `member_id` (`member_id`), + KEY `member_id` (`member_id`), + KEY `FK_applications_members` (`approved_by`), + CONSTRAINT `FK_applications_members` FOREIGN KEY (`approved_by`) REFERENCES `members` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_app_member` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, CONSTRAINT `chk_json_valid` CHECK (json_valid(`app_data`)), CONSTRAINT `chk_app_version` CHECK (`app_version` >= 1), CONSTRAINT `chk_exclusive_decision` CHECK (`approved_at` is null or `denied_at` is null) -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.application_comments -CREATE TABLE IF NOT EXISTS `application_comments` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `post_content` text COLLATE utf8mb4_unicode_ci NOT NULL, - `application_id` int(11) NOT NULL, - `poster_id` int(11) NOT NULL, - `post_time` timestamp NOT NULL DEFAULT current_timestamp(), - `last_modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`id`), - KEY `poster_id` (`poster_id`), - KEY `application_id` (`application_id`), - CONSTRAINT `application_comments_ibfk_1` FOREIGN KEY (`application_id`) REFERENCES `applications` (`id`), - CONSTRAINT `application_comments_ibfk_2` FOREIGN KEY (`poster_id`) REFERENCES `members` (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- Data exporting was unselected. - --- Dumping structure for table ranger_unit_tracker.arma_maps +-- Dumping structure for table milsim_website_development.arma_maps CREATE TABLE IF NOT EXISTS `arma_maps` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map` varchar(50) DEFAULT NULL, @@ -68,11 +72,11 @@ CREATE TABLE IF NOT EXISTS `arma_maps` ( `workshop_id` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `map` (`map`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='Contains a list of Arma3 Maps'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Contains a list of Arma3 Maps'; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.awards +-- Dumping structure for table milsim_website_development.awards CREATE TABLE IF NOT EXISTS `awards` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` longtext DEFAULT NULL, @@ -87,38 +91,44 @@ CREATE TABLE IF NOT EXISTS `awards` ( `deleted_at` datetime(3) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_awards_deleted` (`deleted`) -) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8mb4 COMMENT='Contains a list of Awards for the unit.'; +) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4 COMMENT='Contains a list of Awards for the unit.'; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.calendar_events +-- Dumping structure for table milsim_website_development.calendar_events CREATE TABLE IF NOT EXISTS `calendar_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `start` datetime NOT NULL, `end` datetime NOT NULL, `location` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `color` char(7) COLLATE utf8mb4_unicode_ci NOT NULL, + `color` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000', `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `creator` int(11) DEFAULT NULL, `cancelled` tinyint(1) DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `full_day` tinyint(4) DEFAULT NULL, + `guilded_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `guilded_channel_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_creator` (`creator`), - CONSTRAINT `fk_creator` FOREIGN KEY (`creator`) REFERENCES `members` (`id`) ON DELETE SET NULL ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + CONSTRAINT `FK_calendar_events_members` FOREIGN KEY (`creator`) REFERENCES `members` (`id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=3346 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.calendar_events_signups +-- Dumping structure for table milsim_website_development.calendar_events_signups CREATE TABLE IF NOT EXISTS `calendar_events_signups` ( `member_id` int(11) NOT NULL, `event_id` int(11) NOT NULL, `status` enum('not_attending','attending','maybe') COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `guilded_member_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `guilded_event_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`member_id`,`event_id`), + UNIQUE KEY `guilded_member_id_guilded_event_id` (`guilded_member_id`,`guilded_event_id`), KEY `fk_signup_event` (`event_id`), CONSTRAINT `fk_signup_event` FOREIGN KEY (`event_id`) REFERENCES `calendar_events` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_signup_member` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON DELETE CASCADE @@ -126,69 +136,32 @@ CREATE TABLE IF NOT EXISTS `calendar_events_signups` ( -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.courses -CREATE TABLE IF NOT EXISTS `courses` ( +-- Dumping structure for table milsim_website_development.course_attendee_roles +CREATE TABLE IF NOT EXISTS `course_attendee_roles` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(100) NOT NULL, - `short_name` varchar(10) NOT NULL, - `category` varchar(100) NOT NULL, - `description` varchar(1000) DEFAULT NULL, - `image_url` varchar(255) DEFAULT NULL, - `created_at` datetime NOT NULL DEFAULT current_timestamp(), - `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT 0, - `prereq_id` int(11) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `name` (`name`), - UNIQUE KEY `shortName` (`short_name`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4; - --- Data exporting was unselected. - --- Dumping structure for table ranger_unit_tracker.courses_single -CREATE TABLE IF NOT EXISTS `courses_single` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(100) NOT NULL, - `short_name` varchar(10) NOT NULL, - `category` varchar(100) NOT NULL, - `description` varchar(1000) DEFAULT NULL, - `image_url` varchar(255) DEFAULT NULL, - `created_at` datetime NOT NULL DEFAULT current_timestamp(), - `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT 0, - `prereq_id` int(11) DEFAULT NULL, - `require_qual` tinyint(4) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `name` (`name`), - UNIQUE KEY `shortName` (`short_name`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4; - --- Data exporting was unselected. - --- Dumping structure for table ranger_unit_tracker.courses_sme -CREATE TABLE IF NOT EXISTS `courses_sme` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `course_id` int(11) NOT NULL DEFAULT 0, - `member_id` int(11) NOT NULL DEFAULT 0, + `name` varchar(50) DEFAULT NULL, + `description` text DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `deleted` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), - KEY `fk_course_sme_course_id` (`course_id`), - KEY `fk_course_sme_member_id` (`member_id`), - CONSTRAINT `fk_course_sme_course_id` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON UPDATE CASCADE, - CONSTRAINT `fk_course_sme_member_id` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4; + UNIQUE KEY `type` (`name`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='Changed from course_attendee_type to event_attendee_type'; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.course_attendees +-- Dumping structure for table milsim_website_development.course_attendees CREATE TABLE IF NOT EXISTS `course_attendees` ( - `passed` tinyint(1) DEFAULT 0, + `passed_bookwork` tinyint(1) NOT NULL DEFAULT 0, + `passed_qual` tinyint(1) NOT NULL DEFAULT 0, `attendee_id` int(11) NOT NULL, `course_event_id` int(11) NOT NULL, `attendee_role_id` int(11) DEFAULT NULL, `created_at` datetime NOT NULL DEFAULT current_timestamp(), `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `remarks` text DEFAULT NULL, + `expired` tinyint(4) NOT NULL DEFAULT 0, + `expired_reason` varchar(50) NOT NULL DEFAULT '0', PRIMARY KEY (`attendee_id`,`course_event_id`) USING BTREE, KEY `courseInstanceId` (`course_event_id`) USING BTREE, KEY `fk_CourseInstancesMembers_CoureseAttendeeType_id` (`attendee_role_id`) USING BTREE, @@ -199,21 +172,7 @@ CREATE TABLE IF NOT EXISTS `course_attendees` ( -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.course_attendee_roles -CREATE TABLE IF NOT EXISTS `course_attendee_roles` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(50) DEFAULT NULL, - `description` text DEFAULT NULL, - `created_at` datetime DEFAULT current_timestamp(), - `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `type` (`name`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COMMENT='Changed from course_attendee_type to event_attendee_type'; - --- Data exporting was unselected. - --- Dumping structure for table ranger_unit_tracker.course_category +-- Dumping structure for table milsim_website_development.course_category CREATE TABLE IF NOT EXISTS `course_category` ( `id` int(11) DEFAULT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL @@ -221,27 +180,34 @@ CREATE TABLE IF NOT EXISTS `course_category` ( -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.course_events +-- Dumping structure for table milsim_website_development.course_events CREATE TABLE IF NOT EXISTS `course_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, `course_id` int(11) DEFAULT NULL, `event_type` int(11) DEFAULT NULL, `event_date` datetime NOT NULL, - `guilded_event_id` int(11) DEFAULT NULL, + `guilded_event_id` varchar(50) DEFAULT NULL, + `guilded_report_id` varchar(50) DEFAULT NULL, `created_at` datetime NOT NULL DEFAULT current_timestamp(), `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `deleted` tinyint(4) DEFAULT 0, `report_url` varchar(2048) DEFAULT NULL, + `remarks` text DEFAULT NULL, + `created_by` int(11) DEFAULT NULL, + `hasBookwork` tinyint(4) DEFAULT NULL, + `hasQual` tinyint(4) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_course_events_event_type_id` (`event_type`) USING BTREE, KEY `courseId` (`course_id`) USING BTREE, + KEY `fk_course_events_created_by` (`created_by`), CONSTRAINT `fk_coures_events_course_id` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON UPDATE CASCADE, + CONSTRAINT `fk_course_events_created_by` FOREIGN KEY (`created_by`) REFERENCES `members` (`id`), CONSTRAINT `fk_course_events_event_type_id` FOREIGN KEY (`event_type`) REFERENCES `event_types` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.course_qualified_trainers +-- Dumping structure for table milsim_website_development.course_qualified_trainers CREATE TABLE IF NOT EXISTS `course_qualified_trainers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `member_id` int(11) DEFAULT NULL, @@ -258,11 +224,48 @@ CREATE TABLE IF NOT EXISTS `course_qualified_trainers` ( CONSTRAINT `fk_coures_qualified_trainers_coures_events_id` FOREIGN KEY (`instance_qualified_id`) REFERENCES `course_events` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_coures_qualified_trainers_coures_id` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_coures_qualified_trainers_mebers_id` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='Contains a linked group of qualified trainers'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Contains a linked group of qualified trainers'; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.event_types +-- Dumping structure for table milsim_website_development.courses +CREATE TABLE IF NOT EXISTS `courses` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) NOT NULL, + `short_name` varchar(10) NOT NULL, + `category` varchar(100) NOT NULL, + `description` varchar(1000) DEFAULT NULL, + `image_url` varchar(255) DEFAULT NULL, + `created_at` datetime NOT NULL DEFAULT current_timestamp(), + `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `deleted` tinyint(4) DEFAULT 0, + `prereq_id` int(11) DEFAULT NULL, + `hasBookwork` tinyint(1) NOT NULL DEFAULT 0, + `hasQual` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`), + UNIQUE KEY `shortName` (`short_name`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4; + +-- Data exporting was unselected. + +-- Dumping structure for table milsim_website_development.courses_sme +CREATE TABLE IF NOT EXISTS `courses_sme` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` int(11) NOT NULL DEFAULT 0, + `member_id` int(11) NOT NULL DEFAULT 0, + `created_at` datetime DEFAULT current_timestamp(), + `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`id`), + KEY `fk_course_sme_course_id` (`course_id`), + KEY `fk_course_sme_member_id` (`member_id`), + CONSTRAINT `fk_course_sme_course_id` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON UPDATE CASCADE, + CONSTRAINT `fk_course_sme_member_id` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- Data exporting was unselected. + +-- Dumping structure for table milsim_website_development.event_types CREATE TABLE IF NOT EXISTS `event_types` ( `id` int(11) NOT NULL AUTO_INCREMENT, `event_type` varchar(100) DEFAULT NULL, @@ -273,7 +276,7 @@ CREATE TABLE IF NOT EXISTS `event_types` ( -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.guilded_events +-- Dumping structure for table milsim_website_development.guilded_events CREATE TABLE IF NOT EXISTS `guilded_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, `channel_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, @@ -287,29 +290,52 @@ CREATE TABLE IF NOT EXISTS `guilded_events` ( `url` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `calendar_id_event_id` (`channel_id`,`event_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=3267 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.leave_of_absences +-- Dumping structure for table milsim_website_development.leave_of_absences CREATE TABLE IF NOT EXISTS `leave_of_absences` ( `id` int(11) NOT NULL AUTO_INCREMENT, `member_id` int(11) DEFAULT NULL, - `filed_date` datetime NOT NULL, - `start_date` datetime NOT NULL, - `end_date` datetime NOT NULL, - `reason` text DEFAULT NULL, - `created_at` datetime NOT NULL DEFAULT current_timestamp(), - `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `filed_date` datetime NOT NULL COMMENT 'Date that the LOA was filed', + `start_date` datetime NOT NULL COMMENT 'Date that the LOA should Start', + `end_date` datetime NOT NULL COMMENT 'Date that the LOA should End', + `extended_till` datetime DEFAULT NULL, + `type_id` int(11) DEFAULT NULL, + `reason` text DEFAULT NULL COMMENT 'Reason a person has put in the LOA', + `created_by_id` int(11) DEFAULT NULL, `deleted` tinyint(4) NOT NULL DEFAULT 0, + `expired` tinyint(4) DEFAULT NULL COMMENT 'If a LOA is Expired or not', + `closed_by` int(11) DEFAULT NULL COMMENT 'Who Closed the LOA if it was manually Closed', + `ended_at` date DEFAULT NULL, + `closed` tinyint(4) DEFAULT NULL COMMENT 'If a LOA was closed early or ', + `created_at` datetime NOT NULL DEFAULT current_timestamp() COMMENT 'Database Record Creation Date', + `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Database Record Modified Date', PRIMARY KEY (`id`), KEY `fk_leave_of_absesnse_members_id` (`member_id`) USING BTREE, + KEY `FK_leave_of_absences_leave_of_absences_types` (`type_id`), + KEY `c` (`created_by_id`), + CONSTRAINT `FK_leave_of_absences_leave_of_absences_types` FOREIGN KEY (`type_id`) REFERENCES `leave_of_absences_types` (`id`) ON UPDATE CASCADE, + CONSTRAINT `c` FOREIGN KEY (`created_by_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_leave_of_absesnse_members_id` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.members +-- Dumping structure for table milsim_website_development.leave_of_absences_types +CREATE TABLE IF NOT EXISTS `leave_of_absences_types` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, + `max_length_days` int(11) NOT NULL DEFAULT 0, + `extendable` tinyint(4) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- Data exporting was unselected. + +-- Dumping structure for table milsim_website_development.members CREATE TABLE IF NOT EXISTS `members` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, @@ -329,18 +355,21 @@ CREATE TABLE IF NOT EXISTS `members` ( `remarks` text DEFAULT NULL, `authentik_sub` varchar(255) DEFAULT NULL, `authentik_issuer` varchar(255) DEFAULT NULL, - `state` enum('guest','applicant','member','retired','banned','denied') NOT NULL DEFAULT 'guest', + `state` enum('guest','applicant','member','retired','banned','denied') NOT NULL DEFAULT 'member', + `displayName` varchar(50) DEFAULT NULL, + `last_activity` datetime DEFAULT NULL, + `last_login` datetime DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`), UNIQUE KEY `steamId64` (`steam_id_64`) USING BTREE, UNIQUE KEY `discordId` (`discord_id`) USING BTREE, UNIQUE KEY `guilded_id` (`guilded_id`), UNIQUE KEY `uk_authentik_identity` (`authentik_issuer`,`authentik_sub`) -) ENGINE=InnoDB AUTO_INCREMENT=191 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=3349 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.members_awards +-- Dumping structure for table milsim_website_development.members_awards CREATE TABLE IF NOT EXISTS `members_awards` ( `id` int(11) NOT NULL AUTO_INCREMENT, `member_id` int(11) DEFAULT NULL, @@ -357,7 +386,7 @@ CREATE TABLE IF NOT EXISTS `members_awards` ( -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.members_qualifications +-- Dumping structure for table milsim_website_development.members_qualifications CREATE TABLE IF NOT EXISTS `members_qualifications` ( `id` int(11) NOT NULL AUTO_INCREMENT, `member_id` int(11) DEFAULT 0, @@ -375,24 +404,32 @@ CREATE TABLE IF NOT EXISTS `members_qualifications` ( -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.members_ranks +-- Dumping structure for table milsim_website_development.members_ranks CREATE TABLE IF NOT EXISTS `members_ranks` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `member_id` int(11) DEFAULT NULL, - `rank_id` int(11) DEFAULT NULL, - `event_date` datetime DEFAULT NULL, - `created_at` datetime DEFAULT current_timestamp(), - `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `member_id` int(11) NOT NULL, + `rank_id` int(11) NOT NULL, + `authorized_by_id` int(11) DEFAULT NULL, + `created_by_id` int(11) DEFAULT NULL, + `reason` varchar(50) DEFAULT NULL, + `start_date` datetime NOT NULL DEFAULT current_timestamp(), + `end_date` datetime DEFAULT NULL, + `created_at` datetime NOT NULL DEFAULT current_timestamp(), + `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`), KEY `fk_members_ranks_members_id` (`member_id`), KEY `fk_members_ranks_rank_id` (`rank_id`), - CONSTRAINT `fk_members_ranks_members_id` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, + KEY `FK_members_ranks_members_2` (`authorized_by_id`), + KEY `FK_members_ranks_members_3` (`created_by_id`), + CONSTRAINT `FK_members_ranks_members` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, + CONSTRAINT `FK_members_ranks_members_2` FOREIGN KEY (`authorized_by_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, + CONSTRAINT `FK_members_ranks_members_3` FOREIGN KEY (`created_by_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_members_ranks_rank_id` FOREIGN KEY (`rank_id`) REFERENCES `ranks` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=210 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.members_roles +-- Dumping structure for table milsim_website_development.members_roles CREATE TABLE IF NOT EXISTS `members_roles` ( `member_id` int(11) NOT NULL, `role_id` int(11) NOT NULL, @@ -404,27 +441,57 @@ CREATE TABLE IF NOT EXISTS `members_roles` ( -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.members_statuses +-- Dumping structure for table milsim_website_development.members_statuses CREATE TABLE IF NOT EXISTS `members_statuses` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `member_id` int(11) DEFAULT NULL, - `status_id` int(11) DEFAULT NULL, - `reason_id` int(11) DEFAULT NULL, - `event_date` datetime DEFAULT NULL, - `created_at` datetime DEFAULT current_timestamp(), - `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `member_id` int(11) NOT NULL, + `status_id` int(11) NOT NULL, + `authorized_by_id` int(11) DEFAULT NULL, + `created_by_id` int(11) DEFAULT NULL, + `reason` varchar(50) DEFAULT NULL, + `start_date` datetime NOT NULL DEFAULT current_timestamp(), + `end_date` datetime DEFAULT NULL, + `created_at` datetime NOT NULL DEFAULT current_timestamp(), + `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`), KEY `fk_members_statuses_status_id` (`status_id`), KEY `fk_members_statuses_member_id` (`member_id`), - KEY `fk_members_statuses_statuses_reasons_id` (`reason_id`) USING BTREE, - CONSTRAINT `fk_members_statuses_member_id` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, - CONSTRAINT `fk_members_statuses_status_id` FOREIGN KEY (`status_id`) REFERENCES `statuses` (`id`) ON UPDATE CASCADE, - CONSTRAINT `members_statuses_FK` FOREIGN KEY (`reason_id`) REFERENCES `statuses_reasons` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=207 DEFAULT CHARSET=utf8mb4; + KEY `FK_members_statuses_ranger_unit_tracker.members` (`authorized_by_id`), + KEY `FK_members_statuses_ranger_unit_tracker.members_2` (`created_by_id`), + CONSTRAINT `FK_members_statuses_members` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, + CONSTRAINT `FK_members_statuses_ranger_unit_tracker.members` FOREIGN KEY (`authorized_by_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, + CONSTRAINT `FK_members_statuses_ranger_unit_tracker.members_2` FOREIGN KEY (`created_by_id`) REFERENCES `members` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_members_statuses_status_id` FOREIGN KEY (`status_id`) REFERENCES `statuses` (`id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=90 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.mission_attendee_roles +-- Dumping structure for table milsim_website_development.members_unit +CREATE TABLE IF NOT EXISTS `members_unit` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `member_id` int(11) NOT NULL, + `unit_id` int(11) NOT NULL, + `authorized_by_id` int(11) NOT NULL, + `created_by_id` int(11) NOT NULL, + `reason` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `start_date` datetime NOT NULL DEFAULT current_timestamp(), + `end_date` datetime DEFAULT NULL, + `created_at` datetime DEFAULT current_timestamp(), + `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`id`), + KEY `FK_members_unit_units` (`unit_id`), + KEY `FK_members_unit_members` (`member_id`), + KEY `FK_members_unit_members_2` (`authorized_by_id`), + KEY `FK_members_unit_members_3` (`created_by_id`), + CONSTRAINT `FK_members_unit_members` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, + CONSTRAINT `FK_members_unit_members_2` FOREIGN KEY (`authorized_by_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, + CONSTRAINT `FK_members_unit_members_3` FOREIGN KEY (`created_by_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, + CONSTRAINT `FK_members_unit_units` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=96 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- Data exporting was unselected. + +-- Dumping structure for table milsim_website_development.mission_attendee_roles CREATE TABLE IF NOT EXISTS `mission_attendee_roles` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, @@ -433,11 +500,30 @@ CREATE TABLE IF NOT EXISTS `mission_attendee_roles` ( `deleted` tinyint(4) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `role_name` (`name`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.mission_events +-- Dumping structure for table milsim_website_development.mission_event_attendees +CREATE TABLE IF NOT EXISTS `mission_event_attendees` ( + `id` int(11) DEFAULT NULL, + `member_id` int(11) NOT NULL, + `event_id` int(11) NOT NULL, + `member_role_id` int(11) DEFAULT NULL, + `event_type` int(11) NOT NULL, + `created_at` datetime NOT NULL DEFAULT current_timestamp(), + `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + PRIMARY KEY (`member_id`,`event_id`) USING BTREE, + KEY `fk_mission_event_attendees_role_id` (`member_role_id`), + KEY `fk_mission_event_events_id` (`event_id`), + CONSTRAINT `fk_member_event_member_id` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, + CONSTRAINT `fk_mission_event_attendees_role_id` FOREIGN KEY (`member_role_id`) REFERENCES `mission_attendee_roles` (`id`) ON UPDATE CASCADE, + CONSTRAINT `fk_mission_event_events_id` FOREIGN KEY (`event_id`) REFERENCES `mission_events` (`id`) ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- Data exporting was unselected. + +-- Dumping structure for table milsim_website_development.mission_events CREATE TABLE IF NOT EXISTS `mission_events` ( `id` int(11) NOT NULL AUTO_INCREMENT, `event_type_id` int(11) NOT NULL, @@ -459,30 +545,11 @@ CREATE TABLE IF NOT EXISTS `mission_events` ( CONSTRAINT `fk_events_author_id` FOREIGN KEY (`author_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_mission_event_map_id` FOREIGN KEY (`map_id`) REFERENCES `arma_maps` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_mission_event_type_id` FOREIGN KEY (`event_type_id`) REFERENCES `event_types` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; - --- Data exporting was unselected. - --- Dumping structure for table ranger_unit_tracker.mission_event_attendees -CREATE TABLE IF NOT EXISTS `mission_event_attendees` ( - `id` int(11) DEFAULT NULL, - `member_id` int(11) NOT NULL, - `event_id` int(11) NOT NULL, - `member_role_id` int(11) DEFAULT NULL, - `event_type` int(11) NOT NULL, - `created_at` datetime NOT NULL DEFAULT current_timestamp(), - `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - PRIMARY KEY (`member_id`,`event_id`) USING BTREE, - KEY `fk_mission_event_attendees_role_id` (`member_role_id`), - KEY `fk_mission_event_events_id` (`event_id`), - CONSTRAINT `fk_member_event_member_id` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, - CONSTRAINT `fk_mission_event_attendees_role_id` FOREIGN KEY (`member_role_id`) REFERENCES `mission_attendee_roles` (`id`) ON UPDATE CASCADE, - CONSTRAINT `fk_mission_event_events_id` FOREIGN KEY (`event_id`) REFERENCES `mission_events` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.qualifications +-- Dumping structure for table milsim_website_development.qualifications CREATE TABLE IF NOT EXISTS `qualifications` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT NULL, @@ -497,11 +564,11 @@ CREATE TABLE IF NOT EXISTS `qualifications` ( `deleted` tinytext DEFAULT '0', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `name` (`name`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8mb4 COMMENT='Contains a list of Member Qualifications for the unit.'; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Contains a list of Member Qualifications for the unit.'; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.ranks +-- Dumping structure for table milsim_website_development.ranks CREATE TABLE IF NOT EXISTS `ranks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` longtext DEFAULT NULL, @@ -513,17 +580,19 @@ CREATE TABLE IF NOT EXISTS `ranks` ( `updated_at` datetime(3) NOT NULL, `deleted` tinyint(1) NOT NULL DEFAULT 0, `deleted_at` datetime(3) DEFAULT NULL, + `discord_role_id` varchar(50) DEFAULT NULL, + `teamspeak_role_id` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `shortName` (`short_name`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.roles +-- Dumping structure for table milsim_website_development.roles CREATE TABLE IF NOT EXISTS `roles` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, - `color` varchar(9) COLLATE utf8mb4_unicode_ci NOT NULL, + `color` varchar(9) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#000000', `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) @@ -531,33 +600,57 @@ CREATE TABLE IF NOT EXISTS `roles` ( -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.statuses -CREATE TABLE IF NOT EXISTS `statuses` ( +-- Dumping structure for table milsim_website_development.site_config +CREATE TABLE IF NOT EXISTS `site_config` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(100) NOT NULL, - `created_at` datetime NOT NULL DEFAULT current_timestamp(), - `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT 0, + `discord_guild_id` int(11) DEFAULT NULL, + `application_unit_on_accept` int(11) DEFAULT NULL, + `application_rank_on_accept` int(11) DEFAULT NULL, + `application_status_on_accept` int(11) DEFAULT NULL, + `loa_consecutive_gap_days` int(11) DEFAULT 0, + `loa_consecutive_count` int(11) DEFAULT 0, PRIMARY KEY (`id`), - UNIQUE KEY `name` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4; + KEY `FK_site_config_units` (`application_unit_on_accept`), + KEY `FK_site_config_ranks` (`application_rank_on_accept`), + KEY `FK_site_config_statuses` (`application_status_on_accept`), + CONSTRAINT `FK_site_config_ranks` FOREIGN KEY (`application_rank_on_accept`) REFERENCES `ranks` (`id`) ON UPDATE CASCADE, + CONSTRAINT `FK_site_config_statuses` FOREIGN KEY (`application_status_on_accept`) REFERENCES `statuses` (`id`) ON UPDATE CASCADE, + CONSTRAINT `FK_site_config_units` FOREIGN KEY (`application_unit_on_accept`) REFERENCES `units` (`id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Data exporting was unselected. --- Dumping structure for table ranger_unit_tracker.statuses_reasons -CREATE TABLE IF NOT EXISTS `statuses_reasons` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `created_at` datetime DEFAULT current_timestamp(), - `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `name` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Contains a list of Reasons that a Status Change occured. This helps determine Promotions, Demotions, Transfers, Joins, Leaves.'; +-- Dumping structure for procedure milsim_website_development.sp_accept_new_recruit_validation +DELIMITER // +// +DELIMITER ; --- Data exporting was unselected. +-- Dumping structure for procedure milsim_website_development.sp_GetCalendarEventSignups +DELIMITER // +// +DELIMITER ; --- Dumping structure for table ranger_unit_tracker.status_change_requests +-- Dumping structure for procedure milsim_website_development.sp_manual_update_report +DELIMITER // +// +DELIMITER ; + +-- Dumping structure for procedure milsim_website_development.sp_update_member_rank +DELIMITER // +// +DELIMITER ; + +-- Dumping structure for procedure milsim_website_development.sp_update_member_status +DELIMITER // +// +DELIMITER ; + +-- Dumping structure for procedure milsim_website_development.sp_update_member_unit +DELIMITER // +// +DELIMITER ; + +-- Dumping structure for table milsim_website_development.status_change_requests CREATE TABLE IF NOT EXISTS `status_change_requests` ( `id` int(11) NOT NULL, `member_id` int(11) DEFAULT NULL, @@ -586,7 +679,58 @@ CREATE TABLE IF NOT EXISTS `status_change_requests` ( -- Data exporting was unselected. --- Dumping structure for view ranger_unit_tracker.view_member_rank_status_all +-- Dumping structure for table milsim_website_development.statuses +CREATE TABLE IF NOT EXISTS `statuses` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) NOT NULL, + `created_at` datetime NOT NULL DEFAULT current_timestamp(), + `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `deleted` tinyint(4) DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4; + +-- Data exporting was unselected. + +-- Dumping structure for table milsim_website_development.statuses_reasons +CREATE TABLE IF NOT EXISTS `statuses_reasons` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `created_at` datetime DEFAULT current_timestamp(), + `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `deleted` tinyint(4) DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Contains a list of Reasons that a Status Change occured. This helps determine Promotions, Demotions, Transfers, Joins, Leaves.'; + +-- Data exporting was unselected. + +-- Dumping structure for table milsim_website_development.units +CREATE TABLE IF NOT EXISTS `units` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) DEFAULT NULL, + `type` enum('Company','Status','External') DEFAULT NULL, + `is_internal` tinyint(4) NOT NULL, + `description` text DEFAULT NULL, + `active` tinyint(4) NOT NULL DEFAULT 1, + `color` varchar(10) DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4; + +-- Data exporting was unselected. + +-- Dumping structure for view milsim_website_development.view_member_latest_info +-- Creating temporary table to overcome VIEW dependency errors +CREATE TABLE `view_member_latest_info` ( + `member_id` INT(11) NOT NULL, + `member_name` VARCHAR(1) NOT NULL COLLATE 'utf8mb4_general_ci', + `rank` LONGTEXT NULL COLLATE 'utf8mb4_general_ci', + `rank_date` DATETIME NULL, + `status` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci', + `status_date` DATETIME NULL +); + +-- Dumping structure for view milsim_website_development.view_member_rank_status_all -- Creating temporary table to overcome VIEW dependency errors CREATE TABLE `view_member_rank_status_all` ( `member_id` INT(11) NOT NULL, @@ -597,9 +741,46 @@ CREATE TABLE `view_member_rank_status_all` ( `status_date` DATETIME NULL ); +-- Dumping structure for view milsim_website_development.view_member_rank_unit_status_latest +-- Creating temporary table to overcome VIEW dependency errors +CREATE TABLE `view_member_rank_unit_status_latest` ( + `member_id` INT(11) NOT NULL, + `member_name` VARCHAR(1) NOT NULL COLLATE 'utf8mb4_general_ci', + `displayName` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci', + `rank` LONGTEXT NULL COLLATE 'utf8mb4_general_ci', + `rank_date` DATETIME NULL, + `status` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci', + `status_date` DATETIME NULL, + `unit` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci', + `unit_date` DATETIME NULL, + `loa_until` DATE NULL +); + +-- Dumping structure for view milsim_website_development.view_member_settings +-- Creating temporary table to overcome VIEW dependency errors +CREATE TABLE `view_member_settings` ( + `id` INT(11) NOT NULL, + `displayName` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci' +); + +-- Removing temporary table and create final VIEW structure +DROP TABLE IF EXISTS `view_member_latest_info`; +CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `view_member_latest_info` AS select `m`.`id` AS `member_id`,`m`.`name` AS `member_name`,`r`.`name` AS `rank`,`mr`.`start_date` AS `rank_date`,`s`.`name` AS `status`,`ms`.`start_date` AS `status_date` from ((((`milsim_website_development`.`members` `m` left join (select `mr`.`id` AS `id`,`mr`.`member_id` AS `member_id`,`mr`.`rank_id` AS `rank_id`,`mr`.`start_date` AS `start_date`,`mr`.`created_at` AS `created_at`,`mr`.`updated_at` AS `updated_at` from ((`milsim_website_development`.`members_ranks` `mr` join (select `milsim_website_development`.`members_ranks`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_ranks`.`start_date`) AS `max_date` from `milsim_website_development`.`members_ranks` group by `milsim_website_development`.`members_ranks`.`member_id`) `lr` on(`lr`.`member_id` = `mr`.`member_id` and `lr`.`max_date` = `mr`.`start_date`)) join (select `milsim_website_development`.`members_ranks`.`member_id` AS `member_id`,`milsim_website_development`.`members_ranks`.`start_date` AS `start_date`,max(`milsim_website_development`.`members_ranks`.`id`) AS `max_id` from `milsim_website_development`.`members_ranks` group by `milsim_website_development`.`members_ranks`.`member_id`,`milsim_website_development`.`members_ranks`.`start_date`) `lr2` on(`lr2`.`member_id` = `mr`.`member_id` and `lr2`.`start_date` = `mr`.`start_date` and `lr2`.`max_id` = `mr`.`id`))) `mr` on(`mr`.`member_id` = `m`.`id`)) left join `milsim_website_development`.`ranks` `r` on(`r`.`id` = `mr`.`rank_id`)) left join (select `ms`.`id` AS `id`,`ms`.`member_id` AS `member_id`,`ms`.`status_id` AS `status_id`,`ms`.`start_date` AS `start_date`,`ms`.`created_at` AS `created_at`,`ms`.`updated_at` AS `updated_at` from ((`milsim_website_development`.`members_statuses` `ms` join (select `milsim_website_development`.`members_statuses`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_statuses`.`start_date`) AS `max_date` from `milsim_website_development`.`members_statuses` group by `milsim_website_development`.`members_statuses`.`member_id`) `ls` on(`ls`.`member_id` = `ms`.`member_id` and `ls`.`max_date` = `ms`.`start_date`)) join (select `milsim_website_development`.`members_statuses`.`member_id` AS `member_id`,`milsim_website_development`.`members_statuses`.`start_date` AS `start_date`,max(`milsim_website_development`.`members_statuses`.`id`) AS `max_id` from `milsim_website_development`.`members_statuses` group by `milsim_website_development`.`members_statuses`.`member_id`,`milsim_website_development`.`members_statuses`.`start_date`) `ls2` on(`ls2`.`member_id` = `ms`.`member_id` and `ls2`.`start_date` = `ms`.`start_date` and `ls2`.`max_id` = `ms`.`id`))) `ms` on(`ms`.`member_id` = `m`.`id`)) left join `milsim_website_development`.`statuses` `s` on(`s`.`id` = `ms`.`status_id`)) +; + -- Removing temporary table and create final VIEW structure DROP TABLE IF EXISTS `view_member_rank_status_all`; -CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `view_member_rank_status_all` AS select `ranger_unit_tracker`.`members`.`id` AS `member_id`,`ranger_unit_tracker`.`members`.`name` AS `member_name`,`ranger_unit_tracker`.`ranks`.`name` AS `rank`,`members_ranks`.`event_date` AS `rank_date`,`ranger_unit_tracker`.`statuses`.`name` AS `status`,`members_statuses`.`event_date` AS `status_date` from ((((`ranger_unit_tracker`.`members` left join (select `mr`.`id` AS `id`,`mr`.`member_id` AS `member_id`,`mr`.`rank_id` AS `rank_id`,`mr`.`event_date` AS `event_date`,`mr`.`created_at` AS `created_at`,`mr`.`updated_at` AS `updated_at` from (`ranger_unit_tracker`.`members_ranks` `mr` join (select `ranger_unit_tracker`.`members_ranks`.`member_id` AS `member_id`,max(`ranger_unit_tracker`.`members_ranks`.`event_date`) AS `max_rank_date` from `ranger_unit_tracker`.`members_ranks` group by `ranger_unit_tracker`.`members_ranks`.`member_id`) `latest_ranks` on(`mr`.`member_id` = `latest_ranks`.`member_id` and `mr`.`event_date` = `latest_ranks`.`max_rank_date`))) `members_ranks` on(`ranger_unit_tracker`.`members`.`id` = `members_ranks`.`member_id`)) left join (select `ms`.`id` AS `id`,`ms`.`member_id` AS `member_id`,`ms`.`status_id` AS `status_id`,`ms`.`event_date` AS `event_date`,`ms`.`created_at` AS `created_at`,`ms`.`updated_at` AS `updated_at` from (`ranger_unit_tracker`.`members_statuses` `ms` join (select `ranger_unit_tracker`.`members_statuses`.`member_id` AS `member_id`,max(`ranger_unit_tracker`.`members_statuses`.`event_date`) AS `max_status_date` from `ranger_unit_tracker`.`members_statuses` group by `ranger_unit_tracker`.`members_statuses`.`member_id`) `latest_statuses` on(`ms`.`member_id` = `latest_statuses`.`member_id` and `ms`.`event_date` = `latest_statuses`.`max_status_date`))) `members_statuses` on(`ranger_unit_tracker`.`members`.`id` = `members_statuses`.`member_id`)) left join `ranger_unit_tracker`.`ranks` on(`members_ranks`.`rank_id` = `ranger_unit_tracker`.`ranks`.`id`)) left join `ranger_unit_tracker`.`statuses` on(`members_statuses`.`status_id` = `ranger_unit_tracker`.`statuses`.`id`)) +CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `view_member_rank_status_all` AS select `milsim_website_development`.`members`.`id` AS `member_id`,`milsim_website_development`.`members`.`name` AS `member_name`,`milsim_website_development`.`ranks`.`name` AS `rank`,`members_ranks`.`start_date` AS `rank_date`,`milsim_website_development`.`statuses`.`name` AS `status`,`members_statuses`.`start_date` AS `status_date` from ((((`milsim_website_development`.`members` left join (select `mr`.`id` AS `id`,`mr`.`member_id` AS `member_id`,`mr`.`rank_id` AS `rank_id`,`mr`.`start_date` AS `start_date`,`mr`.`created_at` AS `created_at`,`mr`.`updated_at` AS `updated_at` from (`milsim_website_development`.`members_ranks` `mr` join (select `milsim_website_development`.`members_ranks`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_ranks`.`start_date`) AS `max_rank_date` from `milsim_website_development`.`members_ranks` group by `milsim_website_development`.`members_ranks`.`member_id`) `latest_ranks` on(`mr`.`member_id` = `latest_ranks`.`member_id` and `mr`.`start_date` = `latest_ranks`.`max_rank_date`))) `members_ranks` on(`milsim_website_development`.`members`.`id` = `members_ranks`.`member_id`)) left join (select `ms`.`id` AS `id`,`ms`.`member_id` AS `member_id`,`ms`.`status_id` AS `status_id`,`ms`.`start_date` AS `start_date`,`ms`.`created_at` AS `created_at`,`ms`.`updated_at` AS `updated_at` from (`milsim_website_development`.`members_statuses` `ms` join (select `milsim_website_development`.`members_statuses`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_statuses`.`start_date`) AS `max_status_date` from `milsim_website_development`.`members_statuses` group by `milsim_website_development`.`members_statuses`.`member_id`) `latest_statuses` on(`ms`.`member_id` = `latest_statuses`.`member_id` and `ms`.`start_date` = `latest_statuses`.`max_status_date`))) `members_statuses` on(`milsim_website_development`.`members`.`id` = `members_statuses`.`member_id`)) left join `milsim_website_development`.`ranks` on(`members_ranks`.`rank_id` = `milsim_website_development`.`ranks`.`id`)) left join `milsim_website_development`.`statuses` on(`members_statuses`.`status_id` = `milsim_website_development`.`statuses`.`id`)) +; + +-- Removing temporary table and create final VIEW structure +DROP TABLE IF EXISTS `view_member_rank_unit_status_latest`; +CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `view_member_rank_unit_status_latest` AS select `m`.`id` AS `member_id`,`m`.`name` AS `member_name`,`m`.`displayName` AS `displayName`,`r`.`name` AS `rank`,`mr`.`start_date` AS `rank_date`,`s`.`name` AS `status`,`ms`.`start_date` AS `status_date`,`u`.`name` AS `unit`,`mu`.`start_date` AS `unit_date`,`loa`.`loa_until` AS `loa_until` from (((((((`milsim_website_development`.`members` `m` left join (select `mr`.`member_id` AS `member_id`,`mr`.`rank_id` AS `rank_id`,`mr`.`start_date` AS `start_date` from (`milsim_website_development`.`members_ranks` `mr` join (select `milsim_website_development`.`members_ranks`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_ranks`.`start_date`) AS `max_start_date` from `milsim_website_development`.`members_ranks` group by `milsim_website_development`.`members_ranks`.`member_id`) `latest` on(`mr`.`member_id` = `latest`.`member_id` and `mr`.`start_date` = `latest`.`max_start_date`))) `mr` on(`m`.`id` = `mr`.`member_id`)) left join `milsim_website_development`.`ranks` `r` on(`mr`.`rank_id` = `r`.`id`)) left join (select `ms`.`member_id` AS `member_id`,`ms`.`status_id` AS `status_id`,`ms`.`start_date` AS `start_date` from (`milsim_website_development`.`members_statuses` `ms` join (select `milsim_website_development`.`members_statuses`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_statuses`.`start_date`) AS `max_start_date` from `milsim_website_development`.`members_statuses` group by `milsim_website_development`.`members_statuses`.`member_id`) `latest` on(`ms`.`member_id` = `latest`.`member_id` and `ms`.`start_date` = `latest`.`max_start_date`))) `ms` on(`m`.`id` = `ms`.`member_id`)) left join `milsim_website_development`.`statuses` `s` on(`ms`.`status_id` = `s`.`id`)) left join (select `mu`.`member_id` AS `member_id`,`mu`.`unit_id` AS `unit_id`,`mu`.`start_date` AS `start_date` from (`milsim_website_development`.`members_unit` `mu` join (select `milsim_website_development`.`members_unit`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_unit`.`start_date`) AS `max_start_date` from `milsim_website_development`.`members_unit` group by `milsim_website_development`.`members_unit`.`member_id`) `latest` on(`mu`.`member_id` = `latest`.`member_id` and `mu`.`start_date` = `latest`.`max_start_date`))) `mu` on(`m`.`id` = `mu`.`member_id`)) left join `milsim_website_development`.`units` `u` on(`mu`.`unit_id` = `u`.`id`)) left join (select `l`.`member_id` AS `member_id`,max(greatest(cast(`l`.`end_date` as date),cast(coalesce(`l`.`extended_till`,`l`.`end_date`) as date))) AS `loa_until` from `milsim_website_development`.`leave_of_absences` `l` where `l`.`deleted` = 0 and (`l`.`closed` is null or `l`.`closed` = 0) and (`l`.`expired` is null or `l`.`expired` = 0) and cast(`l`.`start_date` as date) <= curdate() and (cast(`l`.`end_date` as date) >= curdate() or cast(`l`.`extended_till` as date) >= curdate()) group by `l`.`member_id`) `loa` on(`loa`.`member_id` = `m`.`id`)) +; + +-- Removing temporary table and create final VIEW structure +DROP TABLE IF EXISTS `view_member_settings`; +CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `view_member_settings` AS select `m`.`id` AS `id`,`m`.`displayName` AS `displayName` from `members` `m` ; /*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */; diff --git a/api/migrations/seed.sql b/api/migrations/seed.sql index 000419d..887dec3 100644 --- a/api/migrations/seed.sql +++ b/api/migrations/seed.sql @@ -1,86 +1,26 @@ --- Dumping database structure for ranger_unit_tracker -CREATE DATABASE IF NOT EXISTS `ranger_unit_tracker`; -USE `ranger_unit_tracker`; +-- -------------------------------------------------------- +-- Host: iceberg-gaming.com +-- Server version: 10.6.5-MariaDB-log - mariadb.org binary distribution +-- Server OS: Win64 +-- HeidiSQL Version: 12.13.0.7147 +-- -------------------------------------------------------- -SET FOREIGN_KEY_CHECKS=0; +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET NAMES utf8 */; +/*!50503 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -CREATE TABLE IF NOT EXISTS `applications` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `member_id` int(11) NOT NULL, - `app_version` int(11) NOT NULL, - `app_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`app_data`)), - `submitted_at` datetime NOT NULL DEFAULT current_timestamp(), - `updated_at` datetime DEFAULT NULL, - `approved_at` datetime DEFAULT NULL, - `denied_at` datetime DEFAULT NULL, - `app_status` varchar(20) GENERATED ALWAYS AS (case when `approved_at` is not null then 'Accepted' when `denied_at` is not null then 'Denied' else 'Pending' end) STORED, - `decision_at` datetime GENERATED ALWAYS AS (coalesce(`approved_at`,`denied_at`)) STORED, - PRIMARY KEY (`id`), - UNIQUE KEY `member_id` (`member_id`), - CONSTRAINT `fk_app_member` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, - CONSTRAINT `chk_json_valid` CHECK (json_valid(`app_data`)), - CONSTRAINT `chk_app_version` CHECK (`app_version` >= 1), - CONSTRAINT `chk_exclusive_decision` CHECK (`approved_at` is null or `denied_at` is null) -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +-- Dumping data for table milsim_website_development.application_comments: ~0 rows (approximately) --- Dumping data for table ranger_unit_tracker.applications: ~1 rows (approximately) -INSERT INTO `applications` (`id`, `member_id`, `app_version`, `app_data`, `submitted_at`, `updated_at`, `approved_at`, `denied_at`) VALUES - (1, 1, 1, '{"dob":"05/25/2003","name":"Aj","playtime":5000,"hobbies":"Coding","military":false,"communities":"No","joinReason":"fun","milsimAttraction":"stuff","referral":"reddit","steamProfile":"yes","timezone":"EST","canAttendSaturday":true,"interests":"rifleman","aknowledgeRules":true}', '2025-08-26 19:27:11', NULL, NULL, '2025-09-05 18:04:18'), - (8, 190, 1, '"{\\"dob\\":\\"11/11/1111\\",\\"name\\":\\"1111\\",\\"playtime\\":1111,\\"hobbies\\":\\"1111\\",\\"military\\":false,\\"communities\\":\\"1111\\",\\"joinReason\\":\\"1111\\",\\"milsimAttraction\\":\\"v1111\\",\\"referral\\":\\"1111\\",\\"steamProfile\\":\\"1111\\",\\"timezone\\":\\"1111\\",\\"canAttendSaturday\\":true,\\"interests\\":\\"1111\\",\\"aknowledgeRules\\":true}"', '2025-10-20 17:13:47', NULL, '2025-10-20 17:13:56', NULL); +-- Dumping data for table milsim_website_development.applications: ~0 rows (approximately) --- Dumping structure for table ranger_unit_tracker.application_comments -CREATE TABLE IF NOT EXISTS `application_comments` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `post_content` text COLLATE utf8mb4_unicode_ci NOT NULL, - `application_id` int(11) NOT NULL, - `poster_id` int(11) NOT NULL, - `post_time` timestamp NOT NULL DEFAULT current_timestamp(), - `last_modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - PRIMARY KEY (`id`), - KEY `poster_id` (`poster_id`), - KEY `application_id` (`application_id`), - CONSTRAINT `application_comments_ibfk_1` FOREIGN KEY (`application_id`) REFERENCES `applications` (`id`), - CONSTRAINT `application_comments_ibfk_2` FOREIGN KEY (`poster_id`) REFERENCES `members` (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +-- Dumping data for table milsim_website_development.arma_maps: ~0 rows (approximately) --- Dumping data for table ranger_unit_tracker.application_comments: ~0 rows (approximately) -INSERT INTO `application_comments` (`id`, `post_content`, `application_id`, `poster_id`, `post_time`, `last_modified`) VALUES - (1, 'Nuh uh', 1, 1, '2025-09-05 23:33:23', '0000-00-00 00:00:00'); - --- Dumping structure for table ranger_unit_tracker.arma_maps -CREATE TABLE IF NOT EXISTS `arma_maps` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `map` varchar(50) DEFAULT NULL, - `name` text DEFAULT NULL, - `last_used` datetime DEFAULT NULL, - `deleted` tinyint(4) DEFAULT 0, - `workshop_id` varchar(100) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `map` (`map`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='Contains a list of Arma3 Maps'; - --- Dumping data for table ranger_unit_tracker.arma_maps: ~2 rows (approximately) -INSERT INTO `arma_maps` (`id`, `map`, `name`, `last_used`, `deleted`, `workshop_id`) VALUES - (1, 'Sumava.pbo', 'Šumava', NULL, 0, '2947655994'); - --- Dumping structure for table ranger_unit_tracker.awards -CREATE TABLE IF NOT EXISTS `awards` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` longtext DEFAULT NULL, - `short_name` longtext DEFAULT NULL, - `description` longtext DEFAULT NULL, - `type` longtext DEFAULT NULL, - `footprint` longtext DEFAULT NULL, - `created_at` datetime(3) NOT NULL, - `updated_at` datetime(3) NOT NULL, - `image_url` longtext DEFAULT NULL, - `deleted` tinyint(1) NOT NULL DEFAULT 0, - `deleted_at` datetime(3) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `idx_awards_deleted` (`deleted`) -) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8mb4 COMMENT='Contains a list of Awards for the unit.'; - --- Dumping data for table ranger_unit_tracker.awards: ~36 rows (approximately) +-- Dumping data for table milsim_website_development.awards: ~36 rows (approximately) INSERT INTO `awards` (`id`, `name`, `short_name`, `description`, `type`, `footprint`, `created_at`, `updated_at`, `image_url`, `deleted`, `deleted_at`) VALUES (1, 'Combat Recognition Award', NULL, 'Awarded for recognition of notable, but not exceptional behavior during an official operation', 'Combat Award', NULL, '2023-05-03 18:51:08.000', '2023-05-03 21:14:46.000', NULL, 0, NULL), (2, 'Combat Action Award', NULL, 'Awarded for recognition of exceptional behavior during an official operation', 'Combat Award', NULL, '2023-05-03 18:51:22.000', '2023-05-03 21:14:49.000', NULL, 0, NULL), @@ -117,289 +57,102499 @@ INSERT INTO `awards` (`id`, `name`, `short_name`, `description`, `type`, `footpr (33, 'The End Game: A Tyrone Saga', NULL, 'Awarded for participation in at least half of the total number of operations during a given campaign.', 'Campaign Ribbon', NULL, '2023-05-03 19:04:59.000', '2023-05-03 21:14:56.000', NULL, 0, NULL), (34, 'Operation Gargoyle (Fapovo, Altis)', NULL, 'Awarded for participation in at least half of the total number of operations during a given campaign.', 'Campaign Ribbon', NULL, '2023-05-03 19:04:59.000', '2023-05-03 21:14:56.000', NULL, 0, NULL), (35, 'Operation Siren Song (Malden, Sarugao, Kolgujev, Everon)', NULL, 'Awarded for participation in at least half of the total number of operations during a given campaign.', 'Campaign Ribbon', NULL, '2023-05-03 19:06:18.000', '2023-05-03 21:14:56.000', NULL, 0, NULL), - (63, 'Royal Guardian of the Kenpire (Victors\' Ribbon)', NULL, 'NA', 'Additional Ribbons', NULL, '2023-05-03 19:07:11.000', '2023-05-03 21:14:56.000', NULL, 0, NULL); + (36, 'Royal Guardian of the Kenpire (Victors\' Ribbon)', NULL, 'NA', 'Additional Ribbons', NULL, '2023-05-03 19:07:11.000', '2023-05-03 21:14:56.000', NULL, 0, NULL); --- Dumping structure for table ranger_unit_tracker.calendar_events -CREATE TABLE IF NOT EXISTS `calendar_events` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `start` datetime NOT NULL, - `end` datetime NOT NULL, - `location` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, - `color` char(7) COLLATE utf8mb4_unicode_ci NOT NULL, - `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `creator` int(11) DEFAULT NULL, - `cancelled` tinyint(1) DEFAULT 0, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - PRIMARY KEY (`id`), - KEY `fk_creator` (`creator`), - CONSTRAINT `fk_creator` FOREIGN KEY (`creator`) REFERENCES `members` (`id`) ON DELETE SET NULL ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +-- Dumping data for table milsim_website_development.calendar_events: ~3,345 rows (approximately) +INSERT INTO `calendar_events` (`id`, `name`, `start`, `end`, `location`, `color`, `description`, `creator`, `cancelled`, `created_at`, `updated_at`, `full_day`, `guilded_id`, `guilded_channel_id`) VALUES + (1, 'OPFOR/BLUFOR Asset Familiarization - Hosted by Toast', '2020-03-19 18:00:00', '2020-03-19 19:30:00', '', '#008ae1', 'Learn how to use some of the heavier assets we use in the 17th BCT.\r\nThis will not cover IDF and thus will not qualify for the IDF ribbon.\r\n\r\nAdditionally, get some extensive familiarization with OPFOR crew-served weapons and vehicles, and learn how to use OPFOR weapons in last-resort events.', 468, 0, '2020-03-19 02:44:00', '2025-12-17 19:45:26', NULL, '2958042', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2, 'Ranger Training - Hosted by Del', '2020-03-20 18:00:00', '2020-03-20 20:30:00', '', '#6cba50', '"This week in Ranger Training...', 468, 0, '2020-03-19 02:44:33', '2025-12-17 19:45:26', NULL, '2958044', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3, 'Basic Training', '2020-03-20 18:00:00', '2020-03-20 19:00:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.', 468, 0, '2020-03-19 02:44:59', '2025-12-17 19:45:26', NULL, '2958045', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (4, 'Ranger NCO Meeting', '2020-03-21 17:00:00', '2020-03-21 17:45:00', '', '#008ae1', 'Meeting to prep squad breakdown. Roles are assigned based on priority and who signed up on the events page for the Op.\r\n', 468, 0, '2020-03-19 02:45:26', '2025-12-17 19:45:26', NULL, '2958046', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (5, 'Operation Shamshir Week 7', '2020-03-21 18:00:00', '2020-03-21 20:00:00', '', '#df5353', 'Sweep identified locations for intelligence and enemy presence.\r\n', 468, 0, '2020-03-19 02:45:49', '2025-12-17 19:45:26', NULL, '2958047', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (6, 'Basic Training', '2020-03-23 18:00:00', '2020-03-23 20:00:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.\r\n', 468, 0, '2020-03-19 02:46:07', '2025-12-17 19:45:26', NULL, '2958048', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (7, 'Land Navigation Training - Hosted by Mortuus', '2020-03-24 18:00:00', '2020-03-24 19:30:00', '', '#6cba50', 'Come learn how to do maps good.', 468, 0, '2020-03-19 02:46:30', '2025-12-17 19:45:26', NULL, '2958049', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (8, 'Sapper 2 - Hosted by Walrus', '2020-03-25 19:00:00', '2020-03-25 21:00:00', '', '#008ae1', '"Minefields and other non-explosive devices"', 468, 0, '2020-03-19 02:47:03', '2025-12-17 19:45:26', NULL, '2958050', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (9, 'Ranger NCO Meeting', '2020-03-28 17:00:00', '2020-03-28 17:45:00', '', '#008ae1', 'Meeting to prep squad breakdown. Roles are assigned based on priority and who signed up on the events page for the Op.\r\n', 468, 0, '2020-03-19 02:47:59', '2025-12-17 19:45:26', NULL, '2958052', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (10, 'Operation Shamshir Week 8 (Finale)', '2020-03-28 18:00:00', '2020-03-28 20:00:00', '', '#df5353', 'Assault the compound. Kill or capture the HVT.', 468, 0, '2020-03-19 02:48:18', '2025-12-17 19:45:26', NULL, '2958053', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (11, 'Community Round Table', '2020-04-05 15:00:00', '2020-04-05 18:30:00', '', '#df5353', 'Vote on leadership, discuss issues, propose changes.\r\n', 468, 0, '2020-03-19 02:51:46', '2025-12-17 19:45:26', NULL, '2958055', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (12, 'AIT 1 - Hosted by Toast', '2020-04-01 18:00:00', '2020-04-01 20:00:00', '', '#6cba50', 'Advanced Infantry Training Part 1.\r\n\r\nPlease sign up for this event if you plan on attending. Those who attend but fail to sign up on Enjin will not receive credit.\r', 468, 0, '2020-03-19 02:52:22', '2025-12-17 19:45:26', NULL, '2958056', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (13, 'Sapper 3 - Hosted by Walrus', '2020-04-08 19:00:00', '2020-04-08 21:00:00', '', '#008ae1', '"IEDs: safe removal, and how to not get shot while doing it\r."\n', 468, 0, '2020-03-19 02:52:54', '2025-12-17 19:45:26', NULL, '2958057', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (14, 'AIT 2 - Hosted by Toast', '2020-04-09 18:00:00', '2020-04-09 20:00:00', '', '#6cba50', 'Advanced Infantry Training Part 2.\r\n\r\nPlease sign up for this event if you plan on attending. Those who attend but fail to sign up on Enjin will not receive credit.\r\n\r\nYou do not need AIT Part 1 to attend AIT Part 2', 468, 0, '2020-03-19 02:53:43', '2025-12-17 19:45:26', NULL, '2958058', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (15, 'AIT 3 - Hosted by Toast', '2020-04-15 18:00:00', '2020-04-15 20:00:00', '', '#6cba50', 'Advanced Infantry Training Part 3.\r\n\r\nPlease sign up for this event if you plan on attending. Those who attend but fail to sign up on Enjin will not receive credit.\r\n\r\nYou do not need AIT 1 or 2 to attend AIT 3', 468, 0, '2020-03-19 02:55:12', '2025-12-17 19:45:26', NULL, '2958059', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (16, 'Ranger Training', '2020-03-27 18:00:00', '2020-03-27 20:00:00', '', '#6cba50', '', NULL, 0, '2020-03-19 03:38:31', '2025-12-17 19:45:26', NULL, '2958060', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (17, 'Pathfinder Training', '2020-03-22 13:00:00', '2020-03-22 14:00:00', '', '#6cba50', '', NULL, 0, '2020-03-19 03:38:57', '2025-12-17 19:45:26', NULL, '2958061', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (18, 'Basic Training', '2020-04-17 18:00:00', '2020-04-17 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.', 811, 0, '2020-03-19 03:42:29', '2025-12-17 19:45:26', NULL, '2958062', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (19, 'Basic Training', '2020-04-03 18:00:00', '2020-04-03 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.', 811, 0, '2020-03-19 03:42:29', '2025-12-17 19:45:26', NULL, '2958063', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (20, 'Basic Training', '2020-05-15 18:00:00', '2020-05-15 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.', 811, 0, '2020-03-19 03:42:29', '2025-12-17 19:45:26', NULL, '2958064', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (21, 'Basic Training', '2020-05-01 18:00:00', '2020-05-01 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.', 811, 0, '2020-03-19 03:42:29', '2025-12-17 19:45:26', NULL, '2958065', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (22, 'Basic Training', '2020-05-29 18:00:00', '2020-05-29 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.', 811, 0, '2020-03-19 03:42:29', '2025-12-17 19:45:26', NULL, '2958066', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (23, 'Basic Training', '2020-06-12 18:00:00', '2020-06-12 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.', 811, 0, '2020-03-19 03:42:29', '2025-12-17 19:45:26', NULL, '2958067', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (24, 'Basic Training', '2020-06-26 18:00:00', '2020-06-26 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.', 811, 0, '2020-03-19 03:42:29', '2025-12-17 19:45:26', NULL, '2958068', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (25, 'Basic Training', '2020-07-10 18:00:00', '2020-07-10 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.', 811, 0, '2020-03-19 03:42:29', '2025-12-17 19:45:26', NULL, '2958069', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (26, 'Basic Training', '2020-04-06 18:00:00', '2020-04-06 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.', 811, 0, '2020-03-19 03:44:49', '2025-12-17 19:45:26', NULL, '2958082', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (27, 'Basic Training', '2020-04-21 18:00:00', '2020-04-21 19:00:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it. If no Recruits are signed up, or show up, your duties are considered fulfilled.', 811, 0, '2020-03-19 03:44:49', '2025-12-17 19:45:26', NULL, '2958083', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (28, 'Race Day', '2020-04-02 18:00:00', '2020-04-02 20:00:00', 'Private Ops Server', '#a250e8', 'Nvth1s is going to be hosting Race Day on Altis. We will be running two time trial style races.\n\nFirst is a road race around the Kavala loop. Expect some additions to that roadway. \n\nThe Second Time Trial will be a rally sprint with water hazards, Rock falls, and tight turns.\n\nNow to the best part I\'m giving away a prize to the winners in each category. ', 811, 0, '2020-03-22 03:45:17', '2025-12-17 19:45:26', NULL, '2960421', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (29, 'Convoy Training', '2020-03-30 18:30:00', '2020-03-30 19:30:00', '', '#6cba50', 'Just some good ole convoy training , practicing spacing , speed, calling out enemies , engaging and pushing through contact', 915, 0, '2020-03-22 18:22:10', '2025-12-17 19:45:26', NULL, '2961309', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (30, 'Prison Rescue - PVP RU vs. US', '2020-04-06 19:00:00', '2020-04-06 20:30:00', 'Sahrani', '#a250e8', 'In a classic PVP scenario, a US special forces team must infiltrate a Russian POW camp and rescue the prisoners. The Russians must prevent this from happening. \nWIN CONDITIONS:\nRULES:', 801, 0, '2020-03-23 16:34:41', '2025-12-17 19:45:26', NULL, '2961895', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (31, 'CLS Training', '2020-03-25 18:00:00', '2020-03-25 19:30:00', 'The Internet', '#6cba50', 'Learn how to slap bandages and push in your chest', 508, 0, '2020-03-23 22:32:12', '2025-12-17 19:45:26', NULL, '2963118', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (32, 'Land Navigation', '2020-03-31 18:00:00', '2020-03-31 19:30:00', '', '#6cba50', '', 768, 0, '2020-03-24 23:08:59', '2025-12-17 19:45:26', NULL, '2963931', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (33, 'Land Navigation', '2020-04-07 18:00:00', '2020-04-07 19:00:00', '', '#6cba50', '', 768, 0, '2020-03-24 23:09:30', '2025-12-17 19:45:26', NULL, '2963932', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (34, '32nd Mechanized Training - Hosted by Ken', '2020-03-27 18:30:00', '2020-03-27 20:30:00', '', '#d89332', 'Learn how to use and crew various Mechanized Vehicles with Ken... get them badges!', 468, 0, '2020-03-25 20:10:00', '2025-12-17 19:45:26', NULL, '2966259', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (35, 'Quick Radio Course', '2020-03-29 18:00:00', '2020-03-29 19:00:00', '', '#30a68f', '', 19, 0, '2020-03-29 00:51:42', '2025-12-17 19:45:26', NULL, '2969206', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (36, 'RASP', '2020-04-04 18:00:00', '2020-04-04 21:00:00', '', '#df5353', 'Ranger Assessment and Selection Program', 2221, 0, '2020-03-29 01:47:09', '2025-12-17 19:45:26', NULL, '2969208', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (37, 'Movie Mission - Brigade PR', '2020-03-30 20:00:00', '2020-03-30 21:00:00', '', '#008ae1', 'Hosting a mission for filming. Show up, do cool stuff.', 216, 0, '2020-03-29 14:52:28', '2025-12-17 19:45:26', NULL, '2969680', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (38, 'Ranger Training', '2020-04-03 18:00:00', '2020-04-03 19:30:00', '', '#6cba50', 'Jump School', NULL, 0, '2020-03-29 20:43:30', '2025-12-17 19:45:26', NULL, '2969751', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (39, 'Ranger NCO Meeting', '2020-04-04 17:00:00', '2020-04-04 18:00:00', '', '#30a68f', '\n ', NULL, 0, '2020-03-30 16:18:48', '2025-12-17 19:45:26', NULL, '2970637', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (40, 'Principles of Fireteams', '2020-04-10 18:00:00', '2020-04-10 20:00:00', 'Training Server', '#6cba50', 'Things we will go over as followed:Basic kits (Rifleman, SAW, Grenadier), how to use those kits, basic equipment use (frags, smokes, flashes), Radios, basic radio reports, movement in formations.\n\nPlease sign up to judge attendence and intrest', 779, 0, '2020-03-30 21:50:53', '2025-12-17 19:45:26', NULL, '2970718', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (41, 'Campaign Asset Training & Preview - OP: Balkan Thunder', '2020-04-16 17:00:00', '2020-04-16 18:00:00', '', '#008ae1', 'Learn about the kinds of things the Serbians have access to! Then get a feel of fighting them. \nThis is indeed a training, topics include:', 801, 0, '2020-04-01 23:40:15', '2025-12-17 19:45:26', NULL, '2971546', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (42, 'CSW Training', '2020-04-05 19:00:00', '2020-04-05 20:00:00', '', '#ecb200', 'Going over crew serve, covering ace interactions, getting some time spent operating, familiarity training.', 932, 0, '2020-04-04 17:54:10', '2025-12-17 19:45:26', NULL, '2973471', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (43, 'Pilot Training', '2020-04-19 18:00:00', '2020-04-19 19:00:00', '', '#ecb200', 'Learn the basics of flight etiquette and procedures as a pilot of the 32nd LSG', NULL, 0, '2020-04-05 05:23:34', '2025-12-17 19:45:26', NULL, '2974519', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (44, 'Mechanized Training', '2020-04-13 18:00:00', '2020-04-13 20:00:00', '', '#d89332', 'Come learn about your tanks and other fancy whips', 28, 0, '2020-04-05 13:35:59', '2025-12-17 19:45:26', NULL, '2974534', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (45, '"Recurve" Weapon Systems Training', '2020-04-07 19:00:00', '2020-04-07 20:00:00', '', '#d89332', 'Going over Recurve, Radio operation, arma things.', 932, 0, '2020-04-05 23:08:51', '2025-12-17 19:45:26', NULL, '2974760', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (46, 'Brigade Training', '2020-04-11 18:00:00', '2020-04-11 21:00:00', 'Training Server', '#df5353', 'Since it was all terrible, we\'re going to go back, we\'re going to review, and we\'re going to beat RASP.\n\nRangers will plan and carry out missions designed for a RASP scenario, utilizing any assets available. 32nd LSG will support the Rangers in any way needed. This is still a Brigade Training, so we must act like a Brigade.', NULL, 0, '2020-04-06 00:47:04', '2025-12-17 19:45:26', NULL, '2974955', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (47, 'Basic Training', '2020-05-05 18:00:00', '2020-05-05 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 811, 0, '2020-04-06 13:22:34', '2025-12-17 19:45:26', NULL, '2975272', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (48, 'Basic Training', '2020-05-19 18:00:00', '2020-05-19 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 811, 0, '2020-04-06 13:22:34', '2025-12-17 19:45:26', NULL, '2975273', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (49, 'Basic Training', '2020-06-02 18:00:00', '2020-06-02 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 811, 0, '2020-04-06 13:22:34', '2025-12-17 19:45:26', NULL, '2975274', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (50, 'Basic Training', '2020-07-28 18:00:00', '2020-07-28 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 811, 0, '2020-04-06 13:22:34', '2025-12-17 19:45:26', NULL, '2975275', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (51, 'Basic Training', '2020-06-30 18:00:00', '2020-06-30 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 811, 0, '2020-04-06 13:22:34', '2025-12-17 19:45:26', NULL, '2975276', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (52, 'Basic Training', '2020-06-16 18:00:00', '2020-06-16 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 811, 0, '2020-04-06 13:22:34', '2025-12-17 19:45:26', NULL, '2975277', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (53, 'Basic Training', '2020-07-14 18:00:00', '2020-07-14 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 811, 0, '2020-04-06 13:22:34', '2025-12-17 19:45:26', NULL, '2975278', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (54, 'Basic Training', '2020-08-11 18:00:00', '2020-08-11 19:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 811, 0, '2020-04-06 13:22:34', '2025-12-17 19:45:26', NULL, '2975279', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (55, 'Staged Filming Session - Volunteers Needed', '2020-04-06 17:00:00', '2020-04-06 18:00:00', '', '#008ae1', 'I will be creating a number of small scenarios to be filmed, this will be a staged directed filming session not a full mission. Volunteer actors are needed to play various roles within the unit. Infantry, pilots, and vehicle operators are needed.\n1 hour duration.', 216, 0, '2020-04-06 15:50:06', '2025-12-17 19:45:26', NULL, '2975384', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (56, 'Filming Mission', '2020-04-12 17:00:00', '2020-04-12 19:00:00', '', '#008ae1', 'Filming mission for the next 17BCT video. \nWater invasion of Porto Island to displace a corrupt warlord.\nCamo is M81 Woodland.', 216, 0, '2020-04-06 15:58:22', '2025-12-17 19:45:26', NULL, '2975385', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (57, 'Prison Rescue PVP PART 2 & Mission Testing', '2020-04-27 18:00:00', '2020-04-27 19:00:00', '', '#a250e8', 'RULES WILL BE POSTED SOON', 801, 0, '2020-04-07 02:28:53', '2025-12-17 19:45:26', NULL, '2976575', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (58, 'Ranger Training', '2020-04-21 18:00:00', '2020-04-21 20:00:00', '', '#6cba50', 'Learning how to deal with emplacements', NULL, 0, '2020-04-07 15:08:54', '2025-12-17 19:45:26', NULL, '2977127', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (59, 'Ranger Training', '2020-05-05 18:00:00', '2020-05-05 20:00:00', '', '#6cba50', 'Air Assualt Training', NULL, 0, '2020-04-07 15:08:54', '2025-12-17 19:45:26', NULL, '2977128', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (60, 'Ranger Training', '2020-04-28 18:00:00', '2020-04-28 20:00:00', '', '#6cba50', 'Convoy Training', NULL, 0, '2020-04-07 15:08:54', '2025-12-17 19:45:26', NULL, '2977129', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (61, 'Ranger Training', '2020-04-14 18:00:00', '2020-04-14 20:00:00', '', '#6cba50', 'Jump School and Reacting to Contant in the form of Battle Drill 2', NULL, 0, '2020-04-07 15:08:54', '2025-12-17 19:45:26', NULL, '2977130', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (62, 'Ranger Training', '2020-05-12 18:00:00', '2020-05-12 20:00:00', '', '#6cba50', 'Placeholder for Ranger Training', NULL, 0, '2020-04-07 15:08:54', '2025-12-17 19:45:26', NULL, '2977131', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (63, 'Ranger Training', '2020-05-19 18:00:00', '2020-05-19 20:00:00', '', '#6cba50', 'Placeholder for Ranger Training', NULL, 0, '2020-04-07 15:08:54', '2025-12-17 19:45:26', NULL, '2977132', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (64, 'Pathfinder Training', '2020-06-02 18:00:00', '2020-06-02 20:00:00', '', '#6cba50', 'This is the book work for Pathfinder Training. Going over the tools of the trade. ', NULL, 0, '2020-04-07 15:08:54', '2025-12-17 19:45:26', NULL, '2977133', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (65, 'Ranger Training', '2020-05-26 18:00:00', '2020-05-26 20:00:00', '', '#6cba50', 'Placeholder for Ranger Training', NULL, 0, '2020-04-07 15:08:54', '2025-12-17 19:45:26', NULL, '2977134', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (66, 'MOUT Ranger Training', '2020-06-09 18:00:00', '2020-06-09 20:00:00', '', '#6cba50', 'We are going to be working on Urban Warfare and MOUT Training this week in perperation for this week\'s mission. Please be here', NULL, 0, '2020-04-07 15:08:54', '2025-12-17 19:45:26', NULL, '2977135', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (67, 'Ranger Training', '2020-06-16 18:00:00', '2020-06-16 20:00:00', '', '#6cba50', 'Reacting and dealing with contact.', NULL, 0, '2020-04-07 15:08:55', '2025-12-17 19:45:26', NULL, '2977136', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (68, 'Ranger Training', '2020-06-23 18:00:00', '2020-06-23 20:00:00', '', '#6cba50', 'Calling up for support.\n\nWorking out when support is needed and when might a little help from your friends.', NULL, 0, '2020-04-07 15:08:55', '2025-12-17 19:45:26', NULL, '2977137', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (69, 'Ranger Training', '2020-07-02 18:00:00', '2020-07-02 19:00:00', '', '#6cba50', 'RAID Training', NULL, 0, '2020-04-07 15:08:55', '2025-12-17 19:45:26', NULL, '2977138', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (70, 'IFV/TC Training', '2020-04-10 16:00:00', '2020-04-10 17:00:00', '', '#ecb200', 'Come get some experience as TC- more big gun fun action', 932, 0, '2020-04-08 01:46:48', '2025-12-17 19:45:26', NULL, '2977343', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (71, 'Ranger NCO Meeting', '2020-04-11 17:00:00', '2020-04-11 18:00:00', '', '#30a68f', '\n ', NULL, 0, '2020-04-09 03:00:23', '2025-12-17 19:45:26', NULL, '2977526', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (72, '2IC Practice & Zeus Op', '2020-05-07 18:00:00', '2020-05-07 19:00:00', '', '#6cba50', 'Learn the role of the 2IC, get practice doing reps having to deal with all levels of command going down. The more people the better. This is not an official training due to the fact that it is essentially an FTX. Lots of stopping and starting, getting reps in.', 801, 0, '2020-04-09 22:38:56', '2025-12-17 19:45:26', NULL, '2977812', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (73, 'Mission Planning/ 6 P\'s', '2020-04-17 18:00:00', '2020-04-17 19:00:00', '', '#6cba50', 'Proper Planning Prevents Piss Poor Performance. This training is for everyone, will give you an understanding of why and what we are doing on a mission. Breaking down OPORD and WARNO, coordinating assets, route and DZ selection and everthing else pre step for mission.', 644, 0, '2020-04-10 12:41:22', '2025-12-17 19:45:26', NULL, '2977931', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (74, 'Operation: Balkan Thunder - Chapter 1', '2020-04-18 18:00:00', '2020-04-18 21:00:00', 'Bystrica', '#df5353', 'Infiltrate the city of Chernogorsk and sabotage the Serbian-controlled rail yard.\nContext\n: \n\nhttps://www.guilded.gg/17th-Brigade-Combat-Team/groups/WDJ475Xz/channels/cbb4147b-4e8a-4d2f-9eb7-1a1316cf308c/forums/345747691\nWARNO\n: \n\nhttps://www.guilded.gg/17th-Brigade-Combat-Team/groups/WDJ475Xz/channels/b6150981-96f6-4112-a6e8-1c035d0e00e8/forums/2063108352\n', 801, 0, '2020-04-10 18:46:33', '2025-12-17 19:45:26', NULL, '2978244', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (75, 'Operation: Balkan Thunder - Chapter 2', '2020-04-25 18:00:00', '2020-04-25 21:00:00', 'Bystrica', '#df5353', '\n\nhttps://www.guilded.gg/17th-Brigade-Combat-Team/groups/WDJ475Xz/channels/b6150981-96f6-4112-a6e8-1c035d0e00e8/forums/1565363837', 801, 0, '2020-04-10 18:47:01', '2025-12-17 19:45:26', NULL, '2978245', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (76, 'Operation: Balkan Thunder - Chapter 3', '2020-05-02 18:00:00', '2020-05-02 21:00:00', 'Bystrica', '#df5353', '\n\nhttps://www.guilded.gg/17th-Brigade-Combat-Team/groups/WDJ475Xz/channels/b6150981-96f6-4112-a6e8-1c035d0e00e8/forums/451338723', 801, 0, '2020-04-10 18:47:25', '2025-12-17 19:45:26', NULL, '2978246', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (77, 'Operation: Balkan Thunder - Chapter 4', '2020-05-09 18:00:00', '2020-05-09 21:00:00', 'Beketov', '#df5353', '\n\nhttps://www.guilded.gg/17th-Brigade-Combat-Team/groups/WDJ475Xz/channels/b6150981-96f6-4112-a6e8-1c035d0e00e8/forums/1745434240', 801, 0, '2020-04-10 18:47:36', '2025-12-17 19:45:26', NULL, '2978247', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (78, 'Operation: Balkan Thunder - Chapter 5', '2020-05-23 18:00:00', '2020-05-23 21:00:00', 'Beketov', '#df5353', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/b6150981-96f6-4112-a6e8-1c035d0e00e8/forums/499234204', 801, 0, '2020-04-10 18:47:57', '2025-12-17 19:45:26', NULL, '2978249', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (79, 'Operation: Balkan Thunder - Chapter 6', '2020-05-30 17:50:00', '2020-05-30 21:00:00', 'Beketov', '#df5353', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/b6150981-96f6-4112-a6e8-1c035d0e00e8/forums/212105188', 801, 0, '2020-04-10 18:48:25', '2025-12-17 19:45:26', NULL, '2978250', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (80, 'Operation: Balkan Thunder - Chapter 7', '2020-06-06 17:50:00', '2020-06-06 21:00:00', 'Beketov', '#df5353', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/b6150981-96f6-4112-a6e8-1c035d0e00e8/forums/151631425', 801, 0, '2020-04-10 18:48:37', '2025-12-17 19:45:26', NULL, '2978251', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (81, 'Operation: Balkan Thunder - Chapter 8 - FINALE', '2020-06-13 17:50:00', '2020-06-13 21:00:00', 'Beketov', '#df5353', '', 801, 0, '2020-04-10 18:48:57', '2025-12-17 19:45:26', NULL, '2978252', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (82, 'Fire Fight Series: THE HILL', '2020-04-24 18:30:00', '2020-04-24 20:30:00', '', '#df5353', 'COME GET THIS WORK THE FIRFIGHT SERIES IS BACK THIS WILL BE ON RHSPKL SO GRAB THAT MAP...\nTHIS IS TO BE CONDUCTED AND TREATED AS AN OFFICAL OP\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1978754337&searchtext=RHSPKL', 43, 0, '2020-04-10 22:32:20', '2025-12-17 19:45:26', NULL, '2978433', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (83, 'FIRE FIGHT SERIES: GHOSTBUSTERS', '2020-05-08 18:30:00', '2020-05-08 20:00:00', '', '#df5353', 'FIREFIGHT SERIES ON ALTIS GHOST HOTEL EZZZZZZZZZZ. THIS IS TO BE CONDUCTED AS AN OFFICAL OP', 43, 0, '2020-04-10 22:37:04', '2025-12-17 19:45:26', NULL, '2978438', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (84, '32nd Weapons Familiarization Training', '2020-04-20 18:00:00', '2020-04-20 19:30:00', '', '#ecb200', 'We will be going over some of the weapons 32nd has available such as the Stinger and M240, and what they can do and how to use them.', NULL, 0, '2020-04-13 00:12:38', '2025-12-17 19:45:26', NULL, '2980871', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (85, 'Movement Techniques and Danger Areas', '2020-04-22 18:00:00', '2020-04-22 20:00:00', '', '#008ae1', 'We\'ll be covering the three movement techniqes as well as linear danger areas and open danger areas. ', 322, 0, '2020-04-13 00:20:06', '2025-12-17 19:45:26', NULL, '2980872', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (86, 'IFV/TC training', '2020-04-15 17:30:00', '2020-04-15 19:30:00', '', '#d89332', 'Come shoot the big booms', 932, 0, '2020-04-13 18:44:59', '2025-12-17 19:45:26', NULL, '2981388', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (87, 'Ranger NCO Meeting', '2020-04-25 17:00:00', '2020-04-25 18:00:00', '', '#30a68f', '\n ', NULL, 0, '2020-04-14 17:50:15', '2025-12-17 19:45:26', NULL, '2982602', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (88, 'Ranger NCO Meeting', '2020-04-18 17:00:00', '2020-04-18 18:00:00', '', '#30a68f', '\n ', NULL, 0, '2020-04-14 17:50:15', '2025-12-17 19:45:26', NULL, '2982603', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (89, 'Ranger NCO Meeting', '2020-05-02 17:00:00', '2020-05-02 18:00:00', '', '#30a68f', '\n ', NULL, 0, '2020-04-14 17:50:15', '2025-12-17 19:45:26', NULL, '2982604', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (90, 'Pathfinder Expedition', '2020-04-16 19:00:00', '2020-04-16 20:00:00', '', '#df5353', 'Pathfinders are going out. Let\'s hope they do good. They might stream it.', 801, 0, '2020-04-15 14:43:06', '2025-12-17 19:45:26', NULL, '2983589', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (91, 'BLUFOR/OPFOR Asset Training', '2020-05-01 18:00:00', '2020-05-01 20:00:00', '', '#008ae1', 'Learn how to use the various Crew Served Weapons and launchers available to us, as well as the tools that our OPFOR commonly uses.', 468, 0, '2020-04-17 03:16:03', '2025-12-17 19:45:26', NULL, '2985130', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (92, 'TAKING THE AIRPORT : Liberation', '2020-04-19 09:00:00', '2020-04-19 21:00:00', '', '#a250e8', 'MAKING MOVES ALL DAY TOWARD TAKING THE AIRPORT', 43, 0, '2020-04-19 07:02:21', '2025-12-17 19:45:26', NULL, '2986743', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (93, 'NIGHT MISSION TEST', '2020-04-22 16:00:00', '2020-04-22 17:00:00', '', '#008ae1', 'Testing to ensure ALIVE spawns the enemies. Don\'t come unless you\'re Hizumi.', 801, 0, '2020-04-19 17:31:33', '2025-12-17 19:45:26', NULL, '2987418', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (94, '2 in. Training', '2020-04-25 13:00:00', '2020-04-25 14:00:00', '', '#6cba50', 'Yes thats what she said. Time to learn some Rangers on how to use 2in Mortars', NULL, 0, '2020-04-19 17:44:44', '2025-12-17 19:45:26', NULL, '2987421', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (95, 'AIT 1 - Hosted by Turbo', '2020-04-30 18:00:00', '2020-04-30 20:00:00', '', '#6cba50', 'We will be going over standard field operations such as SALUTE reports, how to move as a member of a fireteam and much more!', 1104, 0, '2020-04-19 17:47:49', '2025-12-17 19:45:26', NULL, '2987452', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (96, 'Sharpshooter Qual', '2020-05-06 18:00:00', '2020-05-06 18:30:00', '', '#6cba50', 'I\'ve been asked to bring this back so here it is. I\'ll only be there for a half hour so show up on time.\n\nGear:\nM4, it can be a block or carry whatever as long as it is a M4, and it must have a Leupold Mark 4 scope we will check weapons because we are lame.', NULL, 0, '2020-04-19 17:48:18', '2025-12-17 19:45:26', NULL, '2987453', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (97, 'AIT 2 - Hosted by Turbo', '2020-05-06 19:00:00', '2020-05-06 21:00:00', '', '#6cba50', 'We will be going over standard combat operations such as how to engage the enemy, covering fire, reacting to or breaking contact and much more!', 1104, 0, '2020-04-19 17:59:17', '2025-12-17 19:45:26', NULL, '2987454', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (98, 'AIT 3 - Hosted by Turbo', '2020-05-21 18:00:00', '2020-05-21 19:00:00', '', '#6cba50', 'We will be going over urban combat operations such as MOUT and CQB.', 1104, 0, '2020-04-19 18:01:05', '2025-12-17 19:45:26', NULL, '2987455', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (99, 'Pilot Training PT.2', '2020-05-03 18:00:00', '2020-05-03 19:00:00', '', '#d89332', 'Going over flight characteristics and handling of the MH-6 Little Bird.', NULL, 0, '2020-04-20 03:39:37', '2025-12-17 19:45:26', NULL, '2988545', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (100, 'RTO Training (Book work)', '2020-04-24 15:00:00', '2020-04-24 17:00:00', '', '#355bf8', 'Come work through the Information Portion of the RTO Training. This will take a bit of time and depending on how long it takes to cover the information Practical could be done during this event otherwise Practical will be schedueld at another time \n\nGoal of an RTO\r\n\r\nRadio Frequencies\r\n\r\nRadio Etiquette\r\n\r\nVernacular\r\n\r\nRadio Protocols & Discipline\r\n\r\nRelaying Information & Alternative Methods of Communication\r\n', 38, 0, '2020-04-20 15:15:09', '2025-12-17 19:45:26', NULL, '2989142', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (101, '68W Training', '2020-04-23 17:30:00', '2020-04-23 19:00:00', '', '#6cba50', 'This is the training for the 68W Combat Medic course.\nTrainees MUST sign up in order to be able to ensure completion of the course.\nCLS course is a pre-requisite.', 539, 0, '2020-04-21 21:14:59', '2025-12-17 19:45:26', NULL, '2989975', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (102, 'Principles of Fireteams', '2020-04-29 18:00:00', '2020-04-29 20:00:00', '', '#008ae1', 'Things we will go over as followed:Basic kits (Rifleman, SAW, Grenadier), how to use those kits, basic equipment use (frags, smokes, flashes), Radios, basic radio reports, movement in formations. Come and gets some experience on movement and leading a fire team', 779, 0, '2020-04-23 23:33:43', '2025-12-17 19:45:26', NULL, '2990784', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (103, 'using trucks for support: ken teaches rangers series', '2020-05-04 18:30:00', '2020-05-04 19:30:00', '', '#ecb200', 'Yall gonna learn about using the ASV....and what u learn here will apply to strykers and pretty much any truck with a gun....this is a truck rangers can use it\'s not just a 32nd only asset...so yall fonna learn how to do it ezzz', 43, 0, '2020-04-24 12:39:44', '2025-12-17 19:45:26', NULL, '2991407', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (104, 'Community Meeting', '2020-04-26 15:00:00', '2020-04-26 16:00:00', '', '#ecb200', 'Discuss recent events and roles of 7th and 32nd', 43, 0, '2020-04-24 13:41:43', '2025-12-17 19:45:26', NULL, '2991471', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (105, 'LIBERATION OPS', '2020-05-10 11:00:00', '2020-05-10 15:00:00', '', '#008ae1', 'LIBERATION OPS WEEKELY EVENT', 43, 0, '2020-04-26 22:32:15', '2025-12-17 19:45:26', NULL, '2993500', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (106, 'LIBERATION OPS', '2020-05-03 11:00:00', '2020-05-03 15:00:00', '', '#df5353', 'LIBERATION OPS WEEKELY EVENT', 43, 0, '2020-04-26 22:32:15', '2025-12-17 19:45:26', NULL, '2993501', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (107, 'LIBERATION OPS', '2020-05-24 11:00:00', '2020-05-24 15:00:00', '', '#008ae1', 'LIBERATION OPS WEEKELY EVENT', 43, 0, '2020-04-26 22:32:15', '2025-12-17 19:45:26', NULL, '2993502', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (108, 'LIBERATION OPS', '2020-05-17 11:00:00', '2020-05-17 15:00:00', '', '#008ae1', 'LIBERATION OPS WEEKELY EVENT', 43, 0, '2020-04-26 22:32:15', '2025-12-17 19:45:26', NULL, '2993504', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (109, 'HVT TVT PVP - Come to Brazil', '2020-05-13 18:00:00', '2020-05-13 20:30:00', 'TANOA', '#df5353', 'WE IN BRAZIL (Tanoa)\nConcept: Para-military cartel has a police chief captive. Brazillian special forces have to rescue him.\n', 801, 0, '2020-04-28 02:10:55', '2025-12-17 19:45:26', NULL, '2994480', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (110, 'Command Meeting', '2020-05-03 15:00:00', '2020-05-03 17:00:00', '', '#df5353', 'Discuss problems, issues, or concerns between units.', 2221, 0, '2020-04-28 14:32:39', '2025-12-17 19:45:26', NULL, '2994906', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (111, 'Command Meeting', '2020-06-07 15:00:00', '2020-06-07 17:00:00', '', '#df5353', 'Discuss problems, issues, concerns between units', 2221, 0, '2020-04-28 14:33:36', '2025-12-17 19:45:26', NULL, '2994907', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (112, 'Command Meeting', '2020-07-05 15:00:00', '2020-07-05 17:00:00', '', '#df5353', 'Discuss problems, issues, concerns between units', 2221, 0, '2020-04-28 14:34:15', '2025-12-17 19:45:26', NULL, '2994908', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (113, 'Command Meeting', '2020-08-02 15:00:00', '2020-08-02 17:00:00', '', '#ecb200', 'Discuss problems, issues, concerns between units', 2221, 0, '2020-04-28 14:34:40', '2025-12-17 19:45:26', NULL, '2994909', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (114, 'Crew Familiarization Training', '2020-04-29 19:00:00', '2020-04-29 20:30:00', '', '#d89332', 'Familiarize ourselves with the roles and responsibilties of each of the crew positions the 32nd will potentially fill in an op.\n\nThis training is Mandatory for all \n members, though you are not required to attend this particular event if you can not. Make sure you schedule one ASAP.', 2221, 0, '2020-04-28 14:38:57', '2025-12-17 19:45:26', NULL, '2994911', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (115, 'RASP', '2020-05-16 18:00:00', '2020-05-16 21:00:00', '', '#df5353', 'Mid-campaign RASP.', 801, 0, '2020-05-01 17:15:49', '2025-12-17 19:45:26', NULL, '3001217', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (116, 'Pilot 2 Makeup', '2020-05-04 17:00:00', '2020-05-04 18:00:00', '', '#008ae1', 'Pilot 2 makeup placeholder', NULL, 0, '2020-05-04 10:37:50', '2025-12-17 19:45:26', NULL, '3006242', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (117, 'Pathfinder Operation', '2020-05-07 19:00:00', '2020-05-07 20:00:00', '', '#df5353', 'Pathfinders are probably going to go out. We can watch their stream.', 801, 0, '2020-05-04 13:59:21', '2025-12-17 19:45:26', NULL, '3006740', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (118, 'DUI', '2020-05-06 18:30:00', '2020-05-06 19:00:00', '', '#355bf8', 'During Basic Training I will go over DUI and if you have any questions', 811, 0, '2020-05-05 15:37:54', '2025-12-17 19:45:26', NULL, '3007644', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (119, 'Ranger NCO Meeting', '2020-05-09 17:00:00', '2020-05-09 18:00:00', 'NCO Club', '#30a68f', '', 801, 0, '2020-05-09 14:43:57', '2025-12-17 19:45:26', NULL, '3015486', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (120, 'Pilot Basic', '2020-05-11 18:00:00', '2020-05-11 19:00:00', '', '#008ae1', 'Learn the Basics of being a Pilot for the 32nd LSG', NULL, 0, '2020-05-10 21:56:41', '2025-12-17 19:45:26', NULL, '3018282', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (121, 'PvPvE Mini-OP - Serbia vs. Croatia', '2020-05-27 18:00:00', '2020-05-27 19:00:00', 'Malden', '#df5353', 'Alternate universe shenanigans, NOT campaign affecting. Full moon night op.\nIn the actual campaign lore, the Serbians had to procure a SAM somehow. In this alternate universe mission, the Serbians attempt to steal a SAM from a PMC operating on an island off of the Balkans. The Croatians also want this SAM.', 801, 0, '2020-05-14 01:51:57', '2025-12-17 19:45:26', NULL, '3023063', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (122, 'ZEUS OP - Zeused by Vincent, Assisted by Night', '2020-05-18 18:00:00', '2020-05-18 19:00:00', '', '#FFFFFF', 'Teaching Vincent the ropes of Zeusing through a live Zeus op. Come play! The more folks, the more fun for y\'all.', 801, 0, '2020-05-14 15:15:22', '2025-12-17 19:45:26', NULL, '3023491', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (123, 'Land Navigation', '2020-05-25 18:00:00', '2020-05-25 20:00:00', 'Training Server', '#6cba50', 'Learn how to read maps and find where you are without using that special technology.', 468, 0, '2020-05-14 19:13:19', '2025-12-17 19:45:26', NULL, '3023729', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (124, 'BLUFOR/OPFOR Asset Training', '2020-05-29 18:00:00', '2020-05-29 19:00:00', '', '#008ae1', 'Let\'s get more people to show up this time.\n\nLearn better ways to kill enemy vehicles, how to use enemy ordnance, and crew-served weapons.', 468, 0, '2020-05-15 01:00:11', '2025-12-17 19:45:26', NULL, '3023809', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (125, 'SCP Operation', '2020-05-22 18:00:00', '2020-05-22 20:00:00', '', '#a250e8', 'A Arma 3 operation set in the SCP universe. The 17th will be taking the roll of MTF-"Nine Tailed Fox" and are tasked with recontaining SCP-045, a dangerous object that does not follow the laws of science. Apex and standard mods required. Expect a nighttime op, in the rain, and keep your wits about you. Apex is required', 2233, 0, '2020-05-15 13:49:57', '2025-12-17 19:45:26', NULL, '3023987', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (126, 'Convoy Training', '2020-05-24 18:00:00', '2020-05-24 19:30:00', 'Training Server, at the Training Grounds', '#ecb200', '', 768, 0, '2020-05-15 14:52:38', '2025-12-17 19:45:26', NULL, '3024022', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (127, 'TC/IFV training', '2020-05-20 18:30:00', '2020-05-20 19:30:00', '', '#d89332', 'big guns go boom', 932, 0, '2020-05-17 03:12:42', '2025-12-17 19:45:26', NULL, '3025623', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (128, 'Ranger NCO Meeting', '2020-05-23 17:00:00', '2020-05-23 18:00:00', '', '#30a68f', '\n ', NULL, 0, '2020-05-18 15:16:01', '2025-12-17 19:45:26', NULL, '3027185', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (129, 'Defense Operation: BLUFOR HQ', '2020-06-05 18:00:00', '2020-06-05 20:20:00', 'Altis', '#a250e8', 'Hi! I\'m hosting another side operation for you guys! This time we are in a bad situation. Colonel James Williams needs your help! The NATO HQ is under attack by CSAT forces. He has given you everything you will need. This includes snipers, night vision AND thermal goggles. For this operation, you will be starting at HQ BRAVO. You will have multiple ways of transportation to get to HQ ALPHA(which you are to defend). You will also have the ability to get resupplies, reinforcements, and anything else you may need(at zeus\' descretion). CSAT forces are heavily armed and are super prepared for this. Loadouts will be all yours since we have an arsenal. I will have another arsenal just for extra supplies such as thermals, sniper kits, etc. That is all I can tell you for now. Hopefully we can get a lot of people!!', 1129, 0, '2020-05-19 14:28:16', '2025-12-17 19:45:26', NULL, '3028743', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (130, 'CLS Training', '2020-05-28 18:00:00', '2020-05-28 19:00:00', 'Training Server', '#FFFFFF', 'Learn how to be okay with having 1 medium avulsion and still push with your fireteam, or how the medical system works\n\n\nPreferably both', 508, 0, '2020-05-19 17:50:25', '2025-12-17 19:45:26', NULL, '3028781', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (131, 'Impromptu Basic Training', '2020-05-22 18:00:00', '2020-05-22 20:00:00', '', '#FFFFFF', 'I will be hosting a basic training for those who wish to get it done before the operation on Saturday.', NULL, 0, '2020-05-20 06:54:20', '2025-12-17 19:45:26', NULL, '3029121', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (132, 'Sharpshooter Qualification', '2020-06-03 18:00:00', '2020-06-03 19:00:00', '', '#FFFFFF', 'Shoot 5 targets under 60 seconds using an M4 with Leupold Mark 4 HAMR sight to get the ribbon. Only one try. Meet at the rifle range on the training server.', NULL, 0, '2020-05-22 21:59:01', '2025-12-17 19:45:26', NULL, '3033648', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (133, 'PvPvP event: Hostage Negotiation.', '2020-06-24 18:00:00', '2020-06-24 19:00:00', '', '#a250e8', 'This event is to dick around and have fun by roleplay, not to win.\nChedaki Insurgents have captured a Chernarussian politician and are holding him hostage. U.S. Special Forces must negotiate with the Chedaki to secure the peaceful release of the hostage, but will have to meet the demands of the Chedaki. Once both parties have agreed on terms, they must choose a meeting point for a trade-off. Alternatively, if negotiations do not last, U.S. Special Forces may attempt a forceful rescue, while the Chedaki can attempt to flee with the hostage.\nMeanwhile, an unknown third party must work to ensure negotiations go badly.\nStuff about the event:\n\nAll parties will start in an undefended part of the island. \n\n\nNo party will know the location of the other party\n. Each party will have to manually locate the other if they wish to know.\n\n\nAll parties will have the same Long Range Radios.\n U.S. and Chedaki will be given a channel to negotiate on, while the Unknowns must determine the frequency themselves.\n\n\nThere will be a different set of "objectives"\n, interest points that the U.S. and Chedaki can argue over. For instance, the U.S. can negotiate for the hostage in exchange for less checkpoints/less U.S. presence. Or, the U.S. can threaten the Chedaki. \n\nIt\'s RP, you guys decide how to negotiate. \nIf you want to negotiate over matters other than what is provided, you may do so.\n\n\nThe Unknowns can disrupt negotiations however they so wish.\n\n\nThe goal is RP\n ; U.S. and Chedaki do not have to fight each other.\n\nThere is an undercover mole in either the U.S. or Chedaki forces.\n There will only be one mole, and the faction they are with will not be disclosed except to the faction they are allied with.\n\n\nThe U.S.\' goal\n is to secure the hostage, preferably alive, and bring the hostage to their starting point.\n\nThe Chedaki\'s goal\n is to increase favors with the U.S. / decrease the U.S.\' involvement, to a level which \nall\n Chedaki agree to.\n\nThe Unknown\'s goal\n is to leave the country with the hostage, dead or alive.\n\nIf negotiations fall short, \nthe Chedaki may attempt to leave the country\n by reaching one of several points, with the hostage, dead or alive, OR eliminate all hostile forces.\n\nOther notable rules will be posted the night of the event and discussed before the event begins.', 468, 0, '2020-05-23 21:50:19', '2025-12-17 19:45:26', NULL, '3034321', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (134, 'CAS Training', '2020-05-25 16:00:00', '2020-05-25 17:00:00', 'Training Server', '#FFFFFF', 'Must have completed Pilot Exam', 216, 0, '2020-05-24 00:05:12', '2025-12-17 19:45:26', NULL, '3034367', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (135, 'Air Crew Training', '2020-05-27 16:30:00', '2020-05-27 18:00:00', 'Training Server', '#FFFFFF', '', 216, 0, '2020-05-24 00:09:41', '2025-12-17 19:45:26', NULL, '3034368', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (136, 'TANKS AND THINGS TRAINING', '2020-05-26 18:45:00', '2020-05-26 20:00:00', '', '#d89332', 'AYO COME LEARN TANK STUFF', 43, 0, '2020-05-24 19:49:39', '2025-12-17 19:45:26', NULL, '3035881', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (137, 'Side Op: Capture HVT', '2020-06-04 18:00:00', '2020-06-04 20:00:00', '', '#df5353', 'Capture an Isis leader hiding in a compound in Zargabad. ', 322, 0, '2020-05-28 01:02:30', '2025-12-17 19:45:26', NULL, '3042188', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (138, 'Arma 3 Racing', '2020-06-14 18:00:00', '2020-06-14 19:30:00', '', '#a250e8', 'With the recent Karts DLC becoming free, why not have some fun in Arma! I’ll also do some other fun vehicles to race besides the karts if you want. Winner gets a whopping congratulations from me. I’ll setup some tracks and hopefully I’ll see you there!! Depending on how things go maybe I’ll do this more often.', 1129, 0, '2020-05-29 03:53:20', '2025-12-17 19:45:26', NULL, '3042932', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (139, '32nd Crew Familiarization Training', '2020-06-18 18:00:00', '2020-06-18 19:00:00', '', '#ecb200', 'Become familiarized with the various roles you may need to fill in vehicles during an operation, also learn how to operate a mortar. This is not an armor/helicopter crew/IDF training so no badges or ribbons will be given out. Strongly recommended for the newer members of 32nd.', NULL, 0, '2020-05-30 17:32:50', '2025-12-17 19:45:26', NULL, '3046190', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (140, 'AIT 1- Hosted by Kron', '2020-06-01 17:00:00', '2020-06-01 18:00:00', '', '#6cba50', 'AIT 1 and stuff ', 644, 0, '2020-05-31 03:41:33', '2025-12-17 19:45:26', NULL, '3046980', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (141, 'Pathfinder Assessment', '2020-06-03 18:30:00', '2020-06-03 21:30:00', '', '#6cba50', 'This is for assessment test for Pathfinder due to limited slots please do not sign up if you do not have the requirements. Those would be Combat Jump Wings and being in the unit for 30 days.', NULL, 0, '2020-05-31 22:15:43', '2025-12-17 19:45:26', NULL, '3049830', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (142, 'Escape & Evasion Training', '2020-06-01 18:30:00', '2020-06-01 19:30:00', '', '#d89332', '', 216, 0, '2020-05-31 22:52:29', '2025-12-17 19:45:26', NULL, '3049860', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (143, 'AIT 2 Hosted by Kron', '2020-06-08 17:00:00', '2020-06-08 19:00:00', '', '#6cba50', '', 644, 0, '2020-06-01 00:08:54', '2025-12-17 19:45:26', NULL, '3049983', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (144, 'Ranger NCO Meeting', '2020-06-06 17:00:00', '2020-06-06 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058679', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (145, 'Ranger NCO Meeting', '2020-06-13 17:00:00', '2020-06-13 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058680', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (146, 'Ranger NCO Meeting', '2020-06-27 17:00:00', '2020-06-27 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058683', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (147, 'Ranger NCO Meeting', '2020-08-22 17:00:00', '2020-08-22 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058684', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (148, 'Ranger NCO Meeting', '2020-07-11 17:00:00', '2020-07-11 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058685', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (149, 'Ranger NCO Meeting', '2020-07-18 17:00:00', '2020-07-18 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058686', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (150, 'Ranger NCO Meeting', '2020-07-25 17:00:00', '2020-07-25 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058687', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (151, 'Ranger NCO Meeting', '2020-08-29 17:00:00', '2020-08-29 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058688', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (152, 'Ranger NCO Meeting', '2020-09-05 17:00:00', '2020-09-05 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058689', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (153, 'Ranger NCO Meeting', '2020-08-01 17:00:00', '2020-08-01 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058690', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (154, 'Ranger NCO Meeting', '2020-08-08 17:00:00', '2020-08-08 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058691', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (155, 'Ranger NCO Meeting', '2020-08-15 17:00:00', '2020-08-15 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058692', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (156, 'Ranger NCO Meeting', '2020-09-12 17:00:00', '2020-09-12 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058693', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (157, 'Ranger NCO Meeting', '2020-09-19 17:00:00', '2020-09-19 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058694', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (158, 'Ranger NCO Meeting', '2020-09-26 17:00:00', '2020-09-26 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058695', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (159, 'Ranger NCO Meeting', '2020-10-03 17:00:00', '2020-10-03 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058696', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (160, 'Ranger NCO Meeting', '2020-10-24 17:30:00', '2020-10-24 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058697', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (161, 'Ranger NCO Meeting', '2020-10-10 17:00:00', '2020-10-10 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058698', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (162, 'Ranger NCO Meeting', '2020-10-17 17:00:00', '2020-10-17 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058699', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (163, 'Ranger NCO Meeting', '2020-10-31 17:00:00', '2020-10-31 17:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058700', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (164, 'Ranger NCO Meeting', '2020-11-14 18:00:00', '2020-11-14 18:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058701', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (165, 'Ranger NCO Meeting', '2020-11-07 18:00:00', '2020-11-07 18:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058702', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (166, 'Ranger NCO Meeting', '2020-11-21 18:00:00', '2020-11-21 18:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058704', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (167, 'Ranger NCO Meeting', '2020-11-28 18:00:00', '2020-11-28 18:50:00', '', '#30a68f', '', 768, 0, '2020-06-06 15:23:49', '2025-12-17 19:45:26', NULL, '3058705', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (168, 'Air Crew Escape & Evasion Training', '2020-06-17 19:00:00', '2020-06-17 20:00:00', '', '#d89332', '', 216, 0, '2020-06-06 17:51:29', '2025-12-17 19:45:26', NULL, '3058740', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (169, 'Land Navigation', '2020-06-15 18:00:00', '2020-06-15 20:00:00', '', '#6cba50', 'Today we will be going over map reading and navigation of the AO using tools such as the compass, map tools and the good old fashion eye!', 1104, 0, '2020-06-06 17:53:24', '2025-12-17 19:45:26', NULL, '3058741', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (170, 'Liberation Vietnam', '2020-06-07 18:30:00', '2020-06-07 21:00:00', 'Beachhead Persistent Vintage Server', '#FFFFFF', 'Liberation Vietnam\n\nModpack: \n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2108185038\nServer Name:\n Beachhead Vintage Persistent Server', 216, 0, '2020-06-06 17:53:34', '2025-12-17 19:45:26', NULL, '3058742', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (171, '17BCT Photo Shoot', '2020-06-12 19:30:00', '2020-06-12 20:30:00', '', '#df5353', 'Come look pretty for the camera', 216, 0, '2020-06-06 18:09:19', '2025-12-17 19:45:26', NULL, '3058743', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (172, 'TC/IFV training:big gun go boom', '2020-06-14 14:30:00', '2020-06-14 15:30:00', '', '#d89332', 'TC experience. come shoot da big boom. \nFTX comprised of role familarization, communication, and big boom.', 932, 0, '2020-06-07 05:13:51', '2025-12-17 19:45:26', NULL, '3058959', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (173, 'Op. Balkan Thunder - Epilogue', '2020-06-19 18:00:00', '2020-06-19 20:00:00', '', '#a250e8', 'A truce will be negotiated. Play as the CDF!\nTransport and defend a diplomat to the embassy in Beketov. \nUtilize CDF assets, such as UAZs, BMPs, BMDs, BTRs, and BRDMs.', 801, 0, '2020-06-07 23:57:07', '2025-12-17 19:45:26', NULL, '3067093', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (174, 'Pilot Training', '2020-06-10 17:00:00', '2020-06-10 18:00:00', '', '#d89332', 'Beachhead will be going over proper 17bct helicopter flying and crashing techniques.', 216, 0, '2020-06-08 18:11:49', '2025-12-17 19:45:26', NULL, '3067927', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (175, 'InDirect Fire Support Training.', '2020-06-17 18:00:00', '2020-06-17 19:30:00', 'Training Server', '#6cba50', 'Rangers have been given 2in. mortars, so let\'s learn how to use them.\n\n32nd lads who have recently joined, get some IDF practice as well. \n\nHow to physically use the 2 inch and Mk. 6 82mm mortar, as well as how to use the tools available to you to find a fire mission without using the artillery computer, which is disabled during operations.', 468, 0, '2020-06-08 22:23:41', '2025-12-17 19:45:26', NULL, '3068305', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (176, 'Pilot Exams', '2020-06-22 19:00:00', '2020-06-22 21:00:00', '', '#d89332', '', 216, 0, '2020-06-13 04:44:34', '2025-12-17 19:45:26', NULL, '3073192', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (177, 'Helicopter Logistics Training', '2020-06-17 20:00:00', '2020-06-17 21:00:00', '', '#d89332', '', 216, 0, '2020-06-13 04:45:54', '2025-12-17 19:45:26', NULL, '3073193', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (178, 'Pilot Training', '2020-06-15 20:00:00', '2020-06-15 22:00:00', '', '#d89332', '', 216, 0, '2020-06-13 04:48:32', '2025-12-17 19:45:26', NULL, '3073195', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (179, 'Pilot Training', '2020-06-20 12:00:00', '2020-06-20 13:30:00', '', '#d89332', '', 216, 0, '2020-06-14 00:15:46', '2025-12-17 19:45:26', NULL, '3073687', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (180, 'Pathfinder Training', '2020-06-18 18:00:00', '2020-06-18 20:30:00', '', '#6cba50', 'This is the book work for Pathfinder Training. Going over the tools of the trade. ', NULL, 0, '2020-06-14 14:56:05', '2025-12-17 19:45:26', NULL, '3074048', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (181, 'RASP', '2020-06-20 18:00:00', '2020-06-20 21:00:00', '', '#df5353', 'Ranger Assessment and Selection Program', 2221, 0, '2020-06-14 23:42:32', '2025-12-17 19:45:26', NULL, '3074513', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (182, 'Brigade Training', '2020-06-27 18:00:00', '2020-06-27 21:00:00', '', '#df5353', 'Community Wide Training', 2221, 0, '2020-06-14 23:43:09', '2025-12-17 19:45:26', NULL, '3074514', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (183, 'Convoy Training', '2020-06-22 16:30:00', '2020-06-22 18:00:00', '', '#6cba50', 'It seems like every time we get in ground vehicles at the start of an op, it doubles our step-off time. Come learn the stuff so we can not take forever getting in the car.', 768, 0, '2020-06-15 17:32:45', '2025-12-17 19:45:26', NULL, '3075228', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (184, 'Pathfinder Exam', '2020-06-22 18:00:00', '2020-06-22 21:00:00', '', '#6cba50', 'This is for assessment test for Pathfinder due to limited slots please do not sign up if you do not have the requirements. Those would be Combat Jump Wings and being in the unit for 30 days.', NULL, 0, '2020-06-15 17:39:07', '2025-12-17 19:45:26', NULL, '3075262', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (185, 'TC/IFV training', '2020-06-21 14:00:00', '2020-06-21 15:30:00', '', '#ecb200', 'Come shoot big booms, FtX compromises of communication and experiencing what big boom can do for you.', 932, 0, '2020-06-15 21:25:39', '2025-12-17 19:45:26', NULL, '3075456', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (186, 'Anti-Armor / Heavy Weapon Familiarzation', '2020-06-26 18:00:00', '2020-06-26 19:30:00', '', '#6cba50', 'Screw it, I\'m changing the name.\n\nLearn the ins and outs of enemy vehicles, how to kill them using various methods, and using different heavy weapons.', 468, 0, '2020-06-18 05:52:39', '2025-12-17 19:45:26', NULL, '3083791', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (187, 'Trouble in Terrorist Town', '2020-06-28 15:00:00', '2020-06-28 16:30:00', '', '#a250e8', 'A take on this classic GMod gamemode - Minimum 3 players, Max 25 players. The more who attend, the better. First come first serve, as long as you sign up on the website.\n\nA given game round will last no more than 4 minutes. An announcement will be posted when there are two minutes left, and another when there is one minute left.\n\nThe Innocents win if all Traitors are killed, or if time runs out.\n\nThe Traitors win if all Innocents, including the Detective, are killed.\n\nUpon conclusion of the game round, players will reslot and repeat the game process until there are not enough players to meet the 3-player minimum.\n\nA number of Innocent Terrorists must work together to figure out who the Traitors are, without knowing who the other Innocents are.\n- There will always be one Traitor, and Traitors will typically be outnumbered on a 1:3 basis.\n- The exact number of Traitors will never be disclosed.\nAll Traitors will be randomly chosen and DM\'d before the round begins. They will also be given a short-range channel to communicate with other traitors.\n\nThe Traitors will know each others\' identities but will always be outnumbered. \n\n\nThere may be a Detective, known by all to be an Innocent, who can use their special powers of deduction to determine who the Traitors are.\n- There must be a minimum of four players for a Detective to be present.\n- The Detective will be publicly announced when the round begins. The Detective will be given a special SR channel to communicate with the Zeus regarding the Detective\'s powers.\n\nThere are a number of weapons/body armor placed around the map. Players may use these at will or they may stick to their Chiapa Rhinos.\n\nTraitors will have access to a special Traitor area where they can be guaranteed to acquire armor and higher performance weapons, and other tools to assist them in killing Innocents.\n- Innocents who are found to be accessing the Traitor area will immediately be killed.\n\nThere is a Heavy Machine Gun placed in the beginning area. While this HMG can be seen by all players, only Traitors are allowed to mount it and anybody who mounts it can be seen as a Traitor. \n- Innocents may mount the HMG at the risk of being known as a Traitor.\n\nThere will be a Traitor Tester Area. Three players must enter tents and stay inside the tents while a test is run to determine if there is a Traitor present. If a Traitor is present, their identity will not be revealed, but other players will know that a Traitor was among those tested.\n- If all three players are Innocent, the Tester will show Green for Innocent.\n- If one of the three is a Traitor. the Tester will show Red, but will not identify the Traitor.\n- If two or all of the people being tested are Traitors, the Tester will show Green.\n- The Detective may choose to be tested.\n- The Tester may be disabled if one of the tents are damaged by an explosive.\n\nGhosting is not allowed. \nToxicity is not allowed. If you\'re going to get salty at a PVP gamemode, don\'t play.\n\nThe only thing I ask is that you have fun. I reserve the right to shut down the game-mode and stop making more if it only results in you guys getting salty at each other.\n\nOther prominent rules will be posted on the night of the event.', 468, 0, '2020-06-18 19:18:24', '2025-12-17 19:45:26', NULL, '3085151', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (188, 'AIT 3', '2020-06-21 17:00:00', '2020-06-21 18:30:00', '', '#ecb200', 'MOUT aka murder city. Come learn the basics of operation in an urban environment', 644, 0, '2020-06-19 19:05:15', '2025-12-17 19:45:26', NULL, '3086646', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (189, 'Ranger NCO meeting', '2020-06-20 17:00:00', '2020-06-20 18:00:00', '', '#30a68f', '\n ', NULL, 0, '2020-06-20 02:03:21', '2025-12-17 19:45:26', NULL, '3087016', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (190, 'Brigade Ops', '2020-07-04 18:00:00', '2020-07-04 21:00:00', '', '#df5353', '', 2221, 0, '2020-06-20 03:49:57', '2025-12-17 19:45:26', NULL, '3087258', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (191, 'Operation Iron Fist Part 1', '2020-07-11 18:00:00', '2020-07-11 21:00:00', '', '#df5353', '', 2221, 0, '2020-06-20 03:50:56', '2025-12-17 19:45:26', NULL, '3087259', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (192, 'Joint Op with CML', '2020-07-18 18:00:00', '2020-07-18 21:00:00', '', '#df5353', '', 2221, 0, '2020-06-20 03:51:29', '2025-12-17 19:45:26', NULL, '3087260', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (193, 'Operation Iron Fist Part 2', '2020-07-25 18:00:00', '2020-07-25 21:00:00', '', '#df5353', '', 2221, 0, '2020-06-20 03:51:44', '2025-12-17 19:45:26', NULL, '3087261', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (194, 'Operation Iron Fist Part 3', '2020-08-01 18:00:00', '2020-08-01 21:00:00', '', '#df5353', '', 2221, 0, '2020-06-20 03:51:58', '2025-12-17 19:45:26', NULL, '3087262', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (195, 'Operation Iron Fist Part 4', '2020-08-08 18:00:00', '2020-08-08 21:00:00', '', '#df5353', '', 2221, 0, '2020-06-20 03:52:28', '2025-12-17 19:45:26', NULL, '3087264', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (196, 'Mid Campaign RASP', '2020-08-15 18:00:00', '2020-08-15 21:00:00', '', '#df5353', '', 2221, 0, '2020-06-20 03:52:47', '2025-12-17 19:45:26', NULL, '3087265', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (197, 'Operation Iron Fist Part 5', '2020-08-22 18:00:00', '2020-08-22 21:00:00', '', '#df5353', '', 2221, 0, '2020-06-20 03:53:01', '2025-12-17 19:45:26', NULL, '3087266', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (198, 'Operation Iron Fist Part 6', '2020-08-29 18:00:00', '2020-08-29 21:00:00', '', '#df5353', '', 2221, 0, '2020-06-20 03:53:20', '2025-12-17 19:45:26', NULL, '3087267', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (199, 'Operation Iron Fist Part 7', '2020-09-05 18:00:00', '2020-09-05 21:00:00', '', '#df5353', '', 2221, 0, '2020-06-20 03:53:53', '2025-12-17 19:45:26', NULL, '3087268', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (200, 'Command Meeting', '2020-09-06 15:00:00', '2020-09-06 17:00:00', '', '#ecb200', '', 2221, 0, '2020-06-20 03:54:12', '2025-12-17 19:45:26', NULL, '3087269', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (201, 'Ranger Exibition', '2020-06-25 18:00:00', '2020-06-25 19:00:00', '', '#a250e8', 'A fun mission with the goal of practicing our stuff.\nLooters are trying to steal our fucking copper. Drug syndicate is buying them.', 801, 0, '2020-06-20 22:34:50', '2025-12-17 19:45:26', NULL, '3088653', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (202, 'FireTeam Ops: Secure Enemy Intel', '2020-07-06 18:00:00', '2020-07-06 19:00:00', '', '#a250e8', 'This is a Zeus Guided series where you\'ll be playing as a U.S. Special Operations team assisting the Government Army of Lingor take down the Lingor Rebel Cartel. \nPrimary OBJ: Secure enemy intel detailing the whereabouts of a local lieutenant \nSecondary OBJ\'s: Destroy a drug supply cache and the communications outpost. \nThese ops are designed for a fireteam (4 players), but more players are welcome. \nDownload these mods and use them with the 17th shadowmod. \n\n\n\n\n \n\n\n', 322, 0, '2020-06-21 18:10:19', '2025-12-17 19:45:26', NULL, '3090353', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (203, 'Marksman/Sharpshooter Qualifications', '2020-06-22 17:30:00', '2020-06-22 19:00:00', 'Training Server', '#6cba50', 'As per the new Marksman/Sharpshooter standards, let\'s get some quals done.\n\nAnother qualification will be held another time this week and another time next week, this one is going up for those who want to get it done ASAP.\n\nThose who are going to Pathfinder Exam and show up before the Exam starts will receive priority.\n\nReference the guidelines (\n) for what you\'re expected to do. \n\nWeapons will be checked before the quals start.', 468, 0, '2020-06-22 06:34:41', '2025-12-17 19:45:26', NULL, '3091624', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (204, 'Air Crew & Co-Pilot Training', '2020-06-29 17:00:00', '2020-06-29 19:00:00', '', '#d89332', '', 216, 0, '2020-06-26 16:01:36', '2025-12-17 19:45:26', NULL, '3102758', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (205, 'Ranger Training', '2020-07-10 18:00:00', '2020-07-10 20:00:00', '', '#6cba50', 'Learn how to plan Airborne Jumps lights and RPs. Also get your jump wings', NULL, 0, '2020-06-27 22:45:49', '2025-12-17 19:45:26', NULL, '3104804', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (206, 'Ranger Training', '2020-07-17 18:00:00', '2020-07-17 20:00:00', '', '#6cba50', 'Placeholder', NULL, 0, '2020-06-27 22:45:49', '2025-12-17 19:45:26', NULL, '3104806', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (207, 'Ranger Training', '2020-07-24 18:00:00', '2020-07-24 20:00:00', '', '#6cba50', 'MOUT training', NULL, 0, '2020-06-27 22:45:49', '2025-12-17 19:45:26', NULL, '3104807', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (208, 'Ranger Training', '2020-08-07 18:00:00', '2020-08-07 20:00:00', '', '#6cba50', 'Lets Talk Comms this week. That might be Platoon net, Squad net, or even Fireteam net. Lets clean up comms and get the info we need across as we need it.', NULL, 0, '2020-06-27 22:45:49', '2025-12-17 19:45:26', NULL, '3104808', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (209, 'TC/IFV Training', '2020-07-01 14:00:00', '2020-07-01 15:30:00', '', '#d89332', 'Gonna turn up the HEAT for another round of TC/IFV training. ', 932, 0, '2020-06-28 23:28:08', '2025-12-17 19:45:26', NULL, '3106813', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (210, 'Marksman/Sharpshooter Quals', '2020-07-03 14:00:00', '2020-07-03 17:15:00', '', '#6cba50', 'As per the new Marksman/Sharpshooter standards, let\'s get some quals done.\n\nReference the guidelines (\n) for what you\'re expected to do. \n\nWeapons will be checked before the quals start.\n\nI will be on the server starting from 3 PM CST and will be on for 3 hours until I have to prepare for Basic.', 468, 0, '2020-06-30 01:57:54', '2025-12-17 19:45:26', NULL, '3108972', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (211, 'Basic Training', '2020-07-03 18:00:00', '2020-07-03 19:30:00', '', '#008ae1', 'A Basic Training.', 468, 0, '2020-07-01 21:53:26', '2025-12-17 19:45:26', NULL, '3113785', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (212, 'AIT 1', '2020-07-14 18:00:00', '2020-07-14 19:30:00', '', '#6cba50', '', 768, 0, '2020-07-04 13:55:25', '2025-12-17 19:45:26', NULL, '3118517', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (213, 'Basic Training', '2020-07-07 18:00:00', '2020-07-07 20:00:00', '', '#008ae1', 'Two people have told me this is a better date for them. I hope for them to show up, but all other recruits are also welcome to come.\n\nThis will count as a full basic training.', 468, 0, '2020-07-05 16:55:02', '2025-12-17 19:45:26', NULL, '3121083', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (214, 'Ranger Squad Training', '2020-07-08 17:00:00', '2020-07-08 19:00:00', '', '#6cba50', 'After jump operations at the squad level. Securing Rally points and re consolidate, movement to contact and changing from traveling overwatch to bounding overwatch', 644, 0, '2020-07-06 12:08:12', '2025-12-17 19:45:26', NULL, '3124139', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (215, 'Fireteam Training', '2020-07-07 17:00:00', '2020-07-07 18:30:00', '', '#6cba50', 'Will be going over all the basics of jumping out of planes and helis, preparing you guys to qualify for your Jump Wings on Friday.', 373, 0, '2020-07-07 01:18:24', '2025-12-17 19:45:26', NULL, '3124987', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (216, '32nd Crew Familiarization Training', '2020-07-09 19:30:00', '2020-07-09 20:30:00', '', '#ecb200', 'Basic introduction to 32nd assets and operating procedures. Might be a little late depending on work.', NULL, 0, '2020-07-07 21:18:51', '2025-12-17 19:45:26', NULL, '3126500', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (217, 'MECHINIZED TRAINING AND QUAL', '2020-07-13 19:00:00', '2020-07-13 21:00:00', 'TRAINING SERVER', '#d89332', '32nd lets get some of yall new dudes qualed in all thing mech so yall can get a lil virtual rank on ya collars RANGERS COME SLIDE THRU ASWELL YOU NEVER KNOW U MAY HAVE TO CREW YA OWN BRAD ONE DAY IVE SEEN IT HAPPEN BEFORE', 43, 0, '2020-07-08 00:49:54', '2025-12-17 19:45:26', NULL, '3126684', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (218, 'Basic Training', '2020-07-23 18:00:00', '2020-07-23 21:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 1104, 0, '2020-07-10 01:25:17', '2025-12-17 19:45:26', NULL, '3129262', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (219, 'Basic Training', '2020-08-20 18:00:00', '2020-08-20 21:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 1104, 0, '2020-07-10 01:25:17', '2025-12-17 19:45:26', NULL, '3129263', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (220, 'Basic Training', '2020-09-03 18:00:00', '2020-09-03 21:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 1104, 0, '2020-07-10 01:25:17', '2025-12-17 19:45:26', NULL, '3129264', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (221, 'Basic Training', '2020-09-17 18:00:00', '2020-09-17 21:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 1104, 0, '2020-07-10 01:25:17', '2025-12-17 19:45:26', NULL, '3129265', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (222, 'Basic Training', '2020-08-06 18:00:00', '2020-08-06 21:30:00', '', '#008ae1', 'A scheduled basic training. NCOs, if you are free, please volunteer for the day you are able to make it.', 1104, 0, '2020-07-10 01:25:17', '2025-12-17 19:45:26', NULL, '3129266', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (223, 'Operation Iron First Part 8', '2020-09-12 18:00:00', '2020-09-12 21:00:00', '', '#df5353', '', 2221, 0, '2020-07-11 00:41:11', '2025-12-17 19:45:26', NULL, '3129980', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (224, 'CLS Training', '2020-07-27 18:00:00', '2020-07-27 19:30:00', '', '#6cba50', 'Bullet hit body, bandage fix body\nEZ', 508, 0, '2020-07-11 22:30:36', '2025-12-17 19:45:26', NULL, '3130712', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (225, 'Battle of the AJ’s PvP', '2020-07-21 20:00:00', '2020-07-21 21:00:00', '', '#ecb200', 'The AJ’s will fight each other over who gets to keep their name. 1v1 “Battleship” style Mortar match. Losers new name is TBD.', 322, 0, '2020-07-13 18:32:04', '2025-12-17 19:45:26', NULL, '3132378', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (226, 'Support by Fire - Squad Training', '2020-07-15 18:00:00', '2020-07-15 19:00:00', '', '#6cba50', 'Come learn how to work together between your fireteams and squads.', 801, 0, '2020-07-13 19:51:09', '2025-12-17 19:45:26', NULL, '3132817', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (227, 'Fireteam Ranger Training', '2020-07-16 18:00:00', '2020-07-16 19:30:00', '', '#6cba50', 'Bounding, peeling and establishing a SBF position', 644, 0, '2020-07-13 20:01:10', '2025-12-17 19:45:26', NULL, '3132820', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (228, 'Pilot Training', '2020-07-15 20:00:00', '2020-07-15 22:00:00', '', '#d89332', '', 216, 0, '2020-07-13 20:05:21', '2025-12-17 19:45:26', NULL, '3132821', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (229, 'Marksman and Sharpshooter Quals', '2020-07-17 13:00:00', '2020-07-17 17:45:00', '', '#FFFFFF', 'As per the new Marksman/Sharpshooter standards, let\'s get some quals done.\n\nReference the guidelines (\n) for what you\'re expected to do. \n\nWeapons will be checked before the quals start.\n\nI will be on the server starting from 2 PM CST and will be on for almost 5 hours until I Ranger Training starts. ', 468, 0, '2020-07-15 18:05:55', '2025-12-17 19:45:26', NULL, '3134135', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (230, 'Anti-Armor and Heavy Asset Training', '2020-07-30 18:00:00', '2020-07-30 20:00:00', 'Training Server', '#6cba50', 'People are asking about it so I\'m going to host it. If you don\'t show up, I\'m going to beat you with an empty AT4 tube. You know who you are.\n\nLearn how to effectively kill armor and use different tools to do so.\n\nIt\'s a long training so prepare your water because I sure as hell will need it.', 468, 0, '2020-07-19 02:43:43', '2025-12-17 19:45:26', NULL, '3139232', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (231, 'Aviation Crew', '2020-07-20 19:00:00', '2020-07-20 20:00:00', '', '#d89332', 'how to bird man 101', 476, 0, '2020-07-19 19:48:53', '2025-12-17 19:45:26', NULL, '3139762', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (232, 'Mission Planning', '2020-07-20 17:00:00', '2020-07-20 19:00:00', 'Training Tower', '#6cba50', '', 644, 0, '2020-07-19 20:36:18', '2025-12-17 19:45:26', NULL, '3139770', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (233, 'combat diver badge', '2020-07-22 19:00:00', '2020-07-22 21:00:00', '', '#ecb200', '', 2221, 0, '2020-07-19 20:47:54', '2025-12-17 19:45:26', NULL, '3139773', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (234, 'Operation: Capture', '2020-07-29 18:00:00', '2020-07-29 20:30:00', '', '#a250e8', 'Operation: Capture!\nThere will be 2 teams. Blufor and Opfor. Both teams will start an equal distance away from the objective you need to capture. In order to capture the objective, you need to drive the vehicle back to your base. You MAY use the mounted weapons if there are any.\nTeams will be given LIMITED supplies. Within the AO there will be some supplies such as ammo, weapons, equipment, etc. This is all free game. Team/Squad leaders may designate this loot if need be.\nRules:\nSteal/Take whatever you want. The loot is all free game. Use any asset you\'d like.\nCapture the objective and bring it back to base safely.', 1129, 0, '2020-07-20 16:18:14', '2025-12-17 19:45:26', NULL, '3140456', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (235, 'Marksman and Sharpshooter Training', '2020-07-24 19:00:00', '2020-07-24 20:00:00', '', '#FFFFFF', 'As per the new Marksman/Sharpshooter standards, let\'s get some quals done.\n\nReference the guidelines (\n) for what you\'re expected to do. \n\nWeapons will be checked before the quals start.\n\nWally is taking over as I cannot do it due to internet issues.', 468, 0, '2020-07-20 20:24:19', '2025-12-17 19:45:26', NULL, '3140861', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (236, 'Fireteam Training', '2020-07-21 18:00:00', '2020-07-21 19:30:00', '', '#6cba50', 'CQB stuff', 1129, 0, '2020-07-20 20:30:10', '2025-12-17 19:45:26', NULL, '3140873', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (237, 'AIT 2', '2020-07-28 18:30:00', '2020-07-28 19:30:00', '', '#6cba50', '', 768, 0, '2020-07-21 20:19:32', '2025-12-17 19:45:26', NULL, '3142085', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (238, 'Copilot', '2020-07-26 13:00:00', '2020-07-26 14:00:00', '', '#FFFFFF', 'how to birb man 102\nyo im sorry for rescheduling twice but we gonna blow shit up ok', 476, 0, '2020-07-23 14:18:43', '2025-12-17 19:45:26', NULL, '3145669', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (239, 'Basic Training', '2020-08-25 18:00:00', '2020-08-25 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149470', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (240, 'Basic Training', '2020-09-08 18:00:00', '2020-09-08 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149471', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (241, 'Basic Training', '2020-10-06 18:00:00', '2020-10-06 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149472', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (242, 'Basic Training', '2020-09-22 18:00:00', '2020-09-22 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149473', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (243, 'Basic Training', '2020-11-03 19:00:00', '2020-11-03 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149474', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (244, 'Basic Training', '2020-10-20 18:00:00', '2020-10-20 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149475', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (245, 'Basic Training', '2020-12-01 19:00:00', '2020-12-01 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149476', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (246, 'Basic Training', '2020-12-15 19:00:00', '2020-12-15 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149477', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (247, 'Basic Training', '2020-12-29 19:00:00', '2020-12-29 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149478', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (248, 'Basic Training', '2021-01-12 19:00:00', '2021-01-12 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149479', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (249, 'Basic Training', '2020-11-17 19:00:00', '2020-11-17 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149480', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (250, 'Basic Training', '2021-02-09 19:00:00', '2021-02-09 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149481', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (251, 'Basic Training', '2021-01-26 19:00:00', '2021-01-26 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149482', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (252, 'Basic Training', '2021-02-23 19:00:00', '2021-02-23 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149483', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (253, 'Basic Training', '2021-04-06 18:00:00', '2021-04-06 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149484', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (254, 'Basic Training', '2021-03-09 19:00:00', '2021-03-09 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149485', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (255, 'Basic Training', '2021-03-23 18:00:00', '2021-03-23 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149486', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (256, '[Cancelled] Basic Training', '2021-05-04 18:00:00', '2021-05-04 21:30:00', 'Training Server', '#008ae1', '', 1104, 1, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149487', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (257, 'Basic Training', '2021-04-20 18:00:00', '2021-04-20 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149488', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (258, 'Basic Training', '2021-06-01 18:00:00', '2021-06-01 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149489', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (259, 'Basic Training', '2021-05-18 18:00:00', '2021-05-18 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149490', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (260, 'Basic Training', '2021-06-15 18:00:00', '2021-06-15 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149491', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (261, '[Canceled for new Schedule] Basic Training', '2021-07-13 18:00:00', '2021-07-13 21:30:00', 'Training Server', '#008ae1', '', 1104, 1, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149492', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (262, 'Basic Training', '2021-06-29 18:00:00', '2021-06-29 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-07-25 17:26:52', '2025-12-17 19:45:26', NULL, '3149493', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (263, 'Pathfinder Asset Training', '2020-07-26 18:00:00', '2020-07-26 19:30:00', 'Training Server', '#6cba50', 'Learn how to use stuff for Pathfinder Operations taught by Del. \nThis is not an exam.', 468, 0, '2020-07-25 22:22:03', '2025-12-17 19:45:26', NULL, '3149671', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (264, 'Persistent Server Ops: Just Liberate Tanoa', '2020-08-05 18:00:00', '2020-08-05 20:00:00', 'Persistent Server', '#ecb200', 'Accidently deleted the mission file for my Side Op scheduled for this night, and I don\'t feel like remaking it.\n\nLet\'s just get some dudes together and liberate Tanoa from the Russians.\nNote: There is a 20 player limit on the peristent server', 2232, 0, '2020-07-26 18:46:02', '2025-12-17 19:45:26', NULL, '3150735', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (265, '32nd Crew Familiarization', '2020-07-27 19:30:00', '2020-07-27 20:30:00', '', '#ecb200', 'Learn the basics of crewing tanks, helicopters, and mortars.', NULL, 0, '2020-07-26 21:46:48', '2025-12-17 19:45:26', NULL, '3150806', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (266, 'Pathfinder Assessment', '2020-07-28 18:00:00', '2020-07-28 22:30:00', 'Side ops Server ', '#6cba50', 'This is for assessment test for Pathfinder due to limited slots please do not sign up if you do not have the requirements. Those would be Combat Jump Wings and being in the unit for 30 days', NULL, 0, '2020-07-27 19:27:05', '2025-12-17 19:45:26', NULL, '3152194', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (267, 'Sandtable Work', '2020-07-31 18:00:00', '2020-07-31 20:00:00', '', '#df5353', 'We be doing some prep for the mission next weekend', NULL, 0, '2020-07-28 14:04:06', '2025-12-17 19:45:26', NULL, '3152781', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (268, 'RTO Practical - Limited Space', '2020-07-30 18:30:00', '2020-07-30 21:00:00', '', '#6cba50', 'Each individual qualification will take ~ 45 min. You are allowed ask as many questions as you like Prior to the Actual Call. Once I TP away you are required to call in strikes according to the Manual. All details of the qualification will be outlined prior to start. You are allowed a maximum of 3 Strikes (Errors). 4th Strike you will not receive your qualification. Each qualification will be completed from start to fninsh and you will be told Post Completion if you passed or Failed and if you received the strikes what they are.', 38, 0, '2020-07-28 20:23:39', '2025-12-17 19:45:26', NULL, '3153060', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (269, '68W Training', '2020-08-01 15:00:00', '2020-08-01 17:00:00', 'Training Server', '#6cba50', '68W Combat Medic Training\nTraining is open to all with caveat;\nRequirements for Certification of Completion:\nSignup \nand\n CLS Badge', 539, 0, '2020-07-28 22:17:02', '2025-12-17 19:45:26', NULL, '3153076', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (270, 'Side Op: Destroy Insurgent Weapons Cache', '2020-08-13 18:00:00', '2020-08-13 20:00:00', 'private ops server', '#a250e8', 'Local Insurgents have heavily occupied the eastern region of Takistan and driven out the majority of civilians. Find and destroy the cache located in the region. Assets such as AH-6 CAS and/or artillery will be available.', 322, 0, '2020-07-29 15:58:05', '2025-12-17 19:45:26', NULL, '3154457', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (271, 'BD1A Training', '2020-08-02 18:30:00', '2020-08-02 20:00:00', '17th BCT Training Server', '#6cba50', 'In an attempt to go over the basics, a moderately short training regarding the maneuvers and knowledge required to complete a BD1A (React to Contact) without mowing down your friends and providing maximum damage to the enemy.', 356, 0, '2020-07-29 20:14:01', '2025-12-17 19:45:26', NULL, '3155321', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (272, 'Air Crew Training', '2020-08-03 15:00:00', '2020-08-03 16:00:00', '', '#FFFFFF', 'All you new 32nd bois, come learn how to fully crew a bird so we can have that sauce on our nex op.', 2225, 0, '2020-08-02 14:50:05', '2025-12-17 19:45:26', NULL, '3161472', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (273, 'IFV/TC Training', '2020-08-06 19:30:00', '2020-08-06 20:30:00', '', '#d89332', 'Come shoot big booms, and talk boom boom bang.', 932, 0, '2020-08-02 23:27:17', '2025-12-17 19:45:26', NULL, '3162006', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (274, 'Squad Level Training - Fireteam/Squad-wide Mass Cas', '2020-08-06 18:00:00', '2020-08-06 19:30:00', 'Training Server', '#6cba50', 'Learn how to save some people and/or a lot of people when they die.', 468, 0, '2020-08-03 20:01:06', '2025-12-17 19:45:26', NULL, '3163404', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (275, 'RTO Training (Book work)', '2020-08-03 18:30:00', '2020-08-03 21:00:00', '', '#FFFFFF', 'This event is being scheduled to fufill trianing request for a couple of individuals who have requested trainings but have been unable to attend do to other obligations.\n=========================================================\nCome work through the Information Portion of the RTO Training. This will take a bit of time and depending on how long it takes to cover the information Practical could be done during this event otherwise Practical will be schedueld at another time \r\n\r\nGoal of an RTO\r\nRelay information for Squad Leads and Platoon Leads clearly and concisely, under any sort of stressful situation.\r\nAct also as a JTAC if none is available\r\nAct also as a JFO if none is available.\r\n\r\nRadio Frequencies\r\nLR Radio Frequencies\r\nSR Radio Frequencies\r\n\r\nRadio Etiquette\r\nUse of Callsigns\r\nUse of Speakers/Headphones\r\n\r\nVernacular\r\nFamiliarization of Prowords listed\r\nFamiliarization of NATO Alphabet\r\n\r\nRadio Protocols & Discipline\r\nFire Team/Squad\r\nSquad/Platoon\r\nPlatoon/Command\r\n\r\nRelaying Information & Alternative Methods of Communication\r\nVarious Formats for relaying information\r\nFlight Request 5-Line\r\nIDF Basic Familiarization\r\nAlternative methods of Communications\r\n', 38, 0, '2020-08-03 20:01:55', '2025-12-17 19:45:26', NULL, '3163405', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (276, 'Fireteam Training - Breaking Contact', '2020-08-04 18:00:00', '2020-08-04 20:00:00', '', '#6cba50', 'Getting shot at? Don\'t want to be? Want to be somewhere safer? Coming to this Fireteam Training and learn how to live another day!', NULL, 0, '2020-08-03 20:05:45', '2025-12-17 19:45:26', NULL, '3163408', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (277, 'Pilot training 1', '2020-08-07 16:00:00', '2020-08-07 17:00:00', '', '#d89332', 'learn/practice flying on the MH 6 littlebird', 580, 0, '2020-08-03 21:09:16', '2025-12-17 19:45:26', NULL, '3163442', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (278, 'Co-Pilot Part 1', '2020-08-10 16:00:00', '2020-08-10 17:30:00', '', '#d89332', 'Navitgation and communication as the 2IC of any airframe. NO BADGE. ', 916, 0, '2020-08-04 18:39:31', '2025-12-17 19:45:26', NULL, '3165192', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (279, 'Co-Pilot Part 2', '2020-08-14 16:00:00', '2020-08-14 17:30:00', '', '#d89332', 'Weapons and CAS for the AH-6 and MH-60 airframes. NO BADGE.', 916, 0, '2020-08-04 19:26:29', '2025-12-17 19:45:26', NULL, '3165202', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (280, 'AIT 3', '2020-08-12 18:00:00', '2020-08-12 19:00:00', '', '#6cba50', '', 768, 0, '2020-08-05 15:14:48', '2025-12-17 19:45:26', NULL, '3166942', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (281, 'Community Roundtable', '2020-08-09 15:00:00', '2020-08-09 17:00:00', 'Command Office Teamspeak Channel ', '#ecb200', 'Quarterly Community meeting. We will vote in unit leads for Iceberg CO, Ranger CO and 32nd CO Iceberg, Also voting in the XO, Command Sergeant Major and Training Sergeant positions. We will discuss points brought up across the unit with everyone in attendance being allowed to speak. If you have something you would like discussed or like to volunteer for any of the positions please respond to the forum located in the bulletin board post found under the alpha company section.', 644, 0, '2020-08-05 16:08:05', '2025-12-17 19:45:26', NULL, '3166945', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (282, 'Marksman/Sharpshooter Quals', '2020-08-07 15:45:00', '2020-08-07 17:45:00', 'Training Server', '#6cba50', 'You know the drill. I\'ll be on for two hours, come on at any time and qual. I expect you to read up on what\'s required to pass.', 468, 0, '2020-08-06 20:39:24', '2025-12-17 19:45:26', NULL, '3169070', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (283, 'pilot 2', '2020-08-09 17:30:00', '2020-08-09 18:30:00', '', '#d89332', 'come and learn/practice flying the UH-60 ', 580, 0, '2020-08-06 22:23:36', '2025-12-17 19:45:26', NULL, '3169555', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (284, 'pilot 3', '2020-08-11 16:00:00', '2020-08-11 17:00:00', '', '#d89332', 'CH-47 training', 580, 0, '2020-08-06 22:26:15', '2025-12-17 19:45:26', NULL, '3169556', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (285, 'Copilot Training 1', '2020-08-24 19:00:00', '2020-08-24 20:30:00', '', '#d89332', 'Communications and Navigation, basic flight to get you on the ground safely if your pilot is shot', 476, 0, '2020-08-07 16:17:59', '2025-12-17 19:45:26', NULL, '3170245', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (286, 'Copilot Training 2', '2020-08-26 19:00:00', '2020-08-26 20:00:00', '', '#d89332', 'Weapons and systems, copiloting CAS birds', 476, 0, '2020-08-07 16:18:21', '2025-12-17 19:45:26', NULL, '3170246', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (287, 'Copilot 2', '2020-08-28 18:30:00', '2020-08-28 20:30:00', '', '#d89332', '', 476, 0, '2020-08-07 16:18:45', '2025-12-17 19:45:26', NULL, '3170247', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (288, 'Pilot Training 1', '2020-09-02 18:30:00', '2020-09-02 20:30:00', '', '#d89332', 'Flying the MH6 Little Bird', 476, 0, '2020-08-07 16:19:58', '2025-12-17 19:45:26', NULL, '3170249', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (289, 'Pilot Training 2', '2020-09-04 18:30:00', '2020-09-04 20:30:00', '', '#d89332', 'Flying the UH60 Blackhawk', 476, 0, '2020-08-07 16:20:05', '2025-12-17 19:45:26', NULL, '3170250', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (290, 'CAS Training 1', '2020-09-08 18:30:00', '2020-09-08 20:00:00', '', '#d89332', 'Flying CAS with the AH6', 476, 0, '2020-08-07 16:23:03', '2025-12-17 19:45:26', NULL, '3170251', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (291, 'CAS Training 2', '2020-09-10 18:30:00', '2020-09-10 20:00:00', '', '#d89332', 'Flying CAS with the MH60 DAP', 476, 0, '2020-08-07 16:23:26', '2025-12-17 19:45:26', NULL, '3170252', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (292, 'Pointman Training', '2020-08-10 18:00:00', '2020-08-10 19:30:00', '', '#6cba50', 'Seems like this is something we need to bring back so here it is', NULL, 0, '2020-08-07 20:09:57', '2025-12-17 19:45:26', NULL, '3170480', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (293, 'Ranger Training', '2020-08-19 19:00:00', '2020-08-19 21:00:00', '', '#6cba50', 'AIT 1 and all it encompasses', 2221, 0, '2020-08-09 23:33:03', '2025-12-17 19:45:26', NULL, '3172832', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (294, 'Ranger Training', '2020-08-26 19:00:00', '2020-08-26 21:00:00', '', '#6cba50', 'AIT 2 and all it encompasses', 2221, 0, '2020-08-09 23:33:16', '2025-12-17 19:45:26', NULL, '3172833', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (295, 'Ranger Training', '2020-09-02 19:00:00', '2020-09-02 21:00:00', '', '#6cba50', 'AIT 3 and all it encompasses', 2221, 0, '2020-08-09 23:33:50', '2025-12-17 19:45:26', NULL, '3172834', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (296, 'BRIGADE FTX', '2020-09-11 18:30:00', '2020-09-11 20:30:00', '', '#df5353', 'good ol training with ken CONVOYS is the topic\nCONVOY AROUND THE WORLD ', 43, 0, '2020-08-10 02:04:12', '2025-12-17 19:45:26', NULL, '3172876', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (297, 'Ranger fire team training', '2020-08-11 18:00:00', '2020-08-11 20:00:00', '', '#6cba50', 'Working on being more aggressive at the team level while still maintaining safe movements and security.', 644, 0, '2020-08-10 18:18:18', '2025-12-17 19:45:26', NULL, '3173937', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (298, 'Counter Attack - Squad Training', '2020-08-28 19:00:00', '2020-08-28 19:30:00', '', '#30a68f', 'Learn how to retreat and reorganize when the contact is too heavy for you to handle. Remember, being French is okay. \n is pretty cool.', 801, 0, '2020-08-10 23:30:01', '2025-12-17 19:45:26', NULL, '3174556', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (299, 'Fireteam Training', '2020-08-18 18:00:00', '2020-08-18 19:30:00', '', '#30a68f', 'Come get the reps in for bounding and peeling.', 373, 0, '2020-08-12 04:36:30', '2025-12-17 19:45:26', NULL, '3176591', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (300, 'RTO Qualification - (Requested Time)', '2020-08-12 18:00:00', '2020-08-12 19:30:00', '', '#6cba50', '', 38, 0, '2020-08-12 22:42:25', '2025-12-17 19:45:26', NULL, '3177986', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (301, 'IFV School Test', '2020-08-27 19:00:00', '2020-08-27 21:00:00', '', '#d89332', 'Qualification for Mechanized Badge. Attending the first part is strongly recommended.', NULL, 0, '2020-08-12 23:13:07', '2025-12-17 19:45:26', NULL, '3178027', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (302, 'IFV School', '2020-08-25 19:00:00', '2020-08-25 21:00:00', '', '#d89332', 'Basics of IFVs and other armor pieces.', NULL, 0, '2020-08-12 23:14:07', '2025-12-17 19:45:26', NULL, '3178028', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (303, '2IC/FTL training', '2020-08-16 13:00:00', '2020-08-16 15:00:00', '', '#ecb200', 'Want to become a 2IC or FTL? This training will show you the ins and outs of leading your team.', 1129, 0, '2020-08-13 18:05:48', '2025-12-17 19:45:26', NULL, '3178444', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (304, 'Side Op: Combat Patrol', '2020-09-07 18:00:00', '2020-09-07 19:30:00', 'Private Ops Server', '#a250e8', 'Event Details:\n Conduct a Combat Patrol. Clear enemy camps and destroy any weapons caches that are found. Watch out for IEDs, suicide bombers, VBIEDs, and ambushes. \nServer:\n Private Ops \nMap:\n Kunduz, Afghanistan \nMods/Additional Mods:\n 17th BCT shadowmod, Kunduz, Afghanistan - Fixed Doors\n\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1188303655', 322, 0, '2020-08-14 01:09:15', '2025-12-17 19:45:26', NULL, '3178916', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (305, 'PATHFINDER OP', '2020-08-18 18:30:00', '2020-08-18 20:00:00', '', '#df5353', 'Pathfinder is to conduct recon of AO and collect intel bfor saturday OP', 43, 0, '2020-08-14 13:29:10', '2025-12-17 19:45:26', NULL, '3179555', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (306, 'Train Your Aim - How to Click Heads [Fireteam Training]', '2020-08-21 18:00:00', '2020-08-21 19:30:00', '', '#30a68f', '\nMeet in the ready room and get ready to discuss how to click heads. Learn from the #1 marksman qualifier ;)', 801, 0, '2020-08-14 20:27:40', '2025-12-17 19:45:26', NULL, '3179777', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (307, 'Sniper School- Non Offical', '2020-08-20 18:00:00', '2020-08-20 20:00:00', '', '#ecb200', 'This is not an official training, this is to test the new curriculum to work out any kinks.', 644, 0, '2020-08-17 00:05:47', '2025-12-17 19:45:26', NULL, '3182590', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (308, 'Operation Clear Sky', '2020-09-03 18:00:00', '2020-09-03 19:00:00', 'Livonia', '#a250e8', 'Push through the forest to an abandoned industrial zone being used by the Livonian Defense Force (LDF) as a SAM site. Destroy the SAMs and eliminate all hostiles. Russian Spetsnaz teams are reportedly assisting LDF forces.', 612, 0, '2020-08-17 22:56:37', '2025-12-17 19:45:26', NULL, '3183341', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (309, 'Air Crew Training', '2020-08-21 19:00:00', '2020-08-21 20:30:00', '', '#d89332', '', 476, 0, '2020-08-19 20:16:17', '2025-12-17 19:45:26', NULL, '3185332', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (310, 'Breaking Contact - Fireteam Training', '2020-08-23 13:00:00', '2020-08-23 14:00:00', '', '#30a68f', 'Learn how we should be breaking contact within a fireteam.', 1129, 0, '2020-08-20 18:47:22', '2025-12-17 19:45:26', NULL, '3186005', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (311, 'RASP', '2020-09-19 18:00:00', '2020-09-19 21:30:00', 'Livonia', '#df5353', 'Requires the Contact DLC for Livonia. Want to know what RASP is? Type !rasp in the Discord.', 801, 0, '2020-08-21 00:29:50', '2025-12-17 19:45:26', NULL, '3186057', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (312, 'Train Your Aim - How to Click Heads', '2020-09-10 18:00:00', '2020-09-10 19:00:00', 'READY ROOM', '#30a68f', 'Meet in the ready room and get ready to discuss how to click heads. Learn from the #1 marksman qualifier ;)', 801, 0, '2020-08-22 00:07:10', '2025-12-17 19:45:26', NULL, '3187795', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (313, 'Air Crew Qual', '2020-08-23 17:00:00', '2020-08-23 18:30:00', '', '#d89332', '', 476, 0, '2020-08-22 07:17:50', '2025-12-17 19:45:26', NULL, '3188127', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (314, 'Fireteam Training - Breaking Contact/Counter Attacks', '2020-08-25 17:00:00', '2020-08-25 18:00:00', '', '#30a68f', '', NULL, 0, '2020-08-22 21:51:56', '2025-12-17 19:45:26', NULL, '3188480', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (315, 'Anti-Armor Training', '2020-09-08 18:00:00', '2020-09-08 20:00:00', '', '#FFFFFF', 'Learn the ins and outs of enemy vehicles so you can efficiently kill them.', 468, 0, '2020-08-23 16:49:47', '2025-12-17 19:45:26', NULL, '3189085', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (316, 'RTO Practical - By Request', '2020-08-27 18:30:00', '2020-08-27 20:30:00', '', '#FFFFFF', 'RTO Practical Test for individuals who completed the bookwork.\nLimited slots do to availablity. Each individual will test / individually so each member may be contacted throughout the event to take the exam.\nBookwork MUST be compelted prior to testing.', 38, 0, '2020-08-26 02:06:49', '2025-12-17 19:45:26', NULL, '3191519', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (317, 'Persistent Server Side Ops', '2020-08-28 20:00:00', '2020-08-28 23:00:00', '', '#FFFFFF', 'Let\'s take land away from the Russians', 516, 0, '2020-08-26 04:25:04', '2025-12-17 19:45:26', NULL, '3191735', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (318, '32nd Training', '2020-09-01 19:00:00', '2020-09-01 21:00:00', '', '#d89332', 'Armor training with a focus on asset identification.', NULL, 0, '2020-08-28 23:45:36', '2025-12-17 19:45:26', NULL, '3193885', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (319, 'AIR ASSAULT', '2020-08-31 18:00:00', '2020-08-31 20:00:00', '', '#6cba50', 'Get air assault learned', 644, 0, '2020-08-29 11:54:19', '2025-12-17 19:45:26', NULL, '3194179', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (320, 'IDF Training & Qualification', '2020-09-03 19:00:00', '2020-09-03 21:00:00', '', '#d89332', 'Learn how to use mortars and other artillery pieces.', NULL, 0, '2020-08-30 02:55:56', '2025-12-17 19:45:26', NULL, '3195552', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (321, 'Pilot Training 3', '2020-09-06 17:00:00', '2020-09-06 18:00:00', '', '#d89332', 'Chinook', 476, 0, '2020-08-31 17:49:49', '2025-12-17 19:45:26', NULL, '3197077', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (322, 'Air Crew Training', '2020-09-16 18:30:00', '2020-09-16 20:00:00', '', '#d89332', '', 476, 0, '2020-08-31 17:54:20', '2025-12-17 19:45:26', NULL, '3197080', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (323, 'Air Crew Training', '2020-09-18 18:30:00', '2020-09-18 19:30:00', '', '#d89332', '', 476, 0, '2020-08-31 17:54:58', '2025-12-17 19:45:26', NULL, '3197081', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (324, 'Copilot 1', '2020-09-21 18:30:00', '2020-09-21 19:30:00', '', '#d89332', '', 476, 0, '2020-08-31 17:55:38', '2025-12-17 19:45:26', NULL, '3197082', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (325, 'Copilot 2', '2020-09-23 18:30:00', '2020-09-23 19:30:00', '', '#d89332', '', 476, 0, '2020-08-31 17:55:49', '2025-12-17 19:45:26', NULL, '3197083', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (326, 'Copilot Qual', '2020-09-25 18:30:00', '2020-09-25 19:30:00', '', '#d89332', '', 476, 0, '2020-08-31 17:56:18', '2025-12-17 19:45:26', NULL, '3197084', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (327, 'Pilot Training 1', '2020-09-28 18:30:00', '2020-09-28 19:30:00', '', '#d89332', 'MH6', 476, 0, '2020-08-31 17:59:27', '2025-12-17 19:45:26', NULL, '3197085', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (328, 'Pilot Training 2', '2020-09-30 18:30:00', '2020-09-30 19:30:00', '', '#d89332', 'UH60', 476, 0, '2020-08-31 17:59:44', '2025-12-17 19:45:26', NULL, '3197086', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (329, 'Pilot Training 3', '2020-10-02 18:30:00', '2020-10-02 19:30:00', '', '#d89332', 'CH47', 476, 0, '2020-08-31 18:00:19', '2025-12-17 19:45:26', NULL, '3197087', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (330, 'Pointman Training', '2020-09-06 18:00:00', '2020-09-06 19:30:00', 'Training Server', '#30a68f', 'Event Details:\n Learn how to maneuver and perform as the fireteam\'s pointman.\nServer: \n17th Brigade Combat Team Training Range\nModset:\n 17th BCT Shadowmod', 2232, 0, '2020-08-31 22:33:08', '2025-12-17 19:45:26', NULL, '3197322', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (331, 'Crew Familiarization', '2020-09-05 14:00:00', '2020-09-05 16:00:00', '', '#d89332', 'Crew Familiarization goes over the basic roles performed by members of the 32nd. This is a key training for any new member of the 32nd, and it is recommended you attend if you have not before, regardless of whether you\'ve attended other trainings.', 309, 0, '2020-09-01 14:56:47', '2025-12-17 19:45:26', NULL, '3198871', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (332, 'Crew Familiarization', '2020-09-09 18:00:00', '2020-09-09 20:00:00', '', '#d89332', 'Crew Familiarization goes over the basic roles performed by members of the 32nd. This is a key training for any new member of the 32nd, and it is recommended you attend if you have not before, regardless of whether you\'ve attended other trainings.', 309, 0, '2020-09-01 14:57:30', '2025-12-17 19:45:26', NULL, '3198873', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (333, 'Air Crew Training', '2020-10-06 18:30:00', '2020-10-06 19:30:00', '', '#d89332', '', 476, 0, '2020-09-01 21:13:40', '2025-12-17 19:45:26', NULL, '3199782', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (334, 'Air Crew Qual', '2020-10-08 18:30:00', '2020-10-08 19:30:00', '', '#d89332', '', 476, 0, '2020-09-01 21:14:16', '2025-12-17 19:45:26', NULL, '3199784', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (335, 'Persistent Server Side Ops', '2020-09-04 19:30:00', '2020-09-04 21:30:00', '', '#FFFFFF', 'Let\'s take more land away from those pesky Russians \nThe goal for tonight is to take a train station and ride around on the train doing drive bys', 516, 0, '2020-09-01 22:29:26', '2025-12-17 19:45:26', NULL, '3200209', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (336, '32nd Training', '2020-09-15 19:00:00', '2020-09-15 21:00:00', '', '#d89332', 'Event details: \nPractice and get good at artillery.\n\nServer: \nTraining server\n\nModset: \n17th BCT shadowmod ', NULL, 0, '2020-09-02 02:50:48', '2025-12-17 19:45:26', NULL, '3200495', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (337, 'JTAC TEST RUN', '2020-09-09 18:00:00', '2020-09-09 19:00:00', '', '#355bf8', 'Testing the JTAC training no qual or ribbion will be awarded.', 644, 0, '2020-09-03 10:09:12', '2025-12-17 19:45:26', NULL, '3201771', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (338, 'Marksman/Sharpshooter Quals', '2020-09-06 12:00:00', '2020-09-06 14:55:00', 'Training Server', '#FFFFFF', 'If you don\'t sign up on Guilded before approaching me I won\'t recognize you as having attended.\nCome and qual at any time during the qualification window, at the rifle range. \n\nI will be answering questions, but know what\'s expected of you \n.\n I\'m not going to read the entire qualification for you.\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/1160160878', 468, 0, '2020-09-04 23:09:50', '2025-12-17 19:45:26', NULL, '3203106', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (339, 'Ranger Training', '2020-09-09 19:00:00', '2020-09-09 20:30:00', '', '#6cba50', 'AIT 4', 2221, 0, '2020-09-05 22:39:46', '2025-12-17 19:45:26', NULL, '3204469', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (340, 'Ranger Training', '2020-09-18 19:00:00', '2020-09-18 21:00:00', '', '#6cba50', 'Airborne Training', 2221, 0, '2020-09-05 22:40:44', '2025-12-17 19:45:26', NULL, '3204470', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (341, 'Ranger Training', '2020-09-25 19:00:00', '2020-09-25 22:00:00', '', '#6cba50', 'Mounted Patrols', 2221, 0, '2020-09-05 22:42:00', '2025-12-17 19:45:26', NULL, '3204471', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (342, 'Ranger Training', '2020-10-02 19:00:00', '2020-10-02 21:00:00', '', '#6cba50', 'Raids!', 2221, 0, '2020-09-05 22:42:23', '2025-12-17 19:45:26', NULL, '3204472', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (343, '32nd Training', '2020-09-22 18:30:00', '2020-09-22 20:00:00', '', '#d89332', 'Event details: \nTBD\n\nServer: \nTraining server\n\nModset: \n17th BCT shadowmod ', NULL, 0, '2020-09-08 17:42:34', '2025-12-17 19:45:26', NULL, '3206759', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (344, 'HALLOWEEN SPOOKY OPERATION', '2020-11-01 19:00:00', '2020-11-01 20:00:00', '', '#a250e8', 'REQUIRES 1 ADDITIONAL MOD\n\n', 801, 0, '2020-09-09 03:36:09', '2025-12-17 19:45:26', NULL, '3206906', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (345, '2IC and FTL Training', '2020-09-13 18:00:00', '2020-09-13 20:00:00', '', '#30a68f', 'Are you interested in becoming a 2IC or Fireteam Lead? This training is perfect then! Last time everyone had tons of fun. We will be going over the basics and putting the work into effect.', 1129, 0, '2020-09-09 20:39:33', '2025-12-17 19:45:26', NULL, '3207423', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (346, 'Land Navigation', '2020-09-15 18:00:00', '2020-09-15 20:00:00', 'Training Server', '#FFFFFF', 'Learn how to read a map so when we lose our GPS during an op we don\'t wander to the ends of the Earth.', 468, 0, '2020-09-10 00:54:35', '2025-12-17 19:45:26', NULL, '3207515', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (347, 'IFV Training', '2020-09-24 18:00:00', '2020-09-24 19:00:00', '', '#d89332', 'Server: \nTraining server\n\nModset: \n17th BCT shadowmod', 628, 0, '2020-09-10 18:50:31', '2025-12-17 19:45:26', NULL, '3207930', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (348, 'Side Op: Jungle Rescue', '2020-09-29 18:00:00', '2020-09-29 19:30:00', 'Tanoa', '#a250e8', '\nLore (because I thought of a cool story and built the whole mission around it)\n\n\nTL:DR at the bottom for anyone who doesn\'t want the story\nIn a sudden and unexpected push, the Tanoa Liberation Army (TLA) carried out multiple coordinated strikes against local law enforcement and garrisons, resulting in control of the South Western island of Tanoa to fall under their control. With a reaction from American peacekeeping forces on neighboring islands imminent, the TLA declared independence from the rest of Tanoa and pleaded their situation to the United Nations. The UN has now requested a hold on the invasion of the South West island as emergency meetings are held with the Tanoa government and the TLA leaders. Once the orders to hold the invasion of the island were announced, the TLA swiftly moved on the remaining US positions who found themselves isolated and without support from the main force. The divided american forces were quickly overrun and defeated. After losing contact with most of the remaining elements on the island, it was decided that a group of American forces would break the UN\'s order to hold, and conduct a high speed raid of a US intelligence position to rescue any remaining American personnel and prevent the capture of information critical to US operations in Tanoa.\n\nOk so basically you gotta go save any american troops that remain at the objective, as well as destroy the computer equiptment. Expect extremely aggressive QRFs, try to get out as fast as you can.', 28, 0, '2020-09-11 20:41:16', '2025-12-17 19:45:26', NULL, '3209159', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (349, 'Sharpshooter/Marksman Qualifications', '2020-09-16 16:00:00', '2020-09-16 17:30:00', 'Training Range', '#FFFFFF', 'If you don\'t sign up on Guilded before approaching me I won\'t recognize you as having attended.\nCome and qual at any time during the qualification window, at the rifle range. \n\nI will be answering questions, but you must know what\'s expected of you. \n.\n I\'m not going to read the entire qualification for you.', 468, 0, '2020-09-11 21:27:03', '2025-12-17 19:45:26', NULL, '3209194', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (350, 'Recruit Orientation', '2020-09-12 15:00:00', '2020-09-12 17:00:00', 'Training server', '#ecb200', 'For recruits and even newer members to get the run down on basic operations. This is not a basic training', 644, 0, '2020-09-11 22:31:13', '2025-12-17 19:45:26', NULL, '3209255', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (351, 'Land Vehicle Training', '2020-09-17 18:00:00', '2020-09-17 20:00:00', '', '#d89332', 'Event details: \nLearn about the land vehicles we have at our disposal.\n\nServer: \nTraining server\n\nModset: \n17th BCT shadowmod', 309, 0, '2020-09-11 22:37:04', '2025-12-17 19:45:26', NULL, '3209257', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (352, 'Fireteam Training', '2020-09-14 19:00:00', '2020-09-14 20:30:00', '', '#30a68f', 'Will be covering the pure basics of jumping out of planes. This will prepare you for the Ranger Training held later in the week.', 373, 0, '2020-09-12 19:34:50', '2025-12-17 19:45:26', NULL, '3210514', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (353, 'Command Meeting', '2020-09-13 15:00:00', '2020-09-13 17:00:00', '', '#d89332', 'Command will discuss community and unit issues and ideas. All are welcome to attend, however you must mute yourself and listen. This is not a discussion. ', 644, 0, '2020-09-13 03:59:10', '2025-12-17 19:45:26', NULL, '3210789', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (354, 'Pathfinder Bookwork', '2020-09-20 18:00:00', '2020-09-20 20:00:00', 'Training Server', '#FFFFFF', 'Bookwork for Pathfinder. This course gives you all the information needed to be a Pathfinder, but will not serve as the Pathfinder qualification. Anyone can attend.\n\nTake notes.', 468, 0, '2020-09-13 20:52:30', '2025-12-17 19:45:26', NULL, '3212570', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (355, 'Sapper Training', '2020-09-16 19:00:00', '2020-09-16 21:00:00', '', '#30a68f', 'Part 1', 2221, 0, '2020-09-13 20:55:06', '2025-12-17 19:45:26', NULL, '3212571', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (356, 'Sapper Training', '2020-09-23 19:00:00', '2020-09-23 21:00:00', '', '#30a68f', 'Part 2', 2221, 0, '2020-09-13 20:55:23', '2025-12-17 19:45:26', NULL, '3212572', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (357, 'Sapper Training', '2020-09-30 19:00:00', '2020-09-30 21:00:00', '', '#30a68f', 'Part 3', 2221, 0, '2020-09-13 20:55:39', '2025-12-17 19:45:26', NULL, '3212573', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (358, 'Escape & Evade', '2020-09-19 14:00:00', '2020-09-19 15:00:00', '', '#d89332', 'air crew e&e', 476, 0, '2020-09-13 21:14:29', '2025-12-17 19:45:26', NULL, '3212579', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (359, 'mission maker meeting', '2020-09-20 15:00:00', '2020-09-20 17:00:00', '', '#ecb200', '', 43, 0, '2020-09-13 21:47:15', '2025-12-17 19:45:26', NULL, '3212624', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (360, 'RSLC and Master freefall train the trainer', '2020-09-17 18:00:00', '2020-09-17 20:00:00', 'Training server ', '#FFFFFF', 'This is a “train the trainer” course for NCOs. We will cover 2 of the mandatory trainings for LRS. All NCOs can attend however, only pathfinder and AIT complete NCOS will be able to train it. If pathfinder and AIT is completed by the time trainings go live, this will count.', 644, 0, '2020-09-14 00:47:27', '2025-12-17 19:45:26', NULL, '3212671', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (361, 'Recruiter Meeting', '2020-09-19 13:00:00', '2020-09-19 14:00:00', 'TeamSpeak', '#FFFFFF', 'Super Secret Recruiter Meeting to discuss things and make sure we\'re on the same page.\n\nAnyone can come and listen but if you\'re disruptive you\'re going to be warned to stop, then removed if it persists. Set your pics to mute/push to talk if you\'re just spectating to avoid that.', 468, 0, '2020-09-14 18:41:28', '2025-12-17 19:45:26', NULL, '3213323', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (362, 'Brigade FTX', '2020-09-26 18:00:00', '2020-09-26 20:00:00', 'Private ops', '#df5353', 'A chance to improve in a non campaign environment as a whole.\nBACK TO BASICS', 644, 0, '2020-09-15 17:24:55', '2025-12-17 19:45:26', NULL, '3214207', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (363, 'MicroDaggr, and what it can do FOR YOU!', '2020-09-27 20:00:00', '2020-09-27 21:00:00', '', '#d89332', 'Ill be going over the vecotr 21, and the microdaggr in detail, and explaining how it applies to 32nd functions and more. Come learn cool stuff. ', 932, 0, '2020-09-16 22:03:16', '2025-12-17 19:45:26', NULL, '3217037', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (364, 'Sniper School', '2020-09-21 18:00:00', '2020-09-21 20:00:00', 'Training Server', '#d89332', 'This is a skill position for LRS. All are able to attend however some NCOs will have priority to be trainers. Limited slots, will be upwards of 2 hours long', 644, 0, '2020-09-16 23:31:41', '2025-12-17 19:45:26', NULL, '3217106', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (365, 'Persistent Server Side Ops', '2020-09-24 21:30:00', '2020-09-24 23:30:00', '', '#a250e8', 'Come join us for some hood rat stuffs and killing some Russians and/or guerilla forces\n(An ROE will be established before stepping off since our civilian reputation is in the gutter)', 516, 0, '2020-09-18 03:42:52', '2025-12-17 19:45:26', NULL, '3218510', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (366, '(Canceled) Fireteam Basics Training', '2020-09-22 16:30:00', '2020-09-22 18:00:00', 'Training Server', '#FFFFFF', 'Going over the very basics of being in a fireteam. Break down of roles and how to utilize assets best (Grenadier, LAT, AR) and how to communicate over the radio under fire and stress. Going over medical in a very quick fashion to get you to not bleed out in a firefight.', 19, 1, '2020-09-19 18:05:25', '2025-12-17 19:45:26', NULL, '3219750', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (367, 'Fireteam Basics Training', '2020-09-24 16:30:00', '2020-09-24 18:00:00', 'Training Server', '#FFFFFF', 'Going over the very basics of being in a fireteam. Break down of roles and how to utilize assets best (Grenadier, LAT, AR) and how to communicate over the radio under fire and stress. Going over medical in a very quick fashion to get you to not bleed out in a firefight.', 19, 0, '2020-09-19 18:06:11', '2025-12-17 19:45:26', NULL, '3219751', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (368, '32nd Training', '2020-10-01 19:00:00', '2020-10-01 21:00:00', '', '#d89332', 'Jumpmaster training! Trainees must have Jump Wings and Air Crew in order to earn the badge. Those that attend and pass without them will not receive it until the prerequisites are met.', NULL, 0, '2020-09-21 22:40:05', '2025-12-17 19:45:26', NULL, '3221403', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (369, 'Copilot 1', '2020-10-12 18:30:00', '2020-10-12 19:30:00', '', '#d89332', '', 476, 0, '2020-09-21 22:49:36', '2025-12-17 19:45:26', NULL, '3221404', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (370, 'Copilot 2', '2020-10-14 18:30:00', '2020-10-14 19:30:00', '', '#d89332', '', 476, 0, '2020-09-21 22:49:52', '2025-12-17 19:45:26', NULL, '3221405', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (371, 'Copilot Qual', '2020-10-16 18:30:00', '2020-10-16 19:30:00', '', '#d89332', '', 476, 0, '2020-09-21 22:50:08', '2025-12-17 19:45:26', NULL, '3221406', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (372, 'Flight Training', '2020-10-20 18:30:00', '2020-10-20 19:30:00', '', '#d89332', '', 476, 0, '2020-09-21 22:56:10', '2025-12-17 19:45:26', NULL, '3221407', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (373, 'Flight Training', '2020-10-24 13:00:00', '2020-10-24 14:00:00', '', '#d89332', '', 476, 0, '2020-09-21 23:02:59', '2025-12-17 19:45:26', NULL, '3221413', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (374, 'Escape & Evade Training', '2020-10-26 18:30:00', '2020-10-26 19:30:00', '', '#d89332', '', 476, 0, '2020-09-21 23:03:48', '2025-12-17 19:45:26', NULL, '3221415', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (375, 'Rolling Breach Refinement - Fireteam Training', '2020-10-08 18:00:00', '2020-10-08 19:30:00', '', '#30a68f', 'We do a lot of rolling breaches in ops, let\'s actually refine them.', 801, 0, '2020-09-22 22:13:51', '2025-12-17 19:45:26', NULL, '3222825', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (376, '32nd Training', '2020-10-15 19:00:00', '2020-10-15 21:00:00', '', '#d89332', '', NULL, 0, '2020-09-22 22:43:38', '2025-12-17 19:45:26', NULL, '3222827', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (377, '32nd Training', '2020-10-29 19:00:00', '2020-10-29 21:00:00', '', '#d89332', 'Mechanized qualification', NULL, 0, '2020-09-22 22:43:57', '2025-12-17 19:45:26', NULL, '3222828', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (378, 'Pathfinder Assessment', '2020-09-27 15:00:00', '2020-09-27 17:00:00', 'Private Ops', '#ecb200', 'Pathfinder Assessment for those that have completed the pathfinder book work, 30 days with the unit and have Combat Jump Wings.', 644, 0, '2020-09-23 16:59:38', '2025-12-17 19:45:26', NULL, '3223725', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (379, 'command meeting with ken', '2020-10-04 15:05:00', '2020-10-04 17:00:00', '', '#ecb200', '', 43, 0, '2020-09-26 00:17:21', '2025-12-17 19:45:26', NULL, '3226266', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (380, '(Canceled) Advanced Review of Basics', '2020-10-01 18:00:00', '2020-10-01 20:30:00', '', '#FFFFFF', 'UPDATEE: 10/1/2020 - No Signups 30 min Prior to event.\n====================================\nCome learn how to be better at the basics.. We are going to use this as more of a discussion and talking points regarding what you want to get better at. At the moment on my list is the following\n1) Radios\n2) Map Skills\n3) Unit Identification\n4) Asset Utlization\nAny Aditional That is listed in the Questions\nIf you are struggling with any basics please indicate what you need help with this is going to be a "cover what we need to" training.', 38, 1, '2020-09-26 02:12:53', '2025-12-17 19:45:26', NULL, '3226281', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (381, 'Marksman/Sharpshooter Qualficiations', '2020-09-26 15:00:00', '2020-09-26 16:00:00', 'Training Server', '#FFFFFF', 'Taking over Vincent\'s qual because I have nothing to do before the FTX. \n\nMake sure you signed up and know what you need to do ', 468, 0, '2020-09-26 18:50:59', '2025-12-17 19:45:26', NULL, '3226871', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (382, 'Side Op: PvP Sabotage', '2020-10-13 18:00:00', '2020-10-13 20:00:00', 'private ops', '#a250e8', 'Details: US forces will infiltrate the enemy AO and sabotage their equipment, vehicles, and supplies. RU forces will patrol their AO and prevent enemy sabotage. \nVictory Conditions: US completes 3/4 Objectives and exfils. RU kills all US Forces. \nMap: Utes\nMods: 17th BCT shadow mod \nServer: Private Ops', 322, 0, '2020-09-26 19:51:45', '2025-12-17 19:45:26', NULL, '3226873', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (383, 'Basic Training', '2020-10-01 18:00:00', '2020-10-01 20:00:00', '', '#008ae1', '', 644, 0, '2020-09-27 23:58:33', '2025-12-17 19:45:26', NULL, '3227946', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (384, 'LRS Quals', '2020-09-29 18:30:00', '2020-09-29 20:00:00', '', '#FFFFFF', 'Getting the Pathfinders full LRS quals with some additional skills', 644, 0, '2020-09-28 23:09:16', '2025-12-17 19:45:26', NULL, '3228696', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (385, 'Operating Hanging Garden Part 1', '2020-10-03 18:00:00', '2020-10-03 21:00:00', '', '#df5353', 'There once was a castle, filled with life.', 468, 0, '2020-09-28 23:14:19', '2025-12-17 19:45:26', NULL, '3228698', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (386, 'Operation Hanging Garden Chapter 2', '2020-10-10 18:00:00', '2020-10-10 21:00:00', '', '#df5353', 'And there lived a king, with his wife.', 468, 0, '2020-09-28 23:15:06', '2025-12-17 19:45:26', NULL, '3228699', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (387, 'Operation Hanging Garden Chapter 3', '2020-10-17 18:00:00', '2020-10-17 21:00:00', '', '#df5353', 'All were happy and all was good.', 468, 0, '2020-09-28 23:16:10', '2025-12-17 19:45:26', NULL, '3228700', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (388, 'Operation Hanging Garden Chapter 4', '2020-10-24 18:00:00', '2020-10-24 21:00:00', '', '#df5353', 'Until the king killed all he could.', 468, 0, '2020-09-28 23:17:26', '2025-12-17 19:45:26', NULL, '3228701', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (389, 'Pathfinder mission - Operation Hanging Garden Part 1', '2020-10-01 18:00:00', '2020-10-01 19:30:00', '', '#df5353', 'Pathfinders are to conduct recon of the AO to establish Drop Zones and acquire intelligence on enemy locations.', 468, 0, '2020-09-30 15:40:04', '2025-12-17 19:45:26', NULL, '3231284', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (390, 'Operation: Rescue Prisoners!', '2020-10-04 18:00:00', '2020-10-04 20:00:00', '', '#a250e8', 'Operation: Rescue Prisoners - PVP\nMission\nIt really is not advanced and is actually very simple. It\'s tons of fun. I will be giving everyone a run down before the operation and open the floor up for any questions. We will be switching out roles throughout the night.\nThis idea was originally from Nightrader. Thank you to Night for allowing me to host this mission as when he hosted it, we had an absolute BLAST.\n', 1129, 0, '2020-09-30 19:44:44', '2025-12-17 19:45:26', NULL, '3231510', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (391, 'Basic Training (Canceled - no signups)', '2020-10-15 18:00:00', '2020-10-15 21:30:00', 'Training Server', '#008ae1', '', 1104, 1, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236446', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (392, 'Basic Training', '2020-10-29 18:00:00', '2020-10-29 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236447', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (393, 'Basic Training', '2021-06-24 18:00:00', '2021-06-24 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236448', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (394, 'Basic Training', '2021-01-07 19:00:00', '2021-01-07 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236449', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (395, 'Basic Training', '2021-06-10 18:00:00', '2021-06-10 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236450', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (396, 'Basic Training', '2021-04-29 18:00:00', '2021-04-29 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236451', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (397, 'Basic Training', '2021-05-27 18:00:00', '2021-05-27 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236452', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (398, 'Basic Training', '2021-01-21 19:00:00', '2021-01-21 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236453', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (399, 'Basic Training', '2020-11-12 19:00:00', '2020-11-12 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236454', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (400, 'Basic Training', '2021-02-04 19:00:00', '2021-02-04 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236455', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (401, 'Basic Training', '2021-05-13 18:00:00', '2021-05-13 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236456', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (402, '[Canceled for new Schedule] Basic Training', '2021-07-08 18:00:00', '2021-07-08 21:30:00', 'Training Server', '#008ae1', '', 1104, 1, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236457', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (403, 'Basic Training', '2021-03-04 19:00:00', '2021-03-04 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236458', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (404, 'Basic Training', '2021-03-18 18:00:00', '2021-03-18 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236460', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (405, '[Canceled for new Schedule] Basic Training', '2021-07-22 18:00:00', '2021-07-22 21:30:00', 'Training Server', '#008ae1', '', 1104, 1, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236462', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (406, 'Basic Training', '2021-04-01 18:00:00', '2021-04-01 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236464', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (407, 'Basic Training', '2021-04-15 18:00:00', '2021-04-15 21:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236465', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (408, 'Basic Training', '2021-02-18 19:00:00', '2021-02-18 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236466', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (409, 'Basic Training', '2020-12-10 19:00:00', '2020-12-10 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236467', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (410, 'Basic Training', '2020-11-26 19:00:00', '2020-11-26 22:30:00', 'Training Server', '#008ae1', '', 1104, 0, '2020-10-04 16:15:33', '2025-12-17 19:45:26', NULL, '3236469', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (411, 'Pointman Training (CANCELLED)', '2020-10-11 18:00:00', '2020-10-11 19:30:00', '', '#ecb200', 'EVENT IS CANCELLED\nEvent Details:\n Learn how to maneuver and perform as the fireteam\'s pointman.\nServer: \n17th Brigade Combat Team Training Range\nModset:\n 17th BCT Shadowmod', 2232, 1, '2020-10-04 21:17:06', '2025-12-17 19:45:26', NULL, '3236596', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (412, 'IDF Training', '2020-10-07 18:00:00', '2020-10-07 20:00:00', '', '#d89332', 'Event details: \nLearn how to lead a mortar or artillery team, from radio to calculations.\n\nServer: \nTraining server\n\nModset: \n17th BCT shadowmod', 309, 0, '2020-10-05 00:46:47', '2025-12-17 19:45:26', NULL, '3236636', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (413, 'IDF Training', '2020-10-21 18:00:00', '2020-10-21 20:00:00', '', '#d89332', 'Event details: \nLearn how to lead a mortar or artillery team, from radio to calculations.\n\nServer: \nTraining server\n\nModset: \n17th BCT shadowmod', 309, 0, '2020-10-05 01:18:00', '2025-12-17 19:45:26', NULL, '3236670', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (414, 'PVP Side Op: Prisoner Rescue RENEWED', '2020-10-18 18:00:00', '2020-10-18 20:00:00', '', '#a250e8', 'Operation: Rescue Prisoners - PVP\nThis operation will be completely made and tested extensively before the start time. I again apologize about before due to both me being late on publishing it and my inexperience as a mission maker.\nMission\nIt really is not advanced and is actually very simple. It\'s tons of fun. I will be giving everyone a run down before the operation and open the floor up for any questions. We will be switching out roles throughout the night.\nThis idea was originally from Nightrader. Thank you to Night for allowing me to host this mission as when he hosted it, we had an absolute BLAST.', 1129, 0, '2020-10-05 21:37:22', '2025-12-17 19:45:26', NULL, '3237277', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (415, 'Squad-level training', '2020-10-12 18:00:00', '2020-10-12 19:30:00', '', '#FFFFFF', 'Utilizing 32nd support ', 468, 0, '2020-10-06 18:45:43', '2025-12-17 19:45:26', NULL, '3238044', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (416, 'AJ’s mission night', '2020-10-09 18:00:00', '2020-10-09 19:00:00', 'Tanoa', '#ecb200', 'This will either be another shot at the PVE Jungle Rescue side op that didn’t go through last time, OR it will be my latest experimental PVE Bank Heist mission if I have it finished by Friday.\nFor the Jungle Rescue mission look at my last event on Monday last week.\nThe bank heist:\nThe bank heist will take place in Georgetown, Tanoa. It is a fast raid on one of the office buildings in the city, then once you have collected the valuables from the top floor of the building, you must find a way to escape the city while being actively perused by local police and SWAT forces in a high tension race against time and your pursuers.', 28, 0, '2020-10-06 22:58:10', '2025-12-17 19:45:26', NULL, '3238073', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (417, '(CANCELLED) 2IC/FTL Training (CANCELLED)', '2020-10-14 18:00:00', '2020-10-14 20:00:00', '', '#30a68f', 'Want to learn how to become an FTL and 2IC? Or become a better 2IC? This training is for you! We always have tons of fun and we go through the ins and outs of being a Fireteam leader.', 1129, 1, '2020-10-08 11:45:04', '2025-12-17 19:45:26', NULL, '3238779', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (418, 'CLS Training (DELAYED)', '2020-10-14 17:45:00', '2020-10-14 18:45:00', 'Training Server', '#6cba50', 'The usual shit', 508, 0, '2020-10-11 00:42:40', '2025-12-17 19:45:26', NULL, '3241728', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (419, 'IFV Training', '2020-10-13 18:00:00', '2020-10-13 20:00:00', '', '#d89332', 'Event details: \nLearn how to man an IFV.\n\nServer: \nTraining server\n\nModset: \n17th BCT shadowmod', 309, 0, '2020-10-11 03:48:47', '2025-12-17 19:45:26', NULL, '3242234', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (420, 'Advanced Infantry Training Part 3', '2020-10-15 18:00:00', '2020-10-15 19:30:00', 'Training Server', '#30a68f', 'Military Operations in Urban Terrain, in preparation for Saturday.', 468, 0, '2020-10-11 22:33:59', '2025-12-17 19:45:26', NULL, '3245293', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (421, 'Advanced Infantry Training Part 4 (Rescheduled to 23rd)', '2020-10-23 18:00:00', '2020-10-23 19:30:00', 'Training Server', '#30a68f', 'Close Quarters Battle - Approaching Buildings and clearing them.', 468, 0, '2020-10-11 22:34:42', '2025-12-17 19:45:26', NULL, '3245294', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (422, 'Advanced Infantry Training Part 1', '2020-10-29 18:00:00', '2020-10-29 19:30:00', '', '#30a68f', 'Standard Field Operations: Movements, heavier weapons, minefields/IDF, etc.', 468, 0, '2020-10-11 22:34:56', '2025-12-17 19:45:26', NULL, '3245295', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (423, 'Advanced Infantry Training Part 2', '2020-11-05 19:00:00', '2020-11-05 20:30:00', 'Training Server', '#30a68f', 'Aggression in Combat: Fire-rates and Battledrill 1a.', 468, 0, '2020-10-11 22:35:07', '2025-12-17 19:45:26', NULL, '3245296', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (424, 'Armored Core', '2020-10-19 18:00:00', '2020-10-19 21:00:00', '', '#a250e8', 'A SERIES OF TANK/IFV/AIR MISSIONS by KEN across ALTIS with ALiVE.\nwe crew vics and kill things \n', 43, 0, '2020-10-12 00:53:14', '2025-12-17 19:45:26', NULL, '3245751', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (425, '(Rescheduled) Squad Level Tactics Training', '2020-10-16 19:30:00', '2020-10-16 20:45:00', 'Training Server', '#ecb200', 'Squad Level tactics, including maneuvering and support by fire positions.\nFire Rates and BD1A knowledge covered, heavy reps in these two. Brief knowledge on setting up positions and what individual fireteam members do in depth in these positions.', 19, 0, '2020-10-14 02:03:15', '2025-12-17 19:45:26', NULL, '3250097', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (426, 'SQUAD GANG: LETS DO HOOD RAT SHIT', '2020-10-18 13:00:00', '2020-10-18 17:00:00', '', '#FFFFFF', 'FOR MY SQAUD FOLK LETS DO HOOD RAT SHIT LETS FILL UP A WHOLE SQUAD FUCK IT LETS FILL UP 2 SQUADS, or a SQUAD and some armor I DONT KNOW I JUST WANNA PUT IN WORK ', 43, 0, '2020-10-14 11:51:08', '2025-12-17 19:45:26', NULL, '3250232', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (427, 'Command meeting with KEN', '2020-11-01 17:00:00', '2020-11-01 19:00:00', '', '#ecb200', 'Key points of DIscussion: New roles for discord, Fort Bragg/ Fort Benning Training Map, and Overall state of teh 17th BCT\nEdit: REVAMP THE ROAD TO FIXED WING discussion \n RHS NO CBOUNCE 40 MM grenade config \n has the deets\n \n too speak on a faction database of approved factions ', 43, 0, '2020-10-14 11:54:10', '2025-12-17 19:45:26', NULL, '3250233', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (428, 'Anti-Armor Training', '2020-10-26 18:00:00', '2020-10-26 19:45:00', '', '#30a68f', 'Learn the ins and outs of enemy vehicles so you can kill them better.', 468, 0, '2020-10-14 14:57:26', '2025-12-17 19:45:26', NULL, '3250332', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (429, 'COMMUNITY ROUNDTABLE WITH KEN', '2020-12-06 16:00:00', '2020-12-06 17:00:00', '', '#ecb200', '', 43, 0, '2020-10-14 16:16:53', '2025-12-17 19:45:26', NULL, '3250523', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (430, 'Fireteam Training', '2020-10-21 18:00:00', '2020-10-21 19:30:00', '', '#30a68f', 'Event Details:\n Fireteam Roles and Tactics\nServer: \n17th Brigade Combat Team Training Range\nModset:\n 17th BCT Shadowmod', 2232, 0, '2020-10-16 20:09:10', '2025-12-17 19:45:26', NULL, '3253094', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (431, 'Pathfinder Bookwork', '2020-10-27 19:00:00', '2020-10-27 20:30:00', 'Training server', '#ecb200', 'Come learn the tools of the trade for Pathfinder.', 644, 0, '2020-10-16 21:19:35', '2025-12-17 19:45:26', NULL, '3253225', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (432, 'Flight Training', '2020-11-04 19:30:00', '2020-11-04 20:30:00', '', '#d89332', '', 476, 0, '2020-10-17 14:11:38', '2025-12-17 19:45:26', NULL, '3254416', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (433, 'Air Crew Qual', '2020-11-06 19:30:00', '2020-11-06 20:30:00', '', '#d89332', '', 476, 0, '2020-10-17 14:11:57', '2025-12-17 19:45:26', NULL, '3254417', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (434, 'Copilot 1', '2020-11-09 19:30:00', '2020-11-09 20:30:00', '', '#d89332', '', 476, 0, '2020-10-17 14:12:28', '2025-12-17 19:45:26', NULL, '3254418', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (435, '68W Combat Medic Training', '2020-10-24 14:00:00', '2020-10-24 15:00:00', '', '#a250e8', 'Signups Required for certification.\nReply to event if you wish to challenge the course.', 539, 0, '2020-10-17 20:54:51', '2025-12-17 19:45:26', NULL, '3254790', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (436, 'Plow Training', '2020-10-23 17:45:00', '2020-10-23 18:45:00', '', '#d89332', 'AJ asked for it so I\'m here to deliver the goods Plow Training.', NULL, 0, '2020-10-18 12:54:16', '2025-12-17 19:45:26', NULL, '3256119', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (437, 'IFV/TC Training', '2020-10-28 19:00:00', '2020-10-28 21:00:00', '', '#d89332', 'Basics of IFVs and other armour pieces.', 628, 0, '2020-10-18 14:49:29', '2025-12-17 19:45:26', NULL, '3256160', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (438, 'RASP', '2020-10-31 18:00:00', '2020-10-31 21:30:00', '', '#df5353', '', 801, 0, '2020-10-18 15:17:07', '2025-12-17 19:45:26', NULL, '3256163', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (439, 'RASP Preparation', '2020-10-28 18:00:00', '2020-10-28 19:00:00', '', '#6cba50', 'Let\'s practice some key concepts for RASP', 801, 0, '2020-10-18 15:22:25', '2025-12-17 19:45:26', NULL, '3256164', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (440, 'Operation Hanging Garden Chapter 5', '2020-11-07 19:00:00', '2020-11-07 21:30:00', '', '#df5353', 'Standing in blood, he proudly said,', 468, 0, '2020-10-18 16:07:11', '2025-12-17 19:45:26', NULL, '3256168', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (441, 'Operation Hanging Garden Chapter 6', '2020-11-14 19:00:00', '2020-11-14 21:30:00', '', '#df5353', 'nur won, ym emoh, llahs esuoh eht daed', 468, 0, '2020-10-18 16:09:42', '2025-12-17 19:45:26', NULL, '3256169', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (442, 'LRS Mission', '2020-10-22 18:00:00', '2020-10-22 20:30:00', 'Private Ops', '#ecb200', 'This is a direct action mission. Only full LRS qualified personnel will attend.', 644, 0, '2020-10-20 22:20:11', '2025-12-17 19:45:26', NULL, '3260345', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (443, 'IFV/TC Training', '2020-10-25 19:30:00', '2020-10-25 20:30:00', '', '#d89332', 'come shoot da big booms', 932, 0, '2020-10-23 21:29:07', '2025-12-17 19:45:26', NULL, '3263578', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (444, 'Assaulting Enemy Fortifications', '2020-10-30 17:00:00', '2020-10-30 18:30:00', '', '#30a68f', 'Event Details:\n Learn how to engage and eliminate enemy fortifications as a fireteam\nServer: \n17th Brigade Combat Team Training Range\nModset:\n 17th BCT Shadowmod', 2232, 0, '2020-10-24 12:08:40', '2025-12-17 19:45:26', NULL, '3263745', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (445, 'Ranger Training - Casualties & Chaos', '2020-11-12 19:00:00', '2020-11-12 20:00:00', '', '#6cba50', 'MASS CAS! HOW TO DEAL WITH IT!\nMORTARS?\nBIG SHIT?\n\nWatching sectors!\n\nLots of stuff going to be run through on this day. Will be lots of FTX and lots of runs.', 801, 0, '2020-10-25 02:31:49', '2025-12-17 19:45:26', NULL, '3266138', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (446, 'Gossler\'s CQB Practice', '2020-10-27 18:00:00', '2020-10-27 19:00:00', '', '#FFFFFF', '\n is hosting a cool lil practice session, come get PP for it. \n\n""Hosting" is optimistic. Really, this is just a good way to practice some stuff that I frequenty mess up... Context is in the link below, and things that I personally would like to practice. \n\nGiven that teams are not consistent (as in not always the same people) lets work on some across-the-board stuff. \n\n\n"\n-Gossler', 801, 0, '2020-10-26 04:02:01', '2025-12-17 19:45:26', NULL, '3267163', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (447, 'Marksman/Sharpshooter Qualification', '2020-10-28 13:00:00', '2020-10-28 14:00:00', '', '#FFFFFF', 'Get yourself some fancy shmancy new optics by proving you can hit targets well enough. This will be held on the training server at the rifle range.', NULL, 0, '2020-10-26 17:48:14', '2025-12-17 19:45:26', NULL, '3267895', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (448, 'The Hills Have Eyes Side Op', '2020-10-30 18:00:00', '2020-10-30 19:00:00', '', '#FFFFFF', 'Side Op is back on', 241, 0, '2020-10-30 22:17:09', '2025-12-17 19:45:26', NULL, '3271831', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (449, 'Side Op: Rescue Hostages', '2020-11-08 18:00:00', '2020-11-08 20:00:00', '', '#a250e8', 'Rescue civilians being held hostage by a Chernarussian separatist group inside an abandoned factory.\n\n\nNOTE:\n Make sure you have the correct mod installed and loaded before joining the op. \n\nLink to required mod:\n\n\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1291778160', 2232, 0, '2020-10-31 14:41:17', '2025-12-17 19:45:26', NULL, '3272055', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (450, 'Orientation', '2020-10-31 16:00:00', '2020-10-31 17:30:00', 'Training server', '#ecb200', 'Basic orientation for recruits, also extra help for newer players that have any questions.', 644, 0, '2020-10-31 16:54:09', '2025-12-17 19:45:26', NULL, '3272102', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (451, 'LRS FTX', '2020-11-02 19:00:00', '2020-11-02 21:00:00', '', '#FFFFFF', 'Get LRS reps and practice coordinating assets. LRS qual\'d and CAS pilots may attend', 644, 0, '2020-11-01 03:24:33', '2025-12-17 19:45:26', NULL, '3272186', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (452, 'ATMOSPHERIC OPERATION: PART 2', '2020-11-29 20:00:00', '2020-11-29 21:00:00', 'CHERNARUS WINTER', '#FFFFFF', 'REQUIRES ONE (1) ADDITIONAL MOD: \n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2262255106\nANOTHER ONE OF MY ATMOSPHERIC OPS, similar to that Halloween op y\'all loved.', 801, 0, '2020-11-02 03:09:37', '2025-12-17 19:45:26', NULL, '3272981', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (453, 'Copilot 2', '2020-11-11 19:30:00', '2020-11-11 20:30:00', '', '#d89332', '', 476, 0, '2020-11-03 00:56:47', '2025-12-17 19:45:26', NULL, '3274032', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (454, 'Pathfinder FTX Training', '2020-11-13 19:00:00', '2020-11-13 20:30:00', '', '#FFFFFF', 'Event Details:\n Make an oopsie here so you don\'t make an oopsie during the pathfinder assessment.\nAdditional pathfinder training.\nServer:\n Private Ops Server\nModset:\n 17th BCT Shadowmod', 2232, 0, '2020-11-04 00:01:05', '2025-12-17 19:45:26', NULL, '3275665', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (455, 'Pathfinder Assesment', '2020-11-06 20:00:00', '2020-11-06 21:00:00', 'Private Ops', '#6cba50', 'Those who have attended Pathfinder bookwork may attend to obtain Pathfinder Badge. Challange the course is welcome', 644, 0, '2020-11-05 01:57:57', '2025-12-17 19:45:26', NULL, '3276391', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (456, 'BRIGADE RANGE DAY WITH KEN(BRIGADE TRAINING)', '2020-11-16 19:00:00', '2020-11-16 20:30:00', 'TRAINING SERVER', '#df5353', 'BRIGADE RANGE DAY WITH KEN we gonna SHOT ALL SORTS OF GUNS AND FAMILARIZE OURSELVES WIT HTEH ACE CSW SYSTEM, BLOW UP SOME TANKS SHOOT SOME 40 MM, ROCKETS, MORTARS, ETC(THIS COUNTS AS BRIGADE TRAINING SO U GONNA GET POINTS FAM) ', 43, 0, '2020-11-05 05:32:30', '2025-12-17 19:45:26', NULL, '3276428', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (457, 'Crew Familiarization', '2020-11-07 14:00:00', '2020-11-07 16:00:00', '', '#d89332', 'Location: \nTraining Server - Airfield\nMods: \n17th BCT Shadow mod\nDetails: \nThis training is an overview of the roles the 32nd handles in the air and on the ground. It is meant as an introductory course for new members and will cover the basics of what will be required.', 309, 0, '2020-11-06 01:02:41', '2025-12-17 19:45:26', NULL, '3279087', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (458, 'Canceled - Squad Level Training', '2020-11-10 19:00:00', '2020-11-10 20:30:00', 'Training Server', '#ecb200', 'Integration and Utilization of 32nd Assets - IFV Edition.', 19, 1, '2020-11-06 16:01:38', '2025-12-17 19:45:26', NULL, '3279233', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (459, 'Land Navigation', '2020-11-15 19:00:00', '2020-11-15 21:00:00', '', '#a250e8', 'Learn how to read a map without the help of your trusty DAGR or GPS, like big boys', 512, 0, '2020-11-08 04:57:31', '2025-12-17 19:45:26', NULL, '3281467', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (460, '(POSTPONED) IDF Training', '2020-11-19 19:00:00', '2020-11-19 21:00:00', '', '#d89332', 'Location: \nTraining Server - Airfield\nMods: \n17th BCT Shadow mod\nDetails: \nMath is needed for IDF, so we will be practicing math. This is for both those who are IDF qualified and not. Practice manning mortars is just as important, so use this as a chance to get to make sure you have it down pat.', 309, 0, '2020-11-08 05:05:12', '2025-12-17 19:45:26', NULL, '3281468', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (461, '2 Inch Mortar - Training and Usage.', '2020-11-09 19:00:00', '2020-11-09 20:30:00', '', '#30a68f', 'Learn which situations the 2 IN mortar is useful in and how to use it.', 468, 0, '2020-11-08 05:09:36', '2025-12-17 19:45:26', NULL, '3281469', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (462, 'Sniper Course', '2020-11-11 19:00:00', '2020-11-11 21:00:00', 'Training Server', '#FFFFFF', 'LRS Sniper Qualification. All are free to attend', 644, 0, '2020-11-08 05:34:39', '2025-12-17 19:45:26', NULL, '3281470', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (463, '32nd Training', '2020-11-13 20:00:00', '2020-11-13 22:00:00', '', '#d89332', 'IFV and armor practice. ', NULL, 0, '2020-11-08 06:12:14', '2025-12-17 19:45:26', NULL, '3281553', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (464, '32nd Training', '2020-11-20 20:00:00', '2020-11-20 22:00:00', '', '#ecb200', 'Convoys!', NULL, 0, '2020-11-08 06:12:48', '2025-12-17 19:45:26', NULL, '3281554', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (465, 'CANCELLED - 32nd Training', '2020-11-27 20:00:00', '2020-11-27 22:00:00', '', '#d89332', '', NULL, 1, '2020-11-08 06:13:10', '2025-12-17 19:45:26', NULL, '3281555', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (466, 'Side Op: Mod Testing', '2020-11-23 19:00:00', '2020-11-23 20:00:00', '', '#FFFFFF', 'Come try out a mission with some mods currently being considered meant to gather server data and user feedback. \nWill be hosted on EagleTrooper\'s server\n.\n3CB Factions\n\n\nBettIR\n\n\nAmmocan\n\n \nVehicle Inventory System\n\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2161671937\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2162698437\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2260572637\nhttps://steamcommunity.com/workshop/filedetails/?id=1673456286', 612, 0, '2020-11-08 12:31:37', '2025-12-17 19:45:26', NULL, '3281829', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (467, 'Pathfinder Bookwork', '2020-11-17 19:00:00', '2020-11-17 21:00:00', '', '#30a68f', 'Learn how to be a Pathfinder. This is not a qualification. ', 468, 0, '2020-11-09 00:14:38', '2025-12-17 19:45:26', NULL, '3282756', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (468, 'Operation Hanging Garden Chapter 7', '2020-11-21 19:00:00', '2020-11-21 22:00:00', '', '#df5353', '"Chopin is the greatest of them all, for with the piano alone he discovered everything."\r', 468, 0, '2020-11-10 22:36:40', '2025-12-17 19:45:26', NULL, '3285413', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (469, 'Operation Hanging Garden Finale', '2020-11-28 19:00:00', '2020-11-28 22:00:00', '', '#df5353', '“Bach is an astronomer, discovering the most marvellous stars. Beethoven challenges the universe. I only try to express the soul and the heart of man.” \r\n― Frédéric Chopin', 468, 0, '2020-11-10 22:37:07', '2025-12-17 19:45:26', NULL, '3285414', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (470, 'Copilot Qual', '2020-11-15 14:00:00', '2020-11-15 15:00:00', '', '#d89332', '', 476, 0, '2020-11-11 01:34:29', '2025-12-17 19:45:26', NULL, '3285443', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (471, 'Flight Training', '2020-11-18 19:30:00', '2020-11-18 20:30:00', '', '#d89332', '', 476, 0, '2020-11-11 01:36:07', '2025-12-17 19:45:26', NULL, '3285445', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (472, 'CANCELLED - Air Crew Training', '2020-11-12 18:00:00', '2020-11-12 19:30:00', '', '#d89332', 'At the request of the only attendee, training was conducted at 1:30 PM MST same day', 916, 1, '2020-11-11 23:14:30', '2025-12-17 19:45:26', NULL, '3286541', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (473, 'Air Crew Qual', '2020-11-14 15:00:00', '2020-11-14 16:00:00', '', '#d89332', '', 916, 0, '2020-11-11 23:15:22', '2025-12-17 19:45:26', NULL, '3286569', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (474, 'Sharpshooter/Marksman Qualifications', '2020-11-12 17:30:00', '2020-11-12 18:55:00', '', '#6cba50', 'Sign up and know what\'s expected of you. I\'m fine with answering questions, but this is a qualification, not training. I\'m tired of reading it out to you when you should already know what you need to do.\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/1160160878', 468, 0, '2020-11-11 23:24:02', '2025-12-17 19:45:26', NULL, '3286570', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (475, 'AJ’s PVP Prison Rescue', '2020-11-25 19:00:00', '2020-11-25 20:00:00', 'Stratis', '#a250e8', 'I got a prison build finished, let’s do some PVP!', 28, 0, '2020-11-12 00:41:19', '2025-12-17 19:45:26', NULL, '3286760', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (476, 'Pathfinder Assesment', '2020-11-18 19:00:00', '2020-11-18 21:00:00', 'Private Ops', '#a250e8', 'Come get pathfinder qualified', 644, 0, '2020-11-12 06:00:01', '2025-12-17 19:45:26', NULL, '3286982', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (477, '32nd Training', '2020-12-04 20:00:00', '2020-12-04 22:00:00', '', '#d89332', '', NULL, 0, '2020-11-15 05:45:36', '2025-12-17 19:45:26', NULL, '3289559', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (478, 'Flight', '2020-11-17 19:30:00', '2020-11-17 20:30:00', '', '#d89332', '', 476, 0, '2020-11-16 20:20:40', '2025-12-17 19:45:26', NULL, '3290899', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (479, 'Basic Trainer Meeting', '2020-11-19 17:00:00', '2020-11-19 18:00:00', 'Training Tower (TS)', '#30a68f', 'A meeting of basic trainers to talk about trainings and how they are being done.', 1104, 0, '2020-11-18 14:02:21', '2025-12-17 19:45:26', NULL, '3295306', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (480, 'Pathfinder Start', '2020-11-21 18:00:00', '2020-11-21 19:00:00', 'Private Operations', '#df5353', 'Pathfinders conducting recon.', 644, 0, '2020-11-18 14:56:00', '2025-12-17 19:45:26', NULL, '3295313', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (481, 'IFV/TC training', '2020-11-23 18:00:00', '2020-11-23 19:00:00', '', '#d89332', 'Entry level training on Sabre Asset. Will scale training based on attendance.', 932, 0, '2020-11-19 22:50:18', '2025-12-17 19:45:26', NULL, '3297764', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (482, 'IDF Training', '2020-11-24 19:00:00', '2020-11-24 21:00:00', '', '#d89332', 'Location: \nTraining Server - Airfield\nMods: \n17th BCT Shadow mod\nDetails: \nMath is needed for IDF, so we will be practicing math. This is for both those who are IDF qualified and not. Practice manning mortars is just as important, so use this as a chance to get to make sure you have it down pat', 309, 0, '2020-11-19 23:30:54', '2025-12-17 19:45:26', NULL, '3297769', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (483, 'Marksman/Sharpshooter Qualifications', '2020-11-23 15:00:00', '2020-11-23 16:30:00', 'Training Server', '#FFFFFF', 'Be qualified in either Marksman and/or Sharpshooter. Know what\'s expected of you.\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/1160160878', 468, 0, '2020-11-20 00:05:38', '2025-12-17 19:45:26', NULL, '3297791', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (484, 'RTO Bookwork', '2020-11-20 19:00:00', '2020-11-20 22:00:00', '', '#30a68f', 'This event is being scheduled to fufill trianing request for a couple of individuals who have requested trainings but have been unable to attend do to other obligations.\n=========================================================\nCome work through the Information Portion of the RTO Training. This will take a bit of time and depending on how long it takes to cover the information Practical could be done during this event otherwise Practical will be schedueld at another time \r\n\r\nGoal of an RTO\r\nRelay information for Squad Leads and Platoon Leads clearly and concisely, under any sort of stressful situation.\r\nAct also as a JTAC if none is available\r\nAct also as a JFO if none is available.\r\n\r\nRadio Frequencies\r\nLR Radio Frequencies\r\nSR Radio Frequencies\r\n\r\nRadio Etiquette\r\nUse of Callsigns\r\nUse of Speakers/Headphones\r\n\r\nVernacular\r\nFamiliarization of Prowords listed\r\nFamiliarization of NATO Alphabet\r\n\r\nRadio Protocols & Discipline\r\nFire Team/Squad\r\nSquad/Platoon\r\nPlatoon/Command\r\n\r\nRelaying Information & Alternative Methods of Communication\r\nVarious Formats for relaying information\r\nFlight Request 5-Line\r\nIDF Basic Familiarization\r\nAlternative methods of Communications\r', 38, 0, '2020-11-20 00:27:25', '2025-12-17 19:45:26', NULL, '3297792', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (485, 'THANKSGIVING BREAK', '2020-11-26 00:00:00', '2020-11-28 00:00:00', '', '#FFFFFF', '', 801, 0, '2020-11-22 05:25:55', '2025-12-17 19:45:26', NULL, '3299698', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (486, 'Reaction to Contact', '2020-11-24 19:00:00', '2020-11-24 20:30:00', '', '#FFFFFF', 'Event Details:\n Learn how to react to contact as a squad.\nServer:\n Training Server\nModset:\n 17th BCT Shadowmod', 2232, 0, '2020-11-22 21:46:08', '2025-12-17 19:45:26', NULL, '3300281', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (487, 'JTAC', '2020-11-30 19:30:00', '2020-11-30 20:30:00', '', '#d89332', 'HIGHLY HIGHLY HIGHLY RECOMMEND YOU GET RTO QUALED FIRST\n\nI WILL BE ASSUMING YOU KNOW HOW TO DO EVERYTHING FROM RTO', 476, 0, '2020-11-25 04:07:26', '2025-12-17 19:45:26', NULL, '3311122', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (488, 'Anti-Armor Training', '2020-12-01 19:00:00', '2020-12-01 21:00:00', '', '#30a68f', 'Bam you know what it is. Learn the different enemy vehicles, their capabilities, and how to kill them.\n', 468, 0, '2020-11-26 18:05:59', '2025-12-17 19:45:26', NULL, '3312757', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (489, 'Head Hunter PVP', '2020-11-27 20:00:00', '2020-11-27 22:00:00', '', '#a250e8', 'Hosted by Meeseeks', 1129, 0, '2020-11-27 00:34:55', '2025-12-17 19:45:26', NULL, '3313022', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (490, 'Air Crew Training', '2020-12-08 19:30:00', '2020-12-08 20:30:00', '', '#d89332', '', 476, 0, '2020-11-27 23:57:29', '2025-12-17 19:45:26', NULL, '3313532', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (491, 'Air Crew Qual', '2020-12-10 19:30:00', '2020-12-10 20:30:00', '', '#d89332', '', 476, 0, '2020-11-27 23:57:41', '2025-12-17 19:45:26', NULL, '3313533', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (492, 'Escape & Evade Training', '2020-12-03 19:30:00', '2020-12-03 20:30:00', '', '#d89332', 'primarily for air personnel\nI expect you be able to safely fly and land. This is not a beginner flight training.', 476, 0, '2020-11-28 18:58:10', '2025-12-17 19:45:26', NULL, '3313731', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (493, 'RASP', '2020-12-05 19:00:00', '2020-12-05 23:30:00', '', '#df5353', '', 801, 0, '2020-11-29 04:10:02', '2025-12-17 19:45:26', NULL, '3313856', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (494, 'CLS Training 29Nov20', '2020-11-29 14:30:00', '2020-11-29 15:55:00', 'Training Map', '#6cba50', 'the usual, very late notice because I was supposed to be out of town but am not', 508, 0, '2020-11-29 06:11:06', '2025-12-17 19:45:26', NULL, '3313866', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (495, 'Ground Crew Familiarization', '2020-12-07 19:00:00', '2020-12-07 20:30:00', '', '#ecb200', 'A basic overview of the 32nd ground assets and the responsibilities of each role.', 2231, 0, '2020-11-29 17:49:43', '2025-12-17 19:45:26', NULL, '3314009', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (496, 'Advanced Infantry Training Part 1', '2020-12-10 19:00:00', '2020-12-10 21:00:00', 'Training Server', '#6cba50', 'Attend even if you\'ve already done an AIT course. The more people, the better the FTX.', 468, 0, '2020-11-29 21:43:30', '2025-12-17 19:45:26', NULL, '3314269', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (497, 'Advanced Infantry Training Part 2', '2020-12-17 19:00:00', '2020-12-17 21:00:00', '', '#6cba50', 'Attend even if you\'ve already done an AIT course. The more people, the better the FTX. \n\nAIT can be done out of order. If you lack prior AIT courses, you can still attend this one.', 468, 0, '2020-11-29 21:44:24', '2025-12-17 19:45:26', NULL, '3314270', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (498, 'Pathfinder Bookwork', '2020-12-07 19:00:00', '2020-12-07 21:00:00', 'Training Server', '#FFFFFF', 'Learn how to be a Pathfinder. This is not a qualification.', 468, 0, '2020-11-29 22:08:36', '2025-12-17 19:45:26', NULL, '3314302', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (499, 'Kommandos Series: GORKA BOYZ', '2020-12-11 19:30:00', '2020-12-11 21:00:00', '', '#FFFFFF', 'GORKA BOYZ VS AAF across all the vanilla maps. USING the full Russian Arsenal and a few csat pieces because why the hell not. ', 43, 0, '2020-11-30 03:45:54', '2025-12-17 19:45:26', NULL, '3314909', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (500, 'Kommandos Series: GORKA BOYZ Ep 2', '2020-12-18 19:30:00', '2020-12-18 21:30:00', '', '#FFFFFF', 'GORKA GANG Mechnized wit a side of T90 Gonna need a BMP crew and a Tank crew and the rest of us #GORKAGANG\n\n', 43, 0, '2020-11-30 05:26:41', '2025-12-17 19:45:26', NULL, '3314964', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (501, 'Heavy Weapons Training', '2020-12-08 19:00:00', '2020-12-08 20:30:00', '', '#FFFFFF', 'Learn how to effectively use the big boys such as the 240B, CSWs, MAWWS, Titan, against infantry and armored threats ', 468, 0, '2020-12-02 03:26:06', '2025-12-17 19:45:27', NULL, '3317834', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (502, 'Brigade FTX', '2020-12-12 19:00:00', '2020-12-12 22:00:00', '', '#df5353', '', 644, 0, '2020-12-06 20:22:20', '2025-12-17 19:45:27', NULL, '3323365', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (503, 'Copilot Training Part 1', '2020-12-15 19:30:00', '2020-12-15 20:30:00', '', '#d89332', '', 476, 0, '2020-12-06 20:30:18', '2025-12-17 19:45:27', NULL, '3323366', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (504, 'Copilot Training Part 2', '2020-12-17 19:30:00', '2020-12-17 20:30:00', '', '#d89332', '', 476, 0, '2020-12-06 20:30:51', '2025-12-17 19:45:27', NULL, '3323368', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (505, 'Copilot Qual', '2020-12-20 14:00:00', '2020-12-20 15:30:00', '', '#d89332', '', 476, 0, '2020-12-06 20:31:12', '2025-12-17 19:45:27', NULL, '3323369', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (506, 'Side OP: Clear ChDKZ Camp', '2020-12-13 19:00:00', '2020-12-13 20:00:00', '', '#FFFFFF', 'Details: US forces will find and clear a ChDKZ Camp. Destroy any supplies and equipment you find at the camp. Should be a short and simple op. \nMap: Livonia\nMods: 17th BCT shadow mod \nServer: Private Ops', 322, 0, '2020-12-06 21:04:58', '2025-12-17 19:45:27', NULL, '3323375', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (507, 'Basic Training', '2020-12-22 19:00:00', '2020-12-22 22:30:00', 'Training Server', '#008ae1', '', 1042, 0, '2020-12-07 15:51:35', '2025-12-17 19:45:27', NULL, '3324148', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (508, '32nd Training', '2021-01-15 20:00:00', '2021-01-15 22:00:00', '', '#ecb200', '', NULL, 0, '2020-12-07 18:00:24', '2025-12-17 19:45:27', NULL, '3324231', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (509, '32nd Training', '2021-01-22 20:00:00', '2021-01-22 22:00:00', '', '#ecb200', 'Mechanized badge qualification', NULL, 0, '2020-12-07 18:01:35', '2025-12-17 19:45:27', NULL, '3324232', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (510, 'CANCELED - 32nd Training', '2021-01-29 20:00:00', '2021-01-29 22:00:00', '', '#ecb200', '', NULL, 1, '2020-12-07 18:02:03', '2025-12-17 19:45:27', NULL, '3324233', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (511, 'IDF Training (Rescheduled)', '2020-12-16 19:00:00', '2020-12-16 21:00:00', '', '#d89332', 'Rescheduled from 12/14.\n\nLocation:\n Training Server - Airfield\nDescription:\n Learn how to crunch the numbers and command a mortar element.', 309, 0, '2020-12-08 01:53:15', '2025-12-17 19:45:27', NULL, '3325335', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (512, 'Mechanized Badge Qualificiation', '2020-12-14 19:00:00', '2020-12-14 19:54:00', '', '#d89332', 'Details are found at the bottom of the IFV school document', NULL, 0, '2020-12-08 01:57:50', '2025-12-17 19:45:27', NULL, '3325336', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (513, 'Operation Lightning', '2020-12-19 19:00:00', '2020-12-19 22:00:00', 'Private Ops Server', '#df5353', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/607077676\nRead the opord, there won\'t be a mission briefing at the start so make sure you read so you aren\'t lost. \n', 322, 0, '2020-12-10 17:12:34', '2025-12-17 19:45:27', NULL, '3329383', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (514, 'Ranger NCO Meeting', '2020-12-12 18:30:00', '2020-12-12 19:00:00', 'TS —> Ranger NCO Club', '#ecb200', 'Let’s hash out SLs, TLs, and any comments/concerns/questions about the platoon going forward.', 19, 0, '2020-12-10 18:08:22', '2025-12-17 19:45:27', NULL, '3329400', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (515, 'Modpack Update - Switch and update for upcoming events.', '2020-12-12 09:00:00', '2020-12-12 10:00:00', '', '#df5353', 'There is a new modpack with the change of leadership. Most mods are the same however this new modpack is required for the Brigade FTX. Please make sure to subscribe and download all dependcies ', 38, 0, '2020-12-11 22:02:51', '2025-12-17 19:45:27', NULL, '3331196', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (516, 'No Campaign Mission', '2020-12-26 19:00:00', '2020-12-26 21:00:00', '', '#df5353', '', 322, 0, '2020-12-13 04:20:28', '2025-12-17 19:45:27', NULL, '3334530', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (517, 'Pre-Campaign OPFOR Training', '2021-01-07 19:00:00', '2021-01-07 20:30:00', '', '#6cba50', 'Brief discussion about our projected OPFOR, 3CB AAF (OPFOR and INFOR variants) | I\'ll be explaining their capabilities and what can be used to effectively combat them. This will be followed by a small series of FTXs to practice fighting them as a faction and assets that we are not familiar with.', 468, 0, '2020-12-14 20:49:50', '2025-12-17 19:45:27', NULL, '3337137', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (518, 'AIT 3', '2021-01-06 19:00:00', '2021-01-06 21:00:00', '', '#6cba50', 'Attend even if you have already attended. The more the merrier. \n\nYou do not need prior AIT courses to attend.', 468, 0, '2020-12-14 20:50:24', '2025-12-17 19:45:27', NULL, '3337138', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (519, 'Land Navigation', '2020-12-21 19:00:00', '2020-12-21 21:00:00', '', '#FFFFFF', 'Learn how to read maps and find stuff without a GPS.', NULL, 0, '2020-12-14 23:48:22', '2025-12-17 19:45:27', NULL, '3337448', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (520, 'Race Day', '2020-12-20 19:00:00', '2020-12-20 20:00:00', '', '#FFFFFF', 'Looking to start another tradition. Race Day on Tanoa,\n\nWe will start with a Hatchback Sport race. I recommend practicing this vehicle and binding your handbrake to something you are used to clicking.\n\nWe will have a Triathalon of ATV to WaterScooter(jetski) to Go-Karts. \n\nAnd last race will be a little bird obstacle course', 811, 0, '2020-12-15 00:02:05', '2025-12-17 19:45:27', NULL, '3337453', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (521, 'Race Day', '2021-01-01 19:00:00', '2021-01-01 20:30:00', '', '#FFFFFF', 'Looking to start another tradition. Race Day on Tanoa,\n\nWe will start with a Hatchback Sport race. I recommend practicing this vehicle and binding your handbrake\n\nWe will have a Triathalon of ATV to WaterScooter(jetski) to Go-Karts. \n\nAnd last race will be a little bird obstacle course', 811, 0, '2020-12-15 00:05:22', '2025-12-17 19:45:27', NULL, '3337454', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (522, 'Basic Training', '2020-12-18 19:00:00', '2020-12-18 21:00:00', '', '#008ae1', '', NULL, 0, '2020-12-16 21:24:42', '2025-12-17 19:45:27', NULL, '3342836', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (523, 'Holiday Break', '2020-12-23 23:00:00', '2020-12-31 23:00:00', '', '#FFFFFF', '', 644, 0, '2020-12-17 03:01:13', '2025-12-17 19:45:27', NULL, '3342960', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (524, 'Ranger NCO Meeting', '2020-12-19 18:30:00', '2020-12-19 19:00:00', '', '#FFFFFF', '', 19, 0, '2020-12-19 23:15:10', '2025-12-17 19:45:27', NULL, '3350120', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (525, 'Pointman training', '2020-12-22 19:00:00', '2020-12-22 20:00:00', '', '#FFFFFF', 'Talk about leading a formation without getting the rest of your team hit', 299, 0, '2020-12-20 03:20:21', '2025-12-17 19:45:27', NULL, '3350467', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (526, 'OP Fireworks', '2021-01-02 19:00:00', '2021-01-02 22:00:00', '', '#df5353', '', NULL, 0, '2020-12-20 18:18:45', '2025-12-17 19:45:27', NULL, '3351539', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (527, 'Secret Santa Deadline.', '2020-12-23 21:00:00', '2020-12-23 21:01:00', '', '#355bf8', '\n \n - This has been a difficult year for many and even with our community evolving and changing there we have been able to do some amazing things.\r\nThis community has been a place for many including myself to just come and talk to good wholesome people that just want to find Joy with a community or get away from the day to day grind. In the history of the 17th our previous leader has put up and coordinated a SECRET SANTA for the members of the unit. This usually means having a list of people who want to participate send in their name for the list and then having the leader randomly assign members to be other members secrete Santa. With approval, I have been given the authority to do it again this year. The way this will work is the following:\r\n\r\n RULES:\r\n - Gifts will have a $20 limit\r\n - Gifts will be picked from your assigned Members "Steam Wish List" (Make sure your wish list is up to date)\r\n - Because of the late coordination, You will have until Wednesday the 23rd at 7PM CST to let me know you are interested.\r\n - Secret Santa is just that, A SECRET, Each member who is interested in participating will send EAGLETROOPER a PM / Direct Message with the following information:\r\nYour Name:\r\nYour Steam Profile Link:\r\n"I agree if assigned a member I will follow through with the secret Santa"\r\n - On the 23rd (end of day) I will send out a list of all Members who are participating You need to add all members to your steam friends list so its not obvious who your person is.\r\n - Around the 24th I will send you a PM letting you know who your assignment is you will have. Because of the late announcement, you will have until the 27th to send out your gift or as close to the date as your schedule allows.\r\n - We would like to have a minimum of 5 people to participate otherwise we will scratch the list for this year.\r\n - If you have any questions please reach out to me.\n\n(SIGNUPS DISABLED)', 38, 0, '2020-12-23 06:21:21', '2025-12-17 19:45:27', NULL, '3355251', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (528, 'Command Meeting', '2021-01-03 16:00:00', '2021-01-03 18:00:00', '', '#df5353', '', 644, 0, '2020-12-28 23:40:34', '2025-12-17 19:45:27', NULL, '3363022', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (529, 'Convoy Op', '2021-01-05 19:00:00', '2021-01-05 21:00:00', '', '#FFFFFF', 'Details: Resupply and repair vehicles for friendly forces. You’ll be fighting Takistan insurgents so expect IEDs, VBIEDs, and suicide bombers. \nMap: Anizay\nServer: Private Ops \nMods: 17th BCT Shadowmod', 322, 0, '2020-12-29 20:36:03', '2025-12-17 19:45:27', NULL, '3364568', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (530, 'LRS Quals', '2021-01-04 19:00:00', '2021-01-04 21:00:00', '', '#a250e8', 'Pathfinder is a pre requisite. Will cover basic LRS quals and any additional based off attendance and time available.', 644, 0, '2020-12-30 21:58:45', '2025-12-17 19:45:27', NULL, '3373923', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (531, 'Ranger NCO Meeting', '2021-01-02 18:10:00', '2021-01-02 18:50:00', 'Ranger NCO Club in Teamspeak.', '#355bf8', '', 19, 0, '2021-01-02 05:21:30', '2025-12-17 19:45:27', NULL, '3378210', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (532, 'Airborne Badge', '2021-01-08 19:00:00', '2021-01-08 20:00:00', '', '#a250e8', '', 644, 0, '2021-01-03 06:04:40', '2025-12-17 19:45:27', NULL, '3381412', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (533, '32nd Ground Asset Familiarization', '2021-01-06 19:00:00', '2021-01-06 21:00:00', '', '#d89332', 'An overview of 32nd Ground Assets and your roles while crewing them. ', 2231, 0, '2021-01-04 02:58:45', '2025-12-17 19:45:27', NULL, '3382812', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (534, 'Marksman/Sharpshooter Qual', '2021-01-09 16:45:00', '2021-01-09 18:00:00', 'Shooting Range (Obviously)', '#ecb200', 'I expect everyone coming to have read the documentation regarding the quals.', 512, 0, '2021-01-04 17:08:03', '2025-12-17 19:45:27', NULL, '3384157', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (535, 'Pre-Op Preparation', '2021-01-09 14:00:00', '2021-01-09 15:00:00', 'training range', '#FFFFFF', 'Need help getting a kit built and saved for the op? Not sure how to set up the radio, or what freq to use? Just have some questions on stuff? Come to the pre-op prep and we can get you squared away so when you join the op you are not the weak link in your fireteam!\nI will be on at this time regardless of if anyone signs up or not. Feel free to drop by if you need help with anything.\nWant to come to the Pre-op prep but can\'t make this date or time? No worries, hit me up on discord and we can make plans to get on the training server together to get you ready to go.', 483, 0, '2021-01-04 21:24:16', '2025-12-17 19:45:27', NULL, '3384729', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (536, 'OPERATION BLACK LION 1', '2021-01-09 19:00:00', '2021-01-09 22:00:00', '', '#df5353', '', 644, 0, '2021-01-06 00:56:35', '2025-12-17 19:45:27', NULL, '3386848', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (537, 'C130 Training', '2021-01-09 15:30:00', '2021-01-09 16:30:00', '', '#d89332', 'c130 rolling down the strip, JET FUEL CANT MELT STEEL BEAMS', 476, 0, '2021-01-06 03:14:09', '2025-12-17 19:45:27', NULL, '3387153', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (538, 'COIN Side Op', '2021-01-14 19:00:00', '2021-01-14 21:00:00', '', '#ecb200', 'Counter Insurgency Op. Insurgents have destabalized the region of Anizay. Clear and search the suspected locations for any thing that can be used to make an IED (cell phones, explosives, etc.). FOB contains MRAPS as well as rotary and fixed wing assets\nMods: 17th Brigade Combat Team Shadow Mod\nServer: Private Ops', 322, 0, '2021-01-06 14:37:05', '2025-12-17 19:45:27', NULL, '3388151', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (539, 'RSLC/LRS Training', '2021-01-13 19:00:00', '2021-01-13 21:00:00', '', '#a250e8', 'RSLC for NCO\'s who are LRS qualified. All LRS can show and we will do some training for the RSLC FTX.', 644, 0, '2021-01-06 20:19:53', '2025-12-17 19:45:27', NULL, '3389158', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (540, 'Halo Side Op', '2021-01-10 17:00:00', '2021-01-10 19:00:00', '', '#FFFFFF', 'So first time making a side op figured it could be a fun thing to run for a few missions. You will need two mods on top of the 17th mods those will be.\n\n\n\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1572627279\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=769440155', 485, 0, '2021-01-07 01:21:02', '2025-12-17 19:45:27', NULL, '3389527', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (541, 'Ranger NCO Meeting', '2021-01-09 18:00:00', '2021-01-09 19:00:00', 'Ranger NCO Club in TS. ', '#ecb200', '', 19, 0, '2021-01-08 12:51:13', '2025-12-17 19:45:27', NULL, '3391683', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (542, 'AIT 4', '2021-01-11 19:00:00', '2021-01-11 21:00:00', '', '#6cba50', 'The more the merrier, so feel free to attend regardless of whether or not you\'ve already done AIT 4.', 468, 0, '2021-01-10 06:07:56', '2025-12-17 19:45:27', NULL, '3395013', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (543, 'Halo Side op', '2021-01-15 19:00:00', '2021-01-15 21:00:00', '', '#FFFFFF', 'Same event that was meant for Sunday but had to be moved.\n\n==== Updated to add direct Mod Links ====\n\n\n\n', 485, 0, '2021-01-10 23:47:27', '2025-12-17 19:45:27', NULL, '3396499', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (544, 'Air Crew Training', '2021-01-12 19:30:00', '2021-01-12 20:30:00', '', '#d89332', '', 476, 0, '2021-01-10 23:47:44', '2025-12-17 19:45:27', NULL, '3396500', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (545, 'Copilot Training Part 1', '2021-01-19 19:30:00', '2021-01-19 20:30:00', '', '#d89332', '', 476, 0, '2021-01-10 23:48:30', '2025-12-17 19:45:27', NULL, '3396502', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (546, 'Copilot Training Part 2', '2021-01-21 19:30:00', '2021-01-21 20:30:00', '', '#d89332', '', 476, 0, '2021-01-10 23:48:42', '2025-12-17 19:45:27', NULL, '3396503', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (547, 'Copilot Qual', '2021-01-23 14:00:00', '2021-01-23 15:00:00', '', '#d89332', '', 476, 0, '2021-01-10 23:49:03', '2025-12-17 19:45:27', NULL, '3396504', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (548, 'Operation Black Lion 2', '2021-01-16 19:00:00', '2021-01-16 22:00:00', '', '#df5353', '', 644, 0, '2021-01-11 20:35:12', '2025-12-17 19:45:27', NULL, '3403650', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (549, 'Weapon Team Tactics', '2021-01-18 19:00:00', '2021-01-18 21:00:00', '', '#30a68f', 'Come and work on some Weapons team tactics with ya boi. Help you figure out better placement and how to work as a team when you have a heavy weapon of some type.', 485, 0, '2021-01-13 02:01:24', '2025-12-17 19:45:27', NULL, '3406988', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (550, 'How to Win Friends And Use an AT4', '2021-01-17 19:00:00', '2021-01-17 21:00:00', 'Spawn at Training Grounds', '#30a68f', 'Let\'s blow stuff up', 15, 0, '2021-01-13 02:13:41', '2025-12-17 19:45:27', NULL, '3407018', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (551, 'Marksman/Sharpshooter quals', '2021-01-19 19:00:00', '2021-01-19 20:15:00', '', '#ecb200', '', 299, 0, '2021-01-13 03:05:34', '2025-12-17 19:45:27', NULL, '3407219', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (552, 'Air Crew Qual', '2021-01-13 19:30:00', '2021-01-13 20:30:00', '', '#d89332', '', 476, 0, '2021-01-13 03:24:41', '2025-12-17 19:45:27', NULL, '3407225', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (553, 'Ranger NCO Meeting', '2021-01-16 18:00:00', '2021-01-16 18:30:00', 'Ranger NCO Club in TS', '#355bf8', '', 19, 0, '2021-01-13 04:38:28', '2025-12-17 19:45:27', NULL, '3407248', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (554, 'IFV/Armor Training', '2021-01-20 19:00:00', '2021-01-20 21:00:00', '', '#d89332', 'Location: Airfield - Training Server\nWe\'ll be going over the roles within IFVs and armored vehicles, how to operate, and what to do if your vic is disabled or destroyed. This is NOT an IFV Qual, but it is an important training to attend if you plan on taking the IFV Qual at a later date.', 309, 0, '2021-01-13 17:03:22', '2025-12-17 19:45:27', NULL, '3408338', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (555, 'Operation Black Lion 3', '2021-01-23 19:00:00', '2021-01-23 22:00:00', '', '#df5353', '', 644, 0, '2021-01-17 23:24:01', '2025-12-17 19:45:27', NULL, '3416576', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (556, 'RTO Qualification', '2021-01-26 19:00:00', '2021-01-26 21:00:00', '', '#a250e8', 'Clearing the chatter, and getting the right information to the right people, at the right time... thats being an RTO. \n\nBookwork and qual will happen in the same day, so this might run longer than scheduled depending on the number of attending. If needed, this will be a bookwork course and a qualification day will be setup another day.\n\nA pad of paper and a pencil or pen is recommended for this one. \n\n\n', 501, 0, '2021-01-18 06:47:52', '2025-12-17 19:45:27', NULL, '3417170', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (557, 'LRS Training', '2021-01-20 19:00:00', '2021-01-20 21:00:00', '', '#6cba50', '', 644, 0, '2021-01-19 00:04:04', '2025-12-17 19:45:27', NULL, '3418748', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (558, 'Ranger Training', '2021-01-22 19:00:00', '2021-01-22 21:00:00', 'Training Server - Training Grounds', '#6cba50', '', 19, 0, '2021-01-19 04:50:33', '2025-12-17 19:45:27', NULL, '3418925', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (559, 'Forward Observer - Test Run', '2021-01-28 19:00:00', '2021-01-28 21:00:00', '', '#d89332', 'Test run for forward observer. IDF ribbon is a requirement to attend.', NULL, 0, '2021-01-19 23:46:40', '2025-12-17 19:45:27', NULL, '3421439', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (560, 'LRS Mission', '2021-01-21 19:00:00', '2021-01-21 21:00:00', '', '#df5353', 'LRS will attempt to identify and destroy possible enemy aircraft at an airbase. Success of this mission will result in denying the enemy usage of air assets for a period of time. Failure to find and destroy aircraft will result in possible air strikes.', 644, 0, '2021-01-20 01:36:59', '2025-12-17 19:45:27', NULL, '3421715', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (561, 'Ranger NCO Meeting', '2021-01-23 18:00:00', '2021-01-23 18:30:00', 'Ranger NCO Club in TS.', '#355bf8', '', 19, 0, '2021-01-20 04:55:54', '2025-12-17 19:45:27', NULL, '3421916', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (562, 'CLS Training', '2021-01-23 14:30:00', '2021-01-23 15:30:00', 'Training Server', '#6cba50', ' The usual. Learn how to be not bad. TT', 508, 0, '2021-01-21 20:19:37', '2025-12-17 19:45:27', NULL, '3424911', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (563, 'Pathfinder Assesment/ LRS Training', '2021-01-25 19:00:00', '2021-01-25 21:00:00', 'Private Operations', '#ecb200', '', 644, 0, '2021-01-22 19:25:29', '2025-12-17 19:45:27', NULL, '3425913', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (564, '32nd, Tank crew training', '2021-01-24 20:00:00', '2021-01-24 21:00:00', '', '#ecb200', 'MBT training, familiarity of roles, requirements and handling\nGoing over the chonky boi, aka Claymore.All are welcome, short lecture on weapon systems followed by experiencing roles. Will hold FTX if numbers permit. Come one, come all.', 932, 0, '2021-01-22 21:42:48', '2025-12-17 19:45:27', NULL, '3426074', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (565, 'Flight Training, MH-6', '2021-01-27 18:00:00', '2021-01-27 19:30:00', '17th Training Grounds, Air Base', '#d89332', 'Learn to fly the MH-6 "Littlebird"', 916, 0, '2021-01-22 22:54:54', '2025-12-17 19:45:27', NULL, '3426083', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (566, 'Flight Training, UH60', '2021-01-30 14:00:00', '2021-01-30 15:00:00', '', '#d89332', '', 476, 0, '2021-01-23 19:25:02', '2025-12-17 19:45:27', NULL, '3427928', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (567, '68W Medic Training', '2021-01-30 16:00:00', '2021-01-30 18:00:00', '', '#6cba50', '68W Medical Training Course\nIt is suggested previously qualified individuals attend the training as a refresher due to changes in ace medical system\nAwarding of the badge upon completion of this course is dependent on CLS ribbon.\n\nChallenges welcome on request', 539, 0, '2021-01-24 03:41:03', '2025-12-17 19:45:27', NULL, '3428895', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (568, 'Operation Black Lion 4', '2021-01-30 19:00:00', '2021-01-30 22:00:00', '', '#df5353', '', 644, 0, '2021-01-24 16:14:40', '2025-12-17 19:45:27', NULL, '3430267', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (569, 'Ranger Training', '2021-01-27 19:00:00', '2021-01-27 21:00:00', 'Training Server - Training Grounds', '#6cba50', 'Topics TBD.', 19, 0, '2021-01-25 06:45:21', '2025-12-17 19:45:27', NULL, '3432673', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (570, 'Enemy and Heavy Weapons Training', '2021-02-05 19:00:00', '2021-02-05 21:00:00', '', '#6cba50', 'Brief familiarization on enemy weapons and capabilities, then working on our own heavy weapons including CSWs and AT launchers.', 468, 0, '2021-01-26 04:25:07', '2025-12-17 19:45:27', NULL, '3435538', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (571, 'Operation Black Lion 5 Sandtable', '2021-02-12 20:00:00', '2021-02-12 22:00:00', '', '#a250e8', 'We\'re uh doing hood rat shit or something', NULL, 0, '2021-01-26 04:45:22', '2025-12-17 19:45:27', NULL, '3435539', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (572, 'Echo Training', '2021-02-05 20:00:00', '2021-02-05 22:00:00', '', '#d89332', '', NULL, 0, '2021-01-26 04:45:22', '2025-12-17 19:45:27', NULL, '3435540', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (573, 'Echo Training', '2021-02-26 20:00:00', '2021-02-26 22:00:00', '', '#d89332', '', NULL, 0, '2021-01-26 04:45:22', '2025-12-17 19:45:27', NULL, '3435542', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (574, 'Echo Training', '2021-03-05 20:00:00', '2021-03-05 22:00:00', '', '#d89332', '', NULL, 0, '2021-01-26 04:45:22', '2025-12-17 19:45:27', NULL, '3435543', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (575, 'Ranger NCO Meeting', '2021-01-30 18:00:00', '2021-01-30 18:30:00', 'Ranger NCO Club --> TS.', '#355bf8', 'If you\'re a non-NCO and you want to show up, poke me on TS as the meeting starts.', 19, 0, '2021-01-27 03:09:31', '2025-12-17 19:45:27', NULL, '3437492', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (576, 'AIT 1', '2021-02-02 19:00:00', '2021-02-02 21:30:00', 'Training Server - Rifle Range', '#6cba50', 'AIT 1 - Encompasses proper usage of M249, M240B, and 40mm Underslungs. Covers MAT and HAT (MAAWs and Titan AT) Launchers.\nProper identification and reaction to enemy 40mm, 82mm, and 155mm rounds as well as briefly going over enemy vehicle audio and such.\nBriefly goes over formations (this should be well known from basic).\nGoing over static positions, things to look for in them and holding them.\n\n', 19, 0, '2021-01-27 22:08:38', '2025-12-17 19:45:27', NULL, '3438748', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (577, 'Land Navigation', '2021-01-29 18:00:00', '2021-01-29 20:00:00', '', '#a250e8', 'Learn to navigate the dangerous plains of Earth without your super dooper fancy tools', 512, 0, '2021-01-28 05:23:31', '2025-12-17 19:45:27', NULL, '3439167', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (578, 'Direct Action - Details to be Provided at time of Mission', '2021-02-03 19:00:00', '2021-02-03 21:00:00', 'Training server- Training Grounds in the Briefing Tent/Hanger', '#FFFFFF', 'Signups end 1 hour before the op. At that time I will post the mission to this event.\nI need at least a fire time. A squad would be great. More is even better.\nWould also love to have some 32nd, pilots and mortar crew(s).\nI need a Team Leader to make decisions. If you want to be that person, leave a message on the mission specifying. If no one volunteers to be Team Leader, i will pick a person. \n mission will be setup by hand on the training server via Zeus. Think of it like an FTX. There are no points for this mission. It is just to have fun and get more time in Arma with other members.\n\nThis is an ongoing series of approx 5 missions.\nRead the document for the backstory and current state of events.', 483, 0, '2021-01-28 14:46:32', '2025-12-17 19:45:27', NULL, '3440043', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (579, 'RASP', '2021-02-06 19:00:00', '2021-02-06 22:00:00', '', '#df5353', '', 644, 0, '2021-01-28 19:06:37', '2025-12-17 19:45:27', NULL, '3440978', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (580, 'High Mobility FTX/Training', '2021-01-31 14:00:00', '2021-01-31 16:00:00', '', '#a250e8', 'IM DOING IT GUYS IM HOSTING A TRAINING/FTX THIS WILL BE A COME AND GO AS YOU WANT AND IT WILL BE HOSTED ON THE PRIVATE OPS RUNNING PERSISTENT SO COME OUT IF YOU WANT. LEARN SMALL TEAM MOVEMENTS, KEEPING THE PRESSURE ON, AND HOW TO BE HIGH SPEED LOW DRAG.', NULL, 0, '2021-01-29 21:25:17', '2025-12-17 19:45:27', NULL, '3444240', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (581, 'Marksman-Sharpshooter Qualifications', '2021-02-01 18:00:00', '2021-02-01 19:15:00', 'Rifle Range', '#FFFFFF', 'The requirements are on Guilded. Be resourceful, know what’s needed of you.\nYou can qualify at any time during the hour and 15 minute period, so practice as much as you need.', 468, 0, '2021-01-30 03:48:15', '2025-12-17 19:45:27', NULL, '3445029', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (582, 'Uncommon BLUFOR Armor Practice', '2021-02-01 19:00:00', '2021-02-01 21:00:00', '', '#d89332', 'Meeting Location - Airfield, Training Server\n\nSometimes we are requested or required to use assets other than the Bradley for operations. This practice session will be a chance to get some experience using these assets. We will be covering the M1 Abrams, Merkava, Rooikat, and Badger.', 309, 0, '2021-01-30 18:01:37', '2025-12-17 19:45:27', NULL, '3445769', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (583, 'Command Meeting', '2021-02-07 15:00:00', '2021-02-07 17:00:00', '', '#df5353', '', NULL, 0, '2021-01-31 15:18:28', '2025-12-17 19:45:27', NULL, '3449144', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (584, 'Flight Training C130', '2021-02-04 19:30:00', '2021-02-04 20:30:00', '', '#d89332', '', 476, 0, '2021-01-31 20:16:36', '2025-12-17 19:45:27', NULL, '3449466', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (585, 'Air Crew Training', '2021-02-08 19:30:00', '2021-02-08 20:30:00', '', '#d89332', '', 476, 0, '2021-01-31 20:17:08', '2025-12-17 19:45:27', NULL, '3449468', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (586, 'Air Crew Qual', '2021-02-10 19:30:00', '2021-02-10 20:30:00', '', '#d89332', '', 476, 0, '2021-01-31 20:17:28', '2025-12-17 19:45:27', NULL, '3449469', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (587, 'Copilot Training Part 1', '2021-02-15 19:30:00', '2021-02-15 20:30:00', '', '#d89332', '', 476, 0, '2021-01-31 20:18:11', '2025-12-17 19:45:27', NULL, '3449470', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (588, 'Copilot Training Part 2', '2021-02-17 19:30:00', '2021-02-17 20:30:00', '', '#d89332', '', 476, 0, '2021-01-31 20:18:40', '2025-12-17 19:45:27', NULL, '3449471', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (589, 'Copilot Qual', '2021-02-19 19:30:00', '2021-02-19 20:30:00', '', '#d89332', '', 476, 0, '2021-01-31 20:19:59', '2025-12-17 19:45:27', NULL, '3449473', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (590, '32nd Ground Crew Familiarization', '2021-02-11 18:00:00', '2021-02-11 20:00:00', '', '#d89332', '', 2231, 0, '2021-02-02 18:31:47', '2025-12-17 19:45:27', NULL, '3459150', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (591, 'Anti Armor Training', '2021-02-08 19:00:00', '2021-02-08 21:00:00', '', '#6cba50', 'Learning the capabilities of enemy armored assets so we can kill them more better.', 468, 0, '2021-02-04 19:44:59', '2025-12-17 19:45:27', NULL, '3465880', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (592, 'Escape & Evade Training', '2021-02-24 19:30:00', '2021-02-24 20:30:00', '', '#d89332', 'For air personnel however all are welcome', 476, 0, '2021-02-06 00:37:45', '2025-12-17 19:45:27', NULL, '3467757', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (593, 'Flight Training CH47', '2021-02-22 19:30:00', '2021-02-22 20:30:00', '', '#d89332', '', 476, 0, '2021-02-06 00:38:55', '2025-12-17 19:45:27', NULL, '3467758', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (594, 'Air Crew Training', '2021-03-01 19:30:00', '2021-03-01 20:30:00', '', '#d89332', '', 476, 0, '2021-02-06 00:39:22', '2025-12-17 19:45:27', NULL, '3467759', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (595, 'Copilot Training Part 1', '2021-03-08 19:30:00', '2021-03-08 20:30:00', '', '#d89332', '', 476, 0, '2021-02-06 00:39:57', '2025-12-17 19:45:27', NULL, '3467761', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (596, 'Copilot Training Part 2', '2021-03-10 19:30:00', '2021-03-10 20:30:00', '', '#d89332', '', 476, 0, '2021-02-06 00:40:08', '2025-12-17 19:45:27', NULL, '3467762', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (597, 'Copilot Qual', '2021-03-12 19:30:00', '2021-03-12 20:30:00', '', '#d89332', '', 476, 0, '2021-02-06 00:40:18', '2025-12-17 19:45:27', NULL, '3467764', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (598, 'Communications Training', '2021-02-09 19:30:00', '2021-02-09 21:00:00', 'Training Server', '#6cba50', 'Practice communicating with your Fireteam and Team Lead. This includes but is not limited to: calling out OPFOR movements and strength, identifying vehicles at distance, knowing where the rest of your team is and if they are conscious, and stepping up in case both FTL and 2IC are down', 1141, 0, '2021-02-06 00:55:11', '2025-12-17 19:45:27', NULL, '3468003', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (599, 'IDF Training', '2021-02-16 19:00:00', '2021-02-16 21:00:00', 'Training Server', '#d89332', 'Location - Airfield\nCome learn how to lead and crew mortars and self-propelled artillery. This course will teach you the prowords, procedures, and math to properly complete fire missions.', 309, 0, '2021-02-06 02:30:32', '2025-12-17 19:45:27', NULL, '3468117', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (600, 'CANCELLED - BD1A', '2021-02-21 19:00:00', '2021-02-21 21:00:00', 'Training Grounds', '#6cba50', 'As the title suggest, it\'s gonna be a Battle Drill 1A training. Since this is a squad lvl training, I need the numbers to do it. I\'m fine missing 1 or 2 people, but more than that the training will be cancelled.', 512, 1, '2021-02-06 03:19:56', '2025-12-17 19:45:27', NULL, '3468125', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (601, 'CANCELLED- Forward Observer Training', '2021-02-18 19:00:00', '2021-02-18 21:00:00', '', '#d89332', 'IDF ribbon is a requirement for this course. Will do either qualification or drills based on attendance.', NULL, 1, '2021-02-06 04:10:09', '2025-12-17 19:45:27', NULL, '3468131', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (602, 'Operation Black Lion 5', '2021-02-13 19:00:00', '2021-02-13 22:00:00', '', '#df5353', '', 644, 0, '2021-02-07 06:51:35', '2025-12-17 19:45:27', NULL, '3470303', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (603, 'Offical Operation', '2021-02-20 19:00:00', '2021-02-20 22:00:00', '', '#df5353', '', 644, 0, '2021-02-07 06:52:16', '2025-12-17 19:45:27', NULL, '3470304', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (604, 'Operation Black Lion 6', '2021-02-27 19:00:00', '2021-02-27 22:00:00', '', '#df5353', '', 644, 0, '2021-02-07 06:52:46', '2025-12-17 19:45:27', NULL, '3470305', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (605, 'S.T.A.L.K.E.R. Call of Livonia | Side Op', '2021-02-14 20:00:00', '2021-02-14 22:00:00', 'LIVONIA', '#FFFFFF', 'REQUIRES LIVONIA AND ONE ADDITIONAL MOD | MEET IN THE READY ROOM\n\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1383903166\nYou are a loose coalition of S.T.A.L.K.E.R.S. contracted by Duty to investigate an old Monolith base.\nExploring your surroundings is paramount to victory.', 801, 0, '2021-02-07 17:07:29', '2025-12-17 19:45:27', NULL, '3470991', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (606, 'JTAC Qualification *** CANCELLED***', '2021-02-11 19:00:00', '2021-02-11 21:00:00', '', '#a250e8', 'Topics covered will be Standard Ordinance, Effective CAS requests via 6-line (rotary and fixed wing airframes), Communication considerations, and Battlespace considerations when calling CAS.\n\nThis is also a good opportunity for those pilots looking for their CAS certification to practice working with the JTAC\'s you will be communicating with in our operations. \n\n*** Note: This course will not give you the JTAC ribbon if you are flying, nor will it give you the CAS ribbon if you do fly. \nRTO Ribbon is a requirement to pass the course, NOT a requirement to attend.', 501, 1, '2021-02-07 17:17:57', '2025-12-17 19:45:27', NULL, '3470998', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (607, 'FTL/2IC Training', '2021-02-19 19:00:00', '2021-02-19 20:00:00', '', '#6cba50', '', 15, 0, '2021-02-07 22:41:07', '2025-12-17 19:45:27', NULL, '3471882', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (608, 'Pathfinder Bookwork', '2021-02-10 19:00:00', '2021-02-10 21:00:00', 'Training Server, Training Grounds', '#6cba50', 'Information needed to attend and pass the Pathfinder Qualification, thus allowing you to be a part of LRS. Attendance sign-up is mandatory, you will be turned away if you do not sign up.', 468, 0, '2021-02-09 03:27:00', '2025-12-17 19:45:27', NULL, '3475332', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (609, 'Ranger NCO Meeting', '2021-02-13 18:00:00', '2021-02-13 18:30:00', 'Ranger NCO Club --> TS', '#355bf8', 'I will not be attending the mission nor the NCO meeting, you guys need to sort your own shit out.', 19, 0, '2021-02-10 06:07:40', '2025-12-17 19:45:27', NULL, '3480916', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (610, 'Basic Training (Moved from 2-12 to 2-15)', '2021-02-15 19:00:00', '2021-02-15 20:30:00', '', '#008ae1', '', 468, 0, '2021-02-10 21:42:45', '2025-12-17 19:45:27', NULL, '3482159', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (611, 'Pathfinder Qualification', '2021-02-22 19:00:00', '2021-02-22 21:30:00', 'Private Ops Server', '#6cba50', 'Qualification for the Pathfinder badge. Those who lack the CJW and membership prerequisites will be back-qualified if they pass this qualification. \n\nYou work alone, so be careful.', 468, 0, '2021-02-11 04:01:12', '2025-12-17 19:45:27', NULL, '3482659', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (612, 'Sapper School, Part 1', '2021-02-17 19:00:00', '2021-02-17 21:00:00', 'Training Server', '#6cba50', 'Vehicle Maintenance, Sapper rules and such, and basic demolition procedures/info.', 468, 0, '2021-02-14 04:24:22', '2025-12-17 19:45:27', NULL, '3490040', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (613, 'Sapper School, Part 2', '2021-02-25 20:30:00', '2021-02-25 22:30:00', '', '#6cba50', 'Requirements, situations, and procedures of defusing IEDs/Minefields.\n\nIf the time is too late for many people who\'d like to attend, it\'s your responsibility to let me know here or on Guilded and I will do my best \nwithin my power\n to accommodate the most people as possible.', 468, 0, '2021-02-14 04:31:30', '2025-12-17 19:45:27', NULL, '3490041', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (614, 'Sapper School, part 3', '2021-03-03 19:00:00', '2021-03-03 21:00:00', '', '#6cba50', 'Extra info that hasn\'t been touched upon, as well as extra practice on what we\'ve learnt, if time allows for it.', 468, 0, '2021-02-14 04:34:06', '2025-12-17 19:45:27', NULL, '3490042', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (615, 'Marksman/Sharpshooter Qualifications', '2021-02-20 17:15:00', '2021-02-20 17:55:00', '', '#6cba50', 'Know what\'s expected of you. The requirements are found on Guilded, so be resourceful enough to find it yourself. Don\'t ask someone else.\n\nYou have the entire 40 minute period to qualify, so don\'t feel like you have to rush into it.', 468, 0, '2021-02-14 05:06:33', '2025-12-17 19:45:27', NULL, '3490045', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (616, 'Direct Action - Mission 2', '2021-02-21 15:00:00', '2021-02-21 17:00:00', 'Training Server', '#FFFFFF', 'RECAP\nMalden is in the middle of a Civil war between the Cult of Wee and the government. Dr. Brian Johansson, the nephew of a prominent US Senator was kidnapped by the cult. 17th is task with retrieving the doctor using any assets at their disposal. At this time, the location of the doctor is unknown.\nNEW TASKING\nThe CIA asset, while captured successfully, could not direct the 17th to the location of the Doctor. However, he was able to give the name and location of the cultist in charge of the roadblock where the kidnapping occurred. The cultist will be at the roadblock for the next few days. The cultist may have direct knowledge of the location of the Doctor and other medical personnel. The roadblock is located on the MSR between La Pessagne to Chapoi, overlooked by AA in the surrounding countryside. The AA locations move randomly. Eyes on each location is required. \r\n\r\nObjective Alpha\r\nThe Rangers must remove either the AA locations themselves, or facilitate the 32nd destroying them, or a combination of both, to allow air assets in the area. Cultists may respond with QRF to site of AA locations\r.\n\r\nObjective Bravo\r\nThe Ranger team will move to terminate all armed personnel at the roadblock and capture the cultist. It is highly probable civilian travelers will be present on the road and waiting for inspection at the roadblock. In addition, armed convoys routinely use the road to move war material to the front line.\n', 483, 0, '2021-02-15 20:44:08', '2025-12-17 19:45:27', NULL, '3493478', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (617, 'JTAC Qualification', '2021-02-23 19:00:00', '2021-02-23 21:30:00', '', '#a250e8', 'JTAC qualification. \nNote: This training will happen exactly as the linked document outlines.\nThis training is open to anyone, however, only RTO/Communications tagged operators will be awarded the JTAC ribbon upon completion (subject to change if I hear differently.) \nPilots looking to get their CAS qualification are encouraged to join for practice in working with the ground, but will not receive their CAS qualification from this course. \nThough the information in this qualifier is directed more toward fixed wing CAS, helicopter CAS pilots may find benefit in practicing with the ground communication as well.', 501, 0, '2021-02-17 19:54:06', '2025-12-17 19:45:27', NULL, '3499119', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (618, 'Jump School', '2021-02-20 15:00:00', '2021-02-20 16:30:00', '', '#6cba50', 'Emergency Jump School in preparation for the jump during the op', 468, 0, '2021-02-19 20:19:06', '2025-12-17 19:45:27', NULL, '3503991', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (619, 'Ranger NCO Meeting', '2021-02-20 18:00:00', '2021-02-20 19:00:00', 'nco club in ts', '#ecb200', '', 19, 0, '2021-02-20 17:57:27', '2025-12-17 19:45:27', NULL, '3506310', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (620, '32nd Ground Crew Familiarization', '2021-02-25 19:00:00', '2021-02-25 20:30:00', '', '#ecb200', 'An overview of Crew Positions and Responsibilities on all 32nd ground assets', 2231, 0, '2021-02-22 19:30:35', '2025-12-17 19:45:27', NULL, '3513703', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (621, 'Operation Black Lion 7', '2021-03-06 19:00:00', '2021-03-06 22:00:00', '', '#df5353', '', 644, 0, '2021-02-23 21:45:24', '2025-12-17 19:45:27', NULL, '3517815', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (622, 'Operation Black Lion FINALE', '2021-03-13 19:00:00', '2021-03-13 22:00:00', '', '#df5353', '', 644, 0, '2021-02-23 21:45:47', '2025-12-17 19:45:27', NULL, '3517816', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (623, 'Operation Missing Furniture', '2021-02-28 16:00:00', '2021-02-28 18:00:00', 'Iceberg Gaming Server', '#FFFFFF', 'Getting to the bottom of where all the furniture went. The people demand answers! Same mod pack. ', 639, 0, '2021-02-25 17:09:34', '2025-12-17 19:45:27', NULL, '3523941', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (624, 'Ranger NCO Meeting', '2021-02-27 18:00:00', '2021-02-27 18:45:00', 'The only place not corrupted by capitalism: SPACE', '#6cba50', '', 15, 0, '2021-02-27 01:03:55', '2025-12-17 19:45:27', NULL, '3528556', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (625, 'Pathfinder Bookwork', '2021-03-02 20:25:00', '2021-03-02 22:00:00', 'Training Server', '#6cba50', 'This isn\'t a qualification, but the information needed to pass the Pathfinder exam.', 468, 0, '2021-02-28 20:59:32', '2025-12-17 19:45:27', NULL, '3533296', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (626, 'Pathfinder Qualifications', '2021-03-06 14:00:00', '2021-03-06 16:00:00', 'Private Ops', '#6cba50', 'Qualification for the Pathfinder badge. Expect to work alone.', 468, 0, '2021-02-28 21:05:47', '2025-12-17 19:45:27', NULL, '3533298', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (627, 'Master FreeFall and RSLC', '2021-03-09 20:30:00', '2021-03-09 22:00:00', '', '#6cba50', 'MFF is required for all LRS candidates, RSLC is required for any NCO who wishes to lead during an LRS mission. Regardless, all should attend RSLC so they know the larger scope and purpose of actions.', 468, 0, '2021-02-28 21:16:00', '2025-12-17 19:45:27', NULL, '3533303', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (628, 'Sniper School', '2021-03-15 18:00:00', '2021-03-15 20:00:00', '', '#6cba50', 'LRS Sniper School + Qualifications.', 468, 0, '2021-02-28 21:17:15', '2025-12-17 19:45:27', NULL, '3533305', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (629, 'Anti Armor Training', '2021-03-17 18:00:00', '2021-03-17 20:00:00', '', '#6cba50', 'Learning enemy assets, their capabilities, and their weakpoints. One of two needed for the Heavy Weapons ribbon.', 468, 0, '2021-02-28 21:18:45', '2025-12-17 19:45:27', NULL, '3533307', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (630, 'IFV Training', '2021-03-02 19:00:00', '2021-03-02 21:00:00', '', '#d89332', 'Come learn how to drive, operate, and repair IFVs and armor. We will go over the weapons systems on the Bradley as well as the roles and responsibilites of it\'s crew.\nNOTE: This does NOT count as IFV/Mechanized Qualification. This is the training to prepare for the actual qualification test.', 309, 0, '2021-02-28 21:31:24', '2025-12-17 19:45:27', NULL, '3533425', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (631, 'Operation Crimson Sky', '2021-03-07 18:00:00', '2021-03-07 20:00:00', 'Iceberg Gaming Mission Server', '#FFFFFF', 'These Russians in Takistan need to go.', 2232, 0, '2021-03-01 00:30:51', '2025-12-17 19:45:27', NULL, '3533850', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (632, 'Fireteam Training', '2021-03-08 19:00:00', '2021-03-08 21:00:00', '', '#30a68f', 'Git gud\nTopics of training will include some CQB, some MOUT, some fireteam movement, and a lot of shooting, and whatever else we think we will need to cover', 15, 0, '2021-03-01 00:47:49', '2025-12-17 19:45:27', NULL, '3533853', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (633, 'Mechanized Badge Qualification', '2021-03-26 19:00:00', '2021-03-26 21:00:00', '', '#d89332', '', NULL, 0, '2021-03-01 07:18:16', '2025-12-17 19:45:27', NULL, '3534717', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (634, 'Echo Training - 60mm Mortar', '2021-04-02 19:00:00', '2021-04-02 21:00:00', '', '#d89332', '', NULL, 0, '2021-03-01 07:18:16', '2025-12-17 19:45:27', NULL, '3534718', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (635, 'Flight Training - BlackHawk Raids', '2021-04-09 18:00:00', '2021-04-09 20:00:00', 'Training Server - North Airfield Spawn', '#d89332', 'Raid Training. Tandem flights with Blackhawks/Synchronized Landings and Take Offs', NULL, 0, '2021-03-01 07:18:16', '2025-12-17 19:45:27', NULL, '3534719', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (636, 'Echo Training', '2021-04-16 19:00:00', '2021-04-17 09:00:00', '', '#d89332', '', NULL, 0, '2021-03-01 07:18:16', '2025-12-17 19:45:27', NULL, '3534720', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (637, 'MISSION MAKER POW WOW', '2021-03-21 15:00:00', '2021-03-21 16:00:00', '', '#ecb200', 'we gonna talk about campaigns, difficulty, Making Rasp, and compositions .\nIf any other mission makers have topics or points of discussion. Comment on the event what needs to be discussed.. this will be a bi monthly meeting moving forward', 43, 0, '2021-03-01 17:30:52', '2025-12-17 19:45:27', NULL, '3536411', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (638, '[Cancelled] Operation Hanging Garden, Prelude', '2021-04-04 16:30:00', '2021-04-04 18:00:00', 'Iceberg Server', '#30a68f', '2006\n\nDecades after the failed invasion of Afghanistan, a \nREDACTED\n detachment of \nREDACTED\n operatives are deployed to the region of Takistan to provide arms, military advisement, and \nwoah this is a big redacted here, comrade\n to the region of Clafghan. \n\nUnder order of \nYou can guess what\'s here\n, deployed operatives must keep \nthe frog\'s\n involvement secret from any persons not associated with Clafghan\'s higher officials. Cyanide pills are provided for any personnel captured, and your sacrifice will not be forgotten.', 468, 1, '2021-03-01 18:41:20', '2025-12-17 19:45:27', NULL, '3536632', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (639, 'Operation Caldera', '2021-03-21 16:30:00', '2021-03-21 18:30:00', 'Iceberg Arma 3 Server', '#FFFFFF', 'Follow up to Operation Missing Furniture. Standard 17th Rules only exceptions are any Nato weapon is allowed excluding launchers and black multi-cam is required. \n\nAfter our encounter with the Russians we secured a laptop of shipping manifests in addition to documentation of the Russians intent to "Secure Contain and Protect" the furniture. Pairing this with NATO High command giving the order to \nredacted \n the remains of \nredacted\n. Local high command has given the order to follow the VTOL aircraft we spotted in the hopes of getting more answers before filing an official report with NATO High command. This is off the books so expect assets to be limited. \n\n\nRequires \n\n\n', 639, 0, '2021-03-01 19:24:47', '2025-12-17 19:45:27', NULL, '3536656', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (640, 'Air Crew Qual', '2021-03-04 19:30:00', '2021-03-04 20:30:00', '', '#d89332', '', 476, 0, '2021-03-03 00:57:39', '2025-12-17 19:45:27', NULL, '3538866', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (641, 'Operation Kaskara Episode 1', '2021-04-03 18:00:00', '2021-04-03 21:00:00', 'N\'ziwasogo', '#df5353', 'Bartender please', 612, 0, '2021-03-03 12:41:45', '2025-12-17 19:45:27', NULL, '3539916', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (642, 'Operation Kaskara Episode 2', '2021-04-10 18:00:00', '2021-04-10 19:00:00', 'N\'ziwasogo', '#df5353', 'Fill my glass for me', 612, 0, '2021-03-03 12:42:49', '2025-12-17 19:45:27', NULL, '3539917', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (643, 'Operation Kaskara Episode 3', '2021-04-17 18:00:00', '2021-04-17 19:00:00', 'N\'ziwasogo', '#df5353', 'With the wine you gave Jesus that set him free', 612, 0, '2021-03-03 12:43:14', '2025-12-17 19:45:27', NULL, '3539918', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (644, 'Operation Kaskara Episode 4', '2021-04-24 18:00:00', '2021-04-24 19:00:00', 'N\'ziwasogo', '#df5353', 'After three days in the ground', 612, 0, '2021-03-03 12:43:35', '2025-12-17 19:45:27', NULL, '3539919', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (645, 'Operation Kaskara Episode 5', '2021-05-08 18:00:00', '2021-05-08 19:00:00', 'N\'ziwasogo', '#df5353', 'Bartender please', 612, 0, '2021-03-03 12:46:57', '2025-12-17 19:45:27', NULL, '3539920', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (646, 'Operation Kaskara Episode 6', '2021-05-15 18:00:00', '2021-05-15 19:00:00', 'N\'ziwasogo', '#df5353', 'The wine that\'s drinking me', 612, 0, '2021-03-03 12:47:21', '2025-12-17 19:45:27', NULL, '3539921', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (647, 'Operation Kaskara Episode 7', '2021-05-22 18:00:00', '2021-05-22 19:00:00', 'N\'ziwasogo', '#df5353', 'Came from the vine that strung Judas from the devil\'s tree', 612, 0, '2021-03-03 12:47:50', '2025-12-17 19:45:27', NULL, '3539922', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (648, 'Operation Kaskara FInale', '2021-05-29 18:00:00', '2021-05-29 19:00:00', 'N\'ziwasogo', '#df5353', 'His roots deep, deep, in the ground', 612, 0, '2021-03-03 12:48:04', '2025-12-17 19:45:27', NULL, '3539923', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (649, 'RASP', '2021-03-20 18:00:00', '2021-03-20 21:00:00', 'Private Operations', '#df5353', '', 644, 0, '2021-03-03 13:22:35', '2025-12-17 19:45:27', NULL, '3539927', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (650, 'BN FTX', '2021-03-27 18:00:00', '2021-03-27 21:00:00', '', '#df5353', '', 644, 0, '2021-03-03 13:23:19', '2025-12-17 19:45:27', NULL, '3539928', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (651, 'Air Assault School', '2021-03-10 17:00:00', '2021-03-10 19:00:00', 'Training Server - Training Grounds', '#ecb200', 'Air Assault School and Practical for the Air Assault Badge.\nCovers the “thought process” of creating LZs and PZs.\nCovers fast roping and the how to from the Ranger and Crew Chief perspective.', 19, 0, '2021-03-03 21:58:32', '2025-12-17 19:45:27', NULL, '3541045', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (652, 'Command Meeting', '2021-03-07 15:00:00', '2021-03-07 16:00:00', '', '#355bf8', '', 644, 0, '2021-03-05 14:25:48', '2025-12-17 19:45:27', NULL, '3544466', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (653, 'NCO Meeting that SOMEONE keeps forgetting', '2021-03-06 18:00:00', '2021-03-06 19:00:00', '', '#d89332', '', 15, 0, '2021-03-06 17:45:27', '2025-12-17 19:45:27', NULL, '3546917', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (654, 'Basic Training', '2021-03-08 08:00:00', '2021-03-08 11:15:00', '', '#008ae1', '', 639, 0, '2021-03-06 18:43:36', '2025-12-17 19:45:27', NULL, '3546990', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (655, 'Ranger NCO Meeting', '2021-03-13 18:00:00', '2021-03-13 19:00:00', 'Ranger NCO Club - TS', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547129', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (656, 'Ranger NCO Meeting', '2021-03-20 17:00:00', '2021-03-20 18:00:00', 'Ranger NCO Club - TS', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547130', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (657, 'Ranger NCO Meeting', '2021-04-17 17:00:00', '2021-04-17 18:00:00', 'Alpha Company Chow Hall', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547132', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (658, 'Ranger NCO Meeting', '2021-06-12 17:00:00', '2021-06-12 18:00:00', 'Ranger NCO Club - TS', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547134', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (659, 'Ranger NCO Meeting', '2021-04-10 17:00:00', '2021-04-10 18:00:00', 'Ranger NCO Club - TS', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547135', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (660, 'Battalion NCO Meetings', '2021-07-10 17:00:00', '2021-07-10 18:00:00', 'Teamspeak', '#FFFFFF', 'Alpha Company NCOs: Alpha Co --> NCO Club\nEcho Company NCOs: Echo Co --> NCO Club', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547136', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (661, 'Ranger NCO Meeting', '2021-04-03 17:00:00', '2021-04-03 18:00:00', 'Ranger NCO Club - TS', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547137', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (662, 'Ranger NCO Meeting', '2021-04-24 17:00:00', '2021-04-24 18:00:00', 'Ranger NCO Club - TS', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547138', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (663, 'Ranger NCO Meeting', '2021-05-08 17:00:00', '2021-05-08 18:00:00', 'Ranger NCO Club - TS', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547140', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (664, 'Battalion NCO Meetings', '2021-09-11 17:00:00', '2021-09-11 18:00:00', 'Teamspeak', '#FFFFFF', 'Alpha Company NCOs: Alpha Co --> NCO Club\nEcho Company NCOs: Echo Co --> NCO Club', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547142', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (665, 'Battalion NCO Meetings', '2021-09-04 17:00:00', '2021-09-04 18:00:00', 'Teamspeak', '#FFFFFF', 'Alpha Company NCOs: Alpha Co --> NCO Club\nEcho Company NCOs: Echo Co --> NCO Club', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547143', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (666, 'Battalion NCO Meetings', '2021-08-14 17:00:00', '2021-08-14 18:00:00', 'Teamspeak', '#FFFFFF', 'Alpha Company NCOs: Alpha Co --> NCO Club\nEcho Company NCOs: Echo Co --> NCO Club', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547144', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (667, 'Battalion NCO Meetings', '2021-08-28 17:00:00', '2021-08-28 18:00:00', 'Teamspeak', '#FFFFFF', 'Alpha Company NCOs: Alpha Co --> NCO Club\nEcho Company NCOs: Echo Co --> NCO Club', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547145', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (668, 'Ranger NCO Meeting', '2021-05-15 17:00:00', '2021-05-15 18:00:00', 'Ranger NCO Club - TS', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547146', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (669, 'Battalion NCO Meetings', '2021-06-26 17:00:00', '2021-06-26 18:00:00', 'Teamspeak', '#FFFFFF', 'Alpha Company NCOs: Alpha Co --> NCO Club\nEcho Company NCOs: Echo Co --> NCO Club', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547147', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (670, 'Ranger NCO Meeting', '2021-06-19 17:00:00', '2021-06-19 18:00:00', 'Ranger NCO Club - TS', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547148', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (671, 'Battalion NCO Meetings', '2021-07-17 17:00:00', '2021-07-17 18:00:00', 'Teamspeak', '#FFFFFF', 'Alpha Company NCOs: Alpha Co --> NCO Club\nEcho Company NCOs: Echo Co --> NCO Club', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547149', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (672, 'Ranger NCO Meeting', '2021-05-22 17:00:00', '2021-05-22 18:00:00', 'Ranger NCO Club - TS', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547150', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (673, 'Battalion NCO Meetings', '2021-07-03 17:00:00', '2021-07-03 18:00:00', 'Teamspeak', '#FFFFFF', 'Alpha Company NCOs: Alpha Co --> NCO Club\nEcho Company NCOs: Echo Co --> NCO Club', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547151', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (674, 'Battalion NCO Meetings', '2021-08-07 17:00:00', '2021-08-07 18:00:00', 'Teamspeak', '#FFFFFF', 'Alpha Company NCOs: Alpha Co --> NCO Club\nEcho Company NCOs: Echo Co --> NCO Club', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547152', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (675, 'Battalion NCO Meetings', '2021-07-31 17:00:00', '2021-07-31 18:00:00', 'Teamspeak', '#FFFFFF', 'Alpha Company NCOs: Alpha Co --> NCO Club\nEcho Company NCOs: Echo Co --> NCO Club', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547153', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (676, 'Battalion NCO Meetings', '2021-07-24 17:00:00', '2021-07-24 18:00:00', 'Teamspeak', '#FFFFFF', 'Alpha Company NCOs: Alpha Co --> NCO Club\nEcho Company NCOs: Echo Co --> NCO Club', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547154', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (677, 'Ranger NCO Meeting', '2021-05-29 17:00:00', '2021-05-29 18:00:00', 'Ranger NCO Club - TS', '#FFFFFF', '', 19, 0, '2021-03-06 23:54:23', '2025-12-17 19:45:27', NULL, '3547155', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (678, '32nd Vehicle Crew Familiarization', '2021-03-11 19:00:00', '2021-03-11 20:30:00', '', '#d89332', 'An overview of the various ground assets available to the 32nd and your function as a crewman', 2231, 0, '2021-03-06 23:59:01', '2025-12-17 19:45:27', NULL, '3547158', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (679, 'RESCHEDULED TO Mar, 28TH - 17TH ROUND TABLE', '2021-04-04 14:00:00', '2021-04-04 16:00:00', 'Command Teamspeak Channel', '#ecb200', 'This meeting is open to the whole 17th community. We will allow members to volunteer for leadership positions and if needed vote on who will take the role. Additionally, if you would like something talked about or addressed regarding ANYTHING in the community, please comment below regarding the topic or position you would like to volunteer for so we can put it on the itinerary. \nPOSITIONS FOR VOLUNTEERS \n-17TH BN COMMANDER\n-TRAINING SERGEANT\n-SGM\n-ALPHA COMPANY COMMANDER (Infantry)\n-ECHO COMPANY COMMANDER (Support)\n-MEDIA MANAGER', 644, 0, '2021-03-07 00:16:29', '2025-12-17 19:45:27', NULL, '3547168', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (680, 'LRS Mission', '2021-03-10 18:00:00', '2021-03-10 21:00:00', 'Private Ops', '#df5353', 'LRS qual. personnel will conduct a mission for the Saturday operation. ', 644, 0, '2021-03-07 04:49:32', '2025-12-17 19:45:27', NULL, '3547700', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (681, 'Server Modpack Refresh - No Missions', '2021-03-21 23:00:00', '2021-03-22 23:00:00', '', '#FFFFFF', '', 38, 0, '2021-03-07 22:03:20', '2025-12-17 19:45:27', NULL, '3548803', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (682, 'NO SCHEDULED EVENTS AFTER - SERVER UPDATE', '2021-03-21 19:00:00', '2021-03-21 23:00:00', '', '#FFFFFF', '', 38, 0, '2021-03-07 22:09:01', '2025-12-17 19:45:27', NULL, '3548806', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (683, 'Command New Mod Pack Test', '2021-03-12 19:00:00', '2021-03-12 20:00:00', 'Iceberg Server (ARMA3)', '#df5353', '', 644, 0, '2021-03-07 22:56:29', '2025-12-17 19:45:27', NULL, '3548818', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (684, 'Joint Training', '2021-03-12 17:30:00', '2021-03-12 19:30:00', 'Training Server', '#ecb200', 'Rangers closely interacting with Bradleys and Abrams (time and attendance permitting). How to mutually support and thrive in the combat space. \nRanger Focus: Utilizing the Bradley attached to you to its fullest potential and Do’s and Do Not’s of maneuvarbility. \n32nd Focus: Practice directly being integrated onto both the Short Ranges of Rangers and crewing practice.', 19, 0, '2021-03-08 07:06:25', '2025-12-17 19:45:27', NULL, '3549257', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (685, 'FTL/2IC Training', '2021-04-12 18:30:00', '2021-04-12 20:00:00', '', '#ecb200', 'Come learn how to lead a fireteam, and how to respond when your fireteam lead gets shot.', 15, 0, '2021-03-09 03:54:42', '2025-12-17 19:45:27', NULL, '3551564', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (686, 'Teaching Ranger NCOs stuff', '2021-03-16 16:00:00', '2021-03-16 18:00:00', '', '#6cba50', 'Teaching Ranger NCOs to teach stuff. This is up solely for scheduling sake. Anyone who was not specifically invited is free to watch, but will immediately be kicked out if you interrupt.', 468, 0, '2021-03-09 19:54:22', '2025-12-17 19:45:27', NULL, '3553333', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (687, 'Ranger FTXs', '2021-03-11 20:00:00', '2021-03-11 21:00:00', 'Training Server - Training Grounds', '#6cba50', 'Pure FTXs and Reps over base concepts and schemes of movement. \nReps going over: Bounding / SBF (Support By Fire)\nAssaulting fixed positions\nEquipment usage (40mm/AT/Mat/MMG)', 19, 0, '2021-03-09 21:43:54', '2025-12-17 19:45:27', NULL, '3553405', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (688, 'Basic Training', '2021-03-16 18:00:00', '2021-03-16 21:30:00', '', '#008ae1', '', 639, 0, '2021-03-10 01:07:02', '2025-12-17 19:45:27', NULL, '3553729', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (689, 'Basic Training', '2021-03-25 18:00:00', '2021-03-25 21:30:00', '', '#008ae1', '', 639, 0, '2021-03-10 20:47:54', '2025-12-17 19:45:27', NULL, '3555564', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (690, 'Mass Cas Training', '2021-03-23 18:00:00', '2021-03-23 20:00:00', 'Training Server', '#ecb200', 'Come learn how to identify and properly respond to a Mass Cas situation! Will be as realistic as possible, up to and including a squad wipe by 32nd CAS', 1141, 0, '2021-03-11 12:34:57', '2025-12-17 19:45:27', NULL, '3559954', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (691, '[CANCELLED] Operation Battle Axe', '2021-04-18 17:00:00', '2021-04-18 20:00:00', 'Iceberg Gaming Mission Server', '#ecb200', 'CANCELLED \n(See KarlKirbs LOA)\n\n\nEvent Details\n: A side op about a direct action mission against an Eastern European insurgency.\nServer:\n Iceberg Gaming Commuinnty Mission Server\nMap:\n Livonia \n(Contact DLC required)\nModset/Aditional Mods:\n 17th Ranger Battalion Shadow Mod\n\n\n\nYou are tasked with attacking a stronghold occupied by the Free Livonian People\'s Republic (FLPR), a pro-Russian separatist group. \n\nDestroy any and all enemy High Value Targets (HVTs) and supply caches \nas you see them.\n\n\n\nAvailable Assets \n\nWarning:\n Contact DLC is required to participate\n ', 2232, 1, '2021-03-12 15:04:13', '2025-12-17 19:45:27', NULL, '3561928', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (692, 'Marksmanship Quals', '2021-03-13 17:15:00', '2021-03-13 18:00:00', 'Rifle Range', '#ecb200', 'I expect you guys to read the documentation and understand what the Marksman/Sharpshooter qualifications entail, as I will not be going over them', 512, 0, '2021-03-12 17:20:12', '2025-12-17 19:45:27', NULL, '3561995', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (693, 'IDF Training', '2021-03-15 18:00:00', '2021-03-15 20:00:00', 'Training Server - Airfield', '#d89332', 'Come learn how to operate and lead a mortar element. This training will cover all you need to know so you look like a total chad when it comes to mortars.\n', 309, 0, '2021-03-13 18:56:04', '2025-12-17 19:45:27', NULL, '3565907', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (694, 'Orientation', '2021-03-13 16:30:00', '2021-03-13 17:00:00', '', '#008ae1', '', 639, 0, '2021-03-13 22:25:25', '2025-12-17 19:45:27', NULL, '3566500', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (695, 'RTO bookwork', '2021-03-18 15:00:00', '2021-03-18 16:30:00', '', '#6cba50', 'The information needed to pass RTO qualifications.', 468, 0, '2021-03-14 05:34:08', '2025-12-17 19:45:27', NULL, '3567535', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (696, 'RTO Qualifications', '2021-03-19 15:00:00', '2021-03-19 17:00:00', '', '#6cba50', 'Individual qualifications for RTO.', 468, 0, '2021-03-14 05:37:34', '2025-12-17 19:45:27', NULL, '3567536', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (697, 'Heavy Weapons Training', '2021-03-29 17:00:00', '2021-03-29 19:00:00', '', '#6cba50', 'Utilizing heavy weapons, including CSWs, and gaining familiarization with enemy weapons.', 468, 0, '2021-03-14 05:48:46', '2025-12-17 19:45:27', NULL, '3567537', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (698, 'No Training Day', '2021-03-23 22:00:00', '2021-03-24 22:00:00', 'ICEBERG ARMA SERVER', '#ecb200', 'Iceberg persistent and new mod pack testing', 644, 0, '2021-03-15 13:45:36', '2025-12-17 19:45:27', NULL, '3571867', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (699, 'Forward Observer', '2021-03-29 18:00:00', '2021-03-29 20:30:00', '', '#a250e8', 'Learn how to direct and adjust artillery. \nIDF ribbon is required.', NULL, 0, '2021-03-15 19:20:07', '2025-12-17 19:45:27', NULL, '3572241', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (700, 'Basic Training', '2021-03-30 18:00:00', '2021-03-30 21:30:00', '', '#008ae1', '', 639, 0, '2021-03-16 20:48:23', '2025-12-17 19:45:27', NULL, '3575725', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (701, 'Air Crew Training', '2021-03-18 18:00:00', '2021-03-18 19:00:00', '', '#d89332', '', 729, 0, '2021-03-17 01:23:02', '2025-12-17 19:45:27', NULL, '3577180', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (702, 'Air Crew Qual', '2021-03-19 18:30:00', '2021-03-19 19:30:00', '', '#d89332', '', 729, 0, '2021-03-17 01:23:58', '2025-12-17 19:45:27', NULL, '3577181', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (703, 'Operation Champion', '2021-04-11 18:00:00', '2021-04-11 20:00:00', '', '#30a68f', 'Event Details: It\'s fall of 2010, almost a year after the September crisis. U.S. forces are still attempting to stabilize Chernarus and are fighting the Chedaki. Support friendly forces by delivering supplies. Make sure to download Boxloader. \nServer: Iceberg Gaming Mission Server\nMap: Chernaurus \nMods to/additional Mods: Iceberg Mod Pack, Boxloader ViV loading, Boxloader Ace Compat \n\n\n\n\n\n\n\n', 322, 0, '2021-03-17 13:38:18', '2025-12-17 19:45:27', NULL, '3578388', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (704, 'IFV Training', '2021-03-31 18:00:00', '2021-03-31 19:30:00', 'Training Server ', '#d89332', 'Learn how to operate and then utilize the Bradley in a FTX within convoy, city and rural environments. ', 639, 0, '2021-03-19 04:33:40', '2025-12-17 19:45:27', NULL, '3581429', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (705, '17th Round Table', '2021-03-28 14:00:00', '2021-03-28 17:00:00', '', '#ecb200', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/31a767aa-f57a-45e5-8929-d25183bce25e/forums/1863448825', 644, 0, '2021-03-19 08:52:15', '2025-12-17 19:45:27', NULL, '3581895', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (706, 'Alien Vs Predator Op - Facility Omega', '2021-04-18 14:00:00', '2021-04-19 05:30:00', 'Iceberg Gaming Server', '#30a68f', 'Colonial Marines have intercepted a private distress signal coming from a secret Weyland Yutani Facility. This beacon has been transmitting for the last 2 weeks and we need to go and secure this facility for further investigation.\n"Game over man, its game over"\nFor this Op you will only need to add the 4 listed mods below to your regular 17th modpack. Hope to see you all there.\nMAP = VR\n\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1876589191&searchtext=jm+structures\n\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2107714130\n\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1450865805\n\n\n', 174, 0, '2021-03-19 17:56:20', '2025-12-17 19:45:27', NULL, '3582734', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (707, 'SCP: Operation Black Skys', '2021-04-25 16:30:00', '2021-04-25 18:30:00', 'Iceberg Mission Server', '#30a68f', 'Contact with the SCP Foundation has been made after an encounter with them during Operation Caldera. After speaking with the Foundation operative it was discovered that Operation Caldera was orchestrated by the Chaos Insurgency with NATO local command having been one of their agents. Due to this the Foundation has tasked you with defending Site \nredacted \n from the oncoming Chaos Insurgency assault. Stay alive and prove your worth to the Foundation! \n\nFoundation personal only: \nRedacted\n SKYS \nREDACTED\n KETER \nREDACTED\n ALL COST! DR. \nREDACTED\n breach \nREDACTED\n, recruit \nREDACTED\n advised.\n\nMap: Bystrica\n\nRequired mods: \nOfficial 17th Modlist+\n\n \n\n \n\n\n\n\n\n\n2 Mods are from the old 17th mod pack.\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=823636749\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1974559189\n\nhttps://steamcommunity.com/workshop/filedetails/?id=1383903166\nhttps://steamcommunity.com/workshop/filedetails/?id=2262255106\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2311082363', 639, 0, '2021-03-19 22:52:16', '2025-12-17 19:45:27', NULL, '3583262', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (708, 'Communications Training', '2021-03-25 18:00:00', '2021-03-25 19:30:00', 'The. Training. Server. ', '#6cba50', 'Will discuss communications and radio usage in a fireteam / squad, practice the 3 D\'s in a combat exercise, and just generally get better at communication among our team mates.', 501, 0, '2021-03-22 00:31:18', '2025-12-17 19:45:27', NULL, '3587850', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (709, 'RTO Bookwork', '2021-04-06 18:00:00', '2021-04-06 19:00:00', '17th BN Training Server', '#a250e8', 'Event Details: RTO Bookwork\nServer: 17th Ranger Battalion Training Server\r\r\nModset/Aditional Mods: 17th BN Shadow Mod\n\nManaging radio comms is vital when its coming in from 4 different directions! We will go over etiquette, pro words, what/when/how/why etc. \n\nThis is part 1 of 2 of the RTO qualification.', 501, 0, '2021-03-22 00:34:51', '2025-12-17 19:45:27', NULL, '3587852', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (710, 'RTO Qualification', '2021-04-07 18:20:00', '2021-04-07 19:30:00', '17th BN Training Server', '#a250e8', 'RTO Qual. \n\nQuestions should be answered before this qualification via study of the RTO document, or direct message/discussion. ', 501, 0, '2021-03-22 00:36:25', '2025-12-17 19:45:27', NULL, '3587853', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (711, 'Combat Diver School', '2021-04-01 19:00:00', '2021-04-01 20:30:00', '', '#a250e8', 'A lot of you have asked for it and we finally have a campaign map where diving is plausible, especially for RRC.', 468, 0, '2021-03-22 05:29:14', '2025-12-17 19:45:27', NULL, '3588075', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (712, 'Copilot Training Part 1', '2021-03-30 18:00:00', '2021-03-30 19:00:00', '17th Ranger Battalion Training Range', '#a250e8', 'In copilot training part 1 you will be trained in the following:\nRadio communications air-to-ground and air-to-air,\nReading and charting coordinates,\nBasic map reading\n', 729, 0, '2021-03-24 11:28:32', '2025-12-17 19:45:27', NULL, '3604056', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (713, 'Copilot Training Part 2', '2021-04-01 18:00:00', '2021-04-01 19:00:00', '17th Ranger Battalion Training Range', '#a250e8', 'In copilot training part 2 you will be trained on the following:\nAirborne observation / recon,\nWeapon system familiarization and deployment,\nOrdnance refit and rearm\n', 729, 0, '2021-03-24 11:34:47', '2025-12-17 19:45:27', NULL, '3604061', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (714, 'Copilot Qual', '2021-04-02 18:00:00', '2021-04-02 19:00:00', '17th Ranger Battalion Training Range', '#a250e8', 'During the copilot qualification you will be tested on your ability to perform duties a Copilot.', 729, 0, '2021-03-24 11:41:11', '2025-12-17 19:45:27', NULL, '3604063', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (715, 'Ranger Training', '2021-03-31 17:00:00', '2021-03-31 19:00:00', 'Training Server', '#6cba50', 'Topics TBD', 19, 0, '2021-03-24 11:47:54', '2025-12-17 19:45:27', NULL, '3604146', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (716, 'Pathfinder Bookwork', '2021-04-02 15:00:00', '2021-04-02 17:00:00', 'Training Server, Deniland.', '#a250e8', 'Pathfinder Bookwork so you learn the basics of info gathering for RRC. Those who have submitted a training request but are unable to attend this date, reach out to me and we\'ll see about doing a one on one.', 468, 0, '2021-03-25 06:25:46', '2025-12-17 19:45:27', NULL, '3618353', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (717, 'The Iceberg/17th Photo shoot', '2021-03-28 17:00:00', '2021-03-28 18:00:00', 'Training Server', '#FFFFFF', 'Some of the best videos come from actual ops, But for our newest advertisement video we need that little something extra, even if it is a little staged. I\'ve got some video shots in my head but I need some help to get them produced. \n\nThis will be well organized in that I will know exactly what I will need when I will need it, and I will need as many as possible from both the 32nd and the 7th. \n\n32nd is gonna need to be ready with tanks choppers and planes.\n\n7th is gonna need to be ready with their 17th kits good to go and get each other to bring as many people as possible for a specific "line fire shot" and a Battalion photo. \n\nAlso I will be looking for someone to help me do some video shoot as well, So as to keep this as short and sweet as possible. \n\nI will also need someone in zeus.\nLet\'s get after it.\n\nHere is what I am on the hunt for specifically on this day. This will most likely be added onto but you all at least have an idea. All these are considered "Clips" in that none of them need to be more than 5-10 seconds long.\n\n\nFly\n -spooling up w/ member "mount up signal" - mid flight camera work (airplane) - chopper dumping rockets - Dropping off box humvee via lines - C130 drop - static line jump\r\n\r\nDrive \n- needs: Tanks rolling - light vehicles rolling- some firing shots - Convoy - Enegaged Convoy \r\n\r\nTrain\n - needs: CQB shoot house - launcher training - classroom work - People standing around a chopper\r\n\r\nScout\n: - needs: night time halo/team drop in - Raven footage - sniper team clip - something getting splashed (all at night) - Throwing raven - \r\n\r\nFight \n- needs: (Wants) 32nd and rangers in a line firing down range (a tank or two along with some light vics would not go amiss here Maybe a chopper) \r\n assorted Arma clips\n\nIF YOU HAVE AN IDEA OR A \'SHOT\' IN YOUR HEAD LET ME KNOW AND WE WILL MAKE IT HAPPEN!!', 761, 0, '2021-03-25 11:46:02', '2025-12-17 19:45:27', NULL, '3619523', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (718, 'Ranger NCO Meeting', '2021-03-27 17:00:00', '2021-03-27 17:45:00', 'Teamspeak -> Ranger NCO Club', '#a250e8', '\n \nPossibly the last NCO meeting of Pop\'s \nreign of incompetence\n Platoon Leading, tune in on SUNDAY, SUNDAY, SUNDAY to see the results.', 19, 0, '2021-03-26 05:20:26', '2025-12-17 19:45:27', NULL, '3626844', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (719, 'Ranger Training', '2021-04-08 18:00:00', '2021-04-08 20:00:00', 'Southern Air Field', '#6cba50', 'Convoy training!\nLets get some practice in driving around, shooting stuff from vehicles.', 483, 0, '2021-03-27 15:57:00', '2025-12-17 19:45:27', NULL, '3635405', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (720, 'Teaching Ranger NCOs stuff', '2021-03-30 18:00:00', '2021-03-30 20:00:00', '', '#6cba50', 'Certifying two particular Ranger NCOs in AIT, this is on the calendar solely for scheduling purposes. Other people are free to attend, but disruption will result in automatic removal.', 468, 0, '2021-03-29 01:26:12', '2025-12-17 19:45:27', NULL, '3643450', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (721, 'Pathfinder Qualifications', '2021-04-03 13:00:00', '2021-04-03 15:00:00', 'Private Ops Server', '#a250e8', 'Individual Pathfinder qualifications. Prior attendance of a Pathfinder bookwork is required.\n\n\nAttendance is limited to prevent ALIVE spawning errors. Those who are put on the waitlist for this qualification will have priority for the next one.\n', 468, 0, '2021-03-29 03:56:13', '2025-12-17 19:45:27', NULL, '3643622', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (722, 'Fire Team Training - get a taste of your new lighter kits', '2021-04-02 19:00:00', '2021-04-02 21:00:00', 'Training field', '#6cba50', 'Fire Team movement, buddy pairs, communication, MOUT. \nGet a feel for the new kits in a combat environment and practice, because drills are fun.', 483, 0, '2021-03-29 16:04:30', '2025-12-17 19:45:27', NULL, '3646347', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (723, 'Forward Observer Qualification', '2021-04-05 18:00:00', '2021-04-05 20:30:00', '', '#a250e8', 'Event Details: Qualification for Forward Observer, bookwork is required.\r\nServer: 17th Ranger Battalion Training Server\r\r\nModset/Aditional Mods: 17th BN Shadow Mod\r\n', NULL, 0, '2021-03-30 01:30:06', '2025-12-17 19:45:27', NULL, '3649179', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (724, 'SCP OP Burned Skies', '2021-05-09 16:30:00', '2021-05-09 19:30:00', 'Iceberg Side Ops server', '#30a68f', '15 People is the limit first come first server.\nMap:Chernarus\n\nFUBAR are not appropriate words to describe what happen in the defense of site \nREDACTED \n. Clearly not the fault of the new Foundation recruits from the 17th; they regardless have been tasked by the Foundation with exploring the wreckage of the two Foundation choppers which went down on exfil. Last call in was "SCP\'s in the chopper" before crash landing. We\'ve heard some coms from people on the helicopters that went down in short bursts however it seems another freq is overriding ours. Find out what got into those helicopters and what or who is overriding our radio channels. \n\nMod list may change in the next day or two\n\nRequired mods: \nOfficial 17th Modlist+\n\n \n\n \n\n\n\n\n\n\nCBRN suits are required with a gas mask. You\'re going into a highly...."active" area. 17th Standard weapons are allowed + the SCAR. 17TH Rules are in place, don\'t respawn, listen to your FTL or SQ etc etc. ', 639, 0, '2021-04-01 10:11:35', '2025-12-17 19:45:27', NULL, '3661369', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (725, 'SCP OP Bird of Hermes', '2021-05-23 16:30:00', '2021-05-23 19:30:00', 'Iceberg Side Ops server', '#30a68f', 'Required mods: \nOfficial 17th Modlist+\n\n \n\n \n\n\n\n\n\n\n\n\n\n17th Rules the exception being load out is limited to what is available in the arsenal. \n', 639, 0, '2021-04-01 10:15:17', '2025-12-17 19:45:27', NULL, '3661372', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (726, '[RESCHEDULED] SCP OP', '2021-06-06 16:30:00', '2021-06-06 19:30:00', '', '#FFFFFF', 'Place holder. To be decided based on last op. ', 639, 0, '2021-04-01 10:19:38', '2025-12-17 19:45:27', NULL, '3661374', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (727, '[Resheduled] SCP Op Meat Grinder', '2021-06-20 16:30:00', '2021-06-20 19:30:00', '', '#ecb200', '', 639, 0, '2021-04-01 10:25:11', '2025-12-17 19:45:27', NULL, '3661377', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (728, 'AIT 1 Training', '2021-04-14 18:00:00', '2021-04-14 20:00:00', 'Training Range', '#6cba50', 'AIT Training', 483, 0, '2021-04-02 18:40:38', '2025-12-17 19:45:27', NULL, '3668073', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (729, 'AIT 3 Training', '2021-04-28 18:00:00', '2021-04-28 20:00:00', 'Training Range', '#6cba50', 'AIT 3', 483, 0, '2021-04-02 18:43:04', '2025-12-17 19:45:27', NULL, '3668075', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (730, 'AIT 4 Training', '2021-05-05 18:00:00', '2021-05-05 20:00:00', 'Training Range', '#6cba50', 'AIT 4', 483, 0, '2021-04-02 18:43:56', '2025-12-17 19:45:27', NULL, '3668076', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (731, 'Up and coming NCO training', '2021-04-07 17:00:00', '2021-04-07 18:00:00', '17th Training server', '#6cba50', 'I will break down some tips and tricks to help out NCOs as well as those that want a chance at trying it. Anyone is welcome new and old. ', 485, 0, '2021-04-04 01:48:45', '2025-12-17 19:45:27', NULL, '3674262', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (732, '[Rescheduled] Mech Battle PvP', '2021-04-22 18:00:00', '2021-04-22 20:00:00', '', '#ecb200', 'Event Details: 5v5 Mechs on Zargabad\nServer: Iceberg Community Server\nMods: Iceberg Shadow Mod ', 322, 0, '2021-04-04 02:08:17', '2025-12-17 19:45:27', NULL, '3674268', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (733, 'The final shoot', '2021-04-05 18:00:00', '2021-04-05 21:00:00', 'Training Server', '#FFFFFF', '3-5 clips of Light recon\nA-10 footage\nEnd scene group photo would be brilliant. \n\nObviously forward Observer training > This but do what you want.', 761, 0, '2021-04-04 14:18:00', '2025-12-17 19:45:27', NULL, '3675473', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (734, 'RRC Operation', '2021-04-07 18:00:00', '2021-04-07 20:00:00', '', '#df5353', '', 644, 0, '2021-04-04 20:33:14', '2025-12-17 19:45:27', NULL, '3676806', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (735, 'ALIVE BOOKWORK WIT KEN', '2021-05-02 14:30:00', '2021-05-02 16:30:00', '', '#FFFFFF', 'we all gonna screen share if we can and go throught the alive modules and set shit up and even genearte an alive template to use for further mission creating.\nwe will start with making a basic alive insurgency style mission and then move on from there. should be good and informative\n\n\nLIKE ALWAYS POST ON THIS EVENT topics of discussion and what not\n', 43, 0, '2021-04-05 00:15:18', '2025-12-17 19:45:27', NULL, '3677402', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (736, 'Ranger Training - Raids', '2021-04-09 16:00:00', '2021-04-09 17:30:00', 'Training Server - Training Grounds', '#6cba50', 'Going over Raid tactics - will lead into Echo Training for FTXs.\nMoving quickly, maintaining aggression - getting down and dirty in buildings.', 19, 0, '2021-04-05 03:57:39', '2025-12-17 19:45:27', NULL, '3677701', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (737, 'Ranger FTX’s', '2021-04-06 16:00:00', '2021-04-06 18:00:00', 'Training Server - Training Grounds', '#6cba50', '', 19, 0, '2021-04-05 16:42:19', '2025-12-17 19:45:27', NULL, '3679349', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (738, '[CANCELLED] Echo Training', '2021-04-23 19:00:00', '2021-04-23 21:00:00', '17th BN Training Server', '#d89332', '', NULL, 1, '2021-04-05 20:48:48', '2025-12-17 19:45:27', NULL, '3680615', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (739, 'Echo Training', '2021-05-07 18:00:00', '2021-05-07 20:00:00', '17th BN Training Server', '#d89332', '', NULL, 0, '2021-04-05 20:48:48', '2025-12-17 19:45:27', NULL, '3680616', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (740, '[Cancelled] Echo Training', '2021-04-30 19:00:00', '2021-04-30 21:00:00', '17th BN Training Server', '#d89332', '', NULL, 1, '2021-04-05 20:48:48', '2025-12-17 19:45:27', NULL, '3680617', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (741, 'Echo Training', '2021-05-21 19:00:00', '2021-05-21 21:00:00', '17th BN Training Server', '#d89332', '', NULL, 0, '2021-04-05 20:48:48', '2025-12-17 19:45:27', NULL, '3680618', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (742, 'Echo Training', '2021-06-18 19:00:00', '2021-06-18 21:00:00', '17th BN Training Server', '#d89332', '', NULL, 0, '2021-04-05 20:48:48', '2025-12-17 19:45:27', NULL, '3680622', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (743, '[CANCELLED] Echo Training', '2021-06-25 19:00:00', '2021-06-25 21:00:00', '17th BN Training Server', '#d89332', '', NULL, 1, '2021-04-05 20:48:48', '2025-12-17 19:45:27', NULL, '3680623', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (744, 'Echo Training', '2021-06-11 18:00:00', '2021-06-11 21:00:00', '17th BN Training Server', '#ecb200', '', NULL, 0, '2021-04-05 20:48:48', '2025-12-17 19:45:27', NULL, '3680624', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (745, 'Echo Training- Mechanized Support', '2021-07-02 19:00:00', '2021-07-02 21:00:00', '17th BN Training Server', '#ecb200', '', NULL, 0, '2021-04-05 20:48:48', '2025-12-17 19:45:27', NULL, '3680625', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (746, 'Echo Training', '2021-07-09 19:00:00', '2021-07-09 21:00:00', '17th BN Training Server', '#d89332', '', NULL, 0, '2021-04-05 20:48:48', '2025-12-17 19:45:27', NULL, '3680626', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (747, 'IDF Training', '2021-04-19 18:30:00', '2021-04-19 20:30:00', '', '#d89332', 'Meeting Location: Northern Airfield, Training Server\nInfo: Depending on number of attendees and who/if any have completed training before, this may be used as a practice instead of training on how to do the math.', 309, 0, '2021-04-06 19:23:33', '2025-12-17 19:45:27', NULL, '3684754', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (748, 'Ground Vehicle Crew Familiarization', '2021-04-08 17:00:00', '2021-04-08 19:00:00', 'Training Server', '#d89332', 'Echo Company Ground Vehicle Crew Familiarization, learn the in and outs of the vehicles Echo Company uses and their crew positions. ', 639, 0, '2021-04-06 23:05:43', '2025-12-17 19:45:27', NULL, '3685353', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (749, 'Marksmanship Quals', '2021-04-13 18:00:00', '2021-04-13 19:00:00', 'Rifle Range', '#a250e8', 'I expect anyone whose attend to have already read the requirements for both tests and be ready to go when it\'s go time. Other then that, feel free to practice but I do have a strict 1 hr test time', 512, 0, '2021-04-08 01:15:01', '2025-12-17 19:45:27', NULL, '3689769', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (750, 'Flight Training - MH-6', '2021-04-13 18:00:00', '2021-04-13 20:00:00', 'Training Server - Northern Airbase', '#d89332', 'Going over flight characteristics of the MH-6Ms', 19, 0, '2021-04-08 03:31:25', '2025-12-17 19:45:27', NULL, '3689962', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (751, 'Echo Ground Crew Familiarization', '2021-04-20 18:00:00', '2021-04-20 19:30:00', '', '#ecb200', 'An overview of Echo Company Ground Assets and your role as a crewman', 2231, 0, '2021-04-08 16:02:43', '2025-12-17 19:45:28', NULL, '3691364', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (752, 'Alpha/Echo Coop and CQB FTX', '2021-04-15 18:30:00', '2021-04-15 20:30:00', 'Training Server - Southern Airfield', '#ecb200', 'We\'ll do some short conversations on what Alpha and Echo expect of each other when doing joint pushes and some CQB theory work. Then, we\'ll clear some towns and go over goods and bads of our implementations', 1141, 0, '2021-04-11 03:15:24', '2025-12-17 19:45:28', NULL, '3699422', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (753, '[Cancelled]Pathfinder Bookwork', '2021-04-17 13:00:00', '2021-04-17 14:45:00', 'TRAINING SERVER', '#ecb200', 'LEARN HOW TO BE A PATHFINDER - CORE VALUES OF RRC AND ALL THAT GOOD STUFF', 468, 1, '2021-04-12 04:35:54', '2025-12-17 19:45:28', NULL, '3701861', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (754, '[Rescheduled to 4-22]Pathfinder Qualifications', '2021-04-22 15:00:00', '2021-04-22 18:00:00', 'Private Operations Server', '#a250e8', 'A prior Pathfinder bookwork is required. Attendance is limited to avoid hitting the ALIVE cap whilst maintaining reasonable frames. Those who \nwere waitlisted\n from the prior qual have priority, followed by \npeople who attempted but did not pass\n, after that it is first-come, first-serve. A second qual will be hosted this week to allocate those who could not make it.\n\nIf you sign up and get priority over the rest, and then don\'t show up, Imma yeet you to the bottom of priority. If RL stuff happens just hit decline on the event or let me know before the event starts.', 468, 0, '2021-04-12 04:39:39', '2025-12-17 19:45:28', NULL, '3701863', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (755, '[Cancelled]Pathfinder Quals', '2021-04-23 13:00:00', '2021-04-23 16:00:00', 'Private Operations Server', '#a250e8', 'A prior Pathfinder bookwork is required. Attendance is limited to avoid hitting the ALIVE cap whilst maintaining reasonable frames. Those who \nwere waitlisted\n from the prior qual have priority, followed by \npeople who attempted but did not pass\n, after that it is first-come, first-serve. A second qual will be hosted this week to allocate those who could not make it.\n\nIf you sign up and get priority over the rest, then don\'t show up, Imma yeet you to the bottom of priority. If RL stuff happens just hit decline on the event or let me know before the event starts', 468, 1, '2021-04-12 04:41:55', '2025-12-17 19:45:28', NULL, '3701864', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (756, 'Land Navigation Training', '2021-04-26 18:00:00', '2021-04-27 08:30:00', 'Training Server', '#6cba50', '', 38, 0, '2021-04-13 03:18:05', '2025-12-17 19:45:28', NULL, '3704795', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (757, 'SCP OP test', '2021-04-21 18:00:00', '2021-04-21 19:00:00', 'Iceberg Arma Server', '#FFFFFF', 'This is only to test modules, this is not an OP unless invited there is no reason to attend. \n\nMap: Bystrica\n\nRequired mods: \nOfficial 17th Modlist+\n\n \n\n \n\n\n\n\n', 639, 0, '2021-04-14 15:27:42', '2025-12-17 19:45:28', NULL, '3708109', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (758, 'Aircrew Training', '2021-04-19 18:00:00', '2021-04-19 20:00:00', '17th Ranger Battalion Training Range', '#d89332', 'Come learn how to crew rotary aircraft. In this training you will learn the following.\nHow to operate in the crew chief position\nHow to operate in the door gunner position\nRepair and rearm aircraft\nFlight medic\nArea security\n', 729, 0, '2021-04-16 00:56:51', '2025-12-17 19:45:28', NULL, '3713700', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (759, 'Aircrew Qual', '2021-04-22 18:00:00', '2021-04-22 20:00:00', '17th Ranger Battalion Training Range', '#d89332', 'You will be tested on the following:\nHow to operate in the crew chief position\r\nHow to operate in the door gunner position\r\nRepair and rearm aircraft\r\nFlight medic\r\nArea security', 729, 0, '2021-04-16 00:59:27', '2025-12-17 19:45:28', NULL, '3713701', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (760, 'Tyrone Event- No other trainings', '2021-05-14 07:30:00', '2021-05-14 08:30:00', '', '#ecb200', '', 644, 0, '2021-04-16 12:21:08', '2025-12-17 19:45:28', NULL, '3716035', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (761, 'OP Razorback', '2021-05-14 18:15:00', '2021-05-14 19:15:00', '', '#ecb200', '17th gonna ride out to cherno. We are conducting a night jump to raise hell and praise Dale on Green Mountain. \nEnemy: Russia Gang\nTime of Day: 0100\nKnown Enemy assests: APCs,IFVs, and some modernized T80s and T90s\nSpecial equipment: AH1Z COBRA secured by Ryrone for echos Use aswell as a Armed blackfish. \nMission for Raptor: put eyes on predetermined DZ via Drone or on foot\nTHIS OP WILL BE CONDUCTED USING THE 17TH RANGER BN SHADOW MOD AND 17TH PRIVATE OPS SERVER.', 43, 0, '2021-04-16 12:30:28', '2025-12-17 19:45:28', NULL, '3716041', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (762, 'Pathfinder Bookwork', '2021-04-19 15:00:00', '2021-04-19 17:00:00', '', '#a250e8', 'Rescheduled pathfinder bookwork meant to take place on 4-17. \n\nLearn to be a basic member for RRC; how to conduct recon on the Raven drone and additional info needed to be a RRC member.', 468, 0, '2021-04-17 18:23:22', '2025-12-17 19:45:28', NULL, '3719118', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (763, 'Pathfinder Qualifications', '2021-04-26 15:00:00', '2021-04-26 18:00:00', 'Private Ops Server', '#a250e8', 'A prior Pathfinder bookwork is required. Attendance is limited to avoid hitting the ALIVE cap whilst maintaining reasonable frames. Those who \nwere waitlisted\n from the prior qual have priority, followed by \npeople who attempted but did not pass\n, after that it is first-come, first-serve. A second qual will be hosted this week to allocate those who could not make it.\n\nIf you sign up and get priority over the rest, then don\'t show up, Imma yeet you to the bottom of priority. If RL stuff happens just hit decline on the event or let me know before the event starts', 468, 0, '2021-04-17 18:24:58', '2025-12-17 19:45:28', NULL, '3719122', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (764, 'Alpha Training', '2021-04-23 16:00:00', '2021-04-23 19:00:00', 'Training Server - Training Grounds', '#6cba50', 'Topics TBD', 19, 0, '2021-04-18 06:11:21', '2025-12-17 19:45:28', NULL, '3720507', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (765, 'Alpha Field Day', '2021-04-22 15:00:00', '2021-04-22 21:00:00', 'Training Server', '#6cba50', 'Semi all day event, you guys want knowledge come in and ask, comment on this event what you want to run.\nOpen door event for those weird topics.', 19, 0, '2021-04-18 06:13:06', '2025-12-17 19:45:28', NULL, '3720508', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (766, 'AIT 2 Training', '2021-05-12 18:00:00', '2021-05-12 20:00:00', 'Training grounds', '#6cba50', 'AIT 2 training. You should read the document to have a basic understanding of what we will be doing. Review before each training if possible.', 483, 0, '2021-04-18 14:45:16', '2025-12-17 19:45:28', NULL, '3721383', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (767, '[Not Official] Operation Black Nest', '2021-05-02 17:00:00', '2021-05-02 20:00:00', '', '#30a68f', 'Disclaimer: There is enough slots for a squad and potentially a couple more slots. This is my 1st op so I wanted to limit the numbers. \nALSO THIS EVENT WILL NOT HAVE THE WAITLIST, THIS IS JUST SO YOU GUYS ARE AWARE. THE MAIN EVENT IS ON THE ICEBERG CALENDAR, SO SIGN UP THERE.\nEvent Details:\n Welcome to PMC Group Shadow Company. We have been tasked with aiding the local government to supplement their numbers, against Russian occupation. This is to be considered a Classified contract, so we will given very few assets going into the country. We will need to take what we can get. Our main goal is to push into the Russian supply airfield and neutralize a strong portion of their logistics in the area. This is will have a secondary goal of giving us a FOB of our own, other than the Chernarus carrier. Further details will be discussed during initial briefing\nServer:\n Iceberg Gaming\nMap:\n Winter Chernarus (should already have it with CUP)\nModset/Additional Mods:\n Most of these you will already have downloaded, if you\'ve been to any other spook op. Horror Mod might need to be downloaded\n\n\n\n\n\n\n\n\n\n\n\n\n\n', 512, 0, '2021-04-18 22:02:47', '2025-12-17 19:45:28', NULL, '3722476', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (768, 'Copilot Training Part 1', '2021-04-26 18:00:00', '2021-04-26 20:00:00', '17th RB Training Range', '#d89332', 'During this training you will be trained on:\r\n\rGeneral Flight Practices\r\n\rLong Range Radio Operations \r\n\rGeneral Map Reading', 729, 0, '2021-04-19 17:48:28', '2025-12-17 19:45:28', NULL, '3724124', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (769, 'Copilot Training Part 2', '2021-04-27 18:00:00', '2021-04-27 20:00:00', '17th RB Training Range', '#d89332', 'During this training you will be trained on:\r\nRefit/Rearm\r\nOptics\r\nReconnaissance\r\nWeapons System Familiarization/use ', 729, 0, '2021-04-19 17:51:10', '2025-12-17 19:45:28', NULL, '3724127', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (770, 'Copilot Qual', '2021-04-29 18:00:00', '2021-04-29 20:00:00', '17th RB Training Range', '#d89332', 'during this qualification you will be tested on the following:\r\nGeneral Flight Practices\r\nLong Range Radio Operations \r\nGeneral Map Reading\r\nRefit/Rearm\r\nOptics\r\nReconnaissance\r\nWeapons System Familiarization/use \r\n\r\n', 729, 0, '2021-04-19 17:53:24', '2025-12-17 19:45:28', NULL, '3724559', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (771, 'Master Free Fall + RSLC', '2021-04-29 18:00:00', '2021-04-29 19:30:00', 'Training Server', '#a250e8', 'Master Free Fall then RSLC for those who want to lead.', 468, 0, '2021-04-19 21:21:50', '2025-12-17 19:45:28', NULL, '3726420', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (772, 'Advanced UAV', '2021-04-30 18:00:00', '2021-04-30 19:00:00', 'Training Server', '#a250e8', 'RRC\'s Advanced UAV course.', 468, 0, '2021-04-19 21:23:10', '2025-12-17 19:45:28', NULL, '3726421', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (773, 'Basic Training', '2021-04-27 18:00:00', '2021-04-27 21:00:00', 'Training Grounds', '#008ae1', 'Learn the basics.', 850, 0, '2021-04-20 21:28:30', '2025-12-17 19:45:28', NULL, '3729399', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (774, 'Gillette\'s Weapons squad Training', '2021-04-21 18:30:00', '2021-04-21 20:30:00', '17th Training server', '#6cba50', 'Hey I want to run some stuff that Gillette does when it comes to heavy weapons teams in a squad format. Will cover how to implement them in base defense and fight on the move with big guns.', 485, 0, '2021-04-20 23:23:44', '2025-12-17 19:45:28', NULL, '3730212', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (775, 'Basic Training', '2021-04-22 12:00:00', '2021-04-22 15:00:00', '', '#008ae1', '', 639, 0, '2021-04-21 08:15:27', '2025-12-17 19:45:28', NULL, '3731062', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (776, '[Cancelled] Convoy Training', '2021-04-27 17:30:00', '2021-04-27 19:00:00', 'Training Server', '#ecb200', 'I will be going through how we operate in a convoy. Gonna do some quick book lernin\' followed by staging, react to contact, react to IED and react to downed vehicle. This is technically an Alpha training but of course Echo boys are encouraged to lend their bodies as well.\nCancelled. We just ran 2 convoy trainings and a convoy op saturday. Wanted to open up the slot for another training.', 761, 1, '2021-04-21 22:12:10', '2025-12-17 19:45:28', NULL, '3733455', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (777, 'RASP', '2021-05-01 18:00:00', '2021-05-01 21:00:00', '', '#ecb200', 'Additional Map Mod For This Operation: \n\r\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=908733096\nsteam://url/CommunityFilePage/908733096', 644, 0, '2021-04-25 22:48:47', '2025-12-17 19:45:28', NULL, '3746248', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (778, '[TEST] Operation Black Nest', '2021-04-30 17:00:00', '2021-04-30 18:00:00', 'Iceberg Side Op Server', '#30a68f', 'Do not show up unless told otherwise, please and thank you', 512, 0, '2021-04-27 10:42:53', '2025-12-17 19:45:28', NULL, '3751550', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (779, 'Anti Armor Training', '2021-05-03 18:00:00', '2021-05-03 19:30:00', '', '#a250e8', 'One of two needed for the Heavy Weapons Ribbon. Learn the ins and outs of enemy armor so you know how to kill them effectively.', 468, 0, '2021-04-28 02:32:12', '2025-12-17 19:45:28', NULL, '3757118', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (780, 'Pathfinder Qualifications', '2021-05-09 18:30:00', '2021-05-09 21:30:00', 'Private Ops Server', '#a250e8', 'Priority for ClassicKirbs and Randy. ', 468, 0, '2021-04-28 02:34:14', '2025-12-17 19:45:28', NULL, '3757175', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (781, 'Movement Techniques and Danger Areas', '2021-05-06 18:00:00', '2021-05-06 20:00:00', 'Training Server - Training Range', '#6cba50', 'Read the document\nWe will work on Fire Team (and squad if enough people) formations, over watch, bounding over watch, and road crossings, just like in the document.', 483, 0, '2021-04-28 21:19:26', '2025-12-17 19:45:28', NULL, '3760130', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (782, 'BD1A Training', '2021-05-04 17:30:00', '2021-05-04 20:00:00', '', '#6cba50', 'Learn the ways of the Battle Drill 1 Alpha. For this training to be effective there needs to be a squad (9 people - a medic). If we only have 7 or 8 that\'s fine, but anything below that, the training will be ineffective to teach.\n\nMay the 4th be with you!', 512, 0, '2021-04-29 10:22:05', '2025-12-17 19:45:28', NULL, '3761843', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (783, 'Command Meeting', '2021-05-03 17:00:00', '2021-05-03 18:00:00', '', '#ecb200', '', 644, 0, '2021-05-01 00:35:15', '2025-12-17 19:45:28', NULL, '3767471', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (784, '[Rescheduled] Side Op: Patrol', '2021-05-06 18:00:00', '2021-05-06 20:00:00', '', '#ecb200', 'Event Details:\n Patrol the OBJs marked on the map and look for any insurgents. \nMap:\n Lythium FFA\nServer:\n Iceberg Side Ops Server\nMods:\n Iceberg Shadowmod and Lythium FFA\n\n\n\n\n\n\n\n', 322, 0, '2021-05-01 15:06:04', '2025-12-17 19:45:28', NULL, '3768775', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (785, 'Sniper School', '2021-05-16 18:00:00', '2021-05-16 20:00:00', 'Training Server', '#a250e8', 'RRC\'s Sniper School. No prior knowledge or training is required.', 468, 0, '2021-05-04 19:10:49', '2025-12-17 19:45:28', NULL, '3779779', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (786, 'Jump Master School', '2021-05-11 18:30:00', '2021-05-11 20:00:00', 'Training Server', '#a250e8', 'Learn how to tell people how to jump\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/21612481', NULL, 0, '2021-05-04 20:55:29', '2025-12-17 19:45:28', NULL, '3780093', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (787, 'Echo Ground Crew Familiarization', '2021-05-10 18:00:00', '2021-05-10 19:30:00', '', '#d89332', 'An overview of the assets and duties of Echo Company Ground Crew personnel ', 2231, 0, '2021-05-04 22:22:02', '2025-12-17 19:45:28', NULL, '3780558', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (788, 'Emplacing and executing ambushes.', '2021-05-07 18:00:00', '2021-05-07 20:00:00', '', '#ecb200', '', 644, 0, '2021-05-05 11:28:11', '2025-12-17 19:45:28', NULL, '3781975', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (789, '[Not Official] Operation Medicus Contritum (Pt. 1)', '2021-05-30 16:30:00', '2021-05-30 20:00:00', 'Iceberg Side Op Server', '#30a68f', 'Disclaimer:\n The slotting is strict, so once the slots are full that will be it. If slots aren\'t full then it\'s gonna be 1st come 1st serve. Loadouts will be strict, so there will be a very limited arsenal. So leadership/medics/engineers/marksman will be chosen before loading in.\n\n\nEvent Detail:\n After the recent events from the assault on the Russian supply base, we have been authorized to use it as a FOB. We\'re getting equipment shipped in as we speak. Unfortunately we had a bigger problem than the Russians. We are being asked to find a doctor who is suspected to have some intel on these new "beings" the team encountered last. Our scientists have made a partial "cure" to this unknown virus. The doctor in question is said to hold a key component to complete the cure. More info will be given at mission brief.\nServer:\n Iceberg Gaming Side Ops\nMap:\n Winter Chernarus (should already have it with CUP)\nModset/Additional Mods:\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2187272188\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1556296528\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2262255106\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1606871585\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=501966277\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1974559189\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=823636749\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2414840966', 512, 0, '2021-05-06 01:17:28', '2025-12-17 19:45:28', NULL, '3785818', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (790, 'CLS Training', '2021-05-08 15:00:00', '2021-05-08 15:30:00', '17th BN Training Server', '#6cba50', '', 539, 0, '2021-05-06 22:51:03', '2025-12-17 19:45:28', NULL, '3789923', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (791, 'Patrol Op', '2021-05-10 18:00:00', '2021-05-10 20:00:00', '', '#30a68f', 'Event Details:\n Patrol the OBJs marked on the map and look for any insurgents. \nMap:\n Lythium FFA\nServer:\n Iceberg Side Ops Server\nMods:\n Iceberg Shadowmod and Lythium FFA\n\n\n\n\n\n\n\n', 322, 0, '2021-05-07 15:40:25', '2025-12-17 19:45:28', NULL, '3792735', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (792, 'Chronicles of Jerome: A SOG story', '2021-05-19 18:30:00', '2021-05-19 20:00:00', '', '#df5353', 'Join Tyrones Uncle.....MSG Jerome. In this 1 off mid week campaign utilizing the SOG dLC', 43, 0, '2021-05-07 17:54:23', '2025-12-17 19:45:28', NULL, '3793156', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (793, 'The Chronicles of Jerome: A SOG Story', '2021-06-02 18:30:00', '2021-06-02 20:00:00', '', '#df5353', '', 43, 0, '2021-05-07 21:00:54', '2025-12-17 19:45:28', NULL, '3793537', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (794, 'The Chronicles of Jerome: A SOG Story', '2021-05-26 18:30:00', '2021-05-26 20:00:00', '', '#df5353', '', 43, 0, '2021-05-07 21:00:54', '2025-12-17 19:45:28', NULL, '3793538', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (795, 'The Chronicles of Jerome: A SOG Story', '2021-06-09 18:30:00', '2021-06-09 20:00:00', '', '#df5353', '', 43, 0, '2021-05-07 21:00:54', '2025-12-17 19:45:28', NULL, '3793539', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (796, 'Abrams Training', '2021-05-17 18:00:00', '2021-05-17 20:00:00', '', '#d89332', 'The M1 Abrams is our main battle tank, and one of the heaviest armor pieces we have at our disposal. Come learn how to use the tank and lay waste to anything short of an enemy MBT.', 309, 0, '2021-05-07 22:51:37', '2025-12-17 19:45:28', NULL, '3793862', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (797, 'Mechanized Badge Qualification', '2021-05-25 18:00:00', '2021-05-25 20:00:00', '', '#d89332', '', NULL, 0, '2021-05-09 02:01:38', '2025-12-17 19:45:28', NULL, '3796195', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (798, '[Canceled] IDF Training', '2021-05-20 18:00:00', '2021-05-20 20:00:00', 'Training Server', '#ecb200', '', 639, 1, '2021-05-09 04:19:16', '2025-12-17 19:45:28', NULL, '3796262', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (799, 'Radio\'s and the 3 D\'s', '2021-05-11 18:30:00', '2021-05-11 20:00:00', 'Training Server', '#a250e8', 'Event Details:\n Setting up radios, using alternate channels, configuring alternates, change of command, etc. We are going to practice the 3 D\'s and absolutely beat that shit into MY head... Yes. you are forcing me to be better... not the other way around. \nMap:\n The training server map... Whatever that is. \nServer:\n You guessed it... The training server. \nMods: \n17th BN Shadow mod.', 501, 0, '2021-05-09 21:53:43', '2025-12-17 19:45:28', NULL, '3797767', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (800, 'Air Crew Training', '2021-05-12 18:00:00', '2021-05-12 20:00:00', '17th Ranger Battalion Training Server', '#ecb200', 'In this training you will learn the following:\nHow to operate in the crew chief position\nHow do operate in the flight medic position\nRepairing and rearming aircraft\nAircraft cargo management', 729, 0, '2021-05-11 02:54:43', '2025-12-17 19:45:28', NULL, '3800908', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (801, 'Pilot Qualification', '2021-05-13 18:00:00', '2021-05-13 20:00:00', '17th Ranger Battalion Training Server', '#ecb200', 'During this qualification you will be tested on the following:\nGeneral aviation of rotary aircraft\nTimed landings in a rotary aircraft\nTight LZ landings\nHot LZ landings\nSling loading equipment', 729, 0, '2021-05-11 03:00:23', '2025-12-17 19:45:28', NULL, '3800910', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (802, 'Basic Training', '2021-05-12 18:00:00', '2021-05-12 21:00:00', '', '#008ae1', '', 639, 0, '2021-05-11 14:40:36', '2025-12-17 19:45:28', NULL, '3803310', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (803, 'Echo Ground Crew Familiarization', '2021-05-19 18:00:00', '2021-05-19 19:30:00', '', '#d89332', 'An overview on the Ground Assets available to Echo Company, and your role in using them. ', 2231, 0, '2021-05-11 21:52:45', '2025-12-17 19:45:28', NULL, '3804665', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (804, 'Mechanized Qual Training', '2021-05-24 18:00:00', '2021-05-24 20:00:00', '', '#d89332', 'Learn how to command a Bradley fighting vehicle and get one step closer to earning your Mechanized Badge', 2231, 0, '2021-05-11 22:25:15', '2025-12-17 19:45:28', NULL, '3804775', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (805, 'SCP OP Creeping Hate', '2021-06-13 16:30:00', '2021-06-13 18:30:00', 'Iceberg Side ops server', '#FFFFFF', 'Required mods: \nOfficial 17th Modlist+\n\n \n\n \n\n\n\n\n\n\n\n\n Rules the exception being load out is limited to what is available in the arsenal. \nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1910457930\n\n17th', 639, 0, '2021-05-11 22:27:26', '2025-12-17 19:45:28', NULL, '3804777', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (806, 'Basic Training', '2021-05-15 13:00:00', '2021-05-15 16:00:00', '', '#008ae1', '', 639, 0, '2021-05-12 22:03:03', '2025-12-17 19:45:28', NULL, '3806392', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (807, 'Air Crew Qual', '2021-05-12 20:00:00', '2021-05-12 21:00:00', '17th ranger battalion training server', '#d89332', 'During this qualification you will be tested on the following:\nHow to operate in the crew chief position\nHow to operate in the flight medic position\nRearming and repairing aircraft\nAircraft cargo management', 729, 0, '2021-05-13 00:53:34', '2025-12-17 19:45:28', NULL, '3807154', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (808, 'Pointman Training', '2021-05-20 19:00:00', '2021-05-20 21:30:00', 'Training Server', '#FFFFFF', 'Learn how to point.', NULL, 0, '2021-05-13 02:28:06', '2025-12-17 19:45:28', NULL, '3807358', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (809, '(CANCELED) Escape And Evade Training', '2021-05-21 17:00:00', '2021-05-21 19:00:00', '17th Ranger Battalion Training Server', '#ecb200', 'In this training you\'ll be taught the following:\nAutorotation Landings\nLanding with no anti-torque\nEscaping and evading from Behind Enemy Lines\n', 729, 1, '2021-05-13 06:50:19', '2025-12-17 19:45:28', NULL, '3807964', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (810, 'Copilot Training Part 1(rescheduled)', '2021-05-17 17:00:00', '2021-05-17 19:00:00', '17th ranger battalion training server', '#ecb200', 'This training has been canceled for today Monday the 17th will be rescheduled.\nDuring this training you will be trained on:\r\n\rGeneral Flight Practices\r\n\rLong Range Radio Operations \r\n\rGeneral Map Reading', 729, 0, '2021-05-13 06:54:14', '2025-12-17 19:45:28', NULL, '3808029', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (811, 'Copilot Training Part 2(rescheduled)', '2021-05-18 17:00:00', '2021-05-18 19:00:00', '17th ranger battalion training server', '#ecb200', 'This training has been canceled Tuesday the 18th. Will be rescheduled\nDuring this training you will be trained on:\r\nRefit/Rearm\r\nOptics\r\nReconnaissance\r\nWeapons System Familiarization/use', 729, 0, '2021-05-13 06:55:55', '2025-12-17 19:45:28', NULL, '3808030', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (812, '(CANCELED) Copilot Qual', '2021-05-19 16:00:00', '2021-05-19 21:00:00', '17th ranger battalion training server', '#ecb200', 'during this qualification you will be tested on the following:\r\nGeneral Flight Practices\r\nLong Range Radio Operations \r\nGeneral Map Reading\r\nRefit/Rearm\r\nOptics\r\nReconnaissance\r\nWeapons System Familiarization/use \r\n\r', 729, 1, '2021-05-13 06:57:14', '2025-12-17 19:45:28', NULL, '3808031', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (813, 'Vehicle Crew Familiarization', '2021-05-15 16:00:00', '2021-05-15 17:00:00', '', '#ecb200', 'Learn the basics of operating ground vehicles in Echo company.', NULL, 0, '2021-05-13 21:50:11', '2025-12-17 19:45:28', NULL, '3810231', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (814, 'Basic Training', '2021-05-20 14:30:00', '2021-05-20 17:30:00', '', '#008ae1', '', 639, 0, '2021-05-16 03:50:08', '2025-12-17 19:45:28', NULL, '3817706', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (815, 'Airborne Training', '2021-05-28 18:00:00', '2021-05-28 20:00:00', 'Northern Air Field', '#6cba50', 'Or as it is better known, JUMP SCHOOL!\nLets go jump out of perfectly good airplanes and float down ever so gently into combat.', 483, 0, '2021-05-16 12:03:39', '2025-12-17 19:45:28', NULL, '3818136', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (816, 'RRC Operation', '2021-05-20 18:00:00', '2021-05-20 20:00:00', '', '#ecb200', '', 644, 0, '2021-05-18 20:13:14', '2025-12-17 19:45:28', NULL, '3826524', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (817, 'Pilot Qualification Exam', '2021-05-21 17:00:00', '2021-05-21 19:00:00', '', '#ecb200', 'don\'t crash', NULL, 0, '2021-05-20 21:55:50', '2025-12-17 19:45:28', NULL, '3832498', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (818, 'Pathfinder Bookwork', '2021-06-01 18:00:00', '2021-06-01 20:00:00', 'Training Server', '#a250e8', 'We\'re beginning a new round of RRC qualifications. Learn how to be an RRC team member and conduct basic recon.\n\nThe qualification is separate.', 468, 0, '2021-05-21 02:12:36', '2025-12-17 19:45:28', NULL, '3833015', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (819, 'Advanced UAV', '2021-05-30 18:00:00', '2021-05-30 19:00:00', '', '#a250e8', 'RRC\'s Advanced UAV Course. No prior training is required.\n\nRRC is held to a higher standard. Take notes based on what you learn and be sure to practice it.', 468, 0, '2021-05-21 02:21:23', '2025-12-17 19:45:28', NULL, '3833017', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (820, 'Basic', '2021-05-28 14:00:00', '2021-05-28 17:00:00', '', '#008ae1', '', 639, 0, '2021-05-28 02:56:58', '2025-12-17 19:45:28', NULL, '3963335', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (821, 'Air Crew Training', '2021-05-31 18:00:00', '2021-06-01 08:30:00', '', '#d89332', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/248316', NULL, 0, '2021-05-28 05:28:27', '2025-12-17 19:45:28', NULL, '3963965', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (822, 'Command Meeting', '2021-06-06 14:00:00', '2021-06-06 16:00:00', '', '#df5353', '', 644, 0, '2021-05-29 00:46:54', '2025-12-17 19:45:28', NULL, '3969986', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (823, 'Operation Broken Crown Pt. 1', '2021-06-19 18:00:00', '2021-06-19 20:00:00', '', '#df5353', '', 322, 0, '2021-05-30 02:23:19', '2025-12-17 19:45:28', NULL, '3974109', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (824, 'AIT 1 - Advanced Infantry Training part 1', '2021-06-03 18:00:00', '2021-06-03 20:00:00', 'Training Range', '#FFFFFF', 'AIT 1, Advanced Infantry Training\n', 483, 0, '2021-05-30 02:36:38', '2025-12-17 19:45:28', NULL, '3974112', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (825, 'RTO Bookwork and Qualification', '2021-06-08 18:30:00', '2021-06-08 20:30:00', 'Training Server', '#a250e8', '\nBookwork and Qualification to earn your Communications Ribbon. \n\nJuggling radios, receiving transmissions from multiple channels (nets,) having to relay information through other channels, etc., the role of the RTO can be challenging. \n\nTo those willing and able, this course will go over the methodology and implementation of the Radio Telephone Operator roll within the 17th Bn. \n\nBring a notepad! \n\nDepending on how many attend, qualification may be pushed to another day. ', 501, 0, '2021-05-30 14:55:24', '2025-12-17 19:45:28', NULL, '3975283', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (826, 'RRC Operation', '2021-06-16 18:00:00', '2021-06-16 20:00:00', '', '#df5353', 'RRC will conduct reconnaissance in preparation for the main body of the 17th’s arrival. RRC qualified personnel only. ', 644, 0, '2021-05-30 15:13:48', '2025-12-17 19:45:28', NULL, '3975310', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (827, 'RASP', '2021-06-05 18:00:00', '2021-06-05 21:00:00', '', '#df5353', '', 644, 0, '2021-05-30 15:14:52', '2025-12-17 19:45:28', NULL, '3975311', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (828, 'BN FTX', '2021-06-12 18:00:00', '2021-06-12 21:00:00', '', '#df5353', '', 644, 0, '2021-05-30 15:15:52', '2025-12-17 19:45:28', NULL, '3975312', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (829, 'Basic Training', '2021-05-31 12:00:00', '2021-05-31 14:30:00', 'Training Server', '#008ae1', 'This training scheduled to get people unavailable on normally scheduled times through BCT. \n\n', 501, 0, '2021-05-30 20:51:12', '2025-12-17 19:45:28', NULL, '3976202', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (830, 'Copilot Training Part 1', '2021-06-03 17:00:00', '2021-06-03 19:00:00', ' 17th ranger battalion training server', '#ecb200', 'During this training you will be trained on:\nGeneral Flight Practices\r\nLong Range Radio Operations \r\nGeneral Map Reading', 729, 0, '2021-05-30 23:58:32', '2025-12-17 19:45:28', NULL, '3976648', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (831, 'Copilot Training Part 2', '2021-06-04 17:00:00', '2021-06-04 19:00:00', '17th ranger battalion training server', '#ecb200', 'During this training you will be trained on:\r\nRefit/Rearm\r\nOptics\r\nReconnaissance\r\nWeapons System Familiarization/use ', 729, 0, '2021-05-30 23:59:22', '2025-12-17 19:45:28', NULL, '3976649', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (832, 'Copilot Qual', '2021-06-05 15:00:00', '2021-06-05 17:00:00', '17th ranger battalion training server', '#ecb200', 'during this qualification you will be tested on the following:\r\nGeneral Flight Practices\r\nLong Range Radio Operations \r\nGeneral Map Reading\r\nRefit/Rearm\r\nOptics\r\nReconnaissance\r\nWeapons System Familiarization/use \r\n', 729, 0, '2021-05-31 00:00:01', '2025-12-17 19:45:28', NULL, '3976650', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (833, 'IDF Training', '2021-06-07 18:00:00', '2021-06-07 20:30:00', 'Training Server', '#d89332', '', 639, 0, '2021-06-03 04:34:06', '2025-12-17 19:45:28', NULL, '3990438', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (834, 'FO-Forward Observer Training', '2021-06-10 18:00:00', '2021-06-10 20:30:00', '', '#d89332', '', 639, 0, '2021-06-03 04:35:06', '2025-12-17 19:45:28', NULL, '3990439', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (835, '17th Server Coming Down for Modlist Change', '2021-06-06 19:30:00', '2021-06-06 20:30:00', 'ALL 17th SERVERS', '#df5353', 'The 17th Servers will be down to account for the Command Meeting results and all Modlist Changes. No Training\'s should be scheduled for the remainder of this evening.\n\nAnnouncement will be posted once modlist is updated so everyone can query the new mod subscription... Once Complete...\n\nUNLOAD ALL MODS -> RELOAD 17TH SHADOW MOD', 38, 0, '2021-06-04 00:27:46', '2025-12-17 19:45:28', NULL, '3992486', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (836, '[Cancelled] Basic Training', '2021-06-04 14:00:00', '2021-06-04 16:00:00', 'Training range', '#008ae1', '', 427, 1, '2021-06-04 00:45:39', '2025-12-17 19:45:28', NULL, '3992492', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (837, 'AIT 2 - Advanced Infrantry Training phase 2', '2021-06-17 18:00:00', '2021-06-17 20:00:00', '', '#FFFFFF', 'Battle Drills', 483, 0, '2021-06-04 01:57:55', '2025-12-17 19:45:28', NULL, '3992545', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (838, 'Joint Training - Alpha and Echo', '2021-06-09 19:00:00', '2021-06-09 20:30:00', '', '#FFFFFF', 'Get reps in with integrating indirect fire support with infantry', 15, 0, '2021-06-04 18:10:47', '2025-12-17 19:45:28', NULL, '3994992', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (839, 'Pathfinder Qualifications', '2021-06-07 18:00:00', '2021-06-07 21:00:00', 'Private Operations', '#a250e8', 'Pathfinder Qualification, if more than 4 attend pairs will be assigned.\n\nPathfinder Bookwork is a prerequisite.', 468, 0, '2021-06-06 19:03:53', '2025-12-17 19:45:28', NULL, '4002121', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (840, 'IDF Part 2', '2021-06-08 17:00:00', '2021-06-08 18:20:00', 'Training server', '#d89332', 'Only attended if you were part of the IDF course yesterday. ', 639, 0, '2021-06-08 00:50:51', '2025-12-17 19:45:28', NULL, '4007283', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (841, 'Heavy Weapons School', '2021-06-15 18:00:00', '2021-06-15 20:00:00', '', '#6cba50', 'Learning infantry heavy weapon systems, especially CSWs.\n\nRescheduled from 14/6 --> 15/6.', 468, 0, '2021-06-08 02:13:14', '2025-12-17 19:45:28', NULL, '4007434', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (842, 'Accelerated Basic', '2021-06-08 11:10:00', '2021-06-08 12:30:00', 'training server', '#ecb200', '', 639, 0, '2021-06-08 15:36:06', '2025-12-17 19:45:28', NULL, '4009741', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (843, 'RTO Qualification', '2021-06-11 17:00:00', '2021-06-11 18:00:00', 'Training Server', '#a250e8', 'Qualification for the previously held RTO bookwork course. \n\nThis qualification is only open to those that have previously completed an RTO Bookwork but NOT a qualification. \n\nPlease DM \n if this time doesnt work for you and I can figure out a time to get your qualification done. \n\n', 501, 0, '2021-06-09 14:53:15', '2025-12-17 19:45:28', NULL, '4011909', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (844, 'Op. Valravn - An Atmospheric Op Series', '2021-06-23 18:00:00', '2021-06-23 20:00:00', 'Malden', '#FFFFFF', 'Event Details:\n\r Consider this a mixture of my spooky operations with a hint of Battlefield 2042.\nInfrastructure has broken down. Weather is far too tumultuous for an air evacuation. You and the rest of the US forces on the island need to get the Hell off of it, but something is keeping you there.\nComplete your hidden objective and escape before the time runs out.\nStructure: Remaining US forces are split into two teams. The tertiary team knows where the hidden objective is, whereas the primary team knows where the extraction site is. They must regroup and complete their objectives. \nTertiary team: Decker, Classic, Pilot, Kraige, Griggs\nServer\n: 17th Official Operations Server\r\nMap\n: Malden\r\nModset\n: 17th BCT Shadowmod ', 801, 0, '2021-06-09 23:33:41', '2025-12-17 19:45:28', NULL, '4014338', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (845, 'PLACEHOLDER Official Mini Operation', '2021-06-30 18:00:00', '2021-06-30 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015717', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (846, 'PLACEHOLDER Official Mini Operation', '2021-07-07 18:00:00', '2021-07-07 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015718', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (847, 'PLACEHOLDER Official Mini Operation', '2021-07-14 18:00:00', '2021-07-14 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015719', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (848, 'PLACEHOLDER Official Mini Operation', '2021-07-21 18:00:00', '2021-07-21 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015720', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (849, 'PLACEHOLDER Official Mini Operation', '2021-07-28 18:00:00', '2021-07-28 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015721', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (850, 'Official Mini Operation', '2021-08-25 18:00:00', '2021-08-25 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015722', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (851, 'Official Mini Operation', '2021-08-18 18:00:00', '2021-08-18 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015723', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (852, 'Official Mini Operation', '2021-09-01 18:00:00', '2021-09-01 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015724', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (853, 'Official Mini Operation', '2021-08-11 18:00:00', '2021-08-11 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015725', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (854, 'PLACEHOLDER Official Mini Operation', '2021-09-08 18:00:00', '2021-09-08 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015726', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (855, 'PLACEHOLDER Official Mini Operation', '2021-08-04 18:00:00', '2021-08-04 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015729', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (856, 'PLACEHOLDER Official Mini Operation', '2021-09-15 18:00:00', '2021-09-15 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015730', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (857, 'Operation Trident (Placeholder)', '2021-11-24 19:00:00', '2021-11-24 21:00:00', '', '#df5353', 'Operation Trident\r\nAmid rising tensions, members of the Tanoan Liberation Army terrorist group have seized a lone US destroyer, the USS Liberty docked in allied Tanoa for repairs, along with a significant number of its crew and two Navy helicopters. Rangers are being rapidly deployed from the only naval asset in the region, the submarine HMS Proteus, to secure the destroyer and rescue surviving crew members.\r\nRangers will first covertly insert aboard the USS Liberty with SDV mini-submarines to take out air defenses and turrets to pave the way for an exfil helicopter. \r\nOnce captured, reinserts will occur at the destroyer.\r\nObjectives\r\nOBJ Liberty\n\nClear the USS Liberty and the Blue Pearl Industrial Port of all enemies. \r\nOBJ Liberty 2\r\n\nRescue surviving crew members\r\nOBJ Stark\r\n\nEstablish LZ for exfil of crew and rangers\r\nAssets\r\n8x SDV', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015731', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (858, 'PLACEHOLDER Official Mini Operation', '2021-11-17 18:00:00', '2021-11-17 20:00:00', '', '#df5353', '', 644, 0, '2021-06-10 14:58:12', '2025-12-17 19:45:28', NULL, '4015738', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (859, 'Side Ops Assignments', '2021-06-15 22:00:00', '2021-06-16 22:00:00', '', '#FFFFFF', 'A reminder to check the Side Ops Assignments and delegate days based off availability\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/781b8af8-fac1-4375-a7ff-19f697bd031c/forums', NULL, 0, '2021-06-10 16:44:41', '2025-12-17 19:45:28', NULL, '4015993', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (860, 'Side Ops Assignments', '2021-07-20 22:00:00', '2021-07-21 22:00:00', '', '#FFFFFF', 'A reminder to check the Side Ops Assignments and delegate days based off availability\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/781b8af8-fac1-4375-a7ff-19f697bd031c/forums', NULL, 0, '2021-06-10 16:44:41', '2025-12-17 19:45:28', NULL, '4015994', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (861, 'Side Ops Assignments', '2021-08-15 22:00:00', '2021-08-16 22:00:00', '', '#FFFFFF', 'A reminder to check the Side Ops Assignments and delegate days based off availability\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/781b8af8-fac1-4375-a7ff-19f697bd031c/forums', NULL, 0, '2021-06-10 16:44:41', '2025-12-17 19:45:28', NULL, '4015995', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (862, 'Side Ops Assignments', '2021-09-15 22:00:00', '2021-09-16 22:00:00', '', '#FFFFFF', 'A reminder to check the Side Ops Assignments and delegate days based off availability\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/781b8af8-fac1-4375-a7ff-19f697bd031c/forums', NULL, 0, '2021-06-10 16:44:41', '2025-12-17 19:45:28', NULL, '4015996', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (863, 'Side Ops Assignments', '2021-10-15 22:00:00', '2021-10-16 22:00:00', '', '#FFFFFF', 'A reminder to check the Side Ops Assignments and delegate days based off availability\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/781b8af8-fac1-4375-a7ff-19f697bd031c/forums', NULL, 0, '2021-06-10 16:44:41', '2025-12-17 19:45:28', NULL, '4015997', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (864, 'Side Ops Assignments', '2021-11-15 22:00:00', '2021-11-16 22:00:00', '', '#FFFFFF', 'A reminder to check the Side Ops Assignments and delegate days based off availability\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/781b8af8-fac1-4375-a7ff-19f697bd031c/forums', NULL, 0, '2021-06-10 16:44:41', '2025-12-17 19:45:28', NULL, '4015998', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (865, 'Side Ops Assignments', '2021-12-15 22:00:00', '2021-12-16 22:00:00', '', '#FFFFFF', 'A reminder to check the Side Ops Assignments and delegate days based off availability\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/781b8af8-fac1-4375-a7ff-19f697bd031c/forums', NULL, 0, '2021-06-10 16:44:41', '2025-12-17 19:45:28', NULL, '4015999', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (866, 'JTAC Training', '2021-06-21 18:00:00', '2021-06-21 20:30:00', 'Training Server', '#a250e8', 'Coordinating ground to air communications is a whole \'nother beast. Doing it without killing friendlies is even more challenging. This training will clear up using the newest CAS 5-line request, go over common ordinance, and how to implement it from the grounds perspective. \n\nDocumentation to follow. ', 501, 0, '2021-06-12 06:49:46', '2025-12-17 19:45:28', NULL, '4020424', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (867, 'Operation Broken Crown Pt. 2', '2021-06-26 18:00:00', '2021-06-26 20:00:00', '', '#df5353', '', 322, 0, '2021-06-12 22:21:41', '2025-12-17 19:45:28', NULL, '4021848', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (868, 'Stress Test Firefight Mission', '2021-06-17 18:30:00', '2021-06-17 21:30:00', '', '#df5353', '', 38, 0, '2021-06-13 01:22:38', '2025-12-17 19:45:28', NULL, '4022012', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (869, 'OP Dervish - Wednesday Mini Op', '2021-06-30 18:30:00', '2021-06-30 20:00:00', '', '#FFFFFF', 'Use the 17th Mod Set ONLY!\n\nAfter Saturday\'s operation the main Ranger element is currently recuperating from their fighting. Command has several supply drops inbound, however due to remaining sporadic Anti-Air in the valley and landing for C-130\'s too dangerous, cargo is being paradropped nearby. Your objective will be to recover said cargo and bring it back to base.\n\nThis is the first op I\'ve made in a while, appreciate your patience with it and me. I\'ll try to give you the best experience I can. ', 51, 0, '2021-06-14 00:21:26', '2025-12-17 19:45:28', NULL, '4136744', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (870, 'Operation Broken Crown Pt. 3', '2021-07-03 18:00:00', '2021-07-03 20:00:00', '', '#df5353', '', 322, 0, '2021-06-14 01:51:45', '2025-12-17 19:45:28', NULL, '4136937', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (871, 'Operation Broken Crown Pt. 4', '2021-07-10 18:00:00', '2021-07-10 20:00:00', '', '#df5353', '', 322, 0, '2021-06-14 01:52:04', '2025-12-17 19:45:28', NULL, '4136938', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (872, '[CANCELED]Operation Bleeding Sunset', '2021-07-21 18:00:00', '2021-07-21 21:00:00', 'Sahrani', '#ecb200', 'Unironically set it to repeat, and it repeated, at least it’s been a year since my first side op.', 850, 1, '2021-06-14 02:17:48', '2025-12-17 19:45:28', NULL, '4136947', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (873, 'Airborne Badge - Jump Training', '2021-06-19 16:00:00', '2021-06-19 17:00:00', 'Training Server', '#ecb200', '"gory gory what a helluva way to die"', 639, 0, '2021-06-14 15:50:55', '2025-12-17 19:45:28', NULL, '4138297', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (874, 'AIT 3 - MOUT Training - Advanced Infantry Training', '2021-06-24 18:00:00', '2021-06-24 20:00:00', 'Northern Airport', '#FFFFFF', 'We will be doing MOUT training. Need minimum of a fireteam. Ideally a squad+.\nCorporals and higher - expect to take an active leadership role, FTL or SL.', 483, 0, '2021-06-14 21:47:43', '2025-12-17 19:45:28', NULL, '4139815', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (875, 'AIT 4 CQB - Advanced Infantry Training', '2021-07-01 18:00:00', '2021-07-01 20:00:00', 'Training Grounds', '#FFFFFF', 'Training will be on both building clearing and compound clearing. Need a least a fire team. \nCorporals or higher, expect to TL/SL', 483, 0, '2021-06-14 21:50:14', '2025-12-17 19:45:28', NULL, '4139816', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (876, 'Fire Team Training - Learn how to be a good fireteam member', '2021-06-22 18:00:00', '2021-06-22 20:00:00', 'training grounds', '#FFFFFF', 'We will talk about fire teams, the member positions, how they work together, what you need to know to be a good member.', 483, 0, '2021-06-14 23:36:44', '2025-12-17 19:45:28', NULL, '4139926', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (877, 'Air Crew Training', '2021-06-16 18:00:00', '2021-06-16 19:30:00', '', '#ecb200', '', NULL, 0, '2021-06-15 07:22:20', '2025-12-17 19:45:28', NULL, '4140575', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (878, 'marksman/sharpshooter qualifactions', '2021-06-21 17:00:00', '2021-06-21 18:00:00', '', '#ecb200', 'Come get those 3/4x sights I know y’all want', 299, 0, '2021-06-15 22:26:30', '2025-12-17 19:45:28', NULL, '4143331', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (879, 'Land Nav', '2021-06-28 17:30:00', '2021-06-28 20:00:00', '', '#ecb200', 'Learn to read the maps and use map tools, without the help of high speed low drag equipment', 512, 0, '2021-06-17 04:24:17', '2025-12-17 19:45:28', NULL, '4147806', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (880, 'CLS Training', '2021-06-19 16:30:00', '2021-06-19 17:30:00', '17th BN Training Server', '#6cba50', '', 539, 0, '2021-06-18 07:06:12', '2025-12-17 19:45:28', NULL, '4205383', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (881, 'Pathfinder Qualifications', '2021-06-21 18:00:00', '2021-06-21 21:00:00', 'Private Operations Server', '#a250e8', 'Pathfinder bookwork is required for attendance.', 468, 0, '2021-06-18 18:40:53', '2025-12-17 19:45:28', NULL, '4205662', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (882, 'Master FreeFall and RSLC', '2021-06-25 17:00:00', '2021-06-25 18:30:00', 'Training Server', '#a250e8', 'RRC\'s Master Free Fall and Recon Surveillance Leaders\' Course. MFF is a requirement for all RRC members, RSLC is for NCOs who wish to lead RRC operations.', 468, 0, '2021-06-19 19:19:14', '2025-12-17 19:45:28', NULL, '4207630', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (883, 'Armor vs Armor Training', '2021-06-22 18:00:00', '2021-06-22 20:00:00', '', '#d89332', 'Meeting Location: Southern Airfield\nAs seen with the first operation, we will be encountering armor comparable with our own. This training will go over how to effectively disable enemy armor and vehicles as quickly as possible.', 309, 0, '2021-06-20 16:04:08', '2025-12-17 19:45:28', NULL, '4209121', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (884, '17th Round Table', '2021-08-15 14:00:00', '2021-08-15 16:00:00', '', '#ecb200', '', 644, 0, '2021-06-21 13:59:14', '2025-12-17 19:45:28', NULL, '4210314', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (885, 'Anti Armor School', '2021-06-27 18:00:00', '2021-06-27 20:00:00', 'Training Server', '#6cba50', 'Learning the capabilities and weaknesses of enemy armor so you know how to approach and deal with them.', 468, 0, '2021-06-25 01:29:41', '2025-12-17 19:45:28', NULL, '4222370', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (886, 'Pathfinder Qualifications', '2021-06-27 15:00:00', '2021-06-27 17:30:00', 'Private Operations Server', '#a250e8', '', 468, 0, '2021-06-25 01:30:48', '2025-12-17 19:45:28', NULL, '4222371', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (887, 'Operation Haven', '2021-07-14 18:00:00', '2021-07-14 20:00:00', '', '#FFFFFF', '\nOperation Haven\nThe Kolgujev Defense Force (KDF) has invaded the the southern area of Malden seizing the towns of Chapoi and Cancon. The 17th Ranger Battalion has been tasked with retaking the towns as well as crippling KDF\'s command structure and destroying assets.\n\n17th Ranger Battalion will be performing an Air Assault near the towns and proceed to completing assigned objectives.\nObjectives\nObjective King\nObjective Rook \nEnemy Forces\nKolgujev Defense Force\n17th Assets\nRotary', 2232, 0, '2021-06-25 19:31:31', '2025-12-17 19:45:28', NULL, '4225444', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (888, 'Vehicle Crew Familiarization', '2021-06-26 16:00:00', '2021-06-26 17:00:00', '', '#d89332', '', NULL, 0, '2021-06-25 23:43:47', '2025-12-17 19:45:28', NULL, '4226312', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (889, 'Air Crew Training', '2021-06-28 19:00:00', '2021-06-28 21:00:00', 'Training Server ( Northern Air Field)', '#d89332', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs', 1057, 0, '2021-06-26 04:59:22', '2025-12-17 19:45:28', NULL, '4227492', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (890, 'JTAC Qualification', '2021-06-29 19:00:00', '2021-06-29 20:00:00', 'Training Server', '#a250e8', 'JTAC Qualification\nPlease reference the linked document, and ASK QUESTIONS!\n\n\nQualification Requirements:\r\nTrainee must demonstrate Confident use of radio for:\r\nTrainee shall request 3 Hotel, 3 Golf, and 3 Sierra missions \r\nTrainees must Establish Point Hotel once. Trainees shall also Move Point Hotel no less than once during qualification. \r\nUsage of suitable ordinance for a given strike.\r\n', 501, 0, '2021-06-26 18:09:57', '2025-12-17 19:45:28', NULL, '4228666', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (891, 'Basic Training', '2021-07-02 18:00:00', '2021-07-02 21:30:00', 'Training Server', '#008ae1', '', 639, 0, '2021-06-27 04:05:35', '2025-12-17 19:45:28', NULL, '4229417', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (892, 'Basic Training', '2021-07-08 18:00:00', '2021-07-08 21:30:00', 'Training Server', '#008ae1', '', 639, 0, '2021-06-27 04:05:35', '2025-12-17 19:45:28', NULL, '4229418', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (893, 'Basic Training', '2021-07-26 18:00:00', '2021-07-26 21:30:00', 'Training Server', '#008ae1', '', 639, 0, '2021-06-27 04:05:35', '2025-12-17 19:45:28', NULL, '4229420', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (894, 'Basic Training', '2021-07-20 18:30:00', '2021-07-20 21:30:00', 'Training Server', '#008ae1', '', 639, 0, '2021-06-27 04:05:35', '2025-12-17 19:45:28', NULL, '4229423', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (895, 'Basic Training', '2021-07-11 18:00:00', '2021-07-11 21:30:00', 'Training Server', '#008ae1', '', 639, 0, '2021-06-27 04:11:34', '2025-12-17 19:45:28', NULL, '4229424', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (896, 'Mechanized Training', '2021-06-29 17:30:00', '2021-06-29 20:00:00', '', '#d89332', 'Pre-req for the Mechanized Badge, learn how to properly operate and repair the Bradley in a variety of scenarios. ', 2231, 0, '2021-06-27 17:50:50', '2025-12-17 19:45:28', NULL, '4231145', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (897, 'RRC Mission', '2021-06-28 18:00:00', '2021-06-28 20:30:00', 'Private Ops', '#ecb200', 'RRC Mission 1: Destroy SAM Site\n TF Knight has requested that we send RRC to locate and destroy the SAM site. Intel suggests that it is located IVO the 1-39th HQ. An Arleigh Burke-class destroyer has been deployed to the Black Sea and is standing by for RRC to designate a target. RRC will have to infiltrate deep behind enemy lines, locate the SAM site, take pictures of the SAM launchers, mark it with a laser designator, then call in a cruise missile (UAV terminal needed). Tribal Forces have warned us that many of their patrols have gone missing in the mountains, which may mean that Takistani SF is operating in Sarristan. TF Knight suspects that there is more CSAT equipment in Sarristan. If RRC comes across any outposts that contain CSAT equipment, take photos and report their position for this week\'s operation. \nAssets (additional assets available upon request)\n4x MRZR\n1x Mk41 mod 21 VLS', 644, 0, '2021-06-27 23:22:56', '2025-12-17 19:45:28', NULL, '4232132', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (898, 'Marksmanship and Sharpshooter Qualification', '2021-07-01 15:00:00', '2021-07-01 16:00:00', 'Training Grounds', '#a250e8', 'For the new recruits or users who have not gotten their marksmanship or sharpshooter qual out of the way, come get \'er done.', 850, 0, '2021-06-29 01:52:50', '2025-12-17 19:45:28', NULL, '4236746', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (899, '[Rescudle] Brid Nest', '2021-07-05 19:00:00', '2021-07-05 21:00:00', 'IceBrid Side OP ', '#FFFFFF', 'Event Detail-Your a group of Taliban fighter holding a town for USA forces \nSever: IceBird Side OP \nMap United Saird \nMod set/Additional mods \n17th Modset', 687, 0, '2021-06-30 01:47:15', '2025-12-17 19:45:28', NULL, '4239259', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (900, 'Operation Broken Crown Pt. 5', '2021-07-24 18:00:00', '2021-07-24 20:00:00', '', '#df5353', '', 322, 0, '2021-06-30 12:25:16', '2025-12-17 19:45:28', NULL, '4240316', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (901, 'Operation Broken Crown Pt. 6', '2021-07-31 18:00:00', '2021-07-31 20:00:00', '', '#df5353', '', 322, 0, '2021-06-30 12:25:45', '2025-12-17 19:45:28', NULL, '4240317', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (902, 'Operation Broken Crown Pt. 7', '2021-08-07 18:00:00', '2021-08-07 20:00:00', '', '#df5353', '', 322, 0, '2021-06-30 12:26:09', '2025-12-17 19:45:28', NULL, '4240318', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (903, 'Operation Broken Crown Finale', '2021-08-14 18:00:00', '2021-08-14 21:00:00', '', '#df5353', '', 322, 0, '2021-06-30 12:28:07', '2025-12-17 19:45:28', NULL, '4240320', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (904, 'Co-Pilot Training Part 1', '2021-07-11 18:00:00', '2021-07-11 20:00:00', 'Training Server (Northern Airbase)', '#d89332', 'During this training you will be trained on:\r\nGeneral Flight Practices \r\nLong Range Radio Operations \r\nGeneral Map Reading\r\n', 1057, 0, '2021-07-01 00:25:12', '2025-12-17 19:45:28', NULL, '4241594', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (905, 'Operation Crying Skies', '2021-07-07 18:00:00', '2021-07-07 21:00:00', '', '#d89332', 'July 8th, 2019\nWelcome to Chernarus, you guys/the 17th Ranger Battalion, are going to be assaulting a Takistani occupation here in Chernarus. There will be Armor and there will be people shooting at you so be prepared to ride in with Sea Stallions and as me as one of your pilots (LMAOOOOOOOOOOO). But the task is to take over an airstrip and get rid of Takistani Soldiers receiving supplies and armaments from the Russians. This is my first official mission so please be patient with me looool.\n\nServer: 17th Ranger Battalion Private Ops\nMap: Summer Chernarus \nMod: 17th Ranger Battalion Modpack\n', 850, 0, '2021-07-04 06:05:47', '2025-12-17 19:45:28', NULL, '4250163', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (906, 'Command Meeting', '2021-07-11 14:00:00', '2021-07-11 15:00:00', '', '#df5353', '', 644, 0, '2021-07-04 23:50:00', '2025-12-17 19:45:28', NULL, '4253431', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (907, '(Test) Crying Skies', '2021-07-05 13:00:00', '2021-07-05 15:00:00', '', '#d89332', 'Event Details: Testing out a mission for errors or issues with spawning modules and a playtest\nServer: 17th Range Battalion Private Ops Server\nMap: Chernarus Summer\nMods: 17th Modpack', 850, 0, '2021-07-05 06:15:29', '2025-12-17 19:45:28', NULL, '4254036', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (908, '[Rescheduled] IFV/Armor Training', '2021-07-15 18:00:00', '2021-07-15 20:00:00', '', '#d89332', 'This training has been rescheduled to Friday, July 16th at 8 pm ET/7 pm CT.', 309, 0, '2021-07-06 13:49:29', '2025-12-17 19:45:28', NULL, '4257613', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (909, 'Co-Pilot Training Part 1', '2021-07-10 15:00:00', '2021-07-10 18:00:00', '', '#d89332', 'During this training you will be trained on:\r\nGeneral Flight Practices \r\nLong Range Radio Operations \r\nGeneral Map Reading\r', 1057, 0, '2021-07-06 19:38:56', '2025-12-17 19:45:28', NULL, '4258187', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (910, 'Co-Pilot Training Part 2', '2021-07-17 15:00:00', '2021-07-17 18:00:00', 'Training Server (Northern Airfield)', '#d89332', 'During this training you will be trained on: \r\nRefit/Rearm \r\nOptics \r\nReconnaissance \r\nWeapons System Familiarization/use \r\n', 1057, 0, '2021-07-06 19:44:11', '2025-12-17 19:45:28', NULL, '4258189', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (911, 'Fireteam Radio comms and usage', '2021-07-13 18:00:00', '2021-07-13 20:00:00', 'training range', '#FFFFFF', 'How to use the radios, radio etiquette and how to be understood.', 483, 0, '2021-07-08 23:55:12', '2025-12-17 19:45:28', NULL, '4264465', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (912, 'Echo Ground Familiarization', '2021-07-13 17:30:00', '2021-07-13 19:30:00', '', '#d89332', 'Learn about the Echo Company ground assets, and how to function as a crewman. ', 2231, 0, '2021-07-11 12:29:37', '2025-12-17 19:45:28', NULL, '4271104', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (913, 'Pathfinder Bookwork', '2021-07-13 18:30:00', '2021-07-13 20:00:00', '', '#a250e8', 'Pathfinder Bookwork for RRC candidates. This is not a qualification, however the Pathfinder qualification requires Pathfinder Bookwork as a prerequisite.\n\nDelayed from 7 CST to 7:30 CST', 468, 0, '2021-07-11 21:05:06', '2025-12-17 19:45:28', NULL, '4273765', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (914, 'Pathfinder Qualifications', '2021-07-20 15:00:00', '2021-07-20 17:30:00', '', '#a250e8', 'Pathfinder Qualifications, Pathfinder Bookwork is a prerequisite.\n\nRescheduled from 7-19 to 7-20.', 468, 0, '2021-07-11 21:07:19', '2025-12-17 19:45:28', NULL, '4273767', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (915, 'Master FreeFall and RSLC', '2021-07-20 18:00:00', '2021-07-20 19:30:00', '', '#a250e8', 'MasterFreeFall is one of two required badges for RRC candidates. RSLC is a requirement for NCOs to lead during RRC, but is entirely optional for those who don\'t want to and will consist of a lecture more than in game practice.', 468, 0, '2021-07-11 21:08:38', '2025-12-17 19:45:28', NULL, '4273770', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (916, 'Sniper School', '2021-07-22 18:00:00', '2021-07-22 20:00:00', '', '#a250e8', 'RRC\'s Sniper School. There are no prerequisites.', 468, 0, '2021-07-11 21:09:22', '2025-12-17 19:45:28', NULL, '4273772', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (917, '68 Whiskey - Walk Ins Welcome', '2021-07-16 14:00:00', '2021-07-16 20:00:00', 'Training Server --> Training Grounds', '#a250e8', 'Will be online from 3pm to.. late... to teach 68W multiple times.\nThis is not a single 6 hour course, but multiple courses throughout the day.\nMain Points of the Course:', 19, 0, '2021-07-11 22:41:25', '2025-12-17 19:45:28', NULL, '4274481', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (918, 'Air Crew Training', '2021-07-12 18:00:00', '2021-07-12 20:00:00', '', '#d89332', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/248316', 1072, 0, '2021-07-11 22:51:50', '2025-12-17 19:45:28', NULL, '4274486', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (919, 'RASP', '2021-07-17 18:00:00', '2021-07-17 21:00:00', '', '#df5353', 'RASP as it is known to the masses is the "Ranger Assessment and Selection Process." Most units use this as a way to induct individuals into the unit however our unit does things a little differently. This event is designed to allow members of the unit to perform in different scenarios and positions of leadership. RASP is held in the middle of and at the end of each campaign. This event is used to show leadership how you as an individual can step up and show your improvement. This improvement can be awarded the Ranger Tab. The Tab is awarded to a select few members who have shown that they can uphold and perform to an exceptional standard. With being awarded the Ranger Tab, said individual is provided with the opportunity to carry the SCAR and a 7.62mm Ammunition.\n RASP is held with at least three separate objectives that need to be executed within a limited time frame determined at the start of the Operation. Limited information is provided before a RASP and only the objectives and time limits are provided at the beginning of the Operation. There are Limited Questions that can be asked to assist within the start of the operation so make sure to use them wisely. It is recommended if you have never attended an operation you limit what you say or do and follow instructions. You may step into a roll if you believe you can fulfill it.', 322, 0, '2021-07-12 10:17:17', '2025-12-17 19:45:28', NULL, '4275957', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (920, 'SCP Op Meatgrinder - SCP Finale', '2021-07-25 16:30:00', '2021-07-25 20:00:00', 'Iceberg Side ops server - Map Fapovo Island', '#30a68f', 'OPORD: The Foundation has secured the island with your help in a lighting war style attack. Chaos is currently pushed back to their facility with limited assets still available to them due to your attacks destroying much of their outside infrastructure. Your job is to press inside of the facility destroying their reality distortion device and purging SCP 1322 through demo blocks and fire. Success will mean both targets are destroyed and no Chaos Insurgency escape their foundation. \n\n\n17th Mod List+\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nRule set, 17th rules are in place, exceptions, All NATO rifles are allowed, NO GL\'s, Black uniform is required doesn\'t matter multicam black or other but black unifrom must be worn unless told not to. AT is limited to LAT single shot AT, resupply will be around. No drones or hunt IR are allowed. No GPS, it should be not allowed from arsenals but if caught with one means removal from mission. ', 639, 0, '2021-07-12 19:27:00', '2025-12-17 19:45:28', NULL, '4277819', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (921, 'IFV/Armor Training', '2021-07-16 18:00:00', '2021-07-16 20:00:00', 'Training Server, Southern Airfield', '#d89332', 'Description: Come learn the ropes of the various roles of our armor crews and get practice time in each. This training will focus on the Bradley specifically, but the skills are transferable to other armor.\nNOTE: This training does NOT earn you the IFV Badge. This training is a preparation for the qualification, which will be held at a later date.', 309, 0, '2021-07-12 20:45:40', '2025-12-17 19:45:28', NULL, '4278368', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (922, 'Co-Pilot Qualification', '2021-07-24 15:00:00', '2021-07-24 17:00:00', '', '#d89332', 'During this qualification you will be tested on the following: \r\nGeneral Flight Practices \nLong Range Radio Operations \nGeneral Map Reading\nRefit/Rearm\nOptics\nReconnaissance\nWeapons System Familiarization/Use \r\n', 1072, 0, '2021-07-14 02:22:04', '2025-12-17 19:45:28', NULL, '4280811', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (923, 'Basic Training', '2021-07-24 09:00:00', '2021-07-24 11:00:00', '', '#ecb200', '', NULL, 0, '2021-07-19 20:22:42', '2025-12-17 19:45:28', NULL, '4292773', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (924, 'Fixed Wing CAS Qualification', '2021-07-23 18:00:00', '2021-07-23 20:30:00', '', '#d89332', 'CAS Qualification for the F/A-18 and A-10C\nQualification is Limited to 2 Pilots\nPilots will be required to demonstrate:\nRearming/Configuring Pylons\n5-Line and Proper Long Range Radio Etiquette\nTakeoffs, Touch-and-Go (F/A-18 Only), and Landings\nAbility to Maintain Hold Points and Initial Points (HP/IP)\nAir to Ground Engagement:\nF/A-18\nA-10C\nAir to Air Engagement:', 1072, 0, '2021-07-21 01:30:03', '2025-12-17 19:45:28', NULL, '4297137', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (925, 'Operation Testing', '2021-08-16 18:00:00', '2021-08-16 19:00:00', 'Private Ops server', '#FFFFFF', '', 639, 0, '2021-07-21 02:11:03', '2025-12-17 19:45:28', NULL, '4297210', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (926, 'Operation Hatchet', '2021-08-18 18:00:00', '2021-08-18 21:00:00', 'Private Operations server - Map Lythium', '#FFFFFF', '17th Mod List\n\nOpord is.\n17th has taken the map, mission accomplished! Just guard the base until the 17th\'s next assignment. We\'ve taken the area gonna be a slow guard duty am I right mission accomplished!....right? ', 639, 0, '2021-07-21 02:13:27', '2025-12-17 19:45:28', NULL, '4297211', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (927, 'IDF Training Part 1', '2021-07-29 18:00:00', '2021-07-29 19:30:00', 'Trainning Server', '#d89332', '', 639, 0, '2021-07-21 02:37:46', '2025-12-17 19:45:28', NULL, '4297216', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (928, 'IDF Training Part 2 (Started Early - completed)', '2021-07-30 18:00:00', '2021-07-30 19:30:00', 'Training Server', '#d89332', '', 639, 0, '2021-07-21 02:38:10', '2025-12-17 19:45:28', NULL, '4297218', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (929, 'FO Training and Qual', '2021-08-05 18:30:00', '2021-08-05 20:30:00', 'Training Server', '#d89332', '', 639, 0, '2021-07-21 02:46:23', '2025-12-17 19:45:28', NULL, '4297223', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (930, 'Operation Mortuum Semper', '2021-08-08 16:30:00', '2021-08-08 20:00:00', 'Iceberg Side Ops', '#30a68f', 'This is not the main posting, it\'s linked below. This is solely for people who don\'t check the Iceberg calendar. RSVPs will occur on the main posting, since slotting will be limited to 14 people\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/WDJ475Xz/channels/76d99607-ec61-437a-886e-c3cba36e0ada/calendar/4294450', 512, 0, '2021-07-22 10:16:07', '2025-12-17 19:45:28', NULL, '4300787', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (931, 'Wally Mission Asset Testing', '2021-07-27 18:30:00', '2021-07-27 20:30:00', 'Iceberg Sideops Server', '#FFFFFF', 'Event Details\n: I\'m testing out some mods for use in my upcoming campaign. I\'d like to keep it to just a couple people as it\'s mostly testing but there is going to be fighting against/with AI so if you want to come and just mess around with me zeusing in some assets along with a few preplanned tests feel free to join.\n\n\nServer\n: Iceberg Sideops Server\n\n\nModset\n:\n-17th Shadow Mod\n-Estonian Defense Force (\n)\n-Virolahti (\n)\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1926513010\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=797217102', 1141, 0, '2021-07-22 21:33:35', '2025-12-17 19:45:28', NULL, '4301535', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (932, 'MISSION MAKER ROUND UP', '2021-08-22 14:00:00', '2021-08-22 16:30:00', '', '#ecb200', 'Let\'s chop it up...let\'s talk editor let\'s trade scripts...let\'s share knowledge....I\'m ready to screenshare more alive and some ace shit', 43, 0, '2021-07-22 22:53:23', '2025-12-17 19:45:28', NULL, '4301664', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (933, 'Operation Dragon Blood', '2021-07-28 18:00:00', '2021-07-28 21:00:00', 'Tanoa', '#a250e8', 'Description:\n\nJuly 30th, 2019\nThe 17th Ranger Battalion is going to be conducting an infiltration and assault of the Island of Tanoa, due to this being the location of a vital supply point for the Russians who were supplying the Takistani National Army, the army which the 17th has done a successful job with moving them back into their own borders. The Russians here will share resemblance to those seen in the past, but there are also suspicions that this is the island that holds a production facility for new technologies to be produced.\n\nServer: \n17th Private Ops Server\n\nMap: \nTanoa\n\nModset: \n17th Ranger Battalion Shadow Mod', 850, 0, '2021-07-23 00:05:34', '2025-12-17 19:45:28', NULL, '4301723', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (934, 'Operation Dragon Blood 2', '2021-08-04 18:00:00', '2021-08-04 21:00:00', '', '#d89332', 'Operation Details:\n\nSo after the Ka-52 blew up our helicopter we we\'re basically stranded on Tanoa, and ended up setting up a small camp by the downed bird and decided to wait it out, and wait it out y\'all did. The Russian Federation decided to leave Tanoa alone and that basically allowed the U.S. Army to move in and provide us with support to get us out. However they want this island to be cleared out before they do anything more and pick us up.\n\n\nMap:\n Tanoa\n\nModset:\n 17th Ranger Battalion Shadow Mod\n\nServer:\n 17th Private Operations Server', 850, 0, '2021-07-23 03:05:11', '2025-12-17 19:45:28', NULL, '4302093', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (935, 'Operation Korund', '2021-08-11 18:00:00', '2021-08-11 20:30:00', '17 Private Ops Server', '#FFFFFF', 'Operation Korund\r\nThe Malden Defense Force has invaded the island of Sahrani, taking its airbase and the nearby towns of Balmopan and Chantico. The 17th Ranger Battalion has been deployed to retake these areas and extract UN peacekeepers trapped in Rashidah.\r\nRangers will proceed in a convoy to objectives escorted by Manticore.\r\n\nObjectives\r\nOBJ Fort, Kirasa\r\nClear all MDF forces\r\nOBJ PACA\r\nClear all MDF forces, destroy any aircraft\r\nOBJ UNTAR\r\nExtract UN peacekeepers\r\nMalden Defense Force\r\nNo fixed aircraft, but has rotary\r\nHasty fortifications and emplacements\r\nLarge amounts of enemy infantry \r\nAA in form of MANPADs\r\nLight armor\r\nIDF\r\nAssets\r\n2x Blackfish (Armed)\r\n3x HMMWV (1x TOW, 2x M2)\r\n1x Friendly UH-60M on standby for UN extraction and resupply\r\n', 545, 0, '2021-07-23 13:21:30', '2025-12-17 19:45:28', NULL, '4304151', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (936, 'Pathfinder Qualifications', '2021-07-25 18:00:00', '2021-07-25 20:00:00', 'Private Operations Server', '#a250e8', 'Pathfinder Bookwork is a prerequisite.', 468, 0, '2021-07-23 23:04:03', '2025-12-17 19:45:28', NULL, '4305951', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (937, 'Sniper School', '2021-07-27 18:00:00', '2021-07-27 20:00:00', '', '#a250e8', 'RRC\'s Sniper School. Specially scheduled for someone\'s schedule, but any are free to attend.', 468, 0, '2021-07-24 01:00:05', '2025-12-17 19:45:28', NULL, '4306596', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (938, 'Pathfinder Qualifications', '2021-07-26 18:00:00', '2021-07-26 20:00:00', '', '#a250e8', 'Pathfinder Bookwork is a prerequisite.', 468, 0, '2021-07-24 01:00:36', '2025-12-17 19:45:28', NULL, '4306597', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (939, 'Aircrew Training & Qualification', '2021-08-01 15:00:00', '2021-08-01 17:00:00', '', '#d89332', '', 545, 0, '2021-07-25 02:43:43', '2025-12-17 19:45:28', NULL, '4308354', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (940, 'RRC Op', '2021-07-30 18:00:00', '2021-07-30 20:30:00', '', '#df5353', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/b6150981-96f6-4112-a6e8-1c035d0e00e8/forums/1459942131', 322, 0, '2021-07-25 14:05:49', '2025-12-17 19:45:28', NULL, '4309049', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (941, 'Fixed Wing CAS Qualification', '2021-07-26 17:00:00', '2021-07-26 19:30:00', '', '#d89332', 'ONLY JOIN WAITLIST IF PREPARED TO TAKE QUALIFICATION\nCAS Qualification for the F/A-18 and A-10C\nQualification is Limited to 2 Pilots\nPilots will be required to demonstrate:\nRearming/Configuring Pylons\n5-Line and Proper Long Range Radio Etiquette\nTakeoffs, Touch-and-Go (F/A-18 Only), and Landings\nAbility to Maintain Hold Points and Initial Points (HP/IP)\nAir to Ground Engagement:\nF/A-18\nA-10C\nAir to Air Engagement:', 1072, 0, '2021-07-25 18:05:38', '2025-12-17 19:45:28', NULL, '4309464', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (942, '[CANCELED] Master FreeFall + RSLC', '2021-07-31 15:00:00', '2021-07-31 16:30:00', '', '#a250e8', 'RRC\'s Master FreeFall and Recon Survielllllllence Leaders\' Course.\n\nMFF is required for RRC, RSLC is required for NCOs who want to lead during RRC missions.', 468, 1, '2021-07-25 22:41:19', '2025-12-17 19:45:28', NULL, '4310297', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (943, 'Copilot Training Part 1', '2021-08-07 15:00:00', '2021-08-07 17:00:00', 'Training Server, Northern Airstrip', '#d89332', 'Day 1\r\nAir Frame\r\nGeneral Aviation\r\nMap Reading\r\nRadio Operations\n\r\n', 545, 0, '2021-07-26 04:04:28', '2025-12-17 19:45:28', NULL, '4310979', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (944, 'Copilot Training Part 2', '2021-08-08 15:30:00', '2021-08-08 17:30:00', 'Training Server, N AB', '#d89332', 'Let me know if it doesn\'t work with your schedule, we can work something out.\nPart 2\r\n\r\nRefit/Rearm\r: Weapon Systems Familiarization/\rUtilization\r:\nConfiguring pylon\r DAGAR\r\n AGM-114K\r\nOptics\r:\n AGM-114L\r\nCamera familiarization\r AGM-114L\r\nLaser designator\r\nHMD integration\r \nFire Mission geometry:\r \n T-Lock\r \nReconnaissance\r: \nDistance To Target(DTT)\r \nSpotting targets', 545, 0, '2021-07-26 04:06:26', '2025-12-17 19:45:28', NULL, '4310980', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (945, 'Copilot Qualification', '2021-08-17 16:00:00', '2021-08-17 17:00:00', 'Training Server N AB', '#ecb200', 'Let me know if it doesn\'t work with your schedule, we can work something out.\nMap symbology, radio etiquette, grid plotting, flight route planning, fire missions (hotel/sierra/golf) 5 lines, refit/rearm/repair, weapon systems, optics, and reconnaissance.', 545, 0, '2021-07-26 04:07:52', '2025-12-17 19:45:28', NULL, '4310981', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (946, 'AIT 1 - Advanced Infantry Training Part 1', '2021-08-02 18:00:00', '2021-08-02 20:00:00', 'Training Server - Training Grounds', '#FFFFFF', 'Come to the only training that teaches you how to shoot and kill other people. We don\'t give out shiny ribbons, we give out knowledge and wisdom. Learn what we teach, maybe you make it through the next operation without dying. Then again, maybe not.', 483, 0, '2021-07-27 22:05:39', '2025-12-17 19:45:28', NULL, '4314835', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (947, 'Basic Training', '2021-08-06 18:00:00', '2021-08-06 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help. ', 639, 0, '2021-07-28 02:44:19', '2025-12-17 19:45:28', NULL, '4315713', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (948, 'Basic Training', '2021-08-12 18:00:00', '2021-08-12 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help. ', 639, 0, '2021-07-28 02:44:19', '2025-12-17 19:45:28', NULL, '4315714', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (949, 'Basic Training (Canceled lack of attendance)', '2021-08-17 18:00:00', '2021-08-17 21:00:00', 'Training Server', '#ecb200', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 1, '2021-07-28 02:47:49', '2025-12-17 19:45:28', NULL, '4315726', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (950, 'Basic Training', '2021-08-23 18:00:00', '2021-08-23 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 0, '2021-07-28 02:48:17', '2025-12-17 19:45:28', NULL, '4315730', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (951, 'Basic Training', '2021-08-29 18:00:00', '2021-08-29 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 0, '2021-07-28 02:49:01', '2025-12-17 19:45:28', NULL, '4315731', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (952, 'Alpha and Echo Joint Training', '2021-08-05 16:30:00', '2021-08-05 17:30:00', 'TrainingGrounds', '#30a68f', 'This is going to be a training, closer resembling a FTX, where Alpha and Echo can get more experience working together. The main focus will be \nground combat \nwith Echo manning Bradley\'s and Alpha with boots on ground. ', 6, 0, '2021-07-28 21:10:17', '2025-12-17 19:45:28', NULL, '4318286', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (953, 'Impromptu Basic', '2021-07-30 18:30:00', '2021-07-30 20:30:00', '17th Training Server', '#ecb200', 'Last second basic training. Join up if you\'d like', 1141, 0, '2021-07-30 20:31:12', '2025-12-17 19:45:28', NULL, '4324152', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (954, 'Echo Vehicle Crew Orientation', '2021-08-10 17:30:00', '2021-08-10 19:30:00', '', '#d89332', '', 2231, 0, '2021-08-02 21:48:20', '2025-12-17 19:45:28', NULL, '4331303', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (955, 'AIT 2- Advanced Infantry Training 2', '2021-08-09 18:00:00', '2021-08-09 20:00:00', 'Training Grounds', '#FFFFFF', 'AIT 2 - Main Training points are Battle Drill 1 and Battle Drill 2. This is basic fireteam/squad tactics and how to react to contact. Important for the newest private to the most senior NCO to know. ', 483, 0, '2021-08-03 01:35:53', '2025-12-17 19:45:28', NULL, '4331588', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (956, 'Aircrew Training & Qual', '2021-08-03 18:00:00', '2021-08-03 19:00:00', 'Northern Airbase on the Training Server', '#d89332', '', 545, 0, '2021-08-03 03:12:36', '2025-12-17 19:45:28', NULL, '4331968', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (957, 'MasterFreeFall and RSLC', '2021-08-06 17:30:00', '2021-08-06 19:00:00', '', '#a250e8', 'RRC\'s MasterFreeFall and Recon Surviellllllllllence Leadership Course.\n\nMFF is required for all RRC members, RSLC is required for NCOs to lead during an RRC mission.\n\nStart time adjusted from 7 CST to 6:30 CST.', 468, 0, '2021-08-04 20:54:47', '2025-12-17 19:45:28', NULL, '4338834', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (958, 'Marksman & Sharpshooter Qual', '2021-08-11 17:00:00', '2021-08-11 19:00:00', 'Rifle Range ', '#ecb200', 'I’ll be on for 2 hours for anyone to come take the qual. The test itself will last ~5mins each.', 6, 0, '2021-08-06 21:45:43', '2025-12-17 19:45:28', NULL, '4342996', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (959, 'Marksman and Sharpshooter Quals', '2021-08-07 14:00:00', '2021-08-07 15:00:00', '', '#355bf8', '', 639, 0, '2021-08-07 16:24:29', '2025-12-17 19:45:28', NULL, '4344515', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (960, 'RTO Bookwork', '2021-08-11 18:30:00', '2021-08-11 19:30:00', 'Training Server', '#a250e8', 'Radio Telephone Operator training. We will cover responsibilities, practices, requirements, etc.\n\nDepending on attendance, qualification may have to happen another day. \n\nPlease contact me with any questions.', 501, 0, '2021-08-07 16:40:47', '2025-12-17 19:45:28', NULL, '4344519', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (961, 'Weapons, Tactics, and Platoon Leading', '2021-08-13 16:00:00', '2021-08-13 19:30:00', 'Training Server --> Training Grounds', '#6cba50', 'Pop Rocks\'s personal mindsets on Saturdays as well as some reps with every week weapons.\n\n\nWeapons:\n- Reps with AT4s / MAAWs\n- Rates of Fire with 249s / 240s - talking machine guns\n\nTactics:\n- My personal reading map readings / my thought process(es) (if I have more than one thought) on how I choose BoFs/SBFs, and movements for flanking squads\n- How I choose what support assets focus on what elements.\n- Coming up with general plans\n- The contingencies for when plans fall apart - how to yell for help on the radioes.\n\nAsk any questions you want on how I conduct Saturdays, what my processes are when assigning weapon roles and how I envision them to be used.\n\n', 19, 0, '2021-08-08 05:57:34', '2025-12-17 19:45:28', NULL, '4345519', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (962, 'RRC Operation', '2021-08-12 18:00:00', '2021-08-12 20:00:00', '', '#ecb200', 'RRC will conduct reconnaissance of the 1-39th HQ and surrounding area IOT aid in developing a COA for the 17 BN assault. RRC QUALIFIED MEMBERS ONLY', 644, 0, '2021-08-08 14:42:48', '2025-12-17 19:45:28', NULL, '4346305', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (963, 'AIT 3 - Advanced Infantry Training 3 - MOUT', '2021-08-16 18:00:00', '2021-08-16 20:00:00', 'training range', '#FFFFFF', 'Come learn how a fire team and a squad should move through an urban environment under different situations. ', 483, 0, '2021-08-10 13:33:18', '2025-12-17 19:45:28', NULL, '4353159', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (964, 'AIT 4 - Advanced Infantry Training 4 - CQB', '2021-08-23 18:00:00', '2021-08-23 20:00:00', 'Training Range', '#FFFFFF', 'Come learn how to clear buildings and compounds as part of a fire team and squad.', 483, 0, '2021-08-10 13:34:42', '2025-12-17 19:45:28', NULL, '4353160', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (965, 'IFV Training', '2021-08-19 17:30:00', '2021-08-19 19:30:00', '', '#d89332', 'Learn the finer details of commanding an IFV. Prerequisite to earning the Mechanized Infantry Badge ', 2231, 0, '2021-08-10 23:29:40', '2025-12-17 19:45:28', NULL, '4353703', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (966, 'Fixed Wing Logistics Qual', '2021-08-21 14:00:00', '2021-08-21 16:00:00', 'Training Server', '#d89332', 'In this Qual you will be asked to\nFly the C-130\nTouch-and-go Landings\nNight Flight\nFly approach for air assault drop \nParadrop Cargo using the C-130\n\n\n', 729, 0, '2021-08-11 19:17:48', '2025-12-17 19:45:28', NULL, '4356162', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (967, 'Escape and Evade Trainging', '2021-08-19 14:00:00', '2021-08-19 16:00:00', 'Training Server', '#d89332', 'In this Training you will learn how to,\nauto rotate\nland with no anti torque\nevade enemy forces on the ground', 729, 0, '2021-08-11 19:21:31', '2025-12-17 19:45:28', NULL, '4356164', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (968, 'Basic Training', '2021-08-13 18:30:00', '2021-08-13 21:00:00', '17th Training Server - spawn at training grounds', '#ecb200', '', 1141, 0, '2021-08-11 21:00:19', '2025-12-17 19:45:28', NULL, '4356505', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (969, 'Rotary Flight Qual', '2021-08-13 18:00:00', '2021-08-13 20:00:00', 'Training Server (Northern Airfield)', '#d89332', 'IF YOU END UP ON THE WAITING LIST BE PREPARED TO TAKE THE QUAL\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/262083', 1057, 0, '2021-08-11 21:50:04', '2025-12-17 19:45:28', NULL, '4356699', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (970, 'RTO Qualification', '2021-08-13 18:30:00', '2021-08-13 21:30:00', 'Training Server', '#a250e8', 'RTO Qualification. \n\nAttendees must have gone through the RTO Bookwork at some point, and/or wish to challenge the qualification. ', 501, 0, '2021-08-12 01:11:38', '2025-12-17 19:45:28', NULL, '4356798', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (971, 'Operation Arrow', '2021-09-08 18:30:00', '2021-09-08 20:30:00', '', '#FFFFFF', 'Background\n\nUS intelligence have traced a missing SADM “backpack nuke” to Takistan, where extensive CIA operations have revealed its location to be in the hands of insurgents residing in a heavily fortified base. However, one of the CIA’s operatives has been captured, and we believe he is being held here, along with the nuke and a seized Black Hawk. As the small Takistan Army is unwilling to handle the situation, Rangers are being deployed at the request of their government to raid the insurgents’ compound, rescue the operator, destroy the heli, and secure the nuke.\r\nRangers will proceed by ground from FOB Alpha on a night raid to the objective, and 1x UN Humvee will be on standby for logistical support. Once the nuke is secured, elements will bring it and the prisoner to a passing UN convoy along the border. \r\nObjectives\n\n\nOBJ Recurve\r\n\nFind the CIA operator, retrieve the SADM, and destroy the Black Hawk, along with any weapon caches. Rescue anyone else held captive in the camp. You are not obligated to escort any non-CIA prisoners.\r Once detected, be prepared for an enemy counterattack. \nOBJ Cross\r\n\nDeliver the SADM to the UN convoy\r\nAssets\r\n\nThe Takistani Army will provide light vehicles as the US has been unable to transport any into the region.\nAdditional light vics available upon request\r', 545, 0, '2021-08-12 01:28:16', '2025-12-17 19:45:28', NULL, '4356801', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (972, 'Battle Drill Practice', '2021-08-20 18:00:00', '2021-08-20 19:30:00', '', '#6cba50', 'Back when we had time to do it we did weekly Ranger trainings, especially with battle drills. Let\'s get some practice in and get better.', 468, 0, '2021-08-12 17:10:33', '2025-12-17 19:45:28', NULL, '4358025', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (973, 'RASP', '2021-08-21 18:00:00', '2021-08-21 21:00:00', '', '#df5353', '', 19, 0, '2021-08-15 21:25:02', '2025-12-17 19:45:28', NULL, '4366186', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (974, 'Battalion Training', '2021-08-28 18:00:00', '2021-08-28 21:00:00', '', '#df5353', '', 19, 0, '2021-08-15 21:25:33', '2025-12-17 19:45:28', NULL, '4366187', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (975, 'Basic Training', '2021-08-16 14:00:00', '2021-08-16 17:30:00', '', '#008ae1', '', 639, 0, '2021-08-16 04:47:14', '2025-12-17 19:45:28', NULL, '4367341', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (976, 'General Flight Training', '2021-08-19 17:00:00', '2021-08-19 19:00:00', 'Trainning server', '#d89332', 'this is the first of a new series of General flight trainings. during these trainings we will be going over General flight practices As well as flying specific Mission types. \nin this training we will be flying MH-6M in and out of hot LZ while flying in formation.', 729, 0, '2021-08-17 19:39:31', '2025-12-17 19:45:28', NULL, '4373933', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (977, 'Marksman & Sharpshooter Qual', '2021-08-20 14:00:00', '2021-08-20 15:00:00', 'Rifle Range', '#355bf8', 'I\'ll be on for an hour so anyone can come take the qual during the 1 hour I am there.', 6, 0, '2021-08-18 16:17:36', '2025-12-17 19:45:28', NULL, '4378479', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (978, 'Marksman & Sharpshooter Qual', '2021-08-21 17:00:00', '2021-08-21 18:00:00', 'Rifle Range', '#008ae1', 'I\'ll be on for an hour so anyone can come on to take the qual during the 1 hour that I\'m there. ', 6, 0, '2021-08-18 16:20:11', '2025-12-17 19:45:28', NULL, '4378509', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (979, 'Unit Lead Meeting', '2021-08-21 16:30:00', '2021-08-21 17:30:00', 'Command Office (Teamspeak)', '#FFFFFF', 'A quick powwow for the unit leads and HHC to get on the same page for the new term.', 1104, 0, '2021-08-18 19:10:24', '2025-12-17 19:45:28', NULL, '4379085', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (980, 'IFV Qualification', '2021-08-21 14:00:00', '2021-08-21 16:00:00', 'Training Server - Northern Airfield', '#d89332', 'This is the qualification for the IFV badge. This is NOT a training, but an assessment to determine whether individual(s) receive the badge.\nYou can attempt this without having taken the training, but it is encouraged to attend IFV training at least once.\nIf not enough people sign up or are able to attend to help with assessment, the qualification may be postponed to a future date and time.', 309, 0, '2021-08-18 22:30:44', '2025-12-17 19:45:28', NULL, '4380358', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (981, 'IDF Training (Mortars and Arty)', '2021-08-27 17:00:00', '2021-08-27 20:00:00', 'Training Server', '#d89332', '', 639, 0, '2021-08-20 05:02:11', '2025-12-17 19:45:28', NULL, '4387305', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (982, 'Copilot Qualification', '2021-08-28 14:30:00', '2021-08-28 16:00:00', '', '#d89332', '', 545, 0, '2021-08-20 16:38:29', '2025-12-17 19:45:28', NULL, '4389739', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (983, 'Basic Training - Requested Alternate', '2021-08-20 18:00:00', '2021-08-20 21:00:00', '', '#FFFFFF', 'Please make sure you have mod installed and TFAR set up prior to the start time. See \nfor help.\n\nMeet in Teamspeak 15 Min Prior to Training in 17th BN Recruitment ROOM 1', 38, 0, '2021-08-20 19:44:20', '2025-12-17 19:45:28', NULL, '4390051', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (984, 'CANCELED - Rotary Logistics Flight Qual', '2021-08-23 18:00:00', '2021-08-23 20:00:00', 'Training Server (Northern Airfield)', '#d89332', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/262083', 1057, 1, '2021-08-21 01:00:39', '2025-12-17 19:45:28', NULL, '4391258', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (985, 'CLS, 68W Training', '2021-08-21 15:00:00', '2021-08-21 17:30:00', '', '#6cba50', 'Last minute training happening\nEdit: you can show up late\n', 2229, 0, '2021-08-21 02:31:01', '2025-12-17 19:45:28', NULL, '4391748', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (986, 'Campaign Map Testing', '2021-08-22 18:00:00', '2021-08-22 19:30:00', '', '#30a68f', 'Testing the campaign map for errors, any help would be appreciated \n\nMake sure you get the map downloaded: https://steamcommunity.com/sharedfiles/filedetails/?id=2266710560', 468, 0, '2021-08-21 17:24:39', '2025-12-17 19:45:28', NULL, '4394209', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (987, 'Operation Flapjack', '2021-09-01 18:00:00', '2021-09-01 20:00:00', '', '#FFFFFF', 'Operation Details:\n Rescue the American Pilot from the CHDKZ that have occupied the island. \n\nMap:\n Utes\n\nMods:\n 17th Ranger Battalion Shadow Mod\n\nServer:\n 17th Private Operations Server\nAvailable Assets:\n 2x RHIB, 4x SDV, 1x MH-6, 1x Yabhon', 322, 0, '2021-08-23 23:15:41', '2025-12-17 19:45:28', NULL, '4402634', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (988, 'Ranger Training', '2021-08-27 18:00:00', '2021-08-27 20:30:00', 'Training Server --> Training Range', '#6cba50', 'Air Assault Topics\n\n\n', 19, 0, '2021-08-24 02:24:22', '2025-12-17 19:45:28', NULL, '4402823', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (989, 'FTL/2IC Training', '2021-09-10 15:00:00', '2021-09-10 17:00:00', '', '#ecb200', 'How to win friends and lead them into battle', 15, 0, '2021-08-27 20:15:46', '2025-12-17 19:45:28', NULL, '4414282', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (990, 'Operation Shattered Hope Part 1', '2021-09-04 18:00:00', '2021-09-04 20:30:00', '', '#df5353', 'So madness now has wrapped its wings', 468, 0, '2021-08-28 22:22:12', '2025-12-17 19:45:28', NULL, '4420735', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (991, 'Operation Shattered Hope Part 2', '2021-09-11 18:00:00', '2021-09-11 20:30:00', '', '#df5353', 'Around half my soul and plies me, heartless', 468, 0, '2021-08-28 22:22:45', '2025-12-17 19:45:28', NULL, '4420738', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (992, 'Operation Shattered Hope Part 3', '2021-09-18 18:00:00', '2021-09-18 20:30:00', '', '#df5353', 'And with draughts of fiery wine, begins', 468, 0, '2021-08-28 22:23:26', '2025-12-17 19:45:28', NULL, '4420739', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (993, 'Operation Shattered Hope Part 4', '2021-09-25 18:00:00', '2021-09-25 20:30:00', '', '#df5353', 'To lure me towards the vale of darkness.', 468, 0, '2021-08-28 22:23:50', '2025-12-17 19:45:28', NULL, '4420741', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (994, 'Battalion Training', '2021-10-02 18:00:00', '2021-10-02 20:00:00', '', '#df5353', '', 468, 0, '2021-08-28 22:24:01', '2025-12-17 19:45:28', NULL, '4420742', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (995, 'Operation Shattered Hope Part 5', '2021-10-09 18:00:00', '2021-10-09 20:30:00', '', '#df5353', 'And I can see that I must now', 468, 0, '2021-08-28 22:24:24', '2025-12-17 19:45:28', NULL, '4420744', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (996, 'Operation Shattered Hope Part 6', '2021-10-16 18:00:00', '2021-10-16 20:30:00', '', '#df5353', 'Concede the victory, as I listen,', 468, 0, '2021-08-28 22:25:07', '2025-12-17 19:45:28', NULL, '4420747', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (997, 'Operation Shattered Hope Part 7', '2021-10-23 18:00:00', '2021-10-23 20:30:00', '', '#df5353', 'As the dream that dogged my fevered brow', 468, 0, '2021-08-28 22:25:34', '2025-12-17 19:45:28', NULL, '4420748', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (998, 'Operation Shattered Hope Finale', '2021-10-30 18:00:00', '2021-10-30 20:30:00', '', '#df5353', 'Already seems like a fleeting hope.', 468, 0, '2021-08-28 22:26:31', '2025-12-17 19:45:28', NULL, '4420749', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (999, 'RRC Operation', '2021-08-31 18:00:00', '2021-08-31 20:30:00', '', '#df5353', 'I have seen. Woe and tragedy.\n\nI have seen. Death and carnage.\n\nI have seen. Neglect and blasphemy.', 468, 0, '2021-08-28 23:07:46', '2025-12-17 19:45:28', NULL, '4421150', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1000, 'Copilot Pt2 + Qualification', '2021-09-02 18:00:00', '2021-09-02 20:00:00', 'Training Server', '#d89332', '', 545, 0, '2021-08-29 22:34:35', '2025-12-17 19:45:28', NULL, '4424456', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1001, '[RESCHEDULED] Land Navigation', '2021-09-03 18:30:00', '2021-09-03 20:30:00', 'Training Grounds', '#FFFFFF', 'Plan on doing a Land Navigation class Today. Please note this is a Tentative event time.\n\nEvent has been marked as RESCHEDULED on 8/30/2021\n\n\n\nEvent is going to be re-scheduled. Conflict on time. New event date/time is yet to be determined and will be posted when decided', 38, 0, '2021-08-30 00:59:25', '2025-12-17 19:45:29', NULL, '4424687', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1002, 'Marksman/Sharpshooter', '2021-08-30 18:00:00', '2021-08-30 19:00:00', '', '#FFFFFF', 'Training grounds rifle range', 81, 0, '2021-08-30 03:06:56', '2025-12-17 19:45:29', NULL, '4424932', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1003, 'Basic Training', '2021-09-06 18:00:00', '2021-09-06 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 0, '2021-09-02 17:15:29', '2025-12-17 19:45:29', NULL, '4438802', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1004, 'Basic Training', '2021-09-14 18:00:00', '2021-09-14 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 0, '2021-09-02 17:15:29', '2025-12-17 19:45:29', NULL, '4438804', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1005, 'Basic Training', '2021-09-23 18:00:00', '2021-09-23 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 0, '2021-09-02 17:16:09', '2025-12-17 19:45:29', NULL, '4438807', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1006, 'Basic Training', '2021-10-01 18:00:00', '2021-10-01 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 0, '2021-09-02 17:16:27', '2025-12-17 19:45:29', NULL, '4438808', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1007, 'Canceled-Basic Training', '2021-10-03 18:00:00', '2021-10-03 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.\n\nKraige - Unable to make it tonight to host basic. Apologizes to those who are signed up I will reach out and work out a time that works for you. ', 639, 1, '2021-09-02 17:18:52', '2025-12-17 19:45:29', NULL, '4438809', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1008, 'Basic Training', '2021-10-19 18:00:00', '2021-10-19 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 0, '2021-09-02 17:18:52', '2025-12-17 19:45:29', NULL, '4438810', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1009, 'Basic Training', '2021-10-11 18:00:00', '2021-10-11 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 0, '2021-09-02 17:18:52', '2025-12-17 19:45:29', NULL, '4438811', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1010, 'Basic Training', '2021-11-05 18:00:00', '2021-11-05 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 0, '2021-09-02 17:18:52', '2025-12-17 19:45:29', NULL, '4438812', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1011, 'Basic Training', '2021-10-28 18:00:00', '2021-10-28 21:00:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 0, '2021-09-02 17:19:43', '2025-12-17 19:45:29', NULL, '4438814', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1012, 'Basic Training (Canceled)', '2021-11-07 18:00:00', '2021-11-07 20:59:00', 'Training Server', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 639, 1, '2021-09-02 17:21:01', '2025-12-17 19:45:29', NULL, '4438816', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1013, '(Cancelled) IDF Training and Qual (Mortars and Arty', '2021-09-07 18:00:00', '2021-09-07 20:30:00', 'Training Server', '#d89332', '', 639, 1, '2021-09-02 17:22:51', '2025-12-17 19:45:29', NULL, '4438817', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1014, 'Echo Ground Crew Familiarization', '2021-09-06 17:30:00', '2021-09-06 19:30:00', '', '#d89332', 'An overview of the Echo Ground Assets from Mortars to Abrams. Covers crew duties, and LR radio operations. ', 2231, 0, '2021-09-02 23:06:37', '2025-12-17 19:45:29', NULL, '4439233', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1015, 'Aircrew Training & Qualification', '2021-09-18 16:15:00', '2021-09-18 17:00:00', 'Training Server', '#ecb200', 'Basics of how to function as a door gunner and crew chief in the Chinhook and Black Hawk', 545, 0, '2021-09-03 13:40:51', '2025-12-17 19:45:29', NULL, '4440800', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1016, 'Combat Diver School', '2021-09-09 18:00:00', '2021-09-09 20:00:00', 'Training Server', '#a250e8', 'I fucking hate you guys\n RRC\'s Combat Diver School.', 468, 0, '2021-09-03 15:11:36', '2025-12-17 19:45:29', NULL, '4441271', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1017, 'Land Navigation', '2021-09-06 18:30:00', '2021-09-06 20:30:00', '', '#FFFFFF', '', 38, 0, '2021-09-03 18:18:35', '2025-12-17 19:45:29', NULL, '4441822', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1018, 'Training Meeting to work out joint logistics.', '2021-09-06 14:00:00', '2021-09-06 15:00:00', 'southern air field', '#FFFFFF', 'This is for the trainers to get together to work stuff out.', 483, 0, '2021-09-05 17:12:17', '2025-12-17 19:45:29', NULL, '4448883', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1019, 'AIT 1 - Advanced Infantry Training', '2021-09-16 18:00:00', '2021-09-16 20:00:00', 'Training Grounds', '#FFFFFF', 'Come start your journey of becoming a good infantryman. It starts with AIT 1. ', 483, 0, '2021-09-06 02:44:31', '2025-12-17 19:45:29', NULL, '4450515', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1020, 'Jump School ! - Come get those wings', '2021-09-13 18:00:00', '2021-09-13 20:00:00', 'Training Range', '#FFFFFF', 'can\'t be an Airborne Ranger without the Airborne!\ncome get those jump wings. Chicks dig internet cookies.', 483, 0, '2021-09-06 15:03:56', '2025-12-17 19:45:29', NULL, '4451787', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1021, 'Air Assault - Ranger Training Phase - Instructional', '2021-09-20 18:00:00', '2021-09-20 20:00:00', 'Southern Airfield ', '#FFFFFF', 'All are invited to come. It is recommended to participate in this training if you want to participate in the FTX later. This is the crawl/walk phase. The FTX will be at a run right from the start.\nThis training will concentrate on clearing a building top down. Ideally, we will have a squad minimum. CQB will NOT be taught. This training is more about using the skills from other trainings together and getting reps in\nFor that, I will need leadership volunteers.\n1x Squad Leader\n1x Medic Qualified\n2x Fire Team Leaders\nPost here if you want a leadership position.\nIf a second squad comes, double it. If no one volunteers highest rank currently unassigned will be picked. I may also need trainer assistants or part players. NCOs would be picked for those roles.\nAgain, the purpose of this training is to take all the skills learned from other trainings and combine them into some high speed cool guy stuff. \nWe will be snuffing out the lives of bad guys and rescuing hostages. The more that show up, the cooler it will be.', 483, 0, '2021-09-06 15:26:13', '2025-12-17 19:45:29', NULL, '4451803', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1022, 'Operation: Poseidon', '2021-09-15 18:00:00', '2021-09-15 20:00:00', '', '#ecb200', 'Operation Details:\n Pirates have captured the Island. Secure the Island and Eliminate the HVT.\nMap:\n Porto\nMods:\n 17th Ranger Battalion Shadow Mod\nServer:\n 17th Private Operations Server\nAvailable Assets:\n 6x RHIB 1x UH-60', 322, 0, '2021-09-09 11:21:06', '2025-12-17 19:45:29', NULL, '4458628', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1023, 'JTAC bookwork', '2021-09-13 16:00:00', '2021-09-13 18:00:00', '', '#FFFFFF', 'Come learn how to drop some warheads on foreheads! I\'ll go over the CAS document and give some tips and tricks on how to properly call in an airstrike.\nMight have time afterwards to qual people but not 100% sure.', 516, 0, '2021-09-09 19:52:01', '2025-12-17 19:45:29', NULL, '4461883', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1024, 'Pilot Qualification', '2021-09-10 18:30:00', '2021-09-10 20:30:00', '', '#d89332', 'Flight Crew Code of Conduct:\r\nDuring this qualification you will be tested on how well you perform various tasks that will be required of you as a Echo Company Rotary Pilot. You will be expected to plot your grid coordinates and flight path while in the air with forward movement.\r\nFailure Criteria\r\n A hard failure will result in immediate failure of the Qual. A soft failure will result in a strike.\r\nHard Fails\r\nSoft Fails\r\nIf a failure is issued you may not retake the qualification for a minimum 1 week period. You must also show notable improvement in the test section you received a fail on.\r\nAirframes\r\nMH-6\r\nUH-60M\r\nCH-47F\r\nQual Tasks\r\nMH-6:\r\nUH-60M:\r\nCH-47F:\r\nChangelog:', 545, 0, '2021-09-10 00:54:44', '2025-12-17 19:45:29', NULL, '4462044', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1025, 'Pathfinder Bookwork', '2021-09-14 18:00:00', '2021-09-14 20:00:00', 'Training Range', '#FFFFFF', 'Pre-req for the Pathfinder Qualification, be there or be square', 850, 0, '2021-09-10 01:10:24', '2025-12-17 19:45:29', NULL, '4462052', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1026, 'Pilot Qualification', '2021-09-16 21:30:00', '2021-09-16 22:30:00', '', '#d89332', '', 545, 0, '2021-09-12 16:45:16', '2025-12-17 19:45:29', NULL, '4472951', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1027, 'Copilot Training Day 1', '2021-09-24 18:00:00', '2021-09-24 20:00:00', 'Northern Airbase', '#ecb200', '', 545, 0, '2021-09-12 16:45:58', '2025-12-17 19:45:29', NULL, '4472982', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1028, 'Copilot Training Day 2', '2021-09-25 16:00:00', '2021-09-25 18:00:00', '', '#ecb200', '', 545, 0, '2021-09-12 16:47:00', '2025-12-17 19:45:29', NULL, '4472983', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1029, 'Master Free Fall School and RSLC', '2021-09-17 18:00:00', '2021-09-17 19:30:00', '', '#a250e8', 'RRC\'s MFF course and RSLC. MFF is required for all RRC candidates, RSLC is required for NCOs to lead an RRC mission, is helpful for everyone, but otherwise optional for those who do not want to lead.', 468, 0, '2021-09-12 17:45:18', '2025-12-17 19:45:29', NULL, '4473063', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1030, 'Pathfinder Qualification', '2021-09-19 18:00:00', '2021-09-19 21:00:00', 'Private Operations Server', '#a250e8', 'RRC\'s Pathfinder Qualification. Pathfinder bookwork and MFF are required to attend.', 468, 0, '2021-09-12 17:45:54', '2025-12-17 19:45:29', NULL, '4473064', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1031, 'Land Nav Alternate', '2021-09-22 18:00:00', '2021-09-22 20:30:00', '', '#FFFFFF', 'Alternate scheduling Land Nav Course for member who could not attend the 6th due to Time Zone Differences (Work Schedule, and timing)', 38, 0, '2021-09-13 02:09:26', '2025-12-17 19:45:29', NULL, '4473789', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1032, 'Rescheduled (OP) Time Travel with Ms.Frizzle and the 17th', '2021-09-26 18:00:00', '2021-09-26 21:00:00', 'Iceberg Side Ops server', '#ecb200', '17TH mods + additions (Mod list coming)\n17th is tasked to kill hitler in the past cause future nazis are trying to go back and time and give him tech. Thankfully Ms.Frizzle lent out her magic school bus to pay for back taxes. It makes 100% sense...trust me.', 639, 0, '2021-09-13 03:58:03', '2025-12-17 19:45:29', NULL, '4473825', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1033, 'Battalion NCO Meetings', '2021-09-18 17:00:00', '2021-09-18 17:45:00', '', '#FFFFFF', '', 19, 0, '2021-09-15 22:40:13', '2025-12-17 19:45:29', NULL, '4486006', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1034, 'IFV Qualification', '2021-09-18 13:00:00', '2021-09-18 15:00:00', 'Training Server - Northern Airfield', '#d89332', 'This is the qualification exam for the Mechanized Infantry Badge. Anyone is allowed to attempt this; however, it is recommended you attend an IFV training session prior to attempting. There is NOT a training portion during the qualification.', 309, 0, '2021-09-15 23:35:21', '2025-12-17 19:45:29', NULL, '4486265', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1035, 'Pathfinder Bookwork', '2021-09-20 15:00:00', '2021-09-20 18:00:00', 'Southern Airbase I guess', '#FFFFFF', 'I\'ll actually be there this time teaching it lol', 850, 0, '2021-09-18 13:20:54', '2025-12-17 19:45:29', NULL, '4492184', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1036, 'Operation Flashpoint', '2021-09-22 18:00:00', '2021-09-22 20:00:00', '', '#df5353', 'Operation Details:\n The US embassy is currently under siege by extremists and the ambassador needs to be extracted from within. A small garrison of US troops is holding back the attack but they can\'t withstand it for long\n\nMap:\n Zargabad\n\nMods:\n 17th Ranger Battalion Shadow Mod\n\nServer:\n 17th Private Operations Server\nAvailable Assets:\n 4x Humvee w/ .50 cal', 1141, 0, '2021-09-18 18:04:21', '2025-12-17 19:45:29', NULL, '4493166', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1037, 'AIT 2 - Battle Drills', '2021-09-23 18:00:00', '2021-09-23 20:00:00', 'Training Grounds', '#FFFFFF', 'Battle Drills\nLittle document I wrote up specifically for battle drill 1/2\n\n\nhttps://docs.google.com/document/d/1nkjdnJMpPKN1Fu4aYkFFxpAZzSewi2_DWXWXrmvvcUQ/edit?usp=sharing\n', 483, 0, '2021-09-18 18:47:24', '2025-12-17 19:45:29', NULL, '4493233', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1038, 'Battalion NCO Meetings', '2021-09-25 16:00:00', '2021-09-25 16:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496603', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1039, 'Battalion NCO Meetings', '2021-10-02 16:00:00', '2021-10-02 16:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496604', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1040, 'Battalion NCO Meetings', '2021-12-11 18:00:00', '2021-12-11 18:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496605', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1041, 'Battalion NCO Meetings', '2021-12-04 18:00:00', '2021-12-04 18:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496606', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1042, 'Battalion NCO Meetings', '2021-11-27 18:00:00', '2021-11-27 18:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496607', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1043, 'Battalion NCO Meetings', '2021-10-23 16:00:00', '2021-10-23 16:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496608', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1044, 'Battalion NCO Meetings', '2021-11-06 16:00:00', '2021-11-06 16:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496609', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1045, 'Battalion NCO Meetings', '2021-10-30 16:00:00', '2021-10-30 16:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496610', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1046, 'Battalion NCO Meetings', '2021-10-16 16:00:00', '2021-10-16 16:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496611', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1047, 'Battalion NCO Meetings', '2021-10-09 16:00:00', '2021-10-09 16:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496612', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1048, 'Battalion NCO Meetings', '2021-11-13 18:00:00', '2021-11-13 18:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496613', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1049, 'Battalion NCO Meetings', '2022-01-22 18:00:00', '2022-01-22 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496614', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1050, 'Battalion NCO Meetings', '2022-01-29 18:00:00', '2022-01-29 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496615', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1051, 'Battalion NCO Meetings', '2022-02-05 18:00:00', '2022-02-05 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496616', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1052, 'Battalion NCO Meetings', '2022-01-15 18:00:00', '2022-01-15 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496617', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1053, 'Battalion NCO Meetings', '2022-02-19 18:00:00', '2022-02-19 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496618', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1054, 'Battalion NCO Meetings', '2022-03-19 17:00:00', '2022-03-19 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496619', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1055, 'Battalion NCO Meetings', '2021-12-18 18:00:00', '2021-12-18 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496621', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1056, 'Battalion NCO Meetings', '2022-01-08 18:00:00', '2022-01-08 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496622', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1057, 'Battalion NCO Meetings', '2021-11-20 18:00:00', '2021-11-20 18:30:00', '', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496624', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1058, 'Battalion NCO Meetings', '2022-02-26 18:00:00', '2022-02-26 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496625', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1059, 'Battalion NCO Meetings', '2022-03-12 18:00:00', '2022-03-12 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496626', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1060, 'Battalion NCO Meetings', '2022-03-26 17:00:00', '2022-03-26 17:45:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496627', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1061, 'Battalion NCO Meetings', '2022-02-12 18:00:00', '2022-02-12 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496628', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1062, 'Battalion NCO Meetings', '2022-03-05 18:00:00', '2022-03-05 18:30:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2021-09-19 18:20:49', '2025-12-17 19:45:29', NULL, '4496629', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1063, 'Platoon Leadership Course', '2021-09-25 09:00:00', '2021-09-25 10:30:00', 'TBD', '#a250e8', '', 19, 0, '2021-09-19 18:21:46', '2025-12-17 19:45:29', NULL, '4496630', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1064, 'Shattered Hope 4 RRC', '2021-09-21 18:00:00', '2021-09-21 21:00:00', 'Lingor', '#FFFFFF', 'hoodrat type shit', 850, 0, '2021-09-20 03:50:33', '2025-12-17 19:45:29', NULL, '4499526', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1065, 'RTO / Communication Ribbon qual', '2021-09-21 18:00:00', '2021-09-21 21:00:00', 'Training Server', '#6cba50', '', 639, 0, '2021-09-21 14:50:39', '2025-12-17 19:45:29', NULL, '4505800', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1066, 'CLS/68W', '2021-09-25 14:00:00', '2021-09-25 17:00:00', '', '#ecb200', 'Be on time for dis one\nLearn how to CLS \nLearn how to 68 W', 2229, 0, '2021-09-21 16:46:13', '2025-12-17 19:45:29', NULL, '4506039', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1067, 'JTAC qual', '2021-09-24 18:00:00', '2021-09-24 21:00:00', '', '#FFFFFF', 'Earn that sweet JTAC ribbon', 516, 0, '2021-09-22 22:44:44', '2025-12-17 19:45:29', NULL, '4508342', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1068, 'AIT 3 - MOUT', '2021-09-30 18:00:00', '2021-09-30 20:00:00', 'Private Ops Server', '#FFFFFF', 'AIT 3 (Advanced Infantry Training) 3 - MOUT (Military Operations in Urban Terrain). Learn how to move through an Urban Environment in the safest way possible. ', 483, 0, '2021-09-24 13:09:06', '2025-12-17 19:45:29', NULL, '4511471', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1069, 'Basic Training', '2021-09-25 11:30:00', '2021-09-25 14:00:00', '17th Training Range', '#ecb200', '', 1141, 0, '2021-09-24 15:41:04', '2025-12-17 19:45:29', NULL, '4512090', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1070, 'Anti Armor School', '2021-10-01 18:00:00', '2021-10-01 19:30:00', 'Training Server', '#6cba50', 'Anti Armor School, learning the ins and outs of enemy vehicles so we can kill them more better. One of two courses required for the Heavy Weapons ribbon.', 468, 0, '2021-09-24 23:12:45', '2025-12-17 19:45:29', NULL, '4512562', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1071, 'Echo Ground Crew Familiarization', '2021-10-04 18:00:00', '2021-10-04 20:00:00', '', '#d89332', 'Learn how to crew the various ground assets Echo employs. ', 2231, 0, '2021-09-26 17:27:45', '2025-12-17 19:45:29', NULL, '4516078', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1072, 'Operation Thundering Blow', '2021-10-06 18:00:00', '2021-10-06 20:00:00', '17th Private operations server', '#df5353', 'NATO has picked up some radio traffic that CSAT is becoming active on an island in the Mediterranean. This is worrying as Russian ships have been spotted holding only a few miles off the coast of said island. With the presence of 3 major world powers on one Island only one thing is clear, trouble. \n\nNATO Regional command of the South East has tasked the 17th to use an old air strip on the island and investigate near by CSAT activity in Pefkas Bay region in an attempt to find out what they are doing there. Once the reason is discovered report back to NATO SE and await further orders...truth be told we\'re expecting more trouble than just a recon mission. \n\nAll assets are at your disposal, civilians have long left the island, you are free fire. Briefing will be held in Team speak before loading in. Good luck, you\'re gonna need it. ', 639, 0, '2021-09-26 22:39:33', '2025-12-17 19:45:29', NULL, '4516287', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1073, 'Rotary Logistics Pilot Qualification - Rescheduled', '2021-10-01 18:30:00', '2021-10-01 19:30:00', '', '#d89332', '', 545, 0, '2021-09-28 02:18:55', '2025-12-17 19:45:29', NULL, '4518993', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1074, 'Operation Black Eye', '2021-09-29 18:30:00', '2021-09-29 20:00:00', '', '#df5353', 'Operation Details:\n After being stationed on Altis to engage in a peacekeeping mission between the AAF and separatist forces throughout the island, the 17th was caught flat footed by an assault from the AAF. Cut off from any friendly support and scattered across the island, a radio tower in the Northwestern portion of Altis is the only hope for help.\n\nMap:\n Altis\n\nMods:\n 17th Ranger Battalion Shadow Mod\n\nServer:\n 17th Private Operations Server\nAvailable Assets:\n Grit, spit, and your bugout bag', 1141, 0, '2021-09-28 23:32:33', '2025-12-17 19:45:29', NULL, '4528953', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1075, 'Marksman and Sharpshooter Qual', '2021-10-08 18:30:00', '2021-10-08 20:30:00', 'Training Server ', '#FFFFFF', 'I will be hosting a Marksman and Sharpshooter Qual on the training server at the rifle range. Come on by if you want to run some fancy scopes from 3x to 4x! ', 6, 0, '2021-10-02 05:24:53', '2025-12-17 19:45:29', NULL, '4536351', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1076, 'Co-Pilot Qualification', '2021-10-08 18:30:00', '2021-10-08 19:30:00', '', '#d89332', '', 545, 0, '2021-10-03 16:08:25', '2025-12-17 19:45:29', NULL, '4539147', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1077, 'Operation Snow Angels', '2021-10-13 18:00:00', '2021-10-13 20:00:00', 'Private Operations Server', '#df5353', 'Friendly Assets: \n2x LAV-25\n1x M60A3 MBT\n\n\n\nBrief:\n\n\nSituation:\n The Chedaki have aggressively pushed into the Cherno region. They\'ve pushed back the friendly UN forces from the major Airfield and have seized the western side of the Island.\nThe 17th Ranger Battalion is being deployed discretely along the coast on the west to punch a hole through Kamenka and head north to stage vehicles for the rest of the force to arrive in country.\nObjectives:\n Successfully push along the pre-determined route keeping all 3 vehicles alive. Once you arrive at Zelengorsk with the vehicles, prepare to defend in case enemies come from the rear trying to encircle you.\n\nSecondary OBJ:\n Destroy a weapons depot within Kamenka along the dock, along with multiple AA Boats to clear the sky for friendly air when it arrives.\n\nFailure Criteria:\n Losing all 3 vehicles in the field (each vehicle has plenty of spare tires/tracks), the enemy has minimal LAT/MAT, and only a few heavier vehicles.', 19, 0, '2021-10-04 16:31:39', '2025-12-17 19:45:29', NULL, '4540903', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1078, 'AIT 4 - CQB', '2021-10-07 18:00:00', '2021-10-07 20:00:00', 'Training Range', '#FFFFFF', 'Come learn to clear rooms, buildings and compounds.', 483, 0, '2021-10-04 21:20:50', '2025-12-17 19:45:29', NULL, '4541281', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1079, '17th Side Op-Open Zeus', '2021-10-20 18:00:00', '2021-10-20 21:00:00', '17th Private Operations Server', '#df5353', 'Open Zeus, operation is whatever people feel like playing. This is a operation for new mission makers to gain experience while more experienced ones help make sure people play the operation they feel like that night. All assets on the table. ', 639, 0, '2021-10-10 06:04:27', '2025-12-17 19:45:29', NULL, '4563823', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1080, 'Fixed-Wing Logistics', '2021-10-11 15:00:00', '2021-10-11 17:00:00', '17th battalion training server', '#d89332', 'In this Qual you will be asked to\nFly the C-130 and C-17\nTouch-and-go Landings\nNight Flight\nFly approach for air assault drop \nParadrop Cargo using the C-130 and C-17', 729, 0, '2021-10-10 19:29:07', '2025-12-17 19:45:29', NULL, '4564599', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1081, 'Air Wing Trainer Qualification', '2021-10-12 16:00:00', '2021-10-12 18:00:00', '17th battalion training server', '#d89332', 'During this Qualification you will be questioned on your knowledge in regards to:\nGeneral Air Wing operations \nAir Crew Training\nCopilot Training\nPilot Qualifications\nCAS Qualifications. \n \n', 729, 0, '2021-10-10 19:32:58', '2025-12-17 19:45:29', NULL, '4564602', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1082, 'Training FTX', '2021-10-15 18:30:00', '2021-10-15 20:30:00', 'Private Ops Server', '#FFFFFF', 'We are going to use Hearts and Minds on the Private Ops server to do some training missions.\nRules are the same as Saturday Ops.\nThe server generates missions, so we will know what we have to do once we log in.\nWe can use pilots, co-pilots, CAS, FO, JTAC, Infantry, EOD, RRC, etc.\nJoin up, get some reps in so you shine on Saturdays.\n', 483, 0, '2021-10-11 22:43:51', '2025-12-17 19:45:29', NULL, '4566762', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1083, 'IFV Training', '2021-10-14 18:00:00', '2021-10-14 20:00:00', 'Northern Airfield, Training Server', '#d89332', 'This will be the training portion of the Mechanized Infantry Badge. We will go over vehicle repair, operation, prowords, and roles. This will be followed by a training portion.\nNote: This does NOT count as qualification for the Mechanized Infantry Badge. That portion will be held at another date.', 309, 0, '2021-10-11 23:18:10', '2025-12-17 19:45:29', NULL, '4566768', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1084, 'IFV Qual', '2021-10-16 13:00:00', '2021-10-16 15:00:00', 'Northern Airfield, Training Server', '#d89332', 'This is the qualification assessment for the Mechanized Infantry Badge. There will not be any training at this time, as it will be devoted purely to assessment. Attendance of training portion is not mandatory, but it is is encouraged to ensure familiarization.', 309, 0, '2021-10-11 23:20:21', '2025-12-17 19:45:29', NULL, '4566769', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1085, 'NO OFFICAL EVENTS FOR HOLIDAY BREAK', '2021-12-23 21:00:00', '2022-01-02 22:00:00', 'SPEND TIME WITH YA PPL NO OFFICAL EVENTS DURING THIS TIME BLOCK', '#df5353', '', 43, 0, '2021-10-13 00:46:58', '2025-12-17 19:45:29', NULL, '4568542', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1086, 'JTAC Bookwork', '2021-10-15 18:00:00', '2021-10-15 20:00:00', '', '#d89332', 'Come learn how to drop warheads on some foreheads!', 516, 0, '2021-10-13 02:08:10', '2025-12-17 19:45:29', NULL, '4568602', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1087, 'Jumpschool an Jumpmaster Crash Course', '2021-10-16 15:00:00', '2021-10-16 17:00:00', 'Training Server', '#ecb200', 'I\'ma teach you how to jump of any helicopter or plane and not die. Then I\'m gonna teach you how to make other people jump out of aircraft once you guys stop dying on the ground. Jump or die, qualifications will depend on survival rate. ', 639, 0, '2021-10-15 06:21:20', '2025-12-17 19:45:29', NULL, '4572153', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1088, 'Aircrew Training', '2021-10-23 15:00:00', '2021-10-23 17:00:00', '17th Training Server ', '#ecb200', '', 744, 0, '2021-10-16 04:21:44', '2025-12-17 19:45:29', NULL, '4574382', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1089, 'Land Nav Training and Qual', '2021-10-18 18:00:00', '2021-10-18 20:00:00', '17th Training Server - Training Grounds', '#ecb200', 'This will go over all the aspects of Land Nav you are expected to understand to get your Land Nav ribbon followed by a pass/fail qualification.', 1141, 0, '2021-10-16 14:16:37', '2025-12-17 19:45:29', NULL, '4574712', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1090, 'Contact Identification Training', '2021-10-17 18:00:00', '2021-10-17 20:00:00', '17th Training Server - Training Grounds', '#ecb200', 'We will practice estimating ranges, identifying contact bearing by ear, and communicating to the rest of the fireteam/team lead.', 1141, 0, '2021-10-16 14:35:04', '2025-12-17 19:45:29', NULL, '4574713', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1091, 'Rotary Logistics Qualification', '2021-10-18 18:00:00', '2021-10-18 20:00:00', '17th Training Server', '#d89332', '', 744, 0, '2021-10-17 02:16:45', '2025-12-17 19:45:29', NULL, '4575829', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1092, 'FTX - Hearts and Minds', '2021-10-21 18:00:00', '2021-10-21 20:30:00', 'Private Ops server', '#FFFFFF', 'Going to run FTX on Private Ops Server.\nMust attend all the way through at least 1 mission for attendance to count.\nIf you are interested in a particular role, post on this event. First come, first serve.\nRoles needed:\nAlpha Roles\n\n\nPlatoon Lead\n - Come get some experience planning mission(s).\nM\nedic\n - get some reps in healing your wounded comrades. \n\nSquad Lead(s)\n - Lead your comrades into certain danger. \n\nFire Team lead(s)\n - Be a leader of men. \n\nFire Team Members \n- Standard roles, AR, MAT, LAT, AAR, Grenadier, 2IC, etc. \nEcho Roles\n\n\nHelicopter Transport Pilot\n - Want to fly into a hot LZ? We can make that happen!\n\nCAS \n- Being honest, could have used some last week.\n\nJTAC/FO/RTO\n - Depends on other assets being available, but always nice to have someone to talk to while hiding behind walls.\n\nIFV Slots - \nWe got a Rooikat, just need people to man it.\nRules\n\nThis is an Official 17th training event. That means only guns/camo/ loadouts allowed during official 17th events. If you can\'t use it on a Saturday, you can\'t use it here either.\nThis server does have CVRN missions available. You might want to build a kit for that before the mission time. If you need help doing this, ask someone, or DM/ask me.\nAce loadouts are the only ones available. Make sure you save your fav kits as Ace.\nMission will be up before start time, If you\'re not early, you\'re late. ', 483, 0, '2021-10-19 21:30:35', '2025-12-17 19:45:29', NULL, '4582837', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1093, 'JTAC qual', '2021-10-22 17:00:00', '2021-10-22 20:00:00', '', '#ecb200', 'Earn that sweet JTAC ribbon!', 516, 0, '2021-10-20 18:43:49', '2025-12-17 19:45:29', NULL, '4585962', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1094, 'Kraige trys to kill the 17th', '2021-10-31 18:00:00', '2021-10-31 21:30:00', '', '#df5353', 'This is my last "OP" as per request this will be one life op. You will be defending with ace fortify tools. You will have 15 minutes before the first wave. You will defend with all assets until everyone is dead. \n\nDefense target will be your flag if AI reach you flag and \ncan get out you loose\n hold it for 3 minutes you loose. \nAll assets good luck ', 639, 0, '2021-10-21 03:38:59', '2025-12-17 19:45:29', NULL, '4587337', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1095, 'Operation Snow Angels Ep 2', '2021-10-27 18:00:00', '2021-10-27 20:30:00', 'Private Operations Server', '#df5353', 'Briefing:\n\n\n\nSituation:\n Good job breaking into country, soldier. High Command has been talking to the U.N Field Commander that was in country before the Chedaki drove them out. He gave us the location of his Listening Post, that contained the majority of the UNs barracks as well as their motorpool.\nCommand wants you to move out as a Company and assault the UN Listening Post, and recover the stolen UN Equipment.\nOnce you have seized the Equipment, move to the surrounding towns and clear them out. This will help us alleviate pressure in the region for an unknown friendly element (we have received transmissions from the U.N Council that direct action from major countries is not the way to go) to deal with some enemy positions in the coming week.\n\n\nMission:\n \n-Seize the U.N Equipment and Vehicles\n-Clear the surrounding areas of enemy forces\n - Optional: Destroy any enemy supply caches you find in the surrounding town(s).\n\n\nExecution:\n\nAlpha Company: Escort Echo Company to the U.N Outpost, and conduct an assault to seize the assets. After you have seized the assets and resupplied - move out to clear the surrounding towns.\nEcho Company: Once Alpha Company has seized the U.N Outpost - you are to crew whichever stolen vehicles are still operational and assist Alpha Company in clearing the surrounding areas.', 19, 0, '2021-10-26 20:14:22', '2025-12-17 19:45:29', NULL, '4596356', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1096, 'Leadership - Knowns and Unknowns', '2021-10-29 18:00:00', '2021-10-29 20:00:00', 'Training Grounds', '#FFFFFF', 'Interested in taking a leadership role on Saturdays, but have questions? \nWant to know what its like to be a fire team leader, a 2IC, a Squad Leader, or even Platoon Leader?\nWant to know what you don\'t know about it?\nLets have a training and couple FTX with different folks in different areas of responsibility. ', 483, 0, '2021-10-27 01:01:25', '2025-12-17 19:45:29', NULL, '4596453', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1097, 'Operation Snow Angels Episode 3', '2021-11-03 18:00:00', '2021-11-03 20:30:00', 'Private Operations Server', '#df5353', '', 19, 0, '2021-10-28 02:32:58', '2025-12-17 19:45:29', NULL, '4598860', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1098, 'Operation Snow Angels Episode 3', '2021-11-10 19:00:00', '2021-11-10 21:30:00', 'Private Operations Server', '#df5353', '\nSituation:\n\nWell done in capturing the surrounding towns and re-taking the UN Outpost. Unfortunately, High Command doesn\'t have any troops to spare to bring in country, for some strange reason.\n\n Doesn\'t matter - now that we have the airfield surrounded, it\'s time to strike. Problem is, that\'s where all of the stolen UN Vehicles and weaponry is stored, so we can\'t go loud. Logistics still has yet to deliver any real armour or air support for some reason, so we have to go about this the old fashioned way. Thankfully, the BluFor that was in country before us lent us their NODs and some demo equipment. Let\'s try to cripple the enemy, if it\'s UN it\'s an acceptable loss, better than losing this country to the Chedaki Radicals obviously...\n \n Unrelated note, communications with High Command and UN have seemingly stopped altogether, I\'ll try to raise them after this Op is successful.. it is strange though...\n\n\n\n\nMission:\n\n-Sneak into the Airfield, look for UN Vehicles of any form, and set charges.\n-The entire airfield is held by enemies, but luckily as we\'ve seen they don\'t have any night vision capabilities, and from how the weather this week has been we shouldn\'t have any trouble will all this rolling snow fog.\n-DO NOT ALERT THE AIRFIELD.\n-Re-Link with our contact in the field.\n\nExecution:\n\nWe should have an easy time sneaking in from the East / South East, behind the hangars. I doubt they have that many patrols going yet. \nSneak in behind the hangars, investigate them for any aircraft and look for any vehicles in between the tarmac of importance to demo.\nOnce you demo whatever you can, E&E out back towards the Old Fields, to the East. We have a friendly contact out there.\n\n\n\n\n\n\n\n\n\n\n\n\n\n', 19, 0, '2021-10-28 02:33:41', '2025-12-17 19:45:29', NULL, '4598861', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1099, 'RASP', '2021-11-06 18:00:00', '2021-11-06 21:30:00', 'Private Operations Server', '#df5353', '', 19, 0, '2021-10-31 01:25:38', '2025-12-17 19:45:29', NULL, '4602797', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1100, 'Echo Vehicle Crew Familiarization', '2021-11-08 19:00:00', '2021-11-08 21:00:00', '', '#d89332', 'Learn your duties as a ground vehicle crewman, and shoot some heavy guns. ', 2231, 0, '2021-11-01 21:55:43', '2025-12-17 19:45:29', NULL, '4607305', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1101, 'RESCHEDULED: IFV Command Training', '2021-11-11 19:00:00', '2021-11-11 21:30:00', '', '#d89332', 'Learn how to properly command and utilize the Bradley IFV, and the Abrams MBT. Focuses on positioning, ammo types and appropriate uses, and the importance of teamwork ', 2231, 0, '2021-11-01 22:13:41', '2025-12-17 19:45:29', NULL, '4607339', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1102, '17th Command Meeting', '2021-11-14 15:30:00', '2021-11-14 17:00:00', '', '#df5353', 'general state of the unit and what not\n\nplaces to look for improvements\n', 43, 0, '2021-11-04 03:56:45', '2025-12-17 19:45:29', NULL, '4612098', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1103, 'CLS/68W', '2021-11-13 16:00:00', '2021-11-13 18:00:00', 'ur moms house ', '#ecb200', 'HHHEEEEYYYYYY BOYZ ITS TIME TO LEARN HOW TO MEDIC BETTER AND HOW TO MEDIC IN THE ARMA 3\nSyllabus: \nWe will be first reviewing the CLS training per 17th guidance found here. \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/264981\nFor 68W we will be reviewing the 17th guidance found here. \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/658c531b-1e62-43c4-b4ce-a54c34114070/docs/261452\nWe will be covering both CLS and 68W consecutively. \nTest: \nWe will have a practical at the end testing \n(1) Reviving injured persons per proper procedure\n(2) Quality of handling of mass cas ', 2229, 0, '2021-11-07 03:50:47', '2025-12-17 19:45:29', NULL, '4616350', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1104, 'NCO Basic training meeting.', '2021-11-13 17:45:00', '2021-11-13 18:00:00', '', '#FFFFFF', 'Talk about basic training schedule and any other training schedule discussions needed. ', 639, 0, '2021-11-08 01:19:07', '2025-12-17 19:45:29', NULL, '4618310', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1105, 'Flight training NCO Meeting', '2021-11-10 18:00:00', '2021-11-10 18:30:00', 'Teamspeak', '#FFFFFF', '', 639, 0, '2021-11-08 04:05:38', '2025-12-17 19:45:29', NULL, '4618567', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1106, 'Combat Diver book work', '2021-11-12 18:00:00', '2021-11-12 20:00:00', 'Naval Base', '#FFFFFF', 'Welcome to Combat Diver Qualification Course. This course will teach the skills needed to be comfortable under the water, in the dark, and able to complete the mission. This course consists of two phases. First, the instruction phase that will give you the knowledge needed. Second, Field Training Exercises where the skills learned in the instruction phase will be used to complete complex missions and return safely.', 483, 0, '2021-11-09 03:25:01', '2025-12-17 19:45:29', NULL, '4620452', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1107, 'Pathfinder Bookwork (Rescheduled 14th --> 16th)', '2021-11-16 19:00:00', '2021-11-16 20:30:00', '', '#FFFFFF', 'One of the base courses required for RRC.', 468, 0, '2021-11-09 04:24:47', '2025-12-17 19:45:29', NULL, '4620697', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1108, 'Operation Draken', '2021-11-17 19:00:00', '2021-11-17 22:00:00', 'uhhhhh somewhere in sweden', '#FFFFFF', 'Ill probably just brief you in game because WARNOs are tiring especially after last campaign.', 850, 0, '2021-11-10 19:23:53', '2025-12-17 19:45:29', NULL, '4632276', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1109, 'Copilot Training Day 1', '2021-11-20 17:00:00', '2021-11-20 18:00:00', 'North Airbase', '#d89332', '', 545, 0, '2021-11-11 02:28:47', '2025-12-17 19:45:29', NULL, '4635221', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1110, 'Aircrew Training/Qualification', '2021-11-20 16:00:00', '2021-11-20 17:00:00', '', '#d89332', '', 545, 0, '2021-11-11 02:30:22', '2025-12-17 19:45:29', NULL, '4635224', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1111, 'Copilot Qual (reschedule but won\'t be rescheduled anymore)', '2021-12-18 18:00:00', '2021-12-18 19:00:00', '', '#ecb200', '', 545, 0, '2021-11-11 02:32:12', '2025-12-17 19:45:29', NULL, '4635279', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1112, 'Copilot Pt2 **RESCHEDULE**', '2021-12-04 15:45:00', '2021-12-04 17:00:00', '', '#ecb200', '', 545, 0, '2021-11-11 02:35:26', '2025-12-17 19:45:29', NULL, '4635420', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1113, 'Pilot Qualification', '2021-11-27 16:00:00', '2021-11-27 18:00:00', '', '#d89332', '', 545, 0, '2021-11-11 02:36:14', '2025-12-17 19:45:29', NULL, '4635421', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1114, 'Battalion Training', '2021-11-13 19:00:00', '2021-11-13 20:00:00', '', '#df5353', '', 19, 0, '2021-11-11 16:09:53', '2025-12-17 19:45:29', NULL, '4637896', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1115, 'IFV Command Training', '2021-11-16 19:00:00', '2021-11-16 21:30:00', '', '#d89332', 'Learn how to effectively command a large tonnage crewed vehicle. Learn how to supplement armor with cover, and how to behave in a combat scenario', 2231, 0, '2021-11-11 23:27:49', '2025-12-17 19:45:29', NULL, '4638673', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1116, '[Canceled]Operation Snow Angels Episode 4', '2021-12-01 19:00:00', '2021-12-01 21:30:00', 'Private Operations', '#df5353', '', 19, 1, '2021-11-13 00:41:51', '2025-12-17 19:45:29', NULL, '4642994', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1117, 'Operation Snow Angels Episode 5', '2021-12-08 19:00:00', '2021-12-08 22:00:00', 'Private Operations Server', '#df5353', '', 19, 0, '2021-11-13 00:42:15', '2025-12-17 19:45:29', NULL, '4642995', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1118, 'Operation Snow Angels Episode 5', '2021-12-15 19:00:00', '2021-12-15 22:00:00', 'Private Operations Server', '#df5353', '', 19, 0, '2021-11-13 00:42:54', '2025-12-17 19:45:29', NULL, '4642996', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1119, 'Operation Snow Angels Finale', '2021-12-22 19:00:00', '2021-12-22 22:00:00', 'Private Operations Server', '#df5353', '', 19, 0, '2021-11-13 00:43:45', '2025-12-17 19:45:29', NULL, '4642997', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1120, 'Basic Training', '2021-11-15 19:00:00', '2021-11-15 22:00:00', 'Training Grounds', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 46, 0, '2021-11-14 00:07:16', '2025-12-17 19:45:29', NULL, '4644021', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1121, 'Basic Training', '2021-11-23 18:00:00', '2021-11-23 21:00:00', 'Training Grounds', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 46, 0, '2021-11-14 00:08:43', '2025-12-17 19:45:29', NULL, '4644022', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1122, 'Basic Training', '2021-12-02 19:00:00', '2021-12-02 22:00:00', 'Training Grounds', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 46, 0, '2021-11-14 00:09:19', '2025-12-17 19:45:29', NULL, '4644023', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1123, '(Cancelled) Basic Training', '2021-12-10 19:00:00', '2021-12-10 22:00:00', 'Training Grounds', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 46, 1, '2021-11-14 00:09:56', '2025-12-17 19:45:29', NULL, '4644024', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1124, 'Basic Training', '2021-12-13 19:00:00', '2021-12-13 22:00:00', 'Training Grounds', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 46, 0, '2021-11-14 00:10:49', '2025-12-17 19:45:29', NULL, '4644025', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1125, 'Basic Training', '2021-12-21 19:00:00', '2021-12-21 22:00:00', 'Training Grounds', '#008ae1', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help.', 46, 0, '2021-11-14 00:11:19', '2025-12-17 19:45:29', NULL, '4644027', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1126, 'RASP', '2021-12-11 19:00:00', '2021-12-11 22:00:00', 'Private Operations', '#df5353', 'KEN\'S LAST RASP', 19, 0, '2021-11-14 22:08:32', '2025-12-17 19:45:29', NULL, '4645687', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1127, 'Community Round Table', '2021-12-12 15:30:00', '2021-12-12 18:00:00', 'Teamspeak --> Command Office', '#df5353', '', 19, 0, '2021-11-14 22:26:07', '2025-12-17 19:45:29', NULL, '4645698', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1128, 'Operation Snowfog', '2021-11-20 19:00:00', '2021-11-20 22:00:00', 'Private Operations Server', '#df5353', 'Hosted by Pop Rocks', 19, 0, '2021-11-14 22:29:44', '2025-12-17 19:45:29', NULL, '4645704', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1129, 'Operation Welcome to Wakanda', '2021-11-27 19:00:00', '2021-11-27 22:00:00', 'Private Operations Server', '#df5353', 'Hosted by Kenneth', 19, 0, '2021-11-14 22:30:08', '2025-12-17 19:45:29', NULL, '4645705', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1130, 'Operation No Vacation', '2021-12-04 19:00:00', '2021-12-04 22:30:00', '17th Private Operations Server', '#df5353', 'Hosted by Pilot', 19, 0, '2021-11-20 17:31:08', '2025-12-17 19:45:29', NULL, '4658824', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1131, 'Operation Tempting Tempest', '2021-12-18 19:00:00', '2021-12-18 23:00:00', '17th Private Operations Server', '#ecb200', 'Hosted by Pop Rocks', 19, 0, '2021-11-20 17:31:38', '2025-12-17 19:45:29', NULL, '4658825', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1132, 'Training FTX', '2021-11-22 19:00:00', '2021-11-22 21:30:00', 'Training Server', '#FFFFFF', 'This FTX is aimed at working on communication between Fire Teams and, time depending, some CQC and MOUT in a larger city. (More information will be given during the FTX)\n\nIt is an Alpha-oriented FTX but Echo guys are more than welcome to join in to work on their infantry skills.\n\nI will need a minimum of 8 people for this to work in the way I want it to. More people will be better though.', 46, 0, '2021-11-21 08:46:12', '2025-12-17 19:45:29', NULL, '4660657', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1133, 'IFV Qualification', '2021-11-23 19:00:00', '2021-11-23 21:00:00', 'Northern Airfield', '#d89332', 'This is the qualification assessment for the Mechanized Infantry Badge. There will not be any training at this time, as it will be devoted purely to assessment. Attendance of training portion is not mandatory, but it is is encouraged to ensure familiarization.', 309, 0, '2021-11-22 00:33:05', '2025-12-17 19:45:29', NULL, '4661671', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1134, 'Operation Trident', '2021-11-24 19:00:00', '2021-11-24 21:00:00', '', '#df5353', 'Operation Trident\r\nAmid rising tensions, members of the Tanoan Liberation Army terrorist group have seized a lone US destroyer, the USS Liberty docked in allied Tanoa for repairs, along with a significant number of its crew and two Navy helicopters. Rangers are being rapidly deployed from the only naval asset in the region, the submarine HMS Proteus, to secure the destroyer and rescue surviving crew members.\r\nRangers will first covertly insert aboard the USS Liberty with SDV mini-submarines to take out air defenses and turrets to pave the way for an exfil helicopter. \r\nOnce captured, reinserts will occur at the destroyer.\r\nObjectives\r\nOBJ Liberty\n\nClear the USS Liberty and the Blue Pearl Industrial Port of all enemies. \r\nOBJ Liberty 2\r\n\nRescue surviving crew members\r\nOBJ Stark\r\n\nEstablish LZ for exfil of crew and rangers\r\nAssets\r\n8x SDV', 545, 0, '2021-11-24 06:58:03', '2025-12-17 19:45:29', NULL, '4668385', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1135, 'Zeus OP', '2021-11-26 19:00:00', '2021-11-26 21:30:00', 'Private Ops Server', '#FFFFFF', 'North Western Fapovo is being controlled by a hostile local resistance. We have received information regarding critical intel being held by the resistance at Orlov School, a recently occupied building. Civilians have not evacuated this part of the island.\nYour objective is to move East through potentially occupied compounds, clear all hostiles inside Orlov School and retrieve the intel. Once this is completed, report the intel to Command and await further orders.\n\nDoors in and around Orlov School may have been barricaded to protect the intel, you are advised to bring breaching charges.', 46, 0, '2021-11-25 04:17:33', '2025-12-17 19:45:29', NULL, '4670469', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1136, 'THANKGIVING DAY!!!', '2021-11-25 00:00:00', '2021-11-26 00:00:00', '', '#df5353', '', 850, 0, '2021-11-25 05:04:50', '2025-12-17 19:45:29', NULL, '4670473', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1137, 'Marksman/Sharpshooter qualifications', '2021-11-28 15:00:00', '2021-11-28 16:00:00', '17th Ranger Battalion training server', '#355bf8', 'Come get access to 3x and 4x optics', 81, 0, '2021-11-28 04:34:53', '2025-12-17 19:45:29', NULL, '4674797', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1138, 'BASIC TRAINING', '2021-11-29 19:00:00', '2021-11-29 21:00:00', '17TH RGR BN TRAINING RANGE', '#355bf8', 'Please make sure you have mod installed and tfar set up prior to the start time. See \nfor help', 81, 0, '2021-11-28 19:27:41', '2025-12-17 19:45:29', NULL, '4675407', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1139, 'AIT 1 - Advanced Infantry Training part 1', '2021-12-03 18:00:00', '2021-12-03 20:00:00', 'Training Range', '#FFFFFF', 'This training consists of primarily fireteam positions, movement, weapon system employment, etc. This is the first building block of learning to be a good fireteam member and know how to use the tools of the fireteam. \nCome play with the big boys and their toys.', 483, 0, '2021-11-28 23:44:38', '2025-12-17 19:45:29', NULL, '4675604', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1140, 'Master Free Fall (MFF) School', '2021-12-03 20:15:00', '2021-12-03 21:45:00', 'Training Server', '#a250e8', 'MFF is required for all RRC candidates. Learn about various types of jump and how to not splat on the ground. Bring your parachute. (Parachutes will be provided)', 46, 0, '2021-11-30 03:25:45', '2025-12-17 19:45:29', NULL, '4679701', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1141, '[CANCELED] Something', '2021-11-30 18:30:00', '2021-11-30 19:30:00', '', '#FFFFFF', 'Not enough lead time for event', 38, 1, '2021-12-01 00:13:36', '2025-12-17 19:45:29', NULL, '4680695', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1142, 'Echo Ground Crew Familiarization', '2021-12-06 19:00:00', '2021-12-06 21:00:00', '', '#ecb200', 'Learn about the heavy assets Echo brings to the party, and your role in operating them.', 2231, 0, '2021-12-01 15:46:49', '2025-12-17 19:45:29', NULL, '4681923', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1143, 'Operation Happy Hands', '2021-12-01 19:00:00', '2021-12-01 21:00:00', '17th Operations Server', '#ecb200', '', NULL, 0, '2021-12-01 21:46:46', '2025-12-17 19:45:29', NULL, '4683667', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1144, 'Pathfinder Bookwork', '2021-12-07 19:00:00', '2021-12-07 21:30:00', '', '#FFFFFF', 'One of two courses required for Ranger Reconnaisance Company.\n\n\nOnly one person showed up to the last one, and I know others have been wanting to attend.', 468, 0, '2021-12-04 03:57:52', '2025-12-17 19:45:29', NULL, '4687090', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1145, 'Joint Training', '2021-12-09 19:30:00', '2021-12-09 22:30:00', 'Training Server', '#ecb200', 'Joint FTXs.\nMechanized/Armour\nIDF', 19, 0, '2021-12-06 14:21:52', '2025-12-17 19:45:29', NULL, '4691157', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1146, 'AIT 2 - Battle Drills', '2021-12-10 18:00:00', '2021-12-10 20:00:00', 'Training Grounds', '#FFFFFF', 'Battle Drills 1,2,3. Bounding and Peeling. When to advance, when to retreat.', 483, 0, '2021-12-06 23:52:07', '2025-12-17 19:45:29', NULL, '4692841', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1147, 'AIT 3 - MOUT - CANCELED', '2021-12-14 18:00:00', '2021-12-14 20:00:00', 'Private Ops Server', '#FFFFFF', 'MOUT - Learn to move and find in urban terrain. Its in the name man!\nThe MOUT training is going to occur on the Private Ops server.\nreschedule to be determined', 483, 1, '2021-12-06 23:53:48', '2025-12-17 19:45:29', NULL, '4692842', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1148, 'AIT 4 - CQB', '2021-12-17 18:00:00', '2021-12-17 19:00:00', 'Training Grounds', '#FFFFFF', 'CQB - Learn to fight in small spaces. Clear some buildings, kick in some doors, sell them Amway.', 483, 0, '2021-12-06 23:58:43', '2025-12-17 19:45:29', NULL, '4692843', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1149, 'JTAC/CAS Refresher', '2021-12-10 20:00:00', '2021-12-10 22:30:00', '', '#6cba50', 'Quick refresher on CAS, JTAC, and other related stuff. All pilots and JTACs are welcome to join.\nThis ISN\'T a bookwork or qual, non qualified personnel are more than welcome to come and listen ', 516, 0, '2021-12-08 03:35:07', '2025-12-17 19:45:29', NULL, '4694407', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1150, 'Echo NCO Meeting', '2021-12-16 19:00:00', '2021-12-16 20:00:00', 'Teamspeak ---> Motorpool', '#ecb200', 'A meeting for Echo NCOs to discuss with CO about the current state of Echo and suggestions for how to change things in the future. A few things that will be discussed are Callsigns, new assets, and trainings. \nNote: Anyone can join and listen if they would like.', 1133, 0, '2021-12-13 00:49:50', '2025-12-17 19:45:29', NULL, '4706262', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1151, 'Operation Dustbowl Destruction Ep 1', '2022-01-05 19:00:00', '2022-01-05 21:30:00', 'Private Operations Server', '#df5353', '', 19, 0, '2021-12-15 21:14:44', '2025-12-17 19:45:29', NULL, '4708704', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1152, 'Operation Dustbowl Destruction Ep 2', '2022-01-12 19:00:00', '2022-01-12 21:30:00', 'Private Operations Server', '#df5353', '', 19, 0, '2021-12-15 21:15:36', '2025-12-17 19:45:29', NULL, '4708705', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1153, 'Operation Dustbowl Destruction Ep 3', '2022-01-19 19:00:00', '2022-01-19 21:30:00', 'Private Operations Server', '#df5353', '', 19, 0, '2021-12-15 21:21:36', '2025-12-17 19:45:29', NULL, '4708707', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1154, 'Operation Dustbowl Destruction Ep 4', '2022-01-26 19:00:00', '2022-01-26 21:30:00', 'Private Operations Server', '#df5353', '', 19, 0, '2021-12-15 21:21:59', '2025-12-17 19:45:29', NULL, '4708708', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1155, 'AIT 3 - MOUT', '2021-12-20 18:00:00', '2021-12-20 20:00:00', 'Private Ops server', '#FFFFFF', 'Learn MOUT. Notice it is the Private Ops server, not the training server.', 483, 0, '2021-12-18 16:56:53', '2025-12-17 19:45:29', NULL, '4715119', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1156, 'Heavy Weapons Training', '2021-12-21 18:00:00', '2021-12-21 20:30:00', '17th Training Server - North Airbase', '#a250e8', 'Familiarize yourself with both 17th and OPFOR Heavy and Crew Served Weapons. We primarily focus on 17th equipment, but you will be expected to understand the OPFOR equipment should an emergency arrive and you need to appropriate gear.\n\nThis will include using a range to learn and a short live-fire exercise to demonstrate knowledge of both equipment and strategy, as well as help you learn to identify what OPFOR equipment is being used against you.\n\n\nThis course does not cover effective ways to destroy enemy armor, it is weapon familiarization.\n\n\nSuccessful completion of this course and Anti-Armor will result in being awarded the Heavy Weapons Ribbon.', 1141, 0, '2021-12-18 21:26:54', '2025-12-17 19:45:29', NULL, '4715207', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1157, 'Marksman/Sharpshooter Qual', '2021-12-19 19:00:00', '2021-12-19 20:00:00', '17th Training Server - Training Grounds', '#a250e8', 'Come get qualified for 3x and 4x optics', 1141, 0, '2021-12-18 21:29:05', '2025-12-17 19:45:29', NULL, '4715208', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1158, 'Heavy Weapons Training', '2021-12-20 02:30:00', '2021-12-20 05:00:00', '17th Training Server - Training Grounds', '#a250e8', 'Alternate training time for people in different time zones', 1141, 0, '2021-12-18 23:36:23', '2025-12-17 19:45:29', NULL, '4715311', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1159, 'IFV Qualification', '2022-01-04 19:00:00', '2022-01-04 20:30:00', '17th Training Server', '#FFFFFF', 'This is the qualification assessment for the Mechanized Infantry Badge. There will not be any training at this time, as it will be devoted purely to assessment. Attendance of training portion is not mandatory, but it is is encouraged to ensure familiarization.\n \nNOTE: This badge is REQUIRED to become an NCO for Echo Ground', 1133, 0, '2021-12-21 00:13:28', '2025-12-17 19:45:29', NULL, '4717532', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1160, 'Daylight saving time', '2022-03-13 00:00:00', '2022-03-14 00:00:00', '', '#FFFFFF', '', 38, 0, '2021-12-21 18:14:01', '2025-12-17 19:45:29', NULL, '4718111', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1161, 'End Daylight saving time', '2022-11-05 23:00:00', '2022-11-06 23:00:00', '', '#FFFFFF', '', 38, 0, '2021-12-21 18:14:42', '2025-12-17 19:45:29', NULL, '4718112', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1162, 'IDF Training', '2022-01-07 18:30:00', '2022-01-07 21:00:00', '', '#d89332', 'Learn how to crew and plot the firing solution of mortars and artillery \nYou will need a pen and paper. ', 2231, 0, '2021-12-21 23:24:40', '2025-12-17 19:45:29', NULL, '4718771', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1163, 'SERE Training checkout', '2022-01-08 12:00:00', '2022-01-08 14:00:00', 'Meet in Team Speak Ready Room - Map is a special map on Private ops', '#FFFFFF', 'This is a training to take a look at a new SERE training and if we want to add it as an option going forward. I would like Command and NCOs to come check it out if possible.', 483, 0, '2021-12-27 22:32:53', '2025-12-17 19:45:29', NULL, '4724206', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1164, 'Demolition Course', '2022-01-03 19:00:00', '2022-01-03 20:30:00', 'Training Server', '#a250e8', 'Understand the different charges a ranger may carry, the different types of triggers and when to use them, and how many charges to use in various situations.\nThis ribbon will also cover how to use the mine detector and when it is appropriate to avoid a mine or IED or to call for an EOD (Explosive Ordnance Disposal).\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/293646', 46, 0, '2021-12-27 22:43:53', '2025-12-17 19:45:29', NULL, '4724208', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1165, 'EOD Course', '2022-01-03 20:30:00', '2022-01-03 22:30:00', 'Training Server', '#a250e8', 'Advanced understanding of the equipment an EOD should carry, all explosives, how to safely defuse or remove ordnance through various methods, as well as navigate a minefield and guide others safely through.\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/658c531b-1e62-43c4-b4ce-a54c34114070/docs/293647', 46, 0, '2021-12-27 22:45:05', '2025-12-17 19:45:29', NULL, '4724210', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1166, '[RESCHEDULED]Escape and Evade', '2022-01-10 19:00:00', '2022-01-10 21:00:00', 'Northern Airbase ', '#ecb200', 'learn how to get good at auto rotating and coming back to a friendly civilization', 850, 0, '2021-12-28 02:23:06', '2025-12-17 19:45:29', NULL, '4725109', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1167, 'Master Free Fall', '2022-01-06 19:00:00', '2022-01-06 20:30:00', '', '#FFFFFF', 'RRC\'s Master Free Fall course; more parachuting and practicing it even moar', 468, 0, '2021-12-31 23:55:48', '2025-12-17 19:45:29', NULL, '4731015', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1168, 'Pathfinder Qualifications', '2022-01-06 21:00:00', '2022-01-06 23:00:00', '', '#FFFFFF', 'Qualification for RRC; Pathfinder bookwork and Master Free Fall are prerequisites ', 468, 0, '2021-12-31 23:57:03', '2025-12-17 19:45:29', NULL, '4731043', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1169, 'Pathfinder Qualifications', '2022-01-07 19:00:00', '2022-01-07 21:00:00', '', '#FFFFFF', 'Qualification for RRC; Pathfinder bookwork and Master Free Fall are prerequisites', 468, 0, '2021-12-31 23:57:51', '2025-12-17 19:45:29', NULL, '4731044', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1170, 'Anti Armor School', '2022-01-09 19:00:00', '2022-01-09 20:45:00', '', '#FFFFFF', 'One of two courses required for the Heavy Weapons Ribbon; Learn the ins and outs of enemy vehicles so we can kill them more better', 468, 0, '2021-12-31 23:59:32', '2025-12-17 19:45:29', NULL, '4731045', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1171, 'Basic Training', '2022-01-04 12:00:00', '2022-01-04 15:00:00', '17 Training Server - Training Grounds', '#a250e8', '', 1141, 0, '2022-01-02 04:33:25', '2025-12-17 19:45:29', NULL, '4733292', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1172, 'Escape and Evade', '2022-01-18 19:00:00', '2022-01-18 21:30:00', '', '#ecb200', 'new escape and evade because my dumbass forgot that i’m in san francisco for a week', 850, 0, '2022-01-03 02:11:12', '2025-12-17 19:45:29', NULL, '4735348', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1173, 'Battalion Training', '2022-01-08 19:00:00', '2022-01-08 22:30:00', 'Private Operations Server', '#FFFFFF', '', NULL, 0, '2022-01-03 16:01:45', '2025-12-17 19:45:29', NULL, '4736495', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1174, 'Operation Radiant Burn', '2022-01-15 19:00:00', '2022-01-15 22:30:00', 'Private Operations Serrver', '#df5353', 'A WallyWorld Production', NULL, 0, '2022-01-03 16:02:26', '2025-12-17 19:45:29', NULL, '4736496', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1175, 'Operation Radiant Burn', '2022-01-22 19:00:00', '2022-01-22 22:30:00', 'Private Operations Serrver', '#df5353', 'A WallyWorld Production', NULL, 0, '2022-01-03 16:02:26', '2025-12-17 19:45:29', NULL, '4736497', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1176, 'Operation Radiant Burn', '2022-02-05 19:00:00', '2022-02-05 22:30:00', 'Private Operations Serrver', '#df5353', 'A WallyWorld Production', NULL, 0, '2022-01-03 16:02:26', '2025-12-17 19:45:29', NULL, '4736498', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1177, 'Operation Radiant Burn', '2022-02-12 19:00:00', '2022-02-12 22:30:00', 'Private Operations Serrver', '#df5353', 'A WallyWorld Production', NULL, 0, '2022-01-03 16:02:26', '2025-12-17 19:45:29', NULL, '4736499', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1178, 'Operation Radiant Burn', '2022-01-29 19:00:00', '2022-01-29 22:30:00', 'Private Operations Serrver', '#df5353', 'A WallyWorld Production', NULL, 0, '2022-01-03 16:02:26', '2025-12-17 19:45:29', NULL, '4736500', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1179, 'Operation Radiant Burn', '2022-02-19 19:00:00', '2022-02-19 22:30:00', 'Private Operations Serrver', '#df5353', 'A WallyWorld Production', NULL, 0, '2022-01-03 16:02:26', '2025-12-17 19:45:29', NULL, '4736501', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1180, 'RASP', '2022-02-26 19:00:00', '2022-02-26 20:00:00', 'Private Operations Serrver', '#df5353', 'A Pop Rocks Production', NULL, 0, '2022-01-03 16:02:26', '2025-12-17 19:45:29', NULL, '4736502', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1181, 'Operation Radiant Burn', '2022-03-05 19:00:00', '2022-03-05 22:30:00', 'Private Operations Serrver', '#df5353', 'A WallyWorld Production', NULL, 0, '2022-01-03 16:02:26', '2025-12-17 19:45:29', NULL, '4736503', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1182, 'Operation Radiant Burn', '2022-03-12 19:00:00', '2022-03-12 22:30:00', 'Private Operations Serrver', '#df5353', 'A WallyWorld Production', NULL, 0, '2022-01-03 16:02:26', '2025-12-17 19:45:29', NULL, '4736504', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1183, 'Basic Training', '2022-01-11 18:00:00', '2022-01-11 21:00:00', 'Training Grounds - Training Server', '#008ae1', 'Make sure Mods are installed and TFAR is configured prior to the start of basic training. Trainer will be available in Room 1 under 17th BN Recruitment early if you have any questions.\nGuides linked above', 483, 0, '2022-01-05 23:34:10', '2025-12-17 19:45:29', NULL, '4742171', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1184, 'Fire Team Lead FTX', '2022-01-14 19:00:00', '2022-01-14 20:00:00', 'Training Grounds ', '#FFFFFF', 'We\'ll do some scenarios to get some reps in as FTL. Come shoot some stuff. ', 6, 0, '2022-01-06 04:18:30', '2025-12-17 19:45:29', NULL, '4742350', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1185, 'JTAC/CAS Refresher', '2022-01-14 19:00:00', '2022-01-14 22:00:00', '', '#d89332', 'Everyone in Echo Co. (pilots, crew chiefs, door gunners, etc) that\'s involved with CAS as well as all JTACs are invited to come out.\nWe will cover the debrief points brought up this past weekend as well as anything else\n(If you can\'t make it HIT ME UP IN THE DMs)', 516, 0, '2022-01-09 04:45:27', '2025-12-17 19:45:29', NULL, '4746789', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1186, 'Pilot Qualification', '2022-01-15 17:00:00', '2022-01-15 18:00:00', '', '#d89332', 'don\'t crash', 545, 0, '2022-01-09 08:30:44', '2025-12-17 19:45:29', NULL, '4747800', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1187, 'Impromtu Training w/EagelTrooper Highest Interest', '2022-01-10 19:30:00', '2022-01-10 20:30:00', '', '#FFFFFF', 'Willing to do an impromptu training as there is nothing tonight. So.... I\'m going to put a poll up for a 7:30PM Scheduled Time to do something.\n\nVote for what it will be (Link in Comment Below)\r', 38, 0, '2022-01-11 01:06:03', '2025-12-17 19:45:29', NULL, '4753907', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1188, '[moved to Tues]Air Assault Training', '2022-01-17 19:00:00', '2022-01-17 22:00:00', 'Training Server --> Southern Air Field', '#6cba50', '', 19, 0, '2022-01-11 03:20:35', '2025-12-17 19:45:29', NULL, '4753929', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1189, '[Asia/EU] Air Assault Training', '2022-01-17 13:00:00', '2022-01-17 14:30:00', 'Private Ops Server', '#6cba50', '\n \n\n \n\n@Euro time zone people.', 19, 0, '2022-01-11 03:33:07', '2025-12-17 19:45:29', NULL, '4753938', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1190, 'Sniper School', '2022-01-13 18:00:00', '2022-01-13 20:00:00', 'Sniper Range on Training Server', '#a250e8', 'Sniper Training followed by Sniper Qualifications (depending on attendance)\nIf for whatever reason qualifications cannot happen same day, I will schedule with each two man team to do their final qualifications in the next few days depending on their availability.\n\n', 483, 0, '2022-01-11 22:50:04', '2025-12-17 19:45:29', NULL, '4757377', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1191, 'RTO Quaification from Jan 10 Bookwork', '2022-01-11 19:00:00', '2022-01-11 21:00:00', '', '#FFFFFF', '', 38, 0, '2022-01-11 23:29:24', '2025-12-17 19:45:29', NULL, '4757390', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1192, 'Land Navigation', '2022-01-20 19:00:00', '2022-01-20 21:30:00', '', '#FFFFFF', '', 38, 0, '2022-01-12 19:36:45', '2025-12-17 19:45:29', NULL, '4758745', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1193, 'Airborne School', '2022-01-21 19:00:00', '2022-01-21 21:00:00', 'Training Server', '#6cba50', 'Jump Wings, training and qualification.', 468, 0, '2022-01-13 03:02:14', '2025-12-17 19:45:29', NULL, '4759563', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1194, 'Echo Ground Crew Familiarization', '2022-01-16 19:00:00', '2022-01-16 21:00:00', '', '#d89332', 'Learn about the different ground assets Echo utilizes, and your role in being in a Vehicle Crew. ', 2231, 0, '2022-01-14 00:56:24', '2025-12-17 19:45:29', NULL, '4761202', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1195, 'Side-Ops Assignments', '2022-01-19 00:00:00', '2022-01-20 00:00:00', '', '#FFFFFF', 'love you Randy', 19, 0, '2022-01-14 06:08:43', '2025-12-17 19:45:29', NULL, '4761305', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1196, 'JTAC/ CAS Practice', '2022-01-21 20:00:00', '2022-01-21 22:00:00', 'Training Server', '#ecb200', 'We gonna gun run. We gonna bomb stuff. We gonna get comms right. We gonna go over the training docs. We gonna fix the issues before they enter into the campaign. \n\nAny can attend. This is a reps training. \n\nItenerary: \nStart +20m: Discussion on expectation and questions answered. \nBeyond that, we will be running CAS calls. Real time critique will be welcome. ', 501, 0, '2022-01-17 05:31:36', '2025-12-17 19:45:29', NULL, '4765583', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1197, '[CanceledForFuture]68W (Combat Medic)', '2022-01-25 18:00:00', '2022-01-25 20:15:00', '', '#a250e8', '', 19, 1, '2022-01-17 21:29:31', '2025-12-17 19:45:29', NULL, '4766799', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1198, 'Combat Life Saver', '2022-01-24 18:00:00', '2022-01-24 19:00:00', '', '#a250e8', '', 19, 0, '2022-01-17 21:30:36', '2025-12-17 19:45:29', NULL, '4766801', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1199, '68W (Combat Medic)', '2022-01-24 19:15:00', '2022-01-24 21:00:00', '', '#a250e8', '', 19, 0, '2022-01-17 21:31:13', '2025-12-17 19:45:29', NULL, '4766802', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1200, 'Air Assault Training', '2022-01-18 18:00:00', '2022-01-18 20:00:00', 'Private Operations Server', '#6cba50', '', 19, 0, '2022-01-17 22:25:01', '2025-12-17 19:45:29', NULL, '4766830', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1201, 'Basic Training', '2022-01-20 19:00:00', '2022-01-20 22:00:00', 'Training Grounds - Training Server', '#a250e8', 'Make sure Mods are installed and TFAR is configured prior to the start of basic training. Trainer will be available in Room 1 under 17th BN Recruitment early if you have any questions.\nGuides linked above', 483, 0, '2022-01-17 22:37:19', '2025-12-17 19:45:29', NULL, '4766841', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1202, 'AIT 1 - (Advanced Infantry Training)', '2022-01-27 18:00:00', '2022-01-27 20:00:00', 'Training Range', '#a250e8', 'Come out, find out what the positions of a Fire Team are, what they do, how they do it. \nWe will be shooting machine guns (SAW and 240B) and firing rockets at stuff too.', 483, 0, '2022-01-18 22:45:30', '2025-12-17 19:45:29', NULL, '4769423', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1203, '17th Command Meeting', '2022-01-23 17:00:00', '2022-01-23 18:30:00', 'TS Command Room', '#FFFFFF', 'Review the state of the unit, outstanding mod requests, disciplinary actions taken, and any other topics for discussion.', NULL, 0, '2022-01-21 19:28:02', '2025-12-17 19:45:29', NULL, '4773535', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1204, '17th Command Meeting', '2022-02-13 15:30:00', '2022-02-13 16:30:00', 'TS Command Room', '#ecb200', '', NULL, 0, '2022-01-21 19:39:49', '2025-12-17 19:45:29', NULL, '4773576', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1205, '17th Command Meeting', '2022-03-13 17:00:00', '2022-03-13 18:00:00', 'TS Command Room', '#FFFFFF', '', NULL, 0, '2022-01-21 19:39:49', '2025-12-17 19:45:29', NULL, '4773577', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1206, '17th Command Meeting', '2022-04-10 17:00:00', '2022-04-10 18:00:00', 'TS Command Room', '#FFFFFF', '', NULL, 0, '2022-01-21 19:39:49', '2025-12-17 19:45:29', NULL, '4773578', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1207, '17th Command Meeting', '2022-05-08 17:00:00', '2022-05-08 18:00:00', 'TS Command Room', '#FFFFFF', '', NULL, 0, '2022-01-21 19:39:49', '2025-12-17 19:45:29', NULL, '4773579', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1208, '[EU]CLS+68W', '2022-01-25 13:00:00', '2022-01-25 15:00:00', 'Training Server --> Training Grounds', '#a250e8', '\n \n\n \n@Europeans', 19, 0, '2022-01-22 06:47:29', '2025-12-17 19:45:29', NULL, '4774419', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1209, '1 on 1 Flight Practice', '2022-01-25 21:00:00', '2022-01-25 23:00:00', 'See Discord thread in The Hangar for info.', '#008ae1', '', 19, 0, '2022-01-22 22:50:24', '2025-12-17 19:45:29', NULL, '4776926', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1210, 'Flight Practice', '2022-01-28 20:00:00', '2022-01-28 23:30:00', 'Thread in The Hangar, discord.', '#008ae1', '', 19, 0, '2022-01-22 22:53:14', '2025-12-17 19:45:29', NULL, '4776927', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1211, 'Basic Training', '2022-01-28 18:00:00', '2022-01-28 21:00:00', 'Training Server - Training Grounds', '#355bf8', 'Make sure Mods are installed and TFAR is configured prior to the start of basic training. Trainer will be available in Room 1 under 17th BN Recruitment early if you have any questions.\nGuides linked above', 483, 0, '2022-01-24 23:24:44', '2025-12-17 19:45:29', NULL, '4780754', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1212, 'Basic Training', '2022-02-03 18:00:00', '2022-02-03 21:00:00', 'Training Server - Training Grounds', '#355bf8', 'Make sure Mods are installed and TFAR is configured prior to the start of basic training. Trainer will be available in Room 1 under 17th BN Recruitment early if you have any questions.\r\nGuides linked above', 483, 0, '2022-01-24 23:25:37', '2025-12-17 19:45:29', NULL, '4780759', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1213, 'Basic Training', '2022-02-08 18:00:00', '2022-02-08 21:00:00', 'Training Server - Training Grounds', '#355bf8', 'Make sure Mods are installed and TFAR is configured prior to the start of basic training. Trainer will be available in Room 1 under 17th BN Recruitment early if you have any questions.\r\nGuides linked above', 483, 0, '2022-01-24 23:27:27', '2025-12-17 19:45:29', NULL, '4780760', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1214, 'Basic Training', '2022-02-17 18:00:00', '2022-02-17 21:00:00', '', '#355bf8', 'Make sure Mods are installed and TFAR is configured prior to the start of basic training. Trainer will be available in Room 1 under 17th BN Recruitment early if you have any questions.\r\nGuides linked above', 483, 0, '2022-01-24 23:28:30', '2025-12-17 19:45:29', NULL, '4780761', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1215, 'Basic Training', '2022-02-25 18:00:00', '2022-02-25 21:00:00', 'Training Server - Training Grounds', '#355bf8', 'Make sure Mods are installed and TFAR is configured prior to the start of basic training. Trainer will be available in Room 1 under 17th BN Recruitment early if you have any questions.\r\nGuides linked above', 483, 0, '2022-01-24 23:29:34', '2025-12-17 19:45:29', NULL, '4780763', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1216, 'Demolitions Course', '2022-01-29 16:00:00', '2022-01-29 17:30:00', 'Training Server - Northern Airfield', '#a250e8', 'This awards the Demolition Ribbon.\n\nUnderstand the different charges a ranger may carry, the different types of triggers and when to use them, and how many charges to use in various situations.\nThis ribbon will also cover how to use the mine detector and when it is appropriate to avoid a mine or IED or to call for an EOD (Explosive Ordnance Disposal).\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/293646', 46, 0, '2022-01-25 08:02:29', '2025-12-17 19:45:29', NULL, '4781137', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1217, 'EOD Course', '2022-01-30 15:00:00', '2022-01-30 17:00:00', 'Training Server - Northern Airfield', '#a250e8', 'The Demolition Ribbon is required to earn the EOD Badge.\n\nAdvanced understanding of the equipment an EOD should carry, all explosives, how to safely defuse or remove ordnance through various methods, as well as navigate a minefield and guide others safely through.\n\n\n', 46, 0, '2022-01-25 08:08:14', '2025-12-17 19:45:29', NULL, '4781139', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1218, 'Air Crew Training/Qual', '2022-01-31 17:00:00', '2022-01-31 19:30:00', 'Northern Airbase', '#FFFFFF', 'come be on your way to get ya pilot wings', 850, 0, '2022-01-27 04:54:14', '2025-12-17 19:45:29', NULL, '4788464', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1219, 'Operation Dustbowl Destruction Episode 5', '2022-02-02 19:00:00', '2022-02-02 22:00:00', '', '#df5353', '', 19, 0, '2022-01-27 04:58:44', '2025-12-17 19:45:29', NULL, '4788466', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1220, 'Recon Surveillance and Leadership Course', '2022-01-28 18:00:00', '2022-01-28 19:30:00', '', '#FFFFFF', 'RSLC is required for any RRC NCO who wants to lead.\n', 468, 0, '2022-01-27 23:47:01', '2025-12-17 19:45:29', NULL, '4790257', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1221, 'Sandtable- Armored Convoy', '2022-01-29 16:00:00', '2022-01-29 17:30:00', '', '#d89332', 'We\'re gonna practice a fast convoy, with reaction to contact, along with, you know, actually making it to the fucking objective. ', 2231, 0, '2022-01-27 23:53:14', '2025-12-17 19:45:29', NULL, '4790261', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1222, 'Operation Dustbowl Destruction Finale', '2022-02-16 19:00:00', '2022-02-16 22:00:00', '17th Private Operations', '#df5353', '', 19, 0, '2022-01-30 03:50:42', '2025-12-17 19:45:29', NULL, '5015628', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1223, 'IFV/Mechanized Qualification', '2022-02-05 16:00:00', '2022-02-05 18:00:00', '17th Training Range - Training Grounds', '#d89332', 'This is the qualification assessment for the Mechanized Infantry Badge. There will not be any training at this time, as it will be devoted purely to assessment. Attendance of training portion is not mandatory, but it is is encouraged to ensure familiarization.\n \nNOTE: This badge is REQUIRED to become an NCO for Echo Ground', 1133, 0, '2022-01-30 03:59:57', '2025-12-17 19:45:29', NULL, '5015635', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1224, 'Fire Team Lead FTX', '2022-02-03 19:00:00', '2022-02-03 21:00:00', 'North Airfield ', '#FFFFFF', 'Got some reports of some insurgents hiding out near FOB Ender. They might be planning an attack. Go investigate and clean out the area. \n\nWe\'ll do a quick training/brief for the first 15 minutes then the FTX will begin. \nGet your reps in and shoot some stuff up! \n\nThe more the Merrier. \n', 6, 0, '2022-01-30 20:35:10', '2025-12-17 19:45:29', NULL, '5016682', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1225, 'Echo NCO Meeting', '2022-02-04 19:00:00', '2022-02-04 20:00:00', 'Teamspeak -> Motorpool', '#ecb200', 'It\'s time for our monthly NCO Meeting. We will be getting together and going over the current state of the company, any current concerns, and going over plans for the month to come. \nNOTE: Everyone is welcome to attend but I request Non Echo NCOs be muted until the discussion is opened to everyone', 1133, 0, '2022-01-31 23:48:44', '2025-12-17 19:45:29', NULL, '5019063', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1226, 'Echo Ground Orientation', '2022-02-02 18:00:00', '2022-02-02 20:00:00', '', '#d89332', 'Learn about Echo\'s ground assets and how to be an effective member of an armored crew. ', 2231, 0, '2022-01-31 23:57:10', '2025-12-17 19:45:29', NULL, '5019064', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1227, 'RESCHEDULED: IDF Training', '2022-02-14 19:00:00', '2022-02-14 21:00:00', '', '#d89332', 'Learn how to plot and fire a mortar strike. Rescheduled to Tuesday, Feb. 15th', 2231, 0, '2022-02-05 01:58:48', '2025-12-17 19:45:29', NULL, '5027602', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1228, 'CANCELED - FTX - RRC needs the server', '2022-02-11 18:00:00', '2022-02-11 20:00:00', 'Private Ops server', '#FFFFFF', 'FTX will be conducted on a persistent map using 17th mod and ruleset. What we do is decided by number of members. Normal ops rules apply.', 483, 1, '2022-02-05 18:16:32', '2025-12-17 19:45:29', NULL, '5028238', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1229, 'Advanced UAV Course', '2022-02-18 19:00:00', '2022-02-18 20:45:00', 'Training Server', '#FFFFFF', 'RRC\'s Advanced UAV school. Darter, Yabhon, and Reaper drones. Those who aren\'t RRC qualified can still attend.', 468, 0, '2022-02-06 22:43:42', '2025-12-17 19:45:29', NULL, '5034963', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1230, 'Rescheduled: Echo Ground Crew Orientation', '2022-02-09 19:00:00', '2022-02-09 20:30:00', '', '#d89332', 'Come learn how to crew various Echo Assets, everything from Mortars to Main Battle Tanks ', 2231, 1, '2022-02-08 01:08:51', '2025-12-17 19:45:29', NULL, '5037632', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1231, 'Echo Company Range Day', '2022-02-24 19:00:00', '2022-02-24 21:00:00', '', '#d89332', 'Practice your gunnery with a variety of weapons, from Mk.19 launchers to 120MM cannons on both moving and stationary targets. ', 2231, 0, '2022-02-08 01:43:55', '2025-12-17 19:45:29', NULL, '5037637', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1232, 'Operation Crimson Sickle', '2022-02-09 19:00:00', '2022-02-09 22:00:00', '', '#FFFFFF', 'lets say spasiva to the local muricans', 850, 0, '2022-02-08 21:01:28', '2025-12-17 19:45:29', NULL, '5038850', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1233, 'Echo Ground Crew Orientation', '2022-02-10 19:00:00', '2022-02-10 20:00:00', '', '#d89332', 'Learn how to use various Echo Company assets, from mortars to MBTs. ', 2231, 0, '2022-02-08 23:49:39', '2025-12-17 19:45:29', NULL, '5038910', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1234, 'AIT 2 - Battle Drills', '2022-02-15 19:00:00', '2022-02-15 20:00:00', 'Training Server - Training Grounds', '#008ae1', 'AIT 2 - Battle Drills', 483, 0, '2022-02-11 00:34:19', '2025-12-17 19:45:29', NULL, '5042197', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1235, 'IDF Training', '2022-02-15 19:00:00', '2022-02-15 21:00:00', '', '#d89332', 'Learn the math behind the Mk.6 mortar and various artillery pieces. ', 2231, 0, '2022-02-12 01:52:58', '2025-12-17 19:45:29', NULL, '5044505', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1236, 'D-Day Russian Landing', '2022-02-17 19:00:00', '2022-02-17 22:00:00', '17th Server', '#FFFFFF', '17th Server and 17th Modpack. \n\nWell boys the Russians are squaring up with us only answer is a good old landing. Iceberg boys can be Russians if they want. \n\nWe will be deploying off of the carrier USS Harry S. Truman which was put under control of NATO command for Mediterranean sea operations however has been re-tasked to the Black sea for support in operation , "Totally a good idea and won\'t end in WW3". \n\nThe 17th will be the spearhead landing on the Russian coast using SOC assault boats and LAV\'s in addition to amphibious assault craft on loan from the USMC. Your main tasking will be two fold as the first and most important objective is to establish a foothold on the coast for NATO forces to use in landing additional assets and reinforcements. The second object will be assaulting the heavily garrisoned only major city in the region about 2k from your landing site and seizing the air field attached to it. \n\nThe 17th has been given authorization for all fixed wing assets, all rotary assets, 4x Cruise missiles, and off shore cannon support. \n\nGood luck and God speed. \n\n\n---------------------------------------------------------------------------------------------USMC landing craft will function as a mobile respawn once they have been parked and entrenched on the beach. \n\nSOC boats are found off the carrier while LAV\'s will be at a separate island not far from the landing site so you will only have to drive 4-5 minutes not 30. \n\nFixed wing/rotary assets may be requested at mission start and added to the carrier if they are not already present. However no additional assets will be given after step off, loss of assets is permanent. \n\nAdditional ground assets will be provided after objective one is captured. \n\nSupply crates are available at carrier and LAV staging island. Cargo space is increased for LAV\'s and additional wheels provided. \n\nThere will be no assigned JIP method. \n\nAdditional note for ground force and air forces, this is Russia they have Migs and CAS Jets. Pack anti air. \n\n', 639, 0, '2022-02-14 08:45:47', '2025-12-17 19:45:29', NULL, '5045826', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1237, 'Demolition & EOD FTX [CANCELED]', '2022-02-18 21:00:00', '2022-02-18 22:00:00', 'Training Frounds', '#ecb200', 'The recruits on night watch fell asleep and some insurgents have placed a minefield in front of FOB Ender! The 17th is tasked with clearing lanes and will be sent out to search and destroy the insurgents and their equipment.\n\nIt is designed to give people the opportunity to get Reps as EOD and Demolitions.\r\nThere will be 2x Slots for EOD and Demo Each (Max) \r\n - Comment on the Calendar event for the EOD and Demo Slot \r\n - First come first serve \r\nThe more the merrier!\r ', 6, 1, '2022-02-15 20:33:25', '2025-12-17 19:45:29', NULL, '5050641', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1238, 'Operation Woodland Walk Episode 1', '2022-02-23 19:00:00', '2022-02-23 21:30:00', 'Sahrani', '#df5353', '', 19, 0, '2022-02-17 04:00:17', '2025-12-17 19:45:29', NULL, '5052236', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1239, 'Operation Woodland Walk Episode 2', '2022-03-02 19:00:00', '2022-03-02 21:30:00', '', '#df5353', '', 19, 0, '2022-02-17 04:00:57', '2025-12-17 19:45:29', NULL, '5052238', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1240, 'Operation Woodland Walk Episode 3', '2022-03-16 18:00:00', '2022-03-16 20:30:00', '', '#df5353', '', 19, 0, '2022-02-17 04:01:29', '2025-12-17 19:45:29', NULL, '5052239', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1241, 'Operation Woodland Walk Episode 4', '2022-03-23 18:00:00', '2022-03-23 20:30:00', '', '#df5353', '', 19, 0, '2022-02-17 04:01:45', '2025-12-17 19:45:29', NULL, '5052240', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1242, 'Firefight mission', '2022-03-30 18:00:00', '2022-03-30 21:00:00', '', '#df5353', '', 19, 0, '2022-02-17 04:02:37', '2025-12-17 19:45:29', NULL, '5052241', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1243, 'Joint Op - Operation Frostbite', '2022-03-06 14:00:00', '2022-03-06 17:00:00', '', '#ecb200', 'Arma Server: 98.118.173.132\nPort: 2302\nTS IP: 173.234.27.145:10003\npassword: Jointop\r\nOPORD: \n\nModpack: \r\n\n\n\n', 2230, 0, '2022-02-20 00:01:50', '2025-12-17 19:45:29', NULL, '5058336', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1244, 'JTAC / CAS Practice', '2022-02-25 20:00:00', '2022-02-25 23:00:00', 'Training Server', '#FFFFFF', 'JTAC Document: \n\nCAS Document: \n\n\nThis is just a practice / familiarization. We will be bombing / rocketing / gunning targets. The more the merrier, as deconfliction is something that a JTAC must know how to deal with. \n\nRotary CAS pilots are also welcome to attend, and practice will adjust to suite. ', 501, 0, '2022-02-21 03:52:04', '2025-12-17 19:45:29', NULL, '5060490', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1245, 'CAS FTX/Demo - Moved', '2022-03-02 17:00:00', '2022-03-02 19:00:00', 'Private Ops Server', '#df5353', 'come see how fast CAS can react to a "Prairie Fire" call, just kidding, but see how fast a JTAC can relay a Squad\'s CAS request.\nMoved to Wednesday at the request of multiple people to allow them to make it', 850, 0, '2022-02-22 00:04:38', '2025-12-17 19:45:29', NULL, '5061301', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1246, 'AIT 3 MOUT', '2022-03-03 18:00:00', '2022-03-03 20:00:00', 'Private Ops server', '#FFFFFF', 'Read up on part 3 - MOUT training. Done it before? Come out and get some reps in.', 483, 0, '2022-02-23 12:49:13', '2025-12-17 19:45:29', NULL, '5064727', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1247, 'CLS/68W', '2022-02-25 19:00:00', '2022-02-25 21:00:00', '', '#ecb200', 'More info on the way when I get to my computer', 2229, 0, '2022-02-23 15:37:21', '2025-12-17 19:45:29', NULL, '5065027', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1248, 'Machine Gunnery for Dummies', '2022-02-24 19:00:00', '2022-02-24 20:30:00', '17th ranger BN training server', '#ecb200', 'Come out and go over the basics of machine gunnery.\nMaybe shoot some things and get better at being an automatic rifleman too.', 81, 0, '2022-02-23 18:32:24', '2025-12-17 19:45:29', NULL, '5065064', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1249, 'Operation Final Days', '2022-03-09 19:00:00', '2022-03-09 22:00:00', '', '#df5353', '', 850, 0, '2022-02-26 05:46:54', '2025-12-17 19:45:29', NULL, '5068530', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1250, 'Demolitions / Explosive Ordnance Disposal (EOD)', '2022-03-04 17:00:00', '2022-03-04 20:00:00', 'Training Grounds ', '#FFFFFF', 'Come and get the Demolition Ribbon and EOD Badge! ', 6, 0, '2022-02-27 00:08:15', '2025-12-17 19:45:29', NULL, '5069735', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1251, '[Canceled] Basic Training', '2022-03-10 19:00:00', '2022-03-10 22:00:00', 'Training Grounds', '#FFFFFF', 'Make sure Mods are installed and TFAR is configured prior to the start of basic training. Trainer will be available in Room 1 under 17th BN Recruitment early if you have any questions.\r\nGuides linked above', 483, 1, '2022-02-27 15:40:47', '2025-12-17 19:45:31', NULL, '5128466', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1252, 'Anti Armor School', '2022-03-04 19:00:00', '2022-03-04 21:00:00', 'Training Server', '#FFFFFF', 'Learn the ins and outs of enemy Armored Fighting Vehicles so you can kill them more better.\n\nAll can and should come. If you\'re Alpha I\'ll tell you how to kill vehicles as infantry. If you\'re Echo ground or air I\'ll tell you how to kill vehicles in your respective Echo vehicle', 468, 0, '2022-02-27 20:15:35', '2025-12-17 19:45:31', NULL, '5129121', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1253, 'Pathfinder School [Canceled]', '2022-03-06 19:00:00', '2022-03-06 20:30:00', 'Training Server', '#FFFFFF', 'Canceled.\n\nPathfinder School is required to take the Pathfinder Qualification, which is one of two courses required to become RRC qualified.', 468, 1, '2022-02-27 20:17:22', '2025-12-17 19:45:31', NULL, '5129122', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1254, 'IFV/Mechanized Qualification', '2022-03-05 16:00:00', '2022-03-05 18:00:00', '17th Training Server', '#ecb200', 'This is the qualification assessment for the Mechanized Infantry Badge. There will not be any training at this time, as it will be devoted purely to assessment. Attendance of training portion is not mandatory, but it is is encouraged to ensure familiarization. Attendees will be required to show adequate knowledge of all crew positions of an IFV and their responsibilities in a hands on FTX created and run by the Echo Lead. Standard radio procedures should be followed during this FTX.\n \nNOTE: This badge is REQUIRED to become an NCO for Echo Ground', 1133, 0, '2022-02-27 20:27:27', '2025-12-17 19:45:31', NULL, '5129129', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1255, 'Defense FTX', '2022-02-28 18:00:00', '2022-02-28 20:00:00', 'Training Server', '#FFFFFF', 'Find defensive positions based on the map and the ground. Secure and defend positions such as CCPs and LZs.', 2230, 0, '2022-02-27 21:20:32', '2025-12-17 19:45:31', NULL, '5129140', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1256, 'RTO / Communications Ribbon (Training / Qual if Time)', '2022-03-01 19:00:00', '2022-03-01 22:00:00', '', '#FFFFFF', '', 38, 1, '2022-02-27 21:25:11', '2025-12-17 19:45:31', NULL, '5129142', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1257, 'Basic Training (Tentative on Trainer)', '2022-02-28 19:00:00', '2022-02-28 22:00:00', '', '#008ae1', '', 38, 0, '2022-02-28 01:38:26', '2025-12-17 19:45:31', NULL, '5129274', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1258, 'Echo Ground Crew Orientation', '2022-03-03 19:00:00', '2022-03-03 20:30:00', '', '#d89332', 'Learn what it means to be Echo Ground crew. ', 2231, 0, '2022-02-28 22:15:11', '2025-12-17 19:45:31', NULL, '5132531', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1259, 'JTAC Bookwork and Refresher', '2022-03-11 18:00:00', '2022-03-11 21:00:00', '', '#d89332', 'Bookwork will happen first followed by the refresher for the CAS pilots and any JTACs who want to come \nEveryone is welcome to attend both, Echo bois, Alpha, Recruits, etc etc ', 516, 0, '2022-02-28 22:16:41', '2025-12-17 19:45:31', NULL, '5132533', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1260, 'Operation Radiant Burn Part 6 RRC', '2022-03-01 19:00:00', '2022-03-01 21:30:00', 'Private Ops Server', '#FFFFFF', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/b6150981-96f6-4112-a6e8-1c035d0e00e8/forums/430272466', 1141, 0, '2022-03-01 17:45:54', '2025-12-17 19:45:31', NULL, '5142082', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1261, 'Jump Master Training - Master Free Fall Jump Master Training', '2022-03-07 18:00:00', '2022-03-07 20:30:00', 'Northern Airport', '#a250e8', 'Come learn to be a jump master. This will give you the qualifications to have others jump out of air planes of various types.\nPrimarily an echo role, it is good for everyone to know exactly how jump master works. This will include free fall and static line jumping.\nJump Master Training will be followed by Free Fall Jump Master Training - More precision and detail is needed to plan a good HAHO/HALO/HAVLO and combination jumps. These jumps go to 11. Recommended to have master free fall jump wings for master free fall jump master qual. ', 483, 0, '2022-03-03 23:10:28', '2025-12-17 19:45:31', NULL, '5154274', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1262, 'AIT 2-4 FTX (AIT not required)', '2022-03-10 18:00:00', '2022-03-10 21:00:00', 'Training Server', '#ecb200', 'AIT IS NOT REQUIRED. This FTX will focus on responding to contact and bounding under fire(AIT 2), moving through a town in Hard MOUT(AIT 3), and both soft and hard clearing through a town(AIT 4). As I said at the start, it is not required to have done AIT but this FTX will focus on situations in which the trainings can be used.', 2230, 0, '2022-03-04 22:09:36', '2025-12-17 19:45:31', NULL, '5157773', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1263, 'Basic Training', '2022-03-08 19:00:00', '2022-03-08 21:00:00', '', '#FFFFFF', '', 60, 0, '2022-03-05 01:02:26', '2025-12-17 19:45:31', NULL, '5158145', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1264, 'How to Win Friends and Git Gud at Arma', '2022-03-22 18:00:00', '2022-03-22 19:00:00', '', '#FFFFFF', 'Y\'all say y\'all need friends? Cool, let\'s blow stuff up in Arma', 15, 0, '2022-03-06 04:00:18', '2025-12-17 19:45:31', NULL, '5160281', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1265, 'Operation Radiant Burn Part 7 RRC', '2022-03-11 19:00:00', '2022-03-11 21:00:00', 'Private Ops', '#FFFFFF', '', 1141, 0, '2022-03-06 15:49:20', '2025-12-17 19:45:31', NULL, '5160862', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1266, 'Rumble in the Jungle', '2022-03-14 19:00:00', '2022-03-14 20:00:00', 'Tanoa', '#FFFFFF', 'Hehehehehe I\'m back ladies\nLets go crush some heavily fortified insurgents in the jungle\n17th Private Ops Server\n17th Modpack', 28, 0, '2022-03-08 22:57:17', '2025-12-17 19:45:31', NULL, '5166407', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1267, 'AIT 4 - CQB', '2022-03-17 18:00:00', '2022-03-17 20:00:00', 'training grounds', '#355bf8', 'knife fights in phonebooths', 483, 0, '2022-03-09 21:33:37', '2025-12-17 19:45:31', NULL, '5169578', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1268, 'Basic Training', '2022-03-15 17:00:00', '2022-03-15 20:00:00', 'TS recruitment channel room 1', '#FFFFFF', '', 60, 0, '2022-03-12 20:35:46', '2025-12-17 19:45:31', NULL, '5176296', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1269, 'Pathfinder Bookwork', '2022-03-18 18:00:00', '2022-03-18 20:00:00', '', '#a250e8', 'Pathfinder Bookwork. This is one of two courses required to take the Pathfinder qualification.', 468, 0, '2022-03-13 21:41:41', '2025-12-17 19:45:31', NULL, '5179439', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1270, '(UPDATED) Operation Midnight Kraken', '2022-03-20 18:00:00', '2022-03-20 20:00:00', '17th Private Ops Server, Tanoa', '#FFFFFF', '(Sand and Blood is going to be put off to a later date in favor of combat diving)\n\nMIDNIGHT KRAKEN Is a high speed stealth raid against the well established TLA (Tanoa Liberation Army) in hopes of capturing a high ranking member of their command structure. Recent intelligence shows that he will be spending a night on a small island resort between the mainland and the southwest island. This presents a unique opportunity for us to approach silently and infiltrate the island via SCUBA, gain control of the resort, and apprehend the target, all under the cover of darkness.\nInsertion will be done via helocast off the coast of the target island, and extraction will be done via helicopter once the target has been captured.\nRequires Apex DLC.\nown the night\n.', 28, 0, '2022-03-14 18:47:55', '2025-12-17 19:45:31', NULL, '5181277', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1271, 'IDF Training/ Qualification', '2022-03-18 17:30:00', '2022-03-18 19:00:00', '', '#d89332', 'Come learn the ins and outs of mortar tubes, artillery pieces, and how to plot and execute fire missions. ', 2231, 0, '2022-03-14 22:46:38', '2025-12-17 19:45:31', NULL, '5181648', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1272, 'Operation Radiant Burn Episode 8', '2022-03-19 18:00:00', '2022-03-19 21:30:00', '17th Private Operations Server', '#df5353', 'A WallyWorld production.', 19, 0, '2022-03-15 20:45:06', '2025-12-17 19:45:31', NULL, '5186582', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1273, 'Operation Radiant Burn Episode 9', '2022-03-26 18:00:00', '2022-03-26 21:30:00', '17th Private Operations Server', '#df5353', '', 19, 0, '2022-03-15 20:45:45', '2025-12-17 19:45:31', NULL, '5186583', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1274, 'Operation Radiant Burn - FINALE', '2022-04-02 18:00:00', '2022-04-02 22:00:00', '17th Private Operations Server', '#df5353', '', 19, 0, '2022-03-15 20:47:04', '2025-12-17 19:45:31', NULL, '5186585', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1275, 'Battalion NCO Meetings', '2022-04-02 17:00:00', '2022-04-02 18:00:00', 'TS --> Chow Hall', '#a250e8', '', 19, 0, '2022-03-15 20:47:39', '2025-12-17 19:45:31', NULL, '5186587', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1276, 'Sand and Blood Episode 1', '2022-03-27 18:00:00', '2022-03-27 20:00:00', '17th Private Ops, Zargabad', '#FFFFFF', 'A large scale Russian invasion has commenced with the intent to capture the city of Zargabad. The 17th will fight alongside local forces to delay the attack to provide as much time as possible for evacuations and emergency preparations within the city.\r\nTo just hold on a second longer is a victory.', 28, 0, '2022-03-15 22:19:48', '2025-12-17 19:45:31', NULL, '5186820', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1277, 'Fixed Wing Logi Qual', '2022-03-18 18:00:00', '2022-03-18 20:00:00', '', '#ecb200', '', 850, 0, '2022-03-15 23:17:33', '2025-12-17 19:45:31', NULL, '5186865', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1278, 'Master Free Fall', '2022-03-17 16:00:00', '2022-03-17 17:30:00', 'Training Server - Training Grounds', '#a250e8', '', 46, 0, '2022-03-16 02:01:11', '2025-12-17 19:45:31', NULL, '5186920', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1279, 'Combat Diver Course', '2022-03-20 16:00:00', '2022-03-20 18:00:00', 'Training Server - Training Grounds', '#a250e8', 'Learn how to swim better.\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/308624', 46, 0, '2022-03-16 02:31:40', '2025-12-17 19:45:31', NULL, '5187212', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1280, '[Cancelled] Operation Radiant Burn Part 8 RRC', '2022-03-18 18:00:00', '2022-03-18 20:00:00', 'Private Ops', '#FFFFFF', '', 1141, 1, '2022-03-17 09:43:30', '2025-12-17 19:45:31', NULL, '5189749', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1281, 'Battalion FTX', '2022-04-09 18:00:00', '2022-04-09 21:00:00', '17th Private Operations', '#df5353', 'A Pop Rocks production.', 19, 0, '2022-03-17 15:06:03', '2025-12-17 19:45:31', NULL, '5190437', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1282, 'RTO Bookwork / Qualification (If time Permitting)', '2022-03-21 18:30:00', '2022-03-21 21:00:00', '', '#FFFFFF', '', 38, 0, '2022-03-18 00:21:23', '2025-12-17 19:45:31', NULL, '5191241', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1283, 'Ground Crew Familiarization', '2022-03-19 15:00:00', '2022-03-19 16:30:00', 'Northern Airbase', '#ecb200', 'Come learn the ins and outs of operating in a ground vehicle', 2222, 0, '2022-03-19 13:27:27', '2025-12-17 19:45:31', NULL, '5193533', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1284, 'RASP', '2022-04-16 18:00:00', '2022-04-16 21:30:00', 'Tanoa', '#df5353', 'A Pilot who simply wishes to see destruction. \nWill require Apex DLC.', 850, 0, '2022-03-20 13:48:22', '2025-12-17 19:45:31', NULL, '5195095', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1285, 'Basic Training', '2022-03-25 19:00:00', '2022-03-25 22:00:00', 'Training Grounds', '#008ae1', 'Make sure Mods are installed and TFAR is configured prior to the start of basic training. Trainer will be available in Room 1 under 17th BN Recruitment early if you have any questions.\r\nGuides linked above', 483, 0, '2022-03-21 14:38:45', '2025-12-17 19:45:31', NULL, '5196763', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1286, 'iceberg Side Op - Cytech Lab - Establish Communications', '2022-03-24 19:00:00', '2022-03-24 21:00:00', 'Side op server', '#FFFFFF', 'Side op mission I scheduled for this Thursday at 8 pm central time. DO NOT SIGN UP HERE. Go to the iceberg calendar (link in the URL) and sign up there)\nAdditional mods are needed - read the post to get them', 483, 0, '2022-03-21 16:06:59', '2025-12-17 19:45:31', NULL, '5196789', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1287, 'Pathfinder Qualification', '2022-03-28 18:00:00', '2022-03-28 21:00:00', 'Private Operations Server', '#a250e8', 'Candidates must attend Pathfinder Bookwork + Master Free Fall school before attempting the qualification. If you are marked to attend and are unable to attend, mark yourself as declined to allow for another person on the waitlist. I\'ll be extra mad at you if you don\'t.\n\n\nDetails of the qualification will be discussed in the Ready Room on TeamSpeak 15 minutes before the qualification is due to begin.', 468, 0, '2022-03-23 00:42:23', '2025-12-17 19:45:31', NULL, '5199425', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1288, 'Basic Training', '2022-03-29 16:30:00', '2022-03-29 19:30:00', 'Training grounds In Training Server', '#FFFFFF', 'Made at this Specific time for Vision\n', 81, 0, '2022-03-23 01:08:13', '2025-12-17 19:45:31', NULL, '5199460', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1289, '[MOVED]Air Crew Training', '2022-03-31 18:00:00', '2022-03-31 20:00:00', 'Northern Airbasw', '#ecb200', 'get started with getting your flight wings', 850, 0, '2022-03-23 17:15:04', '2025-12-17 19:45:31', NULL, '5200190', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1290, 'Co Pilot Training', '2022-03-29 18:00:00', '2022-03-29 20:00:00', '', '#ecb200', 'step 2 of the road to your flight wings, will be a renewed version and more streamlined of Co Pilot.', 850, 0, '2022-03-23 17:18:35', '2025-12-17 19:45:31', NULL, '5200196', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1291, 'Combat Diver Course', '2022-03-25 18:00:00', '2022-03-25 20:00:00', 'Training Server - Training Grounds', '#a250e8', 'Diving with friends. Synchronized Swimming section not included.\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/308624', 46, 0, '2022-03-23 22:18:09', '2025-12-17 19:45:31', NULL, '5200458', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1292, 'Fixed Wing CAS Qual', '2022-04-01 16:00:00', '2022-04-01 18:00:00', '', '#ecb200', '', 850, 0, '2022-03-27 16:41:36', '2025-12-17 19:45:31', NULL, '5214043', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1293, '17th Community Round Table', '2022-04-10 14:30:00', '2022-04-10 16:30:00', '', '#a250e8', 'Do NOT put your talking points here, put them in the Bulletin Board post, please.\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/31a767aa-f57a-45e5-8929-d25183bce25e/forums/1833887928', 19, 0, '2022-03-27 20:14:50', '2025-12-17 19:45:31', NULL, '5214641', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1294, 'Sand and Blood Ending', '2022-04-03 16:30:00', '2022-04-03 17:30:00', '17th private ops (Zargabad)', '#FFFFFF', 'After stalling a Russian advance for a period of time, the city of Zargabad was successfully evacuated. Despite the defense eventually crumbling, the local forces managed to set up a variety of positions in the city and are holding their ground in positions in the city.\n\nThe 17th is currently held up just outside of the city where they fell back to after being overwhelmed. Their task is to move through the city and support the various positions held by the Takistan army until an additional US armored element can move in from the north and begin to retake the city.', 28, 0, '2022-03-27 21:12:57', '2025-12-17 19:45:31', NULL, '5214686', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1295, 'ACCELERATED BASIC', '2022-03-28 17:00:00', '2022-03-28 18:30:00', 'training server', '#ecb200', 'Only for those recruits who have been approved for accelerated basic training', 81, 0, '2022-03-28 14:10:19', '2025-12-17 19:45:31', NULL, '5215609', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1296, 'IFV/Mechanized Qual', '2022-04-02 15:30:00', '2022-04-02 17:00:00', 'Training Server -> Training Range', '#FFFFFF', 'This is the qualification assessment for the Mechanized Infantry Badge. There will not be any training at this time, as it will be devoted purely to assessment. Attendance of training portion is not mandatory, but it is is encouraged to ensure familiarization. Attendees will be required to show adequate knowledge of all crew positions of an IFV and their responsibilities in a hands on FTX created and run by the Echo Lead. Standard radio procedures should be followed during this FTX.\n \nNOTE: This badge is REQUIRED to become an NCO for Echo Ground', 1133, 0, '2022-03-28 15:03:14', '2025-12-17 19:45:31', NULL, '5215985', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1297, 'JTAC bookwork 2.0 and qual', '2022-04-01 17:00:00', '2022-04-01 19:00:00', '', '#ecb200', 'Going ove the revised bookwork and then Ill qual as many people as I can (time permitting) \nAny pilots that wanna get some reps in are more than welcome to come', 516, 0, '2022-03-28 15:17:18', '2025-12-17 19:45:31', NULL, '5215989', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1298, 'Pathfinder Qualification', '2022-04-01 15:30:00', '2022-04-01 18:00:00', 'Private Operations Server', '#a250e8', 'Pathfinder and Master Free Fall are prerequisites to attend.', 468, 0, '2022-03-29 07:13:46', '2025-12-17 19:45:31', NULL, '5216645', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1299, 'Marksman/Sharpshooter Open Call', '2022-03-31 18:00:00', '2022-03-31 19:30:00', 'Training range Rifle Range', '#FFFFFF', '', 81, 0, '2022-03-30 01:14:13', '2025-12-17 19:45:31', NULL, '5217660', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1300, 'Master Free Fall School', '2022-03-31 20:30:00', '2022-03-31 21:30:00', 'Training Server', '#a250e8', 'This was originally scheduled as a 1-1, but there is no reason others cannot join.\n\nMaster Free Fall is one of two courses required to attempt the Pathfinder Qualification.', 468, 0, '2022-03-30 06:27:03', '2025-12-17 19:45:31', NULL, '5217936', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1301, 'Operation Radiant Burn Finale RRC', '2022-04-01 18:00:00', '2022-04-01 21:00:00', 'Private Ops Server', '#FFFFFF', '', 1141, 0, '2022-03-30 11:22:46', '2025-12-17 19:45:31', NULL, '5218175', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1302, 'Pointman Training', '2022-04-08 18:00:00', '2022-04-08 20:00:00', 'Training Server', '#6cba50', 'Learn how to navigate a fireteam as the pointman. Also get reps in 3 D\'s, landnav, and being a 2IC. ', 942, 0, '2022-04-01 23:06:57', '2025-12-17 19:45:31', NULL, '5220867', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1303, 'Fixed Wing Logistics Qual', '2022-04-08 16:00:00', '2022-04-08 17:00:00', '', '#FFFFFF', '', NULL, 0, '2022-04-03 01:41:19', '2025-12-17 19:45:31', NULL, '5222531', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1304, 'Operation Fast and Hard', '2022-04-06 18:00:00', '2022-04-06 21:00:00', 'Private Operations', '#df5353', 'Event Details: Infiltrate into the AO hitting multiple locations in a search and retrieve mission for a secret device. Usage of nuclear devices is possible, which is why it\'s necessary to be as fast as possible.\nServer: Private Operations Server\nMap: Fapovo', 2230, 0, '2022-04-03 19:37:32', '2025-12-17 19:45:31', NULL, '5223468', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1305, 'FTX What Alpha Does Best', '2022-04-10 18:00:00', '2022-04-10 20:00:00', '17th Rangers Training Server, Training Grounds', '#FFFFFF', '"Was that you knocking? I didn\'t even know we still had a door."\nThis is my first FTX that I\'ll be hosting, and a series of many more to come. This is a chance to get extra reps in in things you\'re not comfortable with working in.\nWill need:\nTopics to Cover:\nIf you want a further in-depth training in terms of CQB and breaching, \nsign up for Giland\'s AIT trainings! \nHe does these topics so much more justice than I ever could.', 67, 0, '2022-04-04 00:07:39', '2025-12-17 19:45:31', NULL, '5223673', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1306, 'Basic Training', '2022-04-05 17:30:00', '2022-04-05 20:30:00', 'Training Grounds', '#008ae1', 'Come Recruits, come all! Get your basic training!', 2222, 0, '2022-04-04 00:16:04', '2025-12-17 19:45:31', NULL, '5223682', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1307, '[Cancelled] Ground Crew Orientation', '2022-04-07 18:00:00', '2022-04-07 20:00:00', 'Northern Airfield', '#ecb200', 'Learn the basics of the ground assets you will use as a member of Echo (Alpha Dudes welcome as well), show up and be more prepared for you next op!', 2222, 1, '2022-04-04 00:28:29', '2025-12-17 19:45:31', NULL, '5223686', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1308, 'Operation Void Cart', '2022-04-13 18:00:00', '2022-04-13 21:00:00', 'Tanoa', '#FFFFFF', 'Gonna test things during this mission too, shouldnt be too crazy.', 850, 0, '2022-04-05 22:07:19', '2025-12-17 19:45:31', NULL, '5226703', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1309, 'Land Navigation', '2022-04-07 18:00:00', '2022-04-07 21:00:00', '', '#FFFFFF', '', 38, 0, '2022-04-06 03:39:23', '2025-12-17 19:45:31', NULL, '5227432', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1310, 'Basic Training Discussion', '2022-04-07 20:00:00', '2022-04-07 21:00:00', 'NCO club in TS', '#30a68f', '', 81, 0, '2022-04-07 17:48:27', '2025-12-17 19:45:31', NULL, '5231071', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1311, 'Echo NCO Meeting', '2022-04-10 18:00:00', '2022-04-10 18:30:00', 'Teamspeak -> Motorpool', '#d89332', 'Echo NCOs (and anyone who wishes to listen along) will meet to go over the results of the Command Meeting and go over goals for the next Quarter of the year.', 1133, 0, '2022-04-08 02:42:51', '2025-12-17 19:45:31', NULL, '5231430', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1312, 'Basic training Discussion Pt 2 Electric Boogaloo', '2022-04-15 19:00:00', '2022-04-15 20:30:00', 'Chow hall TS', '#FFFFFF', '', 81, 0, '2022-04-08 03:10:40', '2025-12-17 19:45:31', NULL, '5231459', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1313, 'The Concepts of Teaching Trainings', '2022-04-12 18:30:00', '2022-04-12 20:30:00', 'Teamspeak - Alpha NCO Club (Because thats what I choose to use)', '#FFFFFF', '\n - Please try to attend.', 38, 0, '2022-04-08 03:19:15', '2025-12-17 19:45:31', NULL, '5231461', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1314, 'Basic Training', '2022-04-11 18:00:00', '2022-04-11 21:00:00', '17th BN Training Server', '#FFFFFF', 'Come out and get started in the 17th Ranger Battalion!', 21, 0, '2022-04-08 20:20:27', '2025-12-17 19:45:31', NULL, '5233137', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1315, 'FTL FTX', '2022-04-22 18:00:00', '2022-04-22 19:30:00', 'Training Grounds', '#FFFFFF', 'This FTX will help Fire Team Leads practice reaction to contact, communicate and help push Fire Team Leads to be more assertive and work to take action without waiting for Squad Lead. \nWe will talk about fire team movements, formations, communication, and smokes. \n\nLore: \nDuring the flight to FOB Ender, your team\'s black hawk got shot down. Luckily both you and your squad survived! Now stuck behind enemy lines, you must fight your way to a rendezvous point. ', 6, 0, '2022-04-10 20:17:37', '2025-12-17 19:45:31', NULL, '5237522', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1316, 'Guided Munitions Familiarization and Utilization', '2022-04-14 16:00:00', '2022-04-14 17:00:00', 'North Airfield', '#FFFFFF', 'Come learn what those strange combinations of numbers and letters on your weapon screen mean, and what happens when you press the magic pickle button with them selected.\n\nWe\'ll be going over PGMs and how to use GPS guidance and targeting pods, and then putting your skills to use by blowing things up.', 1040, 0, '2022-04-10 20:52:30', '2025-12-17 19:45:31', NULL, '5237536', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1317, 'Maneuver FTX', '2022-04-11 18:00:00', '2022-04-11 21:00:00', 'Training', '#FFFFFF', '', 2230, 0, '2022-04-10 21:56:01', '2025-12-17 19:45:31', NULL, '5237543', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1318, 'Echo Orientation', '2022-04-14 18:00:00', '2022-04-14 19:30:00', 'Northern Airfield', '#ecb200', 'Come get familiar with the different assets we use, and how to use them.', 2222, 0, '2022-04-11 10:45:47', '2025-12-17 19:45:31', NULL, '5238343', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1319, 'Demolitions Course', '2022-04-24 17:00:00', '2022-04-24 18:30:00', 'Training Server - North Airfield', '#a250e8', 'If any NCOs would like to teach Demolitions/EOD, I invite you to assist with this training.\n (DM me if you would like to assist \n(Must already be qualified to assist)\n)\nCourse information below:\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/293646', 46, 0, '2022-04-11 11:24:31', '2025-12-17 19:45:31', NULL, '5238353', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1320, 'EOD Course', '2022-04-24 18:45:00', '2022-04-24 20:45:00', 'Training Server - North Airfield', '#a250e8', 'If any NCOs would like to teach Demolitions/EOD, I invite you to assist with this training.\n (DM me if you would like to assist \n(Must already be qualified to assist)\n)\nCourse information below:\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/658c531b-1e62-43c4-b4ce-a54c34114070/docs/293647', 46, 0, '2022-04-11 11:25:22', '2025-12-17 19:45:31', NULL, '5238354', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1321, 'Co-Pilot Course', '2022-04-22 16:00:00', '2022-04-22 18:00:00', 'Training Server - North Airfield', '#a250e8', 'If any Rotary Pilot qualified people can assist, I would appreciate it.\n (DM me if you are able to assist)\nCourse information below:\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/263833', 46, 0, '2022-04-11 11:31:51', '2025-12-17 19:45:31', NULL, '5238355', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1322, 'Airborne (Jump Wings) Course', '2022-04-26 17:00:00', '2022-04-26 19:00:00', 'Training Server - South Airfield', '#a250e8', 'If any NCOs would like to teach Airborne (Jump Wings), I invite you to assist with this training.\n (DM me if you would like to assist \n(Must already be qualified to assist)\n)\nCourse information below:\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/312610', 46, 0, '2022-04-11 11:34:52', '2025-12-17 19:45:31', NULL, '5238356', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1323, 'Master Free Fall (MFF) Course', '2022-04-26 19:15:00', '2022-04-26 20:45:00', 'Training Server - South Airfield', '#a250e8', 'Course information below:\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/1426483299', 46, 0, '2022-04-11 11:36:21', '2025-12-17 19:45:31', NULL, '5238357', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1324, 'Combat Diver Course', '2022-04-27 16:00:00', '2022-04-27 18:00:00', 'Training Server - Training Grounds', '#a250e8', 'Course information below:\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/308624', 46, 0, '2022-04-11 11:41:48', '2025-12-17 19:45:31', NULL, '5238360', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1325, '[Cancelled] Jump Master Course', '2022-04-29 17:00:00', '2022-04-29 18:30:00', 'Training Server - South Airfield', '#a250e8', 'If any \nECHO\n NCOs would like to teach Jump Master, I invite you to assist with this training.\n (DM me if you would like to assist \n(Must already be qualified to assist)\n)\nCourse information below:\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/309578', 46, 1, '2022-04-11 11:44:48', '2025-12-17 19:45:31', NULL, '5238361', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1326, '[Cancelled] Master Free Fall Jump Master (MFF JM) Course', '2022-04-29 18:45:00', '2022-04-29 20:15:00', 'Training Server - South Airfield', '#a250e8', 'Course information below:\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/313222', 46, 1, '2022-04-11 11:46:19', '2025-12-17 19:45:31', NULL, '5238362', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1327, 'Air Assault Course', '2022-04-25 18:00:00', '2022-04-25 20:00:00', 'Training Server - South Airfield', '#a250e8', 'If any NCOs would like to teach Air Assault, I invite you to assist with this training.\n (DM me if you would like to assist \n(Must already be qualified to assist)\n)\nCourse information below:\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/1123787340', 46, 0, '2022-04-11 12:44:09', '2025-12-17 19:45:31', NULL, '5238445', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1328, 'Anti Armor School', '2022-04-15 18:00:00', '2022-04-15 20:00:00', 'Training Server', '#6cba50', 'Learn the ins and outs of enemy Armored Fighting Vehicles so you can kill them better. \nOne of two required for the Heavy Weapons ribbon.', 468, 1, '2022-04-11 18:34:49', '2025-12-17 19:45:31', NULL, '5238759', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1329, 'Basic Training', '2022-04-14 18:00:00', '2022-04-14 21:00:00', '17th Training Server', '#FFFFFF', 'Come Recruits! Get Basic then get Complicated!', 1191, 0, '2022-04-12 11:49:27', '2025-12-17 19:45:31', NULL, '5240135', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1330, 'AIT 1 - Fireteam members', '2022-04-18 19:00:00', '2022-04-18 21:00:00', 'Training Range', '#a250e8', 'AIT part 1, fire team members, what they are and what they do.\nCome find out about auto rifleman, MAT gunner, including Assistant to AR and MAT.\nAlso covered is formations, movement, etc. Read the above linked document.\nThis is part 1 of a 4 part series', 483, 0, '2022-04-12 23:37:58', '2025-12-17 19:45:31', NULL, '5242155', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1331, 'AIT 2 - Battle Drills', '2022-04-21 19:00:00', '2022-04-21 21:00:00', 'Training Grounds', '#a250e8', 'AIT 2 - Battle Drills.\nlearn the different battle drills. Chances are you have been using them, especially if you have been to any operations. Battle drills are used frequently.\nCome find out WHY they work and why we do them.\nPart 2 of a 4 part series', 483, 0, '2022-04-12 23:42:51', '2025-12-17 19:45:31', NULL, '5242156', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1332, '68W/CLS Training', '2022-04-15 18:00:00', '2022-04-15 20:00:00', 'Training Server ', '#ecb200', 'Syllabus: \nWe will be first reviewing the CLS training per 17th guidance found here. \n\n\n\nFor 68W we will be reviewing the 17th guidance found here. \n\n\n\nWe will be covering both CLS and 68W consecutively. \nTest: \nWe will have a practical at the end testing \n(1) Reviving injured persons per proper procedure\n(2) Quality of handling of mass cas ', 2229, 0, '2022-04-13 12:52:02', '2025-12-17 19:45:31', NULL, '5243274', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1333, 'Basic Training EU/Asia/Africa', '2022-04-15 07:00:00', '2022-04-15 10:00:00', '17th Training Server ', '#ecb200', 'Basic Training for anyone who can not attend BCT during normal times, anyone is allowed to join if they want. Meet in the 17th Teamspeak Server\nTime changed to 2 hours earlier due to unexpected irl circumstances', 21, 0, '2022-04-13 18:33:54', '2025-12-17 19:45:31', NULL, '5243711', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1334, 'Mod Pack Updated (No Training Scheduled)', '2022-04-16 23:00:00', '2022-04-17 23:00:00', '', '#FFFFFF', 'TASKS', 38, 0, '2022-04-14 17:17:49', '2025-12-17 19:45:31', NULL, '5244797', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1335, 'Anti Armor School [Cancelled]', '2022-04-15 18:00:00', '2022-04-15 20:00:00', '', '#a250e8', 'One of two courses required for Heavy Weapons Ribbon.\n\nLearn the Ins and Outs of enemy AFVs so you can kill them more better.\n\nCancelled. Go to 68W instead.', 468, 1, '2022-04-14 22:36:43', '2025-12-17 19:45:31', NULL, '5244906', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1336, 'Anti Armor School', '2022-04-19 18:00:00', '2022-04-19 20:00:00', '', '#FFFFFF', 'One of two courses needed for the Heavy Weapons Ribbon.\nLearn the ins and outs of enemy Armored Fighting Vehicles, their capabilities and their weaknesses, so you can kill them better. Alpha members will learn infantry-based AT systems, Echo members will also be taught vehicle-based systems.', 468, 0, '2022-04-14 22:57:02', '2025-12-17 19:45:31', NULL, '5244915', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1337, 'Aj\'s Drug Runners', '2022-04-20 18:00:00', '2022-04-20 20:00:00', '17th private ops (somewhere)', '#df5353', 'WELL GUESS WHAT ITS 4/20 YKNOW WHAT THAT MEANS?\n\nNo, you are wrong, why would you ever think that you stupid fucking-\n\nDAMN RIGHT WE ARE GONNA BE BUSTING SOME DRUGS, Get ready to be some gamer larping as an internet soldier larping as a cop cuz we are gonna be doing DRUG RAIDS (albeit rather large ones). Pack ya kits for raids, stuff yourselves into some MRAPS like sardines in a can, and get ready to scatter the hookers and burn the blow, maybe hit a little while we are there who knows, all I know is its gonna be a ride.\n\nNo extra mods.\n\ncuz for some fucking reason I am doing this in the middle of exams, kill me now', 28, 0, '2022-04-15 01:48:28', '2025-12-17 19:45:31', NULL, '5245036', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1338, 'Basic Training', '2022-04-16 16:00:00', '2022-04-16 18:00:00', '', '#30a68f', 'Come learn the basics before getting thrown into the deep end at RASP', 15, 1, '2022-04-15 13:54:57', '2025-12-17 19:45:31', NULL, '5245270', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1339, 'Basic Training for EU Timezones', '2022-04-16 07:00:00', '2022-04-16 09:00:00', 'Training Server', '#FFFFFF', '', 1191, 0, '2022-04-15 15:00:52', '2025-12-17 19:45:31', NULL, '5245284', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1340, 'Pathfinder Bookwork', '2022-04-28 18:00:00', '2022-04-28 19:45:00', 'Training Server', '#a250e8', 'Pathfinder Bookwork and Master Freefall are required to take the Pathfinder Qualification, which allows you to participate in RRC operations.', 468, 0, '2022-04-15 18:47:52', '2025-12-17 19:45:31', NULL, '5245754', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1341, 'Pathfinder Qualification', '2022-05-01 18:00:00', '2022-05-01 21:00:00', 'Private Operations Server', '#a250e8', 'Pathfinder Bookwork and Master Free Fall are required to take the qualification. Candidates must complete an objective under an unknown time limit and strict standards.', 468, 0, '2022-04-15 18:49:11', '2025-12-17 19:45:31', NULL, '5245755', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1342, 'Basic Orientation', '2022-04-16 16:00:00', '2022-04-16 17:30:00', '', '#FFFFFF', '', 15, 0, '2022-04-16 20:33:51', '2025-12-17 19:45:31', NULL, '5246530', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1343, '[Cancelled] Bradley Crew FTX', '2022-05-06 18:00:00', '2022-05-06 20:00:00', 'TBD, Will update when known.', '#ecb200', 'New date TBD', 2222, 1, '2022-04-17 13:30:06', '2025-12-17 19:45:31', NULL, '5247200', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1344, 'Battalion NCO Meeting', '2022-04-30 17:00:00', '2022-04-30 18:00:00', 'Chow Hall in TS', '#FFFFFF', '', 81, 0, '2022-04-17 16:32:11', '2025-12-17 19:45:31', NULL, '5247465', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1345, 'Battalion NCO Meeting', '2022-04-23 17:00:00', '2022-04-23 18:00:00', 'Chow Hall on TS', '#FFFFFF', '', 81, 0, '2022-04-17 16:32:46', '2025-12-17 19:45:31', NULL, '5247466', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1346, 'Battalion FTX', '2022-04-23 18:00:00', '2022-04-23 21:00:00', '', '#df5353', 'Come one come all to the interim FTX. AJ needed a week due to finals so we\'re throwing this up in the mean time. :)', 48, 0, '2022-04-17 16:34:47', '2025-12-17 19:45:31', NULL, '5247467', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1347, 'Operation Breaking Bottle[Details moved to Iceberg Calendar]', '2022-04-28 14:00:00', '2022-04-28 18:30:00', 'TBD', '#FFFFFF', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/WDJ475Xz/channels/76d99607-ec61-437a-886e-c3cba36e0ada/calendar/5252988', 2230, 0, '2022-04-17 19:37:46', '2025-12-17 19:45:31', NULL, '5247537', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1348, 'Big Brother Bradley FTX', '2022-05-01 18:00:00', '2022-05-01 21:00:00', 'Training Grounds', '#ecb200', 'Hi everyone! This is a build off from my previous FTX "What Alpha Does Best". This is separate from Raccoon\'s Bradley Crew FTX that he has going on May 6th which I strongly urge Echo members to attend!\n\nWith that said, this one is focusing on a joint operation between Alpha and Echo elements, mostly between Bradleys and a squad together. Last time, it was a heavily dominant Alpha focused training, but this time around, I want to show Echo some love as well.\nWho should attend:\nWhat you can expect:\nWhat is the mindset going in?\nWhat about other support assets?\nFinal Notes:\n\nhttps://www.youtube.com/watch?v=1vrEljMfXYo', 67, 0, '2022-04-18 00:02:56', '2025-12-17 19:45:31', NULL, '5247605', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1349, 'Guided Munitions Training', '2022-04-21 18:00:00', '2022-04-21 19:00:00', 'North Airbase', '#FFFFFF', 'Come learn how to best use guided weapons! We\'ll be focusing on the pilot side of things this time, specifically, best training pilots to maneuver properly and use some of the trickier guided weapons.', 1040, 0, '2022-04-19 16:04:44', '2025-12-17 19:45:31', NULL, '5249631', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1350, 'Basic Training', '2022-04-21 16:00:00', '2022-04-21 19:00:00', 'Training Server', '#FFFFFF', '', 2230, 0, '2022-04-19 19:13:00', '2025-12-17 19:45:31', NULL, '5249763', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1351, 'Escape and Evade', '2022-05-02 18:00:00', '2022-05-02 20:00:00', 'Private Operations Server', '#6cba50', 'Come learn how to auto-rotate and control a destroyed anti-torque, and then maneuver from an onslaught of enemies on their way towards your crashed bird and final position!', 850, 0, '2022-04-20 21:10:12', '2025-12-17 19:45:31', NULL, '5251561', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1352, 'Rotary CAS Qual', '2022-05-05 18:00:00', '2022-05-05 20:00:00', 'I FUCKING FORGOT', '#355bf8', 'I finally did it, thank fuck.', 850, 0, '2022-04-20 21:14:35', '2025-12-17 19:45:31', NULL, '5251618', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1353, 'Basic Training', '2022-04-24 17:00:00', '2022-04-24 19:00:00', 'Meet in the Recruitment room 1 on TS', '#FFFFFF', '', 81, 0, '2022-04-21 00:05:51', '2025-12-17 19:45:31', NULL, '5251777', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1354, 'Rotary - Logistics Training Course', '2022-04-23 16:00:00', '2022-04-23 17:00:00', 'Training Server Northern Airfield', '#ecb200', 'Basic practice and prep for qual. Copilots and crewmen welcome to join to get comms practice and experience helping with maneuvering, landing, and sling loading. See the Aircraft Training document section in Guilded for docs related to your position. This training will be focused on pilots and copilots but aircrew is always welcome and necessary \n', 27, 0, '2022-04-21 17:41:32', '2025-12-17 19:45:31', NULL, '5252569', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1355, 'Basic Training', '2022-04-29 14:00:00', '2022-04-29 16:00:00', '', '#ecb200', '', 15, 0, '2022-04-21 17:53:18', '2025-12-17 19:45:31', NULL, '5252573', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1356, 'IFV/Mechanized Qual', '2022-04-23 14:30:00', '2022-04-23 16:00:00', 'Training Server', '#d89332', 'This is the qualification assessment for the Mechanized Infantry Badge. There will not be any training at this time, as it will be devoted purely to assessment. Attendance of training portion is not mandatory, but it is is encouraged to ensure familiarization. Attendees will be required to show adequate knowledge of all crew positions of an IFV and their responsibilities in a hands on FTX created and run by the Echo Lead. Standard radio procedures should be followed during this FTX.\n \nNOTE: This badge is REQUIRED to become an NCO for Echo Ground', 1133, 0, '2022-04-22 01:27:11', '2025-12-17 19:45:31', NULL, '5252913', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1357, 'Aj\'s Campaign Test Run', '2022-04-25 19:00:00', '2022-04-26 09:30:00', '17th Ops Server (Altis)', '#FFFFFF', 'I NEED BODIES TO SHOOT SHIT SO I CAN TEST SHIT GET OVER HERE AND DO THE THINGS AND STUFF PLEASE AND THANK YOU', 28, 0, '2022-04-23 16:24:06', '2025-12-17 19:45:31', NULL, '5256017', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1358, 'Basic Training', '2022-04-26 17:00:00', '2022-04-26 20:00:00', 'Recrcuitment Room 1 in TS', '#FFFFFF', '', 39, 0, '2022-04-24 13:20:53', '2025-12-17 19:45:31', NULL, '5258022', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1359, 'Rotary CAS Training', '2022-05-04 16:00:00', '2022-05-04 18:00:00', 'northern airbase', '#ecb200', 'a general idea of what to expect for the rotary CAS qual', 850, 0, '2022-04-24 18:11:10', '2025-12-17 19:45:31', NULL, '5258360', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1360, 'Forest Fighting FTX', '2022-04-26 19:15:00', '2022-04-26 21:35:00', 'Private Operations (United Sahrani)', '#6cba50', 'Fighting in forests and utilizing their properties to our advantage. Alpha focus.', 2230, 0, '2022-04-25 03:16:32', '2025-12-17 19:45:31', NULL, '5260197', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1361, 'Basic Training', '2022-05-03 17:00:00', '2022-05-03 20:00:00', 'Meet in Recruitment Room 1 in TS', '#FFFFFF', 'Please have mods and TS configured before if able, help can be found under New Member Guides in Guilded', 39, 0, '2022-04-25 11:40:11', '2025-12-17 19:45:31', NULL, '5260491', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1362, 'Operation Eclipse Part 1', '2022-04-30 18:00:00', '2022-04-30 21:00:00', '', '#df5353', 'An AJ production :)\n\n\n', 48, 0, '2022-04-25 17:24:01', '2025-12-17 19:45:31', NULL, '5260800', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1363, '[Cancelled]Airborne/Land Nav FTX', '2022-04-29 18:45:00', '2022-04-29 21:30:00', 'Private Ops', '#ecb200', 'Trainees will airdrop into the AO then utilize land nav principles to regroup and assault objectives with limited equipment.', 2230, 1, '2022-04-26 01:48:26', '2025-12-17 19:45:31', NULL, '5261577', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1364, 'Heavy Weapons School', '2022-05-03 18:00:00', '2022-05-03 19:30:00', '', '#FFFFFF', 'One of two needed for the Heavy Weapons Ribbon. Gain intermediary knowledge of infantry-based Anti-Tank systems, then learn the Crew-Served Weapons. Afterwards, receive basic knowledge on OPFOR weapon systems.', 468, 0, '2022-04-26 03:41:42', '2025-12-17 19:45:31', NULL, '5261598', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1365, 'Advanced UAV School', '2022-05-01 16:00:00', '2022-05-01 17:45:00', '', '#FFFFFF', 'RRC\'s Advanced UAV School. Learn vanilla and USAF drones for enhanced droning and armed strikes.', 468, 0, '2022-04-26 03:45:32', '2025-12-17 19:45:31', NULL, '5261600', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1366, 'Fixed Wing CAS Training', '2022-04-28 17:00:00', '2022-04-28 18:00:00', 'North Airbase', '#FFFFFF', 'Learn how to make shooty plane fly good', 1040, 0, '2022-04-26 16:57:04', '2025-12-17 19:45:31', NULL, '5262344', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1367, 'Fixed Wing CAS Training Take 2', '2022-05-01 17:00:00', '2022-05-01 18:00:00', 'North Airbase', '#FFFFFF', 'Get gooder at at flying, practical application of techniques and fire missions', 1040, 0, '2022-04-26 17:01:50', '2025-12-17 19:45:31', NULL, '5262345', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1368, 'Ranger Training', '2022-05-06 18:00:00', '2022-05-06 19:30:00', 'Training Server', '#6cba50', 'Monthly Ranger Training. We\'re going to briefly learn/review some stuff, then spend the day practicing and getting better at it.\n\nTopics will be decided after Operation 1 of AJ\'s campaign. The more, the merrier.', 468, 0, '2022-04-26 20:35:39', '2025-12-17 19:45:31', NULL, '5262783', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1369, 'Anti Armor but you\'re in armor as well', '2022-05-10 18:00:00', '2022-05-10 19:45:00', 'Training Server', '#d89332', 'Echo Personnel, come learn effective gunnery in our Bradleys and Abrams. We\'ll learn how to exploit enemy weakspots, then put it to practice', 468, 0, '2022-04-26 21:06:30', '2025-12-17 19:45:31', NULL, '5262809', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1370, 'RRC Operation', '2022-04-29 18:00:00', '2022-04-29 20:30:00', 'Private Operations Server', '#df5353', 'Weekday operation for RRC-qualified personnel. Our actions will affect Saturday\'s operation.', 468, 0, '2022-04-27 16:56:10', '2025-12-17 19:45:31', NULL, '5263775', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1371, 'Operation Last Minute', '2022-04-27 18:00:00', '2022-04-27 20:00:00', 'Private Operations Server', '#df5353', 'Wed. Op hosted by Sherman in lieu of Pops. Zeus operation on the Private Operations Server', 468, 0, '2022-04-27 17:23:21', '2025-12-17 19:45:31', NULL, '5263784', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1372, 'Operation Placeholder', '2022-05-04 18:00:00', '2022-05-04 21:00:00', 'Private Ops', '#df5353', 'I really don\'t know what I\'m doing, but Convoy Time!', 2230, 0, '2022-04-28 03:02:33', '2025-12-17 19:45:31', NULL, '5264352', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1373, 'FTX An Easy Detail', '2022-04-29 20:00:00', '2022-04-29 22:00:00', 'Training Server', '#ecb200', '', 67, 0, '2022-04-30 00:13:12', '2025-12-17 19:45:31', NULL, '5266746', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1374, 'Operation Eclipse pt 2', '2022-05-07 18:00:00', '2022-05-07 21:30:00', '', '#df5353', 'Do the stuff and the things. There might be tanks…. Lots of tanks.\n\n\n', 28, 0, '2022-04-30 19:51:56', '2025-12-17 19:45:31', NULL, '5269930', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1375, 'Convoy Operations FTX', '2022-05-05 18:00:00', '2022-05-05 20:30:00', '17th Private Ops Server', '#ecb200', 'Learn more about convoy operations.\n\n Conduct a convoy operation with varying levels of contact, review integral concepts like dispersion, security while travelling, security while at a halt, when and how to react to contact, and how to maximize the effectiveness of the mounted element. ', NULL, 0, '2022-04-30 19:58:31', '2025-12-17 19:45:31', NULL, '5269932', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1376, 'Pathfinder Bookwork', '2022-05-12 18:00:00', '2022-05-12 20:00:00', 'Training Server', '#a250e8', 'One of the two required to take the Pathfinder Qualification, thus allowing you to partake in RRC operations.\n\nLearn the fundamentals of being in an RRC team.\n\nGather at the training grounds.', 468, 0, '2022-05-02 01:56:53', '2025-12-17 19:45:31', NULL, '5271446', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1377, 'Master Free Fall School', '2022-05-13 18:00:00', '2022-05-13 19:30:00', 'Training Server', '#a250e8', 'One of two needed to attempt the Pathfinder qualification.\nLearn how to paradrop in the context of RRC, then master it.\n\nCanceled following Arma issues.', 468, 0, '2022-05-02 01:57:40', '2025-12-17 19:45:31', NULL, '5271447', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1378, 'Operation Eclipse pt 3', '2022-05-14 18:00:00', '2022-05-14 21:30:00', '', '#df5353', 'Keep on looking for those \nAmerican corporate interests\n WMDs! I\'m sure you will find them soon!\n\n', 28, 0, '2022-05-02 02:05:53', '2025-12-17 19:45:31', NULL, '5271448', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1379, 'Operation Eclipse pt 4', '2022-05-21 18:00:00', '2022-05-21 21:30:00', '', '#df5353', 'Airfield anyone?\n\n', 28, 0, '2022-05-02 02:07:05', '2025-12-17 19:45:31', NULL, '5271449', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1380, 'RASP', '2022-05-28 18:00:00', '2022-05-28 21:00:00', 'Private Operations Server', '#df5353', 'Mid-campaign RASP hosted by French Toast.', 468, 0, '2022-05-02 02:08:39', '2025-12-17 19:45:31', NULL, '5271450', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1381, 'RRC Operation', '2022-05-06 18:00:00', '2022-05-06 20:30:00', '', '#df5353', 'Do the stuff and things', 28, 0, '2022-05-02 02:17:50', '2025-12-17 19:45:31', NULL, '5271453', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1382, 'Practical Land Nav practice', '2022-05-09 18:00:00', '2022-05-09 20:00:00', 'training grounds', '#30a68f', 'Do I know where I am? If so, do I know where you are? Do I know how to get from where I am to where you are? How long will it take me? \nThis will be orienteering. no GPS, just a map, compass, map tools, and vector to tell distances. We will plot points and move to those points, verifying we are actually where we are supposed to be.', 483, 0, '2022-05-03 22:43:28', '2025-12-17 19:45:31', NULL, '5276350', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1383, 'Savanna Shock TX', '2022-05-13 18:00:00', '2022-05-13 21:00:00', 'Training Grounds', '#ecb200', 'Hey again everyone, given the last success from the Big Brother Bradley FTX I ran on May 1st, I\'m excited to announce a continuation of these FTX\'s going forward. I\'ve learned a lot from the previous trainings I\'ve done, and I hope to keep forward the momentum going and making these even better.\nWith that said, I want to continue fostering and developing the joint Alpha and Echo cooperation that was laid out from last Sunday. The goal of this FTX is to improve on joint company coordination, tactics, and initiative, with one extra toy: the Abrams.\nWho should attend:\nEcho and Alpha members are all welcome! Please, though, if you attended the previous FTX and enjoyed it a lot, spread the word and express how much you liked it! The more members we bring out to this, the better! There is an especially high demand for Echo members to attend this one. Recruits are also highly encouraged to attend if they want to get a feel of the unit in action.\nWhat you can expect:\nA (brief) orientation on the Abrams in action, including its weapon capabilities, purpose, and tactics to work alongside it.Target Identification (from the GAZ, BMP, BTR, all the way up to a T-55!) Understand their purpose in order to build tactics against them.IEDs. EOD to the rescue!Love for Tanks\nWhat is the mindset going in?\nAs an ALPHA rifleman, what can YOU do for your armor to help them?As an ECHO crewman, what can YOU do for your infantry to help them?On BOTH sides, how do we build initiative to support each other?\nOther support assets?\nMailman (Click the link!)\nFinal Notes:\nI am having so much fun making these FTXs for you guys, and I\'m so grateful for the turnout last time. Again, I really want to try improving our mechanized warfare doctrine, and trying to get reps in not just for Alpha members, but Echo as well. Hopefully we can apply what we have learned in our trainings that we\'ve been in into these combat situations, and learn from each other as well!', 67, 0, '2022-05-03 23:57:21', '2025-12-17 19:45:31', NULL, '5276469', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1384, 'Echo Orientation', '2022-05-07 13:30:00', '2022-05-07 15:00:00', '', '#d89332', 'COME LEARN THE TANKS AND BRADS AND ALL THAT LIT STUFF, WE GONNA USE THEM LATER!', 28, 0, '2022-05-04 18:12:33', '2025-12-17 19:45:31', NULL, '5277078', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1385, 'Operation I Hate Sand', '2022-05-11 18:00:00', '2022-05-11 20:00:00', '17th Private Ops (Takistan)', '#df5353', 'Ayooooo come hang out we gonna be running Jaeger\'s first ever wednsday mission here, pull up and vibe and lets go rescue some pilots and do some stuff!', 28, 0, '2022-05-05 03:16:38', '2025-12-17 19:45:31', NULL, '5277822', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1386, 'Echo armor training', '2022-05-06 17:00:00', '2022-05-06 19:00:00', '', '#ecb200', 'Come put to practice how to effectively use the Abrams for the coming op on Saturday.\nWe\'ll be going over gunnery, in-vic communication, formations, and reaction to contact drills.\n(This isn\'t a qual or bookwork, just a training)', 516, 0, '2022-05-05 13:12:01', '2025-12-17 19:45:31', NULL, '5278159', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1387, 'F/A-18 Ordinance Training', '2022-05-11 16:00:00', '2022-05-11 18:00:00', 'North Airbase ', '#ecb200', 'In this training we\'ll go over how to use some of the ordinances in the F/A-18 and go over which works best where and how to effectively use them. Since this training will go over CAS and CAP, you\'re expected to know the fundamentals of fixed wing CAS.', 2224, 0, '2022-05-05 13:52:58', '2025-12-17 19:45:31', NULL, '5278173', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1388, 'Basic Training', '2022-05-06 16:00:00', '2022-05-06 19:00:00', 'Training Server', '#FFFFFF', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/1011266508', 2230, 0, '2022-05-05 15:17:12', '2025-12-17 19:45:31', NULL, '5278201', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1389, 'Basic Training', '2022-05-08 18:00:00', '2022-05-08 21:00:00', 'Training Server', '#FFFFFF', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/1011266508', 2230, 0, '2022-05-05 15:18:18', '2025-12-17 19:45:31', NULL, '5278202', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1390, 'Sniper Course', '2022-05-14 15:45:00', '2022-05-14 17:45:00', 'Training Server - Training Grounds', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/313452', 46, 0, '2022-05-06 04:16:34', '2025-12-17 19:45:31', NULL, '5279509', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1391, 'Demolitions Course', '2022-05-08 16:00:00', '2022-05-08 17:30:00', 'Training Server::Northern Airfield', '#a250e8', 'If any NCOs (who already have the ribbon) want to help, DM me on discord.\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/293646', 2230, 0, '2022-05-06 05:51:06', '2025-12-17 19:45:31', NULL, '5279531', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1392, 'EOD Course', '2022-05-10 18:00:00', '2022-05-10 20:00:00', 'Training Server (Northern Airfield)', '#ecb200', 'If any NCOs (who already have the ribbon) want to help, DM me on discord.\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/658c531b-1e62-43c4-b4ce-a54c34114070/docs/293647', 2230, 0, '2022-05-06 05:59:54', '2025-12-17 19:45:31', NULL, '5279532', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1393, '[Rescheduled]Echo Orientation', '2022-06-10 18:00:00', '2022-06-10 20:00:00', 'Northern Airfield', '#ecb200', 'This will be moved to one day before', 2222, 0, '2022-05-06 20:52:15', '2025-12-17 19:45:31', NULL, '5280603', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1394, '[Rescheduled] Ranger Training', '2022-05-27 18:00:00', '2022-05-27 20:00:00', 'Training Server', '#6cba50', 'This has been rescheduled to 10 June. A new calendar event will be placed on that date.\n\nRanger Training. Topics to be decided a few days before based on how we perform during operations.\n', 468, 0, '2022-05-07 01:44:27', '2025-12-17 19:45:31', NULL, '5280667', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1395, 'NCO Meetings', '2022-05-07 17:00:00', '2022-05-07 18:00:00', 'NCO Club in TS', '#FFFFFF', 'This meeting is for Unit leaders, SL\'s, TL\'s and Platoon leadership.\nAll are invited, please refrain from side conversations until the meeting is adjourned', 81, 0, '2022-05-07 16:06:17', '2025-12-17 19:45:31', NULL, '5281102', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1396, 'NCO Meetings', '2022-05-14 17:00:00', '2022-05-14 18:00:00', 'NCO Club on TS', '#FFFFFF', 'This meeting is for Unit leaders, SL\'s, TL\'s and Platoon leadership.\nAll are invited, please refrain from side conversations until the meeting is adjourned', 81, 0, '2022-05-07 16:06:55', '2025-12-17 19:45:31', NULL, '5281103', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1397, 'NCO Meetings', '2022-05-21 17:00:00', '2022-05-21 18:00:00', 'NCO Club on TS', '#FFFFFF', 'This meeting is for Unit leaders, SL\'s, TL\'s and Platoon leadership.\nAll are invited, please refrain from side conversations until the meeting is adjourned', 81, 0, '2022-05-07 16:07:14', '2025-12-17 19:45:31', NULL, '5281104', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1398, 'Rotary CAS Qual', '2022-05-09 18:00:00', '2022-05-09 19:30:00', 'Private Ops', '#6cba50', '', 850, 0, '2022-05-08 01:54:17', '2025-12-17 19:45:31', NULL, '5281795', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1399, 'Rotary Logistics Qual', '2022-05-12 18:00:00', '2022-05-12 20:00:00', 'Private Ops', '#008ae1', '', 850, 0, '2022-05-08 01:55:09', '2025-12-17 19:45:31', NULL, '5281796', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1400, 'Basic Training', '2022-05-16 17:00:00', '2022-05-16 19:30:00', 'Recruitment Room 1 in TS', '#FFFFFF', 'Please have mods and TFAR ready per the New Member Guide found in Guilded, try to join TS 10~15 minutes prior to start time', 39, 0, '2022-05-10 01:35:16', '2025-12-17 19:45:31', NULL, '5284864', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1401, 'Operation Ringed City', '2022-05-18 18:00:00', '2022-05-18 20:00:00', 'Private Ops', '#df5353', '', 850, 0, '2022-05-11 04:56:01', '2025-12-17 19:45:31', NULL, '5286295', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1402, 'Basic Training', '2022-05-27 12:00:00', '2022-05-27 14:00:00', '', '#ecb200', '', 15, 0, '2022-05-12 16:38:54', '2025-12-17 19:45:31', NULL, '5287977', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1403, 'Fire Team Leading FTX', '2022-05-20 18:00:00', '2022-05-20 20:00:00', 'Training Grounds', '#FFFFFF', 'This FTX will help Fire Team Leads practice reaction to contact, communicate and help\n push Fire Team Leads to be more assertive and work to take action without waiting for Squad Lead.\n \nWe will talk about fire team movements, formations, communication, and smokes. \nI would also plan on talking a little bit more on the Squad Lead Role as well.\nLore: \n"Ah I see you have made it to FOB Ender in one piece! Good good, but uh I\'m gonna need you guys to get out there and find that rocket truck that is out there some where" - some Lt. \n\nYou and your squad has successfully made back to FOB Ender, but is now being sent out to find and destroy a rocket truck. On foot. Again. \n\nGood luck! ', 6, 0, '2022-05-12 18:00:02', '2025-12-17 19:45:31', NULL, '5288052', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1404, 'Rotary Logistics Training and Qual', '2022-05-17 18:00:00', '2022-05-17 22:00:00', '', '#ecb200', '', 850, 0, '2022-05-12 20:43:10', '2025-12-17 19:45:31', NULL, '5288114', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1405, 'Rotary CAS Training and Qual', '2022-05-19 18:00:00', '2022-05-19 20:00:00', '', '#ecb200', '', 850, 0, '2022-05-12 20:44:05', '2025-12-17 19:45:31', NULL, '5288115', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1406, 'Pathfinder Qualification', '2022-05-15 18:00:00', '2022-05-15 21:00:00', 'Private Ops server', '#a250e8', 'MFF and PF bookwork are required.', 468, 0, '2022-05-13 06:28:57', '2025-12-17 19:45:31', NULL, '5288619', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1407, 'Operation Eclipse pt 5', '2022-06-04 18:00:00', '2022-06-04 21:00:00', '', '#df5353', '\n', 28, 0, '2022-05-15 02:48:48', '2025-12-17 19:45:31', NULL, '5363695', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1408, 'Mortar and IDF trainig', '2022-05-20 17:00:00', '2022-05-20 18:00:00', '', '#ecb200', 'I want to go over emplacement/displacemnt as well as fortifying an MFP. We\'ll start off with humping in mortar systems then move to vic-bounding. \nThis isnt a quall or bookwork', 516, 0, '2022-05-16 12:59:29', '2025-12-17 19:45:31', NULL, '5365960', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1409, 'Basic Training', '2022-05-22 12:00:00', '2022-05-22 14:00:00', '', '#FFFFFF', 'Please already have the Mods and TFAR set up as described in the New Members Guides Section below this one. Link below:\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/6979335e-60f7-4ab9-9590-66df69367d1e/docs/2013948655\nA Link to Basic Training Documentation if you want to look through what we will be covering.\n\n\n', 951, 0, '2022-05-16 21:53:12', '2025-12-17 19:45:31', NULL, '5367032', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1410, 'Sniper Course', '2022-05-19 15:30:00', '2022-05-19 17:15:00', 'Training Server - Training Grounds', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/313452', 46, 0, '2022-05-17 01:58:32', '2025-12-17 19:45:31', NULL, '5367530', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1411, 'Jump Master Course', '2022-05-19 17:30:00', '2022-05-19 19:00:00', 'Training Server - Southern Airfield', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/309578', 46, 0, '2022-05-17 01:59:35', '2025-12-17 19:45:31', NULL, '5367531', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1412, 'Forward Observer Course', '2022-05-19 19:15:00', '2022-05-19 21:00:00', 'Training Server - Southern Airfield', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/658c531b-1e62-43c4-b4ce-a54c34114070/docs/2013726556', 46, 0, '2022-05-17 02:01:44', '2025-12-17 19:45:31', NULL, '5367532', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1413, 'Master Free Fall Jump Master Course', '2022-05-20 16:30:00', '2022-05-20 17:45:00', '', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/313222', 46, 0, '2022-05-17 02:05:06', '2025-12-17 19:45:31', NULL, '5367533', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1414, 'CBRN Crash Course', '2022-05-20 20:30:00', '2022-05-20 21:30:00', 'operations server', '#ecb200', 'With the threat of chemical weapons on the horizon, learn your way around the new tools and gear at your disposal to stay safe in the event of a chemical attack.\nThis will be a rundown of the things you will see in my brand new chemical warfare system I will be using during the campaign. This will teach how to detect and protect yourself from chemical weapons with some cool gear!\nThis should be a pretty short lesson, but it will come in handy during the campaign. learn and pass on information to others so they can stay safe too!', 28, 0, '2022-05-18 05:31:06', '2025-12-17 19:45:31', NULL, '5368445', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1415, 'Operation Hobson’s Rift P1', '2022-06-03 18:00:00', '2022-06-03 21:00:00', 'Private Ops', '#ecb200', 'OPORD (click the link!): \n\nA Sherman and Okami production.\nHey everyone! We\'re running it back again, this time with not just simply a FTX anymore, but we\'re taking it one step up. This is an actual operation that I got the honor to work with Okami on, and we\'re really excited to bring our final product to the table!\nIf you happen to read the OPORD, you\'ll find that OBJ 4 actually has two possibilities. Okami and I want to allow you guys to decide what you guys will do for the fourth objective. Just know that the decisions you vote on will have unforseen consequences!\n\n\nImmediate Questions:\nNote:\nIf there are anymore questions, please direct them to me and Okami!\nSpecial Thanks:\n\n - For mission maker perspectives, suggestions, and lessons\n\n - For inspiring Sherman to do mission making :D\n\n - For being the one that helped me start this all.', 67, 0, '2022-05-18 19:17:08', '2025-12-17 19:45:31', NULL, '5368973', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1416, 'Master Free Fall + Recon Surviellance Leadership Course', '2022-05-29 18:00:00', '2022-05-29 21:00:00', '', '#a250e8', 'Master Free Fall is required for the RRC qualification. RSLC is required for RRC NCOs to lead during operations, and will be held after MFF.', 468, 0, '2022-05-19 17:31:44', '2025-12-17 19:45:31', NULL, '5369628', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1417, 'Basic Training', '2022-05-23 20:00:00', '2022-05-23 23:00:00', '17th BN Training Server', '#FFFFFF', 'Basic Training for everyone able to attend. Please meet in the 17th BN Recruitment Room 1 on Teamspeak.', 21, 0, '2022-05-20 03:40:52', '2025-12-17 19:45:31', NULL, '5370465', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1418, 'Rotary Logistics Qual', '2022-05-26 18:00:00', '2022-05-26 19:00:00', '', '#FFFFFF', '', NULL, 0, '2022-05-21 21:56:59', '2025-12-17 19:45:31', NULL, '5372162', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1419, 'Operation Longbow', '2022-06-08 18:00:00', '2022-06-08 20:00:00', '', '#df5353', 'Map: Malden\nOPFOR: Malden Defense Force\nDetails: Infiltrate the island of Malden and call fire missions on military targets.', 322, 0, '2022-05-22 13:43:31', '2025-12-17 19:45:31', NULL, '5373081', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1420, 'Air Crew Course', '2022-05-27 16:00:00', '2022-05-27 17:45:00', 'Training Server - Southern Airfield', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/248316', 46, 0, '2022-05-22 22:40:49', '2025-12-17 19:45:31', NULL, '5374882', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1421, 'Copilot Course', '2022-05-30 17:00:00', '2022-05-30 19:00:00', 'Training Server - Southern Airfield', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/263833', 46, 0, '2022-05-22 22:43:33', '2025-12-17 19:45:31', NULL, '5374885', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1422, 'IFV/Mechanized Qual', '2022-05-28 15:00:00', '2022-05-28 16:30:00', 'Training Server', '#d89332', 'This is the qualification assessment for the Mechanized Infantry Badge. There will not be any training at this time, as it will be devoted purely to assessment. Attendance of training portion is not mandatory, but it is is encouraged to ensure familiarization. Attendees will be required to show adequate knowledge of all crew positions of an IFV and their responsibilities in a hands on FTX created and run by the Echo Lead. Standard radio procedures should be followed during this FTX.\n \nNOTE: This badge is REQUIRED to become an NCO for Echo Ground', 1133, 0, '2022-05-23 18:00:06', '2025-12-17 19:45:31', NULL, '5375603', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1423, 'Operation Frostbreath (Mini-op)', '2022-06-15 18:00:00', '2022-06-15 20:00:00', '', '#FFFFFF', 'December 14th, 2025\nThe US has recently invaded Chernaus after evidence of humanitarian violations by the Chernaus Movement of the Red Star faction surfaced. We have established a foothold in the city of Electrozavodsk.\nThe 17th has been tasked to push to the north to clear the nearby towns, destroy or capture any military supplies, and collect any further evidence on the war crimes while Electro is fully fortified.', 57, 0, '2022-05-23 20:46:27', '2025-12-17 19:45:31', NULL, '5375727', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1424, 'AIT 3', '2022-05-26 18:00:00', '2022-05-26 20:00:00', 'Training Server, Training Grounds', '#ecb200', 'AIT 1 and 2 are NOT required to join.', 73, 0, '2022-05-23 22:47:46', '2025-12-17 19:45:31', NULL, '5375772', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1425, 'Fixed Wing CAS Training', '2022-05-26 17:00:00', '2022-05-26 18:00:00', 'North Airfield', '#FFFFFF', 'We\'ll be focusing on air to ground engagement as well as pre-mission decisions. What kind of loadout you bring matters to what sort of flying you do.', 1040, 0, '2022-05-24 01:47:31', '2025-12-17 19:45:31', NULL, '5375861', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1426, 'Logistics Qual TRAINING Session', '2022-05-24 19:00:00', '2022-05-24 20:00:00', 'Training Server - Southern Airfield', '#ecb200', 'In preparation for the Qual on Thursday come bring any questions you may have and to get some practice in flying.\nI\'ll be going over the qual doc to answer any concerns you may have and what to expect.\nRead up on it here: https://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/262083', 27, 0, '2022-05-24 04:26:51', '2025-12-17 19:45:31', NULL, '5375873', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1427, 'FireFight: Fight by Night', '2022-05-25 18:00:00', '2022-05-25 20:00:00', '', '#df5353', '', 19, 0, '2022-05-24 11:46:19', '2025-12-17 19:45:31', NULL, '5376074', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1428, '[Rescheduled] Ranger Training', '2022-06-10 18:00:00', '2022-06-10 20:00:00', 'Training Server', '#6cba50', 'Monthly Ranger Training. Topics to be decided a few days before training is hosted.\n\nRescheduled from original date of 27 May.', 468, 0, '2022-05-26 18:52:41', '2025-12-17 19:45:31', NULL, '5378247', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1429, 'CLS (Combat Life Saver) Ribbon', '2022-05-30 18:30:00', '2022-05-30 20:00:00', 'Training Grounds', '#ecb200', 'Alvil and Newt will be teaching the next step of the medical pipeline for the 17th. \nCombat Life Savers are the fireteam medical assistant. They are the main assistants to squad medics and the first person you go to if you need immediate first aid within your fireteam.\nCome to learn intermediate medical procedures, practices, and standards we should be held to as Combat Life Savers.\nThis training will also allow an fireteam member to be slotted at CLS.\n-yours truly, ~Newt~ (and Alvil, the all-knowing medical pro)', 795, 0, '2022-05-29 04:13:56', '2025-12-17 19:45:31', NULL, '5388761', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1430, 'Echo Orientation', '2022-06-09 18:00:00', '2022-06-09 20:00:00', 'Northern Airfield', '#ecb200', 'This will act as your "Echo Basic" and will teach you everything you need to know when it comes to Echo Ground. So I encourage everyone who is interested to show up! Alpha is completely welcome to attend this training as well.', 2222, 0, '2022-05-29 16:34:29', '2025-12-17 19:45:31', NULL, '5389402', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1431, 'Operation Eclipse Pt 6', '2022-06-11 18:00:00', '2022-06-11 21:00:00', '', '#df5353', 'This one got me feeling kinda jumpy.\n\n', 28, 0, '2022-05-30 01:56:18', '2025-12-17 19:45:31', NULL, '5389605', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1432, 'Basic Training', '2022-06-03 12:00:00', '2022-06-03 14:00:00', '', '#30a68f', '', 15, 0, '2022-05-30 21:33:00', '2025-12-17 19:45:31', NULL, '5391566', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1433, 'Marksman/Sharpshooter', '2022-06-03 14:00:00', '2022-06-03 15:00:00', 'Rifle Range', '#FFFFFF', 'Get your 3x and 4x optics!', 795, 0, '2022-05-31 01:31:33', '2025-12-17 19:45:31', NULL, '5391667', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1434, '[RESCHEDULED] Pointman Training', '2022-06-01 16:00:00', '2022-06-01 18:00:00', 'Training Grounds', '#FFFFFF', 'Pointman: The basics of being at the front of the element (and how not to end up as the bullet sponge).\n~Newt', 795, 0, '2022-05-31 20:45:17', '2025-12-17 19:45:31', NULL, '5393861', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1435, 'Pointman Training', '2022-06-02 16:00:00', '2022-06-02 18:00:00', 'Training Grounds', '#FFFFFF', 'Pointman: The basics of being at the front of the element (and how not to end up as the bullet sponge).\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/247110\n\n\nhttps://cdn.discordapp.com/attachments/981671535565733938/981671591480016916/CQB_Familiarization.pdf\n~Newt', 795, 0, '2022-05-31 21:50:56', '2025-12-17 19:45:31', NULL, '5394015', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1436, 'AIT 4 - CQB', '2022-06-02 18:00:00', '2022-06-02 20:00:00', 'Training grounds', '#FFFFFF', 'come learn, come practice, get gud', 483, 0, '2022-06-01 02:40:45', '2025-12-17 19:45:31', NULL, '5394292', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1437, 'Sniper Course', '2022-06-03 16:00:00', '2022-06-03 18:00:00', 'Training Server - Training Grounds', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/313452', 46, 0, '2022-06-01 03:18:37', '2025-12-17 19:45:31', NULL, '5394493', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1438, 'Operation Traveling Fiend', '2022-06-01 18:00:00', '2022-06-01 21:00:00', '', '#ecb200', 'shooty shoots', 850, 0, '2022-06-01 13:20:20', '2025-12-17 19:45:31', NULL, '5395032', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1439, 'Pathfinder Qualificaton', '2022-06-06 18:00:00', '2022-06-06 21:00:00', '', '#a250e8', 'Pathfinder Bookwork and Master Free Fall are required to attend. Arrive in the Ready Room 10 minutes beforehand for a briefing.', 468, 0, '2022-06-01 19:35:40', '2025-12-17 19:45:31', NULL, '5396072', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1440, 'Anti Armor School', '2022-06-07 18:00:00', '2022-06-07 20:30:00', '', '#6cba50', 'Learn the Ins and Outs of enemy Armored Fighting Vehicles so you can kill them more better.', 468, 0, '2022-06-01 20:18:59', '2025-12-17 19:45:31', NULL, '5396080', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1441, 'How to Zeus: Basics', '2022-06-05 18:00:00', '2022-06-05 20:00:00', 'High Bit Rate Gaming - Discord', '#FFFFFF', 'Learn the basics of what you need to know to be effective at Zeusing, from teleporting people to creating FTXs!', 67, 0, '2022-06-03 01:43:26', '2025-12-17 19:45:31', NULL, '5397171', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1442, 'Operation Eclipse Pt 7', '2022-06-18 18:00:00', '2022-06-18 21:00:00', '', '#df5353', 'Siege of Kavala\n\n', 28, 0, '2022-06-03 02:46:16', '2025-12-17 19:45:31', NULL, '5397265', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1443, 'NCO Meetings', '2022-06-04 17:00:00', '2022-06-04 18:00:00', 'Chow Hall in TS', '#FFFFFF', 'Please Refrain from talking until adjourned if you are not an SL, TL, Echo leadership, Or Battalion leadership.', 81, 0, '2022-06-03 14:52:31', '2025-12-17 19:45:31', NULL, '5397613', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1444, 'NCO Meetings', '2022-06-11 17:00:00', '2022-06-11 18:00:00', 'Chow Hall in TS', '#FFFFFF', 'Please Refrain from talking until adjourned if you are not an SL, TL, Echo leadership, Or Battalion leadership.', 81, 0, '2022-06-03 14:53:03', '2025-12-17 19:45:31', NULL, '5397614', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1445, 'NCO Meetings', '2022-06-18 17:00:00', '2022-06-18 18:00:00', 'Chow Hall in TS', '#FFFFFF', 'Please Refrain from talking until adjourned if you are not an SL, TL, Echo leadership, Or Battalion leadership.', 81, 0, '2022-06-03 14:53:38', '2025-12-17 19:45:31', NULL, '5397615', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1446, '[Rescheduled] Movement Techniques and Danger Areas', '2022-06-09 16:00:00', '2022-06-09 18:00:00', 'Training Grounds', '#ecb200', 'Learn and practice your Fireteam and Squad level boots-on-the-ground movement tactics and understand the dangers presented by the battlefield!\nThis training will consist of preliminary intruction, basic drilling and practice across different terrain, and a live-fire instance over hostile ground.\nThe goal of this training is to improve upon and develop the general knowledge and proficiency of how we traverse over operation-like areas.\n~Newt', 795, 0, '2022-06-05 03:49:40', '2025-12-17 19:45:31', NULL, '5399721', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1447, 'Fixed-Wing Logistics Qual', '2022-06-09 18:00:00', '2022-06-09 19:00:00', '', '#FFFFFF', '', NULL, 0, '2022-06-06 17:53:55', '2025-12-17 19:45:31', NULL, '5401089', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1448, 'Basic Training', '2022-06-07 18:00:00', '2022-06-07 21:30:00', '17th Battalion Training Range', '#FFFFFF', 'Meet in the Teamspeak Recruitment Room 1', 21, 0, '2022-06-07 02:18:13', '2025-12-17 19:45:31', NULL, '5401479', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1449, 'One on One Flight Training', '2022-06-14 17:00:00', '2022-06-14 19:00:00', 'North Airfield', '#FFFFFF', 'I\'ll be offering one on one flight training with up to 4 people, 30 minutes each, on their aircraft of choice. Fixed wing, rotary wing, whatever you\'d like. Slots are on a first come, first serve basis. ', 1040, 0, '2022-06-08 17:55:01', '2025-12-17 19:45:31', NULL, '5403335', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1450, 'Basic Training', '2022-06-10 13:00:00', '2022-06-10 15:30:00', '17thBN Training Server', '#ecb200', 'Accelerated Basic Training for people with over 500+ hours of experience in arma.', 21, 0, '2022-06-08 18:15:25', '2025-12-17 19:45:31', NULL, '5403421', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1451, 'Operation Hobson\'s Rift P2', '2022-06-17 18:00:00', '2022-06-17 21:00:00', 'Private Ops Server', '#FFFFFF', 'OPORD (click the link!): \n\nA Sherman and Okami production.\nComplementary song as always: \n\nOur advance into Malden continues, and we\'ve got our new orders. We\'ve got a similar choice to be made for an objective that you guys get to decide. Please read the OPORD for more details as to what you can be expecting to have happen.\n\n\n\nImmediate Questions:\nNote:\nIf there are anymore questions, please direct them to me and Okami!', 67, 0, '2022-06-09 11:55:58', '2025-12-17 19:45:31', NULL, '5403967', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1452, 'C-130 Improvised airfield practice', '2022-06-10 20:00:00', '2022-06-10 21:00:00', 'training server', '#ecb200', 'Pilots come get a few reps in setting your bird down on a rough surface to make sure you are ready for the op (or just for a fun challenge landing in difficult environments).', 28, 0, '2022-06-09 14:59:04', '2025-12-17 19:45:31', NULL, '5404197', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1453, '[Rescheduled] Movement Techniques and Danger Areas', '2022-06-12 18:00:00', '2022-06-12 20:00:00', 'Training Grounds', '#FFFFFF', 'Learn and practice your Fireteam and Squad level boots-on-the-ground movement tactics and understand the dangers presented by the battlefield!\nThis training will consist of preliminary intruction, basic drilling and practice across different terrain, and a live-fire instance over hostile ground.\nThe goal of this training is to improve upon and develop the general knowledge and proficiency of how we traverse over operation-like areas.\n~Newt', 795, 0, '2022-06-09 20:29:19', '2025-12-17 19:45:31', NULL, '5404745', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1454, 'Demolitions Course', '2022-06-12 20:30:00', '2022-06-12 22:00:00', 'Training Server (Southern Airfield)', '#ecb200', 'If any NCOs (who already have the ribbon) want to help, DM me on discord.\n\n', 2230, 0, '2022-06-09 22:24:39', '2025-12-17 19:45:31', NULL, '5404771', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1455, 'EOD Course', '2022-06-13 19:00:00', '2022-06-13 21:00:00', 'Southern Airfield', '#ecb200', 'If any NCOs (who already have the ribbon) want to help, DM me on discord.\n\n', 2230, 0, '2022-06-09 22:26:50', '2025-12-17 19:45:31', NULL, '5404772', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1456, 'Heavy Weapons School', '2022-06-16 18:00:00', '2022-06-16 20:30:00', '', '#a250e8', 'Learn anti-tank weapons and Crew Served Weapons, and gain basic knowledge of enemy weapon systems.\n\nOne of two needed for the Heavy Weapons Ribbon. Those who have taken Anti-Armor school before this MUST pass a small exam after this training to receive the ribbon.', 468, 0, '2022-06-09 23:00:07', '2025-12-17 19:45:31', NULL, '5404779', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1457, 'Pathfinder Qualification', '2022-06-12 18:00:00', '2022-06-12 21:00:00', 'Private Operations Server', '#a250e8', 'Pathfinder Bookwork and Master Free Fall are required to attend. Arrive in the Ready Room 10 minutes beforehand for a briefing.', 468, 0, '2022-06-09 23:18:42', '2025-12-17 19:45:31', NULL, '5404780', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1458, 'CSW FAMILIARZATION WITH KEN', '2022-06-19 18:00:00', '2022-06-19 19:30:00', 'Training server HOE', '#FFFFFF', 'WE GONNA FUCK WIT THEM ACE CSW THINGS and GET GOOD', 43, 0, '2022-06-10 00:36:47', '2025-12-17 19:45:31', NULL, '5404786', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1459, '[CANCELED] Machine Gunnery Need-to-Knows', '2022-06-20 18:00:00', '2022-06-20 20:00:00', 'Training Grounds', '#FFFFFF', 'Have you ever wondered how someone can be an absolute chainsaw and spray death over a large area? Then you should join this training!\nWe\'ll go over basic and intermediate AR and AB buddy tactics, as well as general proficiency with the MK 46, MK 48, and M240B platforms.\n~Newt', 795, 1, '2022-06-10 01:17:37', '2025-12-17 19:45:31', NULL, '5404793', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1460, '17th NCO Training Discussion', '2022-06-13 18:00:00', '2022-06-13 20:00:00', 'TS Alpha Company NCO Club', '#FFFFFF', 'We will be discussing how to best train up our NCOs to prep them for their roles and the roles they will step into as they are promoted. Please add any notes you would like to add as replies to this post. Agenda to come', 1141, 0, '2022-06-10 04:33:26', '2025-12-17 19:45:31', NULL, '5404817', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1461, 'Rotary Logistics Qualification', '2022-06-14 19:00:00', '2022-06-14 20:00:00', 'Training Server - Southern Airfield ', '#ecb200', '2 slots for getting your qual! There will be more so don\'t stress if you don\'t get it the first run. Highly recommend reading through the doc and practicing in preparation.', 27, 0, '2022-06-10 15:09:24', '2025-12-17 19:45:31', NULL, '5405149', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1462, '[RESCHEDULED DONT GO TO THIS ONE]Ranger Training', '2022-06-17 18:00:00', '2022-06-17 20:00:00', 'Training Server', '#6cba50', 'Monthly Ranger training. Briefly working on movements, then aggression and momentum during assaults. \nrescheduled yet again to another date', 468, 0, '2022-06-10 17:55:02', '2025-12-17 19:45:31', NULL, '5405203', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1463, 'Movement Techniques and Danger Areas', '2022-06-14 18:00:00', '2022-06-14 20:00:00', 'Training Grounds', '#FFFFFF', 'Learn and practice your Fireteam and Squad level boots-on-the-ground movement tactics and understand the dangers presented by the battlefield!\nThis training will consist of preliminary intruction, basic drilling and practice across different terrain, and a live-fire instance over hostile ground.\nThe goal of this training is to improve upon and develop the general knowledge and proficiency of how we traverse over operation-like areas.\nThank you \n for your consultation and insight!\n~Newt', 795, 0, '2022-06-10 18:23:05', '2025-12-17 19:45:31', NULL, '5405208', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1464, 'Synchronized Assault FTX', '2022-06-10 18:00:00', '2022-06-10 20:00:00', 'Training Server (Southern Airfield)', '#FFFFFF', 'Practice synchronized assaults by involving CQB, Urban Movement, Boats, and Rappelling elements.', 2230, 0, '2022-06-10 18:35:24', '2025-12-17 19:45:31', NULL, '5405212', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1465, '17th Command Meeting', '2022-06-12 16:30:00', '2022-06-12 18:30:00', 'TS Chow Hall', '#FFFFFF', 'Dis the command meeting', 48, 0, '2022-06-12 02:55:05', '2025-12-17 19:45:31', NULL, '5406355', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1466, 'Basic Training', '2022-06-16 18:00:00', '2022-06-16 21:00:00', '', '#FFFFFF', '', 6, 0, '2022-06-12 03:25:36', '2025-12-17 19:45:31', NULL, '5406427', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1467, 'NON TRAINING/FTX/OP DAY MOT TEST OP ONLY', '2022-06-23 23:00:00', '2022-06-24 23:00:00', '', '#FFFFFF', '', 43, 1, '2022-06-12 14:20:03', '2025-12-17 19:45:31', NULL, '5406831', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1468, 'KENS MOD TEST(NO OTHER EVENTS ARE TO BE SCHEDULED)', '2022-06-30 23:00:00', '2022-07-01 23:00:00', '', '#FFFFFF', '', 43, 0, '2022-06-12 14:20:49', '2025-12-17 19:45:31', NULL, '5406832', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1469, 'Aircrew Training', '2022-06-20 18:00:00', '2022-06-20 20:00:00', 'Southern Airfield', '#FFFFFF', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/248316', 2222, 0, '2022-06-12 14:28:23', '2025-12-17 19:45:31', NULL, '5406838', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1470, '68W', '2022-06-18 13:00:00', '2022-06-18 17:00:00', '', '#6cba50', '68W we will be reviewing the 17th guidance found here. \n\nThis is only a 68W training. The 68W training has been put for longer than normal time to help prevent rushing. \nIf you have already done 68W and want a refresher / or to help with the testing show up if you want :) \nTest: \nWe will have a practical at the end, and testing \n(1) Reviving injured persons per proper procedure\n(2) Quality of handling of mass cas\n', 2229, 0, '2022-06-12 23:10:41', '2025-12-17 19:45:31', NULL, '5407053', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1471, 'Escape and Evade', '2022-06-21 18:00:00', '2022-06-21 20:00:00', 'Private Ops Server', '#FFFFFF', 'In this training you will learn the subjects of -\nCome by and become a better pilot. ', 2222, 0, '2022-06-13 00:37:08', '2025-12-17 19:45:31', NULL, '5407063', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1472, '[Rescheduled] Rotary Logi Training + (Maybe) Qual', '2022-06-23 18:00:00', '2022-06-23 20:00:00', 'Private Ops Server', '#ecb200', 'This will be moved to next week.', 2222, 0, '2022-06-13 01:02:14', '2025-12-17 19:45:31', NULL, '5407065', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1473, 'Grenadier Training', '2022-06-14 17:00:00', '2022-06-14 18:00:00', '17th Training Server', '#FFFFFF', 'Points to be discussed\n#1 Defination and use of grenadier.\r\n#2 All types of Gls\r\n a. M203 Underbarrel\r\n b. M203 rds Underbarrel(ACR,SCAR EGML and some others)\r\n c. M320 secondary slot\r\n d. M320 Underbarrel\r\nPros and cons of all types of Gls\r\n#3 Arming distance of 40mm Grenades\r\n#4 Equipment available to a Grenadier (40mm HE,HEDP,HET,Smokes all colors,IR flares,Hunt IR)\r\n#5 Demonstrate Effectiveness of HE and HEDP against Infantry and Light armor.\r\n#6 Use of Hunt IR\n\nCould use the help of some NCOs\n', 554, 0, '2022-06-13 03:40:56', '2025-12-17 19:45:31', NULL, '5407267', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1474, '[Cancelled] Rotary Cas Qual', '2022-06-24 18:00:00', '2022-06-24 20:00:00', 'Private Ops Server', '#ecb200', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/318733', 2222, 1, '2022-06-13 22:56:00', '2025-12-17 19:45:31', NULL, '5408029', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1475, 'Forward Observer (FO) Training', '2022-06-16 18:00:00', '2022-06-16 21:00:00', 'Training Server', '#a250e8', 'Learn to call in Artillery and Mortars using your vector and a microdagr.', 1191, 0, '2022-06-14 01:24:48', '2025-12-17 19:45:31', NULL, '5408108', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1476, 'Combat Live Saver', '2022-06-19 15:00:00', '2022-06-19 17:30:00', 'Training Grounds', '#FFFFFF', 'Learn how to save lives in the middle of combat! Patch up holes, help out during mass casualty events and many more! Plus get a fancy dancy check mark in your file and be slotted as a CLS!\nIt\'ll be fun! ', 3, 0, '2022-06-14 03:09:00', '2025-12-17 19:45:31', NULL, '5408130', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1477, 'Alpha NCO Meeting', '2022-06-21 19:00:00', '2022-06-21 20:00:00', 'Chow Hall on teamspeak', '#FFFFFF', 'We will discuss Company - platoon training for Alpha. \nCome with ideas on where you see deficits and how we can train them out. We will notate them, order them by importance, and will begin to see Ranger Trainings on Fridays, once or twice a month. NCO meetings will also become a once or twice a month thing also.\nIf you can, post in this thread what days work best for you. No day is off the table at this point. ', 483, 0, '2022-06-15 00:49:05', '2025-12-17 19:45:31', NULL, '5408766', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1478, 'Ranger Training', '2022-06-24 18:00:00', '2022-06-24 20:00:00', 'Private Ops server', '#6cba50', 'Ranger Training on Private ops server', 483, 0, '2022-06-15 01:08:26', '2025-12-17 19:45:31', NULL, '5408794', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1479, 'RTO - Special for Scheduling', '2022-06-17 18:30:00', '2022-06-17 20:30:00', '', '#FFFFFF', '', 38, 0, '2022-06-17 02:04:22', '2025-12-17 19:45:31', NULL, '5410322', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1480, 'Operation Hobson\'s Rift: Combat Patrol - Mountain Warfare', '2022-06-26 18:00:00', '2022-06-26 21:00:00', 'Private Ops Server', '#FFFFFF', '\n\nHey all, the first of many of these mini-events that Okami and I have got planned going forward to affect the progression of Hobson\'s Rift, and enabling you guys to get reps in.\n\nIn terms of how this one will play out, \nsappers\n are going to have a role to play in this one. If attendance permitting, ideal number will be two sappers for this mini-event. There will be a follow up event soon regarding an additional opportunity for sapper field work and practice that will contribute to the overall operation in OP3, with more news on that later. If you\'re interesting on signing up to be a sapper for this one, please fill out the registration form here at the top.\n\nWhat about Echo? IDF is the name of the game. This is another level of coordination that I think we could get additional practice and field work in and building up that communication between Alpha and Echo on radio nets. We love artillery here.\nComplementary song as always: \n\n\nImmediate Questions:\nNote:\nIf there are anymore questions, please direct them to me and Okami!\n\n', 67, 0, '2022-06-18 05:41:17', '2025-12-17 19:45:31', NULL, '5411699', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1481, 'Sniper Training', '2022-06-21 16:30:00', '2022-06-21 18:30:00', 'Sniper Range ', '#ecb200', '', 6, 0, '2022-06-18 22:17:55', '2025-12-17 19:45:31', NULL, '5412237', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1482, 'Operation Eclipse FINALE', '2022-06-25 18:00:00', '2022-06-25 21:00:00', '', '#df5353', '\n', 28, 0, '2022-06-19 03:34:07', '2025-12-17 19:45:31', NULL, '5412550', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1483, 'RRC Operation', '2022-06-23 18:00:00', '2022-06-23 20:00:00', 'Ops Server', '#df5353', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/b6150981-96f6-4112-a6e8-1c035d0e00e8/forums/595222356', 28, 0, '2022-06-20 02:01:28', '2025-12-17 19:45:31', NULL, '5414556', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1484, 'Operation Pandora', '2022-06-22 18:00:00', '2022-06-22 20:00:00', 'Private Operations Server', '#df5353', 'The 17th Ranger Battalion, originally deployed for peacekeeping in the region, will be required to counterattack a large-scale invasion.', 468, 0, '2022-06-20 20:40:24', '2025-12-17 19:45:31', NULL, '5415046', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1485, 'Basic Training', '2022-06-24 14:00:00', '2022-06-24 17:00:00', 'Training Grounds', '#ecb200', 'First steps in!', 67, 0, '2022-06-21 18:05:10', '2025-12-17 19:45:31', NULL, '5416276', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1486, 'Basic Training', '2022-06-30 17:00:00', '2022-06-30 20:00:00', '', '#FFFFFF', '', NULL, 0, '2022-06-21 20:51:47', '2025-12-17 19:45:31', NULL, '5416339', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1487, 'Rotary Logi Training + (Maybe) Qual', '2022-06-27 18:00:00', '2022-06-27 20:00:00', '', '#ecb200', 'If you are only wanting to attend the qual, message and let me know.', 2222, 0, '2022-06-23 17:36:05', '2025-12-17 19:45:31', NULL, '5419006', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1488, 'Anti Armor School', '2022-07-05 18:00:00', '2022-07-05 20:30:00', 'Training Server', '#6cba50', 'Learn the ins and outs of enemy AFVs; armor weak points, strengths, weaknesses, and other features so you can kill them more better.\nOne of two required for the Heavy Weapons Ribbon.', 468, 0, '2022-06-24 17:55:38', '2025-12-17 19:45:31', NULL, '5420154', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1489, 'Pathfinder Bookwork', '2022-07-06 15:00:00', '2022-07-06 16:30:00', 'Training Server', '#6cba50', 'Learn what fundamentals of being in an RRC team. Required for Pathfinder Qualification.', 468, 0, '2022-06-24 17:56:28', '2025-12-17 19:45:31', NULL, '5420155', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1490, 'Sniper School', '2022-07-07 17:00:00', '2022-07-07 18:30:00', 'Training Server', '#a250e8', 'RRC\'s sniper school. Learn the role of an RRC sniper, and how to place precise shots on targets.', 468, 0, '2022-06-24 17:57:12', '2025-12-17 19:45:31', NULL, '5420156', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1491, 'Master Free Fall School', '2022-07-08 18:00:00', '2022-07-08 19:30:00', 'Training Server', '#6cba50', 'Master Free Fall School (MFF) is designed to teach RRC candidates how to jump from a perfectly fine plane and not die. MFF will teach parajumps in RRC\'s context and will ensure attendees attain at minimum an intermediate skill level in all types of paradrops.', 468, 0, '2022-06-24 17:59:48', '2025-12-17 19:45:31', NULL, '5420158', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1492, 'Advanced UAV School', '2022-07-07 20:00:00', '2022-07-07 21:45:00', 'Training Server', '#6cba50', 'Learn to use the Darter and Reaper UAVs to scout enemy positions, and strike them if necessary.', 468, 0, '2022-06-24 18:07:31', '2025-12-17 19:45:31', NULL, '5420175', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1493, 'NCO Meetings', '2022-06-25 17:00:00', '2022-06-25 18:00:00', 'Chow Hall in TS', '#FFFFFF', 'Please refrain from chatter unless you are leadership until the floor is opened or the meeting is adjourned.', 81, 0, '2022-06-24 19:22:56', '2025-12-17 19:45:31', NULL, '5420218', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1494, '[Rescheduled] Command Meeting', '2022-07-10 18:00:00', '2022-07-10 20:00:00', 'Chow Hall on TS', '#FFFFFF', 'All are welcome, please do not talk unless called upon.', 48, 0, '2022-06-25 15:17:50', '2025-12-17 19:45:31', NULL, '5421626', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1495, 'Command Meeting', '2022-07-07 19:00:00', '2022-07-07 21:00:00', 'Chow Hall in TS', '#FFFFFF', 'Everyone is welcome to join. Please mute yourself unless you\'re called upon.', 48, 0, '2022-06-26 03:23:55', '2025-12-17 19:45:31', NULL, '5422086', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1496, 'AIT 1 - Standard Field Operations', '2022-06-28 19:00:00', '2022-06-28 21:00:00', 'Training Range', '#a250e8', 'AIT 1\nThis is part 1 of 4. We will go over all the fire team positions, formations, etc', 483, 0, '2022-06-26 13:58:05', '2025-12-17 19:45:31', NULL, '5422404', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1497, 'AIT 2 - Battle Drills', '2022-06-30 19:00:00', '2022-06-30 21:00:00', 'Training Range', '#a250e8', 'AIT 2\nWe will be going over bounding and peeling, then battle drills 1 and 2.\nExpect multiple reps at each stage\nAt the end of this training, everyone should understand the two battle drills and know what every other member will do during them and how to execute any part of the battle drill.', 483, 0, '2022-06-26 14:10:16', '2025-12-17 19:45:31', NULL, '5422405', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1498, 'Brigade Training', '2022-07-02 18:00:00', '2022-07-02 21:00:00', 'Private Ops', '#df5353', 'Brigade training - Details to follow', 483, 0, '2022-06-26 14:16:01', '2025-12-17 19:45:31', NULL, '5422406', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1499, 'NCO Meeting', '2022-07-02 17:00:00', '2022-07-02 18:00:00', 'Teamspeak', '#FFFFFF', 'NCO Meeting for Brigade Training\n', 483, 0, '2022-06-26 14:20:59', '2025-12-17 19:45:31', NULL, '5422407', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1500, 'CQB Workshop', '2022-07-07 16:00:00', '2022-07-07 18:00:00', '17th Training Server', '#FFFFFF', 'CQB Breaching and Clearing Drills, with a supplemental FTX for good measure. \n\nLearn how to Operate; \n\nHi-speed, Lo-drag. \n\nLike the good lord intended.', NULL, 0, '2022-06-28 02:05:46', '2025-12-17 19:45:31', NULL, '5423915', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1501, 'Operation Boarding Party', '2022-06-29 18:00:00', '2022-06-29 21:00:00', 'Private Ops', '#ecb200', 'Air and Boat assault on some bigger boats', 2230, 0, '2022-06-28 15:22:39', '2025-12-17 19:45:32', NULL, '5424546', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1502, 'JTAC bookwork', '2022-07-08 17:00:00', '2022-07-08 20:00:00', '', '#ecb200', 'Warheads on foreheads bookwork!\nPeep the training doc if you\'d like and DM me with any questions \n\n', 516, 0, '2022-06-28 17:15:02', '2025-12-17 19:45:32', NULL, '5424565', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1503, 'IFV/Mechanized Qual', '2022-07-02 14:30:00', '2022-07-02 17:00:00', 'Training Server', '#ecb200', 'This is the qualification assessment for the Mechanized Infantry Badge. There will not be any training at this time, as it will be devoted purely to assessment. Attendance of training portion is not mandatory, but it is is encouraged to ensure familiarization. Attendees will be required to show adequate knowledge of all crew positions of an IFV and their responsibilities in a hands on FTX created and run by the Echo Lead. Standard radio procedures should be followed during this FTX.\n \nNOTE: This badge is REQUIRED to become an NCO for Echo Ground', 1133, 0, '2022-06-29 18:15:06', '2025-12-17 19:45:32', NULL, '5426820', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1504, 'Operation Hobson’s Rift P3', '2022-07-15 18:00:00', '2022-07-15 21:00:00', 'Private Ops Server', '#30a68f', 'OPORD (click the link!): \n\n\nHey everyone, another Sherman and Okami production here!\n\nWe are excited to bring you Part 3 to the Operation Hobson\'s Rift campaign! Special credit to Okami for absolutely carrying on this particular one since Sherman got busy with things.\n\nWhat\'s the theme this time around?\nLet\'s own the night again.\n\n\nComplementary song as always: \n\n\nImmediate Questions:\nNote:\nIf there are anymore questions, please direct them to Sherman and Okami!', 67, 0, '2022-06-29 21:16:12', '2025-12-17 19:45:32', NULL, '5426882', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1505, 'Operation Hobson’s Rift: Sabotage Strike', '2022-07-08 19:30:00', '2022-07-08 22:00:00', 'Private Ops Server', '#30a68f', 'Hey everyone, another Sherman and Okami production here!\n\nWe\'ve been hinting at it for a while, and we\'re here to deliver. Sabotage Strike will be a \ncombat diver\n event! Special note: you do not need to be qualified with combat diver in order to partake in this. We\'ll help set you up with a diver kit and all the essentials you\'ll need to succeed in the case you\'re not familiar with how it works (like Sherman, who never did a combat diver qual yet).\n\nSince this isn\'t one of our main ops for this campaign, there will be no OPORD.\n\nComplementary song as always: \n\n\nImmediate Questions:\nNote:\nIf there are anymore questions, please direct them to Sherman and Okami!', 67, 0, '2022-06-30 01:38:35', '2025-12-17 19:45:32', NULL, '5427083', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1506, 'Aditional Mod Testing - OPS Events', '2022-07-02 23:00:00', '2022-07-03 23:00:00', '', '#FFFFFF', '', 38, 0, '2022-07-02 04:11:17', '2025-12-17 19:45:32', NULL, '5429935', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1507, 'Basic Training', '2022-07-08 13:00:00', '2022-07-08 15:00:00', '', '#FFFFFF', '', 15, 0, '2022-07-02 17:36:08', '2025-12-17 19:45:32', NULL, '5433100', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1508, 'Operation Banana Snatcher', '2022-07-13 18:00:00', '2022-07-13 20:00:00', '', '#FFFFFF', 'Tasking: Assault the main island of Tanoa, take out both radio camps, and capture HVT.\n\nIn the past few years Tanoa has become the largest illegal drug manufacturer in the world and is quickly pushing into weapon smuggling and other black market activities. The driving force behind this growth is this man;\nWe need to capture him alive so that his criminal empire can be dismantled. We believe he is currently located at his main drug production built in the old sugar factory from years past. He is flighty, so the two comms towers must be taken out first.\nWe will insert by sea under the cover of darkness. We have two jets ready for close air support at your order. The entire island, including the old government and military, is under the command of The Ghost. So be prepared for heavy resistance and occupation.\nIf the radio towers are taken out without alarm, you will have approximately 30 minutes to reach the sugar factory before they will be due to check in again. The Ghost is flighty, so he will flee if he feels something is wrong.', 57, 0, '2022-07-02 20:36:03', '2025-12-17 19:45:32', NULL, '5433453', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1509, 'Land Navigation', '2022-07-06 18:00:00', '2022-07-06 21:00:00', 'Private Operations Server', '#ecb200', '', 38, 0, '2022-07-03 01:15:29', '2025-12-17 19:45:32', NULL, '5434019', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1510, 'NO EVENTS [SERVER / MOD UPDATES]', '2022-07-09 23:00:00', '2022-07-10 23:00:00', '', '#df5353', '', 38, 0, '2022-07-06 00:02:19', '2025-12-17 19:45:32', NULL, '5436855', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1511, 'RASP', '2022-07-09 18:00:00', '2022-07-09 21:00:00', 'Private Ops', '#df5353', 'A Kenneth Jeong Un production', 48, 0, '2022-07-06 23:37:38', '2025-12-17 19:45:32', NULL, '5437733', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1512, 'Basic Training', '2022-07-15 17:00:00', '2022-07-15 20:00:00', '', '#FFFFFF', '', NULL, 0, '2022-07-09 03:27:53', '2025-12-17 19:45:32', NULL, '5441112', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1513, 'Operation Siren Song', '2022-07-16 18:00:00', '2022-07-16 21:00:00', '', '#df5353', 'En el 23 de la 110\nNo se puede estar tranquilo\n\n', 850, 0, '2022-07-09 05:55:04', '2025-12-17 19:45:32', NULL, '5441125', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1514, 'Operation Siren Song 1 (Rerun + Tweaks)', '2022-07-23 18:00:00', '2022-07-23 21:00:00', '', '#df5353', '¡Te diré porque!\nA veces a las doce del día', 850, 0, '2022-07-09 05:58:51', '2025-12-17 19:45:32', NULL, '5441126', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1515, 'Operation Siren Song 2', '2022-08-06 18:00:00', '2022-08-06 21:00:00', '', '#df5353', 'Se forma una rebambaramba\nQue se juntan cuatro, cinco, siete, ocho, nueve o diez\n\n\n', 850, 0, '2022-07-09 06:01:57', '2025-12-17 19:45:32', NULL, '5441128', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1516, 'Operation Siren Song 3', '2022-08-20 18:00:00', '2022-08-20 21:00:00', '', '#df5353', 'Y salen gritando\nAvísale al super', 850, 0, '2022-07-09 06:03:08', '2025-12-17 19:45:32', NULL, '5441129', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1517, 'Operation Siren Song 4', '2022-08-27 18:00:00', '2022-08-27 21:00:00', '', '#df5353', 'Que nos estamos quemando\nNo se sabe el fuego en dónde és', 850, 0, '2022-07-09 06:04:56', '2025-12-17 19:45:32', NULL, '5441130', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1518, 'Operation Siren Song 5', '2022-09-03 18:00:00', '2022-09-03 21:00:00', '', '#df5353', 'Una mañana dormía y corriendo me tirè\nPor un grito que decía hay fuego en el 23', 850, 0, '2022-07-09 06:07:01', '2025-12-17 19:45:32', NULL, '5441131', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1519, 'Operation Siren Song 6', '2022-09-10 18:00:00', '2022-09-10 21:00:00', '', '#df5353', 'Que se prendió la bombilla\nY no se sabe como fue', 850, 0, '2022-07-09 06:07:50', '2025-12-17 19:45:32', NULL, '5441132', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1520, '68 W Training', '2022-07-14 18:00:00', '2022-07-14 20:00:00', 'Training Server', '#6cba50', 'A training course for all you aspiring combat medics to earn your 68W badge.\n\n68W training document: \n\n\nThere will be no official testing, however we will have a practical exercise at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treated injured/unconscious individuals\n(2) Correct method of triage during a Mass Cas event\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.) ', 2223, 0, '2022-07-09 20:20:23', '2025-12-17 19:45:32', NULL, '5441645', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1521, '[Cancelled] Pathfinder Qualification', '2022-07-12 18:00:00', '2022-07-12 21:00:00', 'Private Operations Server', '#a250e8', 'Pathfinder Qualification. Pathfinder Bookwork and Master Free Fall are required.\n\nCancelled due to lack of participants.', 468, 1, '2022-07-10 04:04:04', '2025-12-17 19:45:32', NULL, '5442180', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1522, 'CLS', '2022-07-19 19:00:00', '2022-07-19 20:30:00', 'Training ground', '#ecb200', '', 280, 0, '2022-07-10 19:30:24', '2025-12-17 19:45:32', NULL, '5442832', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1523, 'Fixed Wing CAS Qual', '2022-07-11 16:00:00', '2022-07-11 17:00:00', 'Northern Airfield', '#FFFFFF', 'Qualifying fellas interested in fixed wing CAS. Only two slots because I have only two eyes.', 1040, 0, '2022-07-10 23:59:16', '2025-12-17 19:45:32', NULL, '5442868', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1524, 'Raids - Own the Night', '2022-07-11 18:00:00', '2022-07-11 20:00:00', 'Private Ops Server', '#FFFFFF', 'Raids - Swiftness of Force, Violence of Action. Hit and runs.\nNeed a fire team minimum. We will work on small unit tactics for taking down known guarded positions as quickly as we can.\nThis will involve building and compound clearing quickly with possible friendlies onsite.\nBring your \'A\' game.', 483, 0, '2022-07-11 15:37:58', '2025-12-17 19:45:32', NULL, '5443300', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1525, 'Combat Diver', '2022-07-14 20:00:00', '2022-07-14 21:59:00', 'Naval Base', '#a250e8', '', 918, 0, '2022-07-12 18:28:14', '2025-12-17 19:45:32', NULL, '5444962', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1526, 'Pathfinder Qualification', '2022-07-22 18:00:00', '2022-07-22 21:00:00', 'Private Operations Server', '#a250e8', 'Pathfinder Qualification required for RRC. Pathfinder bookwork and Master Free Fall are prerequisites to attend.', 468, 0, '2022-07-12 23:25:58', '2025-12-17 19:45:32', NULL, '5445059', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1527, 'F/A-18 Familiarization Training', '2022-07-21 18:00:00', '2022-07-21 20:00:00', 'Private Ops Server (onboard the USS Nimitz)', '#d89332', 'We will be taking a look at the new(ish) F/A-18 on this training. \nBasics of fixed wing will not be covered here so I expect attendees to have some knowledge or experience in fixed wing\n. This training will strictly focus only on CAP and SEAD in detail. We\'ll be operating off the USS Nimitz, don\'t worry about not being good at landing on the carrier neither am I lol but that\'s what training is all about\n', 2224, 0, '2022-07-13 13:10:05', '2025-12-17 19:45:32', NULL, '5446425', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1528, 'Fireteam FTX: Leadership Initiative', '2022-07-17 18:00:00', '2022-07-17 20:00:00', 'Private Ops Server', '#30a68f', 'Hey everyone, \n\nGot a lot of up and coming fireteam leaders and new blood in our ranks. What better way to get reps and learn how to work with others than through training.\n\nWhat we\'ll go over:\n- Radio Nets (primary and alternate)\n- Communication Etiquette (including stepping up and stepping down)\n- Mindsets to have as a fireteam member (from the FTL to the ammo bearer)\n- How to be proactive with your team!\n\nActivities:\n- Setting up securities\n- Foot patrols (walking is nice)\n- \nRealizing you\'re the last man standing and have no idea what to do anymore\n\n\nThings to Think About:\n- What does it mean to be a leader?\n- What does it mean to be a battle buddy?\n- What are some examples of demonstrating initiative in your fireteam?\n\nSpecial Credit to \n for making the handy FTL handbook!', 67, 0, '2022-07-13 21:00:31', '2025-12-17 19:45:32', NULL, '5446643', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1529, 'TBD Reps', '2022-07-15 13:00:00', '2022-07-15 15:00:00', 'Private Ops', '#ecb200', 'Just gonna hit up some reps using campaign map and OPFOR. Topic will be determined based on number of people attending and interest.\nPossible topics include:\n-CQB\n-Heavy Weapons familiarization \n-BoF/Maneuver \n-Mad Minute\n-Point Man\n-FTL/SL practice', 1141, 0, '2022-07-14 17:53:58', '2025-12-17 19:45:32', NULL, '5447079', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1530, 'F/A-18 Familiarization Training [Cancelled]', '2022-07-28 18:00:00', '2022-07-28 20:00:00', 'Private Ops Server (onboard the USS Nimitz)', '#ecb200', 'We will be taking a look at the new(ish) F/A-18 on this training. \nBasics of fixed wing will not be covered here so I expect attendees to have some knowledge or experience in fixed wing \n(priority of slots go to the Echo boys). This training will strictly focus only on CAP and SEAD in detail. We\'ll be operating off the USS Nimitz, don\'t worry about not being good at landing on the carrier neither am I lol, but that\'s what training is all about.\n', 2224, 1, '2022-07-15 07:23:58', '2025-12-17 19:45:32', NULL, '5448612', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1531, 'NCO Meetings', '2022-07-16 17:00:00', '2022-07-16 18:00:00', 'Chow hall in TS', '#FFFFFF', 'Please refrain from chatter unless you are leadership until the floor is opened or the meeting is adjourned.', 81, 0, '2022-07-15 19:23:08', '2025-12-17 19:45:32', NULL, '5448756', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1532, 'NCO Meetings', '2022-07-23 17:00:00', '2022-07-23 18:00:00', 'Chow Hall in TS', '#FFFFFF', 'Please refrain from chatter unless you are leadership until the floor is opened or the meeting is adjourned.', 81, 0, '2022-07-15 19:23:40', '2025-12-17 19:45:32', NULL, '5448757', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1533, 'NCO Meetings', '2022-07-30 17:00:00', '2022-07-30 18:00:00', 'Chow Hall in TS', '#FFFFFF', 'Please refrain from chatter unless you are leadership until the floor is opened or the meeting is adjourned.', 81, 0, '2022-07-15 19:24:04', '2025-12-17 19:45:32', NULL, '5448758', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1534, 'NCO Meetings', '2022-08-06 17:00:00', '2022-08-06 18:00:00', 'Chow Hall in TS', '#FFFFFF', 'Please refrain from chatter unless you are leadership until the floor is opened or the meeting is adjourned.', 81, 0, '2022-07-15 19:24:25', '2025-12-17 19:45:32', NULL, '5448759', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1535, 'Echo Mechanized Training', '2022-07-19 18:00:00', '2022-07-19 20:00:00', 'Training Server', '#a250e8', 'Training and Bookwork. There will be static and live fire sections. This is not the qualification.', 468, 0, '2022-07-16 01:00:53', '2025-12-17 19:45:32', NULL, '5448830', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1536, 'Basic Training', '2022-07-21 18:30:00', '2022-07-21 21:30:00', 'Training server', '#FFFFFF', 'Make sure your Mods are ready and loaded and teamspeak works as well.', 554, 0, '2022-07-16 16:29:33', '2025-12-17 19:45:32', NULL, '5449068', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1537, 'Echo Orienation', '2022-07-18 18:00:00', '2022-07-18 19:30:00', 'Rocket Range', '#FFFFFF', 'Beginners Guide to Echo, everyone including alpha is encouraged to attend. Will be covering the different ground vehicles used by Echo, and how to use them.', 2222, 0, '2022-07-16 17:35:04', '2025-12-17 19:45:32', NULL, '5449117', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1538, 'Side Op', '2022-07-31 18:00:00', '2022-07-31 19:00:00', '', '#30a68f', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/WDJ475Xz/channels/76d99607-ec61-437a-886e-c3cba36e0ada/calendar/5449019', 57, 0, '2022-07-17 09:09:08', '2025-12-17 19:45:32', NULL, '5449565', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1539, '[RESCHEDULED] Operation Hobson\'s Rift P4', '2022-07-29 18:00:00', '2022-07-29 21:00:00', 'Private Ops Server', '#ecb200', '', 67, 0, '2022-07-17 16:57:07', '2025-12-17 19:45:32', NULL, '5449671', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1540, 'JTAC Qualification', '2022-07-22 17:00:00', '2022-07-22 18:30:00', '', '#ecb200', '', 516, 0, '2022-07-18 12:52:58', '2025-12-17 19:45:32', NULL, '5453325', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1541, 'EOD Training', '2022-07-25 18:00:00', '2022-07-25 19:00:00', '', '#d89332', '', 951, 0, '2022-07-18 14:40:41', '2025-12-17 19:45:32', NULL, '5453542', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1542, 'Basic Training', '2022-07-25 18:00:00', '2022-07-25 21:30:00', '17th BN Training Server, meet in TeamSpeak recruitment room.', '#ecb200', 'Basic Training for new recruits.', 21, 0, '2022-07-18 19:04:40', '2025-12-17 19:45:32', NULL, '5454064', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1543, 'Operation Gothic Serpent Joint Op', '2022-07-30 18:00:00', '2022-07-30 21:00:00', '17th Private Ops', '#df5353', 'Joint op presented by Ken and Beachhead. It\'s a black hawk down type scenario in Somalia. It\'s gonna be good.\nShadowmod: \n', 48, 0, '2022-07-19 02:19:10', '2025-12-17 19:45:32', NULL, '5454516', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1544, 'Operation Siren Song Finale', '2022-09-17 18:00:00', '2022-09-17 21:00:00', '', '#df5353', '', 48, 0, '2022-07-19 02:20:57', '2025-12-17 19:45:32', NULL, '5454517', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1545, 'Air Assault Familiarization', '2022-07-22 18:00:00', '2022-07-22 20:00:00', '17th Training Server', '#FFFFFF', 'Familiarization and drills with Air Assault tactics and Fastroping from various rotor-wing platforms.\n\nAttendance is Strongly reccommended for those looking to attend the upcoming Joint-Operation!\n\nAir Assault Documentation:\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/1123787340', NULL, 0, '2022-07-19 13:43:23', '2025-12-17 19:45:32', NULL, '5454605', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1546, 'Operation Icarus - Air Assault FTX', '2022-07-27 18:00:00', '2022-07-27 21:00:00', '', '#df5353', 'Let\'s get some more reps in with a real air assault. ', 48, 0, '2022-07-19 13:55:14', '2025-12-17 19:45:32', NULL, '5454607', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1547, 'Air Assault Training Placeholder', '2022-07-26 18:00:00', '2022-07-26 19:30:00', '', '#d89332', '', 28, 0, '2022-07-19 14:08:27', '2025-12-17 19:45:32', NULL, '5454608', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1548, 'Operation Firefight', '2021-07-21 18:00:00', '2021-07-21 21:00:00', '', '#ecb200', 'KENTACULAR', 850, 0, '2022-07-19 15:04:37', '2025-12-17 19:45:32', NULL, '5454701', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1549, 'Rotary Wing Logistical Training and potential Qualification', '2022-07-24 18:00:00', '2022-07-24 21:30:00', 'Training Server', '#a250e8', 'Basics of flight will not be covered. Anyone attending should be familiar with flight controls on the MH-6, UH-60, and CH-47F. Trainees will learn what is covered on the Rotary Logi qualification and will practice until proficient in those areas. If time allows, we still do qualifications.\n\nAttendees should know:\nGeneral feeling of the MH-6, UH-60, CH-47F.\nHow to flare in each airframe.\nHow to conduct a J-Hook in each airframe.\nHow to land without autohover.\nHow to manually plot an 8-digit grid while in flight.\n', 468, 0, '2022-07-19 18:50:55', '2025-12-17 19:45:32', NULL, '5454789', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1550, 'Fire Team Leading and Squad Leading FTX', '2022-07-28 18:00:00', '2022-07-28 20:00:00', 'Training Grounds', '#FFFFFF', 'In this Training I will focus on the planning phase of objectives. \nWe will talk about how to path and divide an objective for a squad to clear. \nHow to utilize weapon team, and where to position them. \nThe training will take about ~15 mins then we will proceed to the FTX\n\nLore: \nAfter Clearing the surrounding area of FOB Ender and destroying a rocket artillery position, things have been quiet, too quiet... \nRiptide 1 is being sent out on a patrol that reaches out further then usual. Wonder what they might find. ', 6, 0, '2022-07-19 20:17:46', '2025-12-17 19:45:32', NULL, '5454803', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1551, 'Operation Sea Serpent', '2022-07-20 18:00:00', '2022-07-20 20:30:00', 'Private Ops Server', '#FFFFFF', 'Raid on Russian occupied Stratis airfield. Non standard assets and lots of explosives.', 1040, 0, '2022-07-19 21:13:34', '2025-12-17 19:45:32', NULL, '5455037', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1552, '[Cancelled]Basic Training', '2022-07-29 16:00:00', '2022-07-29 19:00:00', 'Teamspeak Recruitment Room', '#FFFFFF', 'Come learn the basics to play with the 17th\nPlease have modpack downloaded and teamspeak plugin ready beforehand. If you\'re having trouble refer to the New Members Guide in guilded; linked above. If you\'re still having trouble, try contacting an NCO and we can help.\n\nCancelled due to no attendees', 39, 1, '2022-07-19 22:38:45', '2025-12-17 19:45:32', NULL, '5455149', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1553, 'AIT 3 - MOUT', '2022-07-21 18:00:00', '2022-07-21 20:00:00', 'Training Range', '#a250e8', 'AIT 3 - MOUT. \nCome get those shiny internet cookies', 483, 0, '2022-07-19 22:59:14', '2025-12-17 19:45:32', NULL, '5455164', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1554, 'Operation Testing', '2022-07-20 12:00:00', '2022-07-20 12:30:00', 'Private Ops Server', '#FFFFFF', '', 1040, 0, '2022-07-20 01:17:20', '2025-12-17 19:45:32', NULL, '5455230', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1555, 'Operation Test on Private Ops Server', '2022-07-22 12:00:00', '2022-07-22 13:00:00', '', '#FFFFFF', '', 15, 0, '2022-07-21 02:25:34', '2025-12-17 19:45:32', NULL, '5456489', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1556, 'CoPilot Training and maybe qual', '2022-07-23 16:00:00', '2022-07-23 17:00:00', 'Training server Southern Airfield', '#d89332', '', 27, 0, '2022-07-21 23:35:55', '2025-12-17 19:45:32', NULL, '5457734', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1557, 'Operation COIN', '2022-08-03 18:00:00', '2022-08-03 20:00:00', '', '#a250e8', 'Zargabad has fallen into the control of the Al-ashrar insurgents and the citizens are plagued with seemingly randomly placed boobytraps left by them. Although the bulk of the Al-ashrar fighting force, including almost all of the vehicles, has moved on to try and wrestle control other areas of Takistan from the Takistan National Army. \nThe 17th has been tasked with preforming counter insurgency operations in TNA\'s stead. \nObjectives:\nROE: Only engage if being fire upon. Civilians are still moving about the town and while most have chosen to not be armed lest they attract Al-ashrar attention, some may still have weapons.', 57, 0, '2022-07-22 17:47:18', '2025-12-17 19:45:32', NULL, '5458729', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1558, 'Operation Civil Rest', '2022-09-14 18:00:00', '2022-09-14 20:00:00', '', '#a250e8', 'We are providing assistance at a border crossing between Tanzania and Kenya. Kenya is currently in a state of civil unrest after the assassination\'s of its top officials. This has caused an increase level on border crossing into Tanzania that the local border control has asked for help with. \nWith this increase in refugees there has also been a surge in dangerous entity as well trying to cross. You will be responsible for all vehicular traffic over the pontoon bridge while the Tanzanian\'s focus on the refugees. ', 57, 0, '2022-07-22 17:47:46', '2025-12-17 19:45:32', NULL, '5458730', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1559, 'Operation Argonne', '2022-09-28 18:00:00', '2022-09-28 20:00:00', '', '#a250e8', 'Your bird crashed in insurgent territory due to some electronic interference. Survive until rescue comes.', 57, 0, '2022-07-22 17:47:59', '2025-12-17 19:45:32', NULL, '5458731', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1560, '[RESCHEDULED]Operating Restoring Hope', '2022-08-19 18:00:00', '2022-08-19 21:00:00', '', '#ecb200', 'Situation: the Russians have invaded Chernarus, and NATO has put together a coalition to drive them out. The 17th is the closest unit, and, as such, has been tasked with eliminating all Russian forces from eastern Chernarus before Moscow moves more Battalion Tactical Groups in to reinforce', 15, 0, '2022-07-22 18:35:56', '2025-12-17 19:45:32', NULL, '5458768', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1561, 'Operation Hobson\'s Rift P4', '2022-08-12 18:00:00', '2022-08-12 21:00:00', 'Private Ops Server', '#FFFFFF', 'OPORD (click the link!): \n\nHey everyone!\nHobson\'s Rift is back again, and Okami and Sherman are excited to present to you part 4 of our on-going campaign! The stakes are higher, the combat intensified, and the fun to keep on going. Highlights of this one: \nAIR SUPERIORITY\n. We\'ve got a lot of love to give towards our Echo and Alpha boys in this one, and we hope that you guys will enjoy this one a lot!\nNote that we will be using the new callsign \nPhantom\n for Alpha elements.\nComplementary song as always: \n\n\nImmediate Questions:\nNote:\nIf there are anymore questions, please direct them to Sherman and Okami\n', 67, 0, '2022-07-22 23:56:45', '2025-12-17 19:45:32', NULL, '5461278', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1562, 'Operation Saladin', '2022-08-17 18:00:00', '2022-08-17 20:30:00', 'Takistan', '#FFFFFF', 'Fight against an overwhelming yet technologically disadvantaged enemy', 1040, 0, '2022-07-24 14:04:04', '2025-12-17 19:45:32', NULL, '5469480', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1563, '[Rescheduled] Echo Orientation', '2022-08-01 18:00:00', '2022-08-01 20:00:00', 'Rocket Range', '#d89332', '', 2222, 0, '2022-07-25 01:17:56', '2025-12-17 19:45:32', NULL, '5469889', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1564, 'Air Crew', '2022-08-02 18:00:00', '2022-08-02 20:00:00', 'Northern Airfield', '#d89332', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/c36c8425-138e-48a1-8f20-3155a54648e9/docs/248316', 2222, 0, '2022-07-25 01:18:20', '2025-12-17 19:45:32', NULL, '5469890', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1565, 'Community Round Table', '2022-08-07 14:30:00', '2022-08-07 16:00:00', 'Teamspeak', '#FFFFFF', '\n \nDo NOT put your talking points here, put them in the Bulletin Board post, please.\n\n\n \nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/31a767aa-f57a-45e5-8929-d25183bce25e/forums/104577494\n', 38, 0, '2022-07-25 22:33:51', '2025-12-17 19:45:32', NULL, '5471073', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1566, 'GOTHIC SERPANT SAND TABLE', '2022-07-29 18:00:00', '2022-07-29 20:00:00', '', '#df5353', 'get some solid prep the day before the mission. Explore the environment, run through the mission, become good at what we need to do so we can execute it flawlessly.\n\nSHADOWMOD: \n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2837216816', 28, 0, '2022-07-27 20:26:32', '2025-12-17 19:45:32', NULL, '5474663', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1567, 'Basic Training', '2022-08-04 17:00:00', '2022-08-04 19:00:00', '17th BN Recruitment Room 1', '#FFFFFF', 'Come learn the basics to play with the 17th\nPlease have modpack downloaded and teamspeak plugin ready beforehand. If you\'re having trouble refer to the New Members Guide in guilded; linked above. If you\'re still having trouble, try contacting an NCO and we can help', 39, 0, '2022-07-29 21:02:27', '2025-12-17 19:45:32', NULL, '5477629', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1568, '[RESCHEDUALED] CLS With Homie and Doc Halladay', '2022-08-01 17:00:00', '2022-08-01 18:00:00', 'Training Grounds', '#ecb200', 'Come learn how to perform basic medical! A must have training for all interested in medic work!', 542, 0, '2022-08-01 01:27:36', '2025-12-17 19:45:32', NULL, '5480628', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1569, 'CLS with Homie and Doc Halladay', '2022-08-05 17:00:00', '2022-08-05 18:00:00', 'Training Grounds', '#ecb200', 'Come learn the basics to medical and how to make your squad medic’s life a million times easier! \n CLS IS REQUIRED IN ORDER TO TAKE 68 WHISKEY ', 542, 0, '2022-08-01 15:09:34', '2025-12-17 19:45:32', NULL, '5481507', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1570, 'Echo Orientation', '2022-08-04 18:00:00', '2022-08-04 19:30:00', 'Rocket Range', '#d89332', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/5f839827-d77e-424f-b198-025a989f8751/docs/1945638266', 2222, 0, '2022-08-01 18:23:40', '2025-12-17 19:45:32', NULL, '5481830', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1571, 'Mech Quallification', '2022-08-05 18:00:00', '2022-08-05 20:00:00', '', '#FFFFFF', 'This is a required qualification to be an Echo Company NCO. ', 516, 0, '2022-08-01 18:40:37', '2025-12-17 19:45:32', NULL, '5482022', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1572, '[Rescheduled TBD] EOD Training', '2022-08-07 18:00:00', '2022-08-07 21:00:00', 'Southern Airfield, 17th Training Server', '#d89332', 'EOD training August 7th 7 CST. We will be discussing how not to get yourself blown up. Open to anybody in the community. Qual will be held at the end, those who succeed will have completed 1/2 of the prerequisites for the Sapper Badge. Should be a fun time!', 951, 0, '2022-08-01 19:50:11', '2025-12-17 19:45:32', NULL, '5482078', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1573, '[Cancelled]Pathfinder Bookwork', '2022-08-08 18:00:00', '2022-08-08 20:15:00', 'Training Server', '#a250e8', 'Pathfinder Bookwork. Learn the basics of an RRC teammember; this is required to attempt the Pathfinder Qualification', 468, 1, '2022-08-01 20:15:28', '2025-12-17 19:45:32', NULL, '5482152', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1574, '[Cancelled]Heavy Weapons School', '2022-08-09 18:00:00', '2022-08-09 20:00:00', 'Training Server', '#a250e8', 'Gain intermediary knowledge of our AT Launchers and CSWs, then spend a shit ton of time shooting them', 468, 1, '2022-08-01 20:17:34', '2025-12-17 19:45:32', NULL, '5482153', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1575, 'Operation Hobson’s Rift P5', '2022-08-26 18:00:00', '2022-08-26 21:00:00', 'Private Ops Server', '#30a68f', 'Hey everyone!\n\nLife caught up with Sherman as he spent some family time this week and didn\'t get a lot of time to build the actual OPORD for this time around. We have one objective: La Trinite. The forces of the Livonian Separatists and the Livonian Defense Force clash with NATO troops in a pitched battle for the strategic town. Whoever controls this town wins the island.\n\n\n\n\n\nComplementary Song as always (rise up you Texans): \n\n\nImmediate Questions:\nNote:\nIf there are anymore questions, please direct them to Sherman and Okami', 67, 0, '2022-08-01 21:31:41', '2025-12-17 19:45:32', NULL, '5482250', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1576, 'Accelerated Basic Training', '2022-08-02 18:00:00', '2022-08-02 19:30:00', 'Chow Hall in TeamSpeak', '#FFFFFF', 'This version of Basic Training is only for those who qualify by having at least 500 hours in Arma 3. The material in this training will be taught at a faster pace, as it is expected that those eligble have a decent baseline of gameplay comprehension.\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/1011266508', 795, 0, '2022-08-01 22:24:42', '2025-12-17 19:45:32', NULL, '5482623', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1577, 'Fireteam FTX: Movement Maneuvers', '2022-08-05 18:00:00', '2022-08-05 21:00:00', 'Private Ops Server', '#30a68f', 'Hey everyone, we\'ve got a lot of work done in AIT, and I want to build off of some of the concepts taught in it, especially AIT 2. This will involve handling maneuver security and navigating danger areas in varied terrain, ranging from open fields to MSRs.\nConcepts we\'ll cover:\nEveryone is welcome to attend, bring a battle buddy too! Privates up to Specialist are especially welcome, great opportunity to get additional reps and field work with the unit. While this is a more Alpha Company oriented training, Echo personnel is still more than welcome to attend (depending on numbers, I might be able to work something out).\nCredit to \n for making the initial document! Please review the attached link for more information as it does offer a lot of insight as to what we\'ll be doing.', 67, 0, '2022-08-01 23:46:26', '2025-12-17 19:45:32', NULL, '5482793', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1578, 'Operation Siren Song 2 RRC', '2022-08-04 18:00:00', '2022-08-04 21:00:00', '', '#df5353', '', 850, 0, '2022-08-02 02:49:36', '2025-12-17 19:45:32', NULL, '5483073', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1579, '[Rescheduled] Operation Hazy Skies', '2022-08-07 18:00:00', '2022-08-07 20:00:00', 'Private Ops Server', '#ecb200', 'This event has been rescheduled to not interfere with Soggy Sundays', 2222, 0, '2022-08-04 02:43:56', '2025-12-17 19:45:32', NULL, '5486019', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1580, 'Operation Crimson Cinder P1', '2022-08-10 18:00:00', '2022-08-10 21:00:00', 'Private Ops Server', '#FFFFFF', 'Hey everyone, got a mini-op going for us tonight. Hope to see you all there! No OPORD for this one, heh.', 67, 0, '2022-08-05 20:39:13', '2025-12-17 19:45:32', NULL, '5488912', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1581, 'Operation Hazy Skies', '2022-08-11 19:00:00', '2022-08-11 21:00:00', 'Private Ops Server', '#FFFFFF', 'Story Premise:\n You have been contracted by the UN to assist in a humanitarian effort, but this is no simple water delivery to another impoverished village - it is a raid. Rumors of strange weapon tests that have been going down in Malden, and civilians that have gone missing under extremely mysterious circumstances. \n Due to complicated political happenings, the US is not allowed to deploy in Malden under the pretense of investigating these weapons tests - unless they wanted to go to war with the AAF. The only way that situation would be avoided is if they were to be deployed by someone like the UN, in such a situation, the AAF would be forced to cooperate. \n With you now all caught up, your mission will be as follows: Head into the AO, find the scientist who is developing this weapon, and take him out. The success of this mission is critical.\n\nWhat does this mean?\nI will also take a page from Sherman\'s book, I will provide you with some complimentary tunes:\n\n\n\r', 2222, 0, '2022-08-07 02:26:45', '2025-12-17 19:45:32', NULL, '5490302', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1582, 'AIT 1 - Fireteam positions', '2022-08-20 11:00:00', '2022-08-20 13:00:00', 'Training Grounds - Training Server', '#a250e8', 'Come learn the different parts of a fire team.\nThis is part 1 of a 4 part Saturday series', 483, 0, '2022-08-07 21:04:06', '2025-12-17 19:45:32', NULL, '5492001', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1583, '[Canceled] AIT 4 - CQB', '2022-08-11 18:00:00', '2022-08-11 20:00:00', 'Training Grounds - Training Server', '#a250e8', 'Come learn to clear buildings, compounds, etc.', 483, 1, '2022-08-07 21:07:31', '2025-12-17 19:45:32', NULL, '5492002', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1584, 'AIT 2 - Battle Drills', '2022-08-27 11:00:00', '2022-08-27 13:00:00', 'Training grounds - Training Server', '#a250e8', 'Learn the Battle Drills\npart 2 of 4 of the saturday series', 483, 0, '2022-08-07 21:09:10', '2025-12-17 19:45:32', NULL, '5492004', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1585, 'FTX - Practice some stuff', '2022-08-07 18:00:00', '2022-08-07 20:00:00', 'Private Ops server', '#FFFFFF', 'Lets do an FTX, get soem practice', 483, 0, '2022-08-07 21:15:37', '2025-12-17 19:45:32', NULL, '5492013', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1586, '68W Training', '2022-08-18 18:00:00', '2022-08-18 20:00:00', 'Training Server', '#FFFFFF', 'A training course for all you aspiring combat medics to earn your 68W badge.\n\n68W training document: \n\n\nThere will be no official qualification testing, however we will have a practical exercise at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treated injured/unconscious individuals\n(2) Correct method of triage during a Mass Cas event\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.) ', 2223, 0, '2022-08-07 21:52:16', '2025-12-17 19:45:32', NULL, '5492019', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1587, 'Echo Pow Wow', '2022-08-12 17:00:00', '2022-08-12 18:00:00', 'Teamspeak - Motorpool', '#FFFFFF', 'This will be an opportunity for members of Echo (HHC and Alpha as well) to bring suggestions to the table as part of my step into the role of CO as Echo. All are welcome, and comments, suggestions, concerns, and criticisms are welcome. \nAttendance is not mandatory, but suggested. ', NULL, 0, '2022-08-08 02:44:28', '2025-12-17 19:45:32', NULL, '5492192', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1588, 'RASP', '2022-08-13 18:00:00', '2022-08-13 21:00:00', '', '#df5353', 'New format\n\nMODLIST FOR RASP:\n17th Ranger Battalion Shadow Mod AND\nSanagasta = \n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2466229756', 850, 0, '2022-08-08 17:28:05', '2025-12-17 19:45:32', NULL, '5493139', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1589, 'Operation Hazy Skies Pt.2', '2022-08-21 18:00:00', '2022-08-21 20:00:00', 'Private Ops Server', '#ecb200', 'This is the second rendition of the Operation Hazy Skies series, hope we have another good one!\nSituation:\nLast op the scientist we were supposed to capture was DOA, why he was dead is still unknown. What we do now is that his weapon testing bore fruit, as he was able to send off his partially successful weapon in shipping containers to CHDKZ on Chernarus. As you may be able to guess, it is going to be your job to head in and seize whatever he was working on. \nAnd of course, the complementary tunes (don’t judge this is the only way I can share my music taste unprovoked):\n\n', 2222, 0, '2022-08-08 18:33:57', '2025-12-17 19:45:32', NULL, '5493159', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1590, 'Convoy Operations Training [POSTPONED]', '2022-08-18 16:00:00', '2022-08-18 18:00:00', '17th Operations Server', '#FFFFFF', 'Postponed due to life events, rescheduled for 8/25', NULL, 0, '2022-08-08 19:27:32', '2025-12-17 19:45:32', NULL, '5493200', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1591, 'Basic Training', '2022-08-15 17:00:00', '2022-08-15 19:30:00', 'TS Recruitment Room 1', '#FFFFFF', 'Come learn the basics to play with the 17th\nPlease have modpack downloaded and teamspeak plugin ready beforehand. If you\'re having trouble refer to the New Members Guide in guilded; linked above. If you\'re still having trouble, try contacting an NCO and we can help', 39, 0, '2022-08-08 23:16:26', '2025-12-17 19:45:32', NULL, '5493764', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1592, 'How to Zeus: Basics', '2022-08-10 16:00:00', '2022-08-10 17:00:00', 'Discord - High Bit Rate Gaming', '#FFFFFF', 'I swear I will write a document on this one of these days', 67, 0, '2022-08-09 01:58:07', '2025-12-17 19:45:32', NULL, '5494031', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1593, '17th Command Meeting', '2022-08-14 16:00:00', '2022-08-14 18:00:00', 'Teamspeak', '#FFFFFF', 'Bring something to discuss or questions to ask.\n\nAnyone can attend and listen but if you are not HHC or a CO/XO we ask that you keep your microphone muted unless specifically called upon. There will be an opportunity for you to give your input at the end.', 46, 0, '2022-08-09 03:51:16', '2025-12-17 19:45:32', NULL, '5494043', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1594, 'Accelerated Basic Training, by Special Request', '2022-08-09 19:00:00', '2022-08-09 20:30:00', 'Chow Hall in TeamSpeak', '#FFFFFF', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/1011266508', 795, 0, '2022-08-09 17:08:39', '2025-12-17 19:45:32', NULL, '5495523', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1595, 'Jump Wings Training', '2022-08-12 16:00:00', '2022-08-12 18:00:00', 'Northern Air Field', '#a250e8', 'Come learn how to fall out of a plane in a coordinated fashion', 918, 0, '2022-08-09 18:01:03', '2025-12-17 19:45:32', NULL, '5495736', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1596, 'Server Reboot after Scheduled Events', '2022-08-09 22:30:00', '2022-08-09 23:00:00', '', '#df5353', '', 38, 0, '2022-08-09 21:48:36', '2025-12-17 19:45:32', NULL, '5495822', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1597, 'Pathfinder Bookwork', '2022-08-15 18:00:00', '2022-08-15 20:00:00', 'Training Server', '#a250e8', '', 468, 0, '2022-08-10 20:35:51', '2025-12-17 19:45:32', NULL, '5496566', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1598, 'Heavy Weapons School', '2022-08-16 18:00:00', '2022-08-16 19:30:00', '', '#a250e8', '', 468, 0, '2022-08-10 20:36:04', '2025-12-17 19:45:32', NULL, '5496567', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1599, '{Rescheduled} Echo Mechanized Training', '2022-08-29 18:00:00', '2022-08-29 20:00:00', 'Training Server', '#d89332', 'Mechanized familiarization and training.\nRescheduled to AUG 30 due to class schedule', 468, 0, '2022-08-10 20:36:54', '2025-12-17 19:45:32', NULL, '5496568', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1600, '[Rescheduled to 3 SEPT] Echo Mechanized Qualification', '2022-09-01 18:30:00', '2022-09-01 20:45:00', 'Training Server', '#a250e8', 'Mechanized Qualification. This is a required qualification for any prospective Echo ground NCOs.\nTime adjusted, \nStart time 7 PM -> 7:30 PM', 468, 0, '2022-08-10 20:37:50', '2025-12-17 19:45:32', NULL, '5496569', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1601, 'Rotary Wing CAS Qual', '2022-08-16 15:30:00', '2022-08-16 17:00:00', 'Private Ops Server', '#FFFFFF', 'Fly? No, jump good', 1040, 0, '2022-08-10 21:46:28', '2025-12-17 19:45:32', NULL, '5496589', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1602, '17th Administrator Meeting', '2022-08-13 15:30:00', '2022-08-13 16:30:00', 'We will be meeting inbthe #Training voice chat on Discord.', '#ecb200', 'This will be a check-up on all 17th Admins who are able and willing to attend by the lead Admin. Anyone can attend but should keep in mind that this event is NOT meant to be a place to file complaints, questions etc. to Admins and should stay muted unless they are 17th Admins or part of HHC.', 21, 0, '2022-08-11 16:27:05', '2025-12-17 19:45:32', NULL, '5497383', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1603, 'Coms Profiencey Training', '2022-08-19 18:00:00', '2022-08-19 21:00:00', '', '#FFFFFF', 'Over time we have disconnected with the communications and the ability to be considerate to other people talking, people understanding instructions, Respond to instructions, Get attention of other members across the members.\nWe need to work on understanding instructions, communicate clearly, we have heard Push to talk, not Push to think. We will be working on being clear on your ability to communicate. \nWe will be working on shrinking a 30 second instruction down to 5 seconds. \nWe will be working on clarity of instructions with directions. No Left / Right, we will work on Directions (N/S/E/W). \nReferences points (Bus Station, Gas Station, Hilltop 74. \nConsiderations for personal conversations over important Nets.', 38, 0, '2022-08-12 03:10:14', '2025-12-17 19:45:32', NULL, '5497895', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1604, 'Rotary Pilot Training', '2022-08-17 17:00:00', '2022-08-17 18:00:00', '17th Training Server Airfield', '#ecb200', 'Come learn the basics of Rotary Flight with your Echo CO. Will be a mixture of Bookwork and live demonstration.', NULL, 0, '2022-08-14 07:33:04', '2025-12-17 19:45:32', NULL, '5501504', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1605, 'Convoy Ops Training', '2022-08-25 18:00:00', '2022-08-25 20:00:00', '', '#FFFFFF', ' We have all heard the complaints, we have all suffered. We are gonna be doing some convoy training to address these complaints and suffering in a constructive way. \n\nThis training will focus on efficient organization and mobilization of convoy elements, as well as re-establishing a coherent SOP for convoy operations both at a mounted and dismounted posture. \nattendance STRONGLY recommended. The more people we have, the easier it will be to demonstrate and practice the concepts.\n\n', NULL, 1, '2022-08-15 01:00:39', '2025-12-17 19:45:32', NULL, '5502188', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1606, '[Rescheduled to 1 SEPT] Echo Mechanized Training', '2022-08-30 18:30:00', '2022-08-30 20:30:00', 'Training Server', '#d89332', '', 468, 0, '2022-08-16 19:22:52', '2025-12-17 19:45:32', NULL, '5504585', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1607, 'Air Crew Training', '2022-08-21 13:00:00', '2022-08-21 15:00:00', 'Training Server', '#FFFFFF', 'Learn how to crew in the air', 45, 0, '2022-08-16 19:52:49', '2025-12-17 19:45:32', NULL, '5504589', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1608, 'Operation Double Negative', '2022-09-02 18:30:00', '2022-09-02 20:30:00', 'Arna 3 17th server', '#008ae1', 'Operation hosted by Imightbehum4n and Sherman (For assistance around server and mod updates)\nFirst mission made mainly by Human. \nThis is a capture/kill mission with other aspects possibly included. ', 1023, 0, '2022-08-17 09:42:53', '2025-12-17 19:45:32', NULL, '5505059', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1609, 'CLS Training 2.0', '2022-08-29 18:00:00', '2022-08-29 21:00:00', 'Training Server', '#ecb200', 'Join us for the all-new, revised and reimagined version of Combat Life Saver training! Come learn how a CLS can be so much more than an ammo bearer for the medic! \nFor those who need it, there is a brand new qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training.\n(Note: You will not be required to retake this course to keep your CLS ribbon if you have previously earned one, though it is highly recommended.)', 2223, 0, '2022-08-18 06:01:26', '2025-12-17 19:45:32', NULL, '5506590', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1610, 'Advanced Triage and Mass Cas', '2022-08-30 18:00:00', '2022-08-30 20:00:00', 'Training Server', '#a250e8', 'A brand new training focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to manage any Mass Cas quickly and efficiently.\nThink of this training as AIT for medical personnel!\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/331618', 2223, 0, '2022-08-18 06:09:31', '2025-12-17 19:45:32', NULL, '5506595', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1611, 'Echo Training day', '2022-09-05 18:00:00', '2022-09-05 20:00:00', 'Training Server', '#FFFFFF', 'Intended for Echo personnel but is open to any who wish to attend. We will be focusing on practicing with the MK6 mortar (Yes during this training you will be dropping hate and blowing up targets). This is intended to keep Echo personnel sharp with the usage and math surrounding the MK6. If you are knowledgeable already then please come out and assist those who are struggling. \nNOTE: This is NOT IDF course. You still need to go through that course but if you want to get an edge up on learning the math ahead of time this is a good chance to do it.', 53, 1, '2022-08-18 09:58:43', '2025-12-17 19:45:32', NULL, '5507652', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1612, 'Echo Training Day', '2022-10-03 18:00:00', '2022-10-03 20:00:00', 'Training Server', '#FFFFFF', 'Intended for Echo personnel but is open to any who wish to attend. We will be focusing on practicing with the MK6 mortar (Yes during this training you will be dropping hate and blowing up targets). This is intended to keep Echo personnel sharp with the usage and math surrounding the MK6. If you are knowledgeable already then please come out and assist those who are struggling. \nNOTE: This is NOT IDF course. You still need to go through that course but if you want to get an edge up on learning the math ahead of time this is a good chance to do it', 53, 0, '2022-08-18 10:00:14', '2025-12-17 19:45:32', NULL, '5507653', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1613, '[Cancelled] Echo Training Day', '2022-10-31 18:00:00', '2022-10-31 20:00:00', 'Training Server', '#FFFFFF', 'This event has been cancelled due to myself being drafted to work this day.', 53, 1, '2022-08-18 10:01:23', '2025-12-17 19:45:32', NULL, '5507654', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1614, 'Basic Training', '2022-08-23 18:00:00', '2022-08-23 20:00:00', 'Training Server', '#FFFFFF', 'Please Have Mods and Teamspeak Ready and working.', 554, 0, '2022-08-18 17:23:06', '2025-12-17 19:45:32', NULL, '5508371', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1615, 'Operation Crimson Cinder P2', '2022-08-31 18:00:00', '2022-08-31 21:00:00', 'Private Ops Server', '#ecb200', 'Oh god what have I done I think I overdid this mission oh shit time to improvise', 67, 0, '2022-08-19 00:12:39', '2025-12-17 19:45:32', NULL, '5509055', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1616, 'Heli Hell', '2022-08-22 16:00:00', '2022-08-22 17:00:00', 'North Airbase, Training Server', '#FFFFFF', 'Attempt to fly your helicopters as I screw with you and make you practice recovering from messy situations.', 1040, 0, '2022-08-19 21:48:11', '2025-12-17 19:45:32', NULL, '5509478', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1617, '[Rescheduled] Operation Hazy Skies Part 4', '2022-09-09 18:00:00', '2022-09-09 20:00:00', 'Private Ops Server', '#ecb200', 'New Date Pending', 2222, 0, '2022-08-22 02:11:59', '2025-12-17 19:45:32', NULL, '5512003', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1618, 'Operation Hazy Skies Part 3', '2022-08-28 16:00:00', '2022-08-28 18:00:00', 'Private Ops Server', '#d89332', 'Story Premise:\nWe have encountered a new enemy, The Vipers (No, not the CSAT Vipers; just forgot about them when I was naming them). Our Inside agent has informed of us of an opportunity to strike back at them for the situation in Chernarus. We may be able to get some intel on some of their officers, however that will require us to make contact with one of our insiders posing as a local police officer. The situation is expected to change depending on what intel our "man on the inside" gives us.\n\nAssets:\nDue to the status of "The Vipers" being a Near-Peer Threat, Ranger elements will be given some heavier armament as opposed to the previous operations.\nAnd of course your complementary song:\n\n\n\n', 2222, 0, '2022-08-22 02:36:56', '2025-12-17 19:45:32', NULL, '5512005', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1619, 'Operation Limelight', '2022-08-24 18:00:00', '2022-08-24 20:00:00', 'Private Ops Server', '#d89332', 'Situation:\nThe CIA has caught a wiff of some important men in an Militia group that have been a pain in their side for a while, moving guns and supplies to Insurgent Cells and other Extremist groups all over the Globe. \n3 Officers have been located down to 3 cities in the island of Altis. If we are able to find these men, we can get intel on who they are shuffling their contraband to.\nExecution:\nYour job will be - The 17th Ranger Battalion is to move in to each objective via Helicopter and perform Raids/Air Assaults on the 3 sites and CAPTURE (Not Kill) all the HVTs. Then, after all officers are captured, secure the intel to assure they are not able to smuggle anything else out of country.\n\nYou thought I forgot about you complementary song, did you?\n\n\n\n\nAO Imagery:\nObjective Big Money:\nObjective Fly by Night:\nObjective Working Man:\nObjective YYZ:', 2222, 0, '2022-08-22 16:28:21', '2025-12-17 19:45:32', NULL, '5512862', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1620, 'Master Free Fall', '2022-08-25 16:00:00', '2022-08-25 18:00:00', '17th Private Ops Server', '#FFFFFF', 'Master Free Fall training and Qual. Must have Jump Wings to attend. 1 of 2 trainings required for Pathfinder Qual. Come out and get one step closer to becoming RRC!\n', 2226, 0, '2022-08-22 18:04:31', '2025-12-17 19:45:32', NULL, '5513046', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1621, '[Rescheduled] Sniper Course', '2022-08-23 18:00:00', '2022-08-23 20:00:00', 'Private Ops Server', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/313452', 46, 0, '2022-08-22 22:37:45', '2025-12-17 19:45:32', NULL, '5513531', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1622, 'Rotary Flight Training [CANCELED]', '2022-08-25 14:00:00', '2022-08-25 15:00:00', 'Training Server - Southern Airfield', '#ecb200', '', 27, 1, '2022-08-23 02:35:42', '2025-12-17 19:45:32', NULL, '5513677', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1623, 'Sniper Course', '2022-08-26 15:30:00', '2022-08-26 17:30:00', 'Private Ops Server', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/313452', 46, 0, '2022-08-23 02:36:16', '2025-12-17 19:45:32', NULL, '5513678', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1624, 'Operation Crisis Control', '2022-09-06 18:00:00', '2022-09-06 21:00:00', '17th Private Ops Server', '#FFFFFF', ' \nOperation Crisis Control \n\r\nA insurgent group has taken control of several key locations in Tanoa, without a proper military force, the Tanoan government has asked the US Army to help remove the insurgents from their island.\n\r\n\r\nThere are 4 main objectives in this operation, with 2 additional tasks as well.\n\r\n\r\n#1: Take control of railway station and destroy ammo and supplies being held there \n\r#2: Take control of airfield and destroy all enemy’s vehicles in area \n\r#3: Take control of comms tower \n\r#4: Take control of port and destroy all boats in area\n\r\nWe have also been tasked in capturing the leader of the insurgent group, our intel suggests he has been camped out at the Comms tower. Be advised, the Tanoan government wants him alive and has informed us he will surrender.\n\r\nThere are also reports of 4 missing civilians who work for the government in tanoa, they are suspected to have been kidnapped by the insurgents. We need to find them and rescue them.\n\r\nThe 17th FOB is located on the island of Tuvanaka directly northwest of the Tanoa, there is a SOCOM element stationed on the island with attack boats for us to use if needed, we also have air and motorized assets available as well. \n\r\n\r\n\r\n\r\n', 2228, 0, '2022-08-23 06:47:43', '2025-12-17 19:45:32', NULL, '5513985', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1625, '17th Administrator Meeting', '2022-08-26 16:30:00', '2022-08-26 17:30:00', 'Teamspeak Chow Hall', '#FFFFFF', 'This will be a check-up on all 17th Admins who are able and willing to attend by the lead Admin. Anyone can attend but should keep in mind that this event is NOT meant to be a place to file complaints, questions etc. to Admins and should stay muted unless they are 17th Admins or part of HHC', 21, 0, '2022-08-25 18:35:57', '2025-12-17 19:45:32', NULL, '5519736', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1626, 'DAY IF NO SCHEDUELED ACTIVITY( THE REVOLUTION OP PVPVE)', '2022-09-30 18:45:00', '2022-09-30 20:15:00', '', '#ecb200', 'THE RACCOONITES HAVE REBELLED AGAINST THE KENPIRE.\nA wild pvpve event in Arma to decide the fatw of the heathen me longnose dog', 43, 0, '2022-08-25 22:34:25', '2025-12-17 19:45:32', NULL, '5519981', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1627, 'Pathfinder Bookwork', '2022-09-01 21:30:00', '2022-09-01 23:30:00', 'Training Server - North Airfield', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/a61f5de7-bb08-4ec2-85fb-3450fcbeaa21/docs/910445361', 46, 0, '2022-08-26 02:55:24', '2025-12-17 19:45:32', NULL, '5521552', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1628, 'Basic Training', '2022-08-29 16:00:00', '2022-08-29 18:00:00', 'Chow Hall in TeamSpeak', '#FFFFFF', 'Come learn the ways of the 17th Ranger Battalion!\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/1011266508\nIn this training, Recruits will understand the basic methods and knowledge employed by our Rangers while handling live-fire scenarios.', 795, 0, '2022-08-26 04:20:56', '2025-12-17 19:45:32', NULL, '5522500', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1629, 'Operation Close Call', '2022-09-20 18:00:00', '2022-09-20 21:00:00', '17th Private Ops Sever', '#FFFFFF', 'OPERATION CLOSE CALL:\n(TIME SENSITIVE MISSION, LOTS OF CQB, HOSTAGES , AND LOTS OF ASSETS)\n\r\n\rBRIEFING:\r\nFor the past 10 years a communist party has been slowly retaking\r Everon, recently overthrowing the government and converting the \rIsland into a communist state.\r The 17th Ranger Battalion has been deployed to the island in a combined \roperation with the US Navy, \rThe 17th will be deploying off the USS Freedom and landing at\r a USMC FOB on the southeastern side of the island.\r There is also a small militia attempting to defend the island from the\r communist party, but they are severely outnumbered and outgunned,\r They are making their last stand at the North Airfield,\r Try to complete all prior objectives quickly to stop OPFOR from taking over\r the airfield and killing all the remaining militia.\n\r\nOBJECTIVES:\r\n\r\nASSETS:\nFIXED WING:\r\n\r2x A-10A\r\n\rROTARY:\r\n\r2x UH-60M\r\n\r2x CH-47F\r\n\r2x AH-6M\r\n\rMOTORIZED:\r\n\r2x Humvees w/ M2\r\n\r2x HEMTT (Infantry Transport)\r\n\rARTILLERY\r\n\r4x M252 Mortar\r\n2x M119A2 Howitzer \nINTEL:\n\r', 2228, 0, '2022-08-26 05:52:42', '2025-12-17 19:45:32', NULL, '5522550', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1630, 'Operation Clear Skies', '2022-09-13 18:00:00', '2022-09-13 21:00:00', '17th Private Ops Server', '#FFFFFF', 'BRIEFING\nRussian sympathizing Militias have had almost complete control of Nogova ever since Russia invaded Ukraine, our job is to weaken said Militia by deploying behind enemy lines via paradrop out of a C130J in this nighttime operation to destroy assets and take control of key locations in the region.\nOBJECTIVES\nPARADROP ONTO DROP ZONE WITH C130\nALPHA:\nClear and take control of OPFOR FOB\nBRAVO:\nDestroy OPFOR mechanized and rotary assets in vehicle warehouses\nCHARLIE:\n(ECHO COMPANY) Attack OPFOR controlled airfield with either, rotary, fixed wing or artillery assets\n(APLHA COMPANY) After first 2 objectives are done, clear out remaining OPFOR at airfield.\nASSETS\r\n\rFIXED WING\r\n\rROTARY\r\n\rMOTORIZED\r\n\rARTILLERY\r\nINTEL', 2228, 0, '2022-08-27 05:13:33', '2025-12-17 19:45:32', NULL, '5534683', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1631, 'NCO Meeting', '2022-08-27 17:00:00', '2022-08-27 17:30:00', 'Chow Hall TS', '#FFFFFF', '', 67, 0, '2022-08-27 05:49:59', '2025-12-17 19:45:32', NULL, '5534684', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1632, 'Rotary Wing CAS Qual', '2022-08-31 15:30:00', '2022-08-31 17:00:00', 'Private Ops Server', '#FFFFFF', 'If you sign up but don\'t show your mom\'s a hoe', 1040, 0, '2022-08-27 14:25:46', '2025-12-17 19:45:32', NULL, '5534954', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1633, 'Basic Training ( Time Flexible 11AM EST - 8PM EST)', '2022-09-04 09:00:00', '2022-09-04 18:00:00', '', '#FFFFFF', 'As title indicates, the time is flexible. If nobody signs up and you\'re within the timeframe, just message me and we can discuss. If you want to join, leave a comment with your preferred timeframe and i will try to combine people to hopefully not run more than 2 sessions', 60, 0, '2022-08-28 17:51:12', '2025-12-17 19:45:32', NULL, '5536575', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1634, 'Accelerated Basic Training', '2022-08-29 19:30:00', '2022-08-29 21:30:00', '17th Traning Server', '#FFFFFF', 'Placeholder for 17th Accelerated Basic Training.\n\nMust meet requirements for Accelerated Basic Training within the Code of Conduct. ', 38, 0, '2022-08-29 00:10:13', '2025-12-17 19:45:32', NULL, '5536950', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1635, 'Operation Hobson’s Rift Finale P2', '2022-09-16 18:00:00', '2022-09-16 21:00:00', 'Private Ops Server', '#ecb200', 'OPORD (click the link!): \n\nHey everyone!\nHobson\'s Rift is coming to an end, and Okami and Sherman are excited to present to you the finale of our on-going campaign! It\'s been a journey for both of us and we\'re happy to have delivered on this project for you all. \nThis is Part 2 of our two-day Finale, back to back.\nComplementary song as always: \n\nImmediate Questions:\nNote:\nIf there are anymore questions, please direct them to Sherman and Okami\n', 67, 0, '2022-08-29 11:13:22', '2025-12-17 19:45:32', NULL, '5537735', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1636, 'Operation Hazy Skies Pt 4', '2022-09-04 19:00:00', '2022-09-04 21:00:00', 'Private Ops Server', '#ecb200', 'Operation Hazy Skies Part 4\n\n[Situation Updated 9/3/2022]\nSituation:\n\nIn the past operations we have been tailing the scent of 3 HVTs within the Viper PMC. After Capturing the officers/Retrieving the intel from all of the officers on Southern Sahrani. With this intel we have been able to narrow down the locations of the Viper Bigwigs. But first, we have to kick out the crutches from under the injured orphan\'s arms. We have to take out multiple SCUD Launchers that the Vipers are using to bolster their defense. Success is critical to this operation.\n\n\nEnemy Response:\n\nEnemy heavily fortified, Infantry QRF likely. Enemy air assets may be deployed from the Stratis Airbase. Armor unlikely. \n\n\nOperational Environment:\n\n2100 Local Time\nClear Skies\nLight Fog\nHigh Tides\n\n\nAssets available:\n\n2x UH-60\n1x Mk6 Mortar Team\nAdditional Assets at commands request\n\n\nMore complimentary music\n\n\n\n\n', 2222, 0, '2022-08-29 19:50:10', '2025-12-17 19:45:32', NULL, '5538454', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1637, 'Combat Dive Training', '2022-09-08 18:00:00', '2022-09-08 19:30:00', 'Naval Base Training Server', '#a250e8', '', 918, 0, '2022-08-30 17:15:46', '2025-12-17 19:45:32', NULL, '5539591', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1638, 'Echo Mechanized Training', '2022-09-01 18:30:00', '2022-09-01 20:30:00', 'Training Server', '#d89332', '', 468, 0, '2022-08-30 23:32:37', '2025-12-17 19:45:32', NULL, '5540402', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1639, 'Echo Mechanized Qualification', '2022-09-02 18:00:00', '2022-09-02 20:30:00', 'Training Server', '#a250e8', 'Required to become an Echo Ground NCO.', 468, 0, '2022-08-30 23:33:03', '2025-12-17 19:45:32', NULL, '5540403', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1640, 'Operation Hobson\'s Rift Finale P1', '2022-09-15 18:00:00', '2022-09-15 21:00:00', '', '#FFFFFF', 'OPORD (click the link!): \n\nHey everyone!\nHobson\'s Rift is coming to an end, and Okami and Sherman are excited to present to you the finale of our on-going campaign! It\'s been a journey for both of us and we\'re happy to have delivered on this project for you all. \nThis is Part 1 of our two-day Finale, back to back.\nComplementary song as always: \n\nImmediate Questions:\nNote:\nIf there are anymore questions, please direct them to Sherman and Okami\n', 67, 0, '2022-08-31 03:02:28', '2025-12-17 19:45:32', NULL, '5540859', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1641, 'AIT 3 - MOUT', '2022-09-03 11:00:00', '2022-09-03 14:00:00', 'Training Range', '#a250e8', 'Come learn to walk through the worst parts of your city at night, with friends... carrying guns.', 483, 0, '2022-08-31 21:34:35', '2025-12-17 19:45:32', NULL, '5544226', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1642, 'AIT 4 - CQB', '2022-09-10 11:00:00', '2022-09-10 14:00:00', 'Training Range', '#a250e8', 'Come learn how to move like a ghost through your house, clearing from your basement apartment up to your parents room on the second floor. ooohhhh scary', 483, 0, '2022-08-31 21:36:47', '2025-12-17 19:45:32', NULL, '5544227', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1643, 'Advanced Triage and Mass Cas Training', '2022-09-26 18:00:00', '2022-09-26 20:00:00', 'Training Server- MFH Halladay', '#6cba50', 'A training focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to manage any Mass Cas quickly and efficiently.\nThink of this training as AIT for medical personnel!\n\n', 2223, 0, '2022-09-01 16:50:00', '2025-12-17 19:45:32', NULL, '5545856', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1644, 'CLS 2.0 Training', '2022-09-19 18:00:00', '2022-09-19 21:00:00', 'Training Server- MFH Halladay', '#6cba50', 'Join us for the all-new, revised and reimagined version of Combat Life Saver training! Come learn how a CLS can be so much more than an ammo bearer for the medic! \nFor those who need it, there is a brand new qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training.\n(Note: You will not be required to retake this course to keep your CLS ribbon if you have previously earned one, though it is highly recommended.)\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER THAN THE 7PM-10PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/331625', 2223, 0, '2022-09-01 16:53:45', '2025-12-17 19:45:32', NULL, '5545857', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1645, 'Joint Training', '2022-09-11 18:00:00', '2022-09-11 19:00:00', '', '#FFFFFF', 'lets solve some problems using flesh and steel (or ceramic... or whatever they make armoured vehicles out of these days)\n\nMeet at the training range', 28, 0, '2022-09-01 23:01:49', '2025-12-17 19:45:32', NULL, '5546559', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1646, 'Operation Perun', '2022-09-07 18:00:00', '2022-09-07 21:00:00', 'Chernarus', '#FFFFFF', 'SITUATION:\n\n\nFollowing a surprise attack by an enemy armored and airborne elements, the Northwestern part of Chernarus has come under Russian control. The region has quickly become a staging ground for further strikes into Chernarus and neighboring regions, with large amounts of enemy munitions and materiel being staged out of several ammunition depots. \n\nThe enemy has entrenched itself, establishing several large bases and fortifications in the area, along with massed artillery and counter battery radar. As an enemy offensive is imminent, the 17th Rangers are being sent to neutralize enemy ammunition depots and their primary military base in the region. NATO has not been able to mobilize armored assets for this offensive, so lighter, faster vehicles capable of evading superior enemy firepower have been requisitioned.\n\n\nOBJECTIVES\n:\n\nEnemy ammunition depots to be destroyed are located in the vicinity of OBJ Rusalka, Znich, and Kaduk. Note that owing to limited intelligence the precise location of the ammunition depots at these objectives is unknown, ground units will have to locate them. After acquiring a positive location of the enemy ammunition depot, friendly forces are to relay its position to HIMARS elements for destruction. \nNote that smaller ammunition depots may exist in the AO, and are to be destroyed in the same manner.\n\nOBJ Kikimora is a radio tower that provides communications for enemy forces in the region. Rangers are to capture the tower intact in order to disrupt long range information flow.\n\nOBJ Chort is the final objective in this operation. The target is a large military base, likely storing enemy vehicles and possible intelligence. Friendly forces are to seize, not destroy, this facility, to complete the mission.\n\nEnemy artillery positions and counter battery radars are targets of opportunity and should be neutralized if the opportunity presents itself.\n\n\nENEMY FORCE COMPOSITION:\n\n\nEnemy forces are equipped with large amounts of armor and artillery, supported by a helicopter squadron operating out of the Vybor Airbase. They are committed to holding this region, and are willing to risk their more advanced equipment in order to do so. Expect to see more advanced enemy vehicles in the region, along with VDV elements embedded into the infantry.\n\nEnemy artillery positions are supported by counter battery radar, so expect return fire from any HIMARS launches. Neutralizing enemy counter battery radar will substantially reduce the speed and accuracy of such fire.\n\n\nASSETS AND EQUIPMENT:\n\nVehicles:\n\nx2 M1134 (TOW Stryker)\nx2 M1126 M2\nx1 M142 HIMARS\nx1 UH-1Y (MG)\nx5 M1097A2 (2D)\nx1 MVTR\nx1 M1152A1 RSV\nAuthorized HIMARS munitions:\nM31 (200lbs HE)\nMGM-140B (ATACMS x69 M74 submunitions)\nMGM-168 (ATACMS 500lbs HE)\n\n\nEquipment:\n\nM107\nSPMG\nTitan Compact\nFGM-148 Javelin\nTitan MPRL\nFIM-92F\n\n\n\nGood luck out there fellas', 1040, 0, '2022-09-02 00:02:58', '2025-12-17 19:45:32', NULL, '5546619', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1647, '(Rescheduled) Iceberg spooky op (See link)', '2022-09-18 17:30:00', '2022-09-18 19:30:00', '', '#30a68f', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/WDJ475Xz/channels/76d99607-ec61-437a-886e-c3cba36e0ada/calendar/5548659', 57, 0, '2022-09-02 23:03:37', '2025-12-17 19:45:32', NULL, '5548660', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1648, 'Convoy Operations Training', '2022-09-09 17:00:00', '2022-09-09 18:00:00', '17th Training Server', '#FFFFFF', 'FINALLY, after significant shenanigans, we are looking to get this done and dusted. Thank you all for your patience. \n\nLive fire training will encompass current and expected Convoy SOPs and organization, as well as tactics and training for mounted operations. ', NULL, 0, '2022-09-03 02:40:34', '2025-12-17 19:45:32', NULL, '5548974', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1649, 'NCO Meeting', '2022-09-03 17:00:00', '2022-09-03 17:30:00', '', '#FFFFFF', '', 67, 0, '2022-09-03 09:45:43', '2025-12-17 19:45:32', NULL, '5549346', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1650, 'Echo General Flight Training', '2022-09-04 14:00:00', '2022-09-04 15:00:00', '17th training server', '#ecb200', 'Hello all pilots and pilots to be. In general flight train we\'ll spend some time flying around working on all manner of general skills. In this training will work on communication, multi-ship flight, and landing in hot LZ. Feel free to stop by. This training is open to all members including alpha members and non-pilots.', 729, 0, '2022-09-03 18:24:38', '2025-12-17 19:45:32', NULL, '5549611', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1651, 'Mobile artillery familiarization', '2022-09-06 15:30:00', '2022-09-06 16:30:00', 'Private Ops Server', '#FFFFFF', 'For those interested in coming to the operation on Wednesday and dealing with artillery, this is a two course training. This gets you familiar with the HIMARS system and the missiles we\'ll be using, and also gets you used to dealing with enemy artillery shooting back. ', 1040, 0, '2022-09-04 13:58:38', '2025-12-17 19:45:32', NULL, '5551425', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1652, 'NCO Meeting', '2022-09-10 17:00:00', '2022-09-10 18:00:00', '', '#FFFFFF', '', 67, 0, '2022-09-05 01:37:40', '2025-12-17 19:45:32', NULL, '5552671', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1653, 'Land Navigation', '2022-09-22 18:30:00', '2022-09-22 21:30:00', '', '#FFFFFF', '', 38, 0, '2022-09-05 17:29:07', '2025-12-17 19:45:32', NULL, '5554400', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1654, 'Basic Training', '2022-09-11 11:00:00', '2022-09-11 14:00:00', '', '#a250e8', 'Basic training. Please attempt to be in the ready room 5 minutes before the training starts.', 524, 0, '2022-09-05 18:07:52', '2025-12-17 19:45:32', NULL, '5554471', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1655, '[RESCHEDULED] Basic Training', '2022-09-26 15:30:00', '2022-09-26 17:30:00', 'Chow Hall in TeamSpeak (load into Training Grounds)', '#FFFFFF', 'Learn the standard unit information and see what you need to know to be proficient in the 17th Ranger Battalion.\nThis is required for all Recruits to complete!\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/3d83127f-7f88-450a-934f-df7d4ade1e35/docs/1011266508', 795, 0, '2022-09-05 18:15:30', '2025-12-17 19:45:32', NULL, '5554482', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1656, 'Basic Training', '2022-09-05 13:00:00', '2022-09-05 15:30:00', '', '#ecb200', '', 15, 0, '2022-09-05 21:24:03', '2025-12-17 19:45:32', NULL, '5554729', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1657, '[Cancelled] Echo Training Day', '2022-09-05 18:00:00', '2022-09-05 20:00:00', '', '#FFFFFF', '', 53, 1, '2022-09-05 22:45:42', '2025-12-17 19:45:32', NULL, '5554738', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1658, 'SERVER PERFORMANCE VALIDTAION', '2022-09-08 19:30:00', '2022-09-08 20:30:00', '', '#FFFFFF', 'JOIN READY ROOM ASAP at TIME STATED.... WE WILL CEARLY OUTLINE WHAT IS NEEDED.. THEN ONCE YOU GUYS UNDERSTAND WE WILL GO HAM to test some things\nHere is the fun part, we won\'t need to be team structure we won\'t need to have communication efficiently, we just need people to join the server and create a chaotic fire fight for 30 min.\nWe Need 35 Minimum for this to work.\n', 38, 0, '2022-09-06 03:58:40', '2025-12-17 19:45:32', NULL, '5555245', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1659, 'Operation Double Negative PT. 2', '2022-09-23 18:30:00', '2022-09-23 20:30:00', 'Arma 3', '#FFFFFF', 'Part 2 of ODN. \nShould be fun, just remember to bring some gas masks and mine clearing equipment!', 1023, 0, '2022-09-07 08:47:11', '2025-12-17 19:45:32', NULL, '5557747', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1660, '[Rescheduled]Operation Perun Finale', '2022-09-09 18:00:00', '2022-09-09 19:00:00', 'Private Ops Server', '#FFFFFF', 'Gonna find a day when people can show and the server cooperates', 1040, 0, '2022-09-08 02:43:52', '2025-12-17 19:45:32', NULL, '5558979', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1661, 'RTO Training/Bookwork', '2022-09-09 18:00:00', '2022-09-09 20:15:00', 'Training Server', '#a250e8', 'Training and Bookwork to become a Radio Telephone Operator. A separate qualification will have to be held at a later date depending on general attendance.', 468, 0, '2022-09-09 00:17:53', '2025-12-17 19:45:32', NULL, '5560254', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1662, 'Operation Shadow Run', '2022-09-21 18:00:00', '2022-09-21 20:30:00', '17th Private Ops Server', '#FFFFFF', '\nOPERATION SHADOW RUN\r\nIsla Duala, Once a member of NATO, recently went through a revolution led by General Umar Hussein. After the coup ended General Hussein seized control of the island nation and instituted a new Islamic state.\r\nThree weeks ago on orders from Hussein, a group of terrorist from the island going by the name of the Duala Brotherhood, carried out a biological attack in Paris at the Saint-Alexandre Cathedral. The Biological agent used has never been seen before.\r\nYou are tasked in Capturing General Hussein. The last known location of the General is the Military installation near Aeroporto Molatia Intl.\r\nThe General will be well guarded and will not be taken without a fight. A second HVT may be with him, Major Hasan Ali Khalid\r\nThe Island is very well equipped with Anti-Air Radar and launcher installations, so you will deploy via High altitude low open paradrop (HALO) near an abandoned airfield on the eastern shoreline. Vehicles (Hilux) have been secured by friendly assets on the island that want Hussein gone. \r\nWhile deployed to the Island make sure you perform SSE at all locations. We need as much intel on this new bio-attack as possible. \n\r\n\r\nGeneral Umar Hussein \nMajor Hasan Ali Khalid', 2227, 0, '2022-09-09 00:24:45', '2025-12-17 19:45:32', NULL, '5560255', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1663, '17th Administrator Meeting', '2022-09-10 16:00:00', '2022-09-10 17:00:00', 'Teamspeak', '#FFFFFF', 'This will be a check-up on all 17th Admins who are able and willing to attend by the lead Admin. Anyone can attend but should keep in mind that this event is NOT meant to be a place to file complaints, questions etc. to Admins and should stay muted unless they are 17th Admins or part of HHC', 21, 0, '2022-09-10 13:22:51', '2025-12-17 19:45:32', NULL, '5562345', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1664, 'Operation Zero-Dark30', '2022-09-11 14:00:00', '2022-09-11 15:00:00', '17th Private Ops Server', '#FFFFFF', 'This will be a 3 part mission\n', 2227, 0, '2022-09-10 16:46:56', '2025-12-17 19:45:32', NULL, '5562906', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1665, 'AJ\'s Script Test Drive', '2022-09-12 20:00:00', '2022-09-12 21:00:00', 'Ops Server', '#FFFFFF', 'If you wanna come play with some CBRN things, and maybe a few other things, pull up. I promise I\'ll let you shoot some people.', 28, 0, '2022-09-10 21:03:57', '2025-12-17 19:45:32', NULL, '5563133', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1666, 'Operation Broken Trust', '2022-09-27 18:00:00', '2022-09-27 21:00:00', '17th Private Ops Server', '#FFFFFF', 'TL;DR Brief : Reports of war crimes, human rights violations, and even genocide prompted an international investigation into Takistani military action. UN officials arriving in the country quickly found themselves under assault by local militias and sought refuge among one of the few embassies remaining. After a few days of the embassy under siege by large groups of militia, a UH-60 was flown in to evac key personnel. Believing it was evacuating the UN observers, the UH-60 was attacked and shot down and the embassy overrun and the inhabitants murdered on live TV. Now the US leads a coalition to remove the Takistani government and avenge its slain citizens.', 827, 0, '2022-09-11 02:53:32', '2025-12-17 19:45:32', NULL, '5563208', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1667, 'Battalion Training FTX', '2022-09-24 18:00:00', '2022-09-24 21:00:00', '', '#df5353', 'Details TBD\n\nCHECK ANNOUNCMENT \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/06d0c762-6a54-4657-9ed0-9d73763fcd1e/announcements/4lGPEDP6', 46, 0, '2022-09-11 06:26:01', '2025-12-17 19:45:32', NULL, '5563221', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1668, 'RASP', '2022-10-01 18:00:00', '2022-10-01 21:00:00', 'Private Operation Server, Tanoa', '#df5353', 'Edit by Toast:\n\nRASP hosted by Toast.\n\nNOTE: Map will be Tanoa from the APEX DLC (Released JUL 2016)\nThe policy of the 17th Ranger Battalion is that we do not require anyone to purchase anything more than the base game. Even though we do not require anyone to purchase any DLC\'s or expansion packs we do allow the use of DLC\'s.\n\nAny DLC that is released by the official game publisher may not be used for the 2 months after the release. Once a 2 Month grace period has passed, those DLC\'s may be used by any mission maker in any official capacity.', 46, 0, '2022-09-11 06:26:33', '2025-12-17 19:45:32', NULL, '5563222', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1669, 'Basic Training', '2022-09-16 13:00:00', '2022-09-16 15:30:00', '', '#FFFFFF', '', 15, 0, '2022-09-12 02:06:47', '2025-12-17 19:45:32', NULL, '5564033', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1670, 'How to Zeus 101: Basics', '2022-09-18 16:00:00', '2022-09-18 18:00:00', 'High Bit Rate Gaming', '#FFFFFF', '', 67, 0, '2022-09-14 20:58:37', '2025-12-17 19:45:32', NULL, '5575076', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1671, '1-on-1 Rotary Flight Training', '2022-09-16 14:30:00', '2022-09-16 16:00:00', 'Training Server', '#ecb200', 'Individualized, 1-on-1 flight training regarding anything and everything rotary. Whether it’s how to get the bird on the ground or advanced maneuvers, I’ll offer you individualized help during this time. Slots for 3 people, with most likely a sit-down discussion of what you wanna work on, along with a time period for you to practice. First come, first serve. Hope to see you there!', 45, 0, '2022-09-15 19:07:31', '2025-12-17 19:45:32', NULL, '5585041', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1672, 'NCO Meeting', '2022-09-17 17:00:00', '2022-09-17 18:00:00', '', '#FFFFFF', '', 67, 0, '2022-09-17 07:52:14', '2025-12-17 19:45:32', NULL, '5586237', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1673, 'The Search for the Source (Blaze\'s Spooky op)', '2022-09-29 17:30:00', '2022-09-29 19:30:00', 'Iceberg', '#FFFFFF', 'MAKE SURE YOU SIGN UP ON THE ICEBERG CALENDER VIA LINK!\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/WDJ475Xz/channels/76d99607-ec61-437a-886e-c3cba36e0ada/calendar/5592457', 57, 0, '2022-09-18 16:20:08', '2025-12-17 19:45:32', NULL, '5592454', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1674, 'Demolitions Training', '2022-10-02 08:00:00', '2022-10-02 09:00:00', '', '#d89332', 'We shall be going over how we blow shit up, respectfully.', 951, 0, '2022-09-18 17:33:45', '2025-12-17 19:45:32', NULL, '5593112', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1675, 'Impromptu Basic Training', '2022-09-18 17:00:00', '2022-09-18 19:00:00', 'Chow Hall in TS -> Training Server -> Training Grounds', '#FFFFFF', 'Basic Training posted by specail appointment, anyone free to join\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 795, 0, '2022-09-18 18:12:10', '2025-12-17 19:45:32', NULL, '5593342', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1676, 'Basic Training', '2022-09-22 16:00:00', '2022-09-22 18:00:00', 'Training Server', '#FFFFFF', 'If you can, try to meet 15 minutes ahead of time in Ready Room in TS.', 2222, 0, '2022-09-19 20:41:01', '2025-12-17 19:45:32', NULL, '5596181', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1677, 'Operation Hornets Nest PT. 1', '2022-09-25 18:00:00', '2022-09-25 21:00:00', '17th Operations Server', '#FFFFFF', 'Operation created by \n and \n\n\nMasud Ali Hamed, a failed Afghan rapper turned ISIS IED maker. After Masud\'s last album sold a total of 3 copies... 2 from his parents and 1 he bought himself, Masud decided that if Americans didn\'t like his music they should all die.\r\nYour mission is to convoy to his location (his parents house) and take him out. \r\n\r\n \n\n\n', 2227, 0, '2022-09-21 05:47:49', '2025-12-17 19:45:32', NULL, '5600604', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1678, 'Rotary Logi Qual', '2022-09-23 16:30:00', '2022-09-23 18:00:00', 'Training Server, Northern Airfield', '#ecb200', 'Get qual’d to do funny logistics in a funny rotary bird! I can only micromanage and multitask so much, so 3 slots. Priority to Echo members. Hope to see you there!', 45, 0, '2022-09-21 11:07:24', '2025-12-17 19:45:32', NULL, '5600731', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1679, 'Operation Title Defense', '2022-10-04 18:00:00', '2022-10-04 21:00:00', '17th Private OP Server', '#FFFFFF', 'After weeks of growing tension, forces build-up, and lobbied threats, Sahrani has broken out into all out civil war with Southern Sahrani taking up arms against the north in a stunning display of aggression and ferocity. Quickly losing the border, the SAF now faces the prospect of defending their capital city with precious few reserves. Into this madness, the US quickly deploys a Ranger battalion to help staunch the flow of losses until more units can arrive.', 827, 0, '2022-09-21 17:01:18', '2025-12-17 19:45:32', NULL, '5601099', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1680, 'Rotary Close Air Support Qualification', '2022-09-27 18:30:00', '2022-09-27 20:00:00', 'Training Server', '#ecb200', 'Rotary CAS qualification.', 468, 0, '2022-09-21 20:34:47', '2025-12-17 19:45:32', NULL, '5601577', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1681, 'mission testing', '2022-09-21 21:00:00', '2022-09-21 22:00:00', '17th Private Ops Server', '#FFFFFF', '', 2227, 0, '2022-09-22 01:48:28', '2025-12-17 19:45:32', NULL, '5601654', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1682, 'NCO Meeting', '2022-09-24 17:00:00', '2022-09-24 18:00:00', 'Chow Hall', '#FFFFFF', '', 67, 0, '2022-09-24 21:17:26', '2025-12-17 19:45:32', NULL, '5605317', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1683, 'Mission testing', '2022-09-25 09:30:00', '2022-09-25 10:30:00', '17th Private Ops Server', '#FFFFFF', 'testing mission ', 2227, 0, '2022-09-25 00:57:18', '2025-12-17 19:45:32', NULL, '5605468', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1684, 'Operation Injustice', '2022-10-11 18:00:00', '2022-10-11 21:00:00', '17th Private Ops', '#ecb200', 'IN DEPTH BRIEFING AND PHOTOS COMING SOON!\n(Copy n paste description from message rn)\nWorking on a mission in chernarus based kinda on the Ukraine situation \nPretty much the Russians dropped a small nuke on a small town in Ukraine to try to scare them into giving up so the US deploys us to chernarus off the USS Freedom to help the CDF (independent group friendly to blufor) there’s a radioactive zone w radiation scripts n stuff where we need gas masks to go in and retrieve the body of an American in the town that was Nuked, also other objectives such as hostage rescue, HVT capture , destroying AA , taking control of a large town w close quarters combat, also there’s a independent faction (CDF) fighting Russia on the front lines while we go behind and do the major operations , so after capturing the HVT we have to fly him to the wartime prison center I created in a small island off chernarus\nLast objective is Taking control of a road leading out north of chernarus where Russia sends supply’s in and out , we exfil after the supply depots and station are cleared out and the independent faction comes in and garrisons the supply outpost \n\n-Radioactive Zones\n-Minefields\n-Roadblocks\n-Mortars + Artillery\n-Civilians\n-HVT Capture\n-Close Quarters Combat\n-Convoys\n-Capturing cities behind enemy lines\n-Destorying AA and other assets\n-Fly HVT to prison island\n-Use Gas masks to retrieve dead american from nuked zones\n-INDFOR + BLUFOR vs OPFOR', 2228, 0, '2022-09-25 02:48:54', '2025-12-17 19:45:32', NULL, '5605544', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1685, 'No 17th Events [ ICEBERG BLOCK]', '2022-10-02 11:00:00', '2022-10-02 23:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605547', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1686, 'No 17th Events [ ICEBERG BLOCK]', '2022-10-09 11:00:00', '2022-10-09 23:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605548', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1687, 'No 17th Events [ ICEBERG BLOCK]', '2022-10-16 11:00:00', '2022-10-16 23:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605549', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1688, 'No 17th Events [ ICEBERG BLOCK]', '2022-10-23 11:00:00', '2022-10-23 23:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605550', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1689, 'No 17th Events [ ICEBERG BLOCK]', '2022-11-13 12:00:00', '2022-11-14 00:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605551', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1690, 'No 17th Events [ ICEBERG BLOCK]', '2022-11-20 12:00:00', '2022-11-21 00:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605553', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1691, 'No 17th Events [ ICEBERG BLOCK]', '2022-11-27 12:00:00', '2022-11-28 00:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605554', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1692, 'No 17th Events [ ICEBERG BLOCK]', '2022-12-11 12:00:00', '2022-12-12 00:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605555', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1693, 'No 17th Events [ ICEBERG BLOCK]', '2022-11-06 12:00:00', '2022-11-07 00:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605556', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1694, 'No 17th Events [ ICEBERG BLOCK]', '2022-12-04 12:00:00', '2022-12-05 00:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605557', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1695, 'No 17th Events [ ICEBERG BLOCK]', '2022-12-18 12:00:00', '2022-12-19 00:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605558', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1696, 'No 17th Events [ ICEBERG BLOCK]', '2022-12-25 12:00:00', '2022-12-26 00:00:00', '', '#FFFFFF', 'This is a block for all ICEBERG Events, 17th Server will yield to the Iceberg Gaming Server and they get Priority.', 38, 0, '2022-09-25 03:26:36', '2025-12-17 19:45:32', NULL, '5605559', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1697, 'Basic Training (flex schedule)', '2022-10-01 09:00:00', '2022-10-01 15:45:00', 'Training Server', '#FFFFFF', 'Running a flexible schedule basic course.\nIf you\'re signing up for this before the listed time: please put a comment here for when in the day you would like the basic to be run. \nIf you\'re signing up for this whilst the timeframe is occurring: just \n me in the training chat in discord and we will work on when to run the basic. \n\nLooking to run a max of 2 sessions in this time block, so letting me know if/when you\'d like to attend ASAP would be great.', 60, 1, '2022-09-25 03:27:21', '2025-12-17 19:45:32', NULL, '5605560', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1698, 'Basic Training', '2022-09-28 15:45:00', '2022-09-28 17:45:00', 'Chow Hall in TeamSpeak -> Training Server -> Training Grounds', '#FFFFFF', 'Become a proficient member (or prove your proficiency) in the 17th!\nLearn how our tactics and basic info differs from other groups and be able to operate at standard roles in a live-fire setting.\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 795, 0, '2022-09-26 02:07:23', '2025-12-17 19:45:32', NULL, '5606366', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1699, '[Canceled] 17th Liberation Ops', '2022-10-07 18:30:00', '2022-10-07 21:00:00', '', '#ecb200', 'Something im looking into get going here in 17th a Liberation Campaign seperate from the Saturday joints.\nI dont know. \ninput?\n\n\nDUE TO SERVER ROLLING BACK AND SAVE ISSUES LIBERATION OPS SERVER IS BEIGN SWAPPED OUT AFTER COMMAND MEETING', 43, 1, '2022-09-26 12:14:05', '2025-12-17 19:45:32', NULL, '5606737', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1700, 'Basic Training', '2022-10-01 14:00:00', '2022-10-01 17:45:00', 'Training Server', '#FFFFFF', ' Basic takes about 2 hours, but ive provided almost 4 here in order to support peoples schedules. If you would like to attend just drop a message in here of what times you would like. I will try to merge the times into a session.', 60, 0, '2022-09-26 14:59:20', '2025-12-17 19:45:32', NULL, '5606814', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1701, 'Fixed Wing CAS Qualification', '2022-09-29 15:30:00', '2022-09-29 17:00:00', 'Private Ops Server', '#FFFFFF', 'Flap your arms really hard and make jet engine noises, you\'ll do great', 1040, 0, '2022-09-26 21:33:52', '2025-12-17 19:45:32', NULL, '5607857', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1702, '17th Command Meeting', '2022-10-10 16:00:00', '2022-10-10 18:00:00', 'TeamSpeak', '#355bf8', 'Bring something to discuss or questions to ask.\n\nAnyone can attend and listen but if you are not HHC or a CO/XO we ask that you keep your microphone muted unless specifically called upon. There will be an opportunity for you to give your input at the end.', 46, 0, '2022-09-27 22:59:54', '2025-12-17 19:45:32', NULL, '5609173', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1703, 'F/A-18 Ordinance Training', '2022-10-05 18:00:00', '2022-10-05 20:00:00', 'Training server', '#FFFFFF', 'We will be taking a look at the F/A-18 on this training. Basics of fixed wing will not be covered here so I expect attendees to have some knowledge or experience in fixed wing. This training will cover keybindings, CAS, CAP and SEAD in detail. ', 2224, 0, '2022-09-27 23:13:51', '2025-12-17 19:45:32', NULL, '5609176', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1704, 'AJ\'s Script Test Drive 2: Electric Boogaloo', '2022-10-06 20:30:00', '2022-10-06 21:30:00', 'Private Ops', '#FFFFFF', 'Testing some fixes to the CBRN script, potentially the counter battery script as well, and maybe more on the incognito script depending on how busy I am.', 28, 0, '2022-09-28 13:16:28', '2025-12-17 19:45:32', NULL, '5610508', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1705, 'IDF Training', '2022-10-03 16:00:00', '2022-10-03 18:00:00', '', '#ecb200', '', 15, 0, '2022-09-29 21:10:39', '2025-12-17 19:45:32', NULL, '5612209', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1706, 'Server Updates', '2022-09-30 11:00:00', '2022-09-30 12:00:00', '', '#FFFFFF', '17th Modpack and Server Updates', 38, 0, '2022-09-30 15:35:54', '2025-12-17 19:45:32', NULL, '5612840', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1707, '[Cancelled] Jaeger Op Placeholder', '2022-10-14 18:00:00', '2022-10-14 21:00:00', 'private ops ', '#ecb200', 'More info coming soon ™️', 2224, 1, '2022-09-30 21:06:45', '2025-12-17 19:45:32', NULL, '5613104', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1708, 'Operation Black Sun', '2022-10-05 18:00:00', '2022-10-05 20:00:00', '', '#a250e8', 'Alternate history: Ukraine is part of NATO. Time to fulfill article 5.\nRussia has attacked the eastern part of Ukraine (Chernarus). Our task is to spearhead into the northern part of the country to destroy a Russian artillery position, liberate a town, and capture an airport.\n', 57, 0, '2022-10-01 13:16:38', '2025-12-17 19:45:32', NULL, '5617648', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1709, '[CANCELLED] Iceberg - Operation Olympic Recovery', '2022-10-24 18:00:00', '2022-10-24 20:30:00', 'Iceburg Server', '#FFFFFF', 'As sad as I am to do so, this operation is cancelled due to real world obligations. May revisit it in the future, but not definite on that as of yet. My apologies to anyone who wanted to go.', 827, 1, '2022-10-01 21:50:39', '2025-12-17 19:45:32', NULL, '5619533', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1710, 'Heli Hell', '2022-10-04 15:30:00', '2022-10-04 16:30:00', 'Training Server, North Airbase', '#FFFFFF', 'Practice flying helicopters while I make your life hell. Crash course in dealing with shitty situations.', 1040, 0, '2022-10-02 18:10:02', '2025-12-17 19:45:32', NULL, '5621822', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1711, 'AIT 1 - Fire Team Positions', '2022-10-06 18:00:00', '2022-10-06 20:00:00', 'Training Range', '#a250e8', 'AIT 1 \nWe will discuss fireteam positions to include Anti Tank, Automatic Rifleman, Grenadier, and other such prestigious jobs. \nIn addition, movement drills, rockets, vs tanks, vs rpgs, vs mortars, and why they sound different. \nWe will also include picking good CCP locations and whats makes some of them bad.', 483, 0, '2022-10-02 19:00:07', '2025-12-17 19:45:32', NULL, '5621883', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1712, 'AIT 2 - Battle Drills and more', '2022-10-13 18:00:00', '2022-10-13 20:00:00', 'Training Range', '#a250e8', 'Bounding, Peeling, Breaking contact, fire suppression. Also battle drill 1 and 2.', 483, 0, '2022-10-02 19:03:20', '2025-12-17 19:45:32', NULL, '5622073', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1713, 'AIT 3 - MOUT', '2022-10-20 18:00:00', '2022-10-20 20:00:00', 'Training Grounds', '#a250e8', 'We will practice moving through urban environments when people don\'t want you there. After what you learn here, you and your friends won\'t be scared of Detroit at 2 am anymore.', 483, 0, '2022-10-02 19:05:17', '2025-12-17 19:45:32', NULL, '5622108', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1714, 'AIT 4 - CQB', '2022-10-27 18:00:00', '2022-10-27 20:00:00', 'Training Grounds', '#a250e8', 'Learn to clear buildings and compounds.... somewhat safely.', 483, 0, '2022-10-02 19:08:25', '2025-12-17 19:45:32', NULL, '5622347', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1715, '[Cancelled] FTX Placeholder', '2022-10-10 18:00:00', '2022-10-10 20:00:00', 'Training Server', '#FFFFFF', 'DISREGARD THIS AINT HAPPENING HERE ANYMORE', 28, 1, '2022-10-02 19:35:28', '2025-12-17 19:45:32', NULL, '5622411', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1716, 'JTAC Bookwork / Practice', '2022-10-12 18:00:00', '2022-10-12 20:00:00', 'Training Server, North Airbase', '#FFFFFF', 'We gonna learn how to communicate efficiently and effectively with our brothers in the air. \n\nQualification will happen at a later date. \nWe will be going over the document provided, as well as some practice in server.\n\n', 501, 0, '2022-10-02 20:25:56', '2025-12-17 19:45:32', NULL, '5622429', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1717, 'Operation Restoring Hope', '2022-10-21 18:00:00', '2022-10-21 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: The Russians have moved into Chernarus, captured the main airfield, and set up defenses. They do not intend to move. So we must make them.\nSERVER\n: Private Ops\nMAP\n: Chernarus\nADITIONAL MODS REQUIRED\n: \nN/A', 15, 0, '2022-10-02 22:57:57', '2025-12-17 19:45:32', NULL, '5622842', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1718, 'Operation Title Defense Phase 2', '2022-10-18 18:00:00', '2022-10-18 21:00:00', '17th Private Ops', '#FFFFFF', 'Event Details \n: Despite suffering defeat at the hands of the rebels, the defense of the capital was not entirely in vain. Now facing down an ever growing horde of revolutionaries, the Rangers and their Sahrani counterparts must hold the line long enough to allow for both the evacuation of the Sahrani government and the deployment of additional NATO troops. If they can hold out, the tide may very well turn in their favor.\n\n\nServer\n : 17th Rangers Private Ops server\n\n\nMap\n : Sahrani\nAdditional Mods\n : N/A', 827, 0, '2022-10-05 01:07:44', '2025-12-17 19:45:32', NULL, '5630907', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1719, 'THE END GAME: A TYRONE SAGA - Part 1', '2022-10-08 18:00:00', '2022-10-08 21:00:00', '', '#df5353', '', 46, 0, '2022-10-05 03:06:52', '2025-12-17 19:45:32', NULL, '5630958', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1720, 'THE END GAME: A TYRONE SAGA - Part 2', '2022-10-15 18:00:00', '2022-10-15 21:00:00', '', '#df5353', '', 46, 0, '2022-10-05 03:07:31', '2025-12-17 19:45:32', NULL, '5630959', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1721, 'THE END GAME: A TYRONE SAGA - Part 3', '2022-10-22 18:00:00', '2022-10-22 21:00:00', '', '#df5353', '', 46, 0, '2022-10-05 03:07:48', '2025-12-17 19:45:32', NULL, '5630960', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1722, 'THE END GAME: A TYRONE SAGA - Part 4', '2022-10-29 18:00:00', '2022-10-29 21:00:00', '', '#df5353', '', 46, 0, '2022-10-05 03:08:12', '2025-12-17 19:45:32', NULL, '5630961', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1723, 'RASP', '2022-11-05 18:00:00', '2022-11-05 21:00:00', '', '#df5353', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/08ca311e-66fb-45ce-bbbf-c4b34dc69e4a/docs/245238', 46, 0, '2022-10-05 03:09:48', '2025-12-17 19:45:32', NULL, '5630962', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1724, 'THE END GAME: A TYRONE SAGA - Part 5', '2022-11-12 19:00:00', '2022-11-12 22:00:00', '', '#df5353', '', 46, 0, '2022-10-05 03:13:27', '2025-12-17 19:45:32', NULL, '5630966', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1725, 'THE END GAME: A TYRONE SAGA - Part 6', '2022-11-19 19:00:00', '2022-11-19 22:00:00', '', '#df5353', '', 46, 0, '2022-10-05 03:14:25', '2025-12-17 19:45:32', NULL, '5630967', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1726, 'THE END GAME: A TYRONE SAGA - Part 7', '2022-11-26 19:00:00', '2022-11-26 22:00:00', '', '#df5353', '', 46, 0, '2022-10-05 03:15:15', '2025-12-17 19:45:32', NULL, '5630968', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1727, 'THE END GAME: A TYRONE SAGA - Part 8', '2022-12-03 19:00:00', '2022-12-03 22:00:00', '', '#df5353', '', 46, 0, '2022-10-05 03:15:57', '2025-12-17 19:45:32', NULL, '5630969', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1728, 'Community Round Table', '2022-12-11 15:30:00', '2022-12-11 17:00:00', '', '#df5353', 'Do NOT post talking points in here. Post them in the Bulletin Board post.\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/31a767aa-f57a-45e5-8929-d25183bce25e/forums/105488625', 46, 0, '2022-10-05 03:18:34', '2025-12-17 19:45:32', NULL, '5630970', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1729, 'NO OFFICIAL EVENTS FOR HOLIDAY BREAK', '2022-12-12 00:00:00', '2023-01-03 00:00:00', '', '#df5353', 'NO OFFICAL EVENTS DURING THIS TIME BLOCK', 46, 0, '2022-10-05 03:24:57', '2025-12-17 19:45:32', NULL, '5630971', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1730, 'Basic training', '2022-10-10 16:30:00', '2022-10-10 18:00:00', 'training server', '#ecb200', '', 933, 0, '2022-10-06 15:58:42', '2025-12-17 19:45:32', NULL, '5634666', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1731, 'Basic Training', '2022-10-07 18:00:00', '2022-10-07 20:30:00', 'Training Server', '#a250e8', 'Basic Training hosted by Bones.', 468, 0, '2022-10-07 00:46:57', '2025-12-17 19:45:32', NULL, '5635226', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1732, 'Operation Obscura', '2022-10-07 18:00:00', '2022-10-07 20:30:00', '17th OP server', '#FFFFFF', 'The tree of liberty must be refreshed from time to time with the blood of patriots and tyrants.\n\nmore info TBD', 2227, 0, '2022-10-07 14:41:06', '2025-12-17 19:45:32', NULL, '5635406', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1733, 'Heli Hell', '2022-10-11 15:30:00', '2022-10-11 16:30:00', 'Training Server, North Airbase', '#FFFFFF', 'Nice, casual, relaxed practice for flying helicopters. I definitely won\'t cut your engine without warning or shoot at you with AA missiles.', 1040, 0, '2022-10-07 14:54:39', '2025-12-17 19:45:32', NULL, '5635411', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1734, 'Blaze\'s spooky op (ICEBERG', '2022-10-17 17:00:00', '2022-10-17 19:00:00', '', '#FFFFFF', 'Sign up on the Iceberg calendar event please', 57, 0, '2022-10-07 19:13:46', '2025-12-17 19:45:32', NULL, '5635567', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1735, 'NCO Meeting', '2022-10-08 17:00:00', '2022-10-08 17:30:00', 'Chow Hall TS', '#FFFFFF', '', 67, 0, '2022-10-08 16:58:13', '2025-12-17 19:45:32', NULL, '5637484', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1736, '[Cancelled] Raccoon Op Placeholder', '2022-11-02 18:00:00', '2022-11-02 20:00:00', '', '#FFFFFF', 'Hard Drive is kaput, unable to make this mission.', 2222, 1, '2022-10-09 00:07:06', '2025-12-17 19:45:32', NULL, '5638456', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1737, 'Operation Bleeding Giant', '2022-11-30 19:00:00', '2022-11-30 21:00:00', 'Private Ops Server', '#d89332', 'Objective:\n \nOn the island of Isla Duala, a temporary ceasefire has been drawn between Local Army Forces and Local Militia. The 17th Ranger Battalion is to Infil into the area and help the evacuation of any non-combatants, wounded will take priority. Both sides are no to be considered hostile, and should not be fired unless given permission from upper command. IDAP is also on standby to assist with the evacuation. Tensions grow higher between the two opposing sides, so time is of the essence.\nROE:\nDo not fire unless fired upon, and if word to fire is given by command.\nAssets:\nAny Non-Armed Asset at the disposal of NATO forces is available for use at discretion of Mission Maker. If Assets are not decided by 15 after, I will decide for you.', 2222, 0, '2022-10-09 00:07:40', '2025-12-17 19:45:32', NULL, '5638457', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1738, 'Operation Devil\'s Triton', '2022-10-26 18:00:00', '2022-10-26 21:00:00', '17th Ops server', '#ecb200', 'Operation Devil\'s Triton\nLocation - Lythium (Former USA ally) During Insurgent Coup\nAir Assets\n\n\n', 2227, 0, '2022-10-09 02:38:34', '2025-12-17 19:45:32', NULL, '5638765', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1739, 'Ranger Training', '2022-10-28 18:00:00', '2022-10-28 20:00:00', 'Training Server', '#6cba50', 'Best way to get good is identify what needs to improve, practice, do reps, talk about what went good, then repeat. Let\'s get it done ', 468, 0, '2022-10-09 18:26:33', '2025-12-17 19:45:32', NULL, '5640097', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1740, 'Operation Guardian Angel', '2022-10-19 18:00:00', '2022-10-19 21:00:00', '17th Private Ops Server', '#d89332', '2 years have passed since the Yiona Event collapsed global electric infrastructure. Following the contested election of Russian President Pankiv Vasiliy, many nations that previously found themselves under Russian control have held elections to declare independence. One such is the island of Nogova which found itself annexed by Russia in 2025. Following the declaration of independence, a Russian funded coup took place, removing the newly elected government and installing another Russian puppet and allowing Russian Forces to enter the country uncontested. Following the sinking of a number of neutral vessels near the island, NATO has voted that this constitutes a declaration of Article 5 and has mobilized to free Nogova and remove Russian influence.', 827, 0, '2022-10-09 21:06:36', '2025-12-17 19:45:32', NULL, '5640843', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1741, 'Accelerated Basic (After CMD Meeting)', '2022-10-10 18:00:00', '2022-10-10 20:00:00', '', '#FFFFFF', 'This will be an accelerated basic training for anyone who qualifies based on 17th Guidlines\nReturning Members / 500+ Hours / Previous Milsim Expirence.', 38, 0, '2022-10-09 23:33:56', '2025-12-17 19:45:32', NULL, '5641132', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1742, 'Basic training', '2022-10-20 18:00:00', '2022-10-20 21:00:00', 'training server ', '#ecb200', '', 280, 0, '2022-10-10 00:08:44', '2025-12-17 19:45:32', NULL, '5641245', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1743, 'Operation Mandate', '2022-10-12 18:00:00', '2022-10-12 21:00:00', 'Tanoa, Private Ops Server', '#FFFFFF', 'As part of the illegal occupation of Georgetown in response to recent "provocations" by the Tanoan government, PLA forces have been stationed in Georgetown and are in the process of being reinforced with more sophisticated units. In charge of this affair is a PLA Viper commander, codenamed Lu Bu.\n\nOfficially, only a small peacekeeping and police force has been sent to Georgetown. For political leverage against the Chinese government and at the request of the Tanoan government, the 17th is being dispatched to the island to achieve several objectives:\n1 - The elimination of Lu Bu. His body must be recovered intact and returned to base in a bodybag.\n2 - Destruction of PLAN AShM batteries. These pose a serious threat to allied ships and local trade. Intelligence indicates four of them travelling through the city, all of which must be destroyed.\nFriendly assets include:\n1 CH-47 Cargo\n2 Wiesel Mk2 20mm\n2 UH-60 ESS\nHMG Speedboats', 1040, 0, '2022-10-10 11:21:32', '2025-12-17 19:45:32', NULL, '5641521', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1744, 'Operation Golden Rise', '2022-11-23 19:00:00', '2022-11-23 22:00:00', 'North Takistan', '#ecb200', 'July 13, 2006\nWith the current war in the Middle East against terrorism multiple factions are coming to rise against the Federal armies of Iraq, Afghanistan, and Takistan. As of this morning we received a mayday call after receiving a report of an enemy SA-2 SAM site, meaning our boys were likely engaged by an enemy MANPADs while they were prepping to conduct a makeshift SEAD mission. The 17th’s job is to deploy via Blackhawks and conduct a Search and Rescue mission and rescue the Apache pilots, I want them back within the hour to avoid having them get overrun by insurgents. Once secured we will redeploy Blackhawks for extract and once back home have everyone prepped for the next mission which will be to investigate a tip from our Takistani allies regarding one of their airfields, that is surrounded by an urban environment and possibly housed militants.\nMap: North Takistan\nModpack: 17th Ranger Battalion Shadowmod\nExpected Op Runtime: 3 Hours', 850, 0, '2022-10-10 21:34:02', '2025-12-17 19:45:32', NULL, '5642818', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1745, 'Jump Wings Training', '2022-10-15 11:00:00', '2022-10-15 13:00:00', 'North Airbase training server', '#a250e8', '', 918, 0, '2022-10-11 02:08:05', '2025-12-17 19:45:32', NULL, '5643088', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1746, 'Anti Armor School', '2022-10-14 18:00:00', '2022-10-14 20:00:00', 'Training Server', '#a250e8', 'Learn the ins and outs of enemy armored fighting vehicles so we can kill them more better.', 468, 0, '2022-10-12 18:14:28', '2025-12-17 19:45:32', NULL, '5647518', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1747, 'CLS', '2022-10-25 18:00:00', '2022-10-25 21:00:00', 'training server medical area', '#ecb200', '', 280, 0, '2022-10-12 20:43:55', '2025-12-17 19:45:32', NULL, '5648009', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1748, 'Whitelist Map Vote Goes Up', '2022-10-22 23:00:00', '2022-10-23 23:00:00', '', '#FFFFFF', 'We will take the suggested APPROVED whitelist Maps that have been requested and voting for no more than 5 that will be added to the server.', 38, 0, '2022-10-13 18:18:33', '2025-12-17 19:45:32', NULL, '5650702', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1749, 'Witelist Map Vote Closed', '2022-10-29 23:00:00', '2022-10-30 23:00:00', '', '#FFFFFF', '', 38, 0, '2022-10-13 18:19:01', '2025-12-17 19:45:32', NULL, '5650703', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1750, 'FTX: Bounding Battle Buddies', '2022-11-04 18:00:00', '2022-11-04 21:00:00', 'Private Ops', '#FFFFFF', 'Hey all, it\'s been a hot while since I\'ve done a FTX. I miss doing these honestly.\nThis is a dedicated field training exercise designed to focus on three major topics:\nThis will have a focus on infantry level tactics to improve on squad strategies and repetition.\nComplementary Song: \n', 67, 0, '2022-10-14 04:00:46', '2025-12-17 19:45:32', NULL, '5652365', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1751, 'CQB Workshop', '2022-10-21 15:00:00', '2022-10-21 16:30:00', '17th Training Server', '#FFFFFF', 'You wanna kick in doors? You wanna do it without getting an extra hole to breathe out of? This is the place to learn. \n\nExpanding on the AIT 3 and AIT 4 Courses this is a deep dive into MOUT operations specifically related to breaching and clearing, assaulting interior positions, and operating in close order formations with your fireteam. \n\n', NULL, 0, '2022-10-14 07:32:53', '2025-12-17 19:45:33', NULL, '5652395', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1752, 'Basic Training', '2022-10-16 10:00:00', '2022-10-16 12:30:00', 'Training Server', '#FFFFFF', 'Have your mods downloaded, tfar setup, please join the training server sometime in advance to verify everything works.', 60, 0, '2022-10-14 17:48:12', '2025-12-17 19:45:33', NULL, '5653503', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1753, '[Rescheduled] JTAC bookwork / Qual [Rescheduled]', '2022-10-22 14:30:00', '2022-10-22 16:30:00', 'Training Server', '#ecb200', 'Book work and qualification for those that want to control CAS assets. \n\nWe gon\' lern how to talk good and get some effective close air support. ', 501, 0, '2022-10-16 03:53:36', '2025-12-17 19:45:33', NULL, '5656228', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1754, 'Master Free Fall class', '2022-10-18 16:00:00', '2022-10-18 18:00:00', 'North Air Base training server', '#a250e8', '', 918, 0, '2022-10-17 21:17:53', '2025-12-17 19:45:33', NULL, '5659773', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1755, '[Rescheduled] Combat Diver', '2022-10-18 18:00:00', '2022-10-18 20:00:00', 'Naval Base Training Server', '#a250e8', '', 918, 0, '2022-10-17 21:19:03', '2025-12-17 19:45:33', NULL, '5659774', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1756, '[Cancelled] Combat Diver', '2022-10-24 18:00:00', '2022-10-24 20:00:00', '', '#a250e8', '', 918, 1, '2022-10-18 23:04:38', '2025-12-17 19:45:33', NULL, '5663338', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1757, 'Triage & Mass Cas Advanced Training', '2022-11-03 18:00:00', '2022-11-03 20:00:00', 'Training Server -Medical area MFH Halladay', '#6cba50', 'A training for both medical and non-medical personnel focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to secure and manage any Mass Cas quickly and efficiently.\nThink of this training as AIT for Mass Casualty Incidents!\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/331618', 2223, 0, '2022-10-21 12:41:44', '2025-12-17 19:45:33', NULL, '5668974', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1758, '17th Administrator Meeting/Training.', '2022-10-22 16:00:00', '2022-10-22 17:00:00', 'Teamspeak Chowhall', '#FFFFFF', 'Everyone is welcome to join and listen in but if you are not part of the admin team/Command I´d like to ask you to stay muted unless there is room for questions etc. . \n ', 21, 0, '2022-10-21 12:56:25', '2025-12-17 19:45:33', NULL, '5668976', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1759, 'NCO Meeting', '2022-10-22 17:00:00', '2022-10-22 17:30:00', '', '#ecb200', '', 67, 0, '2022-10-21 15:07:16', '2025-12-17 19:45:33', NULL, '5669097', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1760, 'Standup DEMO / EOD', '2022-10-21 18:30:00', '2022-10-21 22:30:00', '', '#FFFFFF', 'By Approval of Blitzcraig overlap of his Operation this is a standup DEMO / EOD course. There will be another one in the upcomming weeks.\n\nLimited Slots', 38, 0, '2022-10-21 22:17:43', '2025-12-17 19:45:33', NULL, '5669463', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1761, 'Operation Green Blitz', '2022-11-18 19:00:00', '2022-11-18 21:00:00', 'Private Ops Server, United Sahrani', '#FFFFFF', 'Situations:\nWelcome to Ura, a fictional island nation located in the Mediterranean sea. Founded in the 1930s, this nation founded by a group of merchants and workers that discovered a wealth of salt in the south and rare minerals in the mountains to the north. For years they have been mostly left along but the political landscape and claim over the territory has been argued a few times in global circles. To this day the island nation continues to maintain its independence and rejects any who try to exert their will on it.\nThe 17th has been sent here, at the request of the Uranians, to assist their military with training. They are capable of supplying themselves but with tension continuing to ramp up they want assistance with training from the best. For 6 months, you have been training these men. Now it seems we are gonna have to get more involved.\nEarly yesterday morning, rebel soldiers with no emblems began attacking strategic military installations across the island of Ura. A few hours later a massive assault hit their primary airfield, causing the Uranians to lose contact with all assets on the south western portion of the Island. The Uranian National Guard have deployed and right now are fighting hard over the city of Corazol. Assist them. \nObjectives:\n-Stop the assault on the friendly arty base\n-Hold Corazol\n-Survive\n\n\nServer: Private Ops Server\nMap: United Sahrani\nAdditional Mods: N/A', 53, 0, '2022-10-23 04:47:24', '2025-12-17 19:45:33', NULL, '5670434', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1762, 'Operation Hobson\'s Reflect - Part 1', '2022-12-02 19:00:00', '2022-12-02 22:00:00', 'Private Ops Server', '#30a68f', '', 46, 0, '2022-10-23 06:46:35', '2025-12-17 19:45:33', NULL, '5670445', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1763, 'Operation Red Dust', '2022-11-11 20:00:00', '2022-11-11 22:30:00', 'Private Ops Server', '#ecb200', 'Its been almost a month after the two forces Saharani Liberation Army (SLA) and the Royal Armed Corp of Saharani (RACS) signed a ceasefire agreement in Corazol, the capital of Saharani. Things were going well till we received intel from our informants on the plans the Saharani Liberation Army have in mind. They plan to break the agreement and plant bombs in keypoints within the city in an attempt to gain more ground. We have received our orders and have been attached with a Mi-24 Superhind from the Royal Saharani Airforce for this operation.\n\n\nObjectives\n:\nNeutralize the enemy forces in the city of Corazol and disarm all 4 bombs.\nCapture the enemy motorpool in the town of Obregan\nAdvance and capture the enemy supply depot in the town of Bagango\n\n\nAssets\n:\n2x M1165A1 SOCOM Humvee (M134/M240)\n1X M1165A1 SOCOM Humvee (MK-19/M240)\n1x Mi-24G "Superhind" \n1x \nExperimental SPAA \n\n\nBackup Assets:\n1x AW-159 "Wildcat" w/pylons \n4x M1151A1 Humvee (M2)\n\n\n\n\n', 2224, 0, '2022-10-23 13:58:38', '2025-12-17 19:45:33', NULL, '5670803', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1764, 'Ranger Training', '2022-10-29 10:30:00', '2022-10-29 12:00:00', 'Training Server', '#6cba50', 'A series of trainings designed to introduce or refresh Alpha Co and friends to tips, theories, tactics, and maneuvers that will increase the overall skill level and survivability of the unit as a whole.\nToday\'s topic, Pathfinding: how adding distance to your route can save time.\nLesson format:\nWalk:\n +/- 10 minutes of theory and discussion on topic at hand\nCrawl:\n +/- 20 Minutes of practice of topic in controlled live fire training scenario\nRun:\n +/- 50 minutes live fire against live enemies with as few training halts as possible.\n', 2221, 0, '2022-10-24 13:22:33', '2025-12-17 19:45:33', NULL, '5671637', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1765, 'OPERATION SNAKEBITE', '2022-10-31 18:00:00', '2022-10-31 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: We have intel on a weapon convoy coming from the port and heading inland. You will deploy from local FOB.\nObjectives\nSERVER: 17th Operations Server\r\nMAP: Northern Takistan\r\nADITIONAL MODS REQUIRED: Northern Takistan Map\n\n', 2227, 0, '2022-10-24 19:59:45', '2025-12-17 19:45:33', NULL, '5672329', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1766, 'Ranger Training', '2022-11-05 10:30:00', '2022-11-05 12:00:00', '', '#6cba50', 'A series of trainings designed to introduce or refresh Alpha Co and friends to tips, theories, tactics, and maneuvers that will increase the overall skill level and survivability of the unit as a whole.\nTodays lesson: Teamwork, it doesn\'t work if you aren\'t being a team.\nLesson format:\nWalk: \n+/- 10 minutes of theory and discussion on topic at hand\nCrawl:\n +/- 20 Minutes of practice of topic in controlled live fire training scenario\nRun: \n+/- 50 minutes live fire against live enemies with as few training halts as possible.', 2221, 0, '2022-10-25 01:24:41', '2025-12-17 19:45:33', NULL, '5674057', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1767, 'Ranger Training', '2022-11-12 11:30:00', '2022-11-12 13:00:00', 'Training Server', '#6cba50', 'A series of trainings designed to introduce or refresh Alpha Co and friends to tips, theories, tactics, and maneuvers that will increase the overall skill level and survivability of the unit as a whole.\nTodays lesson: Navigating the battlespace, when and where corners shouldn\'t be cut.\nLesson format:\nWalk:\n +/- 10 minutes of theory and discussion on topic at hand\nCrawl:\n +/- 20 Minutes of practice of topic in controlled live fire training scenario\nRun:\n +/- 50 minutes live fire against live enemies with as few training halts as possible.', 2221, 0, '2022-10-25 01:30:46', '2025-12-17 19:45:33', NULL, '5674060', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1768, 'Ranger Training', '2022-11-19 11:30:00', '2022-11-19 13:00:00', 'Training Server', '#6cba50', 'A series of trainings designed to introduce or refresh Alpha Co and friends to tips, theories, tactics, and maneuvers that will increase the overall skill level and survivability of the unit as a whole.\n\nToday’s Lesson: Communication, it doesn\'t work if you just imagine it.\n\nLesson format:\nWalk:\n +/- 10 minutes of theory and discussion on topic at hand\nCrawl:\n +/- 20 Minutes of practice of topic in controlled live fire training scenario\nRun:\n +/- 50 minutes live fire against live enemies with as few training halts as possible.', 2221, 0, '2022-10-25 01:35:24', '2025-12-17 19:45:33', NULL, '5674062', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1769, '[Canceled] JTAC/CAS Practice', '2022-11-04 19:30:00', '2022-11-04 21:00:00', '', '#ecb200', 'Details! Been awhile since I\'ve done any JTAC things so lets get some reps in. Pilots are welcome to come out as well as anyone interested in JTAC or CAS.\nBoth companies are welcome.', 516, 1, '2022-10-25 19:20:43', '2025-12-17 19:45:33', NULL, '5676351', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1770, 'Sniper Course', '2022-10-28 16:00:00', '2022-10-28 17:50:00', 'TBD', '#a250e8', 'If you\'re going to attend, show up on time. If you can\'t show up on time, don\'t take a slot. There is Ranger Training almost directly after so I don\'t want to run over the time I have set here.\nThis will take place on the Private Ops server if I can upload the mission before then. If not it will be on the Training Server. I will update this event and inform any attendees when it is decided.\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f3511d79-10fb-4784-b21c-ffab119b293f/docs/313452', 46, 0, '2022-10-26 02:57:04', '2025-12-17 19:45:33', NULL, '5676936', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1771, 'Basic Training', '2022-10-26 15:00:00', '2022-10-26 18:00:00', 'Training Grounds', '#FFFFFF', 'Standard BCT, going over all fundamentals you\'ll need for your future in the 17th. ', 840, 0, '2022-10-26 06:14:45', '2025-12-17 19:45:33', NULL, '5677018', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1772, 'Mechanized Training', '2022-11-01 18:00:00', '2022-11-01 19:00:00', '', '#d89332', 'Come learn how to use Bradleys and shit.', NULL, 0, '2022-10-26 19:37:35', '2025-12-17 19:45:33', NULL, '5677461', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1773, 'Master Free Fall Course', '2022-10-31 16:00:00', '2022-10-31 17:45:00', 'Training Server - Northern Airfield', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f3511d79-10fb-4784-b21c-ffab119b293f/docs/1426483299', 46, 0, '2022-10-26 22:19:25', '2025-12-17 19:45:33', NULL, '5677707', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1774, 'Pathfinder Qualification', '2022-11-03 16:00:00', '2022-11-03 19:00:00', 'Private Ops Server', '#a250e8', 'YOU MUST HAVE ATTENDED THE BOOKWORK BEFORE ATTEMPTING THIS QUAL. IF YOU HAVE, YET TO DO THE BOOKWORK, DO NOT SIGN UP FOR THIS!', 46, 0, '2022-10-26 23:24:00', '2025-12-17 19:45:33', NULL, '5677843', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1775, 'Basic Training EU/ASIA', '2022-10-28 12:00:00', '2022-10-28 15:00:00', '17BN Training Server', '#30a68f', 'Join me to get started in the 17th by getting your basic knowledge in this BCT.', 21, 1, '2022-10-27 16:25:48', '2025-12-17 19:45:33', NULL, '5679063', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1776, 'Operation Island Sun', '2022-11-09 19:00:00', '2022-11-09 21:00:00', '', '#df5353', '\nSERVER\n: 17th private ops\nMAP\n: Nogova\nADITIONAL MODS REQUIRED\n: N/A', 57, 0, '2022-10-29 19:46:41', '2025-12-17 19:45:33', NULL, '5691067', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1777, 'Mechanized Qual', '2022-11-08 19:00:00', '2022-11-08 20:00:00', '', '#d89332', 'Come confirm you know how to use Bradleys and shit.', NULL, 0, '2022-10-30 20:16:57', '2025-12-17 19:45:33', NULL, '5693021', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1778, 'Basic Training', '2022-11-02 15:00:00', '2022-11-02 17:00:00', 'Training Grounds', '#FFFFFF', 'An initial training to receive all the fundamentals for your future in the 17th. ', 840, 0, '2022-10-31 22:20:22', '2025-12-17 19:45:33', NULL, '5694251', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1779, '[Time reschedule] Pathfinder Qualification', '2022-11-07 20:00:00', '2022-11-07 22:00:00', 'Private Ops Server', '#a250e8', 'Pathfinder Qualification. Participants must have attended Pathfinder Bookwork and MasterFreeFall to attend.', 468, 0, '2022-10-31 22:25:59', '2025-12-17 19:45:33', NULL, '5694252', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1780, '68 Whiskey', '2022-11-10 19:00:00', '2022-11-10 21:00:00', '', '#6cba50', '', 280, 0, '2022-11-01 22:16:33', '2025-12-17 19:45:33', NULL, '5696082', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1781, 'Eagle Op (In place of Racoon)', '2022-11-02 18:00:00', '2022-11-02 21:00:00', '', '#df5353', '', 38, 0, '2022-11-02 00:22:58', '2025-12-17 19:45:33', NULL, '5696178', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1782, 'Advanced UAV School', '2022-11-11 19:00:00', '2022-11-11 20:30:00', 'Training Server', '#a250e8', 'Learn Advanced UAV systems like the AR-2 Darter Quadrotor UAV and Armed Medium-Altitude Long Endurance (MALE) Yabhon UAV to reconnoiter AOs and conduct precision strikes.', 468, 0, '2022-11-03 04:30:36', '2025-12-17 19:45:33', NULL, '5698046', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1783, '[Cancelled] Air to Air training', '2022-11-17 17:00:00', '2022-11-17 19:00:00', 'Training server', '#ecb200', 'Formerly SEAD training, now I plan to focus on Air to Air combat alone. This will include dog fighting, BVR fights and useful tips on facing enemy fast movers.\n', 2224, 1, '2022-11-03 14:58:06', '2025-12-17 19:45:33', NULL, '5698621', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1784, 'Operation Red Sky', '2022-11-16 19:00:00', '2022-11-16 22:00:00', 'Private Ops Server, Chernarus', '#df5353', 'Situation: \n\n\nFollowing the partial success of Operation Perun, Russian defensive lines in Chernarus have solidified and little has changed in spite of fierce fighting. However, with the recent arrival of a NATO armor and helicopter division, friendly forces are ready to finally knock them out of their strongholds in the region.\n\n\nObjectives:\nThe primary objective is to capture and hold the enemy base at OBJ Chort. The enemy has constructed a large military base with substantial volumes of equipment and men stationed inside. This base must be captured intact, so that none of the valuable intelligence inside is destroyed - this means fire support is not authorized to engage the base, except in extreme situations. \n\nFollowing this, the base must be protected from enemy counterattack. They will invariably attempt to recapture such a strategically important position, so expect heavy weapons to be employed.\n\nAfter repelling the enemy counterattack, the final step is complete removal of the Russian base of power in the region through capture of the airbase at OBJ Harpy, and neutralization of as many enemy aircraft as possible. They will likely try to escape, and our aim is to prevent that from happening.\n\n\nEnemy Force Composition:\nEnemy forces consist of a large number of armored and helicopter units, reinforced with infantry. Owing to the destruction of large caches of ammunition during Operation Perun, the enemy will be incapable of sustained artillery fire. Only one or two barrages will be possible.\nFriendly Assets and Equipment:\nVehicles:\n\nx2 Bardelas SPAA\nx3 M-ATV\nx1 M-ATV GMG\nx2 AH-1Z\nx2 UH-1Y (MG)\nx2 HEMTT (Resupply)\nHeavy armor support if necessary\n\n\nEquipment:\n\nM107\nAll MANPADS\nAll AT launchers', 1040, 0, '2022-11-03 21:26:36', '2025-12-17 19:45:33', NULL, '5699760', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1785, 'Echo Orientation', '2022-11-15 18:00:00', '2022-11-15 19:00:00', '', '#d89332', 'Come learn echo stuff.', NULL, 0, '2022-11-05 21:03:54', '2025-12-17 19:45:33', NULL, '5702414', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1786, 'Basic Training', '2022-11-12 16:00:00', '2022-11-12 19:00:00', 'Training Grounds', '#FFFFFF', 'Come get in your initials and fundamentals for your future in the 17th.', 840, 0, '2022-11-06 23:36:57', '2025-12-17 19:45:33', NULL, '5727232', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1787, 'Basic Training', '2022-11-17 17:00:00', '2022-11-17 19:30:00', 'Basic Training Server', '#FFFFFF', 'Complete the new joiners guide in its entirety before this! You should be able to load into the basic server at the step off time. ', 60, 0, '2022-11-06 23:49:29', '2025-12-17 19:45:33', NULL, '5727234', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1788, 'Basic Training', '2022-11-21 19:00:00', '2022-11-21 21:00:00', '17th BN Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#FFFFFF', 'Required training for \nall \nrecruits to attend.\nLearn the skills to fulfill the badass knowledge repertoires our members should be expected to have proficiency in (badassery sold seperately).\nI will try to be on a half hour early to help deal with your annoying technical issues!\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 795, 0, '2022-11-06 23:50:57', '2025-12-17 19:45:33', NULL, '5727236', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1789, 'Accelerated Basic Training', '2022-11-11 16:00:00', '2022-11-11 17:30:00', 'Chow Hall in TeamSpeak -> 17th Training Server -> Training Grounds', '#FFFFFF', 'The quicker version of the mandatory basic training for \nrecruits with over 500 hours\n \nof in-game Arma 3 experience.\nWe will \nbriefly \ntouch on all the topics taught in the normal version of the training to ensure you can prove familiarity with those skills. \nCome ready to prove your knowledge!\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 795, 0, '2022-11-07 00:35:00', '2025-12-17 19:45:33', NULL, '5727274', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1790, '17th Command Meeting', '2022-11-12 17:00:00', '2022-11-12 18:30:00', 'Team Speak', '#355bf8', 'Bring something to discuss or questions to ask.\n\nAnyone can attend and listen but if you are not HHC or a CO/XO we ask that you keep your microphone muted unless specifically called upon. There will be an opportunity for you to give your input at the end.', 46, 0, '2022-11-07 01:16:33', '2025-12-17 19:45:33', NULL, '5727424', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1791, '[TIME RESCHEDULED] Rotary Logi Training + Qual', '2022-11-08 14:00:00', '2022-11-08 17:00:00', 'Training Server, Northern Airfield', '#d89332', 'Rotary Logi Training followed by a Qual. You don’t have to go to both, you can just show up for one if you’d like. \nTraining will be individualized to whatever you need to improve on, whether it be how to get in the air and land safely or how to do advanced flight maneuvers.\nIf you’re only showing up to the qual, please message me on discord informing me beforehand so I don’t think you’re a no-show.', 45, 0, '2022-11-07 14:33:27', '2025-12-17 19:45:33', NULL, '5728511', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1792, '[TIME RESCHEDULE] Copilot Training', '2022-11-11 11:00:00', '2022-11-11 12:30:00', 'Training Server, Northern Airfield', '#ecb200', 'Copilot Ribbon Training, hope to see you there!', 45, 0, '2022-11-07 14:35:51', '2025-12-17 19:45:33', NULL, '5728512', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1793, 'Operation Road to Hell', '2022-11-25 19:00:00', '2022-11-25 21:00:00', '', '#FFFFFF', 'Drone Images\n\n', 57, 0, '2022-11-11 12:15:22', '2025-12-17 19:45:33', NULL, '5736365', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1794, 'Heavy Weapons School', '2022-11-22 19:00:00', '2022-11-22 21:00:00', 'Training Server', '#a250e8', 'One of two courses required for the Heavy Weapons Ribbon. Gain intermediate knowledge on our anti-tank and emplaced weapons, then practice the fuck out of them.', 468, 0, '2022-11-14 18:55:44', '2025-12-17 19:45:33', NULL, '5741601', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1795, 'Accelerated Basic', '2022-11-17 20:00:00', '2022-11-17 21:00:00', '', '#FFFFFF', '', NULL, 0, '2022-11-16 18:39:56', '2025-12-17 19:45:33', NULL, '5754366', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1796, 'Advanced Fireteam Training', '2022-12-01 18:00:00', '2022-12-01 20:00:00', 'training server', '#FFFFFF', 'Put down what role you are looking to fill for this series if you have a preference. You must be qualified for the role (68W for medic as example).\nRoles available\nFTL, 2IC, AR, A/T\n\nIf enough people sign up, \nMedic, 2nd FTL, 2IC, AR, A/T', 483, 0, '2022-11-17 22:07:02', '2025-12-17 19:45:33', NULL, '5756755', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1797, 'Operation Tortuga', '2022-12-09 19:00:00', '2022-12-09 21:00:00', '17th private ops', '#FFFFFF', '\nEVENT DETAILS\n: Pirates have recently kidnapped a high ranking government official from his private yacht. \n \nOBJECTIVES\n\nSERVER\n: 17th private ops\nMAP\n: Porto\nADITIONAL MODS REQUIRED\n: NA', 57, 0, '2022-11-18 16:14:39', '2025-12-17 19:45:33', NULL, '5757486', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1798, 'Convoy Operations Training [RESCHEDULED]', '2022-11-24 18:00:00', '2022-11-24 19:00:00', 'Training Server', '#ecb200', '', NULL, 0, '2022-11-19 05:37:14', '2025-12-17 19:45:33', NULL, '5763458', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1799, 'NCO Meeting', '2022-11-26 18:00:00', '2022-11-26 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764666', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1800, 'NCO Meeting', '2022-11-19 18:00:00', '2022-11-19 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764667', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1801, 'NCO Meeting', '2022-12-03 18:00:00', '2022-12-03 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764668', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1802, 'NCO Meeting', '2022-12-10 18:00:00', '2022-12-10 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764669', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1803, 'NCO Meeting', '2023-01-07 18:00:00', '2023-01-07 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764673', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1804, 'NCO Meeting', '2023-01-28 18:00:00', '2023-01-28 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764674', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1805, 'NCO Meeting', '2023-02-04 18:00:00', '2023-02-04 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764675', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1806, 'NCO Meeting', '2023-01-21 18:00:00', '2023-01-21 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764676', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1807, 'NCO Meeting', '2023-01-14 18:00:00', '2023-01-14 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764677', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1808, 'NCO Meeting', '2023-03-04 18:00:00', '2023-03-04 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764678', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1809, 'NCO Meeting', '2023-04-15 17:00:00', '2023-04-15 17:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764679', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1810, 'NCO Meeting', '2023-04-22 17:00:00', '2023-04-22 17:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764680', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1811, 'NCO Meeting', '2023-05-06 17:00:00', '2023-05-06 17:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764681', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1812, 'NCO Meeting', '2023-03-11 18:00:00', '2023-03-11 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764682', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1813, 'NCO Meeting', '2023-04-29 17:00:00', '2023-04-29 17:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764683', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1814, 'NCO Meeting', '2023-02-25 18:00:00', '2023-02-25 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764684', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1815, 'Cadre Meeting', '2023-02-18 18:00:00', '2023-02-18 18:45:00', '', '#ecb200', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764685', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1816, 'NCO Meeting', '2023-05-20 17:00:00', '2023-05-20 17:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764686', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1817, 'NCO Meeting', '2023-03-25 17:00:00', '2023-03-25 17:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764687', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1818, 'NCO Meeting', '2023-02-11 18:00:00', '2023-02-11 18:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764688', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1819, 'NCO Meeting', '2023-04-01 17:00:00', '2023-04-01 17:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764689', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1820, 'NCO Meeting', '2023-04-08 17:00:00', '2023-04-08 17:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764690', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1821, 'NCO Meeting', '2023-03-18 17:00:00', '2023-03-18 17:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764691', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1822, 'NCO Meeting', '2023-05-13 17:00:00', '2023-05-13 17:45:00', '', '#008ae1', '', 850, 0, '2022-11-19 20:26:06', '2025-12-17 19:45:33', NULL, '5764692', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1823, 'CLS Training-CANCELLED', '2022-12-08 19:00:00', '2022-12-08 22:00:00', 'CANCELLED', '#6cba50', '--------------CANCELLED & RESCHEDULED----------------\nJoin us for Combat Life Saver training! Learn how a CLS can be so much more than an ammo bearer for the medic! \nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training.\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER THAN THE 7PM-10PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n\n', 2223, 1, '2022-11-21 23:09:07', '2025-12-17 19:45:33', NULL, '5768880', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1824, 'Operation Dark Omen', '2022-12-21 19:00:00', '2022-12-21 22:00:00', '17th Operations Server', '#FFFFFF', 'Operation Dark Omen\nEVENT DETAILS: The USA has been an occupying force in Lythium for the last 2 years, Tensions with the local population are rising. Riots have broken out in all major cities. \nAbdul al-Nasir a local Islamic terrorist has called on his followers to kill all infidels. The 17th is tasked with capturing Abdul al-Nasir.\n\r\n\r\rSERVER: 17th private ops\r\nMAP: FFAA Lythium\r\nADITIONAL MODS REQUIRED: none\n\nSuggested Whitelist mod:\n\n\n Need to fill 5 pilot/gunner slots for the op.. \r\nPlease let me know what slot you want....\r\n\n', 2227, 0, '2022-11-23 21:55:35', '2025-12-17 19:45:33', NULL, '5774172', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1825, 'Air / Ground / Controller / Training', '2022-12-08 19:00:00', '2022-12-08 22:00:00', 'Private Operations Server (Preset ZGM Map)', '#FFFFFF', '', 38, 0, '2022-11-27 04:23:21', '2025-12-17 19:45:33', NULL, '5776760', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1826, 'CLS Training', '2022-12-19 19:00:00', '2022-12-19 22:00:00', 'Training Server- Medical Area', '#6cba50', 'Join us for Combat Life Saver training! Learn how a CLS can be so much more than an ammo bearer for the medic! \nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training.\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER THAN THE 7PM-10PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n\n', 2223, 0, '2022-11-27 05:00:05', '2025-12-17 19:45:33', NULL, '5776768', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1827, 'Bradley Combat Ex', '2022-11-29 19:00:00', '2022-11-29 21:00:00', 'Training Server', '#d89332', 'Gain experience as a Brad crewman/commander. Do things, talk about the things that happen, learn in a fast paced hands on way by blasting vehicles ranging from soft and squishy to big and angry. Come have some fun and hopefully become more comfortable as a crewman.', 28, 0, '2022-11-27 06:43:27', '2025-12-17 19:45:33', NULL, '5776786', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1828, 'Radio Telephone Operator (RTO) Training', '2022-12-01 14:30:00', '2022-12-01 15:30:00', 'Training Server', '#FFFFFF', 'RTO Bookwork/Training', NULL, 0, '2022-11-28 20:39:46', '2025-12-17 19:45:33', NULL, '5778865', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1829, 'JTAC Training/Practice', '2022-12-05 19:30:00', '2022-12-05 21:30:00', 'Training Server', '#FFFFFF', 'JTAC Training and Practice with a real life 17th CAS pilot (hopefully). \n\nQualification will follow approx. 1 week following the training. \nMeet on the training server at the Northern Airfield. \n\n', 501, 0, '2022-11-28 21:09:41', '2025-12-17 19:45:33', NULL, '5778867', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1830, 'Basic Training', '2022-11-29 19:00:00', '2022-11-29 22:00:00', 'Training Grounds', '#FFFFFF', 'Standard basic training for your start in the 17th. Depending on time once finished, marksman and sharpshooter will be available for those who attend.', 840, 0, '2022-11-28 21:23:04', '2025-12-17 19:45:33', NULL, '5778871', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1831, '[CANCELED] Advanced Infantry Practice', '2022-12-08 18:00:00', '2022-12-08 20:30:00', 'training server, training grounds', '#FFFFFF', 'This is continued from the training from last thursday. Same folks, same groups, practicing as a unit.', 483, 1, '2022-12-02 03:13:44', '2025-12-17 19:45:33', NULL, '5813239', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1832, 'Critical Skills Training: MOUT/CQB (POSTPONED)', '2022-12-08 17:00:00', '2022-12-08 19:00:00', '17th Training Server', '#ecb200', 'Doctrine-based bookwork and practical drills:\nBOOKWORK:\n•Mission Planning and Timeframe for MOUT Areas.\n•Identifying/isolating danger areas in MOUT\n•Communcation and tasking\n• Utilizing support in a MOUT environment\n• Execution and Follow-on \n----\nDRILLS:\n•Identifying and Establishing Containment \n•Formations\n•Breaching methods\n•CQB methodology\n•Shoothouse drills', NULL, 0, '2022-12-03 19:10:48', '2025-12-17 19:45:33', NULL, '5818247', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1833, 'Pointman Training', '2022-12-06 19:00:00', '2022-12-06 21:00:00', '', '#FFFFFF', 'A good pointman can make the team. Come learn how to be great at it.\nCrawl: 15 minutes of Open Book\nWalk: 15 minutes of dry run/review\nRun: >60 minutes of iterative run throughs of an objective or movement as Pointman. Each run will have a called halt where we discuss and review.\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/0ed2f292-f5bd-41ad-95f5-bd24c16b6107/docs/317690', NULL, 0, '2022-12-05 03:32:54', '2025-12-17 19:45:33', NULL, '5819465', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1834, 'Battalion Training FTX', '2022-12-10 19:00:00', '2022-12-10 22:00:00', 'Private Operations Server', '#df5353', 'This Battalion training FTX will focus on Air Assaults and Infantry formations and movements.\nDetails to be announced later.', 46, 0, '2022-12-05 04:00:11', '2025-12-17 19:45:33', NULL, '5819470', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1835, 'RASP', '2023-01-07 19:00:00', '2023-01-07 22:00:00', 'Private Operations Server', '#df5353', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/08ca311e-66fb-45ce-bbbf-c4b34dc69e4a/docs/245238\nEVENT DETAILS\n: Event Objective Descriptions will be updated.\nSERVER\n: 17th Private Operations Server\nMAP\n: Ruha\nADITIONAL MODS REQUIRED\n:\nMap Ruha (Whitelisted Map) \n', 46, 0, '2022-12-05 04:00:50', '2025-12-17 19:45:33', NULL, '5819471', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1836, 'Basic Training [TIME TBD]', '2022-12-07 15:00:00', '2022-12-07 17:30:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\nThe training should take approximately 2:30 hours; however, it may run ~45 mins longer.\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 795, 0, '2022-12-05 05:03:31', '2025-12-17 19:45:33', NULL, '5819484', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1837, 'Operation Power Change', '2022-12-07 19:00:00', '2022-12-07 22:00:00', '', '#d89332', '', 827, 0, '2022-12-05 07:17:35', '2025-12-17 19:45:33', NULL, '5820146', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1838, 'RTO training and qualification', '2022-12-06 14:00:00', '2022-12-06 16:00:00', '', '#ecb200', '', 243, 0, '2022-12-05 22:21:44', '2025-12-17 19:45:33', NULL, '5821722', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1839, '68W Training', '2022-12-20 19:00:00', '2022-12-20 21:00:00', 'Medical Area-Training Server', '#6cba50', 'A training course for all you aspiring combat medics to earn your 68W badge.\n\n68W training document: \n\n\nThere will be no official qualification testing, however we will have a practical exercise at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treated injured/unconscious individuals\n(2) Correct method of triage during a Mass Cas event\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.) ', 2223, 0, '2022-12-06 04:09:09', '2025-12-17 19:45:33', NULL, '5821920', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1840, 'Sniper Course', '2022-12-09 16:00:00', '2022-12-09 18:00:00', 'Private Ops Server', '#a250e8', 'Come along to Okami\'s final training.\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f3511d79-10fb-4784-b21c-ffab119b293f/docs/313452', 46, 0, '2022-12-06 13:22:35', '2025-12-17 19:45:33', NULL, '5822288', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1841, '17th New Command Vote', '2023-01-08 15:30:00', '2023-01-08 17:00:00', '', '#df5353', 'This is the postponed vote for the new 17th Command.', 46, 0, '2022-12-08 23:18:45', '2025-12-17 19:45:33', NULL, '5827665', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1842, 'Operation Time Frame', '2022-12-22 19:00:00', '2022-12-22 22:00:00', 'Chernarus Winter (Private Ops Server)', '#FFFFFF', 'Event Details & Description : Intel shows that a newly built compound has been built by RedFor. Seize the compound and gather whatever intel you can find. \n\nAssets : 1x Abrams, 2x MRAP, 1x Bradley, 1x Little Bird, 1x Blackhawk, 1x Apache, 1x Chinook, 3x Humvee, 2x Mk6 Mortar Tubes (Only 3 of the 13 can be used)', 840, 0, '2022-12-09 00:00:43', '2025-12-17 19:45:33', NULL, '5827739', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1843, 'UNOFFICAL MOB THE PERSISTENT SERVER NIGHT', '2022-12-17 19:00:00', '2022-12-17 21:30:00', '', '#FFFFFF', 'THE TITLE SPEAKS FOR ITSELF', 43, 0, '2022-12-17 18:56:07', '2025-12-17 19:45:33', NULL, '5844304', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1844, 'UNOFFICAL MOB THE PERSISTENT SERVER NIGHT', '2022-12-30 19:00:00', '2022-12-30 22:00:00', '', '#FFFFFF', 'IT SPeaKs FOR ITSELF\n', 43, 0, '2022-12-17 19:01:55', '2025-12-17 19:45:33', NULL, '5844306', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1845, 'JTAC Qualification', '2022-12-23 19:00:00', '2022-12-23 21:00:00', 'Training Server', '#d89332', 'Qualification for those that have completed the JTAC Bookwork portion. Candidates will be tested on general knowledge and implementation of HGS calls for fire, use cases for said calls for fire, and have a practical assessment. \nGiven the date is Christmas-eve-eve, this training may be rescheduled to the following week depending on attendance. \n\nA passing candidate should: \n- Implement 3 of each type of call, with appropriate information passed along using a variety of weapon systems, using the 5-line + remarks format of the 17th. \n- They should also be able to justify and recommend further action / calls as needed. \n- They should be able to utilize BP/IP and reference marking for calls for fire. \n- Perform check in call/read-backs with CAS assets.\nFailure will result for the following: \n- Any behavior breaking the 17th Battalion rules.\n- Making calls of the same type, with the same ordinance, etc. or just generally not putting in effort. This is meant as practice as much as it is an assessment. \n- Undue destruction of buildings / CIVPOP area\'s surrounding a target.\n- Repeated calls for fire outside of the trained system. \n- Obvious lack of understanding of the trained material. \n\nAny questions, reach out to me. \n', 501, 0, '2022-12-17 20:33:51', '2025-12-17 19:45:33', NULL, '5844406', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1846, 'Basic Training', '2022-12-18 17:00:00', '2022-12-18 19:30:00', '', '#FFFFFF', '', 2227, 0, '2022-12-18 04:03:50', '2025-12-17 19:45:33', NULL, '5845237', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1847, 'UNOFFICAL MOB THE PERSISTENT SERVER NIGHT', '2022-12-23 19:00:00', '2022-12-23 22:00:00', '', '#FFFFFF', 'Stuff n Things ... you know', 2227, 0, '2022-12-23 16:47:02', '2025-12-17 19:45:33', NULL, '5850159', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1848, 'Virtual Leadership Training P2', '2023-01-03 19:00:00', '2023-01-03 21:00:00', 'Discord - TRAINING VC', '#ecb200', 'Topics to Cover:\n-Review of METT-TC planning\n-Creating attainable goals and ways to plan to achieve them\n-Delegating divisions of responsibility to achieve goals via markers, phase lines, etc', 67, 0, '2022-12-27 13:35:31', '2025-12-17 19:45:33', NULL, '5852466', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1849, 'Virtual Leadership Training P3', '2023-01-06 19:00:00', '2023-01-06 22:00:00', 'Discord - TRAINING VC', '#ecb200', 'Topics to cover:\n-Review of METT-TC\n-Adapting plans and how to make decisions quickly\n-Macromanagement in the field', 67, 0, '2022-12-27 13:36:23', '2025-12-17 19:45:33', NULL, '5852467', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1850, 'OPERATION SHADOW RUN', '2023-01-04 19:00:00', '2023-01-04 22:00:00', '17th Operations Server', '#FFFFFF', 'EVENT DETAILS: \n\r\n\r\nSERVER: 17th private ops\r\n\rMAP: LIVONIA\r\n\rADITIONAL MODS REQUIRED: none\r\n\rSuggested Whitelist mod: Better Inventory', 2227, 0, '2023-01-02 17:16:02', '2025-12-17 19:45:33', NULL, '5858999', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1851, 'Demolitions Training', '2023-01-10 18:00:00', '2023-01-10 19:30:00', 'Northen Airfield', '#FFFFFF', 'This is training for the demolitions ribbon. Learn how to blow things up! ', 6, 0, '2023-01-08 22:12:22', '2025-12-17 19:45:33', NULL, '5869316', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1852, 'Operation Jungle Storm', '2023-01-11 19:00:00', '2023-01-11 22:00:00', '', '#d89332', 'EVENT DETAILS: \nAt 0230 yesterday, US Ambassador Richard Guilliere traveling through international airspace nearby experienced a emergency situation and had to make a landing at the nearest available land. Upon the emergency landing on Tanoa, Guilliere was seized by a unruly anti-American crowd and was terribly executed along with his security detail. Now with a breakdown in communications and a Tanoan government that is unwilling to allow extradition of all responsible, the President has authorized an invasion to seize the island and the 17th has been given the honor of the first landing.\n\r\n\rSERVER: 17th private ops\r\n\rMAP: Tanoa (APEX DLC)\r\n\rADITIONAL MODS REQUIRED: N/A', 827, 0, '2023-01-09 06:38:01', '2025-12-17 19:45:33', NULL, '5869898', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1853, 'Operation Gargoyle Pt. 1', '2023-01-14 19:00:00', '2023-01-14 22:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Warno and opord to be linked later\nSERVER\n: 17th Private Operations Server\nMAP\n: Fapovo\nADITIONAL MODS REQUIRED:\n none', 81, 0, '2023-01-10 02:33:29', '2025-12-17 19:45:33', NULL, '5871984', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1854, '17th Modpack Update', '2023-01-09 21:30:00', '2023-01-09 22:30:00', '', '#FFFFFF', '', 38, 0, '2023-01-10 03:24:48', '2025-12-17 19:45:33', NULL, '5871989', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1855, 'Basic Training', '2023-01-13 19:00:00', '2023-01-13 21:30:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\nThe training should take approximately 2:30 hours; however, it may run ~45 mins longer\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 795, 0, '2023-01-11 23:46:40', '2025-12-17 19:45:33', NULL, '5873968', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1856, 'Basic Training', '2023-01-17 18:00:00', '2023-01-17 20:30:00', 'Recruitment Room 1 in TS', '#FFFFFF', 'Come learn the basics to play with the 17th\nPlease have modpack downloaded and teamspeak plugin ready beforehand. If you\'re having trouble refer to the New Members Guide in guilded; linked above. If you\'re still having trouble, try contacting an NCO and we can help', 39, 0, '2023-01-12 00:05:25', '2025-12-17 19:45:33', NULL, '5873970', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1857, 'Basic Training', '2023-01-23 19:00:00', '2023-01-23 21:30:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\nThe training should take approximately 2:30 hours; however, it may run ~45 mins longer\n', 795, 0, '2023-01-12 00:13:46', '2025-12-17 19:45:33', NULL, '5873973', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1858, 'combat air logistics training', '2023-01-16 19:00:00', '2023-01-16 21:00:00', 'training server', '#ecb200', 'Practice air logistics actions under specific scenarios.\nPilots and air crew focused, all are welcome to fill slots (pilots get priority)', 28, 0, '2023-01-12 19:02:07', '2025-12-17 19:45:33', NULL, '5875044', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1859, 'Operation Pinecone Express', '2023-01-20 18:30:00', '2023-01-20 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Due to a recent bloody coup, the democracy-opposed military of the Takistan National Army has risen to power and has begun to attack citizens who had previously backed the US involvement. \n \nOBJECTIVES\nNote: Alpha will be mostly be providing security while Echo handles transport, civilian evac, CAS, and heavy support.\nSERVER\n: 17th private ops\nMAP\n: Takistan\nADITIONAL MODS REQUIRED\n: NA\n\n\nADITIONAL NOTES:\n Actors for playing citizens are welcome.', 57, 0, '2023-01-12 23:37:03', '2025-12-17 19:45:33', NULL, '5876234', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1860, 'echo smoke sesh', '2023-01-18 19:30:00', '2023-01-18 20:30:00', '', '#ecb200', '\n we gonna link up im discuse my expectations with yall. Get some feed back\nAdjust some fire.. and we gonna be great. This meetingis roulghly an hour', 43, 0, '2023-01-13 05:46:57', '2025-12-17 19:45:33', NULL, '5876309', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1861, 'Operation Cold Current', '2023-01-18 19:00:00', '2023-01-18 22:00:00', 'Ruha (17th Private Ops Server)', '#FFFFFF', 'Event Details - Gentlemen, we are going on a hunt. At 0130, 17th Rangers will step off from FOB Crystal and carry on north along the river of Ruha. The main objective will be to capture a HVT named Lee. He is a wanted gunsmith in the area that has been supplying the faction of CSAT and needs to be captured \nALIVE\n.\n\nServer - Private Operations\n\nMap - Ruha\n\nAdditional Mods Required - Ruha \nAssets - 5x RHIB Boats, 1x AR-2 Darter Drone', 840, 0, '2023-01-13 09:28:25', '2025-12-17 19:45:33', NULL, '5876354', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1862, '[Rescheduled] Basic Training', '2023-02-05 17:00:00', '2023-02-05 19:30:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#FFFFFF', 'Come learn the basic skills and tactics needed to be an effective member of the 17th!\nPlease see the document below for additional information.', 13, 0, '2023-01-14 05:47:08', '2025-12-17 19:45:33', NULL, '5877254', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1863, 'Basic Training', '2023-01-29 17:00:00', '2023-01-30 07:30:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#FFFFFF', 'Come learn the basic skills and tactics needed to be an effective member of the 17th!\nPlease see the document below for additional information\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/6979335e-60f7-4ab9-9590-66df69367d1e/docs/2013948655', 13, 0, '2023-01-14 05:53:55', '2025-12-17 19:45:33', NULL, '5877255', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1864, 'Operation Gargoyle Pt. 2', '2023-01-21 19:00:00', '2023-01-21 22:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Warno and opord to be linked later\nSERVER\n: 17th Private Operations Server\nMAP\n: Fapovo\nADITIONAL MODS REQUIRED:\n none', 81, 0, '2023-01-16 17:07:25', '2025-12-17 19:45:33', NULL, '5879675', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1865, 'Operation Gargoyle Pt. 2', '2023-01-28 19:00:00', '2023-01-28 22:00:00', '', '#ecb200', 'EVENT DETAILS\n: Warno and opord to be linked later\nSERVER\n: 17th Private Operations Server\nMAP\n: Fapovo\nADITIONAL MODS REQUIRED:\n none', 81, 0, '2023-01-16 17:07:53', '2025-12-17 19:45:33', NULL, '5879676', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1866, 'AIT 1 - Fire Team Positions', '2023-01-24 19:00:00', '2023-01-24 21:00:00', 'Training Range', '#FFFFFF', 'We will discuss fireteam positions to include Anti Tank, Automatic Rifleman, Grenadier, and other such prestigious jobs. \nIn addition, movement drills, rockets, vs tanks, vs rpgs, vs mortars, and why they sound different. \nWe will also include picking good CCP locations and what makes some of them bad.', 933, 0, '2023-01-17 03:36:23', '2025-12-17 19:45:33', NULL, '5880939', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1867, 'AIT - 2 Battle Drills and more', '2023-02-07 19:00:00', '2023-02-07 21:00:00', 'Training Range', '#FFFFFF', 'Bounding, Peeling, Breaking contact, fire suppression. Also battle drill 1 and 2.', 933, 0, '2023-01-17 03:37:51', '2025-12-17 19:45:33', NULL, '5880940', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1868, 'AIT - 3 MOUT', '2023-02-21 19:00:00', '2023-02-21 20:30:00', 'Training Range', '#ecb200', 'We will practice moving through urban environments when people don\'t want you there. After what you learn here, you and your friends won\'t be scared of Detroit at 2 am anymore.', 933, 0, '2023-01-17 03:39:02', '2025-12-17 19:45:33', NULL, '5880942', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1869, 'AIT 4 - CQB', '2023-03-07 19:00:00', '2023-03-07 21:00:00', 'Training Range', '#FFFFFF', 'Learn to clear buildings and compounds.... somewhat safely.', 933, 0, '2023-01-17 03:40:01', '2025-12-17 19:45:33', NULL, '5880943', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1870, 'Echo Orientation', '2023-01-21 13:00:00', '2023-01-21 14:00:00', 'Training Server', '#d89332', 'Meet at the training range', 28, 0, '2023-01-17 19:13:54', '2025-12-17 19:45:33', NULL, '5881740', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1871, '60mm Mortar Familiarization', '2023-01-19 19:00:00', '2023-01-19 20:00:00', 'Training Server - Training Grounds', '#d89332', 'Being that the 60mm mortar is something we will be seeing a lot more of, its time to get accustomed to it.\nCome and learn your way around the 60mm mortar, and how to land hits accurately with little to no math. This will be useful. Come learn the ropes and launch some rounds!', 28, 0, '2023-01-18 05:57:39', '2025-12-17 19:45:33', NULL, '5883502', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1872, 'Command Pre-Op Planning', '2023-01-20 21:00:00', '2023-01-20 22:00:00', 'Chow Hall TS', '#FFFFFF', 'An opportunity to discuss battle plans for the next day\'s main operation. This is completely optional and you do not have to attend (all ranks welcome).', 67, 0, '2023-01-18 08:48:08', '2025-12-17 19:45:33', NULL, '5883546', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1873, '[RESCHEDULED] How to Zeus 101', '2023-01-21 23:00:00', '2023-01-22 00:00:00', 'Discord - Training VC', '#ecb200', 'By special request for special hours', 67, 0, '2023-01-20 00:32:01', '2025-12-17 19:45:33', NULL, '5885295', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1874, 'RTO Training', '2023-01-22 17:30:00', '2023-01-22 19:30:00', '17th Training server', '#FFFFFF', '\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/1943208325', 2227, 0, '2023-01-21 22:02:27', '2025-12-17 19:45:33', NULL, '5887890', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1875, 'Operation Highway to Hell pt.2', '2023-01-27 18:30:00', '2023-01-27 21:00:00', '', '#FFFFFF', '', 57, 0, '2023-01-21 23:18:08', '2025-12-17 19:45:33', NULL, '5887908', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1876, '[CANCELLED] Master Free Fall Training', '2023-01-30 19:00:00', '2023-01-30 21:00:00', '17TH TRAINING SERVER', '#FFFFFF', '[CANCELLED] ', 2227, 1, '2023-01-22 00:10:46', '2025-12-17 19:45:33', NULL, '5888598', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1877, 'How to Zeus 101', '2023-01-22 19:00:00', '2023-01-22 21:00:00', '', '#FFFFFF', 'o boi', 67, 0, '2023-01-22 04:46:37', '2025-12-17 19:45:33', NULL, '5888693', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1878, 'CLS', '2023-02-06 19:00:00', '2023-02-06 21:30:00', 'Medical grounds', '#ecb200', 'Combat Life Saver Training. 1 of 2 required trainings for 68W Qualification. Learn how to help the medic.', 280, 0, '2023-01-24 18:59:06', '2025-12-17 19:45:33', NULL, '5893000', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1879, 'Persistent Ops', '2023-01-29 19:00:00', '2023-01-29 20:00:00', '17th Persistent Server', '#FFFFFF', 'What we need:\nAssault squad\nSupport squad\n2 blackhawks\nApache\n\nLets clap a hideout\n\nplan to come', 28, 0, '2023-01-24 18:59:53', '2025-12-17 19:45:33', NULL, '5893001', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1880, 'Operation Serpent Hunt', '2023-01-25 19:00:00', '2023-01-25 21:00:00', '', '#df5353', '\nAsset list:\nPlethora of ground transport and MRAPs\n\n2x Bradley/BUSK\n2x Stryker\n1x M1A2/TUSK\n\n2x UH-60 Blackhawk\n3x MH-6 Little Bird\n1x AH-6 Little Bird\n2x CH-47F Chinook\n1x F/A-18E Super Hornet\nOther requests should be made during the op.', 468, 0, '2023-01-24 20:36:34', '2025-12-17 19:45:33', NULL, '5893260', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1881, '17th command meeting', '2023-02-12 14:30:00', '2023-02-12 16:00:00', '', '#ecb200', '', 81, 0, '2023-01-25 03:49:38', '2025-12-17 19:45:33', NULL, '5894218', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1882, 'Mechanized Training', '2023-01-31 18:00:00', '2023-01-31 19:00:00', '', '#FFFFFF', 'Come learn how Bradleys work n shit.', NULL, 0, '2023-01-29 03:41:56', '2025-12-17 19:45:33', NULL, '5898447', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1883, 'Campaign Mission testing', '2023-01-29 15:00:00', '2023-01-29 16:00:00', '', '#FFFFFF', 'testing scripts for my campaign ', 2227, 0, '2023-01-29 18:03:29', '2025-12-17 19:45:33', NULL, '5898762', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1884, 'Hotwire Ftx AIT', '2023-01-30 19:00:00', '2023-01-30 21:00:00', 'Private ops server', '#FFFFFF', 'Mission will depend on amount of people that show, but will focus on the fundamentals covered in AIT\'s 1-4', 933, 0, '2023-01-30 21:29:49', '2025-12-17 19:45:33', NULL, '5899826', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1885, 'Operation Holy Grail', '2023-02-24 18:30:00', '2023-02-24 21:00:00', '', '#FFFFFF', '\n', 57, 0, '2023-01-31 01:39:28', '2025-12-17 19:45:33', NULL, '5899928', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1886, 'Operation Chlorophyll', '2023-03-08 19:00:00', '2023-03-08 21:00:00', '', '#FFFFFF', '', 57, 0, '2023-01-31 01:41:31', '2025-12-17 19:45:33', NULL, '5899930', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1887, '(REMOVED)Wednesday op', '2023-03-22 18:00:00', '2023-03-22 20:00:00', '', '#FFFFFF', 'Wrong date. This one is next week for me. ', 57, 0, '2023-01-31 01:42:02', '2025-12-17 19:45:33', NULL, '5899931', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1888, 'Osprey Down', '2023-02-17 19:00:00', '2023-02-17 22:00:00', 'Private Ops Server', '#ecb200', 'Event Details\n - Find a way home. \n\n\nServer\n - 17th Private Operations Server\n\n\nMap\n - Bystrica\n\n\nAdditional Mods Required\n - None\n\n\nAssets\n - Your teammates.', 67, 0, '2023-01-31 10:29:19', '2025-12-17 19:45:33', NULL, '5900197', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1889, 'Operation Tundra Tension PT 1', '2023-02-08 19:00:00', '2023-02-08 22:00:00', 'Saint Kapaulio (17th Private Operations Server)', '#FFFFFF', 'Event Details\n - 17th Rangers are tasked of taking over the land known as Saint Kapaulio. Today at 0415 Rangers and will depart from USS Glory via Speedboat accompanied by Trident, Starfish, and Kraken, all USMC companies. Friendly air assets will cover all boats on their line to the island where Marines will beach the North of the river before the town of Ubomo, meanwhile Oni elements are beaching to the south of the river preparing for the fight through the safari and into the town of Bonga. Nearby compounds could supply as a future FOB, but securing these towns and everything between there and our fleet will be a great first step amongst expansion in this region. \n\n\nServer\n - 17th Private Operations Server\n\n\nMap\n - Saint Kapaulio \n\n\nAdditional Mods Required\n - \n (Whitelisted Map)\n\n\nAssets\n - Speedboats, Blackhawks, Little Birds, Apache\'s, Fixed Wing Aircrafts\n\nIn need of JTAC & Fixed Wing/Rotary Pilot(s)\n\n\nMade by \n and \n ', 840, 0, '2023-01-31 10:30:41', '2025-12-17 19:45:33', NULL, '5900199', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1890, 'Operation Tundra Tension P2', '2023-02-22 19:00:00', '2023-02-22 22:00:00', 'Saint Kapaulio (17th Pirvate Operations)', '#FFFFFF', 'Event Details - Previously in Saint Kapaulio, 17th Rangers and friendly Marine assets have taken over a small portion of the land in preparation of immense mobilization. Today at 0400, 17th Rangers prepare to seize an Oil Rig and counter-attack enemy howitzers. There are multiple locations of the cannons and most likely they will be aiming at critical points of what we have so far captured. Mission success is determined by overall completion of the objectives. \n\nMap - Saint Kapaulio\n\nServer - 17th Private Operations \n\nAdditional Mods Required - Saint Kapaulio \n\n\n\nMade by \n and \n ', 840, 0, '2023-01-31 10:31:11', '2025-12-17 19:45:33', NULL, '5900200', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1891, 'Operation Tundra Tension Part 5', '2023-03-22 18:00:00', '2023-03-22 21:00:00', 'Saint Kapaulio (17th Private Operations Server)', '#ecb200', 'Event Details - Just another day in the office, a casual operation of the 17th yet again taking over some land but with a challenge. QRF is a huge factor this mission meaning all heads must be on a swivel. Rangers will insert at 1300 and move to destroy communication towers within 3 sectors. The less towers, the less reinforcements available to our enemies. \nAssets - Transport birds and AH-6\nServer/Map - 17th Private Operations Server/Saint Kapaulio\nAdditional Mods Required - Saint Kapaulio (\n) \nhttps://steamcommunity.com/sharedfiles/filedetails/?id=939686262&searchtext=saint+kapaulio\n\nMade by \n & \n ', 840, 0, '2023-01-31 10:32:08', '2025-12-17 19:45:33', NULL, '5900202', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1892, 'Operation Tundra Tension P4', '2023-03-17 18:00:00', '2023-03-17 21:00:00', 'Saint Kapaulio (17th Private Operations Server)', '#FFFFFF', 'Event Details - 17th Rangers have non stop fought in the woodland part of Saint Kapaulio, now its time to switch up the terrain to a desert type battlefield. Rangers will depart around 0800 from FOB Miller where a large assortment of assets will be staged for picking by command. Once assets are sorted, vehicles will step off NE bound towards a small airbase that will deploy every asset possible if not taken over. Assuming everyone is alive after that, Rangers will double down on their luck and attempt to take Hilltop/OBJ Ultra which contains a handful of compounds with a radio tower in the center. Finally, OBJ Corona, the home of Nash Kapaulio. The final task of this operation is to capture/kill Nash. Capturing him will give extra information for further missions, killing him will stop any sort of attacks on BLUFOR in the future. If the 17th plans on taking over the rest of Saint Kapaulio, this hill base/comms center plus Nash Kapaulio, will be vital in the rest of this mini-campaign. \n\nAssets - there\'s not enough room in this page for the amount of assets available...\n\nServer - 17th Private Operations Server\n\nExtra Mod Required - Saint Kapaulio (\n)\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=939686262&searchtext=saint+kapaulio\nMade by \n & \n ', 840, 0, '2023-01-31 10:33:00', '2025-12-17 19:45:33', NULL, '5900203', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1893, 'Basic Training Requested Time', '2023-01-31 18:30:00', '2023-01-31 21:00:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\nPlease refer to the link included in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/6979335e-60f7-4ab9-9590-66df69367d1e/docs/2013948655', 38, 0, '2023-01-31 20:37:14', '2025-12-17 19:45:33', NULL, '5901055', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1894, 'Basic Training', '2023-02-03 14:00:00', '2023-02-03 16:30:00', '', '#d89332', '', 15, 0, '2023-01-31 21:20:08', '2025-12-17 19:45:33', NULL, '5901100', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1895, 'OPERATION BUCKAROO BONZAI', '2023-02-03 19:00:00', '2023-02-03 22:00:00', '17TH OPERATIONS SERVER', '#FFFFFF', '\n\n\nAsset list:\n\n2x - F/A-18E Super Hornet\n2x - F/A-18F Super Hornet\n\n1x UH-60 Blackhawk\n1x CH-47F Chinook\n2x - RHIB boats', 2227, 0, '2023-01-31 21:26:34', '2025-12-17 19:45:33', NULL, '5901108', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1896, 'Operation Gargoyle Pt. 3 "Distant Thunder"', '2023-02-04 19:00:00', '2023-02-04 22:00:00', '', '#ecb200', 'EVENT DETAILS\n: \n &\n\nSERVER\n: 17th Private Operations Server\nMAP\n: Fapovo\nADITIONAL MODS REQUIRED:\n none', 81, 0, '2023-01-31 21:43:50', '2025-12-17 19:45:33', NULL, '5901126', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1897, 'Operation Gargoyle Pt 4', '2023-02-11 19:00:00', '2023-02-11 22:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Warno and opord to be linked later\nSERVER\n: 17th Private Operations Server\nMAP\n: Fapovo\nADITIONAL MODS REQUIRED:\n none', 81, 0, '2023-01-31 21:44:28', '2025-12-17 19:45:33', NULL, '5901128', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1898, 'AJ\'s Rough Water', '2023-02-01 19:00:00', '2023-02-01 21:00:00', 'Ops Server (Tanoa)', '#FFFFFF', 'EVENT DETAILS\n: Jump on a BOAT shoot up some stuff blow some things up and whip it outta there ezzzz.\nSERVER\n: Ops Server\nMAP\n: Tanoa from Apex DLC\nADITIONAL MODS REQUIRED\n: nada, zip, nothing.', 28, 0, '2023-01-31 23:36:49', '2025-12-17 19:45:33', NULL, '5901263', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1899, 'Operation Tannenberg', '2023-02-10 19:00:00', '2023-02-10 22:00:00', '', '#FFFFFF', 'Event Details: The Charnarus Gov\'t has called in the 17th to help expell communist revolutionaries in the countryside\nServer: 17th Private Ops Server\nMap: Chernarus (Summertime)\nAdditional Mods: NONE', 1039, 0, '2023-02-01 00:42:45', '2025-12-17 19:45:33', NULL, '5901323', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1900, 'Land Nav Training', '2023-02-03 17:00:00', '2023-02-03 18:30:00', '17th BN Training Server', '#ecb200', 'In this training you will be taught the basics of navigating across Land in Arma 3 with basic tools.', 21, 0, '2023-02-01 00:45:25', '2025-12-17 19:45:33', NULL, '5901331', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1901, 'Basic Training', '2023-02-05 18:30:00', '2023-02-05 20:00:00', '', '#FFFFFF', '', 1191, 0, '2023-02-01 12:28:46', '2025-12-17 19:45:33', NULL, '5901606', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1902, 'RRC Operation "To Own the Skies"', '2023-02-04 15:00:00', '2023-02-04 18:00:00', 'Private Ops server', '#FFFFFF', 'Kill/Capture mission and covert demolitions. ', NULL, 0, '2023-02-01 19:46:04', '2025-12-17 19:45:33', NULL, '5902254', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1903, 'Private testing', '2023-02-02 18:00:00', '2023-02-02 21:00:00', 'Private Ops server', '#FFFFFF', 'Doing some testing and evaluation of stuff. Not open to everyone, by invite only', 483, 0, '2023-02-02 02:02:14', '2025-12-17 19:45:33', NULL, '5902612', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1904, '[Cancelled] Coping with AA', '2023-02-09 19:00:00', '2023-02-09 20:30:00', 'Training server', '#ecb200', 'Come learn how to identify the different types of AA, avoid getting shot down by said AA and cool tips and tricks you may not already know!\nWe are going to be using both rotary and fixed wings.', 2224, 1, '2023-02-02 14:06:25', '2025-12-17 19:45:33', NULL, '5903239', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1905, 'Demolition Training', '2023-02-05 16:00:00', '2023-02-05 18:00:00', '17th training server ', '#ecb200', 'i will try to wake up on time for this', 1039, 0, '2023-02-03 15:02:53', '2025-12-17 19:45:33', NULL, '5904479', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1906, 'DAY OF NO SCHEDULED ACTOVITY', '2023-03-10 00:00:00', '2023-03-11 00:00:00', '', '#ecb200', 'No 17th events to be scheduled this date this date is reserved for Iceberg armor war number 2 the legends of Iceberg versus the new generation', 43, 0, '2023-02-03 16:03:07', '2025-12-17 19:45:33', NULL, '5904523', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1907, '[Cancelled] Pathfinder Bookwork', '2023-02-05 19:00:00', '2023-02-05 21:00:00', 'Training Server', '#a250e8', '', 468, 1, '2023-02-03 21:36:32', '2025-12-17 19:45:33', NULL, '5904716', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1908, '68W Training', '2023-02-16 19:00:00', '2023-02-16 21:00:00', 'Training Server (Medical Area)', '#FFFFFF', 'A training course for all you aspiring combat medics to earn your 68W badge.\n\n68W training document: \n\n\nThere will be no official qualification testing, however we will have a practical exercise at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treated injured/unconscious individuals\n(2) Correct method of triage during a Mass Cas event\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.) ', 2223, 0, '2023-02-04 02:28:59', '2025-12-17 19:45:33', NULL, '5905018', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1909, '[RESCHEDULED] General Individualized Rotary Training', '2023-02-10 18:00:00', '2023-02-10 20:00:00', 'Training Server, Northern Airfield', '#ecb200', 'Limited to 3 attendees because I can only train so many people at once. \nTraining on whatever is needed by attendees, you can either tell me what you want to work on the day of, or DM beforehand so I can get an idea of what we need to work on. \nWilling to run a qual if number of attendees allows and training takes a short enough amount of time.', 45, 0, '2023-02-05 17:15:40', '2025-12-17 19:45:33', NULL, '5906541', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1910, 'Heli Hell', '2023-02-13 18:00:00', '2023-02-13 19:00:00', 'Training Grounds North Airbase', '#FFFFFF', 'Attempt to fly helicopter, likely be thwarted by all manner of horrors beyond reckoning. The place to be if you want to practice crash landing and dealing with anti aircraft.', 1040, 0, '2023-02-06 22:48:02', '2025-12-17 19:45:33', NULL, '5909655', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1911, '17th Arma Servers Offline for New Install.', '2023-02-06 21:00:00', '2023-02-06 23:00:00', '', '#FFFFFF', '', 38, 0, '2023-02-07 01:36:38', '2025-12-17 19:45:33', NULL, '5909761', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1912, 'Rotary Practice', '2023-02-17 15:00:00', '2023-02-17 17:00:00', '', '#d89332', 'Going over the basics:\nExactly what else we manage to go over depends on how many people join\nOpen to all, regardless of flight qual status.', 15, 0, '2023-02-07 03:07:50', '2025-12-17 19:45:33', NULL, '5909808', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1913, 'Pathfinder Bookwork', '2023-02-09 19:00:00', '2023-02-09 21:00:00', 'training server', '#ecb200', 'Let’s try this again.\nCome learn the basics of operating in an RRC team. No prerequisite knowledge required. Recommended to know how to plot an 8-digit grid and use a MicroDAGR + Vector to find grids.\nQual is a separate event.', 468, 0, '2023-02-07 17:25:50', '2025-12-17 19:45:33', NULL, '5910300', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1914, '[Cancelled] Anti Armor School', '2023-02-12 19:00:00', '2023-02-12 21:00:00', 'Training Server', '#ecb200', 'Come learn the ins and outs of enemy AFVs in order to kill them better. You may have to disregard what you know about vehicles IRL to learn how they work in game.\nNo prerequisite knowledge required. \nOne of two courses required for Heavy Weapons ribbon.', 468, 1, '2023-02-07 17:27:39', '2025-12-17 19:45:33', NULL, '5910302', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1915, 'Operation Sand Viper - PT-1', '2023-02-15 19:00:00', '2023-02-15 22:00:00', ' 17th Ops Server', '#FFFFFF', '\r\n\nOperation Sand Viper - PT-1\r\n\r\nEVENT DETAILS\n: This is part 1 of a 3 part mini campaign.\r\nIntel and situational info will be released via the Arma News Network (\n)\r\n\r\n\nSERVER\n: 17th Ops Server\r\n\r\nMAP\n: \n (Whitelist map)\r\n\r\nADDITIONAL MODS REQUIRED\n: none\n\nCampaign Dates \nFeb-15 / Mar-01 / Mar-15 \n\nAsset list for SAND VIPER MINI CAMPAIGN \r\r\n\r\n\r', 2227, 0, '2023-02-07 17:54:22', '2025-12-17 19:45:33', NULL, '5910522', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1916, 'OP Hide N Seek', '2023-03-01 19:00:00', '2023-03-01 22:00:00', ' 17th Ops Server', '#FFFFFF', '\nEVENT DETAILS\n: During the World Heath Summit in Stockholm, a Russian Separatist group called Black Dawn attacked the summit and kidnapped 2 doctors. You are tasked with retrieving Dr. Octavio Chase. You will deploy via HALO drop under cover of night. \nSERVER\n: Ops Server\nMAP\n:\n\nADITIONAL MODS REQUIRED\n:\n\n \n\n', 2227, 0, '2023-02-07 17:56:58', '2025-12-17 19:45:33', NULL, '5910526', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1917, 'OPERATION FROSTBITE', '2023-03-15 18:00:00', '2023-03-15 21:00:00', '17th Ops Server', '#FFFFFF', '\nEVENT DETAILS\n: THE HUNT FOR VLADAMIR BORYSENKO CONTINUES... 6 MONTHS AFTER OPERATION HIDE N SEEK. VLADAMIR HAS FLED BACK TO CHERNARUS. BORYSENKO HAS ABDUCTED GENERAL GEORGE MATTHEWS (AKA OVERLORD) AND INTEL SUGGESTS HE IS BEING HELD AT AN AIRFIELD IN NORTHERN CHERNARUS. BORYSENKO IS ALSO SUSPECTED TO BE IN POSSESSION OF SOME OLD RUSSIAN NUCLEAR DEVICES FROM THE COLD WAR ERA. \nOBJECTIIVES\nSERVER\n: Ops Server\nMAP\n:\nCJENARUS WINTER\nADITIONAL MODS REQUIRED\n:NONE', 2227, 0, '2023-02-07 17:58:18', '2025-12-17 19:45:33', NULL, '5910528', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1918, 'JTAC training and qual', '2023-02-09 19:00:00', '2023-02-09 21:00:00', 'Training Ops Server', '#ecb200', '', 2224, 0, '2023-02-08 00:30:49', '2025-12-17 19:45:33', NULL, '5911180', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1919, 'AIT3', '2023-02-12 11:00:00', '2023-02-13 01:30:00', 'Training server', '#FFFFFF', 'MOUT Training! Come by and learn to be an excellent street fighter', 933, 0, '2023-02-08 04:03:24', '2025-12-17 19:45:33', NULL, '5911860', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1920, 'Basic Training', '2023-02-13 19:00:00', '2023-02-13 21:30:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\nThe training should take approximately 2:30 hours; however, it may run ~45 mins longer\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 795, 0, '2023-02-09 21:06:19', '2025-12-17 19:45:33', NULL, '5914091', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1921, 'Basic Training', '2023-02-27 19:00:00', '2023-02-27 21:30:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\nThe training should take approximately 2:30 hours; however, it may run ~45 mins longer\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 795, 0, '2023-02-09 21:07:59', '2025-12-17 19:45:33', NULL, '5914092', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1922, 'RASP', '2023-02-18 19:00:00', '2023-02-18 22:00:00', '', '#FFFFFF', '\n\n\nEVENT DETAILS\n: Event Objective Descriptions will be updated.\nSERVER\n: 17th Private Operations Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/08ca311e-66fb-45ce-bbbf-c4b34dc69e4a/docs/245238', 81, 0, '2023-02-12 01:31:56', '2025-12-17 19:45:33', NULL, '5916219', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1923, 'mission maker meeting', '2023-02-19 16:30:00', '2023-02-19 17:30:00', 'teamspeak ', '#ecb200', 'We need to chop it up \nPoints of discussion:\nThe offical 17th mission Guts\nMission maker expecstions\nThe having mods added for you campaign process\nUpdating list of pre approved mods', 43, 0, '2023-02-16 05:26:16', '2025-12-17 19:45:33', NULL, '5930436', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1924, 'Demolitions Training', '2023-02-19 10:00:00', '2023-02-19 13:00:00', 'Northern Airfield', '#FFFFFF', 'Learn how to Blowup stuff', 6, 0, '2023-02-16 17:39:10', '2025-12-17 19:45:33', NULL, '5931095', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1925, 'Air Assault -', '2023-02-23 19:00:00', '2023-02-23 21:00:00', 'Training Grounds', '#FFFFFF', 'We will do air assault, both landed and fast rope. Come get the badge.\nNeed a pilot, post to the message if you can pilot. Need at least 1, would love a co-pilot. Come get some practice flying and deploying troops. Need at minimum a fireteam, so 4 people. would love 8+', 483, 0, '2023-02-17 21:02:55', '2025-12-17 19:45:33', NULL, '5932619', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1926, 'Jump School', '2023-03-02 19:00:00', '2023-03-02 21:00:00', 'Training Grounds', '#FFFFFF', 'Come get your jump wings. expect 2 day jumps, a night jump, and a FTX jump.\nNeed multiple people.\nNeed a pilot to fly either Chinny or fixed wing jump plane.', 483, 0, '2023-02-17 21:05:06', '2025-12-17 19:45:33', NULL, '5932620', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1927, 'Jump Master', '2023-03-16 19:00:00', '2023-03-16 21:00:00', 'Training Grounds', '#FFFFFF', 'Come learn how to be a jump master\nNeed a pilot', 483, 0, '2023-02-17 21:08:51', '2025-12-17 19:45:33', NULL, '5932621', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1928, 'Sniper Training', '2023-02-19 13:00:00', '2023-02-19 15:00:00', 'Training Grounds', '#FFFFFF', 'Sniper Training', 483, 0, '2023-02-17 21:54:46', '2025-12-17 19:45:33', NULL, '5932627', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1929, '[Cancelled] Master FreeFall', '2023-02-20 19:00:00', '2023-02-20 21:00:00', '', '#a250e8', 'Learn to jump in a ricky recon way\nCancelled due to technical issues.', 468, 1, '2023-02-17 21:55:41', '2025-12-17 19:45:33', NULL, '5932628', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1930, 'Demolitions Training', '2023-02-26 16:00:00', '2023-02-26 18:00:00', 'Training server/Designated Mine Practice Course', '#d89332', 'Demolitions training. We will start on time. If you have a reason to be late post in the comments', 53, 0, '2023-02-18 14:37:36', '2025-12-17 19:45:33', NULL, '5933462', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1931, 'EOD Training/Qual', '2023-02-26 18:00:00', '2023-02-26 21:00:00', 'Northern Airfield', '#d89332', 'Explosive Ordinance training. Depending on numbers of NCOs will determine whether the slots are increased. Anyone who wishes to attend the "Bookwork" portion of this may (I will keep track of you) however only those who snag the slots will go through qual', 53, 0, '2023-02-18 14:40:19', '2025-12-17 19:45:33', NULL, '5933464', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1932, 'Basic Training', '2023-02-20 13:00:00', '2023-02-20 15:30:00', 'Training Server', '#d89332', 'Join me on the training server to learn the basics of how to be a ranger in the 17th.', 524, 0, '2023-02-19 20:16:30', '2025-12-17 19:45:33', NULL, '5935303', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1933, 'Operation Gargoyle Part 5', '2023-02-25 19:00:00', '2023-02-25 22:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Warno and opord to be linked later\nSERVER\n: 17th Private Operations Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED:\n none', 81, 0, '2023-02-20 16:56:01', '2025-12-17 19:45:33', NULL, '5936234', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1934, 'Basic Training', '2023-02-23 16:00:00', '2023-02-23 19:00:00', '17th Training Server', '#FFFFFF', 'Come acquire the base fundamentals you will need for your future in the 17th !', 840, 0, '2023-02-20 19:04:50', '2025-12-17 19:45:33', NULL, '5936691', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1935, 'Air Crew Training/Qual', '2023-03-05 18:00:00', '2023-03-05 19:00:00', 'Southern Air Field', '#d89332', 'NOTE: \nTime may be subject to change, will update event accordingly and will notify all members set to going if a change occurs\nCome learn all the ins and outs of the different air crew roles from the raddest pilot in the unit, all 17th members are allowed and encouraged to attend.\nThere will be two parts to this training, an informative section where we go over the information, and a practical section where you put that information to use.\nAll attendees will assume each air crewmember role (excluding pilot) at least once to demonstrate their knowledge. Upon successful completion of this training, all attendees will be awarded the air crew ribbon and will be allowed to fill the role of any air crewmember in a Saturday op (excluding pilot and co-pilot, as those have their own individual trainings and quals).\nlink to the training doc I will be using for those that wish to follow along or read ahead --> \n \nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/345a8732-cb80-4eda-9eff-fbb8161675ac/docs/248316', 2225, 0, '2023-02-23 05:07:11', '2025-12-17 19:45:33', NULL, '5958351', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1936, 'CLS Training', '2023-02-28 19:00:00', '2023-02-28 22:00:00', 'Training Server-Medical Area', '#ecb200', 'Join us for Combat Life Saver training! Learn how a CLS can be so much more than an ammo bearer for the medic! \nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training.\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER THAN THE 7PM-10PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n', 2223, 0, '2023-02-23 17:23:18', '2025-12-17 19:45:33', NULL, '5959397', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1937, 'MISSION FILE TESTING', '2023-02-26 15:00:00', '2023-02-26 16:00:00', '17th ops server', '#FFFFFF', 'MISSION FILE TESTING', 2227, 0, '2023-02-23 23:32:06', '2025-12-17 19:45:33', NULL, '5959584', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1938, 'Fixed Wing CAS Training', '2023-02-27 19:00:00', '2023-02-27 21:30:00', 'Training Server', '#d89332', 'Learn how to utilize fixed-wing CAS aircraft such as the F/A-181 and A-10D. Familiarity with the various weapons systems, how to receive ground-based lasers, and basic air-air combat will be taught.\n\nYou will be expected to already know how to take-off, fly, hold an orbit pattern, and land. If you do not know all these things, you will not take off.\nThis is not a qualification.', 468, 0, '2023-02-24 04:19:00', '2025-12-17 19:45:33', NULL, '5959751', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1939, 'Master FreeFall', '2023-02-28 19:00:00', '2023-02-28 20:30:00', 'Training Server', '#a250e8', 'Learn to parajump according to RRC\'s needs. No prerequisite knowledge is needed.\nTrainees will learn the different jump types and become proficient in ALL of them during training time. Qualification will require trainees to complete a certain amount of jumps with varying accuracy.\nThat said, this is not a school that people fail. It\'s fun. I enjoy teaching it. Come. Entrust your life to a bunch of silk and string. If your trust is betrayed, you can reflect on it for the rest of your life.', 468, 0, '2023-02-24 04:29:20', '2025-12-17 19:45:33', NULL, '5959755', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1940, '(CANCALLED DUE TRO DAY OF NO SCHEDUELED ACTIVITY)', '2023-03-10 19:00:00', '2023-03-10 21:30:00', '', '#a250e8', 'Learn the ins and outs of enemy Armored Fighting Vehicles so you know how to counter them.\nNo prerequisite knowledge is required. 1 of 2 trainings required for the Heavy Weapons ribbon.', 468, 0, '2023-02-24 06:17:33', '2025-12-17 19:45:33', NULL, '5960055', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1941, 'Coms Skill Training.', '2023-03-06 19:30:00', '2023-03-06 22:00:00', '', '#FFFFFF', 'This is a requested Coms Skill Training. There have been repetitive issues with communications/radios. We will be working on communications skills, key words / Prowords when to chime in, when to stop talking on the radio, and what is important and what is not. \n\nThe skills in this training have been proven to increase the information being passed while limiting airtime. It is requested we have a Minimum of 6 members to be able to get the skill practice in. If we do not reach minimum numbers we will not get the full effect of this training. \nThis is not a Ribbon or Badge training, this is a Skill Training \n\n\nIf you have had an issue talking on the radio or have had a problem with communications on the radio you should attend.', 38, 0, '2023-02-25 03:26:09', '2025-12-17 19:45:33', NULL, '5961684', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1942, 'Combat Diver', '2023-03-01 17:00:00', '2023-03-01 19:00:00', '17th training server', '#ecb200', 'Let’s go swimming! Come earn your combat diver badge, learn about sdv operation and underwater demo among other skills! We will conclude the training with a quick amphibious ftx ', 2226, 0, '2023-02-25 21:26:30', '2025-12-17 19:45:33', NULL, '5962085', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1943, 'Basic Training', '2023-03-14 17:00:00', '2023-03-14 19:00:00', 'TRAINING SERVER - TRAINING GROUNDS', '#ecb200', '', 73, 0, '2023-02-25 21:49:40', '2025-12-17 19:45:33', NULL, '5962091', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1944, 'Operation Gargoyle Part 6', '2023-03-04 19:00:00', '2023-03-04 22:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Warno and opord to be linked later\nSERVER\n: 17th Private Operations Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED:\n none', 81, 0, '2023-02-25 23:06:16', '2025-12-17 19:45:33', NULL, '5962132', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1945, 'Operation Gargoyle Part 7', '2023-03-11 19:00:00', '2023-03-11 22:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Warno and opord to be linked later\nSERVER\n: 17th Private Operations Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED:\n none', 81, 0, '2023-02-25 23:07:18', '2025-12-17 19:45:33', NULL, '5962133', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1946, 'Operation Georgia Black Snake Pt. 1', '2023-03-18 18:00:00', '2023-03-18 21:00:00', '', '#ecb200', 'EVENT DETAILS\n:\nSERVER\n: 17th Private Operations Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED:\n The 17th BN Modpack Testing will be used for this operation and can be found in the \n instead of the standard Modpack. - Please make sure to unload all of your existing mods before loading the Testing Mod Pack', 81, 0, '2023-02-25 23:07:44', '2025-12-17 19:45:33', NULL, '5962134', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1947, 'Command Meeting', '2023-03-05 21:00:00', '2023-03-05 22:00:00', '', '#FFFFFF', 'Meeting for Command and HHC\nAnyone can attend, do not talk unless called upon.', 81, 0, '2023-02-25 23:59:26', '2025-12-17 19:45:33', NULL, '5962233', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1948, 'RASP', '2023-03-25 18:00:00', '2023-03-25 21:00:00', '', '#FFFFFF', 'What is RASP?: \n\n\nThis operation will require the use of an additional map: \n\n\nPlease ensure that you have downloaded this prior to joining on Saturday. This will be loaded in addition to the standard modpack, bringing your total to 49 mods. \n ', 81, 0, '2023-02-26 04:39:12', '2025-12-17 19:45:33', NULL, '5962317', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1949, '[Rescheduled] Community Round Table April 8th 2023', '2023-04-09 14:00:00', '2023-04-09 16:00:00', 'Chow hall in Teamspeak', '#FFFFFF', 'Do not post your notes here, post them in the bulletin board post.\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/31a767aa-f57a-45e5-8929-d25183bce25e/forums/1036746268', 81, 0, '2023-02-26 04:44:10', '2025-12-17 19:45:33', NULL, '5962318', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1950, 'Arme 3 Server Updates (', '2023-02-28 17:30:00', '2023-02-28 18:00:00', '', '#FFFFFF', 'Arma had an update (Servers will be updated to 2.12)\n\n\n\nhttps://dev.arma3.com/post/spotrep-00109\n', 38, 0, '2023-02-28 22:18:52', '2025-12-17 19:45:33', NULL, '5965230', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1951, 'OPERATION DESERT THUNDER', '2023-03-24 18:00:00', '2023-03-24 21:00:00', '17th OPS SERVER', '#FFFFFF', '\nEVENT DETAILS\n: \nTIME TO GO BACK TO THE SANDBOX...\nSandy MRE\'s and Camel Spiders oh my!\n\nOBJECTIIVES\nSERVER\n: Ops Server\nMAP\n:\nFFAA LYTHIUM\nADITIONAL MODS REQUIRED\n:NONE\nAsset list\r', 2227, 0, '2023-03-01 16:42:31', '2025-12-17 19:45:33', NULL, '5965933', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1952, 'Mechanized Training', '2023-03-02 17:00:00', '2023-03-02 18:00:00', '', '#ecb200', 'Come learn how the Abrams works.', NULL, 0, '2023-03-01 16:51:06', '2025-12-17 19:45:33', NULL, '5965937', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1953, 'mission maker kick back', '2023-03-05 16:00:00', '2023-03-05 17:00:00', '', '#ecb200', 'Retry from last meeting.\nIm going to be outting on some info and requirements miving forward.....if you wanna make official missions and campaigns you prob should show up.', 43, 0, '2023-03-01 20:39:17', '2025-12-17 19:45:33', NULL, '5966307', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1954, 'Operation Tundra Tension P3', '2023-03-03 19:00:00', '2023-03-03 22:00:00', 'Saint Kapaulio (17th Operations Server)', '#FFFFFF', 'Event Details\n - Recently 17th Rangers have eliminated the enemies Howitzer presence in the AO, now it is time to take over the sky. Rangers are being tasked of sweeping the surrounding bases/towns before the Pathfinder Airbase, which they will then commit an invasion on one of the largest airports seen to this day. The Ardistan Army have committed a large amount of fighter jets and CAS planes to this airbase and do not hesitate on using them. Today we will be one step closer to taking all of Saint Kapaulio, this mission may be the most effective one yet in this process. \n\n\nAssets\n - 1x MH-60M DAP, 2x UH-60M Blackhawks, and a shit load of jets :)\n\n\nRequired Mods\n - Saint Kapaulio\nServer - 17th Operations Server\n\nMade by \n & \n ', 840, 0, '2023-03-03 03:03:08', '2025-12-17 19:45:33', NULL, '5967014', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1955, 'Operation Humanitarian', '2023-03-29 18:00:00', '2023-03-29 20:00:00', '', '#FFFFFF', 'ASSETS:\n3x HEMMIT Trucks loaded with food and water\n2x M6 little birds (1 for overwatch/cas, one for transport)\n2x MRAPs of command\'s choice.\n∞x Unarmmed transport vics of commander\'s choice\n\n', 57, 0, '2023-03-06 00:27:01', '2025-12-17 19:45:33', NULL, '5972529', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1956, 'NCO Leadership Training Course', '2023-03-09 19:00:00', '2023-03-09 22:00:00', 'Private Ops', '#ecb200', 'A dry run through of the Leadership Training course to qualify prospective NCOs. Restricted to Senior NCO leadership. SSGT+ ONLY UNLESS ASKED OTHERWISE.', 67, 0, '2023-03-06 04:19:51', '2025-12-17 19:45:33', NULL, '5972763', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1957, 'Co-Pilot Training & Qual', '2023-03-13 16:00:00', '2023-03-13 18:00:00', 'Northern Airfield', '#d89332', 'Note: \nit is strongly encouraged but not required that attendees have previously completed the Air Crew training before attempting this training. Also, because the role of co-pilot involves extensive use of the radio, all attendees are strongly encouraged to go to Eagle\'s Com Skills Training on March 6th\n\n \nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f50565c0-fdae-4483-ac65-4ccb8563ceb0/calendar/5961684\nSup gamers, it\'s the raddest pilot in the unit coming at you with another training. Following along in our training series of PVT to Pilot, we will be going over everything you need to know to be a successful co-pilot, as well as how to operate some co-pilot specific weaponry for certain CAS birds.\nThere will be two parts to this training: an informative section where I go over everything you need to know to fulfill the role of a co-pilot (should only take about 30-45 minutes), and a practical section where you can get some hands-on experience putting that information to use (might take up to an hour or more depending on attendance).\nEach attendee will assume the role of co-pilot at least once, and will have to plot a route to a pre-determined LZ point for a pilot (me) to follow, as well as use IR guided and laser guided weaponry to successfully destroy a vehicle.\nTraining doc I will be using to teach this course for people who wish to follow along or read ahead -> \n\n', 2225, 0, '2023-03-06 05:31:26', '2025-12-17 19:45:33', NULL, '5972815', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1958, 'Basic Training', '2023-03-06 17:00:00', '2023-03-06 19:00:00', 'Training server ', '#FFFFFF', 'Learn the basics that we use in the 17th. Be sure to check out the document and the new member guide before the training time.\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 918, 0, '2023-03-06 07:09:16', '2025-12-17 19:45:33', NULL, '5972821', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1959, '[Canceled] FTL FTX', '2023-03-31 18:00:00', '2023-03-31 20:00:00', 'Training Grounds', '#ecb200', 'Canceled IRL Came Up \n\n\nThis is the return of my FTL FTX! \n\nThis training will be focused on Assaulting towns and hardened targets. \n\nAs SL you will need to practice dividing up your Fire Teams, calling in Fire Support, and coordinating with your medic for CCP\'s\n\n As FTL you will practice clearing sections with your team, keeping tabs on your team and initiating plans and requesting support from your sister team and squad leads. \n\nIt will be RASP style where there will a debrief after every Obj. ', 6, 1, '2023-03-06 07:57:38', '2025-12-17 19:45:33', NULL, '5972829', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1960, 'RTO Training and Qual', '2023-03-11 15:00:00', '2023-03-11 18:00:00', '17th BN Training Range', '#ecb200', 'Learn how to be a RTO in this training.', 21, 0, '2023-03-06 14:32:09', '2025-12-17 19:45:33', NULL, '5973267', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1961, '[CANCELLED] Anti Armor School', '2023-03-12 17:30:00', '2023-03-12 19:30:00', 'Training Server', '#a250e8', '', 468, 1, '2023-03-07 00:55:10', '2025-12-17 19:45:33', NULL, '5974016', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1962, 'Rotary Pilot - Logistics Qual', '2023-03-08 21:00:00', '2023-03-08 22:00:00', 'Training Server at a TBD airfield', '#d89332', 'You\'re resident CW5 is dumb but here to help. Read up on the doc and let\'s have some fun getting qualed.', 27, 0, '2023-03-08 01:59:05', '2025-12-17 19:45:33', NULL, '5975052', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1963, 'Rotary Pilot - CAS Qual', '2023-03-12 20:00:00', '2023-03-12 21:00:00', 'Training Server at TBD airfield', '#d89332', 'This is the sexy one where you get to shoot stuff. Highly recommend JTAC to show up to this one so you can get an idea of what the call sounds like on the other end and how to apply that to when you\'re planning a strike and allocating assets.', 27, 0, '2023-03-08 02:07:33', '2025-12-17 19:45:33', NULL, '5975054', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1964, 'RRC Mission', '2023-03-11 16:00:00', '2023-03-11 17:30:00', '17th Ops Server', '#ecb200', 'WARNO to follow', NULL, 0, '2023-03-08 20:45:10', '2025-12-17 19:45:33', NULL, '5977129', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1965, 'Operation Field Day', '2023-03-10 19:00:00', '2023-03-10 22:00:00', '17th Private Ops Server', '#a250e8', '', 827, 0, '2023-03-10 22:06:49', '2025-12-17 19:45:33', NULL, '5981515', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1966, 'ECHO SMOKE SESH', '2023-03-12 16:00:00', '2023-03-12 17:00:00', 'TS or Discorod VOice', '#FFFFFF', 'We gonna chop it up about advancing echo\n\nhit that next level of super Saiyan ', 43, 0, '2023-03-11 13:18:33', '2025-12-17 19:45:33', NULL, '5983042', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1967, 'Basic Training.', '2023-03-13 13:30:00', '2023-03-13 15:30:00', '', '#d89332', '', 524, 0, '2023-03-12 04:05:15', '2025-12-17 19:45:33', NULL, '5985650', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1968, 'Anti Armor', '2023-03-14 18:00:00', '2023-03-14 20:30:00', 'Training Server', '#a250e8', 'ROUND THREE WILL THIS BE THE ONE', 468, 0, '2023-03-12 23:05:38', '2025-12-17 19:45:33', NULL, '5993515', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1969, 'Advanced UAV School', '2023-03-21 18:00:00', '2023-03-21 20:00:00', 'Training Server', '#a250e8', '', 468, 0, '2023-03-12 23:06:37', '2025-12-17 19:45:33', NULL, '5993516', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1970, 'Pathfinder Qualification', '2023-03-23 18:00:00', '2023-03-23 21:00:00', 'Private Operations Server', '#a250e8', '', 468, 0, '2023-03-13 03:01:20', '2025-12-17 19:45:33', NULL, '5993758', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1971, 'Basic Training', '2023-03-20 17:00:00', '2023-03-20 19:30:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\nThe training should take approximately 2:30 hours; however, it may run up to ~45 mins longer.\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 795, 0, '2023-03-13 03:53:02', '2025-12-17 19:45:33', NULL, '5993765', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1972, 'NCO Leadership Training Course', '2023-03-19 18:00:00', '2023-03-19 21:00:00', 'Private Ops Server', '#FFFFFF', 'If you are a current NCO with the rank of SGT or above, you are REQUIRED to take this course by the end of Ocean’s term as BCO at least ONCE to maintain your current rank. If you are a current Corporal, you are required to take this course as a PREREQUISITE to being promoted to anything higher.\nThis course is required for all Alpha and Echo NCOs.\n\nThere will be multiple run throughs of this course.', 67, 0, '2023-03-13 04:53:49', '2025-12-17 19:45:33', NULL, '5993776', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1973, 'Stitchin\' & Bitchin\'', '2023-03-19 16:00:00', '2023-03-19 18:00:00', 'TeamSpeak ChowHall TS', '#355bf8', 'A roundtable event for all things medical. Bring ideas, questions, concerns & exaggerated stories of your bravery and excellence as CLS/68W. All are welcome to attend, even if you just want to bitch about how over-complicated medical has become and think medical should be EZ. Alpha & Echo members very welcome.\nThis will be held in the Chow Hall on TeamSpeak, however, there is a possibility that it could transition to the Training Server if needed.', 2223, 0, '2023-03-13 04:55:49', '2025-12-17 19:45:33', NULL, '5993777', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1974, '68W Training', '2023-03-30 18:00:00', '2023-03-30 20:00:00', 'Training Server-Medical Area', '#6cba50', 'A training course for all you aspiring combat medics to earn your 68W badge.\n\n68W training document: \n\n\nThere will be no official qualification testing, however we will have a practical exercise at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treated injured/unconscious individuals\n(2) Correct method of triage during a Mass Cas event\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.) ', 2223, 0, '2023-03-13 04:59:23', '2025-12-17 19:45:33', NULL, '5993778', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1975, 'Basic Training', '2023-03-27 17:00:00', '2023-03-27 19:00:00', 'Training Server', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\r\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\r\nThe training should take approximately 2:30 hours; however, it may run up to ~45 mins longer.\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 2222, 0, '2023-03-13 16:09:13', '2025-12-17 19:45:33', NULL, '5995351', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1976, 'Server down for MODPACK SWITCH FOR TESTING', '2023-03-17 21:30:00', '2023-03-18 11:00:00', '', '#FFFFFF', '', 38, 0, '2023-03-15 01:23:53', '2025-12-17 19:45:33', NULL, '5997410', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1977, '[Cancelled] Ranger Training - Assaulting Fortified', '2023-03-20 18:00:00', '2023-03-20 20:00:00', 'Training Server', '#6cba50', 'Critical Skills - Attacking fortified buildings, compounds, and other structures effectively. Sometimes, you need to think outside the box.', 468, 1, '2023-03-16 04:48:42', '2025-12-17 19:45:33', NULL, '5998939', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1978, 'Operation Georgia Black Snake Pt. 2', '2023-04-01 18:00:00', '2023-04-01 21:00:00', '', '#ecb200', 'EVENT DETAILS\n:\nSERVER\n: 17th Private Operations Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED:\n TBD\n\n\nOPORD\n: \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/601819432', 81, 0, '2023-03-16 19:32:05', '2025-12-17 19:45:33', NULL, '6028191', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1979, 'Admin Prepper', '2023-03-19 16:00:00', '2023-03-19 17:00:00', 'Discord Training VC', '#ecb200', 'Will cover the basic functions of a 17th administrator.\nI will show everyone how it works, then I will (try) to let everybody get some hands on experience. \nDM me your emails so I can add you to the Battalion Tracker. Also feel free to send any specific requests on subject matters ahead of time.', 2222, 0, '2023-03-17 21:31:56', '2025-12-17 19:45:33', NULL, '6030009', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1980, '[Cancelled] Modpack testing at a less absurd hour', '2023-03-27 19:00:00', '2023-03-27 19:30:00', '', '#FFFFFF', 'Testing for USAF compat (and anything else that might need to be tested)', 28, 1, '2023-03-21 03:13:51', '2025-12-17 19:45:33', NULL, '6036032', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1981, 'Server Reboot / Updates', '2023-03-25 23:00:00', '2023-03-26 23:00:00', '', '#FFFFFF', 'Server uptime is ~ 50+ Days\nUpdates will include but not limited to:', 38, 0, '2023-03-23 02:31:30', '2025-12-17 19:45:33', NULL, '6039339', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1982, 'Pathfinder Bookwork', '2023-03-27 18:00:00', '2023-03-27 20:00:00', 'Training Server', '#a250e8', '', 468, 0, '2023-03-23 23:33:51', '2025-12-17 19:45:33', NULL, '6040066', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1983, 'Basic Training', '2023-04-14 13:00:00', '2023-04-14 15:30:00', '', '#d89332', '', 15, 0, '2023-03-23 23:38:09', '2025-12-17 19:45:33', NULL, '6040068', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1984, 'Ranger Training - Assaulting Fortified Compounds/Positions', '2023-03-28 18:00:00', '2023-03-28 20:00:00', 'Training Server', '#6cba50', '', 468, 0, '2023-03-25 20:54:27', '2025-12-17 19:45:33', NULL, '6042717', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1985, 'Echo Orientatiom', '2023-03-27 18:00:00', '2023-03-27 19:00:00', '', '#d89332', '', 28, 0, '2023-03-26 18:06:28', '2025-12-17 19:45:33', NULL, '6043041', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1986, 'AIT-1', '2023-04-04 18:00:00', '2023-04-04 21:00:00', 'Training server', '#FFFFFF', 'We will discuss fireteam positions to include Anti Tank, Automatic Rifleman, Grenadier, and other such prestigious jobs. \nIn addition, movement drills, rockets, vs tanks, vs rpgs, vs mortars, and why they sound different. \nWe will also include picking good CCP locations and what makes some of them bad.', 933, 0, '2023-03-27 15:56:42', '2025-12-17 19:45:33', NULL, '6044838', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1987, 'AIT-2', '2023-04-18 18:00:00', '2023-04-18 21:00:00', 'Training server', '#FFFFFF', 'Bounding, peeling, battle drills and maneuvers.', 933, 0, '2023-03-27 15:57:31', '2025-12-17 19:45:33', NULL, '6044839', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1988, '[Canceled] AIT-3', '2023-05-02 18:00:00', '2023-05-02 21:00:00', 'Training server', '#FFFFFF', 'MOUT training', 933, 1, '2023-03-27 15:57:55', '2025-12-17 19:45:33', NULL, '6044840', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1989, 'AIT-4', '2023-05-16 18:00:00', '2023-05-16 21:00:00', 'Training server', '#FFFFFF', 'CQB drills and compound clearing.', 933, 0, '2023-03-27 15:59:15', '2025-12-17 19:45:33', NULL, '6044842', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1990, 'Operation Red Shark', '2023-03-31 18:00:00', '2023-03-31 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: \nThere is blood in the water! \nOnce a Democratic State, Sahrani has fallen into the clutches of Communism... You are tasked with Liberating the Island Nation. \n\nOBJECTIIVES\nSERVER\n: \nOps Server\nMAP\n:\nSahrani \nADITIONAL MODS REQUIRED\n:\nNONE\nASSET LIST\n\r\n', 2227, 0, '2023-03-28 18:57:44', '2025-12-17 19:45:33', NULL, '6045684', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1991, 'echo smoke session', '2023-04-02 14:00:00', '2023-04-02 15:00:00', '', '#ecb200', 'Follow up on all the cool things we wanna do and shir like that', 43, 0, '2023-03-30 14:46:57', '2025-12-17 19:45:33', NULL, '6047354', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1992, '[Canceled] meeting with ocean and command', '2023-04-02 18:00:00', '2023-04-02 20:30:00', 'chow hall teamspeak', '#ecb200', 'meeting to cover medical changes', 243, 1, '2023-04-01 00:17:47', '2025-12-17 19:45:33', NULL, '6048742', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1993, 'Basic Training', '2023-04-04 15:30:00', '2023-04-04 18:00:00', '17th Training Server', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\r\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\r\nThe training should take approximately 2:30 hours; however.\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 840, 0, '2023-04-01 14:27:40', '2025-12-17 19:45:33', NULL, '6048955', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1994, 'OPERATION BURNING PHOENIX', '2023-04-08 18:00:00', '2023-04-08 21:00:00', '17th OPS SERVER', '#FFFFFF', '\nEVENT DETAILS\n: TBD\nSERVER\n: 17th Private Operations Server\nMAP\n: FFAA LYTHIUM\nADITIONAL MODS REQUIRED:\n none', 2227, 0, '2023-04-02 16:06:59', '2025-12-17 19:45:33', NULL, '6050104', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1995, 'JTAC Bookwork', '2023-04-06 18:30:00', '2023-04-06 19:30:00', 'Training Server', '#a250e8', 'JTAC Bookwork. \n\nIf you have qualified but need some practice or updating, this is a great time to refresh. Please read the doc, and bring a pad of paper. ', 501, 0, '2023-04-02 20:13:45', '2025-12-17 19:45:33', NULL, '6050663', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1996, 'Mechanized Training', '2023-04-03 18:00:00', '2023-04-03 19:00:00', '', '#6cba50', 'Come learn the bradley n shit', NULL, 0, '2023-04-02 20:18:54', '2025-12-17 19:45:33', NULL, '6050667', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1997, 'BCO Open Office hours', '2023-04-07 17:00:00', '2023-04-07 19:00:00', 'Chow hall on TS', '#ecb200', 'Have any issues you want raised in a semi private setting before the roundtable? Wanna bend the CO\'s ear and make a case for something before the new campaign? Do you just wanna chat? Well the BN CO will be in the chow hall for two hours to have frank discussions with anyone who would like to.', 81, 0, '2023-04-03 13:31:09', '2025-12-17 19:45:33', NULL, '6051604', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1998, 'CLS Training', '2023-04-10 18:00:00', '2023-04-10 21:00:00', 'Training Server- Medical Area', '#FFFFFF', 'Join us for Combat Life Saver training! Learn how a CLS can be so much more than an ammo bearer for the medic! \nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training.\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER THAN THE 7PM-10PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n', 2223, 0, '2023-04-04 00:00:51', '2025-12-17 19:45:33', NULL, '6052056', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (1999, '[CANCELLED] Triage & Mass Cas Advanced Training', '2023-04-20 18:00:00', '2023-04-20 20:00:00', 'Training Server- Medical Area', '#ecb200', 'A training for both medical and non-medical personnel focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to secure and manage any Mass Cas quickly and efficiently.\nThink of this training as AIT for Mass Casualty Incidents!\n\n', 2223, 1, '2023-04-04 00:03:43', '2025-12-17 19:45:33', NULL, '6052057', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2000, '[CANCELED]Master Free Fall', '2023-04-07 18:00:00', '2023-04-07 19:00:00', 'north airfield', '#a250e8', 'Come learn how to fall with style', 918, 1, '2023-04-04 02:20:56', '2025-12-17 19:45:33', NULL, '6052107', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2001, 'Document Rework Day', '2023-04-06 11:00:00', '2023-04-06 18:00:00', 'Training VC - Discord', '#FFFFFF', 'This will be a very long event that not a single person is required to go to, nor will any cookies be given out for attending. I will be in the call going over every....single....training document we have. For each document I will be private messaging a few subject matter expert\'s, for assistance on the rework. Some docs we may just admire and move on, some we may completely reformat or start from scratch if needed. ', 840, 0, '2023-04-04 18:43:09', '2025-12-17 19:45:34', NULL, '6052569', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2002, 'Operation Hidden Dark', '2023-04-28 18:00:00', '2023-04-28 20:00:00', '', '#FFFFFF', '\nLocal IDAP humanitarian efforts have been disrupted by a Taliban raid. Seven IDAP personnel were captured in the raid and are being held hostage in exchange for US armored assets. This can not stand.', 57, 0, '2023-04-04 19:31:16', '2025-12-17 19:45:34', NULL, '6052605', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2003, 'Operation Black Blaze', '2023-05-19 18:00:00', '2023-05-19 20:00:00', '', '#FFFFFF', '\nRecently gathered intel has informed us of the transport of two SS-21 Scarabs (9M79B) by Russian forces across Russian friendly, but not held, areas. It is believed that these contain nuclear warheads and thus are highly desired to be captured, disarmed, and destroyed.', 57, 0, '2023-04-04 19:31:45', '2025-12-17 19:45:34', NULL, '6052606', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2004, '(Canceled) Flex op', '2023-06-09 18:00:00', '2023-06-09 20:00:00', '', '#FFFFFF', 'Sorry, messed up my weeks', 57, 1, '2023-04-04 19:31:59', '2025-12-17 19:45:34', NULL, '6052607', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2005, 'Operation Brutus', '2023-04-05 18:00:00', '2023-04-05 20:30:00', '17th Private Ops Server', '#a250e8', '', 827, 0, '2023-04-04 22:14:25', '2025-12-17 19:45:34', NULL, '6053195', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2006, 'Operation Hobson\'s Reflect - Part 2', '2023-04-14 18:00:00', '2023-04-14 21:00:00', '', '#FFFFFF', '', 46, 0, '2023-04-04 23:15:51', '2025-12-17 19:45:34', NULL, '6053198', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2007, 'Basic Training', '2023-04-08 14:00:00', '2023-04-08 16:30:00', 'Recruitment room 1 in TS', '#FFFFFF', 'Come learn the basics to play with the 17th\nPlease have modpack downloaded and teamspeak plugin ready beforehand. If you\'re having trouble refer to the New Members Guide in guilded; linked above. If you\'re still having trouble, try contacting an NCO and we can help', 39, 0, '2023-04-06 22:33:10', '2025-12-17 19:45:34', NULL, '6055291', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2008, 'Operation Free fall', '2023-04-07 18:00:00', '2023-04-07 20:00:00', '', '#FFFFFF', '(Filling in for Bad dad)\nEVENT DETAILS\n: \nContact was lost with a C-130 over Russian airspace. Find the plane, rescue any survivors, and recover the flight recorder. \n\nOBJECTIIVES\nSERVER\n: \nOps Server\nMAP\n:\nNamalsk\nADITIONAL MODS REQUIRED\n:\nNONE', 57, 0, '2023-04-07 11:22:32', '2025-12-17 19:45:34', NULL, '6055808', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2009, 'Arma Server Mod Updates', '2023-04-09 19:00:00', '2023-04-09 21:00:00', '', '#ecb200', '', 38, 0, '2023-04-07 16:45:13', '2025-12-17 19:45:34', NULL, '6055993', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2010, '17th Community Round table', '2023-04-16 14:00:00', '2023-04-16 16:00:00', '', '#FFFFFF', 'Do not post your notes here, post them to the commmunity roundtable post\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/31a767aa-f57a-45e5-8929-d25183bce25e/forums/1036746268', 81, 0, '2023-04-07 18:33:23', '2025-12-17 19:45:34', NULL, '6056085', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2011, 'OPERATION BLACK DAGGER', '2023-04-12 18:00:00', '2023-04-12 21:00:00', '', '#ecb200', '\n\n\nEVENT DETAILS\n: \r\n\r\nDimitriy Vilasov, a former KGB Directorate Operative with a militant separatist faction known as The New Soviet Republic, has taken control of the former Nato nation of Suursaari in the Gulf of Finland.\r\n\rAfter seizing the island the civilian population were either forcibly relocated or killed, and Dimitriy declared Suursaari the first sovereign state of the New Soviet Republic.\r\n\rOver the last six months Vilasov has been able to secure multiple black market Nuclear ICBM Launchers and has positioned them on the island as an invasion deterrent. We are being deployed to disable the nukes and eliminate the threat from TNSR. \n\r\n\r\n\r\nOBJECTIVES\r\n\r\nASSET LIST\n3X RHIB GUNBOATS\n\nSERVER\n: 17th Private Operations Server\nMAP\n: \n\nADITIONAL MODS REQUIRED: \n\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1680294609&searchtext=Suursaari', 2227, 0, '2023-04-08 19:08:01', '2025-12-17 19:45:34', NULL, '6056916', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2012, '[Rescheduled] Co-Pilot Training', '2023-04-11 16:00:00', '2023-04-11 17:30:00', 'Main Airfield', '#FFFFFF', 'come learn how to co(operatively)-pilot!\ni can do three people only because i only have the attention span for three. first come, first served', 45, 0, '2023-04-10 23:14:51', '2025-12-17 19:45:34', NULL, '6059290', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2013, 'Operation Wish You Were Here', '2023-04-15 18:00:00', '2023-04-15 21:30:00', '', '#d89332', 'OPORD: \n', 19, 0, '2023-04-11 19:11:07', '2025-12-17 19:45:34', NULL, '6060328', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2014, '[CANCELLED]Copilot Training', '2023-04-15 16:00:00', '2023-04-15 17:00:00', 'Training Server', '#FFFFFF', '', 45, 1, '2023-04-11 19:51:52', '2025-12-17 19:45:34', NULL, '6060337', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2015, 'OPERATION RED HAMMER', '2023-04-21 18:00:00', '2023-04-21 21:00:00', '', '#FFFFFF', '\rObjectives:\r\n\rSituation:\r\nThe enemy has established a strong presence in the region, using an airfield to launch operations against friendly forces. Intelligence reports suggest that the enemy is heavily reliant on its communications infrastructure, fuel reserves, and ammunition depots. The enemy is holding several hostages, including a high-ranking officer, at the airfield. The mission is to cripple the enemy\'s capabilities by destroying key infrastructure and freeing the hostages.\r\n\rExecution:\nInitial insertion to the AO will be via Paradrop\n\r\n\rOBJ 1: Sabotage enemy fuel reserves and ammunition depots\nThe first objective is to sabotage the enemy\'s fuel reserves and ammunition depots. Intelligence reports suggest that there are several fuel reserves and ammunition depots located in a nearby industrial area. The team will move to the area and neutralize the enemy guards. Once inside, they will set explosive charges to destroy the supplies, fuel, and vehicles.\n\r\n\rOBJ 2: Destroy the enemy communications tower\r\nThe second objective is to destroy the enemy communications towers, which are located on the top of nearby hills. The towers are heavily guarded, and the enemy has set up anti-air defenses around the area. The team will infiltrate the area via a nearby forest and move to a vantage point overlooking the towers. Once in position, the team will neutralize the enemy guards and destroy the towers using explosives.\r\n\rOBJ 3: Rescue and evacuate hostages from an enemy airfield\r\nThe final objective is to rescue and evacuate the hostages from the enemy airfield. The team will infiltrate the airfield and neutralize any guards along the way. Once inside, the team will locate and free the hostages and escort them to a nearby extraction point. The team will then extract to a safe location.\r\n\r\nSERVER\n: 17th Private Operations Server\nMAP\n: \n\nADITIONAL MODS REQUIRED:\n\n\n\nhttps://steamcommunity.com/workshop/filedetails/?id=2947655994', 2227, 0, '2023-04-11 23:04:17', '2025-12-17 19:45:34', NULL, '6061037', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2016, 'OPERATION SCARLET SPEAR', '2023-05-05 18:00:00', '2023-05-05 21:00:00', '', '#FFFFFF', 'Objectives:\r\nTBD\r\n\rExecution:\nTBD\r\n\r\nSERVER\n: 17th Private Operations Server\nMAP\n: \n\nADITIONAL MODS REQUIRED:\n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2947655994&searchtext=%C5%A0umava\nSUGGESTED WHITELIST MODS\n\n - \nSET VIEW DISCTANCE TO 1500M FOR BEST MISSION PERFORMANCE\n\n', 2227, 0, '2023-04-11 23:05:00', '2025-12-17 19:45:34', NULL, '6061039', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2017, 'ACO Candidate Planning', '2023-04-13 19:00:00', '2023-04-13 20:30:00', 'Chow Hall TS', '#ecb200', 'This is an optional event for the Alpha Company Candidates who want to propose a plan of execution for this week’s Saturday operation.\nWhile the nature of this meeting is meant specifically for candidates, you are allowed to attend if you are not one of the candidates. please mute if you do so unless directly addressed.\nOPORD Link: \n', 67, 0, '2023-04-11 23:11:37', '2025-12-17 19:45:34', NULL, '6061099', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2018, 'CoPilot Qualification - EU friendly edition', '2023-04-15 02:00:00', '2023-04-15 03:00:00', 'Training server - wherever it is set to at an airfield probably', '#FFFFFF', 'Wake up, have your cuppa and a biscuit, maybe even a Full Irish, hell an Irish Coffee too because lord I\'ll need one at this time.\n\nAll aside anyone who can make it are welcome to attend so we can have a full roster for the OP.\nExcellent see you there.', 27, 0, '2023-04-12 00:50:33', '2025-12-17 19:45:34', NULL, '6061171', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2019, 'Operation Jungle Maniac RRC 1st Operation', '2023-04-20 18:00:00', '2023-04-20 20:30:00', 'Private Ops Server', '#df5353', 'RRC scouting deployment for Operation Jungle Maniac 1 ', 468, 0, '2023-04-12 22:25:11', '2025-12-17 19:45:34', NULL, '6062934', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2020, 'Echo Op Practice - Air Assault and Formation Flying', '2023-04-14 21:00:00', '2023-04-14 22:00:00', 'Training server', '#ecb200', '30 minutes to an hour tops to establish what we\'ll be doing Saturday', 27, 0, '2023-04-14 17:13:55', '2025-12-17 19:45:34', NULL, '6065813', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2021, 'Mechanized Combat Training', '2023-04-17 17:30:00', '2023-04-17 18:30:00', '', '#d89332', 'Tips, tricks, and fundamentals of IFV and light vehicle combat', 7, 0, '2023-04-15 19:07:57', '2025-12-17 19:45:34', NULL, '6066316', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2022, 'Op Stille Nacht', '2023-05-26 18:00:00', '2023-05-26 21:00:00', '17th Private ops', '#FFFFFF', 'Event Details:The Small nation-state of Livionia has invaded the western half of Germnay in the Fulda Gap, the rangers are to go and clear all hostiles in the area and secure a weapons factory.\nServer:17th Private Ops\nMap: \n\nAdditional Mods: \n\n(note: echo gonna eat good during this)', 1039, 0, '2023-04-16 20:38:37', '2025-12-17 19:45:34', NULL, '6067245', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2023, 'Basic Training', '2023-04-19 15:30:00', '2023-04-19 18:00:00', '17th Training Server', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\r\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\r\nThe training should take approximately 2:30 hours; however, it may run up to ~45 mins longer.\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508\n', 840, 0, '2023-04-16 23:10:55', '2025-12-17 19:45:34', NULL, '6067396', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2024, 'JTAC Qualification', '2023-04-21 18:30:00', '2023-04-21 20:00:00', 'Training Server', '#a250e8', 'JTAC Qualification for those that have completed the JTAC bookwork. \n\nQualification\r\nPassing Criteria:\r\nFailure Criteria:\r\nShould A Failure Be Issued\r\n', 501, 0, '2023-04-17 01:36:05', '2025-12-17 19:45:34', NULL, '6067437', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2025, 'NCO Leadership Course', '2023-04-23 12:00:00', '2023-04-23 15:00:00', 'Private Ops Server', '#FFFFFF', 'This course timeframe is directed towards our EU members, but is open for all NCOs if able to attend.\n\nIf you are a non-NCO and wish to attend, you may.\n\nIf you are a current NCO with the rank of SGT or above, you are REQUIRED to take this course by the end of Ocean’s term as BCO at least ONCE to maintain your current rank. If you are a current Corporal, you are required to take this course as a PREREQUISITE to being promoted to anything higher.\nThis course is required for all Alpha and Echo NCOs.\n\nThere will be multiple run throughs of this course', 67, 0, '2023-04-17 03:17:07', '2025-12-17 19:45:34', NULL, '6067457', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2026, 'NCO Leadership Course', '2023-04-27 18:00:00', '2023-04-27 21:00:00', 'Private Ops', '#FFFFFF', 'If you are a non-NCO and wish to attend, you may.\n\nIf you are a current NCO with the rank of SGT or above, you are REQUIRED to take this course by the end of Ocean’s term as BCO at least ONCE to maintain your current rank. If you are a current Corporal, you are required to take this course as a PREREQUISITE to being promoted to anything higher.\nThis course is required for all Alpha and Echo NCOs.\n\nThere will be multiple run throughs of this course', 67, 0, '2023-04-17 20:28:09', '2025-12-17 19:45:34', NULL, '6068078', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2027, 'JTAC/CAS Hip pocket training', '2023-04-18 18:00:00', '2023-04-18 20:00:00', '', '#ecb200', 'All are welcome, woukd greatly appreciate any pilots that want to get some CAS reps. \nI want to primarily focus on Hotel missions in a TIC situation, transmitting the HP and mission in a clear but expeditious manner.', 516, 0, '2023-04-17 21:29:10', '2025-12-17 19:45:34', NULL, '6068094', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2028, 'Operation Jungle Maniac 1', '2023-04-22 18:00:00', '2023-04-22 20:30:00', 'Private Ops Server', '#df5353', 'EVENT DETAILS\n:\nSERVER\n: 17th Private Operations Server\nMAP\n: Chernarus\nADITIONAL MODS REQUIRED:\n None\n\n\nOPORD: \nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/811804112', 468, 0, '2023-04-18 00:48:01', '2025-12-17 19:45:34', NULL, '6068252', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2029, 'Operation Jungle Maniac 2', '2023-04-29 18:00:00', '2023-04-29 20:30:00', 'Private Ops Server', '#df5353', 'EVENT DETAILS\n:\nSERVER\n: 17th Private Operations Server\nMAP\n: Chernarus\nADITIONAL MODS REQUIRED:\n None\n\n\nOPORD:', 468, 0, '2023-04-18 00:48:51', '2025-12-17 19:45:34', NULL, '6068253', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2030, 'Operation Jungle Maniac 3', '2023-05-06 18:00:00', '2023-05-06 20:30:00', 'Private Ops Server', '#df5353', 'EVENT DETAILS\n:\nSERVER\n: 17th Private Operations Server\nMAP\n: Chernarus\nADITIONAL MODS REQUIRED:\n None\n\n\nOPORD:\n \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/313723516', 468, 0, '2023-04-18 00:48:51', '2025-12-17 19:45:34', NULL, '6068254', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2031, 'Operation Jungle Maniac 5', '2023-05-27 18:00:00', '2023-05-27 20:30:00', '', '#df5353', 'EVENT DETAILS\n:\nSERVER\n: 17th Private Operations Server\nMAP\n: Chernarus\nADITIONAL MODS REQUIRED:\n None\n\n\nOPORD: https://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/1663055806', 468, 0, '2023-04-18 00:53:04', '2025-12-17 19:45:34', NULL, '6068280', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2032, 'Operation Jungle Maniac 6', '2023-06-03 18:00:00', '2023-06-03 20:30:00', '', '#df5353', 'EVENT DETAILS\n:\nSERVER\n: 17th Private Operations Server\nMAP\n: Chernarus\nADITIONAL MODS REQUIRED:\n None\n\n\nOPORD: https://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/253954547', 468, 0, '2023-04-18 00:53:28', '2025-12-17 19:45:34', NULL, '6068281', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2033, 'Operation Killzone', '2023-04-19 18:00:00', '2023-04-19 20:30:00', '17th Private Ops Server', '#a250e8', '\r', 827, 0, '2023-04-19 00:08:54', '2025-12-17 19:45:34', NULL, '6069093', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2034, 'Basic Training', '2023-04-24 13:30:00', '2023-04-24 16:30:00', 'Trainign Server', '#FFFFFF', 'Come and get your basic done, and if we have time try your hand at the marksman and sharpshooter quals!', 524, 0, '2023-04-19 14:19:04', '2025-12-17 19:45:34', NULL, '6069372', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2035, '(Canceled) RRC FTX', '2023-05-04 18:00:00', '2023-05-04 21:00:00', 'Private Ops server', '#FFFFFF', 'This will be a FTX with a pre-defined plan. Briefing will occur in game before getting kitted up.\nFTX will be for 4-10 people but is expandable to more if more sign up\nhave 2 slots for actors if anyone wants to do it.\nThis FTX will use several RRC specific skill sets, including HALO/HAHO, Diving, Direct action, and drone usage to name a few.\nParticipants are not required to be RRC qualified, but having knowledge of the skills above will be beneficial. \nFTX will end with detailed debriefing and discussions.\nspecific slots will include leadership, medic, drone operator. If you would like one of these, post on the event your preferred slot. ', 483, 1, '2023-04-20 16:50:53', '2025-12-17 19:45:34', NULL, '6070142', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2036, '68 whiskey', '2023-05-01 18:00:00', '2023-05-01 21:00:00', 'medical training grounds', '#ecb200', 'It is one of two parts to get medically qualified. CLS is the other part. Even if you’re already medically qualified you are welcome to come and get your skills sharpened.', 280, 0, '2023-04-21 03:05:41', '2025-12-17 19:45:34', NULL, '6070780', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2037, 'Demo Training', '2023-04-25 18:00:00', '2023-04-25 19:30:00', 'Training Grounds', '#a250e8', '', 918, 0, '2023-04-23 08:06:11', '2025-12-17 19:45:34', NULL, '6071943', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2038, 'EOD Training', '2023-04-28 18:00:00', '2023-04-28 19:00:00', 'Training Grounds', '#a250e8', '', 918, 0, '2023-04-23 08:38:21', '2025-12-17 19:45:34', NULL, '6071944', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2039, 'Meetings with iceberg ken', '2023-04-25 18:30:00', '2023-04-25 20:30:00', 'team speak', '#FFFFFF', 'wE NEED TO CHJOP IT UP AND GET IT POPPIN AND COME UP WITH A SOLUTION FOR RECRUITMENT ', 43, 0, '2023-04-23 21:08:02', '2025-12-17 19:45:34', NULL, '6072398', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2040, 'Demo Training', '2023-04-27 20:00:00', '2023-04-27 21:00:00', '', '#a250e8', 'Come blow shit up.', 951, 0, '2023-04-23 23:49:24', '2025-12-17 19:45:34', NULL, '6072453', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2041, 'Forward Observer Bookwork', '2023-05-02 20:00:00', '2023-05-02 21:59:00', '', '#d89332', 'Learn to ghost thots and observe shots AKA how to be an FO. \nIf time and attendance permits I\'ll host a qualification.\n\nDocumentation: https://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f3511d79-10fb-4784-b21c-ffab119b293f/docs/2013726556', 516, 0, '2023-04-24 02:33:34', '2025-12-17 19:45:34', NULL, '6072528', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2042, 'Basic Training', '2023-04-27 13:00:00', '2023-04-27 15:00:00', '', '#FFFFFF', 'Rescheduled from Monday.\nCome and get your basic done, and learn how to survive your first few ops!', 524, 0, '2023-04-24 20:39:24', '2025-12-17 19:45:34', NULL, '6072941', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2043, 'Missions with KEN', '2023-04-26 18:00:00', '2023-04-26 21:00:00', '', '#a250e8', 'yo its a mission wit ken we gonna be hitting a whitelisted map\n\n\n\n\n\ngrab that map doeeeeee\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1926513010', 43, 0, '2023-04-25 02:49:40', '2025-12-17 19:45:34', NULL, '6073023', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2044, '17th Recruitment Follow up', '2023-05-23 19:30:00', '2023-05-23 20:30:00', 'TeamSpeak Command Office', '#FFFFFF', 'By this point, we should have a revamped recruitment "post" and decisions will need to be made regarding the future of 17th recruitment.', 81, 0, '2023-04-26 00:28:42', '2025-12-17 19:45:34', NULL, '6073678', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2045, 'ECHO SMOKE SESH', '2023-04-30 14:00:00', '2023-04-30 15:30:00', 'Teamspeak or Discord', '#d89332', 'We gonna chop it up about trainings at the bare minium\n\ni want everyone RTO/FO trained and qualed by the begining of the next campaign\n\nThe implementation of Drones\n\nand last but not least GUN TRUCKS GUN TRRUCKS GUN TRUCKS\n\n\nIF U HAVE A TOPIC THAT U WANT TO DISCUSS JSUT DROP A LINE IN THE REPLIES.\n\n\n', 43, 0, '2023-04-27 13:13:40', '2025-12-17 19:45:34', NULL, '6075556', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2046, 'FTX - Identifying and Locating IDF', '2023-05-12 18:00:00', '2023-05-12 20:00:00', 'Training Server', '#6cba50', 'This FTX is designed to help you listen for and subsequently locate and destroy enemy IDF as opposed to screaming "IDF!" at the top of your lungs and running around in a panic. This will be split into 3 sections.', 46, 0, '2023-04-27 22:55:56', '2025-12-17 19:45:34', NULL, '6076020', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2047, 'Sniper Course', '2023-05-07 18:00:00', '2023-05-07 20:00:00', 'Private Ops Sever (Can change the Training Server if needs be)', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f3511d79-10fb-4784-b21c-ffab119b293f/docs/313452', 46, 0, '2023-04-27 23:31:53', '2025-12-17 19:45:34', NULL, '6076027', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2048, 'MIssion maker smoke sesh', '2023-05-14 14:00:00', '2023-05-14 15:00:00', 'TS or DIScord', '#df5353', 'we are going to chop it up about ALive and possible replacements\n\n\nif ther eare any new mission makers hit em wit the guidelines\n\n\nshouldnt be too long of a meeting\n', 43, 0, '2023-04-28 12:54:24', '2025-12-17 19:45:34', NULL, '6076415', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2049, 'Heavy Weapons School', '2023-05-01 19:00:00', '2023-05-01 20:30:00', 'Training Server', '#6cba50', 'Learn to use Crew Served Weapons, AT weapons, etc effectively.\nOne of two courses required for the Heavy Weapons Ribbon.', 468, 0, '2023-04-29 17:38:47', '2025-12-17 19:45:34', NULL, '6079840', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2050, 'Triage & Mass Cas Advanced Training', '2023-05-08 18:00:00', '2023-05-08 20:00:00', 'Training Server-Medical Area', '#ecb200', 'A training for both medical and non-medical personnel focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to secure and manage any Mass Cas quickly and efficiently.\nThink of this training as AIT for Mass Casualty Incidents!\n\n', 2223, 0, '2023-04-30 06:33:14', '2025-12-17 19:45:34', NULL, '6080489', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2051, 'Operation Postcard', '2023-05-03 18:00:00', '2023-05-03 20:30:00', 'Private Ops Server', '#a250e8', '', 827, 0, '2023-05-01 04:18:49', '2025-12-17 19:45:34', NULL, '6083398', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2052, 'Mission for mod testing', '2023-05-05 21:30:00', '2023-05-06 00:30:00', '', '#FFFFFF', '\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=1990653162\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2603942867', 46, 0, '2023-05-04 13:24:22', '2025-12-17 19:45:34', NULL, '6088220', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2053, 'Mission for mod testing: Part 2', '2023-05-08 20:30:00', '2023-05-08 22:30:00', '', '#FFFFFF', '', 46, 0, '2023-05-06 05:08:09', '2025-12-17 19:45:34', NULL, '6092644', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2054, '[RESCHEDULED TO TUESDAY] Basic Training', '2023-05-15 17:00:00', '2023-05-15 19:30:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\nThe training should take approximately 2:30 hours; however, it may run up to 45 mins longer.\n', 795, 0, '2023-05-06 18:46:56', '2025-12-17 19:45:34', NULL, '6093445', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2055, 'Basic Training', '2023-05-22 17:00:00', '2023-05-22 19:30:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#FFFFFF', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\nThe training should take approximately 2:30 hours; however, it may run up to 45 mins longer.\n', 795, 0, '2023-05-06 18:48:07', '2025-12-17 19:45:34', NULL, '6093473', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2056, 'RASP', '2023-05-13 18:00:00', '2023-05-13 21:00:00', '', '#df5353', 'What is RASP?: \n', 81, 0, '2023-05-06 20:51:24', '2025-12-17 19:45:34', NULL, '6093504', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2057, '[CANCELED] Moneyshot Training Day', '2023-05-09 18:00:00', '2023-05-09 20:00:00', 'Training Server', '#d89332', 'We gonna get some practice being a mortar element, driving around setting up and breaking down guns and most importantly putting rounds down range hitting targets and stacking bodies.', 28, 1, '2023-05-07 02:10:12', '2025-12-17 19:45:34', NULL, '6093692', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2058, '[Cancelled] Mechanized Training', '2023-05-10 18:00:00', '2023-05-10 19:00:00', 'Training Server', '#ecb200', 'Come learn the basics of crewing force multipliers.', NULL, 1, '2023-05-08 11:35:35', '2025-12-17 19:45:34', NULL, '6096374', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2059, 'Basic Trainig', '2023-05-12 15:30:00', '2023-05-12 18:00:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#ecb200', 'Welcome to the 17th! This is the basic training course required for all members. Follow the new member guide in the document below. Learn the basics and tactics used to operate effectively and efficiently in the unit. See you in the training server!\n\n ', 2226, 0, '2023-05-08 17:36:41', '2025-12-17 19:45:34', NULL, '6097361', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2060, 'Operation Jungle Maniac Pt 4', '2023-05-20 18:00:00', '2023-05-20 20:30:00', '', '#df5353', 'EVENT DETAILS\n:\nSERVER\n: 17th Private Operations Server\nMAP\n: Chernarus\nADITIONAL MODS REQUIRED:\n None\n\n\nOPORD:', 468, 0, '2023-05-08 22:23:30', '2025-12-17 19:45:34', NULL, '6097414', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2061, 'Operation Scarlet Letter', '2023-05-11 19:00:00', '2023-05-11 21:00:00', 'Private Ops Server', '#ecb200', '', 827, 0, '2023-05-08 23:58:58', '2025-12-17 19:45:34', NULL, '6097442', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2062, 'Operation Delayed Flight', '2023-05-10 18:00:00', '2023-05-10 20:30:00', '17th Private Ops Server', '#a250e8', '', 827, 0, '2023-05-09 00:55:49', '2025-12-17 19:45:34', NULL, '6097684', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2063, '17th Command Meeting', '2023-05-14 15:30:00', '2023-05-14 16:30:00', 'Chow Hall on TS', '#df5353', 'Please provide discussion points in the comments below.\n\nDon\'t forget to like and subcribe.', 48, 0, '2023-05-09 20:38:32', '2025-12-17 19:45:34', NULL, '6098762', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2064, 'Battalion FTX', '2023-06-24 18:00:00', '2023-06-24 21:00:00', 'Private Ops Server', '#df5353', 'Event Details:\nServer:\nMap:\nAdditional Mods Required:', 67, 0, '2023-05-10 23:52:56', '2025-12-17 19:45:34', NULL, '6099988', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2065, 'Conflict: God Eater', '2023-06-17 18:00:00', '2023-06-17 21:00:00', 'Private Ops Server', '#df5353', 'Event Details:\nServer:\nMap:\nAdditional Mods Required:', 46, 0, '2023-05-11 22:03:57', '2025-12-17 19:45:34', NULL, '6101169', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2066, 'Operation Usurpers Throne', '2023-06-10 18:00:00', '2023-06-10 21:00:00', '17th Private Ops Server', '#df5353', 'EVENT DETAILS\n: Following Belarus\' entry into the Russo-Ukrainian War, the Livonian military led a coup d\'etat against the popular government, ousting them within the space of a month. The Livonian government in exile has pled their case in NATO. Now the 17th Rangers lead the way in an invasion to seize the capital city and capture important military HVTs.\nSERVER\n: 17th Private Operations Server\nMAP\n: Livonia\nADITIONAL MODS REQUIRED:\n Contact DLC\n\n\nOPORD\n:\n', 827, 0, '2023-05-11 22:23:28', '2025-12-17 19:45:34', NULL, '6101361', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2067, 'Operation Broken Leg', '2023-05-17 18:00:00', '2023-05-17 20:30:00', '17th Private Ops Server', '#ecb200', '\n', 827, 0, '2023-05-11 22:28:45', '2025-12-17 19:45:34', NULL, '6101362', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2068, 'Advanced UAV School', '2023-05-15 19:00:00', '2023-05-15 20:30:00', 'Training Server', '#a250e8', 'Learn to use large, Advanced UAVs for reconnaisance and potentially striking targets.', 468, 0, '2023-05-13 17:55:38', '2025-12-17 19:45:34', NULL, '6102837', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2069, 'Echo Rotary Training (Not a Qual)', '2023-05-18 17:00:00', '2023-05-18 18:30:00', 'TBD', '#d89332', 'Sup peeps, it\'s the raddest pilot coming at you with another training. Today, we gonna be learning how to fly good and not crash into mountains and powerlines, as well as how to land on any terrain (because that\'s the second most important part about flying). I bribed the US army with leaked Russian documents to send us a bunch of MH-6s (aka the Little Bird) so that\'s what we\'re gonna be using.\n\nNo qual for this because documentation says so, but if you\'ve ever wanted to learn how to fly good, come to this. All experience levels are welcome (including Alpha members)', 2225, 0, '2023-05-14 20:49:24', '2025-12-17 19:45:34', NULL, '6103750', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2070, 'Alpha Meeting', '2023-05-19 17:00:00', '2023-05-19 18:00:00', '', '#FFFFFF', 'All ranks and members are invited. Similar to the infamous "Echo Smoke Sesh" alpha will gather in the chow hall and we will discuss current strengths and weakness of the company and our current direction. ', 840, 0, '2023-05-14 20:57:23', '2025-12-17 19:45:34', NULL, '6103752', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2071, 'Fixed Wing Logistics Training/(Maybe) Qual', '2023-05-15 16:00:00', '2023-05-15 17:00:00', 'Training Server Airfield', '#ecb200', 'Gonna need a brush up for this weekend. Lets get it.', 27, 0, '2023-05-15 03:17:14', '2025-12-17 19:45:34', NULL, '6104949', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2072, 'Basic Training [RESCHEDULED FROM MONDAY]', '2023-05-16 18:30:00', '2023-05-16 21:00:00', 'TeamSpeak -> 17th Recruitment Room 1 -> 17th Training Server -> Training Grounds', '#ecb200', 'Learn the basic unit information that each member of the battalion needs to demonstrate proficiency in. Let us show you how to be an effective Ranger!\nPlease refer to the link above in order to set up your game prior to attending. Ask me or any fellow NCOs if you need help doing so.\nThe training should take approximately 2:30 hours; however, it may run up to 45 mins longer.\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 795, 0, '2023-05-15 11:13:50', '2025-12-17 19:45:34', NULL, '6105573', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2073, 'RTO Training and (possible) Qualification', '2023-05-21 18:00:00', '2023-05-21 20:00:00', '17th Training Server', '#a250e8', 'Ever wanted to be radio boy in the 17th? Well come hang out and we´ll get you ready for the Qual, and, ya know, QUAL YOU. (if time allows it)', 21, 0, '2023-05-15 19:04:58', '2025-12-17 19:45:34', NULL, '6106002', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2074, 'The Killing Fields', '2023-05-24 18:00:00', '2023-05-24 19:30:00', 'OPS SERVER HOE', '#d89332', '', 43, 0, '2023-05-17 22:36:47', '2025-12-17 19:45:34', NULL, '6107312', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2075, 'A Cheeks Enthusiast Presents: Gorka Boyz', '2023-07-01 18:00:00', '2023-07-01 20:00:00', '', '#d89332', '', 43, 0, '2023-05-17 22:40:53', '2025-12-17 19:45:34', NULL, '6107314', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2076, 'Operation Jungle Maniac 4 RRC Scouting', '2023-05-20 14:00:00', '2023-05-20 15:30:00', 'Private Ops Server', '#df5353', 'Tiger Actual/Tiger 1:\n \nTiger 1 Drone Op: \n \nTiger 1 Drone Op: \n \nTiger 2: \n \nTiger 2 Drone Op: \n \nTiger 2 Drone Op: \n \n\n', 468, 0, '2023-05-19 06:40:10', '2025-12-17 19:45:34', NULL, '6108350', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2077, 'NCO Meeting', '2023-06-17 17:00:00', '2023-06-17 18:00:00', 'TeamSpeak', '#355bf8', '', 46, 0, '2023-05-20 10:17:44', '2025-12-17 19:45:34', NULL, '6110217', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2078, 'Combat Life Saver (CLS) Training', '2023-05-23 18:00:00', '2023-05-23 20:00:00', 'Training Server', '#FFFFFF', 'Come learn how to legally do both medical and shoot things in the same op.\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/331625', 13, 0, '2023-05-21 03:37:55', '2025-12-17 19:45:34', NULL, '6114163', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2079, 'Mechanized Training', '2023-05-25 18:00:00', '2023-05-25 19:30:00', '', '#d89332', 'Bookwork and practical knowledge regarding armored assets. Learn how to effectively command a small team, position yourself for maximum effect, and learn a couple tricks. ', 7, 0, '2023-05-21 12:55:27', '2025-12-17 19:45:34', NULL, '6114521', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2080, 'Foward Observer', '2023-05-30 18:00:00', '2023-05-30 20:00:00', 'Training Server', '#a250e8', 'Learn how to call for and adjust mortar fire', 468, 0, '2023-05-22 04:17:30', '2025-12-17 19:45:34', NULL, '6114677', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2081, 'DEMO Training', '2023-05-23 18:00:00', '2023-05-23 19:30:00', '', '#d89332', 'We gonna blow shit up. may end up being cancelled, still writing a final paper for college. ', 951, 0, '2023-05-22 18:10:39', '2025-12-17 19:45:34', NULL, '6115611', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2082, 'Admin Smoke Sesh', '2023-05-22 17:00:00', '2023-05-22 18:30:00', '', '#FFFFFF', 'Admin be smoking that pack 6 PM CST Just putting this on calendar for posterity.', 951, 0, '2023-05-22 18:11:45', '2025-12-17 19:45:34', NULL, '6115612', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2083, '[Moved 1 Hour] Land Nav', '2023-05-29 19:00:00', '2023-05-29 21:00:00', 'Training Grounds', '#FFFFFF', 'Learn the basics of orienteering and navigating through operational terrain!\nEquip yourself for the rigors of finding a spot on the map or being lost...\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/1539482010', 795, 0, '2023-05-22 19:12:31', '2025-12-17 19:45:34', NULL, '6115629', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2084, 'Virtual Leadership Course', '2023-05-28 18:00:00', '2023-05-28 21:00:00', 'Discord - Training VC', '#FFFFFF', 'By special request, this training is being reopened to help people learn how to formulate battle plans from a top down perspective. You will learn how to:\n- Develop strategies to coordinate unit maneuvers via markers\n- Observe and analyze terrain features\n- Design a cohesive plan with other members to execute mission objectives\n\nThis may be done over the course of several sessions.', 67, 0, '2023-05-23 23:37:04', '2025-12-17 19:45:34', NULL, '6117127', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2085, 'Basic Training', '2023-06-01 13:30:00', '2023-06-01 16:30:00', 'Training Server', '#a250e8', 'Come and learn how to survive your first op!', 524, 0, '2023-05-24 14:27:33', '2025-12-17 19:45:34', NULL, '6118068', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2086, 'NCO Leadership Course', '2023-06-01 18:00:00', '2023-06-01 21:00:00', 'Private Ops Server', '#FFFFFF', 'If you are a non-NCO and wish to attend, you may.\n\nIf you are a current NCO with the rank of SGT or above, you are REQUIRED to take this course by the end of Ocean’s term as BCO at least ONCE to maintain your current rank. If you are a current Corporal, you are required to take this course as a PREREQUISITE to being promoted to anything higher.\nThis course is required for all Alpha and Echo NCOs.\n\nThere will be multiple run throughs of this course', 67, 0, '2023-05-26 14:54:17', '2025-12-17 19:45:34', NULL, '6119877', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2087, 'Operation No Time', '2023-05-31 18:00:00', '2023-05-31 21:00:00', '17th Private Operations Server', '#FFFFFF', 'Event Details - Mobile light infantry combat involving Lynx\'s. \n\nAssets - Lynx\'s \nMap - Sumava: steam://url/CommunityFilePage/2947655994\nAdditional Mods Required - Šumava', 840, 0, '2023-05-26 21:01:41', '2025-12-17 19:45:34', NULL, '6120034', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2088, 'Mechanized Training', '2023-05-29 17:00:00', '2023-05-29 18:00:00', '', '#ecb200', 'You already know', NULL, 0, '2023-05-28 02:11:41', '2025-12-17 19:45:34', NULL, '6122711', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2089, 'Triage & Mass Cas Training', '2023-06-08 18:00:00', '2023-06-08 20:00:00', 'Medical Area- Training Server', '#FFFFFF', 'A training for both medical and non-medical personnel focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to secure and manage any Mass Cas quickly and efficiently.\nThink of this training as AIT for Mass Casualty Incidents\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/331618', 2223, 0, '2023-05-29 02:49:24', '2025-12-17 19:45:34', NULL, '6125227', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2090, 'Operation Jungle Maniac Finale RRC Deployment', '2023-06-02 18:00:00', '2023-06-02 20:00:00', '', '#df5353', '', 468, 0, '2023-05-31 18:54:43', '2025-12-17 19:45:34', NULL, '6127961', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2091, 'Operation Quicktime Event', '2023-06-04 17:00:00', '2023-06-04 19:00:00', '', '#FFFFFF', '\nAdditional mods: None (Map is Tanoa so Apex is needed)', 57, 0, '2023-06-02 10:08:20', '2025-12-17 19:45:34', NULL, '6130657', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2092, 'NCO Meeting', '2023-06-03 17:00:00', '2023-06-03 18:00:00', 'Chow Hall - Teamspeak', '#FFFFFF', 'Meet in Chow Hall (Teamspeak), where we will discuss planning for tonight\'s Operation and the slots for each member.', 840, 0, '2023-06-03 20:39:51', '2025-12-17 19:45:34', NULL, '6132543', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2093, 'IDF Training (Rescheduled)', '2023-06-13 15:00:00', '2023-06-13 17:00:00', 'Training Server-Northern Airfield', '#d89332', 'Gonna be going through the doc and going over the math involved with using most mortars. Will discuss the self propelled systems as well\n(Delayed to 7PM due to SOG DLC update)', 53, 0, '2023-06-04 02:39:34', '2025-12-17 19:45:34', NULL, '6132598', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2094, '17th Command Meeting', '2023-06-09 17:00:00', '2023-06-09 18:00:00', '', '#df5353', '', 48, 0, '2023-06-05 12:40:09', '2025-12-17 19:45:34', NULL, '6135924', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2095, 'COMMUNITY ROUNDTABLE & LEADERSHIP VOTES', '2023-07-09 13:30:00', '2023-07-09 14:30:00', 'Chow Hall in TS', '#355bf8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/31a767aa-f57a-45e5-8929-d25183bce25e/forums/300861744', 81, 0, '2023-06-05 20:05:23', '2025-12-17 19:45:34', NULL, '6136733', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2096, 'The Battle of Malden', '2023-06-07 18:00:00', '2023-06-07 21:00:00', '17th Private Ops Server', '#6cba50', 'Event Details\n : As part of the build up to the invasion of Altis, codenamed Operation Bankrupt, The island of Malden has been targeted by NATO forces to secure the airbase and naval facilities there and halt Altian air and sea raids on allied naval vessels. \n\n\nServer\n : 17th Private Ops Server\nMap\n : Malden 2035\nAdditional Mods\n : N/A', 827, 0, '2023-06-06 18:53:00', '2025-12-17 19:45:34', NULL, '6137989', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2097, 'CLS/Combat lifesaver', '2023-06-12 18:00:00', '2023-06-12 20:30:00', 'Medical training ground Trading server', '#ecb200', ' CLS and 68 whiskey are we required to be a medical qualification To get it. Come learn how to save your buddies .', 280, 0, '2023-06-07 16:07:17', '2025-12-17 19:45:34', NULL, '6139059', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2098, 'Basic Training', '2023-06-09 15:00:00', '2023-06-09 17:00:00', '', '#ecb200', '', 15, 0, '2023-06-07 23:44:23', '2025-12-17 19:45:34', NULL, '6139831', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2099, 'Convoy Knowlege and Training', '2023-06-15 17:00:00', '2023-06-15 19:00:00', '', '#d89332', 'Learn shit about how to properly and effectively stage a convoy. Tired of long stepoff times? Attend. ', 7, 0, '2023-06-10 18:11:07', '2025-12-17 19:45:34', NULL, '6143012', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2100, 'Private ops server down for testing', '2023-06-12 17:00:00', '2023-06-13 17:00:00', '', '#ecb200', 'Private observer will be down for testing for the next 24 hours', 43, 0, '2023-06-12 17:35:20', '2025-12-17 19:45:34', NULL, '6144740', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2101, 'Private aops server down for testing', '2023-06-16 17:00:00', '2023-06-16 22:50:00', '', '#ecb200', '', 43, 0, '2023-06-12 17:36:11', '2025-12-17 19:45:34', NULL, '6144741', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2102, 'IDF Training (Reschedule)', '2023-06-18 16:00:00', '2023-06-18 18:00:00', 'Northern Airfield', '#d89332', 'Gonna be going through the doc and going over the math involved with using most mortars. Will discuss the self propelled systems as well\nHave pen and paper ready\n(Got Drafted last minute to work. Sorry guys. Moved to Monday)\n', 53, 0, '2023-06-13 22:03:59', '2025-12-17 19:45:34', NULL, '6146559', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2103, 'IDF Training', '2023-06-19 16:00:00', '2023-06-19 18:00:00', 'Northern Airfield', '#d89332', 'Gonna be going through the doc and going over the math involved with using most mortars. Will discuss the self propelled systems as well\nHave pen and paper ready\n(This will be the last time for a reschedule. If I get middle fingered by work I will try to have another trainer take this instead of cancel or reschedule)', 53, 0, '2023-06-16 17:41:20', '2025-12-17 19:45:34', NULL, '6149451', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2104, 'Defence of Mazar-i-Sharif', '2023-06-22 18:00:00', '2023-06-22 20:00:00', '', '#FFFFFF', '\n\n\nNovember 13th, 2001\nSeveral days ago the city of Mazar-i-Sharif has fallen from Taliban control after a concentrated bombing campaign for the airfield and other strategic targets. This is a major shock since the United States Central Command (CENTCOM) had originally believed that the city would remain in Taliban hands well into the following year and that any battle would be a very slow advance. \nMazar-i-Sharif is strategically important as Its capture has opened supply routes and provided an airstrip inside the country for American aircraft. The battle was the Taliban\'s first major defeat and is believed to be the possible start of a rapid transfer of territory in northern Afghanistan.\n\nHowever, There are rumors that Mullah Dadullah [the Taliban\'s most senior military commander in Afghanistan] might be headed to recapture the city with as many as 8,000 Taliban fighters. In response the U.S. Army is inserting the Green Berets from ODA 543, the 25th Infantry, and the 17th and 3rd Ranger Battalions into the city in order to hold the first solid foothold from which Kabul and Kandahar can be reached.\n\nSpecial Considerations:', 57, 0, '2023-06-16 19:05:38', '2025-12-17 19:45:34', NULL, '6149499', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2105, 'NCO Leadership Course', '2023-06-19 18:00:00', '2023-06-19 21:00:00', 'Private Ops Server', '#FFFFFF', 'If you are a non-NCO and wish to attend, you may.\n\nIf you are a current NCO with the rank of SGT or above, you are REQUIRED to take this course by the end of Ocean’s term as BCO at least ONCE to maintain your current rank. If you are a current Corporal, you are required to take this course as a PREREQUISITE to being promoted to anything higher.\nThis course is required for all Alpha and Echo NCOs.\n\nThere will be multiple run throughs of this course', 67, 0, '2023-06-16 23:04:46', '2025-12-17 19:45:34', NULL, '6149551', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2106, 'Stack-Set-Breach Training', '2023-06-20 18:00:00', '2023-06-20 20:00:00', 'Training Server', '#ecb200', 'We will train on the following:\n- Usage of breaching charges\n- Strategies of breaching and entering (with and without charges)\n- Close Quarters Combat', 67, 0, '2023-06-18 06:43:41', '2025-12-17 19:45:34', NULL, '6150479', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2107, 'Pointman Training', '2023-06-21 16:00:00', '2023-06-21 17:30:00', 'Training Server', '#FFFFFF', 'Learn how to guide your team from the front with formations, observing danger zones, and most importantly, identify threats ahead of time.', 67, 0, '2023-06-18 06:44:38', '2025-12-17 19:45:34', NULL, '6150480', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2108, 'The rescue of CPT Hilmar', '2023-06-18 18:00:00', '2023-06-18 20:00:00', '17th Private Ops server', '#FFFFFF', 'Event Details\n : A routine delivery flight to a US Outpost has led to the loss of communication of the delivery flight and the outpost. Cloud cover has prevented US aerial recon, so QRF is heading out ASAP to search the estimated flight path past lost contact. \n\n\nServer\n : 17th Private Ops Server\nMap\n : Altis\nAdditional Mods\n : N/A', 827, 0, '2023-06-18 16:26:15', '2025-12-17 19:45:34', NULL, '6150864', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2109, '[POSTPONED] Demo Training', '2023-06-25 18:00:00', '2023-06-25 19:30:00', '', '#d89332', 'Time to blow stuff up', 951, 0, '2023-06-18 20:02:37', '2025-12-17 19:45:34', NULL, '6152821', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2110, 'Battle of the Boonie Hat', '2023-06-21 18:00:00', '2023-06-21 21:00:00', '17th Private Operations Server', '#FFFFFF', 'Event Details - ION Services have began raids on local towns which include the house of Captain Pedano. Reports show the only thing stolen was his boonie hat, today we march forward, collide borders and retrieve the hat...\n\nAssets - MRAPs, RAZRs, Quad Bikes, MH-6M Little Birds\n\nMap - United Sahrani\n\nExtra Mods/DLC Required - None\n\nBEFORE : \nAFTER : \n\n', 840, 0, '2023-06-19 18:10:48', '2025-12-17 19:45:34', NULL, '6155491', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2111, 'RTO School', '2023-06-22 18:00:00', '2023-06-22 20:30:00', 'Training Server', '#d89332', 'Learn to communicate for the 17th\'s logistics, support, etc. There may be a qualification.', 468, 0, '2023-06-19 19:21:34', '2025-12-17 19:45:34', NULL, '6156121', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2112, 'Air Crew Training', '2023-06-21 18:00:00', '2023-06-21 18:30:00', 'One of the Airfields (TBD)', '#d89332', 'Come learn how to do cool air crew stuff\n\n\nTime permitting, we might also do a Co-Pilot training immediately after\n\nFrench is doing a Co-Pilot Training Friday go to that', 2225, 0, '2023-06-19 19:35:29', '2025-12-17 19:45:34', NULL, '6156213', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2113, 'Co-Pilot', '2023-06-23 15:00:00', '2023-06-23 17:00:00', 'Training Server', '#d89332', 'Learn to support your pilot in an aircraft', 468, 0, '2023-06-19 19:47:01', '2025-12-17 19:45:34', NULL, '6156215', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2114, 'IDF Training', '2023-06-26 17:00:00', '2023-06-26 19:00:00', 'Training Server- Southern Airfield', '#d89332', 'Gonna be going through the doc and going over the math involved with using most mortars. Will discuss the self propelled systems as well\nHave pen and paper ready', 53, 0, '2023-06-19 22:55:17', '2025-12-17 19:45:34', NULL, '6158648', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2115, 'Carrier Landing Training', '2023-06-30 13:00:00', '2023-06-30 15:00:00', '', '#d89332', 'If you want to figure out how to land an F/A-181 on a carrier, come on out and practice with an Arma 3 pseudo-LSO', 15, 0, '2023-06-23 00:00:37', '2025-12-17 19:45:34', NULL, '6161437', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2116, 'Operation Refill', '2023-07-07 18:00:00', '2023-07-07 20:00:00', '', '#FFFFFF', 'With a recent renewal of defensive agreement between Finland and the US, a new American military base has been constructed in the northern section of Maksnimi within the Municipality of Simo. Construction has just completed and you will be the first garrison to be stationed they and relive the construction guards. \n\nHowever, three hours ago all communication was lost with the base as well as the surrounding towns. A thick blanket of fog has been covering the area for the last several days so aerial recon is ineffective.\nYou are already en route to the location, so you are being tasked with investigation the cause of the communication break, reach the new base, and upload your findings into the local sever to be transferred to the main HQ at Helsinki. \nAdditional mods: Maksniemi Map\nThis is a Blaze Op. If you know what that means then you should enjoy this. If you don\'t... well come find out...', 57, 0, '2023-06-24 18:20:02', '2025-12-17 19:45:34', NULL, '6163389', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2117, 'Combat Diver', '2023-06-26 18:00:00', '2023-06-26 19:30:00', '', '#a250e8', '', 918, 0, '2023-06-25 06:48:45', '2025-12-17 19:45:34', NULL, '6163750', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2118, 'Battle for Green Mountain', '2023-06-25 17:30:00', '2023-06-25 20:30:00', '17th Private Ops Server', '#ecb200', 'Event Details \n: Surrounded on all sides by enemies, you and your squad must secure several air drops before enemy forces can deny them to you. Ammo, Fuel, Food, and Medical supplies are at a premium, so plan carefully\n\n\nServer \n: 17th Private Ops Server\n\n\nMap\n : Chernarus\n\n\nAdditional Mods \n: None Required (Better Inventory and Blastcore suggested)\n', 827, 0, '2023-06-25 16:16:41', '2025-12-17 19:45:34', NULL, '6164417', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2119, 'Demo Training', '2023-06-27 18:00:00', '2023-06-27 20:30:00', '', '#d89332', 'We\'re back in business boys...', 951, 0, '2023-06-26 00:09:26', '2025-12-17 19:45:34', NULL, '6165461', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2120, 'The Raid on Elektro', '2023-06-28 17:30:00', '2023-06-28 21:00:00', '17th Private Ops Server', '#FFFFFF', 'Event Details :\n Following the narrow defense at Green Mountain by the 17th Rangers 1st Squad and subsequent reinforcement, The Rangers now seek to open a path to the Coast. This will require the harbor at Elektrozavodsk, as most others in the area are mined. With supplies, fuel, and manpower at an all time low, the only hope of the 17th is to retake previous supply depot positions and hope to find enough remaining material to keep the fight going. Its going to be tough.\n\n\nLocation :\n 17th Rangers Private Operations Server\n\n\nMap :\n Chernarus (Autumn) \n\n\nAdditional Mods :\n None Required \n\n Suggested Whitelist Mods : > \n\n >\n\n > \n', 827, 0, '2023-06-26 21:35:42', '2025-12-17 19:45:34', NULL, '6166388', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2121, 'Operation Atlas', '2023-06-29 18:00:00', '2023-06-29 21:00:00', '17th Private Operations Server', '#FFFFFF', 'Event Details - Enemies have secured multiple footholds around the island of Stratis. Today we have our eyes on Air Station Mike-26. In order to succesfully neutralize said base, we must wipe out all QRF and Communications beforehand. Our opponent today will be the almighty ION Services who have accompanied/stolen some NATO Assets. 17th Rangers will deploy via SDV with diving kits equipped upon the Stratis Airbase, from there they will march forward towards success in seizing the island of Stratis.\n\nAssets - SDVs\n\nMap - Stratis\n\nExtra Mods/DLC Required - N/A', 840, 0, '2023-06-27 20:11:22', '2025-12-17 19:45:34', NULL, '6176439', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2122, '68W Training', '2023-07-06 18:00:00', '2023-07-06 20:00:00', 'Training Server-Medical Area', '#6cba50', 'A training course for all you aspiring combat medics to earn your 68W badge.\n\n68W training document: \n\n\nThere will be no official qualification testing, however we will have a practical exercise at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treating injured/unconscious individuals\n(2) Correct method of triage during a Mass Casualty Incident\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.) ', 2223, 0, '2023-06-27 21:58:57', '2025-12-17 19:45:34', NULL, '6176476', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2123, 'Gorkha Boyz training/ftx/familiarization/thing/blyat', '2023-06-29 17:00:00', '2023-06-29 18:00:00', 'Training Server', '#FFFFFF', 'Small little thing to learn how RF Assets work', NULL, 0, '2023-06-27 23:41:26', '2025-12-17 19:45:34', NULL, '6176502', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2124, 'Sniper Course', '2023-07-07 19:30:00', '2023-07-07 21:30:00', '17th Training Server', '#a250e8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f3511d79-10fb-4784-b21c-ffab119b293f/docs/313452', 46, 0, '2023-06-28 23:21:14', '2025-12-17 19:45:34', NULL, '6176988', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2125, 'Basic Training', '2023-07-06 18:00:00', '2023-07-06 20:00:00', '17th Training Server', '#FFFFFF', 'Welcome to the 17th! This course is required for all new members to the unit. We will go over everything including the fundamentals you need to know in order to successfully play an Arma operation with no problems. Below is the starting guide, please make sure you have done each step before arriving to the basic.\n\n \n\n\n\nBelow this is what we will be going over during the basic in case you want to see what you are getting into or want to get a head start on your keybinds.\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 840, 0, '2023-06-29 19:24:18', '2025-12-17 19:45:34', NULL, '6177485', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2126, '[Rescheduled] JTAC Bookwork and Qualification', '2023-07-03 17:00:00', '2023-07-03 18:00:00', 'Training Server', '#a250e8', 'Come get your JTAC on. Learn the 17ths method for controlling fires from the air. \n\nBring a notepad! \nEvent Rescheduled to July 6th\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f50565c0-fdae-4483-ac65-4ccb8563ceb0/calendar/6183891', 501, 0, '2023-06-29 23:45:37', '2025-12-17 19:45:34', NULL, '6177548', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2127, 'NCO Meeting', '2023-07-01 17:00:00', '2023-07-01 17:45:00', 'Chow Hall - Teamspeak', '#355bf8', 'Current Plan - \n\nhttps://www.figma.com/file/cADDgvFgUBfi5xT1rFu8L9/Gorka-Boyz?type=whiteboard&node-id=0-1&t=4c52J7n4SegDnuR0-0', 840, 0, '2023-07-01 18:42:05', '2025-12-17 19:45:34', NULL, '6180853', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2128, 'The Evacuation', '2023-07-02 18:00:00', '2023-07-02 21:00:00', '17th Private Ops Server', '#d89332', 'Event Details \n: Following the events of the Battle of Green Mountain and subsequent extraction from Chernarus, the 17th Rangers has recieved some well earned R&R. Unfortunately, the situation in Europe has spiraled out of control with Russian forces opening a full scale front into the Baltic States. While not NATO allies, the US has still pledged direct support during the conflict and so the 17th is headed back to the front, this time with the aim of evacuating civilians before the arrival of Russian forces.\n\n\nServer \n: 17th Private Ops Server\n\n\nMap \n: \n\n\n\nAdditional Mods \n: Required - \n\n \n Suggested - \n\n \n\n \n', 827, 0, '2023-07-02 18:16:33', '2025-12-17 19:45:34', NULL, '6182410', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2129, 'Mechanized Training/Qual', '2023-07-05 17:00:00', '2023-07-05 18:00:00', 'Training Server', '#FFFFFF', 'Learn How Mechanized works yo', NULL, 0, '2023-07-03 00:42:36', '2025-12-17 19:45:34', NULL, '6182825', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2130, 'JTAC Bookwork', '2023-07-06 18:30:00', '2023-07-06 20:00:00', 'Training Server', '#a250e8', 'Come learn how the 17th integrates CAS assets with ground command. \n\nPlease bring a notepad. ', 501, 0, '2023-07-03 21:41:39', '2025-12-17 19:45:34', NULL, '6183891', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2131, 'Operation Atlas P2', '2023-07-05 18:00:00', '2023-07-05 21:00:00', '17th Private Operations Server', '#FFFFFF', 'Event Details\n - On yet another dive operation, the 17th Rangers are tasked with assaulting a port. However, like last time the opposition will be ION Services and the mission will conduct at 0100. Once the port is secured, Rangers will escort \nthe bus \nto a nearby facility that was once occupied by NATO. Along the route from the port to the facility are multiple radio towers owned by ION Services. Before reaching the facility each and every tower must be destroyed to allow zero communication between ION ground and air assets. As long as those towers are up, enemy air is extremely likely. Tonight\'s terrain involves underwater, harbor, urban cqc, open fields, and dense jungle, it will not be an easy mission.\n\n\nAssets\n - Bus and SDV\'s\n\n\nMap\n - Tanoa\n\n\nExtra Mods/DLCs Required \n- Apex DLC ( For Tanoa )', 840, 0, '2023-07-05 05:06:22', '2025-12-17 19:45:34', NULL, '6185812', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2132, 'Demolitions Training', '2023-07-09 18:00:00', '2023-07-09 20:00:00', 'Training Server', '#6cba50', '', 67, 0, '2023-07-06 02:05:42', '2025-12-17 19:45:34', NULL, '6187015', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2133, 'A lovely stroll through contact', '2023-07-08 18:00:00', '2023-07-08 21:00:00', '', '#ecb200', 'WARNO: TBA\nOPORD: \n\nAdditional mods: Virolahti 7: \n', 81, 0, '2023-07-06 15:52:46', '2025-12-17 19:45:34', NULL, '6187651', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2134, 'AIT 1', '2023-07-11 18:00:00', '2023-07-11 20:00:00', 'Training Server', '#6cba50', '', 468, 0, '2023-07-06 21:11:03', '2025-12-17 19:45:34', NULL, '6187963', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2135, 'AIT 2', '2023-07-18 18:00:00', '2023-07-18 20:00:00', 'Training Server', '#6cba50', '', 468, 0, '2023-07-06 21:12:12', '2025-12-17 19:45:34', NULL, '6187964', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2136, 'AIT 3', '2023-07-25 18:00:00', '2023-07-25 20:00:00', 'Training Server', '#6cba50', '', 468, 0, '2023-07-06 21:12:32', '2025-12-17 19:45:34', NULL, '6187966', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2137, '[Rescheduled] AIT 4', '2023-08-01 19:15:00', '2023-08-01 21:15:00', 'Training Server', '#6cba50', 'Rescheduled for August 8', 468, 0, '2023-07-06 21:13:14', '2025-12-17 19:45:34', NULL, '6187967', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2138, 'Anti Armor School', '2023-07-10 18:00:00', '2023-07-10 20:00:00', 'Training Server', '#6cba50', 'Learn the ins and outs of enemy armor so you know how to defeat them. If able, it is recommended to take this course before Heavy Weapons course.\n\nOne of two courses required for the Heavy Weapons Ribbon.', 468, 0, '2023-07-06 21:20:52', '2025-12-17 19:45:34', NULL, '6187969', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2139, '[Rescheduled] Enter and Clear a Trench', '2023-07-14 18:00:00', '2023-07-14 20:00:00', 'Training Server', '#ecb200', 'Crawl-Walk-Run training on how to enter and clear a trench using SOSRA. \n\nDoctrine-\n\n\nNOTE: Event has been rescheduled\n\n \nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f50565c0-fdae-4483-ac65-4ccb8563ceb0/calendar/6337398', 644, 0, '2023-07-06 23:49:42', '2025-12-17 19:45:34', NULL, '6188027', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2140, 'JTAC Qualification', '2023-07-13 18:30:00', '2023-07-13 20:00:00', 'Training Server', '#a250e8', 'JTAC Practice and Qualification', 501, 0, '2023-07-07 02:40:17', '2025-12-17 19:45:34', NULL, '6188074', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2141, 'Echo Orientation', '2023-07-12 17:30:00', '2023-07-12 18:30:00', '', '#d89332', 'What it says on the tin- Learn about every asset Echo uses, from mortar tubes to Abrams. ', 7, 0, '2023-07-07 19:06:00', '2025-12-17 19:45:34', NULL, '6188819', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2142, 'Forward Observer', '2023-07-17 18:00:00', '2023-07-17 20:00:00', 'Training Server', '#d89332', '', 468, 0, '2023-07-07 20:57:42', '2025-12-17 19:45:34', NULL, '6333850', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2143, 'NCO Meeting', '2023-07-08 17:00:00', '2023-07-08 18:00:00', '', '#FFFFFF', 'Figma link for planning will be posted upon it being finished', 840, 0, '2023-07-08 07:13:16', '2025-12-17 19:45:34', NULL, '6334348', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2144, 'All Quiet on the Eastern Front', '2023-07-12 18:00:00', '2023-07-12 21:00:00', '17th Private Ops Server', '#a250e8', 'Event Details\n : 7 months following an uprising in the Czech Republic, a riot in the capital has caused a communications blackout. Now with a complete loss of contact at the US embassy and satellite imagery showing fires in the city, the 17th Rangers have been airlifted into a nearby airport with orders to extract the ambassador by any means\n\nLocation : 17th Private Ops Server\n\nMap : \n\n\nAdditional Mods : Required - \n - Map\n\n Suggested - \n\n \n\n \n', 827, 0, '2023-07-08 22:23:27', '2025-12-17 19:45:34', NULL, '6334878', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2145, 'Basic Training', '2023-07-13 18:00:00', '2023-07-13 21:00:00', '', '#FFFFFF', 'Come out and learn the fundementals you need in your start in the 17th. We will go over everything from standard keybindings, to medical, to formations, to weapon/vehicle familiarization, and so on. Recruits have 30 days upon acceptance to complete a basic, come get it done and ready yourself for future operations and trainings. \n\nPlease ensure all steps in the new member setup guide are complete upon entering teamspeak, if not we will show you the ways!\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 73, 0, '2023-07-09 02:31:42', '2025-12-17 19:45:34', NULL, '6334903', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2146, 'Operation Mighty Mouse', '2023-07-21 18:00:00', '2023-07-21 20:00:00', '', '#FFFFFF', '', 57, 0, '2023-07-09 17:48:02', '2025-12-17 19:45:34', NULL, '6335638', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2147, '68W Training', '2023-07-16 14:00:00', '2023-07-16 16:00:00', 'Training Area- Medical Area', '#6cba50', 'A training course for all you aspiring combat medics to earn your 68W badge.\n\n68W training document: \n\n\nThere will be no official qualification testing, however we will have a practical exercise at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treating injured/unconscious individuals\n(2) Correct method of triage during a Mass Casualty Incident\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.) ', 2223, 0, '2023-07-09 20:08:42', '2025-12-17 19:45:34', NULL, '6335666', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2148, 'Triage & Mass Cas Training', '2023-07-24 18:00:00', '2023-07-24 20:00:00', 'Training Server-Medical Area', '#a250e8', 'A training for both medical and non-medical personnel focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to secure and manage any Mass Cas quickly and efficiently.\nThink of this training as AIT for Mass Casualty Incidents\n\n', 2223, 0, '2023-07-09 20:15:54', '2025-12-17 19:45:34', NULL, '6335667', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2149, '[RESCHEDULED] A CO TRAINING 60MM', '2023-07-20 18:00:00', '2023-07-20 19:30:00', '', '#6cba50', 'RESCHEDUELED DUE TO TRAINER \n HAVING INTERNET ISSUES\n\n\nEvent Details\n : Learn Alphas NEW TOY\nServer\n : Training Server\nMap\n : Altis\nAdditional Mods\n :', 43, 0, '2023-07-09 21:42:41', '2025-12-17 19:45:34', NULL, '6335682', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2150, 'Rotary Logistics Qualification', '2023-07-11 19:00:00', '2023-07-11 20:00:00', 'Training Server - Main Airfield', '#d89332', 'Come get qualled. Practice beforehand and contact me if you have questions or would like tips.', 27, 0, '2023-07-09 21:54:51', '2025-12-17 19:45:34', NULL, '6335687', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2151, '[RESCHEDULED] Echo gang meet', '2023-07-15 12:00:00', '2023-07-15 12:30:00', '', '#d89332', 'WE GONNA GROUP UP AND SEE WHATS UP HOW YALL FEELING AND WHAT YOU GUYS WANNA DO.', 28, 0, '2023-07-09 22:56:49', '2025-12-17 19:45:34', NULL, '6335700', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2152, 'Friday Night Fire Fight - An AJ production', '2023-07-14 18:00:00', '2023-07-14 20:00:00', '', '#df5353', 'Event Details\n - We gonna hop in some trucks and drive around and get shot at and shoot back and stuff.\n\n\nAssets\n - Trucks\n\n\nMap\n - Bystrica\n\n\nExtra Mods/DLCs Required \n- none', 28, 0, '2023-07-11 02:00:15', '2025-12-17 19:45:34', NULL, '6337021', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2153, 'JTAC/CAS Reps practice', '2023-07-19 16:30:00', '2023-07-19 17:15:00', '', '#ecb200', 'JTACs and pilots come and get some reps in. All are welcome to come and observe. We\'ll wrap up before Kron\'s training.', 516, 0, '2023-07-11 16:09:14', '2025-12-17 19:45:34', NULL, '6337236', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2154, '[Cancelled] ECHO GANG MEET FOR REAL', '2023-07-16 12:00:00', '2023-07-16 13:00:00', '', '#d89332', 'It has come to my attention that I didnt check my calendar before scheduling the OG meeting. Whoops.\n\nIRL HAS HANDS. MEET ME AFTER THE OP IN TS IF YOU WANNA ASK QUESTIONS OR TALK OR ANYTHING!', 28, 1, '2023-07-11 22:52:01', '2025-12-17 19:45:34', NULL, '6337689', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2155, 'Operation Atlas P3', '2023-07-19 18:00:00', '2023-07-19 21:00:00', '17th Private Operations Server (Tanoa)', '#FFFFFF', 'Event Details\n : 17th Rangers have a multi-objective task for tonight. Starting off with invading a small town to recover \nthe bus \nyet again to prep for an assault on an airfield. I do agree fighting for an airfield is average, but this is just the start of the operation. Once the airfield is secure Rangers will take back stolen NATO assetts to commence an air assualt on Georgetown. The biggest town in Arma 3 has a lot to offer including a lot of CQB and long range engagements. Once again the opponent is ION Services and you will be fighting everything you can imagine. This yet again will not be an easy mission, success is the only option.\n\n\nServer\n : 17th Private Operations Server\n\n\nMap\n : Tanoa\n\n\nAdditional Mods/DLC Required\n : Apex DLC', 840, 0, '2023-07-12 05:04:56', '2025-12-17 19:45:34', NULL, '6337970', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2156, 'Taskforce 74 : A Bridge Too Far', '2023-07-15 18:00:00', '2023-07-15 21:00:00', '17th Private Operations Server - Livonia', '#df5353', 'Event Details\n : Airborne Operation to Secure A bridge\n\n\nServer\n : 17th Private Operations Server\n\n\nMap\n : Livonia\n\n\nAdditional Mods/DLC Required\n : Contact DLC\n\n\nWARNO\n : \n\n\n\nOPORD:\n \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/867066173', 840, 0, '2023-07-12 21:15:22', '2025-12-17 19:45:34', NULL, '6338308', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2157, 'Copilot Training/Qual', '2023-07-18 19:00:00', '2023-07-18 20:00:00', 'Training Server - Main Airfield', '#ecb200', 'Copilot is ESSENTIAL for those wanting to move forward in flight. There is a lot of information in this event that will help you become the skilled pilots we need. Comms, map/nav, systems, knowledge, etc are all covered and will make earning the pilot quals much easier. It is recommended to read up before hand as well as to wait a few weeks and serve as a copilot for a few ops before jumping straight to pilot to familiarize yourself with operational tempo and expectations.', 27, 0, '2023-07-12 21:51:40', '2025-12-17 19:45:34', NULL, '6338342', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2158, 'BN SMOKE SESH(reschuedeled for the 30th)', '2023-07-23 13:30:00', '2023-07-23 14:30:00', '', '#FFFFFF', 'I FORGOT I WAS SUPPOSE TO TAKE MY KID TO THE MOVIES FAM MY BAD\n\n\n\n\n\nclassic smoke sesh wit ken we gonna go over some things and stuff.. this meeting is for key leaders but all are welcomed to show up and listen', 43, 0, '2023-07-12 23:14:25', '2025-12-17 19:45:34', NULL, '6338353', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2159, 'Taskforce74: The Hornet\'s Nest', '2023-07-22 18:00:00', '2023-07-22 19:30:00', '', '#df5353', '', 43, 0, '2023-07-12 23:17:43', '2025-12-17 19:45:34', NULL, '6338355', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2160, 'Taskforce 74: The Killing Fields', '2023-07-29 18:00:00', '2023-07-29 21:00:00', '', '#df5353', 'Event Details\n : "Things are popping off out there in Livonia. the GAF done pulled up and occupied the whole region seizing all sorts of infrastructure and what not . So the 17th gonna pull up and seize it all back. typical gang turf war type shit." - Tyrone July 2023\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Livonia\n\n\nAdditional Mods/DLC Required\n : Contact DLC (\n)\n\n\nOPORD\n : \n\nhttps://store.steampowered.com/app/1021790/Arma_3_Contact/\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/42910734', 43, 0, '2023-07-12 23:21:14', '2025-12-17 19:45:34', NULL, '6338358', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2161, 'NCO Meeting', '2023-07-15 17:00:00', '2023-07-15 17:45:00', 'Chow Hall TeamSpeak', '#355bf8', 'Figma link : https://www.figma.com/file/1PwBo7rFU9X7Xhhe9DdwZK/TF74-P1?type=whiteboard&node-id=0-1&t=67tGPSEJioJ1iTSn-0', 840, 0, '2023-07-15 19:11:14', '2025-12-17 19:45:34', NULL, '6340748', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2162, 'Alpha Meeting', '2023-07-20 17:00:00', '2023-07-20 18:00:00', 'Chow Hall - TeamSpeak', '#355bf8', 'Come discuss whatever\'s on your mind or any suggestions you have for Alphas current path. If you cannot make it but have a point you want reached, DM me or drop it below in this event. Hope to see you all there !', 840, 0, '2023-07-16 06:31:12', '2025-12-17 19:45:34', NULL, '6340845', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2163, 'Cold Pipe Event - A mostly prepared affair', '2023-07-16 17:30:00', '2023-07-16 20:30:00', '17th Private Ops Server', '#FFFFFF', 'Since there is no event tonight, I will be hosting a mission tonight. No details on what will be going on, but it will be fun. Sign up, come out, have fun.\n\n~ The Tambora Super Volcano has caused a hellish amount of interference in global affairs. Trapped on foreign soil, in an active combat zone, you must do what you must to survive. Resupply is non-existent, reinforcements are slow in coming, and former allies have turned on us. As the weather turns, so does the outlook for you ~', 827, 0, '2023-07-16 20:05:11', '2025-12-17 19:45:34', NULL, '6341710', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2164, '[CANCELLED] Stitchin’ and Bitchin’', '2023-07-30 16:00:00', '2023-07-30 17:00:00', 'TS3- Chow Hall/Training Server- Medical Area', '#ecb200', 'A roundtable event for all things medical. Bring ideas, questions, concerns & exaggerated stories of your bravery and excellence as CLS/68W. All are welcome to attend, even if you just want to bitch about how over-complicated medical has become and think medical should be EZ. Alpha & Echo members very welcome.\nThis will be held in the Chow Hall on TeamSpeak, however, there is a possibility that it could transition to the Training Server if needed.', 2223, 1, '2023-07-17 03:52:51', '2025-12-17 19:45:34', NULL, '6341797', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2165, 'Operation Atlas P4', '2023-08-02 18:00:00', '2023-08-02 21:00:00', '', '#FFFFFF', 'Event Details\n : With yet again another amphibious assault, 17th Rangers will kick it off a very early morning operation. Rangers will be tasked with recovering vehicles and then risking the rest of the operation based off their decisions of selection. Show up to find out what happens from there. \n\n\nServer\n : 17th Private Operations Server\n\n\nMap\n : Tanoa\n\n\nAdditional Mods/DLC Required\n : Apex DLC', 840, 0, '2023-07-17 11:10:03', '2025-12-17 19:45:34', NULL, '6342044', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2166, '[RESCHEDULED] Jump Wings', '2023-07-27 18:30:00', '2023-07-27 20:00:00', 'Training server', '#6cba50', 'Come learn how to fall out of a fixed wing, static line style. If senior guys want to show up, i will also go over summer more nuance items like plans for regrouping once on the ground, and good practices for loading orders.', 918, 0, '2023-07-17 15:21:40', '2025-12-17 19:45:34', NULL, '6342115', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2167, 'Fixed Wing CAS Training', '2023-07-24 18:00:00', '2023-07-24 20:00:00', 'Training Server', '#d89332', 'Learn to use the various Fixed-Wing CAS aircraft, munitions, and systems.\nQual will be separate.', 468, 0, '2023-07-17 19:05:47', '2025-12-17 19:45:34', NULL, '6342298', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2168, 'Rotary Logistics Training', '2023-07-17 19:00:00', '2023-07-17 20:00:00', 'Training server - Main airfield', '#ecb200', 'I will do my best to help you learn the basics for this qual. Recommend practice in editor prior. NOTE: I use joystick not keyboard and mouse. While not required to fly it can be very helpful in fine tuning performance and responsive of the airframe. Take the concepts i present to heart rather than trying to completely copy my technique. Everyone had their own flight style.', 27, 0, '2023-07-17 19:27:59', '2025-12-17 19:45:34', NULL, '6342302', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2169, 'Rotary Logistics Training', '2023-07-24 19:00:00', '2023-07-24 20:00:00', 'Training server - Main airfield', '#ecb200', 'I will do my best to help you learn the basics for this qual. Recommend practice in editor prior. NOTE: I use joystick not keyboard and mouse. While not required to fly it can be very helpful in fine tuning performance and responsive of the airframe. Take the concepts i present to heart rather than trying to completely copy my technique. Everyone had their own flight style.', 27, 0, '2023-07-17 19:37:40', '2025-12-17 19:45:34', NULL, '6342306', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2170, '[RESCHEDULED] Rotary Logistics Qual', '2023-07-25 19:00:00', '2023-07-25 20:00:00', 'Training server - Main Airfield', '#ecb200', 'Come get qualled. Practice beforehand and contact me if you have questions or would like tips.', 27, 0, '2023-07-17 19:40:15', '2025-12-17 19:45:34', NULL, '6342307', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2171, 'Demo Training', '2023-07-28 18:00:00', '2023-07-28 19:00:00', 'Training Server', '#6cba50', 'Learn to blow stuff up. ', 951, 0, '2023-07-17 21:48:35', '2025-12-17 19:45:34', NULL, '6342328', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2172, 'Basic Training', '2023-07-21 16:00:00', '2023-07-21 18:00:00', '17th Training Server', '#FFFFFF', 'Come out and learn the fundamentals you need in your start in the 17th. We will go over everything from standard keybindings, to medical, to formations, to weapon/vehicle familiarization, and so on. Recruits have 30 days upon acceptance to complete a basic, come get it done and ready yourself for future operations and trainings. \n\nPlease ensure all steps in the new member setup guide are complete upon entering teamspeak, if not we will show you the ways!\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 840, 0, '2023-07-18 02:38:27', '2025-12-17 19:45:34', NULL, '6342591', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2173, 'Basic Training', '2023-07-20 19:00:00', '2023-07-20 21:00:00', 'Training Server', '#FFFFFF', 'Basic Training for recruits.\nWe will meet in TS prior to the training to ensure everything is set properly.\nPlease follow this document to set up your initial profile.', 644, 0, '2023-07-18 15:42:09', '2025-12-17 19:45:34', NULL, '6342769', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2174, 'Operation Jubilant Part 1 : Unwavering Resolve', '2023-07-26 18:00:00', '2023-07-26 21:00:00', '17th Private Ops Server', '#FFFFFF', 'Event Details\n : Nearly a year has passed since the failed raid on Czech Republic royalty and the subsequent detonation of a Nuclear device has led to the attempted occupation of the entirety of the Czech Republic by NATO forces. Originally, the Sumavan territory was cordoned off and left alone while contamination subsided. Now, a push must be made to finally clear the area and the 17th is leading the charge.\n\n\nLocation\n : 17th Private operations Server\n\nMap : \n\n\nAdditional Mods : Required - \n - Map\n\n Suggested - \n\n \n\n \n', 827, 0, '2023-07-19 05:11:47', '2025-12-17 19:45:34', NULL, '6343294', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2175, 'NCO Meeting', '2023-07-22 17:00:00', '2023-07-22 17:45:00', 'Chow Hall - TeamSpeak', '#FFFFFF', 'All are welcome to find out what the plan is for tonights operation. \n\nFigma Link : https://www.figma.com/file/nwiGGQd1oq6goXbuybp2MG/TF74-Part-2?type=whiteboard&node-id=0%3A1&t=GIcB3oOL5qqZBNcV-1', 840, 0, '2023-07-22 18:58:33', '2025-12-17 19:45:34', NULL, '6346982', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2176, 'Op Jubilant Part 2 : Unwavering Resolve', '2023-07-27 18:00:00', '2023-07-27 21:00:00', '17th Private Ops Server', '#FFFFFF', 'Event Details : Following the successful seizure of 3 cities, the 17th now prepares for a final push to cut enemy territory in half. Enemy forces will nowthrow everything they have at us to halt us in their tracks. Enemy AA capabilities have been decimated so expect friendly air support to finally be brough to bear.\n\nLocation : 17th Private Ops Server\n\nMap : \n\n\nAdditional Mods : Required - \n - Map\n\n Suggested - \n\n \n\n \n', 827, 0, '2023-07-23 02:38:07', '2025-12-17 19:45:34', NULL, '6347034', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2177, 'RASP', '2023-08-12 18:00:00', '2023-08-12 19:00:00', '17th Ranger Battalion Private Operations Server', '#FFFFFF', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/08ca311e-66fb-45ce-bbbf-c4b34dc69e4a/docs/245238', 840, 0, '2023-07-23 06:07:29', '2025-12-17 19:45:34', NULL, '6347053', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2178, 'Operation Jubilant : The Ignition', '2023-07-23 17:00:00', '2023-07-23 20:00:00', '17th Private Ops Server', '#FFFFFF', 'Event Details\n : During the Czech Republic succession conflict, several high ranking American officials we\'re captured or killed. Now with diplomatic relations breaking down, a raid on the capital has been sanctioned to bring the perpetrators to justice and end the brutal tyranny of the Czech royal family.\n\n\nLocation\n : 17th Private Operations Server\n\nMap : \n\n\nAdditional Mods : Required - \n - Map\n\n Suggested - \n\n \n\n \n', 827, 0, '2023-07-23 07:27:32', '2025-12-17 19:45:34', NULL, '6347056', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2179, 'Echo Orientation', '2023-08-04 17:00:00', '2023-08-04 19:30:00', '', '#d89332', '', 7, 0, '2023-07-23 21:34:43', '2025-12-17 19:45:34', NULL, '6347591', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2180, 'Jump Wings', '2023-07-27 16:00:00', '2023-07-27 17:30:00', 'Northern Airbase', '#6cba50', 'Come learn how to fall out of a fixed wing, static line style. If senior guys want to show up, i will also go over summer more nuance items like plans for regrouping once on the ground, and good practices for loading orders.', 918, 0, '2023-07-25 05:46:36', '2025-12-17 19:45:34', NULL, '6348788', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2181, 'Rotary Logistics Qualification', '2023-07-28 19:00:00', '2023-07-28 20:00:00', 'Training Server - Main Airfield', '#ecb200', '', 27, 0, '2023-07-25 19:20:21', '2025-12-17 19:45:34', NULL, '6349354', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2182, 'Calling All Pilots', '2023-07-26 17:00:00', '2023-07-26 17:30:00', 'team speak: Recon Room', '#ecb200', 'Requesting any pilots(and anyone interested) that are available for some feedback on some new stuff for Pathfinder. Shouldn’t take long, we’ll also meet after the Saturday op to get some more input', 644, 0, '2023-07-25 21:25:26', '2025-12-17 19:45:34', NULL, '6349618', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2183, 'BN smoke sesh', '2023-07-29 16:00:00', '2023-07-29 16:45:00', '', '#ecb200', 'Quick lil sit down\nLets talk types of missions we want to see\nLets talk trainings\nLets talk mods for the BN ( im working with a 3D modeler)\n 17th specfic Kiowa\n(This project will take some time)\nThe state if RRC', 43, 0, '2023-07-28 13:21:09', '2025-12-17 19:45:34', NULL, '6353008', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2184, 'NCO Meeting', '2023-07-29 17:00:00', '2023-07-29 17:45:00', 'Chow Hall - TeamSpeak', '#FFFFFF', 'All Iceberg/17th Members welcome from the bottom of the ranks to the top of command. This meeting is a quick discussion based on the following operation - Taskforce 74 : The Killing Fields. \n\nWe will discuss the overall planning of tonight\'s operation and the slotting. Throughout the entire meeting, feel free to stop and side talk for any questions. Hope to see you all there!\n\nFigma Link (Planning) : https://www.figma.com/file/VMvW0ETglux2rbaDE6ZKhb/TF74-Part-3?type=whiteboard&node-id=0-1&t=fKCsu0zdRuXdreKq-0', 840, 0, '2023-07-29 18:49:59', '2025-12-17 19:45:34', NULL, '6353825', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2185, 'AIT 3', '2023-08-01 18:00:00', '2023-08-01 20:00:00', 'Training Server', '#6cba50', 'Military Operations in Urban Terrain', 468, 0, '2023-07-29 19:45:42', '2025-12-17 19:45:34', NULL, '6353830', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2186, 'AIT 4', '2023-08-08 18:00:00', '2023-08-08 20:00:00', 'Training Server', '#6cba50', 'Close Quarters Battle', 468, 0, '2023-07-29 19:46:42', '2025-12-17 19:45:34', NULL, '6353831', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2187, '[Canceled] NEW RSLC TRIAL MISSION', '2023-08-11 19:00:00', '2023-08-11 20:30:00', '', '#ecb200', 'This will be the first iteration of RSLC mission testing. It will be similar to pathfinder but team focused. Expect there to be a 30-45 minute brief with additional reading material provided prior.', 644, 1, '2023-08-01 21:38:00', '2025-12-17 19:45:34', NULL, '6357559', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2188, 'A training I don\'t know what yet', '2023-08-03 15:00:00', '2023-08-03 17:00:00', 'Training Server', '#6cba50', 'Wait to see what it\'ll be yes?', 468, 1, '2023-08-02 07:04:57', '2025-12-17 19:45:34', NULL, '6357710', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2189, 'Taskforce 74: Apocalypse Now', '2023-08-05 18:00:00', '2023-08-05 21:00:00', '', '#df5353', 'Event Details\n : "Things are popping off out there in Livonia. the GAF done pulled up and occupied the whole region seizing all sorts of infrastructure and what not . So the 17th gonna pull up and seize it all back. typical gang turf war type shit." - Tyrone July 2023\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Livonia\n\n\nAdditional Mods/DLC Required\n : Contact DLC (\n)\n\n\nOPORD\n : \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/1850720272', 2225, 0, '2023-08-02 15:50:40', '2025-12-17 19:45:34', NULL, '6357867', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2190, 'Combat life saver', '2023-08-09 18:00:00', '2023-08-09 19:30:00', 'Medical training ground', '#ecb200', 'Come Learn how to save your buddies  and help the medic during a mas Cavs.', 280, 0, '2023-08-02 17:09:14', '2025-12-17 19:45:34', NULL, '6357892', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2191, 'Exterminautus : An extremely fictional operation', '2023-08-04 18:00:00', '2023-08-04 21:00:00', '17th Private Operations Server', '#ecb200', 'Event Details : Following a brutal series of engagements with Takistani armed forces that have led to extremely high losses on both sides, the US has decided on a new course of action in order to remind Takistan and its allies why the US is considered a global super power. In order for this to occur, the US has tasked the 17th Rangers with a dangerous lightning strike into enemy held territory to eliminate enemy radar and AA systems. Strike fast and then watch the fireworks.\n\nLocation : 17th Private Ops Server\n\nMap : \n\n\nAdditional Mods : \n', 827, 0, '2023-08-03 20:26:40', '2025-12-17 19:45:34', NULL, '6358652', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2192, 'Basic Training', '2023-08-04 18:00:00', '2023-08-04 20:30:00', 'Training Server', '#a250e8', 'Basic Training for Recruits. All recruits must complete basic training within one month of their application being accepted.', 468, 0, '2023-08-03 21:45:25', '2025-12-17 19:45:34', NULL, '6358666', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2193, 'Fixed Wing Logistics Training', '2023-08-07 19:00:00', '2023-08-07 20:00:00', 'Training Server - Main Airfield', '#ecb200', 'Oh boy lets fly around some big planes and look cool. Come learn the ins and outs of the big boy carho carriers because who wouldnt want to be a trash hauler? Read up onbthe attached doc as there is new information that will be covered and taught. If you\'re lucky may do a qual after if there\'s time.', 27, 0, '2023-08-03 22:01:01', '2025-12-17 19:45:34', NULL, '6358668', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2194, 'Fixed Wing Logistics Qualification', '2023-08-08 19:00:00', '2023-08-08 20:00:00', 'Training Server - Main Airfield', '#ecb200', 'First time in a long time join me and take a wack at being one of the few elite cargo delivery guys!!', 27, 0, '2023-08-03 22:03:21', '2025-12-17 19:45:34', NULL, '6358669', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2195, 'Operation Stonewall', '2023-08-25 18:00:00', '2023-08-25 20:00:00', '', '#FFFFFF', 'Situation\r\nAO: Altus\r\nToD: Early morning - Sunrise in ~45 minutes\r\nForces in play:\r\nOPFOR:\n\r\nCSAT\r\nAAF\r\nMost Likely Course of Action\n\r\nCSAT will be caught unaware, allowing quick clearing and securing of the castle before AAF forces move in to attack both US and CSAT forces.\r\nMost Deadly Course of Action\n\r\nCSAT becomes aware of navel insert, holding the castle until reinforcements from the airfield can arrive.\r\nCivilian Considerations:\r\nAvoid infrastructure damage. No civilians expected in area\r\nBLUFOR:\n\r\n17th Ranger Battalion\r\nNATO reinforcements to hold the castle.\r\nEngagement Criteria:\r\nMission\n\r\nThe 17th is tasked with disrupting both CSAT and AAF operations on the Western side of Altus, creating a foothold for NATO to expand and push deeper into Altus.\r\n\r\nExecution\n\r\nObjectives:\n\r\n\r\n\r\nTimeline (in CST)\r\n6:45pm: Organize units, and kit up\r\n7:00pm: Operation Brief\r\n7:15pm: Operation Start\r\n10:00 pm: All OBJ cleared, prepare for AAR.\r\n\r\nCommand and Signal\r\nLong Range Frequencies:\r\nCommand 45\r\nRTO 45, 35\r\nAlpha Lead 40\r\nFlight Lead 45, 30\r\nPilots 30, 35\r\nEcho Lead 45,80\r\nRRC 69\r\nConvoy 50\r\nNonverbal Coordination:\r\nGreen: This is used to mark friendly positions on the field.\r\nBlue: Marking suitable locations for Landing Zones.\r\nRed: This is used for marking enemy positions for all units to reference.\r\nYellow: This is used to inform friendly forces that Immediate medical support is needed.\r\nPurple: This color represents a friendly position with enemy units danger close, Anyone outside of 100 meters away from the smoke should be assumed hostile.\r\nOrange: This tells anyone in the air that a friendly unit is in desperate need of resupply.\n\r\nCall Sign for supports:\r\nAirframes\r\nCH-47F Chinook = "Achilles"\r\nUH-60M Transport = "Griffin"\r\nAH-64D Apache = "Orion"\r\nA-10 Warthog = "Ares"\r\nA-29 Super Tucano = “Odyssey"\r\nNaval\r\nRHIB = "Trident"\r\nAvailable Assets:\r\nGround\n\r\n1x M939 Guntruck\r\n1x M1232 (mk19)\r\n(Civ or Enemy transport assets approved for use if needed)\r\nNaval\n\r\n4x Assault Boat\r\n4x Assault Boat\r\n\r\nAir\n\r\n2x UH-60M “Blackhawk”\r\n2x Super Tucano\r\n1x A-10\r\n2x AH-64D\r\n1x CH-47\r\n\r', 57, 0, '2023-08-04 20:42:00', '2025-12-17 19:45:34', NULL, '6359397', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2196, 'North Takistan SERE - Stage 1', '2023-09-08 18:00:00', '2023-09-08 20:00:00', '', '#FFFFFF', '', 57, 0, '2023-08-04 20:42:43', '2025-12-17 19:45:34', NULL, '6359398', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2197, 'North Takistan SERE - Stage 2', '2023-09-15 18:00:00', '2023-09-15 20:00:00', '', '#FFFFFF', '', 57, 0, '2023-08-04 20:43:05', '2025-12-17 19:45:34', NULL, '6359399', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2198, 'North Takistan SERE - Stage 3', '2023-09-22 18:00:00', '2023-09-22 20:00:00', '', '#FFFFFF', '', 57, 0, '2023-08-04 20:43:23', '2025-12-17 19:45:34', NULL, '6359400', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2199, 'The Takistan Crisis 2', '2023-08-16 18:00:00', '2023-08-16 20:00:00', '', '#df5353', 'EVENT DETAILS\n: The height of the Takistan Invasion. Press on through the final objective to take the Northern Airbase and adjacent city and finish the fight.\nSERVER\n: 17th Operations\nMAP\n: Takistan\nADITIONAL MODS REQUIRED\n: \nN/A', 28, 0, '2023-08-05 15:54:45', '2025-12-17 19:45:34', NULL, '6359849', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2200, 'The Takistan Crisis 1', '2023-08-10 19:00:00', '2023-08-10 20:30:00', '', '#df5353', 'EVENT DETAILS\n: The opening days of the Invasion of Takistan. Press through the country and destroy the enemy as you march towards the North airbase.\nSERVER\n: 17th Operations\nMAP\n: Takistan\nADITIONAL MODS REQUIRED\n: \nN/A', 28, 0, '2023-08-05 15:55:09', '2025-12-17 19:45:34', NULL, '6359850', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2201, 'NCO Meeting', '2023-08-05 17:00:00', '2023-08-05 17:30:00', 'Chow Hall TeamSpeak', '#FFFFFF', 'Figma Link attached ^\n\nThis meeting is opened up to everyone from the base rifleman to the highest in command, if you are curious what we are doing tonight, or have any questions, come get everything solved at the NCO Meeting. First we will go over the plan, then we will go over slotting, by then we should have the green light to load in.', 840, 0, '2023-08-05 21:10:29', '2025-12-17 19:45:34', NULL, '6359940', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2202, 'Altis Excursion', '2023-08-06 18:00:00', '2023-08-06 20:00:00', '', '#FFFFFF', '', 313, 0, '2023-08-06 18:23:09', '2025-12-17 19:45:34', NULL, '6360509', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2203, 'Basic Training', '2023-08-10 16:30:00', '2023-08-10 18:45:00', '', '#FFFFFF', 'Come get the fundamentals for everything you will need in your future within the 17th. Today we will go over everything from basic key bindings to maneuvers and so on. At the bottom the basic training document is linked, it entails everything we will go over. \n\nWe ask that you finish the entire \n and show up 10-15 minutes before hand so we can ensure and double check all is finished and ready to begin the training. \n\nReminder : Recruits have 30 days to finish Basic Training upon acceptance to the unit. If you cannot attend any future trainings for 30 days, contact the Training SGT "FrenchToast" or your recruiter. \n\nBasic Training Document : https://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 840, 0, '2023-08-07 20:14:32', '2025-12-17 19:45:34', NULL, '6361524', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2204, 'Taskforce 74: Act of Valor', '2023-08-19 18:00:00', '2023-08-19 21:00:00', '', '#df5353', 'Opord: \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/1297539228', 2225, 0, '2023-08-07 21:31:29', '2025-12-17 19:45:34', NULL, '6361542', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2205, 'Arma3 Server Performance Work', '2023-08-07 19:00:00', '2023-08-07 22:59:00', '', '#FFFFFF', '', 38, 0, '2023-08-08 00:31:00', '2025-12-17 19:45:34', NULL, '6361592', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2206, 'NCO Course Testing', '2023-08-09 21:00:00', '2023-08-09 23:00:00', '', '#FFFFFF', 'Hi, come out and help Sherman do cool things maybe I guess idk, it\'s ok, u don\'t have to come if yo udon\'t wanna i just wanna do cool things and feel smart, ignore me', 67, 0, '2023-08-08 03:49:09', '2025-12-17 19:45:34', NULL, '6361659', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2207, 'Arma 3 Whitelist Maintance', '2023-08-08 21:00:00', '2023-08-08 22:30:00', '', '#FFFFFF', 'Adding whitelisted mods previously requested and approved.', 38, 0, '2023-08-08 06:07:39', '2025-12-17 19:45:34', NULL, '6361704', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2208, 'Operation Atlas P5', '2023-08-09 18:00:00', '2023-08-09 21:00:00', '', '#FFFFFF', 'Event Details\n : 17th Rangers have been tasked with securing the Livonia Factory. However, to take said factory, a series of tasks must be completed first. Rangers will be supplies with 4x Lynx\'s and have free reign on where to go. The first objective, the 17th will assault a town containing 2 stolen helicopters that can be used as logistics for the rest of the night, but more importantly, will act as transport to the next objective. The second objective prior to the factory, will contain 2 transmitter towers with direct communication to nearby airbases containing multiple strips of CAS Fixed Wing and Rotary. Both objectives are completely optional, however, skipping any will be extremely costly. The overall objective, "The Factory", owns a vast amount of defenses, so even though it is small, it wont be easy. \n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Livonia\n\n\nAdditional Mods/DLC Required\n : None', 840, 0, '2023-08-08 06:27:35', '2025-12-17 19:45:34', NULL, '6361709', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2209, 'Operation Atlas P7', '2023-08-23 18:00:00', '2023-08-23 21:00:00', '', '#FFFFFF', 'Event Details\n : We are arriving towards the end of the war between the 17th Rangers and ION Services lets finish this strong. Most HQ\'s hosted by ION have been shut down, it is time to destroy their Air Superiority. The overall goal of tonight will be to take the Malden Airport which is controlled by ION. Tonight the biggest opponent will be their ASF flexing between Helicopters and Fixed Wing. Beforehand, La Trinite will be the beginning engagement. There are 4 transmitter towers scattered throughout the town. Shutting down their forms of communication can ensure that no reinforcements will arrive from off-map for the assault on the airfield. Once all towers are destroyed, engagements on the airfield can begin. \n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Malden 2035\n\n\nAdditional Mods/DLC Required\n : None\n\n\nAssets\n : UH-60M Blackhawk, Fixed Wing Planes', 840, 0, '2023-08-08 06:27:51', '2025-12-17 19:45:34', NULL, '6361710', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2210, 'Operation Atlas P8', '2023-08-30 18:00:00', '2023-08-30 21:00:00', '', '#FFFFFF', 'Event Details\n : Rangers have fought valiantly throughout the Atlas campaign, however, in order to reach the finale, the 17th is tasked with one last step to gain dominance in the ION controlled region. Satellite intelligence has located ION Services main base of defense that has supplying reinforcements the past couple of months. If we plan on winning this war, we must shut down their reinforcements once and for all. Rangers will step off at 1400 towards a location that holds a triangular cell-tower range of transmitters. Before access can be gained on ION\'s HQ Island, the towers must be destroyed. From there rangers will gain intel on their ride over to the island. Once they get their vehicle, assaults will take place. As always this will not be easy and will require ALL hands on deck. Lets win this once and for all.\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : United Sahrani\n\n\nAdditional Mods/DLC Required\n : None\n\n\nAssets\n : AH-6M Little Bird, MH-6M Little Bird, Transport Vans, CH-47F Chinook\n', 840, 0, '2023-08-08 06:28:07', '2025-12-17 19:45:34', NULL, '6361711', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2211, 'Operation Atlas P6', '2023-08-18 18:00:00', '2023-08-18 21:00:00', '', '#FFFFFF', 'Event Details\n : Yet again, ION Services have put up some tough challenges for the 17th Rangers. Tonight, the 17th are being tasked with zone control of the South Eastern peninsula of Malden. Upon taking control, rangers will scout for transport from one island to another, assaulting the harbor of an exterior island. The AO will be hot, but no need to fear, jet skis will be here. Assuming rangers can actually make it to the port, they will need all guns possible to make it into the heavily fortified military base. Taking control of ION\'s main zone of operations and HQ/Arsenal, will lead us one step closer to wiping them out in Campaign Atlas.\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Malden 2035\n\n\nAdditional Mods/DLC Required\n : None', 840, 0, '2023-08-08 06:29:02', '2025-12-17 19:45:34', NULL, '6361712', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2212, 'Operation Atlas Finale', '2023-09-29 18:00:00', '2023-09-29 21:00:00', '', '#FFFFFF', 'Event Details\n : The war of ION Services has come to an end. We have finally pinpointed the location of the Main HQ and the approximate location of their leader. Today, Rangers will step off (foot mobile) throughout the map of Bukovina with no resupplies or reinforcing assets. The 17th will be given a map, and whatever else they can grab from the Arsenal, and for the rest of their operation they will only have hope to their disposal.\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Bukovina\n\n\nAdditional Mods/DLC Required\n : NONE\n\n\nAssets\n : NONE', 840, 0, '2023-08-08 06:30:38', '2025-12-17 19:45:34', NULL, '6361713', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2213, 'Armed Blackfish Practice', '2023-08-15 18:00:00', '2023-08-15 19:00:00', '', '#d89332', 'Gonna meet up on the training server and blow stuff up with the armed blackfish. Gonna need pilots, copilots, gunners, and maybe JTACs too. \nSomething something gunship above!', 28, 0, '2023-08-09 17:35:34', '2025-12-17 19:45:34', NULL, '6362935', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2214, 'Stitchin\' and Bitchin\' Take 2', '2023-08-13 16:00:00', '2023-08-13 17:00:00', 'TS3- Chowhall', '#6cba50', '--CURRENT MEDICAL TRAINERS STRONGLY ENCOURAGED TO ATTEND--\nRescheduled from earlier in the month, this is a Roundtable Event for all things medical. A medical Pow-Wow, basically. Bring ideas, questions, concerns & exaggerated stories of your bravery and excellence as CLS/68W. All are welcome to attend, even if you just want to bitch about how over-complicated medical has become and think medical should be EZ. Alpha & Echo members very welcome.\nThis will be held in the Chow Hall on TeamSpeak, however, there is a possibility that it could transition to the Training Server if needed.', 2223, 0, '2023-08-09 22:29:33', '2025-12-17 19:45:34', NULL, '6363218', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2215, 'Mechanized Testing P2', '2023-08-11 19:00:00', '2023-08-11 21:00:00', '', '#ecb200', 'it did the thing, but i think we can do it better', 67, 0, '2023-08-10 05:43:31', '2025-12-17 19:45:34', NULL, '6363479', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2216, 'command meeting with Ken', '2023-08-20 14:30:00', '2023-08-20 16:30:00', '', '#ecb200', 'Your command meeting stuff if you got topics comment on the calendar event', 43, 0, '2023-08-11 13:25:47', '2025-12-17 19:45:34', NULL, '6364123', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2217, 'Alpha Meeting', '2023-08-14 16:30:00', '2023-08-14 17:30:00', '', '#FFFFFF', 'All members and ranks are welcome, come rant or suggest improvements for Alpha Company. If you have any topics you would to be talked about but cannot make it, DM me or drop it in the comments below', 840, 0, '2023-08-11 22:04:23', '2025-12-17 19:45:34', NULL, '6364333', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2218, 'Combat Life Saver Training', '2023-08-22 18:00:00', '2023-08-22 20:00:00', 'Training Server-Medical Area', '#6cba50', 'Join us for Combat Life Saver training! This training is designed to demonstrate how a CLS can be so much more than an ammo bearer for the medic! \nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training.\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER THAN THE 7PM-9PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n', 2223, 0, '2023-08-14 21:24:19', '2025-12-17 19:45:34', NULL, '6367308', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2219, '68W (Medic) Training', '2023-08-28 18:00:00', '2023-08-28 20:00:00', 'Training Server-Medical Area', '#6cba50', 'A training course for all you aspiring combat medics to earn your 68W badge.\n\n68W training document: \n\n\nThere will be qualification testing at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treating injured/unconscious individuals\n(2) Correct method of triage during a Mass Casualty Incident\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.) ', 2223, 0, '2023-08-14 21:26:14', '2025-12-17 19:45:34', NULL, '6367309', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2220, 'Mass Cas & Triage Training', '2023-09-04 18:00:00', '2023-09-04 20:00:00', 'Training Server-Medical Area', '#a250e8', 'A training for both medical and non-medical personnel focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to secure and manage any Mass Cas quickly and efficiently.\nThink of this training as AIT for Mass Casualty Incidents\n\n', 2223, 0, '2023-08-14 21:27:59', '2025-12-17 19:45:34', NULL, '6367310', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2221, 'How to Zeus 101', '2023-08-20 17:00:00', '2023-08-20 19:00:00', 'Discord - High Bit Gaming', '#ecb200', '', 67, 0, '2023-08-14 22:41:32', '2025-12-17 19:45:34', NULL, '6367357', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2222, '[RESCHEDULED] Eden Editor Workshop #1', '2023-08-27 16:00:00', '2023-08-27 18:00:00', 'Discord - High Bit Rate Gaming', '#ecb200', '', 67, 0, '2023-08-14 22:42:23', '2025-12-17 19:45:34', NULL, '6367358', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2223, 'Basic Training', '2023-08-17 17:00:00', '2023-08-17 20:00:00', '17th Training server (training grounds)', '#a250e8', 'BCT is required for all recruits within their first month of being accepted into the unit. Come learn how to be a functional member of the 17th', 2226, 0, '2023-08-15 02:57:49', '2025-12-17 19:45:34', NULL, '6367439', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2224, 'Rotary Wing CAS Training', '2023-08-17 14:00:00', '2023-08-17 16:00:00', 'Training Server', '#d89332', 'Learn to use Rotary Close Air Support aircraft.', 468, 0, '2023-08-15 18:44:14', '2025-12-17 19:45:34', NULL, '6367635', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2225, 'EOD Training', '2023-08-29 18:00:00', '2023-08-29 19:00:00', '', '#6cba50', 'EOD Training in which we will be going over how to safely defuse mines and best practices when dealing with unexploded ordinance, UXOs, and IEDs. There will be a qual at the end, but due to the amount of time each qual takes, I will only be able to commit to three people actually having a chance to qual (each qual can take a significant amount of time, and they cannot be run simultaneously). \nTHIS IS WHY SIGNUPS ARE LIMITED.\n Please attend if you have signed up, please do not use the signup feature if you cannot commit to attending and attempting to qualify. Likewise, if you have already qualed on EOD and are merely looking to observe/refresh, please do not sign up as either going or on the waitlist. Instead use the maybe option.\nThanks for the patience, looking forward to seeing you all there.', 951, 0, '2023-08-16 15:52:50', '2025-12-17 19:45:34', NULL, '6368434', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2226, 'LEADERS RECON WIT KEN', '2023-08-17 19:00:00', '2023-08-17 20:00:00', '', '#FFFFFF', 'WE GONNA PEEP UPDATED SANDTABLE ON THE SERVER \n\nGOOD OL FASHION RAID PREPERATION\n\n\nIF U WANT TO BRING IN NCOS AND SHIT I WONT TRIP', 43, 0, '2023-08-17 14:38:52', '2025-12-17 19:45:34', NULL, '6370006', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2227, 'Land Navigation', '2023-08-21 18:00:00', '2023-08-21 21:00:00', '17th Training Server', '#FFFFFF', 'Come learn how to Read Maps, Use Map Tool, Compass as well as read and relay grids proficiently all without GPS Tools\n\nFinally prove you were paying attention by letting me drop you into an area and apply what you learned by finding where you are to within 10sq Meters.\nAll Members should learn how to read maps and navigate quickly and proficiently to be able to regroup with members of their team, call in fire missions, get from point A to point B. Be it on the ground or the air Land Navigation is Essential.\n', 38, 0, '2023-08-19 01:41:28', '2025-12-17 19:45:34', NULL, '6370581', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2228, 'NCO Meeting', '2023-08-19 17:00:00', '2023-08-19 17:45:00', '', '#FFFFFF', 'Pre-Operation meeting open to all members of any rank. This session is used to discuss/plan out the basics of tonights operation. At first we will go over the general maneuver of the operation and then we will transition into platoon composition/slotting. Throughout the meeting feel free to ask any and all questions before the Op starts.\n\nFigma Link : https://www.figma.com/file/1v3FpJmRrjsdjI0SVl0eZ0/TF74-P5?type=whiteboard&node-id=0-1&t=WxVYARbvza9SnvXk-0', 840, 0, '2023-08-19 19:55:52', '2025-12-17 19:45:34', NULL, '6372777', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2229, 'Rotary Wing CAS Qualification', '2023-08-24 18:00:00', '2023-08-24 19:30:00', 'Training Server', '#d89332', '', 468, 0, '2023-08-20 19:11:42', '2025-12-17 19:45:34', NULL, '6373787', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2230, 'Iceberg Server Reboot', '2023-08-20 20:00:00', '2023-08-20 22:00:00', '', '#FFFFFF', '', 38, 0, '2023-08-21 00:45:47', '2025-12-17 19:45:34', NULL, '6373942', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2231, '[CANEX] RSLC', '2023-08-31 18:00:00', '2023-08-31 20:00:00', 'Private Operations', '#ecb200', 'Reconnaissance and Surveillance Leaders Course:\nBase Training for RRC Members. Students will be provided materiel and tools to be familiarized with prior to the training. ', 644, 0, '2023-08-21 12:03:04', '2025-12-17 19:45:34', NULL, '6374748', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2232, 'Taskforce 74: Courage Under Fire', '2023-08-26 18:00:00', '2023-08-26 21:30:00', 'Private Ops server', '#df5353', 'Event Details\n : With the 3 key officers taken out, the enemy is left leaderless and is on the verge of imploding in on itself. Unfortunately for us, the killing of the VDV officer has caused Russian forces to get involved, primarily through supplying enemy forces with new air and ground assets, allowing the enemy to maintain a small foothold over some parts of the region. However, due to their crumbling command structure, one final push is all we need to tip the enemy over the edge. \n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Livonia\n\n\nAdditional Mods/DLC Required\n : \n\n\n\nOPORD\n : https://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/1883981462', 43, 0, '2023-08-21 13:12:20', '2025-12-17 19:45:34', NULL, '6374818', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2233, 'Basic Training', '2023-08-23 17:00:00', '2023-08-23 20:00:00', '17th Training server (training grounds)', '#a250e8', 'BCT is required for all recruits within their first month of being accepted into the unit. Come learn how to be a functional member of the 17th', 2226, 0, '2023-08-22 19:53:10', '2025-12-17 19:45:34', NULL, '6377590', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2234, 'Campaign Maker smoke sesh', '2023-09-03 14:00:00', '2023-09-03 15:00:00', 'discord/TS', '#ecb200', 'Need to chop it up with y\'all about campaigns this than the other pull up this meeting ain\'t going to take too long', 43, 0, '2023-08-25 14:00:38', '2025-12-17 19:45:34', NULL, '6382559', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2235, 'MOD SHAKEDOWN SEREIS: THE DRIP', '2023-09-01 18:30:00', '2023-09-01 20:30:00', 'the 17th TESTing server', '#FFFFFF', 'THis is the first of many thigns going up that will be utilized to shake down some of the4se newly suggested mods with our mod pack!!!!! this will be utilizing or testing shadow mod i will provde link in the comments. THis is important for the advancement and enhancement of our cute lil milsim group.', 43, 0, '2023-08-25 15:06:34', '2025-12-17 19:45:34', NULL, '6382573', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2236, 'Alpha 60mm mortar training', '2023-08-31 17:30:00', '2023-08-31 19:30:00', '', '#6cba50', 'Learn how to support your squad with the 60mm mortar. Topics covered- \nRadio calls for fire\nRanging \nAdjusting fire \nLoad outs \nMortar safety', 7, 0, '2023-08-25 17:20:37', '2025-12-17 19:45:34', NULL, '6382618', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2237, 'NCO Meeting', '2023-08-26 17:00:00', '2023-08-26 17:30:00', 'Chow Hall - TeamSpeak', '#FFFFFF', 'Pre-Operation meeting open to all members of any rank. This session is used to discuss/plan out the basics of tonights operation. At first we will go over the general maneuver of the operation and then we will transition into platoon composition/slotting. Throughout the meeting feel free to ask any and all questions before the Op starts.\n\nFigma Link : \n', 840, 0, '2023-08-26 20:08:20', '2025-12-17 19:45:34', NULL, '6383149', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2238, 'Fixed Wing CAS training', '2023-09-03 18:00:00', '2023-09-03 19:00:00', 'Northern Airfield (Training Server)', '#d89332', 'I will cover the basics of fixed wing CAS, using the different munition types, some air to air and also evading and countering AA threats. \nIf attendees want any specific munition covered or any thing specific to be covered in the training, please feel free to let me know before or during the training.', 2224, 0, '2023-08-31 12:39:19', '2025-12-17 19:45:34', NULL, '6387266', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2239, 'Taskforce 74: Behind Enemy Lines', '2023-09-02 18:00:00', '2023-09-02 21:00:00', '', '#df5353', '', 2225, 0, '2023-08-31 17:50:46', '2025-12-17 19:45:34', NULL, '6387592', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2240, 'Taskforce 74: A Few Good Men(and Baker)', '2023-09-09 18:00:00', '2023-09-09 21:30:00', '', '#ecb200', '', 43, 0, '2023-09-01 17:30:58', '2025-12-17 19:45:34', NULL, '6388603', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2241, 'Taskforce 74: POST CREDIT OP(USING TEST SHADOW MOD)', '2023-09-16 18:00:00', '2023-09-16 21:30:00', 'MOD Validation Server', '#df5353', 'YALL REMEMEBR THE nuke\n\nTIEM TO WRECK THE SPOT THAT LAUNCHED IT\n\n\nchernoooooooooooo', 43, 0, '2023-09-01 17:32:44', '2025-12-17 19:45:34', NULL, '6388604', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2242, 'BN TRAINING: SQUAD LANES', '2023-09-23 18:00:00', '2023-09-23 20:30:00', '', '#df5353', '', 43, 0, '2023-09-01 17:33:18', '2025-12-17 19:45:34', NULL, '6388606', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2243, 'Combat Drills: Ground Assault', '2023-09-07 18:00:00', '2023-09-07 21:00:00', 'Private Ops Server', '#FFFFFF', 'Let\'s try something new.\nHobson\'s Holy Hentai', 67, 0, '2023-09-04 23:05:04', '2025-12-17 19:45:34', NULL, '6393686', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2244, 'NCO Leadership Training', '2023-09-12 18:00:00', '2023-09-12 21:00:00', 'Private Ops Server', '#ecb200', 'We are running it back. This is a required course for any NCO that wishes to be promoted to a rank above CPL. All are welcome to attend. If you have done this before, you are more than welcome to do it again!\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/363729', 67, 0, '2023-09-04 23:09:50', '2025-12-17 19:45:34', NULL, '6393700', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2245, 'AIT 1', '2023-09-26 18:00:00', '2023-09-26 20:30:00', 'Training Server', '#FFFFFF', '', 67, 0, '2023-09-04 23:14:50', '2025-12-17 19:45:34', NULL, '6393703', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2246, 'A3 Serer Updates 2.14', '2023-09-05 13:30:00', '2023-09-05 16:00:00', '', '#FFFFFF', 'Aram3 Pushed a game update. Update your game before logging into the servers.', 38, 0, '2023-09-05 18:29:34', '2025-12-17 19:45:34', NULL, '6394610', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2247, 'The Battle for Altis ; Part 1', '2023-09-06 18:00:00', '2023-09-06 21:00:00', '17th Private Ops server', '#355bf8', 'Event Details\n : Tensions have continued to build on the Island of Altis between the new Altian government, known as the Union of Altis, and US forces stationed on the Airbase leased to them. The government has made increasingly threatening statements about US forces being on the island and has made it clear that it does not fully recognize the treaties signed by its predecessor. Now with Altis seeking closer ties with the CAIT alliance (a military alliance consisting of China, Afghanistan, Iran, and Turkey as well as several smaller nations), the US seeks to exert what it sees as rightful control of owned territory. To this end, security forces on the Island have been temporarily replaced with the 17th Ranger Battalion...\n\n\nLocation\n : 17th Private Ops Server\n\n\nMap\n : Altis\n\n\nAdditional Mods\n : N/A\n\n\n\nNotes\n : This is part 1 of a 4 part mini series. If you like to lead in any capacity, SL, FTL, etc, please feel free to message me beforehand for one or all of these events', 827, 0, '2023-09-05 19:16:08', '2025-12-17 19:45:34', NULL, '6394628', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2248, 'The Battle for Altis ; Part 2', '2023-09-13 18:00:00', '2023-09-13 21:00:00', '', '#355bf8', 'Event Details\n : Following the previous raid on an OPFOR Artillery Battery, the AAF have organized a large Mechanized push aimed at eliminating the J.A.R.S. FOB. In response, the 17th Rangers have been tasked with holding the main highway as long as possible with a series of fortifications being dug by US Army Engineers to provide a series of fall back positions as needed.\n\n\nLocation\n : 17th Private OPs server\n\n\nMap\n : Altis\n\n\nAdditional Mods\n : N/A', 827, 0, '2023-09-05 19:17:05', '2025-12-17 19:45:34', NULL, '6394629', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2249, 'The Battle for Altis ; Part 3', '2023-09-20 18:00:00', '2023-09-20 21:00:00', '', '#355bf8', 'Event Details\n : With the main goal of the mechanized push by the AAF blunted, the 17th Rangers are tasked with securing the hills around the islands main airfield. The main goal of this push is to restrict enemy fixed wing aircraft from taking off and continuing to harass our resupply efforts.\n\n\nLocation\n : 17th Rangers Private Ops server\n\n\nMap\n : Altis\n\n\nAdditional Mods\n : N/A\n\n\nSIDE NOTES\n : This will be with the \nnormal\n 17th Rangers modpack, \nNOT\n the testing modpack. If you message me asking or forget, you will be laughed at.', 827, 0, '2023-09-05 19:17:43', '2025-12-17 19:45:34', NULL, '6394630', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2250, 'The Battle for Altis ; FINALE', '2023-09-27 18:00:00', '2023-09-27 21:00:00', '', '#355bf8', 'Event Details\n : With the Altis Air Force , Armored Forces, and many motorized forces out of the fight, the 17th Rangers is tasked with making a surprise raid on the capital in order to attempt to force a surrender.\n\n\nLocation\n : 17th Private Ops Server\n\n\nMap\n : Altis\n\n\nAdditional Mods\n : N/A', 827, 0, '2023-09-05 19:18:23', '2025-12-17 19:45:34', NULL, '6394631', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2251, 'Co-Pilot Training/Qual', '2023-09-08 17:00:00', '2023-09-08 18:00:00', '', '#d89332', 'read this and become 10x smarter:\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/345a8732-cb80-4eda-9eff-fbb8161675ac/docs/263833', 2225, 0, '2023-09-05 20:25:15', '2025-12-17 19:45:36', NULL, '6395182', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2252, 'Demo Training', '2023-09-25 18:00:00', '2023-09-25 19:30:00', '', '#6cba50', '', 951, 0, '2023-09-06 19:15:19', '2025-12-17 19:45:36', NULL, '6396837', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2253, 'RASP', '2023-09-30 18:00:00', '2023-09-30 21:00:00', '', '#df5353', 'IMPORTANT: \nThis RASP we will be using the \n17th Testing Modpack\n and will be on the map \nSa\'hatra\n. - Make sure to Update your Mods Prior to the start of the event.\nAdditional:\n A deal has been made with the Kenporer. If a majority of people show up to RASP, we will be allowed to use the AUG for the next campaign. If the above criteria is met \nAND\n you all preform well enough, the AUG will be allowed perminately.\n17th Ranger Battalion [MOD VALIDATOIN / TESTING PACK]:\n \nLink found in\n \nRASP General Info: \n', 43, 0, '2023-09-10 14:49:15', '2025-12-17 19:45:36', NULL, '6401811', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2254, 'Basic Training', '2023-09-16 11:00:00', '2023-09-16 14:00:00', 'Training Server - Training Grounds', '#a250e8', 'BCT is required for all recruits within their first month of being accepted into the unit. Come learn how to be a functional member of the 17th', 918, 0, '2023-09-10 18:11:35', '2025-12-17 19:45:36', NULL, '6401889', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2255, 'COMMAND MEETING WIT KEN', '2023-09-17 14:00:00', '2023-09-17 16:00:00', '', '#df5353', '', 43, 0, '2023-09-12 03:41:41', '2025-12-17 19:45:36', NULL, '6403562', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2256, 'Mechanized Training/Qual', '2023-09-21 17:30:00', '2023-09-21 20:30:00', '', '#d89332', 'Learn how to command and operated Echo\'s Armored Assets, primarily the IFVs', 7, 0, '2023-09-13 00:21:15', '2025-12-17 19:45:36', NULL, '6404369', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2257, 'Alpha NCO meeting', '2023-09-16 17:00:00', '2023-09-16 17:30:00', '17th Teamspeak', '#ecb200', '', 827, 0, '2023-09-16 17:15:37', '2025-12-17 19:45:36', NULL, '6408068', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2258, 'DnD FTL/SL Training', '2023-09-24 18:00:00', '2023-09-24 21:00:00', 'Teamspeak Chow Hall', '#FFFFFF', 'Imagine \nroleplaying\n a FTL/SL experience.\nI\'ll set up a Figma. :)\n...maybe I should get some of that expensive d20 dice...', 67, 0, '2023-09-21 08:11:58', '2025-12-17 19:45:36', NULL, '6419492', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2259, 'ACE ARMOR ADJUSTER', '2023-09-22 20:30:00', '2023-09-22 21:30:00', 'TEST SERVER', '#d89332', ' quick lil shake down of armor adjust mod( right now its set up 3 shots will drop russian body armor \n\nbut there is alot more to shake down', 43, 0, '2023-09-22 01:10:16', '2025-12-17 19:45:36', NULL, '6421257', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2260, '17th Shadow Mod Update - Mod Change Prioroty over Events', '2023-10-01 12:00:00', '2023-10-01 22:00:00', '', '#FFFFFF', '', 38, 0, '2023-09-23 17:40:28', '2025-12-17 19:45:36', NULL, '6425022', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2261, 'DnD FTL/SL Training Session #2', '2023-09-28 18:00:00', '2023-09-28 21:00:00', 'Chow Hall - TS', '#FFFFFF', 'oh my god session #1 was actually fun wth', 67, 0, '2023-09-25 04:04:17', '2025-12-17 19:45:36', NULL, '6427422', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2262, 'DnD FTL/SL Training Session #3', '2023-10-01 18:00:00', '2023-10-01 21:00:00', 'Chow Hall - TS', '#FFFFFF', 'WHY IS DMING SO FUN', 67, 0, '2023-09-25 04:05:35', '2025-12-17 19:45:36', NULL, '6427423', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2263, 'Advanced UAV', '2023-10-03 18:00:00', '2023-10-03 19:45:00', '', '#a250e8', 'UAV School for Echo and RRC usage.', 468, 0, '2023-09-25 22:16:02', '2025-12-17 19:45:36', NULL, '6429351', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2264, 'Basic Training', '2023-09-28 18:00:00', '2023-09-28 21:00:00', '', '#FFFFFF', 'Come out and learn the fundamentals you need in your start in the 17th. We will go over everything from standard keybindings, to medical, to formations, to weapon/vehicle familiarization, and so on. Recruits have 30 days upon acceptance to complete a basic, come get it done and ready yourself for future operations and trainings. \n\nPlease ensure all steps in the new member setup guide are complete upon entering teamspeak, if not we will show you the ways!\n\n\n\n', 38, 0, '2023-09-27 02:24:21', '2025-12-17 19:45:36', NULL, '6431478', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2265, 'COMAMND THINGS WIT KEN(NOT THE MONTHLY MEETING)', '2023-10-01 14:30:00', '2023-10-01 15:30:00', 'TS OR DISCORD IDC', '#FFFFFF', 'we gonna chop it up about types of things we wanna do or try this campaign.\n\nand Training Focuses for each unit\n\nif u have a topic reply here', 43, 0, '2023-09-29 16:21:59', '2025-12-17 19:45:36', NULL, '6439625', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2266, 'COMMAND MEETING WITH KEN', '2023-10-08 14:00:00', '2023-10-08 16:00:00', 'TS', '#df5353', '', 43, 0, '2023-09-29 16:35:30', '2025-12-17 19:45:36', NULL, '6439635', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2267, 'Rotary Logistics Training', '2023-10-06 14:00:00', '2023-10-06 16:00:00', '', '#FFFFFF', 'Come learn and practice how to fly Arma 3\'s wonderful logistics helicopters.\nIn the words of Todd Howard "it just works"\nFlexible with time. DM me on Discord to change it', 15, 0, '2023-09-29 21:57:41', '2025-12-17 19:45:36', NULL, '6440034', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2268, 'CSAT familiarization training', '2023-10-05 18:00:00', '2023-10-05 19:30:00', '', '#a250e8', 'Learn to fight CSAT since we usually don\'t.', 468, 0, '2023-10-01 00:10:16', '2025-12-17 19:45:36', NULL, '6440863', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2269, 'DnD FTL/SL Training Session #4', '2023-10-05 20:00:00', '2023-10-05 23:00:00', 'Chow Hall - TS', '#FFFFFF', 'WEEEEEEEEEEEEEEEE AGAIN', 67, 0, '2023-10-02 02:46:28', '2025-12-17 19:45:36', NULL, '6442978', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2270, 'AIT 2', '2023-10-10 18:00:00', '2023-10-10 21:00:00', '', '#FFFFFF', '', 67, 0, '2023-10-02 07:25:23', '2025-12-17 19:45:36', NULL, '6443067', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2271, 'AIT 1 Second Run', '2023-10-06 17:00:00', '2023-10-06 19:00:00', '', '#FFFFFF', 'People missed it and wanted a second attempt. Come.', 67, 0, '2023-10-03 00:43:39', '2025-12-17 19:45:36', NULL, '6445375', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2272, 'The Interitus Campaign - Part 1', '2023-10-07 18:00:00', '2023-10-07 21:00:00', '17th Private Ops Server', '#df5353', 'Mission Details\n : TBA', 827, 0, '2023-10-03 01:31:32', '2025-12-17 19:45:36', NULL, '6445440', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2273, 'Echo Orientation', '2023-10-05 18:00:00', '2023-10-05 19:30:00', 'Training Grounds', '#FFFFFF', '', 79, 0, '2023-10-03 22:31:05', '2025-12-17 19:45:36', NULL, '6448282', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2274, 'Basic Training', '2023-10-06 15:00:00', '2023-10-06 17:15:00', '17th BN Recruitment - Room 1', '#FFFFFF', 'Come get the fundamentals for everything you will need in your future within the 17th. Today we will go over everything from basic key bindings to maneuvers and so on. At the bottom the basic training document is linked, it entails everything we will go over. \n\nWe ask that you finish the entire \n and show up 10-15 minutes before hand so we can ensure and double check all is finished and ready to begin the training. \n\nReminder : Recruits have 30 days to finish Basic Training upon acceptance to the unit. If you cannot attend any future trainings for 30 days, contact the Training SGT "FrenchToast" or your recruiter. \n\nBasic Training Document : https://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 840, 0, '2023-10-03 22:51:07', '2025-12-17 19:45:36', NULL, '6448287', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2275, 'NCO Meeting', '2023-10-07 17:00:00', '2023-10-07 17:30:00', 'Chow Hall - TeamSpeak', '#FFFFFF', 'This meeting is opened up to everyone from the base rifleman to the highest in command, if you are curious what we are doing tonight, or have any questions, come get everything solved at the NCO Meeting. First we will go over the plan, then we will go over slotting, by then we should have the green light to load in for tonights operation.', 840, 0, '2023-10-07 19:28:10', '2025-12-17 19:45:36', NULL, '6453777', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2276, 'The Interitus Campaign - Part 2', '2023-10-14 18:00:00', '2023-10-14 21:00:00', '', '#df5353', 'Event Details\n : TBA', 827, 0, '2023-10-08 04:06:27', '2025-12-17 19:45:36', NULL, '6453951', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2277, 'Echo Mechanized Gunnery', '2023-10-13 18:00:00', '2023-10-13 19:30:00', '', '#d89332', 'Get some reps in engaging the destroying armored targets using the proper ammo. Learn armor weakspots, and practice shooting on the move. Please bring a notepad ', 7, 0, '2023-10-08 16:09:05', '2025-12-17 19:45:36', NULL, '6455211', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2278, 'Echo Orientation', '2023-10-09 17:00:00', '2023-10-09 18:30:00', '', '#FFFFFF', 'Come learn the fundamentals of echo', 2224, 0, '2023-10-08 16:27:56', '2025-12-17 19:45:36', NULL, '6455213', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2279, 'FTX: Big Brother Bradley V2', '2023-10-12 18:00:00', '2023-10-12 21:00:00', 'Private Ops Server', '#FFFFFF', '\n\nhttps://www.youtube.com/watch?v=AZHaOBFL4Og\nA dedicated combat zone outfitted for mechanized warfare. Requesting both members of Alpha and Echo to make this exercise work.', 67, 0, '2023-10-08 18:55:04', '2025-12-17 19:45:36', NULL, '6455460', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2280, 'Mechanized Training', '2023-10-10 17:00:00', '2023-10-10 18:00:00', '', '#6cba50', 'Learn the basic ins and outs of Armor. Qual May happen if there\'s enough time.', NULL, 0, '2023-10-08 19:27:05', '2025-12-17 19:45:36', NULL, '6455470', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2281, 'No Official Events (Holiday Block)', '2023-11-23 00:00:00', '2023-11-28 00:00:00', '', '#df5353', 'Iceberg Gaming is a real life comes first community. We have a couple of Blocks a year to have members of the community focus on Family travel as the numbers will already be expected to be low. \n\nThe servers will still be available for members to play on but we will not be hosting any major official events during this block.', 38, 0, '2023-10-08 19:35:53', '2025-12-17 19:45:36', NULL, '6455472', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2282, 'No Official Events (Holday Block)', '2023-12-21 00:00:00', '2024-01-03 00:00:00', '', '#df5353', 'Iceberg Gaming is a real life comes first community. We have a couple of Blocks a year to have members of the community focus on Family travel as the numbers will already be expected to be low. \n\nThe servers will still be available for members to play on but we will not be hosting any major official events during this block.', 38, 0, '2023-10-08 19:37:17', '2025-12-17 19:45:36', NULL, '6455473', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2283, 'Combat Life Saver Training', '2023-10-11 15:00:00', '2023-10-11 17:00:00', 'Training Server - Medical Area', '#FFFFFF', 'Join us for Combat Life Saver training! This training is designed to demonstrate how a CLS can be so much more than an ammo bearer for the medic! \nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training.\n\n', 13, 0, '2023-10-08 21:10:50', '2025-12-17 19:45:36', NULL, '6455503', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2284, 'Operation New Threat', '2023-10-13 18:00:00', '2023-10-13 20:00:00', '', '#FFFFFF', 'Event Details\n : New intel suggests the local Altus Military is testing a new weapon for CSAT use. The objective is to infiltrate and seize any data or prototypes. If necessary, destruction is preferred to leaving it in enemy hands.\n\nThe suspected location is a heavily fortified science base adjacent to an airfield. Expect heavy resistance if you are discovered.\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Altus\n\n\nAdditional Mods/DLC Required\n : NONE\n\n\nAssets\n : Commands choice', 57, 0, '2023-10-09 23:09:21', '2025-12-17 19:45:36', NULL, '6460928', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2285, 'Operation Hidden Threat (2nd Try)', '2023-10-27 18:00:00', '2023-10-27 20:00:00', '', '#FFFFFF', 'Event Details\n : New intel suggests the local Altus Military is testing a new weapon for CSAT use. The objective is to infiltrate and seize any data or prototypes. If necessary, destruction is preferred to leaving it in enemy hands.\n\nThe suspected location is a heavily fortified science base adjacent to an airfield. Expect heavy resistance if you are discovered.\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Altus\n\n\nAdditional Mods/DLC Required\n : NONE\n\n\nAssets\n : Commands choice', 57, 0, '2023-10-09 23:19:20', '2025-12-17 19:45:36', NULL, '6460929', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2286, 'Operation Race Time', '2023-12-01 19:00:00', '2023-12-01 21:00:00', '', '#FFFFFF', 'Event Details\n : Amid the annual Presidential Race, a large, unknown force landed several large ships on the southern side of Bozcaada and began to disgorge troops and armored vehicles. You are being tasked as a QRF to intercept or assault the Northeast city as needed, then defend until the enemy force retreats or is exhausted.\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Bozcaada\n\n\nAdditional Mods/DLC Required\n : Bozcaada map (Whitelisted mod)\n\n\nAssets\n : UH-60 x2, AH-64Dm, CH-47, M2A3, M1237, M1232, MRVR, M1078, Littlebird x3', 57, 0, '2023-10-09 23:20:09', '2025-12-17 19:45:36', NULL, '6460930', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2287, 'CSAT Familiarization', '2023-10-16 18:00:00', '2023-10-16 20:00:00', '', '#a250e8', 'CSAT Familiarization since we don\'t often fight them. Learn of their infantry and AFV capabilities.\nThere will be a numerous demonstrations during the training to apply and reinforce information, and a culminating FTX if numbers allow.', 468, 0, '2023-10-10 23:21:46', '2025-12-17 19:45:36', NULL, '6461696', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2288, '[Canceled] Understanding the AI Targeting System', '2023-10-11 18:00:00', '2023-10-11 19:30:00', '', '#FFFFFF', 'Event Canceled due to Late Op Being Posted\n\n\nHizumi has been kind enough to assist me in running a special knowledge session that shows how the AI Tracking system works. This should help you understand why smoke is important before you move and why you dont move in the same direction while throwing smoke. It should also show you how important moving to cover is and then consealing your movement from Cover to Cover.\n\nSorry I know its late but Schedules just did not Align early enough for this to get up. This will run After the CLS Training.\n', 38, 1, '2023-10-11 02:42:42', '2025-12-17 19:45:36', NULL, '6462068', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2289, 'Heavy Weapons School', '2023-10-17 18:00:00', '2023-10-17 20:00:00', '', '#a250e8', 'Learn to effectively employ shoulder-launched anti-tank weapons and emplaced Crew Served Weapons against infantry and/or armor.\nOne of two courses required for Heavy Weapons Ribbon.', 468, 0, '2023-10-11 05:27:42', '2025-12-17 19:45:36', NULL, '6462129', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2290, 'The Most Dangerous Game P1', '2023-10-18 18:00:00', '2023-10-18 21:00:00', 'Private Ops Server', '#FFFFFF', 'Event Details\n: "The world is made up of two classes--the hunters and the huntees."\n\n\nLocation\n : 17th Private Ops Server\n\n\nMap\n: Bozcaada\n\n\nAdditional Mods\n: \n - steam://url/CommunityFilePage/524622628\n\nCredits to Video: Trigger <3\nComplementary Song: \n', 67, 0, '2023-10-11 09:01:09', '2025-12-17 19:45:36', NULL, '6462214', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2291, '[RESCHEDULED] The Most Dangerous Game P2 ', '2023-10-20 18:00:00', '2023-10-20 21:00:00', 'Private Ops Server', '#ecb200', 'Peep Game Ken hosting a thing in palce of this event \n\n\n\n\n\n\n\nEvent Details\n: "Even so, I rather think they understand one thing--fear. The fear of pain and the fear of death."\n\n\nLocation\n : 17th Private Ops Server\n\n\nMap\n: Bozcaada\n\n\nAdditional Mods\n: \n - steam://url/CommunityFilePage/524622628', 67, 0, '2023-10-11 09:01:50', '2025-12-17 19:45:36', NULL, '6462215', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2292, '[Canceled] No Sherman op', '2023-11-01 18:00:00', '2023-11-01 21:00:00', 'Private Ops Server', '#FFFFFF', 'Event Details\n: Imagine doing a tank battle...as if...heh.\n\n\nLocation\n : 17th Private Ops Server\n\n\nMap\n: Bystrica\n\n\nAdditional Mods\n: None', 67, 1, '2023-10-11 09:02:26', '2025-12-17 19:45:36', NULL, '6462216', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2293, 'Battle of the Boonie P2', '2023-10-11 18:00:00', '2023-10-11 21:00:00', '', '#FFFFFF', 'Server : 17th private operations \n\nTHIS IS A ZEUS OPERATION - Echo can pick 1 asset from our entire arsenal, alpha gets a bunch of quads\n\nRequires mod : \n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=3019928771&searchtext=sa%27hatra', 840, 0, '2023-10-11 21:26:22', '2025-12-17 19:45:36', NULL, '6463218', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2294, 'flight training with Ken', '2023-10-19 18:00:00', '2023-10-19 19:15:00', 'the training server', '#ecb200', 'We\'re going to be getting reps in landing a different LZa under different conditions and different aircraft. Come get this work and stop roller striking all the damn', 43, 0, '2023-10-12 14:08:06', '2025-12-17 19:45:36', NULL, '6465907', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2295, '[RESCHEDULE] Commanding a Vehicle: Hull-Down Positions', '2023-10-23 18:00:00', '2023-10-23 19:00:00', 'Training Server', '#ecb200', 'This will be a training designed for vehicle commanders who wish to get better at identifying and occupying hull-down positions on the battlefield.\n\nEvent Rescheduled to here: \n \nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f50565c0-fdae-4483-ac65-4ccb8563ceb0/calendar/6485393', 76, 0, '2023-10-13 14:05:55', '2025-12-17 19:45:36', NULL, '6467832', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2296, 'FTX - Basic Ranger Skills', '2023-10-26 18:00:00', '2023-10-26 20:00:00', 'Training Server', '#FFFFFF', 'A FTX that will test basic Ranger Skills. Any rank/level can participate. There are no requirements to attend. This exercise will have every Ranger practicing Basic Ranger skills. These will include formations, movement, support by fire, communication. This will be a live fire exercise. Consider this Ranger 101', 483, 0, '2023-10-13 16:05:55', '2025-12-17 19:45:36', NULL, '6468393', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2297, '[Cancelled] Basic Training', '2023-10-14 13:00:00', '2023-10-14 16:00:00', '', '#ecb200', 'No Signups\n event Cancelled\n\n\nThis is a requested Basic training time for. Any recruits are welcome to attend but make sure you have all the onboarding done prior to joining. This will be a full basic.', 38, 1, '2023-10-14 03:00:04', '2025-12-17 19:45:36', NULL, '6469583', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2298, 'NCO Meeting', '2023-10-14 17:00:00', '2023-10-14 17:45:00', 'Chow Hall TeamSpeak', '#FFFFFF', '', 840, 0, '2023-10-14 21:58:40', '2025-12-17 19:45:36', NULL, '6470016', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2299, 'The Interitus Campaign - Part 3', '2023-10-21 18:00:00', '2023-10-21 21:00:00', '17th Private Ops server', '#df5353', 'Event Details :\n \n\n\n\nLocation :\n 17th Private Ops Server\n\n\nMap :\n Al Rayak\n\n\nAdditional Mods\n : N/A', 827, 0, '2023-10-15 20:12:55', '2025-12-17 19:45:36', NULL, '6472181', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2300, 'EOD Training (Canceled)', '2023-10-30 18:00:00', '2023-10-30 19:00:00', '', '#6cba50', 'EOD training! As always please only set yourself as going if you intend on taking the qual, otherwise set yourself as maybe. Depending on the number of trainers we may be able to do more. \nLearn to keep everything intact while navigating, defusing, and retrieving within a minefield. Roughly two hours for the course, plus an additional 30-40 minutes per qual. ', 951, 1, '2023-10-15 20:50:01', '2025-12-17 19:45:36', NULL, '6472185', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2301, 'Discussing the idea of planning earlier in the week for Ops', '2023-10-24 18:00:00', '2023-10-24 19:00:00', 'Teamspeak server chowhall', '#FFFFFF', 'Discussing the idea and possibly coming up with a course of action to pre-plan earlier in the week before OPs with the idea of decreasing op step off times.\n', 483, 0, '2023-10-16 13:29:29', '2025-12-17 19:45:36', NULL, '6474276', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2302, 'NCO Leadership Course', '2023-10-24 18:00:00', '2023-10-24 21:00:00', 'Private Ops Server', '#ecb200', 'We are running it back. This is a required course for any NCO that wishes to be promoted to a rank above CPL. All are welcome to attend. If you have done this before, you are more than welcome to do it again!\n\n', 67, 0, '2023-10-20 22:52:06', '2025-12-17 19:45:36', NULL, '6482535', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2303, 'The Interitus Campaign - Part 4', '2023-10-28 18:00:00', '2023-10-28 21:00:00', '', '#df5353', 'Mission OPORD\n:\n \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/1415723100', 827, 0, '2023-10-21 02:13:18', '2025-12-17 19:45:36', NULL, '6482691', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2304, 'The Interitus Campaign - Part 5', '2023-11-04 18:00:00', '2023-11-04 21:00:00', '', '#df5353', 'Event Details :\n Following the events of the 17th\'s failed paradrop and subsequent success of the survivors in taking over several CSAT emplacements, now the remaining troops are trapped behind enemy lines. In order to relieve them, a push from the south is being organized.\nEvent OPORD:\n https://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/387605946', 827, 0, '2023-10-21 02:14:05', '2025-12-17 19:45:36', NULL, '6482693', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2305, 'NCO Meeting', '2023-10-21 17:00:00', '2023-10-21 17:45:00', 'Chow Hall TeamSpeak', '#FFFFFF', 'This meeting is opened up to everyone from the base rifleman to the highest in command, if you are curious what we are doing tonight, or have any questions, come get everything solved at the NCO Meeting. First we will go over the plan, then we will go over slotting, by then we should have the green light to load in for tonights operation.', 840, 0, '2023-10-21 21:46:25', '2025-12-17 19:45:36', NULL, '6483945', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2306, 'Siege Of Anizay', '2023-11-15 19:00:00', '2023-11-15 22:00:00', '17th Ranger Battalion Private Operations Server', '#FFFFFF', 'Event Details\n : Yet again another war has sparked off between the US Military and ION Services. As of now, ION controls major portions of the land defined as Anizay, today that will change. Rangers are tasked with zone control where each of the 3 zones will have 2 hardpoints that MUST be secured. None of the objectives will be able to be touched until the previous objective are completed. Though this seems like a simple operation, do not underestimate ION and their arsenal which mostly contains US equipment and assets. \n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : \n\n\n\nAdditional Mods/DLC Required\n : \n\n\n\nAssets\n : M939 Open Gun Trucks, Air assets will be decided by Echo in operation', 840, 0, '2023-10-22 12:28:30', '2025-12-17 19:45:36', NULL, '6484200', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2307, 'Another Day at the Office', '2023-10-25 18:00:00', '2023-10-25 21:00:00', '17th Rangers Private Ops Server', '#008ae1', 'Event Details :\n With CSAT and NATO forces clashing elsewhere in the world, someone still has to man the US Bases in foreign countries. This time, the 17th Rangers will take some well deserved R&R at a quiet base in Northern Iraq, handling civilians, checking vehicles through checkpoints, and other mundane tasks while they lick their wounds.\n\n\nMap :\n \n\n\n\nAdditional Mods :\n \n', 827, 0, '2023-10-22 18:38:26', '2025-12-17 19:45:36', NULL, '6484680', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2308, '[Cancelled] Commanding a Vehicle: Hull Down Positions', '2023-10-26 18:00:00', '2023-10-26 19:00:00', '', '#ecb200', '', 76, 1, '2023-10-23 11:59:22', '2025-12-17 19:45:36', NULL, '6485393', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2309, 'Rufus in Country - Standup Zeus Op', '2023-10-23 18:30:00', '2023-10-23 21:00:00', '', '#FFFFFF', 'You will need \n on top of shadow mod\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=3019928771&searchtext=sa\'hatra', 38, 0, '2023-10-23 23:01:15', '2025-12-17 19:45:36', NULL, '6486100', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2310, 'RASP MADE BY AJ', '2023-11-11 19:00:00', '2023-11-11 22:00:00', 'Private OPs Server', '#df5353', 'SHOW UP AND SHOW OUT give me 45 ppl plus complete 2 objectives\nMid Campaign Rasp\nAJ said he is making it\nCome get Tabbed\nDon\'t know what RASP is? Read about it here! --> \n \nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/08ca311e-66fb-45ce-bbbf-c4b34dc69e4a/docs/245238', 43, 0, '2023-10-24 21:15:35', '2025-12-17 19:45:36', NULL, '6487709', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2311, 'Convoy Training', '2023-11-07 18:00:00', '2023-11-07 19:00:00', '', '#6cba50', 'Come learn convoys. They\'re easier than you think they are I promise.', NULL, 0, '2023-10-24 23:51:20', '2025-12-17 19:45:36', NULL, '6487725', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2312, 'IB Halloween op', '2023-10-29 06:00:00', '2023-10-29 08:00:00', '', '#FFFFFF', 'I\'m hosting a monster mission on the Iceberg server. Please go take a look!\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/WDJ475Xz/channels/76d99607-ec61-437a-886e-c3cba36e0ada/calendar/6486009', 57, 0, '2023-10-27 12:19:32', '2025-12-17 19:45:36', NULL, '6491168', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2313, 'NCO Meeting', '2023-10-28 17:00:00', '2023-10-28 17:45:00', 'Chow Hall - TeamSpeak', '#FFFFFF', 'This meeting is opened up to everyone from the base rifleman to the highest in command, if you are curious what we are doing tonight, or have any questions, come get everything solved at the NCO Meeting. First we will go over the plan, then we will go over slotting, by then we should have the green light to load in for tonights operation.', 840, 0, '2023-10-28 17:55:20', '2025-12-17 19:45:36', NULL, '6492612', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2314, '[RESCHEDULED] 68W Training (Medic)', '2023-11-02 18:00:00', '2023-11-02 20:00:00', 'Medical Area- Training Area', '#FFFFFF', '--THIS TRANING HAS BEEN RESCHEDULED TO THURSDAY 11/09/2023--\nA training course for all you aspiring combat medics to earn your 68W badge.\n\n68W training document: \n\n\nThere will be qualification testing at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treating injured/unconscious individuals\n(2) Correct method of triage during a Mass Casualty Incident\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.)\nAll medical trainings can run significantly longer or shorter than posted times, due attendance affecting length of qualification exercise.', 2223, 0, '2023-10-29 02:29:20', '2025-12-17 19:45:36', NULL, '6493665', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2315, 'CLS Training (Combat Life Saver)', '2023-11-06 19:00:00', '2023-11-06 22:00:00', 'Medical Area- Training Server', '#FFFFFF', 'Join us for Combat Life Saver training! Learn how a CLS can be so much more than an ammo bearer for the medic! \nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training.\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER THAN THE 7PM-10PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n', 2223, 0, '2023-10-29 02:35:48', '2025-12-17 19:45:36', NULL, '6493666', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2316, '[Rescheduled] Mass Cas & Triage Training', '2023-11-16 19:00:00', '2023-11-16 21:30:00', 'Medical Area- Training Server', '#ecb200', 'THIS TRAINING HAS BEEN RESCHEDULED TO TUESDAY THE 21ST.', 2223, 0, '2023-10-29 02:39:34', '2025-12-17 19:45:36', NULL, '6493668', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2317, 'Jump School', '2023-11-10 19:00:00', '2023-11-10 20:45:00', '', '#a250e8', 'Learn to jump from a perfectly fine aircraft and not die. \nNo prerequisite courses or knowledge are required, everything necessary will be taught during the school itself.', 468, 0, '2023-10-29 20:18:26', '2025-12-17 19:45:36', NULL, '6507741', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2318, 'RSLC', '2023-10-31 18:00:00', '2023-10-31 20:00:00', 'private operations', '#ecb200', 'RSLC is a small team based mission. Attendees will be rotated through leadership and be required to plan missions.', 644, 0, '2023-10-30 14:38:19', '2025-12-17 19:45:36', NULL, '6508566', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2319, 'SNIPER', '2023-10-31 18:00:00', '2023-10-31 19:00:00', 'training server', '#ecb200', 'Sniper qualification', 644, 0, '2023-10-30 14:38:36', '2025-12-17 19:45:36', NULL, '6508567', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2320, '68W Training (Medic)', '2023-11-09 19:00:00', '2023-11-09 21:00:00', 'Medical Area- Training Server', '#FFFFFF', '\nA training course for all you aspiring combat medics to earn your 68W badge.\n(Completion of CLS Training is not required to take this course, however, both trainings will be required to obtain a 68W ribbon & be eligible to fill the medic role during 17th operations/FTXs)\n68W training document: \n\n\nThere will be qualification testing at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treating injured/unconscious individuals\n(2) Correct method of triage during a Mass Casualty Incident\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.)\nAll medical trainings can run significantly longer or shorter than posted times, due attendance affecting length of qualification exercise', 2223, 0, '2023-10-30 20:11:22', '2025-12-17 19:45:36', NULL, '6508647', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2321, 'Echo Orientation', '2023-11-02 18:00:00', '2023-11-02 19:00:00', 'Training Grounds', '#ecb200', 'Learn whats up, down, sliding to the left, slide to the right, cha cha real smooth', 79, 0, '2023-10-30 21:40:23', '2025-12-17 19:45:36', NULL, '6512075', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2322, 'The Interitus Campaign - Part 6', '2023-11-18 19:00:00', '2023-11-18 22:00:00', '', '#df5353', 'OPORD: \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/dffbcd9d-ab4e-47fc-8450-d78454a0d092/forums/10783657\n', 827, 0, '2023-11-01 04:44:27', '2025-12-17 19:45:36', NULL, '6514659', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2323, 'The Interitus Campaign - Part 7', '2023-12-02 19:00:00', '2023-12-02 22:00:00', '', '#df5353', 'Mission Details :\n Having split them in half and cut them off from retreat, then 17th Rangers prepare to conduct an aerial assault on the remaining CSAT forces in the west, further splitting their weakened forces and securing yet another port city, Al Tabqah. The only issue is Al Tabqah is full of civilians, fortified positions, and most importantly, desperate enemy troops.', 827, 0, '2023-11-01 04:44:50', '2025-12-17 19:45:36', NULL, '6514660', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2324, 'The Interitus Campaign - Part 8', '2023-12-09 19:00:00', '2023-12-09 22:00:00', '', '#df5353', '', 827, 0, '2023-11-01 04:45:18', '2025-12-17 19:45:36', NULL, '6514662', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2325, 'The Interitus Campaign - FINALE', '2023-12-16 19:00:00', '2023-12-16 22:00:00', '', '#df5353', '', 827, 0, '2023-11-01 04:45:40', '2025-12-17 19:45:36', NULL, '6514663', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2326, 'NR6 workshop wit ken', '2023-11-19 17:00:00', '2023-11-19 21:00:00', '', '#ecb200', 'We going to chop it up here in discord you going to share our screens and I\'m going to walk you all through the process of setting up a simple nr6 mission we\'re going to go down into all the little menus within the modules that we use and just talk about it we\'re going to sync different things up and observe how they react and by the end of the workshop everyone is going to have a mission built and what what I would like for everyone that participated in this workshop I would like for them to find a day during the week or held even use the iceberg time on Sunday if nothing is scheduled and host their nr6 mission that they made that is going to be the end goal of this in our six workshop with Ken', 43, 0, '2023-11-01 14:00:52', '2025-12-17 19:45:36', NULL, '6514805', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2327, '[Rescheduled] Operation Yellow Sun', '2023-11-03 18:00:00', '2023-11-03 20:00:00', '', '#FFFFFF', 'There are many ghost cities scattered around the world. Kangbashi District of Ordos City in China, Kijŏng tong in North Korea, and Suhatra in Iraq. Places that were built for many, to impress, to propagandize, but only hold a tiny fraction of what they could have.\n\nThe lattermost is the focus of our interest today. Build as a playground by the Iraq royal family and oil oligarchs in the 1990s and early 2000s, the city never held more then the construction crews until recently. After the return of the Taliban the city was quickly occupied by them and fortified.\n\nOur goal is to locate the current Taliban leader found in one of the three major urban centers in the area. A tall feat on its own, but luckily he is never seen far from his personal car, an armed, red and white SUV. Find the car, capture the target.\n\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Su\'hatra (see whitelist)\n\n\nAdditional Mods/DLC Required\n : Su\'hatra (see whitelist)\n\n\nAssets\n : M1132 (Stryker w/ plow), M6A2, AH-64 (Apache)', 57, 0, '2023-11-01 20:45:10', '2025-12-17 19:45:36', NULL, '6515494', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2328, 'Basic Training', '2023-11-03 18:00:00', '2023-11-03 20:00:00', 'Recruitment Room 1 - TeamSpeak', '#FFFFFF', 'Come get the fundamentals for everything you will need in your future within the 17th. Today we will go over everything from basic key bindings to maneuvers and so on. At the bottom the basic training document is linked, it entails everything we will go over. \n\nWe ask that you finish the entire \n and show up 10-15 minutes before hand so we can ensure and double check all is finished and ready to begin the training. \n\nReminder : Recruits have 30 days to finish Basic Training upon acceptance to the unit. If you cannot attend any future trainings for 30 days, contact the Training SGT "FrenchToast" or your recruiter\n\n(Sorry to make you choose between an Operation and Basic Training\'s but Basics are limited and Operations are 3-4 times a week)\n\nBasic Training Document : \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 840, 0, '2023-11-01 21:48:25', '2025-12-17 19:45:36', NULL, '6515504', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2329, 'Admin Process Training and Discussion', '2023-11-07 20:00:00', '2023-11-07 21:00:00', '', '#6cba50', 'Meeting with Sadert to discuss admin process and assign small responsibilities to current admin. If you are interested in becoming 17th admin please reach out to Sadert via guilded or discord prior to the meeting or attend. ', 951, 0, '2023-11-02 15:48:16', '2025-12-17 19:45:36', NULL, '6517138', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2330, 'RSLC', '2023-11-12 19:00:00', '2023-11-12 22:30:00', 'Private Operations', '#ecb200', 'Reconnaissance and surveillance leaders course. Attendees will be provided study material prior, conduct a brief review, one individual practical exercise and then a group FTX. This is the base of RRC training', 644, 0, '2023-11-03 01:25:46', '2025-12-17 19:45:36', NULL, '6517941', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2331, 'AIT 3', '2023-11-14 19:00:00', '2023-11-14 22:00:00', '', '#ecb200', '', 67, 0, '2023-11-03 19:47:20', '2025-12-17 19:45:36', NULL, '6518640', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2332, 'Co-Pilot Training', '2023-11-10 20:00:00', '2023-11-10 22:00:00', 'Training Server', '#a250e8', 'Co-pilots have a lot of responsibility. This is the course to learn that responsibility. \nBring a pad of paper for notes, and lets ', 501, 0, '2023-11-03 20:49:59', '2025-12-17 19:45:36', NULL, '6518655', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2333, 'Operation False Mask', '2023-11-08 19:00:00', '2023-11-08 22:00:00', '17th Rangers Private Ops Server', '#6cba50', 'Event Details \n: Following a surprise raid on Malden by Altian forces, Malden has declared war on Altis and has launched a surprised invasion of the island. With Malden being a nominal US ally, US forces have been secretly inserted into Malden Armed Forces ranks to help them secure a serious foothold on the island. A small section of 17th Rangers will deploy with several MAF squads and lead an assault on a AAF base', 827, 0, '2023-11-03 21:54:00', '2025-12-17 19:45:36', NULL, '6519103', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2334, 'Hunting Trip...of DOOM!', '2023-11-19 19:00:00', '2023-11-19 21:00:00', '', '#FFFFFF', 'CONGRADULATIONS! you are invited to the inaugural Servicemen\'s Hunting Trip!\r\n\r\nCome join us for a three day winter hunting trip on the uninhabited Island of Thirsk. The island became deserted following a rough occupation by both CSAT and NATO forces during their 2035 offensives. During that time the wildlife should have rebounded, particularly the sheep, goats, and chicken along with the natural wildlife.\r\n\r\nWe look forward to hearing what you find living on the island when your boots will be the first to hit the dirt in years.\r\n\r\nI\'m sure your time will be wonderful...\r\n\r\nRSVP here \\/\r\n\n \nhttps://www.guilded.gg/Iceberg-gaming/groups/WDJ475Xz/channels/76d99607-ec61-437a-886e-c3cba36e0ada/calendar/6529245', 57, 0, '2023-11-05 22:53:59', '2025-12-17 19:45:36', NULL, '6529252', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2335, 'Battle of Sobor', '2023-11-10 19:15:00', '2023-11-10 21:45:00', 'Private Ops server', '#ecb200', 'We are going toe to toe with a Chaotic NR6 Commander.\nOur job is to make i tional contact with the enemy. The friendly forces will move in to assist.\n17th Modpack required', 43, 0, '2023-11-07 18:35:15', '2025-12-17 19:45:36', NULL, '6534890', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2336, 'Rotary Logistics Challenge', '2023-11-07 19:00:00', '2023-11-07 20:15:00', 'Training Server', '#a250e8', 'This is a requested Rotary Logistics Qualification Challenge hosted per \n\'s request.', 468, 0, '2023-11-07 21:56:08', '2025-12-17 19:45:36', NULL, '6535500', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2337, 'JTAC Bookwork and possible qual', '2023-11-17 17:00:00', '2023-11-17 19:00:00', '', '#ecb200', 'Going to try and host a qual immediately right afterwards, attendance permitting. \nI would appreciate any pilots who would like to come out and get reps in. Let me know 👍', 516, 0, '2023-11-08 01:05:35', '2025-12-17 19:45:36', NULL, '6535681', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2338, 'Liberation Altis', '2023-11-25 19:00:00', '2023-11-26 19:00:00', 'Peivate Ops Server', '#df5353', 'We gonna liberate Altis from so bad guys using a modified Liberation Mission File\nPull up and have fun.', 43, 0, '2023-11-09 16:07:01', '2025-12-17 19:45:36', NULL, '6538868', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2339, 'Land Navigation', '2023-11-13 19:00:00', '2023-11-13 21:30:00', '', '#FFFFFF', 'Come Learn how to use the tools you have and not the tools you want. Learn how to read the maps, find your position, and figure out landmarks to quickly provide clean and accurate information to your team or even get you out of a sticky situation. \n\n** NOTE** On call this week so may get pulled away in emergency but should be fine.', 38, 0, '2023-11-09 20:09:11', '2025-12-17 19:45:36', NULL, '6539128', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2340, 'Mass Cas & Triage Training', '2023-11-21 19:00:00', '2023-11-21 22:00:00', 'Medical Area-Training Server', '#ecb200', 'A training for both medical and non-medical personnel focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to secure and manage any Mass Cas quickly and efficiently.\nThink of this training as AIT for Mass Casualty Incidents\n\n', 2223, 0, '2023-11-10 06:35:18', '2025-12-17 19:45:36', NULL, '6540279', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2341, 'Rotary CAS Training', '2023-11-20 19:00:00', '2023-11-20 21:00:00', 'Training Server', '#d89332', 'Learn to conduct CAS from rotary-wing platforms. \nCompletion of co-pilot and rotary logistics trainings are required - you will be expected to already know how to handle a radio and fly a helicopter.', 468, 0, '2023-11-12 20:13:51', '2025-12-17 19:45:36', NULL, '6543263', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2342, 'Basic Training', '2023-11-14 19:00:00', '2023-11-14 21:15:00', 'Recruitment Room 1 - TeamSpeak', '#FFFFFF', 'Come get the fundamentals for everything you will need in your future within the 17th. Today we will go over everything from basic key bindings to maneuvers and so on. At the bottom the basic training document is linked, it entails everything we will go over. \n\nWe ask that you finish the entire \n and show up 10-15 minutes before hand so we can ensure and double check all is finished and ready to begin the training. \n\nReminder : Recruits have 30 days to finish Basic Training upon acceptance to the unit. If you cannot attend any future trainings for 30 days, contact the Training SGT "FrenchToast" or your recruiter\n\nBasic Training Document : https://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 840, 0, '2023-11-13 19:02:32', '2025-12-17 19:45:36', NULL, '6545076', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2343, 'Indirect Fire Training and Qual', '2023-11-22 18:30:00', '2023-11-22 21:30:00', '', '#d89332', 'Bring a pen and paper, you\'re gonna need it. ', 7, 0, '2023-11-15 02:25:58', '2025-12-17 19:45:36', NULL, '6574728', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2344, '[RESCHEDULED] Echo Orientation', '2023-11-20 14:00:00', '2023-11-20 15:00:00', '', '#FFFFFF', 'I swear I know how calendars work.', 76, 0, '2023-11-18 17:19:41', '2025-12-17 19:45:36', NULL, '6581040', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2345, 'The Most Dangerous Game P2', '2023-11-29 19:00:00', '2023-11-29 22:00:00', 'Private Ops Server', '#FFFFFF', 'Event Details\n: "Even so, I rather think they understand one thing: fear. The fear of pain and the fear of death."\n\nA deep strike mission to retaliate against the PLA, by water and by land.\n\n\nLocation\n : 17th Private Ops Server\n\n\nMap\n: Bozcaada\n\n\nAdditional Mods\n: \n - steam://url/CommunityFilePage/524622628\n\nComplementary Song: \n', 67, 0, '2023-11-18 21:33:28', '2025-12-17 19:45:36', NULL, '6582414', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2346, 'NCO Meeting', '2023-11-18 18:00:00', '2023-11-18 18:45:00', 'Chow Hall - TeamSpeak', '#FFFFFF', 'This meeting is opened up to everyone from the base rifleman to the highest in command, if you are curious what we are doing tonight, or have any questions, come get everything solved at the NCO Meeting. First we will go over the plan, then we will go over slotting, by then we should have the green light to load in for tonights operation', 840, 0, '2023-11-18 22:27:30', '2025-12-17 19:45:36', NULL, '6582418', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2347, 'Fixed Wing Cas Qual', '2023-11-21 19:00:00', '2023-11-21 21:00:00', 'Northern airbase (Training server)', '#ecb200', 'Come get your qual for fixed wing cas \nYou will have to demonstrate proficiency with flying the A-10D and F/A-181 and all the various types of munitions that come with both platforms.\nRefer to the Fixed Wing CAS Document (link below) for further information.\n\n', 2224, 0, '2023-11-19 15:57:14', '2025-12-17 19:45:36', NULL, '6583053', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2348, 'Echo Orientation', '2023-11-21 14:00:00', '2023-11-21 15:00:00', '', '#FFFFFF', 'I swear I know how calendars work.', 76, 0, '2023-11-19 17:05:15', '2025-12-17 19:45:36', NULL, '6583064', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2349, 'Fixed Wing Fundamentals', '2023-11-22 18:00:00', '2023-11-22 20:00:00', '', '#ecb200', 'Come learn the basics to flying. \nThis is purely a training. No qual will be done at the end.', 2224, 0, '2023-11-19 17:05:15', '2025-12-17 19:45:36', NULL, '6583065', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2350, 'Stitchin’ & Bitchin’ Medical Round Table', '2023-11-22 18:00:00', '2023-11-22 19:00:00', 'Teamspeak-Chow Hall', '#ecb200', 'A medical roundtable to discuss the possible implementation of a Battalion Surgeon role and the creation of a Medical Company. Bring your thoughts, comments and questions. See you there!\nIf you can’t make it to this event and would like a point brought to the meeting, please send \n a DM on discord and I will read it aloud during the meeting.', 2223, 0, '2023-11-20 22:29:49', '2025-12-17 19:45:36', NULL, '6584352', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2351, 'Jump WIngs wit Ken', '2023-11-28 19:15:00', '2023-11-28 21:30:00', 'Training Server', '#d89332', 'EVENT DETAILS: Learn how the 17th conducts its Airborne Operations and earn your jump wings.\n\nSERVER: Training Server \n\nMAP: Altis\n\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/312610\n\n', 43, 0, '2023-11-21 02:06:27', '2025-12-17 19:45:36', NULL, '6584747', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2352, 'By the Firelight', '2023-11-22 19:00:00', '2023-11-22 22:00:00', '17th Private Ops Server', '#008ae1', 'Mission Details :\n After having been trapped behind enemy lines for a considerable amount of time, a group of 17th Rangers holds out hope of rescue when they hear of an impending US offensive into the region. To help in any way they can, the Rangers prepare a series of ambushes and surprise attacks to catch the enemy off guard', 827, 0, '2023-11-21 09:50:53', '2025-12-17 19:45:36', NULL, '6587097', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2353, '[Cancelled] Combat Life Saver (CLS) Training', '2023-11-30 19:00:00', '2023-11-30 22:00:00', 'Medical Area - Training Server', '#ecb200', 'Come out for my first observed medical training :) Expect some funk as I try to get into the groove.\nLearn how a CLS can be so much more than an ammo bearer for the medic! \nThere will be a qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training.\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER OR LONGER THAN THE 7PM-10PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n', 48, 1, '2023-11-23 01:56:34', '2025-12-17 19:45:36', NULL, '6588894', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2354, 'Rotary Flight Training/Qual Prep', '2023-12-01 13:00:00', '2023-12-01 15:00:00', '', '#FFFFFF', '', 15, 0, '2023-11-26 18:57:52', '2025-12-17 19:45:36', NULL, '6591742', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2355, 'CLS Training', '2023-12-04 19:00:00', '2023-12-04 20:00:00', '', '#6cba50', 'Come learn about how CLS is more than just a glorified band-aid dispensary FT: MC Doc Halladay stalking in the shadows.', NULL, 0, '2023-11-27 23:32:50', '2025-12-17 19:45:36', NULL, '6593339', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2356, '68W Training', '2023-12-11 19:00:00', '2023-12-11 20:00:00', '', '#d89332', 'Learn the How-to\'s and the keys to becoming medically qualified in the 17th.', NULL, 0, '2023-11-27 23:34:00', '2025-12-17 19:45:36', NULL, '6593340', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2357, '[Cancelled] Masscas & Triage Training', '2023-12-18 19:00:00', '2023-12-18 20:00:00', '', '#6cba50', 'Come learn what happens when shit truly hits the fan and how to respond.', NULL, 1, '2023-11-27 23:35:31', '2025-12-17 19:45:36', NULL, '6593341', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2358, 'Preop practice with McCann', '2023-11-30 20:00:00', '2023-11-30 22:00:00', 'Training server airfield ', '#ecb200', 'Going to practice the skills for this weeks op.', 27, 0, '2023-11-29 18:57:27', '2025-12-17 19:45:36', NULL, '6595321', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2359, 'Basic Training', '2023-12-01 19:00:00', '2023-12-01 22:00:00', 'Teamseak `17th Recruitment Room 1`', '#ecb200', 'Come get the fundamentals for everything you will need in your future within the 17th. Today we will go over everything from basic key bindings to maneuvers and so on. At the bottom the basic training document is linked, it entails everything we will go over. \n\nWe ask that you finish the entire \n and show up 10-15 minutes before hand so we can ensure and double check all is finished and ready to begin the training. \n\nReminder : Recruits have 30 days to finish Basic Training upon acceptance to the unit. If you cannot attend any future trainings for 30 days, contact the Training SGT "FrenchToast" or your recruiter\n\nBasic Training Document : \n', 38, 0, '2023-11-30 04:59:23', '2025-12-17 19:45:36', NULL, '6596617', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2360, 'Rotary Logistics Qual [CANCELLED]', '2023-12-03 16:00:00', '2023-12-03 18:00:00', '', '#d89332', '', 15, 1, '2023-12-01 21:05:01', '2025-12-17 19:45:36', NULL, '6599341', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2361, 'NCO Meeting', '2023-12-02 18:00:00', '2023-12-02 18:30:00', 'TS Chow Hall', '#FFFFFF', '', 67, 0, '2023-12-02 21:39:25', '2025-12-17 19:45:36', NULL, '6602009', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2362, 'Ranger FTX - Difficulty Level = medium', '2023-12-07 18:00:00', '2023-12-07 20:00:00', 'Training Server', '#FFFFFF', 'This is an FTX that will test Ranger skills, both basic and advanced. Small unit tactics will be required to be successful.\nNo previous training requirements. \nMinimum attendees required to have the training - 4\nNo maximum', 483, 0, '2023-12-03 23:56:28', '2025-12-17 19:45:36', NULL, '6605708', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2363, 'Another day in the Middle East', '2023-12-06 19:00:00', '2023-12-06 22:00:00', '17th Private ops Server', '#008ae1', 'Mission Details:\n Following a series of VBIEDs that killed or wounded the majority of the platoon, the remaining 17th Rangers have been ordered to hold position and await reinforcements - Message me personally for SL, FTL, and Medic opportunities\n\n\nMap:\n \n\n\n\nAdditional Mods:\n \n', 827, 0, '2023-12-04 23:38:04', '2025-12-17 19:45:36', NULL, '6609022', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2364, 'Fapovo Freedom pt. 1', '2023-12-08 19:00:00', '2023-12-08 21:00:00', '', '#FFFFFF', 'Event Details\n : Due to a recent military uprising and occupation by the Fopovo National Army (FNA) of their own country, creating a military dictatorship that has already instituted mass arrests of citizens, suppression of free speech and gathering, and what looks to be the beginnings of an ethnic cleansing of the cultural minorities of the country. \n\nSeveral direct attacks against the leadership have failed, leaving several U.S. backed nationalists and undercover Americans either dead or captured. This leaves us little choice but to intervene directly and take control of the country. \n\n\nYou will be our spearhead.\n\n\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Fapovo\n\n\nAdditional Mods/DLC Required\n : Fapovo map\n\n\nAssets\n : Light vics, rotary and some fixed wing.\n\nThis is part one of a multipart series of missions. What you do or don\'t do determines how the next missions will go.', 57, 0, '2023-12-06 21:58:50', '2025-12-17 19:45:36', NULL, '6613011', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2365, 'HEARTS AND MINDS: ALTIS', '2023-12-23 19:00:00', '2023-12-23 22:00:00', 'PRIVATE OPS SERVER', '#df5353', '', 43, 0, '2023-12-06 23:41:50', '2025-12-17 19:45:36', NULL, '6613093', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2366, 'NCO Course FTX', '2023-12-12 19:00:00', '2023-12-12 22:00:00', 'Training Server (if no additional trainings going on)', '#FFFFFF', '\nHi all, I\'ll be hosting the NCO Course to be open during this time for an eventful night of things to be shooting at and getting reps in. \n\nWant mechanized reps in? I got you. \nWant to learn how to shoot your gun better? I got you.\nWant to learn how to be a better battle buddy? I probably got you.\nLifeline? I\'ll throw down a medical vic or two or three or ten.\n\nDepending on results, we could go through a spin-off variant of either choice. (e.g. Osprey Down at night, or Big Brother Bradley but with tanks).', 67, 0, '2023-12-07 22:24:52', '2025-12-17 19:45:36', NULL, '6615304', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2367, 'NCO Meeting', '2023-12-09 18:00:00', '2023-12-09 18:30:00', '', '#FFFFFF', '', 67, 0, '2023-12-09 22:23:22', '2025-12-17 19:45:36', NULL, '6620890', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2368, 'Rotary Logistics Training', '2023-12-14 19:00:00', '2023-12-14 21:00:00', 'Northern Airbase', '#d89332', 'Come partake in the joy of flying helicopters. \nIn this training we\'ll go over our main rotary assets, what will be required of you to pass the qualification, as well as tips and tricks in general. \nDepending on attendance and if everyone is willing we can do a practice session at the end.\r\n', 42, 0, '2023-12-10 15:24:39', '2025-12-17 19:45:36', NULL, '6621445', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2369, 'Iceberg Server Updates', '2023-12-17 19:00:00', '2023-12-17 23:59:00', '', '#df5353', 'All Services may / will go down for Server Updates\n - Teamspeak (Voice)\n - Game Services\n - Web Services\n\nNotice will go out when updates are complete.', 38, 0, '2023-12-12 04:52:10', '2025-12-17 19:45:36', NULL, '6623758', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2370, 'The Hunt for Banin - Part 1', '2023-12-13 19:00:00', '2023-12-13 22:00:00', '', '#008ae1', 'Mission Details:\n 2 hours ago, the President greenlit our deployment to Malden to search for a known and dangerous terrorist responsible for the recent attack on the Destroyer USS Truxtun. Our main goal is to search the town for Banin Ruslan and capture him, alive or dead. \n\n\nMap:\n Malden 2035', 827, 0, '2023-12-12 05:32:44', '2025-12-17 19:45:36', NULL, '6623765', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2371, 'Fapovo Freedom pt 2', '2023-12-15 18:00:00', '2023-12-15 20:00:00', '', '#FFFFFF', 'Event Details\n : Due to a recent military uprising and occupation by the Fopovo National Army (FNA) of their own country, creating a military dictatorship that has already instituted mass arrests of citizens, suppression of free speech and gathering, and what looks to be the beginnings of an ethnic cleansing of the cultural minorities of the country. \n\nSeveral direct attacks against the leadership have failed, leaving several U.S. backed nationalists and undercover Americans either dead or captured. This leaves us little choice but to intervene directly and take control of the country. \n\n\nYou will be our spearhead.\n\n\n\n\nPart 2: After successfully taking control of several small islands off the cost of the Fapovo mainland, we are rapidly fortifying our foothold for longterm assault on the rest of Fapovo. However, the FNA are well aware of our presence already, and are likely fortifying the nearby airfield as well. Your mission will be as follows.\n\n1] Assault the airfield under cover of smoke from Firebases Stars, Stripes, and Eagle.\n2] Take control of the airfield and prepare for any counterattack.\n3] Wait for specialists to scrub any computers for intel and act on further intel.\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Fapovo\n\n\nAdditional Mods/DLC Required\n : Fapovo map\n\n\nAssets\n : Light and med vics, rotary and some fixed wing.\n\nThis is part two of a multipart series of missions. What you do or don\'t do determines how the next missions will go', 57, 0, '2023-12-12 22:33:09', '2025-12-17 19:45:36', NULL, '6624495', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2372, 'Armored Positioning Training', '2023-12-19 19:00:00', '2023-12-19 20:00:00', 'Training Server', '#6cba50', 'This training is intended to teach potential Bradley commanders and gunners how to identify and position the vehicle in various defensive positions. Emphasis will be on hull- and turret-down positioning. This is the first iteration of this training.\nI will need at least 3 people to conduct the training, so please sign up!', 76, 0, '2023-12-15 15:20:35', '2025-12-17 19:45:36', NULL, '6628243', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2373, 'round table place holder both format correctly soon', '2024-01-14 13:30:00', '2024-01-14 14:30:00', '', '#ecb200', '', 43, 0, '2023-12-18 19:14:18', '2025-12-17 19:45:36', NULL, '6632678', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2374, '[CANCELLED] The Hunt - Part 2', '2023-12-20 19:00:00', '2023-12-20 22:00:00', '', '#008ae1', 'Mission Details:\n Following the escape of the terrorist responsible for the bombing of a US Destroyer from Malden, the 17th Rangers have been deployed to Romania to follow intelligence gathered on his last known location.', 827, 1, '2023-12-18 22:28:31', '2025-12-17 19:45:36', NULL, '6632757', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2375, 'Sherman Hotwire Op', '2023-12-20 19:00:00', '2023-12-20 22:00:00', 'Private Ops Server', '#ecb200', 'Hi, filling in for Page to cover Wednesday op.', 67, 0, '2023-12-20 05:42:45', '2025-12-17 19:45:36', NULL, '6634548', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2376, '[Rescheduled] React to Contact/IDF FTX', '2024-01-28 13:00:00', '2024-01-28 15:00:00', '', '#ecb200', 'Rescheduled to Feb 4', 2222, 0, '2023-12-28 16:50:59', '2025-12-17 19:45:36', NULL, '6642900', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'); +INSERT INTO `calendar_events` (`id`, `name`, `start`, `end`, `location`, `color`, `description`, `creator`, `cancelled`, `created_at`, `updated_at`, `full_day`, `guilded_id`, `guilded_channel_id`) VALUES + (2377, 'Demolitions Training', '2024-01-08 19:00:00', '2024-01-08 20:00:00', '17th Training Server (Altis)', '#6cba50', ' \nEVENT DETAILS\n: Sadert teaches you all about demolitions. Should be an hour class.\nSERVER\n: Training Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\n: \nN/A', 951, 0, '2023-12-28 19:08:40', '2025-12-17 19:45:36', NULL, '6643448', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2378, '[Rescheduled] Echo Gunnery Course (test run)', '2024-01-04 19:00:00', '2024-01-04 21:00:00', '', '#ecb200', 'Event Details: Learn how to use vehicle weapons efficiently\nServer: Training Server\nModsets: \n-17th Shadowmod \n-Optional Mod: A3TI Thermal Improvement Mod\n ', 7, 0, '2023-12-29 20:06:41', '2025-12-17 19:45:36', NULL, '6644006', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2379, 'AIT-1', '2024-01-05 19:00:00', '2024-01-05 21:00:00', 'Training server', '#ecb200', 'EVENT DETAILS\n: We are going to be going over the entirety of AIT-1 and then completing an ftx to go over everything\nSERVER\n: Training server\nMAP\n: Altis\nADITIONAL MODS REQUIRED:\n none', 933, 0, '2023-12-30 02:45:48', '2025-12-17 19:45:36', NULL, '6644187', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2380, 'NCO Meeting', '2023-12-31 15:00:00', '2023-12-31 16:30:00', '', '#d89332', 'On teamspeak and in the server', 15, 0, '2023-12-30 21:10:22', '2025-12-17 19:45:36', NULL, '6645105', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2381, 'IDF Training - Mortars', '2024-01-05 14:30:00', '2024-01-05 16:30:00', 'Training Grounds', '#ecb200', 'Event Details: Learn the 82mm and 60mm mortar systems. Spawn at Training Grounds\nServer: Training Server\nModsets: 17th Shadowmod', 15, 0, '2023-12-31 23:26:39', '2025-12-17 19:45:36', NULL, '6646398', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2382, 'Mass Cas & Triage Training', '2024-01-03 19:00:00', '2024-01-03 20:00:00', 'Training Server', '#6cba50', 'Come learn masscas stuff', NULL, 0, '2023-12-31 23:33:42', '2025-12-17 19:45:36', NULL, '6646401', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2383, 'Rotary Logi Qual', '2024-01-05 12:30:00', '2024-01-05 14:30:00', '', '#d89332', 'Event Details: Rotary Logistics Qual for J. Franco\nServer: Training Server\nModsets: 17th Shadowmod \n-Optional Mod: A3TI Thermal Improvement Mod (recommended for all pilots)', 15, 0, '2024-01-02 00:29:27', '2025-12-17 19:45:36', NULL, '6647606', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2384, 'Fixed Wing Close Air Support Training/Qual', '2024-01-04 18:30:00', '2024-01-04 20:00:00', 'Training Server', '#d89332', '\n\nEVENT DETAILS\n: Learn how to operate a fixed wing aircraft and perform fire missions. Use the link below to familiarize yourself with the document we will be going over.\n\n\n\n\nSERVER\n: Training Server\nMAP\n: Altis\n\n\nADITIONAL MODS REQUIRED\n: \nN/A\n \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/345a8732-cb80-4eda-9eff-fbb8161675ac/docs/368882', 59, 0, '2024-01-02 04:26:09', '2025-12-17 19:45:36', NULL, '6648022', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2385, 'Operating with Dismounts Training', '2024-01-09 19:00:00', '2024-01-09 20:30:00', 'Training Grounds', '#FFFFFF', 'Event Details: This training is intended to teach participants how to support dismounts. While the training will be centered on the Bradley, it will be widely applicable. Topics include: using the map to plan dismount locations, contested and uncontested dismounts, and occupying support by fire locations to support assaults.\n\nServer: Training Server\n\nLocation: Training Grounds\n\nAdditional Mods Required: N/A', 76, 0, '2024-01-02 22:57:09', '2025-12-17 19:45:36', NULL, '6648943', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2386, 'Operation Beholder', '2024-01-03 19:00:00', '2024-01-03 22:00:00', '', '#008ae1', 'Mission Details\n: Deploy to a civilian airbase under the cover of darkness, infiltrate a secret laboratory on the island and locate all details concerning weapons research and development on the island\n\n\nServer\n: 17th Private Ops Server\n\n\nMap:\n Malden\n\n\nAdditional Mods:\n N/A', 827, 0, '2024-01-02 23:53:34', '2025-12-17 19:45:36', NULL, '6648951', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2387, 'Operation Harpy', '2024-01-04 19:00:00', '2024-01-04 21:30:00', '', '#008ae1', 'Mission Details\n: Following a discovery of ION war crimes on Malden, a raid has been organized on their base in Romainia\n\nServer: 17th Private ops Server\n\nMap: Chernarus\n\nAdditional Mods: N/A', 827, 0, '2024-01-03 00:05:02', '2025-12-17 19:45:36', NULL, '6648952', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2388, 'Battlaion Training with KEN', '2024-01-06 19:00:00', '2024-01-06 21:30:00', 'TEST/Validation Server', '#df5353', 'EVENT DETAILS\n: We are going to get it poppin. Air Assault Reps. We are going to conduct a series of light live fire excerises upon conduct infils with helos and what not\nSERVER\n: Test Validation server\nMAP\n: TBD\nADITIONAL MODS REQUIRED:\n 17th SHADOW TESTING MOD\n', 43, 0, '2024-01-03 02:11:23', '2025-12-17 19:45:36', NULL, '6649244', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2389, 'RTO Training and Qual', '2024-01-19 19:00:00', '2024-01-19 22:00:00', '17th Training Server', '#a250e8', '\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/1943208325', 21, 0, '2024-01-03 20:03:24', '2025-12-17 19:45:36', NULL, '6651094', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2390, 'Basic Training', '2024-01-07 17:00:00', '2024-01-07 19:15:00', 'Recruitment Room 1 - TeamSpeak', '#a250e8', 'Event Details\n : Come get the fundamentals for everything you will need in your future within the 17th. Today we will go over everything from basic key bindings to maneuvers and so on. At the bottom the basic training document is linked, it entails everything we will go over. \n\nWe ask that you finish the entire \n and show up 10-15 minutes before hand so we can ensure and double check all is finished and ready to begin the training. \n\nReminder : Recruits have 30 days to finish Basic Training upon acceptance to the unit. If you cannot attend any future trainings for 30 days, contact the Training SGT "FrenchToast" or your recruiter\n\n\nServer\n : 17th Ranger Battalion Training Range\n\n\nMap\n : Altis (Training Ground Spawn)\n\n\nBasic Training Document\n : \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508', 840, 0, '2024-01-03 21:49:21', '2025-12-17 19:45:36', NULL, '6651141', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2391, 'Fapovian Freedom. Part 3', '2024-01-12 19:00:00', '2024-01-12 21:00:00', '', '#FFFFFF', 'Event Details\n : Due to a recent military uprising and occupation by the Fopovo National Army (FNA) of their own country, creating a military dictatorship that has already instituted mass arrests of citizens, suppression of free speech and gathering, and what looks to be the beginnings of an ethnic cleansing of the cultural minorities of the country. \n\nSeveral direct attacks against the leadership have failed, leaving several U.S. backed nationalists and undercover Americans either dead or captured. This leaves us little choice but to intervene directly and take control of the country. \n\n\nYou will be our spearhead.\n\n\n\n\nPart 3: After successfully rescuing the captive civilians, they have given us invaluable intelligence about the landscape, military movements, and stronghold locations. This has allowed us to take control of the entire southern corner of Fapovo in the last three weeks. Unfortunately the FNA has used this time to consolidate their forces from cowing the population to proper military forces, including heavy use of static, mobile, and maned anti air. This means they have managed to stall our advance at the only bridge separating the US controlled southwest area, and the rest of the country.\n\nThe following objective are believed to be needed to end this conflict; \n\n[These are the main objectives for the rest of the missions. If you finish the the first before the end of the mini-campaign it is a victory, if you do not then it is a failure. ]\n\n1] Kill or capture the High Commander of the FNA. He is believed to be located within an area of high cliffs and caves used as a fortress since the island was first settled in the 1200s. In addition to the natural fortifications of the rockface, the area has been further enforced with walls, bunkers, and towers from various time periods. Further more, any attack will likely cause all forces on the island to converge. \n2] The western artillery hills. An area of hilly terrain that is believed to have hidden artillery positions that can bombard the entire island. These should be neutralized.\n3] The northeastern airbase. The main FNA airbase, little needs to be said of the threat this location provides us. This should also be neutralized\n\n4] Smaller bases and outposts of the FNA scattered around the enemy held ground. You will likely run across these during your attack. \n\nGround command has control of how and what objectives are targeted first. \n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Fapovo\n\n\nAdditional Mods/DLC Required\n : Fapovo map\n\n\nAssets\n : unarmored to full MBTs available. Fixed wing and rotary. Drones. Assets will not be replaced if destroyed for remainder of the missions.\nThis is part three of a multipart series of missions. What you do or don\'t do determines how the next missions will go.', 57, 0, '2024-01-04 22:57:23', '2025-12-17 19:45:36', NULL, '6654138', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2392, 'CLS Training', '2024-01-11 19:00:00', '2024-01-11 21:30:00', 'Training Server- Medical Area', '#6cba50', 'Event Details: Join us for Combat Life Saver training! Learn how a CLS can be so much more than an ammo bearer for the medic! \nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training. This training is suitable for Alpha, Echo & RRC members.\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER THAN THE 7PM-10PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/331625\nServer: Training Server-Medical Area\nMap: N/A\nModset/Additional Mods N/A', 2223, 0, '2024-01-04 23:35:42', '2025-12-17 19:45:36', NULL, '6654412', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2393, '68W (Medic) Training', '2024-01-15 19:00:00', '2024-01-15 21:30:00', 'Training Server-Medical Area', '#6cba50', 'Event Details: A training course for all you aspiring combat medics to earn your 68W badge.\n(Completion of CLS Training is not required to take this course, however, both trainings will be required to obtain a 68W ribbon & be eligible to fill the medic role during 17th operations/FTXs)\n68W training document: \n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/261452\nThere will be qualification testing at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treating injured/unconscious individuals\n(2) Correct method of triage during a Mass Casualty Incident\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.)\nThis training is appropriate for Alpha, Echo & RRC members.\n\n\n--All medical trainings can run significantly longer or shorter than posted times, due attendance affecting length of qualification exercise at the end--\n\n\nServer: Training Server- Medical Area\nMap: N/A\nModset/Additional Mods N/A', 2223, 0, '2024-01-04 23:40:43', '2025-12-17 19:45:36', NULL, '6654468', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2394, 'Mass Cas & Triage Training', '2024-01-18 19:00:00', '2024-01-18 21:30:00', 'Training Server- Medical Area', '#6cba50', 'Event Details: A training for both medical and non-medical personnel focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to secure and manage any Mass Cas quickly and efficiently.\nThink of this training as AIT for Mass Casualty Incidents\n\n\nServer: Training Server-Medical Area\nMap: N/A\nModset/Additional Mods: N/A', 2223, 0, '2024-01-04 23:43:17', '2025-12-17 19:45:36', NULL, '6654470', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2395, 'Lifeline Team Familarization', '2024-01-16 19:00:00', '2024-01-16 20:00:00', 'Training Server- Medical Area', '#6cba50', 'Event Details: A quick presentation and primer on the structure, capabilities & implementation of the brand new Lifeline team.\nServer: Training Server-Medical Area\nMap: N/A\nModset/Additional Mods N/A', 2223, 0, '2024-01-04 23:48:20', '2025-12-17 19:45:36', NULL, '6654471', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2396, 'Lifeline ftx', '2024-01-16 20:00:00', '2024-01-16 21:00:00', 'Private ops server', '#ecb200', 'Event Details: A quick presentation and primer on the structure, capabilities & implementation of the brand new Lifeline team.\nServer: Training Server-Medical Area\nMap: Bystrica\nModset/Additional Mods N/A', 933, 0, '2024-01-06 00:15:49', '2025-12-17 19:45:36', NULL, '6655401', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2397, 'PLA Combat Testing #1', '2024-01-08 20:00:00', '2024-01-08 22:00:00', 'Test Validation Server', '#FFFFFF', 'Event Details:\n This will be a combat testing opportunity to bring out the full lineup of the PLA faction. Go get your gun and shoot some stuff. :)\nServer\n:\n Test Validation Server\nMAP\n: Gulfcoast Island\nAdditional Mods:\n 17th Shadow Testing Mod', 67, 0, '2024-01-07 05:16:15', '2025-12-17 19:45:36', NULL, '6657379', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2398, 'PLA Combat Testing #2', '2024-01-10 22:30:00', '2024-01-11 00:30:00', 'Test Validation Server', '#FFFFFF', 'Event Details:\n This will be a second combat testing opportunity to bring out the full lineup of the PLA faction. Go get your gun and shoot some stuff. :)\nServer\n:\n Test Validation Server\nMAP\n: Gulfcoast Island\nAdditional Mods:\n 17th Shadow Testing Mod', 67, 0, '2024-01-07 05:20:33', '2025-12-17 19:45:36', NULL, '6657381', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2399, 'RASP', '2024-01-13 19:00:00', '2024-01-13 22:00:00', '', '#df5353', '', 951, 0, '2024-01-07 18:24:10', '2025-12-17 19:45:36', NULL, '6657583', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2400, 'RSLC', '2024-01-11 19:00:00', '2024-01-11 22:00:00', '', '#6cba50', 'Event Details:\n Recon training\nServer\n:\n Private Ops\nMAP\n: Isla Dula\nAdditional Mods:\n 17th Standard', 644, 0, '2024-01-08 15:01:14', '2025-12-17 19:45:36', NULL, '6659378', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2401, 'The Tanoan Uprising P.1', '2024-01-10 19:00:00', '2024-01-10 21:00:00', 'Private Ops Server, Tanoa', '#df5353', '', 468, 0, '2024-01-09 19:00:12', '2025-12-17 19:45:36', NULL, '6661585', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2402, 'The Tanoan Uprising P.2', '2024-01-17 19:00:00', '2024-01-17 21:00:00', 'Tanoa. Private Ops Server', '#df5353', '', 468, 0, '2024-01-09 19:05:01', '2025-12-17 19:45:36', NULL, '6661588', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2403, 'The Tanoan Uprising P.3', '2024-01-24 19:00:00', '2024-01-24 21:00:00', 'Tanoa, Private Ops Server', '#df5353', '', 468, 0, '2024-01-09 19:06:33', '2025-12-17 19:45:36', NULL, '6661589', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2404, 'Echo Gunnery Course- Test', '2024-01-15 18:30:00', '2024-01-15 20:30:00', '', '#d89332', 'Event Details- Learn how to effectively employ Vehichle based weaponry against a variety of targets in coordination with vehicle crew. \nServer- Training Server- Rocket Range\nMods/Additional Mods:\n-17th Shadowmod pack \n-Optional Mod- A3TI Thermal Enhancement ', 7, 0, '2024-01-10 23:42:25', '2025-12-17 19:45:36', NULL, '6666858', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2405, 'Advanced Rotary Practice', '2024-01-18 19:00:00', '2024-01-18 20:00:00', 'Southern Airfield', '#d89332', 'EVENT DETAILS\n: Come learn how to fall with style! In this training we will practice the following:\r\nAlthough this training is intended for Echo members, Anyone is welcome to participate as long as you have experience with flying helicopters.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\n: \nN/A', 42, 0, '2024-01-11 19:04:32', '2025-12-17 19:45:36', NULL, '6667332', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2406, 'Fapovo Freedom pt 4', '2024-01-19 19:00:00', '2024-01-19 21:00:00', '', '#FFFFFF', 'Event Details\n : Due to a recent military uprising and occupation by the Fopovo National Army (FNA) of their own country, creating a military dictatorship that has already instituted mass arrests of citizens, suppression of free speech and gathering, and what looks to be the beginnings of an ethnic cleansing of the cultural minorities of the country. \n\nSeveral direct attacks against the leadership have failed, leaving several U.S. backed nationalists and undercover Americans either dead or captured. This leaves us little choice but to intervene directly and take control of the country. \n\n\nYou will be our spearhead.\n\n\n\n\nPart 4: As of yesterday the FNA\'s main airbase is all but destroyed, crippling upwards of 90% of their airforces. In addition the frontline has been pushed forwards by several clicks thanks to you tipping the balance and removing the air threat. However, the enemy IDF has been increasing and forces are consolidating.\n\nThe following objective are believed to be needed to end this conflict; \n\n[These are the main objectives for the rest of the missions. If you finish the the first before the end of the mini-campaign it is a victory, if you do not then it is a failure. ]\n\n1] Kill or capture the High Commander of the FNA. He is believed to be located within an area of high cliffs and caves used as a fortress since the island was first settled in the 1200s. In addition to the natural fortifications of the rockface, the area has been further enforced with walls, bunkers, and towers from various time periods. Further more, any attack will likely cause all forces on the island to converge. \n2] The western artillery hills. An area of hilly terrain that is believed to have hidden artillery positions that can bombard the entire island. These should be neutralized.\n3] The northeastern airbase. The main FNA airbase, little needs to be said of the threat this location provides us. This should also be neutralized\n\n\n4] Smaller bases and outposts of the FNA scattered around the enemy held ground. You will likely run across these during your attack. \n\nGround command has control of how and what objectives are targeted first. \n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Fapovo\n\n\nAdditional Mods/DLC Required\n : Fapovo map\n\n\nAssets\n : unarmored to full MBTs available. Fixed wing and rotary. Drones. Assets will not be replaced if destroyed for remainder of the missions.\nThis is part four of a multipart series of missions. What you do or don\'t do determines how the next missions will go.', 57, 0, '2024-01-14 15:40:38', '2025-12-17 19:45:36', NULL, '6692344', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2407, 'Mandate of Heaven: Operation Azure Sky', '2024-01-20 19:00:00', '2024-01-20 22:00:00', 'Private Ops Server', '#df5353', 'Operation Azure Sky\nEVENT DETAILS\n: The first episode to the campaign. Includes the following: airbase securing and hostage rescue.\nSERVER\n: Private Operations Server\nMAP\n: Gulfcoast Islands\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 67, 0, '2024-01-15 03:32:47', '2025-12-17 19:45:36', NULL, '6699906', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2408, 'Mandate of Heaven: Operation Heaven and Earth', '2024-01-27 19:00:00', '2024-01-27 22:00:00', '', '#ecb200', 'Operation Heaven and Earth\nEVENT DETAILS\n: Ground assault to defuse bombs and save our oil. Wait, when did they get jammers?\nSERVER\n: Private Ops Server\nMAP\n: Gulfcoast Islands\nMODS / MODPACK REQUIRED:\n 17th Shadow Mod', 67, 0, '2024-01-15 03:40:17', '2025-12-17 19:45:36', NULL, '6699907', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2409, 'Mandate of Heaven: Operation Sky Piercer', '2024-02-03 19:00:00', '2024-02-03 22:00:00', 'Private Ops Server', '#df5353', 'Operation Sky Piercer\nEVENT DETAILS\n: A teeny, tiny small island that is most definitely not dug in and infested with MILFs.\nSERVER\n: Private Operations Server\nMAP\n: Gulfcoast Islands\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 67, 0, '2024-01-15 03:47:16', '2025-12-17 19:45:36', NULL, '6699909', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2410, 'Mandate of Heaven: Operation Dragon Dance', '2024-02-10 19:00:00', '2024-02-10 22:00:00', 'Private Ops Server', '#df5353', 'Operation Dragon Dance\nEVENT DETAILS\n: Ending the war. Let\'s get back home in time for Valentine\'s Day. Hunting a strange weapon.\nSERVER\n: Private Operations Server\nMAP\n: Gulfcoast Islands\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 67, 0, '2024-01-15 03:49:55', '2025-12-17 19:45:36', NULL, '6699911', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2411, 'Mandate of Heaven: The Valentine Contingency', '2024-02-17 19:00:00', '2024-02-17 22:00:00', 'Private Ops Server', '#df5353', 'The Valentine Contingency\nEVENT DETAILS\n: WHAT JSUT HAPPENED, OH GOD THEY\'RE COMING, OH NO, OH UFCK, RUUUUUN\nSERVER\n: Private Operations Server\nMAP\n: Gulfcoast Islands\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 67, 0, '2024-01-15 03:55:27', '2025-12-17 19:45:36', NULL, '6699913', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2412, '[ CANCELED ] RASP', '2024-02-24 19:00:00', '2024-02-24 22:00:00', '', '#df5353', 'EVENT DETAILS\n: \n\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: TBA\nMODS / MODPACK REQUIRED:\n \nTBA', 840, 1, '2024-01-15 21:47:59', '2025-12-17 19:45:36', NULL, '6700717', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2413, 'RASP Rework Meeting', '2024-02-18 16:00:00', '2024-02-18 17:30:00', 'Chow Hall - TeamSpeak', '#355bf8', 'Ideas have been juggled around for new methods of how RASP is conducted. This meeting will be held to see if said ideas could be implemented in an effort to improve our event. Utilizing this meeting, we could either change RASP entirely or come to a realization RASP does not need any changes. Maybe we make a tweak or dont touch it, who knows, lets brainstorm and find out. If you cannot make it to this meeting but have some input you would like to be talked about, drop it as a reply or message me directly.\n\n\nFew things to think of\n :', 840, 0, '2024-01-15 21:49:22', '2025-12-17 19:45:36', NULL, '6700719', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2414, 'Alpha Company meeting', '2024-01-20 17:30:00', '2024-01-20 18:00:00', '17th Rangers Teamspeak', '#FFFFFF', 'Details :\n The first section of this section will be to discuss new changes to Alpha Company and upcoming ones. Everyone may attend and ask questions, but we are going to keep the to the timeline since the NCO meeting will take place at 7pm EST.\n\n\nLocation :\n 17th Rangers Teamspeak - Chow Hall\n\n', 827, 0, '2024-01-16 01:25:47', '2025-12-17 19:45:36', NULL, '6701000', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2415, 'NCO Meeting', '2024-01-20 18:00:00', '2024-01-20 19:00:00', '', '#FFFFFF', 'Details :\n Pre-OP NCO Meeting\n\nEveryone may attend but primarily for NCOs, SL\'s, FTL\'s etc\n\n\nLocation :\n 17th Rangers Teamspeak - Chow Hall', 827, 0, '2024-01-16 01:30:33', '2025-12-17 19:45:36', NULL, '6701001', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2416, 'Advanced UAV School', '2024-01-18 19:00:00', '2024-01-18 21:00:00', 'Private Operations Server', '#6cba50', 'EVENT DETAILS: Learn advanced drone usage in the AR-2 Darter, MQ-9 Reaper and the Yabhon. Mostly for RRC usage, but Alpha and Echo can also benefit. All are welcome.\r\nSERVER: Training Server\r\nMAP: Altis\r\nMODS / MODPACK REQUIRED: Standard Modpack + Whitelisted mods.\r', 468, 0, '2024-01-16 06:21:27', '2025-12-17 19:45:36', NULL, '6701109', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2417, 'Copilot Ribbon', '2024-01-21 19:00:00', '2024-01-21 21:30:00', 'Training Server', '#a250e8', '', 501, 0, '2024-01-17 03:50:52', '2025-12-17 19:45:36', NULL, '6701905', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2418, '[NOTICE] 17th Shadow Mod Update', '2024-01-17 22:00:00', '2024-01-17 23:00:00', '', '#FFFFFF', 'Arma 3 Servers will be offline for Mod Updates', 38, 0, '2024-01-18 03:08:25', '2025-12-17 19:45:36', NULL, '6703971', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2419, 'Ken\'s HBQ Workshop: Introduction to HBQ', '2024-02-02 19:00:00', '2024-02-02 21:00:00', 'teamspeak and discord', '#ecb200', 'We will be chopping it up about HBQ. We will go over the Demo mission file. Learn some basic modules and get it poppin. By the end of this everyone should be able to make a basic mission using these new modules\nSERVER\n: Teamspeak / Discord\nMAP\n: N/A\nADITIONAL MODS REQUIRED:\n N/A', 43, 0, '2024-01-18 15:35:47', '2025-12-17 19:45:36', NULL, '6704505', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2420, 'Echo Flight Pre-op roundup', '2024-01-19 17:00:00', '2024-01-19 18:00:00', 'Training server Northern Airfield', '#ecb200', '', 27, 0, '2024-01-18 15:50:46', '2025-12-17 19:45:36', NULL, '6704561', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2421, 'Fapovo Freedom Pt 5 - End', '2024-01-26 19:00:00', '2024-01-26 21:00:00', '', '#FFFFFF', 'Event Details\n : Due to a recent military uprising and occupation by the Fopovo National Army (FNA) of their own country, creating a military dictatorship that has already instituted mass arrests of citizens, suppression of free speech and gathering, and what looks to be the beginnings of an ethnic cleansing of the cultural minorities of the country. \n\nSeveral direct attacks against the leadership have failed, leaving several U.S. backed nationalists and undercover Americans either dead or captured. This leaves us little choice but to intervene directly and take control of the country. \n\n\nYou will be our spearhead.\n\n\n\n\nPart 5: As of yesterday the FNA\'s main artilery force is fully destroyed, crippling one of thee major defenses of the FNA Main base of operations. In addition the frontline has been pushed forwards by several clicks to close in on the remaining enemy forces. The few remaining forces have consolidated into the enemy HQ area. Although the effects are not expected to damage the enemy greatly, we will time a series of artillery and airstrikes with your approach to at the very least distract and confuse the enemy.\n\nThe following objective are believed to be needed to end this conflict; \n\n[These are the main objectives for the rest of the missions. If you finish the the first before the end of the mini-campaign it is a victory, if you do not then it is a failure. ]\n\n\n1] Kill or capture the High Commander of the FNA. He is believed to be located within an area of high cliffs and caves used as a fortress since the island was first settled in the 1200s. In addition to the natural fortifications of the rockface, the area has been further enforced with walls, bunkers, and towers from various time periods. Further more, any attack will likely cause all forces on the island to converge. \n2]\n The western artillery hills. An area of hilly terrain that is believed to have hidden artillery positions that can bombard the entire island. These should be neutralized.\n3] The northeastern airbase. The main FNA airbase, little needs to be said of the threat this location provides us. This should also be neutralized\n\n\n4] Smaller bases and outposts of the FNA scattered around the enemy held ground. You will likely run across these during your attack. \n\n\n\nServer\n : 17th Ranger Battalion Private Operations Server\n\n\nMap\n : Fapovo\n\n\nAdditional Mods/DLC Required\n : Fapovo map\n\n\nAssets\n : unarmored to full MBTs available. Fixed wing and rotary. Drones. Assets will not be replaced if destroyed for remainder of the missions.', 57, 0, '2024-01-18 17:27:54', '2025-12-17 19:45:36', NULL, '6704598', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2422, '[CANCELLED] Rotary Logistics Training', '2024-01-25 19:00:00', '2024-01-25 20:00:00', 'Northern/Southern Airbase', '#d89332', 'EVENT DETAILS\n: Come partake in the joy of flying helicopters! \nIn this training we\'ll go over our main rotary assets, what will be required of you to pass the qualification, as well as tips and tricks in general. \n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/345a8732-cb80-4eda-9eff-fbb8161675ac/docs/262083\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\n: \nN/A', 42, 1, '2024-01-18 21:51:55', '2025-12-17 19:45:36', NULL, '6704650', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2423, 'Mass cas & Triage Training', '2024-01-25 19:00:00', '2024-01-25 21:30:00', 'Training Server - Medical Area', '#6cba50', 'A training for both medical and non-medical personnel focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to secure and manage any Mass Cas quickly and efficiently.\r\nThink of this training as AIT for Mass Casualty Incidents\r\n\n\r\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/331618\nServer: Training Server-Medical Area\r\nMap: N/A\r\nModset/Additional Mods: N/A', 61, 0, '2024-01-19 01:25:27', '2025-12-17 19:45:36', NULL, '6705141', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2424, 'Campaign Testing', '2024-01-19 22:00:00', '2024-01-19 23:00:00', 'Private Ops Server', '#ecb200', 'Testing the mission file.', 67, 0, '2024-01-19 01:30:38', '2025-12-17 19:45:36', NULL, '6705143', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2425, 'Urban Operations Joint Ex', '2024-01-22 19:00:00', '2024-01-22 21:00:00', 'Training Server', '#df5353', '', 28, 0, '2024-01-19 05:06:44', '2025-12-17 19:45:36', NULL, '6705219', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2426, 'Air Assault', '2024-01-23 19:00:00', '2024-01-23 21:00:00', 'training server - training grounds', '#a250e8', 'Air Assault - getting into and out of helicopters like only Rangers can.\nThis is a training to learn how to plan and execute Air Assaults. Both fast roping exits and landed exits. What to do when leaving the bird.\nregular mod pack, regular training map', 483, 0, '2024-01-19 20:03:45', '2025-12-17 19:45:36', NULL, '6705569', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2427, 'Fixed Wing Logistics Qualification', '2024-01-21 17:00:00', '2024-01-21 18:00:00', 'Training Server Northern Airfield', '#ecb200', 'EVENT DETAILS\n: Fixed Wing Logistics Qual (training if not comfortable with the test yet)\nSERVER\n: Training Server\nMAP\n: Altis\nMODS / MODPACK REQUIRED\n: Unit Modpack', 27, 0, '2024-01-20 18:57:13', '2025-12-17 19:45:36', NULL, '6708410', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2428, '[Rescheduled] Squad Leading FTX', '2024-01-21 19:00:00', '2024-01-21 21:00:00', 'Training server', '#ecb200', 'EVENT DETAILS\n: Get some reps at squad leading, we will be going over the fundamentals of organizing and planning combat maneuvers.\nSERVER\n: Training server\nMAP\n: Altis\nADITIONAL MODS REQUIRED:\n None', 933, 0, '2024-01-21 05:17:44', '2025-12-17 19:45:36', NULL, '6710153', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2429, 'Squad lead FTX', '2024-01-28 19:00:00', '2024-01-28 22:00:00', '', '#FFFFFF', ' Get some reps at squad leading, we will be going over the fundamentals of organizing and planning combat maneuvers.\nSERVER\n: Training server\nMAP\n: Altis\nADITIONAL MODS REQUIRED:\n None', 933, 0, '2024-01-22 02:45:38', '2025-12-17 19:45:36', NULL, '6711552', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2430, 'AIT-2', '2024-01-29 19:00:00', '2024-01-29 22:00:00', 'Training server', '#FFFFFF', ' Come on and learn the basics of fire and maneuver!!\nSERVER\n: Training server\nMAP\n: Altis\nADITIONAL MODS REQUIRED:\n None', 933, 0, '2024-01-22 02:46:38', '2025-12-17 19:45:36', NULL, '6711553', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2431, 'Joint FTX - Assaulting with vehicles', '2024-02-01 19:00:00', '2024-02-01 21:00:00', '', '#df5353', 'We are going to get some practice assaulting positions with vehicle support. There will be shooting, hopefully a lot of shooting.\n\n\nSERVER\n: Training server\nMAP\n: Altis\nADITIONAL MODS REQUIRED:\n None', 28, 0, '2024-01-23 03:33:39', '2025-12-17 19:45:36', NULL, '6712394', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2432, '[Cancelled] React to Contact/IDF FTX', '2024-02-04 12:00:00', '2024-02-04 14:00:00', '', '#ecb200', 'EVENT DETAILS\n: We will be practicing different fundamentals, React to Contact and React to IDF. We will discuss these ideas, walkthrough them, then implement them into a practical section.\nSERVER\n: Training Server\nMAP\n: \nMODS / MODPACK REQUIRED\n: 17th Shadow Mod', 2222, 1, '2024-01-23 19:21:22', '2025-12-17 19:45:36', NULL, '6712822', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2433, '[Cancelled] Mass Cas & Triage FTX', '2024-01-25 21:35:00', '2024-01-25 23:00:00', 'Training Server', '#ecb200', 'If attendance and time allow, come join for a series of firefights and objectives to build and reinforce the information learned from Mass Cas & Triage training. Open to all members, attendance at training recommended but not required.\nServer: Training Server\nMap: N/A\nAdditional Mods: N/A, standard modpack required', 13, 1, '2024-01-25 00:56:55', '2025-12-17 19:45:36', NULL, '6715688', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2434, 'Campaign Testing', '2024-01-26 22:00:00', '2024-01-26 23:00:00', '', '#ecb200', '', 67, 0, '2024-01-25 23:42:14', '2025-12-17 19:45:36', NULL, '6716605', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2435, '[Rescheduled] Forward Observer Ribbon', '2024-01-30 19:00:00', '2024-01-30 21:30:00', 'Training Server', '#ecb200', 'Forward Observer is Artillery\'s best friend. They are the eyes on target, and the bane of entrenched enemy forces... come learn to do the thing that makes things not be a thing anymore. \n\n', 501, 0, '2024-01-27 02:36:32', '2025-12-17 19:45:36', NULL, '6721547', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2436, 'NCO Meeting', '2024-01-27 18:00:00', '2024-01-27 19:00:00', '17th Rangers Teamspeak - Chow Hall', '#FFFFFF', '', 827, 0, '2024-01-27 19:30:56', '2025-12-17 19:45:36', NULL, '6722687', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2437, 'What to expect from Drongos\' Active Protection System', '2024-01-30 19:00:00', '2024-01-30 21:00:00', 'Training Server', '#355bf8', 'Event Details\n: \nNew mod adds Active Protection Systems for BLUFOR and OPFOR vehicles. This training will focus on what to expect from OPFOR vehicles and how fighting them might change. This training is beneficial for ALL members. \nWe will also be talking about what to expect from BLUFOR APS. \n\nSERVER\n: Training server\nMAP\n: Default Training Map\nMODS REQUIRED:\n 17th Shadow mod', 468, 0, '2024-01-27 19:34:37', '2025-12-17 19:45:36', NULL, '6722688', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2438, 'AJ op', '2024-02-07 19:00:00', '2024-02-07 21:00:00', '', '#df5353', 'We gonna fortify a place and stall a Russian invasion while the civilians escape.\nServer\n: Private Operations Server\nMap\n: Takistan\nMods\n: 17th Shadow Mod', 28, 0, '2024-01-30 22:45:04', '2025-12-17 19:45:36', NULL, '6730201', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2439, 'Page OP', '2024-02-02 19:00:00', '2024-02-02 22:00:00', '17th Rangers Private OPs server', '#008ae1', 'Mission Details\n : During a co-op training session with Livonian Armed Forces, the 17th finds themselves up against an invading enemy force they they are ill-equipped to handle \n\n\nLocation\n : 17th Rangers Private ops Server\n\n\nMap\n : Chernarus\n\n\nAdditional Mods\n : N/A', 827, 0, '2024-01-31 02:58:21', '2025-12-17 19:45:36', NULL, '6730620', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2440, 'Trouble with Triangulation', '2024-01-31 19:00:00', '2024-01-31 22:00:00', '', '#FFFFFF', 'Details: \nThis is a mission filling in for French Toasts Wednesday Slot as something for him came up. \nServer\n: Private Operations Server\nMap\n: Suursaari\nMods\n: 17th Shadow Mod + \n\n', 38, 0, '2024-01-31 06:57:22', '2025-12-17 19:45:36', NULL, '6730642', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2441, '[Cancelled] Forward Observer Ribbon', '2024-02-02 19:00:00', '2024-02-02 21:30:00', 'Training Server', '#a250e8', 'Forward Observer is Artillery\'s best friend. They are the eyes on target, and the bane of entrenched enemy forces... come learn to do the thing that makes things not be a thing anymore.', 501, 1, '2024-02-01 02:14:23', '2025-12-17 19:45:36', NULL, '6731263', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2442, 'Campaign Testing', '2024-02-02 22:00:00', '2024-02-02 23:00:00', '', '#FFFFFF', '', 67, 0, '2024-02-02 07:46:37', '2025-12-17 19:45:36', NULL, '6732647', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2443, 'NCO Meeting', '2024-02-03 18:00:00', '2024-02-03 19:00:00', '', '#FFFFFF', 'Alpha Company NCO meeting to discuss the plan for the operation\n\nLocation : 17th Rangers Teamspeak - Chow Hall', 827, 0, '2024-02-03 07:25:34', '2025-12-17 19:45:36', NULL, '6733775', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2444, 'Operation Harsh Sun', '2024-02-09 19:00:00', '2024-02-09 21:00:00', '', '#FFFFFF', 'Mission Details\n : An IDAP camp has been attacked by local insurgents and the twenty-eight workers captured. You are tasked with saving the IDAP workers and extracting them back to OB Juliet. The area is rife with citizens turned insurgents, so expect a counter attack.\n\n\nLocation\n : 17th Rangers Private ops Server\n\n\nMap\n : Kunduz \n\nAdditional Mods\n : Kunduz map mod', 57, 0, '2024-02-04 13:04:44', '2025-12-17 19:45:36', NULL, '6734367', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2445, 'Operation Cold Sun', '2024-02-16 19:00:00', '2024-02-16 21:00:00', '', '#FFFFFF', 'Mission Details\n : Quick Reaction Force op. Ambush a ION convoy, take out some caches, and capture and HVT.\n\n\nLocation\n : 17th Rangers Private ops Server\n\n\nMap\n : winter chernarus\n\nAdditional Mods\n : ', 57, 0, '2024-02-04 13:05:17', '2025-12-17 19:45:36', NULL, '6734368', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2446, 'Operation Urban Sun', '2024-03-01 19:00:00', '2024-03-01 21:00:00', '', '#FFFFFF', 'Mission Details\n : Fighting has broken out in the middle of the Sumava capitol city between the UN-backed Sumava Defense Force and the Russian-backed Sumava Separatists Militia. While nominally allied with the SDF, the USA had no plans to step into this intercounty scuffle. However, we have received intelligence of at least three explosives devices, possibly nuclear in nature, located within the city. \n\nThe 17th Rangers have been tasked with entering the city and disable or destroy those bombs. Lethal force is approved against any who prevent your search.\n\n\nLocation\n : 17th Rangers Private ops Server\n\n\nMap\n :Sumava\n\nAdditional Mods\n : Sumava Map', 57, 0, '2024-02-04 13:05:49', '2025-12-17 19:45:36', NULL, '6734369', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2447, 'Operation Griffon\'s Talon', '2024-03-15 18:00:00', '2024-03-15 20:00:00', '', '#FFFFFF', 'Mission Details\n : Intel has recently pinpointed the source of the recent rash of IED threats we have been experiencing across the region to the city of Zargabad. Our task is to find the factory were they are making the IEDs and shut it down with vengeance. \n\nThis is complicated with the fact that the entire city is entirely controlled by the local insurgents while plenty of civilians still live within the city. Expect heavy explosive threats.\n\n\nLocation\n : 17th Rangers Private ops Server\n\n\nMap\n : Zargabad\n\nAdditional Mods\n : none', 57, 0, '2024-02-04 13:06:18', '2025-12-17 19:45:36', NULL, '6734370', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2448, 'Operation Crimson Clupeidae', '2024-03-29 18:00:00', '2024-03-29 20:00:00', '', '#FFFFFF', 'Mission Details\n : You are behind enemy lines. Your goal is to rescue and extract US POWs that are currently being held in an old city prison. Boats are standing by to pull them off the island.\n\nIn order to allow the POWs to escape unharmed, you will assault a nearby CSAT base as a distraction for as long as you can hold out for.\n\n\nLocation\n : 17th Rangers Private ops Server\n\n\nMap\n : Vt7\n\nAdditional Mods\n : Vt7 map mod', 57, 0, '2024-02-04 13:06:38', '2025-12-17 19:45:36', NULL, '6734371', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2449, 'RSLC', '2024-02-19 19:00:00', '2024-02-19 22:00:00', '', '#ecb200', 'EVENT DETAILS- Recon introduction \nSERVER- 17th Private Operations\nLocation- Spawn Point \nMods- 17th Shadowmod\nOptional Mod- Any Whitelist.', 644, 0, '2024-02-05 03:04:28', '2025-12-17 19:45:36', NULL, '6735833', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2450, 'Alpha Community Meeting [Rescheduled]', '2024-02-11 18:00:00', '2024-02-11 20:00:00', '17th Rangers Teamspeak - Chow Hall/CO Office', '#d89332', 'Details\n : This is a new bi-weekly community meeting for Alpha Company. To this end, Alpha Company Command Staff will be hosting a 1-2 hour meeting to discuss anything of note within the community and/or the company in general. This can include but is not limited to : ideas, concerns, ongoing or new issues, etc. \n\nThis meeting is an open meeting for ALL Alpha Company Personnel. I encourage you all to attend and make your voices heard loud and clear. There will be no topic off the table and everything said in the chat will stay in the chat. \n\nHHC, Battalion, RRC, and Echo members are allowed to be in attendance, however it is requested that they remain muted and/or silent as this meeting is primarily intended to give Alpha Company members a time to voice themselves. Any questions or concerns on this topic can be directed to me at your earliest convience. \n\nAdditionally, after this meeting, a member of CO staff will be in the Alpha CO office for approx 1 hour to facilitate an Open Door policy where any member may hop in to discuss anything they deem too sensitive for open discussion. Thank you all for your time and I hope to see you there.', 827, 0, '2024-02-05 17:50:16', '2025-12-17 19:45:36', NULL, '6738807', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2451, '60mm Mortar Orientation', '2024-02-08 19:00:00', '2024-02-08 21:00:00', '', '#d89332', 'Learn how to use 60mm mortars, and how best to use them to support an advance\nSERVER- Training Server \nMAP- Altis\nMods- 17th Shadowmod pack', 7, 0, '2024-02-06 23:57:18', '2025-12-17 19:45:36', NULL, '6740333', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2452, 'Advanced Rotary Training 2', '2024-02-13 19:00:00', '2024-02-13 21:00:00', 'Northen Airfield', '#d89332', 'EVENT DETAILS\n: The one about landings. You know how to get it up, but do you know how to get it down? Come and learn how to land your helicopter as quickly as you can while also not blowing up! This training will cover the following:\r\nAlthough this training is intended for Echo members, Anyone is welcome to participate as long as you have experience with flying helicopters.\r\nSERVER\n: Training Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\n: \nN/A', 42, 0, '2024-02-07 02:05:38', '2025-12-17 19:45:36', NULL, '6740361', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2453, 'Devil\'s Den', '2024-02-21 19:00:00', '2024-02-21 21:00:00', '', '#df5353', 'Server\n: Private Operations Server\nMap\n: G.O.S. Al Rayak\nMods\n: 17th Shadow Mod', 15, 0, '2024-02-07 02:48:54', '2025-12-17 19:45:36', NULL, '6740364', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2454, 'JUMP WINGS WIT YA BOY KEN', '2024-02-20 19:15:00', '2024-02-20 21:30:00', 'TRAINING SERVER ', '#d89332', 'EVENT DETAILS\n: WE are going to go over how we conduct our Airborne activities. Then we are going to Qual and get some lil jump wings. Peep the link. to the Training Document \n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/312610\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\n: \nN/A', 43, 0, '2024-02-08 02:23:24', '2025-12-17 19:45:36', NULL, '6740921', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2455, 'Basic Training', '2024-02-08 19:00:00', '2024-02-08 22:00:00', '', '#FFFFFF', 'Event Details\n: \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/8b30ab52-7294-47c1-a16c-eab9edc593ad/docs/1011266508\nServer\n: Training Server / Teamspeak Recruitment Room 1\nMap\n: Basic Training / ALTAS\nMods: \nBasic Mod Pack', 38, 0, '2024-02-08 05:14:30', '2025-12-17 19:45:36', NULL, '6741034', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2456, '[CANCELLED] Individualized Rotary Training', '2024-02-09 16:30:00', '2024-02-09 18:30:00', 'Training Server Main Airfield ', '#ecb200', 'Event Details: Training to help individual pilots improve on specific skills on an as-needed basis. Will consist of a diagnostic period to see what skills need to be improved (or you can just tell me what you wanna work on) and then a training period. Restricted number of slots as I can only give an individualized training to so many people at once. Be there or be square!\nServer: Training Server \nMap: Altis \nAdditional Mods Required: None', 45, 1, '2024-02-08 15:19:55', '2025-12-17 19:45:36', NULL, '6742202', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2457, 'Alternative Signling Methods (Tentative)', '2024-02-08 22:00:00', '2024-02-08 23:00:00', '', '#FFFFFF', 'Event Details\n: come check out some alternative signaling methods that can be used when you loose radio contact, No Night Vision, no Lasers. Go back to Basics. Learn the usage / item length of life / how to combine items / to best signal in different situations.\nServer: \nTraining Server\nMap: \nDefault Training Map\nModlist: \nStandard 17th Modpack \n \n', 38, 0, '2024-02-08 17:25:40', '2025-12-17 19:45:36', NULL, '6742221', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2458, 'Campaign Testing', '2024-02-09 22:00:00', '2024-02-09 23:00:00', '', '#FFFFFF', '', 67, 0, '2024-02-09 17:00:15', '2025-12-17 19:45:36', NULL, '6743731', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2459, '[Cancelled] Raids Excersise', '2024-02-15 19:00:00', '2024-02-15 21:00:00', '', '#FFFFFF', 'lol go to Randy\'s thing I\'ll find a day for this.\n\nPractice executing raids in various scenarios such as hostage rescue, intel retrieval, or HVT capture.\n\nThere will be shooting, hopefully lots as usual.\nServer\n: Training Server\nMap\n: Altis\nMods\n: 17th Shadow Mod', 28, 1, '2024-02-09 20:57:48', '2025-12-17 19:45:36', NULL, '6743828', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2460, 'Maneuvers under Contact', '2024-02-15 19:00:00', '2024-02-15 21:00:00', 'Training Server', '#FFFFFF', 'Primary Goal\nTactics and Aggression\nThe main goal of this training is to grow the skills needed to be an effective, efficient squad while on the move. The key concepts of this training are intrasquad communication, movement, and distance. The fundamental skills for this training are derived from AIT 2 and AIT 1. \nEVENT DETAILS\n: \n\n\nAssess the situation, call the audible, action it\n\nSecondary Goals\n\n\nThe FTX\nThe FTX will consist of ~4 exercises surrounding reacting to contact of increasing levels of danger, how to recognize these levels, and how to react to them.\n\nSquads will be directed to move to a certain point successfully with two goals, reach the point with minimal casualties and react accordingly to the level of contact.\n\nThe level of contact will be known for the first 3 and the Squad Lead will be directed how to react. The final will have multiple instances of contact at varying levels of danger to apply the lessons.\n\nPrior to each exercise:\n\nFollowing each exercise:\n\nExercises:\n\n\nDescription about the event you are hosting so individuals will know what the event is about\nSERVER\n: Training Server\nMAP\n: Default Map\nMODS REQUIRED\n: Standard 17th Modpack', NULL, 0, '2024-02-09 21:00:41', '2025-12-17 19:45:36', NULL, '6743829', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2461, 'NCO Meeting', '2024-02-10 18:00:00', '2024-02-10 19:00:00', '17th Rangers Teamspeak - Chow Hall', '#FFFFFF', '', 827, 0, '2024-02-10 00:04:33', '2025-12-17 19:45:36', NULL, '6744245', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2462, 'Raccoons "Back to the Basics" Battle Drill Practice', '2024-02-12 19:15:00', '2024-02-12 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: \nThe "What": So... what do these things even mean. Battle Drills are a set of almost automatic processes that are used in response to common occurrences on the battlefield. These set standard allow for leaders to make quick and decisive decisions on the battlefield. As for what each of these specific Battle Drills mean -\nSo, now that I have explained the "What", I suppose I should explain the "How". As in, how I expect to help you learn these tasks.\n\nThe "How":\nFor this step, I am going to be following the walk, run, sprint format. We are going to work up from a dry-fire in a controlled environment to a live-fire in a simulated mission. After each step of the walk, run, sprint, TLs and SLs will AAR so any errors can be improved upon.\n\nThe "Why":\nThis is a an attempt to return the rangers "back to basic". As I love all the high speed shit we do, something we will always lack on (nobodies fault lol) is the fundamentals. I will try to make this a regular thing so we can train up the unit. At some point I would like to work to a higher level with these exercises so the more people we can get out to these the better.\nSERVER\n: 17th Training Server\nMAP\n: \nMODS / MODPACK REQUIRED\n: 17th Shadow Mod', 2222, 0, '2024-02-10 17:01:19', '2025-12-17 19:45:36', NULL, '6744701', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2463, 'Vehicle Commander Training Course', '2024-02-14 17:30:00', '2024-02-14 18:30:00', '', '#ecb200', 'Event details\n: Vehicle Security Course\nWho: Echo orientated, Alpha welcomed.\nWhat: Class on vehicle security tasks\nWhen: 5:30CST\nWhere: training server. \nWhy: Improve basics of vehicle security operations to include security tasks and skills at the individual, crew, and company level.\nServer\n: Training Server\nMap\n: Training Map\nModset/Additional Mods\n: None', 76, 0, '2024-02-11 05:54:01', '2025-12-17 19:45:36', NULL, '6746394', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2464, '[CANCELLED] Pilot School', '2024-02-16 14:00:00', '2024-02-16 16:00:00', 'Training Server, Northern Airbase', '#d89332', 'I\'ll be on the training server and able to do some individualized trainings so we can get better at piloting', 15, 1, '2024-02-11 19:44:02', '2025-12-17 19:45:36', NULL, '6746982', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2465, '[cancelled] Raccoons "Back to the Basics"', '2024-02-22 19:00:00', '2024-02-22 21:00:00', '', '#FFFFFF', 'The "What": So... what do these things even mean. Battle Drills are a set of almost automatic processes that are used in response to common occurrences on the battlefield. These set standard allow for leaders to make quick and decisive decisions on the battlefield. As for what each of these specific Battle Drills mean -\nSo, now that I have explained the "What", I suppose I should explain the "How". As in, how I expect to help you learn these tasks.\n\nThe "How":\nFor this step, I am going to be following the walk, run, sprint format. We are going to work up from a dry-fire in a controlled environment to a live-fire in a simulated mission. After each step of the walk, run, sprint, TLs and SLs will AAR so any errors can be improved upon.\n\nThe "Why":\nThis is a an attempt to return the rangers "back to basic". As I love all the high speed shit we do, something we will always lack on (nobodies fault lol) is the fundamentals. I will try to make this a regular thing so we can train up the unit. At some point I would like to work to a higher level with these exercises so the more people we can get out to these the better.\nSERVER\n: 17th Training Server\nMAP\n: \nMODS / MODPACK REQUIRED\n: 17th Shadow Mod', 2222, 1, '2024-02-13 17:59:05', '2025-12-17 19:45:36', NULL, '7026725', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2466, 'Operation Halo of Iron', '2024-02-14 19:00:00', '2024-02-14 22:00:00', '17th Rangers Private Ops Server', '#df5353', 'Mission Details:\n The 17th Rangers find themselves again in Chernarus, helping to root out and eradicate an unknown foreign mercenary group from the region. This group is well armed, well armored, and has goals unknown to anyone but themselves. They have been rampaging up and down the countryside after summarily defeating the local Chernarussian Defense Forces in battle 3 days ago. Now it is up to us to cripple them and remove them from the region.\n\n\nLocation:\n 17th Rangers Private OPs server\n\n\nMap:\n Chenarus\n\n\nAdditional Mods:\n N/A', 827, 0, '2024-02-13 22:11:09', '2025-12-17 19:45:36', NULL, '7026777', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2467, 'Command Meeting/Campaign Midpoint Meeting', '2024-02-25 17:00:00', '2024-02-25 19:00:00', 'Chow Hall - TeamSpeak', '#355bf8', 'This will begin as a Command Meeting where we ask that everyone not apart of HHC stays muted unless called on or speaking during open floor. Initially, we will discuss the common topics of the Battalion, then transition into each position bringing up any aspects that need to be touched upon. After, we will then review any commendations/disciplinaries/grievences/etc before getting into open floor\n\nFrom there we will transition into the Campaign Midpoint Meeting where we will discuss with the campaign maker about the next half of the campaign itself. We will go over some things we did/did not like in the first half and how we can apply these ideas for the next portion. This will be completely open floor and anyone is welcome to speak\n\n\nIF YOU CANNOT MAKE THIS MEETING BUT HAVE SOMETHING YOU WOULD TOUCHED ON, UTILIZE THE REPLY SECTION AND COMMENT BELOW', 840, 0, '2024-02-16 01:09:59', '2025-12-17 19:45:36', NULL, '7029987', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2468, 'Ranger Training FTX', '2024-02-29 20:00:00', '2024-02-29 22:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Planning and execution of clearing small to medium towns\n\nGridding of towns\nPhase Lines\nPathing in towns\nKillin bad dudes\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-02-16 03:46:32', '2025-12-17 19:45:36', NULL, '7030380', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2469, 'Echo Gunnery Course', '2024-02-19 18:30:00', '2024-02-19 20:30:00', '', '#d89332', 'EVENT DETAILS- Learn how to effectively utilize vehicle mounted guns, and about enemy vehicles and their weaknesses. \nSERVER- 17th training server\nLocation- Training Grounds \nMods- 17th Shadowmod\nOptional Mod- A3TI Thermal Enhancement', 7, 0, '2024-02-16 23:14:59', '2025-12-17 19:45:36', NULL, '7030632', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2470, 'Campaign Testing', '2024-02-16 22:00:00', '2024-02-16 23:00:00', 'Private Ops Server', '#FFFFFF', '', 67, 0, '2024-02-17 00:02:27', '2025-12-17 19:45:36', NULL, '7030725', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2471, 'COMMUNITY MEETING WIT Ken', '2024-02-23 19:00:00', '2024-02-23 19:30:00', 'teamspeak ', '#ecb200', 'Peep game and some of you know maybe not all of you once again the 17th name has been banned from Reddit. Instead of this was to happen again we going to have to switch it up. That\'s what this meeting is in regards to we\'re going to have to make a name change we\'re still sticking with the ranger formula. But I just wanted to have a quick community meeting to discuss the process of this and how I am going to approach it. Pull up if you care if you really don\'t care pull up anyway if you don\'t want to pull up don\'t pull up this meeting should run no longer than about 30 minutes 35 or 40 will be the hard cut off.\n\n I\'d ask if I could have a volunteer from y\'all section if you could either record the meeting or take notes for our records I\'d appreciate you so much', 43, 0, '2024-02-18 19:44:45', '2025-12-17 19:45:36', NULL, '7032425', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2472, '[Cancelled] Operation Louisiana', '2024-02-23 19:30:00', '2024-02-23 22:00:00', '17th Rangers Private OPs server', '#df5353', 'Mission Details:\n After a state of emergency was declared in the direct aftermath of a Hurricane, several militia groups have since seized weapons caches and armories and have both refused to follow the orders of local authorities and in some cases have even resorted to violence against IDAP workers, local police, and other authorities attempting to regain control of the ruined area. Now the 17th Rangers have been activated to help deal with this threat in any way necessary.\n\n\nLocation:\n 17th Rangers Private Operations server\n\n\nMap:\n Gulfcoast Islands\n\n\nAdditional Mods:\n N/A', 827, 1, '2024-02-19 22:45:40', '2025-12-17 19:45:36', NULL, '7033677', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2473, 'Rotary CAS Training', '2024-02-27 19:00:00', '2024-02-27 21:00:00', 'Northern Airfield', '#ecb200', 'EVENT DETAILS\n: Come learn how to blow things up in a helicopter! \n(not including yourself)\nThis training will cover our Rotary CAS assets (AH-6, MH-60 and AH-64) as well as their weapons systems and tactics.\nYou\'re expected to know how to fly a helicopter, as well as be familiar with the 5-line CAS request shown in the Co-pilot training.\nSERVER\n: Training Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\n: \nN/A\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/345a8732-cb80-4eda-9eff-fbb8161675ac/docs/384288\n\n', 42, 0, '2024-02-20 02:11:10', '2025-12-17 19:45:36', NULL, '7033724', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2474, 'Takistan Tension - Replacement for RASP', '2024-02-24 19:00:00', '2024-02-24 22:00:00', '17th Ranger Battalion Private Operations Server', '#df5353', 'EVENT DETAILS\n: TBA\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: Takistan\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod\n\nMission made by \n - Replacement/Filler for RASP', 840, 0, '2024-02-20 21:10:48', '2025-12-17 19:45:36', NULL, '7035415', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2475, 'Ranger School 3', '2024-02-28 19:00:00', '2024-02-28 21:00:00', '', '#6cba50', 'EVENT DETAILS\n: Ranger School 3 covers Military Operations In Urban Terrain (MOUT). \nSERVER\n: Training Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\n: \nN/A', 644, 0, '2024-02-20 21:55:55', '2025-12-17 19:45:36', NULL, '7035643', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2476, 'Ranger School 2', '2024-02-27 19:00:00', '2024-02-27 21:00:00', '', '#6cba50', 'EVENT DETAILS\n: Ranger school 2 will cover basic combat operations. These topics include- assaulting the enemy, controlling the weapon systems and individual responsibilities as a member of a fire team. \n\nSERVER\n: Training Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\n: \nN/A', 644, 0, '2024-02-20 21:57:20', '2025-12-17 19:45:36', NULL, '7035691', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2477, 'Ranger School 1', '2024-02-22 19:00:00', '2024-02-22 21:00:00', 'training Server - Training Area', '#6cba50', 'Mod Pack - Current 17th mod pack.\nmap - Atlis\n\nWe will go over Squad and Platoon assets.\nThese will include M249, M240B, Grenade Launchers, The MAAWS\nMoving as a fire team. including formations.\nTaking a defensive posture. What signs to look for when picking a hold point.\nThe sounds of different vehicles, including their guns.\nThe training will end with an FTX\n', 483, 0, '2024-02-20 21:57:56', '2025-12-17 19:45:36', NULL, '7035692', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2478, 'Alpha Company NCO Meeting', '2024-02-24 17:30:00', '2024-02-24 19:00:00', '17th Rangers Teamspeak - NCO Club', '#FFFFFF', 'Details:\n This meeting is for all Alpha Company NCOs. We have some information to go over in regards to the current and upcoming expectations of the community. While this meeting is technically optional - I highly recommend attending if you are able as the information disclosed at this meeting will apply to all current and future NCOs. ', 827, 0, '2024-02-20 23:53:24', '2025-12-17 19:45:36', NULL, '7036478', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2479, '[Cancelled] Air Assault Joint Exercise', '2024-02-26 19:00:00', '2024-02-26 21:00:00', '', '#FFFFFF', 'IM SORRY YALL LIFE IS BEEFING WITH ME STILL BUT I\'LL GET SOMETHING OUT SOON\n\n\nEVENT DETAILS\n: One of the lesser practiced activities in our group is air assault, which is weird because we are a ranger group. Come to this to gain experience in performing combat jumps, and carry out a simple seizure of a position. The goal of this is to enhance your skills relating to airborne operations with a focus on hands on experience.\n\n\nThis is not air assault training. This will not award the air assault badge\nSERVER\n: Training Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\n: \nN/A', 28, 1, '2024-02-21 02:45:24', '2025-12-17 19:45:36', NULL, '7037009', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2480, 'Alpha Community Meeting', '2024-02-25 19:00:00', '2024-02-25 20:00:00', '17th Rangers TeamSpeak - NCO Club', '#008ae1', 'Details\n: This is the rescheduled Alpha Community Meeting. This meeting is has a 2 fold purpose. First, to inform you all of upcoming changes, discuss ongoing concerns, and to give you all information regarding previous issues that have been discussed/resolved. Secondly, this is an informal meeting in which you can voice your grievances, give your feedback, and generally make your voice heard. \n\n\nNotes\n: This meeting will not begin until the ending of the Command Meeting, in the event that it runs over. ', 827, 0, '2024-02-24 08:22:40', '2025-12-17 19:45:36', NULL, '7042160', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2481, 'Heavy Weapons School', '2024-03-01 19:00:00', '2024-03-01 21:00:00', '', '#a250e8', '', 468, 0, '2024-02-24 21:02:20', '2025-12-17 19:45:36', NULL, '7044715', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2482, '[Cancelled] Combat Diver School', '2024-03-08 19:00:00', '2024-03-08 21:00:00', '', '#a250e8', '', 468, 1, '2024-02-24 21:06:33', '2025-12-17 19:45:36', NULL, '7044719', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2483, '[Cancelled] Forward Observer School', '2024-03-15 18:00:00', '2024-03-15 19:45:00', '', '#a250e8', '', 468, 1, '2024-02-24 21:09:02', '2025-12-17 19:45:36', NULL, '7044720', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2484, 'Combat Life Saver (CLS) Training', '2024-03-05 18:30:00', '2024-03-05 20:30:00', 'Training Server - Medical Area', '#FFFFFF', 'Event Details: Join us for Combat Life Saver training! Learn how a CLS can be so much more than an ammo bearer for the medic! \nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training. This training is suitable for Alpha, Echo & RRC members.\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER THAN THE 530PM-730PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/331625\nServer: Training Server-Medical Area\nMap: Altis\nAdditional Mods: N/A', 13, 0, '2024-02-26 03:09:04', '2025-12-17 19:45:36', NULL, '7046836', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2485, 'Echo Orientation', '2024-02-29 18:30:00', '2024-02-29 19:30:00', 'Training Grounds', '#ecb200', 'Come get acquainted with all of our lovely toys and learn how to use some of them', 79, 0, '2024-02-26 23:32:06', '2025-12-17 19:45:36', NULL, '7048111', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2486, 'Land Navigation', '2024-03-04 19:00:00', '2024-03-04 21:30:00', '', '#FFFFFF', '', 38, 0, '2024-02-27 06:25:24', '2025-12-17 19:45:36', NULL, '7048277', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2487, 'Battation ftx with ken: airborne', '2024-03-22 18:00:00', '2024-03-22 20:21:00', '', '#ecb200', 'EVENT DETAILS: WE\'RE GOING TO PROTECT THE ITALIAN LEVEL AIRBORNE FTX CONSISTING OF ONE HOLLYWOOD JUMP FOLLOWED BY A JUMP INTO COMBAT SKILLS FTX\nLocation: training server\nMAP: ALTIS\nMODPACK: STANDARD 17TH RANGER BATTALION MOD PACK', 43, 0, '2024-02-27 20:22:40', '2025-12-17 19:45:36', NULL, '7049279', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2488, 'BLOCKED FOR FTX', '2024-03-21 22:00:00', '2024-03-22 22:00:00', '', '#FFFFFF', '', NULL, 0, '2024-02-27 21:01:47', '2025-12-17 19:45:36', NULL, '7049398', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2489, 'Dead by Sunrise', '2024-02-28 19:00:00', '2024-02-28 22:00:00', '17th Rangers Private OPs Server', '#df5353', 'Mission Details:\n An unforeseen enemy push has left the 17th isolated and awaiting reinforcements that won\'t arrive until sunrise. Hold as much territory as you can while losing as few men as possible.\n\n\nMap:\n Altis\n\n\nAdditional Mods:\n N/A', 827, 0, '2024-02-27 23:01:30', '2025-12-17 19:45:36', NULL, '7050161', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2490, 'Mandate of Heaven: Defenders of Mariterra', '2024-03-02 19:00:00', '2024-03-02 22:00:00', 'Private Ops Server', '#df5353', 'EVENT DETAILS\n: With what assets they have collected during their escape, the 17th is now forced to defend the capital of Mariterra: Cape Rassa. If the capital falls, then the gateway to the rest of Mariterra is open for the PLA to take.\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: Gulfcoast Islands\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 67, 0, '2024-02-28 02:14:32', '2025-12-17 19:45:36', NULL, '7050318', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2491, 'Mandate of Heaven: Operation Kingdom Come', '2024-03-09 19:00:00', '2024-03-09 22:00:00', 'Private Ops Server', '#ecb200', 'EVENT DETAILS\n: The 17th is launching an offensive spearhead to drive back the PLA and reestablish AA networks in the AO. \nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: Gulfcoast Islands\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 67, 0, '2024-02-28 02:18:40', '2025-12-17 19:45:36', NULL, '7050319', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2492, 'Mandate of Heaven: Operation Red Dragon [FINALE]', '2024-03-16 18:00:00', '2024-03-16 21:00:00', 'Private Ops', '#df5353', 'EVENT DETAILS\n: One final effort to bring an end to the war in Mariterra. Assault on the island fortress.\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: Gulfcoast Islands\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 67, 0, '2024-02-28 02:34:04', '2025-12-17 19:45:36', NULL, '7050322', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2493, '[Cancelled] Pathfinder', '2024-03-10 17:00:00', '2024-03-10 20:00:00', '', '#ecb200', 'EVENT DETAILS\n: Pathfinder, Marking and communicating DZ/LZ\'s\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: N/A', 644, 1, '2024-02-29 19:06:05', '2025-12-17 19:45:36', NULL, '7052471', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2494, '[Cancelled] MFF/AUAV', '2024-03-10 19:00:00', '2024-03-10 23:00:00', '', '#ecb200', 'EVENT DETAILS\n: Skydiving and drones\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: N/A', 644, 1, '2024-02-29 19:06:41', '2025-12-17 19:45:36', NULL, '7052472', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2495, '[Cancelled] Forward Observer Ribbon', '2024-03-13 18:00:00', '2024-03-13 20:00:00', 'Training Server', '#a250e8', '', 501, 1, '2024-03-01 02:25:15', '2025-12-17 19:45:36', NULL, '7052982', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2496, 'NCO Meeting', '2024-03-02 18:00:00', '2024-03-02 19:00:00', '', '#FFFFFF', '', 827, 0, '2024-03-02 21:16:53', '2025-12-17 19:45:36', NULL, '7055967', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2497, 'Accelerated Basic - Tentative by Request', '2024-03-04 21:30:00', '2024-03-04 22:30:00', '', '#FFFFFF', '', 38, 0, '2024-03-04 05:19:48', '2025-12-17 19:45:36', NULL, '7057501', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2498, 'Blitzcraig Mission - Details TBD', '2024-03-20 18:00:00', '2024-03-20 20:00:00', '', '#df5353', 'Mission Details:\n See Warno below\nServer\n: Private Operations Server\nMap\n: G.O.S. Al Rayak\nMods\n: 17th Shadow Mod AND Al Rayak map', 15, 0, '2024-03-04 13:37:29', '2025-12-17 19:45:36', NULL, '7057662', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2499, 'IDF Bookwork', '2024-03-07 19:00:00', '2024-03-07 21:00:00', '', '#ecb200', 'EVENT DETAILS\n: Learning how to shoot mortars and artillery as well as utilizing the artillery computer mod. \n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: N/A', 516, 0, '2024-03-04 19:39:34', '2025-12-17 19:45:36', NULL, '7057804', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2500, 'Wednesday Operation by Ken', '2024-03-06 19:00:00', '2024-03-06 21:00:00', 'Private Ops Server', '#df5353', 'Mission Details\n : TBA\n\n\nLocation\n : 17th Rangers Private Ops Server\n\n\nMap\n : Altis\n\nAdditional Mods\n : ', NULL, 0, '2024-03-05 01:29:37', '2025-12-17 19:45:36', NULL, '7058603', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2501, 'Ranger Training - Pointman FTX', '2024-03-07 19:00:00', '2024-03-07 20:00:00', '', '#6cba50', 'EVENT DETAILS\n: Planning and acting as a pointman training + ftx\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', 951, 0, '2024-03-05 14:54:57', '2025-12-17 19:45:37', NULL, '7059866', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2502, '[RESCHEDULED] Flight Training', '2024-03-19 18:30:00', '2024-03-19 20:00:00', '', '#d89332', 'Personalized flight training to whoever shows up.\nTraining Server, Northern Airbase', 15, 0, '2024-03-06 02:22:01', '2025-12-17 19:45:37', NULL, '7061202', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2503, 'Rotary Logistics Training', '2024-03-11 19:00:00', '2024-03-11 21:00:00', 'Northern Airbase', '#ecb200', 'EVENT DETAILS\n: Come partake in the joy of flying helicopters! \nIn this training we\'ll go over our main rotary assets, what will be required of you to pass the qualification, as well as tips and tricks in general. \nYou are expected to already know how to fly helicopters.\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/345a8732-cb80-4eda-9eff-fbb8161675ac/docs/368245\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\n: \nN/A', 42, 0, '2024-03-06 21:15:41', '2025-12-17 19:45:37', NULL, '7062500', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2504, 'Flight Training', '2024-03-22 13:00:00', '2024-03-22 15:00:00', '', '#d89332', 'Mission Details:\n Personalized Flight Training\nServer\n: Training Server\nMap\n: Standard Training Server Map\nMods\n: 17th Shadow Mod', 15, 0, '2024-03-07 18:30:55', '2025-12-17 19:45:37', NULL, '7063296', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2505, '68W Training', '2024-03-21 18:00:00', '2024-03-21 20:00:00', 'Training Server', '#6cba50', 'Event Details: A training course for all you aspiring combat medics to earn your 68W badge.\n(Completion of CLS Training is not required to take this course, however, both trainings will be required to obtain a 68W ribbon & be eligible to fill the medic role during 17th operations/FTXs)\n68W training document: \n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/261452\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/261452\nThere will be qualification testing at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be: \n(1) Proper procedure for treating injured/unconscious individuals\n(2) Correct method of triage during a Mass Casualty Incident\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.)\nThis training is appropriate for Alpha, Echo & RRC members.\n\n--All medical trainings can run significantly longer or shorter than posted times, due attendance affecting length of qualification exercise at the end--\n\nServer: Training Server- Medical Area\nMap: N/A\nModset/Additional Mods N/A', 61, 0, '2024-03-09 17:30:10', '2025-12-17 19:45:37', NULL, '7069163', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2506, 'NCO Meeting', '2024-03-09 18:00:00', '2024-03-09 19:00:00', '17th Rangers Teamspeak - Chow Hall', '#FFFFFF', '', 827, 0, '2024-03-09 18:52:12', '2025-12-17 19:45:37', NULL, '7069242', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2507, 'Mass Cas and Triage', '2024-03-18 17:30:00', '2024-03-18 19:15:00', 'Medical Range', '#ecb200', 'Come out and learn how to not die in the event of a Mass Cas and cause less of a problems for the Medic :))\n', 493, 0, '2024-03-12 15:19:24', '2025-12-17 19:45:37', NULL, '7072824', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2508, 'Ranger Training', '2024-03-14 19:00:00', '2024-03-14 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074348', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2509, 'Ranger Training', '2024-03-28 19:00:00', '2024-03-28 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074349', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2510, 'Ranger Training', '2024-03-21 19:00:00', '2024-03-21 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074350', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2511, 'Ranger Training', '2024-04-11 19:00:00', '2024-04-11 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074351', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2512, 'Ranger Training', '2024-04-04 19:00:00', '2024-04-04 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074352', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2513, 'Ranger School 4', '2024-04-18 19:00:00', '2024-04-18 21:00:00', 'Training Server', '#ecb200', 'EVENT DETAILS\n: Ranger School 4: CQB\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074353', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2514, 'Ranger Training', '2024-04-25 19:00:00', '2024-04-25 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074354', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2515, '[CANCELLED] Ranger Training', '2024-05-09 19:00:00', '2024-05-09 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 1, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074355', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2516, 'Ranger Training', '2024-05-02 19:00:00', '2024-05-02 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074356', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2517, '[RESCHEDULED TO JULY 5] Ranger Training', '2024-07-04 19:00:00', '2024-07-04 21:00:00', '', '#ecb200', 'EVENT DETAILS\n: CANCELLED due to holiday\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074357', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2518, 'Ranger Training', '2024-07-25 19:00:00', '2024-07-25 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Colombia\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074358', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2519, '[CANCELLED] Ranger Training', '2024-05-30 19:00:00', '2024-05-30 21:00:00', '', '#FFFFFF', 'Pls come to NCO Course FTX :)', NULL, 1, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074359', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2520, '[CANCELLED] Ranger Training', '2024-05-16 19:00:00', '2024-05-16 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 1, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074360', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2521, 'Ranger Training', '2024-06-20 19:00:00', '2024-06-20 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074361', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2522, 'Ranger Training', '2024-07-18 19:00:00', '2024-07-18 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Randy runs Pointman Training.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074362', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2523, '[CANCELED] Ranger Training', '2024-06-06 19:00:00', '2024-06-06 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 1, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074363', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2524, '[Cancelled] Raid FTX', '2024-07-10 18:00:00', '2024-07-10 21:00:00', '', '#df5353', 'cancelled, attend the friday ftx instead!', NULL, 1, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074364', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2525, 'Ranger Training', '2024-06-13 19:00:00', '2024-06-13 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074365', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2526, 'Ranger Training', '2024-08-01 19:00:00', '2024-08-01 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Colombia\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074366', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2527, 'Ranger Training', '2024-06-27 19:00:00', '2024-06-27 21:00:00', '', '#ecb200', 'EVENT DETAILS\n: We will discuss Raid and CQB concepts as well as doing some hands on practice..\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074367', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2528, 'Ranger Training', '2024-08-08 19:00:00', '2024-08-08 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Colombia\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074368', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2529, 'Ranger Training', '2024-05-23 19:00:00', '2024-05-23 21:00:00', '', '#ecb200', 'EVENT DETAILS\n: mounted patrols/convoy introductions.\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074369', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2530, 'Ranger Training', '2024-08-15 19:00:00', '2024-08-15 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Takistan\nMAP\n: Colombia\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074373', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2531, 'Ranger Training', '2024-08-29 19:00:00', '2024-08-29 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Colombia\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074378', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2532, 'Ranger Training [CANCELED]', '2024-09-05 19:00:00', '2024-09-05 21:00:00', '', '#ecb200', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Colombia\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 1, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074383', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2533, 'Ranger Training', '2024-08-22 19:00:00', '2024-08-22 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: TBD, usually will go over things learned/addressed from previous operations, or as prep for upcoming operations.\n\r\nSERVER\n: Training Server\nMAP\n: Colombia\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-12 16:25:30', '2025-12-17 19:45:37', NULL, '7074384', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2534, 'Osprey Down', '2024-03-13 18:00:00', '2024-03-13 21:00:00', 'Private Ops Server', '#df5353', '', 67, 0, '2024-03-13 16:04:23', '2025-12-17 19:45:37', NULL, '7076875', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2535, 'mission maker hot box: campaign difficulty', '2024-03-16 16:00:00', '2024-03-16 17:00:00', 'discord hoe', '#ecb200', 'Quick little mission maker meeting the topic of this meeting is mission/campaign difficulty', 43, 0, '2024-03-13 16:09:38', '2025-12-17 19:45:37', NULL, '7076879', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2536, 'Basic Training', '2024-03-19 19:00:00', '2024-03-19 21:00:00', '', '#FFFFFF', '', NULL, 0, '2024-03-14 02:12:09', '2025-12-17 19:45:37', NULL, '7077689', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2537, 'CANCELLED - Battalion FTX', '2024-03-23 18:00:00', '2024-03-23 21:00:00', '', '#df5353', 'EVENT DETAILS\n: TBA\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: TBA\nMODS / MODPACK REQUIRED:\n TBA', 840, 1, '2024-03-16 06:11:14', '2025-12-17 19:45:37', NULL, '7085484', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2538, '[Canceled] Operation Gothic Serpent (JOINT OP)', '2024-03-30 18:00:00', '2024-03-30 21:00:00', '', '#df5353', 'EVENT DETAILS\n: TBA \nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: TBA\nMODS / MODPACK REQUIRED:\n TBA', 840, 1, '2024-03-16 06:11:54', '2025-12-17 19:45:37', NULL, '7085485', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2539, 'RASP', '2024-04-06 18:00:00', '2024-04-06 21:00:00', '', '#df5353', 'EVENT DETAILS\n: TBA\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: TBA\nMODS / MODPACK REQUIRED:\n \nTBA', 840, 0, '2024-03-16 06:12:13', '2025-12-17 19:45:37', NULL, '7085486', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2540, 'Basic Training', '2024-03-17 14:00:00', '2024-03-17 16:30:00', 'Training Server ', '#FFFFFF', 'Hi, come and learn how the 17th works :)\n', 493, 0, '2024-03-16 21:38:53', '2025-12-17 19:45:37', NULL, '7089267', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2541, 'Ranger School 4', '2024-03-18 19:00:00', '2024-03-18 21:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Ranger school 4 will cover breaching buildings and compounds. These topics include - clearing buildings safely and efficiently\n\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-03-17 02:24:11', '2025-12-17 19:45:37', NULL, '7089404', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2542, 'Forward Observer Ribbon', '2024-03-27 18:00:00', '2024-03-27 19:30:00', 'Training Server, Training Grounds', '#a250e8', '', 501, 0, '2024-03-17 14:19:30', '2025-12-17 19:45:37', NULL, '7090025', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2543, 'RASP Command Rehersal', '2024-04-05 18:00:00', '2024-04-05 19:00:00', '', '#ecb200', 'Command team and mission maker will conduct a walkthrough of the mission and standards', 644, 0, '2024-03-18 14:36:32', '2025-12-17 19:45:37', NULL, '7091456', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2544, '[Canceled] Combat Diver School', '2024-03-25 18:00:00', '2024-03-25 20:00:00', '', '#ecb200', 'I’m on campus and updating these descriptions when I get home', 468, 1, '2024-03-21 21:22:31', '2025-12-17 19:45:37', NULL, '7096941', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2545, 'JTAC Training', '2024-03-26 16:00:00', '2024-03-26 18:00:00', '', '#ecb200', '', 468, 0, '2024-03-21 21:26:22', '2025-12-17 19:45:37', NULL, '7096942', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2546, 'Fixed Wing CAS Training', '2024-03-26 18:20:00', '2024-03-26 20:20:00', '', '#ecb200', '', 468, 0, '2024-03-21 21:28:15', '2025-12-17 19:45:37', NULL, '7096944', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2547, 'IDF School', '2024-03-28 17:00:00', '2024-03-28 18:50:00', '', '#ecb200', '', 468, 0, '2024-03-21 21:38:34', '2025-12-17 19:45:37', NULL, '7096945', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2548, 'The Lion Of March', '2024-03-23 18:00:00', '2024-03-23 21:00:00', '', '#df5353', 'REPLACEMENT FOR BFTX\nEVENT DETAILS\n: \n - United Sahrani is on edge of its own civil war, rangers have been requested to assist. The Sahrani Military has turned on its own government and is looking to take over whatever they can. With tensions rising at the border, rangers will assault and wipe out any OPFOR military presence. Once USMC reinforcements arrive, raids will be carried out in search of the missing ministers of Sahrani\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: United Sahrani\nMODS / MODPACK REQUIRED:\n Standard 17th Modpack', 840, 0, '2024-03-23 18:27:45', '2025-12-17 19:45:37', NULL, '7098747', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2549, '[CANCELLED] Command Meeting', '2024-03-31 15:00:00', '2024-03-31 16:00:00', '', '#355bf8', 'I FORGOR ABOUT EASTER MY B - WILL BE RESCHEDULED\n\n\n\n\nFor this meeting, we ask that everyone not apart of HHC stays muted unless called on or speaking during open floor. Initially, we will discuss the common topics of the Battalion, then transition into each position bringing up any aspects that need to be touched upon. After, we will then review any commendations/disciplinaries/grievences/etc before getting into open floor.\n\nThe main topics of this meeting will be : \nJoint Op, RASP, Future BFTX\'s, Halfway point of terms, etc\n\nIF YOU CANNOT ATTEND THIS MEETING BUT HAVE SOMETHING YOU WOULD LIKE REVIEWED, UTILIZE THE COMMENT SECTION BELOW OR MY DM\'S', 840, 1, '2024-03-24 19:55:30', '2025-12-17 19:45:37', NULL, '7099657', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2550, 'Accelerated basic', '2024-03-26 16:00:00', '2024-03-26 17:00:00', 'training sever ', '#FFFFFF', '', 493, 0, '2024-03-26 19:52:33', '2025-12-17 19:45:37', NULL, '7102333', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2551, 'RTO Training', '2024-04-01 18:00:00', '2024-04-01 19:30:00', 'Training Server - Training Grounds', '#6cba50', 'EVENT DETAILS:\n RTO training and qual\nSERVER:\n Training server \nMAP:\n Altis\nMODS / MODPACK REQUIRED:\n Standard 17th pack', 625, 0, '2024-03-27 12:01:29', '2025-12-17 19:45:37', NULL, '7109912', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2552, 'Filler Operation', '2024-03-27 18:30:00', '2024-03-27 21:30:00', '', '#df5353', '', 38, 0, '2024-03-27 21:16:12', '2025-12-17 19:45:37', NULL, '7111123', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2553, 'AJ PRESENTS: CRITICAL HOUR', '2024-03-30 18:00:00', '2024-03-30 21:00:00', '', '#df5353', 'EVENT DETAILS\n: A daring rescue mission commences after a transport aircraft goes down deep in enemy territory. \nThis mission requires Apex DLC.\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: TANOA (APEX DLC)\nMODS / MODPACK REQUIRED:\n 17th mods + APEX DLC', 28, 0, '2024-03-29 11:28:16', '2025-12-17 19:45:37', NULL, '7113468', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2554, 'NCO meeting', '2024-03-30 17:00:00', '2024-03-30 17:35:00', 'TeamSpeak- Alpha NCO club', '#FFFFFF', 'Come and plan I suppose :)', 493, 0, '2024-03-30 21:43:23', '2025-12-17 19:45:37', NULL, '7114856', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2555, 'Eastern Torch Campaign - Operation Blackstone', '2024-04-13 18:00:00', '2024-04-13 21:00:00', '', '#df5353', 'EVENT DETAILS\n: Establish a base of operations in Al Rayak\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: G.O.S. Al Rayak\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 15, 0, '2024-03-31 02:40:15', '2025-12-17 19:45:37', NULL, '7114951', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2556, 'Eastern Torch Campaign - Operation Scorpion', '2024-04-20 18:00:00', '2024-04-20 21:00:00', '', '#df5353', 'EVENT DETAILS\n: TBD\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: G.O.S. Al Rayak\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 15, 0, '2024-03-31 03:04:06', '2025-12-17 19:45:37', NULL, '7114955', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2557, 'Eastern Torch Campaign - Operation Tiger', '2024-04-27 18:00:00', '2024-04-27 21:00:00', '', '#df5353', 'EVENT DETAILS\n: See Warno\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: G.O.S. Al Rayak\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 15, 0, '2024-03-31 03:05:03', '2025-12-17 19:45:37', NULL, '7114956', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2558, 'Eastern Torch Campaign - Operation Anthony Whelan', '2024-05-04 18:00:00', '2024-05-04 21:00:00', '', '#df5353', 'EVENT DETAILS\n: TBD\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: G.O.S. Al Rayak\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 15, 0, '2024-03-31 03:05:27', '2025-12-17 19:45:37', NULL, '7114957', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2559, '[CANCELLED]Mechanized Training/Qual', '2024-04-02 18:00:00', '2024-04-02 20:30:00', '', '#d89332', '[Cancelled due to lack of signups]\nDetails- Training for Tank Commander roles, how to direct your team and effectively engage threats. \nSERVER- 17th Training Server\nMAP- Altis\nMods- 17th Shadowmod ', 7, 1, '2024-03-31 17:02:49', '2025-12-17 19:45:37', NULL, '7115254', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2560, 'Tiltrotor Logi/CAS Training', '2024-04-09 18:00:00', '2024-04-09 20:00:00', 'Northern Airfield', '#ecb200', 'EVENT DETAILS\n: It is finally here. \n\nThis training will cover the V-44 Blackfish and it\'s variants (we\'ll talk about the osprey too)\nTiltrotors are a very complicated aircraft to fly. It is highly encouraged for you to know how to fly both a plane and a helicopter to attend this training.\nSERVER\n: Training Server\nMAP\n: Altis\nADITIONAL MODS REQUIRED\n: \nN/A\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/345a8732-cb80-4eda-9eff-fbb8161675ac/docs/411375', 42, 0, '2024-04-01 18:34:05', '2025-12-17 19:45:37', NULL, '7130086', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2561, 'Basic Training', '2024-04-01 18:00:00', '2024-04-01 20:00:00', 'Training Server', '#FFFFFF', '', 11, 0, '2024-04-01 22:18:22', '2025-12-17 19:45:37', NULL, '7131267', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2562, 'Ranger School X', '2024-04-03 19:00:00', '2024-04-03 21:59:00', '', '#FFFFFF', 'EVENT DETAILS\n: We\'ll see who needs what!\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', NULL, 0, '2024-04-02 15:32:07', '2025-12-17 19:45:37', NULL, '7134552', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2563, 'EOD Training / Qualification (Tentatively)', '2024-04-12 18:00:00', '2024-04-12 19:00:00', '', '#FFFFFF', '', 38, 0, '2024-04-02 18:27:02', '2025-12-17 19:45:37', NULL, '7134734', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2564, 'AIR ASSAULT JOINT EX', '2024-04-10 18:00:00', '2024-04-10 20:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Flex our airborne muscles and get some air assault action. Practice getting into and out of aircraft, and shooting up loads of stuff with your friends. Close air support welcome\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', 28, 0, '2024-04-02 18:27:12', '2025-12-17 19:45:37', NULL, '7134735', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2565, 'Accelerated Basic Training', '2024-04-02 15:30:00', '2024-04-02 16:30:00', 'Training Server', '#FFFFFF', '', 11, 0, '2024-04-02 20:16:12', '2025-12-17 19:45:37', NULL, '7135074', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2566, 'Teach the Instructor', '2024-04-17 18:30:00', '2024-04-17 21:30:00', '', '#FFFFFF', '', 38, 0, '2024-04-03 01:27:39', '2025-12-17 19:45:37', NULL, '7140664', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2567, 'Echo Company Meeting', '2024-04-08 17:00:00', '2024-04-08 17:30:00', '', '#d89332', '', 28, 0, '2024-04-04 01:13:02', '2025-12-17 19:45:37', NULL, '7144962', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2568, 'AIT 1 and 2', '2024-04-05 19:00:00', '2024-04-05 22:00:00', 'training server', '#ecb200', 'Late post I\'m aware, didn\'t get approval to do it till late last night, we\'ll live. Come get your missing requirements to be eligible for the tab on saturday.\n', 2221, 0, '2024-04-05 16:39:38', '2025-12-17 19:45:37', NULL, '7153615', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2569, 'Command Meeting', '2024-04-07 15:00:00', '2024-04-07 16:00:00', '', '#355bf8', 'For this meeting, we ask that everyone not apart of HHC stays muted unless called on or speaking during open floor. Initially, we will discuss the common topics of the Battalion, then transition into each position bringing up any aspects that need to be touched upon. After, we will then review any commendations/disciplinaries/grievences/etc before getting into open floor.\n\nThe main topics of this meeting will be : \nRASP, Upcoming Campaign, Halfway point of terms, etc\n\nIF YOU CANNOT ATTEND THIS MEETING BUT HAVE SOMETHING YOU WOULD LIKE REVIEWED, UTILIZE THE COMMENT SECTION BELOW OR MY DM\'S', 840, 0, '2024-04-05 19:17:26', '2025-12-17 19:45:37', NULL, '7154056', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2570, 'Basic Training', '2024-04-08 18:00:00', '2024-04-08 20:00:00', 'Training Server', '#FFFFFF', 'Basic Training\nTraining server\nMap Atlis\nNo additional mods required', 483, 0, '2024-04-07 17:42:21', '2025-12-17 19:45:37', NULL, '7159187', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2571, '68W', '2024-04-11 18:30:00', '2024-04-11 20:30:00', 'Medical Range in the Training server ', '#ecb200', 'Be there or be square losers. ', 493, 0, '2024-04-07 20:59:43', '2025-12-17 19:45:37', NULL, '7159484', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2572, 'NCO Meeting', '2024-04-13 17:00:00', '2024-04-13 18:00:00', '17th Rangers Private Ops Server', '#008ae1', 'For all attendees, please note that the order of operations of the meeting are changing. Below is a rough idea of the new order of NCO meetings\n\n\n7:00 - 7:30\n : Open Slotting. SL\'s should attend and other NCOs are permitted to attend to provide commentary\n\n\n7:30 - 7:50\n : NCO Planning meeting. All SL\'s and FTLs should attend, in addition to using this time to load in early and prepare vehicles, kits, and prepare to organize their squads\n\n\n7:50 - 8:00\n : Individual Squad Planning and preparation for briefing. \n\nThe intention for this change is to have Squads much more ready to step off post-briefing than previously seen. Moving forward, squads will have significantly shorter time to step off post-brief and will need to be ready early, barring emergencies or unforseen events. ', 827, 0, '2024-04-08 00:13:37', '2025-12-17 19:45:37', NULL, '7159522', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2573, 'NCO Course FTX', '2024-04-16 17:30:00', '2024-04-16 21:00:00', 'Private Ops', '#FFFFFF', 'EVENT DETAILS\n: The NCO Course is comprised of three sections:\nIn order to earn a green checkmark for completing the course, you will be required to hold at least one leadership position during any section of the course (FTL/SL) and have demonstrated understanding of the material laid out in the bookwork. Priority leadership positions will go to current NCOs.\n\nWe will be hosting the bookwork section at 6:30 PM CDT. If you have completed the section of the bookwork before, you do not have to attend that part.\nSERVER\n: Currently Private Ops, but may transition to Training Server\nMAP\n: Bystrica\nMODS / MODPACK REQUIRED\n: N/A', 67, 0, '2024-04-08 22:58:55', '2025-12-17 19:45:37', NULL, '7160612', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2574, '[Cancelled] Op Prep', '2024-04-13 13:00:00', '2024-04-13 14:30:00', '', '#ecb200', 'EVENT DETAILS\n: Will update as we get more info on the operation, right now I\'m looking at training for\n\n\n-Assaulting an Airfield\n-Assaulting a fortified position\n-Airborne Operation/Practice Jump\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', 2222, 1, '2024-04-09 16:51:03', '2025-12-17 19:45:37', NULL, '7163825', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2575, 'Operation Blackbird', '2024-04-12 18:00:00', '2024-04-12 21:00:00', '', '#FFFFFF', 'Mission Details\n : The US military is currently stationed in Sahatra, a region in the middle east with little love for us, but no direct action against us until now. During a routine convoy to resupply our airbase, the US forces were ambushed by sudden, overwhelming numbers of insurgents. The convoy was able to limp to the airbase, but not without leaving some men behind.\n\nGo save those men and show why the USA isn\'t someone to mess with...\n\n\nLocation\n : 17th Rangers Private ops Server\n\n\nMap\n : Sahatra \n\nAdditional Mods\n : Sahatra map mod \n \nhttps://steamcommunity.com/sharedfiles/filedetails/?id=3019928771&searchtext=sahatra', 57, 0, '2024-04-09 20:26:50', '2025-12-17 19:45:37', NULL, '7164534', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2576, 'Operation Bloody Sand', '2024-04-26 18:00:00', '2024-04-26 20:00:00', '', '#FFFFFF', 'Mission Details\n :Ahead of a major beach landing of US forces, the 17th Rangers will be HALO jumping behind enemy lines to destroy a SAM site, ambush a convoy of explosives, and use those explosives to destroy enemy costal defenses.\n\n\nLocation\n : 17th Rangers Private ops Server\n\n\nMap\n : Maksniemi\n\nAdditional Mods\n : Maksniemi map', 57, 0, '2024-04-09 20:27:53', '2025-12-17 19:45:37', NULL, '7164538', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2577, 'Basic Training', '2024-04-11 15:00:00', '2024-04-11 17:00:00', '17th Training Server', '#FFFFFF', '', 11, 0, '2024-04-10 20:46:20', '2025-12-17 19:45:37', NULL, '7166293', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2578, '[RESCHEDULED] Eden 101: Building the Basics', '2024-04-14 16:00:00', '2024-04-14 18:00:00', 'Discord High Bit Rate', '#FFFFFF', 'I had a thing planned that I completely forgot about. We\'ll run it back again soon!', 67, 0, '2024-04-11 10:45:36', '2025-12-17 19:45:37', NULL, '7167016', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2579, 'Molders Recording and Uploading Class', '2024-04-12 16:00:00', '2024-04-12 17:00:00', '', '#a250e8', '', 761, 0, '2024-04-11 11:17:11', '2025-12-17 19:45:37', NULL, '7167020', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2580, '[Cancelled] Heavy Weapons School', '2024-04-14 18:00:00', '2024-04-14 20:00:00', '', '#ecb200', '', 468, 1, '2024-04-11 18:54:46', '2025-12-17 19:45:37', NULL, '7167272', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2581, 'Fireteam Lead/2IC', '2024-04-23 18:00:00', '2024-04-23 20:00:00', 'Training Server - Training Grounds', '#ecb200', 'Run through Fireteam and Fireteam 2IC basics.\nDelegation of duties, fireteam compositions, working with your sister team, comms within the FT and Squad.', 73, 0, '2024-04-12 20:00:51', '2025-12-17 19:45:37', NULL, '7169048', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2582, 'Rotary Logistics Training', '2024-04-18 18:00:00', '2024-04-18 20:00:00', '', '#d89332', 'EVENT DETAILS\n: Rotary Logistics Training. We will stay well away from Ranger Training, and will hop onto the private ops server if necessary.\n\r\nSERVER\n: Training Server\nMAP\n: Altis\nADDITIONAL MODS REQUIRED\n: \nN/A', 15, 0, '2024-04-12 21:56:15', '2025-12-17 19:45:37', NULL, '7169765', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2583, 'Eden Editor 101: Building the Basics P1', '2024-04-15 18:00:00', '2024-04-15 20:00:00', 'High Bit Rate Gaming', '#FFFFFF', 'Hi,\n\nWe\'ll be going over the basics on mission making design as I go through building the basic set up for a mission file for the 17th. We\'ll talk about:\n- How to place objects\n- Basic triggers\n- AI waypoints\n\nWill consider recording these too.', 67, 0, '2024-04-14 10:45:27', '2025-12-17 19:45:37', NULL, '7172946', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2584, 'Operation Double Dragon', '2024-04-21 17:00:00', '2024-04-21 19:00:00', '', '#FFFFFF', 'Mission Details\n : ION forces have taken over the military zone of Fapovo. Work with the remaining Fapovoian forces to attack them from both sides and drive them from the country. \n\nAlpha will be inserting via boast to the south of the contested area while Fapovian forces wait to the north to begin their attack.\n\nEcho will have a choice as air support, air to vehicle support from the south, or joining the Favonian forces trying to attack from the north.\n\n\nLocation\n : 17th Rangers Private ops Server\n\n\nMap\n : Fapovo\n\nAdditional Mods\n : Fapovo', 57, 0, '2024-04-14 20:20:15', '2025-12-17 19:45:37', NULL, '7175057', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2585, 'Takistan Drive', '2024-04-24 18:00:00', '2024-04-24 21:00:00', 'Private Ops Server', '#FFFFFF', 'EVENT DETAILS:\n Convoy operation to extract a HVT.\nSERVER: \nPrivate Operations Server\nMAP:\n Takistan\nMODS:\n 17th Shadow Mod', 67, 0, '2024-04-15 08:22:27', '2025-12-17 19:45:37', NULL, '7175828', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2586, 'Basic Training', '2024-04-15 16:00:00', '2024-04-15 18:00:00', '17th Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training Server\nMAP: 17th Training Server - Training Grounds\nMODS/MODPACK REQUIRED: 17th Ranger Battalion Shadow Mod', 11, 0, '2024-04-15 18:37:32', '2025-12-17 19:45:37', NULL, '7176151', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2587, 'Basic Training', '2024-04-16 16:00:00', '2024-04-16 18:00:00', '17th Training Battalion', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training Server\nMAP: 17th Training Server - Training Grounds\nMODS/MODPACK REQUIRED: 17th Ranger Battalion Shadow Mod', 11, 0, '2024-04-15 18:38:09', '2025-12-17 19:45:37', NULL, '7176152', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2588, 'Eden Editor 101: Building the Basics P2', '2024-04-17 18:00:00', '2024-04-17 21:00:00', 'High Bit Rate Gaming', '#FFFFFF', 'Hi,\nWe\'ll be going over the basics on mission making design as I go through building the basic set up for a mission file for the 17th. We\'ll talk about:\nWill consider recording these too.', 67, 0, '2024-04-16 03:39:20', '2025-12-17 19:45:37', NULL, '7177233', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2589, 'Eden Editor 101: Building the Basics P3', '2024-04-19 18:00:00', '2024-04-19 21:00:00', 'High Bit Rate Gaming', '#FFFFFF', 'Hi,\nWe\'ll be going over the basics on mission making design as I go through building the basic set up for a mission file for the 17th. We\'ll talk about:\nWill consider recording these too.', 67, 0, '2024-04-16 03:39:52', '2025-12-17 19:45:37', NULL, '7177235', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2590, 'Operation Full Set', '2024-04-17 18:00:00', '2024-04-17 21:00:00', '17th Rangers Private ops Server', '#30a68f', 'Mission Details\n : Enemy Insurgents, having already led a successful coup d\'état, have taken several American VIPs hostage and are keeping them sequestered in separate locations across their controlled territory. It is your job to free them and extract them safely\n\n\nLocation\n : 17th Rangers Private Ops Server\n\n\nAdditional Mods\n : Required - N/A\n Suggested - \n\n \n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2791403093\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2478519591', 827, 0, '2024-04-16 19:59:22', '2025-12-17 19:45:37', NULL, '7178446', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2591, 'Echo Orientation', '2024-04-19 18:00:00', '2024-04-19 20:30:00', '', '#d89332', 'Event Details- Learn about expectations and assets available to Echo personel. \nServer- Training Server\nMap- Altis\nModlist- 17th Shadowmod\nOptional mod- A3TI Thermal Enhancement', 7, 0, '2024-04-18 21:16:36', '2025-12-17 19:45:37', NULL, '7180957', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2592, 'NCO meeting', '2024-04-20 17:00:00', '2024-04-20 17:50:00', '17th Rangers NCO Club Teamspeak', '#FFFFFF', 'Once again, first half will be dedicated to Slotting and Team Comp, last half will be plan briefing and discussion', 827, 0, '2024-04-18 21:22:02', '2025-12-17 19:45:37', NULL, '7180959', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2593, 'Basic Training', '2024-04-19 14:30:00', '2024-04-19 17:00:00', '17th Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training Server\nMAP: 17th Training Server - Training Grounds\nMODS/MODPACK REQUIRED: 17th Ranger Battalion Shadow Mod', 11, 0, '2024-04-19 01:41:02', '2025-12-17 19:45:37', NULL, '7181003', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2594, 'Fixed Wing Logistics Training', '2024-04-22 18:00:00', '2024-04-22 21:00:00', 'Norther Airbase', '#ecb200', 'EVENT DETAILS\n: This training will cover our FW Logistics assets (C-130/C-17)\n\n\n\nServer\n: Training Server\n\nMAP:\n Altis\n\nADITIONAL MODS REQUIRED\n: N/A\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/345a8732-cb80-4eda-9eff-fbb8161675ac/docs/368243\n', 42, 0, '2024-04-19 20:49:52', '2025-12-17 19:45:37', NULL, '7182117', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2595, 'Breaching Training and Practice', '2024-04-25 17:00:00', '2024-04-25 19:00:00', 'Training Range', '#FFFFFF', 'EVENT DETAILS: Breaching. Both training and practice. We are going to Breach fences, walled compounds, buildings, along with how to use wedges to block door access.\nSERVER: Training Server\nMAP: Altis\nADDITIONAL MODS REQUIRED: N/A', 483, 0, '2024-04-19 22:56:50', '2025-12-17 19:45:37', NULL, '7182252', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2596, 'NCO Meeting', '2024-04-27 17:00:00', '2024-04-27 18:00:00', '17th Rangers TS - NCO Club', '#FFFFFF', '', 827, 0, '2024-04-21 03:00:18', '2025-12-17 19:45:37', NULL, '7183788', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2597, 'Radio Telephone Operator (RTO) Ribbon', '2024-04-26 18:00:00', '2024-04-26 20:00:00', 'Training server, Training Grounds', '#a250e8', 'We gonna learn how to communicate and coordinate on the radio with the Echo element. ', 501, 0, '2024-04-21 22:35:50', '2025-12-17 19:45:37', NULL, '7186726', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2598, 'Air Assault FTX', '2024-04-22 18:30:00', '2024-04-22 20:00:00', '', '#FFFFFF', 'EVENT DETAILS: \nPractice air assaults in short and intense reps doing a variety of tasks like hostage rescue and capture missions.\n\nServer: \nTraining Server\n\nMAP: \nAltis\n\nADITIONAL MODS REQUIRED:\n N/A', 28, 0, '2024-04-21 22:43:41', '2025-12-17 19:45:37', NULL, '7186731', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2599, 'Basic Training', '2024-04-22 20:00:00', '2024-04-22 21:59:00', 'Training Server', '#ecb200', 'EVENT DETAILS: Basic Training\nSERVER: Training Server\nMAP: 17th Training Server - Training Grounds\nMODS/MODPACK REQUIRED: 17th Ranger Battalion Shadow Mod', 11, 0, '2024-04-22 13:02:10', '2025-12-17 19:45:37', NULL, '7189372', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2600, 'Advanced UAV / MFF', '2024-04-30 18:00:00', '2024-04-30 20:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS:\n Fly big drones. Fall from the sky and land safely (if time permits).\n\n\nSERVER:\n Training Server\n\n\nMODS / MODPACK REQUIRED:\n 17th Mods', 22, 0, '2024-04-24 02:16:21', '2025-12-17 19:45:37', NULL, '7196794', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2601, 'Pre-op Warmups with Waykook and Molder', '2024-04-24 16:30:00', '2024-04-24 17:30:00', 'Training server', '#6cba50', 'For those hungry people, Let\'s get some live squad level reps in. We are going for fast repetitions of reacting to contact and assaulting a position. ', 761, 0, '2024-04-24 03:26:05', '2025-12-17 19:45:37', NULL, '7197023', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2602, 'Anti Armor School', '2024-04-28 17:00:00', '2024-04-28 19:54:00', '', '#a250e8', 'EVENT DETAILS: Learn the ins and outs of enemy AFVs to fight and survive them better.\nSERVER: Training Server.\nMAP: Training Server - Altis\nMODS / MODPACK REQUIRED: Standard modset + approved whitelist.\n', 468, 0, '2024-04-26 04:43:35', '2025-12-17 19:45:37', NULL, '7220467', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2603, 'Operation Promethean Benefactor', '2024-05-15 18:00:00', '2024-05-15 21:00:00', 'Private Ops Server', '#30a68f', 'EVENT DETAILS:\n The Rangers have been deployed as a light infantry QRF to protect the peace process on the critical island of Altis between the US-backed FIA forces and the AAF. Should the situation deteriorate, the Rangers will be inserted via helicopter to protect or extract the FIA delegation. Intel suggests the situation on the ground is highly volatile, but we must give peace a chance.\n\nSERVER:\n Private Operations Server\n\nMAP:\n Altis\n\nMODS / MODPACK REQUIRED\n: 17th Shadow Mod\n\nCredit of Operation: \n ', 67, 0, '2024-04-27 02:46:23', '2025-12-17 19:45:37', NULL, '7225669', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2604, 'Operation Promethean Benefactor P2', '2024-05-29 18:00:00', '2024-05-29 21:00:00', 'Private Ops Server', '#30a68f', 'EVENT DETAILS:\n Following the successful raids on AAF artillery camps, FIA forces have continued to secure key locations and cities, advancing north along the island. Their next objective is to seize control of the central airbase.\n\nThe destruction of chemical weapons has become the priority mission for the Rangers after their use on civilian populations. Latest intel suggests a shipment of these weapons is scheduled to arrive at the central airbase naval port at 0600 local time. Following communications with FIA command, a joint assault on the airbase and naval port will commence. \n\nOur objective: \nAssets:\nSERVER:\n Private Operations Server\n\nMAP:\n Altis\n\nMODS / MODPACK REQUIRED\n: 17th Shadow Mod\n\nCredit of Operation: \n ', 67, 0, '2024-04-27 02:46:43', '2025-12-17 19:45:37', NULL, '7225670', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2605, '68W Training/Refresher Course', '2024-05-03 18:00:00', '2024-05-03 20:30:00', 'Medical Range on Training Server', '#FFFFFF', 'EVENT DETAILS: Medic (68W) Training/Refresher Course\nSERVER: Training server\nMAP: Training Server- Medical Range\nMODS / MODPACK: Standard 17th Modpack', 13, 0, '2024-04-28 02:37:19', '2025-12-17 19:45:37', NULL, '7229243', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2606, 'Basic Training', '2024-04-29 14:30:00', '2024-04-29 16:30:00', 'Training Server', '#FFFFFF', '\nPlease enter the Iceberg Teamspeak early so we can make sure you have everything necessary to join the server', 12, 0, '2024-04-28 15:47:35', '2025-12-17 19:45:37', NULL, '7230496', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2607, 'JTAC Training', '2024-05-01 16:00:00', '2024-05-01 17:00:00', '', '#FFFFFF', 'EVENT DETAILS: Call in hate using radios, kill some bad guys while you do it. Might even throw in a qual if there\'s time for it.\nSERVER: Training Server\nMODS / MODPACK REQUIRED: Base 17th Modpack', 45, 0, '2024-04-29 20:40:36', '2025-12-17 19:45:37', NULL, '7240136', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2608, 'Echo Orientation', '2024-05-01 18:00:00', '2024-05-01 20:00:00', '', '#d89332', 'Event Details- New Echo members (And Alpha who are curious) learn about Echo Assets and how to be a functioning member of the company. We will be covering Ground, Air, and Artillery. Strap in. \nServer- 17th Training Server\nMap- Altis\nModpack- 17th ShadowMod ', 7, 0, '2024-04-29 22:49:33', '2025-12-17 19:45:37', NULL, '7240272', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2609, 'RASP', '2024-05-11 18:00:00', '2024-05-11 21:00:00', '', '#df5353', '\nMedic and Leadership (PL, SL, FTL) volunteer positions are available, drop your name and position requested in the comments below', 840, 0, '2024-04-30 01:04:45', '2025-12-17 19:45:37', NULL, '7240354', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2610, '[Canceled] Sandtable for OP Tomorrow', '2024-05-03 18:00:00', '2024-05-03 19:00:00', '', '#FFFFFF', 'EVENT DETAILS: Sandtable Hostage Rescue and Urban Clear\nSERVER: Training Server\nMAP: GOS AI RAYAK\nADDITIONAL MODS REQUIRED: N/A\nGonna be more fun for people I suppose.', 951, 1, '2024-04-30 22:37:16', '2025-12-17 19:45:37', NULL, '7241797', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2611, 'Ranger School 1', '2024-05-06 18:00:00', '2024-05-06 20:00:00', 'training server', '#FFFFFF', 'EVENT DETAILS: Ranger School 1\nSERVER: Training Server\nMAP: Altis\nADDITIONAL MODS REQUIRED: N/A\n\nIf you need RS 1-4 for RASP, we are doing it this week', 483, 0, '2024-05-02 16:30:06', '2025-12-17 19:45:37', NULL, '7247642', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2612, 'Ranger School 2', '2024-05-08 18:00:00', '2024-05-08 20:00:00', 'training server', '#FFFFFF', 'EVENT DETAILS: Ranger School 2\nSERVER: Training Server\nMAP: Altis\nADDITIONAL MODS REQUIRED: N/A', 483, 0, '2024-05-02 16:30:53', '2025-12-17 19:45:37', NULL, '7247643', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2613, 'Ranger School 3', '2024-05-09 18:00:00', '2024-05-09 20:00:00', 'Training server', '#FFFFFF', 'EVENT DETAILS: Ranger School 3\nSERVER: Training Server\nMAP: Altis\nADDITIONAL MODS REQUIRED: N/A', 483, 0, '2024-05-02 16:31:31', '2025-12-17 19:45:37', NULL, '7247644', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2614, 'Ranger School 4', '2024-05-10 18:00:00', '2024-05-10 20:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Ranger School 4\nSERVER: Training Server\nMAP: Altis\nADDITIONAL MODS REQUIRED: N/A', 483, 0, '2024-05-02 16:31:57', '2025-12-17 19:45:37', NULL, '7247645', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2615, 'NCO Meeting', '2024-05-04 17:00:00', '2024-05-04 18:00:00', '', '#FFFFFF', '', 827, 0, '2024-05-03 02:10:46', '2025-12-17 19:45:37', NULL, '7249787', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2616, 'RSLC and Pathfinder', '2024-05-09 18:00:00', '2024-05-09 20:00:00', '', '#ecb200', 'EVENT- Reconnaissance Senior Leaders Course and Pathfinder. \nRSLC is the introduction into planning and executing RRC missions utilizing the different tools and methods than seen in Alpha or Echo. Pathfinder is the structured process of identifying, verifying, clearing, marking and communicating landing and pick up sites for helicopters and paradrops. \nServer- Training\nMap- Altis\nMods needed- NA', 644, 0, '2024-05-03 12:38:42', '2025-12-17 19:45:37', NULL, '7250296', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2617, 'JTAC Training', '2024-05-05 18:00:00', '2024-05-05 20:00:00', '', '#d89332', '', 468, 0, '2024-05-03 19:12:37', '2025-12-17 19:45:37', NULL, '7251633', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2618, 'Echo Gunnery Course (test)', '2024-05-07 17:30:00', '2024-05-07 19:30:00', '', '#d89332', 'Event Details- A dry-run of the upcoming Echo Gunnery course, where we learn how to use our vehicle based weaponry and apply our knowledge. \nServer- 17th Training Server\nMap- Altis \nMods- 17th Shadowmod ', 7, 0, '2024-05-03 22:08:06', '2025-12-17 19:45:37', NULL, '7251685', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2619, '[Cancelled] - Rotary Logi Practice', '2024-05-10 16:00:00', '2024-05-10 18:00:00', 'Training Server ', '#FFFFFF', 'Were gonna drill some LZ\'s in night time and bad weather situations. ', 501, 1, '2024-05-05 14:25:11', '2025-12-17 19:45:37', NULL, '7252965', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2620, '(Resceduled) Operation Sporting Rage', '2024-05-17 18:00:00', '2024-05-17 20:30:00', '', '#FFFFFF', 'Mission Details : TBA\nLocation : 17th Rangers Private ops Server\nMap : TBA\nAdditional Mods : TBA', 57, 0, '2024-05-06 21:30:21', '2025-12-17 19:45:37', NULL, '7258097', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2621, 'Basic Training', '2024-05-07 18:00:00', '2024-05-07 21:00:00', 'Altis - 17th Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training Server\nMAP: 17th Training Server - Training Grounds\nMODS/MODPACK REQUIRED: 17th Ranger Battalion Shadow Mod\nPlease enter the Iceberg Teamspeak early so we can make sure you have everything necessary to join the server', 11, 0, '2024-05-07 01:27:22', '2025-12-17 19:45:37', NULL, '7258170', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2622, 'Cadre RASP Walkthrough', '2024-05-10 20:15:00', '2024-05-10 21:15:00', 'Private Operations Server', '#355bf8', 'RASP Mission File Testing / Cadre Walkthrough', 840, 0, '2024-05-09 05:23:58', '2025-12-17 19:45:37', NULL, '7262064', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2623, 'Alpha Company Meeting', '2024-05-11 16:00:00', '2024-05-11 17:00:00', 'Chow Hall/TeamSpeak', '#ecb200', 'EVENT DETAILS: Meeting of Alpha to discuss current state of the Company as well as the future. Also a perfect place to answer any existing questions and concerns.\nSERVER: Iceberg Gaming Teamspeak Server (Chow Hall)\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 21, 0, '2024-05-10 13:07:29', '2025-12-17 19:45:37', NULL, '7263048', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2624, 'JTAC Qualification', '2024-05-12 15:00:00', '2024-05-12 17:30:00', 'Training Server', '#d89332', '', 468, 0, '2024-05-10 21:44:17', '2025-12-17 19:45:37', NULL, '7263301', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2625, '[Canceled] Demolitions School', '2024-05-12 18:00:00', '2024-05-12 19:45:00', 'Training Server', '#6cba50', '', 468, 1, '2024-05-10 21:46:12', '2025-12-17 19:45:37', NULL, '7263302', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2626, 'Eastern Torch Mission 5 - Operation Jackal', '2024-05-18 18:00:00', '2024-05-18 21:00:00', '', '#df5353', 'EVENT DETAILS\n: Read the Warno.\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: G.O.S. Al Rayak\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 15, 0, '2024-05-12 03:35:18', '2025-12-17 19:45:37', NULL, '7264723', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2627, 'Eastern Torch Mission 6 - Operation Sand Boa', '2024-05-25 18:00:00', '2024-05-25 21:00:00', '', '#df5353', 'EVENT DETAILS\n: See Warno\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: G.O.S. Al Rayak\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 15, 0, '2024-05-12 03:37:33', '2025-12-17 19:45:37', NULL, '7264724', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2628, 'Eastern Torch Mission 7', '2024-06-01 18:00:00', '2024-06-01 21:00:00', '', '#df5353', 'EVENT DETAILS\n: TBD\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: G.O.S. Al Rayak\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 15, 0, '2024-05-12 03:37:51', '2025-12-17 19:45:37', NULL, '7264725', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2629, 'Eastern Torch FINALE', '2024-06-08 18:00:00', '2024-06-08 21:00:00', '', '#df5353', 'EVENT DETAILS\n: TBD\nSERVER\n: 17th Ranger Battalion Private Operations Server\nMAP\n: G.O.S. Al Rayak\nMODS / MODPACK REQUIRED:\n \n17th Shadow Mod', 15, 0, '2024-05-12 03:38:10', '2025-12-17 19:45:37', NULL, '7264726', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2630, 'Operation Sporting Rage', '2024-05-16 18:00:00', '2024-05-16 20:00:00', '', '#FFFFFF', 'Mission Details : After a great upset in the world cup, the fans spilled out of the stadiums and sports bars angry and upset, causing chaos and destruction in the streets. While this alone would be not of US concern, the local terrorist forces took the opportunity to rile the people up even more and captured several local military bases. \n\nThe local police are far outmatched at this point, and more governmental military forces will take time to reach the area, so the country leaders have requested the US to step in.\n\nObjectives:\n1. Eliminate all terrorist forces\nROE: Do not harm civilians. Do not fire unless fired upon or clearly threatened.\n\n\nLocation : 17th Rangers Private ops Server\nMap : Anizay\nAdditional Mods : map mod', 57, 0, '2024-05-12 09:59:30', '2025-12-17 19:45:37', NULL, '7264801', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2631, 'Basic Training', '2024-05-12 11:15:00', '2024-05-12 13:45:00', 'Training Server', '#30a68f', 'EVENT DETAILS: Basic Training \nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: Battalion Mods', 493, 0, '2024-05-12 15:46:13', '2025-12-17 19:45:37', NULL, '7265589', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2632, 'EOD Training / Qualification', '2024-05-14 18:30:00', '2024-05-14 21:00:00', '', '#ecb200', 'EVENT DETAILS\nEOD Training\n.\nSERVER\n: Training Server\nMAP\n: Training Server - Altis\nMODS / MODPACK REQUIRED\n: Standard Modset + approved whitelist.', 38, 0, '2024-05-13 22:59:56', '2025-12-17 19:45:37', NULL, '7269123', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2633, 'Mechanized Qual', '2024-05-17 18:00:00', '2024-05-17 20:30:00', '', '#ecb200', 'Event details- bookwork and FTX for vehicle commander positions. \nServer- 17th training server\nMap- Altis \nMods- 17th Shadowmod', 7, 0, '2024-05-14 13:37:35', '2025-12-17 19:45:37', NULL, '7270095', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2634, 'AIT 1 (Ranger School)', '2024-05-19 13:00:00', '2024-05-19 15:30:00', 'training server', '#ecb200', 'To be filled out at my home pc e.o.d.', 2221, 0, '2024-05-14 18:00:45', '2025-12-17 19:45:37', NULL, '7270321', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2635, 'AIT 2 (Ranger School)', '2024-05-19 16:00:00', '2024-05-19 18:30:00', 'training server', '#ecb200', 'To be filled out at my home pc e.o.d.', 2221, 0, '2024-05-14 18:02:26', '2025-12-17 19:45:37', NULL, '7270322', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2636, 'AIT 3 (Ranger School)', '2024-05-26 13:00:00', '2024-05-26 15:30:00', 'training server', '#ecb200', 'To be filled out at my home pc e.o.d.', 2221, 0, '2024-05-14 18:03:22', '2025-12-17 19:45:37', NULL, '7270323', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2637, 'AIT 4 (Ranger School)', '2024-05-26 16:00:00', '2024-05-26 18:30:00', 'Training Server', '#ecb200', 'To be filled out at my home pc e.o.d.', 2221, 0, '2024-05-14 18:04:15', '2025-12-17 19:45:37', NULL, '7270324', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2638, 'Tiltrotor Logi/CAS Training', '2024-05-20 19:00:00', '2024-05-20 20:00:00', 'Northern Airfield', '#FFFFFF', 'EVENT DETAILS: \nThis training will cover the V-44 Blackfish and it\'s variants (we\'ll talk about the osprey too)\n\nTiltrotors are a very complicated aircraft to fly. It is highly encouraged for you to know how to fly both a plane and a helicopter to attend this training.\n\n\nSERVER:\n Training Server\n\n\nMAP:\n Altis\n\n\nADITIONAL MODS REQUIRED:\n N/A\n\n', 42, 0, '2024-05-15 21:41:58', '2025-12-17 19:45:37', NULL, '7273117', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2639, 'Basic Training', '2024-05-16 15:00:00', '2024-05-16 18:00:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 11, 0, '2024-05-16 02:50:35', '2025-12-17 19:45:37', NULL, '7273242', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2640, 'Echo Orientation', '2024-05-21 17:30:00', '2024-05-21 19:30:00', '', '#d89332', 'Event Details- Learn the basics of working with Echo, from how a mortar works to adjusting your seat height in a Bradley. \nServer- 17th Training Server\nMap- Altis\nMods- 17th Shadowmod', 7, 0, '2024-05-17 21:22:17', '2025-12-17 19:45:37', NULL, '7275331', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2641, 'Accelerated BCT', '2024-05-19 20:00:00', '2024-05-19 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', NULL, 0, '2024-05-18 01:37:58', '2025-12-17 19:45:37', NULL, '7276107', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2642, 'Regular Basic Training', '2024-05-19 21:00:00', '2024-05-20 00:00:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 11, 0, '2024-05-18 01:47:43', '2025-12-17 19:45:37', NULL, '7276108', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2643, 'NCO Meeting', '2024-05-18 17:00:00', '2024-05-18 18:00:00', 'Iceberg Teamspeak Server (NCO Club)', '#ecb200', '', 21, 0, '2024-05-18 12:26:55', '2025-12-17 19:45:37', NULL, '7276587', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2644, 'Combat Life Saver (CLS) Training', '2024-05-23 16:30:00', '2024-05-23 18:30:00', '', '#6cba50', 'Event Details: Join us for Combat Life Saver training! Learn how a CLS can be so much more than an ammo bearer for the medic!\nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training. This training is suitable for Alpha, Echo & RRC members.\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER THAN THE 530PM-730PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n\nServer: Training Server-Medical Area\nMap: Altis\nAdditional Mods: N/A', 61, 0, '2024-05-19 13:44:12', '2025-12-17 19:45:37', NULL, '7279039', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2645, 'RSLC', '2024-05-22 18:00:00', '2024-05-22 20:00:00', '', '#6cba50', 'Server: Private Operations\nDetails: RSLC is the introduction to RRC missions. Covers planning and executing RRC missions. \nAdditional Mods: None\n', 644, 0, '2024-05-19 19:40:41', '2025-12-17 19:45:37', NULL, '7279964', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2646, '[Cancelled] Basic Training', '2024-05-22 18:00:00', '2024-05-22 20:30:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set\nTraining may run longer than scheduled 9:30 PM CDT time.', 12, 1, '2024-05-20 13:56:40', '2025-12-17 19:45:37', NULL, '7281768', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2647, 'Community Roundtable', '2024-06-09 15:00:00', '2024-06-09 16:30:00', '', '#355bf8', '\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/31a767aa-f57a-45e5-8929-d25183bce25e/forums/283460051', 840, 0, '2024-05-20 19:20:12', '2025-12-17 19:45:37', NULL, '7282057', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2648, 'Flight Training', '2024-05-21 19:00:00', '2024-05-21 20:00:00', '', '#d89332', 'EVENT DETAILS:\n Practice doing some flight operations things, specifics tbd\n\nServer:\n Training Server\n\nMAP: \nTraining Server - Altis\n\nMODS / MODPACK REQUIRED: \nStandard Modset + approved whitelist.', 28, 0, '2024-05-20 23:53:23', '2025-12-17 19:45:37', NULL, '7282283', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2649, '68W', '2024-05-28 17:30:00', '2024-05-28 19:15:00', 'Training Server', '#6cba50', 'Its my time to train up again boys come out and learn how to do medical things on your friend who stepped on a mine! \nEvaluations will be happening depending on numbers of who shows, However this will be a fully in depth class on medical, So come out and learn. Or don\'t be weird, IG.\nEVENT DETAILS: 68W (Medic) Training and Qualification \nSERVER: Training Server\nMAP: Altis \nMODS / MODPACK REQUIRED: Battalion Mods\n', 493, 0, '2024-05-21 12:19:02', '2025-12-17 19:45:37', NULL, '7282950', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2650, 'CAS and JTAC Procedure Testing', '2024-05-28 18:00:00', '2024-05-28 20:00:00', 'Training Server', '#FFFFFF', 'We will be testing some new ideas brought forth by a member to determine viability in training and use in operations. \n\nAll are welcome, JTAC qualified and interested are encouraged to join. ', 501, 0, '2024-05-24 16:28:10', '2025-12-17 19:45:37', NULL, '7288199', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2651, 'Operation Beginning', '2024-05-24 18:00:00', '2024-05-24 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: This is going to be a simple raid and clear, with 1-3 towns to clear\nSERVER: Private Operations Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Shadow Mod\n\n\nThis is my first mission and zeus so this might be rough', 41, 0, '2024-05-24 16:35:55', '2025-12-17 19:45:37', NULL, '7288200', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2652, 'Sniper Training and Qualification', '2024-05-31 18:00:00', '2024-05-31 21:00:00', 'Training server', '#FFFFFF', 'Event Details: Sniper Qual! \nSo you can shoot a 5.56 rifle at a man size target 300 yards away and sometimes hit it.... how cute.\nWanna step up to the big guns? Shoot people from so far away they die before the sound of the shot even gets there?\nStrike fear in your enemies hearts as their friends die before they even know they are getting shot at, then slip away while they frantically scan the hills.\nSign up, This is your shot... to take one.\n\nServer: Training Server\nMap: Altis\nAdditional Mods: N/A', 483, 0, '2024-05-24 20:50:48', '2025-12-17 19:45:37', NULL, '7288339', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2653, 'NCO Meeting', '2024-05-25 17:00:00', '2024-05-25 18:00:00', 'Iceberg Teamspeak Server (NCO Club)', '#FFFFFF', '', 21, 0, '2024-05-25 17:10:11', '2025-12-17 19:45:37', NULL, '7289186', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2654, 'Basic Training', '2024-05-28 18:00:00', '2024-05-28 20:30:00', 'Training Server', '#FFFFFF', '', 468, 0, '2024-05-26 21:19:44', '2025-12-17 19:45:37', NULL, '7291219', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2655, 'Echo Fun Day', '2024-05-27 18:00:00', '2024-05-27 20:00:00', '', '#d89332', 'EVENT DETAILS:\n Pull up and lets play with our toys.\n\nSERVER: \nTraining Server\n\nMAP: \nTraining Server - Altis\n\nMODS / MODPACK REQUIRED:\n Standard Modlist + Approved Whitelist', 28, 0, '2024-05-26 21:46:39', '2025-12-17 19:45:37', NULL, '7291225', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2656, 'NCO Course FTX', '2024-05-30 18:00:00', '2024-05-30 21:00:00', 'Private Ops Server', '#FFFFFF', 'EVENT DETAILS: The NCO Course is comprised of three sections:\nBookwork (15 - 20 mins)\nShort exercises (15 minutes each, 3 - 4 exercises)\nField Training Exercise: Big Brother Bradley (1 - 2 hours)\nIn order to earn a green checkmark for completing the course, you will be required to hold at least one leadership position during any section of the course (FTL/SL) and have demonstrated understanding of the material laid out in the bookwork. Priority leadership positions will go to current NCOs.\nWe will be hosting the bookwork section at 6:30 PM CDT. If you have completed the section of the bookwork before, you do not have to attend that part.\nSERVER: Currently Private Ops, but may transition to Training Server\nMAP: Bystrica\nMODS / MODPACK REQUIRED: N/A', 11, 0, '2024-05-27 01:14:19', '2025-12-17 19:45:37', NULL, '7291301', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2657, 'Accelerated Basic Training', '2024-05-29 16:00:00', '2024-05-29 17:30:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 11, 0, '2024-05-29 01:17:52', '2025-12-17 19:45:37', NULL, '7294438', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2658, 'Echo Orientation', '2024-06-03 18:00:00', '2024-06-03 19:30:00', '', '#d89332', 'Event Details- Intro to Echo. Learn our radios, cool keybinds, and how to function as a crew member for air and ground assets. \nServer- 17th Training Server\nMap- Altis\nMods- 17th Shadowmod', 7, 0, '2024-06-01 03:11:40', '2025-12-17 19:45:37', NULL, '7298846', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2659, 'NCO Meeting', '2024-06-01 17:00:00', '2024-06-01 18:00:00', 'Iceberg Teamspeak Server', '#ecb200', '', 21, 0, '2024-06-01 18:41:22', '2025-12-17 19:45:37', NULL, '7299599', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2660, 'Basic Training', '2024-06-03 16:00:00', '2024-06-03 19:00:00', '17th Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 11, 0, '2024-06-01 21:33:38', '2025-12-17 19:45:37', NULL, '7301638', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2661, 'Medical Mania Sunday (testing)', '2024-06-16 13:30:00', '2024-06-16 16:30:00', 'TS- Training Server ', '#6cba50', 'EVENT DETAILS: 3 stage medical qualification\nSERVER: Training Server \nMAP: Altis-Medical Range \nMODS / MODPACK REQUIRED: Battalion Mods\n\nHi everyone, So in this training were gonna be dabbling in the fine art of medical. This training has no prerequisites need for medical of any kind, as we will be going over everything, from Mass-Cass to 68W, Every subject will be hit and we will conduct a test/ evaluation at the end for all class based subjects!\nIll be linking additional URL,s down below to documents if any wishes to study prior to, have a good day!\n\n\n\n\n\n\n\n\n', 493, 0, '2024-06-02 14:03:13', '2025-12-17 19:45:37', NULL, '7302674', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2662, 'Rotary CAS Qual', '2024-06-06 19:00:00', '2024-06-06 20:00:00', 'Training server main airfield', '#FFFFFF', '', 27, 0, '2024-06-02 18:58:51', '2025-12-17 19:45:37', NULL, '7302815', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2663, 'Basic Training', '2024-06-04 16:00:00', '2024-06-04 19:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 11, 0, '2024-06-02 23:38:04', '2025-12-17 19:45:37', NULL, '7303913', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2664, '[CANCELLED] NCO FTX', '2024-06-05 18:00:00', '2024-06-05 21:00:00', 'Private Ops Server', '#FFFFFF', 'Rescheduled for Thursday :)', 11, 1, '2024-06-04 14:25:55', '2025-12-17 19:45:37', NULL, '7306358', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2665, 'Mass Cas & Triage Training', '2024-06-07 16:00:00', '2024-06-07 18:00:00', '', '#6cba50', 'A training for both medical and non-medical personnel focused on learning the advanced strategies and procedures for managing a Mass Cas. Based on real world triage systems, this training will help you learn to secure and manage any Mass Cas quickly and efficiently.\nThink of this training as AIT for Mass Casualty Incidents\n\n', 61, 0, '2024-06-04 14:52:45', '2025-12-17 19:45:37', NULL, '7306370', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2666, 'NCO Course FTX', '2024-06-06 18:00:00', '2024-06-06 21:00:00', 'Private Ops Server', '#FFFFFF', 'EVENT DETAILS: The NCO Course is comprised of three sections:\nBookwork (15 - 20 mins)\nShort exercises (15 minutes each, 3 - 4 exercises)\nField Training Exercise: Osprey Down (1 - 2 hours)\nIn order to earn a green checkmark for completing the course, you will be required to hold at least one leadership position during any section of the course (FTL/SL) and have demonstrated understanding of the material laid out in the bookwork. Priority leadership positions will go to current NCOs.\nSERVER: Private Ops\nMAP: Bystrica\nMODS / MODPACK REQUIRED: N/A', 67, 0, '2024-06-05 05:10:43', '2025-12-17 19:45:37', NULL, '7307775', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2667, 'Big Brother Bradley', '2024-06-05 18:00:00', '2024-06-05 21:00:00', 'Private Ops Server', '#FFFFFF', 'EVENT DETAILS: Big Brother Bradley from NCO Course with minor tweaks :)\nSERVER: Private Ops\nMAP: Bystrica\nMODS / MODPACK REQUIRED: N/A', 67, 0, '2024-06-05 05:53:39', '2025-12-17 19:45:37', NULL, '7307776', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2668, 'Battle of Zargabad', '2024-06-07 18:00:00', '2024-06-07 21:00:00', '', '#30a68f', 'EVENT DETAILS: \nWith the further radicalization of the populous by UIA affiliated extremists, we have seen a staggering increase of anti western sentiments and terrorist activity. This came to a boiling point with the sudden violent insurrection in the town of Zargabad, leading to the capture of a western war reporter and US military officer. \nThis has gone on long enough. We have mobilized elements of the 17th Ranger Regiment to secure the town of Zargabad, rescue the hostages, and capture a UIA general who has made an appearance following the successful insurrection. \nOBJECTIVES:\n> Assault the town of Zargabad and surrounding territory and clear it of any insurgent or UIA forces. \n> Rescue the hostages, current whereabouts are unknown\n> Capture the UIA general\n\nASSETS:\n1 x A-10D Thunderbolt II\n1 x AH-6M Little Bird\n1 x MH-6M Little Bird\n1 x UH-60M Blackhawk\n1 x M1A2SEPv2 Abrams Tank\n1 x M2A3 (BUSK III) Bradley IFV\n1 x M1132 Stryker Minesweeper\nOPTIONAL: \n1 x MQ-9 Reaper UAV if traded with another non transport helo asset\n\nSERVER: Private Operations Server\nMAP: Zargabad\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 504, 0, '2024-06-05 17:04:41', '2025-12-17 19:45:37', NULL, '7308821', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2669, 'NCO Meeting', '2024-06-08 17:00:00', '2024-06-08 18:00:00', 'Iceberg Team Speak- Chowhall', '#ecb200', '', 493, 0, '2024-06-08 14:28:59', '2025-12-17 19:45:37', NULL, '7318057', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2670, 'Basic training', '2024-06-08 13:00:00', '2024-06-08 15:00:00', 'training server', '#ecb200', 'accelerated basic \nEVENT DETAILS: Accel basic\nSERVER: Training Server\nMAP: Accelerated basic\nMODS / MODPACK REQUIRED: Battalion Mods\n', 493, 0, '2024-06-08 17:56:16', '2025-12-17 19:45:37', NULL, '7318188', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2671, 'Advanced UAV School', '2024-06-11 18:00:00', '2024-06-11 20:45:00', 'Training Server', '#a250e8', '', 468, 0, '2024-06-08 19:23:02', '2025-12-17 19:45:37', NULL, '7318256', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2672, 'Media Team Meet up Immediately after Round table', '2024-06-09 17:00:00', '2024-06-09 18:30:00', 'Teamspeak Coding Shallot', '#008ae1', 'Media Team Assemble!. We will be going over hard hitting stuff and getting general notes from you guys regarding the last few operations. We will also be discussing a few things regarding the upcoming roundtable and the Media team direction. ', 761, 1, '2024-06-09 11:16:40', '2025-12-17 19:45:37', NULL, '7318459', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2673, 'Command Meeting', '2024-06-09 16:30:00', '2024-06-09 18:00:00', 'TS', '#df5353', '', 2221, 0, '2024-06-09 20:28:38', '2025-12-17 19:45:37', NULL, '7319473', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2674, 'Command meeting', '2024-07-07 15:00:00', '2024-07-07 17:00:00', 'teamspeak', '#df5353', 'EVENT DETAILS: Monthly Meeting time\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 2221, 0, '2024-06-09 20:55:19', '2025-12-17 19:45:37', NULL, '7319480', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2675, 'Round table followed by Command meeting', '2024-08-04 15:00:00', '2024-08-04 17:00:00', 'teamspeak', '#df5353', 'EVENT DETAILS: Monthly Meeting time\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 2221, 0, '2024-06-09 20:55:33', '2025-12-17 19:45:37', NULL, '7319481', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2676, 'Command meeting', '2024-09-01 17:00:00', '2024-09-01 19:00:00', 'teamspeak', '#df5353', 'EVENT DETAILS: Monthly Meeting time\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 2221, 0, '2024-06-09 20:55:46', '2025-12-17 19:45:37', NULL, '7319482', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2677, 'Round table followed by Command meeting', '2024-10-06 15:00:00', '2024-10-06 17:00:00', 'teamspeak', '#df5353', 'EVENT DETAILS: Monthly Meeting time\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 2221, 0, '2024-06-09 20:56:02', '2025-12-17 19:45:37', NULL, '7319483', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2678, 'Battalion FTX', '2024-06-15 18:00:00', '2024-06-15 21:00:00', '', '#df5353', 'EVENT DETAILS\n: Battalion Field Training Exercise\n\nSERVER\n: Testing Server\n\nMAP\n: Columbia (Included in Test pack)\n\nMODS / MODPACK REQUIRED: \n17th BN Shadow Mod [MOD TESTING] \n- CHECK \n for link!!!!', 2221, 0, '2024-06-09 21:26:21', '2025-12-17 19:45:37', NULL, '7319489', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2679, 'RASP', '2024-06-22 18:00:00', '2024-06-22 21:00:00', '', '#df5353', '', 2221, 0, '2024-06-09 21:26:36', '2025-12-17 19:45:37', NULL, '7319490', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2680, 'SERVER / MODPACK UPDATE', '2024-06-16 23:00:00', '2024-06-17 23:00:00', '', '#df5353', 'SERVER MODS ARE TO BE UPDATED / NO EVENTS', 38, 0, '2024-06-10 01:38:27', '2025-12-17 19:45:37', NULL, '7320350', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2681, 'Media Team Huddle', '2024-06-10 17:00:00', '2024-06-10 18:00:00', 'Team Speak Coding Shallot', '#FFFFFF', 'I am going to go over what we are doing as a team moving forward including future projects. What I am looking for from you, the videographers, and to get your ideas as to how you might like to participate outside of just clicking the record button. All are welcome. I guarantee this will not go over the hour. Anyone outside of the core team please feel free to drop in and participate. ', 761, 0, '2024-06-10 01:50:01', '2025-12-17 19:45:37', NULL, '7320409', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2682, 'Accelerated Basic Training', '2024-06-10 18:00:00', '2024-06-10 19:30:00', 'Training server ', '#ecb200', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 493, 0, '2024-06-10 12:37:04', '2025-12-17 19:45:37', NULL, '7321862', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2683, 'Ranger School 1 and 2', '2024-06-16 16:30:00', '2024-06-16 19:00:00', 'training server', '#ecb200', 'EVENT DETAILS: Ranger School\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 2221, 0, '2024-06-10 17:22:06', '2025-12-17 19:45:37', NULL, '7321978', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2684, 'Admin Onboarding/Explanation of Admin Duties', '2024-06-11 15:00:00', '2024-06-11 16:00:00', '', '#FFFFFF', 'EVENT DETAILS: Admin Training/Onboarding for Goblin open to anybody who wants to see what it is admin does/how we do it.\nSERVER: Discord Training Channel\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 951, 0, '2024-06-10 19:01:33', '2025-12-17 19:45:37', NULL, '7322001', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2685, 'Echo Orientation', '2024-06-12 18:00:00', '2024-06-12 19:30:00', '', '#d89332', 'Event Details- Learn to be a competent member of Echo, in air and ground vehicles. \nServer- 17th Training Server \nMap- Altis\nMods- 17th Shadow Mod', 7, 0, '2024-06-10 23:10:31', '2025-12-17 19:45:37', NULL, '7322675', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2686, 'Echo Company Training', '2024-06-21 18:00:00', '2024-06-21 20:00:00', 'Training Server', '#FFFFFF', 'Event Details- Echo Company will come together to work on various skills for the upcoming campaign (Flight & Ground) Alpha and RRC are welcome to attend as well. We will figure something out for you or you can roll in with us.\n\nServer- 17th Training Server\n\nMap- Altis\n\nMods- 17th Shadow Mod', 53, 0, '2024-06-11 10:06:22', '2025-12-17 19:45:37', NULL, '7323802', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2687, 'Medical Meeting', '2024-06-12 20:00:00', '2024-06-12 21:00:00', 'teamspeak', '#df5353', 'EVENT DETAILS: Quick chat about the medical break down\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 2221, 0, '2024-06-11 19:35:23', '2025-12-17 19:45:37', NULL, '7324019', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2688, 'ENDOP: THE FALL OF TYRONE #1', '2024-06-29 18:00:00', '2024-06-29 21:00:00', '', '#df5353', 'EVENT DETAILS: Kick doors, take names\nSERVER: Private Operations\nMAP: Columbia\nMODS / MODPACK REQUIRED: 17th shadow mod', 2221, 0, '2024-06-12 03:21:11', '2025-12-17 19:45:37', NULL, '7324073', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2689, 'ENDOP: THE FALL OF TYRONE #2', '2024-07-06 18:00:00', '2024-07-06 21:00:00', '', '#df5353', 'EVENT DETAILS: Kick doors, take names\nSERVER: Private Operations\nMAP: Columbia\nMODS / MODPACK REQUIRED: 17th shadow mod', 2221, 0, '2024-06-12 03:26:48', '2025-12-17 19:45:37', NULL, '7324074', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2690, 'Ken\'s Campaign #3', '2024-07-13 18:00:00', '2024-07-13 21:00:00', '', '#df5353', 'EVENT DETAILS: Kick doors, take names\nSERVER: Private Operations\nMAP: Columbia\nMODS / MODPACK REQUIRED: 17th shadow mod', 2221, 0, '2024-06-12 03:27:08', '2025-12-17 19:45:37', NULL, '7324075', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2691, 'Ken\'s Campaign #4', '2024-07-20 18:00:00', '2024-07-20 21:00:00', '', '#df5353', 'EVENT DETAILS: Kick doors, take names\nSERVER: Private Operations\nMAP: Columbia\nMODS / MODPACK REQUIRED: 17th shadow mod', 2221, 0, '2024-06-12 03:27:24', '2025-12-17 19:45:37', NULL, '7324076', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2692, 'RASP', '2024-07-27 18:00:00', '2024-07-27 21:00:00', '', '#df5353', 'EVENT DETAILS: Kick doors, take names\nSERVER: Private Operations\nMAP: Columbia\nMODS / MODPACK REQUIRED: 17th shadow mod', 2221, 0, '2024-06-12 03:27:41', '2025-12-17 19:45:37', NULL, '7324077', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2693, 'Ken\'s Campaign #5', '2024-08-03 18:00:00', '2024-08-03 21:00:00', '', '#df5353', 'EVENT DETAILS: Kick doors, take names\nSERVER: Private Operations\nMAP: Columbia\nMODS / MODPACK REQUIRED: 17th shadow mod', 2221, 0, '2024-06-12 03:27:57', '2025-12-17 19:45:37', NULL, '7324078', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2694, 'Ken\'s Campaign #6', '2024-08-10 18:00:00', '2024-08-10 21:00:00', '', '#df5353', 'EVENT DETAILS: Kick doors, take names\nSERVER: Private Operations\nMAP: Columbia\nMODS / MODPACK REQUIRED: 17th shadow mod', 2221, 0, '2024-06-12 03:28:17', '2025-12-17 19:45:37', NULL, '7324079', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2695, 'Ken\'s Campaign #7', '2024-08-17 18:00:00', '2024-08-17 21:00:00', '', '#df5353', 'EVENT DETAILS: Kick doors, take names\nSERVER: Private Operations\nMAP: Columbia\nMODS / MODPACK REQUIRED: 17th shadow mod', 2221, 0, '2024-06-12 03:28:36', '2025-12-17 19:45:37', NULL, '7324080', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2696, 'Ken\'s Campaign #8', '2024-08-24 18:00:00', '2024-08-24 21:00:00', '', '#df5353', 'EVENT DETAILS: Kick doors, take names\nSERVER: Private Operations\nMAP: Columbia\nMODS / MODPACK REQUIRED: 17th shadow mod', 2221, 0, '2024-06-12 03:28:52', '2025-12-17 19:45:37', NULL, '7324081', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2697, 'Battalion FTX', '2024-08-31 18:00:00', '2024-08-31 21:00:00', '', '#df5353', 'EVENT DETAILS: Battalion FTX with three exercises, with an overall focus on rotary wing CAS, MOUT, and CQB.\n\nExercise #1: Bomb Defusal - Dawn\nExercise #2: VIP Rescue - Afternoon\nExercise #3: Assault Command Post - Dusk\nSERVER: Mod Validation\nMAP: Anizay\nMODS / MODPACK REQUIRED: \n\n17th TESTING Shadow Mod\n - \n \nAnizay Map - \n\nSteam App Link: steam://url/CommunityFilePage/1537973181\n', 2221, 0, '2024-06-12 03:29:11', '2025-12-17 19:45:37', NULL, '7324082', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2698, 'RASP', '2024-09-07 18:00:00', '2024-09-07 21:00:00', '', '#df5353', 'EVENT DETAILS: Kick doors, take names\nSERVER: Private Operations\nMAP: Columbia\nMODS / MODPACK REQUIRED: 17th TESTING shadow mod', 2221, 0, '2024-06-12 03:29:26', '2025-12-17 19:45:37', NULL, '7324083', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2699, 'Nick Wednesday Op', '2024-06-12 18:00:00', '2024-06-12 21:00:00', '17th Operations Server', '#ecb200', 'Enemy Forces have begun to setup FOB\'s in select locations across the island of Malden. Assault and destroy all enemy forces and collect intel on the whereabouts of the enemy General.\n\nFind and capture enemy General Savic.\n\nAssets:\n2x MH-6M Little-birds\n\nMap: Malden\nRequired Mods: N/A', 797, 0, '2024-06-12 14:48:15', '2025-12-17 19:45:37', NULL, '7324385', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2700, 'Cat and Mouse', '2024-06-14 18:00:00', '2024-06-14 21:00:00', 'Operations Server', '#008ae1', 'Afternoon, Rangers.\nMy apologies for the late notice, the situation has devolved drastically and required direct action to resolve.\nTo summarize, a nation previously funded by NATO has since been taken over by a faction of radical terrorists. Calling themselves the New Dawn, they are well funded and extremely dangerous, utilizing modern European equipment. \nAfter we discovered the location of their main biological weapon facility, they are attempting to smuggle their supply off to unknown buyers. We have taken out their nearby military airfield with cruise missile strikes, but two civilian airfields remain. \nOur ROE does not permit us to strike these airfields directly, so we must capture the convoys while they are on route. The convoys are expected to be heavily protected with armored assets. \n\n\nOBJECTIVES\n:\n\nNeutralize as many convoys as possible\nCapture and contain any biological weapon containers\nDiminish enemy manufacturing capability\n\n\n\nASSETS\n:\n\nRangers have a black budget to accomplish this mission.\n\n\nMore details to follow on operation day.', 504, 0, '2024-06-12 15:02:04', '2025-12-17 19:45:37', NULL, '7324388', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2701, 'Preventive Maintenance Pt1', '2024-06-28 18:00:00', '2024-06-28 21:00:00', '17th Operations Server', '#008ae1', 'Our carrier fleet has arrived in Sahranian waters, as such we are authorizing deployment of the 17th Rangers from specialty destroyer USS MicDonals. Your mission will be composed of 3 parts.\nThe Sahranian Royal Army is a psuedo-western force, copying tactics, uniforms and equipment from predominantly the US Military. They posses Gulf War-era equipment purchased through strawman deals with US allies including Patton tanks, XM1108 APCs, and M270 MLRS\'.\nAdditionally, their primary fighting force seem to possess FAST helmets, MBAV plate carriers and multicam uniforms. Intel also suspects they possess M16/M4s, M249s, MG3s, Stingers, NLAWs and Javelins as primary infantry weapons.\nTheir reserve force possesses more typical Russian equipment, AKs, RPGs and SVDs. Their camouflage looks like a digital version of Alpenflage.\nBoth forces are poorly trained, with combat skills described as akin to \'fanatic airsofters\'.\n\nOBJECTIVES\n\nASSETS\n2 x UH-60M EWS Blackhawks\n2 x M109 Paladin SPGs\n1 x M142 HIMARS\nVLS Missile Support from USS MicDonals\nMore details to follow', 504, 0, '2024-06-12 15:30:01', '2025-12-17 19:45:37', NULL, '7324391', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2702, 'Basic Training', '2024-06-13 17:00:00', '2024-06-13 20:00:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 11, 0, '2024-06-12 22:13:42', '2025-12-17 19:45:37', NULL, '7324867', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2703, '[Cancelled ] Co-Pilot Training and Practice', '2024-06-14 18:00:00', '2024-06-14 19:00:00', 'Training Server - Northern Airfield', '#a250e8', 'Were gonna do the Co-Pilot thing, talking about communications, weapon systems; all the stuff that ensures that the pilot has all the information and capability needed to get the job done. ', 501, 1, '2024-06-12 23:47:46', '2025-12-17 19:45:37', NULL, '7324873', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2704, '[moved to june 15] Ranger School 3 & 4', '2024-06-23 14:00:00', '2024-06-23 19:30:00', '', '#ecb200', 'EVENT DETAILS: Ranger Schools\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 2221, 0, '2024-06-13 00:27:29', '2025-12-17 19:45:37', NULL, '7324874', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2705, 'Stichin and Bitchin', '2024-06-30 18:00:00', '2024-06-30 19:30:00', 'TeamSpeak-chowhall', '#ecb200', 'Hi everyone, this meeting about Medical, this is everybody, regardless of Company or placement, any rank is able to attend this meeting, this meeting with primarily focus on how to discuss new ideas, problems, and concerns for anyone in the unit. Come on out and give medical you’r feedback!!', 493, 0, '2024-06-13 13:16:51', '2025-12-17 19:45:37', NULL, '7324944', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2706, 'Operation Promethean Benefactor P3', '2024-06-19 18:00:00', '2024-06-19 21:00:00', '17th Private Operations', '#FFFFFF', 'EVENT DETAILS\n: We\'re hunting General Christodoulopoulos, dubbed "Icarus". Capture or kill Icarus and end the violence on Altis.\nOur objective\n:\n\nAssets:\n2x MH-6M Little Birds\n2x UH-60M Black Hawks\n1x AH-64D Apache\n4x MZRZ \nSERVER: Private Operations Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 12, 0, '2024-06-13 13:36:30', '2025-12-17 19:45:37', NULL, '7324947', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2707, 'RTO Training (POSTPONED)', '2024-06-18 17:00:00', '2024-06-18 19:30:00', '', '#ecb200', 'EVENT DETAILS: \nTHIS COURSE HAS BEEN MOVED TO SUNDAY\nSorry for the late notice, had move due to personal reasons.\nTraining and Qualification to become a RTO in the 17th. I highly recommend attending even if you are already qualified.\nIf things go as intended we will have some Echo pilots assisting for a more fun and realistic experience.\nSERVER: 17th Training Server\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 493, 0, '2024-06-13 14:44:27', '2025-12-17 19:45:37', NULL, '7324952', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2708, 'Ranger School 3 & 4', '2024-06-15 11:00:00', '2024-06-15 16:00:00', '', '#ecb200', 'Proper description to follow when at home.', 2221, 0, '2024-06-13 20:09:05', '2025-12-17 19:45:37', NULL, '7325048', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2709, 'Echo Company Meeting', '2024-06-23 17:00:00', '2024-06-23 20:00:00', 'Teamspeak', '#FFFFFF', 'Second of two Echo Company Meetings. Come with questions, concerns or ideas. I will be here to listen', 53, 0, '2024-06-14 00:34:45', '2025-12-17 19:45:37', NULL, '7325107', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2710, 'Echo Company Meeting', '2024-06-20 17:00:00', '2024-06-20 19:00:00', 'Teamspeak', '#FFFFFF', 'First of two Echo Company Meetings. Come with questions, concerns or ideas. I will be here to listen', 53, 0, '2024-06-14 00:35:28', '2025-12-17 19:45:37', NULL, '7325108', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2711, 'Operation Night Stalker', '2024-07-19 18:00:00', '2024-07-19 20:00:00', '', '#FFFFFF', 'EVENT DETAILS: Dropped behind enemy lines with minimal support, you are tasked with disruption opfor operations as follows.\n1. Destroy ammo depo at the train station\n2. Disrupt heavy armor factory and storage\n3. Eliminate any research on rumored Super Soldier project\nSERVER: Private Operations Server\nMAP: Sumava\nMODS / MODPACK REQUIRED: 17th Shadow Mod, Sumava map (check whitelisted maps on Guilded)', 57, 0, '2024-06-14 18:44:07', '2025-12-17 19:45:37', NULL, '7326524', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2712, 'Operation Nightstalker pt 2', '2024-08-02 18:00:00', '2024-08-02 20:00:00', '', '#FFFFFF', 'EVENT DETAILS: Following the successful raid on vital sources of enemy ammo and armor, the rangers have laid low as the renewed US offences on the front lines have pulled the enemy\'s attention, giving us another chance to strike a blow against them.\n\nWe will be targeting three research centers and destroying all data. The research projects include a railgun tank, a new type of radio encryption, and what is known only by the codeword; جاویدان or Immortal in English\n\n\nSERVER: Private Operations Server\nMAP: Sumava (load the map)\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 57, 0, '2024-06-14 18:44:23', '2025-12-17 19:45:37', NULL, '7326525', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2713, 'Co-Pilot Training', '2024-06-16 18:30:00', '2024-06-16 20:00:00', 'Training Server - Northern Airfield', '#a250e8', 'Were gonna do the Co-Pilot thing, talking about communications, weapon systems; all the stuff that ensures that the pilot has all the information and capability needed to get the job done.', 501, 0, '2024-06-14 22:49:55', '2025-12-17 19:45:37', NULL, '7326593', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2714, 'Accelerated Basic Training', '2024-06-15 16:00:00', '2024-06-15 17:00:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 11, 0, '2024-06-15 01:47:22', '2025-12-17 19:45:37', NULL, '7326981', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2715, 'Basic Training 6/15/24', '2024-06-15 11:00:00', '2024-06-15 14:00:00', 'training server', '#ecb200', 'Come and do your basic and learn to kill people in style', 493, 0, '2024-06-15 15:23:59', '2025-12-17 19:45:37', NULL, '7327466', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2716, 'Cadre Meeting', '2024-06-22 17:00:00', '2024-06-22 18:00:00', '', '#ecb200', 'EVENT DETAILS: \nSERVER: Teamspeak\nMAP: \nMODS / MODPACK REQUIRED: \nA meeting to review rasp prepare to grade candidates.', 2221, 0, '2024-06-16 17:39:17', '2025-12-17 19:45:37', NULL, '7329096', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2717, 'Flight Training', '2024-06-27 18:00:00', '2024-06-27 19:30:00', '', '#ecb200', 'EVENT DETAILS: Echo flying practice. Will practice maintaining high speed, maintaining low altitude safely, bleeding/flaring without gaining much altitude, quick landings, and more based on Warno/Opord.\nSERVER: Training server\nMAP: Colombia\nADDITIONAL MODS REQUIRED: N/A', 15, 0, '2024-06-17 01:30:30', '2025-12-17 19:45:37', NULL, '7329149', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2718, 'cadre meeting', '2024-06-19 20:00:00', '2024-06-19 21:00:00', '', '#ecb200', 'Quick chat about expectations for Cadre during rasp. Nothing major.', 2221, 0, '2024-06-17 16:55:32', '2025-12-17 19:45:37', NULL, '7330458', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2719, 'RTO Course', '2024-06-23 13:30:00', '2024-06-23 16:00:00', '', '#ecb200', 'EVENT DETAILS: Training and Qualification to become a RTO in the 17th. I highly recommend attending even if you are already qualified.\nIf things go as intended we will have some Echo pilots assisting for a more fun and realistic experience.\nSERVER: 17th Training Server\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 21, 0, '2024-06-18 18:09:10', '2025-12-17 19:45:37', NULL, '7331305', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2720, 'Demo Training / Ribbon', '2024-06-18 18:00:00', '2024-06-18 20:30:00', '', '#ecb200', 'EVENT DETAILS: Demo training\nSERVER: 17th Training Server\nMAP: Training map\nMODS / MODPACK REQUIRED: 17th Modpack \n', 38, 0, '2024-06-18 20:49:03', '2025-12-17 19:45:37', NULL, '7331436', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2721, 'Jump WIngs Qual', '2024-06-24 18:00:00', '2024-06-24 19:30:00', '', '#d89332', 'EVENT DETAILS: Jump Wings Qual\nSERVER: 17th Training Server\nMAP: Training map\nMODS / MODPACK REQUIRED: 17th Modpack \nBattalion Mods\n\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/312610', 43, 0, '2024-06-18 22:26:43', '2025-12-17 19:45:37', NULL, '7331456', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2722, 'Battalion FTX with kenneth', '2024-07-12 18:00:00', '2024-07-12 20:30:00', '', '#ecb200', 'EVENT DETAILS: A BN LEVEL FTX where we will jump and raid\nwe will do 3 runs\nWe will Also be doing a walk thru of week 3 raid compound\nServer: Training Server using the week 3 sand table mission file\nMAP: Columbia\nMODPACK: 17th Shadow Mod\nfor real tho come get some reps in', 43, 0, '2024-06-18 22:33:30', '2025-12-17 19:45:37', NULL, '7331457', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2723, 'Day In the Life of A Ranger', '2024-06-21 18:00:00', '2024-06-21 21:00:00', '17th Operations Server', '#FFFFFF', 'Come and find out what it\'s like to be on deployment as a 17th Ranger.\n\nJust a regular vehicle patrol in the middle east with no twists or anything of the sort.\nAssets:\n2x M1025A2 (M2)\n2x M1025A2 (Mk19)\n3x MH-6M\n\nWhitelisted Maps:\nSa\' Hatra\n\nWhitelisted Mods:\nNone', 797, 0, '2024-06-19 16:25:25', '2025-12-17 19:45:37', NULL, '7332389', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2724, 'Operation Malden Seethe', '2024-06-26 18:00:00', '2024-06-26 21:00:00', '17th Ranger Battalion Operations Server', '#FFFFFF', 'EVENT DETAILS\n: A military coup has occurred on the island nation of Malden, nominally a NATO ally. The coup, led by Colonel Haku Pore, successfully took over a military base and have hunkered down. Among the captured men and materiel are the President, the French Ambassador, the Speaker of the National Assembly, and a pair of MIM-145 Defenders. Attempt to retake the island by air assault have been disastrous, and the status of the pilots are unknown. Since afternoon, the military base and its surrounding island has also been put under radio jamming.\n\nOPFOR:\n3rd Armored Regiment of the Malden Defense Force\n1st Special Forces Battalion, MDF\n\nPrimary Objectives:\nSearch OBJ Florida, Oklahoma, Kentucky, and Michigan for the hostages.\nDestroy the MIM-145 Defenders.\nInvestigate the causes of the coup.\n\nSecondary Objectives:\nFind and destroy the radio jammer. \nFind the missing pilots.\n\nAssets:\n4x RHIB\n4x CH-47F Chinook\n4x F/A-181 Black Wasp II\n2x AH-64D Apache\nAny captured vehicles\n\n\nSERVER\n: Private Operations Server\n\n\nMAP\n: Malden\n\n\nMODS / MODPACK REQUIRED\n: 17th Shadow Mod\n\n\nADDITIONAL MODS\n: N/A', 11, 0, '2024-06-19 17:48:13', '2025-12-17 19:45:37', NULL, '7332562', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2725, 'Basic Training', '2024-06-20 16:00:00', '2024-06-20 18:30:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 11, 0, '2024-06-19 17:52:43', '2025-12-17 19:45:37', NULL, '7332564', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2726, 'RRC meeting', '2024-06-20 20:00:00', '2024-06-20 21:00:00', '', '#ecb200', 'TeamSpeak.', 2221, 0, '2024-06-19 19:16:54', '2025-12-17 19:45:37', NULL, '7332853', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2727, 'Accelerated Basic', '2024-06-20 18:30:00', '2024-06-20 20:00:00', '17th Ranger Battalion Training Server', '#FFFFFF', '', 11, 0, '2024-06-19 20:58:14', '2025-12-17 19:45:37', NULL, '7332865', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2728, 'Ranger School Palooza', '2024-06-22 09:00:00', '2024-06-22 16:30:00', '', '#ecb200', 'Training server.\nRun through of any or all ranger schools based off requests. First come first server.', 2221, 0, '2024-06-20 18:51:20', '2025-12-17 19:45:37', NULL, '7334124', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2729, 'Heavy Weapons School', '2024-06-23 17:30:00', '2024-06-23 19:00:00', 'Training Server', '#a250e8', '', 468, 0, '2024-06-21 21:28:06', '2025-12-17 19:45:37', NULL, '7335092', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2730, 'Basic Training', '2024-06-22 13:30:00', '2024-06-22 16:30:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 12, 0, '2024-06-22 06:04:41', '2025-12-17 19:45:37', NULL, '7335193', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2731, 'Combat Life Saver (CLS) Training', '2024-06-25 19:30:00', '2024-06-25 21:00:00', '', '#FFFFFF', 'Come by to learn or relearn what the purpose and function of a CLS is. Understand your role as a fireteam member and rifleman and what your expected to do when assisting a medic. Both Alpha & Echo members are welcome.\nTraining may run shorter or longer due to attendance for the qualification portion of the training at the end.\n\n\n\nServer: Training Server-Medical Area\nMap: Altis\nAdditional Mods: N/A', 13, 0, '2024-06-22 17:13:14', '2025-12-17 19:45:37', NULL, '7335303', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2732, '60MM Training (Cancelled)', '2024-06-25 18:00:00', '2024-06-25 19:00:00', 'Training Server', '#FFFFFF', 'We are doing to be practicing with the 60mm for Saturday. Echo please show if possible to ensure we are hitting warheads on foreheads with each shot\n\nThis event is Cancelled due to a change of plans.', 53, 1, '2024-06-24 01:03:37', '2025-12-17 19:45:37', NULL, '7337207', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2733, 'Sniper Course', '2024-06-28 16:00:00', '2024-06-28 17:45:00', 'Training Server', '#a250e8', 'Limited slots due to time restrictions.\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f3511d79-10fb-4784-b21c-ffab119b293f/docs/313452', 46, 0, '2024-06-26 00:30:26', '2025-12-17 19:45:37', NULL, '7338853', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2734, 'IDF Course/Qual', '2024-07-05 18:00:00', '2024-07-05 20:30:00', '', '#ecb200', 'Event Details- Learn how to run a mortar team and calculate fire missions. A Pen and Paper are highly recommended.\nServer- 17th training server \nMap-Columbia \nMods- 17th shadowmod', 7, 0, '2024-06-27 17:00:26', '2025-12-17 19:45:37', NULL, '7339440', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2735, 'Accelerated Basic Training', '2024-06-28 13:00:00', '2024-06-28 15:00:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Accelerated Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 11, 0, '2024-06-28 13:59:50', '2025-12-17 19:45:37', NULL, '7340369', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2736, 'NCO Meeting/Prebrief', '2024-06-29 17:30:00', '2024-06-29 17:45:00', '', '#FFFFFF', '', NULL, 0, '2024-06-29 15:27:25', '2025-12-17 19:45:37', NULL, '7342038', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2737, 'Preventative Maintenance Pt2', '2024-07-02 18:00:00', '2024-07-02 21:00:00', '17th Operations Server', '#355bf8', 'TBD', 504, 0, '2024-06-30 14:30:29', '2025-12-17 19:45:37', NULL, '7344070', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2738, 'Radio Telephone Operator Ribbon', '2024-07-05 18:00:00', '2024-07-05 20:00:00', 'Training Server', '#a250e8', 'The RTO position is the liason between a platoon, its command, and its support. Casually running 3 or more radios with traffic on all of them is challenging, and fun! We gon\' learn some procedures, and some tips and tricks. \n\nBring something to write on! ', 501, 0, '2024-06-30 15:03:10', '2025-12-17 19:45:37', NULL, '7344085', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2739, 'Basic Training', '2024-07-01 15:00:00', '2024-07-01 17:30:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 11, 0, '2024-06-30 22:25:47', '2025-12-17 19:45:37', NULL, '7344575', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2740, 'Ranger School 1', '2024-07-01 18:00:00', '2024-07-01 21:00:00', '17th Ranger Battalion Training Server', '#FFFFFF', '', 11, 0, '2024-06-30 22:26:52', '2025-12-17 19:45:37', NULL, '7344576', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2741, '[Rescheduled to TBD] Anti Armor School', '2024-07-14 17:00:00', '2024-07-14 20:00:00', 'Training Server', '#a250e8', '', 468, 0, '2024-06-30 23:33:31', '2025-12-17 19:45:37', NULL, '7344592', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2742, 'The Tanoan Emergency', '2024-07-03 18:00:00', '2024-07-03 21:00:00', '17th Ranger Battalion Ops Server', '#FFFFFF', '', 11, 0, '2024-07-01 14:48:19', '2025-12-17 19:45:37', NULL, '7345167', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2743, 'Ranger Training', '2024-07-05 19:00:00', '2024-07-05 21:30:00', '', '#FFFFFF', 'Join us as we go over movement through jungle terrain, compound raiding fundamentals, and best practices for both! Bookwork this week will be light with an emphasis on focusing reps, breaking down, and repeating.', 1019, 0, '2024-07-01 22:17:38', '2025-12-17 19:45:37', NULL, '7345688', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2744, 'Accelerated Basic Training', '2024-07-03 16:00:00', '2024-07-03 18:00:00', '17th Ranger Battalion Training Range', '#FFFFFF', '', 11, 0, '2024-07-02 14:34:14', '2025-12-17 19:45:37', NULL, '7347764', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2745, '[CANCELED] Preventative Maintenance Pt 4', '2024-07-26 18:00:00', '2024-07-26 21:00:00', '17th Operations Server', '#355bf8', 'TBD', 504, 1, '2024-07-03 02:32:03', '2025-12-17 19:45:37', NULL, '7348712', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2746, 'Preventative Maintenance Pt 3', '2024-07-11 18:00:00', '2024-07-11 21:00:00', '17th Operations Server', '#355bf8', 'BACKGROUND\n\nWith the enemies leadership still reeling from our decapitating strike earlier, and with the loss of their anti-ship ICBM missile batteries, we have moved in for the first mainland assault of the Sahranian mainland. \nWe have a V-44 Blackfish on FOB Bellicose that we had flown in.\nAdditionally, the USS Freedom has moved in to provide air support, and an IDF position has been established on FOB Bellicose. \nMISSION PLAN\n\nWe will perform a HALO jump from the Blackfish onto the Sahranian mainland, striking their major military installations directly. While we do so, aircraft from the USS Freedom should be supporting the Rangers on the ground from QRF and other targets of opportunity.\nAny further planning up to ground command.\nASSETS\n\n1 x Black Wasp\n1 x UCAV Sentinel\n1 x V-44 Blackfish/C-130\n2 x M109 Paladins\n1 x HIMARS\nAdditional rotary winged logi birds as requested.', 504, 0, '2024-07-03 02:32:59', '2025-12-17 19:45:37', NULL, '7348713', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2747, 'STAND ON BUSINESS: The Streets of Kavala', '2024-07-17 18:00:00', '2024-07-17 20:30:00', '', '#ecb200', 'EVENT DETAILS: We gonna crash out in kavala...\nSERVER: Private Operations\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th shadow mod\n\nENEMY FACTION: AAF CSAT\n\nASSETS: BRADLEYS AND STRYKERS\n\nPEEP THE AO:\n', 43, 0, '2024-07-05 20:05:02', '2025-12-17 19:45:37', NULL, '7353587', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2748, 'Accelerated Basic Training', '2024-07-06 10:00:00', '2024-07-06 12:00:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 11, 0, '2024-07-05 22:35:14', '2025-12-17 19:45:37', NULL, '7353759', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2749, 'Combat Life Saver (CLS) Challenge', '2024-07-09 18:00:00', '2024-07-09 19:00:00', '17th Training Server - Medical Training Area', '#FFFFFF', 'Challenge requested for the CLS ribbon. There will be no explanation of the material in the CLS training document except for details regarding the qualification.\n\n\n\nServer: Training Server-Medical Area\n17th shadow mods', 12, 0, '2024-07-07 18:42:00', '2025-12-17 19:45:37', NULL, '7355496', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2750, 'Echo Orientation', '2024-07-15 18:00:00', '2024-07-15 20:00:00', '17th Training Server', '#a250e8', 'Event Details- Come on over and learn Echo Companies most basic functions and roles. This training is one of the first steps in the Mechanized badge.', 53, 0, '2024-07-07 20:53:38', '2025-12-17 19:45:37', NULL, '7355526', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2751, '[RESCHEDULED] How to Zeus 101: Basics', '2024-07-08 17:00:00', '2024-07-08 20:00:00', 'High Bit Rate Gaming Discord', '#ecb200', 'IM IN BED', 67, 0, '2024-07-07 21:24:40', '2025-12-17 19:45:38', NULL, '7355530', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2752, '[RESCHEDULED] Hotwire Zeus FTX', '2024-07-08 20:00:00', '2024-07-08 21:30:00', 'TRAINING SERVER', '#ecb200', 'PLAYING THE THING WE MAKE', 67, 0, '2024-07-07 21:27:39', '2025-12-17 19:45:38', NULL, '7355531', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2753, '[Rescheduled] Range Day', '2024-07-16 18:00:00', '2024-07-16 19:30:00', 'Training Server', '#ecb200', 'We gonna practice with our rifles, ARs and other things of the like. Will update per the standard soon :))', 2222, 0, '2024-07-07 22:29:46', '2025-12-17 19:45:38', NULL, '7355538', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2754, 'Demolitions Training', '2024-07-15 18:00:00', '2024-07-15 19:00:00', 'Training Server/Training Base', '#d89332', 'EVENT DETAILS: Demo Training\nSERVER: Training server\nMAP: Training Map/Colombia\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set\n\n\n', 951, 0, '2024-07-08 16:49:21', '2025-12-17 19:45:38', NULL, '7356752', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2755, 'T\'s Flex Op', '2024-07-10 18:00:00', '2024-07-10 21:00:00', '', '#FFFFFF', 'Going to Chernarus for a little Chaos. We will be doing a couple little hits to get some practice. We will have small debrief between the hits to go over how it went. \nMission Plan:\nFirst up we will do a air assault behind the lines to hit a enemy position and cause some chaos, blow up some equipment, and leave before the enemy has a chance to respond.\nNext up, we will head into town to do a HVT snatch. The main goal will be to get the HVT (alive) and any SSE found, out of the town.\nServer: Ops Server \nMap: Chernarus\nModpack: 17th Shadow Mod\n\n', 1067, 0, '2024-07-09 13:57:09', '2025-12-17 19:45:38', NULL, '7357808', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2756, 'Rotary Cas Training', '2024-07-11 18:00:00', '2024-07-11 19:30:00', 'Training Server', '#a250e8', 'Learn the Rotary CAS airframes that the 17th uses, as well as tactics, weapon systems, and implementation of CAS! ', 501, 0, '2024-07-09 22:50:49', '2025-12-17 19:45:38', NULL, '7358329', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2757, 'Combat Life Saver (CLS) Training', '2024-07-14 13:00:00', '2024-07-14 15:30:00', '17th Training Server - Medical Training Area', '#FFFFFF', 'Come by to learn or relearn what the purpose and function of a CLS is. Understand your role as a fireteam member and rifleman and what your expected to do when assisting a medic. Both Alpha & Echo members are welcome.\nTraining may run shorter or longer due to attendance for the qualification portion of the training at the end.\n\n\nServer: Training Server-Medical Training Area\nMap: Colombia\nAdditional Mods: N/A', 12, 0, '2024-07-11 15:40:21', '2025-12-17 19:45:38', NULL, '7358733', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2758, 'Indirect Fire School', '2024-07-16 17:30:00', '2024-07-16 19:30:00', 'Training Server', '#a250e8', '', 468, 0, '2024-07-11 22:15:21', '2025-12-17 19:45:38', NULL, '7358837', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2759, 'Basic Training', '2024-07-13 13:00:00', '2024-07-13 16:00:00', 'Training Server', '#FFFFFF', 'Come learn the basics!\nEVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 12, 0, '2024-07-12 16:12:59', '2025-12-17 19:45:38', NULL, '7359624', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2760, '[CANCELED] Ranger School 2', '2024-07-18 16:00:00', '2024-07-18 19:00:00', 'Training Server', '#ecb200', 'DETAILS:\n We will be going over Part 2: Standard Combat Operations outlined in Ranger School 2, with an emphasis on Battle Drill 1 and a concluding FTX.\n\nSERVER:\n Training Server\n\nMAP:\n Colombia\n\nMODS:\n N/A\n\n\n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/9a1dcc19-b8b7-42d5-9c0a-f228228ad18b/docs/2075448909', 67, 1, '2024-07-12 22:41:23', '2025-12-17 19:45:38', NULL, '7359871', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2761, 'Echo Training', '2024-07-18 18:00:00', '2024-07-18 20:00:00', '', '#ecb200', 'Rotary CAS qual\nTilt rotor training for Saturday', 15, 0, '2024-07-14 15:05:17', '2025-12-17 19:45:38', NULL, '7363412', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2762, 'Rotary CAS Training', '2024-07-14 18:00:00', '2024-07-14 20:00:00', '', '#ecb200', 'Event details: Rotary CAS Training and qualification \nMap: Training Server\nA3TI suggested always for pilots', 15, 0, '2024-07-14 15:15:18', '2025-12-17 19:45:38', NULL, '7363413', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2763, 'How to Zeus 101', '2024-07-21 18:00:00', '2024-07-21 21:00:00', 'High Bit Rate Gaming', '#ecb200', 'Slideshow and notes to be posted', 67, 0, '2024-07-14 23:06:59', '2025-12-17 19:45:38', NULL, '7363594', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2764, 'Stitching \'n Bitching', '2024-07-28 18:00:00', '2024-07-28 19:00:00', 'Chow Hall (Teamspeak)', '#FFFFFF', 'Come one, come all to our monthly medical meeting! Everyone is welcome to share their questions, comments, and concerns. We will mainly be going over updates to medical as well as hearing feedback from you all! ', 209, 0, '2024-07-14 23:07:44', '2025-12-17 19:45:38', NULL, '7363595', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2765, 'Rotary CAS Qual', '2024-07-16 18:30:00', '2024-07-16 20:00:00', '', '#d89332', 'EVENT DETAILS: Rotary CAS Qualification. Limited to 2 trainees\nSERVER: Training server\nMAP: Training Map/Colombia\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set, A3TI recommended for all Echo Flight people', 15, 0, '2024-07-15 00:24:44', '2025-12-17 19:45:38', NULL, '7363604', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2766, 'Virolahti Violence: Operation Red Letter Day', '2024-07-31 18:00:00', '2024-07-31 21:00:00', 'Private Ops Server', '#FFFFFF', 'DETAILS:\n Returning to the woods of Virolahti.\n\n\n\nSERVER:\n Private Ops\n\nMAP:\n Virolahti - Valtatie 7\n\nMODS:\n \n\n \nSteam App Link (Pop into browser to directly open on Steam): steam://url/CommunityFilePage/1926513010&searchtext=Virolahti\n\n', 67, 0, '2024-07-15 03:35:01', '2025-12-17 19:45:38', NULL, '7363643', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2767, 'Virolahti FTX', '2024-07-22 19:00:00', '2024-07-22 21:00:00', 'Private Ops Server', '#FFFFFF', 'DETAILS:\n Combat training for the upcoming Virolahti mini-campaign. Will incorporate a bookwork and field exercises.\nSlides: \n\n\n\n\nSERVER:\n Private Ops\n\nMAP:\n Virolahti - Valtatie 7\n\nMODS:\n\n\n\nSteam App Link (Pop into browser to directly open on Steam):\nsteam://url/CommunityFilePage/1926513010&searchtext=Virolahti\n', 67, 0, '2024-07-16 03:43:51', '2025-12-17 19:45:38', NULL, '7364726', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2768, 'Advanced Triage and Mass Cas Training', '2024-07-21 13:00:00', '2024-07-21 15:00:00', 'Training Server', '#FFFFFF', 'Come learn the different roles in a mass cas and what makes a good CCP! A training helpful for everyone, not just those interested in medical roles!', 209, 0, '2024-07-18 00:36:34', '2025-12-17 19:45:38', NULL, '7366031', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2769, 'Accel basic', '2024-07-20 10:00:00', '2024-07-20 12:00:00', 'training server ', '#6cba50', 'Come and get your basic training done you silly gooses \nEVENT DETAILS: Accelerated basic training \nSERVER: Training sever \nMAP: Columbia \nMODS / MODPACK REQUIRED: Battalion Mod list ', 493, 0, '2024-07-19 19:56:28', '2025-12-17 19:45:38', NULL, '7366803', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2770, 'Alpha NCO Meeting', '2024-07-20 17:00:00', '2024-07-20 17:45:00', '', '#FFFFFF', '', NULL, 0, '2024-07-20 19:43:27', '2025-12-17 19:45:38', NULL, '7368196', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2771, 'Ranger School 2', '2024-07-21 18:00:00', '2024-07-21 21:00:00', '', '#FFFFFF', '', 11, 0, '2024-07-20 22:04:11', '2025-12-17 19:45:38', NULL, '7368263', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2772, 'Ranger School 3', '2024-07-23 18:00:00', '2024-07-23 21:00:00', '', '#FFFFFF', '', 11, 0, '2024-07-20 22:05:59', '2025-12-17 19:45:38', NULL, '7368267', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2773, 'Joint Terminal Air Controller - Ribbon', '2024-08-02 18:00:00', '2024-08-02 21:00:00', 'Training server ', '#a250e8', 'EVENT DETAILS: JTAC Ribbon Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set\n\nLearn the ways of the JTAC - from the 17th perspective. \n\nWe go over the standard CAS call format, types of control, and strategies to maximize effectiveness as a JTAC. Bring a notepad! \n', 501, 0, '2024-07-21 18:41:32', '2025-12-17 19:45:38', NULL, '7368605', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2774, '[CANCELLED] WEDNESDAY OP', '2024-07-24 18:00:00', '2024-07-24 20:00:00', '', '#df5353', 'EVENT DETAILS: Wednesday OP conducting AEROSOL against enemy strongholds in support of JSOC operations.\nSERVER: Private Operations Server\nMAP: Malden\nMODS / MODPACK REQUIRED: 17th Modlist + approved Whitelist\n\nInfo:\n17th RBN will conduct an air assault in support of USASOC counter-terrorism operations in Malden. 17th will first destroy a Malden Independence Liberation Force (MILF) stronghold, one of the major sites where MILF dispatched reinforcements and launches counterattacks. Following this, 17th will conduct an air assault into a MILF-held town ahead of an assault by members of 10th SFG. The 17th will capture and hold this town against any MILF counterattack, acting as a blocking force for the 10th SFG operation.', 468, 1, '2024-07-21 18:46:11', '2025-12-17 19:45:38', NULL, '7368606', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2775, '(CANCELLED) Echo Flight Training', '2024-07-25 18:00:00', '2024-07-25 20:00:00', '', '#ecb200', 'EVENT DETAILS: Two hour time period for various flight trainings because I\'m available\nSERVER: Training Server\nMAP: Colombia\nADDITIONAL MODS REQUIRED: N/A', 15, 1, '2024-07-21 22:06:23', '2025-12-17 19:45:38', NULL, '7368642', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2776, '68W', '2024-07-25 17:00:00', '2024-07-25 19:00:00', '', '#ecb200', 'Event Details: Medical 68W class and evaluation\nServer:Training Server\nMap:Columbia\nMods:Battalion Mods+ Approved Whitelist', 493, 0, '2024-07-23 13:25:18', '2025-12-17 19:45:38', NULL, '7370690', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2777, '[CANCELED] Basic Training', '2024-07-25 15:30:00', '2024-07-25 17:00:00', '', '#ecb200', 'Will update shortly', 493, 1, '2024-07-23 21:23:57', '2025-12-17 19:45:38', NULL, '7370870', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2778, '[canceled]Basic Training', '2024-08-03 10:00:00', '2024-08-03 12:30:00', '', '#ecb200', 'Will update soon', 493, 1, '2024-07-24 12:40:59', '2025-12-17 19:45:38', NULL, '7371793', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2779, 'RASP cadre meeting (Moved to Friday)', '2024-07-24 20:20:00', '2024-07-24 21:30:00', '', '#ecb200', '', 493, 0, '2024-07-24 15:07:14', '2025-12-17 19:45:38', NULL, '7371818', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2780, 'Rasp Cadre Meeting', '2024-07-26 18:30:00', '2024-07-26 19:30:00', '', '#ecb200', '', 493, 0, '2024-07-24 18:28:25', '2025-12-17 19:45:38', NULL, '7371849', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2781, 'Radio Telephone Operator (RTO) training', '2024-07-30 17:00:00', '2024-07-30 19:30:00', '17th Training Server', '#df5353', 'EVENT DETAILS: Training and Qualification to become a RTO in the 17th. Learn how to be a Romeo.\n\nSERVER: 17th Training Server\n\nMAP: Columbia \n\nMODS / MODPACK REQUIRED: 17th Shadow mod', 12, 0, '2024-07-25 21:16:17', '2025-12-17 19:45:38', NULL, '7373194', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2782, 'Virolahti Violence OPORD Planning', '2024-07-29 18:00:00', '2024-07-29 20:00:00', 'Training Channel - Discord', '#ecb200', 'This will be an opportunity for those wanting to practice high-level planning from the top down perspective. The decisions made during this meeting will direct the course of action taken during the operation on July 31st.\n\n\n\n\n\n\n', 67, 0, '2024-07-26 12:06:13', '2025-12-17 19:45:38', NULL, '7376725', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2783, 'Combat Life Saver (CLS) Training', '2024-08-03 11:00:00', '2024-08-03 13:00:00', '', '#6cba50', 'Come by to learn or relearn what the purpose and function of a CLS is. Understand your role as a fireteam member and rifleman and what your expected to do when assisting a medic. Both Alpha & Echo members are welcome.\nTraining may run shorter or longer due to attendance for the qualification portion of the training at the end.\n\n\nServer: Training Server-Medical Training Area\nMap: Colombia\nAdditional Mods: N/A', 61, 0, '2024-07-29 22:06:49', '2025-12-17 19:45:38', NULL, '7379699', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2784, 'Pathfinder Bookwork', '2024-08-01 17:00:00', '2024-08-01 19:00:00', 'Training Server - Airbase North', '#a250e8', '\n\n', 46, 0, '2024-07-30 12:05:16', '2025-12-17 19:45:38', NULL, '7380872', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2785, 'Alpha Co Pulse Check', '2024-08-06 18:00:00', '2024-08-06 19:00:00', 'Teamspeak Chow Hall', '#FFFFFF', 'The goal will be to get an overall bearing on how things are going in Alpha, what is working, what is not working, and how to continue moving forward.\n\nIf you can\'t make this timeslot, or you wish your feedback to be anonymous, please feel free to use the Command Request/Grievance form:\n\n\n\n', NULL, 0, '2024-07-30 15:36:18', '2025-12-17 19:45:38', NULL, '7380988', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2786, 'EOD Training', '2024-08-07 18:00:00', '2024-08-07 20:30:00', '', '#d89332', 'EVENT DETAILS: Explosive Ordnance Defusal Training\nSERVER: Training server\nMAP: Training Map/Colombia\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Pack\nThis is a training with a hard limit of 4 trainees for every trainer, due to the amount of time it takes to run a qual. Please sign up here if you INTEND on qualifying for EOD. Do not not waste a slot and no-show, it\'s extremely rude to not only me but your fellow rangers who may want that slot.', 951, 0, '2024-07-31 19:32:33', '2025-12-17 19:45:38', NULL, '7381403', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2787, 'How to vote in America pt 1 [RESCHEDULED]', '2024-08-26 18:00:00', '2024-08-26 19:00:00', 'Discord/Teamspeak TBD', '#d89332', 'EVENT DETAILS: An overview of voting in America. Will be completely nonpartisan. \nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A\nBeing rescheduled til next Monday/Tuesday\nThis is a training to teach you how to vote in America. We will be discussing registering to vote primarily in this training. Closer to the actual election I will host some additional trainings. ', 951, 0, '2024-07-31 19:41:46', '2025-12-17 19:45:38', NULL, '7381568', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2788, 'Pathfinder Qualification', '2024-08-06 17:00:00', '2024-08-07 08:00:00', 'Private Ops Server', '#a250e8', 'Only attend if you have completed the Bookwork.', 46, 0, '2024-08-02 22:43:56', '2025-12-17 19:45:38', NULL, '7384036', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2789, '[Rescheduled ] JTAC Qualification', '2024-08-08 17:30:00', '2024-08-08 20:30:00', 'Operations Server', '#a250e8', 'Attendees restricted to those that have completed the bookwork. This qualification will happen one on one.', 501, 0, '2024-08-03 01:29:14', '2025-12-17 19:45:38', NULL, '7384047', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2790, 'JTAC Ribbon Bookwork', '2024-08-05 17:30:00', '2024-08-05 19:30:00', 'Training Server', '#a250e8', 'Posted for those that missed the last bookwork.', 501, 0, '2024-08-04 03:21:17', '2025-12-17 19:45:38', NULL, '7384857', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2791, '[Rescheduled] Ranger School 1', '2024-08-11 16:30:00', '2024-08-11 19:30:00', '', '#FFFFFF', 'EVENT DETAILS: \nCovering Standard Field Operations - Pertinent Documentations can be found \n\nSERVER: \nTraining Server\nMAP:\n Training map\nMODS / MODPACK REQUIRED:\n N/A', 22, 0, '2024-08-06 23:20:52', '2025-12-17 19:45:38', NULL, '7390760', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2792, 'Unit wide open Echo training', '2024-08-09 15:00:00', '2024-08-09 17:00:00', 'Training server', '#ecb200', 'Practicing the use of the ESSS in support of CAS assets while fulfilling the Logistics mission. LIVE FIRE', 27, 0, '2024-08-07 00:33:12', '2025-12-17 19:45:38', NULL, '7390763', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2793, '[Cancelled] Fixed Wing CAS Training', '2024-08-09 18:00:00', '2024-08-09 20:30:00', 'Training Server', '#ecb200', 'EVENT DETAILS: Fixed Wing Training\nSERVER: Training Server\nMAP: Training Server - Colombia\nMODS / MODPACK REQUIRED: Shadowmod + Approved Whitelisted mods\nFixed Wing CAS BOOKWORK. Aircraft\'s capabilities, systems, and armament will be discussed and practiced in length. Qual will be on a separate date.\n', 468, 1, '2024-08-07 22:18:37', '2025-12-17 19:45:38', NULL, '7391135', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2794, '[Cancelled] Advanced UAV School', '2024-08-11 20:00:00', '2024-08-11 22:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Advanced UAV School\nSERVER: Training Server\nMAP: Training Server - Colombia\nMODS / MODPACK REQUIRED: Shadowmod + Approved Whitelisted mods\nAdvanced UAV and attached qualification. Learn the 17th\'s drones for intelligence gathering, target designation, and airstrikes\n', 468, 1, '2024-08-08 01:50:49', '2025-12-17 19:45:38', NULL, '7391173', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2795, 'JTAC Qualification', '2024-08-09 17:30:00', '2024-08-09 20:00:00', 'Operations Server', '#a250e8', '', 501, 0, '2024-08-08 14:08:32', '2025-12-17 19:45:38', NULL, '7391265', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2796, 'Support Training - Shoot & Move [Canceled ]', '2024-08-16 19:00:00', '2024-08-16 21:00:00', 'Training Server', '#ecb200', 'EVENT DETAILS: We will be practicing our capability to lay down effective fire while on the move. There will be times during a convoy that we start to take fire and it becomes necessary to keep moving, push through contact, and not get bogged down. The goal of this training to get time in the guns of our vehicles and help train on accuracy on the move. \nThe more numbers we get the more vehicle variety we will utilize. Get ready for alot of driving and alot of shooting. We will get multiple reps in with driver/gunner swaps. I will be throwing alot at the convoy including helicopters and maybe drones.\nSERVER: Training Server\nMAP: Columbia\nMODS / MODPACK REQUIRED: 17th Mod Pack\nCanceled due to being pulled for an extra assignment tonight.', 53, 1, '2024-08-09 09:48:54', '2025-12-17 19:45:38', NULL, '7391451', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2797, '[Cancelled] Flight Training', '2024-08-15 17:30:00', '2024-08-15 19:30:00', '', '#ecb200', 'TBD\n\nRealized I double booked myself. I\'ll post one next week.', 15, 1, '2024-08-10 14:00:54', '2025-12-17 19:45:38', NULL, '7392641', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2798, 'Accelerated Basic Training', '2024-08-12 15:00:00', '2024-08-12 16:30:00', '', '#FFFFFF', 'EVENT DETAILS: Accelerated Basic Training\nSERVER: Training server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Mod Set', 12, 0, '2024-08-11 19:42:14', '2025-12-17 19:45:38', NULL, '7395910', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2799, 'Ranger School 1', '2024-08-12 18:00:00', '2024-08-12 20:30:00', '', '#FFFFFF', 'EVENT DETAILS: \nCovering Standard Field Operations - Pertinent Documentations can be found \n\nSERVER: \nTraining Server\nMAP:\n Training map\nMODS / MODPACK REQUIRED:\n N/A', 22, 0, '2024-08-11 20:13:51', '2025-12-17 19:45:38', NULL, '7395922', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2800, 'Operation Oilslick', '2024-08-16 17:00:00', '2024-08-16 19:00:00', '', '#FFFFFF', 'EVENT DETAILS: Defend the oil field and then retaliate against the locals using QRF tactics and armed helicopters.\nSERVER: Private Operations Server\nMAP: Takistan mt.\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 57, 0, '2024-08-12 20:40:42', '2025-12-17 19:45:38', NULL, '7397405', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2801, 'NCO Course FTX', '2024-08-21 18:00:00', '2024-08-21 21:00:00', 'Private Ops', '#FFFFFF', 'DETAILS:\n A redone version of the original NCO Course. Attending and participating in a leadership position at least once (FTL/SL/PL) will allow you to earn the NCO Course checkmark. \n\nYou do not need to be an NCO to participate. \nYou do not need to be an NCO to earn your checkmark.\nAll are welcome!\n\nSERVER:\n Private Ops\n\nMAP:\n Malden 2035\n\nMODS:\n N/A\n\nComplementary Video: \n\nhttps://www.youtube.com/watch?v=s7_KRHVbnhg', 67, 0, '2024-08-12 22:13:38', '2025-12-17 19:45:38', NULL, '7397462', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2802, '[CANCELED] Sherman Op', '2024-09-04 18:00:00', '2024-09-04 21:00:00', '', '#FFFFFF', '', 67, 1, '2024-08-12 22:18:42', '2025-12-17 19:45:38', NULL, '7397463', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2803, 'Range Day', '2024-08-20 19:00:00', '2024-08-20 20:30:00', 'Training Server', '#ecb200', 'Ok, lets try this again. Range day yall. Come shoot shit and shoot the shit! \nWe will try to get people a lot of left clicking time while keeping this informative and fun. Pus may have some competitions towards the end of the training so look forward to that 😉', 2222, 0, '2024-08-14 11:54:47', '2025-12-17 19:45:38', NULL, '7397869', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2804, 'Echo Orientation', '2024-08-19 17:30:00', '2024-08-19 19:30:00', '', '#d89332', 'Event Details- Learn the basics of functioning as an Echo Member. \nServer- 17th Training Server \nMap- Altis\nMods- 17th Shadowmod\nOptional Mod- A3TI Thermal Enhancement mod. ', 7, 0, '2024-08-15 19:18:22', '2025-12-17 19:45:38', NULL, '7399270', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2805, 'HBQ METHODS TEST', '2024-08-20 18:30:00', '2024-08-20 20:00:00', '', '#df5353', 'Event Details- Help ya boy streamline a thing or 2\njust wanting to test a few things out the HBQ before host a lil smoke sesh to tech what i know so far\n\na fire team or more would be ideal.\n\nwe can absolutely use this session to work on combat skills as well\n\nServer- 17th TP OPS server\nMap- Proving Grounds\nMods- 17th Shadowmod\n', 43, 0, '2024-08-20 13:43:02', '2025-12-17 19:45:38', NULL, '7403620', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2806, 'Operation Soldado Afortunado', '2024-09-18 18:00:00', '2024-09-18 21:00:00', '17th Private Ops server', '#FFFFFF', 'EVENT DETAILS\n: A helicopter pilot of a friendly nation was shot down by the Cartel Del Este. Rangers need to find and rescue him.\n\nSERVER\n: Private Operations Server\n\nMAP\n: Sahrani\n\nMODS \n/ MODPACK REQUIRED: 17th Shadow Mod + Whitelisted mods\n\nSearch and rescue mission for WO2 Hector Sifuentes. WO2 Sifuentes is an OH-6M pilot for the allied Paraiso government. Sifuentes was shot down between the towns of Mercalillo and Bagango by the Cartel Del Este, a medium size contraband cartel. \n\nNo civilian considerations. \nDo not engage police officers unless fired upon first\n. Rangers are cleared to engage any non-uniformed or non-police adults with firearms.\n\nOBJ Sandia raid and find WO2 Sifuentes. In order of import:\n\nDue to AA presence at Sandia, all air assets have been grounded. If OBJ Sandia is completed with enemy AA assets destroyed but WO2 Sifuentes is not yet rescued, troop transport and light attack helicopters will be available to Echo members. Preserve civilian infrastructure as much as possible.\nRangers will move in a convoy to OBJ Sandia. Leaders may request specific ground assets.', 12, 0, '2024-08-21 21:36:25', '2025-12-17 19:45:38', NULL, '7404888', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2807, 'CAS Pilot/Copilot Practice', '2024-08-23 17:30:00', '2024-08-23 19:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: We need to practice to be effective. Recent issues with locking weapons and all of that... were gonna get that figured out! \nSERVER: Training Server\nMAP: Columbia \nMODS / MODPACK REQUIRED: 17th BTN Mod Pack + any on the white list. ', 501, 0, '2024-08-22 16:24:44', '2025-12-17 19:45:38', NULL, '7406485', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2808, 'COMMUNITY MEETING FOR BCO VOTE', '2024-09-01 15:00:00', '2024-09-01 17:00:00', 'Teamspeak in the Channel Struggle Bus', '#df5353', 'Meeting for BCO candidates to present themselves for consideration and then for the Unit to vote on the BCO.', 27, 0, '2024-08-25 20:48:30', '2025-12-17 19:45:38', NULL, '7412860', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2809, '[Canceled] Battalion FTX Demo Test', '2024-08-30 18:00:00', '2024-08-30 19:00:00', '', '#FFFFFF', 'TBD', 67, 1, '2024-08-28 00:48:30', '2025-12-17 19:45:38', NULL, '7414808', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2810, 'Space Marine 2 Giveaway drawing', '2024-09-01 19:00:00', '2024-09-01 20:00:00', 'Discord', '#FFFFFF', 'EVENT DETAILS: Donation giveaway name draw\nSERVER: Discord\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 53, 0, '2024-08-28 23:39:54', '2025-12-17 19:45:38', NULL, '7415553', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2811, 'NCO-Meeting', '2024-08-31 16:30:00', '2024-08-31 17:30:00', '17th Teamspeak', '#FFFFFF', 'EVENT DETAILS: Meeting to discuss the plan for Saturday´s Battalion FTX\nSERVER: 17th Teamspeak Server\nMAP: N/A\nMODS / MODPACK REQUIRED: 17th Modtesting Modpack', 21, 0, '2024-08-30 23:32:05', '2025-12-17 19:45:38', NULL, '7418895', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2812, 'SERVER MAINTENCE', '2024-09-04 17:00:00', '2024-09-04 21:30:00', '', '#FFFFFF', 'EVENT DETAILS: SERRVER is going down for Maintenace and clean up\nSERVER: ALL servers\nMAP: N/A\nADDITIONAL MODS REQUIRED: N/A', 43, 0, '2024-09-02 14:26:54', '2025-12-17 19:45:38', NULL, '7423129', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2813, 'Basic Communication Proficiency Course', '2024-09-06 18:00:00', '2024-09-06 19:30:00', '', '#FFFFFF', 'EVENT DETAILS\n: This training is targeted toward newer members of the 17th and anyone who wants to make sure they are proficient in the basics of communication in a operation. \n\nSERVER\n: 17th Training Server\n\nMAP\n: 17th Training Server Map (NO ADDITIONAL MAP NEEDED)\n\nMODS / MODPACK REQUIRED\n: N/A', 21, 0, '2024-09-03 15:26:46', '2025-12-17 19:45:38', NULL, '7424105', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2814, 'Command Meeting', '2024-09-08 15:00:00', '2024-09-08 16:00:00', 'COs Office in TeamSpeak', '#a250e8', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-04 03:38:13', '2025-12-17 19:45:38', NULL, '7424267', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2815, 'Command Meeting [RESCHEDULED]', '2024-09-15 15:00:00', '2024-09-15 16:00:00', 'COs Office in TeamSpeak', '#a250e8', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-04 03:38:13', '2025-12-17 19:45:38', NULL, '7424268', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2816, '[Rescheduled] Command Meeting', '2024-09-22 15:00:00', '2024-09-22 16:00:00', 'COs Office in TeamSpeak', '#ecb200', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-04 03:38:13', '2025-12-17 19:45:38', NULL, '7424269', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2817, 'Command Meeting', '2024-09-29 15:00:00', '2024-09-29 16:00:00', 'COs Office in TeamSpeak', '#a250e8', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-04 03:38:13', '2025-12-17 19:45:38', NULL, '7424270', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2818, 'Command Meeting', '2024-10-12 21:00:00', '2024-10-12 22:00:00', 'Struggle Bus in TeamSpeak', '#a250e8', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-04 03:38:13', '2025-12-17 19:45:38', NULL, '7424272', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2819, 'Command Meeting', '2024-10-19 21:00:00', '2024-10-19 22:00:00', 'Struggle Bus in TeamSpeak', '#a250e8', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-04 03:38:13', '2025-12-17 19:45:38', NULL, '7424273', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2820, 'Command Meeting', '2024-10-26 21:00:00', '2024-10-26 22:00:00', 'Struggle Bus in TeamSpeak', '#a250e8', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-04 03:38:13', '2025-12-17 19:45:38', NULL, '7424274', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2821, 'RASP', '2024-10-12 18:00:00', '2024-10-12 21:00:00', '', '#df5353', 'EVENT DETAILS: TBD\nSERVER: Private Operations\nMAP: TBD\nMODS / MODPACK REQUIRED: 17th shadow mod', 27, 0, '2024-09-04 03:43:28', '2025-12-17 19:45:38', NULL, '7424275', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2822, 'Community Roundtable followed by Command meeting', '2024-11-10 16:00:00', '2024-11-10 19:00:00', '', '#a250e8', 'EVENT DETAILS: This will be the roundtable to vote for all positions in command,\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-04 03:46:13', '2025-12-17 19:45:38', NULL, '7424276', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2823, 'RASP/CADRE MISSION BRIEF', '2024-09-07 16:30:00', '2024-09-07 17:00:00', '', '#FFFFFF', 'EVENT DETAILS: RASP MEETING\nSERVER: Private Operations\nMAP: Yuk.... man i for got how to spell it\nMODS / MODPACK REQUIRED: 17th TESTING shadow mod\n\n\n\nquick meeting to show Cadre the Rasp lanes pretty straight forward', 43, 0, '2024-09-06 13:26:07', '2025-12-17 19:45:38', NULL, '7430247', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2824, 'Operation Erne #1', '2024-09-14 18:00:00', '2024-09-14 21:00:00', 'Yulakia', '#df5353', '', 468, 0, '2024-09-08 02:56:24', '2025-12-17 19:45:38', NULL, '7432751', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2825, 'Operation Erne #2', '2024-09-21 18:00:00', '2024-09-21 21:00:00', 'Yulakia', '#df5353', '', 468, 0, '2024-09-08 02:56:54', '2025-12-17 19:45:38', NULL, '7432752', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2826, 'Operation Erne #3', '2024-09-28 18:00:00', '2024-09-28 21:00:00', 'Yulakia', '#df5353', '', 468, 0, '2024-09-08 02:57:34', '2025-12-17 19:45:38', NULL, '7432753', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2827, 'Operation Erne #4', '2024-10-05 18:00:00', '2024-10-05 21:00:00', '', '#df5353', '', 468, 0, '2024-09-08 02:57:57', '2025-12-17 19:45:38', NULL, '7432754', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2828, 'Operation Erne #5', '2024-10-19 18:00:00', '2024-10-19 21:00:00', 'Yulakia', '#df5353', '', 468, 0, '2024-09-08 02:58:27', '2025-12-17 19:45:38', NULL, '7432755', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2829, 'Operation Erne #6', '2024-10-26 18:00:00', '2024-10-26 21:00:00', 'Yulakia', '#df5353', '', 468, 0, '2024-09-08 02:58:49', '2025-12-17 19:45:38', NULL, '7432756', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2830, 'Operation Erne #7', '2024-11-02 18:00:00', '2024-11-02 21:00:00', 'Yulakia', '#df5353', '', 468, 0, '2024-09-08 02:59:27', '2025-12-17 19:45:38', NULL, '7432758', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2831, 'Operation Erne #8', '2024-11-09 19:00:00', '2024-11-09 22:00:00', 'Yulakia', '#df5353', '', 468, 0, '2024-09-08 02:59:53', '2025-12-17 19:45:38', NULL, '7432759', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2832, 'Stacking Bodies wit KEN: Mission/Training/enjoying our time', '2024-09-11 18:00:00', '2024-09-11 20:00:00', 'Private OPS ', '#df5353', 'EVENT DETAILS: Lets get dropped off somewhere walk around stack bodies and talk about it\nSERVER: Private Operations\nMAP: Yulakiazbfkje (WHATEVER THE CAMPAIGN MAP IS CALLED)\nMODS / MODPACK REQUIRED: PRIVATE OPS\n\nLooking for OSPREY PILOTS and/or GUN TRUCK CREW\n\n\nif we don\'t have the bodies to support JIP ya boy will take care of it just focus on honing combat skills ', 43, 0, '2024-09-09 20:12:30', '2025-12-17 19:45:38', NULL, '7433324', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2833, 'Combat Diver School', '2024-09-13 18:00:00', '2024-09-13 20:00:00', '', '#a250e8', 'EVENT DETAILS: Combat Diver School to figure out how to do H2O operations without dying\nSERVER: Training Server\nMAP: Altis or Yulakia (If Yulakia server is ready)\nMODS / MODPACK REQUIRED: Standard Modlist + approved whitelisted\n\n', 468, 0, '2024-09-10 18:57:23', '2025-12-17 19:45:38', NULL, '7433834', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2834, '68W Combat Medic Training', '2024-09-14 12:00:00', '2024-09-14 15:00:00', '17th Training Server', '#ecb200', 'Event Details: Medical 68W class and evaluation\nServer:Training Server\nMap: Training map\nMods:Battalion Mods+ Approved Whitelist', 12, 0, '2024-09-10 21:32:51', '2025-12-17 19:45:38', NULL, '7433852', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2835, 'Basic Training', '2024-09-12 17:15:00', '2024-09-12 20:00:00', '', '#ecb200', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Altis (training server)\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 493, 0, '2024-09-11 12:36:49', '2025-12-17 19:45:38', NULL, '7437354', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2836, 'NCO Meeting', '2024-09-14 16:30:00', '2024-09-14 17:30:00', 'Iceberg TS Server (Chow Hall)', '#FFFFFF', 'EVENT DETAILS: Meeting to discuss the plan for Saturday´s Battalion FTX\nSERVER: 17th Teamspeak Server\nMAP: N/A\nMODS / MODPACK REQUIRED: 17th Modtesting Modpack', 21, 0, '2024-09-12 18:31:39', '2025-12-17 19:45:38', NULL, '7438708', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2837, 'Command Meeting', '2024-09-14 21:30:00', '2024-09-14 22:00:00', 'Teamspeak', '#a250e8', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-12 18:56:51', '2025-12-17 19:45:38', NULL, '7438711', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2838, 'Operation Fallen Hope', '2024-09-27 18:00:00', '2024-09-27 20:00:00', '', '#FFFFFF', 'EVENT DETAILS: Russian forces have pushed into Chernarus this fall from the ocean and have begun to establish a foothold in nearby towns. Local forces are to hit them as hard as possible to slow them down until more US forces can arrive.\n\nAssets: LAVs, Little birds, guntrucks\n\nEnemy forces: Garrisoned infantry, up to BTRs and BMPs.\nSERVER: Private Operations Server\nMAP: Chernarus (Autumn) \nMODS / MODPACK REQUIRED: 17th Shadow Mod', 57, 0, '2024-09-12 22:21:05', '2025-12-17 19:45:38', NULL, '7439182', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2839, 'Stacking Bodies wit KEN: Mission/Training/enjoying our time', '2024-09-25 18:00:00', '2024-09-25 20:00:00', '', '#df5353', 'EVENT DETAILS: We are going to put some back packs on chest and jump.... then we gonna walk around, stack them up, and talk about it\n\nI LIED THIS WEEKS AO DOES NOT ALLOW BACK PACKS ON CHEST\n\nSERVER: Private Operations\nMAP: Yulakiazbfkje (WHATEVER THE CAMPAIGN MAP IS CALLED)\nMODS / MODPACK REQUIRED: PRIVATE OPS\nLooking for OSPREY PILOTS \nand lets fuck wit the AC 130\n\nif we don\'t have the bodies to support JIP ya boy will take care of it just focus on honing combat skills', 43, 0, '2024-09-13 02:48:24', '2025-12-17 19:45:38', NULL, '7439262', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2840, 'Acc Basic', '2024-09-16 16:30:00', '2024-09-16 17:30:00', '', '#ecb200', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP: Altis (training server)\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 493, 0, '2024-09-15 19:56:08', '2025-12-17 19:45:38', NULL, '7444429', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2841, 'Echo Gunnery Course', '2024-09-17 17:00:00', '2024-09-17 19:00:00', '', '#d89332', 'Event Details- Echo Gunnery, learn how to effectively employ our heavy weapons against enemy armor. \nServer- 17th Training Server\nMap- Altis\nMods- 17th Shadowmod\nOptional Mod- A3TI Thermal Enhancement ', 7, 0, '2024-09-15 22:49:51', '2025-12-17 19:45:38', NULL, '7444444', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2842, 'Tiltrotor Logi/CAS Training', '2024-09-23 17:00:00', '2024-09-23 20:00:00', 'Airfield', '#d89332', 'EVENT DETAILS:\n \nThis training will cover the V-44 Blackfish and it\'s variants (we\'ll talk about the osprey too)\n\nTiltrotors are a very complicated aircraft to fly. It is highly encouraged for you to know how to fly both a plane and a helicopter to attend this training.\n\n\nSERVER: \nTraining Server\n\n\nMAP:\n Training Server Map\n\n\nADITIONAL MODS REQUIRED:\n N/A\n\n', 42, 0, '2024-09-16 16:01:48', '2025-12-17 19:45:38', NULL, '7446133', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2843, 'Support Training - Shoot & Move (Canceled)', '2024-09-26 16:30:00', '2024-09-26 17:30:00', '', '#FFFFFF', 'EVENT DETAILS: We will be practicing our capability to lay down effective fire while on the move. There will be times during a convoy that we start to take fire and it becomes necessary to keep moving, push through contact, and not get bogged down. The goal of this training to get time in the guns of our vehicles and help train on accuracy on the move.\nThe more numbers we get the more vehicle variety we will utilize. Get ready for alot of driving and alot of shooting. We will get multiple reps in with driver/gunner swaps. I will be throwing alot at the convoy including helicopters and maybe drones.\n\nSERVER: Training Server\n\nMAP: Yulakia\n\nMODS / MODPACK REQUIRED: 17th Mod Pack', 53, 1, '2024-09-19 21:27:28', '2025-12-17 19:45:38', NULL, '7450219', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2844, 'CLS', '2024-09-20 18:15:00', '2024-09-20 19:30:00', '', '#ecb200', 'EVENT DETAILS: CLS training\nSERVER: Training server\nMAP: yulak (idk how to spell it)\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 493, 0, '2024-09-19 22:49:42', '2025-12-17 19:45:38', NULL, '7450233', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2845, '[Cancled] NCO meeting', '2024-09-21 16:30:00', '2024-09-21 17:30:00', '', '#ecb200', 'Going over planning', 493, 0, '2024-09-21 18:26:50', '2025-12-17 19:45:38', NULL, '7452129', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2846, 'Command Meeting', '2024-09-21 21:30:00', '2024-09-21 22:00:00', '', '#a250e8', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-21 20:31:46', '2025-12-17 19:45:38', NULL, '7452148', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2847, 'Advanced Triage and Mass Cas Training', '2024-09-22 12:00:00', '2024-09-22 15:00:00', '', '#FFFFFF', 'EVENT DETAILS: Advanced Triage and Mass Cas Training\nSERVER: 17th Training Server\nMAP: Yulakia\nMODS / MODPACK REQUIRED: Standard modlist + approved whitelist\n\nCome learn the different roles in a mass cas and what makes a good CCP! A training helpful for everyone, not just those interested in medical roles!', 12, 0, '2024-09-22 02:18:45', '2025-12-17 19:45:38', NULL, '7452299', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2848, 'Basic Training', '2024-09-24 16:00:00', '2024-09-24 18:00:00', '', '#ecb200', 'EVENT DETAILS: Basic Training\nSERVER: Training server\nMAP:Yulak(idk how to spell it,again) (training server)\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 493, 0, '2024-09-24 12:53:57', '2025-12-17 19:45:38', NULL, '7456145', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2849, 'Heavy Weapons Training', '2024-09-30 18:30:00', '2024-09-30 20:00:00', 'Training Server', '#a250e8', 'EVENT DETAILS: Learn to use AT weapons and Crew Served Weapons to weigh down your kit\nSERVER: 17th Training Server (Rocket Range)\nMAP: Yulakia\nMODS / MODPACK REQUIRED: 17th Shadow mod (standard modlist)', 5, 0, '2024-09-25 00:51:24', '2025-12-17 19:45:38', NULL, '7457114', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2850, 'LETS GET TEHM JUMP WINGS WITH KEN', '2024-10-01 18:00:00', '2024-10-01 20:00:00', 'TRAINING SERVER', '#d89332', 'EVENT DETAILS: Airborne Training w/ Jump wings qual\nSERVER: Training server\nMAP: Yulakiazbfkje (WHATEVER THE CAMPAIGN MAP IS CALLED)\nMODS / MODPACK REQUIRED: PRIVATE OPS\n\n\nLook for 1-2 Pilots for to help out(TILT ROTOR PILOTS A PLUS)\n*Want to see if Osprey Jump is safe for Gang\n\nGood opportunity For anyone interested in challenging Jump Master\n\nFirst Come First serve\n', 43, 0, '2024-09-25 03:16:56', '2025-12-17 19:45:38', NULL, '7457153', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2851, '[Canceled] NCO meeting', '2024-09-28 16:30:00', '2024-09-28 17:30:00', '', '#ecb200', '', 493, 1, '2024-09-28 19:54:40', '2025-12-17 19:45:38', NULL, '7461883', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2852, 'Command Meeting', '2024-11-02 21:00:00', '2024-11-02 22:00:00', 'Struggle Bus in Teamspeak', '#a250e8', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-29 19:47:56', '2025-12-17 19:45:38', NULL, '7465682', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2853, 'Command Meeting', '2024-11-09 22:00:00', '2024-11-09 23:00:00', 'Struggle Bus in Teamspeak', '#a250e8', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-29 19:47:56', '2025-12-17 19:45:38', NULL, '7465683', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2854, 'Command Meeting', '2024-10-05 21:00:00', '2024-10-05 22:00:00', 'Struggle Bus in Teamspeak', '#a250e8', 'EVENT DETAILS: Usual Command meeting. Will be going over preparation for the campaign and hopefully finalizing documents.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-09-29 19:49:48', '2025-12-17 19:45:38', NULL, '7465684', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2855, 'Ranger Training', '2024-10-03 19:00:00', '2024-10-03 21:00:00', '', '#FFFFFF', 'EVENT DETAILS:\n Ranger Training\n\nSERVER: \n17th Training Server \n\nMAP\n: Yulakia\n\nMODS / MODPACK REQUIRED: \n17th Shadow mod \n \n\nPosted by \n on behalf of \n by request.', 38, 0, '2024-09-30 14:15:57', '2025-12-17 19:45:38', NULL, '7469385', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2856, 'Ranger Training', '2024-10-10 19:00:00', '2024-10-10 21:00:00', '', '#FFFFFF', 'EVENT DETAILS:\n Ranger Training\n\nSERVER: \n17th Training Server \n\nMAP\n: Yulakia\n\nMODS / MODPACK REQUIRED: \n17th Shadow mod \n \n\nPosted by \n on behalf of \n by request.\nTonight\'s event will cover reaction to contact taught by \n ', 38, 0, '2024-09-30 14:15:57', '2025-12-17 19:45:38', NULL, '7469386', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2857, 'Agressive Action FTX', '2024-10-24 19:00:00', '2024-10-24 21:00:00', '', '#FFFFFF', 'EVENT DETAILS:\n Ranger Training\n\nSERVER: \n17th Training Server \n\nMAP\n: Yulakia\n\nMODS / MODPACK REQUIRED: \n17th Shadow mod \n \n\nCarry out offensive actions on hostile positions under time constraints. Shoot and move or become roast beef!', 38, 0, '2024-09-30 14:15:57', '2025-12-17 19:45:38', NULL, '7469387', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2858, 'Hostage Rescue FTX', '2024-10-17 19:00:00', '2024-10-17 21:00:00', '', '#FFFFFF', 'EVENT DETAILS:\n Carry out high speed hostage rescues in dangerous situations\n\nSERVER: \n17th Training Server \n\nMAP\n: Yulakia\n\nMODS / MODPACK REQUIRED: \n17th Shadow mod \n ', 38, 0, '2024-09-30 14:15:57', '2025-12-17 19:45:38', NULL, '7469388', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2859, 'Ranger Training', '2024-10-31 19:00:00', '2024-10-31 21:00:00', '', '#FFFFFF', 'EVENT DETAILS:\n Ranger Training\n\nSERVER: \n17th Training Server \n\nMAP\n: Yulakia\n\nMODS / MODPACK REQUIRED: \n17th Shadow mod \n \n\nPosted by \n on behalf of \n by request.', 38, 0, '2024-09-30 14:15:57', '2025-12-17 19:45:38', NULL, '7469389', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2860, 'Flight Training', '2024-10-10 17:00:00', '2024-10-10 19:00:00', '', '#d89332', 'EVENT DETAILS: Flying-related trainings\nSERVER: 17th Training Server\nMAP: Yulakia\nMODS / MODPACK REQUIRED: No additional', 15, 0, '2024-09-30 14:34:21', '2025-12-17 19:45:38', NULL, '7469393', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2861, '[RESCHEDULED] 68W Black Tag Protol Training', '2024-10-03 18:00:00', '2024-10-03 18:30:00', '17th Training Server', '#FFFFFF', 'EVENT DETAILS:\n 68W Black Tag Protol Training. A requirement for anyone currently with the 68W qualification to complete before they can run as medic in Saturday ops. \n\nSERVER: \n17th Training Server \n\nMAP\n: Yulakia\n\nMODS / MODPACK REQUIRED: \n17th Shadow mod ', 12, 0, '2024-09-30 19:17:03', '2025-12-17 19:45:38', NULL, '7469826', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2862, 'NCO Course Redux FTX', '2024-10-02 18:00:00', '2024-10-02 21:00:00', 'Private Ops Server', '#FFFFFF', 'DETAILS:\n A redone version of the original NCO Course. Attending and participating in a leadership position at least once (FTL/SL/PL) will allow you to earn the NCO Course checkmark. \n\nYou do not need to be an NCO to participate. \nYou do not need to be an NCO to earn your checkmark.\nAll are welcome!\n\nSERVER:\n Private Ops\n\nMAP:\n Malden 2035\n\nMODS:\n N/A\n\nComplementary Video: \n', 67, 0, '2024-09-30 19:49:17', '2025-12-17 19:45:38', NULL, '7470197', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2863, '[Rescheduled] Radio Telephone Operator (RTO) Training', '2024-10-04 17:00:00', '2024-10-04 19:00:00', '', '#FFFFFF', 'EVENT DETAILS: Learn how to come talk on that long range and call in support\n\nSERVER: Training Server\n\nMAP: Yulakia\n\nMODS / MODPACK REQUIRED: 17th Mod Pack', 53, 0, '2024-10-01 02:25:31', '2025-12-17 19:45:38', NULL, '7470275', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2864, '(Moved)Battle of Ad-Dawrah', '2024-10-25 18:00:00', '2024-10-25 21:00:00', '', '#FFFFFF', 'Moved to next week because I\'m dumb and can\'t get my days right\n\n\n\nEVENT DETAILS:\nTime: January 18/19th, 1991\nLocation: Oil field approximately forty miles offshore from Kuwait\n\nBackground:\nEarly this morning, Coalition aircraft have begun a major campaign against Iraqi forces in preparation for the ground invasion of Kuwait and Iraq. Many of our jets and air sorties are coming from aircraft carriers and amphibious assault ships located in the Persian Gulf. Whilst jets were flying over the oil field they reported taking heavy fire from SAMs and shoulder fired rockets. We suspect that there is a large garrison of Iraqi troops located on the oil rig and is being used as an outpost for reporting Coalition aircraft movements back to Iraq.\n\nCurrent Situation:\nThe oil rig has been hit with OH-58D and U.S. Navy Sikorsky SH-60B Seahawk helicopters with air-surface missiles during the day. The USS Nicholas, under the cover of darkness and radio silence has moved in closer to the oil platforms. For an hour, USS Nicholas has shelled the platforms with her 76-mm guns. \n\nTasking: \nAs soon as the shelling has finished the 17th Rangers are to assault the oil rig and ensure the anti air defenses on the upper platform have been disabled, and kill or capture all Iraqi marines.\n\nEnemy forces: Iraqi marines, anti-air emplacements\nSERVER: Private Operations Server\nMAP: Porto (already in shadowmod)\nMODS / MODPACK REQUIRED: 17th Shadow Mod\n\n(Will be pretty Alpha heavy this time, Echo will get much more use in next missions)', 57, 0, '2024-10-01 20:31:19', '2025-12-17 19:45:38', NULL, '7471199', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2865, 'Battle of Ad-Dawrah', '2024-11-01 18:00:00', '2024-11-01 21:00:00', '', '#FFFFFF', 'Server will be up early for kit making\nEVENT DETAILS:\nTime: January 18/19th, 1991\nLocation: Oil field approximately forty miles offshore from Kuwait\nBackground:\nEarly this morning, Coalition aircraft have begun a major campaign against Iraqi forces in preparation for the ground invasion of Kuwait and Iraq. Many of our jets and air sorties are coming from aircraft carriers and amphibious assault ships located in the Persian Gulf. Whilst jets were flying over the oil field they reported taking heavy fire from SAMs and shoulder fired rockets. We suspect that there is a large garrison of Iraqi troops located on the oil rig and is being used as an outpost for reporting Coalition aircraft movements back to Iraq.\nCurrent Situation:\nThe oil rig has been hit with OH-58D and U.S. Navy Sikorsky SH-60B Seahawk helicopters with air-surface missiles during the day. The USS Nicholas, under the cover of darkness and radio silence has moved in closer to the oil platforms. For an hour, USS Nicholas has shelled the platforms with her 76-mm guns.\nTasking:\nAs soon as the shelling has finished the 17th Rangers are to assault the oil rig and ensure the anti air defenses on the upper platform have been disabled, and kill or capture all Iraqi marines.\nEnemy forces: Iraqi marines, anti-air emplacements\nSERVER: Private Operations Server\nMAP: Porto (already in shadowmod)\nMODS / MODPACK REQUIRED: 17th Shadow Mod\n(Will be pretty Alpha heavy this time, Echo will get much more use in next missions)', 57, 0, '2024-10-01 20:31:26', '2025-12-17 19:45:38', NULL, '7471200', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2866, '[Canceled] Blaze Flex op', '2024-11-22 19:00:00', '2024-11-22 22:00:00', '', '#FFFFFF', '', 57, 1, '2024-10-01 20:32:19', '2025-12-17 19:45:38', NULL, '7471201', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2867, 'Operation Nuclear Sun', '2024-12-06 19:00:00', '2024-12-06 21:30:00', '', '#FFFFFF', 'EVENT DETAILS: A MOAB has been stolen from a US Convoy. Sweep local towns and disable it before it detonates\nAssets: LAVs, Little birds, guntrucks. What SL wants\nEnemy forces: AAF\nSERVER: Private Operations Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Shadow Mod,', 57, 0, '2024-10-01 20:32:29', '2025-12-17 19:45:38', NULL, '7471202', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2868, '(Rescheduled) Radio Telephone Operator (RTO) Training', '2024-10-07 17:00:00', '2024-10-07 19:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Learn how to come talk on that long range and call in support\nSERVER: Training Server\nMAP: Yulakia\nMODS / MODPACK REQUIRED: 17th Mod Pack\n(Rescheduled one last time to fit peoples schedule)', 53, 0, '2024-10-02 09:45:07', '2025-12-17 19:45:38', NULL, '7474506', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2869, 'Basic Training', '2024-10-05 12:00:00', '2024-10-05 15:00:00', '17th Training Server', '#30a68f', 'EVENT DETAILS:\n Ranger Training\n\nSERVER: \n17th Training Server \n\nMAP\n: Yulakia\n\nMODS / MODPACK REQUIRED: \n17th Shadow mod \n ', 12, 0, '2024-10-02 23:14:04', '2025-12-17 19:45:38', NULL, '7474823', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2870, '68W Black Tag Protol Training', '2024-10-05 16:30:00', '2024-10-05 17:00:00', '', '#FFFFFF', 'EVENT DETAILS:\n 68W Black Tag Protol Training. A requirement for anyone currently with the 68W qualification to complete before they can run as medic in Saturday ops. \n\nSERVER: \n17th Training Server (medical area)\n\nMAP\n: Yulakia\n\nMODS / MODPACK REQUIRED: \n17th Shadow mod ', 12, 0, '2024-10-03 20:57:08', '2025-12-17 19:45:38', NULL, '7475068', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2871, '[RESCHEDULED] Dalt Op (The Squeakquel)', '2024-10-23 18:00:00', '2024-10-23 21:00:00', 'Private Operations Server', '#FFFFFF', 'EVENT DETAILS\n: Blackfoot got captured lol\n\nSERVER\n: Private Operations Server\n\nMAP\n: Sahrani\n\nMODS \n/ MODPACK REQUIRED: 17th Shadow Mod + Whitelisted mods', 12, 0, '2024-10-06 02:46:22', '2025-12-17 19:45:38', NULL, '7480481', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2872, 'Thanksgiving Break (No Official Events will be scheduled)', '2024-11-27 00:00:00', '2024-12-02 00:00:00', '', '#df5353', '', 43, 0, '2024-10-06 03:08:26', '2025-12-17 19:45:38', NULL, '7480849', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2873, 'Holiday Break (No Official Events Hosted)', '2024-12-23 00:00:00', '2025-01-03 00:00:00', '', '#df5353', 'Iceberg Gaming is a real life comes first community. We have a couple of Blocks a year to have members of the community focus on Family travel as the numbers will already be expected to be low.\nThe servers will still be available for members to play on but we will not be hosting any major official events during this block.', 43, 0, '2024-10-06 03:09:11', '2025-12-17 19:45:38', NULL, '7480850', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2874, 'Demoltions', '2024-10-14 18:30:00', '2024-10-14 20:00:00', '', '#FFFFFF', 'EVENT DETAILS\n: Come learn the differences between differnt kind of explosives and how to use the appropriately and in an effect manor \n\nSERVER\n: 17th Training Server\n\nMAP\n: Yulakia\n\nMODS / MODPACK REQUIRED\n: 17th Shadow mod \n ', 38, 0, '2024-10-07 21:43:26', '2025-12-17 19:45:38', NULL, '7482239', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2875, 'Radio Telephone Operator (RTO)', '2024-10-11 18:00:00', '2024-10-11 20:00:00', 'Training server', '#FFFFFF', 'EVENT DETAILS: Learn how to come talk on that long range and call in support\n\nSERVER: Training Server\n\nMAP: Yulakia\n\nMODS / MODPACK REQUIRED: 17th Mod Pack', 53, 0, '2024-10-07 22:01:48', '2025-12-17 19:45:38', NULL, '7482241', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2876, '[ICEBERG] ARMA - Half Life Styled Operation (BETA)', '2024-10-09 18:00:00', '2024-10-09 21:00:00', 'Iceberg Side Ops', '#FFFFFF', 'Event Details:\n A mod testing event for an upcoming custom mini-series set in the Half-Life universe. I will open the server up an hour prior to let people play army barbie. This is a demo of concepts at play and will include the following:\nFor more details about the project, equipment, and assets, view the \n\nSet your attendance on the \n.\n\nServer:\n Iceberg Side Ops\n\nMap:\n Malden 2035\n\nModset/Additional Mods:\n Download the HTML file and import it (42 mods)\n\n', 67, 0, '2024-10-08 12:57:46', '2025-12-17 19:45:38', NULL, '7490980', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2877, '[ICEBERG] ARMA Half Life: Contain', '2024-10-13 18:00:00', '2024-10-13 21:00:00', 'Iceberg Side Ops', '#FFFFFF', '\n\n\nEvent Details:\n A testing event for an upcoming custom mini-series set in the Half-Life universe. This is a demo of concepts at play and will include the following:\n\n\nServer:\n Iceberg Side Ops\n\nMap:\n Malden 2035\n\nModset/Additional Mods:\n Download the HTML file and import it (42 mods)\n', 67, 0, '2024-10-10 01:51:32', '2025-12-17 19:45:38', NULL, '7597768', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2878, 'STACKIN BODIES WIT KEN: Assaulting fixed positions', '2024-10-16 18:00:00', '2024-10-16 20:00:00', 'P OPS ', '#df5353', 'EVENT DETAILS: We gonna be hitting fixed positions. The same positions i had \ns MoM\nSERVER: Private Operations\nMAP: Yulakiazbfkje (WHATEVER THE CAMPAIGN MAP IS CALLED)\nMODS / MODPACK REQUIRED: PRIVATE OPS', 43, 0, '2024-10-10 22:53:35', '2025-12-17 19:45:38', NULL, '7633857', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2879, '[RESCHEDULED] Fixed Wing CAS Qual', '2024-10-16 17:30:00', '2024-10-16 19:30:00', '', '#ecb200', 'EVENT DETAILS: Fixed Wing CAS Qualification\nSERVER: 17th Training Server\nMAP: Yulakia\nMODS / MODPACK REQUIRED: None required.\nA3 Thermal Improvements and TAW view distance suggested, but not required. Throtte and HOTAS recommended, but not required.', 15, 0, '2024-10-11 01:03:00', '2025-12-17 19:45:38', NULL, '7633863', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2880, 'Basic training', '2024-10-12 15:00:00', '2024-10-12 17:30:00', '', '#ecb200', 'EVENT DETAILS: Basic training\nSERVER: Training Server \nMAP: Yulak( you already know) \nMODS / MODPACK REQUIRED: 17th shadow mod', 493, 0, '2024-10-11 12:23:45', '2025-12-17 19:45:38', NULL, '7636316', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2881, '[ICEBERG ARMA] HL:C Demo Firefight', '2024-11-06 19:00:00', '2024-11-06 22:00:00', 'Iceberg Side Ops Server', '#FFFFFF', 'EVENT DETAILS:\n Conduct a nighttime raid on an enemy radar station and locate the enemy Command Post.\nAssets:\n- Snowmobiles\n- V-280 Omaha VTOL\n\nThis will serve as a demo firefight showing off gameplay mechanics for Half Life: Contain.\n\nLink to spreadsheet: \n Iceberg Side Ops Server\n\nMAP:\n Fjord - Global Ops Terrains\n\nMODS / MODPACK REQUIRED:\n Download the attached html file (53 mods)\n\nhttps://docs.google.com/spreadsheets/d/1mxllXXlbG1_HCkaEzvvxpZN1XoXkNiNrtVBt0rAKW4I/edit?usp=sharing\nSERVER:', 67, 0, '2024-10-14 04:59:54', '2025-12-17 19:45:38', NULL, '7644047', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2882, '[Moved] Battle of Kuwait International Airport', '2024-10-31 16:00:00', '2024-10-31 19:00:00', '', '#FFFFFF', 'Moved to next week\n\n\nEVENT DETAILS:\nTime: February 27th, 1991\nLocation: Kuwait City Airport, 29°14\'15"N 47°58\'26"E\n\nBackground:\nTBA\n\nCurrent Situation:\nTBA\n\nTasking:\nTBA\n\nEnemy forces: TBA\nSERVER: Private Operations Server\nMAP: TBD\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 57, 0, '2024-10-14 15:23:07', '2025-12-17 19:45:38', NULL, '7644822', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2883, 'Operation Good Soup', '2024-10-23 18:00:00', '2024-10-23 21:00:00', 'Private Ops Server', '#FFFFFF', 'EVENT DETAILS: Takistani insurgents took our oilfields. Uncle Sam wants them back.\n\nSERVER: Private Operations Server\n\nMAP: Takistan\n\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Whitelisted mods', 11, 0, '2024-10-17 01:04:43', '2025-12-17 19:45:38', NULL, '7649157', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2884, 'Fixed Wing CAS Qualification', '2024-10-24 17:30:00', '2024-10-24 19:30:00', '', '#ecb200', '', 15, 0, '2024-10-17 10:05:21', '2025-12-17 19:45:38', NULL, '7649932', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2885, '645ish ECHO Mortar carrier INTRO', '2024-10-17 17:45:00', '2024-10-17 18:15:00', 'T SERVER', '#FFFFFF', 'EVENT DETAILS: quick lil hands on of the good mortatruck\nSERVER: 17th Training Server CUSTOM MISSION FILE\nMAP: Yulakia\nMODS / MODPACK REQUIRED: 17th Shadow mod (standard modlist)', 43, 0, '2024-10-17 12:47:43', '2025-12-17 19:45:38', NULL, '7649944', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2886, '(Canceled) Battle of Kuwait International Airport', '2024-11-08 19:00:00', '2024-11-08 22:00:00', '', '#FFFFFF', 'EVENT DETAILS:\nTime: February 27th, 1991\nLocation: Kuwait City Airport, 29°14\'15"N 47°58\'26"E\n\n\nTasking:\nAssault Kuwait City (Zargabad) in line with friendly Marine and Armored elements. Cut a path though the city, eliminate snipers on the high-rises around the airport, and capture the airport. Finally hold against counter attack until the other units can circle around and clear the area beyond the airfield.\n\nEnemy forces: Iraqi National army, expect infantry, armored ground, and air resistance\nSERVER: Private Operations Server\nMAP: Zargabad\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 57, 1, '2024-10-19 21:51:18', '2025-12-17 19:45:38', NULL, '7654498', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2887, 'Iceberg Movie Night - Rockery Horror Picture Show', '2024-10-29 19:00:00', '2024-10-29 21:30:00', '', '#FFFFFF', 'Go Join ->\n\n\n\n', 38, 0, '2024-10-20 04:38:16', '2025-12-17 19:45:38', NULL, '7654549', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2888, 'Ranger School 1', '2024-10-21 18:00:00', '2024-10-21 20:30:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Ranger School (RS) 1-4 covers the basics of infantry movements, strategies, and techniques.\n\nRS 1 will cover the following:\nSERVER: 17th Training Server\nMAP: Yulakia\nMODS / MODPACK REQUIRED: 17th Shadow mod\n\n\n', 67, 0, '2024-10-20 21:28:30', '2025-12-17 19:45:38', NULL, '7654822', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2889, 'Ranger School 2', '2024-10-28 18:00:00', '2024-10-28 21:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Ranger School (RS) 1-4 covers the basics of infantry movements, strategies, and techniques.\n\nRS 2 will cover the following:\nSERVER: 17th Training Server\nMAP: Yulakia\nMODS / MODPACK REQUIRED: 17th Shadow mod\n\n', 67, 0, '2024-10-22 02:18:50', '2025-12-17 19:45:38', NULL, '7660485', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2890, 'Mission Testing for Op Good Soup', '2024-10-22 19:30:00', '2024-10-22 20:30:00', '', '#FFFFFF', 'EVENT DETAILS: Mission Testing\nSERVER: Private Operations Server\nMAP: Takistan\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Whitelisted mods', 11, 0, '2024-10-23 00:06:30', '2025-12-17 19:45:38', NULL, '7661991', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2891, 'NCO meeting', '2024-10-26 16:45:00', '2024-10-26 17:45:00', '', '#ecb200', 'Pretty simple NCO meet to discuss how we should work OP.6\nEVENT DETAILS: NCO meeting\nSERVER: TeamSpeak-chow hall\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 493, 0, '2024-10-25 14:16:13', '2025-12-17 19:45:38', NULL, '7668163', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2892, 'AJ OPERATION', '2024-10-30 18:00:00', '2024-10-30 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: Investigate possible enemy activity disrupting shipping activity in the area.\nSERVER: Private Operations Server\nMAP: Yukala or whatever (Campaign map)\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Whitelisted mods', 28, 0, '2024-10-27 21:25:29', '2025-12-17 19:45:38', NULL, '7672064', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2893, 'Ranger School 3', '2024-11-05 19:00:00', '2024-11-05 22:00:00', '', '#FFFFFF', 'EVENT DETAILS: Ranger School (RS) 1-4 covers the basics of infantry movements, strategies, and techniques.\nRS 3 will cover the following:\nMilitary Operations in Urban Terrain\nSERVER: 17th Training Server\nMAP: Yulakia\nMODS / MODPACK REQUIRED: 17th Shadow mod\n\n\n', 67, 0, '2024-10-29 02:13:53', '2025-12-17 19:45:38', NULL, '7672705', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2894, 'NCO Meeting', '2024-11-02 16:45:00', '2024-11-02 17:30:00', 'Teamspeak -> Chow Hall', '#d89332', '', 19, 0, '2024-11-02 16:57:17', '2025-12-17 19:45:38', NULL, '7680059', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2895, '[RESCHEDULED] Basic Training', '2024-11-07 19:00:00', '2024-11-07 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Yulakia\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 11, 0, '2024-11-04 23:20:30', '2025-12-17 19:45:38', NULL, '7682072', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2896, 'Ranger School 4', '2024-11-12 19:00:00', '2024-11-12 22:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Ranger School (RS) 1-4 covers the basics of infantry movements, strategies, and techniques.\nRS 4 will cover the following:\nClose Quarters Battle and Combat Techniques\nSERVER: 17th Training Server\nMAP: Yulakia\nMODS / MODPACK REQUIRED: 17th Shadow mod', 67, 0, '2024-11-06 04:31:38', '2025-12-17 19:45:38', NULL, '7683647', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2897, '[RESCHEDULED] Half Life Contain: Ch. 1', '2024-11-17 18:00:00', '2024-11-17 21:00:00', 'Iceberg Side Ops Server', '#FFFFFF', 'Event Details: Deployment to Brazil to contain an emerging threat.\n\n\nServer: Iceberg Side Ops\nMap: Isla Pera - GLOBAL OPS TERRAINS\nModset/Additional Mods: Download the .html (53 mods)\n\n', 67, 0, '2024-11-06 04:36:27', '2025-12-17 19:45:38', NULL, '7683650', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2898, 'Advanced triage and Mascass', '2024-11-11 17:30:00', '2024-11-11 18:30:00', '', '#ecb200', 'EVENT DETAILS: Going over advanced triage,\nSERVER: TRAINING SERVER\nMAP: TRAINING MAP\nMODS / MODPACK REQUIRED: SHADOW MOD', 493, 0, '2024-11-07 16:31:10', '2025-12-17 19:45:38', NULL, '7685613', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2899, '[Cancelled] Combat Life Saver (CLS) Training', '2024-11-13 19:00:00', '2024-11-13 21:00:00', '', '#FFFFFF', 'Event Details: Join us for Combat Life Saver training! Learn how a CLS can be so much more than an ammo bearer for the medic!\nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training. This training is suitable for Alpha & Echo.\n\n\nServer: Training Server-Medical Area\nMap: Yalukia', 61, 1, '2024-11-07 17:16:48', '2025-12-17 19:45:38', NULL, '7685616', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2900, '[RESCHEDULED] Basic Training', '2024-11-11 17:00:00', '2024-11-11 19:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Yulakia\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 11, 0, '2024-11-07 20:46:28', '2025-12-17 19:45:38', NULL, '7686090', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2901, '[IB-ARMA] HECU Basic Training', '2024-11-10 19:00:00', '2024-11-10 22:00:00', 'Iceberg Side Ops', '#FFFFFF', 'Event Details:\n Basic Training to help set up key bindings, teach gameplay mechanics, and orientate players to operate in a squad based setting. \nSpreadsheet: \n\n\nServer:\n Iceberg Side Ops\n\nMap:\n Stratis\n\nModset/Additional Mods:\n Download the .html (53 mods)\n\n', 67, 0, '2024-11-08 02:00:37', '2025-12-17 19:45:38', NULL, '7686380', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2902, '[CANCELED] [IB-ARMA] HECU Basic Training', '2024-11-15 20:00:00', '2024-11-15 23:00:00', 'Iceberg Side Ops Server', '#FFFFFF', 'Event Details: Basic Training to help set up key bindings, teach gameplay mechanics, and orientate players to operate in a squad based setting.\nSpreadsheet: \n\nServer: Iceberg Side Ops\nMap: Stratis\nModset/Additional Mods: TBD', 67, 1, '2024-11-08 02:01:41', '2025-12-17 19:45:38', NULL, '7686381', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2903, 'Battalion FTX', '2024-11-16 19:00:00', '2024-11-16 22:00:00', '', '#df5353', 'EVENT DETAILS: Violence of action name of the game\nSERVER: 17th Testing Server\nMAP: TBD\nMODS / MODPACK REQUIRED: Testing Modpack', 27, 0, '2024-11-08 23:41:07', '2025-12-17 19:45:38', NULL, '7688194', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2904, 'RASP', '2024-11-23 19:00:00', '2024-11-23 23:00:00', '', '#df5353', 'EVENT DETAILS: Focus on those infantry skills in squad based scenarios. Come get yo tab!\nSERVER: Private Operations\nMAP: TBD\nMODS / MODPACK REQUIRED: 17th shadow mod', 27, 0, '2024-11-08 23:48:32', '2025-12-17 19:45:38', NULL, '7688196', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2905, '[Reacheduled] NR6 Workshop', '2024-11-14 19:00:00', '2024-11-14 21:00:00', 'Discord where we can screenshare', '#ecb200', 'EVENT DETAILS: Analyzing the insanity that is my campaign missions IOT learn NR6\n\nYou might learn something \nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: Standard 17th modlist. Recommend 3DEN Enhanced and CLV Trigger Debugger for Whitelist.', 468, 0, '2024-11-09 04:29:04', '2025-12-17 19:45:38', NULL, '7688289', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2906, 'NCO meeting', '2024-11-09 17:30:00', '2024-11-09 18:30:00', 'NCO club TS', '#a250e8', '', 493, 0, '2024-11-09 21:42:31', '2025-12-17 19:45:38', NULL, '7689366', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2907, 'Server Shutdown for Mod Upates', '2024-11-14 17:00:00', '2024-11-14 18:00:00', '', '#df5353', 'EVENT DETAILS: Modlist Update\nSERVER: All Servers\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 38, 0, '2024-11-10 04:43:20', '2025-12-17 19:45:38', NULL, '7689418', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2908, 'Alpha / Echo Deadline for Gear/callsign Updates.', '2024-11-13 22:00:00', '2024-11-13 23:00:00', '', '#FFFFFF', 'EVENT DETAILS: Gear Update provided to EagleTrooper\nSERVER: All Servers\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 38, 0, '2024-11-10 04:45:00', '2025-12-17 19:45:38', NULL, '7689420', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2909, 'Pathfinder Bookwork', '2024-11-15 19:00:00', '2024-11-15 21:30:00', 'Training Server ', '#a250e8', 'EVENT DETAILS: Pathfinder Bookwork to learn to do recon without getting spotted. There is a separate qualification\nSERVER: Training Server\nMAP: Training Server Yulakia or Altis\nMODS / MODPACK REQUIRED: Standard 17th modlist and approved whitelist. Recommend A3TI.', 468, 0, '2024-11-10 21:20:26', '2025-12-17 19:45:38', NULL, '7689771', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2910, 'Battalion deadline for mod changes', '2024-11-17 19:00:00', '2024-11-17 20:00:00', '', '#FFFFFF', 'EVENT DETAILS: Final modlist provided to EagleTrooper\nSERVER: All Servers\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-11-11 01:12:16', '2025-12-17 19:45:38', NULL, '7689867', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2911, 'Basic Training', '2024-11-12 17:00:00', '2024-11-12 19:00:00', 'Basic Training', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Yulakia\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 11, 0, '2024-11-11 03:48:16', '2025-12-17 19:45:38', NULL, '7689876', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2912, 'NCO FTX', '2024-11-19 19:00:00', '2024-11-19 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: NCO FTX\nSERVER: 17th Training Server\nMAP: Taki or Zarg\nMODS / MODPACK REQUIRED: 17th Shadow mod \nBattalion Mods\nIn this FTX Series we will do a walk/run training for Alpha Company NCO improvement. We will be going over skill sets for NCOs starting at basic stuff and moving into more complex maneuvers as we progress. We will also dip into things we fail on as the campaign goes on. \nThis FTX series will be focusing on improving our Alpha NCOs skill sets so they can in-turn improve the lower enlisted skills. \n\n*Every rank is welcome to attend, however, the NCOs will be the main focus on FTL and SL. \n*Echo pilots are welcome/needed for infils ect. ', 1067, 0, '2024-11-13 19:31:33', '2025-12-17 19:45:38', NULL, '7692763', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2913, 'NCO Meeting', '2024-11-16 18:00:00', '2024-11-16 18:30:00', '', '#FFFFFF', '', 933, 0, '2024-11-16 18:44:22', '2025-12-17 19:45:38', NULL, '7697552', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2914, 'Command Meeting', '2024-11-16 22:00:00', '2024-11-16 23:00:00', '', '#ecb200', 'EVENT DETAILS: Usual Command meeting. Will be going over the FTX, NCO roles and responsibilities, possible rank restructure, and Mods.\nSERVER: TeamSpeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-11-16 23:09:35', '2025-12-17 19:45:38', NULL, '7697743', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2915, 'Urban Operations FTX', '2024-11-21 19:00:00', '2024-11-21 22:00:00', '', '#FFFFFF', 'EVENT DETAILS: Urban Operations FTX, we gonna kick in doors and blast dudes to prepare for fallujah.\nSERVER: 17th Operations Server\nMAP: Zargabad\nMODS / MODPACK REQUIRED: 17th Shadow mod', 28, 0, '2024-11-17 05:48:06', '2025-12-17 19:45:38', NULL, '7698151', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2916, 'Combat Life Saver (CLS) Training', '2024-11-20 19:00:00', '2024-11-20 21:00:00', '', '#ecb200', 'Event Details: Join us for Combat Life Saver training! Learn how a CLS can be so much more than an ammo bearer for the medic!\nThere will be qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training. This training is suitable for Alpha & Echo.\nServer: Training Server-Medical Area\nMap: Yalukia\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 61, 0, '2024-11-17 16:58:21', '2025-12-17 19:45:38', NULL, '7699006', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2917, 'Command Meeting', '2024-11-23 22:00:00', '2024-11-23 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting to make final decisions prior to the campaign and implement over the break.\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-11-18 19:22:06', '2025-12-17 19:45:38', NULL, '7699878', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2918, '[IB-ARMA] Half Life Contain: Ch. 1', '2024-11-24 18:00:00', '2024-11-24 21:00:00', 'Iceberg Side Ops Server', '#FFFFFF', '\n\n\nEvent Details:\n Deployment to Brazil to contain an emerging threat.\n\n\n\nServer:\n Iceberg Side Ops\n\nMap:\n Isla Pera - GLOBAL OPS TERRAINS\n\nModset/Additional Mods:\n Download the .html (53 mods)\n\n', 67, 0, '2024-11-20 22:17:49', '2025-12-17 19:45:38', NULL, '7703129', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2919, 'NCO FTX', '2024-11-22 19:00:00', '2024-11-22 22:00:00', '', '#FFFFFF', 'EVENT DETAILS: NCO FTX\nSERVER: 17th Training Server\nMAP: Taki or Zarg\nMODS / MODPACK REQUIRED: 17th Shadow mod\nBattalion Mods\nIn this FTX Series we will do a walk/run training for Alpha Company NCO improvement. We will be going over skill sets for NCOs starting at basic stuff and moving into more complex maneuvers as we progress. We will also dip into things we fail on as the campaign goes on.\nThis FTX series will be focusing on improving our Alpha NCOs skill sets so they can in-turn improve the lower enlisted skills.\n\n*Every rank is welcome to attend, however, the NCOs will be the main focus on FTL and SL.\n*Echo pilots are welcome/needed for infils ect.', 933, 0, '2024-11-21 19:37:16', '2025-12-17 19:45:38', NULL, '7704043', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2920, 'Basic Training', '2024-11-24 16:00:00', '2024-11-24 18:30:00', '', '#a250e8', 'EVENT DETAILS: Basic Training \nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 2, 0, '2024-11-23 19:49:19', '2025-12-17 19:45:38', NULL, '7708406', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2921, 'Pathfinder Bookwork', '2024-11-26 13:30:00', '2024-11-26 15:30:00', 'Training Server', '#a250e8', 'EVENT DETAILS: Pathfinder Bookwork to learn to do recon without getting spotted. There is a separate qualification\nSERVER: Training Server\nMAP: Training Server Yulakia or Altis\nMODS / MODPACK REQUIRED: Standard 17th modlist and approved whitelist. Recommend A3TI.', 468, 0, '2024-11-24 01:01:38', '2025-12-17 19:45:38', NULL, '7708460', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2922, 'Mechanized Training/Qual (Rescheduled)', '2024-12-05 18:00:00', '2024-12-05 20:00:00', 'Training Server', '#d89332', '', 53, 0, '2024-11-25 22:43:42', '2025-12-17 19:45:38', NULL, '7710890', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2923, '[IB-ARMA] Half Life Contain: Chapter 2', '2024-12-08 18:00:00', '2024-12-08 21:00:00', 'Iceberg Side Ops Server', '#FFFFFF', '\n\n\nEvent Details:\n Battle for the Dam.\n\n\n\nServer:\n Iceberg Side Ops\n\nMap:\n Isla Pera - GLOBAL OPS TERRAINS\n\nModset/Additional Mods:\n Download the .html (53 mods)\n\n', 67, 0, '2024-11-26 00:25:24', '2025-12-17 19:45:38', NULL, '7711281', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2924, 'Operation Tempest - One Off', '2024-11-30 19:00:00', '2024-11-30 22:30:00', '', '#df5353', 'EVENT DETAILS: Sneaky atmospheric operation with choices and consequences. Small team tactics and cohesion stressed.\nSERVER: Private Operations Server\nMAP: TBD\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 19, 0, '2024-11-26 14:27:14', '2025-12-17 19:45:38', NULL, '7712467', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2925, '7 Days: Operation Odessa', '2024-12-14 19:00:00', '2024-12-14 22:00:00', '', '#df5353', 'EVENT DETAILS: \nSERVER: Private Operations Server\nMAP: Fallujah\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 43, 0, '2024-11-28 03:18:29', '2025-12-17 19:45:38', NULL, '7713584', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2926, '7 Days: Operation Odessa', '2024-12-07 19:00:00', '2024-12-07 22:00:00', '', '#df5353', 'EVENT DETAILS: The Crossing. 17th Ranger Bn Has been tasked to clear a bridgehead to allow 3ID elements to roll into the city of Fallujah\nSERVER: Private Operations Server\nMAP: Fallujah\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 43, 0, '2024-11-28 03:18:29', '2025-12-17 19:45:38', NULL, '7713585', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2927, '7 Days: Operation Odessa', '2024-12-21 19:00:00', '2024-12-21 22:00:00', '', '#df5353', 'EVENT DETAILS: \nSERVER: Private Operations Server\nMAP: Fallujah\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 43, 0, '2024-11-28 03:18:29', '2025-12-17 19:45:38', NULL, '7713586', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2928, '[CANCELED] Fixed Wing Logistics Training', '2024-12-03 19:00:00', '2024-12-03 20:00:00', 'Northen Airfield', '#d89332', 'EVENT DETAILS\n: Come learn how to fly BIG PLANE\n\nThis training will cover our FW Logistics assets (C-130/C-17)\n\n\nServer\n: Training Server\n\nMAP\n: Altis\n\nADITIONAL MODS REQUIRED\n: N/A', 42, 1, '2024-12-01 17:33:31', '2025-12-17 19:45:38', NULL, '7718132', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2929, 'Mechanized Training/Qual', '2024-12-09 18:00:00', '2024-12-09 19:00:00', 'Training Server', '#d89332', '', 53, 0, '2024-12-06 08:39:55', '2025-12-17 19:45:38', NULL, '7723465', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2930, '[Rescheduled]Pop Rocks Wednesday Op', '2024-12-11 19:00:00', '2024-12-11 21:30:00', '', '#ecb200', 'EVENT DETAILS: TBD\nSERVER: Private Operations Server\nMAP: TBD\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 19, 0, '2024-12-06 23:06:13', '2025-12-17 19:45:38', NULL, '7724554', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2931, 'nco meeting', '2024-12-07 18:00:00', '2024-12-07 19:00:00', '', '#ecb200', '', 933, 0, '2024-12-07 20:13:06', '2025-12-17 19:45:38', NULL, '7725490', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2932, 'Command Meeting', '2024-12-07 22:00:00', '2024-12-07 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725949', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2933, 'Command Meeting', '2024-12-21 22:00:00', '2024-12-21 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725950', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2934, 'Command Meeting', '2025-01-11 22:00:00', '2025-01-11 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725952', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2935, 'Command Meeting', '2025-02-01 22:00:00', '2025-02-01 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725953', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2936, 'Command Meeting', '2025-01-04 22:00:00', '2025-01-04 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725954', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2937, 'Command Meeting', '2024-12-14 22:00:00', '2024-12-14 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725955', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2938, 'Command Meeting', '2025-01-18 22:00:00', '2025-01-18 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725956', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2939, 'Command Meeting', '2025-02-15 22:00:00', '2025-02-15 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725957', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2940, 'Command Meeting', '2025-01-25 22:00:00', '2025-01-25 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725958', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2941, 'Command Meeting', '2025-02-08 22:00:00', '2025-02-08 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725959', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2942, 'Command Meeting', '2025-02-22 22:00:00', '2025-02-22 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725960', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2943, 'Command Meeting', '2025-03-08 22:00:00', '2025-03-08 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725961', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2944, 'Command Meeting', '2025-03-01 22:00:00', '2025-03-01 23:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725963', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2945, 'Command Meeting', '2025-03-15 21:00:00', '2025-03-15 22:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725964', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2946, 'Command Meeting', '2025-03-29 21:00:00', '2025-03-29 22:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2024-12-07 22:02:32', '2025-12-17 19:45:38', NULL, '7725965', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2947, 'Basic Training', '2024-12-13 19:00:00', '2024-12-13 21:30:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training \nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 2, 0, '2024-12-09 03:07:29', '2025-12-17 19:45:38', NULL, '7727445', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2948, '[IB-ARMA] Half Life Contain: Chapter 1 RERUN', '2024-12-28 19:00:00', '2024-12-28 22:00:00', 'Iceberg Side Ops Server', '#FFFFFF', '\n\n\nEvent Details:\n Deployment to Brazil to contain an emerging threat.\n\n\n\n\n\nServer:\n Iceberg Side Ops\n\nMap:\n Isla Pera - GLOBAL OPS TERRAINS\n\nModset/Additional Mods:\n Download the .html (53 mods)\n\n\n', 67, 0, '2024-12-10 02:37:01', '2025-12-17 19:45:38', NULL, '7728212', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2949, '[IB-ARMA] Half Life Contain: Chapter 2 RERUN', '2024-12-29 18:00:00', '2024-12-29 21:00:00', 'Iceberg Side Ops Server', '#FFFFFF', '\n\n\nEvent Details:\n Battle for the Dam.\n\n\n\n\n\nServer:\n Iceberg Side Ops\n\nMap:\n Isla Pera - GLOBAL OPS TERRAINS\n\nModset/Additional Mods:\n Download the .html (53 mods)\n\n\n', 67, 0, '2024-12-10 02:37:21', '2025-12-17 19:45:38', NULL, '7728213', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2950, 'MISSION TEST', '2024-12-12 19:30:00', '2024-12-12 22:00:00', '', '#df5353', 'EVENT DETAILS: testing this weeks mission\nSERVER: Private Operations Server\nMAP: Fallujah\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 43, 0, '2024-12-10 23:01:32', '2025-12-17 19:45:38', NULL, '7728952', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2951, 'Pathfinder Qualification', '2024-12-12 18:00:00', '2024-12-12 20:30:00', '', '#a250e8', 'EVENT DETAILS: Pathfinder Qualification. Pathfinder Bookwork is required to attend.\nSERVER: Training Server\nMAP: Chernarus\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Approved Whitelisted mods. A3TI recommended.', 468, 0, '2024-12-11 01:08:49', '2025-12-17 19:45:38', NULL, '7729509', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2952, 'Basic Training', '2024-12-15 17:00:00', '2024-12-15 19:00:00', '', '#ecb200', '', 11, 0, '2024-12-11 16:37:52', '2025-12-17 19:45:38', NULL, '7730167', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2953, '[RESCHEDULED] Radio Telephone Operator (RTO) TRAINING', '2024-12-15 15:00:00', '2024-12-15 17:30:00', '', '#ecb200', 'EVENT DETAILS: Training and Qualification to become an RTO in the 17th. Learn how to be a Romeo.\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Shadow mod\n\n\n\n', 12, 0, '2024-12-14 06:13:27', '2025-12-17 19:45:38', NULL, '7733836', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2954, '[Canceled] nco meeting', '2024-12-14 18:00:00', '2024-12-14 19:00:00', '', '#FFFFFF', '', 933, 1, '2024-12-14 17:42:51', '2025-12-17 19:45:38', NULL, '7734260', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2955, 'Echo Gunnery Course', '2024-12-16 17:30:00', '2024-12-16 20:00:00', '', '#d89332', 'EVENT DETAILS- Learn how to employ the big guns. Where and how to shoot. \nSERVER- 17th training server\nMAP- Altis \nMODPACK- 17th Shadowmod\nAdditional Mods- A3TI Thermal Enhancement ', 7, 0, '2024-12-14 23:43:16', '2025-12-17 19:45:38', NULL, '7735094', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2956, '[IB-ARMA] HECU Basic Training', '2024-12-15 18:00:00', '2024-12-15 21:00:00', 'Iceberg Side Ops Server', '#FFFFFF', '\n\nEvent Details:\n Basic Training to help set up key bindings, teach gameplay mechanics, and orientate players to operate in a squad based setting. \n\n\n\n\n\n\nServer:\n Iceberg Side Ops\n\nMap:\n Stratis\n\nModset/Additional Mods:\n Download the .html (53 mods)\n\n\n\n', 67, 0, '2024-12-15 00:59:21', '2025-12-17 19:45:38', NULL, '7735101', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2957, 'Radio Telephone Operator (RTO) TRAINING', '2024-12-17 18:30:00', '2024-12-17 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: Training and Qualification to become an RTO in the 17th. Learn how to be a Romeo.\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Shadow mod\n\n\n\n', 12, 0, '2024-12-15 18:04:00', '2025-12-17 19:45:38', NULL, '7735370', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2958, 'Zeus op', '2024-12-18 19:00:00', '2024-12-18 22:00:00', '', '#FFFFFF', 'EVENT DETAILS- Zeus op\nSERVER- Private ops server\nMAP- Bystryca\nMODPACK- 17th Shadowmod\nAdditional Mods- none', 933, 0, '2024-12-18 21:23:19', '2025-12-17 19:45:38', NULL, '7738518', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2959, 'Liberation 17th Beta Test', '2024-12-23 19:00:00', '2024-12-27 22:00:00', '', '#FFFFFF', 'EVENT DETAILS: Testing Mission Params and Opfor Preset\nSERVER: Private Operations Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 43, 0, '2024-12-20 20:39:38', '2025-12-17 19:45:38', NULL, '7747388', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2960, '[Iceberg] Movie Night', '2024-12-20 18:30:00', '2024-12-20 23:30:00', '', '#FFFFFF', '\n\n', 38, 0, '2024-12-21 00:24:10', '2025-12-17 19:45:38', NULL, '7747462', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2961, '[Canceled] NCO meeting', '2024-12-21 17:30:00', '2024-12-21 18:30:00', '', '#ecb200', 'Going over slotting and a rough plan', 493, 1, '2024-12-21 22:35:32', '2025-12-17 19:45:38', NULL, '7748626', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2962, 'Liberation Campaign Beta Unofficial Organized Op', '2024-12-27 19:00:00', '2024-12-27 22:00:00', '', '#df5353', 'EVENT DETAILS:\nSERVER: Private Operations Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2024-12-23 21:02:53', '2025-12-17 19:45:38', NULL, '7750632', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2963, 'Liberation Beta Test Official Op', '2025-01-04 19:00:00', '2025-01-04 22:00:00', '', '#df5353', 'EVENT DETAILS:\nSERVER: Private Operations Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2024-12-23 22:24:02', '2025-12-17 19:45:38', NULL, '7750636', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2964, '7 Days Operation Odesa HB Dive', '2025-01-11 19:00:00', '2025-01-11 22:30:00', '', '#df5353', 'EVENT DETAILS: mission 4\nSERVER: Private Operations Server\nMAP: Fallujah\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 43, 0, '2025-01-07 03:13:40', '2025-12-17 19:45:38', NULL, '7796540', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2965, '7 Days: Operation Odessa', '2025-01-18 19:00:00', '2025-01-18 22:30:00', '', '#df5353', 'EVENT DETAILS: Mision 5\nSERVER: Private Operations Server\nMAP: Fallujah\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 43, 0, '2025-01-07 03:15:16', '2025-12-17 19:45:38', NULL, '7796541', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2966, 'Op Iron Fist', '2025-01-25 19:00:00', '2025-01-25 22:00:00', '', '#df5353', 'EVENT DETAILS: Finale\nSERVER: Private Operations Server\nMAP: Fallujah\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 43, 0, '2025-01-07 03:16:29', '2025-12-17 19:45:38', NULL, '7796542', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2967, 'Basic Training Rescheduled', '2025-01-08 19:00:00', '2025-01-08 21:30:00', '', '#ecb200', 'EVENT DETAILS: Basic Training \nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 2, 0, '2025-01-07 14:53:08', '2025-12-17 19:45:38', NULL, '7797181', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2968, '(POSTPONED)A 17th Meeting with Ken', '2025-01-12 16:00:00', '2025-01-12 17:00:00', '', '#ecb200', 'I need to chop it up wit gang. My homie Beachhead from 9th Commando hit me up a cool AF proposal that both communities could benefit from slide through if this peaks ya interest.\nIf the bit cancels this it\'s not really canceled it due to it not following event formating', 43, 0, '2025-01-08 20:09:42', '2025-12-17 19:45:38', NULL, '7797967', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2969, 'NCO Meeting', '2025-01-11 17:30:00', '2025-01-11 18:35:00', 'Chow hall TS', '#ecb200', 'EVENT DETAILS: NCO meeting\nSERVER: Chow Hall TS\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 493, 0, '2025-01-11 21:13:57', '2025-12-17 19:45:38', NULL, '7800474', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2970, '[Cancelled] Mechanized Training', '2025-01-14 17:30:00', '2025-01-14 20:00:00', '', '#d89332', 'EVENT DETAILS- Learn best practices for commanding armored vehicles. \nSERVER- 17th Training Server \nMAP- Altis\nModpack- 17th Shadow Mod \n\nCancelled due to no sign ups or show ups. ', 7, 1, '2025-01-12 15:22:17', '2025-12-17 19:45:38', NULL, '7800991', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2971, 'Ranger School 3', '2025-01-23 19:00:00', '2025-01-23 22:00:00', '17th Training Server', '#FFFFFF', 'Event Details: Ranger School 3 (MOUT) teaches the basics of urban combat and movement, especially pathing and cover. \nServer: Training Server\nMap: Altis\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 11, 0, '2025-01-15 00:36:51', '2025-12-17 19:45:38', NULL, '7812230', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2972, '68W Training', '2025-01-21 18:00:00', '2025-01-21 20:00:00', '', '#FFFFFF', 'Event Details: Join us for 68W training! How to be a medic in the 17th\nThere will be qualification included at the end of this course to earn the 68W check. This training is suitable for Alpha & Echo.\nServer: Training Server-Medical Area\nMap: Altis\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 61, 0, '2025-01-15 20:11:57', '2025-12-17 19:45:38', NULL, '7812563', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2973, '[CANCELLED] General Flight Training', '2025-01-23 18:30:00', '2025-01-23 20:30:00', '', '#d89332', 'Surprise work trip, so I cannot do this time any more', 15, 1, '2025-01-16 19:47:24', '2025-12-17 19:45:38', NULL, '7813155', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2974, 'NCO meeting', '2025-01-18 17:30:00', '2025-01-18 18:30:00', '', '#ecb200', 'EVENT DETAILS: NCO meeting\nSERVER: Chow Hall TS\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 493, 0, '2025-01-18 18:28:26', '2025-12-17 19:45:38', NULL, '7814958', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2975, 'NCO meeting', '2025-01-25 17:45:00', '2025-01-25 18:30:00', '', '#ecb200', 'EVENT DETAILS: NCO meeting\nSERVER: Chow Hall TS\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 493, 0, '2025-01-25 20:26:13', '2025-12-17 19:45:38', NULL, '7823615', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2976, 'Modpack Testing Deadline', '2025-01-28 20:00:00', '2025-01-28 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: Deadline for Mod testing Pack\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 38, 0, '2025-01-26 05:02:13', '2025-12-17 19:45:38', NULL, '7823723', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2977, 'Main Modpack Deadline', '2025-02-10 20:30:00', '2025-02-10 22:30:00', '', '#FFFFFF', 'EVENT DETAILS: Deadline for Modpack / Loadouts / Kits\nSERVER: All Arma Servers offline\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 38, 0, '2025-01-26 05:02:33', '2025-12-17 19:45:38', NULL, '7823724', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2978, 'General Flight Practice / Repetitions', '2025-01-30 18:30:00', '2025-01-30 20:00:00', '17th Training Server', '#d89332', 'General flight formation practice, landing reps. \nGeneral works.', 19, 0, '2025-01-26 05:06:35', '2025-12-17 19:45:38', NULL, '7823725', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2979, 'Battalion FTX', '2025-02-01 19:00:00', '2025-02-01 22:00:00', '', '#df5353', 'EVENT DETAILS: Unit FTX/Mod validation\nSERVER: TESTING Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: Testing Shadowmod ... Link in \n ', 27, 0, '2025-01-28 22:21:49', '2025-12-17 19:45:38', NULL, '7825913', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2980, 'Teach the Instructor', '2025-01-31 19:30:00', '2025-01-31 21:30:00', '', '#FFFFFF', 'EVENT DETAILS: This event is a very dynamic course that I have been asked to host. The goal of this training is to provide tools, skills, and ideas of how to teach / training material. \n\nA few examples will be provided and skills will be demonstrated with said examples. The remainder of the course will be a Q&A Format to help fill in blanks and give members an idea of how they can adjust their training styles to better flow for the students / participates they are teaching. \nEveryone learns differently so we must adapt to help them learn materials the best way they can. We must be flexible to allow them to succeed. \nEveryone is invited but \n are the target of this training.\n\nSERVER: TBD / May be Teamspeak / Discord Only depending on attendance.\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 38, 0, '2025-01-28 23:24:54', '2025-12-17 19:45:38', NULL, '7825920', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2981, 'Pop Rocks’ Woodland Fights', '2025-01-29 19:00:00', '2025-01-29 21:00:00', '17th Private Operations', '#ecb200', '', 19, 0, '2025-01-29 16:58:40', '2025-12-17 19:45:38', NULL, '7826124', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2982, 'Operation Snow Angels', '2025-02-05 19:00:00', '2025-02-05 20:30:00', '17th Private Operations Server', '#df5353', 'EVENT DETAILS: Wednesday Op - Patrols and reactions to contact.\nSERVER: 17th Private Operations\nMAP: Chernaurus Winter \nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelist', 19, 0, '2025-01-30 00:18:16', '2025-12-17 19:45:38', NULL, '7826209', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2983, 'Basic Training', '2025-02-01 13:00:00', '2025-02-01 15:45:00', '17th Training Server', '#ecb200', 'EVENT DETAILS: Basic Training\nSERVER: 17th training server\nMAP: (whatever the training map is)\nMODS / MODPACK REQUIRED: 17th Shadow mod ', 64, 0, '2025-02-01 16:58:23', '2025-12-17 19:45:38', NULL, '7829499', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2984, 'Rotary CAS Training', '2025-02-06 18:30:00', '2025-02-06 19:30:00', 'Northern Airfield', '#d89332', 'EVENT DETAILS: Come learn how to dodge stingers, 50 cals and ak-47s in a helicopter, and maybe shoot some stufff.\n\n \n \n Toast will be picking up this training since i\'m unable to attend\n\n\nSERVER: Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Standard\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/345a8732-cb80-4eda-9eff-fbb8161675ac/docs/384288\n\nSERVER:', 42, 0, '2025-02-01 23:24:16', '2025-12-17 19:45:38', NULL, '7830134', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2985, 'RASP', '2025-02-08 19:00:00', '2025-02-08 22:00:00', '', '#df5353', 'EVENT DETAILS: RASP\nSERVER: Mod Validation Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th TESTING Shadow Mod', 27, 0, '2025-02-03 21:29:00', '2025-12-17 19:45:38', NULL, '7834742', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2986, 'Basic Training', '2025-02-07 16:30:00', '2025-02-07 19:30:00', '', '#ecb200', 'EVENT DETAILS: Basic training \nSERVER: Training server \nMAP: training map \nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whiteliste', 493, 0, '2025-02-04 18:17:58', '2025-12-17 19:45:38', NULL, '7835405', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2987, '(CANCELED)Basic Training', '2025-02-08 14:30:00', '2025-02-08 17:30:00', '', '#ecb200', 'EVENT DETAILS: Basic training \nSERVER: Training server \nMAP: training map \nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whiteliste', 493, 1, '2025-02-07 14:29:57', '2025-12-17 19:45:38', NULL, '7839568', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2988, 'Cadre meeting', '2025-02-08 17:45:00', '2025-02-08 18:15:00', '', '#ecb200', 'EVENT DETAILS: cadre meeting \nSERVER: Team speak NCO Club\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 493, 0, '2025-02-07 14:33:35', '2025-12-17 19:45:38', NULL, '7839569', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2989, 'Operation Isekai #1', '2025-02-15 19:00:00', '2025-02-15 22:00:00', '', '#df5353', 'EVENT DETAILS: Kickoff of the Liberation Campaign\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-02-10 19:50:57', '2025-12-17 19:45:38', NULL, '7842108', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2990, 'NCO Meeting', '2025-02-15 18:00:00', '2025-02-15 19:00:00', '', '#FFFFFF', 'EVENT DETAILS: NCO Meeting\nSERVER: Chow Hall, Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 11, 0, '2025-02-11 03:31:29', '2025-12-17 19:45:38', NULL, '7842898', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2991, 'Operation Isekai #2', '2025-02-22 19:00:00', '2025-02-22 22:00:00', '', '#df5353', 'EVENT DETAILS: TBD\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-02-11 03:58:14', '2025-12-17 19:45:38', NULL, '7842902', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2992, 'Operation Isekai #3', '2025-03-01 19:00:00', '2025-03-01 22:00:00', '', '#df5353', 'EVENT DETAILS: Heading to the port of Al Nabq to see the Beach Episode.\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-02-11 03:58:14', '2025-12-17 19:45:38', NULL, '7842903', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2993, 'Operation Isekai #5', '2025-03-15 18:00:00', '2025-03-15 21:00:00', '', '#df5353', 'EVENT DETAILS: TBD\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-02-11 03:58:14', '2025-12-17 19:45:38', NULL, '7842904', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2994, 'Operation Isekai #4', '2025-03-08 19:00:00', '2025-03-08 22:00:00', '', '#df5353', 'EVENT DETAILS: TBD\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-02-11 03:58:14', '2025-12-17 19:45:38', NULL, '7842905', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2995, 'Command Operational Planning Meeting', '2025-02-17 20:00:00', '2025-02-17 21:00:00', '', '#355bf8', 'EVENT DETAILS: Strategic planning for the campaign\nSERVER: Discord HHC Office\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-02-11 04:02:32', '2025-12-17 19:45:38', NULL, '7842906', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2996, 'Command Operational Planning Meeting', '2025-02-24 20:00:00', '2025-02-24 21:00:00', '', '#355bf8', 'EVENT DETAILS: Strategic planning for the campaign\nSERVER: Discord HHC Office\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-02-11 04:02:32', '2025-12-17 19:45:38', NULL, '7842907', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2997, 'Command Operational Planning Meeting', '2025-03-03 20:00:00', '2025-03-03 21:00:00', '', '#355bf8', 'EVENT DETAILS: Strategic planning for the campaign\nSERVER: Discord HHC Office\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-02-11 04:02:32', '2025-12-17 19:45:38', NULL, '7842908', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2998, 'Command Operational Planning Meeting', '2025-03-10 19:00:00', '2025-03-10 20:00:00', '', '#355bf8', 'EVENT DETAILS: Strategic planning for the campaign\nSERVER: Discord HHC Office\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-02-11 04:02:32', '2025-12-17 19:45:38', NULL, '7842909', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (2999, 'Basic Training', '2025-02-13 18:00:00', '2025-02-13 20:00:00', '', '#ecb200', 'EVENT DETAILS: Basic Training \nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 2, 0, '2025-02-13 01:17:17', '2025-12-17 19:45:38', NULL, '7844784', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3000, 'Heavy Weapons Training', '2025-02-22 14:00:00', '2025-02-22 16:00:00', 'Training Server', '#a250e8', 'EVENT DETAILS: Learn to use AT weapons and Crew Served Weapons to weigh down your kit\nSERVER: 17th Training Server (Rocket Range)\nMAP: Training server \nMODS / MODPACK REQUIRED: 17th Shadow mod (standard modlist)', 5, 0, '2025-02-17 19:36:56', '2025-12-17 19:45:38', NULL, '7852541', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3001, 'Radio Telephone Operator (RTO) TRAINING', '2025-02-21 19:00:00', '2025-02-21 21:30:00', '', '#FFFFFF', 'EVENT DETAILS: Training and Qualification to become an RTO in the 17th. Learn how to be a Romeo.\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Shadow mod\n\nTime will vary depending on attendance.\n\n\n', 12, 0, '2025-02-18 16:33:55', '2025-12-17 19:45:39', NULL, '7854184', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3002, 'NCO Meeting', '2025-02-22 18:00:00', '2025-02-22 19:00:00', '', '#FFFFFF', 'EVENT DETAILS: NCO Meeting\nSERVER: Chow Hall, Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 11, 0, '2025-02-18 20:12:27', '2025-12-17 19:45:39', NULL, '7854212', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3003, 'IDF Training and Qual', '2025-02-20 18:00:00', '2025-02-20 20:30:00', '', '#d89332', 'Event Details- Learn how to calculate fire missions with Mortars and heavy artillery. \nServer- 17th Training Server\nMap- Altis\nMods- 17th Shadowmod', 7, 0, '2025-02-18 21:31:19', '2025-12-17 19:45:39', NULL, '7854589', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3004, 'Combat Diver School', '2025-02-20 18:30:00', '2025-02-20 21:30:00', '', '#a250e8', 'EVENT DETAILS: Go under water to insert, recon, or blow shit up\nSERVER: 17th Training Server\nMAP: Training Map Altis/Al Rayak (IF IT\'S READY KEKW)\nMODS / MODPACK REQUIRED: Shadowmod + approved whitelisted mods', 468, 0, '2025-02-19 00:06:27', '2025-12-17 19:45:39', NULL, '7854599', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3005, 'Lib Operations', '2025-02-19 18:00:00', '2025-02-19 22:00:00', '', '#FFFFFF', 'EVENT DETAILS: TBD\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 23, 0, '2025-02-19 00:16:40', '2025-12-17 19:45:39', NULL, '7854604', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3006, 'Operation Mudslide', '2025-02-26 19:00:00', '2025-02-26 21:00:00', '17th Private Operations Server', '#FFFFFF', 'EVENT DETAILS: Wednesday Op - Patrols and Compound Raid\nSERVER: 17th Private Operations\nMAP: Deniland\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelist + Deniland', 64, 0, '2025-02-19 23:26:40', '2025-12-17 19:45:39', NULL, '7855719', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3007, 'Liberation Midweek Operations', '2025-02-25 20:00:00', '2025-02-25 22:00:00', '', '#ecb200', 'EVENT DETAILS: LIBERATING AL RAYAK LET\'S GET IT\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-02-24 17:45:34', '2025-12-17 19:45:39', NULL, '7860683', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3008, 'Liberation Midweek Operations', '2025-02-27 20:00:00', '2025-02-27 22:00:00', '', '#ecb200', 'EVENT DETAILS: LIBERATING AL RAYAK LET\'S GET IT\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-02-24 17:45:34', '2025-12-17 19:45:39', NULL, '7860684', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3009, 'Ranger School 1', '2025-03-04 19:00:00', '2025-03-04 21:00:00', '', '#ecb200', 'Event Details: Ranger School 1\nServer: Training Server\nMap: Altis\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 11, 0, '2025-02-27 16:08:16', '2025-12-17 19:45:39', NULL, '7864019', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3010, 'NCO Course redux FTX', '2025-03-08 15:30:00', '2025-03-08 18:30:00', '', '#FFFFFF', 'EVENT DETAILS: A redone version of the original NCO Course. Attending and participating in a leadership position at least once (FTL/SL/PL) will allow you to earn the NCO Course checkmark.\nYou do not need to be an NCO to participate.\nYou do not need to be an NCO to earn your checkmark.\nAll are welcome!\nSERVER: Private Ops\nMAP: Malden 2035\nMODS: Standard Modpack', 61, 0, '2025-02-28 23:05:47', '2025-12-17 19:45:39', NULL, '7864879', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3011, 'NCO meeting', '2025-03-01 17:30:00', '2025-03-01 18:15:00', 'TS', '#ecb200', 'EVENT DETAILS: NCO Meeting\nSERVER: Chow Hall, Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/', 493, 0, '2025-03-01 20:39:24', '2025-12-17 19:45:39', NULL, '7865624', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3012, 'RASP', '2025-03-22 18:00:00', '2025-03-22 21:00:00', '', '#df5353', 'EVENT DETAILS: RASP\nSERVER: Private Operations Server\nMAP: Chernarus\nMODS / MODPACK REQUIRED: Standard Shadow mod + Approved Whitelisted mods of players\' discretion', 468, 0, '2025-03-02 04:03:17', '2025-12-17 19:45:39', NULL, '7866095', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3013, 'Liberation Midweek Operations', '2025-03-06 19:00:00', '2025-03-06 22:00:00', '', '#FFFFFF', 'EVENT DETAILS: LIBERATING AL RAYAK\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 11, 0, '2025-03-04 03:10:06', '2025-12-17 19:45:39', NULL, '7869170', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3014, 'Isekai #7', '2025-04-05 18:00:00', '2025-04-05 21:00:00', '', '#ecb200', 'EVENT DETAILS: Amphibious operations\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-03-04 03:36:28', '2025-12-17 19:45:39', NULL, '7869185', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3015, 'One shot mission BY KEN', '2025-04-26 18:00:00', '2025-04-26 21:00:00', '', '#ecb200', 'EVENT DETAILS: WE GOING TO THE BEACH\nSERVER: Testing Validation Server\nMAP: Malden\nMODS / MODPACK REQUIRED: 17th MOD TESTING VALIDATION PACK', 27, 0, '2025-03-04 03:36:28', '2025-12-17 19:45:39', NULL, '7869186', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3016, 'Isekai #9 Finale', '2025-04-19 18:00:00', '2025-04-19 21:00:00', '', '#df5353', 'EVENT DETAILS: Finishing off the forces in the SE and going home\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-03-04 03:36:28', '2025-12-17 19:45:39', NULL, '7869187', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3017, 'Isekai #6', '2025-03-29 18:00:00', '2025-03-29 21:00:00', '', '#df5353', 'EVENT DETAILS: TBD\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-03-04 03:36:28', '2025-12-17 19:45:39', NULL, '7869188', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3018, 'Isekai #8', '2025-04-12 18:00:00', '2025-04-12 21:00:00', '', '#ecb200', 'EVENT DETAILS: The Kessel Run\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 27, 0, '2025-03-04 03:36:28', '2025-12-17 19:45:39', NULL, '7869189', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3019, 'Command Meeting', '2025-04-05 21:00:00', '2025-04-05 22:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-03-04 03:38:27', '2025-12-17 19:45:39', NULL, '7869190', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3020, 'Command Meeting', '2025-04-19 21:00:00', '2025-04-19 22:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-03-04 03:38:27', '2025-12-17 19:45:39', NULL, '7869191', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3021, 'Command Meeting', '2025-04-12 21:00:00', '2025-04-12 22:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-03-04 03:38:27', '2025-12-17 19:45:39', NULL, '7869192', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3022, 'Command Meeting', '2025-04-26 21:00:00', '2025-04-26 22:00:00', '', '#a250e8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-03-04 03:38:27', '2025-12-17 19:45:39', NULL, '7869193', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3023, 'Command Operational Planning Meeting', '2025-03-24 19:00:00', '2025-03-24 20:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-03-04 03:39:40', '2025-12-17 19:45:39', NULL, '7869194', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3024, 'Command Operational Planning Meeting', '2025-03-31 19:00:00', '2025-03-31 20:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: HHC Discord channel\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-03-04 03:39:40', '2025-12-17 19:45:39', NULL, '7869195', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3025, 'Command Operational Planning Meeting', '2025-04-14 19:00:00', '2025-04-14 20:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: HHC Discord channel\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-03-04 03:39:40', '2025-12-17 19:45:39', NULL, '7869196', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3026, '[CANCELLED] Command Operational Planning Meeting', '2025-04-21 19:00:00', '2025-04-21 20:00:00', '', '#ecb200', 'EVENT DETAILS: Command meeting\nSERVER: HHC Discord channel\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 1, '2025-03-04 03:39:40', '2025-12-17 19:45:39', NULL, '7869197', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3027, 'Command Operational Planning Meeting', '2025-04-07 19:00:00', '2025-04-07 20:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: HHC Discord channel\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-03-04 03:39:40', '2025-12-17 19:45:39', NULL, '7869198', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3028, 'Community Roundtable followed by Command Meeting', '2025-04-27 15:00:00', '2025-04-27 18:00:00', '', '#df5353', 'EVENT DETAILS: Roundtable to vote for policies and administration positions.\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-03-04 03:43:07', '2025-12-17 19:45:39', NULL, '7869199', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3029, 'FRIDAY NIGHT LIB OPS', '2025-03-07 19:30:00', '2025-03-07 21:30:00', '', '#df5353', 'EVENT DETAILS: LIBERATING AL RAYAK\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelist\n\nAO SHAPING AND investigating the Abandoned IDAP Facility.\n', 43, 0, '2025-03-04 04:07:48', '2025-12-17 19:45:39', NULL, '7869201', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3030, 'Basic Training', '2025-03-06 20:00:00', '2025-03-06 22:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 64, 0, '2025-03-05 22:28:13', '2025-12-17 19:45:39', NULL, '7872088', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3031, 'Echo Orientation', '2025-03-07 13:00:00', '2025-03-07 14:00:00', '17th Training Server', '#FFFFFF', 'EVENT DETAILS: Echo Orientation\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 64, 0, '2025-03-07 04:50:28', '2025-12-17 19:45:39', NULL, '7875371', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3032, 'Daylight Savings Adjustment', '2025-03-09 01:55:00', '2025-03-09 01:59:00', '', '#FFFFFF', 'EVENT DETAILS: Clock Shift forward 1 hour\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 38, 0, '2025-03-08 01:07:42', '2025-12-17 19:45:39', NULL, '7875925', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3033, 'LIB OPS (RS 3 + 4 Practice)', '2025-03-12 18:00:00', '2025-03-12 21:00:00', '17th Operations Server', '#ecb200', 'Event: LIB Operations\nDetails: \nMap: G.O.S. Al Rayaq\nModpack: 17th Ranger Battalion Shadow Mod + Approved Whitelist', 797, 0, '2025-03-11 02:32:03', '2025-12-17 19:45:39', NULL, '7877465', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3034, 'ALPHA MEETING', '2025-03-11 18:00:00', '2025-03-11 19:00:00', '', '#ecb200', 'EVENT DETAILS: Alpha meeting\nSERVER: Discord/ Alpha Conference room\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A\nHello everyone I would like to gather any/all available members of Alpha to discuss what we can do to bring the standards back to Alpha, To discuss ideas,concerns,suggestions, things we do/don’t like, HOW WE CAN IMPROVE\n‼️IF YOU CANT ATTEND BUT WANT SOMETHING TO BE READ, WHETHER THAT BE ANONYMOUS OR HAVE YOU NAME INVOLVED, PLEASE DM ME ON DISCORD AND IT WILL BE BROUGHT UP‼️', 493, 0, '2025-03-11 16:51:26', '2025-12-17 19:45:39', NULL, '7878570', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3035, 'RASP Prep [Canceled]', '2025-03-20 18:00:00', '2025-03-20 20:30:00', '17th Training Server', '#FFFFFF', 'EVENT DETAIL\nS: Canceled due to training overlap and if interesed go check out any Ranger Schools that may be hosted in the week : )\n\nSERVER:\n 17th Training Server\n\nMAP\n: G.O.S. Al Rayaq\n\nMODS / MODPACK REQUIRED:\n 17th Shadow mod', 4, 1, '2025-03-11 23:39:54', '2025-12-17 19:45:39', NULL, '7879085', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3036, 'Lib Operation', '2025-03-13 18:00:00', '2025-03-13 20:00:00', 'Ops Server', '#FFFFFF', 'Event: LIB Operations\nDetails:\nTargeting OBJ metal sanctuary\nNeed a heavy Alpha presence in order for a sufficient assault (MAKE SURE TO SPAWN AT FOB BRAVO)\n\nMap: G.O.S. Al Rayaq\nModpack: 17th Ranger Battalion Shadow Mod + Approved Whitelist', 61, 0, '2025-03-13 15:33:49', '2025-12-17 19:45:39', NULL, '7880952', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3037, 'Basic Training (CANCELLED)', '2025-03-17 17:00:00', '2025-03-17 18:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 64, 1, '2025-03-13 16:51:21', '2025-12-17 19:45:39', NULL, '7880977', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3038, 'Basic Training', '2025-03-14 16:00:00', '2025-03-14 18:30:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 64, 0, '2025-03-14 02:15:29', '2025-12-17 19:45:39', NULL, '7881989', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3039, 'Advanced UAV', '2025-03-19 18:00:00', '2025-03-19 20:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Learn drones for recon, designation, and destruction.\nSERVER: Training Server\nMAP: Training Server Altis or Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 468, 0, '2025-03-14 03:00:17', '2025-12-17 19:45:39', NULL, '7881992', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3040, 'Pathfinder Bookwork', '2025-03-26 18:00:00', '2025-03-26 20:30:00', 'Training Server', '#a250e8', 'EVENT DETAILS: Learn to become a Pathfinder and prepare for the qualification.\nSERVER: Training Server\nMAP: Training Server Altis/Al-Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 468, 0, '2025-03-14 03:05:39', '2025-12-17 19:45:39', NULL, '7881994', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3041, 'Forward Observer School', '2025-03-17 18:00:00', '2025-03-17 20:00:00', 'Training Server', '#d89332', 'EVENT DETAILS: Learn to call in and correct IDF. There will be an attached qual.\nSERVER: Training Server\nMAP: Training Server Altis/Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 468, 0, '2025-03-14 03:08:15', '2025-12-17 19:45:39', NULL, '7881995', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3042, '68W (canceled)', '2025-03-15 10:00:00', '2025-03-15 13:00:00', '', '#ecb200', 'EVENT DETAILS: 68W\nSERVER: Training server \nMAP: Training map \nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 493, 1, '2025-03-15 00:40:02', '2025-12-17 19:45:39', NULL, '7882467', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3043, 'NCO Meeting', '2025-03-15 16:30:00', '2025-03-15 17:30:00', '', '#ecb200', 'EVENT DETAILS: NCO Meeting\nSERVER: Chow Hall, Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/', 493, 0, '2025-03-15 19:10:07', '2025-12-17 19:45:39', NULL, '7882587', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3044, 'NCO Meeting', '2025-03-29 16:30:00', '2025-03-29 17:30:00', '', '#FFFFFF', 'EVENT DETAILS: NCO Meeting\nSERVER: Chow Hall, Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 12, 0, '2025-03-16 02:48:14', '2025-12-17 19:45:39', NULL, '7882690', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3045, 'NCO Meeting', '2025-04-05 16:30:00', '2025-04-05 17:30:00', '', '#FFFFFF', 'EVENT DETAILS: NCO Meeting\nSERVER: Chow Hall, Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 12, 0, '2025-03-16 02:49:45', '2025-12-17 19:45:39', NULL, '7882691', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3046, 'NCO Meeting', '2025-04-12 16:30:00', '2025-04-12 17:30:00', '', '#FFFFFF', 'EVENT DETAILS: NCO Meeting\nSERVER: Chow Hall, Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 12, 0, '2025-03-16 02:49:45', '2025-12-17 19:45:39', NULL, '7882692', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3047, 'NCO Meeting', '2025-04-26 16:30:00', '2025-04-26 17:30:00', '', '#FFFFFF', 'EVENT DETAILS: NCO Meeting\nSERVER: Chow Hall, Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 12, 0, '2025-03-16 02:49:45', '2025-12-17 19:45:39', NULL, '7882693', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3048, 'NCO Meeting', '2025-04-19 16:30:00', '2025-04-19 17:30:00', '', '#FFFFFF', 'EVENT DETAILS: NCO Meeting\nSERVER: Chow Hall, Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 12, 0, '2025-03-16 02:49:45', '2025-12-17 19:45:39', NULL, '7882694', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3049, 'Mechanized Training/Qual', '2025-03-21 17:00:00', '2025-03-21 19:30:00', '', '#d89332', 'EVENT DETAILS- Learn how to command armored vics, how to keep your crew safe, and how to position yourself for the best outcomes. \nSERVER- 17th Training Server \nMAP- ALTIS\nMods- 17th Modpack \nOptional- A3TI Thermal Enhancement mod. ', 7, 0, '2025-03-16 16:19:30', '2025-12-17 19:45:39', NULL, '7883215', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3050, 'Echo Orientation', '2025-03-18 17:00:00', '2025-03-18 18:30:00', '', '#FFFFFF', 'EVENT DETAILS: Echo Orientation\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 64, 0, '2025-03-16 22:52:33', '2025-12-17 19:45:39', NULL, '7884021', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3051, 'Demolitions Training', '2025-03-20 18:00:00', '2025-03-20 19:30:00', '', '#FFFFFF', 'EVENT DETAILS: Demo Training \nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Main Modpack', 38, 0, '2025-03-16 23:08:42', '2025-12-17 19:45:39', NULL, '7884023', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3052, 'Explosives Ordinance Disposal (EOD)', '2025-03-20 19:30:00', '2025-03-20 21:30:00', '', '#FFFFFF', 'EVENT DETAILS: EOD Training (Qualification after assuming time permits)\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Main Modpack', 38, 0, '2025-03-16 23:10:16', '2025-12-17 19:45:39', NULL, '7884024', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3053, 'Rotary Logistics Training', '2025-03-25 18:00:00', '2025-03-25 21:00:00', 'Northen Airfield', '#d89332', 'EVENT DETAILS: Come learn how to fly! (and also crash!, but not dying hopefully)\nSERVER: Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Modpack\n\n\n\n', 42, 0, '2025-03-16 23:27:18', '2025-12-17 19:45:39', NULL, '7884030', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3054, 'Ranger School 2', '2025-03-18 17:00:00', '2025-03-18 19:00:00', '', '#ecb200', 'EVENT DETAILS: Ranger School 2\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Modpack', 11, 0, '2025-03-17 00:14:49', '2025-12-17 19:45:39', NULL, '7884168', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3055, 'Lib Operation', '2025-03-27 18:00:00', '2025-03-27 20:00:00', '', '#FFFFFF', 'Event: LIB Operations\nDetails:\nCapture some side objectives (exact obj tbd based on what command assigns us on monday)\nServer: 17th Op server\nMap: G.O.S. Al Rayaq\nModpack: 17th Ranger Battalion Shadow Mod + Approved Whitelist', 61, 0, '2025-03-20 22:35:58', '2025-12-17 19:45:39', NULL, '7888118', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3056, 'Liberation Ops: The Retaking of Jableh', '2025-03-21 19:00:00', '2025-03-21 21:30:00', '', '#df5353', 'EVENT DETAILS: Operation Desert Spear\nSERVER: Private Operations Server\nMAP: Al Rayak\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted\n', 43, 0, '2025-03-21 15:23:22', '2025-12-17 19:45:39', NULL, '7888250', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3057, 'Basic Training', '2025-03-25 18:00:00', '2025-03-25 20:00:00', '', '#ecb200', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 23, 0, '2025-03-24 18:09:29', '2025-12-17 19:45:39', NULL, '7890059', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3058, 'Eden Editor Workshop', '2025-04-01 18:00:00', '2025-04-01 21:00:00', 'Discord - Training VC', '#FFFFFF', 'EVENT DETAILS: Learning some new trigger scripting techniques and setpiece design.\nSERVER: Discord\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 67, 0, '2025-03-26 02:33:01', '2025-12-17 19:45:39', NULL, '7891460', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3059, 'Flight Training', '2025-03-27 18:00:00', '2025-03-27 20:00:00', '', '#ecb200', '', 15, 0, '2025-03-26 11:28:57', '2025-12-17 19:45:39', NULL, '7891868', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3060, 'NCO Course Redux', '2025-04-04 15:00:00', '2025-04-04 18:00:00', '', '#FFFFFF', 'EVENT DETAILS: A redone version of the original NCO Course. Attending and participating in a leadership position at least once (FTL/SL/PL) will allow you to earn the NCO Course checkmark.\n\nThis course fulfills the requirement for a leadership course needed to become a SGT.\nYou do not need to be an NCO to participate.\nYou do not need to be an NCO to earn your checkmark.\nAll are welcome!\nSERVER: Training Server\nMAP: Malden 2035\nMODS: Standard Modpack', 61, 0, '2025-03-27 14:12:11', '2025-12-17 19:45:39', NULL, '7892589', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3061, '68W Training', '2025-04-02 17:00:00', '2025-04-02 20:00:00', '', '#FFFFFF', 'Event Details: A training course for all you aspiring combat medics to earn your 68W badge.\n(Completion of CLS Training is not required to take this course, however, both trainings will be required to obtain a 68W ribbon & be eligible to fill the medic role during 17th operations/FTXs)\n68W training document:\n\n\nThere will be qualification testing at the end to demonstrate the proper use of the subject matter.\nThe three main focus points of this practical exercise will be:\n(1) Proper procedure for treating injured/unconscious individuals\n(2) Correct method of triage during a Mass Casualty Incident\n(3) Effective Communication/teamwork with other 68W/CLS personnel\nIf you have already completed 68W training and would like to assist/get shot full of holes for training purposes, you are more than welcome to attend! (Observers also very welcome, but please make sure you are not disrupting training, as there is a lot of important subject matter to cover and not a lot of time to do it.)\nThis training is appropriate for Alpha and Echo members.\n--All medical trainings can run significantly longer or shorter than posted times, due attendance affecting length of qualification exercise at the end--\nServer: Training Server- Medical Area\nMap: N/A\nModset/Additional Mods: Standard Modpack', 61, 0, '2025-03-27 15:06:00', '2025-12-17 19:45:39', NULL, '7892590', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3062, 'Ranger School 2', '2025-03-30 13:00:00', '2025-03-30 16:00:00', '', '#FFFFFF', 'EVENT DETAILS: Ranger School 2\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 11, 0, '2025-03-27 16:26:52', '2025-12-17 19:45:39', NULL, '7892738', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3063, 'Ranger School 1', '2025-03-29 09:00:00', '2025-03-29 12:00:00', '17th Ranger Battalion Training Server', '#FFFFFF', 'EVENT DETAILS: Ranger School 1\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Modpack', 797, 0, '2025-03-27 21:42:29', '2025-12-17 19:45:39', NULL, '7892801', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3064, 'Echo Orientation', '2025-03-29 14:00:00', '2025-03-29 15:30:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Echo Orientation\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 64, 0, '2025-03-28 06:16:29', '2025-12-17 19:45:39', NULL, '7892835', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3065, 'Heavy Weapons Training', '2025-04-03 19:30:00', '2025-04-03 21:30:00', '', '#FFFFFF', 'EVENT DETAILS: Learn to use AT weapons and Crew Served Weapons to weigh down your kit and blow stuff up\nSERVER: 17th Training Server (Rocket Range)\nMAP: Training server\nMODS / MODPACK REQUIRED: 17th Shadow mod (standard modlist) + whitelisted mods', 37, 0, '2025-03-29 00:37:23', '2025-12-17 19:45:39', NULL, '7893676', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3066, 'NR6 Workshop', '2025-04-07 18:00:00', '2025-04-07 20:30:00', 'TeamSpeak or Discord; Editors', '#30a68f', 'Learn to use NR6 for fairly dynamic operations that even you, the mission maker, can play with a modicum of blindness to the mission. It\'s fun as fuck.\n\nA basic understanding of activation conditions on a trigger is required.', 468, 0, '2025-03-30 02:46:49', '2025-12-17 19:45:39', NULL, '7894207', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3067, 'Basic Training', '2025-04-04 18:30:00', '2025-04-04 20:30:00', '17th Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 64, 0, '2025-03-30 20:20:43', '2025-12-17 19:45:39', NULL, '7894745', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3068, 'Pathfinder Qualification', '2025-04-04 13:00:00', '2025-04-04 15:00:00', 'Training Server ', '#a250e8', 'EVENT DETAILS: Scheduled Pathfinder Qualification. \nSERVER: Training Server\nMAP: Chernarus Pathfinder Qualification Map\nMODS / MODPACK REQUIRED: Standard Modlist and approved whitelist.\n\n \nHighly recommended.\n\n\nThe server will be switched to the Chernarus Qualification Map for the duration of the qualification. Anybody not partaking in/observing the qualification is asked to not join the Training Server for the entirety of the qualification.', 468, 0, '2025-03-30 22:46:51', '2025-12-17 19:45:39', NULL, '7894823', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3069, 'Master FreeFall School', '2025-04-02 18:00:00', '2025-04-02 19:30:00', 'Training Server', '#a250e8', 'EVENT DETAILS: Master FreeFall to professionally jump out of a plane, to conduct recon behind enemy lines.\nSERVER: Training Server\nMAP: Training Server - Altis\nMODS / MODPACK REQUIRED: Standard modlist and approved whitelisted mods.\n', 468, 0, '2025-03-30 23:31:20', '2025-12-17 19:45:39', NULL, '7894828', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3070, 'Sniper School', '2025-04-10 18:00:00', '2025-04-10 20:00:00', 'Training Server', '#a250e8', 'EVENT DETAILS: Learn to use marksman and sniper rifles with high-powered optics to observe and potentially eliminate enemies during recon.\nSERVER: Training Server\nMAP: Training Server - Altis\nMODS / MODPACK REQUIRED: Standard modlist and approved whitelisted mods.\n', 468, 0, '2025-03-30 23:33:28', '2025-12-17 19:45:39', NULL, '7894829', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3071, 'Master Freefall School', '2025-04-02 21:00:00', '2025-04-02 22:30:00', '', '#a250e8', 'EVENT DETAILS: Master FreeFall to professionally jump out of a plane, to conduct recon behind enemy lines. This is a second training hosted in order to accommodate a scheduling issue.\nSERVER: Training Server\nMAP: Training Server - Altis\nMODS / MODPACK REQUIRED: Standard modlist and approved whitelisted mods.\n', 468, 0, '2025-03-31 20:39:17', '2025-12-17 19:45:39', NULL, '7895429', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3072, 'Liberation Ops', '2025-04-03 17:00:00', '2025-04-03 19:00:00', '17th Private Ops Server', '#FFFFFF', 'Event: LIB Operations\nDetails:\nCapture some side objectives and/or attempt to recapture the Paladin artillery\nServer: 17th Op server\nMap: G.O.S. Al Rayaq\nModpack: 17th Ranger Battalion Shadow Mod + Approved Whitelist', 64, 0, '2025-03-31 23:34:55', '2025-12-17 19:45:39', NULL, '7895449', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3073, 'Recon For Saturday', '2025-04-03 20:00:00', '2025-04-03 21:30:00', '', '#FFFFFF', 'Event: Recon\nDetails: Setting out with the goal to do some recon on the saturday OBJ\nMyself, Trigger and 2-3 others will set out, to identify locations at the request of command for saturday LZs, Fallback positions, and identify any enemy defences and strong points.\n\nIf you have pathfinder training, or are interested in getting it and are willing to closely follow orders, let me know before the op and ill let you know if we still have space.\n\nServer: 17th Op server\nMap: G.O.S. Al Rayaq\nModpack: 17th Ranger Battalion Shadow Mod + Approved Whitelist', 61, 0, '2025-04-03 19:15:37', '2025-12-17 19:45:39', NULL, '7897303', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3074, 'Basic Training', '2025-04-05 14:00:00', '2025-04-05 16:00:00', '', '#ecb200', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 56, 0, '2025-04-04 08:06:03', '2025-12-17 19:45:39', NULL, '7897784', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3075, 'Ranger School 1', '2025-04-18 10:00:00', '2025-04-18 13:00:00', '17th Training Server', '#FFFFFF', 'EVENT DETAILS: Ranger School 1\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Modpack', 20, 0, '2025-04-04 18:58:43', '2025-12-17 19:45:39', NULL, '7898896', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3076, 'Pathfinder Qualification', '2025-04-06 12:30:00', '2025-04-06 15:00:00', '', '#a250e8', 'EVENT DETAILS: Scheduled Pathfinder Qualification. \nSERVER: Training Server\nMAP: Chernarus Pathfinder Qualification Map\nMODS / MODPACK REQUIRED: Standard Modlist and approved whitelist.\n\n \nHighly recommended.\n\n\nThe server will be switched to the Chernarus Qualification Map for the duration of the qualification. Anybody not partaking in/observing the qualification is asked to not join the Training Server for the entirety of the qualification.', 468, 0, '2025-04-05 05:50:38', '2025-12-17 19:45:39', NULL, '7899007', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3077, '[Rescheduled] Basic Training', '2025-04-09 18:00:00', '2025-04-09 20:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod\nTraining rescheduled to next week due to no recruits invited/attending', 37, 0, '2025-04-05 22:08:30', '2025-12-17 19:45:39', NULL, '7899510', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3078, 'Marksman/Sharpshooter Qualification', '2025-04-06 11:30:00', '2025-04-06 12:00:00', '', '#FFFFFF', 'EVENT DETAILS: Marksman/Sharpshooter Qual\nSERVER: Training Server\nMAP: Altis Training Map\nMODS / MODPACK REQUIRED: Standard Modlist and approved whitelist.\n', 4, 0, '2025-04-06 02:48:36', '2025-12-17 19:45:39', NULL, '7901213', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3079, 'Liberation Ops', '2025-04-06 17:00:00', '2025-04-06 20:00:00', '17th Ranger Battalion Official Operations Server', '#FFFFFF', 'Event: We got a lot of work to get done prior to next saturday so I figure we get a bit of a head start tonight.\n\nId like to tackle Ma-Arat and the suburbs to the north and south. However, givin the numbers we get theres a large variety of places to hit.\nSERVER: Operations Server\nMAP: G.O.S. Al Rayaq\nMODS / MODPACK REQUIRED: Standard Modlist and approved whitelist.\n', 797, 0, '2025-04-06 15:55:57', '2025-12-17 19:45:39', NULL, '7901439', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3080, 'Combat Life Saver Training', '2025-04-11 15:30:00', '2025-04-11 17:30:00', '', '#FFFFFF', 'Event Details: Join us for Combat Life Saver training! Learn how a CLS can be so much more than an ammo bearer for the medic!\nThere will be a qualification included at the end of this course to earn the CLS ribbon which is also a part of the requirement for 68W training. This training is suitable for Alpha, Echo.\n--THIS TRAINING MAY RUN SIGNIFICANTLY SHORTER THAN THE 530PM-730PM WINDOW, DEPENDING UPON ATTENDANCE, DUE TO THE NATURE OF THE QUALIFICATION EXERCISE AT THE END.--\n\n\nServer: Training Server-Medical Area\nMap: Altis\nAdditional Mods: N/A', 61, 0, '2025-04-06 16:23:29', '2025-12-17 19:45:39', NULL, '7901441', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3081, '[Cancelled]Echo Gunnery', '2025-04-11 17:30:00', '2025-04-11 19:30:00', '', '#d89332', 'Event Details- Learn how to effectively destroy a variety of targets, learn target priority, and familiarize yourself with our weapon systems. \nServer- 17th Training Server\nMap- Altis\nMods- 17th Shadowmod\nOptional mod- A3TI enhanced thermals. ', 7, 1, '2025-04-07 18:30:23', '2025-12-17 19:45:39', NULL, '7902801', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3082, 'Flight Lead Stuff', '2025-04-09 18:00:00', '2025-04-09 20:00:00', '', '#ecb200', 'DETAILS: FLIGHT STUFF WITH LAMPPOST\nSERVER: Training Server\nMODS: shadow mod. Recommend A3TI\nMAP: Altis', 15, 0, '2025-04-07 19:38:47', '2025-12-17 19:45:39', NULL, '7902819', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3083, 'Radio Telephone Operator (RTO)', '2025-04-09 18:00:00', '2025-04-09 21:00:00', '', '#a250e8', 'EVENT DETAILS: Training and Qualification to become an RTO in the 17th. Learn how to be a Romeo.\nSERVER: 17th Training Server\nMAP: Altis Training Map\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Any Whitelisted', 26, 0, '2025-04-08 17:13:22', '2025-12-17 19:45:39', NULL, '7903308', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3084, 'Lib Op', '2025-04-09 20:15:00', '2025-04-09 22:15:00', '', '#FFFFFF', 'Event: LIB Operations\nDetails:\nCapture some side objectives once basic is finished.\nServer: 17th Op server\nMap: G.O.S. Al Rayaq\nModpack: 17th Ranger Battalion Shadow Mod + Approved Whitelist', 61, 0, '2025-04-08 19:10:05', '2025-12-17 19:45:39', NULL, '7903687', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3085, 'Lib Ops', '2025-04-12 11:00:00', '2025-04-12 13:30:00', '', '#FFFFFF', 'Event: LIB Operations\nDetails:\nCapture Some objectives before the op.\nServer: 17th Op server\nMap: G.O.S. Al Rayaq\nModpack: 17th Ranger Battalion Shadow Mod + Approved Whitelist', 61, 0, '2025-04-08 19:10:58', '2025-12-17 19:45:39', NULL, '7903688', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3086, 'Pathfinder Recon', '2025-04-11 18:00:00', '2025-04-11 20:00:00', 'G.O.S. Al Rayaq', '#FFFFFF', 'Event: Recon for Isekai #8\nDetails: We\'re gonna take some pics and find some places for alpha to land\nServer: 17th Ranger Battalion Official Operations Server\nMods: 17th RBN Shadow Mod + Approved Whitelist', 797, 0, '2025-04-09 22:00:32', '2025-12-17 19:45:39', NULL, '7903852', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3087, 'Basic Training', '2025-04-16 18:00:00', '2025-04-16 20:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 37, 0, '2025-04-09 23:15:14', '2025-12-17 19:45:39', NULL, '7903856', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3088, '17th/9th Joint OP Iron Verdict', '2025-06-14 18:00:00', '2025-06-14 21:00:00', '', '#ecb200', '', 43, 0, '2025-04-10 20:12:37', '2025-12-17 19:45:39', NULL, '7904777', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3089, 'Radio Telephone Operator (RTO) Qual', '2025-04-14 17:00:00', '2025-04-14 19:00:00', '', '#FFFFFF', 'EVENT DETAILS: Qualification to become an RTO in the 17th\nSERVER: 17th Training Server\nMAP: Altis Training Map\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Any Whitelisted', 26, 0, '2025-04-13 17:13:29', '2025-12-17 19:45:39', NULL, '7911208', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3090, 'Lib op', '2025-04-17 18:00:00', '2025-04-17 20:30:00', '', '#FFFFFF', 'Event: LIB Operations\nDetails:\nCapture Some objectives on lib and practice air assault for this Saturday\nServer: 17th Op server\nMap: G.O.S. Al Rayaq\nModpack: 17th Ranger Battalion Shadow Mod + Approved Whitelist', 61, 0, '2025-04-15 23:11:35', '2025-12-17 19:45:39', NULL, '7914315', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3091, 'Air Assualt Practice [CANCELLED]', '2025-04-18 16:00:00', '2025-04-18 18:00:00', '', '#ecb200', 'Event: We’re gonna get some reps in for some Air Assault Landings on some light objectives to get our feet wet for Saturday. \nAll are welcome, but if ur flying on sat, i’d very much recommend attending\nLocation: 17th Ranger Battalion Training Server\nMods: 17th Ranger Battalion Shadow Mod + Approved whitelist', 797, 1, '2025-04-17 20:29:31', '2025-12-17 19:45:39', NULL, '8340289', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3092, 'Rotary Logistics Training', '2025-04-18 13:00:00', '2025-04-18 16:00:00', 'Northern Airfield', '#FFFFFF', 'EVENT DETAILS: Come learn how to fly! (and also crash!, but not dying hopefully)\nSERVER: Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Modpack\n\n', 797, 0, '2025-04-17 22:22:05', '2025-12-17 19:45:39', NULL, '8340351', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3093, 'Echo Gunnery', '2025-04-23 17:30:00', '2025-04-23 19:30:00', '', '#d89332', 'Event Details- Learn how to best utilize our heavy guns. \nServer- 17th Training Server\nMaps- Altis\nMods- 17th Shadowmod, A3TI Thermal Enhancement mod', 7, 0, '2025-04-19 22:21:38', '2025-12-17 19:45:39', NULL, '8342248', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3094, 'RASP BAYBEEEEE', '2025-05-10 18:00:00', '2025-05-10 21:00:00', '', '#df5353', 'EVENT DETAILS: RASP\nSERVER: Private Operations Server\nMAP: Malden\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 28, 0, '2025-04-20 02:50:02', '2025-12-17 19:45:39', NULL, '8342292', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3095, 'Battalion FTX', '2025-05-03 18:00:00', '2025-05-03 21:00:00', '', '#df5353', 'EVENT DETAILS: Battalion FTX\nSERVER: Private Operations Server\nMAP: Anizay\nMODS / MODPACK REQUIRED: 17th Testing Modpack+ Desired Whitelisted', 19, 0, '2025-04-20 02:50:21', '2025-12-17 19:45:39', NULL, '8342293', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3096, 'Land Navigation', '2025-04-24 16:30:00', '2025-04-24 18:30:00', '', '#FFFFFF', 'EVENT DETAILS: Land Navigation \nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Main Modpack', 38, 0, '2025-04-21 03:27:38', '2025-12-17 19:45:39', NULL, '8342987', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3097, 'Anti Armor School Redux', '2025-04-25 18:00:00', '2025-04-25 20:30:00', '', '#a250e8', 'EVENT DETAILS: Redux version of Anti Armor School\nSERVER: 17th Training Server\nMAP: Training Server Altis\nMODS / MODPACK REQUIRED: 17th Shadowmod and approved whitelisted mods.', 468, 0, '2025-04-21 05:24:24', '2025-12-17 19:45:39', NULL, '8342993', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3098, 'Marksman/Sharpshooter Qualification', '2025-04-23 13:00:00', '2025-04-23 13:30:00', '', '#FFFFFF', 'EVENT DETAILS: Marksman/Sharpshooter Qual\nSERVER: Training Server\nMAP: Altis Training Map\nMODS / MODPACK REQUIRED: Standard Modlist and approved whitelist.', 4, 0, '2025-04-21 14:46:58', '2025-12-17 19:45:39', NULL, '8343504', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3099, 'Fixed Wing CAS Training', '2025-04-23 18:00:00', '2025-04-23 21:00:00', 'Northern Airfield', '#ecb200', 'Event: Learn how to fly jets and drop big bombs on things\nServer: 17th Ranger Battalion Training Server\nMods: 17th Ranger Battalion Shadow Mod + Approved Whitelist\nAdditional: \n\n\n\n\n', 797, 0, '2025-04-21 17:06:55', '2025-12-17 19:45:39', NULL, '8343522', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3100, 'Basic Training', '2025-04-22 17:30:00', '2025-04-22 19:30:00', '', '#ecb200', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Modpack', 26, 0, '2025-04-22 01:56:16', '2025-12-17 19:45:39', NULL, '8343977', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3101, '[Rescheduled] Pathfinder qual', '2025-04-25 13:30:00', '2025-04-25 16:00:00', '', '#ecb200', 'I’m on mobile\nTraining server file will be switched over for the qual. If you’re not in the qual, you will be asked to leave.', 468, 0, '2025-04-22 19:28:07', '2025-12-17 19:45:39', NULL, '8345032', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3102, 'Echo Orientation', '2025-04-29 15:30:00', '2025-04-29 17:00:00', '', '#FFFFFF', 'EVENT DETAILS: Echo Orientation\nSERVER: Training Server\nMAP: Altis Training Map\nMODS / MODPACK REQUIRED: Standard Modlist and approved whitelist.', 778, 0, '2025-04-24 01:33:39', '2025-12-17 19:45:39', NULL, '8346008', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3103, 'Basic Training', '2025-04-26 13:00:00', '2025-04-26 15:30:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 64, 0, '2025-04-25 17:09:01', '2025-12-17 19:45:39', NULL, '8347770', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3104, '[Rescheduled] Thailand Mini-campaign 1 - Koh Tao', '2025-06-25 18:00:00', '2025-06-25 20:00:00', '', '#df5353', 'EVENT DETAILS: Loosely based on true events. \nTwo British tourists have disappeared in Koh Tao. When they were last seen, they were approached by known Thai dissidents working to overthrow the Thai Prime Minister. With concerns that the hostages may be used as bargaining chips, the Thai Government has requested assistance from nearby UK and US forces in recovering the hostages.\nSERVER: Private Operations Server\nMAP: TO BE FOUND\nMODS / MODPACK REQUIRED: 17th Shadowmod + desired Whitelist', 468, 0, '2025-04-26 23:16:59', '2025-12-17 19:45:39', NULL, '8349164', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3105, 'Operation Esposa Vengativa', '2025-06-18 18:00:00', '2025-06-18 20:30:00', '17th Private Ops', '#FFFFFF', 'Cartel Del Este back at it again with a captured Alpha unit. \n\n1LT Anderp was captured by Cartel Del Este when attempting to rescue CWO2 Hector Sifuentes. Our mission is simple, save Anderp and punish the Cartel.\n\nIntel suggests Anderp is being held at the costal villa of Tlaloc, tauntingly close to AB Fresca. We are to raid the villa and rescue Anderp before execution. We must then ensure Anderp is treated as we expect a swift response from the cartel and it\'s allies — La Revolucionistas del Pueblo. La Revoluncionistas are a radical communist insurgent group working hand-in-hand with the cartel. Any aggression from La Revolucionistas must be checked swiftly.\nPlease don\'t get captured this time.\n\nSERVER\n: 17th Private Operations Server\n\nMAP\n: Sahrani\n\nMODS / MODPACK REQUIRED\n: 17th Shadowmod and any desired whitelist', 12, 0, '2025-04-27 02:03:41', '2025-12-17 19:45:39', NULL, '8349545', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3106, 'Heavy Weapons Training', '2025-05-01 18:00:00', '2025-05-01 20:00:00', '', '#FFFFFF', 'EVENT DETAILS: Learn to use AT weapons and Crew Served Weapons to weigh down your kit and blow stuff up\nSERVER: 17th Training Server (Rocket Range)\nMAP: Training server\nMODS / MODPACK REQUIRED: 17th Shadow mod (standard modlist) + whitelisted mods', 37, 0, '2025-04-27 05:18:05', '2025-12-17 19:45:39', NULL, '8349552', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3107, 'Demolitions Training [Cancelled]', '2025-05-02 18:00:00', '2025-05-02 19:30:00', '', '#FFFFFF', 'EVENT DETAILS: Learn how to blow stuff up without blowing yourselves up!\nSERVER: 17th Training Server \nMAP: Training server\nMODS / MODPACK REQUIRED: 17th Shadow mod (standard modlist) + whitelisted mods', 4, 1, '2025-04-27 22:47:13', '2025-12-17 19:45:39', NULL, '8350107', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3108, 'NCO Meeting', '2025-05-03 17:20:00', '2025-05-03 17:45:00', 'Teamspeak Server - Chow Hall', '#ecb200', 'Chow Hall in TS', 19, 0, '2025-04-28 15:31:52', '2025-12-17 19:45:39', NULL, '8351411', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3109, 'Explosives Ordinance Disposal (EOD)', '2025-05-08 18:30:00', '2025-05-08 20:30:00', '', '#FFFFFF', 'EVENT DETAILS: EOD Training & Qualification\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Main Modpack', 4, 0, '2025-04-29 02:42:32', '2025-12-17 19:45:39', NULL, '8352001', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3110, '[Rescheduled] Mass Cas & Triage Training', '2025-05-07 17:00:00', '2025-05-07 19:00:00', '', '#FFFFFF', 'New date will be the 14th at the same time, event to be made soon\n\nEvent Details: Come learn what to do in a mass cas situation, as well as how to effectively pick CCPs or let your medic know about a good potential CCP.\n\nThis training is appropriate for Alpha and Echo members.\n\nServer: Training Server- Medical Area\nMap: N/A\nModset/Additional Mods: Standard Modpack', 61, 0, '2025-04-29 15:27:39', '2025-12-17 19:45:39', NULL, '8353484', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3111, 'Copilot Training', '2025-05-03 14:00:00', '2025-05-03 16:00:00', 'Northern Airfield', '#ecb200', 'Event: Copilot Training\nLocation: 17th Ranger Battalion Training Server\nMods: 17th Ranger Battalion Shadow Mod + Additional whitelisted mods\nRecommended: A3TI Thermal Improvement', 797, 0, '2025-04-29 17:47:40', '2025-12-17 19:45:39', NULL, '8353494', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3112, 'Operation: Rebel train', '2025-05-07 18:00:00', '2025-05-07 21:00:00', '', '#df5353', 'EVENT DETAILS: A local rebel group has been a pain in the neck of a local government and after many back and forth fights in and around local military bases the rebels have gotten word of a train hauling tanks, artillery, and other military grade items, and they have hijacked the train from it\'t station and are moving it to another location for their own use. We have been tasked with locating and destroying the vehicles and if possible taking their leader into custody.\nSERVER: Private Operations Server\nMAP: Šumava\nMODS / MODPACK REQUIRED: 17th Shadowmod + desired Whitelist', 56, 0, '2025-04-30 02:51:30', '2025-12-17 19:45:39', NULL, '8353584', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3113, 'Echo Company Flight Practice', '2025-05-01 18:00:00', '2025-05-01 20:00:00', 'Northern Airfield', '#FFFFFF', 'Event: Practicing formation flying and the approach and exfil of hot LZ\'s\nMods: 17th Ranger Battalion Shadow Mod + Additional Whitelist\nServer: 17th Ranger Battalion Training Server', 797, 0, '2025-04-30 22:22:24', '2025-12-17 19:45:39', NULL, '8355089', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3114, 'Basic Training', '2025-05-06 15:00:00', '2025-05-06 17:00:00', '', '#ecb200', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 23, 0, '2025-05-02 21:32:41', '2025-12-17 19:45:39', NULL, '8357180', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3115, 'Echo Orientation', '2025-05-03 23:00:00', '2025-05-04 00:30:00', '', '#ecb200', 'EVENT DETAILS: Echo Orientation\nSERVER: Training Server\nMAP: Altis Training Map\nMODS / MODPACK REQUIRED: Standard Modlist and approved whitelist.', 778, 0, '2025-05-03 04:15:15', '2025-12-17 19:45:39', NULL, '8357635', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3116, 'Accelerated Basic Training', '2025-05-04 18:00:00', '2025-05-04 19:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod', 37, 0, '2025-05-03 18:35:13', '2025-12-17 19:45:39', NULL, '8358252', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3117, 'Server Mod Updates', '2025-05-06 19:30:00', '2025-05-06 23:00:00', '', '#FFFFFF', 'EVENT DETAILS: 17th Ranger Battalion Mod Updates (New Campaign) - All servers have to go down to patch any mods and update CBA configs\nSERVER: All Arma3 Servers\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 38, 0, '2025-05-04 17:38:30', '2025-12-17 19:45:39', NULL, '8358906', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3118, '[CANCELLED] AV-8B Plus training', '2025-05-13 17:00:00', '2025-05-13 20:00:00', 'Northern Airfield', '#d89332', 'EVENT DETAILS: \nCome get to know our newest addition to the FW CAS fleet! We\'ll discuss the aircraft and it\'s operation, as well as Firewill and it\'s systems.\nHaving the FW CAS qual is nice, but feel free to show up if you are interested!\n\nNote: This is \nNOT\n a qualification, and one will not be required to fly the harrier specifically other than FW CAS.\nSERVER:\n 17th Training Server \nMAP:\n Altis\nMODS / MODPACK REQUIRED:\n Standard modpack.', 42, 1, '2025-05-04 18:41:09', '2025-12-17 19:45:39', NULL, '8358912', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3119, 'JUMP WINGS QUAL/JUMP MASTER CHALLENGE', '2025-05-13 17:45:00', '2025-05-13 19:45:00', '', '#ecb200', 'EVENT DETAILS: JUMP WINGS QUAL/JUMP MASTER CHALLENGE\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod\n\n\n\n\n\n', 43, 0, '2025-05-05 12:00:27', '2025-12-17 19:45:39', NULL, '8360035', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3120, 'Sniper School', '2025-05-09 16:00:00', '2025-05-09 18:00:00', '', '#FFFFFF', 'EVENT DETAILS: Learn to use marksman and sniper rifles with high-powered optics to observe and potentially eliminate enemies during recon.\nSERVER: Training Server\nMAP: Training Server - Altis\nMODS / MODPACK REQUIRED: Standard modlist and approved whitelisted mods.', 56, 0, '2025-05-06 00:47:30', '2025-12-17 19:45:39', NULL, '8360736', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3121, 'Ranger Training [Cancelled]', '2025-05-15 19:00:00', '2025-05-15 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: Prepping for the upcoming operation. We will be running mock series of missions and exercises based off what we know from the OPORD: \n\nSERVER: 17th Training Server\nMAP: Altis Training Map\nMODS / MODPACK REQUIRED: 17th Main Modpack\n', 4, 1, '2025-05-07 15:47:35', '2025-12-17 19:45:39', NULL, '8362730', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3122, 'Mass Cas & Triage', '2025-05-14 17:00:00', '2025-05-14 18:30:00', '', '#FFFFFF', 'Event Details: Come learn what to do in a mass cas situation, as well as how to effectively pick CCPs or let your medic know about a good potential CCP.\nThis training is appropriate for Alpha and Echo members.\nServer: Training Server- Medical Area\nMap: N/A\nModset/Additional Mods: Standard Modpack', 61, 0, '2025-05-07 22:17:06', '2025-12-17 19:45:39', NULL, '8362978', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3123, 'CLS Training', '2025-05-10 11:00:00', '2025-05-10 13:00:00', '', '#FFFFFF', 'EVENT DETAILS: CLS Training & Qualification\nEvent might run longer/shorter depending number of participants for qualification\n\nSERVER: 17th Training Server (Medical Area)\nMAP: N/A\nMODS / MODPACK REQUIRED: 17th Main Modpack', 8, 0, '2025-05-08 18:48:22', '2025-12-17 19:45:39', NULL, '8363523', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3124, 'Demolitions Traning', '2025-05-12 18:30:00', '2025-05-12 19:30:00', '', '#FFFFFF', 'EVENT DETAILS: Learn how to blow stuff up without blowing yourselves up!\nSERVER: 17th Training Server\nMAP: Training server\nMODS / MODPACK REQUIRED: 17th Shadow mod (standard modlist) + whitelisted mods', 4, 0, '2025-05-09 02:02:59', '2025-12-17 19:45:39', NULL, '8363566', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3125, 'Echo Gunnery', '2025-05-16 21:30:00', '2025-05-16 23:00:00', '', '#d89332', 'Event Details- Learn how to best employ vehicle mounted guns, and practice firing them while moving. \nServer- 17th Training Server\nMap- Altis\nMods- 17th Shadowmod\nA3TI Thermal Enhancement', 7, 0, '2025-05-09 20:43:17', '2025-12-17 19:45:39', NULL, '8364293', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3126, 'Rangers Aren\'t Sailors [17th Side Op]', '2025-05-14 18:00:00', '2025-05-14 21:00:00', '17th Ranger Battalion Operations Server', '#df5353', 'Background\n: An island off the western coast of Turkey, Bozcaada, has succumb to a newly established Turkish warlord, \nIman Balik\n. Iman has been using his connections with Russian based weapons dealers to establish a strong grip over the region. CIA assets on the ground state that most of the population stands against him, but he is steadily amassing numbers.\nSituation\n: Two American nationals were on vacation sailing about 10 miles south of the island when the onboard EPIRB device was activated. Upon the Hellenic Coast Guard\'s arrival, the boat was found with no individuals onboard.\nThree days later, CIA assets in Bozcaada learned that Iman is in current possession of the two hostages and is demanding ransom from the United States. However,\nWe Don\'t Negotiate With Terrorists.\nThe U.S.S. Cleveland, a freedom class littoral combat ship, has been deployed to the south east of the island. \nCIA assets have identified 2 possible target locations. Thus, U.S.SOCOM has authorized a small detachment of the 17th Ranger Battalion to operate in the region with hopes to successfully retrieve the hostages. \nMap: Bozcaada\nMods: 17th Shadow Mod + Approved Whitelist', 797, 0, '2025-05-11 03:51:10', '2025-12-17 19:45:39', NULL, '8365614', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3127, '[Rescheduled] Pathfinder Bookwork', '2025-05-17 12:00:00', '2025-05-17 15:00:00', '', '#FFFFFF', 'EVENT DETAILS: Learn to become a Pathfinder and prepare for the qualification.\nSERVER: Training Server\nMAP: Training Server Altis\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted\nNew event link: \n\nhttps://www.guilded.gg/Iceberg-gaming/groups/v3j2vAP3/channels/f50565c0-fdae-4483-ac65-4ccb8563ceb0/calendar/8373126', 56, 0, '2025-05-11 03:57:52', '2025-12-17 19:45:39', NULL, '8365615', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3128, 'Tiltrotor Logi/Cas Training', '2025-05-13 17:00:00', '2025-05-13 20:00:00', 'Northern Airfield', '#ecb200', 'EVENT DETAILS:\nThis training will cover the V-44 Blackfish and it\'s variants (we\'ll talk about the osprey too)\nTiltrotors are a very complicated aircraft to fly. It is highly encouraged for you to know how to fly both a plane and a helicopter to attend this training.\nSERVER: Training Server\nMAP: Training Server Map\nADITIONAL MODS REQUIRED: N/A\n\n', 42, 0, '2025-05-11 18:17:11', '2025-12-17 19:45:39', NULL, '8366077', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3129, 'Sniper Qual', '2025-05-18 18:00:00', '2025-05-18 19:00:00', '', '#FFFFFF', 'EVENT DETAILS: Qualification test for the Sniper ribbon\nSERVER: Training Server\nMAP: Training Server - Altis\nMODS / MODPACK REQUIRED: Standard modlist and approved whitelisted mods.', 56, 0, '2025-05-11 23:40:13', '2025-12-17 19:45:39', NULL, '8366441', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3130, '[Cancelled]Warlording with Ken: Echo. Company Training', '2025-05-29 18:30:00', '2025-05-29 20:15:00', '', '#ecb200', 'EVENT DETAILS: We are going to use ehicles/vehicles with guns in all sorts of different ways\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: Shadow Mod\nWill be rescheduling.', 43, 1, '2025-05-12 12:04:37', '2025-12-17 19:45:39', NULL, '8367403', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3131, 'Foreign Influences Ep1', '2025-05-17 18:00:00', '2025-05-17 21:00:00', '', '#df5353', '', 28, 0, '2025-05-13 00:03:31', '2025-12-17 19:45:39', NULL, '8368028', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3132, 'Foreign Influences Ep2', '2025-05-24 18:00:00', '2025-05-24 21:00:00', '', '#df5353', '', 28, 0, '2025-05-13 00:03:54', '2025-12-17 19:45:39', NULL, '8368029', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3133, 'Foreign Influences Ep3', '2025-05-31 18:00:00', '2025-05-31 21:00:00', '', '#df5353', '', 28, 0, '2025-05-13 00:04:13', '2025-12-17 19:45:39', NULL, '8368030', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3134, 'NCO Meeting', '2025-05-17 17:30:00', '2025-05-17 17:45:00', 'TS Chow Hall', '#d89332', '', 19, 0, '2025-05-13 00:04:26', '2025-12-17 19:45:39', NULL, '8368031', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3135, 'Pathfinder Bookwork', '2025-05-24 12:00:00', '2025-05-24 15:00:00', '', '#FFFFFF', 'EVENT DETAILS: Learn to become a Pathfinder and prepare for the qualification.\nSERVER: Training Server\nMAP: Training Server Altis\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 56, 0, '2025-05-17 03:52:15', '2025-12-17 19:45:39', NULL, '8373126', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3136, 'Pop Rocks Wednesday One Off', '2025-05-21 18:00:00', '2025-05-21 20:00:00', '', '#df5353', 'EVENT DETAILS: One off mission\nSERVER: Private Operations Server\nMAP: TBD\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Desired Whitelisted', 19, 0, '2025-05-17 17:50:49', '2025-12-17 19:45:39', NULL, '8374152', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3137, 'Alpha FTX (Battle Drill 1&2A)', '2025-05-21 17:15:00', '2025-05-21 17:55:00', '', '#FFFFFF', 'Event Details: Come learn the basics of battle drill 1 & 2A, this will be a ~30 minute training at most, we will then use these skills in poprock\'s op which will follow this at the top of the hour.\nServer: Training Server\nMap: N/A\nModset/Additional Mods: Standard Modpack', 61, 0, '2025-05-17 17:53:28', '2025-12-17 19:45:39', NULL, '8374153', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3138, '68W Training', '2025-05-28 17:30:00', '2025-05-28 19:30:00', '', '#FFFFFF', 'Event Details: Come on down and learn how to be a 68W (medic) in the unit. Learning how to yap profesinally.\nNote that the training might be longer or shorter then time stated, depending on the number of quals.\n\nServer: Training Server- Medical Area\n\nMap: N/A\n\nModset/Additional Mods: Standard Modpack', 8, 0, '2025-05-18 16:47:42', '2025-12-17 19:45:39', NULL, '8376037', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3139, 'NCO Meeting', '2025-05-24 17:30:00', '2025-05-24 17:45:00', '', '#d89332', '', 19, 0, '2025-05-19 22:23:39', '2025-12-17 19:45:39', NULL, '8377425', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3140, '[CANCELED] Basic Training', '2025-05-21 15:00:00', '2025-05-21 17:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Modpack', 26, 1, '2025-05-21 00:46:50', '2025-12-17 19:45:39', NULL, '8380399', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3141, 'Echo Orientation', '2025-05-26 17:00:00', '2025-05-26 19:00:00', '17th Training Server', '#ecb200', 'Introduction to Echo and its role in the unit, as well as the assets we use', 778, 0, '2025-05-23 15:11:28', '2025-12-17 19:45:39', NULL, '8383440', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3142, 'Basic Training', '2025-05-28 18:00:00', '2025-05-28 20:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 11, 0, '2025-05-27 12:15:35', '2025-12-17 19:45:39', NULL, '8387505', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3143, 'Stacking bodies with Ken', '2025-05-28 18:30:00', '2025-05-28 20:00:00', '', '#ecb200', 'Event Details: we stacking them up in the snow CHDKZ must fuckin die\nServer: Private Ops\nModpack: 17th shadow mod plus whitelist\n\n📘 Mission Name: Operation Silent Dagger\nMap: Chernarus Winter\nTime: 0100 HRS\nWeather: Overcast, light snowfall, freezing fog\nBLUFOR: 17th Ranger Battalion\nOPFOR: ChDKZ Insurgents\n\n🧭 Situation\nChDKZ forces have fortified key locations across central Chernarus. Green Mountain has been transformed into a communications hub, coordinating enemy movements throughout the region.\n\nZelenogorsk, located southwest of the mountain, serves as a major garrison and logistics point for ChDKZ forces. The 17th Ranger Battalion is executing a night raid to eliminate these strategic threats under cover of darkness.\n\n🎯 Mission Objectives\nPhase 1 – Assault Green Mountain:\nInfiltrate and secure the Green Mountain communications site\nEliminate all ChDKZ personnel in the area\nDisable or extract comms equipment\nRecover any valuable intel\nPhase 2 – Clear Zelenogorsk:\nAdvance southwest to Zelenogorsk\nEliminate the ChDKZ garrison and secure key structures\nSweep and clear residential, military, and industrial areas\nEstablish control of the town and defend against possible counterattack\n\n🛡️ Primary Objectives\n✅ Seize Green Mountain\n✅ Disable ChDKZ comms equipment\n✅ Clear Zelenogorsk of hostile forces\n✅ Secure Town Hall, Barracks, Fuel Depot, and Industrial Yard\n✅ Recover intel or HVTs if located\n\n☠️ Enemy Forces (ChDKZ)\n\nLight to medium infantry\nFortified positions at both AO\'s\nTechnicals with HMGs, static MG nests, RPG threats\nPossible AA and IEDs along MSRs\nCivilian presence possible in Zelenogorsk\n\n⚔️ Execution\n\nPhase 1: Stealth assault on Green Mountain, secure quickly and neutralize all threats\nPhase 2: Coordinated push into Zelenogorsk, expect CQB in urban terrain\nUtilize NVGs, suppressed weapons, and thermal optics\nWatch for IEDs and ambushes en route\n📋 ROE (Rules of Engagement)\nPID before engaging\nMinimize collateral damage\nCivilian presence expected—use controlled fire\nSecure HVTs or intelligence when possible\nAvoid destruction of critical infrastructure unless necessary', 43, 0, '2025-05-28 03:02:54', '2025-12-17 19:45:39', NULL, '8388462', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3144, 'Pathfinder Qualification', '2025-05-31 12:00:00', '2025-05-31 14:00:00', '', '#a250e8', 'Event Details: Pathfinder Qualification.\n\nServer: Training Server \n\nMap: Chernarus\n\nModset/Additional Mods: Standard 17th modlist + whitelist of members\' desire\n\nA3TI HIGHLY recommended. \n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2041057379&searchtext=thermal+improvement', 468, 0, '2025-05-30 20:24:49', '2025-12-17 19:45:39', NULL, '8393073', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3145, 'Command Meeting', '2025-05-31 21:00:00', '2025-05-31 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-05-31 06:35:32', '2025-12-17 19:45:39', NULL, '8393168', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3146, 'Command Meeting', '2025-06-07 21:00:00', '2025-06-07 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-05-31 06:35:32', '2025-12-17 19:45:39', NULL, '8393169', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3147, 'Command Meeting', '2025-06-14 21:00:00', '2025-06-14 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-05-31 06:35:32', '2025-12-17 19:45:39', NULL, '8393170', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3148, 'Command Meeting', '2025-06-28 21:00:00', '2025-06-28 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-05-31 06:35:32', '2025-12-17 19:45:39', NULL, '8393171', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3149, 'Command Meeting', '2025-07-05 21:00:00', '2025-07-05 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-05-31 06:35:32', '2025-12-17 19:45:39', NULL, '8393173', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3150, 'RASP', '2025-06-21 18:00:00', '2025-06-21 19:00:00', '', '#df5353', 'EVENT DETAILS: RASP BABYYYYY\nSERVER: Private Ops Server\nMAP: TBD\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 27, 0, '2025-05-31 06:37:04', '2025-12-17 19:45:39', NULL, '8393174', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3151, 'NCO Meeting', '2025-05-31 17:30:00', '2025-05-31 17:45:00', 'TS Chow Hall', '#d89332', '', 19, 0, '2025-05-31 18:39:47', '2025-12-17 19:45:39', NULL, '8393497', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3152, 'Ranger School 1', '2025-06-05 18:00:00', '2025-06-05 19:30:00', '', '#FFFFFF', 'EVENT DETAILS: Ranger School 1\nSERVER: 17th Training Server\nMAP: Takistan\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 4, 0, '2025-05-31 19:17:25', '2025-12-17 19:45:39', NULL, '8393582', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3153, 'Foreign Influences Ep 4', '2025-06-07 18:00:00', '2025-06-07 21:00:00', '', '#df5353', 'EVENT DETAILS: Foreign Influences\nSERVER: 17th Ops Server\nMAP: Anizay\nMODS / MODPACK REQUIRED: 17th main modpack', 28, 0, '2025-06-03 11:49:56', '2025-12-17 19:45:39', NULL, '8400273', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3154, 'Foreign Influences Ep 5', '2025-06-28 18:00:00', '2025-06-28 19:00:00', '', '#df5353', 'EVENT DETAILS: Foreign Influences\nSERVER: 17th Ops Server\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th main modpack', 28, 0, '2025-06-03 11:51:01', '2025-12-17 19:45:39', NULL, '8400274', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3155, 'Foreign Influences Ep 6 (Replaced with Filler due to 4th)', '2025-07-05 18:00:00', '2025-07-05 19:00:00', '', '#df5353', 'EVENT DETAILS: Foreign Influences\nSERVER: 17th Ops Server\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th main modpack', 28, 0, '2025-06-03 11:51:37', '2025-12-17 19:45:39', NULL, '8400275', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3156, 'Foreign Influences Ep 6', '2025-07-12 18:00:00', '2025-07-12 19:00:00', '', '#df5353', 'EVENT DETAILS: Foreign Influences\nSERVER: 17th Ops Server\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th main modpack', 28, 0, '2025-06-03 11:52:14', '2025-12-17 19:45:39', NULL, '8400276', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3157, '[Rescheduled] JTAC School', '2025-06-11 18:00:00', '2025-06-11 20:30:00', '', '#a250e8', 'EVENT DETAILS: JTAC - Learn to communicate between aircraft to make shit go boom\nSERVER: 17th Training Server - North Takistan\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th Shadowmod and any desired whitelist', 468, 0, '2025-06-04 04:28:51', '2025-12-17 19:45:39', NULL, '8401407', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3158, 'Rotary Wing Close Air Support', '2025-06-12 18:00:00', '2025-06-12 20:30:00', '', '#a250e8', 'EVENT DETAILS: Learn to fly helicopters to deliver ordnance to premium subscribers\nSERVER: 17th Training Server - North Takistan\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th Shadowmod and any desired whitelist\nA3TI HIGHLY recommended. \n\nhttps://steamcommunity.com/sharedfiles/filedetails/?id=2041057379&searchtext=thermal+improvement', 468, 0, '2025-06-04 04:30:07', '2025-12-17 19:45:39', NULL, '8401408', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3159, '[Cancelled] Indirect Fire School', '2025-06-13 18:00:00', '2025-06-13 20:00:00', '', '#a250e8', 'Event Details: Learn to utilize mortars and artillery to provide Indirect Fire Support\n\nServer: Training Server \n\nMap: North Takistan\n\nModset/Additional Mods: Standard 17th modlist + whitelist of members\' desire\n', 468, 1, '2025-06-04 04:32:56', '2025-12-17 19:45:39', NULL, '8401410', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3160, 'Anti Armor School', '2025-06-13 21:00:00', '2025-06-13 23:00:00', '', '#a250e8', 'Event Details: Learn the general strengths and weaknesses of Armored Fighting Vehicles (AFVs) to better engage them.\n\nServer: Training Server \n\nMap: North Takistan\n\nModset/Additional Mods: Standard 17th modlist + whitelist of members\' desire\n', 468, 0, '2025-06-04 04:36:08', '2025-12-17 19:45:39', NULL, '8401411', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3161, 'Heavy Weapons', '2025-06-09 18:00:00', '2025-06-09 20:00:00', '', '#a250e8', 'Event Details: Gain indepth information on utilizing anti tank and crew served weapons.\n\nServer: Training Server \n\nMap: North Takistan\n\nModset/Additional Mods: Standard 17th modlist + whitelist of members\' desire\n', 468, 0, '2025-06-04 04:38:04', '2025-12-17 19:45:39', NULL, '8401412', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3162, 'Demolitions Training [Cancelled]', '2025-06-17 18:30:00', '2025-06-17 19:30:00', '', '#FFFFFF', 'EVENT DETAILS: Learn how to blow stuff up without blowing yourselves up!\nSERVER: 17th Training Server\nMAP: Training server\nMODS / MODPACK REQUIRED: 17th Shadow mod (standard modlist) + whitelisted mods', 4, 1, '2025-06-04 16:41:04', '2025-12-17 19:45:39', NULL, '8401599', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3163, 'Mechanized Qual', '2025-06-08 16:00:00', '2025-06-08 18:30:00', '', '#FFFFFF', 'Event Details- Learn how to best command our armored assets. \nServer- 17th Training Server\nMap- Altis\nMods- 17th Shadow Mod ', 7, 0, '2025-06-05 22:49:09', '2025-12-17 19:45:39', NULL, '8402899', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3164, 'Master Freefall School', '2025-06-10 18:00:00', '2025-06-10 19:30:00', '', '#a250e8', 'EVENT DETAILS: Master Freefall\nSERVER: 17th Training Server - North Takistan\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th Shadowmod and any desired whitelist', 468, 0, '2025-06-06 00:50:29', '2025-12-17 19:45:39', NULL, '8403121', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3165, 'NCO Meeting', '2025-06-07 17:15:00', '2025-06-07 17:45:00', 'TS Chow Hall', '#d89332', '', 19, 0, '2025-06-07 19:13:17', '2025-12-17 19:45:39', NULL, '8404220', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3166, '[Rescheduled] Ranger School 2', '2025-06-12 18:15:00', '2025-06-12 19:45:00', '', '#FFFFFF', 'Moved to Saturday at 2pm\nEVENT DETAILS: Ranger School 1\nSERVER: 17th Training Server\nMAP: Takistan\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 4, 0, '2025-06-07 22:16:19', '2025-12-17 19:45:39', NULL, '8404242', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3167, 'Ranger School 2', '2025-06-14 13:00:00', '2025-06-14 14:30:00', '', '#FFFFFF', 'EVENT DETAILS: Ranger School 2\nSERVER: 17th Training Server\nMAP: Takistan\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 4, 0, '2025-06-08 02:03:13', '2025-12-17 19:45:39', NULL, '8404521', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3168, 'Ranger School 3', '2025-06-21 13:00:00', '2025-06-21 14:00:00', '', '#FFFFFF', 'EVENT DETAILS: Ranger School 3\nSERVER: 17th Training Server\nMAP: Takistan\nMODS / MODPACK REQUIRED: 17th Shadow Modpack', 4, 0, '2025-06-08 02:05:55', '2025-12-17 19:45:39', NULL, '8404522', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3169, 'Operation Falling Angels', '2025-06-11 18:00:00', '2025-06-11 20:00:00', 'Private Operations Server', '#df5353', 'EVENT DETAILS: \n17th is tasked with destroying several enemy positions (Recon Points , Motorpools) - expect QRF to try and counter our assaults.\nEnemy Faction: 3CB Winter CSAT\nEnemy Capabilities: Light to Medium Armour, no Air.\nFriendly Assets: MH6 Littlebirds, Strykers, ASV Scout Cars.\nWeather: Dawning during snow and fog.\n\n\n\nSERVER: 17th Private Operations Server\nMAP: Cherno (Winter)\nMODS / MODPACK REQUIRED: 17th Shadowmod and any desired whitelist', 19, 0, '2025-06-08 18:09:11', '2025-12-17 19:45:39', NULL, '8404977', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3170, 'Basic Training Rescheduled', '2025-06-12 18:00:00', '2025-06-12 20:00:00', '', '#ecb200', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 2, 0, '2025-06-09 16:33:48', '2025-12-17 19:45:39', NULL, '8405947', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3171, 'Basic Training', '2025-06-13 18:00:00', '2025-06-13 20:00:00', '', '#FFFFFF', '', 11, 0, '2025-06-13 17:59:44', '2025-12-17 19:45:39', NULL, '8409765', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3172, '[Canceled] RASP Study Session', '2025-06-19 18:00:00', '2025-06-19 20:30:00', 'Training Server', '#ecb200', 'EVENT DETAILS: Open to all. Targeted for those who want to pursue their Ranger tab. Topics we\'ll cover:\n- Ammo Economy (What is a bullet worth?)\n- Rifleman Mentality (How can I help my team?)\n- Leadership Mentality (How can I guide my team?)\n- Combat Drills (Can I finally fire my gun?)\nSERVER: Training Server\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 67, 1, '2025-06-13 23:42:16', '2025-12-17 19:45:39', NULL, '8410181', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3173, 'Alpha NCO meeting', '2025-06-14 17:00:00', '2025-06-14 17:30:00', '', '#FFFFFF', '', 61, 0, '2025-06-14 17:02:40', '2025-12-17 19:45:39', NULL, '8410806', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3174, 'Ranger School 2', '2025-06-19 17:30:00', '2025-06-19 19:30:00', 'Training Server', '#FFFFFF', '', 20, 1, '2025-06-14 18:19:59', '2025-12-17 19:45:39', NULL, '8410814', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3175, '[Cancelled] Ranger School 2', '2025-06-20 17:30:00', '2025-06-20 18:30:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Ranger School 2\nSERVER: 17th Training Server\nMODS / MODPACK REQUIRED: 17th Modpack', 20, 1, '2025-06-14 18:22:20', '2025-12-17 19:45:39', NULL, '8410815', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3176, '[Rescheduled] JTAC School', '2025-06-26 18:00:00', '2025-06-26 20:30:00', '', '#a250e8', 'EVENT DETAILS: JTAC - Learn to communicate between aircraft to make shit go boom\nSERVER: 17th Training Server - North Takistan\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th Shadowmod and any desired whitelist', 468, 0, '2025-06-20 01:01:54', '2025-12-17 19:45:39', NULL, '8416741', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3177, 'Echo Orentation', '2025-06-21 12:00:00', '2025-06-21 13:00:00', '', '#ecb200', 'EVENT DETAILS: Learn tbe basics of Echo Company\nServer: 17th Batt. Triaining server\nMap: Takistan\nMods/modpack required: 17th Shadow Pack', 64, 0, '2025-06-20 16:01:32', '2025-12-17 19:45:39', NULL, '8417592', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3178, 'A3 Server Testing', '2025-06-24 18:30:00', '2025-06-24 20:30:00', '', '#FFFFFF', 'EVENT DETAILS: Server Config Testing for 2.20\nSERVER: 17th Op Server\nMAP: TBD\nMODS / MODPACK REQUIRED: 17th Main Modpack', 38, 0, '2025-06-24 03:14:47', '2025-12-17 19:45:39', NULL, '8421848', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3179, '[Cancelled] JTAC School', '2025-06-27 18:00:00', '2025-06-27 20:30:00', '', '#a250e8', 'EVENT DETAILS: JTAC - Learn to communicate between aircraft to make shit go boom\nSERVER: 17th Training Server - North Takistan\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th Shadowmod and any desired whitelist', 468, 1, '2025-06-24 03:27:11', '2025-12-17 19:45:39', NULL, '8421850', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3180, 'Squad FTX', '2025-06-25 18:00:00', '2025-06-25 20:00:00', 'Private Ops Server', '#df5353', 'EVENT DETAILS: Replacement event for Toast\'s side op\nSERVER: Private Operations Server\nMAP: Malden 2035\nMODS / MODPACK REQUIRED: 17th Shadowmod + desired Whitelist', 67, 0, '2025-06-25 00:17:24', '2025-12-17 19:45:39', NULL, '8422682', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3181, '[Canceled]Pop Rocks\' Mini Campaign Placeholder', '2025-07-02 18:00:00', '2025-07-02 20:30:00', '', '#df5353', '', 19, 1, '2025-06-29 02:53:09', '2025-12-17 19:45:39', NULL, '8430783', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3182, 'Pop Rocks\' Mini Campaign Placeholder', '2025-07-09 18:00:00', '2025-07-09 20:30:00', '', '#df5353', '', 19, 0, '2025-06-29 02:53:26', '2025-12-17 19:45:39', NULL, '8430784', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3183, 'Pop Rocks\' Mini Campaign Placeholder', '2025-07-16 18:00:00', '2025-07-16 20:30:00', '', '#df5353', '', 19, 0, '2025-06-29 02:55:08', '2025-12-17 19:45:39', NULL, '8430799', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3184, 'Pop Rocks\' Mini Campaign Placeholder', '2025-07-23 18:00:00', '2025-07-23 20:30:00', '', '#df5353', '', 19, 0, '2025-06-29 02:55:18', '2025-12-17 19:45:39', NULL, '8430800', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3185, 'Pop Rocks\' Mini Campaign Placeholder', '2025-07-30 18:00:00', '2025-07-30 20:30:00', '', '#df5353', '', 19, 0, '2025-06-29 02:55:30', '2025-12-17 19:45:39', NULL, '8430801', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3186, 'Ranger Training', '2025-07-03 18:00:00', '2025-07-03 20:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Open to all. Squad focused. Topics we\'ll cover:\n- Ammo Economy (What is a bullet worth?)\n- Rifleman Mentality (How can I help my team?)\n- Combat Drills (Can I finally fire my gun?)\nSERVER: Training Server\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 67, 0, '2025-07-01 00:28:37', '2025-12-17 19:45:39', NULL, '8431527', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3187, 'Echo Orientation', '2025-07-04 18:00:00', '2025-07-04 19:30:00', '', '#FFFFFF', 'EVENT DETAILS: Learn the basics of Echo Company\nSERVER: 17th Training Server\nMAP: Takistan\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 64, 0, '2025-07-03 16:40:10', '2025-12-17 19:45:39', NULL, '8434478', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3188, 'Foreign Influences Finale [RESCHEDULED]', '2025-07-19 18:00:00', '2025-07-19 21:00:00', '', '#df5353', 'EVENT DETAILS: Foreign Influences\nSERVER: 17th Ops Server\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th main modpack', 28, 0, '2025-07-06 01:49:33', '2025-12-17 19:45:39', NULL, '8438709', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3189, 'Ranger Training', '2025-07-10 18:00:00', '2025-07-10 20:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Open to all. Squad focused. Topics we\'ll cover:\n- Signaling Attacks (Mentality, Methods, Management)\n- MAAWS in a Fireteam/Squad (Role and Practice)\n- Combat Scenarios\nSERVER: Training Server\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 67, 0, '2025-07-06 20:32:52', '2025-12-17 19:45:39', NULL, '8438849', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3190, 'Sniper School (Cancelled)', '2025-07-19 12:00:00', '2025-07-19 15:00:00', '', '#ecb200', 'EVENT DETAILS: Learn to use marksman and sniper rifles with high-powered optics to observe and potentially eliminate enemies during recon.\nSERVER: Training Server\nMAP: Training Server - Altis\nMODS / MODPACK REQUIRED: Standard modlist and approved whitelisted mods.', 56, 1, '2025-07-12 19:44:50', '2025-12-17 19:45:39', NULL, '8443962', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3191, 'Basic Training', '2025-07-18 18:00:00', '2025-07-18 20:30:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 64, 0, '2025-07-14 19:19:39', '2025-12-17 19:45:39', NULL, '8444983', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3192, 'CLS Training/Qual', '2025-07-16 17:00:00', '2025-07-16 18:30:00', 'Training Server', '#FFFFFF', 'Learning more in-depth medical stuff then in basic, and learning how to be a CLS.\nMay go overtime depending on who long the qual takes', 8, 0, '2025-07-15 16:05:52', '2025-12-17 19:45:39', NULL, '8456429', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3193, 'hearts and minds: test wit ken', '2025-07-19 12:30:00', '2025-07-19 16:30:00', '', '#FFFFFF', '', 43, 0, '2025-07-17 22:26:11', '2025-12-17 19:45:39', NULL, '8457738', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3194, 'CLS Qual', '2025-07-18 17:00:00', '2025-07-18 18:00:00', '', '#FFFFFF', 'Event Details: This is just the qual, with maybe some brief training on specific areas of medical at request.\nThis training is appropriate for Alpha and Echo members.\nServer: Training Server- Medical Area\nMap: N/A\nModset/Additional Mods: Standard Modpack', 61, 0, '2025-07-17 22:27:50', '2025-12-17 19:45:39', NULL, '8457740', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3195, 'Directive: Civil Purge', '2025-08-06 18:00:00', '2025-08-06 20:30:00', '', '#df5353', 'EVENT DETAILS: Wednesday OP\nSERVER: 17th Private OPs Server\nMAP: Chernarus (Autumn)\nMODS / MODPACK REQUIRED: Normal 17th Modpack + Any desired Whitelist.\nDirective: Civil Purge\nOnce a unit forged for righteous war, the 17th Ranger Battalion has long since crossed the line into morally questionable operations and dirty wars that no one speaks about. This time, you\'re not hunting terrorists, you are the terror.\nYou\'ve been embedded in Chernarus for six weeks, gathering intel on local opposition networks hostile to a Western-aligned puppet regime. The government lacks the resources to stamp them out, and international media has grown too sympathetic to the locals. That’s where you come in\nThis mission isn’t about military victory, it\'s about narrative control through fear and blood. You’re here to create a story that will be told in newsrooms around the globe\nCivilians who cooperate with the regional government, business owners, or even teachers are seen as collaborators. Their elimination sends a clear message: anyone supporting the government will burn with it.\nEnemy Forces:\nObjectives:', 46, 0, '2025-07-17 23:27:55', '2025-12-17 19:45:39', NULL, '8458118', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3196, 'Directive: Linebreaker', '2025-08-13 18:00:00', '2025-08-13 20:30:00', '', '#df5353', 'EVENT DETAILS: Wednesday OP\nSERVER: 17th Private OPs Server\nMAP: Chernarus (Autumn)\nMODS / MODPACK REQUIRED: Normal 17th Modpack + Any desired Whitelist.\nDirective: Linebreaker\nThe message was loud, brutal, and effective. Towns still smolder. Streets still whisper about the forces who came and went, leaving only ruin and silence. NATO took notice. They are outraged and moving in.\nPrivate Military Corporation ION extends a lifeline, but it\'s conditional: make it out of Chernarus alive, and they’ll offer sanctuary and new purpose in Tanoa. Your extraction point is Krasnostav Airfield, controlled by the Kolgujev Defense Force.\nMove North through the forests, thick with Kolgujev Defense Force patrols. They\'ve declared open season on the 17th. They want bodies. Yours, preferably in pieces. Cities are no refuge. Local police have mobilized with orders to shoot on sight.\nNo reinforcements. No resupply. Just you, the trees, and the long road to freedom. If the 17th fails here, there won\'t be a trial—just a shallow grave and a footnote.\nEnemy Forces:\nObjectives:', 46, 0, '2025-07-18 00:22:11', '2025-12-17 19:45:39', NULL, '8458543', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3197, 'Radio Telephone Operator (RTO)', '2025-07-24 19:30:00', '2025-07-24 22:30:00', '', '#a250e8', 'EVENT DETAILS: Training and Qualification to become an RTO in the 17th. Learn how to be a Romeo.\nSERVER: 17th Training Server\nMAP: North Takistan Training Map\nMODS / MODPACK REQUIRED: 17th Shadow Mod + Any Whitelisted', 26, 0, '2025-07-18 02:27:22', '2025-12-17 19:45:39', NULL, '8458825', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3198, 'Directive: Crimson Pact', '2025-08-20 18:00:00', '2025-08-20 20:30:00', '', '#df5353', 'EVENT DETAILS: Wednesday OP\nSERVER: 17th Private OPs Server\nMAP: Tanoa (Apex DLC)\nMODS / MODPACK REQUIRED: Normal 17th Modpack + Any desired Whitelist.\nDirective: Crimson Pact\nYou made it out of Chernarus, but NATO tracked the smoke trail. They control the Southern islands, and have warned the local Gendarmerie: the 17th Ranger Battalion is armed, dangerous, and not to be taken alive.\nION is still willing to bring you in—but loyalty demands proof. Before you\'re granted safe passage to their Blue Pearl industrial port base, they want blood and assets.\nThey want control of the Red Spring surface mines currently held by Syndikat rebel forces. ION wants them wiped out so they can lay claim to the site later.\nOne of ION’s key investors has gone dark after a Syndikat ambushed a convoy near the jungle outskirts. Locate him, secure him, and extract to the Blue Pearl docks. He’s valuable—alive. ION doesn’t care how many bodies stack up around him, as long as he walks out breathing.\nEnemy Forces:\nObjectives:', 46, 0, '2025-07-18 07:48:59', '2025-12-17 19:45:39', NULL, '8459268', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3199, 'Command Meeting', '2025-07-19 21:00:00', '2025-07-19 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak Channel Struggle Bus\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-07-19 00:29:06', '2025-12-17 19:45:39', NULL, '8459565', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3200, 'Battalion FTX', '2025-08-02 18:00:00', '2025-08-02 19:00:00', '', '#df5353', 'EVENT DETAILS: Battalion FTX\nSERVER: TBD\nMAP: TBD\nMODS / MODPACK REQUIRED: TBD', 27, 0, '2025-07-19 00:30:27', '2025-12-17 19:45:39', NULL, '8459566', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3201, 'RASP', '2025-08-09 18:00:00', '2025-08-09 19:00:00', '', '#df5353', 'EVENT DETAILS: RASP\nSERVER: Private Ops\nMAP: Cherno Summer\nMODS / MODPACK REQUIRED: 17th Shadow Mod/ whitlist if you feel like it', 27, 0, '2025-07-19 00:33:03', '2025-12-17 19:45:39', NULL, '8459567', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3202, 'Command Meeting', '2025-07-26 21:00:00', '2025-07-26 22:00:00', '', '#ecb200', 'EVENT DETAILS: Command meeting\nSERVER: Discord Channel TBD\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-07-19 00:33:27', '2025-12-17 19:45:39', NULL, '8459568', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3203, 'Foreign Influences Finale', '2025-07-26 18:00:00', '2025-07-26 21:00:00', '', '#df5353', 'EVENT DETAILS: Foreign Influences\nSERVER: 17th Ops Server\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th main modpack', 27, 0, '2025-07-20 02:35:21', '2025-12-17 19:45:39', NULL, '8461032', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3204, 'Command Meeting', '2025-08-02 21:00:00', '2025-08-02 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-07-20 03:20:43', '2025-12-17 19:45:39', NULL, '8461035', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3205, '[Cancelled] Advanced UAV', '2025-07-25 18:00:00', '2025-07-25 20:00:00', '', '#a250e8', 'EVENT DETAILS: Advanced UAV\nSERVER: 17th Training Server - North Takistan\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th Shadowmod and any desired whitelist', 46, 1, '2025-07-20 21:25:18', '2025-12-17 19:45:39', NULL, '8461764', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3206, 'Sniper School', '2025-07-23 22:00:00', '2025-07-24 00:00:00', '', '#ecb200', 'EVENT DETAILS: Learn to use marksman and sniper rifles with high-powered optics to observe and potentially eliminate enemies during recon.\nSERVER: Training Server\nMAP: Training Server - Altis\nMODS / MODPACK REQUIRED: Standard modlist and approved whitelisted mods.', 56, 0, '2025-07-22 17:48:09', '2025-12-17 19:45:39', NULL, '8462943', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3207, 'Basic Training', '2025-07-25 16:00:00', '2025-07-25 18:00:00', '', '#ecb200', 'EVENT DETAILS: Basic Training \nSERVER: 17th Training Server \nMAP: North Takistan \nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 26, 0, '2025-07-25 18:53:22', '2025-12-17 19:45:39', NULL, '8466820', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3208, '[Canceled] Ranger Training', '2025-07-31 19:00:00', '2025-07-31 21:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Open to all. Squad focused. Topics TBD.\nSERVER: Training Server\nMAP: North Takistan\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 67, 1, '2025-07-27 03:21:38', '2025-12-17 19:45:39', NULL, '8467717', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3209, 'Echo Orientation', '2025-07-31 17:30:00', '2025-07-31 19:30:00', '', '#d89332', 'Event Details- An introduction into Echo Company\'s armored assets, and how to work as a crew.\nServer- 17th Training Server\nMap- Training server map\nMods- 17th Shadowmod\nOptional Mods- Whitelist, A3TI Thermal Enhancement ', 7, 0, '2025-07-27 13:49:44', '2025-12-17 19:45:39', NULL, '8467750', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3210, 'Directive: False Oath', '2025-08-27 18:00:00', '2025-08-27 20:30:00', '', '#df5353', 'EVENT DETAILS: Wednesday OP\nSERVER: 17th Private OPs Server\nMAP: Tanoa (Apex DLC)\nMODS / MODPACK REQUIRED: Normal 17th Modpack + Any desired Whitelist.\nDirective: False Oath\nThe jungle is behind you, but the worst lies ahead. ION has finally opened its war chest, and you’re no longer just survivors—you’re their spearpoint. The objective: cripple NATO’s grip on Tanoa.\nThe city of Harcourt is a fortress. Anti-air turrets guard the skies, making any aerial assault suicidal. That leaves one option: the bridge. It’s a death funnel, held by hardened USMC forces who know you’re coming. Every meter will be earned in blood, every sandbag a wall of fire.\nSurvive the crossing and ION will drop their soldiers in behind you, but your job isn’t done. You’ll need to take out the radio tower overlooking Harcourt before NATO can call for reinforcements from across the archipelago. Burn their eyes and sever their voice.\nThe final blow will fall on the Saint-George Airstrip at Lijnhaven. If you can clear it, ION will control a vital foothold for operations on Tanoa—and you’ll have dealt NATO its first serious defeat on the island.\nThis isn’t a raid. It’s open war. Fail, and Tanoa becomes your grave. Succeed, and the 17th earns a seat at ION’s table—paid for in fire and ruin.\nEnemy Forces:\nUnited States Marine Corps (USMC)\nObjectives:', 46, 0, '2025-07-30 03:14:38', '2025-12-17 19:45:39', NULL, '8471162', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3211, 'RASP FTX', '2025-08-08 18:00:00', '2025-08-08 20:00:00', 'Private Ops Server', '#FFFFFF', 'EVENT DETAILS: Open to all. Getting people reps in for RASP on Saturday.\nSERVER: Private Ops Server\nMAP: Malden 2035\nMODS / MODPACK REQUIRED: 17th Shadow Mod', 67, 0, '2025-08-04 23:22:23', '2025-12-17 19:45:39', NULL, '8477785', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3212, 'Land nav (Last Min)', '2025-08-04 19:15:00', '2025-08-04 20:30:00', '', '#FFFFFF', 'EVENT DETAILS: Land Navigation \nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Main Modpack', 38, 0, '2025-08-04 23:55:01', '2025-12-17 19:45:39', NULL, '8477787', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3213, '[Cancelled] AMPV and New Stryker Familiarization', '2025-08-14 18:00:00', '2025-08-14 19:00:00', 'Training Server', '#d89332', 'EVENT DETAILS: We got new armored toys. Let\'s get people up to speed on what\'s new\nSERVER: Training Server\nMAP: Training Server North Takistan OR VT7 (If ready by then)\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods. A3TI recommended.', 468, 1, '2025-08-05 06:24:06', '2025-12-17 19:45:39', NULL, '8477876', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3214, 'AMPV and Stryker Dragoon/M-SHORAD Familiarization', '2025-08-07 18:00:00', '2025-08-07 19:00:00', 'Training Server', '#d89332', 'EVENT DETAILS: We got new armored toys. Let\'s get people up to speed on what\'s new\nSERVER: Training Server\nMAP: Training Server North Takistan OR VT7 (If ready by then)\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods. A3TI recommended.', 468, 0, '2025-08-05 06:24:06', '2025-12-17 19:45:39', NULL, '8477877', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3215, 'AMPV and Stryker Dragoon/M-SHORAD Familiarization', '2025-08-21 18:00:00', '2025-08-21 19:00:00', 'Training Server', '#d89332', 'EVENT DETAILS: We got new armored toys. Let\'s get people up to speed on what\'s new\nSERVER: Training Server\nMAP: Training Server Altis OR VT7 (If ready by then)\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods. A3TI recommended.', 468, 0, '2025-08-05 06:24:06', '2025-12-17 19:45:39', NULL, '8477880', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3216, 'Rotary Wing Logistics Training', '2025-08-09 12:00:00', '2025-08-09 14:00:00', '', '#355bf8', 'EVENT DETAILS\n: Learn the basics of our logistical rotary wing assets and (hopefully) not crash in the process. \n\n\nSERVER\n: 17th Training Server\n\n\nMAP\n: North Takistan\n\n\nMODS / MODPACK REQUIRED\n: 17th Shadowmod, (Whitelisted Mod - TAW View Distance recommended but NOT required.)', 80, 0, '2025-08-08 02:45:04', '2025-12-17 19:45:39', NULL, '8481608', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3217, 'Flight Training', '2025-08-12 18:00:00', '2025-08-12 20:00:00', '', '#d89332', 'EVENT DETAILS: How to win friends and fly better\nSERVER: Training Server\nMAP: Default Training Map\nMODS / MODPACK REQUIRED: Normal 17th Modpack\nRecommended mod: Arma 3 Thermal Improvements (A3TI)\nThis is on a first come, first serve basis. Qualifications can be performed at trainee\'s request.', 15, 0, '2025-08-08 15:48:23', '2025-12-17 19:45:39', NULL, '8481811', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3218, 'Basic Training', '2025-08-09 14:00:00', '2025-08-09 16:00:00', '', '#a250e8', 'EVENT DETAILS: Basic Training \nSERVER: 17th Training Server \nMAP: Training Server Map \nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 26, 1, '2025-08-09 00:20:53', '2025-12-17 19:45:39', NULL, '8481869', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3219, '[Cancelled] Explosives Ordinance Disposal (EOD)', '2025-08-19 18:30:00', '2025-08-19 20:30:00', '', '#FFFFFF', 'EVENT DETAILS: EOD Training & Qualification\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Main Modpack', 4, 1, '2025-08-10 00:44:51', '2025-12-17 19:45:39', NULL, '8482548', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3220, 'Command Meeting', '2025-08-23 21:00:00', '2025-08-23 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:40:02', '2025-12-17 19:45:39', NULL, '8485675', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3221, 'Command Meeting', '2025-08-16 21:00:00', '2025-08-16 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:40:02', '2025-12-17 19:45:39', NULL, '8485676', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3222, 'Command Meeting', '2025-08-30 21:00:00', '2025-08-30 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:40:02', '2025-12-17 19:45:39', NULL, '8485677', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3223, 'Command Meeting', '2025-09-13 21:00:00', '2025-09-13 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:40:02', '2025-12-17 19:45:39', NULL, '8485678', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3224, 'Command Meeting', '2025-09-06 21:00:00', '2025-09-06 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:40:02', '2025-12-17 19:45:39', NULL, '8485679', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3225, 'Command Planning/OPORD Deadline', '2025-08-18 21:00:00', '2025-08-18 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command must present the OPORD for the week by this event\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:42:08', '2025-12-17 19:45:39', NULL, '8485680', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3226, 'Command Planning/OPORD Deadline', '2025-09-08 21:00:00', '2025-09-08 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command must present the OPORD for the week by this event\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:42:08', '2025-12-17 19:45:39', NULL, '8485681', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3227, 'TENTATIVE Command Planning/OPORD Deadline', '2025-09-15 21:00:00', '2025-09-15 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command must present the OPORD for the week by this event\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:42:08', '2025-12-17 19:45:39', NULL, '8485682', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3228, 'Command Planning/OPORD Deadline', '2025-09-01 21:00:00', '2025-09-01 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command must present the OPORD for the week by this event\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:42:08', '2025-12-17 19:45:39', NULL, '8485683', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3229, 'Command Planning/OPORD Deadline', '2025-08-25 21:00:00', '2025-08-25 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command must present the OPORD for the week by this event\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:42:08', '2025-12-17 19:45:39', NULL, '8485684', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3230, 'Command Planning/OPORD Deadline', '2025-09-22 21:00:00', '2025-09-22 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command must present the OPORD for the week by this event\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:42:08', '2025-12-17 19:45:39', NULL, '8485685', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3231, 'Command Planning/OPORD Deadline', '2025-10-06 21:00:00', '2025-10-06 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command must present the OPORD for the week by this event\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:42:08', '2025-12-17 19:45:39', NULL, '8485686', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3232, 'Command Planning/OPORD Deadline', '2025-09-29 21:00:00', '2025-09-29 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command must present the OPORD for the week by this event\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-12 12:42:08', '2025-12-17 19:45:39', NULL, '8485687', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3233, 'Operation Iron Resolve 1', '2025-08-16 18:00:00', '2025-08-16 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 27, 0, '2025-08-12 12:43:45', '2025-12-17 19:45:39', NULL, '8485688', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3234, 'Basic Training', '2025-08-16 09:30:00', '2025-08-16 11:30:00', '', '#a250e8', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 26, 0, '2025-08-15 02:55:18', '2025-12-17 19:45:39', NULL, '8488773', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3235, 'Hearts and Minds midweek op', '2025-08-21 18:00:00', '2025-08-21 20:30:00', '', '#FFFFFF', 'EVENT DETAILS: Were gonna go attack some hideouts to make people not hate us or something (whatever mccann tells us to do this week)\nSERVER: Ops Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods. ', 61, 0, '2025-08-17 15:18:56', '2025-12-17 19:45:39', NULL, '8490587', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3236, 'Operation Iron Resolve 2', '2025-08-23 18:00:00', '2025-08-23 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 27, 0, '2025-08-19 19:28:24', '2025-12-17 19:45:39', NULL, '8493552', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3237, 'Operation Iron Resolve 4', '2025-09-06 18:00:00', '2025-09-06 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 27, 0, '2025-08-19 19:28:24', '2025-12-17 19:45:39', NULL, '8493553', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3238, 'Operation Iron Resolve 3', '2025-08-30 18:00:00', '2025-08-30 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 27, 0, '2025-08-19 19:28:24', '2025-12-17 19:45:39', NULL, '8493554', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3239, 'RASP', '2025-09-20 18:00:00', '2025-09-20 19:00:00', '', '#df5353', 'EVENT DETAILS: RASP\nSERVER: 17th Private Operations\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Modpack', 27, 0, '2025-08-19 19:31:31', '2025-12-17 19:45:39', NULL, '8493555', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3240, 'Operation Iron Resolve 5', '2025-09-13 18:00:00', '2025-09-13 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 27, 0, '2025-08-19 19:33:41', '2025-12-17 19:45:39', NULL, '8493556', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3241, 'Operation Iron Resolve 8', '2025-10-11 18:00:00', '2025-10-11 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 27, 0, '2025-08-19 19:34:39', '2025-12-17 19:45:39', NULL, '8493557', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3242, 'Operation Iron Resolve 10', '2025-10-25 18:00:00', '2025-10-25 21:00:00', '', '#ecb200', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: Saint Kapaulio\nMODS / MODPACK REQUIRED: 17th Modpack + Saint Kapaulio \n', 27, 0, '2025-08-19 19:34:39', '2025-12-17 19:45:39', NULL, '8493558', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3243, 'Operation Iron Resolve 9', '2025-10-18 18:00:00', '2025-10-18 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 27, 0, '2025-08-19 19:34:39', '2025-12-17 19:45:39', NULL, '8493559', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3244, 'Operation Iron Resolve 7', '2025-10-04 18:00:00', '2025-10-04 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 27, 0, '2025-08-19 19:34:39', '2025-12-17 19:45:39', NULL, '8493560', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3245, 'Operation Iron Resolve 6', '2025-09-27 18:00:00', '2025-09-27 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 27, 0, '2025-08-19 19:34:39', '2025-12-17 19:45:39', NULL, '8493561', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3246, 'Command Meeting', '2025-09-27 21:00:00', '2025-09-27 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-19 19:39:11', '2025-12-17 19:45:39', NULL, '8493562', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3247, 'Command Meeting', '2025-10-18 21:00:00', '2025-10-18 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-19 19:39:11', '2025-12-17 19:45:39', NULL, '8493563', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3248, 'Command Meeting', '2025-10-04 21:00:00', '2025-10-04 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-19 19:39:11', '2025-12-17 19:45:39', NULL, '8493564', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3249, 'Command Meeting', '2025-10-11 21:00:00', '2025-10-11 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-19 19:39:11', '2025-12-17 19:45:39', NULL, '8493565', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3250, 'Command Meeting', '2025-10-25 21:00:00', '2025-10-25 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command meeting\nSERVER: Teamspeak\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-19 19:39:11', '2025-12-17 19:45:39', NULL, '8493566', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3251, 'Command Planning/OPORD Deadline', '2025-10-13 21:00:00', '2025-10-13 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command must present the OPORD for the week by this event\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-19 19:40:26', '2025-12-17 19:45:40', NULL, '8493568', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3252, 'Command Planning/OPORD Deadline', '2025-10-20 21:00:00', '2025-10-20 22:00:00', '', '#355bf8', 'EVENT DETAILS: Command must present the OPORD for the week by this event\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-19 19:40:26', '2025-12-17 19:45:40', NULL, '8493569', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3253, 'COMMUNITY ROUNDTABLE', '2025-10-26 15:00:00', '2025-10-26 16:00:00', '', '#df5353', 'EVENT DETAILS: Community Roundtable to vote on new leadership and discuss policy. Mod requisition deadline is by the time the meeting starts.\n\n\n\n\nSERVER: Teamspeak channel STRUGGLE BUS (Will stream to Discord as well for mobile users)\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A\n\n', 27, 0, '2025-08-19 19:42:59', '2025-12-17 19:45:40', NULL, '8493572', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3254, 'Deadline for Leadership Role Candidacy Submission', '2025-10-26 11:00:00', '2025-10-26 11:01:00', '', '#FFFFFF', 'EVENT DETAILS: If you plan to run for an elected office you must submit to @Ken your platform and XO + 3IC choices to be approved for posting in the Roundtable thread LINK TBD\nSERVER: N/A\nMAP: N/A\nMODS / MODPACK REQUIRED: N/A', 27, 0, '2025-08-19 19:47:58', '2025-12-17 19:45:40', NULL, '8493575', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3255, 'Heavy Weapons Training', '2025-08-26 18:00:00', '2025-08-26 20:00:00', '', '#FFFFFF', 'EVENT DETAILS: Learn to use AT weapons and Crew Served Weapons to weigh down your kit and blow stuff up, minus the backblast\nSERVER: 17th Training Server (Rocket Range)\nMAP: Training server\nMODS / MODPACK REQUIRED: 17th Shadow mod (standard modlist) + whitelisted mods', 37, 0, '2025-08-21 21:16:57', '2025-12-17 19:45:40', NULL, '8495106', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3256, 'Basic Training', '2025-08-28 17:00:00', '2025-08-28 19:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Virolahti Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 26, 0, '2025-08-27 16:00:42', '2025-12-17 19:45:40', NULL, '8501354', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3257, 'Hearts and Minds midweek op', '2025-08-28 18:00:00', '2025-08-28 20:30:00', '', '#FFFFFF', 'EVENT DETAILS: Were gonna go attack some weapons caches to make people not hate us or something (whatever mccann tells us to do this week)\nSERVER: Ops Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods.', 61, 0, '2025-08-27 23:11:09', '2025-12-17 19:45:40', NULL, '8502340', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3258, 'Hearts and Minds midweek OP', '2025-09-03 18:00:00', '2025-09-03 20:30:00', '', '#FFFFFF', 'EVENT DETAILS: Were gonna go attack some weapons caches to make people not hate us or something (whatever mccann tells us to do this week)\nSERVER: Ops Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods.', 61, 0, '2025-09-02 00:38:37', '2025-12-17 19:45:40', NULL, '8510285', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3259, 'Ranger School 2', '2025-09-11 18:00:00', '2025-09-11 20:30:00', 'Training Server', '#a250e8', 'EVENT DETAILS: Ranger School 2 - Standard Combat Operations\n\n...or play Helldivers 2.\n\nSERVER: 17th Training Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 0, '2025-09-05 00:25:20', '2025-12-17 19:45:40', NULL, '8512638', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3260, 'Ranger School 1', '2025-09-09 18:00:00', '2025-09-09 20:00:00', 'Training Server', '#a250e8', 'EVENT DETAILS: Ranger School 1 - Standard Field Operations\nSERVER: 17th Training Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 0, '2025-09-05 00:26:06', '2025-12-17 19:45:40', NULL, '8512640', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3261, 'Ranger School 3', '2025-09-16 18:00:00', '2025-09-16 20:30:00', 'Training Server', '#a250e8', 'EVENT DETAILS: Ranger School 3 - Urban Combat Operations\n\n...or play Broken Arrow.\n\nSERVER: 17th Training Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 0, '2025-09-05 00:26:34', '2025-12-17 19:45:40', NULL, '8512641', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3262, 'Ranger School 4', '2025-09-18 18:00:00', '2025-09-18 20:30:00', 'Training Server', '#a250e8', 'EVENT DETAILS: Ranger School 4 - CQB Training\n\n...or play Ready or Not.\n\nSERVER: 17th Training Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 0, '2025-09-05 00:26:43', '2025-12-17 19:45:40', NULL, '8512642', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3263, 'Hearts and Minds placeholder op (read details)', '2025-09-10 18:00:00', '2025-09-10 20:30:00', '', '#FFFFFF', 'This is conditional on weather or not someone else reserves a midweek operation on Wednesday, if they do then the hearts and minds mission will take place the next day\nWere gonna go attack some weapons caches to make people not hate us or something (whatever mccann tells us to do this week)\nSERVER: Ops Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods', 61, 0, '2025-09-07 13:36:28', '2025-12-17 19:45:40', NULL, '8514576', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3264, 'Hearts and minds placeholder op (read details)', '2025-09-17 18:00:00', '2025-09-17 20:30:00', '', '#FFFFFF', 'This is conditional on weather or not someone else reserves a midweek operation on Wednesday, if they do then the hearts and minds mission will take place the next day\nWere gonna go attack some weapons caches to make people not hate us or something (whatever mccann tells us to do this week)\nSERVER: Ops Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods', 61, 0, '2025-09-07 13:37:14', '2025-12-17 19:45:40', NULL, '8514577', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3265, 'Hearts and Minds placeholder op (read details)', '2025-09-24 18:00:00', '2025-09-24 20:30:00', '', '#FFFFFF', 'EVENT DETAILS: \nThis is conditional on weather or not someone else reserves a midweek operation on Wednesday, if they do then the hearts and minds mission will take place the next day\nWere gonna go attack some weapons caches to make people not hate us or something (whatever mccann tells us to do this week)\nSERVER: Ops Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods.', 61, 0, '2025-09-07 13:38:46', '2025-12-17 19:45:40', NULL, '8514578', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3266, 'Hearts and Minds placeholder OP', '2025-10-01 18:00:00', '2025-10-01 20:30:00', '', '#FFFFFF', 'This is conditional on weather or not someone else reserves a midweek operation on Wednesday, if they do then the hearts and minds mission will take place the next day\nWere gonna go attack some weapons caches to make people not hate us or something (whatever mccann tells us to do this week)\nSERVER: Ops Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods', 61, 0, '2025-09-07 13:43:18', '2025-12-17 19:45:40', NULL, '8514579', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3267, 'Hearts and Minds Alternate op', '2025-09-11 20:30:00', '2025-09-11 21:59:00', '', '#FFFFFF', 'This is conditional on weather or not someone else reserves a midweek operation on Wednesday, if they do then the hearts and minds mission will take place on this day instead.\nWere gonna go attack some weapons caches to make people not hate us or something (whatever mccann tells us to do this week)\nSERVER: Ops Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods', 61, 0, '2025-09-07 13:45:42', '2025-12-17 19:45:40', NULL, '8514580', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3268, 'Hearts and Minds Alternate op', '2025-09-18 20:30:00', '2025-09-18 21:59:00', '', '#FFFFFF', 'This is conditional on weather or not someone else reserves a midweek operation on Wednesday, if they do then the hearts and minds mission will take place on this day instead.\nWere gonna go attack some weapons caches to make people not hate us or something (whatever mccann tells us to do this week)\nSERVER: Ops Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods', 61, 0, '2025-09-07 13:48:24', '2025-12-17 19:45:40', NULL, '8514581', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3269, 'Hearts and Minds Alternate op', '2025-09-25 18:00:00', '2025-09-25 20:30:00', '', '#FFFFFF', 'This is conditional on weather or not someone else reserves a midweek operation on Wednesday, if they do then the hearts and minds mission will take place on this day instead.\nWere gonna go attack some weapons caches to make people not hate us or something (whatever mccann tells us to do this week)\nSERVER: Ops Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods', 61, 0, '2025-09-07 13:49:24', '2025-12-17 19:45:40', NULL, '8514582', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3270, 'Hearts and Minds Alternate op', '2025-10-02 18:00:00', '2025-10-02 20:30:00', '', '#FFFFFF', 'This is conditional on weather or not someone else reserves a midweek operation on Wednesday, if they do then the hearts and minds mission will take place on this day instead.\nWere gonna go attack some weapons caches to make people not hate us or something (whatever mccann tells us to do this week)\nSERVER: Ops Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods', 61, 0, '2025-09-07 13:49:56', '2025-12-17 19:45:40', NULL, '8514583', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3271, 'Echo Gunnery Course', '2025-09-22 17:00:00', '2025-09-22 19:30:00', '', '#d89332', 'Event Details- Learn how to utilize the Fire Control Systems of all our vehicles in a controlled, live fire setting. \nServer- 17th Training server \nMap- Altis\nModpack- 17th Shadowmod, and A3TI Thermal Enhancement ', 7, 0, '2025-09-15 21:15:00', '2025-12-17 19:45:40', NULL, '8521430', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3272, 'CLS + 68W Challenge', '2025-09-23 19:00:00', '2025-09-23 20:00:00', 'Training Server', '#ecb200', 'EVENT DETAILS: CLS + 68W Challenge.\nSERVER: 17th Training Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 0, '2025-09-17 22:48:39', '2025-12-17 19:45:40', NULL, '8524068', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3273, '[Canceled] Accelerated Basic Training', '2025-09-23 18:00:00', '2025-09-23 19:00:00', 'Training Server', '#a250e8', 'EVENT DETAILS: \nAccelerated Basic for returning member. \nReinstatement approved.\nSERVER: 17th Training Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 1, '2025-09-19 02:46:57', '2025-12-17 19:45:40', NULL, '8525831', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3274, '[CANCELLED] Radio Telephone Operator (RTO) Training', '2025-09-25 18:00:00', '2025-09-25 20:30:00', '', '#FFFFFF', 'Event Details- Training and Qualification to become an RTO in the 17th. Learn how to be a Romeo.\n\nServer- 17th Training server\n\nMap- Default Training Server Map\n\nModpack- 17th Shadow Modpack (Required). TFAR Scribbles (Optional)', 12, 1, '2025-09-20 21:23:29', '2025-12-17 19:45:40', NULL, '8527784', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3275, 'CLS Training', '2025-09-24 16:00:00', '2025-09-24 18:00:00', '', '#FFFFFF', 'EVENT DETAILS: CLS Training where you learn how to help out others in the field, and more on how we do medical stuff\nSERVER: 17th Training Server\nMAP: VT7\nMODS / MODPACK REQUIRED: 17th Modpack\nTime might be longer/shorter depending on how many people show up, and quals', 8, 0, '2025-09-20 22:21:16', '2025-12-17 19:45:40', NULL, '8527786', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3276, 'Basic Training', '2025-09-24 14:00:00', '2025-09-24 16:30:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 64, 0, '2025-09-22 18:17:51', '2025-12-17 19:45:40', NULL, '8529058', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3277, 'Alpha NCO meeting', '2025-09-27 17:00:00', '2025-09-27 17:15:00', 'TS chow hall', '#FFFFFF', '', 61, 0, '2025-09-27 16:45:33', '2025-12-17 19:45:40', NULL, '8533938', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3278, 'Basic Training', '2025-09-30 20:00:00', '2025-09-30 22:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 26, 0, '2025-09-30 14:58:08', '2025-12-17 19:45:40', NULL, '8535533', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3279, 'Master Freefall (MFF) Badge', '2025-10-02 18:00:00', '2025-10-02 20:00:00', '', '#a250e8', 'EVENT DETAILS: Master Freefall\nSERVER: 17th Training Server\nMAP: Training map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack\n\n\n\n', 46, 0, '2025-10-01 08:22:47', '2025-12-17 19:45:40', NULL, '8535685', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3280, 'Pathfinder Bookwork', '2025-10-09 18:00:00', '2025-10-09 20:00:00', '', '#a250e8', 'EVENT DETAILS: Pathfinder Bookwork\nSERVER: 17th Training Server\nMAP: Training map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack\n\n\n', 46, 0, '2025-10-01 08:28:00', '2025-12-17 19:45:40', NULL, '8535686', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3281, 'Pathfinder Qualification', '2025-10-16 18:00:00', '2025-10-16 21:00:00', '', '#a250e8', 'EVENT DETAILS: Pathfinder Qualification\nSERVER: 17th Training Server or Private Ops server, I forgot where the mission is.\nMAP: Pathfinder Qualification Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack\n\n\n', 46, 0, '2025-10-01 08:30:45', '2025-12-17 19:45:40', NULL, '8535687', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3282, 'IDf training', '2025-10-06 18:00:00', '2025-10-06 20:00:00', '', '#a250e8', 'EVENT DETAILS: IDF mortars and artillery\nSERVER: 17th Training Server\nMAP: Training map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack\n\n', 468, 0, '2025-10-04 20:21:34', '2025-12-17 19:45:40', NULL, '8537571', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3283, 'Sniper School (rescheduled)', '2025-10-18 12:30:00', '2025-10-18 15:30:00', '', '#FFFFFF', 'EVENT DETAILS: Learn to use marksman and sniper rifles with high-powered optics to observe and potentially eliminate enemies during recon.\nSERVER: Training Server\nMAP: Training Server - Altis\nMODS / MODPACK REQUIRED: Standard modlist and approved whitelisted mods.', 56, 0, '2025-10-05 03:08:04', '2025-12-17 19:45:40', NULL, '8538077', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3284, 'Heavy Weapons School', '2025-10-13 18:00:00', '2025-10-13 20:00:00', '', '#a250e8', 'EVENT DETAILS: Gain intermediate knowledge of AT launchers and emplaced weapons systems\nSERVER: 17th Training Server\nMAP: Training Map - VT7\nMODS / MODPACK REQUIRED: 17th Battalion Shadowmod\n\n', 468, 0, '2025-10-08 18:55:02', '2025-12-17 19:45:40', NULL, '8540725', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3285, '[Cancelled] Forward Observer School', '2025-10-12 18:00:00', '2025-10-12 20:00:00', '', '#a250e8', 'EVENT DETAILS: Learn to call in and correct IDF fire missions\nSERVER: 17th Training Server\nMAP: Training Map - VT7\nMODS / MODPACK REQUIRED: 17th Battalion Shadowmod\n\n', 468, 1, '2025-10-08 18:56:10', '2025-12-17 19:45:40', NULL, '8540726', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3286, 'Advanced UAV School', '2025-10-15 18:00:00', '2025-10-15 20:00:00', '', '#a250e8', 'EVENT DETAILS: Learn to employ larger drones to conduct recon and/or direct strikes\nSERVER: 17th Training Server\nMAP: Training Map - VT7\nMODS / MODPACK REQUIRED: 17th Battalion Shadowmod\n\n', 468, 0, '2025-10-08 18:58:09', '2025-12-17 19:45:40', NULL, '8540728', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3287, 'Combat Diver School', '2025-10-19 18:00:00', '2025-10-19 20:00:00', '', '#a250e8', 'EVENT DETAILS: Baby shark doo dooo dooo baby shark do dooo doooooo\nSERVER: 17th Training Server\nMAP: Training Map - VT7\nMODS / MODPACK REQUIRED: 17th Battalion Shadowmod\n\n', 468, 0, '2025-10-08 18:59:22', '2025-12-17 19:45:40', NULL, '8540729', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3288, 'Basic Training', '2025-10-12 16:00:00', '2025-10-12 18:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Altis Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 23, 0, '2025-10-11 05:43:32', '2025-12-17 19:45:40', NULL, '8542408', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3289, 'GOTHIC SERPENT Official Joint Op with 9th ACG', '2025-10-24 20:00:00', '2025-10-25 00:00:00', '9th Operations server', '#ecb200', 'EVENT DETAILS: Joint OP - Gothic Serpent Influenced OP\nSERVER: 9th Private Operations\nMAP: TBD\nMODS / MODPACK REQUIRED: Joint Modpack \n', 27, 0, '2025-10-12 03:04:18', '2025-12-17 19:45:40', NULL, '8542939', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3290, 'Basic Training', '2025-10-13 16:00:00', '2025-10-13 18:30:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 64, 0, '2025-10-12 04:27:59', '2025-12-17 19:45:40', NULL, '8542943', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3291, 'Mechanized Qual', '2025-10-16 17:00:00', '2025-10-16 19:00:00', '', '#d89332', 'Event Details- Learn how to command our armored assets. \nServer- 17th Training Server \nMap- Current trainign map \nMods- 17th Shadowmod, A3TI Thermal Enhancement ', 7, 0, '2025-10-14 18:45:30', '2025-12-17 19:45:40', NULL, '8543782', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3292, 'Heavy Weapons School', '2025-10-21 18:00:00', '2025-10-21 20:15:00', '', '#a250e8', 'EVENT DETAILS: Gain intermediate knowledge of AT launchers and emplaced weapons systems\nSERVER: 17th Training Server\nMAP: Training Map - VT7\nMODS / MODPACK REQUIRED: 17th Battalion Shadowmod\n\n', 468, 0, '2025-10-15 05:53:13', '2025-12-17 19:45:40', NULL, '8543835', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3293, 'Anti Armor School', '2025-10-22 18:00:00', '2025-10-22 20:30:00', '', '#a250e8', 'EVENT DETAILS: Gain intermediate knowledge of enemy armored fighting vehicles. In learning AFVs\' weakness and strengths, we can learn how to best combat them.\nSERVER: 17th Training Server\nMAP: Training Map - VT7\nMODS / MODPACK REQUIRED: 17th Battalion Shadowmod\n\n', 468, 0, '2025-10-15 05:54:17', '2025-12-17 19:45:40', NULL, '8543836', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3294, 'Sniper School', '2025-10-19 13:00:00', '2025-10-19 15:30:00', '', '#FFFFFF', 'EVENT DETAILS: Learn to use marksman and sniper rifles with high-powered optics to observe and potentially eliminate enemies during recon.\nSERVER: Training Server\nMAP: Training Server - Altis\nMODS / MODPACK REQUIRED: Standard modlist and approved whitelisted mods.', 56, 0, '2025-10-18 16:09:00', '2025-12-17 19:45:40', NULL, '8546775', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3295, 'RASP', '2025-11-01 18:00:00', '2025-11-01 21:00:00', 'Private Ops Server', '#df5353', 'EVENT DETAILS: RASP\nSERVER: 17th Private Operations\nMAP: \n\nMODS / MODPACK REQUIRED: 17th Modpack\n', 43, 0, '2025-10-19 02:50:38', '2025-12-17 19:45:40', NULL, '8547541', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3296, 'FW CAS (RESCHEDULED)', '2025-10-23 16:00:00', '2025-10-23 18:00:00', '17th Training Server', '#FFFFFF', 'EVENT DETAILS: FW CAS Training\nSERVER: 17th Training Server\nMAP: Training map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 64, 0, '2025-10-20 19:52:02', '2025-12-17 19:45:40', NULL, '8547711', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3297, 'Rotary Wing CAS Challenge', '2025-10-25 13:30:00', '2025-10-25 14:30:00', 'Training Server', '#a250e8', 'Prescheduled 1:1 Challenge ', 468, 0, '2025-10-21 03:10:19', '2025-12-17 19:45:40', NULL, '8548090', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3298, '[CANCELED] Basic Training', '2025-10-23 17:00:00', '2025-10-23 19:30:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Virolahti Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 26, 1, '2025-10-21 21:27:55', '2025-12-17 19:45:40', NULL, '8548211', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3299, 'FW CAS', '2025-10-25 10:00:00', '2025-10-25 12:00:00', '', '#FFFFFF', 'EVENT DETAILS: FW CAS Training\nSERVER: 17th Training Server\nMAP: Training map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 64, 0, '2025-10-23 19:35:13', '2025-12-17 19:45:40', NULL, '8548493', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3300, 'Battalion FTX', '2025-11-08 19:00:00', '2025-11-08 22:00:00', '', '#df5353', 'EVENT DETAILS: Battalion FTX\nSERVER: 17th Private Operations\nMAP: TBD\nMODS / MODPACK REQUIRED: 17th Modpack + Desired Whitelist', 19, 0, '2025-10-26 03:53:16', '2025-12-17 19:45:40', NULL, '8549145', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3301, 'Holiday Break', '2025-12-23 00:00:00', '2026-01-03 00:00:00', '', '#df5353', '', 38, 0, '2025-10-28 00:43:52', '2025-12-17 19:45:40', NULL, '8550021', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3302, 'Operation Fractured Bolt P1', '2025-11-15 19:00:00', '2025-11-15 22:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: Drakovac\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-10-28 00:45:18', '2025-12-17 19:45:40', NULL, '8550022', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3303, 'Holiday Break (Thanksgiving)', '2025-11-26 00:00:00', '2025-12-01 00:00:00', '', '#df5353', '', 38, 0, '2025-10-28 00:45:37', '2025-12-17 19:45:40', NULL, '8550023', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3304, 'Operation Fractured Bolt P2', '2025-11-22 19:00:00', '2025-11-22 22:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: Drakovac\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-10-28 00:46:06', '2025-12-17 19:45:40', NULL, '8550024', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3305, 'Operation Fractured Bolt P3', '2025-12-06 19:00:00', '2025-12-06 22:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: Drakovac\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-10-28 00:55:47', '2025-12-17 19:45:40', NULL, '8550025', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3306, 'Operation Fractured Bolt P4', '2025-12-13 19:00:00', '2025-12-13 22:00:00', '', '#df5353', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: Drakovac\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-10-28 00:55:58', '2025-12-17 19:45:40', NULL, '8550026', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3307, 'Joint Op: Operation Iron Veridct Part 2', '2025-12-20 19:00:00', '2025-12-20 22:00:00', '', '#df5353', 'EVENT DETAILS: Joint Operation\nSERVER: 17th Mod Validation Server\nMAP:Cherno SUmmer\nMODS / MODPACK REQUIRED: 17th Mod Validation Test Pack\n\n\n\n\n\n', 46, 0, '2025-10-28 01:00:57', '2025-12-17 19:45:40', NULL, '8550027', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3308, 'Fractured Bolt RRC Mini-Op 1', '2025-11-11 19:00:00', '2025-11-11 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign RRC Mini-Op\nSERVER: 17th Private Operations\nMAP: Drakovac\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-10-28 04:25:26', '2025-12-17 19:45:40', NULL, '8550408', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3309, 'Fractured Bolt RRC Mini-Op 2', '2025-11-18 19:00:00', '2025-11-18 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign RRC Mini-Op\nSERVER: 17th Private Operations\nMAP: Drakovac\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-10-28 04:28:08', '2025-12-17 19:45:40', NULL, '8550409', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3310, 'Fractured Bolt RRC Mini-Op 3', '2025-12-02 19:00:00', '2025-12-02 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign RRC Mini-Op\nSERVER: 17th Private Operations\nMAP: Drakovac\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-10-28 04:28:31', '2025-12-17 19:45:40', NULL, '8550410', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3311, 'Fractured Bolt RRC Mini-Op 4', '2025-12-09 19:00:00', '2025-12-09 21:00:00', '', '#df5353', 'EVENT DETAILS: Campaign RRC Mini-Op\nSERVER: 17th Private Operations\nMAP: Drakovac\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-10-28 04:29:59', '2025-12-17 19:45:40', NULL, '8550412', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3312, '[Cancelled] Fractured Bolt RRC Mini-Op 5', '2025-12-16 19:00:00', '2025-12-16 21:00:00', '', '#ecb200', 'EVENT DETAILS: Campaign RRC Mini-Op\nSERVER: 17th Private Operations\nMAP: Drakovac\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 1, '2025-10-28 04:31:01', '2025-12-17 19:45:40', NULL, '8550413', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3313, '[Rescheduled] Anti-Armor Training', '2025-11-05 19:00:00', '2025-11-05 21:00:00', '', '#FFFFFF', 'Come to the FTX and learn how to properly trade up your infantryman value (you will always trade positively). Practice using the MAAWs and other AT against armor targets in prep for the upcoming campaign.\nSERVER: Training Server\nMAP: TBD (Probably Altis)\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods\nFTX rescheduled due to mod updates causing server issues.', 37, 0, '2025-10-30 02:20:40', '2025-12-17 19:45:40', NULL, '8550896', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3314, '68W Training (Resceduled)', '2025-11-04 18:00:00', '2025-11-04 19:30:00', '', '#FFFFFF', 'EVENT DETAILS: Learn what to do as a medic, and what to do (and not to do) as a medic in a mas cas situation\nSERVER: Training Server\nMAP: Training Server\nMODS / MODPACK REQUIRED: Standard mod list and approved whitelisted mods.\nNOTE: this might run longer/shorter depending on how many people show up due to quals', 8, 0, '2025-11-01 00:11:48', '2025-12-17 19:45:40', NULL, '8551821', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3315, '68W Training (Canceled)', '2025-11-11 17:30:00', '2025-11-11 19:00:00', '', '#FFFFFF', 'EVENT DETAILS: Learn what to do as a medic, and what to do (and not to do) as a medic in a mas cas situation\nSERVER: Training Server\nMAP: Training Server\nMODS / MODPACK REQUIRED: Standard mod list and approved whitelisted mods.\nNOTE: this might run longer/shorter depending on how many people show up due to quals', 8, 1, '2025-11-05 01:13:26', '2025-12-17 19:45:40', NULL, '8552486', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3316, 'Basic Training', '2025-11-09 13:00:00', '2025-11-09 16:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 12, 0, '2025-11-05 04:37:07', '2025-12-17 19:45:40', NULL, '8552493', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3317, 'Anti Armor FTX', '2025-11-12 19:00:00', '2025-11-12 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: Come to the FTX and learn how to properly trade up your infantryman value (you will always trade positively). Practice using the MAAWs and other AT against armor targets in prep for the upcoming campaign.\nSERVER: Training Server\nMAP: TBD (Probably Altis)\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods', 37, 0, '2025-11-06 00:20:02', '2025-12-17 19:45:40', NULL, '8552943', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3318, 'Modpack / Gear / Update Deadline (Server down for Patches)', '2025-11-10 18:30:00', '2025-11-10 22:30:00', '', '#df5353', '', 38, 0, '2025-11-07 02:02:09', '2025-12-17 19:45:40', NULL, '8553025', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3319, 'Air Assault Training', '2025-11-13 19:00:00', '2025-11-13 21:00:00', 'Training Server - Meet at Training Grounds', '#ecb200', 'EVENT DETAILS:\n• Be introduced to the definition and purpose of air assaults\n• Learn to plan an air assault\n• Learn proper procedure for loading and dismounting from rotary assets\n• Learn to plan and execute an extraction\n• Learn how to use the fast roping system\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Modpack', 73, 0, '2025-11-08 00:23:59', '2025-12-17 19:45:40', NULL, '8553114', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3320, 'Echo Flight Training', '2025-11-20 20:00:00', '2025-11-20 21:30:00', '', '#a250e8', 'EVENT DETAILS:\n General flight training for upcoming operations.\n\n\nSERVER:\n 17th Training Server\n\n\nMAP:\n Altis\n\n\nMODS / MODPACK REQUIRED:\n 17th Shadowmod', 80, 0, '2025-11-13 00:19:14', '2025-12-17 19:45:40', NULL, '8555219', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3321, 'Basic Training', '2025-11-14 16:30:00', '2025-11-14 19:30:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 67, 0, '2025-11-14 01:03:05', '2025-12-17 19:45:40', NULL, '8555418', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3322, 'Operation Venom{CANCELED}', '2025-11-17 19:00:00', '2025-11-17 21:00:00', '', '#FFFFFF', 'NOT enough PPL signed up\n\n\n\nAn Elite CSAT VIPER Element Moves to Sabotage an AAF MLRS Positon\n\n\nEVENT DETAILS: OPFOR OP\nSERVER: 17th Private Operations\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Modpack', 43, 1, '2025-11-14 03:44:59', '2025-12-17 19:45:40', NULL, '8555421', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3323, 'NCO Meeting', '2025-11-15 18:00:00', '2025-11-15 18:15:00', '', '#FFFFFF', '', 61, 0, '2025-11-15 06:42:31', '2025-12-17 19:45:40', NULL, '8555522', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3324, 'Basic Training', '2025-11-19 20:00:00', '2025-11-19 22:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 37, 0, '2025-11-18 00:03:58', '2025-12-17 19:45:40', NULL, '8556406', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3325, 'Land Navigation', '2025-11-24 19:00:00', '2025-11-24 21:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Land Navigation qualification.\nSERVER: Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Main Modpack + Desired whitelisted mods', 67, 0, '2025-11-20 00:18:40', '2025-12-17 19:45:40', NULL, '8556660', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3326, 'Combat Lifesaver Training', '2025-11-21 19:00:00', '2025-11-21 21:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: CLS Training where you learn how to help out others in the field, and more on how we do medical stuff\nSERVER: 17th Training Server\nMAP: Stratis\nMODS / MODPACK REQUIRED: 17th Modpack\nTime might be longer/shorter depending on how many people show up, and quals', 67, 0, '2025-11-20 00:27:18', '2025-12-17 19:45:40', NULL, '8556661', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3327, 'Ranger School 1', '2025-12-04 19:00:00', '2025-12-04 21:00:00', 'Training Server', '#ecb200', 'EVENT DETAILS: Ranger School 1 - Standard Field Operations\nSERVER: 17th Training Server\nMAP: Stratis\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 0, '2025-11-21 00:40:37', '2025-12-17 19:45:40', NULL, '8557174', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3328, 'NCO meeting', '2025-11-22 18:00:00', '2025-11-22 18:15:00', '', '#FFFFFF', '', 61, 0, '2025-11-21 09:03:44', '2025-12-17 19:45:40', NULL, '8557254', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3329, 'Alpha Debrief', '2025-11-22 22:00:00', '2025-11-23 22:15:00', '', '#FFFFFF', 'Quick meeting, SLs are requested, everyone else is invited at their discression.\nGonna do a weekly meeting, see how the op went, what we can improve on and what went well, as well as anything else you may wish to bring up to alpha command.', 61, 0, '2025-11-23 02:55:20', '2025-12-17 19:45:40', NULL, '8558286', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3330, 'Basic Training', '2025-12-01 15:00:00', '2025-12-01 17:00:00', '', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Training Map\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 64, 0, '2025-11-30 19:26:15', '2025-12-17 19:45:40', NULL, '8561720', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3331, 'Heavy Weapons Training', '2025-12-05 19:00:00', '2025-12-05 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: Come learn how to properly use AT so that you don\'t get run over by a Chieftain or Warrior :D\nSERVER: 17th Training Server\nMAP: Stratis\nMODS / MODPACK REQUIRED: 17th Modpack', 37, 0, '2025-12-01 19:09:06', '2025-12-17 19:45:40', NULL, '8562166', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3332, '[Cancelled] Echo Flight Training', '2025-12-04 20:00:00', '2025-12-04 21:00:00', '', '#FFFFFF', 'EVENT DETAILS:\n General flight training for upcoming operations.\nSERVER:\n 17th Training Server\nMAP:\n Stratis Training Map\nMODS / MODPACK REQUIRED:\n 17th Shadowmod', 80, 1, '2025-12-02 04:46:57', '2025-12-17 19:45:40', NULL, '8562248', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3333, 'Sniper School', '2025-12-13 13:00:00', '2025-12-13 15:30:00', '', '#FFFFFF', 'EVENT DETAILS: Learn to use marksman and sniper rifles with high-powered optics to observe and potentially eliminate enemies during recon.\nSERVER: Training Server\nMAP: Training Server - Altis\nMODS / MODPACK REQUIRED: Standard modlist and approved whitelisted mods.', 56, 0, '2025-12-04 05:04:58', '2025-12-17 19:45:40', NULL, '8562500', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3334, 'Ranger School 2', '2025-12-08 19:00:00', '2025-12-08 21:00:00', '', '#FFFFFF', 'EVENT DETAILS: Ranger School 2 - Standard Combat Operations\nSERVER: 17th Training Server\nMAP: Stratis\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 0, '2025-12-05 04:46:35', '2025-12-17 19:45:40', NULL, '8563246', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3335, 'Ranger School 3', '2025-12-11 19:00:00', '2025-12-11 21:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Ranger School 3 - MOUT\nSERVER: 17th Training Server\nMAP: Stratis\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 0, '2025-12-05 04:46:55', '2025-12-17 19:45:40', NULL, '8563247', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3336, 'Ranger School 4', '2025-12-15 19:00:00', '2025-12-15 21:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Ranger School 4 - CQB Training\nSERVER: 17th Training Server\nMAP: Stratis\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 0, '2025-12-05 04:47:17', '2025-12-17 19:45:40', NULL, '8563248', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3337, 'Anti Armor', '2025-12-12 19:00:00', '2025-12-12 21:30:00', '', '#FFFFFF', 'EVENT DETAILS: Come learn about the differences between vehicles so you can hit people with the nerd emoji during ops :)\nSERVER: 17th Training Server\nMAP: Stratis\nMODS / MODPACK REQUIRED: 17th Modpack', 37, 0, '2025-12-06 21:25:30', '2025-12-17 19:45:40', NULL, '8563315', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3338, 'NCO Meeting', '2025-12-06 18:00:00', '2025-12-06 18:15:00', '', '#FFFFFF', '', 61, 0, '2025-12-06 21:41:50', '2025-12-17 19:45:40', NULL, '8563316', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3339, 'Accelerated Basic Training', '2025-12-08 19:00:00', '2025-12-08 21:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Basic Training\nSERVER: 17th Training Server\nMAP: Stratis\nMODS / MODPACK REQUIRED: 17th Battalion Shadow Modpack', 67, 0, '2025-12-07 05:25:44', '2025-12-17 19:45:40', NULL, '8563326', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3340, 'ACE SETTINGS REVIEW', '2025-12-12 19:30:00', '2025-12-12 21:00:00', 'PRIVATE OPS SERVER', '#df5353', 'a bunch of mods changed here... a bunch of mods changed there...these mods changing everywhere\n\n\nwe need to review these settings and recertify them to make sure nothing is broken PULL UP \n\n\n\nPULL UP WITH YOUR STANDARD MOD PACK', 43, 0, '2025-12-09 02:59:00', '2025-12-17 19:45:40', NULL, '8563371', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3341, 'NCO Meeting', '2025-12-13 18:00:00', '2025-12-13 18:15:00', '', '#FFFFFF', '', 61, 0, '2025-12-13 17:29:15', '2025-12-17 19:45:40', NULL, '8564397', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3342, 'Alpha Debrief / Yap at me if u want', '2025-12-13 22:00:00', '2025-12-13 22:15:00', '', '#FFFFFF', 'Ill be around 15 minutes or so after the op if you wanna yap about how the op went, points for you or me to improve on, literally whatever', 61, 0, '2025-12-13 17:30:23', '2025-12-17 19:45:40', NULL, '8564398', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3343, 'Sniper Review', '2025-12-16 23:00:00', '2025-12-17 00:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Sniper Course Review\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 0, '2025-12-14 04:41:30', '2025-12-17 19:45:40', NULL, '8564411', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3344, 'NO NEW DATA IN GUILDED', '2025-12-17 00:00:00', '2025-12-20 00:00:00', '', '#df5353', 'Data Migration to new platform! Any Data added to Guilded will not be transferred!', 38, 0, '2025-12-16 02:50:32', '2025-12-17 19:45:40', NULL, '8564829', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), + (3345, 'NCO Meeting', '2025-12-20 18:00:00', '2025-12-20 18:15:00', 'NCO Club on TS', '#6cd265', 'Yap about the plan', 61, 0, '2025-12-18 05:01:33', '2025-12-18 05:01:33', NULL, NULL, NULL); --- Dumping data for table ranger_unit_tracker.calendar_events: ~0 rows (approximately) +-- Dumping data for table milsim_website_development.calendar_events_signups: ~99,017 rows (approximately) +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (1, 3241, 'attending', '2025-10-11 17:58:40', '2025-12-17 19:46:13', 'dlYNOzlm', '8493557'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (1, 3242, 'attending', '2025-10-24 20:45:21', '2025-12-17 19:46:14', 'dlYNOzlm', '8493558'), + (1, 3243, 'not_attending', '2025-10-18 00:21:30', '2025-12-17 19:46:14', 'dlYNOzlm', '8493559'), + (1, 3253, 'not_attending', '2025-10-26 17:02:39', '2025-12-17 19:46:14', 'dlYNOzlm', '8493572'), + (1, 3295, 'not_attending', '2025-11-01 22:20:22', '2025-12-17 19:46:14', 'dlYNOzlm', '8547541'), + (1, 3300, 'not_attending', '2025-11-01 22:20:24', '2025-12-17 19:46:14', 'dlYNOzlm', '8549145'), + (1, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dlYNOzlm', '8555421'), + (2, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dBbJMp8d', '7074364'), + (2, 2528, 'maybe', '2024-08-08 19:04:57', '2025-12-17 19:46:31', 'dBbJMp8d', '7074368'), + (2, 2556, 'attending', '2024-04-19 02:04:56', '2025-12-17 19:46:34', 'dBbJMp8d', '7114955'), + (2, 2557, 'not_attending', '2024-04-26 02:52:33', '2025-12-17 19:46:34', 'dBbJMp8d', '7114956'), + (2, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dBbJMp8d', '7114957'), + (2, 2585, 'not_attending', '2024-04-24 23:08:33', '2025-12-17 19:46:34', 'dBbJMp8d', '7175828'), + (2, 2590, 'maybe', '2024-04-17 04:26:38', '2025-12-17 19:46:34', 'dBbJMp8d', '7178446'), + (2, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dBbJMp8d', '7220467'), + (2, 2603, 'attending', '2024-05-15 16:35:54', '2025-12-17 19:46:35', 'dBbJMp8d', '7225669'), + (2, 2604, 'attending', '2024-05-29 10:11:27', '2025-12-17 19:46:36', 'dBbJMp8d', '7225670'), + (2, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBbJMp8d', '7240354'), + (2, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBbJMp8d', '7251633'), + (2, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBbJMp8d', '7263048'), + (2, 2626, 'attending', '2024-05-18 21:10:58', '2025-12-17 19:46:35', 'dBbJMp8d', '7264723'), + (2, 2627, 'attending', '2024-05-24 00:07:47', '2025-12-17 19:46:35', 'dBbJMp8d', '7264724'), + (2, 2628, 'attending', '2024-05-29 10:11:44', '2025-12-17 19:46:36', 'dBbJMp8d', '7264725'), + (2, 2629, 'attending', '2024-06-05 19:15:46', '2025-12-17 19:46:28', 'dBbJMp8d', '7264726'), + (2, 2630, 'attending', '2024-05-16 21:07:59', '2025-12-17 19:46:35', 'dBbJMp8d', '7264801'), + (2, 2636, 'attending', '2024-05-26 17:48:18', '2025-12-17 19:46:35', 'dBbJMp8d', '7270323'), + (2, 2637, 'attending', '2024-05-26 20:55:46', '2025-12-17 19:46:35', 'dBbJMp8d', '7270324'), + (2, 2644, 'maybe', '2024-05-23 10:39:35', '2025-12-17 19:46:35', 'dBbJMp8d', '7279039'), + (2, 2647, 'attending', '2024-06-09 17:55:06', '2025-12-17 19:46:28', 'dBbJMp8d', '7282057'), + (2, 2652, 'maybe', '2024-05-26 13:52:29', '2025-12-17 19:46:36', 'dBbJMp8d', '7288339'), + (2, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dBbJMp8d', '7302674'), + (2, 2665, 'attending', '2024-06-07 19:45:02', '2025-12-17 19:46:36', 'dBbJMp8d', '7306370'), + (2, 2667, 'attending', '2024-06-05 19:15:21', '2025-12-17 19:46:36', 'dBbJMp8d', '7307776'), + (2, 2668, 'maybe', '2024-06-05 19:15:36', '2025-12-17 19:46:36', 'dBbJMp8d', '7308821'), + (2, 2678, 'attending', '2024-06-10 13:47:10', '2025-12-17 19:46:28', 'dBbJMp8d', '7319489'), + (2, 2679, 'maybe', '2024-06-10 13:41:28', '2025-12-17 19:46:29', 'dBbJMp8d', '7319490'), + (2, 2682, 'attending', '2024-06-10 14:37:45', '2025-12-17 19:46:28', 'dBbJMp8d', '7321862'), + (2, 2683, 'maybe', '2024-06-10 19:25:19', '2025-12-17 19:46:28', 'dBbJMp8d', '7321978'), + (2, 2687, 'attending', '2024-06-12 13:44:17', '2025-12-17 19:46:28', 'dBbJMp8d', '7324019'), + (2, 2688, 'attending', '2024-06-18 15:46:24', '2025-12-17 19:46:29', 'dBbJMp8d', '7324073'), + (2, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dBbJMp8d', '7324074'), + (2, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dBbJMp8d', '7324075'), + (2, 2691, 'not_attending', '2024-07-15 11:23:24', '2025-12-17 19:46:30', 'dBbJMp8d', '7324076'), + (2, 2692, 'not_attending', '2024-07-19 11:46:32', '2025-12-17 19:46:30', 'dBbJMp8d', '7324077'), + (2, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dBbJMp8d', '7324078'), + (2, 2694, 'attending', '2024-08-10 16:01:11', '2025-12-17 19:46:31', 'dBbJMp8d', '7324079'), + (2, 2696, 'attending', '2024-08-24 21:24:45', '2025-12-17 19:46:32', 'dBbJMp8d', '7324081'), + (2, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dBbJMp8d', '7324082'), + (2, 2698, 'attending', '2024-09-07 12:16:18', '2025-12-17 19:46:24', 'dBbJMp8d', '7324083'), + (2, 2699, 'attending', '2024-06-12 16:23:46', '2025-12-17 19:46:28', 'dBbJMp8d', '7324385'), + (2, 2700, 'not_attending', '2024-06-13 01:27:49', '2025-12-17 19:46:28', 'dBbJMp8d', '7324388'), + (2, 2701, 'attending', '2024-06-21 11:09:03', '2025-12-17 19:46:29', 'dBbJMp8d', '7324391'), + (2, 2705, 'maybe', '2024-06-21 11:09:12', '2025-12-17 19:46:29', 'dBbJMp8d', '7324944'), + (2, 2706, 'attending', '2024-06-16 15:20:22', '2025-12-17 19:46:28', 'dBbJMp8d', '7324947'), + (2, 2711, 'attending', '2024-07-19 00:21:35', '2025-12-17 19:46:30', 'dBbJMp8d', '7326524'), + (2, 2721, 'attending', '2024-06-18 22:32:13', '2025-12-17 19:46:29', 'dBbJMp8d', '7331456'), + (2, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dBbJMp8d', '7331457'), + (2, 2723, 'attending', '2024-06-21 11:07:54', '2025-12-17 19:46:29', 'dBbJMp8d', '7332389'), + (2, 2724, 'attending', '2024-06-21 11:08:47', '2025-12-17 19:46:29', 'dBbJMp8d', '7332562'), + (2, 2729, 'attending', '2024-06-21 21:28:22', '2025-12-17 19:46:29', 'dBbJMp8d', '7335092'), + (2, 2731, 'attending', '2024-06-22 17:20:07', '2025-12-17 19:46:29', 'dBbJMp8d', '7335303'), + (2, 2735, 'attending', '2024-06-28 16:50:58', '2025-12-17 19:46:29', 'dBbJMp8d', '7340369'), + (2, 2737, 'attending', '2024-07-01 21:29:50', '2025-12-17 19:46:29', 'dBbJMp8d', '7344070'), + (2, 2741, 'not_attending', '2024-06-30 23:44:52', '2025-12-17 19:46:30', 'dBbJMp8d', '7344592'), + (2, 2742, 'attending', '2024-07-01 21:30:05', '2025-12-17 19:46:29', 'dBbJMp8d', '7345167'), + (2, 2744, 'attending', '2024-07-03 16:29:49', '2025-12-17 19:46:29', 'dBbJMp8d', '7347764'), + (2, 2746, 'maybe', '2024-07-11 21:55:59', '2025-12-17 19:46:29', 'dBbJMp8d', '7348713'), + (2, 2747, 'attending', '2024-07-16 21:39:42', '2025-12-17 19:46:30', 'dBbJMp8d', '7353587'), + (2, 2749, 'maybe', '2024-07-09 20:46:16', '2025-12-17 19:46:29', 'dBbJMp8d', '7355496'), + (2, 2753, 'maybe', '2024-07-16 00:41:40', '2025-12-17 19:46:30', 'dBbJMp8d', '7355538'), + (2, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dBbJMp8d', '7356752'), + (2, 2755, 'attending', '2024-07-09 18:44:42', '2025-12-17 19:46:29', 'dBbJMp8d', '7357808'), + (2, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dBbJMp8d', '7358733'), + (2, 2759, 'not_attending', '2024-07-12 19:40:34', '2025-12-17 19:46:30', 'dBbJMp8d', '7359624'), + (2, 2766, 'maybe', '2024-07-26 22:33:53', '2025-12-17 19:46:30', 'dBbJMp8d', '7363643'), + (2, 2768, 'attending', '2024-07-18 22:49:10', '2025-12-17 19:46:30', 'dBbJMp8d', '7366031'), + (2, 2769, 'attending', '2024-07-19 21:21:13', '2025-12-17 19:46:30', 'dBbJMp8d', '7366803'), + (2, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dBbJMp8d', '7368606'), + (2, 2786, 'maybe', '2024-08-06 16:40:02', '2025-12-17 19:46:31', 'dBbJMp8d', '7381403'), + (2, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dBbJMp8d', '7397462'), + (2, 2802, 'attending', '2024-08-26 13:45:48', '2025-12-17 19:46:32', 'dBbJMp8d', '7397463'), + (2, 2806, 'attending', '2024-09-05 23:43:49', '2025-12-17 19:46:25', 'dBbJMp8d', '7404888'), + (2, 2817, 'maybe', '2024-09-29 15:12:18', '2025-12-17 19:46:25', 'dBbJMp8d', '7424270'), + (2, 2821, 'not_attending', '2024-10-09 14:05:55', '2025-12-17 19:46:26', 'dBbJMp8d', '7424275'), + (2, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dBbJMp8d', '7424276'), + (2, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dBbJMp8d', '7432751'), + (2, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dBbJMp8d', '7432752'), + (2, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dBbJMp8d', '7432753'), + (2, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dBbJMp8d', '7432754'), + (2, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dBbJMp8d', '7432755'), + (2, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dBbJMp8d', '7432756'), + (2, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dBbJMp8d', '7432758'), + (2, 2831, 'maybe', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dBbJMp8d', '7432759'), + (2, 2832, 'attending', '2024-09-09 20:22:44', '2025-12-17 19:46:24', 'dBbJMp8d', '7433324'), + (2, 2833, 'maybe', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dBbJMp8d', '7433834'), + (2, 2835, 'maybe', '2024-09-11 16:23:20', '2025-12-17 19:46:24', 'dBbJMp8d', '7437354'), + (2, 2838, 'not_attending', '2024-09-18 18:14:31', '2025-12-17 19:46:25', 'dBbJMp8d', '7439182'), + (2, 2839, 'maybe', '2024-09-13 10:29:26', '2025-12-17 19:46:25', 'dBbJMp8d', '7439262'), + (2, 2840, 'attending', '2024-09-16 20:57:42', '2025-12-17 19:46:25', 'dBbJMp8d', '7444429'), + (2, 2848, 'attending', '2024-09-24 16:38:48', '2025-12-17 19:46:25', 'dBbJMp8d', '7456145'), + (2, 2858, 'attending', '2024-10-16 00:56:18', '2025-12-17 19:46:26', 'dBbJMp8d', '7469388'), + (2, 2862, 'maybe', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dBbJMp8d', '7470197'), + (2, 2864, 'maybe', '2024-10-16 00:57:47', '2025-12-17 19:46:26', 'dBbJMp8d', '7471199'), + (2, 2865, 'attending', '2024-10-30 20:57:00', '2025-12-17 19:46:26', 'dBbJMp8d', '7471200'), + (2, 2867, 'not_attending', '2024-11-26 22:27:18', '2025-12-17 19:46:21', 'dBbJMp8d', '7471202'), + (2, 2869, 'attending', '2024-10-05 15:07:40', '2025-12-17 19:46:26', 'dBbJMp8d', '7474823'), + (2, 2871, 'maybe', '2024-10-16 00:57:23', '2025-12-17 19:46:26', 'dBbJMp8d', '7480481'), + (2, 2878, 'maybe', '2024-10-16 00:55:29', '2025-12-17 19:46:26', 'dBbJMp8d', '7633857'), + (2, 2881, 'not_attending', '2024-10-31 21:51:44', '2025-12-17 19:46:26', 'dBbJMp8d', '7644047'), + (2, 2883, 'attending', '2024-10-17 21:22:42', '2025-12-17 19:46:26', 'dBbJMp8d', '7649157'), + (2, 2891, 'attending', '2024-10-26 20:48:50', '2025-12-17 19:46:26', 'dBbJMp8d', '7668163'), + (2, 2892, 'attending', '2024-10-30 15:50:16', '2025-12-17 19:46:26', 'dBbJMp8d', '7672064'), + (2, 2895, 'maybe', '2024-11-05 00:50:01', '2025-12-17 19:46:26', 'dBbJMp8d', '7682072'), + (2, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dBbJMp8d', '7685613'), + (2, 2899, 'maybe', '2024-11-13 13:28:42', '2025-12-17 19:46:27', 'dBbJMp8d', '7685616'), + (2, 2900, 'maybe', '2024-11-10 15:29:19', '2025-12-17 19:46:26', 'dBbJMp8d', '7686090'), + (2, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dBbJMp8d', '7688194'), + (2, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dBbJMp8d', '7688196'), + (2, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dBbJMp8d', '7688289'), + (2, 2911, 'attending', '2024-11-11 12:35:15', '2025-12-17 19:46:27', 'dBbJMp8d', '7689876'), + (2, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dBbJMp8d', '7692763'), + (2, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dBbJMp8d', '7697552'), + (2, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dBbJMp8d', '7699878'), + (2, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dBbJMp8d', '7704043'), + (2, 2920, 'attending', '2024-11-24 00:24:23', '2025-12-17 19:46:28', 'dBbJMp8d', '7708406'), + (2, 2924, 'attending', '2024-11-27 00:01:55', '2025-12-17 19:46:28', 'dBbJMp8d', '7712467'), + (2, 2925, 'attending', '2024-12-12 23:55:28', '2025-12-17 19:46:21', 'dBbJMp8d', '7713584'), + (2, 2926, 'attending', '2024-12-05 23:16:34', '2025-12-17 19:46:21', 'dBbJMp8d', '7713585'), + (2, 2927, 'maybe', '2024-12-17 02:17:08', '2025-12-17 19:46:22', 'dBbJMp8d', '7713586'), + (2, 2930, 'maybe', '2024-12-09 02:26:56', '2025-12-17 19:46:21', 'dBbJMp8d', '7724554'), + (2, 2947, 'attending', '2024-12-09 03:09:30', '2025-12-17 19:46:21', 'dBbJMp8d', '7727445'), + (2, 2952, 'not_attending', '2024-12-15 21:33:09', '2025-12-17 19:46:21', 'dBbJMp8d', '7730167'), + (2, 2958, 'maybe', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dBbJMp8d', '7738518'), + (2, 2959, 'maybe', '2024-12-21 20:26:11', '2025-12-17 19:46:22', 'dBbJMp8d', '7747388'), + (2, 2962, 'attending', '2024-12-26 22:25:16', '2025-12-17 19:46:22', 'dBbJMp8d', '7750632'), + (2, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBbJMp8d', '7750636'), + (2, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBbJMp8d', '7796540'), + (2, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBbJMp8d', '7796541'), + (2, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBbJMp8d', '7796542'), + (2, 2967, 'attending', '2025-01-07 14:59:57', '2025-12-17 19:46:22', 'dBbJMp8d', '7797181'), + (2, 2968, 'attending', '2025-01-12 21:40:19', '2025-12-17 19:46:22', 'dBbJMp8d', '7797967'), + (2, 2969, 'attending', '2025-01-11 22:39:35', '2025-12-17 19:46:22', 'dBbJMp8d', '7800474'), + (2, 2971, 'attending', '2025-01-23 15:06:02', '2025-12-17 19:46:22', 'dBbJMp8d', '7812230'), + (2, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dBbJMp8d', '7825913'), + (2, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dBbJMp8d', '7825920'), + (2, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dBbJMp8d', '7826209'), + (2, 2983, 'attending', '2025-02-01 16:58:29', '2025-12-17 19:46:23', 'dBbJMp8d', '7829499'), + (2, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dBbJMp8d', '7834742'), + (2, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dBbJMp8d', '7842108'), + (2, 2990, 'attending', '2025-02-15 19:23:34', '2025-12-17 19:46:23', 'dBbJMp8d', '7842898'), + (2, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dBbJMp8d', '7842902'), + (2, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dBbJMp8d', '7842903'), + (2, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dBbJMp8d', '7842904'), + (2, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dBbJMp8d', '7842905'), + (2, 2999, 'attending', '2025-02-13 01:17:28', '2025-12-17 19:46:23', 'dBbJMp8d', '7844784'), + (2, 3000, 'not_attending', '2025-02-18 03:53:12', '2025-12-17 19:46:24', 'dBbJMp8d', '7852541'), + (2, 3002, 'not_attending', '2025-02-22 15:17:49', '2025-12-17 19:46:24', 'dBbJMp8d', '7854212'), + (2, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dBbJMp8d', '7855719'), + (2, 3007, 'not_attending', '2025-02-25 04:49:52', '2025-12-17 19:46:24', 'dBbJMp8d', '7860683'), + (2, 3008, 'not_attending', '2025-02-25 04:50:05', '2025-12-17 19:46:24', 'dBbJMp8d', '7860684'), + (2, 3010, 'not_attending', '2025-03-01 01:20:05', '2025-12-17 19:46:18', 'dBbJMp8d', '7864879'), + (2, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dBbJMp8d', '7866095'), + (2, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dBbJMp8d', '7869170'), + (2, 3015, 'maybe', '2025-04-21 07:32:52', '2025-12-17 19:46:20', 'dBbJMp8d', '7869186'), + (2, 3016, 'attending', '2025-04-12 15:06:08', '2025-12-17 19:46:20', 'dBbJMp8d', '7869187'), + (2, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dBbJMp8d', '7869188'), + (2, 3018, 'not_attending', '2025-04-11 09:49:59', '2025-12-17 19:46:20', 'dBbJMp8d', '7869189'), + (2, 3028, 'attending', '2025-04-24 19:33:30', '2025-12-17 19:46:20', 'dBbJMp8d', '7869199'), + (2, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dBbJMp8d', '7869201'), + (2, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dBbJMp8d', '7877465'), + (2, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dBbJMp8d', '7878570'), + (2, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dBbJMp8d', '7888250'), + (2, 3075, 'maybe', '2025-04-17 21:39:43', '2025-12-17 19:46:20', 'dBbJMp8d', '7898896'), + (2, 3087, 'not_attending', '2025-04-15 01:13:32', '2025-12-17 19:46:20', 'dBbJMp8d', '7903856'), + (2, 3088, 'maybe', '2025-06-13 16:42:54', '2025-12-17 19:46:15', 'dBbJMp8d', '7904777'), + (2, 3090, 'attending', '2025-04-17 21:39:15', '2025-12-17 19:46:20', 'dBbJMp8d', '7914315'), + (2, 3091, 'attending', '2025-04-17 21:39:24', '2025-12-17 19:46:20', 'dBbJMp8d', '8340289'), + (2, 3094, 'attending', '2025-05-05 10:12:28', '2025-12-17 19:46:21', 'dBbJMp8d', '8342292'), + (2, 3095, 'attending', '2025-04-27 23:24:44', '2025-12-17 19:46:20', 'dBbJMp8d', '8342293'), + (2, 3096, 'maybe', '2025-04-21 07:31:57', '2025-12-17 19:46:20', 'dBbJMp8d', '8342987'), + (2, 3097, 'maybe', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dBbJMp8d', '8342993'), + (2, 3100, 'attending', '2025-04-22 01:57:34', '2025-12-17 19:46:20', 'dBbJMp8d', '8343977'), + (2, 3102, 'not_attending', '2025-04-27 17:27:24', '2025-12-17 19:46:20', 'dBbJMp8d', '8346008'), + (2, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dBbJMp8d', '8349164'), + (2, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dBbJMp8d', '8349545'), + (2, 3106, 'attending', '2025-05-01 09:28:39', '2025-12-17 19:46:20', 'dBbJMp8d', '8349552'), + (2, 3107, 'attending', '2025-05-02 02:16:00', '2025-12-17 19:46:20', 'dBbJMp8d', '8350107'), + (2, 3108, 'attending', '2025-05-01 17:13:32', '2025-12-17 19:46:20', 'dBbJMp8d', '8351411'), + (2, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dBbJMp8d', '8353584'), + (2, 3114, 'maybe', '2025-05-05 10:11:01', '2025-12-17 19:46:20', 'dBbJMp8d', '8357180'), + (2, 3126, 'maybe', '2025-05-14 02:45:33', '2025-12-17 19:46:21', 'dBbJMp8d', '8365614'), + (2, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dBbJMp8d', '8368028'), + (2, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dBbJMp8d', '8368029'), + (2, 3133, 'attending', '2025-05-24 22:19:28', '2025-12-17 19:46:14', 'dBbJMp8d', '8368030'), + (2, 3136, 'not_attending', '2025-05-20 21:46:29', '2025-12-17 19:46:21', 'dBbJMp8d', '8374152'), + (2, 3137, 'not_attending', '2025-05-20 21:46:45', '2025-12-17 19:46:21', 'dBbJMp8d', '8374153'), + (2, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dBbJMp8d', '8388462'), + (2, 3150, 'maybe', '2025-06-21 13:06:55', '2025-12-17 19:46:15', 'dBbJMp8d', '8393174'), + (2, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dBbJMp8d', '8400273'), + (2, 3154, 'attending', '2025-06-26 21:35:18', '2025-12-17 19:46:15', 'dBbJMp8d', '8400274'), + (2, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dBbJMp8d', '8400275'), + (2, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dBbJMp8d', '8400276'), + (2, 3160, 'maybe', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'dBbJMp8d', '8401411'), + (2, 3165, 'attending', '2025-06-07 19:37:34', '2025-12-17 19:46:14', 'dBbJMp8d', '8404220'), + (2, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dBbJMp8d', '8404977'), + (2, 3170, 'attending', '2025-06-09 16:33:52', '2025-12-17 19:46:15', 'dBbJMp8d', '8405947'), + (2, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dBbJMp8d', '8430783'), + (2, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dBbJMp8d', '8430784'), + (2, 3183, 'attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dBbJMp8d', '8430799'), + (2, 3184, 'maybe', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dBbJMp8d', '8430800'), + (2, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dBbJMp8d', '8430801'), + (2, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dBbJMp8d', '8438709'), + (2, 3192, 'maybe', '2025-07-16 17:10:57', '2025-12-17 19:46:17', 'dBbJMp8d', '8456429'), + (2, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dBbJMp8d', '8457738'), + (2, 3195, 'attending', '2025-08-06 21:40:09', '2025-12-17 19:46:17', 'dBbJMp8d', '8458118'), + (2, 3196, 'attending', '2025-08-13 21:37:42', '2025-12-17 19:46:17', 'dBbJMp8d', '8458543'), + (2, 3198, 'attending', '2025-08-20 22:00:11', '2025-12-17 19:46:18', 'dBbJMp8d', '8459268'), + (2, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dBbJMp8d', '8459566'), + (2, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dBbJMp8d', '8459567'), + (2, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dBbJMp8d', '8461032'), + (2, 3210, 'not_attending', '2025-08-27 20:54:11', '2025-12-17 19:46:18', 'dBbJMp8d', '8471162'), + (2, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dBbJMp8d', '8477877'), + (2, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dBbJMp8d', '8485688'), + (2, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dBbJMp8d', '8490587'), + (2, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dBbJMp8d', '8493552'), + (2, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dBbJMp8d', '8493553'), + (2, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dBbJMp8d', '8493554'), + (2, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dBbJMp8d', '8493555'), + (2, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dBbJMp8d', '8493556'), + (2, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dBbJMp8d', '8493557'), + (2, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dBbJMp8d', '8493558'), + (2, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dBbJMp8d', '8493559'), + (2, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dBbJMp8d', '8493560'), + (2, 3245, 'maybe', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dBbJMp8d', '8493561'), + (2, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dBbJMp8d', '8493572'), + (2, 3258, 'attending', '2025-09-03 09:57:10', '2025-12-17 19:46:11', 'dBbJMp8d', '8510285'), + (2, 3263, 'maybe', '2025-09-10 20:22:39', '2025-12-17 19:46:12', 'dBbJMp8d', '8514576'), + (2, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dBbJMp8d', '8540725'), + (2, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dBbJMp8d', '8555421'), + (3, 3195, 'maybe', '2025-08-06 22:21:31', '2025-12-17 19:46:17', 'AnnplqbA', '8458118'), + (3, 3198, 'maybe', '2025-08-20 17:07:42', '2025-12-17 19:46:18', 'AnnplqbA', '8459268'), + (3, 3201, 'not_attending', '2025-08-07 04:50:15', '2025-12-17 19:46:17', 'AnnplqbA', '8459567'), + (3, 3210, 'not_attending', '2025-08-27 05:39:45', '2025-12-17 19:46:18', 'AnnplqbA', '8471162'), + (3, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnnplqbA', '8477877'), + (3, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnnplqbA', '8485688'), + (3, 3235, 'maybe', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnnplqbA', '8490587'), + (3, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnnplqbA', '8493552'), + (3, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnnplqbA', '8493553'), + (3, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnnplqbA', '8493554'), + (3, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnnplqbA', '8493555'), + (3, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnnplqbA', '8493556'), + (3, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnnplqbA', '8493557'), + (3, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnnplqbA', '8493558'), + (3, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnnplqbA', '8493559'), + (3, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnnplqbA', '8493560'), + (3, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnnplqbA', '8493561'), + (3, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnnplqbA', '8493572'), + (3, 3258, 'not_attending', '2025-09-03 18:44:28', '2025-12-17 19:46:11', 'AnnplqbA', '8510285'), + (3, 3260, 'maybe', '2025-09-09 22:48:29', '2025-12-17 19:46:12', 'AnnplqbA', '8512640'), + (3, 3263, 'maybe', '2025-09-10 17:32:02', '2025-12-17 19:46:12', 'AnnplqbA', '8514576'), + (3, 3272, 'attending', '2025-09-18 03:24:34', '2025-12-17 19:46:12', 'AnnplqbA', '8524068'), + (3, 3275, 'not_attending', '2025-09-24 20:41:30', '2025-12-17 19:46:12', 'AnnplqbA', '8527786'), + (3, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnnplqbA', '8540725'), + (3, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnnplqbA', '8555421'), + (4, 2276, 'attending', '2023-10-14 02:59:16', '2025-12-17 19:46:46', '54k7D2w4', '6453951'), + (4, 2296, 'maybe', '2023-10-23 21:41:44', '2025-12-17 19:46:47', '54k7D2w4', '6468393'), + (4, 2299, 'attending', '2023-10-17 03:24:47', '2025-12-17 19:46:46', '54k7D2w4', '6472181'), + (4, 2302, 'not_attending', '2023-10-23 21:35:18', '2025-12-17 19:46:46', '54k7D2w4', '6482535'), + (4, 2303, 'attending', '2023-10-23 19:16:54', '2025-12-17 19:46:47', '54k7D2w4', '6482691'), + (4, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '54k7D2w4', '6482693'), + (4, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '54k7D2w4', '6484200'), + (4, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '54k7D2w4', '6484680'), + (4, 2310, 'maybe', '2023-11-01 21:19:06', '2025-12-17 19:46:47', '54k7D2w4', '6487709'), + (4, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '54k7D2w4', '6507741'), + (4, 2322, 'attending', '2023-11-13 10:23:31', '2025-12-17 19:46:48', '54k7D2w4', '6514659'), + (4, 2323, 'attending', '2023-11-27 04:01:41', '2025-12-17 19:46:48', '54k7D2w4', '6514660'), + (4, 2324, 'attending', '2023-12-04 22:55:36', '2025-12-17 19:46:49', '54k7D2w4', '6514662'), + (4, 2325, 'attending', '2023-12-12 02:57:28', '2025-12-17 19:46:36', '54k7D2w4', '6514663'), + (4, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '54k7D2w4', '6519103'), + (4, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '54k7D2w4', '6535681'), + (4, 2340, 'not_attending', '2023-11-20 06:30:04', '2025-12-17 19:46:48', '54k7D2w4', '6540279'), + (4, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '54k7D2w4', '6584747'), + (4, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '54k7D2w4', '6587097'), + (4, 2353, 'attending', '2023-11-29 23:17:05', '2025-12-17 19:46:48', '54k7D2w4', '6588894'), + (4, 2355, 'not_attending', '2023-11-30 23:56:25', '2025-12-17 19:46:49', '54k7D2w4', '6593339'), + (4, 2356, 'maybe', '2023-12-09 22:26:47', '2025-12-17 19:46:36', '54k7D2w4', '6593340'), + (4, 2357, 'attending', '2023-12-09 22:27:08', '2025-12-17 19:46:36', '54k7D2w4', '6593341'), + (4, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '54k7D2w4', '6609022'), + (4, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '54k7D2w4', '6632757'), + (4, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '54k7D2w4', '6644187'), + (4, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '54k7D2w4', '6648951'), + (4, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '54k7D2w4', '6648952'), + (4, 2388, 'not_attending', '2024-01-06 20:09:16', '2025-12-17 19:46:37', '54k7D2w4', '6649244'), + (4, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '54k7D2w4', '6655401'), + (4, 2399, 'maybe', '2024-01-07 22:23:40', '2025-12-17 19:46:38', '54k7D2w4', '6657583'), + (4, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '54k7D2w4', '6661585'), + (4, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '54k7D2w4', '6661588'), + (4, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '54k7D2w4', '6661589'), + (4, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '54k7D2w4', '6699906'), + (4, 2408, 'attending', '2024-01-26 08:30:18', '2025-12-17 19:46:40', '54k7D2w4', '6699907'), + (4, 2409, 'attending', '2024-02-02 14:42:42', '2025-12-17 19:46:41', '54k7D2w4', '6699909'), + (4, 2410, 'attending', '2024-02-09 18:37:40', '2025-12-17 19:46:41', '54k7D2w4', '6699911'), + (4, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '54k7D2w4', '6699913'), + (4, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '54k7D2w4', '6701109'), + (4, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '54k7D2w4', '6705219'), + (4, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '54k7D2w4', '6710153'), + (4, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '54k7D2w4', '6711552'), + (4, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '54k7D2w4', '6711553'), + (4, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '54k7D2w4', '6722688'), + (4, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '54k7D2w4', '6730620'), + (4, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '54k7D2w4', '6730642'), + (4, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '54k7D2w4', '6740364'), + (4, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '54k7D2w4', '6743829'), + (4, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '54k7D2w4', '7030380'), + (4, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '54k7D2w4', '7033677'), + (4, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '54k7D2w4', '7035415'), + (4, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '54k7D2w4', '7044715'), + (4, 2482, 'maybe', '2024-03-08 00:08:19', '2025-12-17 19:46:44', '54k7D2w4', '7044719'), + (4, 2487, 'maybe', '2024-03-16 17:23:03', '2025-12-17 19:46:33', '54k7D2w4', '7049279'), + (4, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '54k7D2w4', '7050318'), + (4, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '54k7D2w4', '7050319'), + (4, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '54k7D2w4', '7050322'), + (4, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '54k7D2w4', '7057804'), + (4, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '54k7D2w4', '7059866'), + (4, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '54k7D2w4', '7072824'), + (4, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '54k7D2w4', '7074348'), + (4, 2510, 'not_attending', '2024-03-16 17:22:47', '2025-12-17 19:46:33', '54k7D2w4', '7074350'), + (4, 2518, 'maybe', '2024-07-25 15:23:40', '2025-12-17 19:46:30', '54k7D2w4', '7074358'), + (4, 2521, 'maybe', '2024-06-15 18:57:24', '2025-12-17 19:46:29', '54k7D2w4', '7074361'), + (4, 2522, 'not_attending', '2024-07-14 20:45:34', '2025-12-17 19:46:30', '54k7D2w4', '7074362'), + (4, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '54k7D2w4', '7074364'), + (4, 2525, 'maybe', '2024-06-10 14:46:49', '2025-12-17 19:46:28', '54k7D2w4', '7074365'), + (4, 2526, 'not_attending', '2024-08-01 21:08:23', '2025-12-17 19:46:31', '54k7D2w4', '7074366'), + (4, 2527, 'not_attending', '2024-06-23 15:37:19', '2025-12-17 19:46:29', '54k7D2w4', '7074367'), + (4, 2528, 'maybe', '2024-08-06 22:20:50', '2025-12-17 19:46:31', '54k7D2w4', '7074368'), + (4, 2530, 'attending', '2024-08-14 18:41:30', '2025-12-17 19:46:31', '54k7D2w4', '7074373'), + (4, 2531, 'attending', '2024-08-25 23:54:13', '2025-12-17 19:46:32', '54k7D2w4', '7074378'), + (4, 2532, 'not_attending', '2024-09-02 19:59:36', '2025-12-17 19:46:32', '54k7D2w4', '7074383'), + (4, 2533, 'attending', '2024-08-19 05:37:55', '2025-12-17 19:46:32', '54k7D2w4', '7074384'), + (4, 2537, 'not_attending', '2024-03-18 19:56:35', '2025-12-17 19:46:33', '54k7D2w4', '7085484'), + (4, 2538, 'maybe', '2024-03-23 18:31:27', '2025-12-17 19:46:33', '54k7D2w4', '7085485'), + (4, 2539, 'not_attending', '2024-03-23 21:31:42', '2025-12-17 19:46:33', '54k7D2w4', '7085486'), + (4, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '54k7D2w4', '7089267'), + (4, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '54k7D2w4', '7098747'), + (4, 2553, 'not_attending', '2024-03-30 04:19:28', '2025-12-17 19:46:33', '54k7D2w4', '7113468'), + (4, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '54k7D2w4', '7114856'), + (4, 2555, 'attending', '2024-04-01 00:23:16', '2025-12-17 19:46:33', '54k7D2w4', '7114951'), + (4, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '54k7D2w4', '7114955'), + (4, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '54k7D2w4', '7114956'), + (4, 2558, 'attending', '2024-04-21 01:25:23', '2025-12-17 19:46:35', '54k7D2w4', '7114957'), + (4, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '54k7D2w4', '7153615'), + (4, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '54k7D2w4', '7159484'), + (4, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '54k7D2w4', '7178446'), + (4, 2597, 'not_attending', '2024-04-21 23:04:18', '2025-12-17 19:46:34', '54k7D2w4', '7186726'), + (4, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '54k7D2w4', '7220467'), + (4, 2609, 'not_attending', '2024-05-05 21:07:29', '2025-12-17 19:46:35', '54k7D2w4', '7240354'), + (4, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '54k7D2w4', '7251633'), + (4, 2623, 'attending', '2024-05-10 14:15:51', '2025-12-17 19:46:35', '54k7D2w4', '7263048'), + (4, 2626, 'not_attending', '2024-05-12 14:07:36', '2025-12-17 19:46:35', '54k7D2w4', '7264723'), + (4, 2627, 'attending', '2024-05-21 12:30:51', '2025-12-17 19:46:35', '54k7D2w4', '7264724'), + (4, 2628, 'attending', '2024-05-31 04:04:22', '2025-12-17 19:46:36', '54k7D2w4', '7264725'), + (4, 2629, 'attending', '2024-06-02 21:37:48', '2025-12-17 19:46:28', '54k7D2w4', '7264726'), + (4, 2636, 'not_attending', '2024-05-23 23:49:53', '2025-12-17 19:46:35', '54k7D2w4', '7270323'), + (4, 2647, 'attending', '2024-06-02 18:51:49', '2025-12-17 19:46:28', '54k7D2w4', '7282057'), + (4, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '54k7D2w4', '7302674'), + (4, 2665, 'not_attending', '2024-06-05 21:51:30', '2025-12-17 19:46:36', '54k7D2w4', '7306370'), + (4, 2666, 'attending', '2024-06-05 21:51:24', '2025-12-17 19:46:36', '54k7D2w4', '7307775'), + (4, 2671, 'not_attending', '2024-06-09 20:17:55', '2025-12-17 19:46:28', '54k7D2w4', '7318256'), + (4, 2675, 'maybe', '2024-08-04 01:58:11', '2025-12-17 19:46:31', '54k7D2w4', '7319481'), + (4, 2678, 'attending', '2024-06-10 01:39:20', '2025-12-17 19:46:28', '54k7D2w4', '7319489'), + (4, 2679, 'attending', '2024-06-12 15:20:16', '2025-12-17 19:46:29', '54k7D2w4', '7319490'), + (4, 2683, 'not_attending', '2024-06-10 22:57:54', '2025-12-17 19:46:28', '54k7D2w4', '7321978'), + (4, 2688, 'attending', '2024-06-21 20:21:47', '2025-12-17 19:46:29', '54k7D2w4', '7324073'), + (4, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '54k7D2w4', '7324074'), + (4, 2690, 'attending', '2024-07-07 02:26:20', '2025-12-17 19:46:30', '54k7D2w4', '7324075'), + (4, 2691, 'attending', '2024-07-14 20:45:39', '2025-12-17 19:46:30', '54k7D2w4', '7324076'), + (4, 2692, 'maybe', '2024-07-14 20:45:45', '2025-12-17 19:46:30', '54k7D2w4', '7324077'), + (4, 2693, 'attending', '2024-07-25 15:23:53', '2025-12-17 19:46:31', '54k7D2w4', '7324078'), + (4, 2694, 'attending', '2024-08-04 15:36:33', '2025-12-17 19:46:31', '54k7D2w4', '7324079'), + (4, 2695, 'attending', '2024-08-10 22:25:17', '2025-12-17 19:46:31', '54k7D2w4', '7324080'), + (4, 2696, 'attending', '2024-08-18 18:18:44', '2025-12-17 19:46:32', '54k7D2w4', '7324081'), + (4, 2697, 'not_attending', '2024-08-27 01:05:01', '2025-12-17 19:46:32', '54k7D2w4', '7324082'), + (4, 2698, 'attending', '2024-08-27 01:05:07', '2025-12-17 19:46:24', '54k7D2w4', '7324083'), + (4, 2708, 'maybe', '2024-06-13 20:12:57', '2025-12-17 19:46:28', '54k7D2w4', '7325048'), + (4, 2719, 'maybe', '2024-06-23 15:36:13', '2025-12-17 19:46:29', '54k7D2w4', '7331305'), + (4, 2720, 'maybe', '2024-06-18 21:33:07', '2025-12-17 19:46:28', '54k7D2w4', '7331436'), + (4, 2721, 'attending', '2024-06-19 00:58:38', '2025-12-17 19:46:29', '54k7D2w4', '7331456'), + (4, 2722, 'attending', '2024-07-07 21:42:15', '2025-12-17 19:46:29', '54k7D2w4', '7331457'), + (4, 2724, 'maybe', '2024-06-26 22:39:10', '2025-12-17 19:46:29', '54k7D2w4', '7332562'), + (4, 2728, 'maybe', '2024-06-21 18:10:42', '2025-12-17 19:46:29', '54k7D2w4', '7334124'), + (4, 2743, 'not_attending', '2024-07-01 22:28:29', '2025-12-17 19:46:29', '54k7D2w4', '7345688'), + (4, 2753, 'maybe', '2024-07-09 19:12:59', '2025-12-17 19:46:30', '54k7D2w4', '7355538'), + (4, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '54k7D2w4', '7356752'), + (4, 2755, 'not_attending', '2024-07-10 13:27:09', '2025-12-17 19:46:29', '54k7D2w4', '7357808'), + (4, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '54k7D2w4', '7363643'), + (4, 2770, 'maybe', '2024-07-20 21:22:38', '2025-12-17 19:46:30', '54k7D2w4', '7368196'), + (4, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '54k7D2w4', '7368606'), + (4, 2785, 'attending', '2024-07-30 18:16:54', '2025-12-17 19:46:31', '54k7D2w4', '7380988'), + (4, 2786, 'attending', '2024-08-06 19:45:30', '2025-12-17 19:46:31', '54k7D2w4', '7381403'), + (4, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '54k7D2w4', '7397462'), + (4, 2808, 'not_attending', '2024-08-27 01:01:29', '2025-12-17 19:46:32', '54k7D2w4', '7412860'), + (4, 2811, 'attending', '2024-08-31 20:05:06', '2025-12-17 19:46:32', '54k7D2w4', '7418895'), + (4, 2817, 'maybe', '2024-09-29 19:34:39', '2025-12-17 19:46:25', '54k7D2w4', '7424270'), + (4, 2821, 'not_attending', '2024-10-06 15:03:14', '2025-12-17 19:46:26', '54k7D2w4', '7424275'), + (4, 2822, 'maybe', '2024-11-04 15:44:28', '2025-12-17 19:46:26', '54k7D2w4', '7424276'), + (4, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '54k7D2w4', '7432751'), + (4, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '54k7D2w4', '7432752'), + (4, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '54k7D2w4', '7432753'), + (4, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '54k7D2w4', '7432754'), + (4, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '54k7D2w4', '7432755'), + (4, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '54k7D2w4', '7432756'), + (4, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '54k7D2w4', '7432758'), + (4, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '54k7D2w4', '7432759'), + (4, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '54k7D2w4', '7433834'), + (4, 2836, 'maybe', '2024-09-13 16:42:49', '2025-12-17 19:46:25', '54k7D2w4', '7438708'), + (4, 2845, 'maybe', '2024-09-21 18:59:06', '2025-12-17 19:46:25', '54k7D2w4', '7452129'), + (4, 2850, 'not_attending', '2024-09-29 16:21:14', '2025-12-17 19:46:25', '54k7D2w4', '7457153'), + (4, 2855, 'not_attending', '2024-09-30 22:51:47', '2025-12-17 19:46:26', '54k7D2w4', '7469385'), + (4, 2857, 'maybe', '2024-10-24 14:17:40', '2025-12-17 19:46:26', '54k7D2w4', '7469387'), + (4, 2858, 'maybe', '2024-10-15 17:37:39', '2025-12-17 19:46:26', '54k7D2w4', '7469388'), + (4, 2859, 'not_attending', '2024-10-31 14:07:52', '2025-12-17 19:46:26', '54k7D2w4', '7469389'), + (4, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '54k7D2w4', '7470197'), + (4, 2891, 'maybe', '2024-10-25 16:32:19', '2025-12-17 19:46:26', '54k7D2w4', '7668163'), + (4, 2894, 'maybe', '2024-11-02 17:08:17', '2025-12-17 19:46:26', '54k7D2w4', '7680059'), + (4, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '54k7D2w4', '7685613'), + (4, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '54k7D2w4', '7688194'), + (4, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '54k7D2w4', '7688196'), + (4, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '54k7D2w4', '7688289'), + (4, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', '54k7D2w4', '7692763'), + (4, 2913, 'maybe', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '54k7D2w4', '7697552'), + (4, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '54k7D2w4', '7699878'), + (4, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '54k7D2w4', '7704043'), + (4, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '54k7D2w4', '7712467'), + (4, 2925, 'not_attending', '2024-12-03 00:52:11', '2025-12-17 19:46:21', '54k7D2w4', '7713584'), + (4, 2926, 'maybe', '2024-12-03 00:52:14', '2025-12-17 19:46:21', '54k7D2w4', '7713585'), + (4, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '54k7D2w4', '7713586'), + (4, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '54k7D2w4', '7738518'), + (4, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '54k7D2w4', '7750632'), + (4, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '54k7D2w4', '7750636'), + (4, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '54k7D2w4', '7796540'), + (4, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '54k7D2w4', '7796541'), + (4, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '54k7D2w4', '7796542'), + (4, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '54k7D2w4', '7825913'), + (4, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '54k7D2w4', '7826209'), + (4, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '54k7D2w4', '7834742'), + (4, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '54k7D2w4', '7842108'), + (4, 2990, 'attending', '2025-02-14 23:27:28', '2025-12-17 19:46:23', '54k7D2w4', '7842898'), + (4, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '54k7D2w4', '7842902'), + (4, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '54k7D2w4', '7842903'), + (4, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '54k7D2w4', '7842904'), + (4, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '54k7D2w4', '7842905'), + (4, 3002, 'attending', '2025-02-19 00:41:34', '2025-12-17 19:46:24', '54k7D2w4', '7854212'), + (4, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '54k7D2w4', '7855719'), + (4, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '54k7D2w4', '7860683'), + (4, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '54k7D2w4', '7860684'), + (4, 3011, 'attending', '2025-03-01 20:45:52', '2025-12-17 19:46:24', '54k7D2w4', '7865624'), + (4, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '54k7D2w4', '7866095'), + (4, 3013, 'maybe', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '54k7D2w4', '7869170'), + (4, 3014, 'attending', '2025-03-30 16:13:09', '2025-12-17 19:46:19', '54k7D2w4', '7869185'), + (4, 3015, 'attending', '2025-04-20 02:02:47', '2025-12-17 19:46:20', '54k7D2w4', '7869186'), + (4, 3016, 'attending', '2025-04-13 22:40:32', '2025-12-17 19:46:20', '54k7D2w4', '7869187'), + (4, 3017, 'attending', '2025-03-16 05:15:46', '2025-12-17 19:46:19', '54k7D2w4', '7869188'), + (4, 3018, 'attending', '2025-04-06 03:54:52', '2025-12-17 19:46:20', '54k7D2w4', '7869189'), + (4, 3028, 'attending', '2025-04-16 01:09:48', '2025-12-17 19:46:20', '54k7D2w4', '7869199'), + (4, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '54k7D2w4', '7869201'), + (4, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '54k7D2w4', '7877465'), + (4, 3034, 'maybe', '2025-03-11 17:13:10', '2025-12-17 19:46:18', '54k7D2w4', '7878570'), + (4, 3035, 'not_attending', '2025-03-11 23:40:16', '2025-12-17 19:46:19', '54k7D2w4', '7879085'), + (4, 3036, 'maybe', '2025-03-13 16:12:36', '2025-12-17 19:46:19', '54k7D2w4', '7880952'), + (4, 3043, 'maybe', '2025-03-15 19:18:39', '2025-12-17 19:46:19', '54k7D2w4', '7882587'), + (4, 3044, 'maybe', '2025-03-28 20:55:43', '2025-12-17 19:46:19', '54k7D2w4', '7882690'), + (4, 3045, 'attending', '2025-04-03 04:08:11', '2025-12-17 19:46:19', '54k7D2w4', '7882691'), + (4, 3046, 'attending', '2025-04-09 01:05:30', '2025-12-17 19:46:20', '54k7D2w4', '7882692'), + (4, 3047, 'attending', '2025-04-25 17:32:22', '2025-12-17 19:46:20', '54k7D2w4', '7882693'), + (4, 3048, 'maybe', '2025-04-19 04:37:34', '2025-12-17 19:46:20', '54k7D2w4', '7882694'), + (4, 3051, 'attending', '2025-03-16 23:20:50', '2025-12-17 19:46:19', '54k7D2w4', '7884023'), + (4, 3052, 'attending', '2025-03-16 23:20:55', '2025-12-17 19:46:19', '54k7D2w4', '7884024'), + (4, 3054, 'attending', '2025-03-17 00:16:43', '2025-12-17 19:46:19', '54k7D2w4', '7884168'), + (4, 3055, 'maybe', '2025-03-25 15:18:17', '2025-12-17 19:46:19', '54k7D2w4', '7888118'), + (4, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '54k7D2w4', '7888250'), + (4, 3060, 'maybe', '2025-03-31 18:30:52', '2025-12-17 19:46:19', '54k7D2w4', '7892589'), + (4, 3066, 'maybe', '2025-04-07 18:09:23', '2025-12-17 19:46:20', '54k7D2w4', '7894207'), + (4, 3067, 'attending', '2025-03-31 23:48:59', '2025-12-17 19:46:19', '54k7D2w4', '7894745'), + (4, 3072, 'maybe', '2025-04-03 16:42:04', '2025-12-17 19:46:19', '54k7D2w4', '7895449'), + (4, 3078, 'attending', '2025-04-06 02:50:52', '2025-12-17 19:46:20', '54k7D2w4', '7901213'), + (4, 3084, 'not_attending', '2025-04-09 23:19:16', '2025-12-17 19:46:20', '54k7D2w4', '7903687'), + (4, 3088, 'not_attending', '2025-06-09 20:00:25', '2025-12-17 19:46:15', '54k7D2w4', '7904777'), + (4, 3090, 'not_attending', '2025-04-17 02:02:09', '2025-12-17 19:46:20', '54k7D2w4', '7914315'), + (4, 3093, 'maybe', '2025-04-23 21:30:24', '2025-12-17 19:46:20', '54k7D2w4', '8342248'), + (4, 3094, 'not_attending', '2025-04-21 21:57:13', '2025-12-17 19:46:21', '54k7D2w4', '8342292'), + (4, 3095, 'not_attending', '2025-04-21 21:57:11', '2025-12-17 19:46:20', '54k7D2w4', '8342293'), + (4, 3098, 'attending', '2025-04-21 14:47:01', '2025-12-17 19:46:20', '54k7D2w4', '8343504'), + (4, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '54k7D2w4', '8349164'), + (4, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '54k7D2w4', '8349545'), + (4, 3107, 'attending', '2025-04-27 22:47:18', '2025-12-17 19:46:20', '54k7D2w4', '8350107'), + (4, 3109, 'attending', '2025-04-29 02:44:48', '2025-12-17 19:46:21', '54k7D2w4', '8352001'), + (4, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '54k7D2w4', '8353584'), + (4, 3121, 'attending', '2025-05-07 16:44:29', '2025-12-17 19:46:21', '54k7D2w4', '8362730'), + (4, 3124, 'attending', '2025-05-09 02:03:19', '2025-12-17 19:46:21', '54k7D2w4', '8363566'), + (4, 3131, 'attending', '2025-05-13 00:40:25', '2025-12-17 19:46:21', '54k7D2w4', '8368028'), + (4, 3132, 'attending', '2025-05-13 00:40:27', '2025-12-17 19:46:21', '54k7D2w4', '8368029'), + (4, 3133, 'attending', '2025-05-13 00:40:30', '2025-12-17 19:46:14', '54k7D2w4', '8368030'), + (4, 3134, 'attending', '2025-05-13 01:01:21', '2025-12-17 19:46:21', '54k7D2w4', '8368031'), + (4, 3136, 'maybe', '2025-05-19 22:27:59', '2025-12-17 19:46:21', '54k7D2w4', '8374152'), + (4, 3137, 'not_attending', '2025-05-19 22:27:54', '2025-12-17 19:46:21', '54k7D2w4', '8374153'), + (4, 3139, 'maybe', '2025-05-24 19:44:34', '2025-12-17 19:46:21', '54k7D2w4', '8377425'), + (4, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '54k7D2w4', '8388462'), + (4, 3150, 'not_attending', '2025-06-03 23:51:34', '2025-12-17 19:46:15', '54k7D2w4', '8393174'), + (4, 3151, 'attending', '2025-05-31 19:15:12', '2025-12-17 19:46:14', '54k7D2w4', '8393497'), + (4, 3152, 'attending', '2025-05-31 19:17:29', '2025-12-17 19:46:14', '54k7D2w4', '8393582'), + (4, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '54k7D2w4', '8400273'), + (4, 3154, 'not_attending', '2025-06-15 03:58:12', '2025-12-17 19:46:15', '54k7D2w4', '8400274'), + (4, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '54k7D2w4', '8400275'), + (4, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '54k7D2w4', '8400276'), + (4, 3162, 'attending', '2025-06-04 16:41:09', '2025-12-17 19:46:15', '54k7D2w4', '8401599'), + (4, 3165, 'attending', '2025-06-07 22:11:49', '2025-12-17 19:46:14', '54k7D2w4', '8404220'), + (4, 3166, 'attending', '2025-06-07 22:16:24', '2025-12-17 19:46:15', '54k7D2w4', '8404242'), + (4, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '54k7D2w4', '8404977'), + (4, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '54k7D2w4', '8430783'), + (4, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '54k7D2w4', '8430784'), + (4, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '54k7D2w4', '8430799'), + (4, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '54k7D2w4', '8430800'), + (4, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '54k7D2w4', '8430801'), + (4, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '54k7D2w4', '8438709'), + (4, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '54k7D2w4', '8457738'), + (4, 3196, 'maybe', '2025-08-10 00:41:56', '2025-12-17 19:46:17', '54k7D2w4', '8458543'), + (4, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '54k7D2w4', '8459566'), + (4, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '54k7D2w4', '8459567'), + (4, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '54k7D2w4', '8461032'), + (4, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '54k7D2w4', '8477877'), + (4, 3219, 'not_attending', '2025-08-10 15:59:19', '2025-12-17 19:46:18', '54k7D2w4', '8482548'), + (4, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', '54k7D2w4', '8485688'), + (4, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '54k7D2w4', '8490587'), + (4, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '54k7D2w4', '8493552'), + (4, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '54k7D2w4', '8493553'), + (4, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '54k7D2w4', '8493554'), + (4, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '54k7D2w4', '8493555'), + (4, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '54k7D2w4', '8493556'), + (4, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '54k7D2w4', '8493557'), + (4, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '54k7D2w4', '8493558'), + (4, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '54k7D2w4', '8493559'), + (4, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '54k7D2w4', '8493560'), + (4, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '54k7D2w4', '8493561'), + (4, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '54k7D2w4', '8493572'), + (4, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '54k7D2w4', '8540725'), + (4, 3302, 'maybe', '2025-11-16 00:04:48', '2025-12-17 19:46:14', '54k7D2w4', '8550022'), + (4, 3304, 'attending', '2025-11-16 00:22:53', '2025-12-17 19:46:14', '54k7D2w4', '8550024'), + (4, 3305, 'not_attending', '2025-11-26 20:08:21', '2025-12-17 19:46:11', '54k7D2w4', '8550025'), + (4, 3306, 'maybe', '2025-12-11 22:37:59', '2025-12-17 19:46:11', '54k7D2w4', '8550026'), + (4, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '54k7D2w4', '8555421'), + (5, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AYwOz8od', '5426882'), + (5, 1512, 'not_attending', '2022-07-11 22:57:03', '2025-12-17 19:47:19', 'AYwOz8od', '5441112'), + (5, 1513, 'attending', '2022-07-16 01:15:13', '2025-12-17 19:47:19', 'AYwOz8od', '5441125'), + (5, 1514, 'not_attending', '2022-07-17 02:24:08', '2025-12-17 19:47:20', 'AYwOz8od', '5441126'), + (5, 1515, 'attending', '2022-08-06 17:11:11', '2025-12-17 19:47:21', 'AYwOz8od', '5441128'), + (5, 1516, 'not_attending', '2022-08-16 23:17:04', '2025-12-17 19:47:23', 'AYwOz8od', '5441129'), + (5, 1517, 'not_attending', '2022-08-16 23:17:15', '2025-12-17 19:47:23', 'AYwOz8od', '5441130'), + (5, 1518, 'not_attending', '2022-08-18 03:09:46', '2025-12-17 19:47:24', 'AYwOz8od', '5441131'), + (5, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AYwOz8od', '5441132'), + (5, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AYwOz8od', '5446643'), + (5, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'AYwOz8od', '5449068'), + (5, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AYwOz8od', '5453325'), + (5, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AYwOz8od', '5454516'), + (5, 1544, 'not_attending', '2022-09-16 02:51:40', '2025-12-17 19:47:11', 'AYwOz8od', '5454517'), + (5, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AYwOz8od', '5454605'), + (5, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AYwOz8od', '5455037'), + (5, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AYwOz8od', '5461278'), + (5, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AYwOz8od', '5469480'), + (5, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AYwOz8od', '5471073'), + (5, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AYwOz8od', '5474663'), + (5, 1567, 'attending', '2022-08-02 17:50:50', '2025-12-17 19:47:21', 'AYwOz8od', '5477629'), + (5, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AYwOz8od', '5482022'), + (5, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AYwOz8od', '5482793'), + (5, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AYwOz8od', '5488912'), + (5, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AYwOz8od', '5492192'), + (5, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AYwOz8od', '5493139'), + (5, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AYwOz8od', '5493200'), + (5, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AYwOz8od', '5502188'), + (5, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AYwOz8od', '5505059'), + (5, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AYwOz8od', '5509055'), + (5, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AYwOz8od', '5512862'), + (5, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AYwOz8od', '5513985'), + (5, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'AYwOz8od', '5519981'), + (5, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AYwOz8od', '5522550'), + (5, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AYwOz8od', '5534683'), + (5, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AYwOz8od', '5537735'), + (5, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AYwOz8od', '5540859'), + (5, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AYwOz8od', '5546619'), + (5, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AYwOz8od', '5555245'), + (5, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AYwOz8od', '5557747'), + (5, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AYwOz8od', '5560255'), + (5, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AYwOz8od', '5562906'), + (5, 1667, 'not_attending', '2022-09-16 02:51:45', '2025-12-17 19:47:11', 'AYwOz8od', '5563221'), + (5, 1668, 'attending', '2022-10-01 17:41:21', '2025-12-17 19:47:12', 'AYwOz8od', '5563222'), + (5, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AYwOz8od', '5600604'), + (5, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AYwOz8od', '5605544'), + (5, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'AYwOz8od', '5606737'), + (5, 1719, 'attending', '2022-10-08 01:42:45', '2025-12-17 19:47:12', 'AYwOz8od', '5630958'), + (5, 1720, 'not_attending', '2022-10-11 15:40:12', '2025-12-17 19:47:12', 'AYwOz8od', '5630959'), + (5, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AYwOz8od', '5630960'), + (5, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AYwOz8od', '5630961'), + (5, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AYwOz8od', '5630962'), + (5, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AYwOz8od', '5630966'), + (5, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AYwOz8od', '5630967'), + (5, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AYwOz8od', '5630968'), + (5, 1727, 'attending', '2022-12-03 03:59:13', '2025-12-17 19:47:16', 'AYwOz8od', '5630969'), + (5, 1728, 'attending', '2022-12-11 21:13:43', '2025-12-17 19:47:17', 'AYwOz8od', '5630970'), + (5, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AYwOz8od', '5635406'), + (5, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AYwOz8od', '5638765'), + (5, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AYwOz8od', '5640097'), + (5, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AYwOz8od', '5640843'), + (5, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AYwOz8od', '5641521'), + (5, 1744, 'attending', '2022-11-23 01:01:19', '2025-12-17 19:47:16', 'AYwOz8od', '5642818'), + (5, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AYwOz8od', '5652395'), + (5, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AYwOz8od', '5670445'), + (5, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AYwOz8od', '5671637'), + (5, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AYwOz8od', '5672329'), + (5, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AYwOz8od', '5674057'), + (5, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AYwOz8od', '5674060'), + (5, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AYwOz8od', '5677461'), + (5, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AYwOz8od', '5698046'), + (5, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AYwOz8od', '5699760'), + (5, 1793, 'maybe', '2022-11-24 07:16:03', '2025-12-17 19:47:16', 'AYwOz8od', '5736365'), + (5, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AYwOz8od', '5741601'), + (5, 1797, 'attending', '2022-12-09 22:03:25', '2025-12-17 19:47:17', 'AYwOz8od', '5757486'), + (5, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AYwOz8od', '5763458'), + (5, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AYwOz8od', '5774172'), + (5, 1826, 'not_attending', '2022-12-17 19:47:16', '2025-12-17 19:47:04', 'AYwOz8od', '5776768'), + (5, 1832, 'not_attending', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'AYwOz8od', '5818247'), + (5, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AYwOz8od', '5819471'), + (5, 1837, 'attending', '2022-12-07 23:15:49', '2025-12-17 19:47:16', 'AYwOz8od', '5820146'), + (5, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AYwOz8od', '5827739'), + (5, 1843, 'attending', '2022-12-17 21:27:50', '2025-12-17 19:47:04', 'AYwOz8od', '5844304'), + (5, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AYwOz8od', '5844306'), + (5, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AYwOz8od', '5850159'), + (5, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AYwOz8od', '5858999'), + (5, 1852, 'attending', '2023-01-10 22:44:23', '2025-12-17 19:47:05', 'AYwOz8od', '5869898'), + (5, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AYwOz8od', '5871984'), + (5, 1859, 'maybe', '2023-01-20 18:11:02', '2025-12-17 19:47:05', 'AYwOz8od', '5876234'), + (5, 1861, 'maybe', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AYwOz8od', '5876354'), + (5, 1864, 'maybe', '2023-01-20 18:11:07', '2025-12-17 19:47:05', 'AYwOz8od', '5879675'), + (5, 1865, 'attending', '2023-01-28 03:04:13', '2025-12-17 19:47:06', 'AYwOz8od', '5879676'), + (5, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AYwOz8od', '5880939'), + (5, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AYwOz8od', '5880940'), + (5, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AYwOz8od', '5880942'), + (5, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AYwOz8od', '5880943'), + (5, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AYwOz8od', '5887890'), + (5, 1875, 'maybe', '2023-01-27 20:50:51', '2025-12-17 19:47:06', 'AYwOz8od', '5887908'), + (5, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AYwOz8od', '5888598'), + (5, 1877, 'not_attending', '2023-01-22 21:46:41', '2025-12-17 19:47:05', 'AYwOz8od', '5888693'), + (5, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AYwOz8od', '5893260'), + (5, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AYwOz8od', '5899826'), + (5, 1885, 'attending', '2023-02-24 19:37:34', '2025-12-17 19:47:08', 'AYwOz8od', '5899928'), + (5, 1886, 'maybe', '2023-03-07 01:50:39', '2025-12-17 19:47:09', 'AYwOz8od', '5899930'), + (5, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AYwOz8od', '5900199'), + (5, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AYwOz8od', '5900200'), + (5, 1891, 'attending', '2023-03-20 15:54:35', '2025-12-17 19:46:56', 'AYwOz8od', '5900202'), + (5, 1892, 'maybe', '2023-03-16 19:56:17', '2025-12-17 19:46:56', 'AYwOz8od', '5900203'), + (5, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AYwOz8od', '5901108'), + (5, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AYwOz8od', '5901126'), + (5, 1897, 'attending', '2023-02-10 23:44:01', '2025-12-17 19:47:07', 'AYwOz8od', '5901128'), + (5, 1899, 'attending', '2023-02-10 23:48:42', '2025-12-17 19:47:07', 'AYwOz8od', '5901323'), + (5, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AYwOz8od', '5909655'), + (5, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AYwOz8od', '5910522'), + (5, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AYwOz8od', '5910526'), + (5, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AYwOz8od', '5910528'), + (5, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AYwOz8od', '5916219'), + (5, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AYwOz8od', '5936234'), + (5, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AYwOz8od', '5958351'), + (5, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AYwOz8od', '5959751'), + (5, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AYwOz8od', '5959755'), + (5, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AYwOz8od', '5960055'), + (5, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AYwOz8od', '5961684'), + (5, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'AYwOz8od', '5962132'), + (5, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AYwOz8od', '5962133'), + (5, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AYwOz8od', '5962134'), + (5, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AYwOz8od', '5962317'), + (5, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AYwOz8od', '5962318'), + (5, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AYwOz8od', '5965933'), + (5, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AYwOz8od', '5967014'), + (5, 1955, 'attending', '2023-03-28 01:38:09', '2025-12-17 19:46:57', 'AYwOz8od', '5972529'), + (5, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AYwOz8od', '5972815'), + (5, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AYwOz8od', '5974016'), + (5, 1965, 'maybe', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AYwOz8od', '5981515'), + (5, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AYwOz8od', '5993516'), + (5, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AYwOz8od', '5998939'), + (5, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AYwOz8od', '6028191'), + (5, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AYwOz8od', '6040066'), + (5, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AYwOz8od', '6042717'), + (5, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AYwOz8od', '6044838'), + (5, 1987, 'attending', '2023-04-16 21:38:29', '2025-12-17 19:47:00', 'AYwOz8od', '6044839'), + (5, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYwOz8od', '6045684'), + (5, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AYwOz8od', '6050104'), + (5, 1999, 'not_attending', '2023-04-18 18:48:50', '2025-12-17 19:47:00', 'AYwOz8od', '6052057'), + (5, 2003, 'attending', '2023-05-15 21:07:29', '2025-12-17 19:47:03', 'AYwOz8od', '6052606'), + (5, 2005, 'attending', '2023-04-04 22:31:25', '2025-12-17 19:46:58', 'AYwOz8od', '6053195'), + (5, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AYwOz8od', '6053198'), + (5, 2008, 'attending', '2023-04-07 17:24:47', '2025-12-17 19:46:58', 'AYwOz8od', '6055808'), + (5, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'AYwOz8od', '6056085'), + (5, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AYwOz8od', '6056916'), + (5, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AYwOz8od', '6059290'), + (5, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AYwOz8od', '6060328'), + (5, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AYwOz8od', '6061037'), + (5, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AYwOz8od', '6061039'), + (5, 2019, 'not_attending', '2023-04-16 20:07:22', '2025-12-17 19:47:00', 'AYwOz8od', '6062934'), + (5, 2021, 'not_attending', '2023-04-16 23:39:49', '2025-12-17 19:47:00', 'AYwOz8od', '6066316'), + (5, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AYwOz8od', '6067245'), + (5, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AYwOz8od', '6068094'), + (5, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AYwOz8od', '6068252'), + (5, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AYwOz8od', '6068253'), + (5, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AYwOz8od', '6068254'), + (5, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AYwOz8od', '6068280'), + (5, 2032, 'attending', '2023-06-02 22:24:53', '2025-12-17 19:47:04', 'AYwOz8od', '6068281'), + (5, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AYwOz8od', '6069093'), + (5, 2040, 'attending', '2023-04-27 22:40:56', '2025-12-17 19:47:01', 'AYwOz8od', '6072453'), + (5, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'AYwOz8od', '6072528'), + (5, 2043, 'attending', '2023-04-25 16:43:41', '2025-12-17 19:47:01', 'AYwOz8od', '6073023'), + (5, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AYwOz8od', '6079840'), + (5, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AYwOz8od', '6083398'), + (5, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AYwOz8od', '6093504'), + (5, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AYwOz8od', '6097414'), + (5, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AYwOz8od', '6097442'), + (5, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AYwOz8od', '6097684'), + (5, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AYwOz8od', '6098762'), + (5, 2065, 'maybe', '2023-06-16 17:38:33', '2025-12-17 19:46:49', 'AYwOz8od', '6101169'), + (5, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AYwOz8od', '6101361'), + (5, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AYwOz8od', '6101362'), + (5, 2070, 'attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AYwOz8od', '6103752'), + (5, 2074, 'not_attending', '2023-05-19 22:05:21', '2025-12-17 19:47:03', 'AYwOz8od', '6107312'), + (5, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AYwOz8od', '6107314'), + (5, 2087, 'attending', '2023-05-31 03:52:59', '2025-12-17 19:47:04', 'AYwOz8od', '6120034'), + (5, 2089, 'attending', '2023-06-05 05:17:47', '2025-12-17 19:47:04', 'AYwOz8od', '6125227'), + (5, 2091, 'attending', '2023-06-04 03:47:18', '2025-12-17 19:47:04', 'AYwOz8od', '6130657'), + (5, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AYwOz8od', '6136733'), + (5, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AYwOz8od', '6137989'), + (5, 2097, 'not_attending', '2023-06-07 17:47:38', '2025-12-17 19:47:04', 'AYwOz8od', '6139059'), + (5, 2099, 'attending', '2023-06-14 18:35:16', '2025-12-17 19:46:49', 'AYwOz8od', '6143012'), + (5, 2104, 'attending', '2023-06-19 22:23:20', '2025-12-17 19:46:50', 'AYwOz8od', '6149499'), + (5, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AYwOz8od', '6150864'), + (5, 2110, 'attending', '2023-06-19 22:23:14', '2025-12-17 19:46:50', 'AYwOz8od', '6155491'), + (5, 2116, 'attending', '2023-07-03 21:46:17', '2025-12-17 19:46:51', 'AYwOz8od', '6163389'), + (5, 2117, 'attending', '2023-06-26 05:46:14', '2025-12-17 19:46:50', 'AYwOz8od', '6163750'), + (5, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AYwOz8od', '6164417'), + (5, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AYwOz8od', '6166388'), + (5, 2121, 'attending', '2023-06-29 00:51:20', '2025-12-17 19:46:50', 'AYwOz8od', '6176439'), + (5, 2122, 'attending', '2023-06-30 19:35:12', '2025-12-17 19:46:51', 'AYwOz8od', '6176476'), + (5, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AYwOz8od', '6182410'), + (5, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AYwOz8od', '6185812'), + (5, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AYwOz8od', '6187651'), + (5, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AYwOz8od', '6187963'), + (5, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AYwOz8od', '6187964'), + (5, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AYwOz8od', '6187966'), + (5, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AYwOz8od', '6187967'), + (5, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AYwOz8od', '6187969'), + (5, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AYwOz8od', '6334878'), + (5, 2146, 'attending', '2023-07-17 05:47:21', '2025-12-17 19:46:53', 'AYwOz8od', '6335638'), + (5, 2152, 'attending', '2023-07-13 17:31:21', '2025-12-17 19:46:52', 'AYwOz8od', '6337021'), + (5, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AYwOz8od', '6337236'), + (5, 2155, 'attending', '2023-07-16 20:49:50', '2025-12-17 19:46:53', 'AYwOz8od', '6337970'), + (5, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AYwOz8od', '6338308'), + (5, 2158, 'attending', '2023-07-23 07:26:59', '2025-12-17 19:46:53', 'AYwOz8od', '6338353'), + (5, 2159, 'attending', '2023-07-17 05:47:19', '2025-12-17 19:46:53', 'AYwOz8od', '6338355'), + (5, 2160, 'not_attending', '2023-07-19 19:34:24', '2025-12-17 19:46:54', 'AYwOz8od', '6338358'), + (5, 2161, 'attending', '2023-07-15 19:18:15', '2025-12-17 19:46:52', 'AYwOz8od', '6340748'), + (5, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'AYwOz8od', '6340845'), + (5, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AYwOz8od', '6341710'), + (5, 2165, 'attending', '2023-07-26 20:25:46', '2025-12-17 19:46:54', 'AYwOz8od', '6342044'), + (5, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AYwOz8od', '6342298'), + (5, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AYwOz8od', '6343294'), + (5, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AYwOz8od', '6347034'), + (5, 2177, 'not_attending', '2023-08-07 23:05:50', '2025-12-17 19:46:55', 'AYwOz8od', '6347053'), + (5, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AYwOz8od', '6347056'), + (5, 2183, 'not_attending', '2023-07-28 15:19:17', '2025-12-17 19:46:54', 'AYwOz8od', '6353008'), + (5, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AYwOz8od', '6353830'), + (5, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AYwOz8od', '6353831'), + (5, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AYwOz8od', '6357867'), + (5, 2190, 'attending', '2023-08-07 00:07:32', '2025-12-17 19:46:55', 'AYwOz8od', '6357892'), + (5, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AYwOz8od', '6358652'), + (5, 2195, 'attending', '2023-08-23 01:30:44', '2025-12-17 19:46:55', 'AYwOz8od', '6359397'), + (5, 2196, 'not_attending', '2023-09-03 16:34:04', '2025-12-17 19:46:56', 'AYwOz8od', '6359398'), + (5, 2199, 'attending', '2023-08-13 18:14:57', '2025-12-17 19:46:55', 'AYwOz8od', '6359849'), + (5, 2200, 'attending', '2023-08-07 00:07:36', '2025-12-17 19:46:55', 'AYwOz8od', '6359850'), + (5, 2204, 'not_attending', '2023-08-13 18:15:07', '2025-12-17 19:46:55', 'AYwOz8od', '6361542'), + (5, 2206, 'not_attending', '2023-08-09 03:57:51', '2025-12-17 19:46:55', 'AYwOz8od', '6361659'), + (5, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AYwOz8od', '6361709'), + (5, 2209, 'attending', '2023-08-23 01:30:10', '2025-12-17 19:46:55', 'AYwOz8od', '6361710'), + (5, 2210, 'attending', '2023-08-26 21:55:28', '2025-12-17 19:46:55', 'AYwOz8od', '6361711'), + (5, 2211, 'not_attending', '2023-08-13 18:15:04', '2025-12-17 19:46:55', 'AYwOz8od', '6361712'), + (5, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AYwOz8od', '6361713'), + (5, 2214, 'maybe', '2023-08-12 20:33:14', '2025-12-17 19:46:55', 'AYwOz8od', '6363218'), + (5, 2215, 'maybe', '2023-08-11 18:46:57', '2025-12-17 19:46:55', 'AYwOz8od', '6363479'), + (5, 2216, 'attending', '2023-08-19 22:55:01', '2025-12-17 19:46:55', 'AYwOz8od', '6364123'), + (5, 2217, 'maybe', '2023-08-12 20:33:20', '2025-12-17 19:46:55', 'AYwOz8od', '6364333'), + (5, 2232, 'attending', '2023-08-23 01:37:22', '2025-12-17 19:46:55', 'AYwOz8od', '6374818'), + (5, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AYwOz8od', '6382573'), + (5, 2239, 'attending', '2023-08-31 18:06:33', '2025-12-17 19:46:56', 'AYwOz8od', '6387592'), + (5, 2240, 'attending', '2023-09-06 04:13:35', '2025-12-17 19:46:56', 'AYwOz8od', '6388603'), + (5, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AYwOz8od', '6388604'), + (5, 2242, 'attending', '2023-09-22 18:33:10', '2025-12-17 19:46:45', 'AYwOz8od', '6388606'), + (5, 2247, 'maybe', '2023-09-05 19:51:26', '2025-12-17 19:46:56', 'AYwOz8od', '6394628'), + (5, 2248, 'maybe', '2023-09-13 00:10:06', '2025-12-17 19:46:44', 'AYwOz8od', '6394629'), + (5, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AYwOz8od', '6394631'), + (5, 2253, 'attending', '2023-09-26 01:11:53', '2025-12-17 19:46:45', 'AYwOz8od', '6401811'), + (5, 2255, 'maybe', '2023-09-17 03:56:40', '2025-12-17 19:46:45', 'AYwOz8od', '6403562'), + (5, 2265, 'attending', '2023-10-01 04:29:53', '2025-12-17 19:46:45', 'AYwOz8od', '6439625'), + (5, 2266, 'maybe', '2023-10-07 20:01:22', '2025-12-17 19:46:45', 'AYwOz8od', '6439635'), + (5, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AYwOz8od', '6440863'), + (5, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AYwOz8od', '6445440'), + (5, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AYwOz8od', '6453951'), + (5, 2279, 'attending', '2023-10-11 16:12:33', '2025-12-17 19:46:46', 'AYwOz8od', '6455460'), + (5, 2285, 'maybe', '2023-10-27 19:44:43', '2025-12-17 19:46:47', 'AYwOz8od', '6460929'), + (5, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AYwOz8od', '6461696'), + (5, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AYwOz8od', '6462129'), + (5, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AYwOz8od', '6463218'), + (5, 2299, 'attending', '2023-10-18 17:01:57', '2025-12-17 19:46:46', 'AYwOz8od', '6472181'), + (5, 2302, 'not_attending', '2023-10-20 23:42:59', '2025-12-17 19:46:46', 'AYwOz8od', '6482535'), + (5, 2303, 'attending', '2023-10-26 16:19:28', '2025-12-17 19:46:47', 'AYwOz8od', '6482691'), + (5, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AYwOz8od', '6482693'), + (5, 2306, 'attending', '2023-11-13 23:48:44', '2025-12-17 19:46:47', 'AYwOz8od', '6484200'), + (5, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AYwOz8od', '6484680'), + (5, 2310, 'attending', '2023-11-10 05:37:46', '2025-12-17 19:46:47', 'AYwOz8od', '6487709'), + (5, 2313, 'attending', '2023-10-28 20:32:09', '2025-12-17 19:46:47', 'AYwOz8od', '6492612'), + (5, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AYwOz8od', '6507741'), + (5, 2322, 'attending', '2023-11-16 19:03:15', '2025-12-17 19:46:48', 'AYwOz8od', '6514659'), + (5, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AYwOz8od', '6514660'), + (5, 2324, 'attending', '2023-12-07 19:24:41', '2025-12-17 19:46:49', 'AYwOz8od', '6514662'), + (5, 2325, 'not_attending', '2023-12-13 04:36:15', '2025-12-17 19:46:36', 'AYwOz8od', '6514663'), + (5, 2331, 'not_attending', '2023-11-12 23:03:21', '2025-12-17 19:46:47', 'AYwOz8od', '6518640'), + (5, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AYwOz8od', '6519103'), + (5, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AYwOz8od', '6535681'), + (5, 2338, 'not_attending', '2023-11-25 23:39:22', '2025-12-17 19:46:48', 'AYwOz8od', '6538868'), + (5, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AYwOz8od', '6584747'), + (5, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AYwOz8od', '6587097'), + (5, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AYwOz8od', '6609022'), + (5, 2364, 'attending', '2023-12-08 01:10:52', '2025-12-17 19:46:49', 'AYwOz8od', '6613011'), + (5, 2366, 'attending', '2023-12-08 22:15:23', '2025-12-17 19:46:36', 'AYwOz8od', '6615304'), + (5, 2370, 'maybe', '2023-12-13 06:27:40', '2025-12-17 19:46:36', 'AYwOz8od', '6623765'), + (5, 2371, 'attending', '2023-12-15 05:58:24', '2025-12-17 19:46:36', 'AYwOz8od', '6624495'), + (5, 2373, 'attending', '2023-12-20 01:45:47', '2025-12-17 19:46:38', 'AYwOz8od', '6632678'), + (5, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AYwOz8od', '6632757'), + (5, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AYwOz8od', '6644187'), + (5, 2380, 'attending', '2023-12-31 03:53:26', '2025-12-17 19:46:37', 'AYwOz8od', '6645105'), + (5, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AYwOz8od', '6648951'), + (5, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AYwOz8od', '6648952'), + (5, 2388, 'attending', '2024-01-05 23:06:51', '2025-12-17 19:46:37', 'AYwOz8od', '6649244'), + (5, 2390, 'maybe', '2024-01-07 05:22:28', '2025-12-17 19:46:37', 'AYwOz8od', '6651141'), + (5, 2391, 'not_attending', '2024-01-13 00:40:37', '2025-12-17 19:46:37', 'AYwOz8od', '6654138'), + (5, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AYwOz8od', '6655401'), + (5, 2397, 'not_attending', '2024-01-08 18:18:30', '2025-12-17 19:46:37', 'AYwOz8od', '6657379'), + (5, 2398, 'not_attending', '2024-01-10 05:14:27', '2025-12-17 19:46:37', 'AYwOz8od', '6657381'), + (5, 2399, 'attending', '2024-01-13 20:40:10', '2025-12-17 19:46:38', 'AYwOz8od', '6657583'), + (5, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AYwOz8od', '6661585'), + (5, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AYwOz8od', '6661588'), + (5, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AYwOz8od', '6661589'), + (5, 2404, 'attending', '2024-01-15 19:55:56', '2025-12-17 19:46:38', 'AYwOz8od', '6666858'), + (5, 2406, 'not_attending', '2024-01-17 22:34:00', '2025-12-17 19:46:40', 'AYwOz8od', '6692344'), + (5, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AYwOz8od', '6699906'), + (5, 2408, 'attending', '2024-01-23 23:46:39', '2025-12-17 19:46:40', 'AYwOz8od', '6699907'), + (5, 2409, 'attending', '2024-02-01 03:42:46', '2025-12-17 19:46:41', 'AYwOz8od', '6699909'), + (5, 2410, 'attending', '2024-02-08 00:40:23', '2025-12-17 19:46:41', 'AYwOz8od', '6699911'), + (5, 2411, 'attending', '2024-02-15 04:00:55', '2025-12-17 19:46:41', 'AYwOz8od', '6699913'), + (5, 2414, 'maybe', '2024-01-18 01:45:20', '2025-12-17 19:46:40', 'AYwOz8od', '6701000'), + (5, 2415, 'maybe', '2024-01-18 01:45:21', '2025-12-17 19:46:40', 'AYwOz8od', '6701001'), + (5, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AYwOz8od', '6701109'), + (5, 2421, 'not_attending', '2024-01-26 04:45:32', '2025-12-17 19:46:40', 'AYwOz8od', '6704598'), + (5, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AYwOz8od', '6705219'), + (5, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AYwOz8od', '6710153'), + (5, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AYwOz8od', '6711552'), + (5, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'AYwOz8od', '6711553'), + (5, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AYwOz8od', '6722688'), + (5, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AYwOz8od', '6730620'), + (5, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AYwOz8od', '6730642'), + (5, 2444, 'attending', '2024-02-09 18:59:35', '2025-12-17 19:46:41', 'AYwOz8od', '6734367'), + (5, 2445, 'not_attending', '2024-02-16 03:44:01', '2025-12-17 19:46:41', 'AYwOz8od', '6734368'), + (5, 2447, 'not_attending', '2024-03-10 18:04:18', '2025-12-17 19:46:32', 'AYwOz8od', '6734370'), + (5, 2448, 'not_attending', '2024-03-27 02:22:30', '2025-12-17 19:46:33', 'AYwOz8od', '6734371'), + (5, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AYwOz8od', '6740364'), + (5, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AYwOz8od', '6743829'), + (5, 2466, 'not_attending', '2024-02-13 23:39:45', '2025-12-17 19:46:41', 'AYwOz8od', '7026777'), + (5, 2467, 'maybe', '2024-02-24 18:03:11', '2025-12-17 19:46:43', 'AYwOz8od', '7029987'), + (5, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AYwOz8od', '7030380'), + (5, 2471, 'attending', '2024-02-20 02:56:57', '2025-12-17 19:46:42', 'AYwOz8od', '7032425'), + (5, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AYwOz8od', '7033677'), + (5, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'AYwOz8od', '7035415'), + (5, 2476, 'attending', '2024-02-27 00:50:07', '2025-12-17 19:46:43', 'AYwOz8od', '7035691'), + (5, 2478, 'attending', '2024-02-23 01:15:16', '2025-12-17 19:46:43', 'AYwOz8od', '7036478'), + (5, 2480, 'maybe', '2024-02-24 18:03:09', '2025-12-17 19:46:43', 'AYwOz8od', '7042160'), + (5, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AYwOz8od', '7044715'), + (5, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AYwOz8od', '7050318'), + (5, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AYwOz8od', '7050319'), + (5, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AYwOz8od', '7050322'), + (5, 2498, 'attending', '2024-03-20 20:37:24', '2025-12-17 19:46:33', 'AYwOz8od', '7057662'), + (5, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AYwOz8od', '7057804'), + (5, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'AYwOz8od', '7059866'), + (5, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AYwOz8od', '7072824'), + (5, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AYwOz8od', '7074348'), + (5, 2513, 'attending', '2024-04-18 15:59:18', '2025-12-17 19:46:34', 'AYwOz8od', '7074353'), + (5, 2516, 'not_attending', '2024-05-02 20:16:45', '2025-12-17 19:46:35', 'AYwOz8od', '7074356'), + (5, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AYwOz8od', '7074364'), + (5, 2527, 'maybe', '2024-06-27 15:48:37', '2025-12-17 19:46:29', 'AYwOz8od', '7074367'), + (5, 2528, 'attending', '2024-08-07 16:10:24', '2025-12-17 19:46:31', 'AYwOz8od', '7074368'), + (5, 2533, 'attending', '2024-08-21 16:33:29', '2025-12-17 19:46:32', 'AYwOz8od', '7074384'), + (5, 2534, 'maybe', '2024-03-13 16:29:27', '2025-12-17 19:46:32', 'AYwOz8od', '7076875'), + (5, 2537, 'maybe', '2024-03-21 18:01:08', '2025-12-17 19:46:33', 'AYwOz8od', '7085484'), + (5, 2538, 'maybe', '2024-03-28 21:13:17', '2025-12-17 19:46:33', 'AYwOz8od', '7085485'), + (5, 2539, 'attending', '2024-04-03 21:45:00', '2025-12-17 19:46:33', 'AYwOz8od', '7085486'), + (5, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AYwOz8od', '7089267'), + (5, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AYwOz8od', '7098747'), + (5, 2553, 'attending', '2024-03-29 18:44:38', '2025-12-17 19:46:33', 'AYwOz8od', '7113468'), + (5, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AYwOz8od', '7114856'), + (5, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AYwOz8od', '7114951'), + (5, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AYwOz8od', '7114955'), + (5, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AYwOz8od', '7114956'), + (5, 2558, 'attending', '2024-05-01 17:54:47', '2025-12-17 19:46:35', 'AYwOz8od', '7114957'), + (5, 2564, 'not_attending', '2024-04-09 00:05:02', '2025-12-17 19:46:33', 'AYwOz8od', '7134735'), + (5, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AYwOz8od', '7153615'), + (5, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AYwOz8od', '7159484'), + (5, 2573, 'attending', '2024-04-09 00:02:24', '2025-12-17 19:46:34', 'AYwOz8od', '7160612'), + (5, 2576, 'not_attending', '2024-04-24 01:11:42', '2025-12-17 19:46:34', 'AYwOz8od', '7164538'), + (5, 2581, 'not_attending', '2024-04-21 21:23:37', '2025-12-17 19:46:34', 'AYwOz8od', '7169048'), + (5, 2584, 'attending', '2024-04-21 02:24:30', '2025-12-17 19:46:34', 'AYwOz8od', '7175057'), + (5, 2585, 'attending', '2024-04-21 21:23:34', '2025-12-17 19:46:34', 'AYwOz8od', '7175828'), + (5, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AYwOz8od', '7178446'), + (5, 2592, 'attending', '2024-04-20 01:54:28', '2025-12-17 19:46:34', 'AYwOz8od', '7180959'), + (5, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AYwOz8od', '7220467'), + (5, 2603, 'not_attending', '2024-05-11 20:54:14', '2025-12-17 19:46:35', 'AYwOz8od', '7225669'), + (5, 2605, 'attending', '2024-05-03 21:51:19', '2025-12-17 19:46:35', 'AYwOz8od', '7229243'), + (5, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AYwOz8od', '7240354'), + (5, 2611, 'attending', '2024-05-05 20:39:30', '2025-12-17 19:46:35', 'AYwOz8od', '7247642'), + (5, 2613, 'attending', '2024-05-05 20:39:34', '2025-12-17 19:46:35', 'AYwOz8od', '7247644'), + (5, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AYwOz8od', '7251633'), + (5, 2620, 'attending', '2024-05-07 16:47:49', '2025-12-17 19:46:35', 'AYwOz8od', '7258097'), + (5, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'AYwOz8od', '7263048'), + (5, 2626, 'attending', '2024-05-16 00:53:26', '2025-12-17 19:46:35', 'AYwOz8od', '7264723'), + (5, 2627, 'not_attending', '2024-05-18 17:51:38', '2025-12-17 19:46:35', 'AYwOz8od', '7264724'), + (5, 2630, 'not_attending', '2024-05-12 17:22:50', '2025-12-17 19:46:35', 'AYwOz8od', '7264801'), + (5, 2643, 'attending', '2024-05-18 17:51:25', '2025-12-17 19:46:35', 'AYwOz8od', '7276587'), + (5, 2646, 'not_attending', '2024-05-20 19:51:10', '2025-12-17 19:46:35', 'AYwOz8od', '7281768'), + (5, 2647, 'attending', '2024-05-29 18:38:07', '2025-12-17 19:46:28', 'AYwOz8od', '7282057'), + (5, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AYwOz8od', '7302674'), + (5, 2674, 'maybe', '2024-07-07 03:40:13', '2025-12-17 19:46:29', 'AYwOz8od', '7319480'), + (5, 2679, 'attending', '2024-06-20 01:26:48', '2025-12-17 19:46:29', 'AYwOz8od', '7319490'), + (5, 2688, 'attending', '2024-06-25 03:59:36', '2025-12-17 19:46:29', 'AYwOz8od', '7324073'), + (5, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AYwOz8od', '7324074'), + (5, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AYwOz8od', '7324075'), + (5, 2691, 'attending', '2024-07-17 16:15:22', '2025-12-17 19:46:30', 'AYwOz8od', '7324076'), + (5, 2692, 'not_attending', '2024-07-23 20:09:24', '2025-12-17 19:46:30', 'AYwOz8od', '7324077'), + (5, 2693, 'attending', '2024-08-01 02:42:40', '2025-12-17 19:46:31', 'AYwOz8od', '7324078'), + (5, 2694, 'attending', '2024-08-05 23:05:00', '2025-12-17 19:46:31', 'AYwOz8od', '7324079'), + (5, 2695, 'not_attending', '2024-08-15 18:24:59', '2025-12-17 19:46:31', 'AYwOz8od', '7324080'), + (5, 2696, 'attending', '2024-08-22 21:49:50', '2025-12-17 19:46:32', 'AYwOz8od', '7324081'), + (5, 2697, 'attending', '2024-08-30 19:28:16', '2025-12-17 19:46:32', 'AYwOz8od', '7324082'), + (5, 2698, 'attending', '2024-09-05 22:43:33', '2025-12-17 19:46:24', 'AYwOz8od', '7324083'), + (5, 2701, 'not_attending', '2024-06-25 03:59:34', '2025-12-17 19:46:29', 'AYwOz8od', '7324391'), + (5, 2706, 'attending', '2024-06-14 20:10:14', '2025-12-17 19:46:28', 'AYwOz8od', '7324947'), + (5, 2711, 'not_attending', '2024-07-17 03:02:56', '2025-12-17 19:46:30', 'AYwOz8od', '7326524'), + (5, 2712, 'attending', '2024-07-30 15:09:30', '2025-12-17 19:46:31', 'AYwOz8od', '7326525'), + (5, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AYwOz8od', '7331457'), + (5, 2723, 'not_attending', '2024-06-20 01:26:45', '2025-12-17 19:46:29', 'AYwOz8od', '7332389'), + (5, 2724, 'maybe', '2024-06-25 03:59:30', '2025-12-17 19:46:29', 'AYwOz8od', '7332562'), + (5, 2729, 'attending', '2024-06-23 15:50:00', '2025-12-17 19:46:29', 'AYwOz8od', '7335092'), + (5, 2736, 'attending', '2024-06-29 20:29:24', '2025-12-17 19:46:29', 'AYwOz8od', '7342038'), + (5, 2737, 'not_attending', '2024-06-30 20:35:08', '2025-12-17 19:46:29', 'AYwOz8od', '7344070'), + (5, 2739, 'maybe', '2024-07-01 16:25:48', '2025-12-17 19:46:29', 'AYwOz8od', '7344575'), + (5, 2741, 'maybe', '2024-07-01 16:38:27', '2025-12-17 19:46:30', 'AYwOz8od', '7344592'), + (5, 2742, 'attending', '2024-07-03 16:19:25', '2025-12-17 19:46:29', 'AYwOz8od', '7345167'), + (5, 2746, 'maybe', '2024-07-08 19:20:20', '2025-12-17 19:46:29', 'AYwOz8od', '7348713'), + (5, 2747, 'attending', '2024-07-17 03:02:47', '2025-12-17 19:46:30', 'AYwOz8od', '7353587'), + (5, 2749, 'not_attending', '2024-07-07 21:57:22', '2025-12-17 19:46:29', 'AYwOz8od', '7355496'), + (5, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AYwOz8od', '7356752'), + (5, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AYwOz8od', '7363643'), + (5, 2770, 'not_attending', '2024-07-20 21:09:59', '2025-12-17 19:46:30', 'AYwOz8od', '7368196'), + (5, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AYwOz8od', '7368606'), + (5, 2782, 'maybe', '2024-07-29 19:14:09', '2025-12-17 19:46:30', 'AYwOz8od', '7376725'), + (5, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AYwOz8od', '7397462'), + (5, 2802, 'maybe', '2024-09-02 04:39:45', '2025-12-17 19:46:32', 'AYwOz8od', '7397463'), + (5, 2806, 'not_attending', '2024-09-14 21:51:15', '2025-12-17 19:46:25', 'AYwOz8od', '7404888'), + (5, 2811, 'attending', '2024-08-31 21:30:08', '2025-12-17 19:46:32', 'AYwOz8od', '7418895'), + (5, 2813, 'not_attending', '2024-09-04 16:42:34', '2025-12-17 19:46:24', 'AYwOz8od', '7424105'), + (5, 2814, 'maybe', '2024-09-08 04:50:29', '2025-12-17 19:46:24', 'AYwOz8od', '7424267'), + (5, 2821, 'attending', '2024-10-09 04:28:07', '2025-12-17 19:46:26', 'AYwOz8od', '7424275'), + (5, 2822, 'maybe', '2024-11-10 00:27:43', '2025-12-17 19:46:26', 'AYwOz8od', '7424276'), + (5, 2823, 'attending', '2024-09-06 14:01:21', '2025-12-17 19:46:24', 'AYwOz8od', '7430247'), + (5, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AYwOz8od', '7432751'), + (5, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AYwOz8od', '7432752'), + (5, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AYwOz8od', '7432753'), + (5, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AYwOz8od', '7432754'), + (5, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AYwOz8od', '7432755'), + (5, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AYwOz8od', '7432756'), + (5, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AYwOz8od', '7432758'), + (5, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AYwOz8od', '7432759'), + (5, 2832, 'not_attending', '2024-09-09 20:33:00', '2025-12-17 19:46:24', 'AYwOz8od', '7433324'), + (5, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AYwOz8od', '7433834'), + (5, 2836, 'not_attending', '2024-09-12 22:35:03', '2025-12-17 19:46:25', 'AYwOz8od', '7438708'), + (5, 2839, 'not_attending', '2024-09-25 01:46:39', '2025-12-17 19:46:25', 'AYwOz8od', '7439262'), + (5, 2845, 'attending', '2024-09-21 18:49:26', '2025-12-17 19:46:25', 'AYwOz8od', '7452129'), + (5, 2849, 'attending', '2024-09-25 00:51:28', '2025-12-17 19:46:25', 'AYwOz8od', '7457114'), + (5, 2851, 'attending', '2024-09-28 20:55:26', '2025-12-17 19:46:25', 'AYwOz8od', '7461883'), + (5, 2858, 'not_attending', '2024-10-13 04:50:40', '2025-12-17 19:46:26', 'AYwOz8od', '7469388'), + (5, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'AYwOz8od', '7470197'), + (5, 2865, 'maybe', '2024-10-20 19:23:32', '2025-12-17 19:46:26', 'AYwOz8od', '7471200'), + (5, 2867, 'not_attending', '2024-12-03 03:00:27', '2025-12-17 19:46:21', 'AYwOz8od', '7471202'), + (5, 2870, 'attending', '2024-10-05 20:57:01', '2025-12-17 19:46:26', 'AYwOz8od', '7475068'), + (5, 2886, 'attending', '2024-11-03 20:54:53', '2025-12-17 19:46:26', 'AYwOz8od', '7654498'), + (5, 2891, 'attending', '2024-10-26 18:52:17', '2025-12-17 19:46:26', 'AYwOz8od', '7668163'), + (5, 2892, 'not_attending', '2024-10-27 23:27:40', '2025-12-17 19:46:26', 'AYwOz8od', '7672064'), + (5, 2894, 'attending', '2024-11-02 18:42:13', '2025-12-17 19:46:26', 'AYwOz8od', '7680059'), + (5, 2896, 'not_attending', '2024-11-12 17:18:16', '2025-12-17 19:46:27', 'AYwOz8od', '7683647'), + (5, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AYwOz8od', '7685613'), + (5, 2900, 'not_attending', '2024-11-11 00:08:09', '2025-12-17 19:46:26', 'AYwOz8od', '7686090'), + (5, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AYwOz8od', '7688194'), + (5, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AYwOz8od', '7688196'), + (5, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AYwOz8od', '7688289'), + (5, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'AYwOz8od', '7692763'), + (5, 2913, 'maybe', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AYwOz8od', '7697552'), + (5, 2915, 'not_attending', '2024-11-19 20:14:28', '2025-12-17 19:46:27', 'AYwOz8od', '7698151'), + (5, 2916, 'not_attending', '2024-11-19 20:14:25', '2025-12-17 19:46:27', 'AYwOz8od', '7699006'), + (5, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AYwOz8od', '7699878'), + (5, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'AYwOz8od', '7704043'), + (5, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AYwOz8od', '7712467'), + (5, 2925, 'attending', '2024-12-10 02:15:23', '2025-12-17 19:46:21', 'AYwOz8od', '7713584'), + (5, 2926, 'not_attending', '2024-11-30 22:30:57', '2025-12-17 19:46:21', 'AYwOz8od', '7713585'), + (5, 2927, 'not_attending', '2024-12-15 19:32:58', '2025-12-17 19:46:22', 'AYwOz8od', '7713586'), + (5, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AYwOz8od', '7738518'), + (5, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AYwOz8od', '7750636'), + (5, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AYwOz8od', '7796540'), + (5, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AYwOz8od', '7796541'), + (5, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AYwOz8od', '7796542'), + (5, 2968, 'not_attending', '2025-01-09 05:17:00', '2025-12-17 19:46:22', 'AYwOz8od', '7797967'), + (5, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AYwOz8od', '7825913'), + (5, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AYwOz8od', '7826209'), + (5, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AYwOz8od', '7834742'), + (5, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'AYwOz8od', '7842108'), + (5, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AYwOz8od', '7842902'), + (5, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AYwOz8od', '7842903'), + (5, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AYwOz8od', '7842904'), + (5, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AYwOz8od', '7842905'), + (5, 3000, 'attending', '2025-02-17 19:37:31', '2025-12-17 19:46:24', 'AYwOz8od', '7852541'), + (5, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AYwOz8od', '7855719'), + (5, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AYwOz8od', '7860683'), + (5, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AYwOz8od', '7860684'), + (5, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AYwOz8od', '7866095'), + (5, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AYwOz8od', '7869170'), + (5, 3014, 'attending', '2025-03-31 17:05:56', '2025-12-17 19:46:19', 'AYwOz8od', '7869185'), + (5, 3016, 'attending', '2025-04-19 05:01:50', '2025-12-17 19:46:20', 'AYwOz8od', '7869187'), + (5, 3017, 'not_attending', '2025-03-22 21:04:46', '2025-12-17 19:46:19', 'AYwOz8od', '7869188'), + (5, 3018, 'attending', '2025-04-09 00:40:13', '2025-12-17 19:46:20', 'AYwOz8od', '7869189'), + (5, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AYwOz8od', '7869201'), + (5, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AYwOz8od', '7877465'), + (5, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AYwOz8od', '7878570'), + (5, 3046, 'attending', '2025-04-12 18:49:51', '2025-12-17 19:46:20', 'AYwOz8od', '7882692'), + (5, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AYwOz8od', '7888250'), + (5, 3065, 'attending', '2025-03-29 01:00:39', '2025-12-17 19:46:19', 'AYwOz8od', '7893676'), + (5, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AYwOz8od', '7904777'), + (5, 3094, 'not_attending', '2025-05-03 00:21:28', '2025-12-17 19:46:21', 'AYwOz8od', '8342292'), + (5, 3095, 'attending', '2025-04-28 14:33:18', '2025-12-17 19:46:20', 'AYwOz8od', '8342293'), + (5, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AYwOz8od', '8349164'), + (5, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AYwOz8od', '8349545'), + (5, 3108, 'attending', '2025-05-03 19:12:06', '2025-12-17 19:46:20', 'AYwOz8od', '8351411'), + (5, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AYwOz8od', '8353584'), + (5, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AYwOz8od', '8368028'), + (5, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AYwOz8od', '8368029'), + (5, 3133, 'attending', '2025-05-29 20:50:57', '2025-12-17 19:46:14', 'AYwOz8od', '8368030'), + (5, 3139, 'attending', '2025-05-24 21:37:35', '2025-12-17 19:46:21', 'AYwOz8od', '8377425'), + (5, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AYwOz8od', '8388462'), + (5, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AYwOz8od', '8400273'), + (5, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AYwOz8od', '8400274'), + (5, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AYwOz8od', '8400275'), + (5, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'AYwOz8od', '8400276'), + (5, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AYwOz8od', '8404977'), + (5, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AYwOz8od', '8430783'), + (5, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AYwOz8od', '8430784'), + (5, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AYwOz8od', '8430799'), + (5, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AYwOz8od', '8430800'), + (5, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AYwOz8od', '8430801'), + (5, 3186, 'maybe', '2025-07-01 00:41:26', '2025-12-17 19:46:16', 'AYwOz8od', '8431527'), + (5, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AYwOz8od', '8438709'), + (5, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AYwOz8od', '8457738'), + (5, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AYwOz8od', '8459566'), + (5, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AYwOz8od', '8459567'), + (5, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AYwOz8od', '8461032'), + (5, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AYwOz8od', '8477877'), + (5, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AYwOz8od', '8485688'), + (5, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AYwOz8od', '8490587'), + (5, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AYwOz8od', '8493552'), + (5, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AYwOz8od', '8493553'), + (5, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AYwOz8od', '8493554'), + (5, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AYwOz8od', '8493555'), + (5, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AYwOz8od', '8493556'), + (5, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AYwOz8od', '8493557'), + (5, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AYwOz8od', '8493558'), + (5, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AYwOz8od', '8493559'), + (5, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AYwOz8od', '8493560'), + (5, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'AYwOz8od', '8493561'), + (5, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AYwOz8od', '8493572'), + (5, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AYwOz8od', '8540725'), + (5, 3289, 'attending', '2025-10-21 20:17:02', '2025-12-17 19:46:14', 'AYwOz8od', '8542939'), + (5, 3295, 'attending', '2025-10-30 16:49:43', '2025-12-17 19:46:14', 'AYwOz8od', '8547541'), + (5, 3300, 'not_attending', '2025-11-08 17:28:56', '2025-12-17 19:46:14', 'AYwOz8od', '8549145'), + (5, 3302, 'not_attending', '2025-11-01 19:30:44', '2025-12-17 19:46:14', 'AYwOz8od', '8550022'), + (5, 3304, 'attending', '2025-11-18 06:57:45', '2025-12-17 19:46:14', 'AYwOz8od', '8550024'), + (5, 3305, 'attending', '2025-12-06 01:33:17', '2025-12-17 19:46:11', 'AYwOz8od', '8550025'), + (5, 3306, 'attending', '2025-12-13 17:50:22', '2025-12-17 19:46:11', 'AYwOz8od', '8550026'), + (5, 3307, 'maybe', '2025-12-14 05:10:15', '2025-12-17 19:46:11', 'AYwOz8od', '8550027'), + (5, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AYwOz8od', '8555421'), + (6, 246, 'not_attending', '2020-12-12 04:38:43', '2025-12-17 19:47:55', 'ndaRDaKm', '3149477'), + (6, 258, 'attending', '2021-06-01 22:43:16', '2025-12-17 19:47:47', 'ndaRDaKm', '3149489'), + (6, 409, 'not_attending', '2020-12-11 01:07:33', '2025-12-17 19:47:54', 'ndaRDaKm', '3236467'), + (6, 429, 'attending', '2020-12-06 17:17:04', '2025-12-17 19:47:54', 'ndaRDaKm', '3250523'), + (6, 493, 'not_attending', '2020-12-04 15:43:42', '2025-12-17 19:47:54', 'ndaRDaKm', '3313856'), + (6, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaRDaKm', '3314964'), + (6, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ndaRDaKm', '3323365'), + (6, 507, 'not_attending', '2020-12-17 23:33:22', '2025-12-17 19:47:48', 'ndaRDaKm', '3324148'), + (6, 513, 'attending', '2020-12-19 07:36:09', '2025-12-17 19:47:55', 'ndaRDaKm', '3329383'), + (6, 517, 'attending', '2021-01-07 05:54:01', '2025-12-17 19:47:48', 'ndaRDaKm', '3337137'), + (6, 522, 'attending', '2020-12-17 23:33:18', '2025-12-17 19:47:55', 'ndaRDaKm', '3342836'), + (6, 526, 'attending', '2020-12-29 16:53:40', '2025-12-17 19:47:48', 'ndaRDaKm', '3351539'), + (6, 529, 'attending', '2021-01-02 22:30:37', '2025-12-17 19:47:48', 'ndaRDaKm', '3364568'), + (6, 532, 'attending', '2021-01-05 22:20:50', '2025-12-17 19:47:48', 'ndaRDaKm', '3381412'), + (6, 534, 'attending', '2021-01-09 21:36:16', '2025-12-17 19:47:48', 'ndaRDaKm', '3384157'), + (6, 535, 'attending', '2021-01-05 22:19:51', '2025-12-17 19:47:48', 'ndaRDaKm', '3384729'), + (6, 536, 'attending', '2021-01-06 03:07:14', '2025-12-17 19:47:48', 'ndaRDaKm', '3386848'), + (6, 538, 'attending', '2021-01-10 18:16:51', '2025-12-17 19:47:48', 'ndaRDaKm', '3388151'), + (6, 540, 'attending', '2021-01-07 01:57:18', '2025-12-17 19:47:48', 'ndaRDaKm', '3389527'), + (6, 542, 'attending', '2021-01-10 18:17:20', '2025-12-17 19:47:48', 'ndaRDaKm', '3395013'), + (6, 543, 'attending', '2021-01-12 03:36:36', '2025-12-17 19:47:48', 'ndaRDaKm', '3396499'), + (6, 547, 'not_attending', '2021-01-23 20:10:47', '2025-12-17 19:47:49', 'ndaRDaKm', '3396504'), + (6, 548, 'attending', '2021-01-13 02:47:41', '2025-12-17 19:47:48', 'ndaRDaKm', '3403650'), + (6, 549, 'attending', '2021-01-16 17:40:36', '2025-12-17 19:47:48', 'ndaRDaKm', '3406988'), + (6, 550, 'not_attending', '2021-01-17 22:41:35', '2025-12-17 19:47:48', 'ndaRDaKm', '3407018'), + (6, 554, 'attending', '2021-01-21 00:57:46', '2025-12-17 19:47:49', 'ndaRDaKm', '3408338'), + (6, 555, 'attending', '2021-01-18 20:40:51', '2025-12-17 19:47:49', 'ndaRDaKm', '3416576'), + (6, 557, 'not_attending', '2021-01-21 00:57:52', '2025-12-17 19:47:49', 'ndaRDaKm', '3418748'), + (6, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'ndaRDaKm', '3418925'), + (6, 559, 'not_attending', '2021-01-29 18:28:22', '2025-12-17 19:47:49', 'ndaRDaKm', '3421439'), + (6, 561, 'not_attending', '2021-01-23 20:10:40', '2025-12-17 19:47:49', 'ndaRDaKm', '3421916'), + (6, 562, 'attending', '2021-01-23 17:58:19', '2025-12-17 19:47:49', 'ndaRDaKm', '3424911'), + (6, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'ndaRDaKm', '3426074'), + (6, 567, 'not_attending', '2021-01-30 18:43:15', '2025-12-17 19:47:50', 'ndaRDaKm', '3428895'), + (6, 568, 'attending', '2021-01-26 04:24:33', '2025-12-17 19:47:50', 'ndaRDaKm', '3430267'), + (6, 569, 'attending', '2021-01-27 22:09:44', '2025-12-17 19:47:49', 'ndaRDaKm', '3432673'), + (6, 570, 'not_attending', '2021-02-01 16:17:27', '2025-12-17 19:47:50', 'ndaRDaKm', '3435538'), + (6, 571, 'attending', '2021-02-10 01:16:43', '2025-12-17 19:47:50', 'ndaRDaKm', '3435539'), + (6, 576, 'not_attending', '2021-01-31 00:46:21', '2025-12-17 19:47:50', 'ndaRDaKm', '3438748'), + (6, 577, 'not_attending', '2021-01-28 18:10:10', '2025-12-17 19:47:49', 'ndaRDaKm', '3439167'), + (6, 578, 'attending', '2021-02-01 16:18:05', '2025-12-17 19:47:50', 'ndaRDaKm', '3440043'), + (6, 579, 'attending', '2021-02-03 18:23:18', '2025-12-17 19:47:50', 'ndaRDaKm', '3440978'), + (6, 580, 'attending', '2021-01-30 00:16:46', '2025-12-17 19:47:50', 'ndaRDaKm', '3444240'), + (6, 581, 'not_attending', '2021-02-01 22:00:00', '2025-12-17 19:47:50', 'ndaRDaKm', '3445029'), + (6, 582, 'not_attending', '2021-02-01 22:00:06', '2025-12-17 19:47:50', 'ndaRDaKm', '3445769'), + (6, 598, 'not_attending', '2021-02-09 19:47:46', '2025-12-17 19:47:50', 'ndaRDaKm', '3468003'), + (6, 600, 'not_attending', '2021-02-06 03:25:00', '2025-12-17 19:47:50', 'ndaRDaKm', '3468125'), + (6, 602, 'attending', '2021-02-07 07:20:10', '2025-12-17 19:47:50', 'ndaRDaKm', '3470303'), + (6, 603, 'attending', '2021-02-07 07:20:14', '2025-12-17 19:47:50', 'ndaRDaKm', '3470304'), + (6, 604, 'attending', '2021-02-27 19:41:15', '2025-12-17 19:47:50', 'ndaRDaKm', '3470305'), + (6, 605, 'not_attending', '2021-02-14 18:53:28', '2025-12-17 19:47:50', 'ndaRDaKm', '3470991'), + (6, 606, 'not_attending', '2021-02-10 01:16:29', '2025-12-17 19:47:50', 'ndaRDaKm', '3470998'), + (6, 607, 'not_attending', '2021-02-15 20:56:58', '2025-12-17 19:47:50', 'ndaRDaKm', '3471882'), + (6, 616, 'attending', '2021-02-15 22:29:04', '2025-12-17 19:47:50', 'ndaRDaKm', '3493478'), + (6, 618, 'attending', '2021-02-19 22:35:58', '2025-12-17 19:47:50', 'ndaRDaKm', '3503991'), + (6, 621, 'attending', '2021-03-01 02:58:30', '2025-12-17 19:47:51', 'ndaRDaKm', '3517815'), + (6, 622, 'attending', '2021-03-01 02:58:31', '2025-12-17 19:47:51', 'ndaRDaKm', '3517816'), + (6, 623, 'not_attending', '2021-02-28 21:50:42', '2025-12-17 19:47:51', 'ndaRDaKm', '3523941'), + (6, 631, 'not_attending', '2021-03-07 10:18:36', '2025-12-17 19:47:51', 'ndaRDaKm', '3533850'), + (6, 638, 'not_attending', '2021-04-04 14:24:32', '2025-12-17 19:47:44', 'ndaRDaKm', '3536632'), + (6, 639, 'not_attending', '2021-03-21 17:59:26', '2025-12-17 19:47:51', 'ndaRDaKm', '3536656'), + (6, 641, 'attending', '2021-03-06 22:19:30', '2025-12-17 19:47:44', 'ndaRDaKm', '3539916'), + (6, 642, 'attending', '2021-03-06 22:19:32', '2025-12-17 19:47:44', 'ndaRDaKm', '3539917'), + (6, 643, 'attending', '2021-04-05 21:55:08', '2025-12-17 19:47:45', 'ndaRDaKm', '3539918'), + (6, 644, 'attending', '2021-04-05 21:55:12', '2025-12-17 19:47:45', 'ndaRDaKm', '3539919'), + (6, 645, 'attending', '2021-05-02 03:52:21', '2025-12-17 19:47:46', 'ndaRDaKm', '3539920'), + (6, 646, 'attending', '2021-05-15 19:21:56', '2025-12-17 19:47:46', 'ndaRDaKm', '3539921'), + (6, 647, 'attending', '2021-05-22 15:06:30', '2025-12-17 19:47:46', 'ndaRDaKm', '3539922'), + (6, 648, 'attending', '2021-05-25 17:06:36', '2025-12-17 19:47:47', 'ndaRDaKm', '3539923'), + (6, 649, 'attending', '2021-03-06 22:19:34', '2025-12-17 19:47:51', 'ndaRDaKm', '3539927'), + (6, 650, 'attending', '2021-03-27 16:01:28', '2025-12-17 19:47:44', 'ndaRDaKm', '3539928'), + (6, 651, 'not_attending', '2021-03-10 22:57:06', '2025-12-17 19:47:51', 'ndaRDaKm', '3541045'), + (6, 657, 'attending', '2021-04-17 21:11:28', '2025-12-17 19:47:45', 'ndaRDaKm', '3547132'), + (6, 658, 'attending', '2021-06-12 21:27:35', '2025-12-17 19:47:47', 'ndaRDaKm', '3547134'), + (6, 661, 'attending', '2021-04-03 19:39:47', '2025-12-17 19:47:44', 'ndaRDaKm', '3547137'), + (6, 662, 'attending', '2021-04-24 21:01:58', '2025-12-17 19:47:45', 'ndaRDaKm', '3547138'), + (6, 664, 'attending', '2021-09-03 04:09:24', '2025-12-17 19:47:43', 'ndaRDaKm', '3547142'), + (6, 667, 'attending', '2021-08-28 21:09:59', '2025-12-17 19:47:42', 'ndaRDaKm', '3547145'), + (6, 669, 'attending', '2021-06-26 18:01:15', '2025-12-17 19:47:38', 'ndaRDaKm', '3547147'), + (6, 672, 'attending', '2021-05-22 15:06:32', '2025-12-17 19:47:46', 'ndaRDaKm', '3547150'), + (6, 673, 'attending', '2021-07-03 20:34:29', '2025-12-17 19:47:38', 'ndaRDaKm', '3547151'), + (6, 674, 'maybe', '2021-08-06 04:50:06', '2025-12-17 19:47:41', 'ndaRDaKm', '3547152'), + (6, 676, 'attending', '2021-07-24 17:11:08', '2025-12-17 19:47:40', 'ndaRDaKm', '3547154'), + (6, 685, 'not_attending', '2021-04-12 14:58:31', '2025-12-17 19:47:44', 'ndaRDaKm', '3551564'), + (6, 687, 'not_attending', '2021-03-11 23:06:06', '2025-12-17 19:47:51', 'ndaRDaKm', '3553405'), + (6, 691, 'not_attending', '2021-04-19 00:00:25', '2025-12-17 19:47:45', 'ndaRDaKm', '3561928'), + (6, 698, 'attending', '2021-03-15 14:10:37', '2025-12-17 19:47:44', 'ndaRDaKm', '3571867'), + (6, 706, 'not_attending', '2021-04-17 21:11:55', '2025-12-17 19:47:45', 'ndaRDaKm', '3582734'), + (6, 707, 'not_attending', '2021-04-25 21:15:28', '2025-12-17 19:47:46', 'ndaRDaKm', '3583262'), + (6, 715, 'attending', '2021-03-31 21:37:33', '2025-12-17 19:47:44', 'ndaRDaKm', '3604146'), + (6, 717, 'attending', '2021-03-26 17:02:34', '2025-12-17 19:47:44', 'ndaRDaKm', '3619523'), + (6, 718, 'attending', '2021-03-27 21:14:06', '2025-12-17 19:47:44', 'ndaRDaKm', '3626844'), + (6, 719, 'maybe', '2021-04-08 21:16:15', '2025-12-17 19:47:44', 'ndaRDaKm', '3635405'), + (6, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ndaRDaKm', '3661369'), + (6, 725, 'attending', '2021-05-23 18:15:46', '2025-12-17 19:47:47', 'ndaRDaKm', '3661372'), + (6, 727, 'attending', '2021-06-08 01:05:35', '2025-12-17 19:47:38', 'ndaRDaKm', '3661377'), + (6, 728, 'attending', '2021-04-14 17:07:22', '2025-12-17 19:47:44', 'ndaRDaKm', '3668073'), + (6, 731, 'not_attending', '2021-04-07 20:21:46', '2025-12-17 19:47:44', 'ndaRDaKm', '3674262'), + (6, 732, 'attending', '2021-04-17 21:12:37', '2025-12-17 19:47:45', 'ndaRDaKm', '3674268'), + (6, 733, 'not_attending', '2021-04-04 14:24:44', '2025-12-17 19:47:44', 'ndaRDaKm', '3675473'), + (6, 734, 'attending', '2021-04-06 18:00:24', '2025-12-17 19:47:44', 'ndaRDaKm', '3676806'), + (6, 735, 'not_attending', '2021-04-05 00:36:14', '2025-12-17 19:47:46', 'ndaRDaKm', '3677402'), + (6, 736, 'not_attending', '2021-04-09 18:01:04', '2025-12-17 19:47:44', 'ndaRDaKm', '3677701'), + (6, 737, 'not_attending', '2021-04-06 22:24:05', '2025-12-17 19:47:44', 'ndaRDaKm', '3679349'), + (6, 752, 'attending', '2021-04-11 03:19:06', '2025-12-17 19:47:44', 'ndaRDaKm', '3699422'), + (6, 753, 'attending', '2021-04-14 17:07:42', '2025-12-17 19:47:45', 'ndaRDaKm', '3701861'), + (6, 762, 'not_attending', '2021-04-18 03:23:32', '2025-12-17 19:47:45', 'ndaRDaKm', '3719118'), + (6, 766, 'attending', '2021-05-12 04:35:13', '2025-12-17 19:47:46', 'ndaRDaKm', '3721383'), + (6, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndaRDaKm', '3730212'), + (6, 777, 'attending', '2021-04-30 19:54:51', '2025-12-17 19:47:46', 'ndaRDaKm', '3746248'), + (6, 785, 'not_attending', '2021-05-16 18:05:19', '2025-12-17 19:47:46', 'ndaRDaKm', '3779779'), + (6, 788, 'attending', '2021-05-07 22:31:06', '2025-12-17 19:47:46', 'ndaRDaKm', '3781975'), + (6, 789, 'attending', '2021-05-23 23:36:22', '2025-12-17 19:47:47', 'ndaRDaKm', '3785818'), + (6, 792, 'attending', '2021-05-19 23:17:24', '2025-12-17 19:47:46', 'ndaRDaKm', '3793156'), + (6, 793, 'attending', '2021-06-02 17:17:02', '2025-12-17 19:47:47', 'ndaRDaKm', '3793537'), + (6, 794, 'not_attending', '2021-05-25 17:06:24', '2025-12-17 19:47:47', 'ndaRDaKm', '3793538'), + (6, 805, 'attending', '2021-06-08 01:05:33', '2025-12-17 19:47:47', 'ndaRDaKm', '3804777'), + (6, 808, 'attending', '2021-05-20 23:05:20', '2025-12-17 19:47:46', 'ndaRDaKm', '3807358'), + (6, 823, 'attending', '2021-06-05 17:02:27', '2025-12-17 19:47:48', 'ndaRDaKm', '3974109'), + (6, 827, 'attending', '2021-06-05 17:01:41', '2025-12-17 19:47:47', 'ndaRDaKm', '3975311'), + (6, 828, 'attending', '2021-06-08 01:05:40', '2025-12-17 19:47:47', 'ndaRDaKm', '3975312'), + (6, 838, 'not_attending', '2021-06-09 23:31:24', '2025-12-17 19:47:47', 'ndaRDaKm', '3994992'), + (6, 844, 'attending', '2021-06-10 21:31:09', '2025-12-17 19:47:38', 'ndaRDaKm', '4014338'), + (6, 857, 'attending', '2021-11-24 03:50:50', '2025-12-17 19:47:37', 'ndaRDaKm', '4015731'), + (6, 866, 'not_attending', '2021-06-21 21:07:16', '2025-12-17 19:47:38', 'ndaRDaKm', '4020424'), + (6, 867, 'attending', '2021-06-25 21:12:16', '2025-12-17 19:47:38', 'ndaRDaKm', '4021848'), + (6, 869, 'attending', '2021-06-26 22:23:29', '2025-12-17 19:47:38', 'ndaRDaKm', '4136744'), + (6, 870, 'attending', '2021-06-30 21:42:19', '2025-12-17 19:47:39', 'ndaRDaKm', '4136937'), + (6, 871, 'attending', '2021-07-05 03:59:49', '2025-12-17 19:47:39', 'ndaRDaKm', '4136938'), + (6, 872, 'attending', '2021-07-21 22:19:28', '2025-12-17 19:47:40', 'ndaRDaKm', '4136947'), + (6, 874, 'attending', '2021-06-23 17:59:56', '2025-12-17 19:47:38', 'ndaRDaKm', '4139815'), + (6, 876, 'attending', '2021-06-22 22:42:57', '2025-12-17 19:47:38', 'ndaRDaKm', '4139926'), + (6, 879, 'attending', '2021-06-28 14:14:36', '2025-12-17 19:47:38', 'ndaRDaKm', '4147806'), + (6, 880, 'attending', '2021-06-19 14:22:50', '2025-12-17 19:47:48', 'ndaRDaKm', '4205383'), + (6, 882, 'not_attending', '2021-06-25 21:45:25', '2025-12-17 19:47:38', 'ndaRDaKm', '4207630'), + (6, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndaRDaKm', '4210314'), + (6, 887, 'attending', '2021-07-07 17:24:43', '2025-12-17 19:47:39', 'ndaRDaKm', '4225444'), + (6, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndaRDaKm', '4239259'), + (6, 900, 'attending', '2021-07-18 19:28:02', '2025-12-17 19:47:40', 'ndaRDaKm', '4240316'), + (6, 901, 'attending', '2021-07-22 16:42:24', '2025-12-17 19:47:40', 'ndaRDaKm', '4240317'), + (6, 902, 'maybe', '2021-08-05 13:01:22', '2025-12-17 19:47:41', 'ndaRDaKm', '4240318'), + (6, 903, 'not_attending', '2021-08-08 17:38:45', '2025-12-17 19:47:42', 'ndaRDaKm', '4240320'), + (6, 905, 'attending', '2021-07-04 15:32:44', '2025-12-17 19:47:39', 'ndaRDaKm', '4250163'), + (6, 909, 'not_attending', '2021-07-10 19:43:28', '2025-12-17 19:47:39', 'ndaRDaKm', '4258187'), + (6, 913, 'attending', '2021-07-12 01:39:51', '2025-12-17 19:47:39', 'ndaRDaKm', '4273765'), + (6, 914, 'attending', '2021-07-19 17:23:06', '2025-12-17 19:47:39', 'ndaRDaKm', '4273767'), + (6, 915, 'attending', '2021-07-19 17:23:02', '2025-12-17 19:47:39', 'ndaRDaKm', '4273770'), + (6, 916, 'attending', '2021-07-20 22:04:36', '2025-12-17 19:47:40', 'ndaRDaKm', '4273772'), + (6, 917, 'not_attending', '2021-07-14 19:28:31', '2025-12-17 19:47:39', 'ndaRDaKm', '4274481'), + (6, 919, 'attending', '2021-07-14 04:36:02', '2025-12-17 19:47:39', 'ndaRDaKm', '4275957'), + (6, 920, 'attending', '2021-07-17 20:40:13', '2025-12-17 19:47:40', 'ndaRDaKm', '4277819'), + (6, 925, 'not_attending', '2021-08-16 21:27:31', '2025-12-17 19:47:42', 'ndaRDaKm', '4297210'), + (6, 926, 'not_attending', '2021-08-18 18:04:15', '2025-12-17 19:47:42', 'ndaRDaKm', '4297211'), + (6, 929, 'not_attending', '2021-08-02 18:10:06', '2025-12-17 19:47:41', 'ndaRDaKm', '4297223'), + (6, 930, 'attending', '2021-08-08 13:49:56', '2025-12-17 19:47:41', 'ndaRDaKm', '4300787'), + (6, 931, 'attending', '2021-07-27 22:46:41', '2025-12-17 19:47:40', 'ndaRDaKm', '4301535'), + (6, 933, 'not_attending', '2021-07-28 23:20:03', '2025-12-17 19:47:40', 'ndaRDaKm', '4301723'), + (6, 934, 'attending', '2021-08-04 04:08:23', '2025-12-17 19:47:40', 'ndaRDaKm', '4302093'), + (6, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndaRDaKm', '4304151'), + (6, 937, 'not_attending', '2021-07-27 22:46:38', '2025-12-17 19:47:40', 'ndaRDaKm', '4306596'), + (6, 938, 'attending', '2021-07-25 23:51:03', '2025-12-17 19:47:40', 'ndaRDaKm', '4306597'), + (6, 940, 'not_attending', '2021-07-28 15:55:26', '2025-12-17 19:47:40', 'ndaRDaKm', '4309049'), + (6, 942, 'attending', '2021-07-27 22:48:37', '2025-12-17 19:47:40', 'ndaRDaKm', '4310297'), + (6, 952, 'attending', '2021-07-28 21:12:19', '2025-12-17 19:47:41', 'ndaRDaKm', '4318286'), + (6, 957, 'attending', '2021-08-05 13:01:34', '2025-12-17 19:47:41', 'ndaRDaKm', '4338834'), + (6, 958, 'attending', '2021-08-06 21:48:08', '2025-12-17 19:47:41', 'ndaRDaKm', '4342996'), + (6, 961, 'not_attending', '2021-08-08 17:38:53', '2025-12-17 19:47:42', 'ndaRDaKm', '4345519'), + (6, 962, 'attending', '2021-08-08 17:40:16', '2025-12-17 19:47:41', 'ndaRDaKm', '4346305'), + (6, 963, 'not_attending', '2021-08-16 22:47:52', '2025-12-17 19:47:42', 'ndaRDaKm', '4353159'), + (6, 967, 'attending', '2021-08-12 18:57:20', '2025-12-17 19:47:42', 'ndaRDaKm', '4356164'), + (6, 971, 'not_attending', '2021-09-08 23:07:29', '2025-12-17 19:47:43', 'ndaRDaKm', '4356801'), + (6, 972, 'attending', '2021-08-13 23:37:43', '2025-12-17 19:47:42', 'ndaRDaKm', '4358025'), + (6, 973, 'maybe', '2021-08-21 17:42:35', '2025-12-17 19:47:42', 'ndaRDaKm', '4366186'), + (6, 974, 'attending', '2021-08-23 15:40:23', '2025-12-17 19:47:42', 'ndaRDaKm', '4366187'), + (6, 977, 'attending', '2021-08-19 16:08:29', '2025-12-17 19:47:42', 'ndaRDaKm', '4378479'), + (6, 978, 'not_attending', '2021-08-21 21:52:47', '2025-12-17 19:47:42', 'ndaRDaKm', '4378509'), + (6, 987, 'not_attending', '2021-09-01 16:54:30', '2025-12-17 19:47:43', 'ndaRDaKm', '4402634'), + (6, 988, 'attending', '2021-08-26 13:57:48', '2025-12-17 19:47:42', 'ndaRDaKm', '4402823'), + (6, 990, 'not_attending', '2021-08-30 23:48:22', '2025-12-17 19:47:43', 'ndaRDaKm', '4420735'), + (6, 991, 'attending', '2021-08-28 22:27:11', '2025-12-17 19:47:43', 'ndaRDaKm', '4420738'), + (6, 992, 'attending', '2021-08-28 22:28:44', '2025-12-17 19:47:33', 'ndaRDaKm', '4420739'), + (6, 993, 'attending', '2021-08-28 22:28:46', '2025-12-17 19:47:34', 'ndaRDaKm', '4420741'), + (6, 994, 'attending', '2021-09-28 22:55:16', '2025-12-17 19:47:34', 'ndaRDaKm', '4420742'), + (6, 995, 'not_attending', '2021-08-31 15:41:27', '2025-12-17 19:47:34', 'ndaRDaKm', '4420744'), + (6, 996, 'not_attending', '2021-10-16 04:45:47', '2025-12-17 19:47:35', 'ndaRDaKm', '4420747'), + (6, 997, 'not_attending', '2021-10-16 15:05:11', '2025-12-17 19:47:35', 'ndaRDaKm', '4420748'), + (6, 998, 'attending', '2021-08-28 22:28:53', '2025-12-17 19:47:36', 'ndaRDaKm', '4420749'), + (6, 999, 'attending', '2021-08-29 03:07:44', '2025-12-17 19:47:43', 'ndaRDaKm', '4421150'), + (6, 1016, 'attending', '2021-09-04 17:37:29', '2025-12-17 19:47:43', 'ndaRDaKm', '4441271'), + (6, 1021, 'not_attending', '2021-09-20 21:16:57', '2025-12-17 19:47:34', 'ndaRDaKm', '4451803'), + (6, 1022, 'attending', '2021-09-13 02:18:20', '2025-12-17 19:47:43', 'ndaRDaKm', '4458628'), + (6, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndaRDaKm', '4461883'), + (6, 1026, 'not_attending', '2021-09-13 02:30:47', '2025-12-17 19:47:43', 'ndaRDaKm', '4472951'), + (6, 1032, 'attending', '2021-09-13 04:07:54', '2025-12-17 19:47:34', 'ndaRDaKm', '4473825'), + (6, 1033, 'attending', '2021-09-16 15:50:07', '2025-12-17 19:47:43', 'ndaRDaKm', '4486006'), + (6, 1036, 'not_attending', '2021-09-22 22:45:26', '2025-12-17 19:47:34', 'ndaRDaKm', '4493166'), + (6, 1041, 'attending', '2021-12-02 16:22:45', '2025-12-17 19:47:37', 'ndaRDaKm', '4496606'), + (6, 1042, 'attending', '2021-11-25 21:27:26', '2025-12-17 19:47:37', 'ndaRDaKm', '4496607'), + (6, 1043, 'not_attending', '2021-10-18 23:15:49', '2025-12-17 19:47:35', 'ndaRDaKm', '4496608'), + (6, 1045, 'attending', '2021-10-18 23:15:55', '2025-12-17 19:47:36', 'ndaRDaKm', '4496610'), + (6, 1046, 'not_attending', '2021-10-16 04:45:36', '2025-12-17 19:47:35', 'ndaRDaKm', '4496611'), + (6, 1049, 'attending', '2022-01-21 22:58:25', '2025-12-17 19:47:32', 'ndaRDaKm', '4496614'), + (6, 1051, 'attending', '2022-01-30 02:37:14', '2025-12-17 19:47:32', 'ndaRDaKm', '4496616'), + (6, 1053, 'attending', '2022-02-13 17:29:24', '2025-12-17 19:47:32', 'ndaRDaKm', '4496618'), + (6, 1055, 'attending', '2022-01-01 03:38:52', '2025-12-17 19:47:31', 'ndaRDaKm', '4496621'), + (6, 1058, 'attending', '2022-02-26 23:58:47', '2025-12-17 19:47:33', 'ndaRDaKm', '4496625'), + (6, 1059, 'attending', '2022-03-12 22:04:02', '2025-12-17 19:47:33', 'ndaRDaKm', '4496626'), + (6, 1060, 'maybe', '2022-03-24 16:23:30', '2025-12-17 19:47:25', 'ndaRDaKm', '4496627'), + (6, 1061, 'attending', '2022-02-09 02:29:16', '2025-12-17 19:47:32', 'ndaRDaKm', '4496628'), + (6, 1062, 'attending', '2022-03-05 22:21:18', '2025-12-17 19:47:33', 'ndaRDaKm', '4496629'), + (6, 1063, 'attending', '2021-09-20 18:39:28', '2025-12-17 19:47:34', 'ndaRDaKm', '4496630'), + (6, 1064, 'not_attending', '2021-09-21 03:37:56', '2025-12-17 19:47:34', 'ndaRDaKm', '4499526'), + (6, 1066, 'attending', '2021-09-21 17:11:14', '2025-12-17 19:47:34', 'ndaRDaKm', '4506039'), + (6, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndaRDaKm', '4508342'), + (6, 1068, 'maybe', '2021-09-30 13:39:26', '2025-12-17 19:47:34', 'ndaRDaKm', '4511471'), + (6, 1072, 'maybe', '2021-10-04 01:19:47', '2025-12-17 19:47:34', 'ndaRDaKm', '4516287'), + (6, 1074, 'maybe', '2021-09-29 00:42:52', '2025-12-17 19:47:34', 'ndaRDaKm', '4528953'), + (6, 1075, 'attending', '2021-10-02 20:03:50', '2025-12-17 19:47:34', 'ndaRDaKm', '4536351'), + (6, 1077, 'not_attending', '2021-10-12 14:14:01', '2025-12-17 19:47:34', 'ndaRDaKm', '4540903'), + (6, 1079, 'not_attending', '2021-10-20 21:25:35', '2025-12-17 19:47:35', 'ndaRDaKm', '4563823'), + (6, 1082, 'maybe', '2021-10-12 14:07:35', '2025-12-17 19:47:35', 'ndaRDaKm', '4566762'), + (6, 1086, 'not_attending', '2021-10-14 06:57:15', '2025-12-17 19:47:35', 'ndaRDaKm', '4568602'), + (6, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndaRDaKm', '4572153'), + (6, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ndaRDaKm', '4585962'), + (6, 1094, 'attending', '2021-10-31 18:33:32', '2025-12-17 19:47:36', 'ndaRDaKm', '4587337'), + (6, 1095, 'not_attending', '2021-10-28 03:35:22', '2025-12-17 19:47:36', 'ndaRDaKm', '4596356'), + (6, 1097, 'not_attending', '2021-11-02 03:50:01', '2025-12-17 19:47:36', 'ndaRDaKm', '4598860'), + (6, 1098, 'maybe', '2021-11-09 00:03:43', '2025-12-17 19:47:36', 'ndaRDaKm', '4598861'), + (6, 1099, 'not_attending', '2021-11-06 22:45:32', '2025-12-17 19:47:36', 'ndaRDaKm', '4602797'), + (6, 1108, 'attending', '2021-11-17 19:59:18', '2025-12-17 19:47:37', 'ndaRDaKm', '4632276'), + (6, 1114, 'attending', '2021-11-12 00:55:17', '2025-12-17 19:47:36', 'ndaRDaKm', '4637896'), + (6, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndaRDaKm', '4642994'), + (6, 1117, 'attending', '2021-12-08 23:01:00', '2025-12-17 19:47:37', 'ndaRDaKm', '4642995'), + (6, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ndaRDaKm', '4642996'), + (6, 1119, 'maybe', '2022-01-01 03:43:40', '2025-12-17 19:47:31', 'ndaRDaKm', '4642997'), + (6, 1126, 'attending', '2021-12-11 22:51:13', '2025-12-17 19:47:38', 'ndaRDaKm', '4645687'), + (6, 1127, 'not_attending', '2021-12-12 15:09:36', '2025-12-17 19:47:38', 'ndaRDaKm', '4645698'), + (6, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndaRDaKm', '4645704'), + (6, 1129, 'attending', '2021-11-27 23:46:03', '2025-12-17 19:47:37', 'ndaRDaKm', '4645705'), + (6, 1130, 'attending', '2021-12-02 16:22:41', '2025-12-17 19:47:37', 'ndaRDaKm', '4658824'), + (6, 1131, 'attending', '2021-12-18 23:16:48', '2025-12-17 19:47:31', 'ndaRDaKm', '4658825'), + (6, 1134, 'attending', '2021-11-24 07:01:52', '2025-12-17 19:47:37', 'ndaRDaKm', '4668385'), + (6, 1135, 'not_attending', '2021-11-26 21:43:52', '2025-12-17 19:47:37', 'ndaRDaKm', '4670469'), + (6, 1143, 'attending', '2021-12-02 00:52:42', '2025-12-17 19:47:37', 'ndaRDaKm', '4683667'), + (6, 1149, 'not_attending', '2021-12-09 20:24:55', '2025-12-17 19:47:38', 'ndaRDaKm', '4694407'), + (6, 1151, 'attending', '2021-12-28 05:08:31', '2025-12-17 19:47:31', 'ndaRDaKm', '4708704'), + (6, 1152, 'attending', '2022-01-06 20:55:06', '2025-12-17 19:47:31', 'ndaRDaKm', '4708705'), + (6, 1153, 'maybe', '2022-01-19 23:00:29', '2025-12-17 19:47:32', 'ndaRDaKm', '4708707'), + (6, 1155, 'attending', '2021-12-20 23:32:18', '2025-12-17 19:47:31', 'ndaRDaKm', '4715119'), + (6, 1163, 'attending', '2021-12-28 05:08:48', '2025-12-17 19:47:31', 'ndaRDaKm', '4724206'), + (6, 1164, 'attending', '2021-12-27 23:24:29', '2025-12-17 19:47:31', 'ndaRDaKm', '4724208'), + (6, 1165, 'attending', '2021-12-27 23:24:30', '2025-12-17 19:47:31', 'ndaRDaKm', '4724210'), + (6, 1173, 'attending', '2022-01-08 22:52:14', '2025-12-17 19:47:31', 'ndaRDaKm', '4736495'), + (6, 1174, 'not_attending', '2022-01-11 21:20:30', '2025-12-17 19:47:31', 'ndaRDaKm', '4736496'), + (6, 1175, 'attending', '2022-01-22 22:51:16', '2025-12-17 19:47:32', 'ndaRDaKm', '4736497'), + (6, 1176, 'attending', '2022-01-06 20:54:55', '2025-12-17 19:47:32', 'ndaRDaKm', '4736498'), + (6, 1177, 'attending', '2022-02-09 02:29:13', '2025-12-17 19:47:32', 'ndaRDaKm', '4736499'), + (6, 1178, 'not_attending', '2022-01-30 00:29:34', '2025-12-17 19:47:32', 'ndaRDaKm', '4736500'), + (6, 1179, 'attending', '2022-02-13 17:29:22', '2025-12-17 19:47:32', 'ndaRDaKm', '4736501'), + (6, 1180, 'attending', '2022-02-26 22:16:31', '2025-12-17 19:47:33', 'ndaRDaKm', '4736502'), + (6, 1181, 'attending', '2022-03-05 22:21:16', '2025-12-17 19:47:33', 'ndaRDaKm', '4736503'), + (6, 1182, 'attending', '2022-03-12 22:04:00', '2025-12-17 19:47:33', 'ndaRDaKm', '4736504'), + (6, 1184, 'attending', '2022-01-06 04:18:36', '2025-12-17 19:47:31', 'ndaRDaKm', '4742350'), + (6, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndaRDaKm', '4746789'), + (6, 1188, 'maybe', '2022-01-16 20:18:40', '2025-12-17 19:47:32', 'ndaRDaKm', '4753929'), + (6, 1222, 'not_attending', '2022-02-17 00:45:14', '2025-12-17 19:47:32', 'ndaRDaKm', '5015628'), + (6, 1224, 'attending', '2022-01-30 20:35:33', '2025-12-17 19:47:32', 'ndaRDaKm', '5016682'), + (6, 1228, 'maybe', '2022-02-08 00:11:39', '2025-12-17 19:47:32', 'ndaRDaKm', '5028238'), + (6, 1232, 'not_attending', '2022-02-09 02:28:54', '2025-12-17 19:47:32', 'ndaRDaKm', '5038850'), + (6, 1236, 'attending', '2022-02-14 08:46:13', '2025-12-17 19:47:32', 'ndaRDaKm', '5045826'), + (6, 1237, 'attending', '2022-02-15 20:33:30', '2025-12-17 19:47:32', 'ndaRDaKm', '5050641'), + (6, 1238, 'not_attending', '2022-02-21 01:44:29', '2025-12-17 19:47:32', 'ndaRDaKm', '5052236'), + (6, 1239, 'not_attending', '2022-03-02 22:02:19', '2025-12-17 19:47:33', 'ndaRDaKm', '5052238'), + (6, 1242, 'maybe', '2022-03-29 23:52:01', '2025-12-17 19:47:25', 'ndaRDaKm', '5052241'), + (6, 1250, 'attending', '2022-02-27 00:08:19', '2025-12-17 19:47:33', 'ndaRDaKm', '5069735'), + (6, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndaRDaKm', '5132533'), + (6, 1260, 'attending', '2022-03-01 20:17:27', '2025-12-17 19:47:33', 'ndaRDaKm', '5142082'), + (6, 1264, 'not_attending', '2022-03-22 15:46:25', '2025-12-17 19:47:25', 'ndaRDaKm', '5160281'), + (6, 1265, 'not_attending', '2022-03-12 03:27:45', '2025-12-17 19:47:33', 'ndaRDaKm', '5160862'), + (6, 1272, 'not_attending', '2022-03-15 20:47:25', '2025-12-17 19:47:25', 'ndaRDaKm', '5186582'), + (6, 1273, 'maybe', '2022-03-24 16:23:28', '2025-12-17 19:47:25', 'ndaRDaKm', '5186583'), + (6, 1274, 'not_attending', '2022-03-15 20:49:04', '2025-12-17 19:47:26', 'ndaRDaKm', '5186585'), + (6, 1280, 'not_attending', '2022-03-18 00:36:29', '2025-12-17 19:47:25', 'ndaRDaKm', '5189749'), + (6, 1281, 'maybe', '2022-04-08 18:25:24', '2025-12-17 19:47:27', 'ndaRDaKm', '5190437'), + (6, 1284, 'attending', '2022-04-16 19:28:49', '2025-12-17 19:47:27', 'ndaRDaKm', '5195095'), + (6, 1291, 'not_attending', '2022-03-25 22:03:45', '2025-12-17 19:47:25', 'ndaRDaKm', '5200458'), + (6, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndaRDaKm', '5215989'), + (6, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ndaRDaKm', '5223686'), + (6, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ndaRDaKm', '5227432'), + (6, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'ndaRDaKm', '5231461'), + (6, 1315, 'attending', '2022-04-10 20:46:15', '2025-12-17 19:47:27', 'ndaRDaKm', '5237522'), + (6, 1345, 'attending', '2022-04-23 20:30:43', '2025-12-17 19:47:27', 'ndaRDaKm', '5247466'), + (6, 1346, 'attending', '2022-04-21 19:01:29', '2025-12-17 19:47:27', 'ndaRDaKm', '5247467'), + (6, 1362, 'maybe', '2022-04-25 19:12:07', '2025-12-17 19:47:28', 'ndaRDaKm', '5260800'), + (6, 1372, 'attending', '2022-05-04 22:31:08', '2025-12-17 19:47:28', 'ndaRDaKm', '5264352'), + (6, 1374, 'attending', '2022-05-02 01:58:33', '2025-12-17 19:47:28', 'ndaRDaKm', '5269930'), + (6, 1378, 'attending', '2022-05-02 02:27:30', '2025-12-17 19:47:28', 'ndaRDaKm', '5271448'), + (6, 1379, 'attending', '2022-05-06 17:04:51', '2025-12-17 19:47:29', 'ndaRDaKm', '5271449'), + (6, 1380, 'not_attending', '2022-05-22 23:45:34', '2025-12-17 19:47:30', 'ndaRDaKm', '5271450'), + (6, 1383, 'attending', '2022-05-13 22:07:11', '2025-12-17 19:47:28', 'ndaRDaKm', '5276469'), + (6, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ndaRDaKm', '5278159'), + (6, 1401, 'maybe', '2022-05-18 22:07:37', '2025-12-17 19:47:29', 'ndaRDaKm', '5286295'), + (6, 1403, 'attending', '2022-05-12 18:00:09', '2025-12-17 19:47:29', 'ndaRDaKm', '5288052'), + (6, 1407, 'attending', '2022-05-25 21:10:08', '2025-12-17 19:47:30', 'ndaRDaKm', '5363695'), + (6, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ndaRDaKm', '5365960'), + (6, 1410, 'not_attending', '2022-05-17 02:30:18', '2025-12-17 19:47:29', 'ndaRDaKm', '5367530'), + (6, 1411, 'not_attending', '2022-05-19 22:13:05', '2025-12-17 19:47:29', 'ndaRDaKm', '5367531'), + (6, 1412, 'attending', '2022-05-17 02:23:11', '2025-12-17 19:47:29', 'ndaRDaKm', '5367532'), + (6, 1413, 'not_attending', '2022-05-20 20:46:21', '2025-12-17 19:47:29', 'ndaRDaKm', '5367533'), + (6, 1414, 'maybe', '2022-05-21 01:09:21', '2025-12-17 19:47:29', 'ndaRDaKm', '5368445'), + (6, 1415, 'attending', '2022-05-25 21:10:04', '2025-12-17 19:47:30', 'ndaRDaKm', '5368973'), + (6, 1419, 'maybe', '2022-06-08 18:38:34', '2025-12-17 19:47:30', 'ndaRDaKm', '5373081'), + (6, 1427, 'maybe', '2022-05-25 22:29:33', '2025-12-17 19:47:30', 'ndaRDaKm', '5376074'), + (6, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ndaRDaKm', '5378247'), + (6, 1431, 'attending', '2022-06-03 03:43:21', '2025-12-17 19:47:30', 'ndaRDaKm', '5389605'), + (6, 1442, 'attending', '2022-06-03 03:43:18', '2025-12-17 19:47:17', 'ndaRDaKm', '5397265'), + (6, 1444, 'attending', '2022-06-11 19:45:15', '2025-12-17 19:47:30', 'ndaRDaKm', '5397614'), + (6, 1445, 'attending', '2022-06-18 18:54:37', '2025-12-17 19:47:17', 'ndaRDaKm', '5397615'), + (6, 1451, 'attending', '2022-06-10 03:02:54', '2025-12-17 19:47:17', 'ndaRDaKm', '5403967'), + (6, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ndaRDaKm', '5404786'), + (6, 1460, 'attending', '2022-06-13 15:15:57', '2025-12-17 19:47:31', 'ndaRDaKm', '5404817'), + (6, 1462, 'not_attending', '2022-06-10 21:54:05', '2025-12-17 19:47:17', 'ndaRDaKm', '5405203'), + (6, 1466, 'attending', '2022-06-12 21:31:31', '2025-12-17 19:47:17', 'ndaRDaKm', '5406427'), + (6, 1477, 'attending', '2022-06-15 17:39:42', '2025-12-17 19:47:17', 'ndaRDaKm', '5408766'), + (6, 1478, 'not_attending', '2022-06-15 18:07:12', '2025-12-17 19:47:19', 'ndaRDaKm', '5408794'), + (6, 1480, 'attending', '2022-06-26 21:38:48', '2025-12-17 19:47:19', 'ndaRDaKm', '5411699'), + (6, 1481, 'attending', '2022-06-18 22:18:05', '2025-12-17 19:47:17', 'ndaRDaKm', '5412237'), + (6, 1482, 'not_attending', '2022-06-20 02:30:50', '2025-12-17 19:47:19', 'ndaRDaKm', '5412550'), + (6, 1484, 'maybe', '2022-06-21 00:50:51', '2025-12-17 19:47:17', 'ndaRDaKm', '5415046'), + (6, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ndaRDaKm', '5422086'), + (6, 1498, 'not_attending', '2022-07-03 00:19:58', '2025-12-17 19:47:19', 'ndaRDaKm', '5422406'), + (6, 1502, 'not_attending', '2022-07-09 00:06:55', '2025-12-17 19:47:19', 'ndaRDaKm', '5424565'), + (6, 1504, 'attending', '2022-07-09 03:11:57', '2025-12-17 19:47:19', 'ndaRDaKm', '5426882'), + (6, 1505, 'not_attending', '2022-07-05 04:08:55', '2025-12-17 19:47:19', 'ndaRDaKm', '5427083'), + (6, 1508, 'maybe', '2022-07-13 06:10:41', '2025-12-17 19:47:19', 'ndaRDaKm', '5433453'), + (6, 1511, 'attending', '2022-07-09 18:47:51', '2025-12-17 19:47:19', 'ndaRDaKm', '5437733'), + (6, 1513, 'attending', '2022-07-09 18:47:44', '2025-12-17 19:47:19', 'ndaRDaKm', '5441125'), + (6, 1514, 'not_attending', '2022-07-09 18:55:51', '2025-12-17 19:47:20', 'ndaRDaKm', '5441126'), + (6, 1515, 'attending', '2022-07-09 18:55:55', '2025-12-17 19:47:21', 'ndaRDaKm', '5441128'), + (6, 1516, 'attending', '2022-08-19 19:58:03', '2025-12-17 19:47:23', 'ndaRDaKm', '5441129'), + (6, 1517, 'attending', '2022-08-27 21:02:42', '2025-12-17 19:47:23', 'ndaRDaKm', '5441130'), + (6, 1518, 'not_attending', '2022-08-27 03:09:15', '2025-12-17 19:47:24', 'ndaRDaKm', '5441131'), + (6, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ndaRDaKm', '5441132'), + (6, 1528, 'attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ndaRDaKm', '5446643'), + (6, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ndaRDaKm', '5453325'), + (6, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ndaRDaKm', '5454516'), + (6, 1544, 'maybe', '2022-09-15 00:33:14', '2025-12-17 19:47:11', 'ndaRDaKm', '5454517'), + (6, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ndaRDaKm', '5454605'), + (6, 1550, 'attending', '2022-07-19 20:17:50', '2025-12-17 19:47:20', 'ndaRDaKm', '5454803'), + (6, 1551, 'attending', '2022-07-19 21:18:30', '2025-12-17 19:47:20', 'ndaRDaKm', '5455037'), + (6, 1561, 'attending', '2022-08-01 20:37:36', '2025-12-17 19:47:22', 'ndaRDaKm', '5461278'), + (6, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ndaRDaKm', '5469480'), + (6, 1565, 'attending', '2022-07-26 02:25:05', '2025-12-17 19:47:21', 'ndaRDaKm', '5471073'), + (6, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ndaRDaKm', '5474663'), + (6, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ndaRDaKm', '5482022'), + (6, 1575, 'maybe', '2022-08-05 04:43:43', '2025-12-17 19:47:23', 'ndaRDaKm', '5482250'), + (6, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ndaRDaKm', '5482793'), + (6, 1578, 'attending', '2022-08-04 02:55:38', '2025-12-17 19:47:21', 'ndaRDaKm', '5483073'), + (6, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ndaRDaKm', '5488912'), + (6, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ndaRDaKm', '5492192'), + (6, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ndaRDaKm', '5493139'), + (6, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ndaRDaKm', '5493200'), + (6, 1593, 'maybe', '2022-08-13 02:38:50', '2025-12-17 19:47:22', 'ndaRDaKm', '5494043'), + (6, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ndaRDaKm', '5502188'), + (6, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndaRDaKm', '5505059'), + (6, 1615, 'maybe', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ndaRDaKm', '5509055'), + (6, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndaRDaKm', '5512862'), + (6, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndaRDaKm', '5513985'), + (6, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ndaRDaKm', '5519981'), + (6, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndaRDaKm', '5522550'), + (6, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndaRDaKm', '5534683'), + (6, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ndaRDaKm', '5537735'), + (6, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndaRDaKm', '5540859'), + (6, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndaRDaKm', '5546619'), + (6, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ndaRDaKm', '5555245'), + (6, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndaRDaKm', '5557747'), + (6, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndaRDaKm', '5560255'), + (6, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndaRDaKm', '5562906'), + (6, 1667, 'attending', '2022-09-24 16:02:41', '2025-12-17 19:47:11', 'ndaRDaKm', '5563221'), + (6, 1668, 'not_attending', '2022-10-01 07:45:46', '2025-12-17 19:47:12', 'ndaRDaKm', '5563222'), + (6, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndaRDaKm', '5600604'), + (6, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndaRDaKm', '5605544'), + (6, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'ndaRDaKm', '5606737'), + (6, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ndaRDaKm', '5630960'), + (6, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndaRDaKm', '5630961'), + (6, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndaRDaKm', '5630962'), + (6, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndaRDaKm', '5630966'), + (6, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ndaRDaKm', '5630967'), + (6, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndaRDaKm', '5630968'), + (6, 1727, 'not_attending', '2022-11-28 23:18:52', '2025-12-17 19:47:16', 'ndaRDaKm', '5630969'), + (6, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndaRDaKm', '5635406'), + (6, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndaRDaKm', '5638765'), + (6, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndaRDaKm', '5640097'), + (6, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ndaRDaKm', '5640843'), + (6, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndaRDaKm', '5641521'), + (6, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ndaRDaKm', '5642818'), + (6, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndaRDaKm', '5652395'), + (6, 1762, 'attending', '2022-10-24 02:32:17', '2025-12-17 19:47:16', 'ndaRDaKm', '5670445'), + (6, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndaRDaKm', '5671637'), + (6, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndaRDaKm', '5672329'), + (6, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndaRDaKm', '5674057'), + (6, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndaRDaKm', '5674060'), + (6, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndaRDaKm', '5677461'), + (6, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndaRDaKm', '5698046'), + (6, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ndaRDaKm', '5699760'), + (6, 1790, 'not_attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'ndaRDaKm', '5727424'), + (6, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndaRDaKm', '5741601'), + (6, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndaRDaKm', '5763458'), + (6, 1799, 'attending', '2022-11-26 23:56:54', '2025-12-17 19:47:16', 'ndaRDaKm', '5764666'), + (6, 1804, 'attending', '2023-01-24 22:39:59', '2025-12-17 19:47:06', 'ndaRDaKm', '5764674'), + (6, 1805, 'attending', '2023-01-31 18:59:56', '2025-12-17 19:47:06', 'ndaRDaKm', '5764675'), + (6, 1806, 'not_attending', '2023-01-13 01:26:39', '2025-12-17 19:47:05', 'ndaRDaKm', '5764676'), + (6, 1807, 'attending', '2023-01-13 08:40:19', '2025-12-17 19:47:05', 'ndaRDaKm', '5764677'), + (6, 1814, 'attending', '2023-02-14 22:45:28', '2025-12-17 19:47:08', 'ndaRDaKm', '5764684'), + (6, 1817, 'maybe', '2023-02-21 22:24:47', '2025-12-17 19:46:57', 'ndaRDaKm', '5764687'), + (6, 1820, 'attending', '2023-04-08 01:18:25', '2025-12-17 19:46:58', 'ndaRDaKm', '5764690'), + (6, 1821, 'not_attending', '2023-02-21 22:24:56', '2025-12-17 19:46:56', 'ndaRDaKm', '5764691'), + (6, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndaRDaKm', '5774172'), + (6, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ndaRDaKm', '5818247'), + (6, 1834, 'not_attending', '2022-12-10 02:15:11', '2025-12-17 19:47:17', 'ndaRDaKm', '5819470'), + (6, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndaRDaKm', '5819471'), + (6, 1841, 'attending', '2023-01-06 11:28:21', '2025-12-17 19:47:05', 'ndaRDaKm', '5827665'), + (6, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndaRDaKm', '5827739'), + (6, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndaRDaKm', '5844306'), + (6, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndaRDaKm', '5850159'), + (6, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndaRDaKm', '5858999'), + (6, 1851, 'attending', '2023-01-08 22:20:14', '2025-12-17 19:47:05', 'ndaRDaKm', '5869316'), + (6, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndaRDaKm', '5871984'), + (6, 1859, 'not_attending', '2023-01-13 01:26:47', '2025-12-17 19:47:05', 'ndaRDaKm', '5876234'), + (6, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndaRDaKm', '5876354'), + (6, 1864, 'not_attending', '2023-01-16 18:53:06', '2025-12-17 19:47:05', 'ndaRDaKm', '5879675'), + (6, 1865, 'attending', '2023-01-24 22:39:55', '2025-12-17 19:47:06', 'ndaRDaKm', '5879676'), + (6, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndaRDaKm', '5880939'), + (6, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ndaRDaKm', '5880940'), + (6, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndaRDaKm', '5880942'), + (6, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndaRDaKm', '5880943'), + (6, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndaRDaKm', '5887890'), + (6, 1875, 'maybe', '2023-01-24 22:39:46', '2025-12-17 19:47:06', 'ndaRDaKm', '5887908'), + (6, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndaRDaKm', '5888598'), + (6, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndaRDaKm', '5893260'), + (6, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndaRDaKm', '5899826'), + (6, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndaRDaKm', '5900199'), + (6, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ndaRDaKm', '5900200'), + (6, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndaRDaKm', '5900202'), + (6, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndaRDaKm', '5900203'), + (6, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndaRDaKm', '5901108'), + (6, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndaRDaKm', '5901126'), + (6, 1897, 'attending', '2023-02-06 17:18:45', '2025-12-17 19:47:07', 'ndaRDaKm', '5901128'), + (6, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndaRDaKm', '5909655'), + (6, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndaRDaKm', '5910522'), + (6, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndaRDaKm', '5910526'), + (6, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndaRDaKm', '5910528'), + (6, 1922, 'not_attending', '2023-02-14 22:45:24', '2025-12-17 19:47:07', 'ndaRDaKm', '5916219'), + (6, 1924, 'attending', '2023-02-16 17:39:14', '2025-12-17 19:47:07', 'ndaRDaKm', '5931095'), + (6, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndaRDaKm', '5936234'), + (6, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndaRDaKm', '5958351'), + (6, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndaRDaKm', '5959751'), + (6, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndaRDaKm', '5959755'), + (6, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndaRDaKm', '5960055'), + (6, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndaRDaKm', '5961684'), + (6, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndaRDaKm', '5962132'), + (6, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'ndaRDaKm', '5962133'), + (6, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndaRDaKm', '5962134'), + (6, 1947, 'not_attending', '2023-02-26 00:00:13', '2025-12-17 19:47:09', 'ndaRDaKm', '5962233'), + (6, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndaRDaKm', '5962317'), + (6, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndaRDaKm', '5962318'), + (6, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndaRDaKm', '5965933'), + (6, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndaRDaKm', '5967014'), + (6, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'ndaRDaKm', '5972763'), + (6, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndaRDaKm', '5972815'), + (6, 1959, 'attending', '2023-03-07 06:30:13', '2025-12-17 19:46:57', 'ndaRDaKm', '5972829'), + (6, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndaRDaKm', '5974016'), + (6, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndaRDaKm', '5981515'), + (6, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndaRDaKm', '5993516'), + (6, 1972, 'attending', '2023-03-19 06:27:03', '2025-12-17 19:46:56', 'ndaRDaKm', '5993776'), + (6, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndaRDaKm', '5998939'), + (6, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndaRDaKm', '6028191'), + (6, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndaRDaKm', '6040066'), + (6, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndaRDaKm', '6042717'), + (6, 1985, 'attending', '2023-03-26 21:28:30', '2025-12-17 19:46:57', 'ndaRDaKm', '6043041'), + (6, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndaRDaKm', '6044838'), + (6, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndaRDaKm', '6044839'), + (6, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaRDaKm', '6045684'), + (6, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndaRDaKm', '6050104'), + (6, 1996, 'attending', '2023-04-03 02:17:03', '2025-12-17 19:46:58', 'ndaRDaKm', '6050667'), + (6, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndaRDaKm', '6053195'), + (6, 2006, 'attending', '2023-04-08 21:51:08', '2025-12-17 19:46:59', 'ndaRDaKm', '6053198'), + (6, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndaRDaKm', '6056085'), + (6, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndaRDaKm', '6056916'), + (6, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndaRDaKm', '6059290'), + (6, 2013, 'maybe', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndaRDaKm', '6060328'), + (6, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndaRDaKm', '6061037'), + (6, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndaRDaKm', '6061039'), + (6, 2017, 'not_attending', '2023-04-11 23:17:51', '2025-12-17 19:46:59', 'ndaRDaKm', '6061099'), + (6, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndaRDaKm', '6067245'), + (6, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndaRDaKm', '6068094'), + (6, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndaRDaKm', '6068252'), + (6, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndaRDaKm', '6068253'), + (6, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndaRDaKm', '6068254'), + (6, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'ndaRDaKm', '6068280'), + (6, 2032, 'attending', '2023-05-31 03:40:29', '2025-12-17 19:47:04', 'ndaRDaKm', '6068281'), + (6, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndaRDaKm', '6069093'), + (6, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndaRDaKm', '6072528'), + (6, 2043, 'attending', '2023-04-25 23:33:46', '2025-12-17 19:47:01', 'ndaRDaKm', '6073023'), + (6, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'ndaRDaKm', '6075556'), + (6, 2046, 'not_attending', '2023-05-06 01:36:27', '2025-12-17 19:47:02', 'ndaRDaKm', '6076020'), + (6, 2047, 'attending', '2023-05-07 22:16:22', '2025-12-17 19:47:02', 'ndaRDaKm', '6076027'), + (6, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndaRDaKm', '6079840'), + (6, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndaRDaKm', '6083398'), + (6, 2052, 'attending', '2023-05-05 22:29:06', '2025-12-17 19:47:02', 'ndaRDaKm', '6088220'), + (6, 2053, 'attending', '2023-05-06 05:08:13', '2025-12-17 19:47:02', 'ndaRDaKm', '6092644'), + (6, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndaRDaKm', '6093504'), + (6, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndaRDaKm', '6097414'), + (6, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndaRDaKm', '6097442'), + (6, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndaRDaKm', '6097684'), + (6, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndaRDaKm', '6098762'), + (6, 2064, 'attending', '2023-06-03 09:55:47', '2025-12-17 19:46:50', 'ndaRDaKm', '6099988'), + (6, 2065, 'attending', '2023-05-18 23:18:19', '2025-12-17 19:46:49', 'ndaRDaKm', '6101169'), + (6, 2066, 'attending', '2023-06-03 20:00:27', '2025-12-17 19:47:04', 'ndaRDaKm', '6101361'), + (6, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndaRDaKm', '6101362'), + (6, 2070, 'attending', '2023-05-15 17:21:42', '2025-12-17 19:47:03', 'ndaRDaKm', '6103752'), + (6, 2074, 'attending', '2023-05-17 22:49:44', '2025-12-17 19:47:03', 'ndaRDaKm', '6107312'), + (6, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndaRDaKm', '6107314'), + (6, 2086, 'attending', '2023-06-01 22:08:38', '2025-12-17 19:47:04', 'ndaRDaKm', '6119877'), + (6, 2087, 'attending', '2023-05-28 04:21:41', '2025-12-17 19:47:04', 'ndaRDaKm', '6120034'), + (6, 2090, 'attending', '2023-06-01 05:44:32', '2025-12-17 19:47:04', 'ndaRDaKm', '6127961'), + (6, 2091, 'maybe', '2023-06-03 20:02:00', '2025-12-17 19:47:04', 'ndaRDaKm', '6130657'), + (6, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ndaRDaKm', '6136733'), + (6, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndaRDaKm', '6137989'), + (6, 2105, 'attending', '2023-06-18 06:44:30', '2025-12-17 19:46:50', 'ndaRDaKm', '6149551'), + (6, 2106, 'attending', '2023-06-18 06:44:24', '2025-12-17 19:46:50', 'ndaRDaKm', '6150479'), + (6, 2107, 'maybe', '2023-06-18 07:04:59', '2025-12-17 19:46:50', 'ndaRDaKm', '6150480'), + (6, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndaRDaKm', '6150864'), + (6, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndaRDaKm', '6155491'), + (6, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndaRDaKm', '6164417'), + (6, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndaRDaKm', '6166388'), + (6, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndaRDaKm', '6176439'), + (6, 2124, 'attending', '2023-07-05 02:36:11', '2025-12-17 19:46:51', 'ndaRDaKm', '6176988'), + (6, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'ndaRDaKm', '6180853'), + (6, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndaRDaKm', '6182410'), + (6, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndaRDaKm', '6185812'), + (6, 2132, 'attending', '2023-07-09 02:34:29', '2025-12-17 19:46:52', 'ndaRDaKm', '6187015'), + (6, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndaRDaKm', '6187651'), + (6, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndaRDaKm', '6187963'), + (6, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndaRDaKm', '6187964'), + (6, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndaRDaKm', '6187966'), + (6, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndaRDaKm', '6187967'), + (6, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndaRDaKm', '6187969'), + (6, 2143, 'not_attending', '2023-07-08 19:55:18', '2025-12-17 19:46:51', 'ndaRDaKm', '6334348'), + (6, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndaRDaKm', '6334878'), + (6, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndaRDaKm', '6337236'), + (6, 2155, 'maybe', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndaRDaKm', '6337970'), + (6, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndaRDaKm', '6338308'), + (6, 2159, 'not_attending', '2023-07-17 18:53:10', '2025-12-17 19:46:53', 'ndaRDaKm', '6338355'), + (6, 2160, 'not_attending', '2023-07-26 23:03:07', '2025-12-17 19:46:54', 'ndaRDaKm', '6338358'), + (6, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'ndaRDaKm', '6340845'), + (6, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndaRDaKm', '6341710'), + (6, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndaRDaKm', '6342044'), + (6, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndaRDaKm', '6342298'), + (6, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndaRDaKm', '6343294'), + (6, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndaRDaKm', '6347034'), + (6, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndaRDaKm', '6347056'), + (6, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndaRDaKm', '6353830'), + (6, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndaRDaKm', '6353831'), + (6, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndaRDaKm', '6357867'), + (6, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndaRDaKm', '6358652'), + (6, 2195, 'attending', '2023-08-23 18:00:15', '2025-12-17 19:46:55', 'ndaRDaKm', '6359397'), + (6, 2197, 'maybe', '2023-09-15 07:12:50', '2025-12-17 19:46:44', 'ndaRDaKm', '6359399'), + (6, 2198, 'not_attending', '2023-09-21 04:09:36', '2025-12-17 19:46:45', 'ndaRDaKm', '6359400'), + (6, 2199, 'attending', '2023-08-10 23:11:26', '2025-12-17 19:46:55', 'ndaRDaKm', '6359849'), + (6, 2204, 'not_attending', '2023-08-15 23:01:17', '2025-12-17 19:46:55', 'ndaRDaKm', '6361542'), + (6, 2206, 'attending', '2023-08-09 19:18:53', '2025-12-17 19:46:55', 'ndaRDaKm', '6361659'), + (6, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndaRDaKm', '6361709'), + (6, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndaRDaKm', '6361710'), + (6, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndaRDaKm', '6361711'), + (6, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndaRDaKm', '6361712'), + (6, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndaRDaKm', '6361713'), + (6, 2215, 'maybe', '2023-08-11 20:45:39', '2025-12-17 19:46:55', 'ndaRDaKm', '6363479'), + (6, 2232, 'attending', '2023-08-23 18:00:10', '2025-12-17 19:46:55', 'ndaRDaKm', '6374818'), + (6, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndaRDaKm', '6382573'), + (6, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'ndaRDaKm', '6383149'), + (6, 2239, 'attending', '2023-09-02 17:39:18', '2025-12-17 19:46:56', 'ndaRDaKm', '6387592'), + (6, 2240, 'not_attending', '2023-09-02 21:30:50', '2025-12-17 19:46:56', 'ndaRDaKm', '6388603'), + (6, 2241, 'maybe', '2023-09-02 21:42:35', '2025-12-17 19:46:44', 'ndaRDaKm', '6388604'), + (6, 2247, 'attending', '2023-09-06 22:12:52', '2025-12-17 19:46:56', 'ndaRDaKm', '6394628'), + (6, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndaRDaKm', '6394629'), + (6, 2249, 'attending', '2023-09-20 21:19:48', '2025-12-17 19:46:45', 'ndaRDaKm', '6394630'), + (6, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndaRDaKm', '6394631'), + (6, 2253, 'not_attending', '2023-09-30 04:39:13', '2025-12-17 19:46:45', 'ndaRDaKm', '6401811'), + (6, 2258, 'attending', '2023-09-21 08:13:56', '2025-12-17 19:46:45', 'ndaRDaKm', '6419492'), + (6, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndaRDaKm', '6440863'), + (6, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndaRDaKm', '6445440'), + (6, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndaRDaKm', '6453951'), + (6, 2285, 'not_attending', '2023-10-27 18:26:27', '2025-12-17 19:46:47', 'ndaRDaKm', '6460929'), + (6, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndaRDaKm', '6461696'), + (6, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndaRDaKm', '6462129'), + (6, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndaRDaKm', '6463218'), + (6, 2299, 'attending', '2023-10-16 18:06:08', '2025-12-17 19:46:46', 'ndaRDaKm', '6472181'), + (6, 2303, 'not_attending', '2023-10-27 04:48:42', '2025-12-17 19:46:47', 'ndaRDaKm', '6482691'), + (6, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndaRDaKm', '6482693'), + (6, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ndaRDaKm', '6484200'), + (6, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndaRDaKm', '6484680'), + (6, 2315, 'attending', '2023-11-07 00:00:47', '2025-12-17 19:46:47', 'ndaRDaKm', '6493666'), + (6, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndaRDaKm', '6507741'), + (6, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndaRDaKm', '6514659'), + (6, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndaRDaKm', '6514660'), + (6, 2326, 'maybe', '2023-11-01 17:34:48', '2025-12-17 19:46:48', 'ndaRDaKm', '6514805'), + (6, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndaRDaKm', '6519103'), + (6, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndaRDaKm', '6535681'), + (6, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndaRDaKm', '6584747'), + (6, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndaRDaKm', '6587097'), + (6, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndaRDaKm', '6609022'), + (6, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndaRDaKm', '6632757'), + (6, 2375, 'attending', '2023-12-20 23:34:13', '2025-12-17 19:46:36', 'ndaRDaKm', '6634548'), + (6, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndaRDaKm', '6644187'), + (6, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndaRDaKm', '6648951'), + (6, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndaRDaKm', '6648952'), + (6, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndaRDaKm', '6655401'), + (6, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndaRDaKm', '6661585'), + (6, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndaRDaKm', '6661588'), + (6, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndaRDaKm', '6661589'), + (6, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndaRDaKm', '6699906'), + (6, 2409, 'attending', '2024-01-29 17:41:55', '2025-12-17 19:46:41', 'ndaRDaKm', '6699909'), + (6, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ndaRDaKm', '6699913'), + (6, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndaRDaKm', '6701109'), + (6, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndaRDaKm', '6705219'), + (6, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndaRDaKm', '6710153'), + (6, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndaRDaKm', '6711552'), + (6, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ndaRDaKm', '6711553'), + (6, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ndaRDaKm', '6722688'), + (6, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ndaRDaKm', '6730620'), + (6, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ndaRDaKm', '6740364'), + (6, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ndaRDaKm', '6743829'), + (6, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ndaRDaKm', '7030380'), + (6, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ndaRDaKm', '7033677'), + (6, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ndaRDaKm', '7044715'), + (6, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ndaRDaKm', '7050318'), + (6, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ndaRDaKm', '7050319'), + (6, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ndaRDaKm', '7050322'), + (6, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ndaRDaKm', '7057804'), + (6, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ndaRDaKm', '7072824'), + (6, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ndaRDaKm', '7074348'), + (6, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndaRDaKm', '7074364'), + (6, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ndaRDaKm', '7089267'), + (6, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ndaRDaKm', '7098747'), + (6, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ndaRDaKm', '7113468'), + (6, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ndaRDaKm', '7114856'), + (6, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ndaRDaKm', '7114951'), + (6, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ndaRDaKm', '7114955'), + (6, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ndaRDaKm', '7114956'), + (6, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndaRDaKm', '7114957'), + (6, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndaRDaKm', '7159484'), + (6, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndaRDaKm', '7178446'), + (6, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ndaRDaKm', '7220467'), + (6, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndaRDaKm', '7240354'), + (6, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndaRDaKm', '7251633'), + (6, 2626, 'attending', '2024-05-18 22:27:44', '2025-12-17 19:46:35', 'ndaRDaKm', '7264723'), + (6, 2627, 'maybe', '2024-05-21 16:53:06', '2025-12-17 19:46:35', 'ndaRDaKm', '7264724'), + (6, 2628, 'not_attending', '2024-05-21 16:53:11', '2025-12-17 19:46:36', 'ndaRDaKm', '7264725'), + (6, 2629, 'not_attending', '2024-05-21 16:53:15', '2025-12-17 19:46:28', 'ndaRDaKm', '7264726'), + (6, 2647, 'maybe', '2024-06-09 17:50:02', '2025-12-17 19:46:28', 'ndaRDaKm', '7282057'), + (6, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'ndaRDaKm', '7302674'), + (6, 2671, 'attending', '2024-06-11 14:19:14', '2025-12-17 19:46:28', 'ndaRDaKm', '7318256'), + (6, 2672, 'maybe', '2024-06-09 17:50:11', '2025-12-17 19:46:28', 'ndaRDaKm', '7318459'), + (6, 2678, 'attending', '2024-06-14 21:12:52', '2025-12-17 19:46:28', 'ndaRDaKm', '7319489'), + (6, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndaRDaKm', '7324073'), + (6, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndaRDaKm', '7324074'), + (6, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndaRDaKm', '7324075'), + (6, 2691, 'attending', '2024-07-08 14:55:53', '2025-12-17 19:46:30', 'ndaRDaKm', '7324076'), + (6, 2692, 'maybe', '2024-07-08 14:55:59', '2025-12-17 19:46:30', 'ndaRDaKm', '7324077'), + (6, 2693, 'attending', '2024-07-21 04:17:31', '2025-12-17 19:46:31', 'ndaRDaKm', '7324078'), + (6, 2694, 'attending', '2024-07-21 04:17:33', '2025-12-17 19:46:31', 'ndaRDaKm', '7324079'), + (6, 2695, 'attending', '2024-08-17 01:09:14', '2025-12-17 19:46:31', 'ndaRDaKm', '7324080'), + (6, 2696, 'attending', '2024-08-17 15:44:37', '2025-12-17 19:46:32', 'ndaRDaKm', '7324081'), + (6, 2697, 'attending', '2024-08-31 06:16:45', '2025-12-17 19:46:32', 'ndaRDaKm', '7324082'), + (6, 2698, 'not_attending', '2024-09-07 00:46:29', '2025-12-17 19:46:24', 'ndaRDaKm', '7324083'), + (6, 2699, 'maybe', '2024-06-12 17:20:01', '2025-12-17 19:46:28', 'ndaRDaKm', '7324385'), + (6, 2700, 'attending', '2024-06-13 20:47:25', '2025-12-17 19:46:28', 'ndaRDaKm', '7324388'), + (6, 2701, 'maybe', '2024-06-26 03:19:15', '2025-12-17 19:46:29', 'ndaRDaKm', '7324391'), + (6, 2706, 'maybe', '2024-06-19 04:41:14', '2025-12-17 19:46:28', 'ndaRDaKm', '7324947'), + (6, 2722, 'attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'ndaRDaKm', '7331457'), + (6, 2723, 'maybe', '2024-06-21 02:00:49', '2025-12-17 19:46:29', 'ndaRDaKm', '7332389'), + (6, 2724, 'maybe', '2024-06-26 03:19:06', '2025-12-17 19:46:29', 'ndaRDaKm', '7332562'), + (6, 2726, 'attending', '2024-06-19 19:18:18', '2025-12-17 19:46:29', 'ndaRDaKm', '7332853'), + (6, 2741, 'maybe', '2024-07-08 14:56:27', '2025-12-17 19:46:30', 'ndaRDaKm', '7344592'), + (6, 2747, 'maybe', '2024-07-17 19:08:33', '2025-12-17 19:46:30', 'ndaRDaKm', '7353587'), + (6, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'ndaRDaKm', '7356752'), + (6, 2755, 'maybe', '2024-07-10 16:56:37', '2025-12-17 19:46:29', 'ndaRDaKm', '7357808'), + (6, 2766, 'attending', '2024-07-18 02:08:58', '2025-12-17 19:46:30', 'ndaRDaKm', '7363643'), + (6, 2767, 'maybe', '2024-07-18 02:08:56', '2025-12-17 19:46:30', 'ndaRDaKm', '7364726'), + (6, 2768, 'attending', '2024-07-18 02:07:00', '2025-12-17 19:46:30', 'ndaRDaKm', '7366031'), + (6, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndaRDaKm', '7368606'), + (6, 2782, 'maybe', '2024-07-28 15:54:06', '2025-12-17 19:46:30', 'ndaRDaKm', '7376725'), + (6, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndaRDaKm', '7397462'), + (6, 2802, 'attending', '2024-09-02 01:55:21', '2025-12-17 19:46:32', 'ndaRDaKm', '7397463'), + (6, 2806, 'maybe', '2024-09-14 16:17:20', '2025-12-17 19:46:25', 'ndaRDaKm', '7404888'), + (6, 2808, 'attending', '2024-08-31 06:16:55', '2025-12-17 19:46:32', 'ndaRDaKm', '7412860'), + (6, 2821, 'maybe', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndaRDaKm', '7424275'), + (6, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'ndaRDaKm', '7424276'), + (6, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndaRDaKm', '7432751'), + (6, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndaRDaKm', '7432752'), + (6, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndaRDaKm', '7432753'), + (6, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndaRDaKm', '7432754'), + (6, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndaRDaKm', '7432755'), + (6, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndaRDaKm', '7432756'), + (6, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndaRDaKm', '7432758'), + (6, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndaRDaKm', '7432759'), + (6, 2832, 'maybe', '2024-09-11 16:53:03', '2025-12-17 19:46:24', 'ndaRDaKm', '7433324'), + (6, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndaRDaKm', '7433834'), + (6, 2834, 'maybe', '2024-09-12 21:29:06', '2025-12-17 19:46:25', 'ndaRDaKm', '7433852'), + (6, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndaRDaKm', '7470197'), + (6, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndaRDaKm', '7685613'), + (6, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndaRDaKm', '7688194'), + (6, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndaRDaKm', '7688196'), + (6, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndaRDaKm', '7688289'), + (6, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'ndaRDaKm', '7692763'), + (6, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndaRDaKm', '7697552'), + (6, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndaRDaKm', '7699878'), + (6, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndaRDaKm', '7704043'), + (6, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndaRDaKm', '7712467'), + (6, 2925, 'attending', '2024-12-06 02:12:59', '2025-12-17 19:46:21', 'ndaRDaKm', '7713584'), + (6, 2926, 'attending', '2024-12-03 17:38:46', '2025-12-17 19:46:21', 'ndaRDaKm', '7713585'), + (6, 2927, 'attending', '2024-12-06 02:13:01', '2025-12-17 19:46:22', 'ndaRDaKm', '7713586'), + (6, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndaRDaKm', '7738518'), + (6, 2962, 'not_attending', '2024-12-25 12:51:13', '2025-12-17 19:46:22', 'ndaRDaKm', '7750632'), + (6, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndaRDaKm', '7750636'), + (6, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndaRDaKm', '7796540'), + (6, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndaRDaKm', '7796541'), + (6, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndaRDaKm', '7796542'), + (6, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndaRDaKm', '7825913'), + (6, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndaRDaKm', '7826209'), + (6, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndaRDaKm', '7834742'), + (6, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'ndaRDaKm', '7842108'), + (6, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndaRDaKm', '7842902'), + (6, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndaRDaKm', '7842903'), + (6, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndaRDaKm', '7842904'), + (6, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndaRDaKm', '7842905'), + (6, 3003, 'attending', '2025-02-19 15:28:26', '2025-12-17 19:46:24', 'ndaRDaKm', '7854589'), + (6, 3005, 'maybe', '2025-02-19 15:28:09', '2025-12-17 19:46:24', 'ndaRDaKm', '7854604'), + (6, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndaRDaKm', '7855719'), + (6, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndaRDaKm', '7860683'), + (6, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndaRDaKm', '7860684'), + (6, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndaRDaKm', '7866095'), + (6, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndaRDaKm', '7869170'), + (6, 3014, 'attending', '2025-04-05 18:42:02', '2025-12-17 19:46:20', 'ndaRDaKm', '7869185'), + (6, 3015, 'attending', '2025-04-05 18:42:12', '2025-12-17 19:46:20', 'ndaRDaKm', '7869186'), + (6, 3016, 'attending', '2025-04-05 18:42:10', '2025-12-17 19:46:20', 'ndaRDaKm', '7869187'), + (6, 3017, 'not_attending', '2025-03-12 20:41:12', '2025-12-17 19:46:19', 'ndaRDaKm', '7869188'), + (6, 3018, 'attending', '2025-04-05 18:42:04', '2025-12-17 19:46:20', 'ndaRDaKm', '7869189'), + (6, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndaRDaKm', '7869201'), + (6, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndaRDaKm', '7877465'), + (6, 3049, 'maybe', '2025-03-21 14:57:35', '2025-12-17 19:46:19', 'ndaRDaKm', '7883215'), + (6, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndaRDaKm', '7888250'), + (6, 3059, 'attending', '2025-03-26 11:29:19', '2025-12-17 19:46:19', 'ndaRDaKm', '7891868'), + (6, 3072, 'maybe', '2025-04-03 12:00:44', '2025-12-17 19:46:19', 'ndaRDaKm', '7895449'), + (6, 3084, 'maybe', '2025-04-08 23:48:58', '2025-12-17 19:46:20', 'ndaRDaKm', '7903687'), + (6, 3088, 'attending', '2025-06-09 13:53:07', '2025-12-17 19:46:15', 'ndaRDaKm', '7904777'), + (6, 3090, 'maybe', '2025-04-17 22:31:28', '2025-12-17 19:46:20', 'ndaRDaKm', '7914315'), + (6, 3093, 'maybe', '2025-04-22 20:47:29', '2025-12-17 19:46:20', 'ndaRDaKm', '8342248'), + (6, 3094, 'maybe', '2025-04-28 14:50:44', '2025-12-17 19:46:21', 'ndaRDaKm', '8342292'), + (6, 3095, 'attending', '2025-04-29 17:49:44', '2025-12-17 19:46:20', 'ndaRDaKm', '8342293'), + (6, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndaRDaKm', '8349164'), + (6, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndaRDaKm', '8349545'), + (6, 3111, 'attending', '2025-04-29 17:48:08', '2025-12-17 19:46:20', 'ndaRDaKm', '8353494'), + (6, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ndaRDaKm', '8353584'), + (6, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndaRDaKm', '8368028'), + (6, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndaRDaKm', '8368029'), + (6, 3133, 'attending', '2025-05-31 20:17:01', '2025-12-17 19:46:14', 'ndaRDaKm', '8368030'), + (6, 3136, 'maybe', '2025-05-21 11:42:52', '2025-12-17 19:46:21', 'ndaRDaKm', '8374152'), + (6, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndaRDaKm', '8388462'), + (6, 3150, 'maybe', '2025-06-19 22:07:37', '2025-12-17 19:46:15', 'ndaRDaKm', '8393174'), + (6, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndaRDaKm', '8400273'), + (6, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ndaRDaKm', '8400274'), + (6, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndaRDaKm', '8400275'), + (6, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ndaRDaKm', '8400276'), + (6, 3161, 'maybe', '2025-06-09 13:53:19', '2025-12-17 19:46:15', 'ndaRDaKm', '8401412'), + (6, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndaRDaKm', '8404977'), + (6, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndaRDaKm', '8430783'), + (6, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndaRDaKm', '8430784'), + (6, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndaRDaKm', '8430799'), + (6, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndaRDaKm', '8430800'), + (6, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndaRDaKm', '8430801'), + (6, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndaRDaKm', '8438709'), + (6, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndaRDaKm', '8457738'), + (6, 3195, 'attending', '2025-07-18 00:18:21', '2025-12-17 19:46:17', 'ndaRDaKm', '8458118'), + (6, 3196, 'attending', '2025-07-18 00:22:43', '2025-12-17 19:46:17', 'ndaRDaKm', '8458543'), + (6, 3198, 'attending', '2025-08-17 22:00:23', '2025-12-17 19:46:18', 'ndaRDaKm', '8459268'), + (6, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndaRDaKm', '8459566'), + (6, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndaRDaKm', '8459567'), + (6, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndaRDaKm', '8461032'), + (6, 3210, 'attending', '2025-08-25 13:46:08', '2025-12-17 19:46:18', 'ndaRDaKm', '8471162'), + (6, 3213, 'maybe', '2025-08-11 21:39:18', '2025-12-17 19:46:17', 'ndaRDaKm', '8477876'), + (6, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndaRDaKm', '8477877'), + (6, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'ndaRDaKm', '8485688'), + (6, 3235, 'maybe', '2025-08-18 22:29:28', '2025-12-17 19:46:18', 'ndaRDaKm', '8490587'), + (6, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ndaRDaKm', '8493552'), + (6, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ndaRDaKm', '8493553'), + (6, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ndaRDaKm', '8493554'), + (6, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ndaRDaKm', '8493555'), + (6, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ndaRDaKm', '8493556'), + (6, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ndaRDaKm', '8493557'), + (6, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ndaRDaKm', '8493558'), + (6, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ndaRDaKm', '8493559'), + (6, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ndaRDaKm', '8493560'), + (6, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'ndaRDaKm', '8493561'), + (6, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ndaRDaKm', '8493572'), + (6, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ndaRDaKm', '8540725'), + (6, 3289, 'attending', '2025-10-22 23:47:51', '2025-12-17 19:46:14', 'ndaRDaKm', '8542939'), + (6, 3305, 'maybe', '2025-12-06 13:02:22', '2025-12-17 19:46:11', 'ndaRDaKm', '8550025'), + (6, 3307, 'maybe', '2025-12-19 02:08:35', '2025-12-19 02:08:35', NULL, NULL), + (6, 3310, 'attending', '2025-12-01 23:05:54', '2025-12-17 19:46:11', 'ndaRDaKm', '8550410'), + (6, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndaRDaKm', '8555421'), + (7, 1543, 'not_attending', '2023-07-21 15:32:44', '2025-12-17 19:47:21', 'dOxojqLm', '5454516'), + (7, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOxojqLm', '5900202'), + (7, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOxojqLm', '5900203'), + (7, 1917, 'not_attending', '2023-03-12 16:07:19', '2025-12-17 19:47:10', 'dOxojqLm', '5910528'), + (7, 1943, 'attending', '2023-03-11 17:55:54', '2025-12-17 19:47:10', 'dOxojqLm', '5962091'), + (7, 1946, 'not_attending', '2023-03-15 21:30:47', '2025-12-17 19:46:56', 'dOxojqLm', '5962134'), + (7, 1948, 'maybe', '2023-03-15 21:31:50', '2025-12-17 19:46:57', 'dOxojqLm', '5962317'), + (7, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dOxojqLm', '5962318'), + (7, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dOxojqLm', '5965933'), + (7, 1966, 'attending', '2023-03-11 17:56:03', '2025-12-17 19:47:10', 'dOxojqLm', '5983042'), + (7, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOxojqLm', '5993516'), + (7, 1974, 'maybe', '2023-03-21 14:20:50', '2025-12-17 19:46:57', 'dOxojqLm', '5993778'), + (7, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOxojqLm', '5998939'), + (7, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOxojqLm', '6028191'), + (7, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOxojqLm', '6040066'), + (7, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOxojqLm', '6042717'), + (7, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOxojqLm', '6044838'), + (7, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOxojqLm', '6044839'), + (7, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOxojqLm', '6045684'), + (7, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dOxojqLm', '6050104'), + (7, 1996, 'attending', '2023-04-02 21:11:03', '2025-12-17 19:46:58', 'dOxojqLm', '6050667'), + (7, 1998, 'not_attending', '2023-04-09 13:49:05', '2025-12-17 19:46:59', 'dOxojqLm', '6052056'), + (7, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOxojqLm', '6053195'), + (7, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOxojqLm', '6053198'), + (7, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOxojqLm', '6056085'), + (7, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOxojqLm', '6056916'), + (7, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOxojqLm', '6059290'), + (7, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOxojqLm', '6060328'), + (7, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOxojqLm', '6061037'), + (7, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOxojqLm', '6061039'), + (7, 2020, 'not_attending', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'dOxojqLm', '6065813'), + (7, 2021, 'attending', '2023-04-15 19:13:58', '2025-12-17 19:47:00', 'dOxojqLm', '6066316'), + (7, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOxojqLm', '6067245'), + (7, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOxojqLm', '6068094'), + (7, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOxojqLm', '6068252'), + (7, 2029, 'maybe', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOxojqLm', '6068253'), + (7, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOxojqLm', '6068254'), + (7, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dOxojqLm', '6068280'), + (7, 2032, 'attending', '2023-05-26 22:26:30', '2025-12-17 19:47:04', 'dOxojqLm', '6068281'), + (7, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOxojqLm', '6069093'), + (7, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dOxojqLm', '6072528'), + (7, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dOxojqLm', '6075556'), + (7, 2046, 'maybe', '2023-05-04 00:14:38', '2025-12-17 19:47:02', 'dOxojqLm', '6076020'), + (7, 2047, 'maybe', '2023-05-03 14:32:02', '2025-12-17 19:47:02', 'dOxojqLm', '6076027'), + (7, 2049, 'attending', '2023-04-29 17:38:54', '2025-12-17 19:47:01', 'dOxojqLm', '6079840'), + (7, 2050, 'attending', '2023-05-04 00:14:00', '2025-12-17 19:47:02', 'dOxojqLm', '6080489'), + (7, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOxojqLm', '6083398'), + (7, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOxojqLm', '6093504'), + (7, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOxojqLm', '6097414'), + (7, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOxojqLm', '6097442'), + (7, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOxojqLm', '6097684'), + (7, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOxojqLm', '6098762'), + (7, 2064, 'attending', '2023-06-08 21:07:36', '2025-12-17 19:46:50', 'dOxojqLm', '6099988'), + (7, 2065, 'attending', '2023-06-08 21:07:27', '2025-12-17 19:46:49', 'dOxojqLm', '6101169'), + (7, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOxojqLm', '6101361'), + (7, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOxojqLm', '6101362'), + (7, 2068, 'attending', '2023-05-13 17:55:44', '2025-12-17 19:47:03', 'dOxojqLm', '6102837'), + (7, 2069, 'maybe', '2023-05-14 21:46:22', '2025-12-17 19:47:03', 'dOxojqLm', '6103750'), + (7, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOxojqLm', '6107314'), + (7, 2078, 'maybe', '2023-05-22 21:21:45', '2025-12-17 19:47:03', 'dOxojqLm', '6114163'), + (7, 2080, 'maybe', '2023-05-22 22:46:38', '2025-12-17 19:47:04', 'dOxojqLm', '6114677'), + (7, 2083, 'maybe', '2023-05-22 22:50:28', '2025-12-17 19:47:04', 'dOxojqLm', '6115629'), + (7, 2086, 'attending', '2023-05-26 21:23:26', '2025-12-17 19:47:04', 'dOxojqLm', '6119877'), + (7, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOxojqLm', '6120034'), + (7, 2093, 'maybe', '2023-06-05 01:25:28', '2025-12-17 19:47:04', 'dOxojqLm', '6132598'), + (7, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dOxojqLm', '6136733'), + (7, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOxojqLm', '6137989'), + (7, 2097, 'attending', '2023-06-08 01:12:41', '2025-12-17 19:47:04', 'dOxojqLm', '6139059'), + (7, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOxojqLm', '6150864'), + (7, 2109, 'attending', '2023-06-19 19:22:43', '2025-12-17 19:46:50', 'dOxojqLm', '6152821'), + (7, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOxojqLm', '6155491'), + (7, 2111, 'maybe', '2023-06-19 19:22:50', '2025-12-17 19:46:50', 'dOxojqLm', '6156121'), + (7, 2114, 'maybe', '2023-06-25 14:45:31', '2025-12-17 19:46:50', 'dOxojqLm', '6158648'), + (7, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOxojqLm', '6164417'), + (7, 2119, 'maybe', '2023-06-26 14:55:21', '2025-12-17 19:46:50', 'dOxojqLm', '6165461'), + (7, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOxojqLm', '6166388'), + (7, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOxojqLm', '6176439'), + (7, 2122, 'maybe', '2023-06-28 20:12:10', '2025-12-17 19:46:51', 'dOxojqLm', '6176476'), + (7, 2123, 'attending', '2023-06-28 20:12:01', '2025-12-17 19:46:50', 'dOxojqLm', '6176502'), + (7, 2124, 'maybe', '2023-06-29 20:33:56', '2025-12-17 19:46:51', 'dOxojqLm', '6176988'), + (7, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOxojqLm', '6182410'), + (7, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOxojqLm', '6185812'), + (7, 2132, 'maybe', '2023-07-06 11:24:09', '2025-12-17 19:46:52', 'dOxojqLm', '6187015'), + (7, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOxojqLm', '6187651'), + (7, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOxojqLm', '6187963'), + (7, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOxojqLm', '6187964'), + (7, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOxojqLm', '6187966'), + (7, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOxojqLm', '6187967'), + (7, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOxojqLm', '6187969'), + (7, 2142, 'attending', '2023-07-09 13:24:12', '2025-12-17 19:46:52', 'dOxojqLm', '6333850'), + (7, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOxojqLm', '6334878'), + (7, 2147, 'maybe', '2023-07-12 19:37:05', '2025-12-17 19:46:52', 'dOxojqLm', '6335666'), + (7, 2151, 'maybe', '2023-07-09 23:36:07', '2025-12-17 19:46:52', 'dOxojqLm', '6335700'), + (7, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOxojqLm', '6337236'), + (7, 2154, 'attending', '2023-07-11 23:20:18', '2025-12-17 19:46:52', 'dOxojqLm', '6337689'), + (7, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOxojqLm', '6337970'), + (7, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOxojqLm', '6338308'), + (7, 2157, 'not_attending', '2023-07-12 21:54:30', '2025-12-17 19:46:52', 'dOxojqLm', '6338342'), + (7, 2158, 'not_attending', '2023-07-13 19:26:34', '2025-12-17 19:46:53', 'dOxojqLm', '6338353'), + (7, 2159, 'attending', '2023-07-13 19:26:23', '2025-12-17 19:46:53', 'dOxojqLm', '6338355'), + (7, 2160, 'attending', '2023-07-13 19:26:25', '2025-12-17 19:46:54', 'dOxojqLm', '6338358'), + (7, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOxojqLm', '6341710'), + (7, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOxojqLm', '6342044'), + (7, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOxojqLm', '6342298'), + (7, 2171, 'attending', '2023-07-18 01:30:02', '2025-12-17 19:46:54', 'dOxojqLm', '6342328'), + (7, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOxojqLm', '6343294'), + (7, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOxojqLm', '6347034'), + (7, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOxojqLm', '6347056'), + (7, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOxojqLm', '6353830'), + (7, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOxojqLm', '6353831'), + (7, 2189, 'maybe', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOxojqLm', '6357867'), + (7, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOxojqLm', '6358652'), + (7, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dOxojqLm', '6358668'), + (7, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dOxojqLm', '6358669'), + (7, 2204, 'attending', '2023-08-09 18:33:30', '2025-12-17 19:46:55', 'dOxojqLm', '6361542'), + (7, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOxojqLm', '6361709'), + (7, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dOxojqLm', '6361710'), + (7, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOxojqLm', '6361711'), + (7, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOxojqLm', '6361712'), + (7, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOxojqLm', '6361713'), + (7, 2213, 'attending', '2023-08-15 22:42:36', '2025-12-17 19:46:55', 'dOxojqLm', '6362935'), + (7, 2214, 'maybe', '2023-08-12 23:33:30', '2025-12-17 19:46:55', 'dOxojqLm', '6363218'), + (7, 2221, 'maybe', '2023-08-15 22:43:02', '2025-12-17 19:46:55', 'dOxojqLm', '6367357'), + (7, 2222, 'maybe', '2023-08-15 22:43:05', '2025-12-17 19:46:55', 'dOxojqLm', '6367358'), + (7, 2225, 'attending', '2023-08-20 11:28:28', '2025-12-17 19:46:55', 'dOxojqLm', '6368434'), + (7, 2232, 'attending', '2023-08-22 23:14:49', '2025-12-17 19:46:55', 'dOxojqLm', '6374818'), + (7, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOxojqLm', '6382573'), + (7, 2236, 'attending', '2023-08-25 17:20:48', '2025-12-17 19:46:55', 'dOxojqLm', '6382618'), + (7, 2239, 'attending', '2023-08-31 17:58:31', '2025-12-17 19:46:56', 'dOxojqLm', '6387592'), + (7, 2240, 'attending', '2023-09-09 22:07:45', '2025-12-17 19:46:56', 'dOxojqLm', '6388603'), + (7, 2241, 'attending', '2023-09-09 22:07:50', '2025-12-17 19:46:44', 'dOxojqLm', '6388604'), + (7, 2242, 'attending', '2023-09-23 00:32:36', '2025-12-17 19:46:45', 'dOxojqLm', '6388606'), + (7, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOxojqLm', '6394629'), + (7, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOxojqLm', '6394631'), + (7, 2253, 'attending', '2023-09-16 22:36:21', '2025-12-17 19:46:45', 'dOxojqLm', '6401811'), + (7, 2255, 'attending', '2023-09-12 23:14:07', '2025-12-17 19:46:45', 'dOxojqLm', '6403562'), + (7, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOxojqLm', '6440863'), + (7, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOxojqLm', '6445440'), + (7, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOxojqLm', '6453951'), + (7, 2277, 'attending', '2023-10-08 18:44:13', '2025-12-17 19:46:46', 'dOxojqLm', '6455211'), + (7, 2279, 'attending', '2023-10-08 18:56:47', '2025-12-17 19:46:46', 'dOxojqLm', '6455460'), + (7, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOxojqLm', '6461696'), + (7, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOxojqLm', '6462129'), + (7, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOxojqLm', '6463218'), + (7, 2295, 'attending', '2023-10-15 18:59:53', '2025-12-17 19:46:46', 'dOxojqLm', '6467832'), + (7, 2299, 'attending', '2023-10-20 15:32:35', '2025-12-17 19:46:46', 'dOxojqLm', '6472181'), + (7, 2303, 'attending', '2023-10-22 15:22:25', '2025-12-17 19:46:47', 'dOxojqLm', '6482691'), + (7, 2304, 'attending', '2023-10-27 21:30:22', '2025-12-17 19:46:47', 'dOxojqLm', '6482693'), + (7, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dOxojqLm', '6484200'), + (7, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOxojqLm', '6484680'), + (7, 2308, 'attending', '2023-10-23 13:44:36', '2025-12-17 19:46:47', 'dOxojqLm', '6485393'), + (7, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOxojqLm', '6507741'), + (7, 2322, 'attending', '2023-11-09 23:13:12', '2025-12-17 19:46:48', 'dOxojqLm', '6514659'), + (7, 2323, 'not_attending', '2023-11-19 18:08:27', '2025-12-17 19:46:49', 'dOxojqLm', '6514660'), + (7, 2324, 'attending', '2023-11-19 18:08:30', '2025-12-17 19:46:49', 'dOxojqLm', '6514662'), + (7, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOxojqLm', '6519103'), + (7, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOxojqLm', '6535681'), + (7, 2338, 'maybe', '2023-11-15 02:24:50', '2025-12-17 19:46:48', 'dOxojqLm', '6538868'), + (7, 2339, 'not_attending', '2023-11-09 23:13:39', '2025-12-17 19:46:47', 'dOxojqLm', '6539128'), + (7, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOxojqLm', '6584747'), + (7, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOxojqLm', '6587097'), + (7, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOxojqLm', '6609022'), + (7, 2372, 'not_attending', '2023-12-15 15:23:06', '2025-12-17 19:46:36', 'dOxojqLm', '6628243'), + (7, 2373, 'attending', '2023-12-26 19:36:41', '2025-12-17 19:46:38', 'dOxojqLm', '6632678'), + (7, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOxojqLm', '6632757'), + (7, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOxojqLm', '6644187'), + (7, 2380, 'attending', '2023-12-31 13:55:41', '2025-12-17 19:46:37', 'dOxojqLm', '6645105'), + (7, 2385, 'maybe', '2024-01-08 17:57:39', '2025-12-17 19:46:37', 'dOxojqLm', '6648943'), + (7, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOxojqLm', '6648951'), + (7, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOxojqLm', '6648952'), + (7, 2389, 'maybe', '2024-01-10 23:36:35', '2025-12-17 19:46:40', 'dOxojqLm', '6651094'), + (7, 2393, 'not_attending', '2024-01-13 23:06:37', '2025-12-17 19:46:38', 'dOxojqLm', '6654468'), + (7, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOxojqLm', '6655401'), + (7, 2397, 'maybe', '2024-01-08 17:57:24', '2025-12-17 19:46:37', 'dOxojqLm', '6657379'), + (7, 2399, 'not_attending', '2024-01-08 17:57:15', '2025-12-17 19:46:38', 'dOxojqLm', '6657583'), + (7, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOxojqLm', '6661585'), + (7, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOxojqLm', '6661588'), + (7, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOxojqLm', '6661589'), + (7, 2405, 'maybe', '2024-01-13 23:07:02', '2025-12-17 19:46:38', 'dOxojqLm', '6667332'), + (7, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOxojqLm', '6699906'), + (7, 2408, 'attending', '2024-01-15 03:51:54', '2025-12-17 19:46:40', 'dOxojqLm', '6699907'), + (7, 2409, 'not_attending', '2024-01-15 03:51:56', '2025-12-17 19:46:41', 'dOxojqLm', '6699909'), + (7, 2410, 'attending', '2024-01-15 03:51:58', '2025-12-17 19:46:41', 'dOxojqLm', '6699911'), + (7, 2411, 'attending', '2024-02-11 04:13:57', '2025-12-17 19:46:41', 'dOxojqLm', '6699913'), + (7, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOxojqLm', '6701109'), + (7, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dOxojqLm', '6704561'), + (7, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOxojqLm', '6705219'), + (7, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dOxojqLm', '6708410'), + (7, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOxojqLm', '6710153'), + (7, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOxojqLm', '6711552'), + (7, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOxojqLm', '6711553'), + (7, 2431, 'attending', '2024-01-23 21:27:42', '2025-12-17 19:46:41', 'dOxojqLm', '6712394'), + (7, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOxojqLm', '6722688'), + (7, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOxojqLm', '6730620'), + (7, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOxojqLm', '6730642'), + (7, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOxojqLm', '6740364'), + (7, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOxojqLm', '6743829'), + (7, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOxojqLm', '7030380'), + (7, 2471, 'attending', '2024-02-23 00:40:30', '2025-12-17 19:46:42', 'dOxojqLm', '7032425'), + (7, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOxojqLm', '7033677'), + (7, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOxojqLm', '7035415'), + (7, 2479, 'attending', '2024-02-23 00:41:10', '2025-12-17 19:46:43', 'dOxojqLm', '7037009'), + (7, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOxojqLm', '7044715'), + (7, 2487, 'attending', '2024-03-01 20:50:43', '2025-12-17 19:46:33', 'dOxojqLm', '7049279'), + (7, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOxojqLm', '7050318'), + (7, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOxojqLm', '7050319'), + (7, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOxojqLm', '7050322'), + (7, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOxojqLm', '7057804'), + (7, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOxojqLm', '7072824'), + (7, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOxojqLm', '7074348'), + (7, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dOxojqLm', '7074364'), + (7, 2537, 'maybe', '2024-03-23 14:43:14', '2025-12-17 19:46:33', 'dOxojqLm', '7085484'), + (7, 2539, 'maybe', '2024-03-31 17:05:25', '2025-12-17 19:46:33', 'dOxojqLm', '7085486'), + (7, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOxojqLm', '7089267'), + (7, 2544, 'maybe', '2024-03-23 14:43:41', '2025-12-17 19:46:33', 'dOxojqLm', '7096941'), + (7, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOxojqLm', '7098747'), + (7, 2553, 'maybe', '2024-03-30 02:50:15', '2025-12-17 19:46:33', 'dOxojqLm', '7113468'), + (7, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOxojqLm', '7114856'), + (7, 2555, 'attending', '2024-03-31 17:05:38', '2025-12-17 19:46:33', 'dOxojqLm', '7114951'), + (7, 2556, 'attending', '2024-03-31 17:05:46', '2025-12-17 19:46:34', 'dOxojqLm', '7114955'), + (7, 2557, 'attending', '2024-03-31 17:05:48', '2025-12-17 19:46:34', 'dOxojqLm', '7114956'), + (7, 2558, 'maybe', '2024-03-31 17:05:49', '2025-12-17 19:46:35', 'dOxojqLm', '7114957'), + (7, 2566, 'attending', '2024-04-07 14:39:13', '2025-12-17 19:46:34', 'dOxojqLm', '7140664'), + (7, 2567, 'attending', '2024-04-04 01:21:07', '2025-12-17 19:46:33', 'dOxojqLm', '7144962'), + (7, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOxojqLm', '7153615'), + (7, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOxojqLm', '7159484'), + (7, 2573, 'maybe', '2024-04-14 20:58:26', '2025-12-17 19:46:34', 'dOxojqLm', '7160612'), + (7, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOxojqLm', '7178446'), + (7, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOxojqLm', '7220467'), + (7, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dOxojqLm', '7240354'), + (7, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOxojqLm', '7251633'), + (7, 2626, 'maybe', '2024-05-13 17:29:53', '2025-12-17 19:46:35', 'dOxojqLm', '7264723'), + (7, 2628, 'attending', '2024-05-25 16:46:55', '2025-12-17 19:46:36', 'dOxojqLm', '7264725'), + (7, 2629, 'not_attending', '2024-06-08 16:56:27', '2025-12-17 19:46:28', 'dOxojqLm', '7264726'), + (7, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOxojqLm', '7302674'), + (7, 2678, 'attending', '2024-06-15 18:49:26', '2025-12-17 19:46:28', 'dOxojqLm', '7319489'), + (7, 2686, 'attending', '2024-06-11 13:17:04', '2025-12-17 19:46:29', 'dOxojqLm', '7323802'), + (7, 2688, 'attending', '2024-06-27 22:05:26', '2025-12-17 19:46:29', 'dOxojqLm', '7324073'), + (7, 2689, 'attending', '2024-06-27 22:05:31', '2025-12-17 19:46:29', 'dOxojqLm', '7324074'), + (7, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dOxojqLm', '7324075'), + (7, 2691, 'attending', '2024-07-08 21:06:08', '2025-12-17 19:46:30', 'dOxojqLm', '7324076'), + (7, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dOxojqLm', '7324078'), + (7, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dOxojqLm', '7324082'), + (7, 2710, 'attending', '2024-06-16 15:51:24', '2025-12-17 19:46:28', 'dOxojqLm', '7325108'), + (7, 2717, 'maybe', '2024-06-18 23:32:23', '2025-12-17 19:46:29', 'dOxojqLm', '7329149'), + (7, 2721, 'not_attending', '2024-06-18 22:59:31', '2025-12-17 19:46:29', 'dOxojqLm', '7331456'), + (7, 2722, 'attending', '2024-07-08 21:06:36', '2025-12-17 19:46:29', 'dOxojqLm', '7331457'), + (7, 2753, 'not_attending', '2024-07-13 22:20:30', '2025-12-17 19:46:30', 'dOxojqLm', '7355538'), + (7, 2761, 'attending', '2024-07-16 20:07:29', '2025-12-17 19:46:30', 'dOxojqLm', '7363412'), + (7, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dOxojqLm', '7363643'), + (7, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dOxojqLm', '7368606'), + (7, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dOxojqLm', '7397462'), + (7, 2821, 'maybe', '2024-09-18 21:41:46', '2025-12-17 19:46:26', 'dOxojqLm', '7424275'), + (7, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dOxojqLm', '7424276'), + (7, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dOxojqLm', '7432751'), + (7, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dOxojqLm', '7432752'), + (7, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dOxojqLm', '7432753'), + (7, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dOxojqLm', '7432754'), + (7, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dOxojqLm', '7432755'), + (7, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dOxojqLm', '7432756'), + (7, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOxojqLm', '7432758'), + (7, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dOxojqLm', '7432759'), + (7, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dOxojqLm', '7433834'), + (7, 2843, 'attending', '2024-09-23 22:50:13', '2025-12-17 19:46:25', 'dOxojqLm', '7450219'), + (7, 2850, 'maybe', '2024-09-29 01:54:46', '2025-12-17 19:46:25', 'dOxojqLm', '7457153'), + (7, 2860, 'maybe', '2024-10-05 22:02:04', '2025-12-17 19:46:26', 'dOxojqLm', '7469393'), + (7, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dOxojqLm', '7470197'), + (7, 2868, 'attending', '2024-10-05 22:01:36', '2025-12-17 19:46:26', 'dOxojqLm', '7474506'), + (7, 2875, 'maybe', '2024-10-09 21:25:34', '2025-12-17 19:46:26', 'dOxojqLm', '7482241'), + (7, 2885, 'attending', '2024-10-17 21:25:03', '2025-12-17 19:46:26', 'dOxojqLm', '7649944'), + (7, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dOxojqLm', '7685613'), + (7, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dOxojqLm', '7688194'), + (7, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dOxojqLm', '7688196'), + (7, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dOxojqLm', '7688289'), + (7, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dOxojqLm', '7692763'), + (7, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dOxojqLm', '7697552'), + (7, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dOxojqLm', '7699878'), + (7, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dOxojqLm', '7704043'), + (7, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dOxojqLm', '7712467'), + (7, 2925, 'maybe', '2024-12-14 23:41:02', '2025-12-17 19:46:21', 'dOxojqLm', '7713584'), + (7, 2926, 'not_attending', '2024-11-29 20:43:39', '2025-12-17 19:46:21', 'dOxojqLm', '7713585'), + (7, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dOxojqLm', '7713586'), + (7, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dOxojqLm', '7738518'), + (7, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dOxojqLm', '7750636'), + (7, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dOxojqLm', '7796540'), + (7, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dOxojqLm', '7796541'), + (7, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dOxojqLm', '7796542'), + (7, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dOxojqLm', '7825913'), + (7, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dOxojqLm', '7825920'), + (7, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dOxojqLm', '7826209'), + (7, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dOxojqLm', '7834742'), + (7, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dOxojqLm', '7842108'), + (7, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dOxojqLm', '7842902'), + (7, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dOxojqLm', '7842903'), + (7, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dOxojqLm', '7842904'), + (7, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dOxojqLm', '7842905'), + (7, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dOxojqLm', '7855719'), + (7, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dOxojqLm', '7860683'), + (7, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dOxojqLm', '7860684'), + (7, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dOxojqLm', '7866095'), + (7, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dOxojqLm', '7869170'), + (7, 3014, 'attending', '2025-03-22 21:05:38', '2025-12-17 19:46:19', 'dOxojqLm', '7869185'), + (7, 3015, 'maybe', '2025-04-05 21:54:41', '2025-12-17 19:46:20', 'dOxojqLm', '7869186'), + (7, 3016, 'attending', '2025-04-05 21:54:31', '2025-12-17 19:46:20', 'dOxojqLm', '7869187'), + (7, 3017, 'attending', '2025-03-22 21:05:36', '2025-12-17 19:46:19', 'dOxojqLm', '7869188'), + (7, 3028, 'attending', '2025-04-23 14:31:08', '2025-12-17 19:46:20', 'dOxojqLm', '7869199'), + (7, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dOxojqLm', '7869201'), + (7, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dOxojqLm', '7877465'), + (7, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dOxojqLm', '7888250'), + (7, 3070, 'not_attending', '2025-04-02 21:31:58', '2025-12-17 19:46:20', 'dOxojqLm', '7894829'), + (7, 3088, 'maybe', '2025-06-08 20:05:19', '2025-12-17 19:46:15', 'dOxojqLm', '7904777'), + (7, 3095, 'attending', '2025-05-03 22:17:04', '2025-12-17 19:46:20', 'dOxojqLm', '8342293'), + (7, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dOxojqLm', '8349164'), + (7, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dOxojqLm', '8349545'), + (7, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dOxojqLm', '8353584'), + (7, 3130, 'maybe', '2025-05-24 21:19:06', '2025-12-17 19:46:21', 'dOxojqLm', '8367403'), + (7, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dOxojqLm', '8368028'), + (7, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dOxojqLm', '8368029'), + (7, 3133, 'attending', '2025-05-28 22:47:01', '2025-12-17 19:46:14', 'dOxojqLm', '8368030'), + (7, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dOxojqLm', '8388462'), + (7, 3150, 'maybe', '2025-06-05 22:57:00', '2025-12-17 19:46:15', 'dOxojqLm', '8393174'), + (7, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dOxojqLm', '8400273'), + (7, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dOxojqLm', '8400274'), + (7, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dOxojqLm', '8400275'), + (7, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dOxojqLm', '8400276'), + (7, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dOxojqLm', '8404977'), + (7, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dOxojqLm', '8430783'), + (7, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dOxojqLm', '8430784'), + (7, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dOxojqLm', '8430799'), + (7, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dOxojqLm', '8430800'), + (7, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dOxojqLm', '8430801'), + (7, 3188, 'attending', '2025-07-09 20:49:31', '2025-12-17 19:46:17', 'dOxojqLm', '8438709'), + (7, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dOxojqLm', '8457738'), + (7, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dOxojqLm', '8459566'), + (7, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dOxojqLm', '8459567'), + (7, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dOxojqLm', '8459568'), + (7, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dOxojqLm', '8461032'), + (7, 3214, 'attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dOxojqLm', '8477877'), + (7, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dOxojqLm', '8485688'), + (7, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dOxojqLm', '8490587'), + (7, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dOxojqLm', '8493552'), + (7, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dOxojqLm', '8493553'), + (7, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dOxojqLm', '8493554'), + (7, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dOxojqLm', '8493555'), + (7, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dOxojqLm', '8493556'), + (7, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dOxojqLm', '8493557'), + (7, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dOxojqLm', '8493558'), + (7, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dOxojqLm', '8493559'), + (7, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dOxojqLm', '8493560'), + (7, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dOxojqLm', '8493561'), + (7, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dOxojqLm', '8493572'), + (7, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dOxojqLm', '8540725'), + (7, 3294, 'attending', '2025-10-18 16:52:31', '2025-12-17 19:46:14', 'dOxojqLm', '8546775'), + (7, 3302, 'attending', '2025-11-12 01:35:52', '2025-12-17 19:46:14', 'dOxojqLm', '8550022'), + (7, 3304, 'attending', '2025-11-12 01:35:55', '2025-12-17 19:46:14', 'dOxojqLm', '8550024'), + (7, 3305, 'attending', '2025-11-12 01:36:00', '2025-12-17 19:46:11', 'dOxojqLm', '8550025'), + (7, 3306, 'attending', '2025-12-01 20:47:45', '2025-12-17 19:46:11', 'dOxojqLm', '8550026'), + (7, 3307, 'not_attending', '2025-12-01 20:47:40', '2025-12-17 19:46:11', 'dOxojqLm', '8550027'), + (7, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dOxojqLm', '8555421'), + (8, 2522, 'attending', '2024-07-14 21:33:11', '2025-12-17 19:46:30', 'Arr7X9XA', '7074362'), + (8, 2531, 'attending', '2024-08-29 21:34:40', '2025-12-17 19:46:32', 'Arr7X9XA', '7074378'), + (8, 2532, 'attending', '2024-09-04 20:27:14', '2025-12-17 19:46:32', 'Arr7X9XA', '7074383'), + (8, 2533, 'not_attending', '2024-08-18 19:05:48', '2025-12-17 19:46:32', 'Arr7X9XA', '7074384'), + (8, 2691, 'attending', '2024-07-14 12:49:47', '2025-12-17 19:46:30', 'Arr7X9XA', '7324076'), + (8, 2692, 'attending', '2024-07-21 12:34:07', '2025-12-17 19:46:30', 'Arr7X9XA', '7324077'), + (8, 2693, 'attending', '2024-07-28 12:18:38', '2025-12-17 19:46:31', 'Arr7X9XA', '7324078'), + (8, 2694, 'attending', '2024-08-08 01:53:12', '2025-12-17 19:46:31', 'Arr7X9XA', '7324079'), + (8, 2695, 'attending', '2024-08-13 17:10:05', '2025-12-17 19:46:31', 'Arr7X9XA', '7324080'), + (8, 2696, 'attending', '2024-08-18 19:05:59', '2025-12-17 19:46:32', 'Arr7X9XA', '7324081'), + (8, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Arr7X9XA', '7324082'), + (8, 2698, 'attending', '2024-09-02 21:19:42', '2025-12-17 19:46:24', 'Arr7X9XA', '7324083'), + (8, 2712, 'attending', '2024-07-29 15:27:18', '2025-12-17 19:46:31', 'Arr7X9XA', '7326525'), + (8, 2722, 'not_attending', '2024-07-12 22:43:28', '2025-12-17 19:46:30', 'Arr7X9XA', '7331457'), + (8, 2757, 'attending', '2024-07-14 12:47:37', '2025-12-17 19:46:30', 'Arr7X9XA', '7358733'), + (8, 2759, 'attending', '2024-07-12 18:19:06', '2025-12-17 19:46:30', 'Arr7X9XA', '7359624'), + (8, 2764, 'attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'Arr7X9XA', '7363595'), + (8, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'Arr7X9XA', '7363643'), + (8, 2768, 'attending', '2024-07-18 15:49:59', '2025-12-17 19:46:30', 'Arr7X9XA', '7366031'), + (8, 2769, 'not_attending', '2024-07-20 13:17:08', '2025-12-17 19:46:30', 'Arr7X9XA', '7366803'), + (8, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Arr7X9XA', '7368606'), + (8, 2776, 'attending', '2024-07-23 18:34:04', '2025-12-17 19:46:30', 'Arr7X9XA', '7370690'), + (8, 2781, 'attending', '2024-07-28 12:19:16', '2025-12-17 19:46:30', 'Arr7X9XA', '7373194'), + (8, 2783, 'attending', '2024-08-03 15:31:51', '2025-12-17 19:46:31', 'Arr7X9XA', '7379699'), + (8, 2786, 'maybe', '2024-08-04 02:55:41', '2025-12-17 19:46:31', 'Arr7X9XA', '7381403'), + (8, 2799, 'attending', '2024-08-12 16:18:02', '2025-12-17 19:46:31', 'Arr7X9XA', '7395922'), + (8, 2800, 'not_attending', '2024-08-15 21:45:15', '2025-12-17 19:46:31', 'Arr7X9XA', '7397405'), + (8, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Arr7X9XA', '7397462'), + (8, 2803, 'attending', '2024-08-17 15:57:13', '2025-12-17 19:46:32', 'Arr7X9XA', '7397869'), + (8, 2805, 'attending', '2024-08-20 22:10:33', '2025-12-17 19:46:32', 'Arr7X9XA', '7403620'), + (8, 2813, 'attending', '2024-09-06 22:25:01', '2025-12-17 19:46:24', 'Arr7X9XA', '7424105'), + (8, 2821, 'attending', '2024-10-12 13:40:35', '2025-12-17 19:46:26', 'Arr7X9XA', '7424275'), + (8, 2822, 'attending', '2024-11-10 20:18:49', '2025-12-17 19:46:26', 'Arr7X9XA', '7424276'), + (8, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Arr7X9XA', '7432751'), + (8, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Arr7X9XA', '7432752'), + (8, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Arr7X9XA', '7432753'), + (8, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Arr7X9XA', '7432754'), + (8, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Arr7X9XA', '7432755'), + (8, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Arr7X9XA', '7432756'), + (8, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Arr7X9XA', '7432758'), + (8, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Arr7X9XA', '7432759'), + (8, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Arr7X9XA', '7433834'), + (8, 2834, 'attending', '2024-09-14 13:38:20', '2025-12-17 19:46:25', 'Arr7X9XA', '7433852'), + (8, 2839, 'not_attending', '2024-09-24 20:19:36', '2025-12-17 19:46:25', 'Arr7X9XA', '7439262'), + (8, 2844, 'attending', '2024-09-20 17:20:14', '2025-12-17 19:46:25', 'Arr7X9XA', '7450233'), + (8, 2855, 'attending', '2024-10-03 17:59:00', '2025-12-17 19:46:26', 'Arr7X9XA', '7469385'), + (8, 2861, 'attending', '2024-10-03 17:58:53', '2025-12-17 19:46:26', 'Arr7X9XA', '7469826'), + (8, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Arr7X9XA', '7470197'), + (8, 2867, 'attending', '2024-12-06 20:42:33', '2025-12-17 19:46:21', 'Arr7X9XA', '7471202'), + (8, 2878, 'attending', '2024-10-16 12:06:32', '2025-12-17 19:46:26', 'Arr7X9XA', '7633857'), + (8, 2880, 'attending', '2024-10-12 13:40:22', '2025-12-17 19:46:26', 'Arr7X9XA', '7636316'), + (8, 2881, 'attending', '2024-11-06 21:32:01', '2025-12-17 19:46:26', 'Arr7X9XA', '7644047'), + (8, 2883, 'attending', '2024-10-23 20:26:40', '2025-12-17 19:46:26', 'Arr7X9XA', '7649157'), + (8, 2889, 'attending', '2024-10-28 20:29:43', '2025-12-17 19:46:26', 'Arr7X9XA', '7660485'), + (8, 2892, 'attending', '2024-10-30 19:53:40', '2025-12-17 19:46:26', 'Arr7X9XA', '7672064'), + (8, 2893, 'attending', '2024-11-05 14:53:55', '2025-12-17 19:46:26', 'Arr7X9XA', '7672705'), + (8, 2896, 'attending', '2024-11-11 00:31:38', '2025-12-17 19:46:27', 'Arr7X9XA', '7683647'), + (8, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'Arr7X9XA', '7685613'), + (8, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Arr7X9XA', '7688194'), + (8, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Arr7X9XA', '7688196'), + (8, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Arr7X9XA', '7688289'), + (8, 2906, 'attending', '2024-11-09 22:08:28', '2025-12-17 19:46:26', 'Arr7X9XA', '7689366'), + (8, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Arr7X9XA', '7692763'), + (8, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Arr7X9XA', '7697552'), + (8, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Arr7X9XA', '7699878'), + (8, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Arr7X9XA', '7704043'), + (8, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Arr7X9XA', '7712467'), + (8, 2925, 'attending', '2024-12-05 18:12:14', '2025-12-17 19:46:21', 'Arr7X9XA', '7713584'), + (8, 2926, 'attending', '2024-12-05 18:12:09', '2025-12-17 19:46:21', 'Arr7X9XA', '7713585'), + (8, 2927, 'not_attending', '2024-12-05 18:12:16', '2025-12-17 19:46:22', 'Arr7X9XA', '7713586'), + (8, 2929, 'attending', '2024-12-08 20:37:56', '2025-12-17 19:46:21', 'Arr7X9XA', '7723465'), + (8, 2930, 'attending', '2024-12-07 00:51:27', '2025-12-17 19:46:21', 'Arr7X9XA', '7724554'), + (8, 2947, 'attending', '2024-12-09 21:15:56', '2025-12-17 19:46:21', 'Arr7X9XA', '7727445'), + (8, 2951, 'not_attending', '2024-12-11 22:27:25', '2025-12-17 19:46:21', 'Arr7X9XA', '7729509'), + (8, 2954, 'attending', '2024-12-14 22:55:46', '2025-12-17 19:46:21', 'Arr7X9XA', '7734260'), + (8, 2955, 'attending', '2024-12-15 20:42:32', '2025-12-17 19:46:21', 'Arr7X9XA', '7735094'), + (8, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Arr7X9XA', '7738518'), + (8, 2962, 'attending', '2024-12-26 02:55:48', '2025-12-17 19:46:22', 'Arr7X9XA', '7750632'), + (8, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Arr7X9XA', '7750636'), + (8, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Arr7X9XA', '7796540'), + (8, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Arr7X9XA', '7796541'), + (8, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Arr7X9XA', '7796542'), + (8, 2974, 'attending', '2025-01-18 20:44:45', '2025-12-17 19:46:22', 'Arr7X9XA', '7814958'), + (8, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Arr7X9XA', '7825913'), + (8, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Arr7X9XA', '7826209'), + (8, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Arr7X9XA', '7834742'), + (8, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'Arr7X9XA', '7842108'), + (8, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Arr7X9XA', '7842902'), + (8, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Arr7X9XA', '7842903'), + (8, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Arr7X9XA', '7842904'), + (8, 2994, 'maybe', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Arr7X9XA', '7842905'), + (8, 2999, 'attending', '2025-02-13 14:30:37', '2025-12-17 19:46:23', 'Arr7X9XA', '7844784'), + (8, 3001, 'attending', '2025-02-21 23:49:53', '2025-12-17 19:46:24', 'Arr7X9XA', '7854184'), + (8, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Arr7X9XA', '7855719'), + (8, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Arr7X9XA', '7860683'), + (8, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Arr7X9XA', '7860684'), + (8, 3009, 'attending', '2025-03-02 14:57:16', '2025-12-17 19:46:18', 'Arr7X9XA', '7864019'), + (8, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Arr7X9XA', '7866095'), + (8, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Arr7X9XA', '7869170'), + (8, 3015, 'not_attending', '2025-04-26 16:44:42', '2025-12-17 19:46:20', 'Arr7X9XA', '7869186'), + (8, 3016, 'attending', '2025-04-16 15:57:10', '2025-12-17 19:46:20', 'Arr7X9XA', '7869187'), + (8, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Arr7X9XA', '7869188'), + (8, 3018, 'attending', '2025-04-12 01:21:59', '2025-12-17 19:46:20', 'Arr7X9XA', '7869189'), + (8, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Arr7X9XA', '7869201'), + (8, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Arr7X9XA', '7877465'), + (8, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'Arr7X9XA', '7878570'), + (8, 3039, 'maybe', '2025-03-19 20:51:57', '2025-12-17 19:46:19', 'Arr7X9XA', '7881992'), + (8, 3042, 'attending', '2025-03-15 14:14:23', '2025-12-17 19:46:19', 'Arr7X9XA', '7882467'), + (8, 3046, 'attending', '2025-04-12 21:00:38', '2025-12-17 19:46:20', 'Arr7X9XA', '7882692'), + (8, 3054, 'attending', '2025-03-18 16:45:59', '2025-12-17 19:46:19', 'Arr7X9XA', '7884168'), + (8, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Arr7X9XA', '7888250'), + (8, 3061, 'attending', '2025-04-02 20:12:41', '2025-12-17 19:46:19', 'Arr7X9XA', '7892590'), + (8, 3074, 'attending', '2025-04-05 12:41:10', '2025-12-17 19:46:19', 'Arr7X9XA', '7897784'), + (8, 3075, 'maybe', '2025-04-18 13:20:19', '2025-12-17 19:46:20', 'Arr7X9XA', '7898896'), + (8, 3076, 'not_attending', '2025-04-05 21:24:48', '2025-12-17 19:46:20', 'Arr7X9XA', '7899007'), + (8, 3078, 'attending', '2025-04-06 14:35:02', '2025-12-17 19:46:20', 'Arr7X9XA', '7901213'), + (8, 3079, 'not_attending', '2025-04-06 17:28:05', '2025-12-17 19:46:20', 'Arr7X9XA', '7901439'), + (8, 3080, 'attending', '2025-04-06 16:39:24', '2025-12-17 19:46:20', 'Arr7X9XA', '7901441'), + (8, 3087, 'attending', '2025-04-16 15:05:38', '2025-12-17 19:46:20', 'Arr7X9XA', '7903856'), + (8, 3088, 'attending', '2025-06-09 19:54:23', '2025-12-17 19:46:15', 'Arr7X9XA', '7904777'), + (8, 3094, 'attending', '2025-05-07 22:28:13', '2025-12-17 19:46:21', 'Arr7X9XA', '8342292'), + (8, 3095, 'attending', '2025-04-29 14:49:57', '2025-12-17 19:46:20', 'Arr7X9XA', '8342293'), + (8, 3097, 'not_attending', '2025-04-25 12:22:11', '2025-12-17 19:46:20', 'Arr7X9XA', '8342993'), + (8, 3100, 'attending', '2025-04-22 12:42:46', '2025-12-17 19:46:20', 'Arr7X9XA', '8343977'), + (8, 3103, 'attending', '2025-04-26 16:44:35', '2025-12-17 19:46:20', 'Arr7X9XA', '8347770'), + (8, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Arr7X9XA', '8349164'), + (8, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Arr7X9XA', '8349545'), + (8, 3110, 'attending', '2025-04-30 16:55:08', '2025-12-17 19:46:20', 'Arr7X9XA', '8353484'), + (8, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'Arr7X9XA', '8353584'), + (8, 3119, 'attending', '2025-05-13 19:04:34', '2025-12-17 19:46:21', 'Arr7X9XA', '8360035'), + (8, 3120, 'attending', '2025-05-07 22:28:25', '2025-12-17 19:46:21', 'Arr7X9XA', '8360736'), + (8, 3121, 'attending', '2025-05-13 00:32:52', '2025-12-17 19:46:21', 'Arr7X9XA', '8362730'), + (8, 3122, 'attending', '2025-05-09 20:16:56', '2025-12-17 19:46:21', 'Arr7X9XA', '8362978'), + (8, 3123, 'attending', '2025-05-08 18:49:10', '2025-12-17 19:46:21', 'Arr7X9XA', '8363523'), + (8, 3124, 'maybe', '2025-05-09 20:17:05', '2025-12-17 19:46:21', 'Arr7X9XA', '8363566'), + (8, 3126, 'maybe', '2025-05-13 22:28:16', '2025-12-17 19:46:21', 'Arr7X9XA', '8365614'), + (8, 3127, 'attending', '2025-05-11 23:06:07', '2025-12-17 19:46:21', 'Arr7X9XA', '8365615'), + (8, 3129, 'attending', '2025-05-11 23:40:24', '2025-12-17 19:46:21', 'Arr7X9XA', '8366441'), + (8, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Arr7X9XA', '8368028'), + (8, 3132, 'not_attending', '2025-05-15 19:59:03', '2025-12-17 19:46:21', 'Arr7X9XA', '8368029'), + (8, 3133, 'attending', '2025-05-15 19:59:06', '2025-12-17 19:46:14', 'Arr7X9XA', '8368030'), + (8, 3135, 'not_attending', '2025-05-17 13:41:35', '2025-12-17 19:46:21', 'Arr7X9XA', '8373126'), + (8, 3136, 'maybe', '2025-05-21 19:35:02', '2025-12-17 19:46:21', 'Arr7X9XA', '8374152'), + (8, 3137, 'maybe', '2025-05-21 19:34:57', '2025-12-17 19:46:21', 'Arr7X9XA', '8374153'), + (8, 3138, 'attending', '2025-05-18 16:47:49', '2025-12-17 19:46:21', 'Arr7X9XA', '8376037'), + (8, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Arr7X9XA', '8388462'), + (8, 3150, 'attending', '2025-06-21 16:53:03', '2025-12-17 19:46:15', 'Arr7X9XA', '8393174'), + (8, 3151, 'attending', '2025-05-31 21:41:12', '2025-12-17 19:46:14', 'Arr7X9XA', '8393497'), + (8, 3153, 'maybe', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Arr7X9XA', '8400273'), + (8, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'Arr7X9XA', '8400274'), + (8, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Arr7X9XA', '8400275'), + (8, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Arr7X9XA', '8400276'), + (8, 3159, 'maybe', '2025-06-09 19:54:35', '2025-12-17 19:46:15', 'Arr7X9XA', '8401410'), + (8, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Arr7X9XA', '8404977'), + (8, 3173, 'attending', '2025-06-14 18:16:14', '2025-12-17 19:46:15', 'Arr7X9XA', '8410806'), + (8, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Arr7X9XA', '8430783'), + (8, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Arr7X9XA', '8430784'), + (8, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Arr7X9XA', '8430799'), + (8, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Arr7X9XA', '8430800'), + (8, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Arr7X9XA', '8430801'), + (8, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Arr7X9XA', '8438709'), + (8, 3190, 'maybe', '2025-07-18 15:36:45', '2025-12-17 19:46:17', 'Arr7X9XA', '8443962'), + (8, 3192, 'attending', '2025-07-15 16:07:18', '2025-12-17 19:46:17', 'Arr7X9XA', '8456429'), + (8, 3193, 'attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Arr7X9XA', '8457738'), + (8, 3194, 'maybe', '2025-07-17 22:37:32', '2025-12-17 19:46:17', 'Arr7X9XA', '8457740'), + (8, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Arr7X9XA', '8459566'), + (8, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Arr7X9XA', '8459567'), + (8, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Arr7X9XA', '8461032'), + (8, 3211, 'attending', '2025-08-08 14:47:53', '2025-12-17 19:46:17', 'Arr7X9XA', '8477785'), + (8, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Arr7X9XA', '8477877'), + (8, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'Arr7X9XA', '8485688'), + (8, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Arr7X9XA', '8490587'), + (8, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Arr7X9XA', '8493552'), + (8, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Arr7X9XA', '8493553'), + (8, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Arr7X9XA', '8493554'), + (8, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Arr7X9XA', '8493555'), + (8, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Arr7X9XA', '8493556'), + (8, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Arr7X9XA', '8493557'), + (8, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Arr7X9XA', '8493558'), + (8, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Arr7X9XA', '8493559'), + (8, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Arr7X9XA', '8493560'), + (8, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Arr7X9XA', '8493561'), + (8, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Arr7X9XA', '8493572'), + (8, 3269, 'not_attending', '2025-09-25 16:03:44', '2025-12-17 19:46:12', 'Arr7X9XA', '8514582'), + (8, 3272, 'attending', '2025-09-20 22:11:34', '2025-12-17 19:46:12', 'Arr7X9XA', '8524068'), + (8, 3275, 'attending', '2025-09-20 22:21:20', '2025-12-17 19:46:12', 'Arr7X9XA', '8527786'), + (8, 3277, 'attending', '2025-09-27 18:18:50', '2025-12-17 19:46:12', 'Arr7X9XA', '8533938'), + (8, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Arr7X9XA', '8540725'), + (8, 3295, 'attending', '2025-10-28 16:23:53', '2025-12-17 19:46:14', 'Arr7X9XA', '8547541'), + (8, 3300, 'not_attending', '2025-11-08 21:28:29', '2025-12-17 19:46:14', 'Arr7X9XA', '8549145'), + (8, 3304, 'attending', '2025-11-22 21:02:17', '2025-12-17 19:46:14', 'Arr7X9XA', '8550024'), + (8, 3305, 'attending', '2025-12-02 18:58:55', '2025-12-17 19:46:11', 'Arr7X9XA', '8550025'), + (8, 3306, 'not_attending', '2025-12-14 00:10:04', '2025-12-17 19:46:11', 'Arr7X9XA', '8550026'), + (8, 3314, 'attending', '2025-11-01 00:12:00', '2025-12-17 19:46:14', 'Arr7X9XA', '8551821'), + (8, 3315, 'attending', '2025-11-05 01:13:48', '2025-12-17 19:46:14', 'Arr7X9XA', '8552486'), + (8, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Arr7X9XA', '8555421'), + (8, 3326, 'attending', '2025-11-20 00:28:50', '2025-12-17 19:46:14', 'Arr7X9XA', '8556661'), + (8, 3327, 'attending', '2025-12-05 00:39:00', '2025-12-17 19:46:11', 'Arr7X9XA', '8557174'), + (8, 3331, 'attending', '2025-12-04 23:08:43', '2025-12-17 19:46:11', 'Arr7X9XA', '8562166'), + (8, 3334, 'attending', '2025-12-08 21:00:13', '2025-12-17 19:46:11', 'Arr7X9XA', '8563246'), + (8, 3336, 'attending', '2025-12-15 20:55:40', '2025-12-17 19:46:11', 'Arr7X9XA', '8563248'), + (8, 3337, 'attending', '2025-12-12 14:34:26', '2025-12-17 19:46:11', 'Arr7X9XA', '8563315'), + (8, 3343, 'attending', '2025-12-17 00:02:45', '2025-12-17 19:46:11', 'Arr7X9XA', '8564411'), + (9, 3241, 'attending', '2025-10-11 20:11:01', '2025-12-17 19:46:13', 'dKw8DJ5d', '8493557'), + (9, 3242, 'attending', '2025-10-22 19:35:13', '2025-12-17 19:46:14', 'dKw8DJ5d', '8493558'), + (9, 3243, 'attending', '2025-10-14 19:49:49', '2025-12-17 19:46:14', 'dKw8DJ5d', '8493559'), + (9, 3253, 'not_attending', '2025-10-26 16:34:39', '2025-12-17 19:46:14', 'dKw8DJ5d', '8493572'), + (9, 3288, 'attending', '2025-10-11 09:04:09', '2025-12-17 19:46:13', 'dKw8DJ5d', '8542408'), + (9, 3289, 'not_attending', '2025-10-22 22:09:06', '2025-12-17 19:46:14', 'dKw8DJ5d', '8542939'), + (9, 3295, 'attending', '2025-10-29 21:05:57', '2025-12-17 19:46:14', 'dKw8DJ5d', '8547541'), + (9, 3300, 'attending', '2025-11-05 21:08:00', '2025-12-17 19:46:14', 'dKw8DJ5d', '8549145'), + (9, 3302, 'attending', '2025-11-11 21:49:24', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550022'), + (9, 3304, 'attending', '2025-11-18 00:16:58', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550024'), + (9, 3305, 'attending', '2025-12-02 23:12:34', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550025'), + (9, 3306, 'not_attending', '2025-12-07 04:37:28', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550026'), + (9, 3307, 'attending', '2025-12-18 23:24:23', '2025-12-18 23:24:23', NULL, NULL), + (9, 3308, 'not_attending', '2025-11-02 16:34:33', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550408'), + (9, 3309, 'not_attending', '2025-11-02 16:34:42', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550409'), + (9, 3310, 'not_attending', '2025-11-08 16:35:53', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550410'), + (9, 3311, 'not_attending', '2025-12-02 23:11:57', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550412'), + (9, 3312, 'not_attending', '2025-12-02 23:12:02', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550413'), + (9, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dKw8DJ5d', '8555421'), + (9, 3331, 'attending', '2025-12-02 21:10:47', '2025-12-17 19:46:11', 'dKw8DJ5d', '8562166'), + (9, 3333, 'attending', '2025-12-13 16:59:32', '2025-12-17 19:46:11', 'dKw8DJ5d', '8562500'), + (9, 3337, 'attending', '2025-12-07 04:37:22', '2025-12-17 19:46:11', 'dKw8DJ5d', '8563315'), + (10, 3305, 'maybe', '2025-12-03 13:49:43', '2025-12-17 19:46:11', 'dKnJnJa4', '8550025'), + (10, 3310, 'attending', '2025-12-01 13:54:13', '2025-12-17 19:46:11', 'dKnJnJa4', '8550410'), + (10, 3311, 'maybe', '2025-12-04 20:49:07', '2025-12-17 19:46:11', 'dKnJnJa4', '8550412'), + (10, 3330, 'attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', 'dKnJnJa4', '8561720'), + (10, 3332, 'not_attending', '2025-12-03 13:49:37', '2025-12-17 19:46:11', 'dKnJnJa4', '8562248'), + (10, 3333, 'maybe', '2025-12-06 15:59:09', '2025-12-17 19:46:11', 'dKnJnJa4', '8562500'), + (11, 2136, 'not_attending', '2023-07-23 02:19:46', '2025-12-17 19:46:53', 'mjj86rgm', '6187966'), + (11, 2148, 'attending', '2023-07-23 02:18:56', '2025-12-17 19:46:53', 'mjj86rgm', '6335667'), + (11, 2159, 'attending', '2023-07-22 03:01:47', '2025-12-17 19:46:53', 'mjj86rgm', '6338355'), + (11, 2160, 'maybe', '2023-07-26 15:41:14', '2025-12-17 19:46:54', 'mjj86rgm', '6338358'), + (11, 2165, 'attending', '2023-08-01 18:11:10', '2025-12-17 19:46:54', 'mjj86rgm', '6342044'), + (11, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mjj86rgm', '6343294'), + (11, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mjj86rgm', '6347034'), + (11, 2177, 'attending', '2023-08-05 03:42:19', '2025-12-17 19:46:55', 'mjj86rgm', '6347053'), + (11, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mjj86rgm', '6347056'), + (11, 2180, 'attending', '2023-07-27 17:37:28', '2025-12-17 19:46:54', 'mjj86rgm', '6348788'), + (11, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mjj86rgm', '6353830'), + (11, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mjj86rgm', '6353831'), + (11, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mjj86rgm', '6357867'), + (11, 2190, 'attending', '2023-08-04 12:56:13', '2025-12-17 19:46:55', 'mjj86rgm', '6357892'), + (11, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mjj86rgm', '6358652'), + (11, 2196, 'not_attending', '2023-09-05 19:46:17', '2025-12-17 19:46:56', 'mjj86rgm', '6359398'), + (11, 2197, 'attending', '2023-09-13 12:52:03', '2025-12-17 19:46:44', 'mjj86rgm', '6359399'), + (11, 2199, 'attending', '2023-08-10 23:05:17', '2025-12-17 19:46:55', 'mjj86rgm', '6359849'), + (11, 2200, 'attending', '2023-08-08 13:28:54', '2025-12-17 19:46:55', 'mjj86rgm', '6359850'), + (11, 2202, 'attending', '2023-08-06 18:29:00', '2025-12-17 19:46:54', 'mjj86rgm', '6360509'), + (11, 2204, 'not_attending', '2023-08-18 01:24:50', '2025-12-17 19:46:55', 'mjj86rgm', '6361542'), + (11, 2206, 'attending', '2023-08-08 17:04:29', '2025-12-17 19:46:55', 'mjj86rgm', '6361659'), + (11, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'mjj86rgm', '6361709'), + (11, 2209, 'maybe', '2023-08-21 09:36:48', '2025-12-17 19:46:55', 'mjj86rgm', '6361710'), + (11, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mjj86rgm', '6361711'), + (11, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mjj86rgm', '6361712'), + (11, 2212, 'not_attending', '2023-09-24 01:42:18', '2025-12-17 19:46:45', 'mjj86rgm', '6361713'), + (11, 2214, 'attending', '2023-08-13 16:25:59', '2025-12-17 19:46:55', 'mjj86rgm', '6363218'), + (11, 2215, 'attending', '2023-08-11 11:45:03', '2025-12-17 19:46:55', 'mjj86rgm', '6363479'), + (11, 2217, 'maybe', '2023-08-14 18:37:01', '2025-12-17 19:46:55', 'mjj86rgm', '6364333'), + (11, 2220, 'maybe', '2023-08-28 04:54:19', '2025-12-17 19:46:56', 'mjj86rgm', '6367310'), + (11, 2227, 'attending', '2023-08-20 17:24:28', '2025-12-17 19:46:55', 'mjj86rgm', '6370581'), + (11, 2232, 'not_attending', '2023-08-24 02:33:58', '2025-12-17 19:46:55', 'mjj86rgm', '6374818'), + (11, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mjj86rgm', '6382573'), + (11, 2239, 'not_attending', '2023-08-31 18:00:06', '2025-12-17 19:46:56', 'mjj86rgm', '6387592'), + (11, 2240, 'attending', '2023-09-05 18:29:51', '2025-12-17 19:46:56', 'mjj86rgm', '6388603'), + (11, 2241, 'attending', '2023-09-05 15:39:26', '2025-12-17 19:46:44', 'mjj86rgm', '6388604'), + (11, 2242, 'attending', '2023-09-22 17:33:07', '2025-12-17 19:46:45', 'mjj86rgm', '6388606'), + (11, 2243, 'attending', '2023-09-05 11:29:34', '2025-12-17 19:46:56', 'mjj86rgm', '6393686'), + (11, 2244, 'attending', '2023-09-05 11:30:41', '2025-12-17 19:46:44', 'mjj86rgm', '6393700'), + (11, 2245, 'attending', '2023-09-14 23:09:21', '2025-12-17 19:46:45', 'mjj86rgm', '6393703'), + (11, 2247, 'attending', '2023-09-05 19:43:13', '2025-12-17 19:46:56', 'mjj86rgm', '6394628'), + (11, 2248, 'attending', '2023-09-07 16:19:07', '2025-12-17 19:46:44', 'mjj86rgm', '6394629'), + (11, 2249, 'attending', '2023-09-18 13:41:52', '2025-12-17 19:46:45', 'mjj86rgm', '6394630'), + (11, 2250, 'attending', '2023-09-18 22:30:46', '2025-12-17 19:46:45', 'mjj86rgm', '6394631'), + (11, 2252, 'maybe', '2023-09-10 19:59:23', '2025-12-17 19:46:45', 'mjj86rgm', '6396837'), + (11, 2253, 'attending', '2023-09-25 20:58:42', '2025-12-17 19:46:45', 'mjj86rgm', '6401811'), + (11, 2258, 'attending', '2023-09-24 01:41:37', '2025-12-17 19:46:45', 'mjj86rgm', '6419492'), + (11, 2259, 'not_attending', '2023-09-22 17:21:01', '2025-12-17 19:46:45', 'mjj86rgm', '6421257'), + (11, 2261, 'attending', '2023-09-28 23:46:10', '2025-12-17 19:46:45', 'mjj86rgm', '6427422'), + (11, 2262, 'attending', '2023-10-01 03:55:53', '2025-12-17 19:46:45', 'mjj86rgm', '6427423'), + (11, 2268, 'attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mjj86rgm', '6440863'), + (11, 2269, 'attending', '2023-10-03 14:29:20', '2025-12-17 19:46:45', 'mjj86rgm', '6442978'), + (11, 2270, 'attending', '2023-10-03 14:24:30', '2025-12-17 19:46:46', 'mjj86rgm', '6443067'), + (11, 2271, 'maybe', '2023-10-06 22:43:11', '2025-12-17 19:46:45', 'mjj86rgm', '6445375'), + (11, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mjj86rgm', '6445440'), + (11, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mjj86rgm', '6453951'), + (11, 2279, 'attending', '2023-10-08 20:04:54', '2025-12-17 19:46:46', 'mjj86rgm', '6455460'), + (11, 2284, 'attending', '2023-10-10 14:12:23', '2025-12-17 19:46:46', 'mjj86rgm', '6460928'), + (11, 2285, 'attending', '2023-10-15 23:07:12', '2025-12-17 19:46:47', 'mjj86rgm', '6460929'), + (11, 2286, 'attending', '2023-11-30 00:34:17', '2025-12-17 19:46:48', 'mjj86rgm', '6460930'), + (11, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mjj86rgm', '6461696'), + (11, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mjj86rgm', '6462129'), + (11, 2290, 'attending', '2023-10-15 20:17:29', '2025-12-17 19:46:46', 'mjj86rgm', '6462214'), + (11, 2291, 'attending', '2023-10-20 22:42:29', '2025-12-17 19:46:46', 'mjj86rgm', '6462215'), + (11, 2292, 'attending', '2023-10-30 22:35:41', '2025-12-17 19:46:47', 'mjj86rgm', '6462216'), + (11, 2293, 'attending', '2023-10-11 21:29:52', '2025-12-17 19:46:46', 'mjj86rgm', '6463218'), + (11, 2299, 'attending', '2023-10-17 11:56:33', '2025-12-17 19:46:46', 'mjj86rgm', '6472181'), + (11, 2300, 'maybe', '2023-10-15 23:07:32', '2025-12-17 19:46:47', 'mjj86rgm', '6472185'), + (11, 2302, 'attending', '2023-10-24 13:43:03', '2025-12-17 19:46:46', 'mjj86rgm', '6482535'), + (11, 2303, 'not_attending', '2023-10-24 15:43:20', '2025-12-17 19:46:47', 'mjj86rgm', '6482691'), + (11, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mjj86rgm', '6482693'), + (11, 2306, 'attending', '2023-11-15 16:14:57', '2025-12-17 19:46:47', 'mjj86rgm', '6484200'), + (11, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mjj86rgm', '6484680'), + (11, 2310, 'attending', '2023-11-06 14:23:44', '2025-12-17 19:46:47', 'mjj86rgm', '6487709'), + (11, 2311, 'attending', '2023-11-07 00:50:55', '2025-12-17 19:46:47', 'mjj86rgm', '6487725'), + (11, 2315, 'attending', '2023-11-06 02:15:30', '2025-12-17 19:46:47', 'mjj86rgm', '6493666'), + (11, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mjj86rgm', '6507741'), + (11, 2318, 'attending', '2023-10-30 15:02:20', '2025-12-17 19:46:47', 'mjj86rgm', '6508566'), + (11, 2319, 'not_attending', '2023-10-30 15:01:50', '2025-12-17 19:46:47', 'mjj86rgm', '6508567'), + (11, 2320, 'attending', '2023-11-07 04:43:16', '2025-12-17 19:46:47', 'mjj86rgm', '6508647'), + (11, 2322, 'attending', '2023-11-09 20:16:49', '2025-12-17 19:46:48', 'mjj86rgm', '6514659'), + (11, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mjj86rgm', '6514660'), + (11, 2324, 'attending', '2023-12-09 18:12:58', '2025-12-17 19:46:49', 'mjj86rgm', '6514662'), + (11, 2325, 'attending', '2023-12-10 23:18:31', '2025-12-17 19:46:36', 'mjj86rgm', '6514663'), + (11, 2329, 'maybe', '2023-11-05 21:14:33', '2025-12-17 19:46:47', 'mjj86rgm', '6517138'), + (11, 2331, 'attending', '2023-11-08 00:48:34', '2025-12-17 19:46:47', 'mjj86rgm', '6518640'), + (11, 2333, 'attending', '2023-11-06 02:52:27', '2025-12-17 19:46:47', 'mjj86rgm', '6519103'), + (11, 2335, 'attending', '2023-11-08 00:48:52', '2025-12-17 19:46:47', 'mjj86rgm', '6534890'), + (11, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mjj86rgm', '6535681'), + (11, 2338, 'attending', '2023-11-23 20:30:39', '2025-12-17 19:46:48', 'mjj86rgm', '6538868'), + (11, 2345, 'attending', '2023-11-23 20:31:15', '2025-12-17 19:46:48', 'mjj86rgm', '6582414'), + (11, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mjj86rgm', '6584747'), + (11, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mjj86rgm', '6587097'), + (11, 2357, 'maybe', '2023-12-18 19:04:56', '2025-12-17 19:46:36', 'mjj86rgm', '6593341'), + (11, 2362, 'not_attending', '2023-12-05 02:24:10', '2025-12-17 19:46:49', 'mjj86rgm', '6605708'), + (11, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mjj86rgm', '6609022'), + (11, 2364, 'attending', '2023-12-07 04:24:32', '2025-12-17 19:46:49', 'mjj86rgm', '6613011'), + (11, 2366, 'attending', '2023-12-10 23:18:02', '2025-12-17 19:46:36', 'mjj86rgm', '6615304'), + (11, 2370, 'attending', '2023-12-12 20:23:41', '2025-12-17 19:46:36', 'mjj86rgm', '6623765'), + (11, 2371, 'attending', '2023-12-13 04:09:59', '2025-12-17 19:46:36', 'mjj86rgm', '6624495'), + (11, 2373, 'attending', '2024-01-08 13:01:45', '2025-12-17 19:46:38', 'mjj86rgm', '6632678'), + (11, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mjj86rgm', '6632757'), + (11, 2377, 'not_attending', '2024-01-03 04:13:45', '2025-12-17 19:46:37', 'mjj86rgm', '6643448'), + (11, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mjj86rgm', '6644187'), + (11, 2382, 'not_attending', '2024-01-03 04:13:18', '2025-12-17 19:46:37', 'mjj86rgm', '6646401'), + (11, 2384, 'not_attending', '2024-01-03 04:13:28', '2025-12-17 19:46:37', 'mjj86rgm', '6648022'), + (11, 2385, 'not_attending', '2024-01-03 04:13:49', '2025-12-17 19:46:37', 'mjj86rgm', '6648943'), + (11, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mjj86rgm', '6648951'), + (11, 2387, 'not_attending', '2024-01-03 04:13:29', '2025-12-17 19:46:37', 'mjj86rgm', '6648952'), + (11, 2388, 'not_attending', '2024-01-03 04:13:41', '2025-12-17 19:46:37', 'mjj86rgm', '6649244'), + (11, 2391, 'attending', '2024-01-07 15:26:09', '2025-12-17 19:46:37', 'mjj86rgm', '6654138'), + (11, 2392, 'maybe', '2024-01-07 15:26:05', '2025-12-17 19:46:37', 'mjj86rgm', '6654412'), + (11, 2394, 'maybe', '2024-01-18 12:07:02', '2025-12-17 19:46:40', 'mjj86rgm', '6654470'), + (11, 2395, 'attending', '2024-01-08 05:08:59', '2025-12-17 19:46:38', 'mjj86rgm', '6654471'), + (11, 2396, 'attending', '2024-01-08 05:09:01', '2025-12-17 19:46:38', 'mjj86rgm', '6655401'), + (11, 2398, 'attending', '2024-01-07 15:25:53', '2025-12-17 19:46:37', 'mjj86rgm', '6657381'), + (11, 2399, 'attending', '2024-01-10 16:10:40', '2025-12-17 19:46:38', 'mjj86rgm', '6657583'), + (11, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mjj86rgm', '6661585'), + (11, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mjj86rgm', '6661588'), + (11, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mjj86rgm', '6661589'), + (11, 2406, 'maybe', '2024-01-15 05:56:59', '2025-12-17 19:46:40', 'mjj86rgm', '6692344'), + (11, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mjj86rgm', '6699906'), + (11, 2408, 'attending', '2024-01-15 05:56:52', '2025-12-17 19:46:40', 'mjj86rgm', '6699907'), + (11, 2409, 'attending', '2024-01-28 00:48:26', '2025-12-17 19:46:41', 'mjj86rgm', '6699909'), + (11, 2410, 'not_attending', '2024-02-05 15:05:32', '2025-12-17 19:46:41', 'mjj86rgm', '6699911'), + (11, 2411, 'not_attending', '2024-02-05 18:30:31', '2025-12-17 19:46:41', 'mjj86rgm', '6699913'), + (11, 2412, 'attending', '2024-02-20 18:48:13', '2025-12-17 19:46:43', 'mjj86rgm', '6700717'), + (11, 2414, 'not_attending', '2024-01-20 18:03:47', '2025-12-17 19:46:40', 'mjj86rgm', '6701000'), + (11, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mjj86rgm', '6701109'), + (11, 2419, 'not_attending', '2024-01-18 15:39:47', '2025-12-17 19:46:41', 'mjj86rgm', '6704505'), + (11, 2421, 'attending', '2024-01-22 04:37:54', '2025-12-17 19:46:40', 'mjj86rgm', '6704598'), + (11, 2423, 'attending', '2024-01-25 04:26:12', '2025-12-17 19:46:40', 'mjj86rgm', '6705141'), + (11, 2424, 'maybe', '2024-01-19 13:17:48', '2025-12-17 19:46:40', 'mjj86rgm', '6705143'), + (11, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mjj86rgm', '6705219'), + (11, 2426, 'not_attending', '2024-01-20 03:19:38', '2025-12-17 19:46:40', 'mjj86rgm', '6705569'), + (11, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mjj86rgm', '6710153'), + (11, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mjj86rgm', '6711552'), + (11, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mjj86rgm', '6711553'), + (11, 2431, 'attending', '2024-01-27 07:06:02', '2025-12-17 19:46:41', 'mjj86rgm', '6712394'), + (11, 2433, 'maybe', '2024-01-25 04:26:22', '2025-12-17 19:46:40', 'mjj86rgm', '6715688'), + (11, 2434, 'attending', '2024-01-26 23:55:13', '2025-12-17 19:46:40', 'mjj86rgm', '6716605'), + (11, 2437, 'attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mjj86rgm', '6722688'), + (11, 2438, 'attending', '2024-02-04 16:59:47', '2025-12-17 19:46:41', 'mjj86rgm', '6730201'), + (11, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mjj86rgm', '6730620'), + (11, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mjj86rgm', '6730642'), + (11, 2442, 'attending', '2024-02-02 19:19:22', '2025-12-17 19:46:41', 'mjj86rgm', '6732647'), + (11, 2444, 'attending', '2024-02-06 15:01:59', '2025-12-17 19:46:41', 'mjj86rgm', '6734367'), + (11, 2446, 'not_attending', '2024-03-01 15:40:12', '2025-12-17 19:46:43', 'mjj86rgm', '6734369'), + (11, 2447, 'attending', '2024-03-11 20:20:57', '2025-12-17 19:46:32', 'mjj86rgm', '6734370'), + (11, 2448, 'attending', '2024-03-26 17:49:55', '2025-12-17 19:46:33', 'mjj86rgm', '6734371'), + (11, 2453, 'attending', '2024-02-07 16:12:38', '2025-12-17 19:46:42', 'mjj86rgm', '6740364'), + (11, 2457, 'attending', '2024-02-08 18:14:37', '2025-12-17 19:46:41', 'mjj86rgm', '6742221'), + (11, 2458, 'maybe', '2024-02-09 22:09:57', '2025-12-17 19:46:41', 'mjj86rgm', '6743731'), + (11, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mjj86rgm', '6743829'), + (11, 2465, 'maybe', '2024-02-14 11:32:02', '2025-12-17 19:46:42', 'mjj86rgm', '7026725'), + (11, 2467, 'maybe', '2024-02-24 22:36:08', '2025-12-17 19:46:43', 'mjj86rgm', '7029987'), + (11, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mjj86rgm', '7030380'), + (11, 2471, 'attending', '2024-02-20 02:59:30', '2025-12-17 19:46:42', 'mjj86rgm', '7032425'), + (11, 2472, 'attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mjj86rgm', '7033677'), + (11, 2474, 'attending', '2024-02-20 21:42:56', '2025-12-17 19:46:43', 'mjj86rgm', '7035415'), + (11, 2475, 'maybe', '2024-02-27 21:37:28', '2025-12-17 19:46:43', 'mjj86rgm', '7035643'), + (11, 2476, 'attending', '2024-02-25 14:43:01', '2025-12-17 19:46:43', 'mjj86rgm', '7035691'), + (11, 2477, 'maybe', '2024-02-22 16:53:36', '2025-12-17 19:46:42', 'mjj86rgm', '7035692'), + (11, 2480, 'maybe', '2024-02-25 14:41:40', '2025-12-17 19:46:43', 'mjj86rgm', '7042160'), + (11, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mjj86rgm', '7044715'), + (11, 2482, 'not_attending', '2024-03-02 18:35:29', '2025-12-17 19:46:44', 'mjj86rgm', '7044719'), + (11, 2484, 'maybe', '2024-03-03 17:34:37', '2025-12-17 19:46:43', 'mjj86rgm', '7046836'), + (11, 2486, 'maybe', '2024-03-03 17:34:23', '2025-12-17 19:46:43', 'mjj86rgm', '7048277'), + (11, 2487, 'not_attending', '2024-03-11 02:04:24', '2025-12-17 19:46:33', 'mjj86rgm', '7049279'), + (11, 2489, 'attending', '2024-02-28 02:47:01', '2025-12-17 19:46:43', 'mjj86rgm', '7050161'), + (11, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mjj86rgm', '7050318'), + (11, 2491, 'attending', '2024-02-28 02:27:21', '2025-12-17 19:46:44', 'mjj86rgm', '7050319'), + (11, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mjj86rgm', '7050322'), + (11, 2497, 'maybe', '2024-03-04 20:07:04', '2025-12-17 19:46:43', 'mjj86rgm', '7057501'), + (11, 2498, 'attending', '2024-03-17 19:55:28', '2025-12-17 19:46:33', 'mjj86rgm', '7057662'), + (11, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mjj86rgm', '7057804'), + (11, 2500, 'attending', '2024-03-05 03:29:27', '2025-12-17 19:46:43', 'mjj86rgm', '7058603'), + (11, 2501, 'attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'mjj86rgm', '7059866'), + (11, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mjj86rgm', '7072824'), + (11, 2508, 'attending', '2024-03-12 16:27:09', '2025-12-17 19:46:32', 'mjj86rgm', '7074348'), + (11, 2509, 'not_attending', '2024-03-25 02:48:04', '2025-12-17 19:46:33', 'mjj86rgm', '7074349'), + (11, 2510, 'attending', '2024-03-15 02:25:39', '2025-12-17 19:46:33', 'mjj86rgm', '7074350'), + (11, 2511, 'attending', '2024-04-10 13:55:37', '2025-12-17 19:46:33', 'mjj86rgm', '7074351'), + (11, 2512, 'not_attending', '2024-04-02 18:10:15', '2025-12-17 19:46:33', 'mjj86rgm', '7074352'), + (11, 2513, 'attending', '2024-04-18 03:34:47', '2025-12-17 19:46:34', 'mjj86rgm', '7074353'), + (11, 2514, 'not_attending', '2024-04-25 21:27:06', '2025-12-17 19:46:34', 'mjj86rgm', '7074354'), + (11, 2516, 'attending', '2024-04-30 23:33:03', '2025-12-17 19:46:35', 'mjj86rgm', '7074356'), + (11, 2518, 'attending', '2024-07-19 14:55:57', '2025-12-17 19:46:30', 'mjj86rgm', '7074358'), + (11, 2520, 'attending', '2024-05-12 04:03:57', '2025-12-17 19:46:35', 'mjj86rgm', '7074360'), + (11, 2521, 'maybe', '2024-06-20 23:42:43', '2025-12-17 19:46:29', 'mjj86rgm', '7074361'), + (11, 2523, 'not_attending', '2024-05-23 13:24:31', '2025-12-17 19:46:36', 'mjj86rgm', '7074363'), + (11, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mjj86rgm', '7074364'), + (11, 2525, 'attending', '2024-06-10 02:26:59', '2025-12-17 19:46:28', 'mjj86rgm', '7074365'), + (11, 2528, 'not_attending', '2024-08-05 00:32:41', '2025-12-17 19:46:31', 'mjj86rgm', '7074368'), + (11, 2534, 'attending', '2024-03-13 16:22:26', '2025-12-17 19:46:32', 'mjj86rgm', '7076875'), + (11, 2536, 'attending', '2024-03-14 12:30:41', '2025-12-17 19:46:33', 'mjj86rgm', '7077689'), + (11, 2537, 'attending', '2024-03-22 14:17:05', '2025-12-17 19:46:33', 'mjj86rgm', '7085484'), + (11, 2538, 'not_attending', '2024-03-17 14:49:20', '2025-12-17 19:46:33', 'mjj86rgm', '7085485'), + (11, 2539, 'attending', '2024-03-19 23:46:01', '2025-12-17 19:46:33', 'mjj86rgm', '7085486'), + (11, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mjj86rgm', '7089267'), + (11, 2541, 'attending', '2024-03-17 14:20:09', '2025-12-17 19:46:33', 'mjj86rgm', '7089404'), + (11, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mjj86rgm', '7098747'), + (11, 2552, 'attending', '2024-03-27 22:08:44', '2025-12-17 19:46:33', 'mjj86rgm', '7111123'), + (11, 2553, 'attending', '2024-03-29 13:22:18', '2025-12-17 19:46:33', 'mjj86rgm', '7113468'), + (11, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mjj86rgm', '7114856'), + (11, 2555, 'attending', '2024-04-02 18:20:27', '2025-12-17 19:46:33', 'mjj86rgm', '7114951'), + (11, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mjj86rgm', '7114955'), + (11, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mjj86rgm', '7114956'), + (11, 2558, 'not_attending', '2024-04-03 00:19:22', '2025-12-17 19:46:35', 'mjj86rgm', '7114957'), + (11, 2561, 'attending', '2024-04-01 22:19:06', '2025-12-17 19:46:33', 'mjj86rgm', '7131267'), + (11, 2562, 'attending', '2024-04-02 18:10:28', '2025-12-17 19:46:33', 'mjj86rgm', '7134552'), + (11, 2563, 'attending', '2024-04-02 18:31:59', '2025-12-17 19:46:33', 'mjj86rgm', '7134734'), + (11, 2564, 'attending', '2024-04-08 22:59:21', '2025-12-17 19:46:33', 'mjj86rgm', '7134735'), + (11, 2565, 'attending', '2024-04-02 20:53:53', '2025-12-17 19:46:33', 'mjj86rgm', '7135074'), + (11, 2566, 'attending', '2024-04-03 01:42:06', '2025-12-17 19:46:34', 'mjj86rgm', '7140664'), + (11, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mjj86rgm', '7153615'), + (11, 2569, 'maybe', '2024-04-07 06:01:16', '2025-12-17 19:46:33', 'mjj86rgm', '7154056'), + (11, 2570, 'attending', '2024-04-07 17:43:19', '2025-12-17 19:46:33', 'mjj86rgm', '7159187'), + (11, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mjj86rgm', '7159484'), + (11, 2572, 'maybe', '2024-04-08 22:14:52', '2025-12-17 19:46:33', 'mjj86rgm', '7159522'), + (11, 2573, 'attending', '2024-04-09 15:36:28', '2025-12-17 19:46:34', 'mjj86rgm', '7160612'), + (11, 2575, 'not_attending', '2024-04-12 18:02:06', '2025-12-17 19:46:33', 'mjj86rgm', '7164534'), + (11, 2576, 'attending', '2024-04-26 21:53:54', '2025-12-17 19:46:34', 'mjj86rgm', '7164538'), + (11, 2577, 'attending', '2024-04-10 20:46:26', '2025-12-17 19:46:33', 'mjj86rgm', '7166293'), + (11, 2578, 'maybe', '2024-04-11 21:35:06', '2025-12-17 19:46:34', 'mjj86rgm', '7167016'), + (11, 2579, 'attending', '2024-04-11 13:33:46', '2025-12-17 19:46:33', 'mjj86rgm', '7167020'), + (11, 2581, 'not_attending', '2024-04-13 13:16:37', '2025-12-17 19:46:34', 'mjj86rgm', '7169048'), + (11, 2583, 'attending', '2024-04-14 18:43:59', '2025-12-17 19:46:34', 'mjj86rgm', '7172946'), + (11, 2584, 'attending', '2024-04-15 01:13:02', '2025-12-17 19:46:34', 'mjj86rgm', '7175057'), + (11, 2585, 'attending', '2024-04-17 23:43:19', '2025-12-17 19:46:34', 'mjj86rgm', '7175828'), + (11, 2586, 'attending', '2024-04-15 18:42:31', '2025-12-17 19:46:34', 'mjj86rgm', '7176151'), + (11, 2587, 'attending', '2024-04-15 18:42:36', '2025-12-17 19:46:34', 'mjj86rgm', '7176152'), + (11, 2588, 'not_attending', '2024-04-16 03:41:05', '2025-12-17 19:46:34', 'mjj86rgm', '7177233'), + (11, 2589, 'not_attending', '2024-04-18 13:33:51', '2025-12-17 19:46:34', 'mjj86rgm', '7177235'), + (11, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mjj86rgm', '7178446'), + (11, 2593, 'attending', '2024-04-19 01:48:25', '2025-12-17 19:46:34', 'mjj86rgm', '7181003'), + (11, 2596, 'attending', '2024-04-24 15:15:43', '2025-12-17 19:46:34', 'mjj86rgm', '7183788'), + (11, 2599, 'attending', '2024-04-22 13:02:21', '2025-12-17 19:46:34', 'mjj86rgm', '7189372'), + (11, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mjj86rgm', '7220467'), + (11, 2603, 'attending', '2024-04-29 14:10:55', '2025-12-17 19:46:35', 'mjj86rgm', '7225669'), + (11, 2604, 'attending', '2024-04-29 14:11:04', '2025-12-17 19:46:36', 'mjj86rgm', '7225670'), + (11, 2606, 'attending', '2024-04-28 15:47:51', '2025-12-17 19:46:35', 'mjj86rgm', '7230496'), + (11, 2609, 'attending', '2024-05-06 21:11:33', '2025-12-17 19:46:35', 'mjj86rgm', '7240354'), + (11, 2611, 'attending', '2024-05-05 14:45:30', '2025-12-17 19:46:35', 'mjj86rgm', '7247642'), + (11, 2612, 'attending', '2024-05-06 14:56:07', '2025-12-17 19:46:35', 'mjj86rgm', '7247643'), + (11, 2613, 'maybe', '2024-05-09 16:54:28', '2025-12-17 19:46:35', 'mjj86rgm', '7247644'), + (11, 2614, 'attending', '2024-05-02 16:40:08', '2025-12-17 19:46:35', 'mjj86rgm', '7247645'), + (11, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mjj86rgm', '7251633'), + (11, 2620, 'maybe', '2024-05-12 04:04:03', '2025-12-17 19:46:35', 'mjj86rgm', '7258097'), + (11, 2621, 'attending', '2024-05-07 01:27:34', '2025-12-17 19:46:35', 'mjj86rgm', '7258170'), + (11, 2622, 'attending', '2024-05-09 05:24:22', '2025-12-17 19:46:35', 'mjj86rgm', '7262064'), + (11, 2623, 'maybe', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mjj86rgm', '7263048'), + (11, 2626, 'not_attending', '2024-05-17 14:25:21', '2025-12-17 19:46:35', 'mjj86rgm', '7264723'), + (11, 2627, 'not_attending', '2024-05-23 16:39:39', '2025-12-17 19:46:35', 'mjj86rgm', '7264724'), + (11, 2628, 'attending', '2024-05-22 00:29:10', '2025-12-17 19:46:36', 'mjj86rgm', '7264725'), + (11, 2629, 'attending', '2024-05-23 11:59:27', '2025-12-17 19:46:28', 'mjj86rgm', '7264726'), + (11, 2630, 'attending', '2024-05-15 05:10:08', '2025-12-17 19:46:35', 'mjj86rgm', '7264801'), + (11, 2639, 'attending', '2024-05-16 14:50:42', '2025-12-17 19:46:35', 'mjj86rgm', '7273242'), + (11, 2642, 'attending', '2024-05-18 01:49:23', '2025-12-17 19:46:35', 'mjj86rgm', '7276108'), + (11, 2647, 'attending', '2024-05-27 21:25:05', '2025-12-17 19:46:28', 'mjj86rgm', '7282057'), + (11, 2651, 'not_attending', '2024-05-24 21:46:32', '2025-12-17 19:46:35', 'mjj86rgm', '7288200'), + (11, 2652, 'not_attending', '2024-05-24 21:44:04', '2025-12-17 19:46:36', 'mjj86rgm', '7288339'), + (11, 2654, 'attending', '2024-05-26 21:39:35', '2025-12-17 19:46:36', 'mjj86rgm', '7291219'), + (11, 2656, 'attending', '2024-05-27 01:14:25', '2025-12-17 19:46:36', 'mjj86rgm', '7291301'), + (11, 2657, 'attending', '2024-05-29 01:24:49', '2025-12-17 19:46:36', 'mjj86rgm', '7294438'), + (11, 2660, 'attending', '2024-06-01 21:35:12', '2025-12-17 19:46:36', 'mjj86rgm', '7301638'), + (11, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mjj86rgm', '7302674'), + (11, 2663, 'not_attending', '2024-06-03 00:52:57', '2025-12-17 19:46:36', 'mjj86rgm', '7303913'), + (11, 2666, 'not_attending', '2024-06-05 23:10:38', '2025-12-17 19:46:36', 'mjj86rgm', '7307775'), + (11, 2667, 'attending', '2024-06-05 11:50:27', '2025-12-17 19:46:36', 'mjj86rgm', '7307776'), + (11, 2668, 'not_attending', '2024-06-05 23:10:43', '2025-12-17 19:46:36', 'mjj86rgm', '7308821'), + (11, 2669, 'maybe', '2024-06-08 14:47:03', '2025-12-17 19:46:36', 'mjj86rgm', '7318057'), + (11, 2672, 'attending', '2024-06-09 16:55:43', '2025-12-17 19:46:28', 'mjj86rgm', '7318459'), + (11, 2678, 'attending', '2024-06-10 15:50:54', '2025-12-17 19:46:28', 'mjj86rgm', '7319489'), + (11, 2679, 'attending', '2024-06-11 19:11:09', '2025-12-17 19:46:29', 'mjj86rgm', '7319490'), + (11, 2681, 'attending', '2024-06-10 02:08:33', '2025-12-17 19:46:28', 'mjj86rgm', '7320409'), + (11, 2682, 'attending', '2024-06-10 12:53:34', '2025-12-17 19:46:28', 'mjj86rgm', '7321862'), + (11, 2683, 'attending', '2024-06-10 17:26:14', '2025-12-17 19:46:28', 'mjj86rgm', '7321978'), + (11, 2684, 'attending', '2024-06-11 18:31:41', '2025-12-17 19:46:28', 'mjj86rgm', '7322001'), + (11, 2687, 'attending', '2024-06-11 20:32:32', '2025-12-17 19:46:28', 'mjj86rgm', '7324019'), + (11, 2688, 'attending', '2024-06-12 16:05:07', '2025-12-17 19:46:29', 'mjj86rgm', '7324073'), + (11, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mjj86rgm', '7324074'), + (11, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mjj86rgm', '7324075'), + (11, 2691, 'attending', '2024-07-16 00:14:19', '2025-12-17 19:46:30', 'mjj86rgm', '7324076'), + (11, 2692, 'attending', '2024-07-22 20:57:45', '2025-12-17 19:46:30', 'mjj86rgm', '7324077'), + (11, 2693, 'not_attending', '2024-07-30 12:16:19', '2025-12-17 19:46:31', 'mjj86rgm', '7324078'), + (11, 2694, 'not_attending', '2024-08-01 22:17:53', '2025-12-17 19:46:31', 'mjj86rgm', '7324079'), + (11, 2696, 'not_attending', '2024-08-20 12:26:22', '2025-12-17 19:46:32', 'mjj86rgm', '7324081'), + (11, 2697, 'not_attending', '2024-08-27 00:00:09', '2025-12-17 19:46:32', 'mjj86rgm', '7324082'), + (11, 2698, 'not_attending', '2024-09-01 22:28:43', '2025-12-17 19:46:24', 'mjj86rgm', '7324083'), + (11, 2699, 'attending', '2024-06-12 15:25:06', '2025-12-17 19:46:28', 'mjj86rgm', '7324385'), + (11, 2700, 'not_attending', '2024-06-13 13:18:10', '2025-12-17 19:46:28', 'mjj86rgm', '7324388'), + (11, 2702, 'attending', '2024-06-12 22:18:29', '2025-12-17 19:46:28', 'mjj86rgm', '7324867'), + (11, 2706, 'attending', '2024-06-13 13:43:34', '2025-12-17 19:46:28', 'mjj86rgm', '7324947'), + (11, 2708, 'attending', '2024-06-13 20:23:03', '2025-12-17 19:46:28', 'mjj86rgm', '7325048'), + (11, 2711, 'attending', '2024-07-19 22:44:01', '2025-12-17 19:46:30', 'mjj86rgm', '7326524'), + (11, 2714, 'attending', '2024-06-15 14:30:05', '2025-12-17 19:46:28', 'mjj86rgm', '7326981'), + (11, 2716, 'attending', '2024-06-16 19:29:07', '2025-12-17 19:46:29', 'mjj86rgm', '7329096'), + (11, 2718, 'attending', '2024-06-18 17:50:20', '2025-12-17 19:46:28', 'mjj86rgm', '7330458'), + (11, 2721, 'attending', '2024-06-23 04:34:58', '2025-12-17 19:46:29', 'mjj86rgm', '7331456'), + (11, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mjj86rgm', '7331457'), + (11, 2723, 'attending', '2024-06-19 22:27:56', '2025-12-17 19:46:29', 'mjj86rgm', '7332389'), + (11, 2724, 'attending', '2024-06-19 17:53:29', '2025-12-17 19:46:29', 'mjj86rgm', '7332562'), + (11, 2725, 'attending', '2024-06-19 17:56:59', '2025-12-17 19:46:28', 'mjj86rgm', '7332564'), + (11, 2727, 'attending', '2024-06-19 21:22:10', '2025-12-17 19:46:29', 'mjj86rgm', '7332865'), + (11, 2728, 'not_attending', '2024-06-20 23:42:52', '2025-12-17 19:46:29', 'mjj86rgm', '7334124'), + (11, 2735, 'attending', '2024-06-28 14:05:29', '2025-12-17 19:46:29', 'mjj86rgm', '7340369'), + (11, 2737, 'maybe', '2024-07-01 15:01:06', '2025-12-17 19:46:29', 'mjj86rgm', '7344070'), + (11, 2739, 'attending', '2024-06-30 23:17:49', '2025-12-17 19:46:29', 'mjj86rgm', '7344575'), + (11, 2740, 'attending', '2024-07-01 12:31:52', '2025-12-17 19:46:29', 'mjj86rgm', '7344576'), + (11, 2742, 'attending', '2024-07-02 01:40:21', '2025-12-17 19:46:29', 'mjj86rgm', '7345167'), + (11, 2743, 'not_attending', '2024-07-04 01:29:28', '2025-12-17 19:46:29', 'mjj86rgm', '7345688'), + (11, 2744, 'attending', '2024-07-02 14:34:18', '2025-12-17 19:46:29', 'mjj86rgm', '7347764'), + (11, 2748, 'attending', '2024-07-05 22:35:44', '2025-12-17 19:46:29', 'mjj86rgm', '7353759'), + (11, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mjj86rgm', '7356752'), + (11, 2763, 'maybe', '2024-07-19 14:55:46', '2025-12-17 19:46:30', 'mjj86rgm', '7363594'), + (11, 2764, 'maybe', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'mjj86rgm', '7363595'), + (11, 2766, 'attending', '2024-07-22 20:58:37', '2025-12-17 19:46:30', 'mjj86rgm', '7363643'), + (11, 2767, 'attending', '2024-07-19 14:55:53', '2025-12-17 19:46:30', 'mjj86rgm', '7364726'), + (11, 2771, 'attending', '2024-07-21 18:22:08', '2025-12-17 19:46:30', 'mjj86rgm', '7368263'), + (11, 2772, 'attending', '2024-07-22 14:30:39', '2025-12-17 19:46:30', 'mjj86rgm', '7368267'), + (11, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mjj86rgm', '7368606'), + (11, 2776, 'attending', '2024-07-25 15:37:05', '2025-12-17 19:46:30', 'mjj86rgm', '7370690'), + (11, 2780, 'attending', '2024-07-26 13:44:54', '2025-12-17 19:46:30', 'mjj86rgm', '7371849'), + (11, 2782, 'maybe', '2024-07-28 18:45:31', '2025-12-17 19:46:30', 'mjj86rgm', '7376725'), + (11, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mjj86rgm', '7397462'), + (11, 2803, 'attending', '2024-08-20 11:46:31', '2025-12-17 19:46:32', 'mjj86rgm', '7397869'), + (11, 2806, 'attending', '2024-09-08 18:47:53', '2025-12-17 19:46:25', 'mjj86rgm', '7404888'), + (11, 2808, 'maybe', '2024-08-26 23:16:26', '2025-12-17 19:46:32', 'mjj86rgm', '7412860'), + (11, 2821, 'attending', '2024-09-30 14:35:01', '2025-12-17 19:46:26', 'mjj86rgm', '7424275'), + (11, 2822, 'attending', '2024-10-22 02:30:18', '2025-12-17 19:46:26', 'mjj86rgm', '7424276'), + (11, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mjj86rgm', '7432751'), + (11, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mjj86rgm', '7432752'), + (11, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mjj86rgm', '7432753'), + (11, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mjj86rgm', '7432754'), + (11, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mjj86rgm', '7432755'), + (11, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mjj86rgm', '7432756'), + (11, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mjj86rgm', '7432758'), + (11, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mjj86rgm', '7432759'), + (11, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mjj86rgm', '7433834'), + (11, 2838, 'not_attending', '2024-09-25 21:27:33', '2025-12-17 19:46:25', 'mjj86rgm', '7439182'), + (11, 2855, 'attending', '2024-10-01 11:49:55', '2025-12-17 19:46:26', 'mjj86rgm', '7469385'), + (11, 2856, 'maybe', '2024-10-10 18:37:30', '2025-12-17 19:46:26', 'mjj86rgm', '7469386'), + (11, 2857, 'not_attending', '2024-10-23 12:55:26', '2025-12-17 19:46:26', 'mjj86rgm', '7469387'), + (11, 2858, 'attending', '2024-10-16 23:21:12', '2025-12-17 19:46:26', 'mjj86rgm', '7469388'), + (11, 2861, 'attending', '2024-10-01 11:49:52', '2025-12-17 19:46:26', 'mjj86rgm', '7469826'), + (11, 2862, 'not_attending', '2024-09-30 20:16:44', '2025-12-17 19:46:25', 'mjj86rgm', '7470197'), + (11, 2863, 'not_attending', '2024-10-01 11:50:22', '2025-12-17 19:46:26', 'mjj86rgm', '7470275'), + (11, 2864, 'maybe', '2024-10-14 22:46:11', '2025-12-17 19:46:26', 'mjj86rgm', '7471199'), + (11, 2865, 'not_attending', '2024-10-28 15:05:55', '2025-12-17 19:46:26', 'mjj86rgm', '7471200'), + (11, 2867, 'attending', '2024-12-05 22:18:44', '2025-12-17 19:46:21', 'mjj86rgm', '7471202'), + (11, 2871, 'attending', '2024-10-14 22:46:03', '2025-12-17 19:46:26', 'mjj86rgm', '7480481'), + (11, 2878, 'attending', '2024-10-16 21:54:47', '2025-12-17 19:46:26', 'mjj86rgm', '7633857'), + (11, 2881, 'attending', '2024-11-02 13:20:25', '2025-12-17 19:46:26', 'mjj86rgm', '7644047'), + (11, 2882, 'not_attending', '2024-10-14 22:47:41', '2025-12-17 19:46:26', 'mjj86rgm', '7644822'), + (11, 2883, 'attending', '2024-10-17 01:04:51', '2025-12-17 19:46:26', 'mjj86rgm', '7649157'), + (11, 2886, 'not_attending', '2024-11-02 13:20:38', '2025-12-17 19:46:26', 'mjj86rgm', '7654498'), + (11, 2888, 'attending', '2024-10-21 09:35:16', '2025-12-17 19:46:26', 'mjj86rgm', '7654822'), + (11, 2891, 'maybe', '2024-10-25 17:12:39', '2025-12-17 19:46:26', 'mjj86rgm', '7668163'), + (11, 2892, 'not_attending', '2024-10-28 15:05:37', '2025-12-17 19:46:26', 'mjj86rgm', '7672064'), + (11, 2893, 'not_attending', '2024-11-02 02:24:25', '2025-12-17 19:46:26', 'mjj86rgm', '7672705'), + (11, 2895, 'attending', '2024-11-04 23:20:47', '2025-12-17 19:46:26', 'mjj86rgm', '7682072'), + (11, 2896, 'attending', '2024-11-09 04:37:19', '2025-12-17 19:46:27', 'mjj86rgm', '7683647'), + (11, 2897, 'maybe', '2024-11-15 17:09:12', '2025-12-17 19:46:27', 'mjj86rgm', '7683650'), + (11, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'mjj86rgm', '7685613'), + (11, 2900, 'attending', '2024-11-08 00:55:32', '2025-12-17 19:46:26', 'mjj86rgm', '7686090'), + (11, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mjj86rgm', '7688194'), + (11, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mjj86rgm', '7688196'), + (11, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mjj86rgm', '7688289'), + (11, 2911, 'attending', '2024-11-11 04:01:15', '2025-12-17 19:46:27', 'mjj86rgm', '7689876'), + (11, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'mjj86rgm', '7692763'), + (11, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mjj86rgm', '7697552'), + (11, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mjj86rgm', '7699878'), + (11, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mjj86rgm', '7704043'), + (11, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mjj86rgm', '7712467'), + (11, 2925, 'attending', '2024-12-09 22:01:56', '2025-12-17 19:46:21', 'mjj86rgm', '7713584'), + (11, 2926, 'attending', '2024-12-05 21:59:45', '2025-12-17 19:46:21', 'mjj86rgm', '7713585'), + (11, 2927, 'not_attending', '2024-12-14 00:47:41', '2025-12-17 19:46:22', 'mjj86rgm', '7713586'), + (11, 2930, 'attending', '2024-12-09 22:01:22', '2025-12-17 19:46:21', 'mjj86rgm', '7724554'), + (11, 2939, 'not_attending', '2025-02-15 21:01:14', '2025-12-17 19:46:24', 'mjj86rgm', '7725957'), + (11, 2952, 'attending', '2024-12-12 01:15:31', '2025-12-17 19:46:21', 'mjj86rgm', '7730167'), + (11, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mjj86rgm', '7738518'), + (11, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mjj86rgm', '7750636'), + (11, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mjj86rgm', '7796540'), + (11, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mjj86rgm', '7796541'), + (11, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mjj86rgm', '7796542'), + (11, 2971, 'attending', '2025-01-15 00:37:07', '2025-12-17 19:46:22', 'mjj86rgm', '7812230'), + (11, 2972, 'attending', '2025-01-21 16:17:30', '2025-12-17 19:46:22', 'mjj86rgm', '7812563'), + (11, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mjj86rgm', '7825913'), + (11, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'mjj86rgm', '7825920'), + (11, 2981, 'not_attending', '2025-01-29 17:00:37', '2025-12-17 19:46:22', 'mjj86rgm', '7826124'), + (11, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mjj86rgm', '7826209'), + (11, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mjj86rgm', '7834742'), + (11, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'mjj86rgm', '7842108'), + (11, 2990, 'attending', '2025-02-11 03:31:36', '2025-12-17 19:46:23', 'mjj86rgm', '7842898'), + (11, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mjj86rgm', '7842902'), + (11, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mjj86rgm', '7842903'), + (11, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mjj86rgm', '7842904'), + (11, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mjj86rgm', '7842905'), + (11, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'mjj86rgm', '7842906'), + (11, 2996, 'attending', '2025-02-25 01:49:53', '2025-12-17 19:46:24', 'mjj86rgm', '7842907'), + (11, 2998, 'attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'mjj86rgm', '7842909'), + (11, 3002, 'attending', '2025-02-20 03:03:51', '2025-12-17 19:46:24', 'mjj86rgm', '7854212'), + (11, 3004, 'maybe', '2025-02-20 02:33:50', '2025-12-17 19:46:24', 'mjj86rgm', '7854599'), + (11, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mjj86rgm', '7855719'), + (11, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mjj86rgm', '7860683'), + (11, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mjj86rgm', '7860684'), + (11, 3009, 'attending', '2025-02-27 16:09:13', '2025-12-17 19:46:18', 'mjj86rgm', '7864019'), + (11, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mjj86rgm', '7866095'), + (11, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mjj86rgm', '7869170'), + (11, 3014, 'maybe', '2025-03-31 21:59:46', '2025-12-17 19:46:20', 'mjj86rgm', '7869185'), + (11, 3017, 'attending', '2025-03-11 23:37:11', '2025-12-17 19:46:19', 'mjj86rgm', '7869188'), + (11, 3018, 'not_attending', '2025-04-08 17:37:38', '2025-12-17 19:46:20', 'mjj86rgm', '7869189'), + (11, 3023, 'attending', '2025-03-04 03:45:22', '2025-12-17 19:46:19', 'mjj86rgm', '7869194'), + (11, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'mjj86rgm', '7869195'), + (11, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mjj86rgm', '7869201'), + (11, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mjj86rgm', '7877465'), + (11, 3034, 'attending', '2025-03-11 21:43:55', '2025-12-17 19:46:18', 'mjj86rgm', '7878570'), + (11, 3036, 'attending', '2025-03-13 15:39:51', '2025-12-17 19:46:19', 'mjj86rgm', '7880952'), + (11, 3039, 'not_attending', '2025-03-18 21:48:57', '2025-12-17 19:46:19', 'mjj86rgm', '7881992'), + (11, 3054, 'attending', '2025-03-17 00:15:41', '2025-12-17 19:46:19', 'mjj86rgm', '7884168'), + (11, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mjj86rgm', '7888250'), + (11, 3057, 'attending', '2025-03-24 23:02:37', '2025-12-17 19:46:19', 'mjj86rgm', '7890059'), + (11, 3062, 'attending', '2025-03-29 19:01:01', '2025-12-17 19:46:19', 'mjj86rgm', '7892738'), + (11, 3083, 'attending', '2025-04-09 20:55:18', '2025-12-17 19:46:20', 'mjj86rgm', '7903308'), + (11, 3088, 'attending', '2025-06-06 16:34:18', '2025-12-17 19:46:15', 'mjj86rgm', '7904777'), + (11, 3089, 'not_attending', '2025-04-13 17:13:49', '2025-12-17 19:46:20', 'mjj86rgm', '7911208'), + (11, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjj86rgm', '8349164'), + (11, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjj86rgm', '8349545'), + (11, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mjj86rgm', '8353584'), + (11, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjj86rgm', '8368028'), + (11, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjj86rgm', '8368029'), + (11, 3133, 'attending', '2025-05-31 15:36:17', '2025-12-17 19:46:14', 'mjj86rgm', '8368030'), + (11, 3142, 'attending', '2025-05-28 19:28:59', '2025-12-17 19:46:21', 'mjj86rgm', '8387505'), + (11, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjj86rgm', '8388462'), + (11, 3150, 'maybe', '2025-06-06 16:34:21', '2025-12-17 19:46:15', 'mjj86rgm', '8393174'), + (11, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjj86rgm', '8400273'), + (11, 3154, 'attending', '2025-06-25 19:00:02', '2025-12-17 19:46:15', 'mjj86rgm', '8400274'), + (11, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjj86rgm', '8400275'), + (11, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mjj86rgm', '8400276'), + (11, 3160, 'maybe', '2025-06-06 16:34:01', '2025-12-17 19:46:15', 'mjj86rgm', '8401411'), + (11, 3161, 'not_attending', '2025-06-06 16:33:45', '2025-12-17 19:46:15', 'mjj86rgm', '8401412'), + (11, 3167, 'not_attending', '2025-06-09 20:47:02', '2025-12-17 19:46:15', 'mjj86rgm', '8404521'), + (11, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjj86rgm', '8404977'), + (11, 3171, 'attending', '2025-06-13 18:00:32', '2025-12-17 19:46:15', 'mjj86rgm', '8409765'), + (11, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mjj86rgm', '8430783'), + (11, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjj86rgm', '8430784'), + (11, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjj86rgm', '8430799'), + (11, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjj86rgm', '8430800'), + (11, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjj86rgm', '8430801'), + (11, 3188, 'attending', '2025-07-12 17:39:37', '2025-12-17 19:46:17', 'mjj86rgm', '8438709'), + (11, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjj86rgm', '8457738'), + (11, 3195, 'attending', '2025-08-05 22:22:47', '2025-12-17 19:46:17', 'mjj86rgm', '8458118'), + (11, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjj86rgm', '8459566'), + (11, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjj86rgm', '8459567'), + (11, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjj86rgm', '8461032'), + (11, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjj86rgm', '8477877'), + (11, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'mjj86rgm', '8485688'), + (11, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mjj86rgm', '8490587'), + (11, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mjj86rgm', '8493552'), + (11, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mjj86rgm', '8493553'), + (11, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mjj86rgm', '8493554'), + (11, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mjj86rgm', '8493555'), + (11, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mjj86rgm', '8493556'), + (11, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mjj86rgm', '8493557'), + (11, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mjj86rgm', '8493558'), + (11, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mjj86rgm', '8493559'), + (11, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mjj86rgm', '8493560'), + (11, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'mjj86rgm', '8493561'), + (11, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mjj86rgm', '8493572'), + (11, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mjj86rgm', '8540725'), + (11, 3295, 'not_attending', '2025-10-30 15:54:14', '2025-12-17 19:46:14', 'mjj86rgm', '8547541'), + (11, 3305, 'not_attending', '2025-12-07 00:18:33', '2025-12-17 19:46:11', 'mjj86rgm', '8550025'), + (11, 3306, 'attending', '2025-12-07 00:18:39', '2025-12-17 19:46:11', 'mjj86rgm', '8550026'), + (11, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mjj86rgm', '8555421'), + (12, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZaNBe4', '6484200'), + (12, 2310, 'attending', '2023-11-10 15:35:51', '2025-12-17 19:46:47', 'dKZaNBe4', '6487709'), + (12, 2320, 'maybe', '2023-11-09 23:45:59', '2025-12-17 19:46:47', 'dKZaNBe4', '6508647'), + (12, 2322, 'attending', '2023-11-12 08:28:32', '2025-12-17 19:46:48', 'dKZaNBe4', '6514659'), + (12, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZaNBe4', '6514660'), + (12, 2324, 'not_attending', '2023-12-03 04:20:53', '2025-12-17 19:46:49', 'dKZaNBe4', '6514662'), + (12, 2325, 'attending', '2023-12-05 04:57:29', '2025-12-17 19:46:36', 'dKZaNBe4', '6514663'), + (12, 2339, 'attending', '2023-11-10 20:16:54', '2025-12-17 19:46:47', 'dKZaNBe4', '6539128'), + (12, 2340, 'attending', '2023-11-12 08:28:12', '2025-12-17 19:46:48', 'dKZaNBe4', '6540279'), + (12, 2342, 'attending', '2023-11-13 19:45:17', '2025-12-17 19:46:47', 'dKZaNBe4', '6545076'), + (12, 2345, 'not_attending', '2023-11-29 22:56:36', '2025-12-17 19:46:48', 'dKZaNBe4', '6582414'), + (12, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZaNBe4', '6584747'), + (12, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZaNBe4', '6587097'), + (12, 2353, 'attending', '2023-11-26 21:59:23', '2025-12-17 19:46:48', 'dKZaNBe4', '6588894'), + (12, 2355, 'attending', '2023-11-30 23:55:51', '2025-12-17 19:46:49', 'dKZaNBe4', '6593339'), + (12, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZaNBe4', '6609022'), + (12, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZaNBe4', '6632757'), + (12, 2376, 'not_attending', '2024-01-21 05:48:18', '2025-12-17 19:46:40', 'dKZaNBe4', '6642900'), + (12, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZaNBe4', '6644187'), + (12, 2381, 'not_attending', '2024-01-02 02:51:27', '2025-12-17 19:46:37', 'dKZaNBe4', '6646398'), + (12, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZaNBe4', '6648951'), + (12, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZaNBe4', '6648952'), + (12, 2388, 'attending', '2024-01-03 05:39:48', '2025-12-17 19:46:37', 'dKZaNBe4', '6649244'), + (12, 2395, 'attending', '2024-01-16 00:15:23', '2025-12-17 19:46:38', 'dKZaNBe4', '6654471'), + (12, 2396, 'attending', '2024-01-16 00:15:36', '2025-12-17 19:46:38', 'dKZaNBe4', '6655401'), + (12, 2399, 'attending', '2024-01-09 15:33:04', '2025-12-17 19:46:37', 'dKZaNBe4', '6657583'), + (12, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZaNBe4', '6661585'), + (12, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZaNBe4', '6661588'), + (12, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZaNBe4', '6661589'), + (12, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZaNBe4', '6699906'), + (12, 2408, 'attending', '2024-01-21 05:46:57', '2025-12-17 19:46:40', 'dKZaNBe4', '6699907'), + (12, 2409, 'attending', '2024-01-30 15:35:02', '2025-12-17 19:46:41', 'dKZaNBe4', '6699909'), + (12, 2410, 'attending', '2024-02-06 22:29:23', '2025-12-17 19:46:41', 'dKZaNBe4', '6699911'), + (12, 2411, 'attending', '2024-02-12 05:31:11', '2025-12-17 19:46:41', 'dKZaNBe4', '6699913'), + (12, 2412, 'attending', '2024-02-20 01:47:51', '2025-12-17 19:46:43', 'dKZaNBe4', '6700717'), + (12, 2414, 'attending', '2024-01-20 19:40:57', '2025-12-17 19:46:40', 'dKZaNBe4', '6701000'), + (12, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZaNBe4', '6701109'), + (12, 2419, 'not_attending', '2024-01-21 05:49:52', '2025-12-17 19:46:41', 'dKZaNBe4', '6704505'), + (12, 2421, 'not_attending', '2024-01-21 05:52:43', '2025-12-17 19:46:40', 'dKZaNBe4', '6704598'), + (12, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZaNBe4', '6705219'), + (12, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZaNBe4', '6710153'), + (12, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZaNBe4', '6711552'), + (12, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZaNBe4', '6711553'), + (12, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKZaNBe4', '6722688'), + (12, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKZaNBe4', '6730620'), + (12, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKZaNBe4', '6730642'), + (12, 2445, 'attending', '2024-02-17 00:10:09', '2025-12-17 19:46:41', 'dKZaNBe4', '6734368'), + (12, 2447, 'attending', '2024-03-14 13:34:54', '2025-12-17 19:46:32', 'dKZaNBe4', '6734370'), + (12, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKZaNBe4', '6740364'), + (12, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKZaNBe4', '6743829'), + (12, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKZaNBe4', '7030380'), + (12, 2471, 'attending', '2024-02-24 00:59:25', '2025-12-17 19:46:42', 'dKZaNBe4', '7032425'), + (12, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKZaNBe4', '7033677'), + (12, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKZaNBe4', '7035415'), + (12, 2481, 'attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKZaNBe4', '7044715'), + (12, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKZaNBe4', '7050318'), + (12, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKZaNBe4', '7050319'), + (12, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKZaNBe4', '7050322'), + (12, 2498, 'attending', '2024-03-20 21:34:26', '2025-12-17 19:46:33', 'dKZaNBe4', '7057662'), + (12, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKZaNBe4', '7057804'), + (12, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dKZaNBe4', '7059866'), + (12, 2505, 'attending', '2024-03-19 21:12:18', '2025-12-17 19:46:33', 'dKZaNBe4', '7069163'), + (12, 2507, 'attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKZaNBe4', '7072824'), + (12, 2508, 'attending', '2024-03-13 14:18:51', '2025-12-17 19:46:32', 'dKZaNBe4', '7074348'), + (12, 2510, 'attending', '2024-03-21 23:48:08', '2025-12-17 19:46:33', 'dKZaNBe4', '7074350'), + (12, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dKZaNBe4', '7074364'), + (12, 2537, 'attending', '2024-03-22 13:37:49', '2025-12-17 19:46:33', 'dKZaNBe4', '7085484'), + (12, 2538, 'not_attending', '2024-03-24 16:58:38', '2025-12-17 19:46:33', 'dKZaNBe4', '7085485'), + (12, 2539, 'attending', '2024-04-05 01:29:45', '2025-12-17 19:46:33', 'dKZaNBe4', '7085486'), + (12, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKZaNBe4', '7089267'), + (12, 2541, 'attending', '2024-03-18 23:15:07', '2025-12-17 19:46:33', 'dKZaNBe4', '7089404'), + (12, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKZaNBe4', '7098747'), + (12, 2551, 'attending', '2024-03-31 17:44:41', '2025-12-17 19:46:33', 'dKZaNBe4', '7109912'), + (12, 2553, 'not_attending', '2024-03-29 19:05:11', '2025-12-17 19:46:33', 'dKZaNBe4', '7113468'), + (12, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKZaNBe4', '7114856'), + (12, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKZaNBe4', '7114951'), + (12, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKZaNBe4', '7114955'), + (12, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKZaNBe4', '7114956'), + (12, 2558, 'not_attending', '2024-04-20 18:25:19', '2025-12-17 19:46:35', 'dKZaNBe4', '7114957'), + (12, 2563, 'not_attending', '2024-04-09 13:39:02', '2025-12-17 19:46:33', 'dKZaNBe4', '7134734'), + (12, 2564, 'attending', '2024-04-09 13:38:38', '2025-12-17 19:46:33', 'dKZaNBe4', '7134735'), + (12, 2568, 'maybe', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKZaNBe4', '7153615'), + (12, 2570, 'attending', '2024-04-07 19:58:37', '2025-12-17 19:46:33', 'dKZaNBe4', '7159187'), + (12, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKZaNBe4', '7159484'), + (12, 2573, 'attending', '2024-04-14 02:10:44', '2025-12-17 19:46:34', 'dKZaNBe4', '7160612'), + (12, 2577, 'attending', '2024-04-11 14:36:43', '2025-12-17 19:46:33', 'dKZaNBe4', '7166293'), + (12, 2578, 'attending', '2024-04-11 21:35:15', '2025-12-17 19:46:34', 'dKZaNBe4', '7167016'), + (12, 2579, 'attending', '2024-04-12 20:39:08', '2025-12-17 19:46:33', 'dKZaNBe4', '7167020'), + (12, 2581, 'attending', '2024-04-18 03:35:06', '2025-12-17 19:46:34', 'dKZaNBe4', '7169048'), + (12, 2583, 'attending', '2024-04-15 21:12:29', '2025-12-17 19:46:34', 'dKZaNBe4', '7172946'), + (12, 2585, 'attending', '2024-04-21 23:45:36', '2025-12-17 19:46:34', 'dKZaNBe4', '7175828'), + (12, 2588, 'attending', '2024-04-16 16:00:09', '2025-12-17 19:46:34', 'dKZaNBe4', '7177233'), + (12, 2589, 'attending', '2024-04-16 16:00:11', '2025-12-17 19:46:34', 'dKZaNBe4', '7177235'), + (12, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKZaNBe4', '7178446'), + (12, 2592, 'attending', '2024-04-20 18:24:56', '2025-12-17 19:46:34', 'dKZaNBe4', '7180959'), + (12, 2596, 'attending', '2024-04-26 13:45:15', '2025-12-17 19:46:34', 'dKZaNBe4', '7183788'), + (12, 2597, 'maybe', '2024-04-26 19:19:59', '2025-12-17 19:46:34', 'dKZaNBe4', '7186726'), + (12, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dKZaNBe4', '7220467'), + (12, 2603, 'attending', '2024-05-15 03:03:17', '2025-12-17 19:46:35', 'dKZaNBe4', '7225669'), + (12, 2604, 'not_attending', '2024-05-28 13:01:46', '2025-12-17 19:46:36', 'dKZaNBe4', '7225670'), + (12, 2605, 'attending', '2024-05-03 17:05:29', '2025-12-17 19:46:35', 'dKZaNBe4', '7229243'), + (12, 2606, 'attending', '2024-04-28 15:47:40', '2025-12-17 19:46:35', 'dKZaNBe4', '7230496'), + (12, 2609, 'not_attending', '2024-05-02 21:07:42', '2025-12-17 19:46:35', 'dKZaNBe4', '7240354'), + (12, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dKZaNBe4', '7251633'), + (12, 2621, 'not_attending', '2024-05-07 01:41:06', '2025-12-17 19:46:35', 'dKZaNBe4', '7258170'), + (12, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dKZaNBe4', '7263048'), + (12, 2626, 'attending', '2024-05-15 03:03:35', '2025-12-17 19:46:35', 'dKZaNBe4', '7264723'), + (12, 2627, 'not_attending', '2024-05-19 03:13:51', '2025-12-17 19:46:35', 'dKZaNBe4', '7264724'), + (12, 2628, 'attending', '2024-05-19 03:13:57', '2025-12-17 19:46:36', 'dKZaNBe4', '7264725'), + (12, 2629, 'attending', '2024-05-19 03:14:35', '2025-12-17 19:46:28', 'dKZaNBe4', '7264726'), + (12, 2644, 'attending', '2024-05-20 13:51:13', '2025-12-17 19:46:35', 'dKZaNBe4', '7279039'), + (12, 2646, 'attending', '2024-05-20 15:58:17', '2025-12-17 19:46:35', 'dKZaNBe4', '7281768'), + (12, 2649, 'not_attending', '2024-05-21 17:55:21', '2025-12-17 19:46:35', 'dKZaNBe4', '7282950'), + (12, 2659, 'attending', '2024-06-01 20:45:37', '2025-12-17 19:46:36', 'dKZaNBe4', '7299599'), + (12, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dKZaNBe4', '7302674'), + (12, 2663, 'maybe', '2024-06-03 18:41:40', '2025-12-17 19:46:36', 'dKZaNBe4', '7303913'), + (12, 2667, 'attending', '2024-06-05 15:03:58', '2025-12-17 19:46:36', 'dKZaNBe4', '7307776'), + (12, 2675, 'not_attending', '2024-07-23 02:09:52', '2025-12-17 19:46:31', 'dKZaNBe4', '7319481'), + (12, 2678, 'attending', '2024-06-13 17:43:11', '2025-12-17 19:46:28', 'dKZaNBe4', '7319489'), + (12, 2679, 'maybe', '2024-06-22 20:42:16', '2025-12-17 19:46:29', 'dKZaNBe4', '7319490'), + (12, 2681, 'attending', '2024-06-10 05:36:03', '2025-12-17 19:46:28', 'dKZaNBe4', '7320409'), + (12, 2682, 'attending', '2024-06-10 18:29:25', '2025-12-17 19:46:28', 'dKZaNBe4', '7321862'), + (12, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'dKZaNBe4', '7324019'), + (12, 2688, 'attending', '2024-06-24 13:50:44', '2025-12-17 19:46:29', 'dKZaNBe4', '7324073'), + (12, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dKZaNBe4', '7324074'), + (12, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dKZaNBe4', '7324075'), + (12, 2691, 'attending', '2024-07-17 13:22:59', '2025-12-17 19:46:30', 'dKZaNBe4', '7324076'), + (12, 2692, 'maybe', '2024-07-27 21:32:39', '2025-12-17 19:46:30', 'dKZaNBe4', '7324077'), + (12, 2693, 'attending', '2024-07-23 02:09:45', '2025-12-17 19:46:31', 'dKZaNBe4', '7324078'), + (12, 2694, 'attending', '2024-08-06 20:27:28', '2025-12-17 19:46:31', 'dKZaNBe4', '7324079'), + (12, 2695, 'not_attending', '2024-08-13 02:50:15', '2025-12-17 19:46:31', 'dKZaNBe4', '7324080'), + (12, 2696, 'attending', '2024-08-23 03:28:03', '2025-12-17 19:46:32', 'dKZaNBe4', '7324081'), + (12, 2697, 'attending', '2024-08-30 22:08:44', '2025-12-17 19:46:32', 'dKZaNBe4', '7324082'), + (12, 2698, 'attending', '2024-08-06 20:27:41', '2025-12-17 19:46:24', 'dKZaNBe4', '7324083'), + (12, 2699, 'attending', '2024-06-12 15:10:33', '2025-12-17 19:46:28', 'dKZaNBe4', '7324385'), + (12, 2702, 'attending', '2024-06-13 15:16:03', '2025-12-17 19:46:28', 'dKZaNBe4', '7324867'), + (12, 2705, 'maybe', '2024-06-13 13:30:57', '2025-12-17 19:46:29', 'dKZaNBe4', '7324944'), + (12, 2706, 'attending', '2024-06-13 13:36:50', '2025-12-17 19:46:28', 'dKZaNBe4', '7324947'), + (12, 2707, 'maybe', '2024-06-13 15:03:07', '2025-12-17 19:46:28', 'dKZaNBe4', '7324952'), + (12, 2712, 'attending', '2024-08-02 22:55:07', '2025-12-17 19:46:31', 'dKZaNBe4', '7326525'), + (12, 2719, 'attending', '2024-06-18 20:54:21', '2025-12-17 19:46:29', 'dKZaNBe4', '7331305'), + (12, 2721, 'attending', '2024-06-18 23:05:19', '2025-12-17 19:46:29', 'dKZaNBe4', '7331456'), + (12, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dKZaNBe4', '7331457'), + (12, 2724, 'attending', '2024-06-26 20:38:44', '2025-12-17 19:46:29', 'dKZaNBe4', '7332562'), + (12, 2730, 'attending', '2024-06-22 06:53:37', '2025-12-17 19:46:29', 'dKZaNBe4', '7335193'), + (12, 2734, 'not_attending', '2024-06-27 17:35:01', '2025-12-17 19:46:29', 'dKZaNBe4', '7339440'), + (12, 2746, 'not_attending', '2024-07-11 21:18:15', '2025-12-17 19:46:29', 'dKZaNBe4', '7348713'), + (12, 2747, 'attending', '2024-07-17 22:13:15', '2025-12-17 19:46:30', 'dKZaNBe4', '7353587'), + (12, 2749, 'attending', '2024-07-07 18:43:20', '2025-12-17 19:46:29', 'dKZaNBe4', '7355496'), + (12, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dKZaNBe4', '7356752'), + (12, 2755, 'maybe', '2024-07-10 21:01:21', '2025-12-17 19:46:29', 'dKZaNBe4', '7357808'), + (12, 2757, 'attending', '2024-07-11 15:41:00', '2025-12-17 19:46:30', 'dKZaNBe4', '7358733'), + (12, 2758, 'attending', '2024-07-11 22:20:02', '2025-12-17 19:46:30', 'dKZaNBe4', '7358837'), + (12, 2759, 'attending', '2024-07-12 18:04:01', '2025-12-17 19:46:30', 'dKZaNBe4', '7359624'), + (12, 2760, 'not_attending', '2024-07-18 19:35:41', '2025-12-17 19:46:30', 'dKZaNBe4', '7359871'), + (12, 2763, 'attending', '2024-07-17 13:23:14', '2025-12-17 19:46:30', 'dKZaNBe4', '7363594'), + (12, 2764, 'attending', '2024-07-14 23:08:11', '2025-12-17 19:46:30', 'dKZaNBe4', '7363595'), + (12, 2766, 'attending', '2024-07-21 21:06:51', '2025-12-17 19:46:30', 'dKZaNBe4', '7363643'), + (12, 2767, 'maybe', '2024-07-22 20:48:05', '2025-12-17 19:46:30', 'dKZaNBe4', '7364726'), + (12, 2768, 'attending', '2024-07-18 00:38:14', '2025-12-17 19:46:30', 'dKZaNBe4', '7366031'), + (12, 2769, 'attending', '2024-07-19 21:32:50', '2025-12-17 19:46:30', 'dKZaNBe4', '7366803'), + (12, 2773, 'not_attending', '2024-07-21 21:06:21', '2025-12-17 19:46:31', 'dKZaNBe4', '7368605'), + (12, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dKZaNBe4', '7368606'), + (12, 2781, 'attending', '2024-07-25 21:16:51', '2025-12-17 19:46:30', 'dKZaNBe4', '7373194'), + (12, 2786, 'attending', '2024-08-02 02:15:12', '2025-12-17 19:46:31', 'dKZaNBe4', '7381403'), + (12, 2798, 'attending', '2024-08-11 23:27:39', '2025-12-17 19:46:31', 'dKZaNBe4', '7395910'), + (12, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dKZaNBe4', '7397462'), + (12, 2802, 'attending', '2024-09-02 01:02:56', '2025-12-17 19:46:32', 'dKZaNBe4', '7397463'), + (12, 2804, 'attending', '2024-08-19 02:51:06', '2025-12-17 19:46:32', 'dKZaNBe4', '7399270'), + (12, 2806, 'attending', '2024-08-21 21:36:32', '2025-12-17 19:46:25', 'dKZaNBe4', '7404888'), + (12, 2808, 'attending', '2024-08-28 03:09:52', '2025-12-17 19:46:32', 'dKZaNBe4', '7412860'), + (12, 2809, 'attending', '2024-08-30 05:27:39', '2025-12-17 19:46:32', 'dKZaNBe4', '7414808'), + (12, 2811, 'attending', '2024-08-31 02:57:43', '2025-12-17 19:46:32', 'dKZaNBe4', '7418895'), + (12, 2817, 'maybe', '2024-09-29 19:30:00', '2025-12-17 19:46:25', 'dKZaNBe4', '7424270'), + (12, 2819, 'attending', '2024-10-19 20:41:15', '2025-12-17 19:46:26', 'dKZaNBe4', '7424273'), + (12, 2821, 'attending', '2024-10-09 15:34:01', '2025-12-17 19:46:26', 'dKZaNBe4', '7424275'), + (12, 2822, 'not_attending', '2024-11-07 02:33:34', '2025-12-17 19:46:26', 'dKZaNBe4', '7424276'), + (12, 2823, 'attending', '2024-09-06 13:45:29', '2025-12-17 19:46:24', 'dKZaNBe4', '7430247'), + (12, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dKZaNBe4', '7432751'), + (12, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dKZaNBe4', '7432752'), + (12, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dKZaNBe4', '7432753'), + (12, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dKZaNBe4', '7432754'), + (12, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dKZaNBe4', '7432755'), + (12, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dKZaNBe4', '7432756'), + (12, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dKZaNBe4', '7432758'), + (12, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dKZaNBe4', '7432759'), + (12, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dKZaNBe4', '7433834'), + (12, 2834, 'attending', '2024-09-11 01:52:13', '2025-12-17 19:46:25', 'dKZaNBe4', '7433852'), + (12, 2836, 'attending', '2024-09-14 20:27:24', '2025-12-17 19:46:25', 'dKZaNBe4', '7438708'), + (12, 2839, 'not_attending', '2024-09-25 19:49:23', '2025-12-17 19:46:25', 'dKZaNBe4', '7439262'), + (12, 2841, 'not_attending', '2024-09-16 01:07:15', '2025-12-17 19:46:25', 'dKZaNBe4', '7444444'), + (12, 2844, 'not_attending', '2024-09-20 14:46:27', '2025-12-17 19:46:25', 'dKZaNBe4', '7450233'), + (12, 2845, 'attending', '2024-09-21 21:22:47', '2025-12-17 19:46:25', 'dKZaNBe4', '7452129'), + (12, 2850, 'not_attending', '2024-10-02 00:14:08', '2025-12-17 19:46:25', 'dKZaNBe4', '7457153'), + (12, 2861, 'attending', '2024-09-30 19:58:50', '2025-12-17 19:46:26', 'dKZaNBe4', '7469826'), + (12, 2862, 'attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dKZaNBe4', '7470197'), + (12, 2869, 'attending', '2024-10-02 23:14:24', '2025-12-17 19:46:26', 'dKZaNBe4', '7474823'), + (12, 2870, 'attending', '2024-10-03 22:25:43', '2025-12-17 19:46:26', 'dKZaNBe4', '7475068'), + (12, 2871, 'attending', '2024-10-06 04:40:16', '2025-12-17 19:46:26', 'dKZaNBe4', '7480481'), + (12, 2883, 'attending', '2024-10-17 04:52:14', '2025-12-17 19:46:26', 'dKZaNBe4', '7649157'), + (12, 2891, 'maybe', '2024-10-26 19:06:10', '2025-12-17 19:46:26', 'dKZaNBe4', '7668163'), + (12, 2894, 'attending', '2024-11-02 20:55:50', '2025-12-17 19:46:26', 'dKZaNBe4', '7680059'), + (12, 2897, 'attending', '2024-11-14 21:10:00', '2025-12-17 19:46:27', 'dKZaNBe4', '7683650'), + (12, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'dKZaNBe4', '7685613'), + (12, 2899, 'attending', '2024-11-11 14:31:48', '2025-12-17 19:46:27', 'dKZaNBe4', '7685616'), + (12, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dKZaNBe4', '7688194'), + (12, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dKZaNBe4', '7688196'), + (12, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dKZaNBe4', '7688289'), + (12, 2906, 'maybe', '2024-11-09 21:53:41', '2025-12-17 19:46:26', 'dKZaNBe4', '7689366'), + (12, 2909, 'attending', '2024-11-11 00:01:03', '2025-12-17 19:46:27', 'dKZaNBe4', '7689771'), + (12, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dKZaNBe4', '7692763'), + (12, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dKZaNBe4', '7697552'), + (12, 2916, 'attending', '2024-11-17 19:12:15', '2025-12-17 19:46:27', 'dKZaNBe4', '7699006'), + (12, 2917, 'attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dKZaNBe4', '7699878'), + (12, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dKZaNBe4', '7704043'), + (12, 2922, 'maybe', '2024-11-25 23:38:21', '2025-12-17 19:46:21', 'dKZaNBe4', '7710890'), + (12, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dKZaNBe4', '7712467'), + (12, 2925, 'attending', '2024-12-03 04:45:23', '2025-12-17 19:46:21', 'dKZaNBe4', '7713584'), + (12, 2926, 'not_attending', '2024-12-03 04:45:19', '2025-12-17 19:46:21', 'dKZaNBe4', '7713585'), + (12, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dKZaNBe4', '7713586'), + (12, 2953, 'attending', '2024-12-14 18:37:13', '2025-12-17 19:46:21', 'dKZaNBe4', '7733836'), + (12, 2954, 'attending', '2024-12-14 18:28:11', '2025-12-17 19:46:21', 'dKZaNBe4', '7734260'), + (12, 2957, 'attending', '2024-12-15 21:00:04', '2025-12-17 19:46:21', 'dKZaNBe4', '7735370'), + (12, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dKZaNBe4', '7738518'), + (12, 2962, 'not_attending', '2024-12-26 20:50:08', '2025-12-17 19:46:22', 'dKZaNBe4', '7750632'), + (12, 2963, 'attending', '2024-12-28 19:05:03', '2025-12-17 19:46:22', 'dKZaNBe4', '7750636'), + (12, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dKZaNBe4', '7796540'), + (12, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dKZaNBe4', '7796541'), + (12, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dKZaNBe4', '7796542'), + (12, 2972, 'attending', '2025-01-15 20:13:20', '2025-12-17 19:46:22', 'dKZaNBe4', '7812563'), + (12, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dKZaNBe4', '7825913'), + (12, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dKZaNBe4', '7825920'), + (12, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dKZaNBe4', '7826209'), + (12, 2984, 'maybe', '2025-02-02 19:42:43', '2025-12-17 19:46:23', 'dKZaNBe4', '7830134'), + (12, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dKZaNBe4', '7834742'), + (12, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dKZaNBe4', '7842108'), + (12, 2990, 'attending', '2025-02-15 06:06:07', '2025-12-17 19:46:23', 'dKZaNBe4', '7842898'), + (12, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dKZaNBe4', '7842902'), + (12, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dKZaNBe4', '7842903'), + (12, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dKZaNBe4', '7842904'), + (12, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dKZaNBe4', '7842905'), + (12, 3001, 'attending', '2025-02-18 16:45:49', '2025-12-17 19:46:24', 'dKZaNBe4', '7854184'), + (12, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dKZaNBe4', '7855719'), + (12, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dKZaNBe4', '7860683'), + (12, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dKZaNBe4', '7860684'), + (12, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dKZaNBe4', '7866095'), + (12, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dKZaNBe4', '7869170'), + (12, 3014, 'attending', '2025-04-01 01:23:50', '2025-12-17 19:46:19', 'dKZaNBe4', '7869185'), + (12, 3015, 'attending', '2025-04-18 14:33:14', '2025-12-17 19:46:20', 'dKZaNBe4', '7869186'), + (12, 3016, 'attending', '2025-04-18 14:33:09', '2025-12-17 19:46:20', 'dKZaNBe4', '7869187'), + (12, 3017, 'attending', '2025-03-25 01:04:03', '2025-12-17 19:46:19', 'dKZaNBe4', '7869188'), + (12, 3028, 'attending', '2025-04-27 17:52:37', '2025-12-17 19:46:20', 'dKZaNBe4', '7869199'), + (12, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dKZaNBe4', '7869201'), + (12, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dKZaNBe4', '7877465'), + (12, 3041, 'attending', '2025-03-14 04:33:14', '2025-12-17 19:46:19', 'dKZaNBe4', '7881995'), + (12, 3043, 'maybe', '2025-03-15 19:49:28', '2025-12-17 19:46:19', 'dKZaNBe4', '7882587'), + (12, 3049, 'attending', '2025-03-16 16:47:55', '2025-12-17 19:46:19', 'dKZaNBe4', '7883215'), + (12, 3050, 'maybe', '2025-03-17 13:06:53', '2025-12-17 19:46:19', 'dKZaNBe4', '7884021'), + (12, 3053, 'attending', '2025-03-17 00:11:15', '2025-12-17 19:46:19', 'dKZaNBe4', '7884030'), + (12, 3055, 'maybe', '2025-03-27 03:28:42', '2025-12-17 19:46:19', 'dKZaNBe4', '7888118'), + (12, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dKZaNBe4', '7888250'), + (12, 3058, 'not_attending', '2025-03-27 22:15:01', '2025-12-17 19:46:19', 'dKZaNBe4', '7891460'), + (12, 3072, 'maybe', '2025-04-03 00:06:18', '2025-12-17 19:46:19', 'dKZaNBe4', '7895449'), + (12, 3081, 'not_attending', '2025-04-08 12:33:06', '2025-12-17 19:46:20', 'dKZaNBe4', '7902801'), + (12, 3088, 'attending', '2025-06-10 18:55:31', '2025-12-17 19:46:15', 'dKZaNBe4', '7904777'), + (12, 3091, 'not_attending', '2025-04-18 14:34:01', '2025-12-17 19:46:20', 'dKZaNBe4', '8340289'), + (12, 3093, 'not_attending', '2025-04-20 16:59:35', '2025-12-17 19:46:20', 'dKZaNBe4', '8342248'), + (12, 3094, 'not_attending', '2025-05-05 11:43:29', '2025-12-17 19:46:21', 'dKZaNBe4', '8342292'), + (12, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dKZaNBe4', '8349164'), + (12, 3105, 'attending', '2025-06-16 02:18:02', '2025-12-17 19:46:15', 'dKZaNBe4', '8349545'), + (12, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dKZaNBe4', '8353584'), + (12, 3113, 'attending', '2025-05-01 01:57:52', '2025-12-17 19:46:20', 'dKZaNBe4', '8355089'), + (12, 3125, 'attending', '2025-05-09 21:29:55', '2025-12-17 19:46:21', 'dKZaNBe4', '8364293'), + (12, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dKZaNBe4', '8368028'), + (12, 3132, 'not_attending', '2025-05-18 21:55:13', '2025-12-17 19:46:21', 'dKZaNBe4', '8368029'), + (12, 3133, 'attending', '2025-05-23 04:37:23', '2025-12-17 19:46:14', 'dKZaNBe4', '8368030'), + (12, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dKZaNBe4', '8388462'), + (12, 3150, 'maybe', '2025-06-16 16:08:19', '2025-12-17 19:46:15', 'dKZaNBe4', '8393174'), + (12, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dKZaNBe4', '8400273'), + (12, 3154, 'attending', '2025-06-21 18:43:14', '2025-12-17 19:46:15', 'dKZaNBe4', '8400274'), + (12, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dKZaNBe4', '8400275'), + (12, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dKZaNBe4', '8400276'), + (12, 3157, 'attending', '2025-06-04 04:29:10', '2025-12-17 19:46:15', 'dKZaNBe4', '8401407'), + (12, 3158, 'attending', '2025-06-04 04:30:57', '2025-12-17 19:46:15', 'dKZaNBe4', '8401408'), + (12, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dKZaNBe4', '8404977'), + (12, 3176, 'attending', '2025-06-20 01:02:05', '2025-12-17 19:46:15', 'dKZaNBe4', '8416741'), + (12, 3179, 'not_attending', '2025-06-24 03:27:21', '2025-12-17 19:46:15', 'dKZaNBe4', '8421850'), + (12, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dKZaNBe4', '8430783'), + (12, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dKZaNBe4', '8430784'), + (12, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dKZaNBe4', '8430799'), + (12, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dKZaNBe4', '8430800'), + (12, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dKZaNBe4', '8430801'), + (12, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dKZaNBe4', '8438709'), + (12, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dKZaNBe4', '8457738'), + (12, 3200, 'attending', '2025-07-19 18:31:02', '2025-12-17 19:46:17', 'dKZaNBe4', '8459566'), + (12, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dKZaNBe4', '8459567'), + (12, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dKZaNBe4', '8461032'), + (12, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dKZaNBe4', '8477877'), + (12, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dKZaNBe4', '8485688'), + (12, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dKZaNBe4', '8490587'), + (12, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dKZaNBe4', '8493552'), + (12, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dKZaNBe4', '8493553'), + (12, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dKZaNBe4', '8493554'), + (12, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dKZaNBe4', '8493555'), + (12, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dKZaNBe4', '8493556'), + (12, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dKZaNBe4', '8493557'), + (12, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dKZaNBe4', '8493558'), + (12, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dKZaNBe4', '8493559'), + (12, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dKZaNBe4', '8493560'), + (12, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dKZaNBe4', '8493561'), + (12, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dKZaNBe4', '8493572'), + (12, 3272, 'maybe', '2025-09-18 19:54:23', '2025-12-17 19:46:12', 'dKZaNBe4', '8524068'), + (12, 3274, 'attending', '2025-09-20 21:23:32', '2025-12-17 19:46:12', 'dKZaNBe4', '8527784'), + (12, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dKZaNBe4', '8540725'), + (12, 3289, 'attending', '2025-10-23 01:54:52', '2025-12-17 19:46:14', 'dKZaNBe4', '8542939'), + (12, 3295, 'not_attending', '2025-10-26 19:56:53', '2025-12-17 19:46:14', 'dKZaNBe4', '8547541'), + (12, 3300, 'attending', '2025-10-26 19:57:04', '2025-12-17 19:46:14', 'dKZaNBe4', '8549145'), + (12, 3302, 'attending', '2025-11-09 05:28:59', '2025-12-17 19:46:14', 'dKZaNBe4', '8550022'), + (12, 3304, 'attending', '2025-11-22 21:31:03', '2025-12-17 19:46:14', 'dKZaNBe4', '8550024'), + (12, 3305, 'not_attending', '2025-12-03 00:39:01', '2025-12-17 19:46:11', 'dKZaNBe4', '8550025'), + (12, 3306, 'attending', '2025-12-13 22:34:10', '2025-12-17 19:46:11', 'dKZaNBe4', '8550026'), + (12, 3308, 'maybe', '2025-11-11 01:02:42', '2025-12-17 19:46:14', 'dKZaNBe4', '8550408'), + (12, 3316, 'attending', '2025-11-05 04:37:11', '2025-12-17 19:46:14', 'dKZaNBe4', '8552493'), + (12, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dKZaNBe4', '8555421'), + (12, 3323, 'attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'dKZaNBe4', '8555522'), + (12, 3325, 'maybe', '2025-11-20 00:18:52', '2025-12-17 19:46:14', 'dKZaNBe4', '8556660'), + (12, 3328, 'maybe', '2025-11-22 21:31:06', '2025-12-17 19:46:14', 'dKZaNBe4', '8557254'), + (13, 1480, 'attending', '2022-06-24 22:08:08', '2025-12-17 19:47:19', 'ZdNrg9kd', '5411699'), + (13, 1482, 'not_attending', '2022-06-25 01:25:48', '2025-12-17 19:47:19', 'ZdNrg9kd', '5412550'), + (13, 1485, 'attending', '2022-06-23 20:49:37', '2025-12-17 19:47:17', 'ZdNrg9kd', '5416276'), + (13, 1488, 'attending', '2022-06-25 20:50:38', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420154'), + (13, 1489, 'maybe', '2022-07-06 18:56:27', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420155'), + (13, 1490, 'attending', '2022-07-03 06:12:13', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420156'), + (13, 1491, 'attending', '2022-07-03 06:12:35', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420158'), + (13, 1492, 'attending', '2022-07-05 03:07:30', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420175'), + (13, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422086'), + (13, 1496, 'attending', '2022-06-26 16:41:21', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422404'), + (13, 1497, 'attending', '2022-06-26 16:41:27', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422405'), + (13, 1498, 'attending', '2022-07-02 19:57:57', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422406'), + (13, 1500, 'maybe', '2022-07-06 03:02:41', '2025-12-17 19:47:19', 'ZdNrg9kd', '5423915'), + (13, 1501, 'maybe', '2022-06-29 22:47:55', '2025-12-17 19:47:19', 'ZdNrg9kd', '5424546'), + (13, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ZdNrg9kd', '5424565'), + (13, 1504, 'attending', '2022-07-01 23:27:43', '2025-12-17 19:47:19', 'ZdNrg9kd', '5426882'), + (13, 1505, 'attending', '2022-07-02 22:19:31', '2025-12-17 19:47:19', 'ZdNrg9kd', '5427083'), + (13, 1508, 'attending', '2022-07-02 22:18:37', '2025-12-17 19:47:19', 'ZdNrg9kd', '5433453'), + (13, 1509, 'maybe', '2022-07-06 03:02:31', '2025-12-17 19:47:19', 'ZdNrg9kd', '5434019'), + (13, 1511, 'attending', '2022-07-07 03:44:02', '2025-12-17 19:47:19', 'ZdNrg9kd', '5437733'), + (13, 1513, 'attending', '2022-07-10 03:06:35', '2025-12-17 19:47:19', 'ZdNrg9kd', '5441125'), + (13, 1514, 'attending', '2022-07-10 03:06:37', '2025-12-17 19:47:20', 'ZdNrg9kd', '5441126'), + (13, 1515, 'maybe', '2022-07-19 15:16:21', '2025-12-17 19:47:21', 'ZdNrg9kd', '5441128'), + (13, 1516, 'attending', '2022-08-16 01:59:40', '2025-12-17 19:47:23', 'ZdNrg9kd', '5441129'), + (13, 1517, 'attending', '2022-08-16 01:59:49', '2025-12-17 19:47:23', 'ZdNrg9kd', '5441130'), + (13, 1518, 'attending', '2022-08-22 02:10:40', '2025-12-17 19:47:24', 'ZdNrg9kd', '5441131'), + (13, 1519, 'attending', '2022-08-22 02:10:58', '2025-12-17 19:47:24', 'ZdNrg9kd', '5441132'), + (13, 1520, 'attending', '2022-07-10 03:04:23', '2025-12-17 19:47:19', 'ZdNrg9kd', '5441645'), + (13, 1522, 'attending', '2022-07-12 02:03:01', '2025-12-17 19:47:20', 'ZdNrg9kd', '5442832'), + (13, 1524, 'attending', '2022-07-11 17:49:47', '2025-12-17 19:47:19', 'ZdNrg9kd', '5443300'), + (13, 1525, 'not_attending', '2022-07-13 00:58:13', '2025-12-17 19:47:19', 'ZdNrg9kd', '5444962'), + (13, 1528, 'maybe', '2022-07-13 22:45:47', '2025-12-17 19:47:20', 'ZdNrg9kd', '5446643'), + (13, 1537, 'maybe', '2022-07-16 17:47:45', '2025-12-17 19:47:20', 'ZdNrg9kd', '5449117'), + (13, 1539, 'attending', '2022-07-19 15:16:12', '2025-12-17 19:47:21', 'ZdNrg9kd', '5449671'), + (13, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ZdNrg9kd', '5453325'), + (13, 1541, 'attending', '2022-07-19 15:16:02', '2025-12-17 19:47:20', 'ZdNrg9kd', '5453542'), + (13, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ZdNrg9kd', '5454516'), + (13, 1544, 'maybe', '2022-09-11 22:59:57', '2025-12-17 19:47:11', 'ZdNrg9kd', '5454517'), + (13, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ZdNrg9kd', '5454605'), + (13, 1546, 'maybe', '2022-07-27 01:38:39', '2025-12-17 19:47:20', 'ZdNrg9kd', '5454607'), + (13, 1551, 'maybe', '2022-07-19 22:37:55', '2025-12-17 19:47:20', 'ZdNrg9kd', '5455037'), + (13, 1553, 'maybe', '2022-07-19 23:29:00', '2025-12-17 19:47:20', 'ZdNrg9kd', '5455164'), + (13, 1557, 'attending', '2022-08-03 01:51:59', '2025-12-17 19:47:21', 'ZdNrg9kd', '5458729'), + (13, 1558, 'attending', '2022-09-14 03:06:03', '2025-12-17 19:47:10', 'ZdNrg9kd', '5458730'), + (13, 1559, 'attending', '2022-09-16 22:35:59', '2025-12-17 19:47:11', 'ZdNrg9kd', '5458731'), + (13, 1561, 'attending', '2022-08-02 02:50:05', '2025-12-17 19:47:22', 'ZdNrg9kd', '5461278'), + (13, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ZdNrg9kd', '5469480'), + (13, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ZdNrg9kd', '5471073'), + (13, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ZdNrg9kd', '5474663'), + (13, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ZdNrg9kd', '5482022'), + (13, 1575, 'attending', '2022-08-17 01:49:20', '2025-12-17 19:47:23', 'ZdNrg9kd', '5482250'), + (13, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ZdNrg9kd', '5482793'), + (13, 1580, 'attending', '2022-08-07 04:24:58', '2025-12-17 19:47:22', 'ZdNrg9kd', '5488912'), + (13, 1582, 'attending', '2022-08-16 01:59:35', '2025-12-17 19:47:23', 'ZdNrg9kd', '5492001'), + (13, 1583, 'attending', '2022-08-07 21:17:29', '2025-12-17 19:47:22', 'ZdNrg9kd', '5492002'), + (13, 1584, 'maybe', '2022-08-16 01:59:46', '2025-12-17 19:47:23', 'ZdNrg9kd', '5492004'), + (13, 1585, 'attending', '2022-08-07 21:17:20', '2025-12-17 19:47:22', 'ZdNrg9kd', '5492013'), + (13, 1586, 'attending', '2022-08-17 01:50:07', '2025-12-17 19:47:23', 'ZdNrg9kd', '5492019'), + (13, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ZdNrg9kd', '5492192'), + (13, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ZdNrg9kd', '5493139'), + (13, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'ZdNrg9kd', '5493200'), + (13, 1603, 'attending', '2022-08-16 01:59:21', '2025-12-17 19:47:23', 'ZdNrg9kd', '5497895'), + (13, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ZdNrg9kd', '5502188'), + (13, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ZdNrg9kd', '5505059'), + (13, 1609, 'attending', '2022-08-22 02:10:51', '2025-12-17 19:47:23', 'ZdNrg9kd', '5506590'), + (13, 1610, 'attending', '2022-08-22 02:10:13', '2025-12-17 19:47:23', 'ZdNrg9kd', '5506595'), + (13, 1615, 'maybe', '2022-08-22 02:10:25', '2025-12-17 19:47:23', 'ZdNrg9kd', '5509055'), + (13, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ZdNrg9kd', '5512862'), + (13, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ZdNrg9kd', '5513985'), + (13, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ZdNrg9kd', '5519981'), + (13, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ZdNrg9kd', '5522550'), + (13, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ZdNrg9kd', '5534683'), + (13, 1635, 'attending', '2022-09-05 23:33:28', '2025-12-17 19:47:10', 'ZdNrg9kd', '5537735'), + (13, 1637, 'attending', '2022-09-05 23:32:57', '2025-12-17 19:47:24', 'ZdNrg9kd', '5539591'), + (13, 1640, 'attending', '2022-09-05 23:33:24', '2025-12-17 19:47:10', 'ZdNrg9kd', '5540859'), + (13, 1642, 'maybe', '2022-09-05 23:33:09', '2025-12-17 19:47:24', 'ZdNrg9kd', '5544227'), + (13, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ZdNrg9kd', '5546619'), + (13, 1653, 'maybe', '2022-09-16 22:36:26', '2025-12-17 19:47:11', 'ZdNrg9kd', '5554400'), + (13, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ZdNrg9kd', '5555245'), + (13, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ZdNrg9kd', '5557747'), + (13, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ZdNrg9kd', '5560255'), + (13, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ZdNrg9kd', '5562906'), + (13, 1665, 'attending', '2022-09-12 21:24:37', '2025-12-17 19:47:25', 'ZdNrg9kd', '5563133'), + (13, 1666, 'maybe', '2022-09-20 01:53:42', '2025-12-17 19:47:11', 'ZdNrg9kd', '5563208'), + (13, 1667, 'attending', '2022-09-24 16:29:24', '2025-12-17 19:47:11', 'ZdNrg9kd', '5563221'), + (13, 1668, 'attending', '2022-10-01 17:56:11', '2025-12-17 19:47:12', 'ZdNrg9kd', '5563222'), + (13, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ZdNrg9kd', '5600604'), + (13, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ZdNrg9kd', '5605544'), + (13, 1699, 'attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'ZdNrg9kd', '5606737'), + (13, 1704, 'attending', '2022-10-06 22:34:32', '2025-12-17 19:47:12', 'ZdNrg9kd', '5610508'), + (13, 1713, 'attending', '2022-10-04 02:31:53', '2025-12-17 19:47:13', 'ZdNrg9kd', '5622108'), + (13, 1714, 'attending', '2022-10-04 02:31:55', '2025-12-17 19:47:14', 'ZdNrg9kd', '5622347'), + (13, 1717, 'attending', '2022-10-21 22:31:25', '2025-12-17 19:47:13', 'ZdNrg9kd', '5622842'), + (13, 1719, 'attending', '2022-10-07 13:14:11', '2025-12-17 19:47:12', 'ZdNrg9kd', '5630958'), + (13, 1720, 'attending', '2022-10-12 21:56:51', '2025-12-17 19:47:12', 'ZdNrg9kd', '5630959'), + (13, 1721, 'attending', '2022-10-12 21:57:09', '2025-12-17 19:47:13', 'ZdNrg9kd', '5630960'), + (13, 1722, 'maybe', '2022-10-12 21:57:11', '2025-12-17 19:47:14', 'ZdNrg9kd', '5630961'), + (13, 1723, 'attending', '2022-10-12 21:57:15', '2025-12-17 19:47:15', 'ZdNrg9kd', '5630962'), + (13, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ZdNrg9kd', '5630966'), + (13, 1725, 'attending', '2022-11-08 02:37:53', '2025-12-17 19:47:16', 'ZdNrg9kd', '5630967'), + (13, 1726, 'attending', '2022-11-08 02:37:55', '2025-12-17 19:47:16', 'ZdNrg9kd', '5630968'), + (13, 1727, 'attending', '2022-11-08 02:37:56', '2025-12-17 19:47:16', 'ZdNrg9kd', '5630969'), + (13, 1728, 'attending', '2022-12-05 03:36:33', '2025-12-17 19:47:17', 'ZdNrg9kd', '5630970'), + (13, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ZdNrg9kd', '5635406'), + (13, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ZdNrg9kd', '5638765'), + (13, 1739, 'maybe', '2022-10-14 02:18:04', '2025-12-17 19:47:14', 'ZdNrg9kd', '5640097'), + (13, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ZdNrg9kd', '5640843'), + (13, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ZdNrg9kd', '5641521'), + (13, 1744, 'attending', '2022-11-21 23:32:13', '2025-12-17 19:47:16', 'ZdNrg9kd', '5642818'), + (13, 1747, 'maybe', '2022-10-24 01:46:57', '2025-12-17 19:47:14', 'ZdNrg9kd', '5648009'), + (13, 1750, 'attending', '2022-10-16 03:59:20', '2025-12-17 19:47:15', 'ZdNrg9kd', '5652365'), + (13, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ZdNrg9kd', '5652395'), + (13, 1753, 'maybe', '2022-10-16 03:58:52', '2025-12-17 19:47:13', 'ZdNrg9kd', '5656228'), + (13, 1757, 'maybe', '2022-10-24 03:01:37', '2025-12-17 19:47:15', 'ZdNrg9kd', '5668974'), + (13, 1759, 'attending', '2022-10-22 18:55:00', '2025-12-17 19:47:13', 'ZdNrg9kd', '5669097'), + (13, 1762, 'attending', '2022-11-12 23:38:36', '2025-12-17 19:47:16', 'ZdNrg9kd', '5670445'), + (13, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ZdNrg9kd', '5671637'), + (13, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ZdNrg9kd', '5672329'), + (13, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ZdNrg9kd', '5674057'), + (13, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ZdNrg9kd', '5674060'), + (13, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ZdNrg9kd', '5677461'), + (13, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ZdNrg9kd', '5698046'), + (13, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'ZdNrg9kd', '5699760'), + (13, 1790, 'attending', '2022-11-08 02:37:50', '2025-12-17 19:47:15', 'ZdNrg9kd', '5727424'), + (13, 1793, 'attending', '2022-11-20 23:52:29', '2025-12-17 19:47:16', 'ZdNrg9kd', '5736365'), + (13, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ZdNrg9kd', '5741601'), + (13, 1797, 'attending', '2022-12-01 00:41:38', '2025-12-17 19:47:17', 'ZdNrg9kd', '5757486'), + (13, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ZdNrg9kd', '5763458'), + (13, 1800, 'attending', '2022-11-19 20:26:59', '2025-12-17 19:47:16', 'ZdNrg9kd', '5764667'), + (13, 1807, 'attending', '2023-01-11 00:46:24', '2025-12-17 19:47:05', 'ZdNrg9kd', '5764677'), + (13, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ZdNrg9kd', '5774172'), + (13, 1826, 'attending', '2022-12-04 18:50:53', '2025-12-17 19:47:04', 'ZdNrg9kd', '5776768'), + (13, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'ZdNrg9kd', '5818247'), + (13, 1834, 'attending', '2022-12-10 22:54:28', '2025-12-17 19:47:17', 'ZdNrg9kd', '5819470'), + (13, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ZdNrg9kd', '5819471'), + (13, 1837, 'attending', '2022-12-08 00:30:15', '2025-12-17 19:47:16', 'ZdNrg9kd', '5820146'), + (13, 1842, 'attending', '2022-12-09 03:46:15', '2025-12-17 19:47:04', 'ZdNrg9kd', '5827739'), + (13, 1843, 'attending', '2022-12-17 19:28:03', '2025-12-17 19:47:04', 'ZdNrg9kd', '5844304'), + (13, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ZdNrg9kd', '5844306'), + (13, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ZdNrg9kd', '5850159'), + (13, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ZdNrg9kd', '5858999'), + (13, 1851, 'not_attending', '2023-01-08 22:13:13', '2025-12-17 19:47:05', 'ZdNrg9kd', '5869316'), + (13, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ZdNrg9kd', '5871984'), + (13, 1856, 'attending', '2023-01-14 05:49:09', '2025-12-17 19:47:05', 'ZdNrg9kd', '5873970'), + (13, 1857, 'attending', '2023-01-17 04:54:18', '2025-12-17 19:47:05', 'ZdNrg9kd', '5873973'), + (13, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ZdNrg9kd', '5876354'), + (13, 1863, 'attending', '2023-01-29 19:36:16', '2025-12-17 19:47:06', 'ZdNrg9kd', '5877255'), + (13, 1864, 'attending', '2023-01-17 04:54:24', '2025-12-17 19:47:05', 'ZdNrg9kd', '5879675'), + (13, 1865, 'attending', '2023-01-17 04:54:22', '2025-12-17 19:47:06', 'ZdNrg9kd', '5879676'), + (13, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'ZdNrg9kd', '5880939'), + (13, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ZdNrg9kd', '5880940'), + (13, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ZdNrg9kd', '5880942'), + (13, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ZdNrg9kd', '5880943'), + (13, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ZdNrg9kd', '5887890'), + (13, 1875, 'attending', '2023-01-26 23:00:55', '2025-12-17 19:47:06', 'ZdNrg9kd', '5887908'), + (13, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ZdNrg9kd', '5888598'), + (13, 1878, 'attending', '2023-01-29 03:29:01', '2025-12-17 19:47:07', 'ZdNrg9kd', '5893000'), + (13, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ZdNrg9kd', '5893260'), + (13, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ZdNrg9kd', '5899826'), + (13, 1889, 'attending', '2023-02-01 05:26:45', '2025-12-17 19:47:07', 'ZdNrg9kd', '5900199'), + (13, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ZdNrg9kd', '5900200'), + (13, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ZdNrg9kd', '5900202'), + (13, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ZdNrg9kd', '5900203'), + (13, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ZdNrg9kd', '5901108'), + (13, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ZdNrg9kd', '5901126'), + (13, 1897, 'attending', '2023-02-01 05:26:40', '2025-12-17 19:47:07', 'ZdNrg9kd', '5901128'), + (13, 1898, 'attending', '2023-02-01 05:26:32', '2025-12-17 19:47:06', 'ZdNrg9kd', '5901263'), + (13, 1899, 'maybe', '2023-02-01 05:26:53', '2025-12-17 19:47:07', 'ZdNrg9kd', '5901323'), + (13, 1907, 'maybe', '2023-02-04 18:31:13', '2025-12-17 19:47:07', 'ZdNrg9kd', '5904716'), + (13, 1908, 'attending', '2023-02-04 18:30:33', '2025-12-17 19:47:07', 'ZdNrg9kd', '5905018'), + (13, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ZdNrg9kd', '5909655'), + (13, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ZdNrg9kd', '5910522'), + (13, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ZdNrg9kd', '5910526'), + (13, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ZdNrg9kd', '5910528'), + (13, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ZdNrg9kd', '5916219'), + (13, 1926, 'attending', '2023-02-27 23:50:03', '2025-12-17 19:47:08', 'ZdNrg9kd', '5932620'), + (13, 1927, 'attending', '2023-02-27 23:50:24', '2025-12-17 19:47:10', 'ZdNrg9kd', '5932621'), + (13, 1930, 'attending', '2023-02-20 19:22:43', '2025-12-17 19:47:08', 'ZdNrg9kd', '5933462'), + (13, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ZdNrg9kd', '5936234'), + (13, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ZdNrg9kd', '5958351'), + (13, 1936, 'attending', '2023-02-23 22:51:52', '2025-12-17 19:47:08', 'ZdNrg9kd', '5959397'), + (13, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ZdNrg9kd', '5959751'), + (13, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ZdNrg9kd', '5959755'), + (13, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ZdNrg9kd', '5960055'), + (13, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ZdNrg9kd', '5961684'), + (13, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'ZdNrg9kd', '5962132'), + (13, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'ZdNrg9kd', '5962133'), + (13, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ZdNrg9kd', '5962134'), + (13, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ZdNrg9kd', '5962317'), + (13, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ZdNrg9kd', '5962318'), + (13, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ZdNrg9kd', '5965933'), + (13, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ZdNrg9kd', '5967014'), + (13, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'ZdNrg9kd', '5972763'), + (13, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ZdNrg9kd', '5972815'), + (13, 1960, 'attending', '2023-03-06 14:33:32', '2025-12-17 19:47:09', 'ZdNrg9kd', '5973267'), + (13, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ZdNrg9kd', '5974016'), + (13, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ZdNrg9kd', '5981515'), + (13, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ZdNrg9kd', '5993516'), + (13, 1972, 'maybe', '2023-03-19 18:47:59', '2025-12-17 19:46:56', 'ZdNrg9kd', '5993776'), + (13, 1973, 'attending', '2023-03-14 21:13:45', '2025-12-17 19:46:56', 'ZdNrg9kd', '5993777'), + (13, 1974, 'attending', '2023-03-27 17:46:47', '2025-12-17 19:46:57', 'ZdNrg9kd', '5993778'), + (13, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ZdNrg9kd', '5998939'), + (13, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ZdNrg9kd', '6028191'), + (13, 1982, 'attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ZdNrg9kd', '6040066'), + (13, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ZdNrg9kd', '6042717'), + (13, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ZdNrg9kd', '6044838'), + (13, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ZdNrg9kd', '6044839'), + (13, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNrg9kd', '6045684'), + (13, 1994, 'maybe', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ZdNrg9kd', '6050104'), + (13, 2003, 'attending', '2023-05-16 17:05:32', '2025-12-17 19:47:03', 'ZdNrg9kd', '6052606'), + (13, 2004, 'not_attending', '2023-05-28 03:12:03', '2025-12-17 19:47:04', 'ZdNrg9kd', '6052607'), + (13, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ZdNrg9kd', '6053195'), + (13, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ZdNrg9kd', '6053198'), + (13, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ZdNrg9kd', '6056085'), + (13, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ZdNrg9kd', '6056916'), + (13, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ZdNrg9kd', '6059290'), + (13, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ZdNrg9kd', '6060328'), + (13, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ZdNrg9kd', '6061037'), + (13, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ZdNrg9kd', '6061039'), + (13, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ZdNrg9kd', '6067245'), + (13, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ZdNrg9kd', '6068094'), + (13, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ZdNrg9kd', '6068252'), + (13, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ZdNrg9kd', '6068253'), + (13, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ZdNrg9kd', '6068254'), + (13, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'ZdNrg9kd', '6068280'), + (13, 2032, 'attending', '2023-05-18 21:58:44', '2025-12-17 19:47:04', 'ZdNrg9kd', '6068281'), + (13, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ZdNrg9kd', '6069093'), + (13, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ZdNrg9kd', '6072528'), + (13, 2046, 'maybe', '2023-05-12 21:24:54', '2025-12-17 19:47:02', 'ZdNrg9kd', '6076020'), + (13, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ZdNrg9kd', '6079840'), + (13, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ZdNrg9kd', '6083398'), + (13, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ZdNrg9kd', '6093504'), + (13, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ZdNrg9kd', '6097414'), + (13, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ZdNrg9kd', '6097442'), + (13, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ZdNrg9kd', '6097684'), + (13, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ZdNrg9kd', '6098762'), + (13, 2064, 'attending', '2023-06-08 15:58:20', '2025-12-17 19:46:50', 'ZdNrg9kd', '6099988'), + (13, 2065, 'attending', '2023-06-08 15:58:17', '2025-12-17 19:46:49', 'ZdNrg9kd', '6101169'), + (13, 2066, 'attending', '2023-05-28 03:12:04', '2025-12-17 19:47:04', 'ZdNrg9kd', '6101361'), + (13, 2067, 'maybe', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ZdNrg9kd', '6101362'), + (13, 2070, 'attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'ZdNrg9kd', '6103752'), + (13, 2074, 'attending', '2023-05-18 21:58:18', '2025-12-17 19:47:03', 'ZdNrg9kd', '6107312'), + (13, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ZdNrg9kd', '6107314'), + (13, 2078, 'attending', '2023-05-23 19:40:38', '2025-12-17 19:47:03', 'ZdNrg9kd', '6114163'), + (13, 2086, 'maybe', '2023-05-28 03:11:53', '2025-12-17 19:47:04', 'ZdNrg9kd', '6119877'), + (13, 2087, 'maybe', '2023-05-28 03:11:45', '2025-12-17 19:47:04', 'ZdNrg9kd', '6120034'), + (13, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ZdNrg9kd', '6136733'), + (13, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ZdNrg9kd', '6137989'), + (13, 2105, 'maybe', '2023-06-17 20:59:28', '2025-12-17 19:46:50', 'ZdNrg9kd', '6149551'), + (13, 2106, 'maybe', '2023-06-18 21:04:03', '2025-12-17 19:46:50', 'ZdNrg9kd', '6150479'), + (13, 2108, 'maybe', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ZdNrg9kd', '6150864'), + (13, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ZdNrg9kd', '6155491'), + (13, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ZdNrg9kd', '6164417'), + (13, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ZdNrg9kd', '6166388'), + (13, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ZdNrg9kd', '6176439'), + (13, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'ZdNrg9kd', '6182410'), + (13, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ZdNrg9kd', '6185812'), + (13, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ZdNrg9kd', '6187651'), + (13, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ZdNrg9kd', '6187963'), + (13, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ZdNrg9kd', '6187964'), + (13, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ZdNrg9kd', '6187966'), + (13, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ZdNrg9kd', '6187967'), + (13, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ZdNrg9kd', '6187969'), + (13, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ZdNrg9kd', '6334878'), + (13, 2146, 'maybe', '2023-07-17 18:53:27', '2025-12-17 19:46:53', 'ZdNrg9kd', '6335638'), + (13, 2148, 'attending', '2023-07-24 21:18:08', '2025-12-17 19:46:53', 'ZdNrg9kd', '6335667'), + (13, 2152, 'maybe', '2023-07-12 19:28:41', '2025-12-17 19:46:52', 'ZdNrg9kd', '6337021'), + (13, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ZdNrg9kd', '6337236'), + (13, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ZdNrg9kd', '6337970'), + (13, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ZdNrg9kd', '6338308'), + (13, 2159, 'attending', '2023-07-17 18:53:33', '2025-12-17 19:46:53', 'ZdNrg9kd', '6338355'), + (13, 2160, 'maybe', '2023-07-29 17:57:12', '2025-12-17 19:46:54', 'ZdNrg9kd', '6338358'), + (13, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'ZdNrg9kd', '6340845'), + (13, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ZdNrg9kd', '6341710'), + (13, 2164, 'attending', '2023-07-27 01:53:12', '2025-12-17 19:46:54', 'ZdNrg9kd', '6341797'), + (13, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ZdNrg9kd', '6342044'), + (13, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ZdNrg9kd', '6342298'), + (13, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'ZdNrg9kd', '6343294'), + (13, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ZdNrg9kd', '6347034'), + (13, 2177, 'maybe', '2023-08-12 03:53:36', '2025-12-17 19:46:55', 'ZdNrg9kd', '6347053'), + (13, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ZdNrg9kd', '6347056'), + (13, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ZdNrg9kd', '6353830'), + (13, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ZdNrg9kd', '6353831'), + (13, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ZdNrg9kd', '6357867'), + (13, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ZdNrg9kd', '6358652'), + (13, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'ZdNrg9kd', '6359940'), + (13, 2204, 'not_attending', '2023-08-19 02:37:43', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361542'), + (13, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ZdNrg9kd', '6361709'), + (13, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361710'), + (13, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361711'), + (13, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361712'), + (13, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ZdNrg9kd', '6361713'), + (13, 2232, 'attending', '2023-08-24 21:29:30', '2025-12-17 19:46:55', 'ZdNrg9kd', '6374818'), + (13, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ZdNrg9kd', '6382573'), + (13, 2239, 'maybe', '2023-09-02 04:39:54', '2025-12-17 19:46:56', 'ZdNrg9kd', '6387592'), + (13, 2240, 'maybe', '2023-09-09 05:15:00', '2025-12-17 19:46:56', 'ZdNrg9kd', '6388603'), + (13, 2241, 'maybe', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ZdNrg9kd', '6388604'), + (13, 2242, 'not_attending', '2023-09-21 03:16:39', '2025-12-17 19:46:45', 'ZdNrg9kd', '6388606'), + (13, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ZdNrg9kd', '6394629'), + (13, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ZdNrg9kd', '6394631'), + (13, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ZdNrg9kd', '6440863'), + (13, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ZdNrg9kd', '6445440'), + (13, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ZdNrg9kd', '6453951'), + (13, 2279, 'attending', '2023-10-08 21:00:08', '2025-12-17 19:46:46', 'ZdNrg9kd', '6455460'), + (13, 2283, 'attending', '2023-10-11 15:51:53', '2025-12-17 19:46:46', 'ZdNrg9kd', '6455503'), + (13, 2284, 'maybe', '2023-10-13 15:42:51', '2025-12-17 19:46:46', 'ZdNrg9kd', '6460928'), + (13, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ZdNrg9kd', '6461696'), + (13, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ZdNrg9kd', '6462129'), + (13, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ZdNrg9kd', '6463218'), + (13, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ZdNrg9kd', '6472181'), + (13, 2303, 'attending', '2023-10-28 17:05:51', '2025-12-17 19:46:47', 'ZdNrg9kd', '6482691'), + (13, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ZdNrg9kd', '6482693'), + (13, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'ZdNrg9kd', '6484200'), + (13, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ZdNrg9kd', '6484680'), + (13, 2314, 'maybe', '2023-10-29 02:50:04', '2025-12-17 19:46:47', 'ZdNrg9kd', '6493665'), + (13, 2315, 'maybe', '2023-10-29 02:50:09', '2025-12-17 19:46:47', 'ZdNrg9kd', '6493666'), + (13, 2316, 'attending', '2023-10-29 02:50:15', '2025-12-17 19:46:48', 'ZdNrg9kd', '6493668'), + (13, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ZdNrg9kd', '6507741'), + (13, 2320, 'attending', '2023-11-02 21:30:27', '2025-12-17 19:46:47', 'ZdNrg9kd', '6508647'), + (13, 2322, 'maybe', '2023-11-02 21:30:45', '2025-12-17 19:46:48', 'ZdNrg9kd', '6514659'), + (13, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ZdNrg9kd', '6514660'), + (13, 2324, 'attending', '2023-12-07 04:57:48', '2025-12-17 19:46:49', 'ZdNrg9kd', '6514662'), + (13, 2325, 'maybe', '2023-12-15 03:18:13', '2025-12-17 19:46:36', 'ZdNrg9kd', '6514663'), + (13, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ZdNrg9kd', '6519103'), + (13, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ZdNrg9kd', '6535681'), + (13, 2345, 'maybe', '2023-11-22 19:01:41', '2025-12-17 19:46:48', 'ZdNrg9kd', '6582414'), + (13, 2350, 'attending', '2023-11-22 19:01:09', '2025-12-17 19:46:48', 'ZdNrg9kd', '6584352'), + (13, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ZdNrg9kd', '6584747'), + (13, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ZdNrg9kd', '6587097'), + (13, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ZdNrg9kd', '6609022'), + (13, 2364, 'maybe', '2023-12-07 04:57:42', '2025-12-17 19:46:49', 'ZdNrg9kd', '6613011'), + (13, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ZdNrg9kd', '6632757'), + (13, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ZdNrg9kd', '6644187'), + (13, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ZdNrg9kd', '6648951'), + (13, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ZdNrg9kd', '6648952'), + (13, 2388, 'maybe', '2024-01-06 17:48:27', '2025-12-17 19:46:37', 'ZdNrg9kd', '6649244'), + (13, 2396, 'maybe', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ZdNrg9kd', '6655401'), + (13, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ZdNrg9kd', '6661585'), + (13, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ZdNrg9kd', '6661588'), + (13, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ZdNrg9kd', '6661589'), + (13, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ZdNrg9kd', '6699906'), + (13, 2408, 'attending', '2024-01-25 22:16:19', '2025-12-17 19:46:40', 'ZdNrg9kd', '6699907'), + (13, 2409, 'maybe', '2024-02-03 06:21:47', '2025-12-17 19:46:41', 'ZdNrg9kd', '6699909'), + (13, 2410, 'attending', '2024-02-09 02:12:47', '2025-12-17 19:46:41', 'ZdNrg9kd', '6699911'), + (13, 2411, 'attending', '2024-02-09 02:12:49', '2025-12-17 19:46:41', 'ZdNrg9kd', '6699913'), + (13, 2412, 'not_attending', '2024-02-09 02:12:56', '2025-12-17 19:46:43', 'ZdNrg9kd', '6700717'), + (13, 2414, 'maybe', '2024-01-16 01:37:23', '2025-12-17 19:46:40', 'ZdNrg9kd', '6701000'), + (13, 2415, 'maybe', '2024-01-20 17:57:53', '2025-12-17 19:46:40', 'ZdNrg9kd', '6701001'), + (13, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ZdNrg9kd', '6701109'), + (13, 2423, 'attending', '2024-01-25 00:58:21', '2025-12-17 19:46:40', 'ZdNrg9kd', '6705141'), + (13, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ZdNrg9kd', '6705219'), + (13, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ZdNrg9kd', '6710153'), + (13, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ZdNrg9kd', '6711552'), + (13, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ZdNrg9kd', '6711553'), + (13, 2433, 'attending', '2024-01-25 00:58:26', '2025-12-17 19:46:40', 'ZdNrg9kd', '6715688'), + (13, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ZdNrg9kd', '6722688'), + (13, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ZdNrg9kd', '6730620'), + (13, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'ZdNrg9kd', '6730642'), + (13, 2450, 'maybe', '2024-02-09 02:13:06', '2025-12-17 19:46:41', 'ZdNrg9kd', '6738807'), + (13, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ZdNrg9kd', '6740364'), + (13, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ZdNrg9kd', '6743829'), + (13, 2467, 'attending', '2024-02-25 09:09:15', '2025-12-17 19:46:43', 'ZdNrg9kd', '7029987'), + (13, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ZdNrg9kd', '7030380'), + (13, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ZdNrg9kd', '7033677'), + (13, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'ZdNrg9kd', '7035415'), + (13, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ZdNrg9kd', '7044715'), + (13, 2487, 'maybe', '2024-03-21 04:35:18', '2025-12-17 19:46:33', 'ZdNrg9kd', '7049279'), + (13, 2490, 'maybe', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ZdNrg9kd', '7050318'), + (13, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ZdNrg9kd', '7050319'), + (13, 2492, 'maybe', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ZdNrg9kd', '7050322'), + (13, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ZdNrg9kd', '7057804'), + (13, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'ZdNrg9kd', '7059866'), + (13, 2505, 'attending', '2024-03-12 15:06:09', '2025-12-17 19:46:33', 'ZdNrg9kd', '7069163'), + (13, 2507, 'maybe', '2024-03-14 16:33:33', '2025-12-17 19:46:33', 'ZdNrg9kd', '7072824'), + (13, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ZdNrg9kd', '7074348'), + (13, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ZdNrg9kd', '7074364'), + (13, 2537, 'maybe', '2024-03-21 04:35:25', '2025-12-17 19:46:33', 'ZdNrg9kd', '7085484'), + (13, 2538, 'attending', '2024-03-21 04:35:29', '2025-12-17 19:46:33', 'ZdNrg9kd', '7085485'), + (13, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'ZdNrg9kd', '7089267'), + (13, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ZdNrg9kd', '7098747'), + (13, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ZdNrg9kd', '7113468'), + (13, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ZdNrg9kd', '7114856'), + (13, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'ZdNrg9kd', '7114951'), + (13, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ZdNrg9kd', '7114955'), + (13, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ZdNrg9kd', '7114956'), + (13, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ZdNrg9kd', '7114957'), + (13, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'ZdNrg9kd', '7153615'), + (13, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ZdNrg9kd', '7159484'), + (13, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ZdNrg9kd', '7178446'), + (13, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'ZdNrg9kd', '7220467'), + (13, 2605, 'attending', '2024-04-28 02:37:30', '2025-12-17 19:46:35', 'ZdNrg9kd', '7229243'), + (13, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ZdNrg9kd', '7240354'), + (13, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ZdNrg9kd', '7251633'), + (13, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'ZdNrg9kd', '7263048'), + (13, 2628, 'maybe', '2024-05-30 18:11:10', '2025-12-17 19:46:36', 'ZdNrg9kd', '7264725'), + (13, 2629, 'maybe', '2024-05-30 18:11:14', '2025-12-17 19:46:28', 'ZdNrg9kd', '7264726'), + (13, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'ZdNrg9kd', '7302674'), + (13, 2678, 'maybe', '2024-06-13 01:10:04', '2025-12-17 19:46:28', 'ZdNrg9kd', '7319489'), + (13, 2679, 'maybe', '2024-06-13 01:10:08', '2025-12-17 19:46:29', 'ZdNrg9kd', '7319490'), + (13, 2687, 'maybe', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'ZdNrg9kd', '7324019'), + (13, 2688, 'maybe', '2024-06-13 01:10:15', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324073'), + (13, 2689, 'attending', '2024-06-13 01:10:17', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324074'), + (13, 2690, 'maybe', '2024-07-06 15:52:40', '2025-12-17 19:46:30', 'ZdNrg9kd', '7324075'), + (13, 2691, 'maybe', '2024-07-15 22:20:03', '2025-12-17 19:46:30', 'ZdNrg9kd', '7324076'), + (13, 2692, 'not_attending', '2024-07-15 22:20:23', '2025-12-17 19:46:30', 'ZdNrg9kd', '7324077'), + (13, 2693, 'attending', '2024-07-27 22:12:35', '2025-12-17 19:46:31', 'ZdNrg9kd', '7324078'), + (13, 2695, 'not_attending', '2024-08-17 21:03:56', '2025-12-17 19:46:32', 'ZdNrg9kd', '7324080'), + (13, 2696, 'attending', '2024-08-17 21:04:00', '2025-12-17 19:46:32', 'ZdNrg9kd', '7324081'), + (13, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ZdNrg9kd', '7324082'), + (13, 2700, 'maybe', '2024-06-14 17:38:12', '2025-12-17 19:46:28', 'ZdNrg9kd', '7324388'), + (13, 2701, 'maybe', '2024-06-22 17:23:05', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324391'), + (13, 2705, 'attending', '2024-06-14 17:38:44', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324944'), + (13, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ZdNrg9kd', '7331457'), + (13, 2731, 'attending', '2024-06-22 17:21:10', '2025-12-17 19:46:29', 'ZdNrg9kd', '7335303'), + (13, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'ZdNrg9kd', '7356752'), + (13, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'ZdNrg9kd', '7358733'), + (13, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'ZdNrg9kd', '7363595'), + (13, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ZdNrg9kd', '7363643'), + (13, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ZdNrg9kd', '7368606'), + (13, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ZdNrg9kd', '7397462'), + (13, 2821, 'maybe', '2024-10-02 00:27:55', '2025-12-17 19:46:26', 'ZdNrg9kd', '7424275'), + (13, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'ZdNrg9kd', '7424276'), + (13, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ZdNrg9kd', '7432751'), + (13, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ZdNrg9kd', '7432752'), + (13, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ZdNrg9kd', '7432753'), + (13, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432754'), + (13, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432755'), + (13, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432756'), + (13, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432758'), + (13, 2831, 'maybe', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432759'), + (13, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ZdNrg9kd', '7433834'), + (13, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ZdNrg9kd', '7470197'), + (13, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ZdNrg9kd', '7685613'), + (13, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ZdNrg9kd', '7688194'), + (13, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ZdNrg9kd', '7688196'), + (13, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ZdNrg9kd', '7688289'), + (13, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'ZdNrg9kd', '7692763'), + (13, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ZdNrg9kd', '7697552'), + (13, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ZdNrg9kd', '7699878'), + (13, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ZdNrg9kd', '7704043'), + (13, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ZdNrg9kd', '7712467'), + (13, 2926, 'maybe', '2024-12-07 15:34:29', '2025-12-17 19:46:21', 'ZdNrg9kd', '7713585'), + (13, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ZdNrg9kd', '7713586'), + (13, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ZdNrg9kd', '7738518'), + (13, 2962, 'maybe', '2024-12-25 18:48:15', '2025-12-17 19:46:22', 'ZdNrg9kd', '7750632'), + (13, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ZdNrg9kd', '7750636'), + (13, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ZdNrg9kd', '7796540'), + (13, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ZdNrg9kd', '7796541'), + (13, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ZdNrg9kd', '7796542'), + (13, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ZdNrg9kd', '7825913'), + (13, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ZdNrg9kd', '7826209'), + (13, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ZdNrg9kd', '7834742'), + (13, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ZdNrg9kd', '7842108'), + (13, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ZdNrg9kd', '7842902'), + (13, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ZdNrg9kd', '7842903'), + (13, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ZdNrg9kd', '7842904'), + (13, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ZdNrg9kd', '7842905'), + (13, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ZdNrg9kd', '7855719'), + (13, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ZdNrg9kd', '7860683'), + (13, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ZdNrg9kd', '7860684'), + (13, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ZdNrg9kd', '7866095'), + (13, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ZdNrg9kd', '7869170'), + (13, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ZdNrg9kd', '7869188'), + (13, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ZdNrg9kd', '7869201'), + (13, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ZdNrg9kd', '7877465'), + (13, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'ZdNrg9kd', '7878570'), + (13, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ZdNrg9kd', '7888250'), + (13, 3067, 'attending', '2025-04-01 21:31:04', '2025-12-17 19:46:19', 'ZdNrg9kd', '7894745'), + (13, 3077, 'attending', '2025-04-06 17:11:45', '2025-12-17 19:46:20', 'ZdNrg9kd', '7899510'), + (13, 3087, 'maybe', '2025-04-14 22:47:28', '2025-12-17 19:46:20', 'ZdNrg9kd', '7903856'), + (13, 3088, 'maybe', '2025-06-10 02:51:24', '2025-12-17 19:46:15', 'ZdNrg9kd', '7904777'), + (13, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ZdNrg9kd', '8349164'), + (13, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ZdNrg9kd', '8349545'), + (13, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ZdNrg9kd', '8353584'), + (13, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ZdNrg9kd', '8368028'), + (13, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ZdNrg9kd', '8368029'), + (13, 3133, 'maybe', '2025-05-23 19:52:28', '2025-12-17 19:46:14', 'ZdNrg9kd', '8368030'), + (13, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ZdNrg9kd', '8388462'), + (13, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ZdNrg9kd', '8400273'), + (13, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ZdNrg9kd', '8400274'), + (13, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ZdNrg9kd', '8400275'), + (13, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ZdNrg9kd', '8400276'), + (13, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ZdNrg9kd', '8404977'), + (13, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ZdNrg9kd', '8430783'), + (13, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ZdNrg9kd', '8430784'), + (13, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ZdNrg9kd', '8430799'), + (13, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ZdNrg9kd', '8430800'), + (13, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ZdNrg9kd', '8430801'), + (13, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ZdNrg9kd', '8438709'), + (13, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ZdNrg9kd', '8457738'), + (13, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ZdNrg9kd', '8459566'), + (13, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ZdNrg9kd', '8459567'), + (13, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ZdNrg9kd', '8461032'), + (13, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ZdNrg9kd', '8477877'), + (13, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ZdNrg9kd', '8485688'), + (13, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ZdNrg9kd', '8490587'), + (13, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ZdNrg9kd', '8493552'), + (13, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ZdNrg9kd', '8493553'), + (13, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ZdNrg9kd', '8493554'), + (13, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ZdNrg9kd', '8493555'), + (13, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ZdNrg9kd', '8493556'), + (13, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ZdNrg9kd', '8493557'), + (13, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ZdNrg9kd', '8493558'), + (13, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ZdNrg9kd', '8493559'), + (13, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ZdNrg9kd', '8493560'), + (13, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ZdNrg9kd', '8493561'), + (13, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ZdNrg9kd', '8493572'), + (13, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ZdNrg9kd', '8540725'), + (13, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ZdNrg9kd', '8555421'), + (14, 3014, 'attending', '2025-04-01 04:53:18', '2025-12-17 19:46:19', 'dVoXyYym', '7869185'), + (14, 3016, 'attending', '2025-04-18 18:47:50', '2025-12-17 19:46:20', 'dVoXyYym', '7869187'), + (14, 3018, 'attending', '2025-04-12 01:15:07', '2025-12-17 19:46:20', 'dVoXyYym', '7869189'), + (14, 3067, 'attending', '2025-04-03 04:45:26', '2025-12-17 19:46:19', 'dVoXyYym', '7894745'), + (14, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dVoXyYym', '7897784'), + (14, 3078, 'not_attending', '2025-04-06 02:48:53', '2025-12-17 19:46:20', 'dVoXyYym', '7901213'), + (14, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dVoXyYym', '7904777'), + (14, 3098, 'attending', '2025-04-21 14:47:10', '2025-12-17 19:46:20', 'dVoXyYym', '8343504'), + (14, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVoXyYym', '8349164'), + (14, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVoXyYym', '8349545'), + (14, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVoXyYym', '8353584'), + (14, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dVoXyYym', '8368028'), + (14, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dVoXyYym', '8368029'), + (14, 3133, 'attending', '2025-05-31 17:51:01', '2025-12-17 19:46:14', 'dVoXyYym', '8368030'), + (14, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dVoXyYym', '8388462'), + (14, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dVoXyYym', '8400273'), + (14, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dVoXyYym', '8400274'), + (14, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dVoXyYym', '8400275'), + (14, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dVoXyYym', '8400276'), + (14, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dVoXyYym', '8404977'), + (14, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dVoXyYym', '8430783'), + (14, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dVoXyYym', '8430784'), + (14, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dVoXyYym', '8430799'), + (14, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dVoXyYym', '8430800'), + (14, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dVoXyYym', '8430801'), + (14, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dVoXyYym', '8438709'), + (14, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVoXyYym', '8457738'), + (14, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVoXyYym', '8459566'), + (14, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVoXyYym', '8459567'), + (14, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVoXyYym', '8461032'), + (14, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVoXyYym', '8477877'), + (14, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dVoXyYym', '8485688'), + (14, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dVoXyYym', '8490587'), + (14, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVoXyYym', '8493552'), + (14, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dVoXyYym', '8493553'), + (14, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVoXyYym', '8493554'), + (14, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVoXyYym', '8493555'), + (14, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVoXyYym', '8493556'), + (14, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVoXyYym', '8493557'), + (14, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVoXyYym', '8493558'), + (14, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVoXyYym', '8493559'), + (14, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVoXyYym', '8493560'), + (14, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dVoXyYym', '8493561'), + (14, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVoXyYym', '8493572'), + (14, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dVoXyYym', '8540725'), + (14, 3306, 'attending', '2025-12-13 22:17:13', '2025-12-17 19:46:11', 'dVoXyYym', '8550026'), + (14, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dVoXyYym', '8555421'), + (15, 20, 'attending', '2020-05-12 19:12:13', '2025-12-17 19:47:57', 'EdVaaRZ4', '2958064'), + (15, 62, 'not_attending', '2020-05-12 23:23:45', '2025-12-17 19:47:57', 'EdVaaRZ4', '2977131'), + (15, 78, 'attending', '2020-05-23 21:06:53', '2025-12-17 19:47:57', 'EdVaaRZ4', '2978249'), + (15, 79, 'attending', '2020-05-30 21:43:48', '2025-12-17 19:47:57', 'EdVaaRZ4', '2978250'), + (15, 81, 'attending', '2020-06-13 22:07:15', '2025-12-17 19:47:58', 'EdVaaRZ4', '2978252'), + (15, 108, 'not_attending', '2020-05-17 17:51:17', '2025-12-17 19:47:57', 'EdVaaRZ4', '2993504'), + (15, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'EdVaaRZ4', '2994480'), + (15, 115, 'not_attending', '2020-05-17 17:21:36', '2025-12-17 19:47:57', 'EdVaaRZ4', '3001217'), + (15, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'EdVaaRZ4', '3023063'), + (15, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'EdVaaRZ4', '3034321'), + (15, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'EdVaaRZ4', '3035881'), + (15, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'EdVaaRZ4', '3049983'), + (15, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'EdVaaRZ4', '3058959'), + (15, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'EdVaaRZ4', '3067093'), + (15, 181, 'attending', '2020-06-15 22:02:53', '2025-12-17 19:47:58', 'EdVaaRZ4', '3074513'), + (15, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'EdVaaRZ4', '3075228'), + (15, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'EdVaaRZ4', '3075456'), + (15, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'EdVaaRZ4', '3083791'), + (15, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'EdVaaRZ4', '3085151'), + (15, 191, 'not_attending', '2020-07-09 19:28:15', '2025-12-17 19:47:55', 'EdVaaRZ4', '3087259'), + (15, 193, 'attending', '2020-07-25 18:32:06', '2025-12-17 19:47:55', 'EdVaaRZ4', '3087261'), + (15, 194, 'not_attending', '2020-07-31 00:32:44', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087262'), + (15, 195, 'attending', '2020-08-07 22:04:32', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087264'), + (15, 196, 'attending', '2020-08-11 21:54:20', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087265'), + (15, 197, 'attending', '2020-08-14 13:14:12', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087266'), + (15, 198, 'attending', '2020-08-25 20:12:52', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087267'), + (15, 199, 'not_attending', '2020-09-05 22:25:28', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087268'), + (15, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'EdVaaRZ4', '3088653'), + (15, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'EdVaaRZ4', '3106813'), + (15, 223, 'attending', '2020-09-12 15:58:16', '2025-12-17 19:47:56', 'EdVaaRZ4', '3129980'), + (15, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'EdVaaRZ4', '3132817'), + (15, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'EdVaaRZ4', '3132820'), + (15, 249, 'not_attending', '2020-11-17 01:50:24', '2025-12-17 19:47:54', 'EdVaaRZ4', '3149480'), + (15, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'EdVaaRZ4', '3155321'), + (15, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'EdVaaRZ4', '3162006'), + (15, 274, 'not_attending', '2020-08-25 20:12:42', '2025-12-17 19:47:56', 'EdVaaRZ4', '3163404'), + (15, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'EdVaaRZ4', '3163442'), + (15, 287, 'not_attending', '2020-08-27 14:22:51', '2025-12-17 19:47:56', 'EdVaaRZ4', '3170247'), + (15, 293, 'not_attending', '2020-08-14 13:13:47', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172832'), + (15, 294, 'maybe', '2020-08-26 20:52:16', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172833'), + (15, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172834'), + (15, 296, 'attending', '2020-08-25 20:22:03', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172876'), + (15, 298, 'not_attending', '2020-08-25 20:13:50', '2025-12-17 19:47:56', 'EdVaaRZ4', '3174556'), + (15, 303, 'attending', '2020-08-16 17:40:00', '2025-12-17 19:47:56', 'EdVaaRZ4', '3178444'), + (15, 308, 'not_attending', '2020-08-25 20:14:28', '2025-12-17 19:47:56', 'EdVaaRZ4', '3183341'), + (15, 311, 'not_attending', '2020-09-18 15:00:20', '2025-12-17 19:47:56', 'EdVaaRZ4', '3186057'), + (15, 312, 'attending', '2020-09-10 22:49:04', '2025-12-17 19:47:56', 'EdVaaRZ4', '3187795'), + (15, 315, 'attending', '2020-09-04 21:33:44', '2025-12-17 19:47:56', 'EdVaaRZ4', '3189085'), + (15, 317, 'not_attending', '2020-08-26 20:52:07', '2025-12-17 19:47:56', 'EdVaaRZ4', '3191735'), + (15, 335, 'not_attending', '2020-09-04 21:32:57', '2025-12-17 19:47:56', 'EdVaaRZ4', '3200209'), + (15, 342, 'not_attending', '2020-09-27 03:42:24', '2025-12-17 19:47:52', 'EdVaaRZ4', '3204472'), + (15, 348, 'not_attending', '2020-09-27 03:42:13', '2025-12-17 19:47:52', 'EdVaaRZ4', '3209159'), + (15, 362, 'attending', '2020-09-25 19:22:11', '2025-12-17 19:47:52', 'EdVaaRZ4', '3214207'), + (15, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'EdVaaRZ4', '3217037'), + (15, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'EdVaaRZ4', '3218510'), + (15, 375, 'not_attending', '2020-10-02 19:53:44', '2025-12-17 19:47:52', 'EdVaaRZ4', '3222825'), + (15, 385, 'attending', '2020-10-03 22:34:14', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228698'), + (15, 386, 'not_attending', '2020-10-02 19:53:50', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228699'), + (15, 387, 'not_attending', '2020-10-02 19:53:56', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228700'), + (15, 388, 'not_attending', '2020-10-02 19:53:59', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228701'), + (15, 421, 'not_attending', '2020-10-19 11:44:11', '2025-12-17 19:47:52', 'EdVaaRZ4', '3245294'), + (15, 422, 'not_attending', '2020-10-19 11:44:39', '2025-12-17 19:47:53', 'EdVaaRZ4', '3245295'), + (15, 423, 'not_attending', '2020-10-19 11:44:56', '2025-12-17 19:47:53', 'EdVaaRZ4', '3245296'), + (15, 424, 'not_attending', '2020-10-19 11:44:01', '2025-12-17 19:47:52', 'EdVaaRZ4', '3245751'), + (15, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'EdVaaRZ4', '3250232'), + (15, 428, 'not_attending', '2020-10-19 11:44:27', '2025-12-17 19:47:53', 'EdVaaRZ4', '3250332'), + (15, 430, 'not_attending', '2020-10-19 11:44:07', '2025-12-17 19:47:52', 'EdVaaRZ4', '3253094'), + (15, 431, 'attending', '2020-10-27 23:25:52', '2025-12-17 19:47:53', 'EdVaaRZ4', '3253225'), + (15, 438, 'attending', '2020-10-27 23:27:05', '2025-12-17 19:47:53', 'EdVaaRZ4', '3256163'), + (15, 439, 'not_attending', '2020-10-27 23:26:53', '2025-12-17 19:47:53', 'EdVaaRZ4', '3256164'), + (15, 440, 'not_attending', '2020-10-19 11:45:01', '2025-12-17 19:47:53', 'EdVaaRZ4', '3256168'), + (15, 441, 'attending', '2020-11-05 17:51:34', '2025-12-17 19:47:54', 'EdVaaRZ4', '3256169'), + (15, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'EdVaaRZ4', '3263578'), + (15, 444, 'not_attending', '2020-10-28 02:16:43', '2025-12-17 19:47:53', 'EdVaaRZ4', '3263745'), + (15, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'EdVaaRZ4', '3266138'), + (15, 446, 'attending', '2020-10-27 20:10:19', '2025-12-17 19:47:53', 'EdVaaRZ4', '3267163'), + (15, 447, 'not_attending', '2020-10-27 23:26:55', '2025-12-17 19:47:53', 'EdVaaRZ4', '3267895'), + (15, 455, 'not_attending', '2020-11-05 17:51:09', '2025-12-17 19:47:53', 'EdVaaRZ4', '3276391'), + (15, 456, 'not_attending', '2020-11-17 01:46:02', '2025-12-17 19:47:54', 'EdVaaRZ4', '3276428'), + (15, 459, 'not_attending', '2020-11-17 01:46:55', '2025-12-17 19:47:54', 'EdVaaRZ4', '3281467'), + (15, 462, 'not_attending', '2020-11-15 00:36:50', '2025-12-17 19:47:54', 'EdVaaRZ4', '3281470'), + (15, 466, 'not_attending', '2020-11-17 01:46:40', '2025-12-17 19:47:54', 'EdVaaRZ4', '3281829'), + (15, 467, 'not_attending', '2020-11-17 01:50:23', '2025-12-17 19:47:54', 'EdVaaRZ4', '3282756'), + (15, 468, 'not_attending', '2020-11-17 01:46:35', '2025-12-17 19:47:54', 'EdVaaRZ4', '3285413'), + (15, 469, 'not_attending', '2020-11-21 16:17:38', '2025-12-17 19:47:54', 'EdVaaRZ4', '3285414'), + (15, 471, 'not_attending', '2020-11-17 01:50:27', '2025-12-17 19:47:54', 'EdVaaRZ4', '3285445'), + (15, 476, 'not_attending', '2020-11-17 01:50:17', '2025-12-17 19:47:54', 'EdVaaRZ4', '3286982'), + (15, 478, 'not_attending', '2020-11-17 01:50:19', '2025-12-17 19:47:54', 'EdVaaRZ4', '3290899'), + (15, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'EdVaaRZ4', '3297764'), + (15, 493, 'attending', '2020-12-05 14:44:16', '2025-12-17 19:47:54', 'EdVaaRZ4', '3313856'), + (15, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'EdVaaRZ4', '3314909'), + (15, 500, 'not_attending', '2020-12-19 00:35:26', '2025-12-17 19:47:55', 'EdVaaRZ4', '3314964'), + (15, 502, 'attending', '2020-12-10 19:19:11', '2025-12-17 19:47:55', 'EdVaaRZ4', '3323365'), + (15, 513, 'not_attending', '2020-12-19 02:08:53', '2025-12-17 19:47:55', 'EdVaaRZ4', '3329383'), + (15, 514, 'attending', '2020-12-10 19:19:09', '2025-12-17 19:47:55', 'EdVaaRZ4', '3329400'), + (15, 526, 'attending', '2021-01-02 06:01:26', '2025-12-17 19:47:48', 'EdVaaRZ4', '3351539'), + (15, 531, 'attending', '2021-01-02 20:53:50', '2025-12-17 19:47:48', 'EdVaaRZ4', '3378210'), + (15, 536, 'attending', '2021-01-08 23:23:47', '2025-12-17 19:47:48', 'EdVaaRZ4', '3386848'), + (15, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'EdVaaRZ4', '3389527'), + (15, 541, 'attending', '2021-01-08 23:23:46', '2025-12-17 19:47:48', 'EdVaaRZ4', '3391683'), + (15, 543, 'not_attending', '2021-01-12 03:15:06', '2025-12-17 19:47:48', 'EdVaaRZ4', '3396499'), + (15, 548, 'attending', '2021-01-14 02:55:27', '2025-12-17 19:47:48', 'EdVaaRZ4', '3403650'), + (15, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'EdVaaRZ4', '3406988'), + (15, 550, 'attending', '2021-01-13 02:13:44', '2025-12-17 19:47:48', 'EdVaaRZ4', '3407018'), + (15, 553, 'attending', '2021-01-14 02:55:25', '2025-12-17 19:47:48', 'EdVaaRZ4', '3407248'), + (15, 555, 'not_attending', '2021-01-23 05:47:47', '2025-12-17 19:47:49', 'EdVaaRZ4', '3416576'), + (15, 558, 'not_attending', '2021-01-22 01:56:51', '2025-12-17 19:47:49', 'EdVaaRZ4', '3418925'), + (15, 561, 'not_attending', '2021-01-23 05:47:41', '2025-12-17 19:47:49', 'EdVaaRZ4', '3421916'), + (15, 566, 'not_attending', '2021-01-30 23:02:40', '2025-12-17 19:47:50', 'EdVaaRZ4', '3427928'), + (15, 567, 'not_attending', '2021-01-30 23:02:44', '2025-12-17 19:47:50', 'EdVaaRZ4', '3428895'), + (15, 568, 'attending', '2021-01-27 16:25:34', '2025-12-17 19:47:50', 'EdVaaRZ4', '3430267'), + (15, 569, 'not_attending', '2021-01-27 22:23:22', '2025-12-17 19:47:49', 'EdVaaRZ4', '3432673'), + (15, 575, 'attending', '2021-01-27 16:25:33', '2025-12-17 19:47:50', 'EdVaaRZ4', '3437492'), + (15, 579, 'attending', '2021-02-05 16:00:41', '2025-12-17 19:47:50', 'EdVaaRZ4', '3440978'), + (15, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'EdVaaRZ4', '3468125'), + (15, 602, 'not_attending', '2021-02-13 20:28:50', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470303'), + (15, 603, 'attending', '2021-02-20 18:12:03', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470304'), + (15, 604, 'attending', '2021-02-25 03:03:12', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470305'), + (15, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470991'), + (15, 607, 'attending', '2021-02-08 03:15:17', '2025-12-17 19:47:50', 'EdVaaRZ4', '3471882'), + (15, 609, 'not_attending', '2021-02-13 20:28:48', '2025-12-17 19:47:50', 'EdVaaRZ4', '3480916'), + (15, 615, 'not_attending', '2021-02-20 23:29:57', '2025-12-17 19:47:50', 'EdVaaRZ4', '3490045'), + (15, 618, 'not_attending', '2021-02-20 20:44:07', '2025-12-17 19:47:50', 'EdVaaRZ4', '3503991'), + (15, 619, 'attending', '2021-02-20 18:12:00', '2025-12-17 19:47:50', 'EdVaaRZ4', '3506310'), + (15, 621, 'attending', '2021-03-06 17:44:58', '2025-12-17 19:47:51', 'EdVaaRZ4', '3517815'), + (15, 622, 'attending', '2021-03-10 16:35:44', '2025-12-17 19:47:51', 'EdVaaRZ4', '3517816'), + (15, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'EdVaaRZ4', '3523941'), + (15, 624, 'attending', '2021-02-27 01:04:00', '2025-12-17 19:47:50', 'EdVaaRZ4', '3528556'), + (15, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'EdVaaRZ4', '3533850'), + (15, 632, 'attending', '2021-03-01 00:56:54', '2025-12-17 19:47:51', 'EdVaaRZ4', '3533853'), + (15, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'EdVaaRZ4', '3536632'), + (15, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'EdVaaRZ4', '3536656'), + (15, 641, 'attending', '2021-03-17 13:21:44', '2025-12-17 19:47:44', 'EdVaaRZ4', '3539916'), + (15, 642, 'attending', '2021-03-17 13:21:48', '2025-12-17 19:47:44', 'EdVaaRZ4', '3539917'), + (15, 643, 'attending', '2021-04-15 17:48:15', '2025-12-17 19:47:45', 'EdVaaRZ4', '3539918'), + (15, 644, 'not_attending', '2021-04-20 14:29:21', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539919'), + (15, 645, 'attending', '2021-03-22 18:00:17', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539920'), + (15, 646, 'attending', '2021-03-22 18:00:22', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539921'), + (15, 647, 'not_attending', '2021-03-22 18:00:37', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539922'), + (15, 648, 'not_attending', '2021-05-15 20:32:59', '2025-12-17 19:47:47', 'EdVaaRZ4', '3539923'), + (15, 649, 'not_attending', '2021-03-10 16:35:55', '2025-12-17 19:47:51', 'EdVaaRZ4', '3539927'), + (15, 650, 'attending', '2021-03-17 13:21:38', '2025-12-17 19:47:44', 'EdVaaRZ4', '3539928'), + (15, 653, 'attending', '2021-03-06 17:45:31', '2025-12-17 19:47:51', 'EdVaaRZ4', '3546917'), + (15, 654, 'not_attending', '2021-03-09 00:10:54', '2025-12-17 19:47:51', 'EdVaaRZ4', '3546990'), + (15, 655, 'attending', '2021-03-10 16:35:42', '2025-12-17 19:47:51', 'EdVaaRZ4', '3547129'), + (15, 656, 'not_attending', '2021-03-10 16:35:50', '2025-12-17 19:47:51', 'EdVaaRZ4', '3547130'), + (15, 657, 'attending', '2021-04-15 17:48:13', '2025-12-17 19:47:45', 'EdVaaRZ4', '3547132'), + (15, 658, 'attending', '2021-06-06 19:03:03', '2025-12-17 19:47:47', 'EdVaaRZ4', '3547134'), + (15, 659, 'attending', '2021-03-17 13:21:46', '2025-12-17 19:47:44', 'EdVaaRZ4', '3547135'), + (15, 660, 'not_attending', '2021-07-08 23:24:43', '2025-12-17 19:47:39', 'EdVaaRZ4', '3547136'), + (15, 661, 'attending', '2021-03-17 13:21:43', '2025-12-17 19:47:44', 'EdVaaRZ4', '3547137'), + (15, 662, 'not_attending', '2021-04-20 14:29:18', '2025-12-17 19:47:45', 'EdVaaRZ4', '3547138'), + (15, 663, 'attending', '2021-03-22 18:00:48', '2025-12-17 19:47:46', 'EdVaaRZ4', '3547140'), + (15, 664, 'not_attending', '2021-09-10 18:09:21', '2025-12-17 19:47:43', 'EdVaaRZ4', '3547142'), + (15, 665, 'not_attending', '2021-09-04 13:36:54', '2025-12-17 19:47:43', 'EdVaaRZ4', '3547143'), + (15, 666, 'attending', '2021-08-07 22:08:15', '2025-12-17 19:47:42', 'EdVaaRZ4', '3547144'), + (15, 667, 'attending', '2021-08-28 17:24:09', '2025-12-17 19:47:42', 'EdVaaRZ4', '3547145'), + (15, 668, 'attending', '2021-03-22 18:00:47', '2025-12-17 19:47:46', 'EdVaaRZ4', '3547146'), + (15, 669, 'not_attending', '2021-06-13 02:35:38', '2025-12-17 19:47:38', 'EdVaaRZ4', '3547147'), + (15, 670, 'not_attending', '2021-06-11 00:40:55', '2025-12-17 19:47:48', 'EdVaaRZ4', '3547148'), + (15, 671, 'not_attending', '2021-07-17 21:29:46', '2025-12-17 19:47:39', 'EdVaaRZ4', '3547149'), + (15, 672, 'not_attending', '2021-03-22 18:00:40', '2025-12-17 19:47:46', 'EdVaaRZ4', '3547150'), + (15, 673, 'attending', '2021-06-30 22:18:55', '2025-12-17 19:47:38', 'EdVaaRZ4', '3547151'), + (15, 674, 'attending', '2021-08-05 18:38:55', '2025-12-17 19:47:41', 'EdVaaRZ4', '3547152'), + (15, 675, 'attending', '2021-07-31 17:18:45', '2025-12-17 19:47:40', 'EdVaaRZ4', '3547153'), + (15, 676, 'attending', '2021-07-22 23:50:23', '2025-12-17 19:47:40', 'EdVaaRZ4', '3547154'), + (15, 677, 'not_attending', '2021-05-15 20:33:01', '2025-12-17 19:47:47', 'EdVaaRZ4', '3547155'), + (15, 679, 'not_attending', '2021-03-30 01:58:32', '2025-12-17 19:47:44', 'EdVaaRZ4', '3547168'), + (15, 684, 'maybe', '2021-03-12 00:48:40', '2025-12-17 19:47:51', 'EdVaaRZ4', '3549257'), + (15, 685, 'attending', '2021-03-10 16:38:30', '2025-12-17 19:47:44', 'EdVaaRZ4', '3551564'), + (15, 687, 'not_attending', '2021-03-10 16:35:25', '2025-12-17 19:47:51', 'EdVaaRZ4', '3553405'), + (15, 705, 'attending', '2021-03-22 14:44:41', '2025-12-17 19:47:44', 'EdVaaRZ4', '3581895'), + (15, 706, 'attending', '2021-03-30 01:59:52', '2025-12-17 19:47:45', 'EdVaaRZ4', '3582734'), + (15, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'EdVaaRZ4', '3583262'), + (15, 711, 'attending', '2021-04-01 18:06:34', '2025-12-17 19:47:44', 'EdVaaRZ4', '3588075'), + (15, 717, 'not_attending', '2021-03-27 14:13:04', '2025-12-17 19:47:44', 'EdVaaRZ4', '3619523'), + (15, 718, 'attending', '2021-03-27 14:10:15', '2025-12-17 19:47:44', 'EdVaaRZ4', '3626844'), + (15, 722, 'maybe', '2021-04-02 20:56:56', '2025-12-17 19:47:44', 'EdVaaRZ4', '3646347'), + (15, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'EdVaaRZ4', '3661369'), + (15, 731, 'not_attending', '2021-04-07 02:03:33', '2025-12-17 19:47:44', 'EdVaaRZ4', '3674262'), + (15, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'EdVaaRZ4', '3677402'), + (15, 737, 'not_attending', '2021-04-05 20:11:03', '2025-12-17 19:47:44', 'EdVaaRZ4', '3679349'), + (15, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'EdVaaRZ4', '3730212'), + (15, 777, 'attending', '2021-04-30 01:24:39', '2025-12-17 19:47:46', 'EdVaaRZ4', '3746248'), + (15, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'EdVaaRZ4', '3793156'), + (15, 822, 'not_attending', '2021-06-03 01:51:55', '2025-12-17 19:47:47', 'EdVaaRZ4', '3969986'), + (15, 823, 'not_attending', '2021-06-11 00:40:53', '2025-12-17 19:47:48', 'EdVaaRZ4', '3974109'), + (15, 827, 'attending', '2021-06-04 23:06:44', '2025-12-17 19:47:47', 'EdVaaRZ4', '3975311'), + (15, 828, 'attending', '2021-06-06 19:02:59', '2025-12-17 19:47:47', 'EdVaaRZ4', '3975312'), + (15, 838, 'attending', '2021-06-06 17:32:06', '2025-12-17 19:47:47', 'EdVaaRZ4', '3994992'), + (15, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'EdVaaRZ4', '4014338'), + (15, 867, 'not_attending', '2021-06-13 02:35:41', '2025-12-17 19:47:38', 'EdVaaRZ4', '4021848'), + (15, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'EdVaaRZ4', '4136744'), + (15, 870, 'attending', '2021-06-30 22:18:53', '2025-12-17 19:47:39', 'EdVaaRZ4', '4136937'), + (15, 871, 'not_attending', '2021-07-08 23:24:47', '2025-12-17 19:47:39', 'EdVaaRZ4', '4136938'), + (15, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'EdVaaRZ4', '4136947'), + (15, 884, 'maybe', '2021-08-05 18:39:11', '2025-12-17 19:47:42', 'EdVaaRZ4', '4210314'), + (15, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'EdVaaRZ4', '4225444'), + (15, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'EdVaaRZ4', '4239259'), + (15, 900, 'attending', '2021-07-22 23:50:25', '2025-12-17 19:47:40', 'EdVaaRZ4', '4240316'), + (15, 901, 'attending', '2021-07-31 17:18:43', '2025-12-17 19:47:40', 'EdVaaRZ4', '4240317'), + (15, 902, 'attending', '2021-08-05 18:38:57', '2025-12-17 19:47:41', 'EdVaaRZ4', '4240318'), + (15, 903, 'attending', '2021-08-07 22:08:17', '2025-12-17 19:47:42', 'EdVaaRZ4', '4240320'), + (15, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'EdVaaRZ4', '4250163'), + (15, 906, 'not_attending', '2021-07-05 05:49:54', '2025-12-17 19:47:39', 'EdVaaRZ4', '4253431'), + (15, 917, 'maybe', '2021-07-12 00:12:22', '2025-12-17 19:47:39', 'EdVaaRZ4', '4274481'), + (15, 919, 'attending', '2021-07-16 01:42:54', '2025-12-17 19:47:39', 'EdVaaRZ4', '4275957'), + (15, 920, 'not_attending', '2021-07-20 01:49:37', '2025-12-17 19:47:40', 'EdVaaRZ4', '4277819'), + (15, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'EdVaaRZ4', '4301723'), + (15, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'EdVaaRZ4', '4302093'), + (15, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'EdVaaRZ4', '4304151'), + (15, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'EdVaaRZ4', '4345519'), + (15, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'EdVaaRZ4', '4356801'), + (15, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'EdVaaRZ4', '4358025'), + (15, 973, 'maybe', '2021-08-20 00:36:19', '2025-12-17 19:47:42', 'EdVaaRZ4', '4366186'), + (15, 974, 'attending', '2021-08-28 17:24:11', '2025-12-17 19:47:42', 'EdVaaRZ4', '4366187'), + (15, 988, 'not_attending', '2021-08-24 09:06:10', '2025-12-17 19:47:42', 'EdVaaRZ4', '4402823'), + (15, 989, 'attending', '2021-08-27 20:15:48', '2025-12-17 19:47:43', 'EdVaaRZ4', '4414282'), + (15, 990, 'not_attending', '2021-09-04 13:36:56', '2025-12-17 19:47:43', 'EdVaaRZ4', '4420735'), + (15, 991, 'not_attending', '2021-09-10 18:09:19', '2025-12-17 19:47:43', 'EdVaaRZ4', '4420738'), + (15, 992, 'not_attending', '2021-09-18 15:40:07', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420739'), + (15, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420741'), + (15, 994, 'not_attending', '2021-10-02 21:54:13', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420742'), + (15, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420744'), + (15, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'EdVaaRZ4', '4420747'), + (15, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'EdVaaRZ4', '4420748'), + (15, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'EdVaaRZ4', '4420749'), + (15, 1017, 'attending', '2021-09-06 22:16:58', '2025-12-17 19:47:43', 'EdVaaRZ4', '4441822'), + (15, 1020, 'not_attending', '2021-09-08 01:28:44', '2025-12-17 19:47:43', 'EdVaaRZ4', '4451787'), + (15, 1021, 'maybe', '2021-09-09 22:34:51', '2025-12-17 19:47:34', 'EdVaaRZ4', '4451803'), + (15, 1023, 'not_attending', '2021-09-10 16:51:17', '2025-12-17 19:47:43', 'EdVaaRZ4', '4461883'), + (15, 1033, 'not_attending', '2021-09-18 15:39:58', '2025-12-17 19:47:43', 'EdVaaRZ4', '4486006'), + (15, 1040, 'not_attending', '2021-12-10 23:10:15', '2025-12-17 19:47:38', 'EdVaaRZ4', '4496605'), + (15, 1041, 'attending', '2021-12-04 23:57:06', '2025-12-17 19:47:37', 'EdVaaRZ4', '4496606'), + (15, 1042, 'not_attending', '2021-11-19 02:30:29', '2025-12-17 19:47:37', 'EdVaaRZ4', '4496607'), + (15, 1044, 'not_attending', '2021-11-04 22:05:33', '2025-12-17 19:47:36', 'EdVaaRZ4', '4496609'), + (15, 1048, 'attending', '2021-11-12 12:41:35', '2025-12-17 19:47:36', 'EdVaaRZ4', '4496613'), + (15, 1054, 'attending', '2022-03-19 21:48:02', '2025-12-17 19:47:25', 'EdVaaRZ4', '4496619'), + (15, 1055, 'attending', '2021-12-18 20:22:04', '2025-12-17 19:47:31', 'EdVaaRZ4', '4496621'), + (15, 1057, 'not_attending', '2021-11-19 02:30:22', '2025-12-17 19:47:37', 'EdVaaRZ4', '4496624'), + (15, 1058, 'attending', '2022-03-26 17:27:55', '2025-12-17 19:47:33', 'EdVaaRZ4', '4496625'), + (15, 1059, 'not_attending', '2022-03-10 14:12:09', '2025-12-17 19:47:33', 'EdVaaRZ4', '4496626'), + (15, 1060, 'attending', '2022-03-23 15:57:43', '2025-12-17 19:47:25', 'EdVaaRZ4', '4496627'), + (15, 1062, 'attending', '2022-03-05 16:32:16', '2025-12-17 19:47:33', 'EdVaaRZ4', '4496629'), + (15, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'EdVaaRZ4', '4508342'), + (15, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'EdVaaRZ4', '4568602'), + (15, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'EdVaaRZ4', '4572153'), + (15, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'EdVaaRZ4', '4585962'), + (15, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'EdVaaRZ4', '4596356'), + (15, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'EdVaaRZ4', '4598860'), + (15, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'EdVaaRZ4', '4598861'), + (15, 1099, 'not_attending', '2021-11-04 22:05:31', '2025-12-17 19:47:36', 'EdVaaRZ4', '4602797'), + (15, 1114, 'attending', '2021-11-12 12:41:37', '2025-12-17 19:47:36', 'EdVaaRZ4', '4637896'), + (15, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'EdVaaRZ4', '4642994'), + (15, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'EdVaaRZ4', '4642995'), + (15, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'EdVaaRZ4', '4642996'), + (15, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'EdVaaRZ4', '4642997'), + (15, 1126, 'not_attending', '2021-12-10 23:10:13', '2025-12-17 19:47:38', 'EdVaaRZ4', '4645687'), + (15, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'EdVaaRZ4', '4645698'), + (15, 1128, 'not_attending', '2021-11-19 02:30:24', '2025-12-17 19:47:37', 'EdVaaRZ4', '4645704'), + (15, 1129, 'not_attending', '2021-11-19 02:30:27', '2025-12-17 19:47:37', 'EdVaaRZ4', '4645705'), + (15, 1130, 'attending', '2021-12-04 23:57:04', '2025-12-17 19:47:37', 'EdVaaRZ4', '4658824'), + (15, 1131, 'attending', '2021-12-18 20:22:06', '2025-12-17 19:47:31', 'EdVaaRZ4', '4658825'), + (15, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'EdVaaRZ4', '4668385'), + (15, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'EdVaaRZ4', '4694407'), + (15, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'EdVaaRZ4', '4736497'), + (15, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'EdVaaRZ4', '4736499'), + (15, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'EdVaaRZ4', '4736500'), + (15, 1180, 'attending', '2022-02-26 19:53:42', '2025-12-17 19:47:33', 'EdVaaRZ4', '4736502'), + (15, 1181, 'attending', '2022-03-05 16:32:18', '2025-12-17 19:47:33', 'EdVaaRZ4', '4736503'), + (15, 1182, 'not_attending', '2022-03-10 14:12:07', '2025-12-17 19:47:33', 'EdVaaRZ4', '4736504'), + (15, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'EdVaaRZ4', '4746789'), + (15, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'EdVaaRZ4', '4753929'), + (15, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'EdVaaRZ4', '5038850'), + (15, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'EdVaaRZ4', '5045826'), + (15, 1259, 'not_attending', '2022-03-10 16:36:10', '2025-12-17 19:47:33', 'EdVaaRZ4', '5132533'), + (15, 1264, 'attending', '2022-03-06 19:42:52', '2025-12-17 19:47:25', 'EdVaaRZ4', '5160281'), + (15, 1265, 'not_attending', '2022-03-10 16:36:13', '2025-12-17 19:47:33', 'EdVaaRZ4', '5160862'), + (15, 1272, 'attending', '2022-03-19 21:47:59', '2025-12-17 19:47:25', 'EdVaaRZ4', '5186582'), + (15, 1273, 'attending', '2022-03-23 15:57:40', '2025-12-17 19:47:25', 'EdVaaRZ4', '5186583'), + (15, 1274, 'attending', '2022-04-02 20:05:50', '2025-12-17 19:47:26', 'EdVaaRZ4', '5186585'), + (15, 1275, 'attending', '2022-04-02 20:05:48', '2025-12-17 19:47:26', 'EdVaaRZ4', '5186587'), + (15, 1281, 'attending', '2022-04-09 00:08:55', '2025-12-17 19:47:27', 'EdVaaRZ4', '5190437'), + (15, 1284, 'attending', '2022-04-15 11:43:21', '2025-12-17 19:47:27', 'EdVaaRZ4', '5195095'), + (15, 1294, 'attending', '2022-04-03 21:28:18', '2025-12-17 19:47:26', 'EdVaaRZ4', '5214686'), + (15, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'EdVaaRZ4', '5215989'), + (15, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'EdVaaRZ4', '5223686'), + (15, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'EdVaaRZ4', '5227432'), + (15, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'EdVaaRZ4', '5231461'), + (15, 1338, 'attending', '2022-04-15 13:54:59', '2025-12-17 19:47:27', 'EdVaaRZ4', '5245270'), + (15, 1342, 'attending', '2022-04-16 20:37:52', '2025-12-17 19:47:27', 'EdVaaRZ4', '5246530'), + (15, 1344, 'attending', '2022-04-26 12:15:15', '2025-12-17 19:47:28', 'EdVaaRZ4', '5247465'), + (15, 1345, 'not_attending', '2022-04-17 20:17:52', '2025-12-17 19:47:27', 'EdVaaRZ4', '5247466'), + (15, 1346, 'not_attending', '2022-04-17 20:17:44', '2025-12-17 19:47:27', 'EdVaaRZ4', '5247467'), + (15, 1355, 'attending', '2022-04-21 17:53:21', '2025-12-17 19:47:27', 'EdVaaRZ4', '5252573'), + (15, 1362, 'attending', '2022-04-26 12:15:07', '2025-12-17 19:47:28', 'EdVaaRZ4', '5260800'), + (15, 1374, 'attending', '2022-05-06 15:40:15', '2025-12-17 19:47:28', 'EdVaaRZ4', '5269930'), + (15, 1378, 'not_attending', '2022-05-06 15:40:37', '2025-12-17 19:47:29', 'EdVaaRZ4', '5271448'), + (15, 1379, 'not_attending', '2022-05-06 15:40:40', '2025-12-17 19:47:29', 'EdVaaRZ4', '5271449'), + (15, 1380, 'attending', '2022-05-27 16:20:26', '2025-12-17 19:47:30', 'EdVaaRZ4', '5271450'), + (15, 1383, 'not_attending', '2022-05-12 16:37:57', '2025-12-17 19:47:28', 'EdVaaRZ4', '5276469'), + (15, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'EdVaaRZ4', '5278159'), + (15, 1391, 'attending', '2022-05-06 09:04:55', '2025-12-17 19:47:28', 'EdVaaRZ4', '5279531'), + (15, 1392, 'attending', '2022-05-06 09:04:58', '2025-12-17 19:47:28', 'EdVaaRZ4', '5279532'), + (15, 1395, 'attending', '2022-05-07 22:19:45', '2025-12-17 19:47:28', 'EdVaaRZ4', '5281102'), + (15, 1396, 'not_attending', '2022-05-11 01:54:19', '2025-12-17 19:47:28', 'EdVaaRZ4', '5281103'), + (15, 1397, 'not_attending', '2022-05-11 01:54:22', '2025-12-17 19:47:29', 'EdVaaRZ4', '5281104'), + (15, 1402, 'attending', '2022-05-12 16:38:55', '2025-12-17 19:47:30', 'EdVaaRZ4', '5287977'), + (15, 1407, 'attending', '2022-06-04 21:28:55', '2025-12-17 19:47:30', 'EdVaaRZ4', '5363695'), + (15, 1408, 'not_attending', '2022-05-20 14:12:54', '2025-12-17 19:47:29', 'EdVaaRZ4', '5365960'), + (15, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'EdVaaRZ4', '5368973'), + (15, 1419, 'not_attending', '2022-06-08 22:31:22', '2025-12-17 19:47:30', 'EdVaaRZ4', '5373081'), + (15, 1428, 'not_attending', '2022-06-10 22:45:52', '2025-12-17 19:47:30', 'EdVaaRZ4', '5378247'), + (15, 1431, 'attending', '2022-06-05 02:21:34', '2025-12-17 19:47:30', 'EdVaaRZ4', '5389605'), + (15, 1432, 'attending', '2022-05-30 21:33:07', '2025-12-17 19:47:30', 'EdVaaRZ4', '5391566'), + (15, 1442, 'not_attending', '2022-06-14 16:25:04', '2025-12-17 19:47:17', 'EdVaaRZ4', '5397265'), + (15, 1443, 'attending', '2022-06-04 21:28:58', '2025-12-17 19:47:30', 'EdVaaRZ4', '5397613'), + (15, 1444, 'attending', '2022-06-05 02:21:32', '2025-12-17 19:47:30', 'EdVaaRZ4', '5397614'), + (15, 1445, 'not_attending', '2022-06-14 16:25:03', '2025-12-17 19:47:17', 'EdVaaRZ4', '5397615'), + (15, 1451, 'not_attending', '2022-06-14 16:24:58', '2025-12-17 19:47:17', 'EdVaaRZ4', '5403967'), + (15, 1458, 'not_attending', '2022-06-16 13:20:36', '2025-12-17 19:47:17', 'EdVaaRZ4', '5404786'), + (15, 1462, 'not_attending', '2022-06-14 16:24:59', '2025-12-17 19:47:17', 'EdVaaRZ4', '5405203'), + (15, 1468, 'maybe', '2022-06-30 00:16:08', '2025-12-17 19:47:19', 'EdVaaRZ4', '5406832'), + (15, 1477, 'attending', '2022-06-21 23:53:41', '2025-12-17 19:47:17', 'EdVaaRZ4', '5408766'), + (15, 1478, 'not_attending', '2022-06-23 14:52:01', '2025-12-17 19:47:19', 'EdVaaRZ4', '5408794'), + (15, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'EdVaaRZ4', '5411699'), + (15, 1482, 'attending', '2022-06-23 14:52:54', '2025-12-17 19:47:19', 'EdVaaRZ4', '5412550'), + (15, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'EdVaaRZ4', '5415046'), + (15, 1493, 'attending', '2022-06-25 20:30:44', '2025-12-17 19:47:19', 'EdVaaRZ4', '5420218'), + (15, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'EdVaaRZ4', '5422086'), + (15, 1498, 'attending', '2022-06-27 16:23:41', '2025-12-17 19:47:19', 'EdVaaRZ4', '5422406'), + (15, 1499, 'attending', '2022-06-27 16:23:39', '2025-12-17 19:47:19', 'EdVaaRZ4', '5422407'), + (15, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'EdVaaRZ4', '5424565'), + (15, 1503, 'attending', '2022-06-29 18:21:03', '2025-12-17 19:47:19', 'EdVaaRZ4', '5426820'), + (15, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'EdVaaRZ4', '5426882'), + (15, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'EdVaaRZ4', '5427083'), + (15, 1507, 'attending', '2022-07-02 22:10:07', '2025-12-17 19:47:19', 'EdVaaRZ4', '5433100'), + (15, 1508, 'attending', '2022-07-13 20:21:10', '2025-12-17 19:47:19', 'EdVaaRZ4', '5433453'), + (15, 1511, 'not_attending', '2022-07-08 17:47:06', '2025-12-17 19:47:19', 'EdVaaRZ4', '5437733'), + (15, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'EdVaaRZ4', '5441125'), + (15, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'EdVaaRZ4', '5441126'), + (15, 1515, 'attending', '2022-08-06 13:38:40', '2025-12-17 19:47:21', 'EdVaaRZ4', '5441128'), + (15, 1516, 'attending', '2022-08-15 00:10:27', '2025-12-17 19:47:23', 'EdVaaRZ4', '5441129'), + (15, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'EdVaaRZ4', '5441131'), + (15, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'EdVaaRZ4', '5441132'), + (15, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'EdVaaRZ4', '5446643'), + (15, 1531, 'not_attending', '2022-07-16 02:18:37', '2025-12-17 19:47:19', 'EdVaaRZ4', '5448756'), + (15, 1532, 'attending', '2022-07-22 22:13:28', '2025-12-17 19:47:20', 'EdVaaRZ4', '5448757'), + (15, 1533, 'attending', '2022-07-19 17:33:32', '2025-12-17 19:47:21', 'EdVaaRZ4', '5448758'), + (15, 1534, 'maybe', '2022-08-06 13:38:43', '2025-12-17 19:47:21', 'EdVaaRZ4', '5448759'), + (15, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'EdVaaRZ4', '5453325'), + (15, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'EdVaaRZ4', '5454516'), + (15, 1544, 'attending', '2022-09-15 10:07:33', '2025-12-17 19:47:11', 'EdVaaRZ4', '5454517'), + (15, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'EdVaaRZ4', '5454605'), + (15, 1549, 'not_attending', '2022-07-21 20:35:38', '2025-12-17 19:47:20', 'EdVaaRZ4', '5454789'), + (15, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'EdVaaRZ4', '5455037'), + (15, 1555, 'attending', '2022-07-21 02:25:37', '2025-12-17 19:47:20', 'EdVaaRZ4', '5456489'), + (15, 1558, 'not_attending', '2022-08-22 23:07:12', '2025-12-17 19:47:10', 'EdVaaRZ4', '5458730'), + (15, 1560, 'attending', '2022-07-22 18:36:03', '2025-12-17 19:47:23', 'EdVaaRZ4', '5458768'), + (15, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'EdVaaRZ4', '5461278'), + (15, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'EdVaaRZ4', '5469480'), + (15, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'EdVaaRZ4', '5471073'), + (15, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'EdVaaRZ4', '5474663'), + (15, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'EdVaaRZ4', '5482022'), + (15, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'EdVaaRZ4', '5482793'), + (15, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'EdVaaRZ4', '5488912'), + (15, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'EdVaaRZ4', '5492192'), + (15, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'EdVaaRZ4', '5493139'), + (15, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'EdVaaRZ4', '5493200'), + (15, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'EdVaaRZ4', '5502188'), + (15, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'EdVaaRZ4', '5505059'), + (15, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'EdVaaRZ4', '5509055'), + (15, 1619, 'attending', '2022-08-22 23:07:36', '2025-12-17 19:47:23', 'EdVaaRZ4', '5512862'), + (15, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'EdVaaRZ4', '5513985'), + (15, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'EdVaaRZ4', '5519981'), + (15, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'EdVaaRZ4', '5522550'), + (15, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'EdVaaRZ4', '5534683'), + (15, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'EdVaaRZ4', '5537735'), + (15, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'EdVaaRZ4', '5540859'), + (15, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'EdVaaRZ4', '5546619'), + (15, 1652, 'attending', '2022-09-07 14:36:11', '2025-12-17 19:47:24', 'EdVaaRZ4', '5552671'), + (15, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'EdVaaRZ4', '5555245'), + (15, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'EdVaaRZ4', '5557747'), + (15, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'EdVaaRZ4', '5560255'), + (15, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'EdVaaRZ4', '5562906'), + (15, 1667, 'attending', '2022-09-22 18:49:56', '2025-12-17 19:47:11', 'EdVaaRZ4', '5563221'), + (15, 1668, 'attending', '2022-09-30 22:00:24', '2025-12-17 19:47:12', 'EdVaaRZ4', '5563222'), + (15, 1669, 'attending', '2022-09-12 02:07:00', '2025-12-17 19:47:10', 'EdVaaRZ4', '5564033'), + (15, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'EdVaaRZ4', '5600604'), + (15, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'EdVaaRZ4', '5605544'), + (15, 1699, 'attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'EdVaaRZ4', '5606737'), + (15, 1705, 'attending', '2022-09-29 21:10:42', '2025-12-17 19:47:12', 'EdVaaRZ4', '5612209'), + (15, 1717, 'attending', '2022-10-16 02:21:04', '2025-12-17 19:47:13', 'EdVaaRZ4', '5622842'), + (15, 1719, 'attending', '2022-10-07 10:43:36', '2025-12-17 19:47:12', 'EdVaaRZ4', '5630958'), + (15, 1720, 'attending', '2022-10-14 19:34:56', '2025-12-17 19:47:12', 'EdVaaRZ4', '5630959'), + (15, 1721, 'attending', '2022-10-21 09:03:25', '2025-12-17 19:47:13', 'EdVaaRZ4', '5630960'), + (15, 1722, 'not_attending', '2022-10-24 16:13:27', '2025-12-17 19:47:14', 'EdVaaRZ4', '5630961'), + (15, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'EdVaaRZ4', '5630962'), + (15, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'EdVaaRZ4', '5630966'), + (15, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'EdVaaRZ4', '5630967'), + (15, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'EdVaaRZ4', '5630968'), + (15, 1727, 'attending', '2022-12-02 01:24:30', '2025-12-17 19:47:16', 'EdVaaRZ4', '5630969'), + (15, 1728, 'attending', '2022-12-06 18:45:17', '2025-12-17 19:47:17', 'EdVaaRZ4', '5630970'), + (15, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'EdVaaRZ4', '5635406'), + (15, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'EdVaaRZ4', '5638765'), + (15, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'EdVaaRZ4', '5640097'), + (15, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'EdVaaRZ4', '5640843'), + (15, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'EdVaaRZ4', '5641521'), + (15, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'EdVaaRZ4', '5642818'), + (15, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'EdVaaRZ4', '5652395'), + (15, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'EdVaaRZ4', '5670445'), + (15, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'EdVaaRZ4', '5671637'), + (15, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'EdVaaRZ4', '5672329'), + (15, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'EdVaaRZ4', '5674057'), + (15, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'EdVaaRZ4', '5674060'), + (15, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'EdVaaRZ4', '5677461'), + (15, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'EdVaaRZ4', '5698046'), + (15, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'EdVaaRZ4', '5699760'), + (15, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'EdVaaRZ4', '5741601'), + (15, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'EdVaaRZ4', '5763458'), + (15, 1801, 'maybe', '2022-12-02 01:24:33', '2025-12-17 19:47:16', 'EdVaaRZ4', '5764668'), + (15, 1806, 'not_attending', '2023-01-21 13:59:41', '2025-12-17 19:47:05', 'EdVaaRZ4', '5764676'), + (15, 1807, 'maybe', '2023-01-12 23:08:47', '2025-12-17 19:47:05', 'EdVaaRZ4', '5764677'), + (15, 1808, 'not_attending', '2023-03-01 01:42:49', '2025-12-17 19:47:08', 'EdVaaRZ4', '5764678'), + (15, 1810, 'maybe', '2023-04-19 17:09:46', '2025-12-17 19:47:00', 'EdVaaRZ4', '5764680'), + (15, 1812, 'not_attending', '2023-03-01 01:43:23', '2025-12-17 19:47:09', 'EdVaaRZ4', '5764682'), + (15, 1815, 'not_attending', '2023-02-17 17:29:44', '2025-12-17 19:47:07', 'EdVaaRZ4', '5764685'), + (15, 1817, 'not_attending', '2023-03-08 01:14:05', '2025-12-17 19:46:57', 'EdVaaRZ4', '5764687'), + (15, 1818, 'not_attending', '2023-02-07 03:02:14', '2025-12-17 19:47:07', 'EdVaaRZ4', '5764688'), + (15, 1821, 'not_attending', '2023-03-01 01:43:36', '2025-12-17 19:46:56', 'EdVaaRZ4', '5764691'), + (15, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'EdVaaRZ4', '5774172'), + (15, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'EdVaaRZ4', '5818247'), + (15, 1834, 'attending', '2022-12-10 19:47:11', '2025-12-17 19:47:17', 'EdVaaRZ4', '5819470'), + (15, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'EdVaaRZ4', '5819471'), + (15, 1841, 'attending', '2022-12-09 19:25:14', '2025-12-17 19:47:05', 'EdVaaRZ4', '5827665'), + (15, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'EdVaaRZ4', '5827739'), + (15, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'EdVaaRZ4', '5844306'), + (15, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'EdVaaRZ4', '5850159'), + (15, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'EdVaaRZ4', '5858999'), + (15, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'EdVaaRZ4', '5871984'), + (15, 1860, 'not_attending', '2023-01-13 12:28:57', '2025-12-17 19:47:05', 'EdVaaRZ4', '5876309'), + (15, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'EdVaaRZ4', '5876354'), + (15, 1864, 'not_attending', '2023-01-21 13:59:39', '2025-12-17 19:47:05', 'EdVaaRZ4', '5879675'), + (15, 1865, 'attending', '2023-01-24 02:17:22', '2025-12-17 19:47:06', 'EdVaaRZ4', '5879676'), + (15, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'EdVaaRZ4', '5880939'), + (15, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'EdVaaRZ4', '5880940'), + (15, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'EdVaaRZ4', '5880942'), + (15, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'EdVaaRZ4', '5880943'), + (15, 1870, 'not_attending', '2023-01-21 13:59:43', '2025-12-17 19:47:05', 'EdVaaRZ4', '5881740'), + (15, 1873, 'not_attending', '2023-01-21 13:59:46', '2025-12-17 19:47:05', 'EdVaaRZ4', '5885295'), + (15, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'EdVaaRZ4', '5887890'), + (15, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'EdVaaRZ4', '5888598'), + (15, 1879, 'attending', '2023-01-25 01:00:36', '2025-12-17 19:47:06', 'EdVaaRZ4', '5893001'), + (15, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'EdVaaRZ4', '5893260'), + (15, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'EdVaaRZ4', '5899826'), + (15, 1888, 'maybe', '2023-02-17 17:29:59', '2025-12-17 19:47:07', 'EdVaaRZ4', '5900197'), + (15, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'EdVaaRZ4', '5900199'), + (15, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'EdVaaRZ4', '5900200'), + (15, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'EdVaaRZ4', '5900202'), + (15, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'EdVaaRZ4', '5900203'), + (15, 1894, 'attending', '2023-01-31 21:20:24', '2025-12-17 19:47:06', 'EdVaaRZ4', '5901100'), + (15, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'EdVaaRZ4', '5901108'), + (15, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'EdVaaRZ4', '5901126'), + (15, 1897, 'not_attending', '2023-02-02 14:44:01', '2025-12-17 19:47:07', 'EdVaaRZ4', '5901128'), + (15, 1899, 'not_attending', '2023-02-07 03:02:27', '2025-12-17 19:47:07', 'EdVaaRZ4', '5901323'), + (15, 1909, 'not_attending', '2023-02-07 03:02:25', '2025-12-17 19:47:07', 'EdVaaRZ4', '5906541'), + (15, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'EdVaaRZ4', '5909655'), + (15, 1912, 'attending', '2023-02-12 22:53:06', '2025-12-17 19:47:07', 'EdVaaRZ4', '5909808'), + (15, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'EdVaaRZ4', '5910522'), + (15, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'EdVaaRZ4', '5910526'), + (15, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'EdVaaRZ4', '5910528'), + (15, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'EdVaaRZ4', '5916219'), + (15, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'EdVaaRZ4', '5936234'), + (15, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'EdVaaRZ4', '5958351'), + (15, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'EdVaaRZ4', '5959751'), + (15, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'EdVaaRZ4', '5959755'), + (15, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'EdVaaRZ4', '5960055'), + (15, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'EdVaaRZ4', '5961684'), + (15, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'EdVaaRZ4', '5962132'), + (15, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'EdVaaRZ4', '5962133'), + (15, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'EdVaaRZ4', '5962134'), + (15, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'EdVaaRZ4', '5962317'), + (15, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'EdVaaRZ4', '5962318'), + (15, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'EdVaaRZ4', '5965933'), + (15, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'EdVaaRZ4', '5967014'), + (15, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'EdVaaRZ4', '5972763'), + (15, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'EdVaaRZ4', '5972815'), + (15, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'EdVaaRZ4', '5974016'), + (15, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'EdVaaRZ4', '5975052'), + (15, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'EdVaaRZ4', '5975054'), + (15, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'EdVaaRZ4', '5981515'), + (15, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'EdVaaRZ4', '5993516'), + (15, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'EdVaaRZ4', '5998939'), + (15, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'EdVaaRZ4', '6028191'), + (15, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'EdVaaRZ4', '6040066'), + (15, 1983, 'attending', '2023-03-23 23:38:11', '2025-12-17 19:46:59', 'EdVaaRZ4', '6040068'), + (15, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'EdVaaRZ4', '6042717'), + (15, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'EdVaaRZ4', '6044838'), + (15, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'EdVaaRZ4', '6044839'), + (15, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVaaRZ4', '6045684'), + (15, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'EdVaaRZ4', '6050104'), + (15, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'EdVaaRZ4', '6053195'), + (15, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'EdVaaRZ4', '6053198'), + (15, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'EdVaaRZ4', '6056085'), + (15, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'EdVaaRZ4', '6056916'), + (15, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'EdVaaRZ4', '6059290'), + (15, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'EdVaaRZ4', '6060328'), + (15, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'EdVaaRZ4', '6061037'), + (15, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'EdVaaRZ4', '6061039'), + (15, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'EdVaaRZ4', '6065813'), + (15, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'EdVaaRZ4', '6067245'), + (15, 2024, 'attending', '2023-04-19 00:02:24', '2025-12-17 19:47:00', 'EdVaaRZ4', '6067437'), + (15, 2027, 'attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'EdVaaRZ4', '6068094'), + (15, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'EdVaaRZ4', '6068252'), + (15, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'EdVaaRZ4', '6068253'), + (15, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'EdVaaRZ4', '6068254'), + (15, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'EdVaaRZ4', '6068280'), + (15, 2032, 'not_attending', '2023-05-18 16:21:30', '2025-12-17 19:47:04', 'EdVaaRZ4', '6068281'), + (15, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'EdVaaRZ4', '6069093'), + (15, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'EdVaaRZ4', '6072528'), + (15, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'EdVaaRZ4', '6075556'), + (15, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'EdVaaRZ4', '6079840'), + (15, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'EdVaaRZ4', '6083398'), + (15, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'EdVaaRZ4', '6093504'), + (15, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'EdVaaRZ4', '6097414'), + (15, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'EdVaaRZ4', '6097442'), + (15, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'EdVaaRZ4', '6097684'), + (15, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'EdVaaRZ4', '6098762'), + (15, 2064, 'not_attending', '2023-06-22 23:57:46', '2025-12-17 19:46:50', 'EdVaaRZ4', '6099988'), + (15, 2066, 'not_attending', '2023-05-25 00:10:52', '2025-12-17 19:47:04', 'EdVaaRZ4', '6101361'), + (15, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'EdVaaRZ4', '6101362'), + (15, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'EdVaaRZ4', '6107314'), + (15, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'EdVaaRZ4', '6120034'), + (15, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'EdVaaRZ4', '6136733'), + (15, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'EdVaaRZ4', '6137989'), + (15, 2098, 'attending', '2023-06-07 23:44:25', '2025-12-17 19:47:04', 'EdVaaRZ4', '6139831'), + (15, 2108, 'maybe', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'EdVaaRZ4', '6150864'), + (15, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'EdVaaRZ4', '6155491'), + (15, 2115, 'attending', '2023-06-23 00:00:49', '2025-12-17 19:46:50', 'EdVaaRZ4', '6161437'), + (15, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'EdVaaRZ4', '6164417'), + (15, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'EdVaaRZ4', '6166388'), + (15, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'EdVaaRZ4', '6176439'), + (15, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'EdVaaRZ4', '6182410'), + (15, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'EdVaaRZ4', '6185812'), + (15, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'EdVaaRZ4', '6187651'), + (15, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'EdVaaRZ4', '6187963'), + (15, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'EdVaaRZ4', '6187964'), + (15, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'EdVaaRZ4', '6187966'), + (15, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'EdVaaRZ4', '6187967'), + (15, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'EdVaaRZ4', '6187969'), + (15, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'EdVaaRZ4', '6334878'), + (15, 2152, 'attending', '2023-07-14 21:10:17', '2025-12-17 19:46:52', 'EdVaaRZ4', '6337021'), + (15, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'EdVaaRZ4', '6337236'), + (15, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'EdVaaRZ4', '6337970'), + (15, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'EdVaaRZ4', '6338308'), + (15, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'EdVaaRZ4', '6338342'), + (15, 2159, 'attending', '2023-07-22 11:26:01', '2025-12-17 19:46:53', 'EdVaaRZ4', '6338355'), + (15, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'EdVaaRZ4', '6341710'), + (15, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'EdVaaRZ4', '6342044'), + (15, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'EdVaaRZ4', '6342298'), + (15, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'EdVaaRZ4', '6343294'), + (15, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'EdVaaRZ4', '6347034'), + (15, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'EdVaaRZ4', '6347056'), + (15, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'EdVaaRZ4', '6353830'), + (15, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'EdVaaRZ4', '6353831'), + (15, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'EdVaaRZ4', '6357867'), + (15, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'EdVaaRZ4', '6358652'), + (15, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'EdVaaRZ4', '6358668'), + (15, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'EdVaaRZ4', '6358669'), + (15, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'EdVaaRZ4', '6361709'), + (15, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'EdVaaRZ4', '6361710'), + (15, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'EdVaaRZ4', '6361711'), + (15, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'EdVaaRZ4', '6361712'), + (15, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'EdVaaRZ4', '6361713'), + (15, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'EdVaaRZ4', '6382573'), + (15, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'EdVaaRZ4', '6388604'), + (15, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'EdVaaRZ4', '6394629'), + (15, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'EdVaaRZ4', '6394631'), + (15, 2253, 'attending', '2023-09-29 15:06:54', '2025-12-17 19:46:45', 'EdVaaRZ4', '6401811'), + (15, 2267, 'attending', '2023-09-29 22:06:03', '2025-12-17 19:46:45', 'EdVaaRZ4', '6440034'), + (15, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'EdVaaRZ4', '6440863'), + (15, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'EdVaaRZ4', '6445440'), + (15, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'EdVaaRZ4', '6453951'), + (15, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'EdVaaRZ4', '6461696'), + (15, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'EdVaaRZ4', '6462129'), + (15, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'EdVaaRZ4', '6463218'), + (15, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'EdVaaRZ4', '6472181'), + (15, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'EdVaaRZ4', '6482693'), + (15, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'EdVaaRZ4', '6484200'), + (15, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'EdVaaRZ4', '6484680'), + (15, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'EdVaaRZ4', '6507741'), + (15, 2322, 'attending', '2023-11-18 00:47:30', '2025-12-17 19:46:48', 'EdVaaRZ4', '6514659'), + (15, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'EdVaaRZ4', '6514660'), + (15, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'EdVaaRZ4', '6519103'), + (15, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'EdVaaRZ4', '6535681'), + (15, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'EdVaaRZ4', '6584747'), + (15, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'EdVaaRZ4', '6587097'), + (15, 2354, 'attending', '2023-11-26 19:07:54', '2025-12-17 19:46:48', 'EdVaaRZ4', '6591742'), + (15, 2360, 'attending', '2023-12-01 21:05:04', '2025-12-17 19:46:49', 'EdVaaRZ4', '6599341'), + (15, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'EdVaaRZ4', '6609022'), + (15, 2365, 'attending', '2023-12-24 00:21:28', '2025-12-17 19:46:37', 'EdVaaRZ4', '6613093'), + (15, 2373, 'attending', '2023-12-31 22:55:05', '2025-12-17 19:46:38', 'EdVaaRZ4', '6632678'), + (15, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'EdVaaRZ4', '6632757'), + (15, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'EdVaaRZ4', '6644187'), + (15, 2380, 'attending', '2023-12-30 21:10:25', '2025-12-17 19:46:37', 'EdVaaRZ4', '6645105'), + (15, 2381, 'attending', '2023-12-31 23:26:41', '2025-12-17 19:46:37', 'EdVaaRZ4', '6646398'), + (15, 2383, 'attending', '2024-01-02 00:29:29', '2025-12-17 19:46:37', 'EdVaaRZ4', '6647606'), + (15, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'EdVaaRZ4', '6648951'), + (15, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'EdVaaRZ4', '6648952'), + (15, 2388, 'attending', '2024-01-03 16:30:42', '2025-12-17 19:46:37', 'EdVaaRZ4', '6649244'), + (15, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'EdVaaRZ4', '6655401'), + (15, 2399, 'attending', '2024-01-10 01:32:16', '2025-12-17 19:46:38', 'EdVaaRZ4', '6657583'), + (15, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'EdVaaRZ4', '6661585'), + (15, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'EdVaaRZ4', '6661588'), + (15, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'EdVaaRZ4', '6661589'), + (15, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'EdVaaRZ4', '6699906'), + (15, 2408, 'not_attending', '2024-01-24 12:50:40', '2025-12-17 19:46:40', 'EdVaaRZ4', '6699907'), + (15, 2409, 'attending', '2024-01-31 21:32:43', '2025-12-17 19:46:41', 'EdVaaRZ4', '6699909'), + (15, 2411, 'attending', '2024-02-11 19:42:59', '2025-12-17 19:46:41', 'EdVaaRZ4', '6699913'), + (15, 2412, 'not_attending', '2024-02-20 12:48:20', '2025-12-17 19:46:43', 'EdVaaRZ4', '6700717'), + (15, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'EdVaaRZ4', '6701109'), + (15, 2419, 'attending', '2024-01-18 23:07:45', '2025-12-17 19:46:41', 'EdVaaRZ4', '6704505'), + (15, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'EdVaaRZ4', '6704561'), + (15, 2421, 'attending', '2024-01-26 21:40:06', '2025-12-17 19:46:40', 'EdVaaRZ4', '6704598'), + (15, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'EdVaaRZ4', '6705219'), + (15, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'EdVaaRZ4', '6708410'), + (15, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'EdVaaRZ4', '6710153'), + (15, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'EdVaaRZ4', '6711552'), + (15, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'EdVaaRZ4', '6711553'), + (15, 2432, 'not_attending', '2024-01-24 13:25:18', '2025-12-17 19:46:41', 'EdVaaRZ4', '6712822'), + (15, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'EdVaaRZ4', '6722688'), + (15, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'EdVaaRZ4', '6730620'), + (15, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'EdVaaRZ4', '6730642'), + (15, 2453, 'attending', '2024-02-07 02:49:07', '2025-12-17 19:46:42', 'EdVaaRZ4', '6740364'), + (15, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'EdVaaRZ4', '6743829'), + (15, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'EdVaaRZ4', '7030380'), + (15, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'EdVaaRZ4', '7033677'), + (15, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'EdVaaRZ4', '7035415'), + (15, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'EdVaaRZ4', '7044715'), + (15, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'EdVaaRZ4', '7050318'), + (15, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'EdVaaRZ4', '7050319'), + (15, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'EdVaaRZ4', '7050322'), + (15, 2498, 'attending', '2024-03-06 02:22:19', '2025-12-17 19:46:33', 'EdVaaRZ4', '7057662'), + (15, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'EdVaaRZ4', '7057804'), + (15, 2502, 'attending', '2024-03-06 02:22:16', '2025-12-17 19:46:33', 'EdVaaRZ4', '7061202'), + (15, 2504, 'attending', '2024-03-07 18:30:58', '2025-12-17 19:46:33', 'EdVaaRZ4', '7063296'), + (15, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'EdVaaRZ4', '7072824'), + (15, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'EdVaaRZ4', '7074348'), + (15, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'EdVaaRZ4', '7074364'), + (15, 2537, 'attending', '2024-03-21 23:22:01', '2025-12-17 19:46:33', 'EdVaaRZ4', '7085484'), + (15, 2538, 'attending', '2024-03-21 23:22:13', '2025-12-17 19:46:33', 'EdVaaRZ4', '7085485'), + (15, 2539, 'attending', '2024-04-03 22:48:54', '2025-12-17 19:46:33', 'EdVaaRZ4', '7085486'), + (15, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'EdVaaRZ4', '7089267'), + (15, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'EdVaaRZ4', '7098747'), + (15, 2553, 'attending', '2024-03-29 22:56:01', '2025-12-17 19:46:33', 'EdVaaRZ4', '7113468'), + (15, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'EdVaaRZ4', '7114856'), + (15, 2555, 'attending', '2024-03-31 02:41:06', '2025-12-17 19:46:33', 'EdVaaRZ4', '7114951'), + (15, 2556, 'attending', '2024-04-03 00:12:59', '2025-12-17 19:46:34', 'EdVaaRZ4', '7114955'), + (15, 2557, 'attending', '2024-04-03 00:12:17', '2025-12-17 19:46:34', 'EdVaaRZ4', '7114956'), + (15, 2558, 'attending', '2024-04-03 00:13:01', '2025-12-17 19:46:35', 'EdVaaRZ4', '7114957'), + (15, 2564, 'maybe', '2024-04-10 20:31:33', '2025-12-17 19:46:33', 'EdVaaRZ4', '7134735'), + (15, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'EdVaaRZ4', '7153615'), + (15, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'EdVaaRZ4', '7159484'), + (15, 2582, 'attending', '2024-04-12 21:56:19', '2025-12-17 19:46:34', 'EdVaaRZ4', '7169765'), + (15, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'EdVaaRZ4', '7178446'), + (15, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'EdVaaRZ4', '7220467'), + (15, 2609, 'not_attending', '2024-04-30 19:19:56', '2025-12-17 19:46:35', 'EdVaaRZ4', '7240354'), + (15, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'EdVaaRZ4', '7251633'), + (15, 2626, 'attending', '2024-05-12 03:35:29', '2025-12-17 19:46:35', 'EdVaaRZ4', '7264723'), + (15, 2627, 'attending', '2024-05-12 03:42:06', '2025-12-17 19:46:35', 'EdVaaRZ4', '7264724'), + (15, 2628, 'attending', '2024-05-12 03:42:10', '2025-12-17 19:46:36', 'EdVaaRZ4', '7264725'), + (15, 2629, 'attending', '2024-05-12 03:42:13', '2025-12-17 19:46:28', 'EdVaaRZ4', '7264726'), + (15, 2647, 'attending', '2024-05-26 21:04:16', '2025-12-17 19:46:28', 'EdVaaRZ4', '7282057'), + (15, 2650, 'attending', '2024-05-24 16:28:37', '2025-12-17 19:46:35', 'EdVaaRZ4', '7288199'), + (15, 2651, 'not_attending', '2024-05-24 22:48:45', '2025-12-17 19:46:35', 'EdVaaRZ4', '7288200'), + (15, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'EdVaaRZ4', '7302674'), + (15, 2662, 'attending', '2024-06-02 19:03:13', '2025-12-17 19:46:36', 'EdVaaRZ4', '7302815'), + (15, 2667, 'attending', '2024-06-05 12:14:40', '2025-12-17 19:46:36', 'EdVaaRZ4', '7307776'), + (15, 2668, 'attending', '2024-06-07 14:53:21', '2025-12-17 19:46:36', 'EdVaaRZ4', '7308821'), + (15, 2678, 'not_attending', '2024-06-10 15:38:30', '2025-12-17 19:46:28', 'EdVaaRZ4', '7319489'), + (15, 2679, 'attending', '2024-06-10 15:38:33', '2025-12-17 19:46:29', 'EdVaaRZ4', '7319490'), + (15, 2688, 'not_attending', '2024-06-19 16:41:06', '2025-12-17 19:46:29', 'EdVaaRZ4', '7324073'), + (15, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'EdVaaRZ4', '7324074'), + (15, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'EdVaaRZ4', '7324075'), + (15, 2691, 'attending', '2024-07-19 03:36:12', '2025-12-17 19:46:30', 'EdVaaRZ4', '7324076'), + (15, 2692, 'not_attending', '2024-07-07 16:12:55', '2025-12-17 19:46:30', 'EdVaaRZ4', '7324077'), + (15, 2693, 'not_attending', '2024-07-07 16:13:06', '2025-12-17 19:46:31', 'EdVaaRZ4', '7324078'), + (15, 2694, 'not_attending', '2024-07-28 00:06:48', '2025-12-17 19:46:31', 'EdVaaRZ4', '7324079'), + (15, 2695, 'attending', '2024-08-15 17:11:03', '2025-12-17 19:46:31', 'EdVaaRZ4', '7324080'), + (15, 2696, 'attending', '2024-08-15 17:11:06', '2025-12-17 19:46:32', 'EdVaaRZ4', '7324081'), + (15, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'EdVaaRZ4', '7324082'), + (15, 2717, 'attending', '2024-06-19 16:40:39', '2025-12-17 19:46:29', 'EdVaaRZ4', '7329149'), + (15, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'EdVaaRZ4', '7331457'), + (15, 2761, 'attending', '2024-07-17 13:35:16', '2025-12-17 19:46:30', 'EdVaaRZ4', '7363412'), + (15, 2762, 'attending', '2024-07-14 15:15:33', '2025-12-17 19:46:30', 'EdVaaRZ4', '7363413'), + (15, 2765, 'attending', '2024-07-15 00:24:46', '2025-12-17 19:46:30', 'EdVaaRZ4', '7363604'), + (15, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'EdVaaRZ4', '7363643'), + (15, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'EdVaaRZ4', '7368606'), + (15, 2775, 'attending', '2024-07-21 22:06:26', '2025-12-17 19:46:30', 'EdVaaRZ4', '7368642'), + (15, 2797, 'attending', '2024-08-10 14:00:56', '2025-12-17 19:46:31', 'EdVaaRZ4', '7392641'), + (15, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'EdVaaRZ4', '7397462'), + (15, 2821, 'attending', '2024-10-04 14:57:09', '2025-12-17 19:46:26', 'EdVaaRZ4', '7424275'), + (15, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'EdVaaRZ4', '7424276'), + (15, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'EdVaaRZ4', '7432751'), + (15, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'EdVaaRZ4', '7432752'), + (15, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'EdVaaRZ4', '7432753'), + (15, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432754'), + (15, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432755'), + (15, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432756'), + (15, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432758'), + (15, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432759'), + (15, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'EdVaaRZ4', '7433834'), + (15, 2849, 'not_attending', '2024-09-30 14:33:40', '2025-12-17 19:46:25', 'EdVaaRZ4', '7457114'), + (15, 2850, 'not_attending', '2024-09-30 14:33:37', '2025-12-17 19:46:25', 'EdVaaRZ4', '7457153'), + (15, 2860, 'attending', '2024-09-30 14:34:37', '2025-12-17 19:46:26', 'EdVaaRZ4', '7469393'), + (15, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'EdVaaRZ4', '7470197'), + (15, 2879, 'attending', '2024-10-11 01:03:12', '2025-12-17 19:46:26', 'EdVaaRZ4', '7633863'), + (15, 2884, 'attending', '2024-10-17 10:05:28', '2025-12-17 19:46:26', 'EdVaaRZ4', '7649932'), + (15, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'EdVaaRZ4', '7685613'), + (15, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'EdVaaRZ4', '7688194'), + (15, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'EdVaaRZ4', '7688196'), + (15, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'EdVaaRZ4', '7688289'), + (15, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'EdVaaRZ4', '7692763'), + (15, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'EdVaaRZ4', '7697552'), + (15, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'EdVaaRZ4', '7699878'), + (15, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'EdVaaRZ4', '7704043'), + (15, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'EdVaaRZ4', '7712467'), + (15, 2925, 'not_attending', '2024-12-12 02:54:45', '2025-12-17 19:46:21', 'EdVaaRZ4', '7713584'), + (15, 2926, 'not_attending', '2024-12-07 01:52:17', '2025-12-17 19:46:21', 'EdVaaRZ4', '7713585'), + (15, 2927, 'attending', '2024-12-16 14:55:45', '2025-12-17 19:46:22', 'EdVaaRZ4', '7713586'), + (15, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'EdVaaRZ4', '7738518'), + (15, 2959, 'attending', '2024-12-22 17:21:05', '2025-12-17 19:46:22', 'EdVaaRZ4', '7747388'), + (15, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'EdVaaRZ4', '7750632'), + (15, 2963, 'attending', '2024-12-28 03:41:43', '2025-12-17 19:46:22', 'EdVaaRZ4', '7750636'), + (15, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'EdVaaRZ4', '7796540'), + (15, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'EdVaaRZ4', '7796541'), + (15, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'EdVaaRZ4', '7796542'), + (15, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'EdVaaRZ4', '7825913'), + (15, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'EdVaaRZ4', '7825920'), + (15, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'EdVaaRZ4', '7826209'), + (15, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'EdVaaRZ4', '7834742'), + (15, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'EdVaaRZ4', '7842108'), + (15, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'EdVaaRZ4', '7842902'), + (15, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'EdVaaRZ4', '7842903'), + (15, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'EdVaaRZ4', '7842904'), + (15, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'EdVaaRZ4', '7842905'), + (15, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'EdVaaRZ4', '7855719'), + (15, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'EdVaaRZ4', '7860683'), + (15, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'EdVaaRZ4', '7860684'), + (15, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'EdVaaRZ4', '7866095'), + (15, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'EdVaaRZ4', '7869170'), + (15, 3014, 'attending', '2025-03-31 15:25:44', '2025-12-17 19:46:19', 'EdVaaRZ4', '7869185'), + (15, 3015, 'not_attending', '2025-04-03 22:38:28', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869186'), + (15, 3016, 'not_attending', '2025-03-31 15:25:48', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869187'), + (15, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'EdVaaRZ4', '7869188'), + (15, 3018, 'not_attending', '2025-03-31 15:25:46', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869189'), + (15, 3028, 'not_attending', '2025-04-11 11:21:32', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869199'), + (15, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'EdVaaRZ4', '7869201'), + (15, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'EdVaaRZ4', '7877465'), + (15, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'EdVaaRZ4', '7888250'), + (15, 3059, 'attending', '2025-03-26 11:29:01', '2025-12-17 19:46:19', 'EdVaaRZ4', '7891868'), + (15, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'EdVaaRZ4', '7904777'), + (15, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'EdVaaRZ4', '8349164'), + (15, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'EdVaaRZ4', '8349545'), + (15, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'EdVaaRZ4', '8353584'), + (15, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'EdVaaRZ4', '8368028'), + (15, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'EdVaaRZ4', '8368029'), + (15, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'EdVaaRZ4', '8388462'), + (15, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'EdVaaRZ4', '8400273'), + (15, 3154, 'attending', '2025-06-25 17:14:42', '2025-12-17 19:46:15', 'EdVaaRZ4', '8400274'), + (15, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'EdVaaRZ4', '8400275'), + (15, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'EdVaaRZ4', '8400276'), + (15, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'EdVaaRZ4', '8404977'), + (15, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'EdVaaRZ4', '8430783'), + (15, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'EdVaaRZ4', '8430784'), + (15, 3183, 'attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'EdVaaRZ4', '8430799'), + (15, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'EdVaaRZ4', '8430800'), + (15, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'EdVaaRZ4', '8430801'), + (15, 3188, 'attending', '2025-07-15 11:58:26', '2025-12-17 19:46:17', 'EdVaaRZ4', '8438709'), + (15, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'EdVaaRZ4', '8457738'), + (15, 3195, 'attending', '2025-08-06 22:02:50', '2025-12-17 19:46:17', 'EdVaaRZ4', '8458118'), + (15, 3196, 'attending', '2025-08-13 23:06:06', '2025-12-17 19:46:17', 'EdVaaRZ4', '8458543'), + (15, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'EdVaaRZ4', '8459566'), + (15, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'EdVaaRZ4', '8459567'), + (15, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'EdVaaRZ4', '8461032'), + (15, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'EdVaaRZ4', '8477877'), + (15, 3217, 'attending', '2025-08-08 15:56:00', '2025-12-17 19:46:17', 'EdVaaRZ4', '8481811'), + (15, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'EdVaaRZ4', '8485688'), + (15, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'EdVaaRZ4', '8490587'), + (15, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'EdVaaRZ4', '8493552'), + (15, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'EdVaaRZ4', '8493553'), + (15, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'EdVaaRZ4', '8493554'), + (15, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'EdVaaRZ4', '8493555'), + (15, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'EdVaaRZ4', '8493556'), + (15, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'EdVaaRZ4', '8493557'), + (15, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'EdVaaRZ4', '8493558'), + (15, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'EdVaaRZ4', '8493559'), + (15, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'EdVaaRZ4', '8493560'), + (15, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'EdVaaRZ4', '8493561'), + (15, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'EdVaaRZ4', '8493572'), + (15, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'EdVaaRZ4', '8540725'), + (15, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'EdVaaRZ4', '8555421'), + (16, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'O4ZrpPl4', '6044839'), + (16, 1994, 'attending', '2023-04-05 21:32:02', '2025-12-17 19:46:59', 'O4ZrpPl4', '6050104'), + (16, 1998, 'attending', '2023-04-10 22:48:48', '2025-12-17 19:46:59', 'O4ZrpPl4', '6052056'), + (16, 2002, 'attending', '2023-04-28 17:19:32', '2025-12-17 19:47:01', 'O4ZrpPl4', '6052605'), + (16, 2005, 'attending', '2023-04-05 22:52:52', '2025-12-17 19:46:58', 'O4ZrpPl4', '6053195'), + (16, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'O4ZrpPl4', '6053198'), + (16, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'O4ZrpPl4', '6056085'), + (16, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'O4ZrpPl4', '6056916'), + (16, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'O4ZrpPl4', '6059290'), + (16, 2013, 'maybe', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'O4ZrpPl4', '6060328'), + (16, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'O4ZrpPl4', '6061037'), + (16, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'O4ZrpPl4', '6061039'), + (16, 2019, 'attending', '2023-04-20 22:28:14', '2025-12-17 19:47:00', 'O4ZrpPl4', '6062934'), + (16, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'O4ZrpPl4', '6067245'), + (16, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'O4ZrpPl4', '6068094'), + (16, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'O4ZrpPl4', '6068252'), + (16, 2029, 'maybe', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'O4ZrpPl4', '6068253'), + (16, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'O4ZrpPl4', '6068254'), + (16, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'O4ZrpPl4', '6068280'), + (16, 2032, 'maybe', '2023-06-03 23:23:25', '2025-12-17 19:47:04', 'O4ZrpPl4', '6068281'), + (16, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'O4ZrpPl4', '6069093'), + (16, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'O4ZrpPl4', '6072528'), + (16, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'O4ZrpPl4', '6079840'), + (16, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'O4ZrpPl4', '6083398'), + (16, 2052, 'attending', '2023-05-06 01:56:24', '2025-12-17 19:47:02', 'O4ZrpPl4', '6088220'), + (16, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'O4ZrpPl4', '6093504'), + (16, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'O4ZrpPl4', '6097414'), + (16, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'O4ZrpPl4', '6097442'), + (16, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'O4ZrpPl4', '6097684'), + (16, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'O4ZrpPl4', '6098762'), + (16, 2064, 'attending', '2023-06-24 21:18:12', '2025-12-17 19:46:50', 'O4ZrpPl4', '6099988'), + (16, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'O4ZrpPl4', '6101361'), + (16, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'O4ZrpPl4', '6101362'), + (16, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'O4ZrpPl4', '6103752'), + (16, 2074, 'attending', '2023-05-24 18:49:11', '2025-12-17 19:47:03', 'O4ZrpPl4', '6107312'), + (16, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'O4ZrpPl4', '6107314'), + (16, 2087, 'maybe', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'O4ZrpPl4', '6120034'), + (16, 2089, 'attending', '2023-06-08 02:49:24', '2025-12-17 19:47:04', 'O4ZrpPl4', '6125227'), + (16, 2090, 'maybe', '2023-06-02 16:07:23', '2025-12-17 19:47:04', 'O4ZrpPl4', '6127961'), + (16, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'O4ZrpPl4', '6136733'), + (16, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'O4ZrpPl4', '6137989'), + (16, 2099, 'attending', '2023-06-15 20:33:14', '2025-12-17 19:46:49', 'O4ZrpPl4', '6143012'), + (16, 2105, 'attending', '2023-06-19 23:02:00', '2025-12-17 19:46:50', 'O4ZrpPl4', '6149551'), + (16, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'O4ZrpPl4', '6150864'), + (16, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'O4ZrpPl4', '6155491'), + (16, 2117, 'attending', '2023-06-25 06:53:23', '2025-12-17 19:46:50', 'O4ZrpPl4', '6163750'), + (16, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'O4ZrpPl4', '6164417'), + (16, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'O4ZrpPl4', '6166388'), + (16, 2121, 'maybe', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'O4ZrpPl4', '6176439'), + (16, 2122, 'attending', '2023-07-06 22:27:58', '2025-12-17 19:46:51', 'O4ZrpPl4', '6176476'), + (16, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'O4ZrpPl4', '6182410'), + (16, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'O4ZrpPl4', '6185812'), + (16, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'O4ZrpPl4', '6187651'), + (16, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'O4ZrpPl4', '6187963'), + (16, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'O4ZrpPl4', '6187964'), + (16, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'O4ZrpPl4', '6187966'), + (16, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'O4ZrpPl4', '6187967'), + (16, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'O4ZrpPl4', '6187969'), + (16, 2141, 'maybe', '2023-07-12 18:24:19', '2025-12-17 19:46:52', 'O4ZrpPl4', '6188819'), + (16, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'O4ZrpPl4', '6334878'), + (16, 2146, 'attending', '2023-07-21 22:56:44', '2025-12-17 19:46:53', 'O4ZrpPl4', '6335638'), + (16, 2152, 'attending', '2023-07-14 23:00:30', '2025-12-17 19:46:52', 'O4ZrpPl4', '6337021'), + (16, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'O4ZrpPl4', '6337236'), + (16, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'O4ZrpPl4', '6337970'), + (16, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'O4ZrpPl4', '6338308'), + (16, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'O4ZrpPl4', '6340845'), + (16, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'O4ZrpPl4', '6341710'), + (16, 2165, 'attending', '2023-08-02 17:03:18', '2025-12-17 19:46:54', 'O4ZrpPl4', '6342044'), + (16, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'O4ZrpPl4', '6342298'), + (16, 2168, 'maybe', '2023-07-17 22:13:49', '2025-12-17 19:46:52', 'O4ZrpPl4', '6342302'), + (16, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'O4ZrpPl4', '6343294'), + (16, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'O4ZrpPl4', '6347034'), + (16, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'O4ZrpPl4', '6347056'), + (16, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'O4ZrpPl4', '6353830'), + (16, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'O4ZrpPl4', '6353831'), + (16, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'O4ZrpPl4', '6357867'), + (16, 2191, 'maybe', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'O4ZrpPl4', '6358652'), + (16, 2195, 'maybe', '2023-08-22 20:05:57', '2025-12-17 19:46:55', 'O4ZrpPl4', '6359397'), + (16, 2199, 'attending', '2023-08-16 22:23:32', '2025-12-17 19:46:55', 'O4ZrpPl4', '6359849'), + (16, 2204, 'attending', '2023-08-19 20:58:39', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361542'), + (16, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'O4ZrpPl4', '6361709'), + (16, 2209, 'maybe', '2023-08-22 20:05:24', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361710'), + (16, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361711'), + (16, 2211, 'attending', '2023-08-18 10:03:28', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361712'), + (16, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'O4ZrpPl4', '6361713'), + (16, 2221, 'maybe', '2023-08-20 21:41:23', '2025-12-17 19:46:55', 'O4ZrpPl4', '6367357'), + (16, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'O4ZrpPl4', '6382573'), + (16, 2239, 'maybe', '2023-09-02 19:13:24', '2025-12-17 19:46:56', 'O4ZrpPl4', '6387592'), + (16, 2240, 'maybe', '2023-09-09 20:00:59', '2025-12-17 19:46:56', 'O4ZrpPl4', '6388603'), + (16, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'O4ZrpPl4', '6388604'), + (16, 2247, 'attending', '2023-09-06 21:51:23', '2025-12-17 19:46:56', 'O4ZrpPl4', '6394628'), + (16, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'O4ZrpPl4', '6394629'), + (16, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'O4ZrpPl4', '6394631'), + (16, 2268, 'maybe', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'O4ZrpPl4', '6440863'), + (16, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'O4ZrpPl4', '6445440'), + (16, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'O4ZrpPl4', '6453951'), + (16, 2279, 'attending', '2023-10-12 19:28:31', '2025-12-17 19:46:46', 'O4ZrpPl4', '6455460'), + (16, 2284, 'attending', '2023-10-13 22:09:08', '2025-12-17 19:46:46', 'O4ZrpPl4', '6460928'), + (16, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'O4ZrpPl4', '6461696'), + (16, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'O4ZrpPl4', '6462129'), + (16, 2292, 'maybe', '2023-11-01 20:37:18', '2025-12-17 19:46:47', 'O4ZrpPl4', '6462216'), + (16, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'O4ZrpPl4', '6463218'), + (16, 2299, 'maybe', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'O4ZrpPl4', '6472181'), + (16, 2300, 'attending', '2023-10-29 02:17:29', '2025-12-17 19:46:47', 'O4ZrpPl4', '6472185'), + (16, 2303, 'attending', '2023-10-28 21:19:34', '2025-12-17 19:46:47', 'O4ZrpPl4', '6482691'), + (16, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'O4ZrpPl4', '6482693'), + (16, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'O4ZrpPl4', '6484200'), + (16, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'O4ZrpPl4', '6484680'), + (16, 2310, 'maybe', '2023-11-12 00:14:12', '2025-12-17 19:46:47', 'O4ZrpPl4', '6487709'), + (16, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'O4ZrpPl4', '6507741'), + (16, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'O4ZrpPl4', '6514659'), + (16, 2323, 'maybe', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'O4ZrpPl4', '6514660'), + (16, 2325, 'attending', '2023-12-16 22:42:46', '2025-12-17 19:46:36', 'O4ZrpPl4', '6514663'), + (16, 2331, 'attending', '2023-11-15 01:27:48', '2025-12-17 19:46:47', 'O4ZrpPl4', '6518640'), + (16, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'O4ZrpPl4', '6519103'), + (16, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'O4ZrpPl4', '6535681'), + (16, 2345, 'attending', '2023-11-29 19:20:03', '2025-12-17 19:46:48', 'O4ZrpPl4', '6582414'), + (16, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'O4ZrpPl4', '6584747'), + (16, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'O4ZrpPl4', '6587097'), + (16, 2362, 'maybe', '2023-12-07 07:42:32', '2025-12-17 19:46:49', 'O4ZrpPl4', '6605708'), + (16, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'O4ZrpPl4', '6609022'), + (16, 2366, 'maybe', '2023-12-12 23:15:22', '2025-12-17 19:46:36', 'O4ZrpPl4', '6615304'), + (16, 2370, 'maybe', '2023-12-13 04:15:43', '2025-12-17 19:46:36', 'O4ZrpPl4', '6623765'), + (16, 2374, 'maybe', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'O4ZrpPl4', '6632757'), + (16, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'O4ZrpPl4', '6644187'), + (16, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'O4ZrpPl4', '6648951'), + (16, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'O4ZrpPl4', '6648952'), + (16, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'O4ZrpPl4', '6655401'), + (16, 2398, 'maybe', '2024-01-10 21:30:13', '2025-12-17 19:46:37', 'O4ZrpPl4', '6657381'), + (16, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'O4ZrpPl4', '6661585'), + (16, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'O4ZrpPl4', '6661588'), + (16, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'O4ZrpPl4', '6661589'), + (16, 2406, 'attending', '2024-01-19 22:02:29', '2025-12-17 19:46:40', 'O4ZrpPl4', '6692344'), + (16, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'O4ZrpPl4', '6699906'), + (16, 2411, 'maybe', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'O4ZrpPl4', '6699913'), + (16, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'O4ZrpPl4', '6701109'), + (16, 2421, 'attending', '2024-01-27 00:27:22', '2025-12-17 19:46:40', 'O4ZrpPl4', '6704598'), + (16, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'O4ZrpPl4', '6705219'), + (16, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'O4ZrpPl4', '6710153'), + (16, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'O4ZrpPl4', '6711552'), + (16, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'O4ZrpPl4', '6711553'), + (16, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'O4ZrpPl4', '6722688'), + (16, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'O4ZrpPl4', '6730620'), + (16, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'O4ZrpPl4', '6730642'), + (16, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'O4ZrpPl4', '6740364'), + (16, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'O4ZrpPl4', '6743829'), + (16, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'O4ZrpPl4', '7030380'), + (16, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'O4ZrpPl4', '7033677'), + (16, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'O4ZrpPl4', '7035415'), + (16, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'O4ZrpPl4', '7044715'), + (16, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'O4ZrpPl4', '7050318'), + (16, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'O4ZrpPl4', '7050319'), + (16, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'O4ZrpPl4', '7050322'), + (16, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'O4ZrpPl4', '7057804'), + (16, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'O4ZrpPl4', '7059866'), + (16, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'O4ZrpPl4', '7072824'), + (16, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'O4ZrpPl4', '7074348'), + (16, 2521, 'maybe', '2024-06-20 22:47:00', '2025-12-17 19:46:29', 'O4ZrpPl4', '7074361'), + (16, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'O4ZrpPl4', '7074364'), + (16, 2534, 'attending', '2024-03-13 22:46:19', '2025-12-17 19:46:32', 'O4ZrpPl4', '7076875'), + (16, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'O4ZrpPl4', '7089267'), + (16, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'O4ZrpPl4', '7098747'), + (16, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'O4ZrpPl4', '7113468'), + (16, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'O4ZrpPl4', '7114856'), + (16, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'O4ZrpPl4', '7114951'), + (16, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'O4ZrpPl4', '7114955'), + (16, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'O4ZrpPl4', '7114956'), + (16, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'O4ZrpPl4', '7114957'), + (16, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'O4ZrpPl4', '7153615'), + (16, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'O4ZrpPl4', '7159484'), + (16, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'O4ZrpPl4', '7178446'), + (16, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'O4ZrpPl4', '7220467'), + (16, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'O4ZrpPl4', '7240354'), + (16, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'O4ZrpPl4', '7251633'), + (16, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'O4ZrpPl4', '7263048'), + (16, 2629, 'maybe', '2024-06-08 22:23:37', '2025-12-17 19:46:28', 'O4ZrpPl4', '7264726'), + (16, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'O4ZrpPl4', '7302674'), + (16, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'O4ZrpPl4', '7324073'), + (16, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'O4ZrpPl4', '7324074'), + (16, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'O4ZrpPl4', '7324075'), + (16, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'O4ZrpPl4', '7324078'), + (16, 2695, 'maybe', '2024-08-16 23:09:06', '2025-12-17 19:46:32', 'O4ZrpPl4', '7324080'), + (16, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'O4ZrpPl4', '7324082'), + (16, 2699, 'attending', '2024-06-12 22:27:52', '2025-12-17 19:46:28', 'O4ZrpPl4', '7324385'), + (16, 2712, 'maybe', '2024-08-02 17:49:42', '2025-12-17 19:46:31', 'O4ZrpPl4', '7326525'), + (16, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'O4ZrpPl4', '7331457'), + (16, 2724, 'attending', '2024-06-26 22:14:29', '2025-12-17 19:46:29', 'O4ZrpPl4', '7332562'), + (16, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'O4ZrpPl4', '7356752'), + (16, 2755, 'attending', '2024-07-10 20:52:24', '2025-12-17 19:46:29', 'O4ZrpPl4', '7357808'), + (16, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'O4ZrpPl4', '7363643'), + (16, 2767, 'attending', '2024-07-22 21:56:54', '2025-12-17 19:46:30', 'O4ZrpPl4', '7364726'), + (16, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'O4ZrpPl4', '7368606'), + (16, 2800, 'maybe', '2024-08-16 02:44:40', '2025-12-17 19:46:31', 'O4ZrpPl4', '7397405'), + (16, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'O4ZrpPl4', '7397462'), + (16, 2806, 'maybe', '2024-09-18 22:16:50', '2025-12-17 19:46:25', 'O4ZrpPl4', '7404888'), + (16, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'O4ZrpPl4', '7424275'), + (16, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'O4ZrpPl4', '7424276'), + (16, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'O4ZrpPl4', '7432751'), + (16, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'O4ZrpPl4', '7432752'), + (16, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'O4ZrpPl4', '7432753'), + (16, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432754'), + (16, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432755'), + (16, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432756'), + (16, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432758'), + (16, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432759'), + (16, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'O4ZrpPl4', '7433834'), + (16, 2839, 'attending', '2024-09-25 22:13:40', '2025-12-17 19:46:25', 'O4ZrpPl4', '7439262'), + (16, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'O4ZrpPl4', '7470197'), + (16, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'O4ZrpPl4', '7685613'), + (16, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'O4ZrpPl4', '7688194'), + (16, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'O4ZrpPl4', '7688196'), + (16, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'O4ZrpPl4', '7688289'), + (16, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'O4ZrpPl4', '7692763'), + (16, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'O4ZrpPl4', '7697552'), + (16, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'O4ZrpPl4', '7699878'), + (16, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'O4ZrpPl4', '7704043'), + (16, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'O4ZrpPl4', '7712467'), + (16, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'O4ZrpPl4', '7713585'), + (16, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'O4ZrpPl4', '7713586'), + (16, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'O4ZrpPl4', '7738518'), + (16, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'O4ZrpPl4', '7750636'), + (16, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'O4ZrpPl4', '7796540'), + (16, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'O4ZrpPl4', '7796541'), + (16, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'O4ZrpPl4', '7796542'), + (16, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'O4ZrpPl4', '7825913'), + (16, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'O4ZrpPl4', '7826209'), + (16, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'O4ZrpPl4', '7834742'), + (16, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'O4ZrpPl4', '7842108'), + (16, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'O4ZrpPl4', '7842902'), + (16, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'O4ZrpPl4', '7842903'), + (16, 2993, 'maybe', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'O4ZrpPl4', '7842904'), + (16, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'O4ZrpPl4', '7842905'), + (16, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'O4ZrpPl4', '7855719'), + (16, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'O4ZrpPl4', '7860683'), + (16, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'O4ZrpPl4', '7860684'), + (16, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'O4ZrpPl4', '7866095'), + (16, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'O4ZrpPl4', '7869170'), + (16, 3014, 'attending', '2025-04-05 19:10:35', '2025-12-17 19:46:20', 'O4ZrpPl4', '7869185'), + (16, 3015, 'attending', '2025-04-26 22:40:32', '2025-12-17 19:46:20', 'O4ZrpPl4', '7869186'), + (16, 3016, 'attending', '2025-04-19 19:07:23', '2025-12-17 19:46:20', 'O4ZrpPl4', '7869187'), + (16, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'O4ZrpPl4', '7869188'), + (16, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'O4ZrpPl4', '7869201'), + (16, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'O4ZrpPl4', '7877465'), + (16, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'O4ZrpPl4', '7878570'), + (16, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'O4ZrpPl4', '7888250'), + (16, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'O4ZrpPl4', '7904777'), + (16, 3094, 'maybe', '2025-05-03 23:14:30', '2025-12-17 19:46:21', 'O4ZrpPl4', '8342292'), + (16, 3095, 'attending', '2025-05-03 22:55:01', '2025-12-17 19:46:20', 'O4ZrpPl4', '8342293'), + (16, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'O4ZrpPl4', '8349164'), + (16, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'O4ZrpPl4', '8349545'), + (16, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'O4ZrpPl4', '8353584'), + (16, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'O4ZrpPl4', '8368028'), + (16, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'O4ZrpPl4', '8368029'), + (16, 3136, 'maybe', '2025-05-21 21:01:37', '2025-12-17 19:46:21', 'O4ZrpPl4', '8374152'), + (16, 3137, 'maybe', '2025-05-21 21:01:27', '2025-12-17 19:46:21', 'O4ZrpPl4', '8374153'), + (16, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'O4ZrpPl4', '8388462'), + (16, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'O4ZrpPl4', '8400273'), + (16, 3154, 'maybe', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'O4ZrpPl4', '8400274'), + (16, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'O4ZrpPl4', '8400275'), + (16, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'O4ZrpPl4', '8400276'), + (16, 3169, 'attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'O4ZrpPl4', '8404977'), + (16, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'O4ZrpPl4', '8430783'), + (16, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'O4ZrpPl4', '8430784'), + (16, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'O4ZrpPl4', '8430799'), + (16, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'O4ZrpPl4', '8430800'), + (16, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'O4ZrpPl4', '8430801'), + (16, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'O4ZrpPl4', '8438709'), + (16, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'O4ZrpPl4', '8457738'), + (16, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'O4ZrpPl4', '8459566'), + (16, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'O4ZrpPl4', '8459567'), + (16, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'O4ZrpPl4', '8461032'), + (16, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'O4ZrpPl4', '8477877'), + (16, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'O4ZrpPl4', '8485688'), + (16, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'O4ZrpPl4', '8490587'), + (16, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'O4ZrpPl4', '8493552'), + (16, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'O4ZrpPl4', '8493553'), + (16, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'O4ZrpPl4', '8493554'), + (16, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'O4ZrpPl4', '8493555'), + (16, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'O4ZrpPl4', '8493556'), + (16, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'O4ZrpPl4', '8493557'), + (16, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'O4ZrpPl4', '8493558'), + (16, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'O4ZrpPl4', '8493559'), + (16, 3244, 'maybe', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'O4ZrpPl4', '8493560'), + (16, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'O4ZrpPl4', '8493561'), + (16, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'O4ZrpPl4', '8493572'), + (16, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'O4ZrpPl4', '8540725'), + (16, 3295, 'maybe', '2025-11-01 15:55:41', '2025-12-17 19:46:14', 'O4ZrpPl4', '8547541'), + (16, 3300, 'attending', '2025-11-08 21:57:29', '2025-12-17 19:46:14', 'O4ZrpPl4', '8549145'), + (16, 3302, 'attending', '2025-11-15 10:40:34', '2025-12-17 19:46:14', 'O4ZrpPl4', '8550022'), + (16, 3304, 'maybe', '2025-11-22 20:50:29', '2025-12-17 19:46:14', 'O4ZrpPl4', '8550024'), + (16, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'O4ZrpPl4', '8555421'), + (16, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'O4ZrpPl4', '8555522'), + (17, 2993, 'not_attending', '2025-03-14 23:27:13', '2025-12-17 19:46:19', 'dOKY6z8d', '7842904'), + (17, 3012, 'attending', '2025-03-21 15:39:58', '2025-12-17 19:46:19', 'dOKY6z8d', '7866095'), + (17, 3016, 'attending', '2025-04-18 01:56:37', '2025-12-17 19:46:20', 'dOKY6z8d', '7869187'), + (17, 3017, 'attending', '2025-03-25 00:56:02', '2025-12-17 19:46:19', 'dOKY6z8d', '7869188'), + (17, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'dOKY6z8d', '7880977'), + (17, 3038, 'attending', '2025-03-14 02:55:42', '2025-12-17 19:46:19', 'dOKY6z8d', '7881989'), + (17, 3055, 'attending', '2025-03-25 00:55:46', '2025-12-17 19:46:19', 'dOKY6z8d', '7888118'), + (17, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dOKY6z8d', '7888250'), + (17, 3061, 'attending', '2025-03-31 15:16:32', '2025-12-17 19:46:19', 'dOKY6z8d', '7892590'), + (17, 3072, 'attending', '2025-04-03 16:16:23', '2025-12-17 19:46:19', 'dOKY6z8d', '7895449'), + (17, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dOKY6z8d', '7904777'), + (17, 3090, 'attending', '2025-04-16 15:57:23', '2025-12-17 19:46:20', 'dOKY6z8d', '7914315'), + (17, 3094, 'attending', '2025-04-30 17:08:46', '2025-12-17 19:46:21', 'dOKY6z8d', '8342292'), + (17, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dOKY6z8d', '8349164'), + (17, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dOKY6z8d', '8349545'), + (17, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dOKY6z8d', '8353584'), + (17, 3126, 'attending', '2025-05-11 22:16:43', '2025-12-17 19:46:21', 'dOKY6z8d', '8365614'), + (17, 3131, 'attending', '2025-05-15 16:23:17', '2025-12-17 19:46:21', 'dOKY6z8d', '8368028'), + (17, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dOKY6z8d', '8368029'), + (17, 3133, 'attending', '2025-05-28 05:28:46', '2025-12-17 19:46:14', 'dOKY6z8d', '8368030'), + (17, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dOKY6z8d', '8388462'), + (17, 3152, 'attending', '2025-06-05 03:55:39', '2025-12-17 19:46:14', 'dOKY6z8d', '8393582'), + (17, 3153, 'attending', '2025-06-03 13:46:04', '2025-12-17 19:46:15', 'dOKY6z8d', '8400273'), + (17, 3154, 'attending', '2025-06-26 03:23:38', '2025-12-17 19:46:15', 'dOKY6z8d', '8400274'), + (17, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dOKY6z8d', '8400275'), + (17, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dOKY6z8d', '8400276'), + (17, 3167, 'attending', '2025-06-08 21:48:25', '2025-12-17 19:46:15', 'dOKY6z8d', '8404521'), + (17, 3168, 'attending', '2025-06-14 18:12:12', '2025-12-17 19:46:15', 'dOKY6z8d', '8404522'), + (17, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dOKY6z8d', '8404977'), + (17, 3175, 'attending', '2025-06-16 01:43:03', '2025-12-17 19:46:15', 'dOKY6z8d', '8410815'), + (17, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dOKY6z8d', '8430783'), + (17, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dOKY6z8d', '8430784'), + (17, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dOKY6z8d', '8430799'), + (17, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dOKY6z8d', '8430800'), + (17, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dOKY6z8d', '8430801'), + (17, 3186, 'attending', '2025-07-01 00:33:02', '2025-12-17 19:46:16', 'dOKY6z8d', '8431527'), + (17, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dOKY6z8d', '8438709'), + (17, 3192, 'attending', '2025-07-15 16:08:02', '2025-12-17 19:46:17', 'dOKY6z8d', '8456429'), + (17, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dOKY6z8d', '8457738'), + (17, 3195, 'attending', '2025-07-31 20:07:49', '2025-12-17 19:46:17', 'dOKY6z8d', '8458118'), + (17, 3196, 'attending', '2025-08-13 22:14:04', '2025-12-17 19:46:17', 'dOKY6z8d', '8458543'), + (17, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dOKY6z8d', '8459566'), + (17, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dOKY6z8d', '8459567'), + (17, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dOKY6z8d', '8461032'), + (17, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dOKY6z8d', '8477877'), + (17, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dOKY6z8d', '8485688'), + (17, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dOKY6z8d', '8490587'), + (17, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dOKY6z8d', '8493552'), + (17, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dOKY6z8d', '8493553'), + (17, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dOKY6z8d', '8493554'), + (17, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dOKY6z8d', '8493555'), + (17, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dOKY6z8d', '8493556'), + (17, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dOKY6z8d', '8493557'), + (17, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dOKY6z8d', '8493558'), + (17, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dOKY6z8d', '8493559'), + (17, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dOKY6z8d', '8493560'), + (17, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dOKY6z8d', '8493561'), + (17, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dOKY6z8d', '8493572'), + (17, 3258, 'not_attending', '2025-09-03 21:03:02', '2025-12-17 19:46:11', 'dOKY6z8d', '8510285'), + (17, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dOKY6z8d', '8540725'), + (17, 3295, 'attending', '2025-11-01 22:10:08', '2025-12-17 19:46:14', 'dOKY6z8d', '8547541'), + (17, 3300, 'attending', '2025-11-05 21:42:21', '2025-12-17 19:46:14', 'dOKY6z8d', '8549145'), + (17, 3302, 'attending', '2025-11-11 04:59:32', '2025-12-17 19:46:14', 'dOKY6z8d', '8550022'), + (17, 3304, 'not_attending', '2025-11-18 16:17:01', '2025-12-17 19:46:14', 'dOKY6z8d', '8550024'), + (17, 3305, 'attending', '2025-12-05 08:52:04', '2025-12-17 19:46:11', 'dOKY6z8d', '8550025'), + (17, 3306, 'attending', '2025-12-11 17:42:34', '2025-12-17 19:46:11', 'dOKY6z8d', '8550026'), + (17, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dOKY6z8d', '8555421'), + (18, 1480, 'attending', '2022-06-26 00:51:48', '2025-12-17 19:47:19', 'mpQ3lnqA', '5411699'), + (18, 1482, 'not_attending', '2022-06-25 01:25:48', '2025-12-17 19:47:19', 'mpQ3lnqA', '5412550'), + (18, 1485, 'attending', '2022-06-24 00:58:33', '2025-12-17 19:47:17', 'mpQ3lnqA', '5416276'), + (18, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mpQ3lnqA', '5422086'), + (18, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mpQ3lnqA', '5422406'), + (18, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mpQ3lnqA', '5424565'), + (18, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mpQ3lnqA', '5426882'), + (18, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mpQ3lnqA', '5427083'), + (18, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mpQ3lnqA', '5441125'), + (18, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mpQ3lnqA', '5441126'), + (18, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mpQ3lnqA', '5441128'), + (18, 1518, 'maybe', '2022-08-31 23:51:20', '2025-12-17 19:47:24', 'mpQ3lnqA', '5441131'), + (18, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mpQ3lnqA', '5441132'), + (18, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mpQ3lnqA', '5446643'), + (18, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'mpQ3lnqA', '5449068'), + (18, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mpQ3lnqA', '5453325'), + (18, 1542, 'attending', '2022-07-22 20:42:58', '2025-12-17 19:47:20', 'mpQ3lnqA', '5454064'), + (18, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mpQ3lnqA', '5454516'), + (18, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mpQ3lnqA', '5454605'), + (18, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mpQ3lnqA', '5455037'), + (18, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mpQ3lnqA', '5461278'), + (18, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mpQ3lnqA', '5469480'), + (18, 1563, 'not_attending', '2022-07-31 23:42:55', '2025-12-17 19:47:21', 'mpQ3lnqA', '5469889'), + (18, 1564, 'attending', '2022-07-31 23:43:01', '2025-12-17 19:47:21', 'mpQ3lnqA', '5469890'), + (18, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mpQ3lnqA', '5471073'), + (18, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mpQ3lnqA', '5474663'), + (18, 1570, 'attending', '2022-08-01 22:53:09', '2025-12-17 19:47:21', 'mpQ3lnqA', '5481830'), + (18, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mpQ3lnqA', '5482022'), + (18, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mpQ3lnqA', '5482793'), + (18, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mpQ3lnqA', '5488912'), + (18, 1581, 'attending', '2022-08-11 22:17:08', '2025-12-17 19:47:22', 'mpQ3lnqA', '5490302'), + (18, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mpQ3lnqA', '5492192'), + (18, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mpQ3lnqA', '5493139'), + (18, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mpQ3lnqA', '5493200'), + (18, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mpQ3lnqA', '5502188'), + (18, 1607, 'attending', '2022-08-20 21:10:46', '2025-12-17 19:47:23', 'mpQ3lnqA', '5504589'), + (18, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mpQ3lnqA', '5505059'), + (18, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mpQ3lnqA', '5509055'), + (18, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mpQ3lnqA', '5512862'), + (18, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mpQ3lnqA', '5513985'), + (18, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mpQ3lnqA', '5519981'), + (18, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mpQ3lnqA', '5522550'), + (18, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mpQ3lnqA', '5534683'), + (18, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mpQ3lnqA', '5537735'), + (18, 1636, 'attending', '2022-09-04 23:29:12', '2025-12-17 19:47:24', 'mpQ3lnqA', '5538454'), + (18, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mpQ3lnqA', '5540859'), + (18, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mpQ3lnqA', '5546619'), + (18, 1647, 'attending', '2022-09-18 20:41:10', '2025-12-17 19:47:11', 'mpQ3lnqA', '5548660'), + (18, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mpQ3lnqA', '5555245'), + (18, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mpQ3lnqA', '5557747'), + (18, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpQ3lnqA', '5560255'), + (18, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mpQ3lnqA', '5562906'), + (18, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mpQ3lnqA', '5600604'), + (18, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpQ3lnqA', '5605544'), + (18, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'mpQ3lnqA', '5606737'), + (18, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mpQ3lnqA', '5630960'), + (18, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mpQ3lnqA', '5630961'), + (18, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mpQ3lnqA', '5630962'), + (18, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mpQ3lnqA', '5630966'), + (18, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mpQ3lnqA', '5630967'), + (18, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mpQ3lnqA', '5630968'), + (18, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpQ3lnqA', '5635406'), + (18, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpQ3lnqA', '5638765'), + (18, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mpQ3lnqA', '5640097'), + (18, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mpQ3lnqA', '5640843'), + (18, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mpQ3lnqA', '5641521'), + (18, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mpQ3lnqA', '5642818'), + (18, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mpQ3lnqA', '5652395'), + (18, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mpQ3lnqA', '5670445'), + (18, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mpQ3lnqA', '5671637'), + (18, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mpQ3lnqA', '5672329'), + (18, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mpQ3lnqA', '5674057'), + (18, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mpQ3lnqA', '5674060'), + (18, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mpQ3lnqA', '5677461'), + (18, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mpQ3lnqA', '5698046'), + (18, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mpQ3lnqA', '5699760'), + (18, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mpQ3lnqA', '5741601'), + (18, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mpQ3lnqA', '5763458'), + (18, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mpQ3lnqA', '5774172'), + (18, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mpQ3lnqA', '5818247'), + (18, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mpQ3lnqA', '5819471'), + (18, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mpQ3lnqA', '5827739'), + (18, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mpQ3lnqA', '5844306'), + (18, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mpQ3lnqA', '5850159'), + (18, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mpQ3lnqA', '5858999'), + (18, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mpQ3lnqA', '5871984'), + (18, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mpQ3lnqA', '5876354'), + (18, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mpQ3lnqA', '5880939'), + (18, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mpQ3lnqA', '5880940'), + (18, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mpQ3lnqA', '5880942'), + (18, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mpQ3lnqA', '5880943'), + (18, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mpQ3lnqA', '5887890'), + (18, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mpQ3lnqA', '5888598'), + (18, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mpQ3lnqA', '5893260'), + (18, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mpQ3lnqA', '5899826'), + (18, 1888, 'maybe', '2023-02-17 22:08:54', '2025-12-17 19:47:07', 'mpQ3lnqA', '5900197'), + (18, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mpQ3lnqA', '5900199'), + (18, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mpQ3lnqA', '5900200'), + (18, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mpQ3lnqA', '5900202'), + (18, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mpQ3lnqA', '5900203'), + (18, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mpQ3lnqA', '5901108'), + (18, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mpQ3lnqA', '5901126'), + (18, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mpQ3lnqA', '5909655'), + (18, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mpQ3lnqA', '5910522'), + (18, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mpQ3lnqA', '5910526'), + (18, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mpQ3lnqA', '5910528'), + (18, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mpQ3lnqA', '5916219'), + (18, 1928, 'maybe', '2023-02-17 22:08:41', '2025-12-17 19:47:07', 'mpQ3lnqA', '5932627'), + (18, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mpQ3lnqA', '5936234'), + (18, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mpQ3lnqA', '5958351'), + (18, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mpQ3lnqA', '5959751'), + (18, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mpQ3lnqA', '5959755'), + (18, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mpQ3lnqA', '5960055'), + (18, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mpQ3lnqA', '5961684'), + (18, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mpQ3lnqA', '5962132'), + (18, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mpQ3lnqA', '5962133'), + (18, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mpQ3lnqA', '5962134'), + (18, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mpQ3lnqA', '5962317'), + (18, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mpQ3lnqA', '5962318'), + (18, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mpQ3lnqA', '5965933'), + (18, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mpQ3lnqA', '5967014'), + (18, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mpQ3lnqA', '5972815'), + (18, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mpQ3lnqA', '5974016'), + (18, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'mpQ3lnqA', '5975052'), + (18, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'mpQ3lnqA', '5975054'), + (18, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mpQ3lnqA', '5981515'), + (18, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mpQ3lnqA', '5993516'), + (18, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mpQ3lnqA', '5998939'), + (18, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mpQ3lnqA', '6028191'), + (18, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mpQ3lnqA', '6040066'), + (18, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mpQ3lnqA', '6042717'), + (18, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mpQ3lnqA', '6044838'), + (18, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mpQ3lnqA', '6044839'), + (18, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpQ3lnqA', '6045684'), + (18, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mpQ3lnqA', '6050104'), + (18, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mpQ3lnqA', '6053195'), + (18, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mpQ3lnqA', '6053198'), + (18, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mpQ3lnqA', '6056085'), + (18, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mpQ3lnqA', '6056916'), + (18, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mpQ3lnqA', '6059290'), + (18, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mpQ3lnqA', '6060328'), + (18, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mpQ3lnqA', '6061037'), + (18, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mpQ3lnqA', '6061039'), + (18, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mpQ3lnqA', '6067245'), + (18, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mpQ3lnqA', '6068094'), + (18, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mpQ3lnqA', '6068252'), + (18, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mpQ3lnqA', '6068253'), + (18, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mpQ3lnqA', '6068254'), + (18, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mpQ3lnqA', '6068280'), + (18, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mpQ3lnqA', '6069093'), + (18, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mpQ3lnqA', '6072528'), + (18, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'mpQ3lnqA', '6075556'), + (18, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mpQ3lnqA', '6079840'), + (18, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mpQ3lnqA', '6083398'), + (18, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mpQ3lnqA', '6093504'), + (18, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mpQ3lnqA', '6097414'), + (18, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mpQ3lnqA', '6097442'), + (18, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mpQ3lnqA', '6097684'), + (18, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mpQ3lnqA', '6098762'), + (18, 2065, 'maybe', '2023-06-17 14:10:15', '2025-12-17 19:46:49', 'mpQ3lnqA', '6101169'), + (18, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mpQ3lnqA', '6101361'), + (18, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mpQ3lnqA', '6101362'), + (18, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mpQ3lnqA', '6107314'), + (18, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mpQ3lnqA', '6120034'), + (18, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mpQ3lnqA', '6136733'), + (18, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mpQ3lnqA', '6137989'), + (18, 2103, 'maybe', '2023-06-17 22:54:31', '2025-12-17 19:46:50', 'mpQ3lnqA', '6149451'), + (18, 2104, 'attending', '2023-06-17 14:10:07', '2025-12-17 19:46:50', 'mpQ3lnqA', '6149499'), + (18, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mpQ3lnqA', '6150864'), + (18, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mpQ3lnqA', '6155491'), + (18, 2113, 'not_attending', '2023-06-23 01:13:01', '2025-12-17 19:46:50', 'mpQ3lnqA', '6156215'), + (18, 2114, 'attending', '2023-06-26 21:58:13', '2025-12-17 19:46:50', 'mpQ3lnqA', '6158648'), + (18, 2118, 'attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mpQ3lnqA', '6164417'), + (18, 2119, 'attending', '2023-06-27 22:45:11', '2025-12-17 19:46:50', 'mpQ3lnqA', '6165461'), + (18, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mpQ3lnqA', '6166388'), + (18, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mpQ3lnqA', '6176439'), + (18, 2122, 'maybe', '2023-06-29 22:53:04', '2025-12-17 19:46:51', 'mpQ3lnqA', '6176476'), + (18, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'mpQ3lnqA', '6182410'), + (18, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mpQ3lnqA', '6185812'), + (18, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mpQ3lnqA', '6187651'), + (18, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mpQ3lnqA', '6187963'), + (18, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mpQ3lnqA', '6187964'), + (18, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mpQ3lnqA', '6187966'), + (18, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mpQ3lnqA', '6187967'), + (18, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mpQ3lnqA', '6187969'), + (18, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mpQ3lnqA', '6334878'), + (18, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mpQ3lnqA', '6337236'), + (18, 2155, 'attending', '2023-07-14 00:55:45', '2025-12-17 19:46:53', 'mpQ3lnqA', '6337970'), + (18, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mpQ3lnqA', '6338308'), + (18, 2157, 'not_attending', '2023-07-12 21:56:12', '2025-12-17 19:46:52', 'mpQ3lnqA', '6338342'), + (18, 2159, 'not_attending', '2023-07-20 01:58:28', '2025-12-17 19:46:53', 'mpQ3lnqA', '6338355'), + (18, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mpQ3lnqA', '6341710'), + (18, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mpQ3lnqA', '6342044'), + (18, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mpQ3lnqA', '6342298'), + (18, 2169, 'attending', '2023-07-20 01:58:07', '2025-12-17 19:46:53', 'mpQ3lnqA', '6342306'), + (18, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mpQ3lnqA', '6343294'), + (18, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mpQ3lnqA', '6347034'), + (18, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mpQ3lnqA', '6347056'), + (18, 2179, 'not_attending', '2023-08-03 19:20:52', '2025-12-17 19:46:54', 'mpQ3lnqA', '6347591'), + (18, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mpQ3lnqA', '6353830'), + (18, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mpQ3lnqA', '6353831'), + (18, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mpQ3lnqA', '6357867'), + (18, 2190, 'not_attending', '2023-08-06 13:01:55', '2025-12-17 19:46:55', 'mpQ3lnqA', '6357892'), + (18, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mpQ3lnqA', '6358652'), + (18, 2193, 'attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'mpQ3lnqA', '6358668'), + (18, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'mpQ3lnqA', '6358669'), + (18, 2199, 'attending', '2023-08-11 02:58:08', '2025-12-17 19:46:55', 'mpQ3lnqA', '6359849'), + (18, 2200, 'attending', '2023-08-06 12:59:32', '2025-12-17 19:46:55', 'mpQ3lnqA', '6359850'), + (18, 2208, 'attending', '2023-08-09 13:05:47', '2025-12-17 19:46:54', 'mpQ3lnqA', '6361709'), + (18, 2209, 'attending', '2023-08-23 09:50:34', '2025-12-17 19:46:55', 'mpQ3lnqA', '6361710'), + (18, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mpQ3lnqA', '6361711'), + (18, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mpQ3lnqA', '6361712'), + (18, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mpQ3lnqA', '6361713'), + (18, 2213, 'attending', '2023-08-09 17:36:01', '2025-12-17 19:46:55', 'mpQ3lnqA', '6362935'), + (18, 2220, 'maybe', '2023-09-03 21:52:24', '2025-12-17 19:46:56', 'mpQ3lnqA', '6367310'), + (18, 2229, 'attending', '2023-08-20 19:13:13', '2025-12-17 19:46:55', 'mpQ3lnqA', '6373787'), + (18, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mpQ3lnqA', '6382573'), + (18, 2238, 'attending', '2023-09-01 17:34:26', '2025-12-17 19:46:56', 'mpQ3lnqA', '6387266'), + (18, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mpQ3lnqA', '6388604'), + (18, 2247, 'attending', '2023-09-05 19:39:10', '2025-12-17 19:46:56', 'mpQ3lnqA', '6394628'), + (18, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mpQ3lnqA', '6394629'), + (18, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mpQ3lnqA', '6394631'), + (18, 2251, 'maybe', '2023-09-05 20:31:49', '2025-12-17 19:46:56', 'mpQ3lnqA', '6395182'), + (18, 2263, 'not_attending', '2023-09-27 23:19:10', '2025-12-17 19:46:45', 'mpQ3lnqA', '6429351'), + (18, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mpQ3lnqA', '6440863'), + (18, 2270, 'attending', '2023-10-10 22:41:41', '2025-12-17 19:46:46', 'mpQ3lnqA', '6443067'), + (18, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mpQ3lnqA', '6445440'), + (18, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mpQ3lnqA', '6453951'), + (18, 2278, 'attending', '2023-10-08 16:28:22', '2025-12-17 19:46:45', 'mpQ3lnqA', '6455213'), + (18, 2280, 'attending', '2023-10-10 14:22:20', '2025-12-17 19:46:46', 'mpQ3lnqA', '6455470'), + (18, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mpQ3lnqA', '6461696'), + (18, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mpQ3lnqA', '6462129'), + (18, 2290, 'attending', '2023-10-18 22:18:47', '2025-12-17 19:46:46', 'mpQ3lnqA', '6462214'), + (18, 2292, 'attending', '2023-10-30 20:55:44', '2025-12-17 19:46:47', 'mpQ3lnqA', '6462216'), + (18, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mpQ3lnqA', '6463218'), + (18, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mpQ3lnqA', '6472181'), + (18, 2300, 'maybe', '2023-10-22 18:55:39', '2025-12-17 19:46:47', 'mpQ3lnqA', '6472185'), + (18, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mpQ3lnqA', '6482693'), + (18, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mpQ3lnqA', '6484200'), + (18, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mpQ3lnqA', '6484680'), + (18, 2310, 'maybe', '2023-10-24 21:16:12', '2025-12-17 19:46:47', 'mpQ3lnqA', '6487709'), + (18, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mpQ3lnqA', '6507741'), + (18, 2319, 'attending', '2023-10-30 20:55:27', '2025-12-17 19:46:47', 'mpQ3lnqA', '6508567'), + (18, 2322, 'not_attending', '2023-11-17 11:37:39', '2025-12-17 19:46:48', 'mpQ3lnqA', '6514659'), + (18, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mpQ3lnqA', '6514660'), + (18, 2325, 'attending', '2023-12-16 15:00:23', '2025-12-17 19:46:36', 'mpQ3lnqA', '6514663'), + (18, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mpQ3lnqA', '6519103'), + (18, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mpQ3lnqA', '6535681'), + (18, 2338, 'attending', '2023-11-25 15:46:12', '2025-12-17 19:46:48', 'mpQ3lnqA', '6538868'), + (18, 2341, 'maybe', '2023-11-12 21:12:48', '2025-12-17 19:46:48', 'mpQ3lnqA', '6543263'), + (18, 2347, 'attending', '2023-11-19 16:33:58', '2025-12-17 19:46:48', 'mpQ3lnqA', '6583053'), + (18, 2351, 'not_attending', '2023-11-21 02:07:08', '2025-12-17 19:46:48', 'mpQ3lnqA', '6584747'), + (18, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mpQ3lnqA', '6587097'), + (18, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mpQ3lnqA', '6609022'), + (18, 2368, 'maybe', '2023-12-12 11:09:45', '2025-12-17 19:46:36', 'mpQ3lnqA', '6621445'), + (18, 2370, 'maybe', '2023-12-14 00:43:29', '2025-12-17 19:46:36', 'mpQ3lnqA', '6623765'), + (18, 2372, 'maybe', '2023-12-16 00:40:25', '2025-12-17 19:46:36', 'mpQ3lnqA', '6628243'), + (18, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mpQ3lnqA', '6632757'), + (18, 2378, 'maybe', '2023-12-29 20:14:02', '2025-12-17 19:46:37', 'mpQ3lnqA', '6644006'), + (18, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mpQ3lnqA', '6644187'), + (18, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mpQ3lnqA', '6648951'), + (18, 2387, 'attending', '2024-01-04 03:43:39', '2025-12-17 19:46:37', 'mpQ3lnqA', '6648952'), + (18, 2388, 'not_attending', '2024-01-03 02:11:35', '2025-12-17 19:46:37', 'mpQ3lnqA', '6649244'), + (18, 2392, 'attending', '2024-01-08 21:22:16', '2025-12-17 19:46:37', 'mpQ3lnqA', '6654412'), + (18, 2393, 'not_attending', '2024-01-12 04:13:38', '2025-12-17 19:46:38', 'mpQ3lnqA', '6654468'), + (18, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mpQ3lnqA', '6655401'), + (18, 2399, 'not_attending', '2024-01-13 15:34:02', '2025-12-17 19:46:38', 'mpQ3lnqA', '6657583'), + (18, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mpQ3lnqA', '6661585'), + (18, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mpQ3lnqA', '6661588'), + (18, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mpQ3lnqA', '6661589'), + (18, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mpQ3lnqA', '6699906'), + (18, 2408, 'attending', '2024-01-26 11:46:01', '2025-12-17 19:46:40', 'mpQ3lnqA', '6699907'), + (18, 2409, 'attending', '2024-02-02 18:06:18', '2025-12-17 19:46:41', 'mpQ3lnqA', '6699909'), + (18, 2410, 'attending', '2024-02-06 20:52:17', '2025-12-17 19:46:41', 'mpQ3lnqA', '6699911'), + (18, 2411, 'not_attending', '2024-02-16 01:39:50', '2025-12-17 19:46:42', 'mpQ3lnqA', '6699913'), + (18, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mpQ3lnqA', '6701109'), + (18, 2417, 'attending', '2024-01-18 02:17:15', '2025-12-17 19:46:40', 'mpQ3lnqA', '6701905'), + (18, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'mpQ3lnqA', '6704561'), + (18, 2422, 'maybe', '2024-01-24 17:54:11', '2025-12-17 19:46:40', 'mpQ3lnqA', '6704650'), + (18, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mpQ3lnqA', '6705219'), + (18, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'mpQ3lnqA', '6708410'), + (18, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mpQ3lnqA', '6710153'), + (18, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mpQ3lnqA', '6711552'), + (18, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'mpQ3lnqA', '6711553'), + (18, 2435, 'maybe', '2024-01-27 17:25:27', '2025-12-17 19:46:41', 'mpQ3lnqA', '6721547'), + (18, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mpQ3lnqA', '6722688'), + (18, 2438, 'maybe', '2024-02-03 23:55:23', '2025-12-17 19:46:41', 'mpQ3lnqA', '6730201'), + (18, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mpQ3lnqA', '6730620'), + (18, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mpQ3lnqA', '6730642'), + (18, 2441, 'not_attending', '2024-02-01 02:16:05', '2025-12-17 19:46:41', 'mpQ3lnqA', '6731263'), + (18, 2453, 'attending', '2024-02-08 02:25:59', '2025-12-17 19:46:42', 'mpQ3lnqA', '6740364'), + (18, 2454, 'maybe', '2024-02-08 02:25:50', '2025-12-17 19:46:42', 'mpQ3lnqA', '6740921'), + (18, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mpQ3lnqA', '6743829'), + (18, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mpQ3lnqA', '7030380'), + (18, 2469, 'maybe', '2024-02-16 23:15:26', '2025-12-17 19:46:42', 'mpQ3lnqA', '7030632'), + (18, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mpQ3lnqA', '7033677'), + (18, 2473, 'attending', '2024-02-20 21:28:02', '2025-12-17 19:46:43', 'mpQ3lnqA', '7033724'), + (18, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mpQ3lnqA', '7035415'), + (18, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mpQ3lnqA', '7044715'), + (18, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mpQ3lnqA', '7050318'), + (18, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mpQ3lnqA', '7050319'), + (18, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mpQ3lnqA', '7050322'), + (18, 2495, 'not_attending', '2024-03-02 22:26:20', '2025-12-17 19:46:32', 'mpQ3lnqA', '7052982'), + (18, 2498, 'attending', '2024-03-19 00:41:20', '2025-12-17 19:46:33', 'mpQ3lnqA', '7057662'), + (18, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mpQ3lnqA', '7057804'), + (18, 2500, 'attending', '2024-03-06 02:23:17', '2025-12-17 19:46:43', 'mpQ3lnqA', '7058603'), + (18, 2502, 'maybe', '2024-03-06 02:23:05', '2025-12-17 19:46:33', 'mpQ3lnqA', '7061202'), + (18, 2503, 'not_attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'mpQ3lnqA', '7062500'), + (18, 2504, 'maybe', '2024-03-22 17:22:54', '2025-12-17 19:46:33', 'mpQ3lnqA', '7063296'), + (18, 2505, 'maybe', '2024-03-19 23:18:05', '2025-12-17 19:46:33', 'mpQ3lnqA', '7069163'), + (18, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mpQ3lnqA', '7072824'), + (18, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mpQ3lnqA', '7074348'), + (18, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mpQ3lnqA', '7074364'), + (18, 2526, 'maybe', '2024-07-30 15:00:19', '2025-12-17 19:46:31', 'mpQ3lnqA', '7074366'), + (18, 2532, 'maybe', '2024-09-04 02:35:32', '2025-12-17 19:46:32', 'mpQ3lnqA', '7074383'), + (18, 2534, 'maybe', '2024-03-13 21:54:44', '2025-12-17 19:46:32', 'mpQ3lnqA', '7076875'), + (18, 2536, 'not_attending', '2024-03-15 00:39:32', '2025-12-17 19:46:33', 'mpQ3lnqA', '7077689'), + (18, 2537, 'attending', '2024-03-23 14:29:54', '2025-12-17 19:46:33', 'mpQ3lnqA', '7085484'), + (18, 2538, 'not_attending', '2024-03-19 00:41:42', '2025-12-17 19:46:33', 'mpQ3lnqA', '7085485'), + (18, 2539, 'not_attending', '2024-04-06 19:34:40', '2025-12-17 19:46:33', 'mpQ3lnqA', '7085486'), + (18, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mpQ3lnqA', '7089267'), + (18, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mpQ3lnqA', '7098747'), + (18, 2551, 'not_attending', '2024-03-30 21:59:26', '2025-12-17 19:46:33', 'mpQ3lnqA', '7109912'), + (18, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mpQ3lnqA', '7113468'), + (18, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mpQ3lnqA', '7114856'), + (18, 2555, 'maybe', '2024-03-31 10:53:42', '2025-12-17 19:46:34', 'mpQ3lnqA', '7114951'), + (18, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mpQ3lnqA', '7114955'), + (18, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mpQ3lnqA', '7114956'), + (18, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mpQ3lnqA', '7114957'), + (18, 2564, 'attending', '2024-04-06 19:34:56', '2025-12-17 19:46:33', 'mpQ3lnqA', '7134735'), + (18, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mpQ3lnqA', '7153615'), + (18, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mpQ3lnqA', '7159484'), + (18, 2582, 'maybe', '2024-04-15 18:40:20', '2025-12-17 19:46:34', 'mpQ3lnqA', '7169765'), + (18, 2583, 'maybe', '2024-04-15 18:40:01', '2025-12-17 19:46:34', 'mpQ3lnqA', '7172946'), + (18, 2585, 'attending', '2024-04-21 15:44:02', '2025-12-17 19:46:34', 'mpQ3lnqA', '7175828'), + (18, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mpQ3lnqA', '7178446'), + (18, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mpQ3lnqA', '7220467'), + (18, 2603, 'maybe', '2024-05-15 12:19:08', '2025-12-17 19:46:35', 'mpQ3lnqA', '7225669'), + (18, 2604, 'attending', '2024-05-27 23:30:59', '2025-12-17 19:46:36', 'mpQ3lnqA', '7225670'), + (18, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mpQ3lnqA', '7240354'), + (18, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mpQ3lnqA', '7251633'), + (18, 2630, 'not_attending', '2024-05-16 22:52:58', '2025-12-17 19:46:35', 'mpQ3lnqA', '7264801'), + (18, 2632, 'maybe', '2024-05-14 20:15:37', '2025-12-17 19:46:35', 'mpQ3lnqA', '7269123'), + (18, 2655, 'attending', '2024-05-27 13:57:01', '2025-12-17 19:46:35', 'mpQ3lnqA', '7291225'), + (18, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mpQ3lnqA', '7302674'), + (18, 2671, 'maybe', '2024-06-09 21:50:46', '2025-12-17 19:46:28', 'mpQ3lnqA', '7318256'), + (18, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mpQ3lnqA', '7324073'), + (18, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mpQ3lnqA', '7324074'), + (18, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mpQ3lnqA', '7324075'), + (18, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mpQ3lnqA', '7324078'), + (18, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mpQ3lnqA', '7324082'), + (18, 2699, 'attending', '2024-06-12 14:48:30', '2025-12-17 19:46:28', 'mpQ3lnqA', '7324385'), + (18, 2706, 'attending', '2024-06-18 20:49:14', '2025-12-17 19:46:28', 'mpQ3lnqA', '7324947'), + (18, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mpQ3lnqA', '7331457'), + (18, 2724, 'attending', '2024-06-26 21:30:50', '2025-12-17 19:46:29', 'mpQ3lnqA', '7332562'), + (18, 2737, 'attending', '2024-06-30 15:09:22', '2025-12-17 19:46:29', 'mpQ3lnqA', '7344070'), + (18, 2742, 'attending', '2024-07-03 15:28:33', '2025-12-17 19:46:29', 'mpQ3lnqA', '7345167'), + (18, 2746, 'attending', '2024-07-08 21:52:03', '2025-12-17 19:46:29', 'mpQ3lnqA', '7348713'), + (18, 2747, 'not_attending', '2024-07-15 14:00:23', '2025-12-17 19:46:30', 'mpQ3lnqA', '7353587'), + (18, 2751, 'attending', '2024-07-07 21:25:19', '2025-12-17 19:46:29', 'mpQ3lnqA', '7355530'), + (18, 2752, 'attending', '2024-07-07 21:27:57', '2025-12-17 19:46:29', 'mpQ3lnqA', '7355531'), + (18, 2763, 'attending', '2024-07-15 14:00:05', '2025-12-17 19:46:30', 'mpQ3lnqA', '7363594'), + (18, 2766, 'attending', '2024-07-30 15:00:06', '2025-12-17 19:46:30', 'mpQ3lnqA', '7363643'), + (18, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mpQ3lnqA', '7368606'), + (18, 2781, 'maybe', '2024-07-28 18:45:37', '2025-12-17 19:46:30', 'mpQ3lnqA', '7373194'), + (18, 2786, 'attending', '2024-08-07 01:16:40', '2025-12-17 19:46:31', 'mpQ3lnqA', '7381403'), + (18, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mpQ3lnqA', '7397462'), + (18, 2802, 'attending', '2024-08-27 23:43:41', '2025-12-17 19:46:32', 'mpQ3lnqA', '7397463'), + (18, 2806, 'maybe', '2024-09-16 12:55:52', '2025-12-17 19:46:25', 'mpQ3lnqA', '7404888'), + (18, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mpQ3lnqA', '7424275'), + (18, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mpQ3lnqA', '7424276'), + (18, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mpQ3lnqA', '7432751'), + (18, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mpQ3lnqA', '7432752'), + (18, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mpQ3lnqA', '7432753'), + (18, 2827, 'maybe', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432754'), + (18, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432755'), + (18, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432756'), + (18, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432758'), + (18, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432759'), + (18, 2832, 'attending', '2024-09-09 22:09:48', '2025-12-17 19:46:24', 'mpQ3lnqA', '7433324'), + (18, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mpQ3lnqA', '7433834'), + (18, 2839, 'maybe', '2024-09-16 12:56:02', '2025-12-17 19:46:25', 'mpQ3lnqA', '7439262'), + (18, 2841, 'maybe', '2024-09-16 12:55:28', '2025-12-17 19:46:25', 'mpQ3lnqA', '7444444'), + (18, 2842, 'maybe', '2024-09-19 11:37:16', '2025-12-17 19:46:25', 'mpQ3lnqA', '7446133'), + (18, 2850, 'maybe', '2024-09-25 12:13:51', '2025-12-17 19:46:25', 'mpQ3lnqA', '7457153'), + (18, 2856, 'maybe', '2024-10-07 14:05:14', '2025-12-17 19:46:26', 'mpQ3lnqA', '7469386'), + (18, 2858, 'not_attending', '2024-10-15 20:03:41', '2025-12-17 19:46:26', 'mpQ3lnqA', '7469388'), + (18, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mpQ3lnqA', '7470197'), + (18, 2878, 'maybe', '2024-10-15 20:04:00', '2025-12-17 19:46:26', 'mpQ3lnqA', '7633857'), + (18, 2882, 'maybe', '2024-10-18 01:00:54', '2025-12-17 19:46:26', 'mpQ3lnqA', '7644822'), + (18, 2883, 'maybe', '2024-10-18 13:32:59', '2025-12-17 19:46:26', 'mpQ3lnqA', '7649157'), + (18, 2892, 'maybe', '2024-10-28 23:37:10', '2025-12-17 19:46:26', 'mpQ3lnqA', '7672064'), + (18, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mpQ3lnqA', '7685613'), + (18, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mpQ3lnqA', '7688194'), + (18, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mpQ3lnqA', '7688196'), + (18, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mpQ3lnqA', '7688289'), + (18, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mpQ3lnqA', '7692763'), + (18, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mpQ3lnqA', '7697552'), + (18, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mpQ3lnqA', '7699878'), + (18, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mpQ3lnqA', '7704043'), + (18, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mpQ3lnqA', '7712467'), + (18, 2925, 'attending', '2024-12-13 18:15:42', '2025-12-17 19:46:21', 'mpQ3lnqA', '7713584'), + (18, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mpQ3lnqA', '7713585'), + (18, 2927, 'attending', '2024-12-09 03:08:39', '2025-12-17 19:46:22', 'mpQ3lnqA', '7713586'), + (18, 2928, 'maybe', '2024-12-02 15:15:57', '2025-12-17 19:46:28', 'mpQ3lnqA', '7718132'), + (18, 2930, 'maybe', '2024-12-09 03:08:10', '2025-12-17 19:46:21', 'mpQ3lnqA', '7724554'), + (18, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mpQ3lnqA', '7738518'), + (18, 2959, 'attending', '2024-12-21 18:28:21', '2025-12-17 19:46:22', 'mpQ3lnqA', '7747388'), + (18, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mpQ3lnqA', '7750636'), + (18, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mpQ3lnqA', '7796540'), + (18, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mpQ3lnqA', '7796541'), + (18, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mpQ3lnqA', '7796542'), + (18, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mpQ3lnqA', '7825913'), + (18, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mpQ3lnqA', '7826209'), + (18, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mpQ3lnqA', '7834742'), + (18, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mpQ3lnqA', '7842108'), + (18, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mpQ3lnqA', '7842902'), + (18, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mpQ3lnqA', '7842903'), + (18, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mpQ3lnqA', '7842904'), + (18, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mpQ3lnqA', '7842905'), + (18, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mpQ3lnqA', '7855719'), + (18, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mpQ3lnqA', '7860683'), + (18, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mpQ3lnqA', '7860684'), + (18, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mpQ3lnqA', '7866095'), + (18, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mpQ3lnqA', '7869170'), + (18, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mpQ3lnqA', '7869188'), + (18, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mpQ3lnqA', '7869201'), + (18, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mpQ3lnqA', '7877465'), + (18, 3053, 'maybe', '2025-03-23 20:46:51', '2025-12-17 19:46:19', 'mpQ3lnqA', '7884030'), + (18, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mpQ3lnqA', '7888250'), + (18, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mpQ3lnqA', '7904777'), + (18, 3096, 'maybe', '2025-04-24 16:29:02', '2025-12-17 19:46:20', 'mpQ3lnqA', '8342987'), + (18, 3097, 'attending', '2025-04-24 16:29:35', '2025-12-17 19:46:20', 'mpQ3lnqA', '8342993'), + (18, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mpQ3lnqA', '8349164'), + (18, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mpQ3lnqA', '8349545'), + (18, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mpQ3lnqA', '8353584'), + (18, 3125, 'maybe', '2025-05-13 15:44:18', '2025-12-17 19:46:21', 'mpQ3lnqA', '8364293'), + (18, 3126, 'attending', '2025-05-13 15:02:16', '2025-12-17 19:46:21', 'mpQ3lnqA', '8365614'), + (18, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mpQ3lnqA', '8368028'), + (18, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mpQ3lnqA', '8368029'), + (18, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mpQ3lnqA', '8388462'), + (18, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mpQ3lnqA', '8400273'), + (18, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mpQ3lnqA', '8400274'), + (18, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mpQ3lnqA', '8400275'), + (18, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mpQ3lnqA', '8400276'), + (18, 3161, 'maybe', '2025-06-06 00:30:58', '2025-12-17 19:46:15', 'mpQ3lnqA', '8401412'), + (18, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mpQ3lnqA', '8404977'), + (18, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mpQ3lnqA', '8430783'), + (18, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mpQ3lnqA', '8430784'), + (18, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mpQ3lnqA', '8430799'), + (18, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mpQ3lnqA', '8430800'), + (18, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mpQ3lnqA', '8430801'), + (18, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mpQ3lnqA', '8438709'), + (18, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mpQ3lnqA', '8457738'), + (18, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mpQ3lnqA', '8459566'), + (18, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mpQ3lnqA', '8459567'), + (18, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mpQ3lnqA', '8461032'), + (18, 3210, 'attending', '2025-08-25 22:42:05', '2025-12-17 19:46:18', 'mpQ3lnqA', '8471162'), + (18, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mpQ3lnqA', '8477877'), + (18, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mpQ3lnqA', '8485688'), + (18, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mpQ3lnqA', '8490587'), + (18, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mpQ3lnqA', '8493552'), + (18, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mpQ3lnqA', '8493553'), + (18, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mpQ3lnqA', '8493554'), + (18, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mpQ3lnqA', '8493555'), + (18, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mpQ3lnqA', '8493556'), + (18, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mpQ3lnqA', '8493557'), + (18, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mpQ3lnqA', '8493558'), + (18, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mpQ3lnqA', '8493559'), + (18, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mpQ3lnqA', '8493560'), + (18, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mpQ3lnqA', '8493561'), + (18, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mpQ3lnqA', '8493572'), + (18, 3255, 'attending', '2025-08-25 01:42:23', '2025-12-17 19:46:18', 'mpQ3lnqA', '8495106'), + (18, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mpQ3lnqA', '8540725'), + (18, 3289, 'maybe', '2025-10-16 16:55:49', '2025-12-17 19:46:14', 'mpQ3lnqA', '8542939'), + (18, 3293, 'maybe', '2025-10-16 16:55:38', '2025-12-17 19:46:14', 'mpQ3lnqA', '8543836'), + (18, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mpQ3lnqA', '8555421'), + (19, 10, 'attending', '2020-03-28 19:47:44', '2025-12-17 19:47:56', 'GAneZjYm', '2958053'), + (19, 11, 'attending', '2020-03-29 00:51:51', '2025-12-17 19:47:57', 'GAneZjYm', '2958055'), + (19, 13, 'maybe', '2020-04-06 20:25:33', '2025-12-17 19:47:57', 'GAneZjYm', '2958057'), + (19, 14, 'maybe', '2020-04-04 18:08:57', '2025-12-17 19:47:57', 'GAneZjYm', '2958058'), + (19, 28, 'attending', '2020-04-02 17:34:50', '2025-12-17 19:47:56', 'GAneZjYm', '2960421'), + (19, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'GAneZjYm', '2961309'), + (19, 30, 'maybe', '2020-04-04 18:08:12', '2025-12-17 19:47:57', 'GAneZjYm', '2961895'), + (19, 33, 'maybe', '2020-04-04 18:08:32', '2025-12-17 19:47:57', 'GAneZjYm', '2963932'), + (19, 35, 'attending', '2020-03-29 00:52:19', '2025-12-17 19:47:56', 'GAneZjYm', '2969206'), + (19, 36, 'attending', '2020-04-04 00:27:06', '2025-12-17 19:47:57', 'GAneZjYm', '2969208'), + (19, 37, 'not_attending', '2020-03-31 00:09:40', '2025-12-17 19:47:56', 'GAneZjYm', '2969680'), + (19, 38, 'attending', '2020-04-03 22:48:10', '2025-12-17 19:47:56', 'GAneZjYm', '2969751'), + (19, 41, 'maybe', '2020-04-16 14:38:25', '2025-12-17 19:47:57', 'GAneZjYm', '2971546'), + (19, 42, 'maybe', '2020-04-04 18:07:41', '2025-12-17 19:47:57', 'GAneZjYm', '2973471'), + (19, 44, 'maybe', '2020-04-05 22:36:14', '2025-12-17 19:47:57', 'GAneZjYm', '2974534'), + (19, 45, 'maybe', '2020-04-06 20:25:22', '2025-12-17 19:47:57', 'GAneZjYm', '2974760'), + (19, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'GAneZjYm', '2974955'), + (19, 55, 'maybe', '2020-04-06 20:25:04', '2025-12-17 19:47:57', 'GAneZjYm', '2975384'), + (19, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'GAneZjYm', '2975385'), + (19, 57, 'maybe', '2020-04-09 02:55:48', '2025-12-17 19:47:57', 'GAneZjYm', '2976575'), + (19, 58, 'attending', '2020-04-21 22:54:52', '2025-12-17 19:47:57', 'GAneZjYm', '2977127'), + (19, 59, 'attending', '2020-05-04 18:11:48', '2025-12-17 19:47:57', 'GAneZjYm', '2977128'), + (19, 60, 'attending', '2020-04-28 18:48:27', '2025-12-17 19:47:57', 'GAneZjYm', '2977129'), + (19, 61, 'attending', '2020-04-14 20:06:30', '2025-12-17 19:47:57', 'GAneZjYm', '2977130'), + (19, 62, 'attending', '2020-05-12 21:11:20', '2025-12-17 19:47:57', 'GAneZjYm', '2977131'), + (19, 68, 'not_attending', '2020-06-22 06:36:19', '2025-12-17 19:47:58', 'GAneZjYm', '2977137'), + (19, 70, 'not_attending', '2020-04-10 17:41:10', '2025-12-17 19:47:57', 'GAneZjYm', '2977343'), + (19, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'GAneZjYm', '2977812'), + (19, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'GAneZjYm', '2977931'), + (19, 74, 'attending', '2020-04-14 20:02:10', '2025-12-17 19:47:57', 'GAneZjYm', '2978244'), + (19, 75, 'attending', '2020-04-19 19:57:32', '2025-12-17 19:47:57', 'GAneZjYm', '2978245'), + (19, 76, 'attending', '2020-05-01 03:22:48', '2025-12-17 19:47:57', 'GAneZjYm', '2978246'), + (19, 77, 'attending', '2020-05-06 19:53:56', '2025-12-17 19:47:57', 'GAneZjYm', '2978247'), + (19, 78, 'attending', '2020-05-15 14:22:26', '2025-12-17 19:47:57', 'GAneZjYm', '2978249'), + (19, 79, 'attending', '2020-05-28 14:33:58', '2025-12-17 19:47:57', 'GAneZjYm', '2978250'), + (19, 80, 'attending', '2020-06-06 22:35:56', '2025-12-17 19:47:58', 'GAneZjYm', '2978251'), + (19, 81, 'attending', '2020-06-13 03:18:40', '2025-12-17 19:47:58', 'GAneZjYm', '2978252'), + (19, 82, 'maybe', '2020-04-24 18:33:37', '2025-12-17 19:47:57', 'GAneZjYm', '2978433'), + (19, 83, 'attending', '2020-05-08 22:49:22', '2025-12-17 19:47:57', 'GAneZjYm', '2978438'), + (19, 84, 'maybe', '2020-04-20 16:24:09', '2025-12-17 19:47:57', 'GAneZjYm', '2980871'), + (19, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'GAneZjYm', '2981388'), + (19, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'GAneZjYm', '2986743'), + (19, 96, 'maybe', '2020-05-03 21:22:06', '2025-12-17 19:47:57', 'GAneZjYm', '2987453'), + (19, 100, 'attending', '2020-04-20 23:51:24', '2025-12-17 19:47:57', 'GAneZjYm', '2989142'), + (19, 101, 'attending', '2020-04-23 15:28:22', '2025-12-17 19:47:57', 'GAneZjYm', '2989975'), + (19, 104, 'not_attending', '2020-04-24 14:20:07', '2025-12-17 19:47:57', 'GAneZjYm', '2991471'), + (19, 106, 'maybe', '2020-05-01 03:22:46', '2025-12-17 19:47:57', 'GAneZjYm', '2993501'), + (19, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'GAneZjYm', '2994480'), + (19, 115, 'attending', '2020-05-14 16:37:23', '2025-12-17 19:47:57', 'GAneZjYm', '3001217'), + (19, 121, 'not_attending', '2020-05-26 14:12:27', '2025-12-17 19:47:57', 'GAneZjYm', '3023063'), + (19, 123, 'not_attending', '2020-05-25 22:01:07', '2025-12-17 19:47:57', 'GAneZjYm', '3023729'), + (19, 133, 'attending', '2020-06-24 22:47:42', '2025-12-17 19:47:58', 'GAneZjYm', '3034321'), + (19, 135, 'not_attending', '2020-05-26 14:12:24', '2025-12-17 19:47:57', 'GAneZjYm', '3034368'), + (19, 136, 'not_attending', '2020-05-25 00:06:09', '2025-12-17 19:47:57', 'GAneZjYm', '3035881'), + (19, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'GAneZjYm', '3049983'), + (19, 156, 'attending', '2020-09-11 18:57:48', '2025-12-17 19:47:56', 'GAneZjYm', '3058693'), + (19, 157, 'attending', '2020-09-18 16:23:10', '2025-12-17 19:47:56', 'GAneZjYm', '3058694'), + (19, 158, 'not_attending', '2020-09-26 02:18:37', '2025-12-17 19:47:52', 'GAneZjYm', '3058695'), + (19, 159, 'not_attending', '2020-10-03 16:50:43', '2025-12-17 19:47:52', 'GAneZjYm', '3058696'), + (19, 160, 'not_attending', '2020-10-22 04:06:20', '2025-12-17 19:47:52', 'GAneZjYm', '3058697'), + (19, 161, 'not_attending', '2020-10-09 20:36:27', '2025-12-17 19:47:52', 'GAneZjYm', '3058698'), + (19, 162, 'attending', '2020-10-13 03:40:39', '2025-12-17 19:47:52', 'GAneZjYm', '3058699'), + (19, 164, 'attending', '2020-11-12 00:24:15', '2025-12-17 19:47:54', 'GAneZjYm', '3058701'), + (19, 165, 'maybe', '2020-11-02 07:05:25', '2025-12-17 19:47:53', 'GAneZjYm', '3058702'), + (19, 166, 'attending', '2020-11-18 10:23:22', '2025-12-17 19:47:54', 'GAneZjYm', '3058704'), + (19, 167, 'attending', '2020-11-24 04:06:49', '2025-12-17 19:47:54', 'GAneZjYm', '3058705'), + (19, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'GAneZjYm', '3058959'), + (19, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'GAneZjYm', '3067093'), + (19, 176, 'not_attending', '2020-06-22 06:36:10', '2025-12-17 19:47:58', 'GAneZjYm', '3073192'), + (19, 181, 'not_attending', '2020-06-20 22:12:34', '2025-12-17 19:47:58', 'GAneZjYm', '3074513'), + (19, 182, 'attending', '2020-06-22 06:36:52', '2025-12-17 19:47:55', 'GAneZjYm', '3074514'), + (19, 183, 'not_attending', '2020-06-22 06:36:02', '2025-12-17 19:47:58', 'GAneZjYm', '3075228'), + (19, 184, 'not_attending', '2020-06-22 06:35:56', '2025-12-17 19:47:58', 'GAneZjYm', '3075262'), + (19, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'GAneZjYm', '3075456'), + (19, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'GAneZjYm', '3083791'), + (19, 187, 'not_attending', '2020-06-27 20:07:37', '2025-12-17 19:47:55', 'GAneZjYm', '3085151'), + (19, 191, 'attending', '2020-07-09 02:50:33', '2025-12-17 19:47:55', 'GAneZjYm', '3087259'), + (19, 192, 'attending', '2020-07-18 01:18:15', '2025-12-17 19:47:55', 'GAneZjYm', '3087260'), + (19, 193, 'not_attending', '2020-07-24 19:37:30', '2025-12-17 19:47:55', 'GAneZjYm', '3087261'), + (19, 194, 'attending', '2020-07-31 17:47:25', '2025-12-17 19:47:56', 'GAneZjYm', '3087262'), + (19, 195, 'attending', '2020-08-07 18:49:27', '2025-12-17 19:47:56', 'GAneZjYm', '3087264'), + (19, 196, 'attending', '2020-08-15 01:29:31', '2025-12-17 19:47:56', 'GAneZjYm', '3087265'), + (19, 197, 'attending', '2020-08-15 01:29:33', '2025-12-17 19:47:56', 'GAneZjYm', '3087266'), + (19, 198, 'not_attending', '2020-08-29 04:06:22', '2025-12-17 19:47:56', 'GAneZjYm', '3087267'), + (19, 199, 'attending', '2020-09-03 19:48:48', '2025-12-17 19:47:56', 'GAneZjYm', '3087268'), + (19, 200, 'attending', '2020-09-06 16:44:07', '2025-12-17 19:47:56', 'GAneZjYm', '3087269'), + (19, 201, 'maybe', '2020-06-22 06:36:33', '2025-12-17 19:47:55', 'GAneZjYm', '3088653'), + (19, 203, 'not_attending', '2020-06-22 06:35:43', '2025-12-17 19:47:58', 'GAneZjYm', '3091624'), + (19, 205, 'attending', '2020-07-09 21:22:01', '2025-12-17 19:47:55', 'GAneZjYm', '3104804'), + (19, 206, 'maybe', '2020-07-15 15:23:10', '2025-12-17 19:47:55', 'GAneZjYm', '3104806'), + (19, 208, 'not_attending', '2020-08-07 02:53:44', '2025-12-17 19:47:56', 'GAneZjYm', '3104808'), + (19, 209, 'not_attending', '2020-06-29 04:08:14', '2025-12-17 19:47:55', 'GAneZjYm', '3106813'), + (19, 214, 'not_attending', '2020-07-08 16:42:37', '2025-12-17 19:47:55', 'GAneZjYm', '3124139'), + (19, 223, 'attending', '2020-09-12 22:01:45', '2025-12-17 19:47:56', 'GAneZjYm', '3129980'), + (19, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'GAneZjYm', '3132817'), + (19, 227, 'maybe', '2020-07-16 16:19:40', '2025-12-17 19:47:55', 'GAneZjYm', '3132820'), + (19, 237, 'maybe', '2020-07-28 21:39:45', '2025-12-17 19:47:55', 'GAneZjYm', '3142085'), + (19, 268, 'maybe', '2020-07-30 07:49:00', '2025-12-17 19:47:55', 'GAneZjYm', '3153060'), + (19, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'GAneZjYm', '3155321'), + (19, 273, 'not_attending', '2020-08-07 02:53:25', '2025-12-17 19:47:56', 'GAneZjYm', '3162006'), + (19, 277, 'not_attending', '2020-08-07 02:53:34', '2025-12-17 19:47:56', 'GAneZjYm', '3163442'), + (19, 281, 'attending', '2020-08-07 18:50:16', '2025-12-17 19:47:56', 'GAneZjYm', '3166945'), + (19, 293, 'not_attending', '2020-08-16 03:34:38', '2025-12-17 19:47:56', 'GAneZjYm', '3172832'), + (19, 294, 'attending', '2020-08-27 00:46:10', '2025-12-17 19:47:56', 'GAneZjYm', '3172833'), + (19, 295, 'not_attending', '2020-08-16 03:34:48', '2025-12-17 19:47:56', 'GAneZjYm', '3172834'), + (19, 296, 'attending', '2020-09-11 22:42:53', '2025-12-17 19:47:56', 'GAneZjYm', '3172876'), + (19, 298, 'attending', '2020-08-28 20:15:03', '2025-12-17 19:47:56', 'GAneZjYm', '3174556'), + (19, 304, 'attending', '2020-09-07 19:35:10', '2025-12-17 19:47:56', 'GAneZjYm', '3178916'), + (19, 308, 'not_attending', '2020-09-03 21:51:27', '2025-12-17 19:47:56', 'GAneZjYm', '3183341'), + (19, 310, 'attending', '2020-08-23 17:58:06', '2025-12-17 19:47:56', 'GAneZjYm', '3186005'), + (19, 311, 'maybe', '2020-09-10 21:49:41', '2025-12-17 19:47:56', 'GAneZjYm', '3186057'), + (19, 317, 'maybe', '2020-08-27 00:45:52', '2025-12-17 19:47:56', 'GAneZjYm', '3191735'), + (19, 319, 'attending', '2020-08-31 23:13:15', '2025-12-17 19:47:56', 'GAneZjYm', '3194179'), + (19, 335, 'attending', '2020-09-03 19:55:50', '2025-12-17 19:47:56', 'GAneZjYm', '3200209'), + (19, 339, 'not_attending', '2020-09-10 00:44:33', '2025-12-17 19:47:56', 'GAneZjYm', '3204469'), + (19, 340, 'not_attending', '2020-09-18 16:22:56', '2025-12-17 19:47:56', 'GAneZjYm', '3204470'), + (19, 341, 'maybe', '2020-09-21 16:41:38', '2025-12-17 19:47:52', 'GAneZjYm', '3204471'), + (19, 342, 'maybe', '2020-09-29 20:46:39', '2025-12-17 19:47:52', 'GAneZjYm', '3204472'), + (19, 346, 'not_attending', '2020-09-15 21:48:25', '2025-12-17 19:47:56', 'GAneZjYm', '3207515'), + (19, 348, 'maybe', '2020-09-21 16:42:18', '2025-12-17 19:47:52', 'GAneZjYm', '3209159'), + (19, 351, 'not_attending', '2020-09-11 22:43:02', '2025-12-17 19:47:56', 'GAneZjYm', '3209257'), + (19, 355, 'maybe', '2020-09-16 22:37:27', '2025-12-17 19:47:56', 'GAneZjYm', '3212571'), + (19, 356, 'maybe', '2020-09-16 17:49:52', '2025-12-17 19:47:51', 'GAneZjYm', '3212572'), + (19, 361, 'maybe', '2020-09-14 18:49:58', '2025-12-17 19:47:56', 'GAneZjYm', '3213323'), + (19, 362, 'maybe', '2020-09-26 02:18:18', '2025-12-17 19:47:52', 'GAneZjYm', '3214207'), + (19, 363, 'maybe', '2020-09-21 16:41:56', '2025-12-17 19:47:52', 'GAneZjYm', '3217037'), + (19, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'GAneZjYm', '3218510'), + (19, 366, 'attending', '2020-09-21 16:41:05', '2025-12-17 19:47:56', 'GAneZjYm', '3219750'), + (19, 367, 'attending', '2020-09-21 16:41:20', '2025-12-17 19:47:51', 'GAneZjYm', '3219751'), + (19, 375, 'maybe', '2020-10-08 23:09:27', '2025-12-17 19:47:52', 'GAneZjYm', '3222825'), + (19, 385, 'not_attending', '2020-10-03 16:50:50', '2025-12-17 19:47:52', 'GAneZjYm', '3228698'), + (19, 386, 'not_attending', '2020-10-09 20:36:32', '2025-12-17 19:47:52', 'GAneZjYm', '3228699'), + (19, 387, 'attending', '2020-10-13 03:40:42', '2025-12-17 19:47:52', 'GAneZjYm', '3228700'), + (19, 388, 'maybe', '2020-10-22 04:06:26', '2025-12-17 19:47:52', 'GAneZjYm', '3228701'), + (19, 406, 'attending', '2021-04-01 20:39:00', '2025-12-17 19:47:44', 'GAneZjYm', '3236464'), + (19, 416, 'maybe', '2020-10-08 23:09:43', '2025-12-17 19:47:52', 'GAneZjYm', '3238073'), + (19, 420, 'not_attending', '2020-10-15 16:49:07', '2025-12-17 19:47:52', 'GAneZjYm', '3245293'), + (19, 421, 'maybe', '2020-10-22 04:06:11', '2025-12-17 19:47:52', 'GAneZjYm', '3245294'), + (19, 422, 'maybe', '2020-10-29 22:23:56', '2025-12-17 19:47:53', 'GAneZjYm', '3245295'), + (19, 423, 'attending', '2020-11-05 18:42:31', '2025-12-17 19:47:53', 'GAneZjYm', '3245296'), + (19, 424, 'maybe', '2020-10-12 04:27:20', '2025-12-17 19:47:52', 'GAneZjYm', '3245751'), + (19, 426, 'maybe', '2020-10-16 17:10:45', '2025-12-17 19:47:52', 'GAneZjYm', '3250232'), + (19, 429, 'attending', '2020-12-06 05:10:52', '2025-12-17 19:47:54', 'GAneZjYm', '3250523'), + (19, 431, 'maybe', '2020-10-24 15:03:39', '2025-12-17 19:47:53', 'GAneZjYm', '3253225'), + (19, 438, 'not_attending', '2020-10-24 15:03:59', '2025-12-17 19:47:53', 'GAneZjYm', '3256163'), + (19, 439, 'maybe', '2020-10-28 23:54:37', '2025-12-17 19:47:53', 'GAneZjYm', '3256164'), + (19, 440, 'maybe', '2020-10-22 04:06:49', '2025-12-17 19:47:53', 'GAneZjYm', '3256168'), + (19, 441, 'attending', '2020-11-12 00:24:17', '2025-12-17 19:47:54', 'GAneZjYm', '3256169'), + (19, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GAneZjYm', '3263578'), + (19, 445, 'not_attending', '2020-11-09 03:12:33', '2025-12-17 19:47:54', 'GAneZjYm', '3266138'), + (19, 446, 'not_attending', '2020-10-26 17:41:58', '2025-12-17 19:47:53', 'GAneZjYm', '3267163'), + (19, 452, 'maybe', '2020-11-30 01:03:46', '2025-12-17 19:47:54', 'GAneZjYm', '3272981'), + (19, 456, 'not_attending', '2020-11-17 01:00:40', '2025-12-17 19:47:54', 'GAneZjYm', '3276428'), + (19, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'GAneZjYm', '3281467'), + (19, 461, 'not_attending', '2020-11-08 05:11:50', '2025-12-17 19:47:53', 'GAneZjYm', '3281469'), + (19, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GAneZjYm', '3281470'), + (19, 464, 'not_attending', '2020-11-24 11:23:40', '2025-12-17 19:47:54', 'GAneZjYm', '3281554'), + (19, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GAneZjYm', '3281829'), + (19, 468, 'attending', '2020-11-18 10:23:19', '2025-12-17 19:47:54', 'GAneZjYm', '3285413'), + (19, 469, 'attending', '2020-11-24 04:06:51', '2025-12-17 19:47:54', 'GAneZjYm', '3285414'), + (19, 474, 'not_attending', '2020-11-12 00:24:06', '2025-12-17 19:47:54', 'GAneZjYm', '3286570'), + (19, 479, 'not_attending', '2020-11-19 01:18:18', '2025-12-17 19:47:54', 'GAneZjYm', '3295306'), + (19, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GAneZjYm', '3297764'), + (19, 487, 'maybe', '2020-11-29 20:48:18', '2025-12-17 19:47:54', 'GAneZjYm', '3311122'), + (19, 493, 'attending', '2020-11-29 20:48:22', '2025-12-17 19:47:54', 'GAneZjYm', '3313856'), + (19, 494, 'not_attending', '2020-11-29 20:48:04', '2025-12-17 19:47:54', 'GAneZjYm', '3313866'), + (19, 496, 'not_attending', '2020-12-10 18:06:01', '2025-12-17 19:47:54', 'GAneZjYm', '3314269'), + (19, 497, 'not_attending', '2020-12-09 20:28:20', '2025-12-17 19:47:55', 'GAneZjYm', '3314270'), + (19, 499, 'not_attending', '2020-12-09 20:28:07', '2025-12-17 19:47:55', 'GAneZjYm', '3314909'), + (19, 500, 'attending', '2020-12-18 21:48:40', '2025-12-17 19:47:55', 'GAneZjYm', '3314964'), + (19, 502, 'attending', '2020-12-08 23:19:16', '2025-12-17 19:47:55', 'GAneZjYm', '3323365'), + (19, 506, 'maybe', '2020-12-12 20:06:14', '2025-12-17 19:47:55', 'GAneZjYm', '3323375'), + (19, 513, 'attending', '2020-12-19 23:27:24', '2025-12-17 19:47:55', 'GAneZjYm', '3329383'), + (19, 516, 'maybe', '2020-12-20 23:05:43', '2025-12-17 19:47:48', 'GAneZjYm', '3334530'), + (19, 517, 'attending', '2021-01-08 00:36:27', '2025-12-17 19:47:48', 'GAneZjYm', '3337137'), + (19, 526, 'attending', '2020-12-31 00:38:26', '2025-12-17 19:47:48', 'GAneZjYm', '3351539'), + (19, 528, 'attending', '2021-01-03 03:33:34', '2025-12-17 19:47:48', 'GAneZjYm', '3363022'), + (19, 532, 'not_attending', '2021-01-08 23:26:05', '2025-12-17 19:47:48', 'GAneZjYm', '3381412'), + (19, 536, 'attending', '2021-01-08 23:30:54', '2025-12-17 19:47:48', 'GAneZjYm', '3386848'), + (19, 538, 'maybe', '2021-01-15 00:44:15', '2025-12-17 19:47:48', 'GAneZjYm', '3388151'), + (19, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GAneZjYm', '3389527'), + (19, 542, 'not_attending', '2021-01-11 03:30:52', '2025-12-17 19:47:48', 'GAneZjYm', '3395013'), + (19, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GAneZjYm', '3396499'), + (19, 548, 'attending', '2021-01-13 02:46:59', '2025-12-17 19:47:48', 'GAneZjYm', '3403650'), + (19, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GAneZjYm', '3406988'), + (19, 555, 'attending', '2021-01-22 23:38:35', '2025-12-17 19:47:49', 'GAneZjYm', '3416576'), + (19, 557, 'attending', '2021-01-21 00:58:09', '2025-12-17 19:47:49', 'GAneZjYm', '3418748'), + (19, 558, 'not_attending', '2021-01-19 05:21:41', '2025-12-17 19:47:49', 'GAneZjYm', '3418925'), + (19, 559, 'not_attending', '2021-01-28 08:04:14', '2025-12-17 19:47:49', 'GAneZjYm', '3421439'), + (19, 568, 'attending', '2021-01-29 04:59:00', '2025-12-17 19:47:50', 'GAneZjYm', '3430267'), + (19, 571, 'not_attending', '2021-02-13 02:05:10', '2025-12-17 19:47:50', 'GAneZjYm', '3435539'), + (19, 578, 'attending', '2021-02-03 20:40:21', '2025-12-17 19:47:50', 'GAneZjYm', '3440043'), + (19, 579, 'attending', '2021-01-30 23:33:10', '2025-12-17 19:47:50', 'GAneZjYm', '3440978'), + (19, 583, 'not_attending', '2021-02-01 13:33:09', '2025-12-17 19:47:50', 'GAneZjYm', '3449144'), + (19, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'GAneZjYm', '3468125'), + (19, 602, 'not_attending', '2021-02-10 06:06:31', '2025-12-17 19:47:50', 'GAneZjYm', '3470303'), + (19, 603, 'attending', '2021-02-20 17:57:03', '2025-12-17 19:47:50', 'GAneZjYm', '3470304'), + (19, 604, 'attending', '2021-02-23 05:20:18', '2025-12-17 19:47:50', 'GAneZjYm', '3470305'), + (19, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GAneZjYm', '3470991'), + (19, 621, 'maybe', '2021-03-06 08:08:30', '2025-12-17 19:47:51', 'GAneZjYm', '3517815'), + (19, 622, 'attending', '2021-03-09 08:42:00', '2025-12-17 19:47:51', 'GAneZjYm', '3517816'), + (19, 623, 'not_attending', '2021-02-27 18:51:13', '2025-12-17 19:47:51', 'GAneZjYm', '3523941'), + (19, 624, 'attending', '2021-02-27 11:56:57', '2025-12-17 19:47:50', 'GAneZjYm', '3528556'), + (19, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GAneZjYm', '3533850'), + (19, 635, 'attending', '2021-04-04 02:58:54', '2025-12-17 19:47:44', 'GAneZjYm', '3534719'), + (19, 637, 'maybe', '2021-03-18 22:36:47', '2025-12-17 19:47:51', 'GAneZjYm', '3536411'), + (19, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GAneZjYm', '3536632'), + (19, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GAneZjYm', '3536656'), + (19, 641, 'attending', '2021-04-01 22:56:54', '2025-12-17 19:47:44', 'GAneZjYm', '3539916'), + (19, 642, 'attending', '2021-04-10 16:35:08', '2025-12-17 19:47:44', 'GAneZjYm', '3539917'), + (19, 643, 'attending', '2021-04-13 08:13:06', '2025-12-17 19:47:45', 'GAneZjYm', '3539918'), + (19, 644, 'attending', '2021-04-14 07:39:40', '2025-12-17 19:47:45', 'GAneZjYm', '3539919'), + (19, 645, 'attending', '2021-05-08 21:58:23', '2025-12-17 19:47:46', 'GAneZjYm', '3539920'), + (19, 646, 'attending', '2021-05-15 12:00:42', '2025-12-17 19:47:46', 'GAneZjYm', '3539921'), + (19, 647, 'not_attending', '2021-05-22 20:56:02', '2025-12-17 19:47:46', 'GAneZjYm', '3539922'), + (19, 648, 'attending', '2021-05-29 19:20:58', '2025-12-17 19:47:47', 'GAneZjYm', '3539923'), + (19, 649, 'attending', '2021-03-18 22:36:35', '2025-12-17 19:47:51', 'GAneZjYm', '3539927'), + (19, 650, 'attending', '2021-03-27 20:44:20', '2025-12-17 19:47:44', 'GAneZjYm', '3539928'), + (19, 651, 'attending', '2021-03-09 18:40:32', '2025-12-17 19:47:51', 'GAneZjYm', '3541045'), + (19, 653, 'attending', '2021-03-06 23:53:56', '2025-12-17 19:47:51', 'GAneZjYm', '3546917'), + (19, 655, 'attending', '2021-03-12 06:24:54', '2025-12-17 19:47:51', 'GAneZjYm', '3547129'), + (19, 656, 'attending', '2021-03-18 22:36:37', '2025-12-17 19:47:51', 'GAneZjYm', '3547130'), + (19, 659, 'attending', '2021-04-06 13:06:27', '2025-12-17 19:47:44', 'GAneZjYm', '3547135'), + (19, 660, 'attending', '2021-07-08 02:08:25', '2025-12-17 19:47:39', 'GAneZjYm', '3547136'), + (19, 661, 'attending', '2021-04-01 22:56:59', '2025-12-17 19:47:44', 'GAneZjYm', '3547137'), + (19, 662, 'attending', '2021-04-14 07:39:44', '2025-12-17 19:47:45', 'GAneZjYm', '3547138'), + (19, 671, 'not_attending', '2021-07-17 16:07:43', '2025-12-17 19:47:39', 'GAneZjYm', '3547149'), + (19, 672, 'not_attending', '2021-05-22 20:56:07', '2025-12-17 19:47:46', 'GAneZjYm', '3547150'), + (19, 674, 'attending', '2021-08-06 06:17:16', '2025-12-17 19:47:41', 'GAneZjYm', '3547152'), + (19, 676, 'attending', '2021-07-24 01:52:19', '2025-12-17 19:47:40', 'GAneZjYm', '3547154'), + (19, 679, 'attending', '2021-03-09 09:03:04', '2025-12-17 19:47:44', 'GAneZjYm', '3547168'), + (19, 705, 'attending', '2021-03-26 03:35:29', '2025-12-17 19:47:44', 'GAneZjYm', '3581895'), + (19, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GAneZjYm', '3582734'), + (19, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GAneZjYm', '3583262'), + (19, 711, 'maybe', '2021-04-01 20:39:12', '2025-12-17 19:47:44', 'GAneZjYm', '3588075'), + (19, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GAneZjYm', '3619523'), + (19, 719, 'not_attending', '2021-04-08 04:15:21', '2025-12-17 19:47:44', 'GAneZjYm', '3635405'), + (19, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GAneZjYm', '3661369'), + (19, 731, 'not_attending', '2021-04-06 05:12:20', '2025-12-17 19:47:44', 'GAneZjYm', '3674262'), + (19, 733, 'not_attending', '2021-04-04 20:57:12', '2025-12-17 19:47:44', 'GAneZjYm', '3675473'), + (19, 735, 'maybe', '2021-04-05 03:04:49', '2025-12-17 19:47:46', 'GAneZjYm', '3677402'), + (19, 736, 'attending', '2021-04-05 04:02:42', '2025-12-17 19:47:44', 'GAneZjYm', '3677701'), + (19, 737, 'attending', '2021-04-05 16:42:31', '2025-12-17 19:47:44', 'GAneZjYm', '3679349'), + (19, 761, 'attending', '2021-05-14 22:40:57', '2025-12-17 19:47:46', 'GAneZjYm', '3716041'), + (19, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GAneZjYm', '3730212'), + (19, 777, 'attending', '2021-04-28 12:54:24', '2025-12-17 19:47:46', 'GAneZjYm', '3746248'), + (19, 783, 'not_attending', '2021-05-01 01:14:18', '2025-12-17 19:47:46', 'GAneZjYm', '3767471'), + (19, 785, 'attending', '2021-05-15 19:17:13', '2025-12-17 19:47:46', 'GAneZjYm', '3779779'), + (19, 786, 'not_attending', '2021-05-11 03:55:24', '2025-12-17 19:47:46', 'GAneZjYm', '3780093'), + (19, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GAneZjYm', '3793156'), + (19, 794, 'attending', '2021-05-26 23:16:49', '2025-12-17 19:47:47', 'GAneZjYm', '3793538'), + (19, 812, 'attending', '2021-05-18 01:54:00', '2025-12-17 19:47:46', 'GAneZjYm', '3808031'), + (19, 822, 'attending', '2021-06-06 09:00:05', '2025-12-17 19:47:47', 'GAneZjYm', '3969986'), + (19, 823, 'attending', '2021-06-19 20:38:25', '2025-12-17 19:47:48', 'GAneZjYm', '3974109'), + (19, 827, 'attending', '2021-06-02 04:28:41', '2025-12-17 19:47:47', 'GAneZjYm', '3975311'), + (19, 828, 'not_attending', '2021-06-12 21:48:15', '2025-12-17 19:47:47', 'GAneZjYm', '3975312'), + (19, 835, 'attending', '2021-06-06 09:02:38', '2025-12-17 19:47:47', 'GAneZjYm', '3992486'), + (19, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GAneZjYm', '3994992'), + (19, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GAneZjYm', '4014338'), + (19, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GAneZjYm', '4021848'), + (19, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GAneZjYm', '4136744'), + (19, 870, 'attending', '2021-07-03 21:20:18', '2025-12-17 19:47:39', 'GAneZjYm', '4136937'), + (19, 871, 'attending', '2021-07-07 21:07:39', '2025-12-17 19:47:39', 'GAneZjYm', '4136938'), + (19, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GAneZjYm', '4136947'), + (19, 884, 'attending', '2021-07-17 06:41:37', '2025-12-17 19:47:42', 'GAneZjYm', '4210314'), + (19, 885, 'maybe', '2021-06-27 22:30:28', '2025-12-17 19:47:38', 'GAneZjYm', '4222370'), + (19, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GAneZjYm', '4225444'), + (19, 897, 'attending', '2021-06-28 22:35:16', '2025-12-17 19:47:38', 'GAneZjYm', '4232132'), + (19, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GAneZjYm', '4239259'), + (19, 900, 'attending', '2021-07-21 05:31:09', '2025-12-17 19:47:40', 'GAneZjYm', '4240316'), + (19, 901, 'attending', '2021-07-31 06:07:55', '2025-12-17 19:47:40', 'GAneZjYm', '4240317'), + (19, 902, 'attending', '2021-08-06 06:17:13', '2025-12-17 19:47:41', 'GAneZjYm', '4240318'), + (19, 903, 'attending', '2021-08-11 05:30:09', '2025-12-17 19:47:42', 'GAneZjYm', '4240320'), + (19, 905, 'attending', '2021-07-07 22:13:48', '2025-12-17 19:47:39', 'GAneZjYm', '4250163'), + (19, 906, 'attending', '2021-07-10 03:24:17', '2025-12-17 19:47:39', 'GAneZjYm', '4253431'), + (19, 916, 'not_attending', '2021-07-21 05:23:32', '2025-12-17 19:47:40', 'GAneZjYm', '4273772'), + (19, 919, 'not_attending', '2021-07-17 16:07:38', '2025-12-17 19:47:39', 'GAneZjYm', '4275957'), + (19, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GAneZjYm', '4277819'), + (19, 926, 'not_attending', '2021-08-18 20:37:16', '2025-12-17 19:47:42', 'GAneZjYm', '4297211'), + (19, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GAneZjYm', '4301723'), + (19, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GAneZjYm', '4302093'), + (19, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GAneZjYm', '4304151'), + (19, 937, 'attending', '2021-07-24 01:52:40', '2025-12-17 19:47:40', 'GAneZjYm', '4306596'), + (19, 961, 'attending', '2021-08-08 06:10:17', '2025-12-17 19:47:41', 'GAneZjYm', '4345519'), + (19, 971, 'maybe', '2021-09-08 05:42:32', '2025-12-17 19:47:43', 'GAneZjYm', '4356801'), + (19, 972, 'maybe', '2021-08-20 22:55:53', '2025-12-17 19:47:42', 'GAneZjYm', '4358025'), + (19, 973, 'attending', '2021-08-21 21:59:36', '2025-12-17 19:47:42', 'GAneZjYm', '4366186'), + (19, 974, 'attending', '2021-08-24 01:35:09', '2025-12-17 19:47:42', 'GAneZjYm', '4366187'), + (19, 979, 'attending', '2021-08-18 19:48:25', '2025-12-17 19:47:42', 'GAneZjYm', '4379085'), + (19, 990, 'attending', '2021-08-28 22:31:51', '2025-12-17 19:47:43', 'GAneZjYm', '4420735'), + (19, 991, 'attending', '2021-08-28 22:31:53', '2025-12-17 19:47:43', 'GAneZjYm', '4420738'), + (19, 992, 'not_attending', '2021-09-15 22:29:34', '2025-12-17 19:47:34', 'GAneZjYm', '4420739'), + (19, 993, 'attending', '2021-08-28 22:31:56', '2025-12-17 19:47:34', 'GAneZjYm', '4420741'), + (19, 994, 'attending', '2021-10-02 02:33:57', '2025-12-17 19:47:34', 'GAneZjYm', '4420742'), + (19, 995, 'attending', '2021-08-28 22:31:57', '2025-12-17 19:47:34', 'GAneZjYm', '4420744'), + (19, 996, 'attending', '2021-08-28 22:32:00', '2025-12-17 19:47:35', 'GAneZjYm', '4420747'), + (19, 997, 'attending', '2021-08-28 22:32:02', '2025-12-17 19:47:35', 'GAneZjYm', '4420748'), + (19, 998, 'attending', '2021-08-28 22:32:04', '2025-12-17 19:47:36', 'GAneZjYm', '4420749'), + (19, 999, 'not_attending', '2021-08-30 17:32:06', '2025-12-17 19:47:43', 'GAneZjYm', '4421150'), + (19, 1016, 'not_attending', '2021-09-08 20:26:42', '2025-12-17 19:47:43', 'GAneZjYm', '4441271'), + (19, 1018, 'not_attending', '2021-09-06 05:42:06', '2025-12-17 19:47:43', 'GAneZjYm', '4448883'), + (19, 1022, 'attending', '2021-09-15 02:37:56', '2025-12-17 19:47:43', 'GAneZjYm', '4458628'), + (19, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GAneZjYm', '4461883'), + (19, 1033, 'not_attending', '2021-09-18 03:09:33', '2025-12-17 19:47:43', 'GAneZjYm', '4486006'), + (19, 1036, 'attending', '2021-09-22 21:50:49', '2025-12-17 19:47:34', 'GAneZjYm', '4493166'), + (19, 1040, 'maybe', '2021-12-11 22:42:48', '2025-12-17 19:47:38', 'GAneZjYm', '4496605'), + (19, 1064, 'attending', '2021-09-21 20:02:43', '2025-12-17 19:47:34', 'GAneZjYm', '4499526'), + (19, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GAneZjYm', '4508342'), + (19, 1074, 'attending', '2021-09-29 23:19:19', '2025-12-17 19:47:34', 'GAneZjYm', '4528953'), + (19, 1077, 'attending', '2021-10-12 19:42:16', '2025-12-17 19:47:34', 'GAneZjYm', '4540903'), + (19, 1085, 'attending', '2021-12-23 21:31:13', '2025-12-17 19:47:31', 'GAneZjYm', '4568542'), + (19, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GAneZjYm', '4568602'), + (19, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GAneZjYm', '4572153'), + (19, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GAneZjYm', '4585962'), + (19, 1094, 'not_attending', '2021-10-30 19:11:17', '2025-12-17 19:47:36', 'GAneZjYm', '4587337'), + (19, 1099, 'attending', '2021-11-06 22:29:46', '2025-12-17 19:47:36', 'GAneZjYm', '4602797'), + (19, 1102, 'maybe', '2021-11-05 03:18:34', '2025-12-17 19:47:37', 'GAneZjYm', '4612098'), + (19, 1105, 'maybe', '2021-11-10 22:19:41', '2025-12-17 19:47:36', 'GAneZjYm', '4618567'), + (19, 1108, 'attending', '2021-11-18 00:27:51', '2025-12-17 19:47:37', 'GAneZjYm', '4632276'), + (19, 1126, 'maybe', '2021-12-11 21:41:05', '2025-12-17 19:47:38', 'GAneZjYm', '4645687'), + (19, 1127, 'attending', '2021-11-28 03:30:01', '2025-12-17 19:47:38', 'GAneZjYm', '4645698'), + (19, 1130, 'attending', '2021-12-04 22:16:29', '2025-12-17 19:47:37', 'GAneZjYm', '4658824'), + (19, 1132, 'attending', '2021-11-23 00:54:40', '2025-12-17 19:47:37', 'GAneZjYm', '4660657'), + (19, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GAneZjYm', '4668385'), + (19, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GAneZjYm', '4694407'), + (19, 1164, 'attending', '2021-12-29 20:35:55', '2025-12-17 19:47:31', 'GAneZjYm', '4724208'), + (19, 1165, 'attending', '2021-12-29 20:35:56', '2025-12-17 19:47:31', 'GAneZjYm', '4724210'), + (19, 1175, 'attending', '2022-01-22 18:42:57', '2025-12-17 19:47:32', 'GAneZjYm', '4736497'), + (19, 1176, 'attending', '2022-02-05 23:46:32', '2025-12-17 19:47:32', 'GAneZjYm', '4736498'), + (19, 1177, 'attending', '2022-02-11 05:07:07', '2025-12-17 19:47:32', 'GAneZjYm', '4736499'), + (19, 1181, 'attending', '2022-03-01 16:20:05', '2025-12-17 19:47:33', 'GAneZjYm', '4736503'), + (19, 1182, 'attending', '2022-03-08 22:59:22', '2025-12-17 19:47:33', 'GAneZjYm', '4736504'), + (19, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GAneZjYm', '4746789'), + (19, 1203, 'attending', '2022-01-22 23:25:18', '2025-12-17 19:47:32', 'GAneZjYm', '4773535'), + (19, 1204, 'attending', '2022-02-13 21:19:57', '2025-12-17 19:47:32', 'GAneZjYm', '4773576'), + (19, 1205, 'not_attending', '2022-03-13 19:12:18', '2025-12-17 19:47:33', 'GAneZjYm', '4773577'), + (19, 1209, 'attending', '2022-01-22 22:50:37', '2025-12-17 19:47:32', 'GAneZjYm', '4776926'), + (19, 1219, 'attending', '2022-02-02 09:04:00', '2025-12-17 19:47:32', 'GAneZjYm', '4788466'), + (19, 1232, 'attending', '2022-02-09 23:19:57', '2025-12-17 19:47:32', 'GAneZjYm', '5038850'), + (19, 1236, 'not_attending', '2022-02-16 23:00:34', '2025-12-17 19:47:32', 'GAneZjYm', '5045826'), + (19, 1249, 'not_attending', '2022-03-08 22:58:53', '2025-12-17 19:47:33', 'GAneZjYm', '5068530'), + (19, 1254, 'attending', '2022-03-05 21:39:59', '2025-12-17 19:47:33', 'GAneZjYm', '5129129'), + (19, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GAneZjYm', '5132533'), + (19, 1265, 'not_attending', '2022-03-08 22:59:15', '2025-12-17 19:47:33', 'GAneZjYm', '5160862'), + (19, 1266, 'attending', '2022-03-12 23:18:12', '2025-12-17 19:47:33', 'GAneZjYm', '5166407'), + (19, 1272, 'not_attending', '2022-03-18 01:37:59', '2025-12-17 19:47:25', 'GAneZjYm', '5186582'), + (19, 1281, 'not_attending', '2022-04-09 22:14:32', '2025-12-17 19:47:27', 'GAneZjYm', '5190437'), + (19, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GAneZjYm', '5195095'), + (19, 1293, 'not_attending', '2022-04-09 16:57:35', '2025-12-17 19:47:27', 'GAneZjYm', '5214641'), + (19, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GAneZjYm', '5215989'), + (19, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GAneZjYm', '5223686'), + (19, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'GAneZjYm', '5227432'), + (19, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GAneZjYm', '5247467'), + (19, 1362, 'attending', '2022-04-30 19:57:10', '2025-12-17 19:47:28', 'GAneZjYm', '5260800'), + (19, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GAneZjYm', '5269930'), + (19, 1378, 'attending', '2022-05-14 11:13:17', '2025-12-17 19:47:29', 'GAneZjYm', '5271448'), + (19, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'GAneZjYm', '5271449'), + (19, 1380, 'not_attending', '2022-05-24 19:44:30', '2025-12-17 19:47:30', 'GAneZjYm', '5271450'), + (19, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'GAneZjYm', '5276469'), + (19, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GAneZjYm', '5278159'), + (19, 1396, 'attending', '2022-05-14 11:13:14', '2025-12-17 19:47:28', 'GAneZjYm', '5281103'), + (19, 1407, 'not_attending', '2022-06-03 17:38:11', '2025-12-17 19:47:30', 'GAneZjYm', '5363695'), + (19, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GAneZjYm', '5365960'), + (19, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'GAneZjYm', '5368973'), + (19, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GAneZjYm', '5378247'), + (19, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GAneZjYm', '5389605'), + (19, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GAneZjYm', '5397265'), + (19, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'GAneZjYm', '5403967'), + (19, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GAneZjYm', '5404786'), + (19, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GAneZjYm', '5405203'), + (19, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'GAneZjYm', '5411699'), + (19, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GAneZjYm', '5412550'), + (19, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GAneZjYm', '5415046'), + (19, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GAneZjYm', '5422086'), + (19, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GAneZjYm', '5422406'), + (19, 1561, 'not_attending', '2022-08-12 22:48:05', '2025-12-17 19:47:22', 'GAneZjYm', '5461278'), + (19, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GAneZjYm', '5502188'), + (19, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GAneZjYm', '5505059'), + (19, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GAneZjYm', '5509055'), + (19, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GAneZjYm', '5512862'), + (19, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GAneZjYm', '5513985'), + (19, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GAneZjYm', '5519981'), + (19, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GAneZjYm', '5522550'), + (19, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GAneZjYm', '5534683'), + (19, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GAneZjYm', '5537735'), + (19, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GAneZjYm', '5540859'), + (19, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GAneZjYm', '5546619'), + (19, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GAneZjYm', '5555245'), + (19, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GAneZjYm', '5557747'), + (19, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GAneZjYm', '5560255'), + (19, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GAneZjYm', '5562906'), + (19, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GAneZjYm', '5600604'), + (19, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GAneZjYm', '5605544'), + (19, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GAneZjYm', '5630960'), + (19, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GAneZjYm', '5630961'), + (19, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GAneZjYm', '5630962'), + (19, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GAneZjYm', '5630966'), + (19, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GAneZjYm', '5630967'), + (19, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GAneZjYm', '5630968'), + (19, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GAneZjYm', '5635406'), + (19, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GAneZjYm', '5638765'), + (19, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GAneZjYm', '5640097'), + (19, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GAneZjYm', '5640843'), + (19, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GAneZjYm', '5641521'), + (19, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GAneZjYm', '5642818'), + (19, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GAneZjYm', '5652395'), + (19, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GAneZjYm', '5670445'), + (19, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GAneZjYm', '5671637'), + (19, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GAneZjYm', '5672329'), + (19, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GAneZjYm', '5674057'), + (19, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GAneZjYm', '5674060'), + (19, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GAneZjYm', '5677461'), + (19, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GAneZjYm', '5698046'), + (19, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GAneZjYm', '5699760'), + (19, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GAneZjYm', '5741601'), + (19, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GAneZjYm', '5763458'), + (19, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GAneZjYm', '5774172'), + (19, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GAneZjYm', '5818247'), + (19, 1834, 'attending', '2022-12-11 23:56:09', '2025-12-17 19:47:17', 'GAneZjYm', '5819470'), + (19, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GAneZjYm', '5819471'), + (19, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GAneZjYm', '5827739'), + (19, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GAneZjYm', '5844306'), + (19, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GAneZjYm', '5850159'), + (19, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GAneZjYm', '5858999'), + (19, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GAneZjYm', '5871984'), + (19, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GAneZjYm', '5876354'), + (19, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GAneZjYm', '5880939'), + (19, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GAneZjYm', '5880940'), + (19, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GAneZjYm', '5880942'), + (19, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GAneZjYm', '5880943'), + (19, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GAneZjYm', '5887890'), + (19, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GAneZjYm', '5888598'), + (19, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GAneZjYm', '5893260'), + (19, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GAneZjYm', '5899826'), + (19, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GAneZjYm', '5900199'), + (19, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GAneZjYm', '5900200'), + (19, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GAneZjYm', '5900202'), + (19, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GAneZjYm', '5900203'), + (19, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GAneZjYm', '5901108'), + (19, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GAneZjYm', '5901126'), + (19, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GAneZjYm', '5909655'), + (19, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GAneZjYm', '5910522'), + (19, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GAneZjYm', '5910526'), + (19, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GAneZjYm', '5910528'), + (19, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GAneZjYm', '5916219'), + (19, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GAneZjYm', '5936234'), + (19, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GAneZjYm', '5958351'), + (19, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GAneZjYm', '5959751'), + (19, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GAneZjYm', '5959755'), + (19, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GAneZjYm', '5960055'), + (19, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GAneZjYm', '5961684'), + (19, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GAneZjYm', '5962132'), + (19, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GAneZjYm', '5962133'), + (19, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GAneZjYm', '5962134'), + (19, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GAneZjYm', '5962317'), + (19, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GAneZjYm', '5962318'), + (19, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'GAneZjYm', '5965933'), + (19, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GAneZjYm', '5967014'), + (19, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GAneZjYm', '5972815'), + (19, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GAneZjYm', '5974016'), + (19, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GAneZjYm', '5981515'), + (19, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GAneZjYm', '5993516'), + (19, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GAneZjYm', '5998939'), + (19, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GAneZjYm', '6028191'), + (19, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GAneZjYm', '6040066'), + (19, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GAneZjYm', '6042717'), + (19, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GAneZjYm', '6044838'), + (19, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GAneZjYm', '6044839'), + (19, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GAneZjYm', '6045684'), + (19, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GAneZjYm', '6050104'), + (19, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GAneZjYm', '6053195'), + (19, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GAneZjYm', '6053198'), + (19, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GAneZjYm', '6056085'), + (19, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GAneZjYm', '6056916'), + (19, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GAneZjYm', '6059290'), + (19, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GAneZjYm', '6061037'), + (19, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GAneZjYm', '6061039'), + (19, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GAneZjYm', '6067245'), + (19, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GAneZjYm', '6068094'), + (19, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GAneZjYm', '6068252'), + (19, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GAneZjYm', '6068253'), + (19, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GAneZjYm', '6068254'), + (19, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GAneZjYm', '6068280'), + (19, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GAneZjYm', '6069093'), + (19, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GAneZjYm', '6072528'), + (19, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GAneZjYm', '6079840'), + (19, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GAneZjYm', '6083398'), + (19, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GAneZjYm', '6093504'), + (19, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GAneZjYm', '6097414'), + (19, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GAneZjYm', '6097442'), + (19, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GAneZjYm', '6097684'), + (19, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GAneZjYm', '6098762'), + (19, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GAneZjYm', '6101362'), + (19, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GAneZjYm', '6107314'), + (19, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GAneZjYm', '6361713'), + (19, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GAneZjYm', '6388604'), + (19, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GAneZjYm', '6394629'), + (19, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GAneZjYm', '6394631'), + (19, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GAneZjYm', '6440863'), + (19, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GAneZjYm', '6445440'), + (19, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GAneZjYm', '6453951'), + (19, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GAneZjYm', '6461696'), + (19, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GAneZjYm', '6462129'), + (19, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GAneZjYm', '6463218'), + (19, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GAneZjYm', '6472181'), + (19, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GAneZjYm', '6482693'), + (19, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GAneZjYm', '6484200'), + (19, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GAneZjYm', '6484680'), + (19, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GAneZjYm', '6507741'), + (19, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GAneZjYm', '6514659'), + (19, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GAneZjYm', '6514660'), + (19, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GAneZjYm', '6519103'), + (19, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GAneZjYm', '6535681'), + (19, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GAneZjYm', '6584747'), + (19, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GAneZjYm', '6587097'), + (19, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GAneZjYm', '6609022'), + (19, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'GAneZjYm', '6632757'), + (19, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GAneZjYm', '6644187'), + (19, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GAneZjYm', '6648951'), + (19, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GAneZjYm', '6648952'), + (19, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GAneZjYm', '6661585'), + (19, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GAneZjYm', '6661588'), + (19, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GAneZjYm', '6661589'), + (19, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GAneZjYm', '6699906'), + (19, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAneZjYm', '7074364'), + (19, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GAneZjYm', '7114957'), + (19, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GAneZjYm', '7178446'), + (19, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GAneZjYm', '7220467'), + (19, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GAneZjYm', '7240354'), + (19, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GAneZjYm', '7251633'), + (19, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GAneZjYm', '7324073'), + (19, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAneZjYm', '7324074'), + (19, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAneZjYm', '7324075'), + (19, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GAneZjYm', '7324078'), + (19, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GAneZjYm', '7324082'), + (19, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GAneZjYm', '7331457'), + (19, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GAneZjYm', '7363643'), + (19, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAneZjYm', '7368606'), + (19, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GAneZjYm', '7397462'), + (19, 2821, 'attending', '2024-10-12 14:16:39', '2025-12-17 19:46:26', 'GAneZjYm', '7424275'), + (19, 2822, 'attending', '2024-11-10 14:51:38', '2025-12-17 19:46:26', 'GAneZjYm', '7424276'), + (19, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAneZjYm', '7432751'), + (19, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAneZjYm', '7432752'), + (19, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAneZjYm', '7432753'), + (19, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAneZjYm', '7432754'), + (19, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAneZjYm', '7432755'), + (19, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAneZjYm', '7432756'), + (19, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAneZjYm', '7432758'), + (19, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAneZjYm', '7432759'), + (19, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAneZjYm', '7433834'), + (19, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'GAneZjYm', '7470197'), + (19, 2891, 'attending', '2024-10-25 20:18:48', '2025-12-17 19:46:26', 'GAneZjYm', '7668163'), + (19, 2894, 'attending', '2024-11-02 16:57:28', '2025-12-17 19:46:26', 'GAneZjYm', '7680059'), + (19, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GAneZjYm', '7685613'), + (19, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAneZjYm', '7688194'), + (19, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAneZjYm', '7688196'), + (19, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAneZjYm', '7688289'), + (19, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAneZjYm', '7692763'), + (19, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAneZjYm', '7697552'), + (19, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAneZjYm', '7699878'), + (19, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'GAneZjYm', '7704043'), + (19, 2924, 'attending', '2024-11-26 14:29:59', '2025-12-17 19:46:28', 'GAneZjYm', '7712467'), + (19, 2925, 'attending', '2024-12-15 00:27:54', '2025-12-17 19:46:21', 'GAneZjYm', '7713584'), + (19, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GAneZjYm', '7713585'), + (19, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAneZjYm', '7713586'), + (19, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAneZjYm', '7738518'), + (19, 2962, 'attending', '2024-12-26 23:41:32', '2025-12-17 19:46:22', 'GAneZjYm', '7750632'), + (19, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAneZjYm', '7750636'), + (19, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAneZjYm', '7796540'), + (19, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAneZjYm', '7796541'), + (19, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAneZjYm', '7796542'), + (19, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAneZjYm', '7825913'), + (19, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', 'GAneZjYm', '7825920'), + (19, 2981, 'attending', '2025-01-29 16:58:41', '2025-12-17 19:46:22', 'GAneZjYm', '7826124'), + (19, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAneZjYm', '7834742'), + (19, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'GAneZjYm', '7842108'), + (19, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAneZjYm', '7842902'), + (19, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAneZjYm', '7842903'), + (19, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAneZjYm', '7842904'), + (19, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAneZjYm', '7842905'), + (19, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAneZjYm', '7855719'), + (19, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAneZjYm', '7860683'), + (19, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAneZjYm', '7860684'), + (19, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAneZjYm', '7866095'), + (19, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GAneZjYm', '7869170'), + (19, 3015, 'not_attending', '2025-04-21 11:43:53', '2025-12-17 19:46:20', 'GAneZjYm', '7869186'), + (19, 3016, 'attending', '2025-04-19 22:05:58', '2025-12-17 19:46:20', 'GAneZjYm', '7869187'), + (19, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GAneZjYm', '7869188'), + (19, 3022, 'not_attending', '2025-04-23 13:38:50', '2025-12-17 19:46:20', 'GAneZjYm', '7869193'), + (19, 3023, 'attending', '2025-03-17 13:45:19', '2025-12-17 19:46:19', 'GAneZjYm', '7869194'), + (19, 3028, 'attending', '2025-04-23 13:38:57', '2025-12-17 19:46:20', 'GAneZjYm', '7869199'), + (19, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAneZjYm', '7869201'), + (19, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAneZjYm', '7877465'), + (19, 3047, 'not_attending', '2025-04-23 13:38:28', '2025-12-17 19:46:20', 'GAneZjYm', '7882693'), + (19, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAneZjYm', '7888250'), + (19, 3061, 'attending', '2025-03-27 15:18:01', '2025-12-17 19:46:19', 'GAneZjYm', '7892590'), + (19, 3080, 'attending', '2025-04-06 16:39:16', '2025-12-17 19:46:20', 'GAneZjYm', '7901441'), + (19, 3088, 'attending', '2025-06-08 18:09:46', '2025-12-17 19:46:15', 'GAneZjYm', '7904777'), + (19, 3094, 'attending', '2025-05-06 21:37:07', '2025-12-17 19:46:21', 'GAneZjYm', '8342292'), + (19, 3095, 'attending', '2025-04-27 17:24:02', '2025-12-17 19:46:20', 'GAneZjYm', '8342293'), + (19, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAneZjYm', '8349164'), + (19, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAneZjYm', '8349545'), + (19, 3108, 'attending', '2025-05-03 15:59:54', '2025-12-17 19:46:20', 'GAneZjYm', '8351411'), + (19, 3110, 'not_attending', '2025-04-29 19:54:07', '2025-12-17 19:46:20', 'GAneZjYm', '8353484'), + (19, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'GAneZjYm', '8353584'), + (19, 3119, 'attending', '2025-05-13 13:48:34', '2025-12-17 19:46:21', 'GAneZjYm', '8360035'), + (19, 3126, 'maybe', '2025-05-11 04:02:43', '2025-12-17 19:46:21', 'GAneZjYm', '8365614'), + (19, 3131, 'not_attending', '2025-05-13 00:04:02', '2025-12-17 19:46:21', 'GAneZjYm', '8368028'), + (19, 3132, 'not_attending', '2025-05-19 22:23:19', '2025-12-17 19:46:21', 'GAneZjYm', '8368029'), + (19, 3133, 'attending', '2025-05-29 11:42:34', '2025-12-17 19:46:14', 'GAneZjYm', '8368030'), + (19, 3134, 'not_attending', '2025-05-13 00:04:31', '2025-12-17 19:46:21', 'GAneZjYm', '8368031'), + (19, 3139, 'attending', '2025-05-19 22:23:52', '2025-12-17 19:46:21', 'GAneZjYm', '8377425'), + (19, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAneZjYm', '8388462'), + (19, 3145, 'attending', '2025-05-31 20:45:07', '2025-12-17 19:46:14', 'GAneZjYm', '8393168'), + (19, 3147, 'attending', '2025-06-09 13:51:15', '2025-12-17 19:46:15', 'GAneZjYm', '8393170'), + (19, 3150, 'attending', '2025-06-18 22:08:59', '2025-12-17 19:46:15', 'GAneZjYm', '8393174'), + (19, 3151, 'attending', '2025-05-31 18:39:53', '2025-12-17 19:46:14', 'GAneZjYm', '8393497'), + (19, 3153, 'attending', '2025-06-03 21:16:46', '2025-12-17 19:46:15', 'GAneZjYm', '8400273'), + (19, 3154, 'attending', '2025-06-21 15:17:59', '2025-12-17 19:46:15', 'GAneZjYm', '8400274'), + (19, 3155, 'attending', '2025-07-01 21:04:22', '2025-12-17 19:46:16', 'GAneZjYm', '8400275'), + (19, 3156, 'attending', '2025-07-11 15:34:35', '2025-12-17 19:46:16', 'GAneZjYm', '8400276'), + (19, 3169, 'attending', '2025-06-08 18:09:24', '2025-12-17 19:46:15', 'GAneZjYm', '8404977'), + (19, 3183, 'attending', '2025-07-16 20:17:55', '2025-12-17 19:46:17', 'GAneZjYm', '8430799'), + (19, 3188, 'attending', '2025-07-12 22:46:15', '2025-12-17 19:46:17', 'GAneZjYm', '8438709'), + (19, 3193, 'attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAneZjYm', '8457738'), + (19, 3195, 'attending', '2025-08-06 22:42:06', '2025-12-17 19:46:17', 'GAneZjYm', '8458118'), + (19, 3196, 'not_attending', '2025-08-12 13:58:36', '2025-12-17 19:46:17', 'GAneZjYm', '8458543'), + (19, 3199, 'attending', '2025-07-19 13:47:59', '2025-12-17 19:46:17', 'GAneZjYm', '8459565'), + (19, 3200, 'attending', '2025-07-20 03:17:04', '2025-12-17 19:46:17', 'GAneZjYm', '8459566'), + (19, 3201, 'attending', '2025-08-09 15:38:15', '2025-12-17 19:46:17', 'GAneZjYm', '8459567'), + (19, 3202, 'attending', '2025-07-23 12:35:56', '2025-12-17 19:46:17', 'GAneZjYm', '8459568'), + (19, 3203, 'attending', '2025-07-20 03:17:17', '2025-12-17 19:46:17', 'GAneZjYm', '8461032'), + (19, 3213, 'maybe', '2025-08-12 13:58:45', '2025-12-17 19:46:17', 'GAneZjYm', '8477876'), + (19, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAneZjYm', '8477877'), + (19, 3217, 'not_attending', '2025-08-12 13:58:39', '2025-12-17 19:46:17', 'GAneZjYm', '8481811'), + (19, 3224, 'attending', '2025-09-07 01:55:10', '2025-12-17 19:46:12', 'GAneZjYm', '8485679'), + (19, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAneZjYm', '8485688'), + (19, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAneZjYm', '8490587'), + (19, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAneZjYm', '8493552'), + (19, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAneZjYm', '8493553'), + (19, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAneZjYm', '8493554'), + (19, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAneZjYm', '8493555'), + (19, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAneZjYm', '8493556'), + (19, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAneZjYm', '8493557'), + (19, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAneZjYm', '8493558'), + (19, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAneZjYm', '8493559'), + (19, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAneZjYm', '8493560'), + (19, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'GAneZjYm', '8493561'), + (19, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAneZjYm', '8493572'), + (19, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAneZjYm', '8540725'), + (19, 3295, 'attending', '2025-11-01 22:47:48', '2025-12-17 19:46:14', 'GAneZjYm', '8547541'), + (19, 3297, 'attending', '2025-10-21 03:10:35', '2025-12-17 19:46:14', 'GAneZjYm', '8548090'), + (19, 3300, 'attending', '2025-11-07 12:18:15', '2025-12-17 19:46:14', 'GAneZjYm', '8549145'), + (19, 3302, 'attending', '2025-11-08 17:37:08', '2025-12-17 19:46:14', 'GAneZjYm', '8550022'), + (19, 3304, 'attending', '2025-11-08 17:37:13', '2025-12-17 19:46:14', 'GAneZjYm', '8550024'), + (19, 3307, 'attending', '2025-12-15 18:43:40', '2025-12-17 19:46:11', 'GAneZjYm', '8550027'), + (19, 3311, 'attending', '2025-12-08 02:30:21', '2025-12-17 19:46:11', 'GAneZjYm', '8550412'), + (19, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAneZjYm', '8555421'), + (20, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dzbNypVd', '7074364'), + (20, 2688, 'attending', '2024-06-27 19:39:36', '2025-12-17 19:46:29', 'dzbNypVd', '7324073'), + (20, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dzbNypVd', '7324074'), + (20, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dzbNypVd', '7324075'), + (20, 2691, 'not_attending', '2024-07-20 18:39:17', '2025-12-17 19:46:30', 'dzbNypVd', '7324076'), + (20, 2692, 'not_attending', '2024-07-27 21:06:25', '2025-12-17 19:46:30', 'dzbNypVd', '7324077'), + (20, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dzbNypVd', '7324078'), + (20, 2696, 'attending', '2024-08-21 18:03:23', '2025-12-17 19:46:32', 'dzbNypVd', '7324081'), + (20, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dzbNypVd', '7324082'), + (20, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dzbNypVd', '7331457'), + (20, 2735, 'attending', '2024-06-28 14:00:55', '2025-12-17 19:46:29', 'dzbNypVd', '7340369'), + (20, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dzbNypVd', '7356752'), + (20, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dzbNypVd', '7363643'), + (20, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dzbNypVd', '7368606'), + (20, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dzbNypVd', '7397462'), + (20, 2821, 'maybe', '2024-10-07 19:50:26', '2025-12-17 19:46:26', 'dzbNypVd', '7424275'), + (20, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dzbNypVd', '7424276'), + (20, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dzbNypVd', '7432751'), + (20, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dzbNypVd', '7432752'), + (20, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dzbNypVd', '7432753'), + (20, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dzbNypVd', '7432754'), + (20, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dzbNypVd', '7432755'), + (20, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dzbNypVd', '7432756'), + (20, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dzbNypVd', '7432758'), + (20, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dzbNypVd', '7432759'), + (20, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dzbNypVd', '7433834'), + (20, 2834, 'not_attending', '2024-09-10 23:32:24', '2025-12-17 19:46:25', 'dzbNypVd', '7433852'), + (20, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dzbNypVd', '7470197'), + (20, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dzbNypVd', '7685613'), + (20, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dzbNypVd', '7688194'), + (20, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dzbNypVd', '7688196'), + (20, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dzbNypVd', '7688289'), + (20, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dzbNypVd', '7692763'), + (20, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dzbNypVd', '7697552'), + (20, 2916, 'not_attending', '2024-11-20 00:26:01', '2025-12-17 19:46:27', 'dzbNypVd', '7699006'), + (20, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dzbNypVd', '7699878'), + (20, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dzbNypVd', '7704043'), + (20, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dzbNypVd', '7712467'), + (20, 2925, 'attending', '2024-12-14 21:03:47', '2025-12-17 19:46:21', 'dzbNypVd', '7713584'), + (20, 2926, 'attending', '2024-12-03 16:40:18', '2025-12-17 19:46:21', 'dzbNypVd', '7713585'), + (20, 2927, 'not_attending', '2024-12-01 16:33:58', '2025-12-17 19:46:22', 'dzbNypVd', '7713586'), + (20, 2933, 'not_attending', '2024-12-15 03:03:30', '2025-12-17 19:46:22', 'dzbNypVd', '7725950'), + (20, 2937, 'not_attending', '2024-12-15 03:03:05', '2025-12-17 19:46:21', 'dzbNypVd', '7725955'), + (20, 2952, 'not_attending', '2024-12-15 03:03:14', '2025-12-17 19:46:21', 'dzbNypVd', '7730167'), + (20, 2953, 'not_attending', '2024-12-14 06:13:34', '2025-12-17 19:46:21', 'dzbNypVd', '7733836'), + (20, 2957, 'not_attending', '2024-12-16 00:08:27', '2025-12-17 19:46:21', 'dzbNypVd', '7735370'), + (20, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dzbNypVd', '7738518'), + (20, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dzbNypVd', '7750636'), + (20, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dzbNypVd', '7796540'), + (20, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dzbNypVd', '7796541'), + (20, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dzbNypVd', '7796542'), + (20, 2972, 'maybe', '2025-01-19 18:50:01', '2025-12-17 19:46:22', 'dzbNypVd', '7812563'), + (20, 2974, 'attending', '2025-01-18 23:24:13', '2025-12-17 19:46:22', 'dzbNypVd', '7814958'), + (20, 2975, 'maybe', '2025-01-25 21:10:58', '2025-12-17 19:46:22', 'dzbNypVd', '7823615'), + (20, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dzbNypVd', '7825913'), + (20, 2980, 'maybe', '2025-01-28 23:25:25', '2025-12-17 19:46:23', 'dzbNypVd', '7825920'), + (20, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dzbNypVd', '7826209'), + (20, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dzbNypVd', '7834742'), + (20, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dzbNypVd', '7842108'), + (20, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dzbNypVd', '7842902'), + (20, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dzbNypVd', '7842903'), + (20, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dzbNypVd', '7842904'), + (20, 2994, 'maybe', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dzbNypVd', '7842905'), + (20, 3000, 'maybe', '2025-02-21 01:23:39', '2025-12-17 19:46:24', 'dzbNypVd', '7852541'), + (20, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dzbNypVd', '7855719'), + (20, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dzbNypVd', '7860683'), + (20, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dzbNypVd', '7860684'), + (20, 3009, 'not_attending', '2025-02-28 22:31:43', '2025-12-17 19:46:18', 'dzbNypVd', '7864019'), + (20, 3010, 'maybe', '2025-02-28 23:41:00', '2025-12-17 19:46:18', 'dzbNypVd', '7864879'), + (20, 3011, 'attending', '2025-03-01 23:02:52', '2025-12-17 19:46:24', 'dzbNypVd', '7865624'), + (20, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dzbNypVd', '7866095'), + (20, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dzbNypVd', '7869170'), + (20, 3014, 'attending', '2025-03-31 21:05:59', '2025-12-17 19:46:19', 'dzbNypVd', '7869185'), + (20, 3015, 'attending', '2025-04-21 23:10:11', '2025-12-17 19:46:20', 'dzbNypVd', '7869186'), + (20, 3016, 'attending', '2025-04-06 20:33:08', '2025-12-17 19:46:20', 'dzbNypVd', '7869187'), + (20, 3017, 'attending', '2025-03-25 13:28:40', '2025-12-17 19:46:19', 'dzbNypVd', '7869188'), + (20, 3018, 'attending', '2025-04-06 20:33:37', '2025-12-17 19:46:20', 'dzbNypVd', '7869189'), + (20, 3028, 'attending', '2025-04-07 20:50:54', '2025-12-17 19:46:20', 'dzbNypVd', '7869199'), + (20, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dzbNypVd', '7869201'), + (20, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dzbNypVd', '7877465'), + (20, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dzbNypVd', '7878570'), + (20, 3046, 'attending', '2025-04-06 20:33:39', '2025-12-17 19:46:20', 'dzbNypVd', '7882692'), + (20, 3047, 'attending', '2025-04-26 19:51:05', '2025-12-17 19:46:20', 'dzbNypVd', '7882693'), + (20, 3048, 'attending', '2025-04-19 21:08:50', '2025-12-17 19:46:20', 'dzbNypVd', '7882694'), + (20, 3049, 'not_attending', '2025-03-17 21:51:04', '2025-12-17 19:46:19', 'dzbNypVd', '7883215'), + (20, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dzbNypVd', '7888250'), + (20, 3060, 'attending', '2025-03-27 14:16:18', '2025-12-17 19:46:19', 'dzbNypVd', '7892589'), + (20, 3061, 'attending', '2025-04-02 21:41:38', '2025-12-17 19:46:19', 'dzbNypVd', '7892590'), + (20, 3062, 'attending', '2025-03-27 22:11:32', '2025-12-17 19:46:19', 'dzbNypVd', '7892738'), + (20, 3063, 'attending', '2025-03-28 08:51:54', '2025-12-17 19:46:19', 'dzbNypVd', '7892801'), + (20, 3065, 'not_attending', '2025-04-03 20:14:35', '2025-12-17 19:46:19', 'dzbNypVd', '7893676'), + (20, 3075, 'attending', '2025-04-04 18:59:39', '2025-12-17 19:46:20', 'dzbNypVd', '7898896'), + (20, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dzbNypVd', '7904777'), + (20, 3091, 'not_attending', '2025-04-18 20:39:54', '2025-12-17 19:46:20', 'dzbNypVd', '8340289'), + (20, 3094, 'attending', '2025-04-21 23:10:15', '2025-12-17 19:46:21', 'dzbNypVd', '8342292'), + (20, 3095, 'attending', '2025-04-21 23:10:13', '2025-12-17 19:46:20', 'dzbNypVd', '8342293'), + (20, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dzbNypVd', '8349164'), + (20, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dzbNypVd', '8349545'), + (20, 3108, 'attending', '2025-04-29 22:36:19', '2025-12-17 19:46:20', 'dzbNypVd', '8351411'), + (20, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dzbNypVd', '8353584'), + (20, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dzbNypVd', '8368028'), + (20, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dzbNypVd', '8368029'), + (20, 3133, 'attending', '2025-05-27 23:25:00', '2025-12-17 19:46:14', 'dzbNypVd', '8368030'), + (20, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dzbNypVd', '8388462'), + (20, 3151, 'attending', '2025-05-31 22:00:33', '2025-12-17 19:46:14', 'dzbNypVd', '8393497'), + (20, 3153, 'attending', '2025-06-03 19:55:28', '2025-12-17 19:46:15', 'dzbNypVd', '8400273'), + (20, 3154, 'attending', '2025-06-26 10:43:57', '2025-12-17 19:46:15', 'dzbNypVd', '8400274'), + (20, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dzbNypVd', '8400275'), + (20, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dzbNypVd', '8400276'), + (20, 3167, 'attending', '2025-06-08 02:03:26', '2025-12-17 19:46:15', 'dzbNypVd', '8404521'), + (20, 3168, 'maybe', '2025-06-08 02:06:17', '2025-12-17 19:46:15', 'dzbNypVd', '8404522'), + (20, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dzbNypVd', '8404977'), + (20, 3175, 'attending', '2025-06-14 18:23:06', '2025-12-17 19:46:15', 'dzbNypVd', '8410815'), + (20, 3179, 'attending', '2025-06-27 20:19:24', '2025-12-17 19:46:15', 'dzbNypVd', '8421850'), + (20, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dzbNypVd', '8430783'), + (20, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dzbNypVd', '8430784'), + (20, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dzbNypVd', '8430799'), + (20, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dzbNypVd', '8430800'), + (20, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dzbNypVd', '8430801'), + (20, 3188, 'not_attending', '2025-07-07 22:13:40', '2025-12-17 19:46:17', 'dzbNypVd', '8438709'), + (20, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dzbNypVd', '8457738'), + (20, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dzbNypVd', '8459566'), + (20, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dzbNypVd', '8459567'), + (20, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dzbNypVd', '8459568'), + (20, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dzbNypVd', '8461032'), + (20, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dzbNypVd', '8477877'), + (20, 3224, 'attending', '2025-09-03 19:29:24', '2025-12-17 19:46:12', 'dzbNypVd', '8485679'), + (20, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dzbNypVd', '8485688'), + (20, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dzbNypVd', '8490587'), + (20, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dzbNypVd', '8493552'), + (20, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dzbNypVd', '8493553'), + (20, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dzbNypVd', '8493554'), + (20, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dzbNypVd', '8493555'), + (20, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dzbNypVd', '8493556'), + (20, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dzbNypVd', '8493557'), + (20, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dzbNypVd', '8493558'), + (20, 3243, 'maybe', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dzbNypVd', '8493559'), + (20, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dzbNypVd', '8493560'), + (20, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dzbNypVd', '8493561'), + (20, 3250, 'not_attending', '2025-10-25 20:30:10', '2025-12-17 19:46:14', 'dzbNypVd', '8493566'), + (20, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dzbNypVd', '8493572'), + (20, 3257, 'attending', '2025-08-28 20:56:31', '2025-12-17 19:46:11', 'dzbNypVd', '8502340'), + (20, 3259, 'not_attending', '2025-09-05 18:37:59', '2025-12-17 19:46:12', 'dzbNypVd', '8512638'), + (20, 3260, 'not_attending', '2025-09-05 18:37:55', '2025-12-17 19:46:12', 'dzbNypVd', '8512640'), + (20, 3261, 'not_attending', '2025-09-05 18:37:40', '2025-12-17 19:46:12', 'dzbNypVd', '8512641'), + (20, 3262, 'not_attending', '2025-09-05 18:37:44', '2025-12-17 19:46:12', 'dzbNypVd', '8512642'), + (20, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dzbNypVd', '8540725'), + (20, 3295, 'attending', '2025-10-28 20:59:29', '2025-12-17 19:46:14', 'dzbNypVd', '8547541'), + (20, 3300, 'attending', '2025-11-06 23:11:52', '2025-12-17 19:46:14', 'dzbNypVd', '8549145'), + (20, 3302, 'not_attending', '2025-11-04 17:23:53', '2025-12-17 19:46:14', 'dzbNypVd', '8550022'), + (20, 3304, 'attending', '2025-11-18 02:11:47', '2025-12-17 19:46:14', 'dzbNypVd', '8550024'), + (20, 3305, 'maybe', '2025-12-02 23:12:19', '2025-12-17 19:46:11', 'dzbNypVd', '8550025'), + (20, 3306, 'attending', '2025-12-09 02:30:53', '2025-12-17 19:46:11', 'dzbNypVd', '8550026'), + (20, 3307, 'attending', '2025-12-16 00:24:05', '2025-12-17 19:46:11', 'dzbNypVd', '8550027'), + (20, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dzbNypVd', '8555421'), + (20, 3338, 'not_attending', '2025-12-06 21:42:55', '2025-12-17 19:46:11', 'dzbNypVd', '8563316'), + (20, 3341, 'maybe', '2025-12-13 22:59:43', '2025-12-17 19:46:11', 'dzbNypVd', '8564397'), + (21, 1052, 'not_attending', '2022-01-15 19:48:57', '2025-12-17 19:47:31', 'AnbyDDkA', '4496617'), + (21, 1151, 'attending', '2022-01-05 00:13:08', '2025-12-17 19:47:31', 'AnbyDDkA', '4708704'), + (21, 1152, 'attending', '2022-01-12 11:28:54', '2025-12-17 19:47:31', 'AnbyDDkA', '4708705'), + (21, 1153, 'attending', '2022-01-20 00:54:49', '2025-12-17 19:47:32', 'AnbyDDkA', '4708707'), + (21, 1154, 'not_attending', '2022-01-25 18:26:57', '2025-12-17 19:47:32', 'AnbyDDkA', '4708708'), + (21, 1159, 'attending', '2022-01-05 00:25:10', '2025-12-17 19:47:31', 'AnbyDDkA', '4717532'), + (21, 1162, 'attending', '2022-01-07 18:48:46', '2025-12-17 19:47:31', 'AnbyDDkA', '4718771'), + (21, 1166, 'not_attending', '2022-01-11 00:08:12', '2025-12-17 19:47:31', 'AnbyDDkA', '4725109'), + (21, 1167, 'attending', '2022-01-06 22:18:56', '2025-12-17 19:47:31', 'AnbyDDkA', '4731015'), + (21, 1170, 'not_attending', '2022-01-10 01:07:41', '2025-12-17 19:47:31', 'AnbyDDkA', '4731045'), + (21, 1171, 'attending', '2022-01-04 04:42:46', '2025-12-17 19:47:31', 'AnbyDDkA', '4733292'), + (21, 1173, 'attending', '2022-01-05 18:05:08', '2025-12-17 19:47:31', 'AnbyDDkA', '4736495'), + (21, 1174, 'attending', '2022-01-09 02:20:33', '2025-12-17 19:47:31', 'AnbyDDkA', '4736496'), + (21, 1175, 'attending', '2022-01-22 23:56:02', '2025-12-17 19:47:32', 'AnbyDDkA', '4736497'), + (21, 1176, 'attending', '2022-02-05 18:18:25', '2025-12-17 19:47:32', 'AnbyDDkA', '4736498'), + (21, 1177, 'not_attending', '2022-02-13 00:28:30', '2025-12-17 19:47:32', 'AnbyDDkA', '4736499'), + (21, 1178, 'not_attending', '2022-01-30 03:08:05', '2025-12-17 19:47:32', 'AnbyDDkA', '4736500'), + (21, 1179, 'maybe', '2022-02-17 22:11:20', '2025-12-17 19:47:32', 'AnbyDDkA', '4736501'), + (21, 1180, 'not_attending', '2022-02-27 05:44:19', '2025-12-17 19:47:33', 'AnbyDDkA', '4736502'), + (21, 1181, 'attending', '2022-03-05 23:29:05', '2025-12-17 19:47:33', 'AnbyDDkA', '4736503'), + (21, 1182, 'attending', '2022-03-12 23:33:34', '2025-12-17 19:47:33', 'AnbyDDkA', '4736504'), + (21, 1184, 'attending', '2022-01-15 01:57:57', '2025-12-17 19:47:31', 'AnbyDDkA', '4742350'), + (21, 1185, 'not_attending', '2022-01-14 04:59:21', '2025-12-17 19:47:31', 'AnbyDDkA', '4746789'), + (21, 1186, 'not_attending', '2022-01-15 19:48:54', '2025-12-17 19:47:31', 'AnbyDDkA', '4747800'), + (21, 1187, 'attending', '2022-01-11 01:06:39', '2025-12-17 19:47:31', 'AnbyDDkA', '4753907'), + (21, 1188, 'not_attending', '2022-01-11 04:07:48', '2025-12-17 19:47:32', 'AnbyDDkA', '4753929'), + (21, 1189, 'maybe', '2022-01-17 18:55:53', '2025-12-17 19:47:31', 'AnbyDDkA', '4753938'), + (21, 1190, 'not_attending', '2022-01-14 00:35:31', '2025-12-17 19:47:31', 'AnbyDDkA', '4757377'), + (21, 1191, 'not_attending', '2022-01-11 23:32:30', '2025-12-17 19:47:31', 'AnbyDDkA', '4757390'), + (21, 1192, 'not_attending', '2022-01-20 19:30:06', '2025-12-17 19:47:32', 'AnbyDDkA', '4758745'), + (21, 1193, 'maybe', '2022-01-13 03:16:00', '2025-12-17 19:47:32', 'AnbyDDkA', '4759563'), + (21, 1196, 'not_attending', '2022-01-20 19:29:56', '2025-12-17 19:47:32', 'AnbyDDkA', '4765583'), + (21, 1199, 'not_attending', '2022-01-25 08:11:10', '2025-12-17 19:47:32', 'AnbyDDkA', '4766802'), + (21, 1201, 'not_attending', '2022-01-20 19:30:10', '2025-12-17 19:47:32', 'AnbyDDkA', '4766841'), + (21, 1202, 'not_attending', '2022-01-30 09:46:19', '2025-12-17 19:47:32', 'AnbyDDkA', '4769423'), + (21, 1206, 'attending', '2022-04-10 22:43:17', '2025-12-17 19:47:27', 'AnbyDDkA', '4773578'), + (21, 1208, 'attending', '2022-01-23 02:41:14', '2025-12-17 19:47:32', 'AnbyDDkA', '4774419'), + (21, 1213, 'not_attending', '2022-02-06 23:00:00', '2025-12-17 19:47:32', 'AnbyDDkA', '4780760'), + (21, 1217, 'attending', '2022-01-30 12:47:14', '2025-12-17 19:47:32', 'AnbyDDkA', '4781139'), + (21, 1219, 'attending', '2022-02-02 22:06:29', '2025-12-17 19:47:32', 'AnbyDDkA', '4788466'), + (21, 1224, 'maybe', '2022-01-30 20:35:34', '2025-12-17 19:47:32', 'AnbyDDkA', '5016682'), + (21, 1228, 'attending', '2022-02-11 18:18:20', '2025-12-17 19:47:32', 'AnbyDDkA', '5028238'), + (21, 1232, 'attending', '2022-02-09 00:53:20', '2025-12-17 19:47:32', 'AnbyDDkA', '5038850'), + (21, 1234, 'attending', '2022-02-16 00:06:18', '2025-12-17 19:47:32', 'AnbyDDkA', '5042197'), + (21, 1236, 'not_attending', '2022-02-17 22:10:11', '2025-12-17 19:47:32', 'AnbyDDkA', '5045826'), + (21, 1239, 'attending', '2022-03-03 00:26:11', '2025-12-17 19:47:33', 'AnbyDDkA', '5052238'), + (21, 1240, 'attending', '2022-03-16 21:48:57', '2025-12-17 19:47:33', 'AnbyDDkA', '5052239'), + (21, 1241, 'not_attending', '2022-03-23 20:35:41', '2025-12-17 19:47:25', 'AnbyDDkA', '5052240'), + (21, 1242, 'attending', '2022-03-30 22:13:43', '2025-12-17 19:47:25', 'AnbyDDkA', '5052241'), + (21, 1243, 'not_attending', '2022-03-06 19:51:02', '2025-12-17 19:47:33', 'AnbyDDkA', '5058336'), + (21, 1246, 'attending', '2022-03-03 23:51:02', '2025-12-17 19:47:33', 'AnbyDDkA', '5064727'), + (21, 1249, 'attending', '2022-03-09 23:50:15', '2025-12-17 19:47:33', 'AnbyDDkA', '5068530'), + (21, 1250, 'maybe', '2022-03-04 00:09:50', '2025-12-17 19:47:33', 'AnbyDDkA', '5069735'), + (21, 1252, 'attending', '2022-03-05 01:01:44', '2025-12-17 19:47:33', 'AnbyDDkA', '5129121'), + (21, 1255, 'attending', '2022-02-28 20:03:23', '2025-12-17 19:47:33', 'AnbyDDkA', '5129140'), + (21, 1257, 'attending', '2022-03-01 05:58:47', '2025-12-17 19:47:33', 'AnbyDDkA', '5129274'), + (21, 1259, 'attending', '2022-03-11 23:27:18', '2025-12-17 19:47:33', 'AnbyDDkA', '5132533'), + (21, 1262, 'attending', '2022-03-11 20:58:05', '2025-12-17 19:47:33', 'AnbyDDkA', '5157773'), + (21, 1266, 'not_attending', '2022-03-14 23:45:21', '2025-12-17 19:47:33', 'AnbyDDkA', '5166407'), + (21, 1267, 'attending', '2022-03-16 22:20:51', '2025-12-17 19:47:25', 'AnbyDDkA', '5169578'), + (21, 1268, 'attending', '2022-03-15 22:06:56', '2025-12-17 19:47:33', 'AnbyDDkA', '5176296'), + (21, 1269, 'not_attending', '2022-03-18 21:54:47', '2025-12-17 19:47:25', 'AnbyDDkA', '5179439'), + (21, 1271, 'not_attending', '2022-03-18 21:54:18', '2025-12-17 19:47:25', 'AnbyDDkA', '5181648'), + (21, 1272, 'attending', '2022-03-19 18:00:18', '2025-12-17 19:47:25', 'AnbyDDkA', '5186582'), + (21, 1273, 'attending', '2022-03-26 18:16:44', '2025-12-17 19:47:25', 'AnbyDDkA', '5186583'), + (21, 1274, 'attending', '2022-04-02 07:00:33', '2025-12-17 19:47:26', 'AnbyDDkA', '5186585'), + (21, 1278, 'not_attending', '2022-03-17 21:01:45', '2025-12-17 19:47:33', 'AnbyDDkA', '5186920'), + (21, 1279, 'attending', '2022-03-16 10:07:41', '2025-12-17 19:47:25', 'AnbyDDkA', '5187212'), + (21, 1281, 'not_attending', '2022-04-09 20:57:36', '2025-12-17 19:47:27', 'AnbyDDkA', '5190437'), + (21, 1282, 'maybe', '2022-03-21 16:21:39', '2025-12-17 19:47:25', 'AnbyDDkA', '5191241'), + (21, 1284, 'not_attending', '2022-04-13 18:43:14', '2025-12-17 19:47:27', 'AnbyDDkA', '5195095'), + (21, 1288, 'not_attending', '2022-03-29 21:21:58', '2025-12-17 19:47:25', 'AnbyDDkA', '5199460'), + (21, 1290, 'maybe', '2022-03-29 13:56:00', '2025-12-17 19:47:25', 'AnbyDDkA', '5200196'), + (21, 1293, 'maybe', '2022-04-10 17:26:17', '2025-12-17 19:47:27', 'AnbyDDkA', '5214641'), + (21, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'AnbyDDkA', '5215989'), + (21, 1299, 'maybe', '2022-03-31 19:53:03', '2025-12-17 19:47:25', 'AnbyDDkA', '5217660'), + (21, 1302, 'maybe', '2022-04-08 20:38:40', '2025-12-17 19:47:27', 'AnbyDDkA', '5220867'), + (21, 1304, 'attending', '2022-04-06 22:47:00', '2025-12-17 19:47:26', 'AnbyDDkA', '5223468'), + (21, 1305, 'attending', '2022-04-10 22:43:14', '2025-12-17 19:47:27', 'AnbyDDkA', '5223673'), + (21, 1306, 'attending', '2022-04-05 22:29:51', '2025-12-17 19:47:26', 'AnbyDDkA', '5223682'), + (21, 1307, 'not_attending', '2022-04-07 22:45:57', '2025-12-17 19:47:27', 'AnbyDDkA', '5223686'), + (21, 1308, 'not_attending', '2022-04-13 03:29:30', '2025-12-17 19:47:27', 'AnbyDDkA', '5226703'), + (21, 1309, 'not_attending', '2022-04-07 22:45:50', '2025-12-17 19:47:26', 'AnbyDDkA', '5227432'), + (21, 1310, 'attending', '2022-04-08 01:33:43', '2025-12-17 19:47:27', 'AnbyDDkA', '5231071'), + (21, 1312, 'maybe', '2022-04-13 18:38:18', '2025-12-17 19:47:27', 'AnbyDDkA', '5231459'), + (21, 1313, 'not_attending', '2022-04-13 03:29:21', '2025-12-17 19:47:27', 'AnbyDDkA', '5231461'), + (21, 1314, 'attending', '2022-04-08 20:20:33', '2025-12-17 19:47:27', 'AnbyDDkA', '5233137'), + (21, 1319, 'not_attending', '2022-04-25 21:26:03', '2025-12-17 19:47:27', 'AnbyDDkA', '5238353'), + (21, 1321, 'attending', '2022-04-22 21:01:56', '2025-12-17 19:47:27', 'AnbyDDkA', '5238355'), + (21, 1322, 'attending', '2022-04-26 14:15:15', '2025-12-17 19:47:27', 'AnbyDDkA', '5238356'), + (21, 1327, 'not_attending', '2022-04-25 21:13:53', '2025-12-17 19:47:27', 'AnbyDDkA', '5238445'), + (21, 1328, 'maybe', '2022-04-13 18:38:26', '2025-12-17 19:47:27', 'AnbyDDkA', '5238759'), + (21, 1330, 'not_attending', '2022-04-13 18:43:52', '2025-12-17 19:47:27', 'AnbyDDkA', '5242155'), + (21, 1332, 'maybe', '2022-04-13 18:38:10', '2025-12-17 19:47:27', 'AnbyDDkA', '5243274'), + (21, 1333, 'attending', '2022-04-13 18:34:11', '2025-12-17 19:47:27', 'AnbyDDkA', '5243711'), + (21, 1341, 'not_attending', '2022-05-01 03:04:32', '2025-12-17 19:47:28', 'AnbyDDkA', '5245755'), + (21, 1345, 'attending', '2022-04-23 21:42:41', '2025-12-17 19:47:27', 'AnbyDDkA', '5247466'), + (21, 1346, 'attending', '2022-04-23 20:29:48', '2025-12-17 19:47:27', 'AnbyDDkA', '5247467'), + (21, 1348, 'not_attending', '2022-05-01 23:36:57', '2025-12-17 19:47:28', 'AnbyDDkA', '5247605'), + (21, 1350, 'attending', '2022-04-21 17:20:11', '2025-12-17 19:47:27', 'AnbyDDkA', '5249763'), + (21, 1357, 'maybe', '2022-04-25 21:15:21', '2025-12-17 19:47:27', 'AnbyDDkA', '5256017'), + (21, 1360, 'attending', '2022-04-27 00:11:09', '2025-12-17 19:47:27', 'AnbyDDkA', '5260197'), + (21, 1362, 'attending', '2022-04-27 19:43:04', '2025-12-17 19:47:28', 'AnbyDDkA', '5260800'), + (21, 1374, 'attending', '2022-05-05 19:12:34', '2025-12-17 19:47:28', 'AnbyDDkA', '5269930'), + (21, 1375, 'attending', '2022-05-05 22:37:59', '2025-12-17 19:47:28', 'AnbyDDkA', '5269932'), + (21, 1376, 'maybe', '2022-05-12 20:30:22', '2025-12-17 19:47:28', 'AnbyDDkA', '5271446'), + (21, 1378, 'maybe', '2022-05-11 07:24:08', '2025-12-17 19:47:29', 'AnbyDDkA', '5271448'), + (21, 1379, 'attending', '2022-05-21 01:16:08', '2025-12-17 19:47:29', 'AnbyDDkA', '5271449'), + (21, 1380, 'not_attending', '2022-05-28 22:59:24', '2025-12-17 19:47:30', 'AnbyDDkA', '5271450'), + (21, 1382, 'attending', '2022-05-09 22:56:11', '2025-12-17 19:47:28', 'AnbyDDkA', '5276350'), + (21, 1383, 'attending', '2022-05-05 19:15:05', '2025-12-17 19:47:28', 'AnbyDDkA', '5276469'), + (21, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AnbyDDkA', '5278159'), + (21, 1394, 'maybe', '2022-05-21 12:38:41', '2025-12-17 19:47:30', 'AnbyDDkA', '5280667'), + (21, 1395, 'attending', '2022-05-07 21:36:39', '2025-12-17 19:47:28', 'AnbyDDkA', '5281102'), + (21, 1396, 'maybe', '2022-05-11 07:24:15', '2025-12-17 19:47:28', 'AnbyDDkA', '5281103'), + (21, 1397, 'not_attending', '2022-05-21 21:28:47', '2025-12-17 19:47:29', 'AnbyDDkA', '5281104'), + (21, 1400, 'attending', '2022-05-16 21:31:35', '2025-12-17 19:47:29', 'AnbyDDkA', '5284864'), + (21, 1403, 'attending', '2022-05-20 22:48:57', '2025-12-17 19:47:29', 'AnbyDDkA', '5288052'), + (21, 1406, 'attending', '2022-05-15 21:44:07', '2025-12-17 19:47:29', 'AnbyDDkA', '5288619'), + (21, 1407, 'not_attending', '2022-06-02 22:36:52', '2025-12-17 19:47:30', 'AnbyDDkA', '5363695'), + (21, 1408, 'not_attending', '2022-05-20 21:45:33', '2025-12-17 19:47:29', 'AnbyDDkA', '5365960'), + (21, 1410, 'attending', '2022-05-17 02:58:18', '2025-12-17 19:47:29', 'AnbyDDkA', '5367530'), + (21, 1411, 'attending', '2022-05-17 03:00:49', '2025-12-17 19:47:29', 'AnbyDDkA', '5367531'), + (21, 1412, 'attending', '2022-05-17 02:59:27', '2025-12-17 19:47:29', 'AnbyDDkA', '5367532'), + (21, 1413, 'attending', '2022-05-17 03:03:38', '2025-12-17 19:47:29', 'AnbyDDkA', '5367533'), + (21, 1414, 'attending', '2022-05-21 01:46:16', '2025-12-17 19:47:29', 'AnbyDDkA', '5368445'), + (21, 1415, 'attending', '2022-05-19 17:35:16', '2025-12-17 19:47:30', 'AnbyDDkA', '5368973'), + (21, 1417, 'not_attending', '2022-05-22 17:29:14', '2025-12-17 19:47:30', 'AnbyDDkA', '5370465'), + (21, 1419, 'attending', '2022-06-08 02:40:26', '2025-12-17 19:47:30', 'AnbyDDkA', '5373081'), + (21, 1420, 'maybe', '2022-05-23 06:59:25', '2025-12-17 19:47:30', 'AnbyDDkA', '5374882'), + (21, 1421, 'attending', '2022-05-30 17:08:04', '2025-12-17 19:47:30', 'AnbyDDkA', '5374885'), + (21, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AnbyDDkA', '5378247'), + (21, 1429, 'attending', '2022-05-30 23:28:53', '2025-12-17 19:47:30', 'AnbyDDkA', '5388761'), + (21, 1430, 'not_attending', '2022-06-09 23:00:33', '2025-12-17 19:47:30', 'AnbyDDkA', '5389402'), + (21, 1431, 'attending', '2022-06-08 02:40:31', '2025-12-17 19:47:30', 'AnbyDDkA', '5389605'), + (21, 1432, 'maybe', '2022-06-02 22:37:28', '2025-12-17 19:47:30', 'AnbyDDkA', '5391566'), + (21, 1439, 'attending', '2022-06-02 22:37:15', '2025-12-17 19:47:30', 'AnbyDDkA', '5396072'), + (21, 1442, 'not_attending', '2022-06-18 22:32:56', '2025-12-17 19:47:17', 'AnbyDDkA', '5397265'), + (21, 1444, 'attending', '2022-06-08 02:40:34', '2025-12-17 19:47:30', 'AnbyDDkA', '5397614'), + (21, 1445, 'maybe', '2022-06-18 16:41:23', '2025-12-17 19:47:17', 'AnbyDDkA', '5397615'), + (21, 1446, 'not_attending', '2022-06-09 20:39:34', '2025-12-17 19:47:30', 'AnbyDDkA', '5399721'), + (21, 1448, 'attending', '2022-06-07 02:18:15', '2025-12-17 19:47:30', 'AnbyDDkA', '5401479'), + (21, 1450, 'attending', '2022-06-08 18:15:27', '2025-12-17 19:47:30', 'AnbyDDkA', '5403421'), + (21, 1451, 'not_attending', '2022-06-18 02:12:59', '2025-12-17 19:47:17', 'AnbyDDkA', '5403967'), + (21, 1452, 'not_attending', '2022-06-09 18:36:06', '2025-12-17 19:47:30', 'AnbyDDkA', '5404197'), + (21, 1454, 'maybe', '2022-06-12 17:01:09', '2025-12-17 19:47:31', 'AnbyDDkA', '5404771'), + (21, 1457, 'not_attending', '2022-06-12 23:31:21', '2025-12-17 19:47:31', 'AnbyDDkA', '5404780'), + (21, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AnbyDDkA', '5404786'), + (21, 1460, 'attending', '2022-06-13 23:00:29', '2025-12-17 19:47:31', 'AnbyDDkA', '5404817'), + (21, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AnbyDDkA', '5405203'), + (21, 1463, 'not_attending', '2022-06-15 00:07:39', '2025-12-17 19:47:31', 'AnbyDDkA', '5405208'), + (21, 1464, 'maybe', '2022-06-10 22:18:35', '2025-12-17 19:47:30', 'AnbyDDkA', '5405212'), + (21, 1465, 'attending', '2022-06-12 21:23:38', '2025-12-17 19:47:31', 'AnbyDDkA', '5406355'), + (21, 1466, 'not_attending', '2022-06-15 17:38:06', '2025-12-17 19:47:17', 'AnbyDDkA', '5406427'), + (21, 1469, 'maybe', '2022-06-20 19:56:51', '2025-12-17 19:47:17', 'AnbyDDkA', '5406838'), + (21, 1470, 'maybe', '2022-06-13 21:28:16', '2025-12-17 19:47:17', 'AnbyDDkA', '5407053'), + (21, 1473, 'maybe', '2022-06-14 21:20:26', '2025-12-17 19:47:31', 'AnbyDDkA', '5407267'), + (21, 1480, 'maybe', '2022-06-26 22:54:39', '2025-12-17 19:47:19', 'AnbyDDkA', '5411699'), + (21, 1482, 'maybe', '2022-06-23 18:54:03', '2025-12-17 19:47:19', 'AnbyDDkA', '5412550'), + (21, 1484, 'attending', '2022-06-22 19:43:01', '2025-12-17 19:47:17', 'AnbyDDkA', '5415046'), + (21, 1485, 'attending', '2022-06-21 18:05:18', '2025-12-17 19:47:17', 'AnbyDDkA', '5416276'), + (21, 1486, 'attending', '2022-07-01 01:46:50', '2025-12-17 19:47:19', 'AnbyDDkA', '5416339'), + (21, 1488, 'not_attending', '2022-07-01 22:36:16', '2025-12-17 19:47:19', 'AnbyDDkA', '5420154'), + (21, 1489, 'not_attending', '2022-07-01 22:36:19', '2025-12-17 19:47:19', 'AnbyDDkA', '5420155'), + (21, 1490, 'not_attending', '2022-07-01 22:36:27', '2025-12-17 19:47:19', 'AnbyDDkA', '5420156'), + (21, 1491, 'maybe', '2022-07-01 22:36:48', '2025-12-17 19:47:19', 'AnbyDDkA', '5420158'), + (21, 1492, 'not_attending', '2022-07-01 22:36:36', '2025-12-17 19:47:19', 'AnbyDDkA', '5420175'), + (21, 1495, 'not_attending', '2022-07-01 22:36:31', '2025-12-17 19:47:19', 'AnbyDDkA', '5422086'), + (21, 1496, 'not_attending', '2022-06-30 21:04:06', '2025-12-17 19:47:19', 'AnbyDDkA', '5422404'), + (21, 1498, 'not_attending', '2022-07-01 22:35:59', '2025-12-17 19:47:19', 'AnbyDDkA', '5422406'), + (21, 1499, 'not_attending', '2022-07-01 22:36:03', '2025-12-17 19:47:19', 'AnbyDDkA', '5422407'), + (21, 1500, 'not_attending', '2022-07-01 22:36:24', '2025-12-17 19:47:19', 'AnbyDDkA', '5423915'), + (21, 1501, 'not_attending', '2022-06-29 22:32:50', '2025-12-17 19:47:19', 'AnbyDDkA', '5424546'), + (21, 1502, 'maybe', '2022-07-01 22:36:43', '2025-12-17 19:47:19', 'AnbyDDkA', '5424565'), + (21, 1503, 'not_attending', '2022-07-01 22:36:12', '2025-12-17 19:47:19', 'AnbyDDkA', '5426820'), + (21, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AnbyDDkA', '5426882'), + (21, 1505, 'maybe', '2022-07-01 22:36:52', '2025-12-17 19:47:19', 'AnbyDDkA', '5427083'), + (21, 1508, 'maybe', '2022-07-13 23:08:38', '2025-12-17 19:47:19', 'AnbyDDkA', '5433453'), + (21, 1512, 'attending', '2022-07-12 17:01:31', '2025-12-17 19:47:19', 'AnbyDDkA', '5441112'), + (21, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AnbyDDkA', '5441125'), + (21, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AnbyDDkA', '5441126'), + (21, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AnbyDDkA', '5441128'), + (21, 1516, 'attending', '2022-08-21 04:20:17', '2025-12-17 19:47:23', 'AnbyDDkA', '5441129'), + (21, 1517, 'attending', '2022-08-26 09:45:17', '2025-12-17 19:47:23', 'AnbyDDkA', '5441130'), + (21, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AnbyDDkA', '5441131'), + (21, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AnbyDDkA', '5441132'), + (21, 1520, 'not_attending', '2022-07-12 17:01:48', '2025-12-17 19:47:19', 'AnbyDDkA', '5441645'), + (21, 1521, 'not_attending', '2022-07-12 22:49:41', '2025-12-17 19:47:19', 'AnbyDDkA', '5442180'), + (21, 1522, 'maybe', '2022-07-19 16:24:48', '2025-12-17 19:47:20', 'AnbyDDkA', '5442832'), + (21, 1524, 'not_attending', '2022-07-12 17:01:37', '2025-12-17 19:47:19', 'AnbyDDkA', '5443300'), + (21, 1526, 'not_attending', '2022-07-22 22:20:56', '2025-12-17 19:47:20', 'AnbyDDkA', '5445059'), + (21, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AnbyDDkA', '5446643'), + (21, 1532, 'attending', '2022-07-23 17:29:36', '2025-12-17 19:47:20', 'AnbyDDkA', '5448757'), + (21, 1535, 'attending', '2022-07-19 16:24:42', '2025-12-17 19:47:20', 'AnbyDDkA', '5448830'), + (21, 1537, 'attending', '2022-07-18 22:26:02', '2025-12-17 19:47:20', 'AnbyDDkA', '5449117'), + (21, 1538, 'maybe', '2022-07-31 20:57:06', '2025-12-17 19:47:21', 'AnbyDDkA', '5449565'), + (21, 1539, 'maybe', '2022-07-17 18:38:00', '2025-12-17 19:47:21', 'AnbyDDkA', '5449671'), + (21, 1540, 'not_attending', '2022-07-21 20:56:21', '2025-12-17 19:47:20', 'AnbyDDkA', '5453325'), + (21, 1542, 'attending', '2022-07-18 19:05:22', '2025-12-17 19:47:20', 'AnbyDDkA', '5454064'), + (21, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AnbyDDkA', '5454516'), + (21, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AnbyDDkA', '5454605'), + (21, 1546, 'attending', '2022-07-27 20:59:13', '2025-12-17 19:47:20', 'AnbyDDkA', '5454607'), + (21, 1549, 'maybe', '2022-07-19 18:51:10', '2025-12-17 19:47:20', 'AnbyDDkA', '5454789'), + (21, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AnbyDDkA', '5455037'), + (21, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AnbyDDkA', '5461278'), + (21, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AnbyDDkA', '5469480'), + (21, 1565, 'attending', '2022-07-25 23:34:24', '2025-12-17 19:47:21', 'AnbyDDkA', '5471073'), + (21, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AnbyDDkA', '5474663'), + (21, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AnbyDDkA', '5482022'), + (21, 1575, 'attending', '2022-08-26 17:34:52', '2025-12-17 19:47:23', 'AnbyDDkA', '5482250'), + (21, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AnbyDDkA', '5482793'), + (21, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AnbyDDkA', '5488912'), + (21, 1582, 'maybe', '2022-08-13 21:39:30', '2025-12-17 19:47:23', 'AnbyDDkA', '5492001'), + (21, 1586, 'not_attending', '2022-08-19 05:25:59', '2025-12-17 19:47:23', 'AnbyDDkA', '5492019'), + (21, 1587, 'maybe', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AnbyDDkA', '5492192'), + (21, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AnbyDDkA', '5493139'), + (21, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AnbyDDkA', '5493200'), + (21, 1593, 'attending', '2022-08-09 04:25:57', '2025-12-17 19:47:22', 'AnbyDDkA', '5494043'), + (21, 1602, 'attending', '2022-08-11 16:27:08', '2025-12-17 19:47:22', 'AnbyDDkA', '5497383'), + (21, 1603, 'not_attending', '2022-08-13 21:39:50', '2025-12-17 19:47:23', 'AnbyDDkA', '5497895'), + (21, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AnbyDDkA', '5502188'), + (21, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AnbyDDkA', '5505059'), + (21, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AnbyDDkA', '5509055'), + (21, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AnbyDDkA', '5512862'), + (21, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AnbyDDkA', '5513985'), + (21, 1625, 'attending', '2022-08-25 18:35:58', '2025-12-17 19:47:23', 'AnbyDDkA', '5519736'), + (21, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'AnbyDDkA', '5519981'), + (21, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AnbyDDkA', '5522550'), + (21, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AnbyDDkA', '5534683'), + (21, 1631, 'attending', '2022-08-27 14:12:56', '2025-12-17 19:47:23', 'AnbyDDkA', '5534684'), + (21, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AnbyDDkA', '5537735'), + (21, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AnbyDDkA', '5540859'), + (21, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AnbyDDkA', '5546619'), + (21, 1652, 'attending', '2022-09-10 22:07:47', '2025-12-17 19:47:24', 'AnbyDDkA', '5552671'), + (21, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AnbyDDkA', '5555245'), + (21, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AnbyDDkA', '5557747'), + (21, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AnbyDDkA', '5560255'), + (21, 1663, 'attending', '2022-09-10 13:23:01', '2025-12-17 19:47:24', 'AnbyDDkA', '5562345'), + (21, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AnbyDDkA', '5562906'), + (21, 1667, 'attending', '2022-09-24 15:49:57', '2025-12-17 19:47:11', 'AnbyDDkA', '5563221'), + (21, 1668, 'not_attending', '2022-10-01 11:33:07', '2025-12-17 19:47:12', 'AnbyDDkA', '5563222'), + (21, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AnbyDDkA', '5600604'), + (21, 1682, 'attending', '2022-09-24 21:35:35', '2025-12-17 19:47:11', 'AnbyDDkA', '5605317'), + (21, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AnbyDDkA', '5605544'), + (21, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'AnbyDDkA', '5606737'), + (21, 1700, 'maybe', '2022-10-01 11:33:03', '2025-12-17 19:47:12', 'AnbyDDkA', '5606814'), + (21, 1702, 'attending', '2022-09-30 05:50:56', '2025-12-17 19:47:12', 'AnbyDDkA', '5609173'), + (21, 1717, 'maybe', '2022-10-21 20:16:40', '2025-12-17 19:47:13', 'AnbyDDkA', '5622842'), + (21, 1718, 'maybe', '2022-10-18 20:30:15', '2025-12-17 19:47:12', 'AnbyDDkA', '5630907'), + (21, 1719, 'attending', '2022-10-05 17:41:59', '2025-12-17 19:47:12', 'AnbyDDkA', '5630958'), + (21, 1721, 'attending', '2022-10-18 20:31:22', '2025-12-17 19:47:13', 'AnbyDDkA', '5630960'), + (21, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AnbyDDkA', '5630961'), + (21, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AnbyDDkA', '5630962'), + (21, 1724, 'maybe', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AnbyDDkA', '5630966'), + (21, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AnbyDDkA', '5630967'), + (21, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AnbyDDkA', '5630968'), + (21, 1727, 'not_attending', '2022-12-02 16:07:50', '2025-12-17 19:47:16', 'AnbyDDkA', '5630969'), + (21, 1731, 'attending', '2022-10-07 14:58:01', '2025-12-17 19:47:12', 'AnbyDDkA', '5635226'), + (21, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AnbyDDkA', '5635406'), + (21, 1735, 'attending', '2022-10-08 17:06:25', '2025-12-17 19:47:12', 'AnbyDDkA', '5637484'), + (21, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AnbyDDkA', '5638765'), + (21, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AnbyDDkA', '5640097'), + (21, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AnbyDDkA', '5640843'), + (21, 1742, 'not_attending', '2022-10-18 20:30:36', '2025-12-17 19:47:13', 'AnbyDDkA', '5641245'), + (21, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AnbyDDkA', '5641521'), + (21, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AnbyDDkA', '5642818'), + (21, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AnbyDDkA', '5652395'), + (21, 1758, 'attending', '2022-10-21 12:56:27', '2025-12-17 19:47:13', 'AnbyDDkA', '5668976'), + (21, 1759, 'attending', '2022-10-21 15:07:34', '2025-12-17 19:47:13', 'AnbyDDkA', '5669097'), + (21, 1761, 'maybe', '2022-11-18 16:15:52', '2025-12-17 19:47:16', 'AnbyDDkA', '5670434'), + (21, 1762, 'attending', '2022-11-18 16:17:22', '2025-12-17 19:47:16', 'AnbyDDkA', '5670445'), + (21, 1764, 'not_attending', '2022-10-24 13:22:45', '2025-12-17 19:47:14', 'AnbyDDkA', '5671637'), + (21, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AnbyDDkA', '5672329'), + (21, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AnbyDDkA', '5674057'), + (21, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AnbyDDkA', '5674060'), + (21, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AnbyDDkA', '5677461'), + (21, 1775, 'attending', '2022-10-27 16:25:50', '2025-12-17 19:47:14', 'AnbyDDkA', '5679063'), + (21, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AnbyDDkA', '5698046'), + (21, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AnbyDDkA', '5699760'), + (21, 1790, 'attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'AnbyDDkA', '5727424'), + (21, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AnbyDDkA', '5741601'), + (21, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AnbyDDkA', '5763458'), + (21, 1805, 'maybe', '2023-01-31 10:33:00', '2025-12-17 19:47:06', 'AnbyDDkA', '5764675'), + (21, 1806, 'maybe', '2023-01-21 03:31:05', '2025-12-17 19:47:05', 'AnbyDDkA', '5764676'), + (21, 1807, 'maybe', '2023-01-10 02:34:21', '2025-12-17 19:47:05', 'AnbyDDkA', '5764677'), + (21, 1808, 'attending', '2023-03-04 08:54:30', '2025-12-17 19:47:08', 'AnbyDDkA', '5764678'), + (21, 1809, 'attending', '2023-04-15 16:10:24', '2025-12-17 19:46:59', 'AnbyDDkA', '5764679'), + (21, 1810, 'maybe', '2023-04-22 22:15:39', '2025-12-17 19:47:00', 'AnbyDDkA', '5764680'), + (21, 1811, 'attending', '2023-05-01 10:08:58', '2025-12-17 19:47:02', 'AnbyDDkA', '5764681'), + (21, 1812, 'attending', '2023-03-06 13:55:22', '2025-12-17 19:47:09', 'AnbyDDkA', '5764682'), + (21, 1813, 'attending', '2023-04-23 02:17:40', '2025-12-17 19:47:01', 'AnbyDDkA', '5764683'), + (21, 1816, 'attending', '2023-05-15 11:33:21', '2025-12-17 19:47:03', 'AnbyDDkA', '5764686'), + (21, 1818, 'not_attending', '2023-02-10 19:42:30', '2025-12-17 19:47:07', 'AnbyDDkA', '5764688'), + (21, 1819, 'attending', '2023-04-01 21:56:12', '2025-12-17 19:46:58', 'AnbyDDkA', '5764689'), + (21, 1820, 'attending', '2023-04-08 18:05:18', '2025-12-17 19:46:58', 'AnbyDDkA', '5764690'), + (21, 1821, 'maybe', '2023-03-16 22:32:32', '2025-12-17 19:46:56', 'AnbyDDkA', '5764691'), + (21, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AnbyDDkA', '5774172'), + (21, 1828, 'not_attending', '2022-11-28 21:34:53', '2025-12-17 19:47:16', 'AnbyDDkA', '5778865'), + (21, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'AnbyDDkA', '5818247'), + (21, 1834, 'not_attending', '2022-12-10 13:22:21', '2025-12-17 19:47:17', 'AnbyDDkA', '5819470'), + (21, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AnbyDDkA', '5819471'), + (21, 1841, 'attending', '2023-01-08 12:00:37', '2025-12-17 19:47:05', 'AnbyDDkA', '5827665'), + (21, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AnbyDDkA', '5827739'), + (21, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AnbyDDkA', '5844306'), + (21, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AnbyDDkA', '5850159'), + (21, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AnbyDDkA', '5858999'), + (21, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AnbyDDkA', '5871984'), + (21, 1855, 'maybe', '2023-01-13 17:23:48', '2025-12-17 19:47:05', 'AnbyDDkA', '5873968'), + (21, 1859, 'attending', '2023-01-21 00:52:55', '2025-12-17 19:47:05', 'AnbyDDkA', '5876234'), + (21, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AnbyDDkA', '5876354'), + (21, 1864, 'attending', '2023-01-16 17:23:43', '2025-12-17 19:47:05', 'AnbyDDkA', '5879675'), + (21, 1865, 'attending', '2023-01-28 17:28:42', '2025-12-17 19:47:06', 'AnbyDDkA', '5879676'), + (21, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AnbyDDkA', '5880939'), + (21, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AnbyDDkA', '5880940'), + (21, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AnbyDDkA', '5880942'), + (21, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AnbyDDkA', '5880943'), + (21, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AnbyDDkA', '5887890'), + (21, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AnbyDDkA', '5888598'), + (21, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AnbyDDkA', '5893260'), + (21, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AnbyDDkA', '5899826'), + (21, 1886, 'maybe', '2023-03-07 11:20:10', '2025-12-17 19:47:09', 'AnbyDDkA', '5899930'), + (21, 1888, 'maybe', '2023-02-17 18:48:01', '2025-12-17 19:47:07', 'AnbyDDkA', '5900197'), + (21, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AnbyDDkA', '5900199'), + (21, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AnbyDDkA', '5900200'), + (21, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AnbyDDkA', '5900202'), + (21, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AnbyDDkA', '5900203'), + (21, 1893, 'not_attending', '2023-02-01 00:51:30', '2025-12-17 19:47:06', 'AnbyDDkA', '5901055'), + (21, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AnbyDDkA', '5901108'), + (21, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AnbyDDkA', '5901126'), + (21, 1897, 'not_attending', '2023-02-05 17:01:02', '2025-12-17 19:47:07', 'AnbyDDkA', '5901128'), + (21, 1899, 'maybe', '2023-02-10 19:42:20', '2025-12-17 19:47:07', 'AnbyDDkA', '5901323'), + (21, 1900, 'attending', '2023-02-01 00:45:28', '2025-12-17 19:47:06', 'AnbyDDkA', '5901331'), + (21, 1906, 'not_attending', '2023-03-09 13:27:58', '2025-12-17 19:47:09', 'AnbyDDkA', '5904523'), + (21, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AnbyDDkA', '5909655'), + (21, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AnbyDDkA', '5910522'), + (21, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AnbyDDkA', '5910526'), + (21, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AnbyDDkA', '5910528'), + (21, 1922, 'maybe', '2023-02-13 00:49:06', '2025-12-17 19:47:07', 'AnbyDDkA', '5916219'), + (21, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AnbyDDkA', '5936234'), + (21, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AnbyDDkA', '5958351'), + (21, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AnbyDDkA', '5959751'), + (21, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AnbyDDkA', '5959755'), + (21, 1940, 'attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AnbyDDkA', '5960055'), + (21, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AnbyDDkA', '5961684'), + (21, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'AnbyDDkA', '5962132'), + (21, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'AnbyDDkA', '5962133'), + (21, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AnbyDDkA', '5962134'), + (21, 1947, 'not_attending', '2023-03-05 00:18:30', '2025-12-17 19:47:09', 'AnbyDDkA', '5962233'), + (21, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AnbyDDkA', '5962317'), + (21, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AnbyDDkA', '5962318'), + (21, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AnbyDDkA', '5965933'), + (21, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AnbyDDkA', '5967014'), + (21, 1956, 'maybe', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'AnbyDDkA', '5972763'), + (21, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AnbyDDkA', '5972815'), + (21, 1958, 'maybe', '2023-03-06 13:58:58', '2025-12-17 19:47:09', 'AnbyDDkA', '5972821'), + (21, 1960, 'attending', '2023-03-06 14:32:12', '2025-12-17 19:47:09', 'AnbyDDkA', '5973267'), + (21, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AnbyDDkA', '5974016'), + (21, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AnbyDDkA', '5981515'), + (21, 1967, 'attending', '2023-03-12 04:20:09', '2025-12-17 19:47:10', 'AnbyDDkA', '5985650'), + (21, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AnbyDDkA', '5993516'), + (21, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AnbyDDkA', '5998939'), + (21, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AnbyDDkA', '6028191'), + (21, 1979, 'maybe', '2023-03-18 22:21:42', '2025-12-17 19:46:56', 'AnbyDDkA', '6030009'), + (21, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AnbyDDkA', '6040066'), + (21, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AnbyDDkA', '6042717'), + (21, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AnbyDDkA', '6044838'), + (21, 1987, 'maybe', '2023-04-15 23:00:58', '2025-12-17 19:47:00', 'AnbyDDkA', '6044839'), + (21, 1988, 'maybe', '2023-04-26 14:25:01', '2025-12-17 19:47:01', 'AnbyDDkA', '6044840'), + (21, 1989, 'maybe', '2023-05-14 21:43:40', '2025-12-17 19:47:03', 'AnbyDDkA', '6044842'), + (21, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AnbyDDkA', '6045684'), + (21, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'AnbyDDkA', '6050104'), + (21, 2002, 'maybe', '2023-04-28 15:59:34', '2025-12-17 19:47:01', 'AnbyDDkA', '6052605'), + (21, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AnbyDDkA', '6053195'), + (21, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AnbyDDkA', '6053198'), + (21, 2010, 'maybe', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AnbyDDkA', '6056085'), + (21, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AnbyDDkA', '6056916'), + (21, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AnbyDDkA', '6059290'), + (21, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AnbyDDkA', '6060328'), + (21, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AnbyDDkA', '6061037'), + (21, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AnbyDDkA', '6061039'), + (21, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AnbyDDkA', '6067245'), + (21, 2025, 'attending', '2023-04-23 02:17:34', '2025-12-17 19:47:00', 'AnbyDDkA', '6067457'), + (21, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AnbyDDkA', '6068094'), + (21, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AnbyDDkA', '6068252'), + (21, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AnbyDDkA', '6068253'), + (21, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AnbyDDkA', '6068254'), + (21, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AnbyDDkA', '6068280'), + (21, 2032, 'not_attending', '2023-05-28 01:49:32', '2025-12-17 19:47:04', 'AnbyDDkA', '6068281'), + (21, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AnbyDDkA', '6069093'), + (21, 2035, 'not_attending', '2023-05-04 18:48:28', '2025-12-17 19:47:02', 'AnbyDDkA', '6070142'), + (21, 2038, 'maybe', '2023-04-28 15:59:28', '2025-12-17 19:47:01', 'AnbyDDkA', '6071944'), + (21, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'AnbyDDkA', '6072528'), + (21, 2042, 'attending', '2023-04-24 20:43:19', '2025-12-17 19:47:01', 'AnbyDDkA', '6072941'), + (21, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AnbyDDkA', '6079840'), + (21, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AnbyDDkA', '6083398'), + (21, 2054, 'maybe', '2023-05-14 21:43:45', '2025-12-17 19:47:03', 'AnbyDDkA', '6093445'), + (21, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AnbyDDkA', '6093504'), + (21, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AnbyDDkA', '6097414'), + (21, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AnbyDDkA', '6097442'), + (21, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AnbyDDkA', '6097684'), + (21, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AnbyDDkA', '6098762'), + (21, 2064, 'maybe', '2023-06-09 13:39:25', '2025-12-17 19:46:50', 'AnbyDDkA', '6099988'), + (21, 2065, 'maybe', '2023-06-16 04:47:42', '2025-12-17 19:46:49', 'AnbyDDkA', '6101169'), + (21, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AnbyDDkA', '6101361'), + (21, 2067, 'maybe', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AnbyDDkA', '6101362'), + (21, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AnbyDDkA', '6103752'), + (21, 2071, 'maybe', '2023-05-15 17:13:53', '2025-12-17 19:47:03', 'AnbyDDkA', '6104949'), + (21, 2073, 'attending', '2023-05-15 19:05:46', '2025-12-17 19:47:03', 'AnbyDDkA', '6106002'), + (21, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AnbyDDkA', '6107314'), + (21, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'AnbyDDkA', '6120034'), + (21, 2094, 'not_attending', '2023-06-09 13:39:11', '2025-12-17 19:47:04', 'AnbyDDkA', '6135924'), + (21, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AnbyDDkA', '6136733'), + (21, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AnbyDDkA', '6137989'), + (21, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AnbyDDkA', '6150864'), + (21, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'AnbyDDkA', '6155491'), + (21, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AnbyDDkA', '6164417'), + (21, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AnbyDDkA', '6166388'), + (21, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'AnbyDDkA', '6176439'), + (21, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AnbyDDkA', '6182410'), + (21, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AnbyDDkA', '6185812'), + (21, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AnbyDDkA', '6187651'), + (21, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AnbyDDkA', '6187963'), + (21, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AnbyDDkA', '6187964'), + (21, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AnbyDDkA', '6187966'), + (21, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AnbyDDkA', '6187967'), + (21, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AnbyDDkA', '6187969'), + (21, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AnbyDDkA', '6334878'), + (21, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AnbyDDkA', '6337236'), + (21, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AnbyDDkA', '6337970'), + (21, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AnbyDDkA', '6338308'), + (21, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'AnbyDDkA', '6340845'), + (21, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AnbyDDkA', '6341710'), + (21, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AnbyDDkA', '6342044'), + (21, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AnbyDDkA', '6342298'), + (21, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AnbyDDkA', '6343294'), + (21, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AnbyDDkA', '6347034'), + (21, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AnbyDDkA', '6347056'), + (21, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AnbyDDkA', '6353830'), + (21, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AnbyDDkA', '6353831'), + (21, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AnbyDDkA', '6357867'), + (21, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AnbyDDkA', '6358652'), + (21, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AnbyDDkA', '6361709'), + (21, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AnbyDDkA', '6361710'), + (21, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AnbyDDkA', '6361711'), + (21, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AnbyDDkA', '6361712'), + (21, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AnbyDDkA', '6361713'), + (21, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AnbyDDkA', '6382573'), + (21, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AnbyDDkA', '6388604'), + (21, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AnbyDDkA', '6394629'), + (21, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AnbyDDkA', '6394631'), + (21, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AnbyDDkA', '6440863'), + (21, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AnbyDDkA', '6445440'), + (21, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AnbyDDkA', '6453951'), + (21, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AnbyDDkA', '6461696'), + (21, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AnbyDDkA', '6462129'), + (21, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AnbyDDkA', '6463218'), + (21, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AnbyDDkA', '6472181'), + (21, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AnbyDDkA', '6482693'), + (21, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'AnbyDDkA', '6484200'), + (21, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'AnbyDDkA', '6484680'), + (21, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AnbyDDkA', '6507741'), + (21, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AnbyDDkA', '6514659'), + (21, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AnbyDDkA', '6514660'), + (21, 2324, 'attending', '2023-12-07 20:59:19', '2025-12-17 19:46:49', 'AnbyDDkA', '6514662'), + (21, 2325, 'attending', '2023-12-07 20:59:31', '2025-12-17 19:46:36', 'AnbyDDkA', '6514663'), + (21, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AnbyDDkA', '6519103'), + (21, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AnbyDDkA', '6535681'), + (21, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AnbyDDkA', '6584747'), + (21, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AnbyDDkA', '6587097'), + (21, 2356, 'maybe', '2023-12-09 22:49:55', '2025-12-17 19:46:36', 'AnbyDDkA', '6593340'), + (21, 2362, 'maybe', '2023-12-07 21:02:23', '2025-12-17 19:46:49', 'AnbyDDkA', '6605708'), + (21, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AnbyDDkA', '6609022'), + (21, 2366, 'maybe', '2023-12-07 22:41:31', '2025-12-17 19:46:36', 'AnbyDDkA', '6615304'), + (21, 2367, 'attending', '2023-12-09 22:39:14', '2025-12-17 19:46:49', 'AnbyDDkA', '6620890'), + (21, 2371, 'maybe', '2023-12-15 22:00:03', '2025-12-17 19:46:36', 'AnbyDDkA', '6624495'), + (21, 2373, 'attending', '2023-12-21 17:52:07', '2025-12-17 19:46:38', 'AnbyDDkA', '6632678'), + (21, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AnbyDDkA', '6632757'), + (21, 2376, 'not_attending', '2024-01-15 09:23:41', '2025-12-17 19:46:40', 'AnbyDDkA', '6642900'), + (21, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AnbyDDkA', '6644187'), + (21, 2380, 'attending', '2023-12-31 17:28:43', '2025-12-17 19:46:37', 'AnbyDDkA', '6645105'), + (21, 2381, 'maybe', '2024-01-01 16:49:40', '2025-12-17 19:46:37', 'AnbyDDkA', '6646398'), + (21, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AnbyDDkA', '6648951'), + (21, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AnbyDDkA', '6648952'), + (21, 2388, 'attending', '2024-01-03 19:27:06', '2025-12-17 19:46:37', 'AnbyDDkA', '6649244'), + (21, 2389, 'attending', '2024-01-03 20:03:26', '2025-12-17 19:46:40', 'AnbyDDkA', '6651094'), + (21, 2390, 'maybe', '2024-01-07 18:52:43', '2025-12-17 19:46:37', 'AnbyDDkA', '6651141'), + (21, 2393, 'not_attending', '2024-01-15 00:30:36', '2025-12-17 19:46:38', 'AnbyDDkA', '6654468'), + (21, 2394, 'not_attending', '2024-01-15 09:21:59', '2025-12-17 19:46:38', 'AnbyDDkA', '6654470'), + (21, 2395, 'not_attending', '2024-01-16 18:02:47', '2025-12-17 19:46:38', 'AnbyDDkA', '6654471'), + (21, 2396, 'not_attending', '2024-01-15 09:21:11', '2025-12-17 19:46:38', 'AnbyDDkA', '6655401'), + (21, 2399, 'maybe', '2024-01-13 23:46:42', '2025-12-17 19:46:38', 'AnbyDDkA', '6657583'), + (21, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AnbyDDkA', '6661585'), + (21, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AnbyDDkA', '6661588'), + (21, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AnbyDDkA', '6661589'), + (21, 2404, 'not_attending', '2024-01-15 09:21:36', '2025-12-17 19:46:38', 'AnbyDDkA', '6666858'), + (21, 2405, 'not_attending', '2024-01-15 09:22:03', '2025-12-17 19:46:38', 'AnbyDDkA', '6667332'), + (21, 2406, 'not_attending', '2024-01-15 09:23:01', '2025-12-17 19:46:40', 'AnbyDDkA', '6692344'), + (21, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AnbyDDkA', '6699906'), + (21, 2408, 'attending', '2024-01-15 09:23:24', '2025-12-17 19:46:40', 'AnbyDDkA', '6699907'), + (21, 2409, 'not_attending', '2024-02-01 17:57:46', '2025-12-17 19:46:41', 'AnbyDDkA', '6699909'), + (21, 2410, 'attending', '2024-02-05 14:43:23', '2025-12-17 19:46:41', 'AnbyDDkA', '6699911'), + (21, 2411, 'attending', '2024-02-13 05:40:07', '2025-12-17 19:46:41', 'AnbyDDkA', '6699913'), + (21, 2412, 'attending', '2024-02-19 16:50:51', '2025-12-17 19:46:43', 'AnbyDDkA', '6700717'), + (21, 2413, 'maybe', '2024-02-13 05:40:23', '2025-12-17 19:46:42', 'AnbyDDkA', '6700719'), + (21, 2414, 'attending', '2024-01-16 01:37:31', '2025-12-17 19:46:40', 'AnbyDDkA', '6701000'), + (21, 2415, 'attending', '2024-01-16 01:42:34', '2025-12-17 19:46:40', 'AnbyDDkA', '6701001'), + (21, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AnbyDDkA', '6701109'), + (21, 2419, 'maybe', '2024-01-18 15:36:18', '2025-12-17 19:46:41', 'AnbyDDkA', '6704505'), + (21, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AnbyDDkA', '6705219'), + (21, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AnbyDDkA', '6710153'), + (21, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AnbyDDkA', '6711552'), + (21, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AnbyDDkA', '6711553'), + (21, 2432, 'not_attending', '2024-02-03 11:47:26', '2025-12-17 19:46:41', 'AnbyDDkA', '6712822'), + (21, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AnbyDDkA', '6722688'), + (21, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AnbyDDkA', '6730620'), + (21, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AnbyDDkA', '6730642'), + (21, 2443, 'not_attending', '2024-02-03 11:47:20', '2025-12-17 19:46:41', 'AnbyDDkA', '6733775'), + (21, 2450, 'maybe', '2024-02-11 04:47:37', '2025-12-17 19:46:41', 'AnbyDDkA', '6738807'), + (21, 2452, 'maybe', '2024-02-13 14:13:02', '2025-12-17 19:46:41', 'AnbyDDkA', '6740361'), + (21, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AnbyDDkA', '6740364'), + (21, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AnbyDDkA', '6743829'), + (21, 2461, 'attending', '2024-02-10 20:13:30', '2025-12-17 19:46:41', 'AnbyDDkA', '6744245'), + (21, 2467, 'maybe', '2024-02-25 14:46:29', '2025-12-17 19:46:43', 'AnbyDDkA', '7029987'), + (21, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AnbyDDkA', '7030380'), + (21, 2471, 'not_attending', '2024-02-19 16:51:46', '2025-12-17 19:46:42', 'AnbyDDkA', '7032425'), + (21, 2472, 'not_attending', '2024-02-20 08:52:02', '2025-12-17 19:46:42', 'AnbyDDkA', '7033677'), + (21, 2474, 'attending', '2024-02-21 00:20:32', '2025-12-17 19:46:43', 'AnbyDDkA', '7035415'), + (21, 2475, 'not_attending', '2024-02-28 10:41:45', '2025-12-17 19:46:43', 'AnbyDDkA', '7035643'), + (21, 2478, 'attending', '2024-02-21 00:20:10', '2025-12-17 19:46:43', 'AnbyDDkA', '7036478'), + (21, 2480, 'attending', '2024-02-25 14:46:33', '2025-12-17 19:46:43', 'AnbyDDkA', '7042160'), + (21, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AnbyDDkA', '7044715'), + (21, 2489, 'not_attending', '2024-02-28 10:41:52', '2025-12-17 19:46:43', 'AnbyDDkA', '7050161'), + (21, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AnbyDDkA', '7050318'), + (21, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AnbyDDkA', '7050319'), + (21, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AnbyDDkA', '7050322'), + (21, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AnbyDDkA', '7057804'), + (21, 2500, 'maybe', '2024-03-06 21:18:23', '2025-12-17 19:46:43', 'AnbyDDkA', '7058603'), + (21, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'AnbyDDkA', '7059866'), + (21, 2504, 'not_attending', '2024-03-21 17:42:49', '2025-12-17 19:46:33', 'AnbyDDkA', '7063296'), + (21, 2505, 'maybe', '2024-03-21 17:42:44', '2025-12-17 19:46:33', 'AnbyDDkA', '7069163'), + (21, 2506, 'attending', '2024-03-09 23:51:00', '2025-12-17 19:46:44', 'AnbyDDkA', '7069242'), + (21, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AnbyDDkA', '7072824'), + (21, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AnbyDDkA', '7074348'), + (21, 2510, 'maybe', '2024-03-21 17:42:37', '2025-12-17 19:46:33', 'AnbyDDkA', '7074350'), + (21, 2511, 'maybe', '2024-04-11 22:25:06', '2025-12-17 19:46:33', 'AnbyDDkA', '7074351'), + (21, 2513, 'maybe', '2024-04-14 16:39:21', '2025-12-17 19:46:34', 'AnbyDDkA', '7074353'), + (21, 2522, 'maybe', '2024-07-15 19:42:03', '2025-12-17 19:46:30', 'AnbyDDkA', '7074362'), + (21, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AnbyDDkA', '7074364'), + (21, 2525, 'not_attending', '2024-06-13 20:33:31', '2025-12-17 19:46:28', 'AnbyDDkA', '7074365'), + (21, 2529, 'maybe', '2024-05-22 23:03:41', '2025-12-17 19:46:35', 'AnbyDDkA', '7074369'), + (21, 2532, 'not_attending', '2024-09-04 19:03:11', '2025-12-17 19:46:32', 'AnbyDDkA', '7074383'), + (21, 2539, 'attending', '2024-04-06 21:30:28', '2025-12-17 19:46:33', 'AnbyDDkA', '7085486'), + (21, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AnbyDDkA', '7089267'), + (21, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AnbyDDkA', '7098747'), + (21, 2551, 'attending', '2024-04-01 20:46:28', '2025-12-17 19:46:33', 'AnbyDDkA', '7109912'), + (21, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AnbyDDkA', '7113468'), + (21, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AnbyDDkA', '7114856'), + (21, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AnbyDDkA', '7114951'), + (21, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AnbyDDkA', '7114955'), + (21, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AnbyDDkA', '7114956'), + (21, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AnbyDDkA', '7114957'), + (21, 2564, 'maybe', '2024-04-10 20:14:40', '2025-12-17 19:46:33', 'AnbyDDkA', '7134735'), + (21, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AnbyDDkA', '7153615'), + (21, 2571, 'maybe', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AnbyDDkA', '7159484'), + (21, 2572, 'attending', '2024-04-13 10:55:40', '2025-12-17 19:46:33', 'AnbyDDkA', '7159522'), + (21, 2573, 'maybe', '2024-04-14 16:38:57', '2025-12-17 19:46:34', 'AnbyDDkA', '7160612'), + (21, 2574, 'attending', '2024-04-13 17:50:15', '2025-12-17 19:46:33', 'AnbyDDkA', '7163825'), + (21, 2578, 'not_attending', '2024-04-13 19:34:31', '2025-12-17 19:46:34', 'AnbyDDkA', '7167016'), + (21, 2580, 'not_attending', '2024-04-13 19:34:36', '2025-12-17 19:46:34', 'AnbyDDkA', '7167272'), + (21, 2583, 'not_attending', '2024-04-14 16:38:43', '2025-12-17 19:46:34', 'AnbyDDkA', '7172946'), + (21, 2584, 'not_attending', '2024-04-21 16:30:55', '2025-12-17 19:46:34', 'AnbyDDkA', '7175057'), + (21, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AnbyDDkA', '7178446'), + (21, 2591, 'maybe', '2024-04-19 21:47:13', '2025-12-17 19:46:34', 'AnbyDDkA', '7180957'), + (21, 2592, 'attending', '2024-04-20 00:02:57', '2025-12-17 19:46:34', 'AnbyDDkA', '7180959'), + (21, 2596, 'attending', '2024-04-21 13:02:56', '2025-12-17 19:46:34', 'AnbyDDkA', '7183788'), + (21, 2597, 'not_attending', '2024-04-26 21:57:00', '2025-12-17 19:46:34', 'AnbyDDkA', '7186726'), + (21, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AnbyDDkA', '7220467'), + (21, 2609, 'attending', '2024-05-06 19:29:54', '2025-12-17 19:46:35', 'AnbyDDkA', '7240354'), + (21, 2614, 'maybe', '2024-05-10 13:12:06', '2025-12-17 19:46:35', 'AnbyDDkA', '7247645'), + (21, 2615, 'not_attending', '2024-05-03 14:48:20', '2025-12-17 19:46:35', 'AnbyDDkA', '7249787'), + (21, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AnbyDDkA', '7251633'), + (21, 2619, 'maybe', '2024-05-10 13:12:09', '2025-12-17 19:46:35', 'AnbyDDkA', '7252965'), + (21, 2622, 'not_attending', '2024-05-10 13:12:16', '2025-12-17 19:46:35', 'AnbyDDkA', '7262064'), + (21, 2623, 'attending', '2024-05-10 13:07:31', '2025-12-17 19:46:35', 'AnbyDDkA', '7263048'), + (21, 2626, 'attending', '2024-05-13 18:42:23', '2025-12-17 19:46:35', 'AnbyDDkA', '7264723'), + (21, 2627, 'not_attending', '2024-05-13 18:32:35', '2025-12-17 19:46:35', 'AnbyDDkA', '7264724'), + (21, 2628, 'maybe', '2024-05-27 04:08:14', '2025-12-17 19:46:36', 'AnbyDDkA', '7264725'), + (21, 2629, 'attending', '2024-05-27 04:08:17', '2025-12-17 19:46:28', 'AnbyDDkA', '7264726'), + (21, 2643, 'attending', '2024-05-18 12:26:57', '2025-12-17 19:46:35', 'AnbyDDkA', '7276587'), + (21, 2647, 'attending', '2024-06-09 16:04:54', '2025-12-17 19:46:28', 'AnbyDDkA', '7282057'), + (21, 2649, 'attending', '2024-05-21 12:21:30', '2025-12-17 19:46:35', 'AnbyDDkA', '7282950'), + (21, 2653, 'attending', '2024-05-25 17:10:28', '2025-12-17 19:46:35', 'AnbyDDkA', '7289186'), + (21, 2659, 'maybe', '2024-06-01 18:41:24', '2025-12-17 19:46:36', 'AnbyDDkA', '7299599'), + (21, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AnbyDDkA', '7302674'), + (21, 2669, 'attending', '2024-06-08 19:54:54', '2025-12-17 19:46:36', 'AnbyDDkA', '7318057'), + (21, 2674, 'maybe', '2024-07-06 21:52:34', '2025-12-17 19:46:29', 'AnbyDDkA', '7319480'), + (21, 2676, 'attending', '2024-08-31 20:55:36', '2025-12-17 19:46:32', 'AnbyDDkA', '7319482'), + (21, 2678, 'not_attending', '2024-06-13 19:48:51', '2025-12-17 19:46:28', 'AnbyDDkA', '7319489'), + (21, 2679, 'maybe', '2024-06-16 17:40:28', '2025-12-17 19:46:29', 'AnbyDDkA', '7319490'), + (21, 2686, 'maybe', '2024-06-21 18:05:31', '2025-12-17 19:46:29', 'AnbyDDkA', '7323802'), + (21, 2688, 'maybe', '2024-06-16 17:40:21', '2025-12-17 19:46:29', 'AnbyDDkA', '7324073'), + (21, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AnbyDDkA', '7324074'), + (21, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AnbyDDkA', '7324075'), + (21, 2691, 'attending', '2024-07-13 18:49:56', '2025-12-17 19:46:30', 'AnbyDDkA', '7324076'), + (21, 2692, 'attending', '2024-07-27 14:28:39', '2025-12-17 19:46:30', 'AnbyDDkA', '7324077'), + (21, 2693, 'not_attending', '2024-07-27 23:04:28', '2025-12-17 19:46:31', 'AnbyDDkA', '7324078'), + (21, 2694, 'attending', '2024-08-09 12:40:36', '2025-12-17 19:46:31', 'AnbyDDkA', '7324079'), + (21, 2695, 'not_attending', '2024-08-11 20:27:05', '2025-12-17 19:46:31', 'AnbyDDkA', '7324080'), + (21, 2696, 'not_attending', '2024-08-22 12:26:19', '2025-12-17 19:46:32', 'AnbyDDkA', '7324081'), + (21, 2697, 'attending', '2024-08-27 16:14:48', '2025-12-17 19:46:32', 'AnbyDDkA', '7324082'), + (21, 2698, 'attending', '2024-09-01 12:08:50', '2025-12-17 19:46:24', 'AnbyDDkA', '7324083'), + (21, 2700, 'not_attending', '2024-06-14 14:26:26', '2025-12-17 19:46:28', 'AnbyDDkA', '7324388'), + (21, 2707, 'attending', '2024-06-13 14:47:50', '2025-12-17 19:46:28', 'AnbyDDkA', '7324952'), + (21, 2711, 'maybe', '2024-07-19 21:40:32', '2025-12-17 19:46:30', 'AnbyDDkA', '7326524'), + (21, 2716, 'maybe', '2024-06-21 18:12:43', '2025-12-17 19:46:29', 'AnbyDDkA', '7329096'), + (21, 2719, 'attending', '2024-06-18 18:09:29', '2025-12-17 19:46:29', 'AnbyDDkA', '7331305'), + (21, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AnbyDDkA', '7331457'), + (21, 2723, 'maybe', '2024-06-21 18:05:42', '2025-12-17 19:46:29', 'AnbyDDkA', '7332389'), + (21, 2736, 'not_attending', '2024-06-29 21:30:36', '2025-12-17 19:46:29', 'AnbyDDkA', '7342038'), + (21, 2749, 'maybe', '2024-07-09 12:46:30', '2025-12-17 19:46:29', 'AnbyDDkA', '7355496'), + (21, 2753, 'maybe', '2024-07-09 12:46:43', '2025-12-17 19:46:30', 'AnbyDDkA', '7355538'), + (21, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AnbyDDkA', '7356752'), + (21, 2755, 'not_attending', '2024-07-09 19:34:47', '2025-12-17 19:46:29', 'AnbyDDkA', '7357808'), + (21, 2757, 'not_attending', '2024-07-12 20:08:04', '2025-12-17 19:46:30', 'AnbyDDkA', '7358733'), + (21, 2759, 'attending', '2024-07-12 20:07:57', '2025-12-17 19:46:30', 'AnbyDDkA', '7359624'), + (21, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'AnbyDDkA', '7363643'), + (21, 2770, 'attending', '2024-07-20 20:27:02', '2025-12-17 19:46:30', 'AnbyDDkA', '7368196'), + (21, 2772, 'not_attending', '2024-07-23 13:42:41', '2025-12-17 19:46:30', 'AnbyDDkA', '7368267'), + (21, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AnbyDDkA', '7368606'), + (21, 2776, 'maybe', '2024-07-23 13:42:30', '2025-12-17 19:46:30', 'AnbyDDkA', '7370690'), + (21, 2781, 'not_attending', '2024-07-25 21:16:33', '2025-12-17 19:46:30', 'AnbyDDkA', '7373194'), + (21, 2785, 'maybe', '2024-07-31 05:28:32', '2025-12-17 19:46:31', 'AnbyDDkA', '7380988'), + (21, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AnbyDDkA', '7397462'), + (21, 2802, 'not_attending', '2024-09-02 10:19:46', '2025-12-17 19:46:32', 'AnbyDDkA', '7397463'), + (21, 2808, 'attending', '2024-08-27 16:14:37', '2025-12-17 19:46:32', 'AnbyDDkA', '7412860'), + (21, 2810, 'not_attending', '2024-09-01 12:08:41', '2025-12-17 19:46:32', 'AnbyDDkA', '7415553'), + (21, 2811, 'attending', '2024-08-30 23:32:07', '2025-12-17 19:46:32', 'AnbyDDkA', '7418895'), + (21, 2813, 'attending', '2024-09-03 15:31:18', '2025-12-17 19:46:24', 'AnbyDDkA', '7424105'), + (21, 2814, 'attending', '2024-09-07 00:10:13', '2025-12-17 19:46:24', 'AnbyDDkA', '7424267'), + (21, 2821, 'maybe', '2024-10-09 22:01:07', '2025-12-17 19:46:26', 'AnbyDDkA', '7424275'), + (21, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AnbyDDkA', '7424276'), + (21, 2823, 'maybe', '2024-09-07 12:26:07', '2025-12-17 19:46:24', 'AnbyDDkA', '7430247'), + (21, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AnbyDDkA', '7432751'), + (21, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AnbyDDkA', '7432752'), + (21, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AnbyDDkA', '7432753'), + (21, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AnbyDDkA', '7432754'), + (21, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AnbyDDkA', '7432755'), + (21, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AnbyDDkA', '7432756'), + (21, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AnbyDDkA', '7432758'), + (21, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AnbyDDkA', '7432759'), + (21, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AnbyDDkA', '7433834'), + (21, 2834, 'attending', '2024-09-11 01:52:43', '2025-12-17 19:46:25', 'AnbyDDkA', '7433852'), + (21, 2836, 'attending', '2024-09-12 18:31:42', '2025-12-17 19:46:25', 'AnbyDDkA', '7438708'), + (21, 2837, 'attending', '2024-09-12 18:57:03', '2025-12-17 19:46:25', 'AnbyDDkA', '7438711'), + (21, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AnbyDDkA', '7470197'), + (21, 2875, 'maybe', '2024-10-11 13:36:26', '2025-12-17 19:46:26', 'AnbyDDkA', '7482241'), + (21, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AnbyDDkA', '7685613'), + (21, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AnbyDDkA', '7688194'), + (21, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AnbyDDkA', '7688196'), + (21, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AnbyDDkA', '7688289'), + (21, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AnbyDDkA', '7692763'), + (21, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AnbyDDkA', '7697552'), + (21, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AnbyDDkA', '7699878'), + (21, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AnbyDDkA', '7704043'), + (21, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AnbyDDkA', '7712467'), + (21, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'AnbyDDkA', '7713585'), + (21, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AnbyDDkA', '7713586'), + (21, 2942, 'attending', '2025-02-16 17:12:45', '2025-12-17 19:46:24', 'AnbyDDkA', '7725960'), + (21, 2943, 'not_attending', '2025-02-16 17:12:53', '2025-12-17 19:46:18', 'AnbyDDkA', '7725961'), + (21, 2944, 'maybe', '2025-02-16 17:12:50', '2025-12-17 19:46:24', 'AnbyDDkA', '7725963'), + (21, 2945, 'maybe', '2025-02-16 17:12:57', '2025-12-17 19:46:19', 'AnbyDDkA', '7725964'), + (21, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AnbyDDkA', '7738518'), + (21, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AnbyDDkA', '7750636'), + (21, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AnbyDDkA', '7796540'), + (21, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AnbyDDkA', '7796541'), + (21, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AnbyDDkA', '7796542'), + (21, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AnbyDDkA', '7825913'), + (21, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AnbyDDkA', '7826209'), + (21, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AnbyDDkA', '7834742'), + (21, 2988, 'maybe', '2025-02-08 18:33:04', '2025-12-17 19:46:23', 'AnbyDDkA', '7839569'), + (21, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'AnbyDDkA', '7842108'), + (21, 2990, 'attending', '2025-02-11 12:44:38', '2025-12-17 19:46:23', 'AnbyDDkA', '7842898'), + (21, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AnbyDDkA', '7842902'), + (21, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AnbyDDkA', '7842903'), + (21, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AnbyDDkA', '7842904'), + (21, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AnbyDDkA', '7842905'), + (21, 3000, 'maybe', '2025-02-21 12:51:13', '2025-12-17 19:46:24', 'AnbyDDkA', '7852541'), + (21, 3001, 'attending', '2025-02-19 21:24:27', '2025-12-17 19:46:24', 'AnbyDDkA', '7854184'), + (21, 3002, 'attending', '2025-02-21 12:51:20', '2025-12-17 19:46:24', 'AnbyDDkA', '7854212'), + (21, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AnbyDDkA', '7855719'), + (21, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AnbyDDkA', '7860683'), + (21, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AnbyDDkA', '7860684'), + (21, 3011, 'maybe', '2025-03-01 23:41:55', '2025-12-17 19:46:24', 'AnbyDDkA', '7865624'), + (21, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AnbyDDkA', '7866095'), + (21, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AnbyDDkA', '7869170'), + (21, 3014, 'attending', '2025-04-04 03:48:37', '2025-12-17 19:46:19', 'AnbyDDkA', '7869185'), + (21, 3015, 'not_attending', '2025-04-18 15:49:43', '2025-12-17 19:46:20', 'AnbyDDkA', '7869186'), + (21, 3016, 'attending', '2025-04-17 07:52:41', '2025-12-17 19:46:20', 'AnbyDDkA', '7869187'), + (21, 3017, 'maybe', '2025-03-22 18:53:34', '2025-12-17 19:46:19', 'AnbyDDkA', '7869188'), + (21, 3018, 'attending', '2025-04-11 19:27:04', '2025-12-17 19:46:20', 'AnbyDDkA', '7869189'), + (21, 3020, 'attending', '2025-04-18 15:49:32', '2025-12-17 19:46:20', 'AnbyDDkA', '7869191'), + (21, 3021, 'maybe', '2025-04-12 21:23:09', '2025-12-17 19:46:20', 'AnbyDDkA', '7869192'), + (21, 3029, 'attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AnbyDDkA', '7869201'), + (21, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AnbyDDkA', '7877465'), + (21, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AnbyDDkA', '7878570'), + (21, 3045, 'not_attending', '2025-04-04 03:48:55', '2025-12-17 19:46:19', 'AnbyDDkA', '7882691'), + (21, 3046, 'attending', '2025-04-12 21:21:59', '2025-12-17 19:46:20', 'AnbyDDkA', '7882692'), + (21, 3047, 'not_attending', '2025-04-18 15:49:41', '2025-12-17 19:46:20', 'AnbyDDkA', '7882693'), + (21, 3048, 'attending', '2025-04-18 15:48:31', '2025-12-17 19:46:20', 'AnbyDDkA', '7882694'), + (21, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AnbyDDkA', '7888250'), + (21, 3083, 'attending', '2025-04-08 17:14:36', '2025-12-17 19:46:20', 'AnbyDDkA', '7903308'), + (21, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AnbyDDkA', '7904777'), + (21, 3091, 'maybe', '2025-04-18 15:48:04', '2025-12-17 19:46:20', 'AnbyDDkA', '8340289'), + (21, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AnbyDDkA', '8349164'), + (21, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AnbyDDkA', '8349545'), + (21, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AnbyDDkA', '8353584'), + (21, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AnbyDDkA', '8368028'), + (21, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AnbyDDkA', '8368029'), + (21, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AnbyDDkA', '8388462'), + (21, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AnbyDDkA', '8400273'), + (21, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AnbyDDkA', '8400274'), + (21, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AnbyDDkA', '8400275'), + (21, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'AnbyDDkA', '8400276'), + (21, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AnbyDDkA', '8404977'), + (21, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AnbyDDkA', '8430783'), + (21, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AnbyDDkA', '8430784'), + (21, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AnbyDDkA', '8430799'), + (21, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AnbyDDkA', '8430800'), + (21, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AnbyDDkA', '8430801'), + (21, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AnbyDDkA', '8438709'), + (21, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AnbyDDkA', '8457738'), + (21, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AnbyDDkA', '8459566'), + (21, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AnbyDDkA', '8459567'), + (21, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AnbyDDkA', '8461032'), + (21, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnbyDDkA', '8477877'), + (21, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnbyDDkA', '8485688'), + (21, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnbyDDkA', '8490587'), + (21, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnbyDDkA', '8493552'), + (21, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnbyDDkA', '8493553'), + (21, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnbyDDkA', '8493554'), + (21, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnbyDDkA', '8493555'), + (21, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnbyDDkA', '8493556'), + (21, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnbyDDkA', '8493557'), + (21, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnbyDDkA', '8493558'), + (21, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnbyDDkA', '8493559'), + (21, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnbyDDkA', '8493560'), + (21, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnbyDDkA', '8493561'), + (21, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnbyDDkA', '8493572'), + (21, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnbyDDkA', '8540725'), + (21, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnbyDDkA', '8555421'), + (22, 1152, 'attending', '2022-01-12 15:47:46', '2025-12-17 19:47:31', 'd5Dx1pO4', '4708705'), + (22, 1153, 'attending', '2022-01-17 23:37:50', '2025-12-17 19:47:32', 'd5Dx1pO4', '4708707'), + (22, 1154, 'maybe', '2022-01-24 01:22:34', '2025-12-17 19:47:32', 'd5Dx1pO4', '4708708'), + (22, 1173, 'attending', '2022-01-07 20:33:28', '2025-12-17 19:47:31', 'd5Dx1pO4', '4736495'), + (22, 1174, 'maybe', '2022-01-14 04:04:20', '2025-12-17 19:47:31', 'd5Dx1pO4', '4736496'), + (22, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd5Dx1pO4', '4736497'), + (22, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd5Dx1pO4', '4736499'), + (22, 1178, 'attending', '2022-01-25 01:05:52', '2025-12-17 19:47:32', 'd5Dx1pO4', '4736500'), + (22, 1180, 'attending', '2022-02-22 15:39:07', '2025-12-17 19:47:33', 'd5Dx1pO4', '4736502'), + (22, 1181, 'attending', '2022-03-02 20:34:32', '2025-12-17 19:47:33', 'd5Dx1pO4', '4736503'), + (22, 1182, 'attending', '2022-03-08 23:14:57', '2025-12-17 19:47:33', 'd5Dx1pO4', '4736504'), + (22, 1183, 'maybe', '2022-01-11 03:25:24', '2025-12-17 19:47:31', 'd5Dx1pO4', '4742171'), + (22, 1184, 'maybe', '2022-01-11 03:33:39', '2025-12-17 19:47:31', 'd5Dx1pO4', '4742350'), + (22, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'd5Dx1pO4', '4746789'), + (22, 1188, 'attending', '2022-01-17 20:35:09', '2025-12-17 19:47:31', 'd5Dx1pO4', '4753929'), + (22, 1190, 'attending', '2022-01-11 22:57:40', '2025-12-17 19:47:31', 'd5Dx1pO4', '4757377'), + (22, 1191, 'attending', '2022-01-12 00:34:24', '2025-12-17 19:47:31', 'd5Dx1pO4', '4757390'), + (22, 1192, 'attending', '2022-01-20 14:40:19', '2025-12-17 19:47:32', 'd5Dx1pO4', '4758745'), + (22, 1193, 'maybe', '2022-01-17 23:33:31', '2025-12-17 19:47:32', 'd5Dx1pO4', '4759563'), + (22, 1198, 'attending', '2022-01-24 01:22:26', '2025-12-17 19:47:32', 'd5Dx1pO4', '4766801'), + (22, 1199, 'attending', '2022-01-24 01:22:29', '2025-12-17 19:47:32', 'd5Dx1pO4', '4766802'), + (22, 1200, 'attending', '2022-01-17 23:33:10', '2025-12-17 19:47:32', 'd5Dx1pO4', '4766830'), + (22, 1202, 'attending', '2022-01-24 01:22:40', '2025-12-17 19:47:32', 'd5Dx1pO4', '4769423'), + (22, 1219, 'attending', '2022-01-31 17:23:38', '2025-12-17 19:47:32', 'd5Dx1pO4', '4788466'), + (22, 1224, 'attending', '2022-01-31 17:23:35', '2025-12-17 19:47:32', 'd5Dx1pO4', '5016682'), + (22, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd5Dx1pO4', '5038850'), + (22, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd5Dx1pO4', '5045826'), + (22, 1238, 'attending', '2022-02-22 15:39:15', '2025-12-17 19:47:32', 'd5Dx1pO4', '5052236'), + (22, 1239, 'attending', '2022-02-28 14:29:22', '2025-12-17 19:47:33', 'd5Dx1pO4', '5052238'), + (22, 1240, 'attending', '2022-03-14 00:40:38', '2025-12-17 19:47:33', 'd5Dx1pO4', '5052239'), + (22, 1241, 'attending', '2022-03-22 12:47:25', '2025-12-17 19:47:25', 'd5Dx1pO4', '5052240'), + (22, 1242, 'attending', '2022-03-29 21:20:31', '2025-12-17 19:47:25', 'd5Dx1pO4', '5052241'), + (22, 1243, 'attending', '2022-03-06 17:20:22', '2025-12-17 19:47:33', 'd5Dx1pO4', '5058336'), + (22, 1246, 'attending', '2022-02-23 19:04:22', '2025-12-17 19:47:33', 'd5Dx1pO4', '5064727'), + (22, 1248, 'maybe', '2022-02-23 19:04:01', '2025-12-17 19:47:33', 'd5Dx1pO4', '5065064'), + (22, 1249, 'maybe', '2022-03-09 21:41:55', '2025-12-17 19:47:33', 'd5Dx1pO4', '5068530'), + (22, 1250, 'maybe', '2022-03-03 22:26:25', '2025-12-17 19:47:33', 'd5Dx1pO4', '5069735'), + (22, 1253, 'attending', '2022-03-02 15:43:29', '2025-12-17 19:47:33', 'd5Dx1pO4', '5129122'), + (22, 1255, 'maybe', '2022-02-28 19:56:51', '2025-12-17 19:47:33', 'd5Dx1pO4', '5129140'), + (22, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd5Dx1pO4', '5132533'), + (22, 1261, 'attending', '2022-03-04 01:56:56', '2025-12-17 19:47:33', 'd5Dx1pO4', '5154274'), + (22, 1262, 'not_attending', '2022-03-10 17:43:25', '2025-12-17 19:47:33', 'd5Dx1pO4', '5157773'), + (22, 1264, 'attending', '2022-03-22 16:58:17', '2025-12-17 19:47:25', 'd5Dx1pO4', '5160281'), + (22, 1266, 'maybe', '2022-03-14 18:26:07', '2025-12-17 19:47:33', 'd5Dx1pO4', '5166407'), + (22, 1267, 'attending', '2022-03-12 22:18:28', '2025-12-17 19:47:25', 'd5Dx1pO4', '5169578'), + (22, 1269, 'attending', '2022-03-17 16:01:55', '2025-12-17 19:47:25', 'd5Dx1pO4', '5179439'), + (22, 1270, 'maybe', '2022-03-15 14:48:46', '2025-12-17 19:47:25', 'd5Dx1pO4', '5181277'), + (22, 1272, 'attending', '2022-03-15 23:39:09', '2025-12-17 19:47:25', 'd5Dx1pO4', '5186582'), + (22, 1273, 'attending', '2022-03-26 18:34:38', '2025-12-17 19:47:25', 'd5Dx1pO4', '5186583'), + (22, 1274, 'attending', '2022-03-31 01:30:37', '2025-12-17 19:47:26', 'd5Dx1pO4', '5186585'), + (22, 1276, 'maybe', '2022-03-27 16:05:12', '2025-12-17 19:47:25', 'd5Dx1pO4', '5186820'), + (22, 1278, 'attending', '2022-03-16 21:29:40', '2025-12-17 19:47:33', 'd5Dx1pO4', '5186920'), + (22, 1279, 'attending', '2022-03-16 21:29:09', '2025-12-17 19:47:25', 'd5Dx1pO4', '5187212'), + (22, 1281, 'attending', '2022-04-08 03:31:50', '2025-12-17 19:47:27', 'd5Dx1pO4', '5190437'), + (22, 1284, 'attending', '2022-04-13 14:13:28', '2025-12-17 19:47:27', 'd5Dx1pO4', '5195095'), + (22, 1287, 'attending', '2022-03-23 01:05:05', '2025-12-17 19:47:25', 'd5Dx1pO4', '5199425'), + (22, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'd5Dx1pO4', '5215989'), + (22, 1298, 'attending', '2022-03-29 12:16:15', '2025-12-17 19:47:25', 'd5Dx1pO4', '5216645'), + (22, 1304, 'maybe', '2022-04-04 16:40:55', '2025-12-17 19:47:26', 'd5Dx1pO4', '5223468'), + (22, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd5Dx1pO4', '5223686'), + (22, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd5Dx1pO4', '5227432'), + (22, 1314, 'maybe', '2022-04-08 20:31:37', '2025-12-17 19:47:27', 'd5Dx1pO4', '5233137'), + (22, 1315, 'maybe', '2022-04-18 19:44:43', '2025-12-17 19:47:27', 'd5Dx1pO4', '5237522'), + (22, 1317, 'attending', '2022-04-11 22:52:39', '2025-12-17 19:47:27', 'd5Dx1pO4', '5237543'), + (22, 1319, 'attending', '2022-04-11 13:27:45', '2025-12-17 19:47:27', 'd5Dx1pO4', '5238353'), + (22, 1320, 'attending', '2022-04-11 13:27:54', '2025-12-17 19:47:27', 'd5Dx1pO4', '5238354'), + (22, 1322, 'maybe', '2022-04-15 02:33:55', '2025-12-17 19:47:27', 'd5Dx1pO4', '5238356'), + (22, 1331, 'attending', '2022-04-12 23:44:26', '2025-12-17 19:47:27', 'd5Dx1pO4', '5242156'), + (22, 1337, 'attending', '2022-04-19 01:03:30', '2025-12-17 19:47:27', 'd5Dx1pO4', '5245036'), + (22, 1346, 'attending', '2022-04-18 19:44:36', '2025-12-17 19:47:27', 'd5Dx1pO4', '5247467'), + (22, 1360, 'maybe', '2022-04-26 18:52:12', '2025-12-17 19:47:27', 'd5Dx1pO4', '5260197'), + (22, 1362, 'attending', '2022-04-25 17:43:46', '2025-12-17 19:47:28', 'd5Dx1pO4', '5260800'), + (22, 1364, 'attending', '2022-05-01 20:22:34', '2025-12-17 19:47:28', 'd5Dx1pO4', '5261598'), + (22, 1365, 'attending', '2022-05-01 15:25:07', '2025-12-17 19:47:28', 'd5Dx1pO4', '5261600'), + (22, 1370, 'not_attending', '2022-04-29 17:12:15', '2025-12-17 19:47:28', 'd5Dx1pO4', '5263775'), + (22, 1371, 'attending', '2022-04-27 20:51:33', '2025-12-17 19:47:27', 'd5Dx1pO4', '5263784'), + (22, 1372, 'maybe', '2022-05-02 17:49:45', '2025-12-17 19:47:28', 'd5Dx1pO4', '5264352'), + (22, 1374, 'attending', '2022-05-02 01:40:34', '2025-12-17 19:47:28', 'd5Dx1pO4', '5269930'), + (22, 1378, 'maybe', '2022-05-05 21:29:56', '2025-12-17 19:47:29', 'd5Dx1pO4', '5271448'), + (22, 1379, 'attending', '2022-05-15 23:43:21', '2025-12-17 19:47:29', 'd5Dx1pO4', '5271449'), + (22, 1380, 'not_attending', '2022-05-15 23:43:34', '2025-12-17 19:47:30', 'd5Dx1pO4', '5271450'), + (22, 1381, 'attending', '2022-05-06 17:44:20', '2025-12-17 19:47:28', 'd5Dx1pO4', '5271453'), + (22, 1383, 'attending', '2022-05-13 18:09:06', '2025-12-17 19:47:28', 'd5Dx1pO4', '5276469'), + (22, 1385, 'maybe', '2022-05-11 13:04:11', '2025-12-17 19:47:28', 'd5Dx1pO4', '5277822'), + (22, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd5Dx1pO4', '5278159'), + (22, 1392, 'not_attending', '2022-05-10 14:19:39', '2025-12-17 19:47:28', 'd5Dx1pO4', '5279532'), + (22, 1403, 'attending', '2022-05-20 17:01:29', '2025-12-17 19:47:29', 'd5Dx1pO4', '5288052'), + (22, 1407, 'attending', '2022-05-30 01:25:03', '2025-12-17 19:47:30', 'd5Dx1pO4', '5363695'), + (22, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd5Dx1pO4', '5365960'), + (22, 1412, 'attending', '2022-05-19 21:32:04', '2025-12-17 19:47:29', 'd5Dx1pO4', '5367532'), + (22, 1413, 'attending', '2022-05-21 02:17:21', '2025-12-17 19:47:29', 'd5Dx1pO4', '5367533'), + (22, 1415, 'maybe', '2022-05-19 15:16:13', '2025-12-17 19:47:30', 'd5Dx1pO4', '5368973'), + (22, 1416, 'attending', '2022-05-19 17:47:48', '2025-12-17 19:47:30', 'd5Dx1pO4', '5369628'), + (22, 1424, 'maybe', '2022-05-26 19:04:24', '2025-12-17 19:47:30', 'd5Dx1pO4', '5375772'), + (22, 1427, 'maybe', '2022-05-24 15:40:05', '2025-12-17 19:47:30', 'd5Dx1pO4', '5376074'), + (22, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd5Dx1pO4', '5378247'), + (22, 1431, 'not_attending', '2022-06-11 02:22:25', '2025-12-17 19:47:31', 'd5Dx1pO4', '5389605'), + (22, 1436, 'attending', '2022-06-01 03:36:39', '2025-12-17 19:47:30', 'd5Dx1pO4', '5394292'), + (22, 1437, 'maybe', '2022-06-01 17:14:32', '2025-12-17 19:47:30', 'd5Dx1pO4', '5394493'), + (22, 1438, 'maybe', '2022-06-01 17:09:16', '2025-12-17 19:47:30', 'd5Dx1pO4', '5395032'), + (22, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd5Dx1pO4', '5397265'), + (22, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd5Dx1pO4', '5403967'), + (22, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd5Dx1pO4', '5404786'), + (22, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd5Dx1pO4', '5405203'), + (22, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'd5Dx1pO4', '5408794'), + (22, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd5Dx1pO4', '5411699'), + (22, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd5Dx1pO4', '5412550'), + (22, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd5Dx1pO4', '5415046'), + (22, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd5Dx1pO4', '5422086'), + (22, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd5Dx1pO4', '5422406'), + (22, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd5Dx1pO4', '5424565'), + (22, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd5Dx1pO4', '5426882'), + (22, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd5Dx1pO4', '5427083'), + (22, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd5Dx1pO4', '5441125'), + (22, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd5Dx1pO4', '5441126'), + (22, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd5Dx1pO4', '5441128'), + (22, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd5Dx1pO4', '5441131'), + (22, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'd5Dx1pO4', '5441132'), + (22, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd5Dx1pO4', '5446643'), + (22, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd5Dx1pO4', '5453325'), + (22, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd5Dx1pO4', '5454516'), + (22, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd5Dx1pO4', '5454605'), + (22, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd5Dx1pO4', '5455037'), + (22, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd5Dx1pO4', '5461278'), + (22, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd5Dx1pO4', '5469480'), + (22, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd5Dx1pO4', '5471073'), + (22, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd5Dx1pO4', '5474663'), + (22, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd5Dx1pO4', '5482022'), + (22, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd5Dx1pO4', '5482793'), + (22, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd5Dx1pO4', '5488912'), + (22, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd5Dx1pO4', '5492192'), + (22, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd5Dx1pO4', '5493139'), + (22, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd5Dx1pO4', '5493200'), + (22, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd5Dx1pO4', '5502188'), + (22, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd5Dx1pO4', '5505059'), + (22, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd5Dx1pO4', '5509055'), + (22, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd5Dx1pO4', '5512862'), + (22, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd5Dx1pO4', '5513985'), + (22, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'd5Dx1pO4', '5519981'), + (22, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd5Dx1pO4', '5522550'), + (22, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd5Dx1pO4', '5534683'), + (22, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd5Dx1pO4', '5537735'), + (22, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd5Dx1pO4', '5540859'), + (22, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd5Dx1pO4', '5546619'), + (22, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd5Dx1pO4', '5555245'), + (22, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd5Dx1pO4', '5557747'), + (22, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd5Dx1pO4', '5560255'), + (22, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd5Dx1pO4', '5562906'), + (22, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd5Dx1pO4', '5600604'), + (22, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd5Dx1pO4', '5605544'), + (22, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'd5Dx1pO4', '5606737'), + (22, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd5Dx1pO4', '5630960'), + (22, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd5Dx1pO4', '5630961'), + (22, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd5Dx1pO4', '5630962'), + (22, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd5Dx1pO4', '5630966'), + (22, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd5Dx1pO4', '5630967'), + (22, 1726, 'attending', '2022-11-16 18:18:05', '2025-12-17 19:47:16', 'd5Dx1pO4', '5630968'), + (22, 1727, 'maybe', '2022-11-28 23:51:31', '2025-12-17 19:47:16', 'd5Dx1pO4', '5630969'), + (22, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd5Dx1pO4', '5635406'), + (22, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd5Dx1pO4', '5638765'), + (22, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd5Dx1pO4', '5640097'), + (22, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd5Dx1pO4', '5640843'), + (22, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd5Dx1pO4', '5641521'), + (22, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd5Dx1pO4', '5642818'), + (22, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd5Dx1pO4', '5652395'), + (22, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd5Dx1pO4', '5670445'), + (22, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd5Dx1pO4', '5671637'), + (22, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd5Dx1pO4', '5672329'), + (22, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd5Dx1pO4', '5674057'), + (22, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd5Dx1pO4', '5674060'), + (22, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd5Dx1pO4', '5677461'), + (22, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd5Dx1pO4', '5698046'), + (22, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd5Dx1pO4', '5699760'), + (22, 1793, 'attending', '2022-11-23 14:43:29', '2025-12-17 19:47:16', 'd5Dx1pO4', '5736365'), + (22, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd5Dx1pO4', '5741601'), + (22, 1796, 'attending', '2022-12-01 23:57:16', '2025-12-17 19:47:16', 'd5Dx1pO4', '5756755'), + (22, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd5Dx1pO4', '5763458'), + (22, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd5Dx1pO4', '5774172'), + (22, 1831, 'attending', '2022-12-02 19:05:41', '2025-12-17 19:47:16', 'd5Dx1pO4', '5813239'), + (22, 1832, 'maybe', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'd5Dx1pO4', '5818247'), + (22, 1833, 'maybe', '2022-12-05 04:01:06', '2025-12-17 19:47:16', 'd5Dx1pO4', '5819465'), + (22, 1834, 'not_attending', '2022-12-09 20:19:20', '2025-12-17 19:47:17', 'd5Dx1pO4', '5819470'), + (22, 1835, 'maybe', '2022-12-23 03:48:27', '2025-12-17 19:47:05', 'd5Dx1pO4', '5819471'), + (22, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'd5Dx1pO4', '5827739'), + (22, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd5Dx1pO4', '5844306'), + (22, 1847, 'attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd5Dx1pO4', '5850159'), + (22, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd5Dx1pO4', '5858999'), + (22, 1852, 'attending', '2023-01-11 23:22:53', '2025-12-17 19:47:05', 'd5Dx1pO4', '5869898'), + (22, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd5Dx1pO4', '5871984'), + (22, 1859, 'maybe', '2023-01-20 21:43:57', '2025-12-17 19:47:05', 'd5Dx1pO4', '5876234'), + (22, 1861, 'attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd5Dx1pO4', '5876354'), + (22, 1863, 'attending', '2023-01-29 18:25:09', '2025-12-17 19:47:06', 'd5Dx1pO4', '5877255'), + (22, 1864, 'attending', '2023-01-20 22:03:33', '2025-12-17 19:47:05', 'd5Dx1pO4', '5879675'), + (22, 1865, 'attending', '2023-01-25 01:22:34', '2025-12-17 19:47:06', 'd5Dx1pO4', '5879676'), + (22, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd5Dx1pO4', '5880939'), + (22, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'd5Dx1pO4', '5880940'), + (22, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd5Dx1pO4', '5880942'), + (22, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd5Dx1pO4', '5880943'), + (22, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd5Dx1pO4', '5887890'), + (22, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd5Dx1pO4', '5888598'), + (22, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd5Dx1pO4', '5893260'), + (22, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'd5Dx1pO4', '5899826'), + (22, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'd5Dx1pO4', '5900199'), + (22, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd5Dx1pO4', '5900200'), + (22, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd5Dx1pO4', '5900202'), + (22, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd5Dx1pO4', '5900203'), + (22, 1895, 'maybe', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'd5Dx1pO4', '5901108'), + (22, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd5Dx1pO4', '5901126'), + (22, 1897, 'maybe', '2023-02-08 18:51:19', '2025-12-17 19:47:07', 'd5Dx1pO4', '5901128'), + (22, 1902, 'maybe', '2023-02-01 21:21:47', '2025-12-17 19:47:06', 'd5Dx1pO4', '5902254'), + (22, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'd5Dx1pO4', '5909655'), + (22, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'd5Dx1pO4', '5910522'), + (22, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'd5Dx1pO4', '5910526'), + (22, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'd5Dx1pO4', '5910528'), + (22, 1922, 'maybe', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd5Dx1pO4', '5916219'), + (22, 1931, 'not_attending', '2023-02-24 18:15:10', '2025-12-17 19:47:08', 'd5Dx1pO4', '5933464'), + (22, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd5Dx1pO4', '5936234'), + (22, 1935, 'attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd5Dx1pO4', '5958351'), + (22, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd5Dx1pO4', '5959751'), + (22, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd5Dx1pO4', '5959755'), + (22, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd5Dx1pO4', '5960055'), + (22, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd5Dx1pO4', '5961684'), + (22, 1944, 'maybe', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd5Dx1pO4', '5962132'), + (22, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'd5Dx1pO4', '5962133'), + (22, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd5Dx1pO4', '5962134'), + (22, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd5Dx1pO4', '5962317'), + (22, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd5Dx1pO4', '5962318'), + (22, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd5Dx1pO4', '5965933'), + (22, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd5Dx1pO4', '5967014'), + (22, 1957, 'attending', '2023-03-06 18:58:40', '2025-12-17 19:47:10', 'd5Dx1pO4', '5972815'), + (22, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd5Dx1pO4', '5974016'), + (22, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd5Dx1pO4', '5981515'), + (22, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd5Dx1pO4', '5993516'), + (22, 1972, 'not_attending', '2023-03-17 01:49:55', '2025-12-17 19:46:56', 'd5Dx1pO4', '5993776'), + (22, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd5Dx1pO4', '5998939'), + (22, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd5Dx1pO4', '6028191'), + (22, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd5Dx1pO4', '6040066'), + (22, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd5Dx1pO4', '6042717'), + (22, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd5Dx1pO4', '6044838'), + (22, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd5Dx1pO4', '6044839'), + (22, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd5Dx1pO4', '6045684'), + (22, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd5Dx1pO4', '6050104'), + (22, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd5Dx1pO4', '6053195'), + (22, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd5Dx1pO4', '6053198'), + (22, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd5Dx1pO4', '6056085'), + (22, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd5Dx1pO4', '6056916'), + (22, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd5Dx1pO4', '6059290'), + (22, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd5Dx1pO4', '6060328'), + (22, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd5Dx1pO4', '6061037'), + (22, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd5Dx1pO4', '6061039'), + (22, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd5Dx1pO4', '6067245'), + (22, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd5Dx1pO4', '6068094'), + (22, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd5Dx1pO4', '6068252'), + (22, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd5Dx1pO4', '6068253'), + (22, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd5Dx1pO4', '6068254'), + (22, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'd5Dx1pO4', '6068280'), + (22, 2032, 'attending', '2023-06-01 19:55:09', '2025-12-17 19:47:04', 'd5Dx1pO4', '6068281'), + (22, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd5Dx1pO4', '6069093'), + (22, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'd5Dx1pO4', '6072528'), + (22, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd5Dx1pO4', '6079840'), + (22, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd5Dx1pO4', '6083398'), + (22, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'd5Dx1pO4', '6093504'), + (22, 2059, 'maybe', '2023-05-11 14:08:02', '2025-12-17 19:47:02', 'd5Dx1pO4', '6097361'), + (22, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd5Dx1pO4', '6097414'), + (22, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd5Dx1pO4', '6097442'), + (22, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd5Dx1pO4', '6097684'), + (22, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd5Dx1pO4', '6098762'), + (22, 2064, 'attending', '2023-06-20 15:21:35', '2025-12-17 19:46:50', 'd5Dx1pO4', '6099988'), + (22, 2065, 'attending', '2023-06-11 15:25:02', '2025-12-17 19:46:49', 'd5Dx1pO4', '6101169'), + (22, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'd5Dx1pO4', '6101361'), + (22, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd5Dx1pO4', '6101362'), + (22, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd5Dx1pO4', '6103752'), + (22, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd5Dx1pO4', '6107314'), + (22, 2084, 'attending', '2023-05-26 15:27:19', '2025-12-17 19:47:04', 'd5Dx1pO4', '6117127'), + (22, 2086, 'not_attending', '2023-05-28 02:02:48', '2025-12-17 19:47:04', 'd5Dx1pO4', '6119877'), + (22, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd5Dx1pO4', '6120034'), + (22, 2090, 'not_attending', '2023-06-01 19:55:02', '2025-12-17 19:47:04', 'd5Dx1pO4', '6127961'), + (22, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'd5Dx1pO4', '6136733'), + (22, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'd5Dx1pO4', '6137989'), + (22, 2098, 'attending', '2023-06-09 11:47:58', '2025-12-17 19:47:04', 'd5Dx1pO4', '6139831'), + (22, 2102, 'attending', '2023-06-13 22:48:44', '2025-12-17 19:46:50', 'd5Dx1pO4', '6146559'), + (22, 2103, 'attending', '2023-06-19 20:31:51', '2025-12-17 19:46:50', 'd5Dx1pO4', '6149451'), + (22, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'd5Dx1pO4', '6150864'), + (22, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'd5Dx1pO4', '6155491'), + (22, 2111, 'not_attending', '2023-06-20 15:21:16', '2025-12-17 19:46:50', 'd5Dx1pO4', '6156121'), + (22, 2113, 'maybe', '2023-06-19 23:29:00', '2025-12-17 19:46:50', 'd5Dx1pO4', '6156215'), + (22, 2115, 'attending', '2023-06-23 20:43:58', '2025-12-17 19:46:50', 'd5Dx1pO4', '6161437'), + (22, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd5Dx1pO4', '6164417'), + (22, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd5Dx1pO4', '6166388'), + (22, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd5Dx1pO4', '6176439'), + (22, 2124, 'maybe', '2023-07-03 23:01:13', '2025-12-17 19:46:51', 'd5Dx1pO4', '6176988'), + (22, 2126, 'attending', '2023-06-30 00:12:28', '2025-12-17 19:46:51', 'd5Dx1pO4', '6177548'), + (22, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'd5Dx1pO4', '6182410'), + (22, 2129, 'maybe', '2023-07-03 00:49:07', '2025-12-17 19:46:51', 'd5Dx1pO4', '6182825'), + (22, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd5Dx1pO4', '6185812'), + (22, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd5Dx1pO4', '6187651'), + (22, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd5Dx1pO4', '6187963'), + (22, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd5Dx1pO4', '6187964'), + (22, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd5Dx1pO4', '6187966'), + (22, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd5Dx1pO4', '6187967'), + (22, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd5Dx1pO4', '6187969'), + (22, 2140, 'attending', '2023-07-08 17:27:15', '2025-12-17 19:46:52', 'd5Dx1pO4', '6188074'), + (22, 2142, 'maybe', '2023-07-09 20:43:48', '2025-12-17 19:46:52', 'd5Dx1pO4', '6333850'), + (22, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd5Dx1pO4', '6334878'), + (22, 2150, 'attending', '2023-07-09 22:30:36', '2025-12-17 19:46:52', 'd5Dx1pO4', '6335687'), + (22, 2153, 'maybe', '2023-07-15 02:36:22', '2025-12-17 19:46:52', 'd5Dx1pO4', '6337236'), + (22, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd5Dx1pO4', '6337970'), + (22, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd5Dx1pO4', '6338308'), + (22, 2157, 'maybe', '2023-07-15 13:16:08', '2025-12-17 19:46:52', 'd5Dx1pO4', '6338342'), + (22, 2159, 'attending', '2023-07-15 02:36:39', '2025-12-17 19:46:53', 'd5Dx1pO4', '6338355'), + (22, 2160, 'attending', '2023-07-15 02:37:03', '2025-12-17 19:46:54', 'd5Dx1pO4', '6338358'), + (22, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd5Dx1pO4', '6341710'), + (22, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd5Dx1pO4', '6342044'), + (22, 2167, 'maybe', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd5Dx1pO4', '6342298'), + (22, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'd5Dx1pO4', '6343294'), + (22, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd5Dx1pO4', '6347034'), + (22, 2177, 'maybe', '2023-08-02 14:32:01', '2025-12-17 19:46:55', 'd5Dx1pO4', '6347053'), + (22, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd5Dx1pO4', '6347056'), + (22, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd5Dx1pO4', '6353830'), + (22, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd5Dx1pO4', '6353831'), + (22, 2187, 'maybe', '2023-08-06 16:45:17', '2025-12-17 19:46:55', 'd5Dx1pO4', '6357559'), + (22, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd5Dx1pO4', '6357867'), + (22, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd5Dx1pO4', '6358652'), + (22, 2193, 'maybe', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'd5Dx1pO4', '6358668'), + (22, 2194, 'maybe', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'd5Dx1pO4', '6358669'), + (22, 2204, 'attending', '2023-08-10 11:00:50', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361542'), + (22, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd5Dx1pO4', '6361709'), + (22, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361710'), + (22, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361711'), + (22, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361712'), + (22, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd5Dx1pO4', '6361713'), + (22, 2231, 'maybe', '2023-08-21 13:04:30', '2025-12-17 19:46:55', 'd5Dx1pO4', '6374748'), + (22, 2232, 'maybe', '2023-08-22 03:07:11', '2025-12-17 19:46:55', 'd5Dx1pO4', '6374818'), + (22, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd5Dx1pO4', '6382573'), + (22, 2239, 'not_attending', '2023-09-01 14:57:04', '2025-12-17 19:46:56', 'd5Dx1pO4', '6387592'), + (22, 2240, 'attending', '2023-09-08 21:19:04', '2025-12-17 19:46:56', 'd5Dx1pO4', '6388603'), + (22, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd5Dx1pO4', '6388604'), + (22, 2242, 'attending', '2023-09-19 14:15:56', '2025-12-17 19:46:45', 'd5Dx1pO4', '6388606'), + (22, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd5Dx1pO4', '6394629'), + (22, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd5Dx1pO4', '6394631'), + (22, 2253, 'maybe', '2023-09-25 22:54:50', '2025-12-17 19:46:45', 'd5Dx1pO4', '6401811'), + (22, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd5Dx1pO4', '6440863'), + (22, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd5Dx1pO4', '6445440'), + (22, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd5Dx1pO4', '6453951'), + (22, 2280, 'maybe', '2023-10-10 15:42:16', '2025-12-17 19:46:46', 'd5Dx1pO4', '6455470'), + (22, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd5Dx1pO4', '6461696'), + (22, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd5Dx1pO4', '6462129'), + (22, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd5Dx1pO4', '6463218'), + (22, 2299, 'maybe', '2023-10-17 21:26:52', '2025-12-17 19:46:46', 'd5Dx1pO4', '6472181'), + (22, 2302, 'attending', '2023-10-23 12:03:53', '2025-12-17 19:46:46', 'd5Dx1pO4', '6482535'), + (22, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd5Dx1pO4', '6482693'), + (22, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd5Dx1pO4', '6484200'), + (22, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'd5Dx1pO4', '6484680'), + (22, 2310, 'attending', '2023-11-10 17:04:56', '2025-12-17 19:46:47', 'd5Dx1pO4', '6487709'), + (22, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd5Dx1pO4', '6507741'), + (22, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd5Dx1pO4', '6514659'), + (22, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd5Dx1pO4', '6514660'), + (22, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd5Dx1pO4', '6519103'), + (22, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd5Dx1pO4', '6535681'), + (22, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd5Dx1pO4', '6584747'), + (22, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd5Dx1pO4', '6587097'), + (22, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd5Dx1pO4', '6609022'), + (22, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd5Dx1pO4', '6632757'), + (22, 2377, 'attending', '2024-01-08 22:52:59', '2025-12-17 19:46:37', 'd5Dx1pO4', '6643448'), + (22, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd5Dx1pO4', '6644187'), + (22, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd5Dx1pO4', '6648951'), + (22, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd5Dx1pO4', '6648952'), + (22, 2388, 'attending', '2024-01-04 21:27:55', '2025-12-17 19:46:37', 'd5Dx1pO4', '6649244'), + (22, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd5Dx1pO4', '6655401'), + (22, 2397, 'attending', '2024-01-08 22:52:56', '2025-12-17 19:46:37', 'd5Dx1pO4', '6657379'), + (22, 2399, 'maybe', '2024-01-12 01:46:36', '2025-12-17 19:46:38', 'd5Dx1pO4', '6657583'), + (22, 2400, 'attending', '2024-01-11 20:53:49', '2025-12-17 19:46:37', 'd5Dx1pO4', '6659378'), + (22, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd5Dx1pO4', '6661585'), + (22, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd5Dx1pO4', '6661588'), + (22, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd5Dx1pO4', '6661589'), + (22, 2404, 'maybe', '2024-01-15 23:14:14', '2025-12-17 19:46:38', 'd5Dx1pO4', '6666858'), + (22, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd5Dx1pO4', '6699906'), + (22, 2408, 'attending', '2024-01-25 21:55:31', '2025-12-17 19:46:40', 'd5Dx1pO4', '6699907'), + (22, 2409, 'maybe', '2024-02-03 18:52:48', '2025-12-17 19:46:41', 'd5Dx1pO4', '6699909'), + (22, 2410, 'attending', '2024-02-07 12:44:39', '2025-12-17 19:46:41', 'd5Dx1pO4', '6699911'), + (22, 2411, 'attending', '2024-02-11 04:28:32', '2025-12-17 19:46:41', 'd5Dx1pO4', '6699913'), + (22, 2412, 'attending', '2024-02-11 04:28:40', '2025-12-17 19:46:43', 'd5Dx1pO4', '6700717'), + (22, 2414, 'maybe', '2024-01-20 18:35:30', '2025-12-17 19:46:40', 'd5Dx1pO4', '6701000'), + (22, 2415, 'maybe', '2024-01-20 18:35:32', '2025-12-17 19:46:40', 'd5Dx1pO4', '6701001'), + (22, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd5Dx1pO4', '6701109'), + (22, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd5Dx1pO4', '6705219'), + (22, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd5Dx1pO4', '6710153'), + (22, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd5Dx1pO4', '6711552'), + (22, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd5Dx1pO4', '6711553'), + (22, 2431, 'attending', '2024-02-02 00:28:39', '2025-12-17 19:46:41', 'd5Dx1pO4', '6712394'), + (22, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd5Dx1pO4', '6722688'), + (22, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd5Dx1pO4', '6730620'), + (22, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd5Dx1pO4', '6730642'), + (22, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd5Dx1pO4', '6740364'), + (22, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd5Dx1pO4', '6743829'), + (22, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd5Dx1pO4', '7030380'), + (22, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd5Dx1pO4', '7033677'), + (22, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd5Dx1pO4', '7035415'), + (22, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd5Dx1pO4', '7044715'), + (22, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd5Dx1pO4', '7050318'), + (22, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd5Dx1pO4', '7050319'), + (22, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd5Dx1pO4', '7050322'), + (22, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd5Dx1pO4', '7057804'), + (22, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'd5Dx1pO4', '7059866'), + (22, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd5Dx1pO4', '7072824'), + (22, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd5Dx1pO4', '7074348'), + (22, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd5Dx1pO4', '7074364'), + (22, 2529, 'maybe', '2024-05-23 17:43:46', '2025-12-17 19:46:35', 'd5Dx1pO4', '7074369'), + (22, 2537, 'attending', '2024-03-16 18:11:36', '2025-12-17 19:46:33', 'd5Dx1pO4', '7085484'), + (22, 2539, 'not_attending', '2024-04-02 17:12:51', '2025-12-17 19:46:33', 'd5Dx1pO4', '7085486'), + (22, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd5Dx1pO4', '7089267'), + (22, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd5Dx1pO4', '7098747'), + (22, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd5Dx1pO4', '7113468'), + (22, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd5Dx1pO4', '7114856'), + (22, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd5Dx1pO4', '7114951'), + (22, 2556, 'maybe', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd5Dx1pO4', '7114955'), + (22, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd5Dx1pO4', '7114956'), + (22, 2558, 'attending', '2024-05-01 23:23:40', '2025-12-17 19:46:35', 'd5Dx1pO4', '7114957'), + (22, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd5Dx1pO4', '7153615'), + (22, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd5Dx1pO4', '7159484'), + (22, 2585, 'maybe', '2024-04-24 20:41:23', '2025-12-17 19:46:34', 'd5Dx1pO4', '7175828'), + (22, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd5Dx1pO4', '7178446'), + (22, 2600, 'attending', '2024-04-28 21:55:21', '2025-12-17 19:46:35', 'd5Dx1pO4', '7196794'), + (22, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd5Dx1pO4', '7220467'), + (22, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd5Dx1pO4', '7240354'), + (22, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd5Dx1pO4', '7251633'), + (22, 2626, 'not_attending', '2024-05-14 20:08:34', '2025-12-17 19:46:35', 'd5Dx1pO4', '7264723'), + (22, 2627, 'maybe', '2024-05-25 12:55:49', '2025-12-17 19:46:35', 'd5Dx1pO4', '7264724'), + (22, 2628, 'not_attending', '2024-05-31 12:50:36', '2025-12-17 19:46:36', 'd5Dx1pO4', '7264725'), + (22, 2629, 'not_attending', '2024-06-03 23:15:38', '2025-12-17 19:46:28', 'd5Dx1pO4', '7264726'), + (22, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'd5Dx1pO4', '7302674'), + (22, 2667, 'maybe', '2024-06-05 18:07:17', '2025-12-17 19:46:36', 'd5Dx1pO4', '7307776'), + (22, 2678, 'maybe', '2024-06-15 20:56:24', '2025-12-17 19:46:28', 'd5Dx1pO4', '7319489'), + (22, 2688, 'maybe', '2024-06-24 22:22:16', '2025-12-17 19:46:29', 'd5Dx1pO4', '7324073'), + (22, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd5Dx1pO4', '7324074'), + (22, 2690, 'attending', '2024-07-07 02:55:55', '2025-12-17 19:46:30', 'd5Dx1pO4', '7324075'), + (22, 2691, 'attending', '2024-07-20 20:06:44', '2025-12-17 19:46:30', 'd5Dx1pO4', '7324076'), + (22, 2692, 'maybe', '2024-07-22 23:29:09', '2025-12-17 19:46:30', 'd5Dx1pO4', '7324077'), + (22, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd5Dx1pO4', '7324078'), + (22, 2694, 'attending', '2024-08-06 14:06:30', '2025-12-17 19:46:31', 'd5Dx1pO4', '7324079'), + (22, 2695, 'attending', '2024-08-17 19:56:41', '2025-12-17 19:46:31', 'd5Dx1pO4', '7324080'), + (22, 2696, 'attending', '2024-08-24 18:51:27', '2025-12-17 19:46:32', 'd5Dx1pO4', '7324081'), + (22, 2697, 'not_attending', '2024-08-26 12:32:31', '2025-12-17 19:46:32', 'd5Dx1pO4', '7324082'), + (22, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd5Dx1pO4', '7331457'), + (22, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'd5Dx1pO4', '7356752'), + (22, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd5Dx1pO4', '7363643'), + (22, 2767, 'attending', '2024-07-22 16:57:18', '2025-12-17 19:46:30', 'd5Dx1pO4', '7364726'), + (22, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd5Dx1pO4', '7368606'), + (22, 2785, 'attending', '2024-07-30 15:42:54', '2025-12-17 19:46:31', 'd5Dx1pO4', '7380988'), + (22, 2791, 'attending', '2024-08-06 23:20:56', '2025-12-17 19:46:31', 'd5Dx1pO4', '7390760'), + (22, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd5Dx1pO4', '7397462'), + (22, 2821, 'not_attending', '2024-10-06 02:30:13', '2025-12-17 19:46:26', 'd5Dx1pO4', '7424275'), + (22, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd5Dx1pO4', '7424276'), + (22, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd5Dx1pO4', '7432751'), + (22, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd5Dx1pO4', '7432752'), + (22, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd5Dx1pO4', '7432753'), + (22, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432754'), + (22, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432755'), + (22, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432756'), + (22, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432758'), + (22, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432759'), + (22, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd5Dx1pO4', '7433834'), + (22, 2862, 'maybe', '2024-10-01 03:40:45', '2025-12-17 19:46:25', 'd5Dx1pO4', '7470197'), + (22, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd5Dx1pO4', '7685613'), + (22, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd5Dx1pO4', '7688194'), + (22, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd5Dx1pO4', '7688196'), + (22, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd5Dx1pO4', '7688289'), + (22, 2912, 'maybe', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd5Dx1pO4', '7692763'), + (22, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd5Dx1pO4', '7697552'), + (22, 2915, 'attending', '2024-11-18 21:52:08', '2025-12-17 19:46:27', 'd5Dx1pO4', '7698151'), + (22, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd5Dx1pO4', '7699878'), + (22, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd5Dx1pO4', '7704043'), + (22, 2922, 'attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'd5Dx1pO4', '7710890'), + (22, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd5Dx1pO4', '7712467'), + (22, 2925, 'attending', '2024-12-13 17:20:39', '2025-12-17 19:46:21', 'd5Dx1pO4', '7713584'), + (22, 2926, 'not_attending', '2024-12-05 15:02:29', '2025-12-17 19:46:21', 'd5Dx1pO4', '7713585'), + (22, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd5Dx1pO4', '7713586'), + (22, 2929, 'not_attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'd5Dx1pO4', '7723465'), + (22, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd5Dx1pO4', '7738518'), + (22, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd5Dx1pO4', '7750636'), + (22, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd5Dx1pO4', '7796540'), + (22, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd5Dx1pO4', '7796541'), + (22, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd5Dx1pO4', '7796542'), + (22, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd5Dx1pO4', '7825913'), + (22, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd5Dx1pO4', '7826209'), + (22, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd5Dx1pO4', '7834742'), + (22, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd5Dx1pO4', '7842108'), + (22, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd5Dx1pO4', '7842902'), + (22, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd5Dx1pO4', '7842903'), + (22, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd5Dx1pO4', '7842904'), + (22, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd5Dx1pO4', '7842905'), + (22, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd5Dx1pO4', '7855719'), + (22, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd5Dx1pO4', '7860683'), + (22, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd5Dx1pO4', '7860684'), + (22, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd5Dx1pO4', '7866095'), + (22, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd5Dx1pO4', '7869170'), + (22, 3014, 'attending', '2025-04-05 14:24:10', '2025-12-17 19:46:20', 'd5Dx1pO4', '7869185'), + (22, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd5Dx1pO4', '7869188'), + (22, 3018, 'attending', '2025-04-12 16:20:21', '2025-12-17 19:46:20', 'd5Dx1pO4', '7869189'), + (22, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd5Dx1pO4', '7869201'), + (22, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd5Dx1pO4', '7877465'), + (22, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd5Dx1pO4', '7888250'), + (22, 3088, 'maybe', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd5Dx1pO4', '7904777'), + (22, 3094, 'not_attending', '2025-05-07 22:52:49', '2025-12-17 19:46:21', 'd5Dx1pO4', '8342292'), + (22, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd5Dx1pO4', '8349164'), + (22, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd5Dx1pO4', '8349545'), + (22, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd5Dx1pO4', '8353584'), + (22, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd5Dx1pO4', '8368028'), + (22, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd5Dx1pO4', '8368029'), + (22, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd5Dx1pO4', '8388462'), + (22, 3150, 'attending', '2025-06-19 16:35:21', '2025-12-17 19:46:15', 'd5Dx1pO4', '8393174'), + (22, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd5Dx1pO4', '8400273'), + (22, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd5Dx1pO4', '8400274'), + (22, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd5Dx1pO4', '8400275'), + (22, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd5Dx1pO4', '8400276'), + (22, 3158, 'not_attending', '2025-06-04 04:30:57', '2025-12-17 19:46:15', 'd5Dx1pO4', '8401408'), + (22, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd5Dx1pO4', '8404977'), + (22, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd5Dx1pO4', '8430783'), + (22, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd5Dx1pO4', '8430784'), + (22, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd5Dx1pO4', '8430799'), + (22, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd5Dx1pO4', '8430800'), + (22, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd5Dx1pO4', '8430801'), + (22, 3188, 'attending', '2025-07-09 14:30:12', '2025-12-17 19:46:17', 'd5Dx1pO4', '8438709'), + (22, 3190, 'maybe', '2025-07-17 14:09:21', '2025-12-17 19:46:17', 'd5Dx1pO4', '8443962'), + (22, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd5Dx1pO4', '8457738'), + (22, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd5Dx1pO4', '8459566'), + (22, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd5Dx1pO4', '8459567'), + (22, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd5Dx1pO4', '8461032'), + (22, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd5Dx1pO4', '8477877'), + (22, 3233, 'maybe', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd5Dx1pO4', '8485688'), + (22, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd5Dx1pO4', '8490587'), + (22, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd5Dx1pO4', '8493552'), + (22, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd5Dx1pO4', '8493553'), + (22, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd5Dx1pO4', '8493554'), + (22, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd5Dx1pO4', '8493555'), + (22, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd5Dx1pO4', '8493556'), + (22, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd5Dx1pO4', '8493557'), + (22, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd5Dx1pO4', '8493558'), + (22, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd5Dx1pO4', '8493559'), + (22, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd5Dx1pO4', '8493560'), + (22, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd5Dx1pO4', '8493561'), + (22, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd5Dx1pO4', '8493572'), + (22, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd5Dx1pO4', '8540725'), + (22, 3295, 'maybe', '2025-10-30 19:26:02', '2025-12-17 19:46:14', 'd5Dx1pO4', '8547541'), + (22, 3306, 'attending', '2025-12-13 04:43:31', '2025-12-17 19:46:11', 'd5Dx1pO4', '8550026'), + (22, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd5Dx1pO4', '8555421'), + (23, 2518, 'not_attending', '2024-07-22 04:59:47', '2025-12-17 19:46:30', 'AeBO3kP4', '7074358'), + (23, 2522, 'maybe', '2024-07-14 02:49:33', '2025-12-17 19:46:30', 'AeBO3kP4', '7074362'), + (23, 2524, 'attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AeBO3kP4', '7074364'), + (23, 2526, 'not_attending', '2024-07-31 22:07:49', '2025-12-17 19:46:31', 'AeBO3kP4', '7074366'), + (23, 2532, 'not_attending', '2024-09-02 14:21:06', '2025-12-17 19:46:32', 'AeBO3kP4', '7074383'), + (23, 2533, 'not_attending', '2024-08-18 02:25:04', '2025-12-17 19:46:32', 'AeBO3kP4', '7074384'), + (23, 2629, 'attending', '2024-06-05 15:32:41', '2025-12-17 19:46:28', 'AeBO3kP4', '7264726'), + (23, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'AeBO3kP4', '7302674'), + (23, 2663, 'attending', '2024-06-04 08:42:18', '2025-12-17 19:46:36', 'AeBO3kP4', '7303913'), + (23, 2668, 'attending', '2024-06-05 19:53:24', '2025-12-17 19:46:36', 'AeBO3kP4', '7308821'), + (23, 2678, 'attending', '2024-06-12 13:56:08', '2025-12-17 19:46:28', 'AeBO3kP4', '7319489'), + (23, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AeBO3kP4', '7324073'), + (23, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AeBO3kP4', '7324074'), + (23, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AeBO3kP4', '7324075'), + (23, 2691, 'attending', '2024-07-18 22:40:25', '2025-12-17 19:46:30', 'AeBO3kP4', '7324076'), + (23, 2692, 'maybe', '2024-07-26 07:32:06', '2025-12-17 19:46:30', 'AeBO3kP4', '7324077'), + (23, 2693, 'attending', '2024-07-21 03:55:25', '2025-12-17 19:46:31', 'AeBO3kP4', '7324078'), + (23, 2694, 'attending', '2024-08-08 22:07:02', '2025-12-17 19:46:31', 'AeBO3kP4', '7324079'), + (23, 2695, 'attending', '2024-08-13 01:55:25', '2025-12-17 19:46:31', 'AeBO3kP4', '7324080'), + (23, 2696, 'attending', '2024-08-18 02:25:13', '2025-12-17 19:46:32', 'AeBO3kP4', '7324081'), + (23, 2697, 'attending', '2024-08-30 07:14:05', '2025-12-17 19:46:32', 'AeBO3kP4', '7324082'), + (23, 2699, 'attending', '2024-06-12 18:54:59', '2025-12-17 19:46:28', 'AeBO3kP4', '7324385'), + (23, 2700, 'attending', '2024-06-14 14:31:33', '2025-12-17 19:46:28', 'AeBO3kP4', '7324388'), + (23, 2702, 'attending', '2024-06-13 02:08:38', '2025-12-17 19:46:28', 'AeBO3kP4', '7324867'), + (23, 2706, 'maybe', '2024-06-17 07:05:30', '2025-12-17 19:46:28', 'AeBO3kP4', '7324947'), + (23, 2711, 'attending', '2024-07-16 18:07:08', '2025-12-17 19:46:30', 'AeBO3kP4', '7326524'), + (23, 2712, 'attending', '2024-07-31 22:08:39', '2025-12-17 19:46:31', 'AeBO3kP4', '7326525'), + (23, 2721, 'maybe', '2024-06-19 03:03:53', '2025-12-17 19:46:29', 'AeBO3kP4', '7331456'), + (23, 2722, 'attending', '2024-07-08 02:33:26', '2025-12-17 19:46:29', 'AeBO3kP4', '7331457'), + (23, 2729, 'not_attending', '2024-06-21 21:29:55', '2025-12-17 19:46:29', 'AeBO3kP4', '7335092'), + (23, 2741, 'attending', '2024-06-30 23:33:56', '2025-12-17 19:46:30', 'AeBO3kP4', '7344592'), + (23, 2746, 'attending', '2024-07-11 20:49:48', '2025-12-17 19:46:29', 'AeBO3kP4', '7348713'), + (23, 2747, 'attending', '2024-07-16 13:42:40', '2025-12-17 19:46:30', 'AeBO3kP4', '7353587'), + (23, 2753, 'maybe', '2024-07-14 02:48:46', '2025-12-17 19:46:30', 'AeBO3kP4', '7355538'), + (23, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AeBO3kP4', '7356752'), + (23, 2755, 'attending', '2024-07-09 16:34:09', '2025-12-17 19:46:29', 'AeBO3kP4', '7357808'), + (23, 2757, 'maybe', '2024-07-14 02:48:04', '2025-12-17 19:46:30', 'AeBO3kP4', '7358733'), + (23, 2759, 'attending', '2024-07-12 17:06:56', '2025-12-17 19:46:30', 'AeBO3kP4', '7359624'), + (23, 2760, 'maybe', '2024-07-17 20:23:43', '2025-12-17 19:46:30', 'AeBO3kP4', '7359871'), + (23, 2766, 'attending', '2024-07-27 12:21:46', '2025-12-17 19:46:30', 'AeBO3kP4', '7363643'), + (23, 2767, 'attending', '2024-07-22 04:55:48', '2025-12-17 19:46:30', 'AeBO3kP4', '7364726'), + (23, 2768, 'maybe', '2024-07-18 03:25:42', '2025-12-17 19:46:30', 'AeBO3kP4', '7366031'), + (23, 2769, 'maybe', '2024-07-20 01:48:56', '2025-12-17 19:46:30', 'AeBO3kP4', '7366803'), + (23, 2771, 'attending', '2024-07-21 02:25:04', '2025-12-17 19:46:30', 'AeBO3kP4', '7368263'), + (23, 2772, 'attending', '2024-07-21 03:49:21', '2025-12-17 19:46:30', 'AeBO3kP4', '7368267'), + (23, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AeBO3kP4', '7368606'), + (23, 2777, 'maybe', '2024-07-24 22:09:28', '2025-12-17 19:46:30', 'AeBO3kP4', '7370870'), + (23, 2782, 'maybe', '2024-07-29 06:34:51', '2025-12-17 19:46:30', 'AeBO3kP4', '7376725'), + (23, 2783, 'attending', '2024-08-03 10:31:18', '2025-12-17 19:46:31', 'AeBO3kP4', '7379699'), + (23, 2791, 'not_attending', '2024-08-07 21:00:39', '2025-12-17 19:46:31', 'AeBO3kP4', '7390760'), + (23, 2792, 'attending', '2024-08-09 19:49:49', '2025-12-17 19:46:31', 'AeBO3kP4', '7390763'), + (23, 2798, 'maybe', '2024-08-12 16:09:40', '2025-12-17 19:46:31', 'AeBO3kP4', '7395910'), + (23, 2799, 'attending', '2024-08-12 14:13:33', '2025-12-17 19:46:31', 'AeBO3kP4', '7395922'), + (23, 2800, 'attending', '2024-08-16 03:51:12', '2025-12-17 19:46:31', 'AeBO3kP4', '7397405'), + (23, 2801, 'attending', '2024-08-13 22:01:27', '2025-12-17 19:46:32', 'AeBO3kP4', '7397462'), + (23, 2803, 'attending', '2024-08-14 14:37:12', '2025-12-17 19:46:32', 'AeBO3kP4', '7397869'), + (23, 2804, 'attending', '2024-08-16 20:08:57', '2025-12-17 19:46:32', 'AeBO3kP4', '7399270'), + (23, 2805, 'attending', '2024-08-20 13:51:05', '2025-12-17 19:46:32', 'AeBO3kP4', '7403620'), + (23, 2806, 'attending', '2024-09-14 16:55:56', '2025-12-17 19:46:25', 'AeBO3kP4', '7404888'), + (23, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AeBO3kP4', '7424275'), + (23, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AeBO3kP4', '7424276'), + (23, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AeBO3kP4', '7432751'), + (23, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AeBO3kP4', '7432752'), + (23, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AeBO3kP4', '7432753'), + (23, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AeBO3kP4', '7432754'), + (23, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AeBO3kP4', '7432755'), + (23, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AeBO3kP4', '7432756'), + (23, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AeBO3kP4', '7432758'), + (23, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AeBO3kP4', '7432759'), + (23, 2832, 'maybe', '2024-09-09 20:25:39', '2025-12-17 19:46:24', 'AeBO3kP4', '7433324'), + (23, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AeBO3kP4', '7433834'), + (23, 2835, 'maybe', '2024-09-11 15:31:28', '2025-12-17 19:46:24', 'AeBO3kP4', '7437354'), + (23, 2838, 'attending', '2024-09-19 17:59:01', '2025-12-17 19:46:25', 'AeBO3kP4', '7439182'), + (23, 2839, 'attending', '2024-09-22 18:02:30', '2025-12-17 19:46:25', 'AeBO3kP4', '7439262'), + (23, 2840, 'attending', '2024-09-16 07:28:26', '2025-12-17 19:46:25', 'AeBO3kP4', '7444429'), + (23, 2845, 'maybe', '2024-09-21 18:53:24', '2025-12-17 19:46:25', 'AeBO3kP4', '7452129'), + (23, 2847, 'attending', '2024-09-22 16:09:58', '2025-12-17 19:46:25', 'AeBO3kP4', '7452299'), + (23, 2849, 'attending', '2024-09-28 06:05:27', '2025-12-17 19:46:25', 'AeBO3kP4', '7457114'), + (23, 2850, 'attending', '2024-09-25 13:43:24', '2025-12-17 19:46:25', 'AeBO3kP4', '7457153'), + (23, 2858, 'attending', '2024-10-12 19:19:02', '2025-12-17 19:46:26', 'AeBO3kP4', '7469388'), + (23, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AeBO3kP4', '7470197'), + (23, 2865, 'maybe', '2024-11-01 16:25:13', '2025-12-17 19:46:26', 'AeBO3kP4', '7471200'), + (23, 2871, 'maybe', '2024-10-16 15:51:54', '2025-12-17 19:46:26', 'AeBO3kP4', '7480481'), + (23, 2874, 'attending', '2024-10-08 05:12:04', '2025-12-17 19:46:26', 'AeBO3kP4', '7482239'), + (23, 2878, 'maybe', '2024-10-16 12:16:07', '2025-12-17 19:46:26', 'AeBO3kP4', '7633857'), + (23, 2881, 'maybe', '2024-11-04 05:59:33', '2025-12-17 19:46:26', 'AeBO3kP4', '7644047'), + (23, 2883, 'maybe', '2024-10-19 04:28:00', '2025-12-17 19:46:26', 'AeBO3kP4', '7649157'), + (23, 2892, 'maybe', '2024-10-28 07:21:00', '2025-12-17 19:46:26', 'AeBO3kP4', '7672064'), + (23, 2893, 'attending', '2024-11-03 02:58:41', '2025-12-17 19:46:26', 'AeBO3kP4', '7672705'), + (23, 2895, 'not_attending', '2024-11-05 07:07:40', '2025-12-17 19:46:26', 'AeBO3kP4', '7682072'), + (23, 2896, 'not_attending', '2024-11-09 23:40:12', '2025-12-17 19:46:27', 'AeBO3kP4', '7683647'), + (23, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'AeBO3kP4', '7685613'), + (23, 2900, 'not_attending', '2024-11-09 23:37:22', '2025-12-17 19:46:26', 'AeBO3kP4', '7686090'), + (23, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AeBO3kP4', '7688194'), + (23, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AeBO3kP4', '7688196'), + (23, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AeBO3kP4', '7688289'), + (23, 2911, 'attending', '2024-11-11 04:01:12', '2025-12-17 19:46:27', 'AeBO3kP4', '7689876'), + (23, 2912, 'maybe', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'AeBO3kP4', '7692763'), + (23, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AeBO3kP4', '7697552'), + (23, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AeBO3kP4', '7699878'), + (23, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'AeBO3kP4', '7704043'), + (23, 2922, 'not_attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'AeBO3kP4', '7710890'), + (23, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AeBO3kP4', '7712467'), + (23, 2925, 'not_attending', '2024-12-02 21:55:54', '2025-12-17 19:46:21', 'AeBO3kP4', '7713584'), + (23, 2926, 'not_attending', '2024-12-02 21:55:47', '2025-12-17 19:46:21', 'AeBO3kP4', '7713585'), + (23, 2927, 'not_attending', '2024-12-02 21:55:58', '2025-12-17 19:46:22', 'AeBO3kP4', '7713586'), + (23, 2929, 'not_attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'AeBO3kP4', '7723465'), + (23, 2958, 'attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'AeBO3kP4', '7738518'), + (23, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AeBO3kP4', '7750636'), + (23, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AeBO3kP4', '7796540'), + (23, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AeBO3kP4', '7796541'), + (23, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AeBO3kP4', '7796542'), + (23, 2967, 'maybe', '2025-01-07 15:25:29', '2025-12-17 19:46:22', 'AeBO3kP4', '7797181'), + (23, 2975, 'maybe', '2025-01-25 22:42:14', '2025-12-17 19:46:22', 'AeBO3kP4', '7823615'), + (23, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AeBO3kP4', '7825913'), + (23, 2980, 'attending', '2025-01-29 04:45:56', '2025-12-17 19:46:22', 'AeBO3kP4', '7825920'), + (23, 2981, 'maybe', '2025-01-29 16:59:27', '2025-12-17 19:46:22', 'AeBO3kP4', '7826124'), + (23, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AeBO3kP4', '7826209'), + (23, 2983, 'maybe', '2025-02-01 18:09:43', '2025-12-17 19:46:23', 'AeBO3kP4', '7829499'), + (23, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AeBO3kP4', '7834742'), + (23, 2986, 'attending', '2025-02-04 18:22:32', '2025-12-17 19:46:23', 'AeBO3kP4', '7835405'), + (23, 2987, 'attending', '2025-02-07 14:30:12', '2025-12-17 19:46:23', 'AeBO3kP4', '7839568'), + (23, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AeBO3kP4', '7842108'), + (23, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AeBO3kP4', '7842902'), + (23, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AeBO3kP4', '7842903'), + (23, 2993, 'maybe', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AeBO3kP4', '7842904'), + (23, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AeBO3kP4', '7842905'), + (23, 2999, 'attending', '2025-02-13 02:45:14', '2025-12-17 19:46:23', 'AeBO3kP4', '7844784'), + (23, 3005, 'attending', '2025-02-19 00:20:33', '2025-12-17 19:46:24', 'AeBO3kP4', '7854604'), + (23, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AeBO3kP4', '7855719'), + (23, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AeBO3kP4', '7860683'), + (23, 3008, 'attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AeBO3kP4', '7860684'), + (23, 3009, 'maybe', '2025-02-27 18:35:23', '2025-12-17 19:46:18', 'AeBO3kP4', '7864019'), + (23, 3010, 'maybe', '2025-03-04 04:22:46', '2025-12-17 19:46:18', 'AeBO3kP4', '7864879'), + (23, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AeBO3kP4', '7866095'), + (23, 3013, 'attending', '2025-03-04 04:22:25', '2025-12-17 19:46:18', 'AeBO3kP4', '7869170'), + (23, 3015, 'not_attending', '2025-04-22 23:28:46', '2025-12-17 19:46:20', 'AeBO3kP4', '7869186'), + (23, 3016, 'attending', '2025-03-16 06:34:31', '2025-12-17 19:46:20', 'AeBO3kP4', '7869187'), + (23, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AeBO3kP4', '7869188'), + (23, 3018, 'attending', '2025-03-16 06:34:28', '2025-12-17 19:46:20', 'AeBO3kP4', '7869189'), + (23, 3028, 'attending', '2025-04-27 02:34:46', '2025-12-17 19:46:20', 'AeBO3kP4', '7869199'), + (23, 3029, 'attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AeBO3kP4', '7869201'), + (23, 3030, 'maybe', '2025-03-06 04:59:57', '2025-12-17 19:46:18', 'AeBO3kP4', '7872088'), + (23, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AeBO3kP4', '7877465'), + (23, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AeBO3kP4', '7878570'), + (23, 3036, 'attending', '2025-03-13 15:55:51', '2025-12-17 19:46:19', 'AeBO3kP4', '7880952'), + (23, 3037, 'attending', '2025-03-13 18:41:51', '2025-12-17 19:46:19', 'AeBO3kP4', '7880977'), + (23, 3039, 'attending', '2025-03-19 20:51:28', '2025-12-17 19:46:19', 'AeBO3kP4', '7881992'), + (23, 3041, 'not_attending', '2025-03-14 20:22:55', '2025-12-17 19:46:19', 'AeBO3kP4', '7881995'), + (23, 3046, 'maybe', '2025-04-08 10:43:56', '2025-12-17 19:46:20', 'AeBO3kP4', '7882692'), + (23, 3048, 'attending', '2025-04-19 19:19:47', '2025-12-17 19:46:20', 'AeBO3kP4', '7882694'), + (23, 3051, 'not_attending', '2025-03-20 22:07:16', '2025-12-17 19:46:19', 'AeBO3kP4', '7884023'), + (23, 3052, 'attending', '2025-03-20 22:07:22', '2025-12-17 19:46:19', 'AeBO3kP4', '7884024'), + (23, 3054, 'attending', '2025-03-17 03:44:16', '2025-12-17 19:46:19', 'AeBO3kP4', '7884168'), + (23, 3055, 'maybe', '2025-03-21 05:35:11', '2025-12-17 19:46:19', 'AeBO3kP4', '7888118'), + (23, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AeBO3kP4', '7888250'), + (23, 3057, 'attending', '2025-03-24 18:09:58', '2025-12-17 19:46:19', 'AeBO3kP4', '7890059'), + (23, 3062, 'maybe', '2025-03-29 23:02:11', '2025-12-17 19:46:19', 'AeBO3kP4', '7892738'), + (23, 3070, 'not_attending', '2025-04-06 06:24:02', '2025-12-17 19:46:20', 'AeBO3kP4', '7894829'), + (23, 3075, 'maybe', '2025-04-18 00:55:26', '2025-12-17 19:46:20', 'AeBO3kP4', '7898896'), + (23, 3085, 'maybe', '2025-04-08 19:18:38', '2025-12-17 19:46:20', 'AeBO3kP4', '7903688'), + (23, 3087, 'maybe', '2025-04-14 18:17:49', '2025-12-17 19:46:20', 'AeBO3kP4', '7903856'), + (23, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AeBO3kP4', '7904777'), + (23, 3090, 'not_attending', '2025-04-16 17:06:55', '2025-12-17 19:46:20', 'AeBO3kP4', '7914315'), + (23, 3091, 'attending', '2025-04-17 21:11:29', '2025-12-17 19:46:20', 'AeBO3kP4', '8340289'), + (23, 3094, 'attending', '2025-04-25 22:17:19', '2025-12-17 19:46:21', 'AeBO3kP4', '8342292'), + (23, 3095, 'not_attending', '2025-05-03 19:47:56', '2025-12-17 19:46:20', 'AeBO3kP4', '8342293'), + (23, 3097, 'not_attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'AeBO3kP4', '8342993'), + (23, 3102, 'maybe', '2025-04-27 02:34:55', '2025-12-17 19:46:20', 'AeBO3kP4', '8346008'), + (23, 3104, 'attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AeBO3kP4', '8349164'), + (23, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AeBO3kP4', '8349545'), + (23, 3106, 'not_attending', '2025-04-29 13:57:48', '2025-12-17 19:46:20', 'AeBO3kP4', '8349552'), + (23, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AeBO3kP4', '8353584'), + (23, 3114, 'attending', '2025-05-02 21:34:04', '2025-12-17 19:46:20', 'AeBO3kP4', '8357180'), + (23, 3123, 'not_attending', '2025-05-08 19:44:27', '2025-12-17 19:46:21', 'AeBO3kP4', '8363523'), + (23, 3124, 'maybe', '2025-05-09 21:17:41', '2025-12-17 19:46:21', 'AeBO3kP4', '8363566'), + (23, 3126, 'attending', '2025-05-12 09:08:59', '2025-12-17 19:46:21', 'AeBO3kP4', '8365614'), + (23, 3131, 'not_attending', '2025-05-13 04:27:18', '2025-12-17 19:46:21', 'AeBO3kP4', '8368028'), + (23, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AeBO3kP4', '8368029'), + (23, 3136, 'attending', '2025-05-19 03:07:10', '2025-12-17 19:46:21', 'AeBO3kP4', '8374152'), + (23, 3137, 'attending', '2025-05-19 03:04:55', '2025-12-17 19:46:21', 'AeBO3kP4', '8374153'), + (23, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AeBO3kP4', '8388462'), + (23, 3150, 'attending', '2025-06-15 00:27:53', '2025-12-17 19:46:15', 'AeBO3kP4', '8393174'), + (23, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AeBO3kP4', '8400273'), + (23, 3154, 'attending', '2025-06-15 00:32:52', '2025-12-17 19:46:15', 'AeBO3kP4', '8400274'), + (23, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AeBO3kP4', '8400275'), + (23, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AeBO3kP4', '8400276'), + (23, 3160, 'not_attending', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'AeBO3kP4', '8401411'), + (23, 3161, 'not_attending', '2025-06-04 09:04:49', '2025-12-17 19:46:15', 'AeBO3kP4', '8401412'), + (23, 3165, 'attending', '2025-06-07 20:48:42', '2025-12-17 19:46:14', 'AeBO3kP4', '8404220'), + (23, 3168, 'maybe', '2025-06-20 00:54:49', '2025-12-17 19:46:15', 'AeBO3kP4', '8404522'), + (23, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AeBO3kP4', '8404977'), + (23, 3181, 'maybe', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AeBO3kP4', '8430783'), + (23, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AeBO3kP4', '8430784'), + (23, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AeBO3kP4', '8430799'), + (23, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AeBO3kP4', '8430800'), + (23, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AeBO3kP4', '8430801'), + (23, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AeBO3kP4', '8438709'), + (23, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AeBO3kP4', '8457738'), + (23, 3195, 'attending', '2025-08-06 00:48:02', '2025-12-17 19:46:17', 'AeBO3kP4', '8458118'), + (23, 3196, 'attending', '2025-08-12 05:45:20', '2025-12-17 19:46:17', 'AeBO3kP4', '8458543'), + (23, 3198, 'attending', '2025-08-16 22:05:08', '2025-12-17 19:46:18', 'AeBO3kP4', '8459268'), + (23, 3200, 'maybe', '2025-07-19 18:56:36', '2025-12-17 19:46:17', 'AeBO3kP4', '8459566'), + (23, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AeBO3kP4', '8459567'), + (23, 3203, 'attending', '2025-07-20 02:36:20', '2025-12-17 19:46:17', 'AeBO3kP4', '8461032'), + (23, 3210, 'maybe', '2025-08-27 09:35:50', '2025-12-17 19:46:18', 'AeBO3kP4', '8471162'), + (23, 3211, 'maybe', '2025-08-08 15:54:45', '2025-12-17 19:46:17', 'AeBO3kP4', '8477785'), + (23, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AeBO3kP4', '8477877'), + (23, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AeBO3kP4', '8485688'), + (23, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AeBO3kP4', '8490587'), + (23, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AeBO3kP4', '8493552'), + (23, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AeBO3kP4', '8493553'), + (23, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AeBO3kP4', '8493554'), + (23, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AeBO3kP4', '8493555'), + (23, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AeBO3kP4', '8493556'), + (23, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AeBO3kP4', '8493557'), + (23, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AeBO3kP4', '8493558'), + (23, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AeBO3kP4', '8493559'), + (23, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AeBO3kP4', '8493560'), + (23, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AeBO3kP4', '8493561'), + (23, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AeBO3kP4', '8493572'), + (23, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AeBO3kP4', '8540725'), + (23, 3292, 'attending', '2025-10-15 05:53:19', '2025-12-17 19:46:14', 'AeBO3kP4', '8543835'), + (23, 3293, 'not_attending', '2025-10-15 09:51:41', '2025-12-17 19:46:14', 'AeBO3kP4', '8543836'), + (23, 3295, 'attending', '2025-11-01 15:05:05', '2025-12-17 19:46:14', 'AeBO3kP4', '8547541'), + (23, 3308, 'maybe', '2025-11-03 01:42:24', '2025-12-17 19:46:14', 'AeBO3kP4', '8550408'), + (23, 3309, 'attending', '2025-11-18 00:40:25', '2025-12-17 19:46:14', 'AeBO3kP4', '8550409'), + (23, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AeBO3kP4', '8555421'), + (24, 3241, 'attending', '2025-10-09 04:29:24', '2025-12-17 19:46:13', 'mL2QO3a4', '8493557'), + (24, 3242, 'attending', '2025-10-25 04:48:07', '2025-12-17 19:46:14', 'mL2QO3a4', '8493558'), + (24, 3244, 'attending', '2025-10-02 05:08:53', '2025-12-17 19:46:13', 'mL2QO3a4', '8493560'), + (24, 3253, 'attending', '2025-10-25 22:26:44', '2025-12-17 19:46:14', 'mL2QO3a4', '8493572'), + (24, 3278, 'attending', '2025-09-30 14:58:18', '2025-12-17 19:46:13', 'mL2QO3a4', '8535533'), + (24, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mL2QO3a4', '8540725'), + (24, 3289, 'attending', '2025-10-25 04:49:41', '2025-12-17 19:46:14', 'mL2QO3a4', '8542939'), + (24, 3295, 'attending', '2025-10-29 03:03:24', '2025-12-17 19:46:14', 'mL2QO3a4', '8547541'), + (24, 3300, 'attending', '2025-11-08 00:23:40', '2025-12-17 19:46:14', 'mL2QO3a4', '8549145'), + (24, 3304, 'attending', '2025-11-20 00:49:32', '2025-12-17 19:46:14', 'mL2QO3a4', '8550024'), + (24, 3305, 'attending', '2025-12-04 04:30:21', '2025-12-17 19:46:11', 'mL2QO3a4', '8550025'), + (24, 3306, 'attending', '2025-12-13 06:37:30', '2025-12-17 19:46:11', 'mL2QO3a4', '8550026'), + (24, 3307, 'not_attending', '2025-12-15 06:36:36', '2025-12-17 19:46:11', 'mL2QO3a4', '8550027'), + (24, 3308, 'attending', '2025-11-11 07:39:38', '2025-12-17 19:46:14', 'mL2QO3a4', '8550408'), + (24, 3309, 'not_attending', '2025-11-17 08:07:10', '2025-12-17 19:46:14', 'mL2QO3a4', '8550409'), + (24, 3320, 'attending', '2025-11-13 00:50:04', '2025-12-17 19:46:14', 'mL2QO3a4', '8555219'), + (24, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mL2QO3a4', '8555421'), + (24, 3332, 'attending', '2025-12-04 04:30:04', '2025-12-17 19:46:11', 'mL2QO3a4', '8562248'), + (25, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4WB6BgnA', '6482693'), + (25, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4WB6BgnA', '6484200'), + (25, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4WB6BgnA', '6507741'), + (25, 2322, 'attending', '2023-11-14 02:57:13', '2025-12-17 19:46:48', '4WB6BgnA', '6514659'), + (25, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4WB6BgnA', '6514660'), + (25, 2324, 'attending', '2023-12-08 14:54:09', '2025-12-17 19:46:49', '4WB6BgnA', '6514662'), + (25, 2325, 'attending', '2023-12-05 03:01:35', '2025-12-17 19:46:36', '4WB6BgnA', '6514663'), + (25, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4WB6BgnA', '6519103'), + (25, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4WB6BgnA', '6535681'), + (25, 2340, 'attending', '2023-11-15 03:54:46', '2025-12-17 19:46:48', '4WB6BgnA', '6540279'), + (25, 2342, 'attending', '2023-11-13 19:45:22', '2025-12-17 19:46:47', '4WB6BgnA', '6545076'), + (25, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4WB6BgnA', '6584747'), + (25, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4WB6BgnA', '6587097'), + (25, 2353, 'attending', '2023-11-28 00:36:17', '2025-12-17 19:46:48', '4WB6BgnA', '6588894'), + (25, 2355, 'attending', '2023-11-28 00:35:55', '2025-12-17 19:46:49', '4WB6BgnA', '6593339'), + (25, 2356, 'attending', '2023-11-28 00:37:13', '2025-12-17 19:46:36', '4WB6BgnA', '6593340'), + (25, 2357, 'not_attending', '2023-11-28 00:37:21', '2025-12-17 19:46:36', '4WB6BgnA', '6593341'), + (25, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4WB6BgnA', '6609022'), + (25, 2373, 'attending', '2024-01-02 03:16:09', '2025-12-17 19:46:38', '4WB6BgnA', '6632678'), + (25, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4WB6BgnA', '6632757'), + (25, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4WB6BgnA', '6644187'), + (25, 2382, 'attending', '2024-01-02 03:16:44', '2025-12-17 19:46:37', '4WB6BgnA', '6646401'), + (25, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4WB6BgnA', '6648951'), + (25, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4WB6BgnA', '6648952'), + (25, 2388, 'attending', '2024-01-06 23:36:55', '2025-12-17 19:46:37', '4WB6BgnA', '6649244'), + (25, 2392, 'attending', '2024-01-05 01:34:52', '2025-12-17 19:46:37', '4WB6BgnA', '6654412'), + (25, 2393, 'attending', '2024-01-05 01:32:33', '2025-12-17 19:46:38', '4WB6BgnA', '6654468'), + (25, 2394, 'maybe', '2024-01-17 01:29:14', '2025-12-17 19:46:38', '4WB6BgnA', '6654470'), + (25, 2395, 'attending', '2024-01-05 01:32:37', '2025-12-17 19:46:38', '4WB6BgnA', '6654471'), + (25, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4WB6BgnA', '6655401'), + (25, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4WB6BgnA', '6661585'), + (25, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4WB6BgnA', '6661588'), + (25, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4WB6BgnA', '6661589'), + (25, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4WB6BgnA', '6699906'), + (25, 2408, 'attending', '2024-01-25 00:34:13', '2025-12-17 19:46:40', '4WB6BgnA', '6699907'), + (25, 2409, 'attending', '2024-01-31 11:24:22', '2025-12-17 19:46:41', '4WB6BgnA', '6699909'), + (25, 2410, 'attending', '2024-02-07 00:22:39', '2025-12-17 19:46:41', '4WB6BgnA', '6699911'), + (25, 2411, 'attending', '2024-02-14 10:44:01', '2025-12-17 19:46:41', '4WB6BgnA', '6699913'), + (25, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4WB6BgnA', '6701109'), + (25, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4WB6BgnA', '6705219'), + (25, 2426, 'maybe', '2024-01-21 07:11:03', '2025-12-17 19:46:40', '4WB6BgnA', '6705569'), + (25, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4WB6BgnA', '6710153'), + (25, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4WB6BgnA', '6711552'), + (25, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4WB6BgnA', '6711553'), + (25, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4WB6BgnA', '6722688'), + (25, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4WB6BgnA', '6730620'), + (25, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4WB6BgnA', '6730642'), + (25, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4WB6BgnA', '6740364'), + (25, 2455, 'maybe', '2024-02-08 14:49:38', '2025-12-17 19:46:41', '4WB6BgnA', '6741034'), + (25, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4WB6BgnA', '6743829'), + (25, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4WB6BgnA', '7030380'), + (25, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4WB6BgnA', '7033677'), + (25, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4WB6BgnA', '7035415'), + (25, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4WB6BgnA', '7044715'), + (25, 2482, 'maybe', '2024-03-07 01:05:04', '2025-12-17 19:46:44', '4WB6BgnA', '7044719'), + (25, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4WB6BgnA', '7050318'), + (25, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4WB6BgnA', '7050319'), + (25, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4WB6BgnA', '7050322'), + (25, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4WB6BgnA', '7057804'), + (25, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', '4WB6BgnA', '7059866'), + (25, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4WB6BgnA', '7072824'), + (25, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4WB6BgnA', '7074348'), + (25, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4WB6BgnA', '7074364'), + (25, 2525, 'maybe', '2024-06-13 20:48:50', '2025-12-17 19:46:28', '4WB6BgnA', '7074365'), + (25, 2536, 'maybe', '2024-03-16 05:35:49', '2025-12-17 19:46:33', '4WB6BgnA', '7077689'), + (25, 2537, 'attending', '2024-03-23 17:26:19', '2025-12-17 19:46:33', '4WB6BgnA', '7085484'), + (25, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4WB6BgnA', '7089267'), + (25, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4WB6BgnA', '7098747'), + (25, 2553, 'maybe', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4WB6BgnA', '7113468'), + (25, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4WB6BgnA', '7114856'), + (25, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4WB6BgnA', '7114951'), + (25, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4WB6BgnA', '7114955'), + (25, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4WB6BgnA', '7114956'), + (25, 2558, 'attending', '2024-04-16 20:44:50', '2025-12-17 19:46:35', '4WB6BgnA', '7114957'), + (25, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4WB6BgnA', '7153615'), + (25, 2571, 'maybe', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4WB6BgnA', '7159484'), + (25, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4WB6BgnA', '7178446'), + (25, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4WB6BgnA', '7220467'), + (25, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4WB6BgnA', '7240354'), + (25, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4WB6BgnA', '7251633'), + (25, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4WB6BgnA', '7263048'), + (25, 2626, 'attending', '2024-05-18 00:03:40', '2025-12-17 19:46:35', '4WB6BgnA', '7264723'), + (25, 2627, 'attending', '2024-05-22 02:58:08', '2025-12-17 19:46:35', '4WB6BgnA', '7264724'), + (25, 2628, 'attending', '2024-05-28 22:47:47', '2025-12-17 19:46:36', '4WB6BgnA', '7264725'), + (25, 2629, 'attending', '2024-05-28 22:47:49', '2025-12-17 19:46:28', '4WB6BgnA', '7264726'), + (25, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4WB6BgnA', '7302674'), + (25, 2671, 'attending', '2024-06-09 23:21:28', '2025-12-17 19:46:28', '4WB6BgnA', '7318256'), + (25, 2678, 'attending', '2024-06-12 20:13:19', '2025-12-17 19:46:28', '4WB6BgnA', '7319489'), + (25, 2679, 'attending', '2024-06-17 20:59:24', '2025-12-17 19:46:29', '4WB6BgnA', '7319490'), + (25, 2683, 'not_attending', '2024-06-11 01:23:18', '2025-12-17 19:46:28', '4WB6BgnA', '7321978'), + (25, 2687, 'attending', '2024-06-11 21:11:55', '2025-12-17 19:46:28', '4WB6BgnA', '7324019'), + (25, 2688, 'attending', '2024-06-25 22:36:02', '2025-12-17 19:46:29', '4WB6BgnA', '7324073'), + (25, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4WB6BgnA', '7324074'), + (25, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4WB6BgnA', '7324075'), + (25, 2691, 'attending', '2024-07-17 20:29:08', '2025-12-17 19:46:30', '4WB6BgnA', '7324076'), + (25, 2692, 'not_attending', '2024-07-21 02:54:52', '2025-12-17 19:46:30', '4WB6BgnA', '7324077'), + (25, 2693, 'maybe', '2024-08-01 02:56:36', '2025-12-17 19:46:31', '4WB6BgnA', '7324078'), + (25, 2694, 'attending', '2024-08-09 21:25:56', '2025-12-17 19:46:31', '4WB6BgnA', '7324079'), + (25, 2695, 'attending', '2024-08-17 04:06:10', '2025-12-17 19:46:31', '4WB6BgnA', '7324080'), + (25, 2696, 'attending', '2024-08-24 18:49:42', '2025-12-17 19:46:32', '4WB6BgnA', '7324081'), + (25, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4WB6BgnA', '7324082'), + (25, 2698, 'attending', '2024-09-04 01:56:32', '2025-12-17 19:46:24', '4WB6BgnA', '7324083'), + (25, 2702, 'attending', '2024-06-13 00:55:24', '2025-12-17 19:46:28', '4WB6BgnA', '7324867'), + (25, 2705, 'attending', '2024-06-13 20:49:43', '2025-12-17 19:46:29', '4WB6BgnA', '7324944'), + (25, 2706, 'attending', '2024-06-19 23:09:26', '2025-12-17 19:46:28', '4WB6BgnA', '7324947'), + (25, 2707, 'attending', '2024-06-13 20:49:24', '2025-12-17 19:46:28', '4WB6BgnA', '7324952'), + (25, 2719, 'attending', '2024-06-23 18:17:40', '2025-12-17 19:46:29', '4WB6BgnA', '7331305'), + (25, 2720, 'attending', '2024-06-18 20:57:01', '2025-12-17 19:46:28', '4WB6BgnA', '7331436'), + (25, 2721, 'attending', '2024-06-18 23:07:10', '2025-12-17 19:46:29', '4WB6BgnA', '7331456'), + (25, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4WB6BgnA', '7331457'), + (25, 2724, 'attending', '2024-06-26 21:18:39', '2025-12-17 19:46:29', '4WB6BgnA', '7332562'), + (25, 2726, 'attending', '2024-06-19 19:17:45', '2025-12-17 19:46:29', '4WB6BgnA', '7332853'), + (25, 2733, 'attending', '2024-06-26 00:30:49', '2025-12-17 19:46:29', '4WB6BgnA', '7338853'), + (25, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4WB6BgnA', '7356752'), + (25, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', '4WB6BgnA', '7363595'), + (25, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4WB6BgnA', '7363643'), + (25, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4WB6BgnA', '7368606'), + (25, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4WB6BgnA', '7397462'), + (25, 2821, 'not_attending', '2024-10-12 00:45:48', '2025-12-17 19:46:26', '4WB6BgnA', '7424275'), + (25, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4WB6BgnA', '7424276'), + (25, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4WB6BgnA', '7432751'), + (25, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4WB6BgnA', '7432752'), + (25, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4WB6BgnA', '7432753'), + (25, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4WB6BgnA', '7432754'), + (25, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4WB6BgnA', '7432755'), + (25, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4WB6BgnA', '7432756'), + (25, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4WB6BgnA', '7432758'), + (25, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4WB6BgnA', '7432759'), + (25, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4WB6BgnA', '7433834'), + (25, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4WB6BgnA', '7470197'), + (25, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4WB6BgnA', '7685613'), + (25, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4WB6BgnA', '7688194'), + (25, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4WB6BgnA', '7688196'), + (25, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4WB6BgnA', '7688289'), + (25, 2909, 'attending', '2024-11-10 21:20:50', '2025-12-17 19:46:27', '4WB6BgnA', '7689771'), + (25, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4WB6BgnA', '7692763'), + (25, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4WB6BgnA', '7697552'), + (25, 2916, 'attending', '2024-11-20 00:53:53', '2025-12-17 19:46:27', '4WB6BgnA', '7699006'), + (25, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4WB6BgnA', '7699878'), + (25, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4WB6BgnA', '7704043'), + (25, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4WB6BgnA', '7712467'), + (25, 2925, 'attending', '2024-12-12 01:17:45', '2025-12-17 19:46:21', '4WB6BgnA', '7713584'), + (25, 2926, 'maybe', '2024-12-07 05:00:27', '2025-12-17 19:46:21', '4WB6BgnA', '7713585'), + (25, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4WB6BgnA', '7713586'), + (25, 2951, 'attending', '2024-12-12 01:17:41', '2025-12-17 19:46:21', '4WB6BgnA', '7729509'), + (25, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4WB6BgnA', '7738518'), + (25, 2962, 'maybe', '2024-12-27 01:44:23', '2025-12-17 19:46:22', '4WB6BgnA', '7750632'), + (25, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4WB6BgnA', '7750636'), + (25, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4WB6BgnA', '7796540'), + (25, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4WB6BgnA', '7796541'), + (25, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4WB6BgnA', '7796542'), + (25, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4WB6BgnA', '7825913'), + (25, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4WB6BgnA', '7826209'), + (25, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4WB6BgnA', '7834742'), + (25, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '4WB6BgnA', '7842108'), + (25, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4WB6BgnA', '7842902'), + (25, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4WB6BgnA', '7842903'), + (25, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4WB6BgnA', '7842904'), + (25, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4WB6BgnA', '7842905'), + (25, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4WB6BgnA', '7855719'), + (25, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4WB6BgnA', '7860683'), + (25, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4WB6BgnA', '7860684'), + (25, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4WB6BgnA', '7866095'), + (25, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4WB6BgnA', '7869170'), + (25, 3014, 'attending', '2025-03-31 22:52:46', '2025-12-17 19:46:19', '4WB6BgnA', '7869185'), + (25, 3015, 'attending', '2025-04-25 01:43:06', '2025-12-17 19:46:20', '4WB6BgnA', '7869186'), + (25, 3016, 'attending', '2025-04-16 22:57:34', '2025-12-17 19:46:20', '4WB6BgnA', '7869187'), + (25, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4WB6BgnA', '7869188'), + (25, 3018, 'attending', '2025-04-09 00:05:04', '2025-12-17 19:46:20', '4WB6BgnA', '7869189'), + (25, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4WB6BgnA', '7869201'), + (25, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4WB6BgnA', '7877465'), + (25, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4WB6BgnA', '7878570'), + (25, 3042, 'attending', '2025-03-15 02:13:04', '2025-12-17 19:46:19', '4WB6BgnA', '7882467'), + (25, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4WB6BgnA', '7888250'), + (25, 3060, 'not_attending', '2025-03-27 14:16:18', '2025-12-17 19:46:19', '4WB6BgnA', '7892589'), + (25, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', '4WB6BgnA', '7903852'), + (25, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4WB6BgnA', '7904777'), + (25, 3095, 'attending', '2025-04-27 22:56:37', '2025-12-17 19:46:20', '4WB6BgnA', '8342293'), + (25, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4WB6BgnA', '8349164'), + (25, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4WB6BgnA', '8349545'), + (25, 3107, 'attending', '2025-04-27 23:26:09', '2025-12-17 19:46:20', '4WB6BgnA', '8350107'), + (25, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4WB6BgnA', '8353584'), + (25, 3127, 'maybe', '2025-05-13 01:23:42', '2025-12-17 19:46:21', '4WB6BgnA', '8365615'), + (25, 3131, 'attending', '2025-05-15 00:40:30', '2025-12-17 19:46:21', '4WB6BgnA', '8368028'), + (25, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4WB6BgnA', '8368029'), + (25, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4WB6BgnA', '8388462'), + (25, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4WB6BgnA', '8400273'), + (25, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4WB6BgnA', '8400274'), + (25, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4WB6BgnA', '8400275'), + (25, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4WB6BgnA', '8400276'), + (25, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4WB6BgnA', '8404977'), + (25, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4WB6BgnA', '8430783'), + (25, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4WB6BgnA', '8430784'), + (25, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4WB6BgnA', '8430799'), + (25, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4WB6BgnA', '8430800'), + (25, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4WB6BgnA', '8430801'), + (25, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4WB6BgnA', '8438709'), + (25, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4WB6BgnA', '8457738'), + (25, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4WB6BgnA', '8459566'), + (25, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4WB6BgnA', '8459567'), + (25, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4WB6BgnA', '8461032'), + (25, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4WB6BgnA', '8477877'), + (25, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4WB6BgnA', '8485688'), + (25, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4WB6BgnA', '8490587'), + (25, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4WB6BgnA', '8493552'), + (25, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4WB6BgnA', '8493553'), + (25, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4WB6BgnA', '8493554'), + (25, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4WB6BgnA', '8493555'), + (25, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4WB6BgnA', '8493556'), + (25, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4WB6BgnA', '8493557'), + (25, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4WB6BgnA', '8493558'), + (25, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4WB6BgnA', '8493559'), + (25, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4WB6BgnA', '8493560'), + (25, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4WB6BgnA', '8493561'), + (25, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4WB6BgnA', '8493572'), + (25, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '4WB6BgnA', '8540725'), + (25, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4WB6BgnA', '8555421'), + (26, 2518, 'attending', '2024-07-21 03:04:21', '2025-12-17 19:46:30', 'dJZQ6EMd', '7074358'), + (26, 2522, 'attending', '2024-07-17 01:59:16', '2025-12-17 19:46:30', 'dJZQ6EMd', '7074362'), + (26, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJZQ6EMd', '7074364'), + (26, 2527, 'maybe', '2024-06-26 01:20:50', '2025-12-17 19:46:29', 'dJZQ6EMd', '7074367'), + (26, 2531, 'not_attending', '2024-08-28 22:14:48', '2025-12-17 19:46:32', 'dJZQ6EMd', '7074378'), + (26, 2661, 'attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'dJZQ6EMd', '7302674'), + (26, 2678, 'attending', '2024-06-14 21:55:17', '2025-12-17 19:46:28', 'dJZQ6EMd', '7319489'), + (26, 2679, 'attending', '2024-06-20 01:22:14', '2025-12-17 19:46:29', 'dJZQ6EMd', '7319490'), + (26, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324073'), + (26, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324074'), + (26, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJZQ6EMd', '7324075'), + (26, 2691, 'attending', '2024-07-14 01:46:47', '2025-12-17 19:46:30', 'dJZQ6EMd', '7324076'), + (26, 2692, 'attending', '2024-07-21 18:01:56', '2025-12-17 19:46:30', 'dJZQ6EMd', '7324077'), + (26, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJZQ6EMd', '7324078'), + (26, 2694, 'attending', '2024-08-07 01:27:24', '2025-12-17 19:46:31', 'dJZQ6EMd', '7324079'), + (26, 2697, 'attending', '2024-08-27 16:00:01', '2025-12-17 19:46:32', 'dJZQ6EMd', '7324082'), + (26, 2698, 'attending', '2024-09-03 19:42:37', '2025-12-17 19:46:24', 'dJZQ6EMd', '7324083'), + (26, 2700, 'attending', '2024-06-14 21:46:57', '2025-12-17 19:46:28', 'dJZQ6EMd', '7324388'), + (26, 2701, 'maybe', '2024-06-28 18:32:14', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324391'), + (26, 2702, 'attending', '2024-06-13 18:33:33', '2025-12-17 19:46:28', 'dJZQ6EMd', '7324867'), + (26, 2705, 'not_attending', '2024-06-30 15:53:32', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324944'), + (26, 2706, 'attending', '2024-06-19 00:51:19', '2025-12-17 19:46:28', 'dJZQ6EMd', '7324947'), + (26, 2719, 'attending', '2024-06-20 01:25:06', '2025-12-17 19:46:29', 'dJZQ6EMd', '7331305'), + (26, 2720, 'not_attending', '2024-06-18 21:05:50', '2025-12-17 19:46:28', 'dJZQ6EMd', '7331436'), + (26, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dJZQ6EMd', '7331457'), + (26, 2723, 'maybe', '2024-06-21 14:09:00', '2025-12-17 19:46:29', 'dJZQ6EMd', '7332389'), + (26, 2724, 'maybe', '2024-06-25 23:23:58', '2025-12-17 19:46:29', 'dJZQ6EMd', '7332562'), + (26, 2728, 'attending', '2024-06-21 22:30:15', '2025-12-17 19:46:29', 'dJZQ6EMd', '7334124'), + (26, 2733, 'attending', '2024-06-26 01:21:16', '2025-12-17 19:46:29', 'dJZQ6EMd', '7338853'), + (26, 2747, 'attending', '2024-07-17 22:52:00', '2025-12-17 19:46:30', 'dJZQ6EMd', '7353587'), + (26, 2749, 'attending', '2024-07-09 13:36:13', '2025-12-17 19:46:29', 'dJZQ6EMd', '7355496'), + (26, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJZQ6EMd', '7356752'), + (26, 2755, 'attending', '2024-07-10 22:36:19', '2025-12-17 19:46:29', 'dJZQ6EMd', '7357808'), + (26, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dJZQ6EMd', '7363595'), + (26, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dJZQ6EMd', '7363643'), + (26, 2767, 'attending', '2024-07-21 02:58:28', '2025-12-17 19:46:30', 'dJZQ6EMd', '7364726'), + (26, 2771, 'not_attending', '2024-07-21 02:57:28', '2025-12-17 19:46:30', 'dJZQ6EMd', '7368263'), + (26, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJZQ6EMd', '7368606'), + (26, 2786, 'attending', '2024-08-07 00:10:18', '2025-12-17 19:46:31', 'dJZQ6EMd', '7381403'), + (26, 2790, 'attending', '2024-08-05 20:25:19', '2025-12-17 19:46:31', 'dJZQ6EMd', '7384857'), + (26, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJZQ6EMd', '7397462'), + (26, 2806, 'attending', '2024-09-18 15:53:24', '2025-12-17 19:46:25', 'dJZQ6EMd', '7404888'), + (26, 2808, 'attending', '2024-08-27 22:32:21', '2025-12-17 19:46:32', 'dJZQ6EMd', '7412860'), + (26, 2821, 'attending', '2024-10-07 20:15:16', '2025-12-17 19:46:26', 'dJZQ6EMd', '7424275'), + (26, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJZQ6EMd', '7424276'), + (26, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJZQ6EMd', '7432751'), + (26, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJZQ6EMd', '7432752'), + (26, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJZQ6EMd', '7432753'), + (26, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432754'), + (26, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432755'), + (26, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432756'), + (26, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432758'), + (26, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432759'), + (26, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dJZQ6EMd', '7433834'), + (26, 2839, 'attending', '2024-09-25 18:46:28', '2025-12-17 19:46:25', 'dJZQ6EMd', '7439262'), + (26, 2849, 'attending', '2024-09-30 22:24:07', '2025-12-17 19:46:25', 'dJZQ6EMd', '7457114'), + (26, 2850, 'attending', '2024-10-01 21:58:04', '2025-12-17 19:46:25', 'dJZQ6EMd', '7457153'), + (26, 2859, 'maybe', '2024-10-31 23:55:30', '2025-12-17 19:46:26', 'dJZQ6EMd', '7469389'), + (26, 2861, 'maybe', '2024-10-03 13:46:10', '2025-12-17 19:46:26', 'dJZQ6EMd', '7469826'), + (26, 2862, 'attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJZQ6EMd', '7470197'), + (26, 2870, 'attending', '2024-10-05 20:57:56', '2025-12-17 19:46:26', 'dJZQ6EMd', '7475068'), + (26, 2874, 'attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'dJZQ6EMd', '7482239'), + (26, 2875, 'attending', '2024-10-07 22:03:31', '2025-12-17 19:46:26', 'dJZQ6EMd', '7482241'), + (26, 2878, 'maybe', '2024-10-16 18:19:33', '2025-12-17 19:46:26', 'dJZQ6EMd', '7633857'), + (26, 2881, 'maybe', '2024-11-06 22:05:40', '2025-12-17 19:46:26', 'dJZQ6EMd', '7644047'), + (26, 2883, 'maybe', '2024-10-23 18:45:19', '2025-12-17 19:46:26', 'dJZQ6EMd', '7649157'), + (26, 2892, 'attending', '2024-10-30 22:05:22', '2025-12-17 19:46:26', 'dJZQ6EMd', '7672064'), + (26, 2893, 'attending', '2024-10-29 02:18:09', '2025-12-17 19:46:26', 'dJZQ6EMd', '7672705'), + (26, 2895, 'maybe', '2024-11-05 06:52:52', '2025-12-17 19:46:26', 'dJZQ6EMd', '7682072'), + (26, 2896, 'maybe', '2024-11-12 23:52:47', '2025-12-17 19:46:27', 'dJZQ6EMd', '7683647'), + (26, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'dJZQ6EMd', '7685613'), + (26, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJZQ6EMd', '7688194'), + (26, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJZQ6EMd', '7688196'), + (26, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJZQ6EMd', '7688289'), + (26, 2912, 'maybe', '2024-11-15 01:04:33', '2025-12-17 19:46:27', 'dJZQ6EMd', '7692763'), + (26, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dJZQ6EMd', '7697552'), + (26, 2915, 'attending', '2024-11-22 00:16:45', '2025-12-17 19:46:27', 'dJZQ6EMd', '7698151'), + (26, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dJZQ6EMd', '7699878'), + (26, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'dJZQ6EMd', '7704043'), + (26, 2921, 'maybe', '2024-11-24 04:23:18', '2025-12-17 19:46:28', 'dJZQ6EMd', '7708460'), + (26, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dJZQ6EMd', '7712467'), + (26, 2925, 'attending', '2024-12-12 23:52:57', '2025-12-17 19:46:21', 'dJZQ6EMd', '7713584'), + (26, 2926, 'attending', '2024-12-03 06:21:27', '2025-12-17 19:46:21', 'dJZQ6EMd', '7713585'), + (26, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dJZQ6EMd', '7713586'), + (26, 2929, 'attending', '2024-12-09 21:10:54', '2025-12-17 19:46:21', 'dJZQ6EMd', '7723465'), + (26, 2930, 'attending', '2024-12-11 20:13:43', '2025-12-17 19:46:21', 'dJZQ6EMd', '7724554'), + (26, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dJZQ6EMd', '7738518'), + (26, 2959, 'maybe', '2024-12-24 00:23:32', '2025-12-17 19:46:22', 'dJZQ6EMd', '7747388'), + (26, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dJZQ6EMd', '7750636'), + (26, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dJZQ6EMd', '7796540'), + (26, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dJZQ6EMd', '7796541'), + (26, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dJZQ6EMd', '7796542'), + (26, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dJZQ6EMd', '7825913'), + (26, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dJZQ6EMd', '7825920'), + (26, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dJZQ6EMd', '7826209'), + (26, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dJZQ6EMd', '7834742'), + (26, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dJZQ6EMd', '7842108'), + (26, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dJZQ6EMd', '7842902'), + (26, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dJZQ6EMd', '7842903'), + (26, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dJZQ6EMd', '7842904'), + (26, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dJZQ6EMd', '7842905'), + (26, 2999, 'not_attending', '2025-02-13 02:49:33', '2025-12-17 19:46:23', 'dJZQ6EMd', '7844784'), + (26, 3001, 'attending', '2025-02-21 17:08:06', '2025-12-17 19:46:24', 'dJZQ6EMd', '7854184'), + (26, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dJZQ6EMd', '7855719'), + (26, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dJZQ6EMd', '7860683'), + (26, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dJZQ6EMd', '7860684'), + (26, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dJZQ6EMd', '7866095'), + (26, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dJZQ6EMd', '7869170'), + (26, 3014, 'attending', '2025-03-15 21:54:25', '2025-12-17 19:46:19', 'dJZQ6EMd', '7869185'), + (26, 3015, 'attending', '2025-04-22 02:30:22', '2025-12-17 19:46:20', 'dJZQ6EMd', '7869186'), + (26, 3017, 'attending', '2025-03-15 21:54:24', '2025-12-17 19:46:19', 'dJZQ6EMd', '7869188'), + (26, 3018, 'attending', '2025-04-05 03:20:43', '2025-12-17 19:46:20', 'dJZQ6EMd', '7869189'), + (26, 3028, 'maybe', '2025-04-07 18:22:34', '2025-12-17 19:46:20', 'dJZQ6EMd', '7869199'), + (26, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dJZQ6EMd', '7869201'), + (26, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dJZQ6EMd', '7877465'), + (26, 3034, 'attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dJZQ6EMd', '7878570'), + (26, 3045, 'maybe', '2025-04-05 03:20:51', '2025-12-17 19:46:19', 'dJZQ6EMd', '7882691'), + (26, 3046, 'maybe', '2025-04-12 01:49:02', '2025-12-17 19:46:20', 'dJZQ6EMd', '7882692'), + (26, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dJZQ6EMd', '7888250'), + (26, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dJZQ6EMd', '7904777'), + (26, 3094, 'attending', '2025-05-09 17:28:37', '2025-12-17 19:46:21', 'dJZQ6EMd', '8342292'), + (26, 3096, 'not_attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dJZQ6EMd', '8342987'), + (26, 3097, 'not_attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dJZQ6EMd', '8342993'), + (26, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dJZQ6EMd', '8349164'), + (26, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dJZQ6EMd', '8349545'), + (26, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dJZQ6EMd', '8353584'), + (26, 3124, 'maybe', '2025-05-12 23:23:58', '2025-12-17 19:46:21', 'dJZQ6EMd', '8363566'), + (26, 3131, 'attending', '2025-05-13 21:12:52', '2025-12-17 19:46:21', 'dJZQ6EMd', '8368028'), + (26, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dJZQ6EMd', '8368029'), + (26, 3133, 'maybe', '2025-05-21 04:06:34', '2025-12-17 19:46:14', 'dJZQ6EMd', '8368030'), + (26, 3136, 'maybe', '2025-05-21 19:00:36', '2025-12-17 19:46:21', 'dJZQ6EMd', '8374152'), + (26, 3137, 'attending', '2025-05-21 19:00:26', '2025-12-17 19:46:21', 'dJZQ6EMd', '8374153'), + (26, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dJZQ6EMd', '8388462'), + (26, 3150, 'attending', '2025-06-07 00:30:33', '2025-12-17 19:46:15', 'dJZQ6EMd', '8393174'), + (26, 3152, 'attending', '2025-06-03 13:41:15', '2025-12-17 19:46:14', 'dJZQ6EMd', '8393582'), + (26, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dJZQ6EMd', '8400273'), + (26, 3154, 'attending', '2025-06-07 00:30:19', '2025-12-17 19:46:15', 'dJZQ6EMd', '8400274'), + (26, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dJZQ6EMd', '8400275'), + (26, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dJZQ6EMd', '8400276'), + (26, 3157, 'attending', '2025-06-04 04:29:10', '2025-12-17 19:46:15', 'dJZQ6EMd', '8401407'), + (26, 3159, 'attending', '2025-06-04 04:33:31', '2025-12-17 19:46:15', 'dJZQ6EMd', '8401410'), + (26, 3160, 'attending', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'dJZQ6EMd', '8401411'), + (26, 3165, 'attending', '2025-06-07 20:08:43', '2025-12-17 19:46:14', 'dJZQ6EMd', '8404220'), + (26, 3166, 'not_attending', '2025-06-07 22:16:56', '2025-12-17 19:46:15', 'dJZQ6EMd', '8404242'), + (26, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dJZQ6EMd', '8404977'), + (26, 3176, 'attending', '2025-06-20 01:02:05', '2025-12-17 19:46:15', 'dJZQ6EMd', '8416741'), + (26, 3179, 'not_attending', '2025-06-24 03:27:21', '2025-12-17 19:46:15', 'dJZQ6EMd', '8421850'), + (26, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dJZQ6EMd', '8430783'), + (26, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dJZQ6EMd', '8430784'), + (26, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dJZQ6EMd', '8430799'), + (26, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dJZQ6EMd', '8430800'), + (26, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dJZQ6EMd', '8430801'), + (26, 3188, 'not_attending', '2025-07-11 15:17:46', '2025-12-17 19:46:17', 'dJZQ6EMd', '8438709'), + (26, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dJZQ6EMd', '8457738'), + (26, 3196, 'maybe', '2025-08-13 17:30:21', '2025-12-17 19:46:17', 'dJZQ6EMd', '8458543'), + (26, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dJZQ6EMd', '8459566'), + (26, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dJZQ6EMd', '8459567'), + (26, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dJZQ6EMd', '8461032'), + (26, 3205, 'maybe', '2025-07-24 12:06:28', '2025-12-17 19:46:17', 'dJZQ6EMd', '8461764'), + (26, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dJZQ6EMd', '8477877'), + (26, 3219, 'maybe', '2025-08-19 15:14:12', '2025-12-17 19:46:18', 'dJZQ6EMd', '8482548'), + (26, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dJZQ6EMd', '8485688'), + (26, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dJZQ6EMd', '8490587'), + (26, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dJZQ6EMd', '8493552'), + (26, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dJZQ6EMd', '8493553'), + (26, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dJZQ6EMd', '8493554'), + (26, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dJZQ6EMd', '8493555'), + (26, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dJZQ6EMd', '8493556'), + (26, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dJZQ6EMd', '8493557'), + (26, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dJZQ6EMd', '8493558'), + (26, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dJZQ6EMd', '8493559'), + (26, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dJZQ6EMd', '8493560'), + (26, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dJZQ6EMd', '8493561'), + (26, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dJZQ6EMd', '8493572'), + (26, 3272, 'maybe', '2025-09-18 04:50:15', '2025-12-17 19:46:12', 'dJZQ6EMd', '8524068'), + (26, 3284, 'maybe', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dJZQ6EMd', '8540725'), + (26, 3295, 'not_attending', '2025-10-29 15:01:06', '2025-12-17 19:46:14', 'dJZQ6EMd', '8547541'), + (26, 3300, 'attending', '2025-11-07 16:45:07', '2025-12-17 19:46:14', 'dJZQ6EMd', '8549145'), + (26, 3302, 'not_attending', '2025-11-10 19:53:36', '2025-12-17 19:46:14', 'dJZQ6EMd', '8550022'), + (26, 3304, 'not_attending', '2025-11-18 03:44:12', '2025-12-17 19:46:14', 'dJZQ6EMd', '8550024'), + (26, 3305, 'attending', '2025-12-02 17:01:52', '2025-12-17 19:46:11', 'dJZQ6EMd', '8550025'), + (26, 3306, 'attending', '2025-12-09 06:43:36', '2025-12-17 19:46:11', 'dJZQ6EMd', '8550026'), + (26, 3309, 'maybe', '2025-11-18 01:46:52', '2025-12-17 19:46:14', 'dJZQ6EMd', '8550409'), + (26, 3319, 'attending', '2025-11-11 18:26:27', '2025-12-17 19:46:14', 'dJZQ6EMd', '8553114'), + (26, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dJZQ6EMd', '8555421'), + (26, 3325, 'attending', '2025-11-20 00:18:52', '2025-12-17 19:46:14', 'dJZQ6EMd', '8556660'), + (26, 3327, 'maybe', '2025-12-04 00:45:27', '2025-12-17 19:46:11', 'dJZQ6EMd', '8557174'), + (26, 3339, 'attending', '2025-12-07 05:26:10', '2025-12-17 19:46:11', 'dJZQ6EMd', '8563326'), + (26, 3341, 'maybe', '2025-12-13 21:34:16', '2025-12-17 19:46:11', 'dJZQ6EMd', '8564397'), + (27, 648, 'not_attending', '2021-05-26 01:24:51', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3539923'), + (27, 742, 'attending', '2021-06-12 18:18:29', '2025-12-17 19:47:48', 'VdxEJ2Xm', '3680622'), + (27, 743, 'attending', '2021-06-13 02:47:51', '2025-12-17 19:47:38', 'VdxEJ2Xm', '3680623'), + (27, 745, 'maybe', '2021-06-28 17:25:57', '2025-12-17 19:47:38', 'VdxEJ2Xm', '3680625'), + (27, 746, 'not_attending', '2021-07-09 23:36:36', '2025-12-17 19:47:39', 'VdxEJ2Xm', '3680626'), + (27, 823, 'not_attending', '2021-06-22 13:43:00', '2025-12-17 19:47:48', 'VdxEJ2Xm', '3974109'), + (27, 827, 'not_attending', '2021-06-04 20:27:25', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3975311'), + (27, 828, 'attending', '2021-06-12 18:17:23', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3975312'), + (27, 832, 'not_attending', '2021-06-04 20:29:13', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3976650'), + (27, 838, 'not_attending', '2021-06-12 18:15:24', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3994992'), + (27, 844, 'not_attending', '2021-06-12 18:15:20', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4014338'), + (27, 867, 'attending', '2021-06-13 02:47:53', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4021848'), + (27, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4136744'), + (27, 870, 'attending', '2021-07-03 15:28:15', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4136937'), + (27, 871, 'attending', '2021-07-03 18:57:58', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4136938'), + (27, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4136947'), + (27, 884, 'not_attending', '2021-07-30 14:51:13', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4210314'), + (27, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4225444'), + (27, 889, 'attending', '2021-06-27 05:40:52', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4227492'), + (27, 896, 'not_attending', '2021-06-29 20:08:37', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4231145'), + (27, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4239259'), + (27, 900, 'attending', '2021-07-07 15:04:47', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4240316'), + (27, 901, 'attending', '2021-07-10 20:04:41', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4240317'), + (27, 902, 'attending', '2021-08-03 22:26:15', '2025-12-17 19:47:41', 'VdxEJ2Xm', '4240318'), + (27, 903, 'attending', '2021-07-30 14:51:02', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4240320'), + (27, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4250163'), + (27, 909, 'attending', '2021-07-07 15:01:49', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4258187'), + (27, 910, 'attending', '2021-07-07 15:03:03', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4258189'), + (27, 919, 'not_attending', '2021-07-14 19:08:54', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4275957'), + (27, 920, 'not_attending', '2021-07-28 00:35:24', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4277819'), + (27, 922, 'attending', '2021-07-14 19:09:03', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4280811'), + (27, 933, 'not_attending', '2021-07-28 00:35:17', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4301723'), + (27, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4302093'), + (27, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VdxEJ2Xm', '4304151'), + (27, 969, 'attending', '2021-08-13 22:43:04', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4356699'), + (27, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4356801'), + (27, 973, 'not_attending', '2021-08-17 02:48:30', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4366186'), + (27, 974, 'not_attending', '2021-08-17 02:48:23', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4366187'), + (27, 990, 'not_attending', '2021-09-01 17:04:14', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4420735'), + (27, 991, 'not_attending', '2021-09-01 17:04:26', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4420738'), + (27, 992, 'not_attending', '2021-09-18 22:50:36', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4420739'), + (27, 993, 'not_attending', '2021-09-25 21:34:22', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4420741'), + (27, 995, 'attending', '2021-09-01 17:04:53', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4420744'), + (27, 996, 'not_attending', '2021-10-30 16:39:56', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4420747'), + (27, 997, 'attending', '2021-09-01 17:05:00', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4420748'), + (27, 998, 'not_attending', '2021-10-30 16:41:10', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4420749'), + (27, 1012, 'not_attending', '2021-10-05 19:41:46', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4438816'), + (27, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4461883'), + (27, 1051, 'not_attending', '2022-02-04 03:53:01', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4496616'), + (27, 1053, 'attending', '2022-02-15 21:02:37', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4496618'), + (27, 1054, 'attending', '2022-03-17 13:24:27', '2025-12-17 19:47:25', 'VdxEJ2Xm', '4496619'), + (27, 1056, 'not_attending', '2021-11-27 20:50:57', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4496622'), + (27, 1058, 'maybe', '2022-02-14 15:27:43', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4496625'), + (27, 1059, 'attending', '2022-03-12 15:53:25', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4496626'), + (27, 1060, 'not_attending', '2022-03-23 05:57:44', '2025-12-17 19:47:25', 'VdxEJ2Xm', '4496627'), + (27, 1062, 'attending', '2022-03-04 05:45:34', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4496629'), + (27, 1067, 'not_attending', '2021-09-24 23:37:21', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4508342'), + (27, 1073, 'not_attending', '2021-10-01 21:33:38', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4518993'), + (27, 1086, 'not_attending', '2021-10-13 22:01:13', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4568602'), + (27, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4585962'), + (27, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4596356'), + (27, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4598860'), + (27, 1098, 'not_attending', '2021-11-11 00:42:29', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4598861'), + (27, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4602797'), + (27, 1113, 'not_attending', '2021-11-27 20:49:50', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4635421'), + (27, 1114, 'not_attending', '2021-11-12 08:47:23', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4637896'), + (27, 1116, 'not_attending', '2021-11-27 20:50:02', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4642994'), + (27, 1117, 'not_attending', '2021-11-16 03:39:20', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4642995'), + (27, 1118, 'not_attending', '2021-11-27 20:50:29', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4642996'), + (27, 1119, 'not_attending', '2021-11-27 20:50:42', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4642997'), + (27, 1126, 'attending', '2021-12-12 00:18:09', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4645687'), + (27, 1127, 'not_attending', '2021-11-27 20:50:18', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4645698'), + (27, 1128, 'attending', '2021-11-16 03:38:13', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4645704'), + (27, 1129, 'attending', '2021-11-16 03:39:34', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4645705'), + (27, 1130, 'attending', '2021-11-27 20:50:07', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4658824'), + (27, 1131, 'attending', '2021-11-27 20:50:35', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4658825'), + (27, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4668385'), + (27, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4694407'), + (27, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4706262'), + (27, 1173, 'not_attending', '2022-01-08 05:37:39', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4736495'), + (27, 1174, 'attending', '2022-01-13 18:39:16', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4736496'), + (27, 1175, 'attending', '2022-01-15 23:04:15', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736497'), + (27, 1176, 'not_attending', '2022-02-04 03:53:03', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736498'), + (27, 1177, 'attending', '2022-02-10 15:57:13', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736499'), + (27, 1178, 'attending', '2022-01-26 00:20:50', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736500'), + (27, 1179, 'attending', '2022-02-15 21:02:38', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736501'), + (27, 1180, 'maybe', '2022-02-14 15:27:24', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4736502'), + (27, 1181, 'attending', '2022-03-04 05:45:31', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4736503'), + (27, 1182, 'attending', '2022-03-12 15:53:27', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4736504'), + (27, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4746789'), + (27, 1188, 'not_attending', '2022-01-15 23:04:05', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4753929'), + (27, 1196, 'attending', '2022-01-19 20:18:22', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4765583'), + (27, 1206, 'attending', '2022-04-10 20:36:59', '2025-12-17 19:47:27', 'VdxEJ2Xm', '4773578'), + (27, 1225, 'not_attending', '2022-02-03 22:13:01', '2025-12-17 19:47:32', 'VdxEJ2Xm', '5019063'), + (27, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VdxEJ2Xm', '5038850'), + (27, 1236, 'not_attending', '2022-02-18 01:32:42', '2025-12-17 19:47:32', 'VdxEJ2Xm', '5045826'), + (27, 1254, 'attending', '2022-03-04 05:45:40', '2025-12-17 19:47:33', 'VdxEJ2Xm', '5129129'), + (27, 1259, 'attending', '2022-03-11 23:47:59', '2025-12-17 19:47:33', 'VdxEJ2Xm', '5132533'), + (27, 1272, 'attending', '2022-03-17 15:40:16', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5186582'), + (27, 1273, 'not_attending', '2022-03-23 05:57:36', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5186583'), + (27, 1274, 'attending', '2022-03-17 13:23:38', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5186585'), + (27, 1275, 'attending', '2022-03-17 13:25:15', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5186587'), + (27, 1277, 'not_attending', '2022-03-17 13:24:21', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5186865'), + (27, 1281, 'not_attending', '2022-04-08 20:57:30', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5190437'), + (27, 1284, 'attending', '2022-04-16 06:17:22', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5195095'), + (27, 1293, 'attending', '2022-04-10 20:36:53', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5214641'), + (27, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5215989'), + (27, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5223686'), + (27, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5227432'), + (27, 1311, 'attending', '2022-04-10 20:36:55', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5231430'), + (27, 1313, 'maybe', '2022-04-08 20:57:31', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5231461'), + (27, 1344, 'attending', '2022-04-25 20:24:23', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5247465'), + (27, 1345, 'attending', '2022-04-20 16:29:19', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5247466'), + (27, 1346, 'attending', '2022-04-20 16:29:17', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5247467'), + (27, 1348, 'not_attending', '2022-05-01 22:45:25', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5247605'), + (27, 1349, 'not_attending', '2022-04-20 16:29:08', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5249631'), + (27, 1354, 'attending', '2022-04-21 17:41:38', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5252569'), + (27, 1362, 'attending', '2022-04-25 20:23:16', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5260800'), + (27, 1374, 'attending', '2022-05-07 19:36:01', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5269930'), + (27, 1378, 'not_attending', '2022-05-05 14:40:47', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5271448'), + (27, 1379, 'attending', '2022-05-05 14:40:56', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5271449'), + (27, 1380, 'attending', '2022-05-28 18:14:47', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5271450'), + (27, 1383, 'attending', '2022-05-10 13:15:08', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5276469'), + (27, 1384, 'maybe', '2022-05-05 14:39:43', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5277078'), + (27, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5278159'), + (27, 1393, 'not_attending', '2022-05-27 15:17:43', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5280603'), + (27, 1394, 'not_attending', '2022-05-27 22:51:27', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5280667'), + (27, 1395, 'attending', '2022-05-07 19:36:00', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5281102'), + (27, 1396, 'not_attending', '2022-05-10 13:14:36', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5281103'), + (27, 1397, 'attending', '2022-05-18 23:55:50', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5281104'), + (27, 1407, 'attending', '2022-05-28 18:15:14', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5363695'), + (27, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5365960'), + (27, 1415, 'attending', '2022-06-01 17:05:50', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5368973'), + (27, 1422, 'not_attending', '2022-05-28 18:15:00', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5375603'), + (27, 1423, 'not_attending', '2022-06-15 22:07:33', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5375727'), + (27, 1425, 'not_attending', '2022-05-24 18:45:47', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5375861'), + (27, 1426, 'attending', '2022-05-24 04:26:54', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5375873'), + (27, 1428, 'not_attending', '2022-06-08 19:31:43', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5378247'), + (27, 1431, 'not_attending', '2022-05-30 03:01:55', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5389605'), + (27, 1442, 'attending', '2022-06-03 20:46:16', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5397265'), + (27, 1444, 'not_attending', '2022-06-08 19:31:52', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5397614'), + (27, 1445, 'attending', '2022-06-14 00:54:44', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5397615'), + (27, 1451, 'not_attending', '2022-06-17 16:08:09', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5403967'), + (27, 1452, 'not_attending', '2022-06-13 01:45:03', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5404197'), + (27, 1458, 'maybe', '2022-06-10 15:10:33', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5404786'), + (27, 1461, 'attending', '2022-06-10 15:10:15', '2025-12-17 19:47:31', 'VdxEJ2Xm', '5405149'), + (27, 1462, 'not_attending', '2022-06-17 16:08:11', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5405203'), + (27, 1478, 'maybe', '2022-06-20 07:11:20', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5408794'), + (27, 1480, 'not_attending', '2022-06-26 22:45:48', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5411699'), + (27, 1482, 'attending', '2022-06-20 07:10:58', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5412550'), + (27, 1484, 'maybe', '2022-06-23 04:36:35', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5415046'), + (27, 1485, 'attending', '2022-06-22 12:52:54', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5416276'), + (27, 1495, 'maybe', '2022-06-26 22:46:32', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5422086'), + (27, 1498, 'not_attending', '2022-07-03 01:08:38', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5422406'), + (27, 1499, 'not_attending', '2022-07-03 01:08:36', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5422407'), + (27, 1502, 'not_attending', '2022-07-08 22:21:04', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5424565'), + (27, 1504, 'not_attending', '2022-07-14 17:16:42', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5426882'), + (27, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5427083'), + (27, 1511, 'attending', '2022-07-06 23:59:15', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5437733'), + (27, 1513, 'attending', '2022-07-09 17:06:20', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5441125'), + (27, 1514, 'attending', '2022-07-14 17:17:37', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5441126'), + (27, 1515, 'attending', '2022-07-14 17:17:56', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5441128'), + (27, 1516, 'attending', '2022-07-14 17:17:59', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5441129'), + (27, 1517, 'not_attending', '2022-07-14 17:18:02', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5441130'), + (27, 1518, 'attending', '2022-07-14 17:18:06', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5441131'), + (27, 1519, 'attending', '2022-07-14 17:18:10', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5441132'), + (27, 1527, 'not_attending', '2022-07-14 17:17:30', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5446425'), + (27, 1528, 'not_attending', '2022-07-14 17:16:47', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5446643'), + (27, 1530, 'not_attending', '2022-07-15 16:00:14', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5448612'), + (27, 1532, 'attending', '2022-07-21 21:38:46', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5448757'), + (27, 1533, 'maybe', '2022-07-19 16:06:02', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5448758'), + (27, 1534, 'maybe', '2022-08-02 15:12:35', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5448759'), + (27, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5453325'), + (27, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5454516'), + (27, 1544, 'not_attending', '2022-08-08 21:10:07', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5454517'), + (27, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5454605'), + (27, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5455037'), + (27, 1556, 'attending', '2022-07-22 00:36:17', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5457734'), + (27, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5461278'), + (27, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5469480'), + (27, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5471073'), + (27, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5474663'), + (27, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5482022'), + (27, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5482793'), + (27, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5488912'), + (27, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5492192'), + (27, 1588, 'maybe', '2022-08-08 21:09:30', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5493139'), + (27, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5493200'), + (27, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5502188'), + (27, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5505059'), + (27, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5509055'), + (27, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5512862'), + (27, 1622, 'attending', '2022-08-23 02:35:51', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5513677'), + (27, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5513985'), + (27, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5519981'), + (27, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5522550'), + (27, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5534683'), + (27, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5537735'), + (27, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5540859'), + (27, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5546619'), + (27, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5555245'), + (27, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5557747'), + (27, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5560255'), + (27, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5562906'), + (27, 1667, 'not_attending', '2022-09-24 20:33:39', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5563221'), + (27, 1668, 'not_attending', '2022-09-24 20:33:51', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5563222'), + (27, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5600604'), + (27, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5605544'), + (27, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5606737'), + (27, 1719, 'not_attending', '2022-10-07 17:05:34', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5630958'), + (27, 1720, 'attending', '2022-10-12 19:56:33', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5630959'), + (27, 1721, 'attending', '2022-10-16 04:21:06', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5630960'), + (27, 1722, 'attending', '2022-10-24 16:37:37', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5630961'), + (27, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5630962'), + (27, 1724, 'attending', '2022-11-03 16:41:04', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5630966'), + (27, 1725, 'attending', '2022-11-03 16:41:13', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5630967'), + (27, 1726, 'attending', '2022-11-03 16:41:19', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5630968'), + (27, 1727, 'attending', '2022-11-03 16:41:39', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5630969'), + (27, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5635406'), + (27, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5638765'), + (27, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5640097'), + (27, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5640843'), + (27, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5641521'), + (27, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5642818'), + (27, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5652395'), + (27, 1753, 'maybe', '2022-10-19 14:55:09', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5656228'), + (27, 1762, 'maybe', '2022-11-28 15:08:15', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5670445'), + (27, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5671637'), + (27, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5672329'), + (27, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5674057'), + (27, 1767, 'maybe', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5674060'), + (27, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5677461'), + (27, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5698046'), + (27, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5699760'), + (27, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5741601'), + (27, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5763458'), + (27, 1807, 'attending', '2023-01-11 16:17:37', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5764677'), + (27, 1808, 'maybe', '2023-03-02 00:07:40', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5764678'), + (27, 1809, 'attending', '2023-04-12 00:51:09', '2025-12-17 19:46:59', 'VdxEJ2Xm', '5764679'), + (27, 1813, 'maybe', '2023-04-27 14:01:00', '2025-12-17 19:47:01', 'VdxEJ2Xm', '5764683'), + (27, 1814, 'attending', '2023-02-23 20:49:37', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5764684'), + (27, 1815, 'attending', '2023-02-19 00:04:37', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5764685'), + (27, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'VdxEJ2Xm', '5774172'), + (27, 1825, 'maybe', '2022-11-27 04:27:05', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5776760'), + (27, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5818247'), + (27, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5819471'), + (27, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'VdxEJ2Xm', '5827739'), + (27, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5844306'), + (27, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5850159'), + (27, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5858999'), + (27, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5871984'), + (27, 1860, 'maybe', '2023-01-13 05:47:25', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5876309'), + (27, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5876354'), + (27, 1864, 'attending', '2023-01-22 00:34:14', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5879675'), + (27, 1865, 'attending', '2023-01-24 00:37:22', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5879676'), + (27, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5880939'), + (27, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5880940'), + (27, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5880942'), + (27, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5880943'), + (27, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5887890'), + (27, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5888598'), + (27, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5893260'), + (27, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5899826'), + (27, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5900199'), + (27, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5900200'), + (27, 1891, 'maybe', '2023-03-22 01:34:46', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5900202'), + (27, 1892, 'attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5900203'), + (27, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5901108'), + (27, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5901126'), + (27, 1897, 'not_attending', '2023-01-31 22:40:51', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5901128'), + (27, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5909655'), + (27, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5910522'), + (27, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5910526'), + (27, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5910528'), + (27, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5916219'), + (27, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5936234'), + (27, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5958351'), + (27, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5959751'), + (27, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5959755'), + (27, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5960055'), + (27, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5961684'), + (27, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5962132'), + (27, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5962133'), + (27, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5962134'), + (27, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'VdxEJ2Xm', '5962317'), + (27, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'VdxEJ2Xm', '5962318'), + (27, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5965933'), + (27, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5967014'), + (27, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5972763'), + (27, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5972815'), + (27, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5974016'), + (27, 1962, 'attending', '2023-03-08 01:59:20', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5975052'), + (27, 1963, 'attending', '2023-03-08 02:08:47', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5975054'), + (27, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5981515'), + (27, 1966, 'maybe', '2023-03-12 18:07:07', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5983042'), + (27, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5993516'), + (27, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5998939'), + (27, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6028191'), + (27, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'VdxEJ2Xm', '6040066'), + (27, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'VdxEJ2Xm', '6042717'), + (27, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6044838'), + (27, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6044839'), + (27, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'VdxEJ2Xm', '6045684'), + (27, 1991, 'attending', '2023-03-30 15:01:29', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6047354'), + (27, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6050104'), + (27, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6053195'), + (27, 2006, 'maybe', '2023-04-05 16:28:21', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6053198'), + (27, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6056085'), + (27, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6056916'), + (27, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6059290'), + (27, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6060328'), + (27, 2014, 'attending', '2023-04-12 00:46:40', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6060337'), + (27, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6061037'), + (27, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6061039'), + (27, 2018, 'attending', '2023-04-12 00:50:53', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6061171'), + (27, 2020, 'attending', '2023-04-14 17:13:58', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6065813'), + (27, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6067245'), + (27, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6068094'), + (27, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6068252'), + (27, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6068253'), + (27, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6068254'), + (27, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6068280'), + (27, 2032, 'attending', '2023-04-24 23:03:06', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6068281'), + (27, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6069093'), + (27, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6072528'), + (27, 2043, 'maybe', '2023-04-26 17:37:47', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6073023'), + (27, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6075556'), + (27, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6079840'), + (27, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6083398'), + (27, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6093504'), + (27, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6097414'), + (27, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6097442'), + (27, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6097684'), + (27, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6098762'), + (27, 2064, 'not_attending', '2023-06-20 02:16:34', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6099988'), + (27, 2065, 'attending', '2023-06-17 23:24:46', '2025-12-17 19:46:49', 'VdxEJ2Xm', '6101169'), + (27, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6101361'), + (27, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6101362'), + (27, 2071, 'attending', '2023-05-15 03:17:23', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6104949'), + (27, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6107314'), + (27, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6119877'), + (27, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6120034'), + (27, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6135924'), + (27, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6136733'), + (27, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6137989'), + (27, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6150864'), + (27, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6155491'), + (27, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6164417'), + (27, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6166388'), + (27, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6176439'), + (27, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6182410'), + (27, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6185812'), + (27, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6187651'), + (27, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6187963'), + (27, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6187964'), + (27, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6187966'), + (27, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6187967'), + (27, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6187969'), + (27, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6334878'), + (27, 2147, 'not_attending', '2023-07-16 20:16:01', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6335666'), + (27, 2150, 'attending', '2023-07-09 21:55:06', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6335687'), + (27, 2151, 'maybe', '2023-07-10 23:49:10', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6335700'), + (27, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6337236'), + (27, 2154, 'attending', '2023-07-12 21:44:18', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6337689'), + (27, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6337970'), + (27, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6338308'), + (27, 2157, 'attending', '2023-07-12 21:52:35', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6338342'), + (27, 2158, 'attending', '2023-07-12 23:26:16', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6338353'), + (27, 2159, 'attending', '2023-07-16 17:49:24', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6338355'), + (27, 2160, 'not_attending', '2023-07-18 02:14:53', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6338358'), + (27, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6341710'), + (27, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6342044'), + (27, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6342298'), + (27, 2168, 'attending', '2023-07-17 19:28:03', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6342302'), + (27, 2169, 'attending', '2023-07-17 19:37:44', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6342306'), + (27, 2170, 'attending', '2023-07-17 19:40:19', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6342307'), + (27, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6343294'), + (27, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6347034'), + (27, 2177, 'not_attending', '2023-08-07 21:02:36', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6347053'), + (27, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6347056'), + (27, 2181, 'attending', '2023-07-25 19:43:59', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6349354'), + (27, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6353830'), + (27, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6353831'), + (27, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6357867'), + (27, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6358652'), + (27, 2193, 'attending', '2023-08-03 22:01:03', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6358668'), + (27, 2194, 'attending', '2023-08-03 22:03:22', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6358669'), + (27, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6361709'), + (27, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6361710'), + (27, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6361711'), + (27, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6361712'), + (27, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6361713'), + (27, 2216, 'attending', '2023-08-19 16:47:28', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6364123'), + (27, 2232, 'attending', '2023-08-23 12:34:29', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6374818'), + (27, 2235, 'attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6382573'), + (27, 2239, 'attending', '2023-08-31 18:08:44', '2025-12-17 19:46:56', 'VdxEJ2Xm', '6387592'), + (27, 2240, 'attending', '2023-09-08 19:57:08', '2025-12-17 19:46:56', 'VdxEJ2Xm', '6388603'), + (27, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'VdxEJ2Xm', '6388604'), + (27, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'VdxEJ2Xm', '6394629'), + (27, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6394631'), + (27, 2253, 'attending', '2023-09-30 22:48:28', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6401811'), + (27, 2255, 'attending', '2023-09-17 18:24:03', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6403562'), + (27, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6440863'), + (27, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6445440'), + (27, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6453951'), + (27, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6461696'), + (27, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6462129'), + (27, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6463218'), + (27, 2299, 'attending', '2023-10-21 00:33:07', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6472181'), + (27, 2303, 'attending', '2023-10-23 17:39:19', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6482691'), + (27, 2304, 'attending', '2023-10-23 17:39:34', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6482693'), + (27, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6484200'), + (27, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6484680'), + (27, 2310, 'not_attending', '2023-11-01 22:34:48', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6487709'), + (27, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6507741'), + (27, 2322, 'attending', '2023-11-01 22:34:51', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6514659'), + (27, 2323, 'attending', '2023-11-01 22:40:00', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6514660'), + (27, 2324, 'attending', '2023-11-01 22:40:02', '2025-12-17 19:46:49', 'VdxEJ2Xm', '6514662'), + (27, 2325, 'not_attending', '2023-11-01 22:40:05', '2025-12-17 19:46:36', 'VdxEJ2Xm', '6514663'), + (27, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6519103'), + (27, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6535681'), + (27, 2338, 'attending', '2023-11-21 18:35:46', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6538868'), + (27, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6584747'), + (27, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6587097'), + (27, 2358, 'attending', '2023-11-29 18:57:29', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6595321'), + (27, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'VdxEJ2Xm', '6609022'), + (27, 2373, 'attending', '2024-01-04 19:51:59', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6632678'), + (27, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'VdxEJ2Xm', '6632757'), + (27, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6644187'), + (27, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6648951'), + (27, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6648952'), + (27, 2388, 'attending', '2024-01-04 19:51:31', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6649244'), + (27, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6655401'), + (27, 2399, 'not_attending', '2024-01-09 14:31:38', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6657583'), + (27, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6661585'), + (27, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6661588'), + (27, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6661589'), + (27, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6699906'), + (27, 2408, 'attending', '2024-01-27 05:28:16', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6699907'), + (27, 2409, 'attending', '2024-01-31 21:51:25', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6699909'), + (27, 2410, 'maybe', '2024-02-07 22:47:49', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6699911'), + (27, 2411, 'attending', '2024-02-13 13:51:12', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6699913'), + (27, 2412, 'maybe', '2024-02-20 01:11:22', '2025-12-17 19:46:43', 'VdxEJ2Xm', '6700717'), + (27, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6701109'), + (27, 2420, 'attending', '2024-01-18 15:50:48', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6704561'), + (27, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6705219'), + (27, 2427, 'attending', '2024-01-20 18:57:15', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6708410'), + (27, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6710153'), + (27, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6711552'), + (27, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6711553'), + (27, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6722688'), + (27, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6730620'), + (27, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6730642'), + (27, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'VdxEJ2Xm', '6740364'), + (27, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6743829'), + (27, 2467, 'attending', '2024-02-25 21:52:13', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7029987'), + (27, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7030380'), + (27, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'VdxEJ2Xm', '7033677'), + (27, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7035415'), + (27, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7044715'), + (27, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7050318'), + (27, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'VdxEJ2Xm', '7050319'), + (27, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7050322'), + (27, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7057804'), + (27, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7072824'), + (27, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7074348'), + (27, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7074364'), + (27, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7089267'), + (27, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7098747'), + (27, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7113468'), + (27, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7114856'), + (27, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7114951'), + (27, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7114955'), + (27, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7114956'), + (27, 2558, 'attending', '2024-04-15 15:38:12', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7114957'), + (27, 2567, 'attending', '2024-04-06 19:25:22', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7144962'), + (27, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7153615'), + (27, 2569, 'attending', '2024-04-07 19:39:18', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7154056'), + (27, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7159484'), + (27, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7178446'), + (27, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7220467'), + (27, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7240354'), + (27, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7251633'), + (27, 2626, 'attending', '2024-05-18 02:50:34', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7264723'), + (27, 2627, 'attending', '2024-05-20 14:22:28', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7264724'), + (27, 2628, 'attending', '2024-05-30 17:52:00', '2025-12-17 19:46:36', 'VdxEJ2Xm', '7264725'), + (27, 2629, 'attending', '2024-06-06 22:01:40', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7264726'), + (27, 2647, 'attending', '2024-05-21 01:30:14', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7282057'), + (27, 2650, 'maybe', '2024-05-24 16:28:58', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7288199'), + (27, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7302674'), + (27, 2662, 'attending', '2024-06-02 18:58:55', '2025-12-17 19:46:36', 'VdxEJ2Xm', '7302815'), + (27, 2672, 'attending', '2024-06-09 16:31:29', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7318459'), + (27, 2674, 'attending', '2024-06-17 20:10:04', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7319480'), + (27, 2675, 'attending', '2024-06-17 20:09:53', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7319481'), + (27, 2676, 'attending', '2024-06-17 20:09:46', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7319482'), + (27, 2677, 'attending', '2024-09-04 03:53:45', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7319483'), + (27, 2678, 'not_attending', '2024-06-14 00:39:46', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7319489'), + (27, 2679, 'not_attending', '2024-06-17 20:08:52', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7319490'), + (27, 2681, 'attending', '2024-06-10 03:24:09', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7320409'), + (27, 2686, 'attending', '2024-06-11 13:49:52', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7323802'), + (27, 2688, 'not_attending', '2024-06-17 20:08:56', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7324073'), + (27, 2689, 'attending', '2024-06-17 20:09:04', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7324074'), + (27, 2690, 'attending', '2024-06-17 20:09:08', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7324075'), + (27, 2691, 'attending', '2024-06-17 20:09:11', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7324076'), + (27, 2692, 'not_attending', '2024-06-17 20:09:14', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7324077'), + (27, 2693, 'attending', '2024-06-17 20:09:20', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7324078'), + (27, 2694, 'attending', '2024-06-17 20:09:22', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7324079'), + (27, 2695, 'attending', '2024-06-17 20:09:26', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7324080'), + (27, 2696, 'not_attending', '2024-06-17 20:09:28', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7324081'), + (27, 2697, 'attending', '2024-06-17 20:09:32', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7324082'), + (27, 2698, 'attending', '2024-06-17 20:09:39', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7324083'), + (27, 2701, 'maybe', '2024-06-17 20:10:41', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7324391'), + (27, 2709, 'attending', '2024-06-14 00:39:42', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7325107'), + (27, 2710, 'attending', '2024-06-14 00:39:26', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7325108'), + (27, 2711, 'maybe', '2024-06-17 20:10:08', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7326524'), + (27, 2712, 'maybe', '2024-06-17 20:10:00', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7326525'), + (27, 2722, 'maybe', '2024-07-08 16:50:07', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7331457'), + (27, 2723, 'not_attending', '2024-06-20 19:09:07', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7332389'), + (27, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7363643'), + (27, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7368606'), + (27, 2792, 'attending', '2024-08-07 00:33:27', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7390763'), + (27, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7397462'), + (27, 2808, 'attending', '2024-08-27 22:19:31', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7412860'), + (27, 2814, 'attending', '2024-09-04 03:53:26', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7424267'), + (27, 2815, 'not_attending', '2024-09-04 03:53:30', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7424268'), + (27, 2816, 'attending', '2024-09-04 03:53:34', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7424269'), + (27, 2817, 'attending', '2024-09-04 03:53:37', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7424270'), + (27, 2818, 'attending', '2024-09-04 03:53:56', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424272'), + (27, 2819, 'attending', '2024-09-04 03:54:00', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424273'), + (27, 2820, 'maybe', '2024-09-04 03:54:01', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424274'), + (27, 2821, 'attending', '2024-09-08 03:29:15', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424275'), + (27, 2822, 'attending', '2024-09-04 03:54:09', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424276'), + (27, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7432751'), + (27, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7432752'), + (27, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7432753'), + (27, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432754'), + (27, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432755'), + (27, 2829, 'maybe', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432756'), + (27, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432758'), + (27, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432759'), + (27, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7433834'), + (27, 2834, 'not_attending', '2024-09-11 01:52:43', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7433852'), + (27, 2836, 'attending', '2024-09-13 06:02:11', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7438708'), + (27, 2837, 'attending', '2024-09-12 18:57:15', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7438711'), + (27, 2839, 'maybe', '2024-09-13 06:01:52', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7439262'), + (27, 2846, 'attending', '2024-09-21 20:31:49', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7452148'), + (27, 2853, 'attending', '2024-10-17 17:23:43', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7465683'), + (27, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7470197'), + (27, 2867, 'not_attending', '2024-12-06 20:36:50', '2025-12-17 19:46:21', 'VdxEJ2Xm', '7471202'), + (27, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7685613'), + (27, 2903, 'not_attending', '2024-11-08 23:55:48', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7688194'), + (27, 2904, 'attending', '2024-11-08 23:55:52', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7688196'), + (27, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7688289'), + (27, 2908, 'attending', '2024-11-11 01:12:25', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7689420'), + (27, 2910, 'attending', '2024-11-11 01:12:33', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7689867'), + (27, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7692763'), + (27, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7697552'), + (27, 2914, 'maybe', '2024-11-16 23:09:37', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7697743'), + (27, 2917, 'attending', '2024-11-18 19:22:21', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7699878'), + (27, 2919, 'attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7704043'), + (27, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7712467'), + (27, 2925, 'not_attending', '2024-12-06 20:36:28', '2025-12-17 19:46:21', 'VdxEJ2Xm', '7713584'), + (27, 2926, 'attending', '2024-12-03 04:16:03', '2025-12-17 19:46:21', 'VdxEJ2Xm', '7713585'), + (27, 2927, 'attending', '2024-12-06 20:36:25', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7713586'), + (27, 2935, 'attending', '2025-02-01 19:06:38', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7725953'), + (27, 2938, 'attending', '2025-01-18 23:56:17', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7725956'), + (27, 2939, 'attending', '2025-02-11 04:00:00', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7725957'), + (27, 2940, 'attending', '2025-01-18 23:56:26', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7725958'), + (27, 2941, 'attending', '2025-02-07 19:25:35', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7725959'), + (27, 2942, 'attending', '2025-02-11 03:59:53', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7725960'), + (27, 2943, 'attending', '2025-02-11 03:59:46', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7725961'), + (27, 2944, 'attending', '2025-02-11 03:59:48', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7725963'), + (27, 2945, 'attending', '2025-02-11 04:03:57', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7725964'), + (27, 2946, 'attending', '2025-03-04 03:32:53', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7725965'), + (27, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7738518'), + (27, 2962, 'attending', '2024-12-23 22:21:54', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7750632'), + (27, 2963, 'attending', '2024-12-28 19:08:53', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7750636'), + (27, 2964, 'attending', '2025-01-07 04:32:54', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7796540'), + (27, 2965, 'attending', '2025-01-18 23:56:15', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7796541'), + (27, 2966, 'attending', '2025-01-18 23:56:25', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7796542'), + (27, 2979, 'attending', '2025-01-28 22:22:25', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7825913'), + (27, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7825920'), + (27, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7826209'), + (27, 2985, 'attending', '2025-02-03 21:29:04', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7834742'), + (27, 2988, 'attending', '2025-02-07 14:33:49', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7839569'), + (27, 2989, 'attending', '2025-02-10 19:51:22', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7842108'), + (27, 2991, 'attending', '2025-02-11 03:59:54', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842902'), + (27, 2992, 'maybe', '2025-02-11 03:59:49', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842903'), + (27, 2993, 'attending', '2025-02-11 04:03:50', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7842904'), + (27, 2994, 'attending', '2025-02-11 03:59:42', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7842905'), + (27, 2995, 'attending', '2025-02-11 04:03:17', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842906'), + (27, 2996, 'attending', '2025-02-11 04:03:25', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842907'), + (27, 2997, 'attending', '2025-02-11 04:03:26', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7842908'), + (27, 2998, 'attending', '2025-02-11 04:03:39', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7842909'), + (27, 3005, 'maybe', '2025-02-19 21:15:56', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7854604'), + (27, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7855719'), + (27, 3007, 'attending', '2025-02-24 17:45:45', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7860683'), + (27, 3008, 'attending', '2025-02-24 17:45:43', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7860684'), + (27, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7866095'), + (27, 3013, 'maybe', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7869170'), + (27, 3014, 'attending', '2025-03-06 15:55:06', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869185'), + (27, 3015, 'not_attending', '2025-03-06 15:55:13', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869186'), + (27, 3016, 'attending', '2025-03-06 15:55:10', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869187'), + (27, 3017, 'attending', '2025-03-06 15:54:58', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869188'), + (27, 3018, 'attending', '2025-03-06 15:55:08', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869189'), + (27, 3019, 'attending', '2025-03-06 15:55:23', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869190'), + (27, 3020, 'attending', '2025-03-06 15:55:19', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869191'), + (27, 3021, 'attending', '2025-03-06 15:55:21', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869192'), + (27, 3022, 'attending', '2025-03-06 15:55:15', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869193'), + (27, 3023, 'attending', '2025-03-04 03:44:26', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869194'), + (27, 3024, 'attending', '2025-03-04 03:55:39', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869195'), + (27, 3025, 'attending', '2025-03-06 15:55:27', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869196'), + (27, 3026, 'attending', '2025-03-06 15:55:29', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869197'), + (27, 3027, 'attending', '2025-03-06 15:55:25', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869198'), + (27, 3028, 'attending', '2025-03-06 15:55:31', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869199'), + (27, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7869201'), + (27, 3033, 'maybe', '2025-03-11 05:12:19', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7877465'), + (27, 3055, 'attending', '2025-03-27 16:23:26', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7888118'), + (27, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7888250'), + (27, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'VdxEJ2Xm', '7904777'), + (27, 3090, 'maybe', '2025-04-17 22:04:18', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7914315'), + (27, 3094, 'attending', '2025-04-21 21:08:49', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8342292'), + (27, 3095, 'attending', '2025-04-21 21:08:48', '2025-12-17 19:46:20', 'VdxEJ2Xm', '8342293'), + (27, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8349164'), + (27, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8349545'), + (27, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8353584'), + (27, 3131, 'attending', '2025-05-14 02:40:57', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8368028'), + (27, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8368029'), + (27, 3133, 'attending', '2025-05-30 17:06:13', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8368030'), + (27, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8388462'), + (27, 3150, 'not_attending', '2025-06-20 17:21:09', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8393174'), + (27, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8400273'), + (27, 3154, 'attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8400274'), + (27, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8400275'), + (27, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8400276'), + (27, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8404977'), + (27, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8430783'), + (27, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8430784'), + (27, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8430799'), + (27, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8430800'), + (27, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8430801'), + (27, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8438709'), + (27, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8457738'), + (27, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8459566'), + (27, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8459567'), + (27, 3202, 'attending', '2025-07-23 12:56:54', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8459568'), + (27, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8461032'), + (27, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8477877'), + (27, 3233, 'attending', '2025-08-12 12:51:10', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8485688'), + (27, 3235, 'maybe', '2025-08-19 19:30:34', '2025-12-17 19:46:18', 'VdxEJ2Xm', '8490587'), + (27, 3236, 'attending', '2025-08-19 19:29:45', '2025-12-17 19:46:18', 'VdxEJ2Xm', '8493552'), + (27, 3237, 'attending', '2025-08-19 19:30:15', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8493553'), + (27, 3238, 'not_attending', '2025-08-19 19:30:02', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8493554'), + (27, 3239, 'attending', '2025-08-19 19:31:36', '2025-12-17 19:46:12', 'VdxEJ2Xm', '8493555'), + (27, 3240, 'attending', '2025-08-19 19:33:45', '2025-12-17 19:46:12', 'VdxEJ2Xm', '8493556'), + (27, 3241, 'attending', '2025-08-19 19:37:37', '2025-12-17 19:46:13', 'VdxEJ2Xm', '8493557'), + (27, 3242, 'attending', '2025-08-19 19:37:16', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8493558'), + (27, 3243, 'attending', '2025-08-19 19:37:51', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8493559'), + (27, 3244, 'attending', '2025-08-19 19:34:54', '2025-12-17 19:46:13', 'VdxEJ2Xm', '8493560'), + (27, 3245, 'attending', '2025-08-19 19:35:09', '2025-12-17 19:46:12', 'VdxEJ2Xm', '8493561'), + (27, 3253, 'attending', '2025-08-19 19:44:15', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8493572'), + (27, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'VdxEJ2Xm', '8540725'), + (27, 3289, 'attending', '2025-10-21 01:25:53', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8542939'), + (27, 3295, 'not_attending', '2025-10-28 20:50:48', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8547541'), + (27, 3305, 'attending', '2025-12-01 22:39:09', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8550025'), + (27, 3306, 'attending', '2025-12-01 22:39:30', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8550026'), + (27, 3307, 'attending', '2025-12-01 22:39:40', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8550027'), + (27, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8555421'), + (28, 1182, 'attending', '2022-03-10 05:19:45', '2025-12-17 19:47:33', '2d28vkMA', '4736504'), + (28, 1207, 'attending', '2022-05-06 17:11:53', '2025-12-17 19:47:28', '2d28vkMA', '4773579'), + (28, 1240, 'attending', '2022-03-12 20:39:21', '2025-12-17 19:47:33', '2d28vkMA', '5052239'), + (28, 1241, 'maybe', '2022-03-22 11:56:35', '2025-12-17 19:47:25', '2d28vkMA', '5052240'), + (28, 1242, 'maybe', '2022-03-29 15:58:23', '2025-12-17 19:47:25', '2d28vkMA', '5052241'), + (28, 1249, 'attending', '2022-03-09 03:23:36', '2025-12-17 19:47:33', '2d28vkMA', '5068530'), + (28, 1259, 'attending', '2022-03-10 05:19:36', '2025-12-17 19:47:33', '2d28vkMA', '5132533'), + (28, 1262, 'maybe', '2022-03-10 05:23:23', '2025-12-17 19:47:33', '2d28vkMA', '5157773'), + (28, 1263, 'attending', '2022-03-07 21:20:34', '2025-12-17 19:47:33', '2d28vkMA', '5158145'), + (28, 1264, 'maybe', '2022-03-22 11:56:29', '2025-12-17 19:47:25', '2d28vkMA', '5160281'), + (28, 1266, 'attending', '2022-03-09 03:19:47', '2025-12-17 19:47:33', '2d28vkMA', '5166407'), + (28, 1267, 'attending', '2022-03-17 22:53:52', '2025-12-17 19:47:25', '2d28vkMA', '5169578'), + (28, 1269, 'attending', '2022-03-18 22:13:18', '2025-12-17 19:47:25', '2d28vkMA', '5179439'), + (28, 1270, 'attending', '2022-03-17 01:20:17', '2025-12-17 19:47:25', '2d28vkMA', '5181277'), + (28, 1271, 'not_attending', '2022-03-18 17:40:18', '2025-12-17 19:47:25', '2d28vkMA', '5181648'), + (28, 1272, 'attending', '2022-03-17 03:05:06', '2025-12-17 19:47:25', '2d28vkMA', '5186582'), + (28, 1273, 'attending', '2022-03-26 17:08:12', '2025-12-17 19:47:25', '2d28vkMA', '5186583'), + (28, 1274, 'attending', '2022-03-27 03:11:39', '2025-12-17 19:47:26', '2d28vkMA', '5186585'), + (28, 1276, 'attending', '2022-03-27 21:08:27', '2025-12-17 19:47:25', '2d28vkMA', '5186820'), + (28, 1277, 'not_attending', '2022-03-18 17:40:22', '2025-12-17 19:47:25', '2d28vkMA', '5186865'), + (28, 1278, 'not_attending', '2022-03-16 21:42:33', '2025-12-17 19:47:33', '2d28vkMA', '5186920'), + (28, 1279, 'attending', '2022-03-16 21:42:13', '2025-12-17 19:47:25', '2d28vkMA', '5187212'), + (28, 1281, 'attending', '2022-04-09 18:52:41', '2025-12-17 19:47:27', '2d28vkMA', '5190437'), + (28, 1282, 'attending', '2022-03-18 03:00:11', '2025-12-17 19:47:25', '2d28vkMA', '5191241'), + (28, 1283, 'attending', '2022-03-19 19:59:40', '2025-12-17 19:47:25', '2d28vkMA', '5193533'), + (28, 1284, 'attending', '2022-03-30 17:49:34', '2025-12-17 19:47:27', '2d28vkMA', '5195095'), + (28, 1287, 'attending', '2022-03-28 20:44:58', '2025-12-17 19:47:25', '2d28vkMA', '5199425'), + (28, 1288, 'not_attending', '2022-03-29 15:58:19', '2025-12-17 19:47:25', '2d28vkMA', '5199460'), + (28, 1289, 'maybe', '2022-03-29 15:58:39', '2025-12-17 19:47:25', '2d28vkMA', '5200190'), + (28, 1290, 'attending', '2022-03-29 15:58:07', '2025-12-17 19:47:25', '2d28vkMA', '5200196'), + (28, 1294, 'attending', '2022-03-30 17:49:07', '2025-12-17 19:47:26', '2d28vkMA', '5214686'), + (28, 1296, 'attending', '2022-03-29 15:58:51', '2025-12-17 19:47:26', '2d28vkMA', '5215985'), + (28, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '2d28vkMA', '5215989'), + (28, 1299, 'not_attending', '2022-03-31 19:33:01', '2025-12-17 19:47:25', '2d28vkMA', '5217660'), + (28, 1300, 'not_attending', '2022-03-31 19:32:58', '2025-12-17 19:47:25', '2d28vkMA', '5217936'), + (28, 1305, 'not_attending', '2022-04-09 18:52:53', '2025-12-17 19:47:27', '2d28vkMA', '5223673'), + (28, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '2d28vkMA', '5223686'), + (28, 1308, 'not_attending', '2022-04-13 16:18:48', '2025-12-17 19:47:27', '2d28vkMA', '5226703'), + (28, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '2d28vkMA', '5227432'), + (28, 1311, 'not_attending', '2022-04-09 18:52:48', '2025-12-17 19:47:27', '2d28vkMA', '5231430'), + (28, 1312, 'not_attending', '2022-04-13 16:19:23', '2025-12-17 19:47:27', '2d28vkMA', '5231459'), + (28, 1313, 'not_attending', '2022-04-09 18:53:07', '2025-12-17 19:47:27', '2d28vkMA', '5231461'), + (28, 1314, 'not_attending', '2022-04-09 18:53:02', '2025-12-17 19:47:27', '2d28vkMA', '5233137'), + (28, 1315, 'not_attending', '2022-04-23 00:04:15', '2025-12-17 19:47:27', '2d28vkMA', '5237522'), + (28, 1316, 'not_attending', '2022-04-13 16:18:54', '2025-12-17 19:47:27', '2d28vkMA', '5237536'), + (28, 1318, 'not_attending', '2022-04-13 16:18:56', '2025-12-17 19:47:27', '2d28vkMA', '5238343'), + (28, 1321, 'not_attending', '2022-04-13 16:19:46', '2025-12-17 19:47:27', '2d28vkMA', '5238355'), + (28, 1322, 'not_attending', '2022-04-26 21:21:10', '2025-12-17 19:47:27', '2d28vkMA', '5238356'), + (28, 1328, 'not_attending', '2022-04-13 16:19:27', '2025-12-17 19:47:27', '2d28vkMA', '5238759'), + (28, 1329, 'not_attending', '2022-04-13 16:19:00', '2025-12-17 19:47:27', '2d28vkMA', '5240135'), + (28, 1330, 'not_attending', '2022-04-13 16:19:35', '2025-12-17 19:47:27', '2d28vkMA', '5242155'), + (28, 1331, 'not_attending', '2022-04-13 16:19:38', '2025-12-17 19:47:27', '2d28vkMA', '5242156'), + (28, 1332, 'not_attending', '2022-04-13 16:19:25', '2025-12-17 19:47:27', '2d28vkMA', '5243274'), + (28, 1336, 'not_attending', '2022-04-15 01:46:28', '2025-12-17 19:47:27', '2d28vkMA', '5244915'), + (28, 1337, 'attending', '2022-04-19 16:35:01', '2025-12-17 19:47:27', '2d28vkMA', '5245036'), + (28, 1340, 'not_attending', '2022-04-26 20:56:07', '2025-12-17 19:47:27', '2d28vkMA', '5245754'), + (28, 1344, 'attending', '2022-04-26 20:56:22', '2025-12-17 19:47:28', '2d28vkMA', '5247465'), + (28, 1346, 'attending', '2022-04-23 00:05:36', '2025-12-17 19:47:27', '2d28vkMA', '5247467'), + (28, 1349, 'not_attending', '2022-04-19 16:35:05', '2025-12-17 19:47:27', '2d28vkMA', '5249631'), + (28, 1354, 'attending', '2022-04-23 15:24:21', '2025-12-17 19:47:27', '2d28vkMA', '5252569'), + (28, 1355, 'not_attending', '2022-04-26 20:56:17', '2025-12-17 19:47:28', '2d28vkMA', '5252573'), + (28, 1357, 'attending', '2022-04-24 18:05:13', '2025-12-17 19:47:27', '2d28vkMA', '5256017'), + (28, 1358, 'attending', '2022-04-26 21:50:26', '2025-12-17 19:47:27', '2d28vkMA', '5258022'), + (28, 1359, 'not_attending', '2022-05-04 17:13:47', '2025-12-17 19:47:28', '2d28vkMA', '5258360'), + (28, 1360, 'not_attending', '2022-04-26 20:55:51', '2025-12-17 19:47:27', '2d28vkMA', '5260197'), + (28, 1362, 'attending', '2022-04-25 18:59:07', '2025-12-17 19:47:28', '2d28vkMA', '5260800'), + (28, 1363, 'not_attending', '2022-04-26 20:56:12', '2025-12-17 19:47:28', '2d28vkMA', '5261577'), + (28, 1366, 'not_attending', '2022-04-26 20:56:03', '2025-12-17 19:47:27', '2d28vkMA', '5262344'), + (28, 1368, 'not_attending', '2022-05-06 09:42:22', '2025-12-17 19:47:28', '2d28vkMA', '5262783'), + (28, 1369, 'maybe', '2022-05-06 09:43:07', '2025-12-17 19:47:28', '2d28vkMA', '5262809'), + (28, 1371, 'not_attending', '2022-04-27 19:04:27', '2025-12-17 19:47:27', '2d28vkMA', '5263784'), + (28, 1372, 'maybe', '2022-05-04 17:13:53', '2025-12-17 19:47:28', '2d28vkMA', '5264352'), + (28, 1374, 'attending', '2022-04-30 19:51:58', '2025-12-17 19:47:28', '2d28vkMA', '5269930'), + (28, 1375, 'not_attending', '2022-05-04 17:14:13', '2025-12-17 19:47:28', '2d28vkMA', '5269932'), + (28, 1376, 'not_attending', '2022-05-06 09:43:38', '2025-12-17 19:47:28', '2d28vkMA', '5271446'), + (28, 1377, 'not_attending', '2022-05-06 09:43:41', '2025-12-17 19:47:28', '2d28vkMA', '5271447'), + (28, 1378, 'attending', '2022-05-06 09:43:46', '2025-12-17 19:47:28', '2d28vkMA', '5271448'), + (28, 1379, 'attending', '2022-05-10 02:10:57', '2025-12-17 19:47:29', '2d28vkMA', '5271449'), + (28, 1380, 'attending', '2022-05-28 17:32:33', '2025-12-17 19:47:30', '2d28vkMA', '5271450'), + (28, 1381, 'attending', '2022-05-05 03:15:22', '2025-12-17 19:47:28', '2d28vkMA', '5271453'), + (28, 1382, 'not_attending', '2022-05-06 09:43:04', '2025-12-17 19:47:28', '2d28vkMA', '5276350'), + (28, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '2d28vkMA', '5276469'), + (28, 1384, 'attending', '2022-05-04 18:19:38', '2025-12-17 19:47:28', '2d28vkMA', '5277078'), + (28, 1385, 'attending', '2022-05-06 09:41:09', '2025-12-17 19:47:28', '2d28vkMA', '5277822'), + (28, 1386, 'not_attending', '2022-05-05 15:14:23', '2025-12-17 19:47:28', '2d28vkMA', '5278159'), + (28, 1388, 'not_attending', '2022-05-06 09:42:13', '2025-12-17 19:47:28', '2d28vkMA', '5278201'), + (28, 1389, 'not_attending', '2022-05-06 17:12:17', '2025-12-17 19:47:28', '2d28vkMA', '5278202'), + (28, 1391, 'not_attending', '2022-05-06 17:12:21', '2025-12-17 19:47:28', '2d28vkMA', '5279531'), + (28, 1393, 'not_attending', '2022-05-17 21:11:04', '2025-12-17 19:47:30', '2d28vkMA', '5280603'), + (28, 1394, 'not_attending', '2022-05-17 21:10:42', '2025-12-17 19:47:30', '2d28vkMA', '5280667'), + (28, 1396, 'attending', '2022-05-14 21:51:26', '2025-12-17 19:47:28', '2d28vkMA', '5281103'), + (28, 1397, 'attending', '2022-05-17 21:10:32', '2025-12-17 19:47:29', '2d28vkMA', '5281104'), + (28, 1399, 'attending', '2022-05-12 22:42:33', '2025-12-17 19:47:28', '2d28vkMA', '5281796'), + (28, 1401, 'not_attending', '2022-05-17 21:10:06', '2025-12-17 19:47:29', '2d28vkMA', '5286295'), + (28, 1402, 'not_attending', '2022-05-17 21:10:40', '2025-12-17 19:47:30', '2d28vkMA', '5287977'), + (28, 1403, 'not_attending', '2022-05-17 21:10:24', '2025-12-17 19:47:29', '2d28vkMA', '5288052'), + (28, 1404, 'not_attending', '2022-05-17 21:10:02', '2025-12-17 19:47:29', '2d28vkMA', '5288114'), + (28, 1405, 'not_attending', '2022-05-17 21:10:15', '2025-12-17 19:47:29', '2d28vkMA', '5288115'), + (28, 1407, 'not_attending', '2022-05-27 02:03:23', '2025-12-17 19:47:30', '2d28vkMA', '5363695'), + (28, 1408, 'not_attending', '2022-05-17 21:10:20', '2025-12-17 19:47:29', '2d28vkMA', '5365960'), + (28, 1409, 'not_attending', '2022-05-17 21:10:46', '2025-12-17 19:47:30', '2d28vkMA', '5367032'), + (28, 1414, 'attending', '2022-05-18 05:31:14', '2025-12-17 19:47:29', '2d28vkMA', '5368445'), + (28, 1415, 'not_attending', '2022-05-23 13:01:45', '2025-12-17 19:47:30', '2d28vkMA', '5368973'), + (28, 1416, 'not_attending', '2022-05-27 02:03:11', '2025-12-17 19:47:30', '2d28vkMA', '5369628'), + (28, 1417, 'not_attending', '2022-05-23 13:01:14', '2025-12-17 19:47:30', '2d28vkMA', '5370465'), + (28, 1419, 'not_attending', '2022-06-03 02:44:28', '2025-12-17 19:47:30', '2d28vkMA', '5373081'), + (28, 1420, 'not_attending', '2022-05-24 20:01:52', '2025-12-17 19:47:30', '2d28vkMA', '5374882'), + (28, 1421, 'not_attending', '2022-05-27 02:03:14', '2025-12-17 19:47:30', '2d28vkMA', '5374885'), + (28, 1422, 'not_attending', '2022-05-24 20:01:57', '2025-12-17 19:47:30', '2d28vkMA', '5375603'), + (28, 1423, 'not_attending', '2022-06-03 02:44:48', '2025-12-17 19:47:17', '2d28vkMA', '5375727'), + (28, 1424, 'not_attending', '2022-05-24 20:01:43', '2025-12-17 19:47:30', '2d28vkMA', '5375772'), + (28, 1425, 'not_attending', '2022-05-24 20:01:47', '2025-12-17 19:47:30', '2d28vkMA', '5375861'), + (28, 1426, 'not_attending', '2022-05-24 20:01:39', '2025-12-17 19:47:30', '2d28vkMA', '5375873'), + (28, 1427, 'not_attending', '2022-05-24 20:01:31', '2025-12-17 19:47:30', '2d28vkMA', '5376074'), + (28, 1428, 'not_attending', '2022-05-27 02:02:59', '2025-12-17 19:47:30', '2d28vkMA', '5378247'), + (28, 1430, 'not_attending', '2022-06-09 02:49:18', '2025-12-17 19:47:30', '2d28vkMA', '5389402'), + (28, 1431, 'attending', '2022-06-03 02:44:02', '2025-12-17 19:47:30', '2d28vkMA', '5389605'), + (28, 1432, 'not_attending', '2022-06-03 02:44:14', '2025-12-17 19:47:30', '2d28vkMA', '5391566'), + (28, 1433, 'not_attending', '2022-06-03 02:44:16', '2025-12-17 19:47:30', '2d28vkMA', '5391667'), + (28, 1435, 'not_attending', '2022-06-03 02:44:10', '2025-12-17 19:47:30', '2d28vkMA', '5394015'), + (28, 1439, 'not_attending', '2022-06-03 02:44:35', '2025-12-17 19:47:30', '2d28vkMA', '5396072'), + (28, 1440, 'not_attending', '2022-06-03 02:44:32', '2025-12-17 19:47:30', '2d28vkMA', '5396080'), + (28, 1441, 'not_attending', '2022-06-03 02:44:41', '2025-12-17 19:47:30', '2d28vkMA', '5397171'), + (28, 1442, 'attending', '2022-06-03 02:46:21', '2025-12-17 19:47:17', '2d28vkMA', '5397265'), + (28, 1444, 'attending', '2022-06-09 02:49:38', '2025-12-17 19:47:30', '2d28vkMA', '5397614'), + (28, 1446, 'not_attending', '2022-06-09 02:49:12', '2025-12-17 19:47:30', '2d28vkMA', '5399721'), + (28, 1447, 'not_attending', '2022-06-09 02:49:21', '2025-12-17 19:47:30', '2d28vkMA', '5401089'), + (28, 1449, 'not_attending', '2022-06-09 02:49:49', '2025-12-17 19:47:31', '2d28vkMA', '5403335'), + (28, 1450, 'not_attending', '2022-06-09 02:49:25', '2025-12-17 19:47:30', '2d28vkMA', '5403421'), + (28, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '2d28vkMA', '5403967'), + (28, 1452, 'attending', '2022-06-09 14:59:07', '2025-12-17 19:47:30', '2d28vkMA', '5404197'), + (28, 1453, 'not_attending', '2022-06-12 03:04:14', '2025-12-17 19:47:31', '2d28vkMA', '5404745'), + (28, 1454, 'not_attending', '2022-06-12 03:04:10', '2025-12-17 19:47:31', '2d28vkMA', '5404771'), + (28, 1456, 'not_attending', '2022-06-12 23:19:49', '2025-12-17 19:47:17', '2d28vkMA', '5404779'), + (28, 1457, 'not_attending', '2022-06-12 03:04:05', '2025-12-17 19:47:31', '2d28vkMA', '5404780'), + (28, 1458, 'attending', '2022-06-10 16:37:19', '2025-12-17 19:47:17', '2d28vkMA', '5404786'), + (28, 1459, 'not_attending', '2022-06-10 16:37:37', '2025-12-17 19:47:17', '2d28vkMA', '5404793'), + (28, 1461, 'not_attending', '2022-06-12 23:19:54', '2025-12-17 19:47:31', '2d28vkMA', '5405149'), + (28, 1462, 'not_attending', '2022-06-12 23:19:35', '2025-12-17 19:47:17', '2d28vkMA', '5405203'), + (28, 1463, 'not_attending', '2022-06-12 23:19:56', '2025-12-17 19:47:31', '2d28vkMA', '5405208'), + (28, 1465, 'attending', '2022-06-12 04:08:00', '2025-12-17 19:47:31', '2d28vkMA', '5406355'), + (28, 1466, 'not_attending', '2022-06-12 23:19:47', '2025-12-17 19:47:17', '2d28vkMA', '5406427'), + (28, 1468, 'maybe', '2022-06-29 18:50:23', '2025-12-17 19:47:19', '2d28vkMA', '5406832'), + (28, 1469, 'not_attending', '2022-06-12 23:20:13', '2025-12-17 19:47:17', '2d28vkMA', '5406838'), + (28, 1470, 'not_attending', '2022-06-12 23:19:25', '2025-12-17 19:47:17', '2d28vkMA', '5407053'), + (28, 1480, 'attending', '2022-06-26 22:46:01', '2025-12-17 19:47:19', '2d28vkMA', '5411699'), + (28, 1482, 'attending', '2022-06-19 19:35:53', '2025-12-17 19:47:19', '2d28vkMA', '5412550'), + (28, 1483, 'attending', '2022-06-20 12:07:45', '2025-12-17 19:47:17', '2d28vkMA', '5414556'), + (28, 1484, 'attending', '2022-06-23 01:55:06', '2025-12-17 19:47:17', '2d28vkMA', '5415046'), + (28, 1486, 'not_attending', '2022-07-01 00:10:35', '2025-12-17 19:47:19', '2d28vkMA', '5416339'), + (28, 1494, 'not_attending', '2022-06-25 15:19:20', '2025-12-17 19:47:19', '2d28vkMA', '5421626'), + (28, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '2d28vkMA', '5422086'), + (28, 1497, 'attending', '2022-07-01 00:10:31', '2025-12-17 19:47:19', '2d28vkMA', '5422405'), + (28, 1498, 'not_attending', '2022-07-02 18:30:09', '2025-12-17 19:47:19', '2d28vkMA', '5422406'), + (28, 1499, 'not_attending', '2022-07-02 18:30:06', '2025-12-17 19:47:19', '2d28vkMA', '5422407'), + (28, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '2d28vkMA', '5424565'), + (28, 1503, 'not_attending', '2022-06-29 18:50:27', '2025-12-17 19:47:19', '2d28vkMA', '5426820'), + (28, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '2d28vkMA', '5426882'), + (28, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '2d28vkMA', '5427083'), + (28, 1508, 'not_attending', '2022-07-14 00:17:39', '2025-12-17 19:47:19', '2d28vkMA', '5433453'), + (28, 1512, 'maybe', '2022-07-14 00:17:26', '2025-12-17 19:47:19', '2d28vkMA', '5441112'), + (28, 1513, 'attending', '2022-07-14 00:11:51', '2025-12-17 19:47:19', '2d28vkMA', '5441125'), + (28, 1514, 'maybe', '2022-07-18 19:48:22', '2025-12-17 19:47:20', '2d28vkMA', '5441126'), + (28, 1515, 'attending', '2022-08-06 21:56:53', '2025-12-17 19:47:21', '2d28vkMA', '5441128'), + (28, 1516, 'not_attending', '2022-08-14 15:58:49', '2025-12-17 19:47:23', '2d28vkMA', '5441129'), + (28, 1518, 'attending', '2022-08-31 21:12:31', '2025-12-17 19:47:24', '2d28vkMA', '5441131'), + (28, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '2d28vkMA', '5441132'), + (28, 1522, 'not_attending', '2022-07-18 19:47:57', '2025-12-17 19:47:20', '2d28vkMA', '5442832'), + (28, 1526, 'not_attending', '2022-07-18 19:48:14', '2025-12-17 19:47:20', '2d28vkMA', '5445059'), + (28, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '2d28vkMA', '5446643'), + (28, 1532, 'maybe', '2022-07-18 19:48:20', '2025-12-17 19:47:20', '2d28vkMA', '5448757'), + (28, 1535, 'not_attending', '2022-07-18 19:47:53', '2025-12-17 19:47:20', '2d28vkMA', '5448830'), + (28, 1536, 'not_attending', '2022-07-18 19:47:50', '2025-12-17 19:47:20', '2d28vkMA', '5449068'), + (28, 1537, 'not_attending', '2022-07-18 19:48:00', '2025-12-17 19:47:20', '2d28vkMA', '5449117'), + (28, 1539, 'not_attending', '2022-07-27 20:28:09', '2025-12-17 19:47:21', '2d28vkMA', '5449671'), + (28, 1540, 'not_attending', '2022-07-18 19:48:11', '2025-12-17 19:47:20', '2d28vkMA', '5453325'), + (28, 1541, 'not_attending', '2022-07-24 14:41:09', '2025-12-17 19:47:20', '2d28vkMA', '5453542'), + (28, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '2d28vkMA', '5454516'), + (28, 1544, 'attending', '2022-09-14 20:27:17', '2025-12-17 19:47:11', '2d28vkMA', '5454517'), + (28, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '2d28vkMA', '5454605'), + (28, 1546, 'attending', '2022-07-27 20:28:01', '2025-12-17 19:47:20', '2d28vkMA', '5454607'), + (28, 1547, 'attending', '2022-07-26 00:48:55', '2025-12-17 19:47:20', '2d28vkMA', '5454608'), + (28, 1549, 'not_attending', '2022-07-24 14:40:56', '2025-12-17 19:47:20', '2d28vkMA', '5454789'), + (28, 1550, 'not_attending', '2022-07-24 14:41:23', '2025-12-17 19:47:20', '2d28vkMA', '5454803'), + (28, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '2d28vkMA', '5455037'), + (28, 1552, 'not_attending', '2022-07-24 14:41:37', '2025-12-17 19:47:20', '2d28vkMA', '5455149'), + (28, 1560, 'not_attending', '2022-08-16 15:52:26', '2025-12-17 19:47:23', '2d28vkMA', '5458768'), + (28, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '2d28vkMA', '5461278'), + (28, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '2d28vkMA', '5469480'), + (28, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '2d28vkMA', '5471073'), + (28, 1566, 'attending', '2022-07-27 20:27:42', '2025-12-17 19:47:20', '2d28vkMA', '5474663'), + (28, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '2d28vkMA', '5482022'), + (28, 1575, 'not_attending', '2022-08-16 15:52:53', '2025-12-17 19:47:23', '2d28vkMA', '5482250'), + (28, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '2d28vkMA', '5482793'), + (28, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '2d28vkMA', '5488912'), + (28, 1581, 'attending', '2022-08-11 02:57:48', '2025-12-17 19:47:22', '2d28vkMA', '5490302'), + (28, 1582, 'not_attending', '2022-08-16 15:52:31', '2025-12-17 19:47:23', '2d28vkMA', '5492001'), + (28, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '2d28vkMA', '5492192'), + (28, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '2d28vkMA', '5493139'), + (28, 1589, 'not_attending', '2022-08-16 15:52:41', '2025-12-17 19:47:23', '2d28vkMA', '5493159'), + (28, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '2d28vkMA', '5493200'), + (28, 1591, 'not_attending', '2022-08-14 15:57:26', '2025-12-17 19:47:22', '2d28vkMA', '5493764'), + (28, 1593, 'maybe', '2022-08-11 02:58:52', '2025-12-17 19:47:22', '2d28vkMA', '5494043'), + (28, 1595, 'not_attending', '2022-08-11 02:57:52', '2025-12-17 19:47:22', '2d28vkMA', '5495736'), + (28, 1597, 'not_attending', '2022-08-14 15:57:09', '2025-12-17 19:47:22', '2d28vkMA', '5496566'), + (28, 1598, 'not_attending', '2022-08-14 15:57:36', '2025-12-17 19:47:22', '2d28vkMA', '5496567'), + (28, 1601, 'not_attending', '2022-08-11 03:19:36', '2025-12-17 19:47:22', '2d28vkMA', '5496589'), + (28, 1603, 'not_attending', '2022-08-12 03:23:47', '2025-12-17 19:47:23', '2d28vkMA', '5497895'), + (28, 1604, 'maybe', '2022-08-14 15:57:52', '2025-12-17 19:47:22', '2d28vkMA', '5501504'), + (28, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '2d28vkMA', '5502188'), + (28, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '2d28vkMA', '5505059'), + (28, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '2d28vkMA', '5509055'), + (28, 1618, 'not_attending', '2022-08-24 12:32:09', '2025-12-17 19:47:23', '2d28vkMA', '5512005'), + (28, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '2d28vkMA', '5512862'), + (28, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '2d28vkMA', '5513985'), + (28, 1626, 'attending', '2022-08-25 23:12:14', '2025-12-17 19:47:11', '2d28vkMA', '5519981'), + (28, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '2d28vkMA', '5522550'), + (28, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '2d28vkMA', '5534683'), + (28, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '2d28vkMA', '5537735'), + (28, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '2d28vkMA', '5540859'), + (28, 1642, 'attending', '2022-09-07 20:29:07', '2025-12-17 19:47:24', '2d28vkMA', '5544227'), + (28, 1645, 'attending', '2022-09-03 20:12:54', '2025-12-17 19:47:25', '2d28vkMA', '5546559'), + (28, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '2d28vkMA', '5546619'), + (28, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '2d28vkMA', '5555245'), + (28, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '2d28vkMA', '5557747'), + (28, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '2d28vkMA', '5560255'), + (28, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '2d28vkMA', '5562906'), + (28, 1665, 'attending', '2022-09-10 21:04:04', '2025-12-17 19:47:25', '2d28vkMA', '5563133'), + (28, 1667, 'attending', '2022-09-24 05:18:59', '2025-12-17 19:47:11', '2d28vkMA', '5563221'), + (28, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '2d28vkMA', '5600604'), + (28, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '2d28vkMA', '5605544'), + (28, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '2d28vkMA', '5606737'), + (28, 1702, 'attending', '2022-10-02 19:34:38', '2025-12-17 19:47:12', '2d28vkMA', '5609173'), + (28, 1711, 'attending', '2022-10-06 21:37:31', '2025-12-17 19:47:12', '2d28vkMA', '5621883'), + (28, 1719, 'attending', '2022-10-07 15:10:39', '2025-12-17 19:47:12', '2d28vkMA', '5630958'), + (28, 1720, 'attending', '2022-10-15 17:53:23', '2025-12-17 19:47:12', '2d28vkMA', '5630959'), + (28, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '2d28vkMA', '5630960'), + (28, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '2d28vkMA', '5630961'), + (28, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '2d28vkMA', '5630962'), + (28, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '2d28vkMA', '5630966'), + (28, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '2d28vkMA', '5630967'), + (28, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '2d28vkMA', '5630968'), + (28, 1727, 'not_attending', '2022-11-29 21:44:17', '2025-12-17 19:47:16', '2d28vkMA', '5630969'), + (28, 1728, 'attending', '2022-11-27 16:27:06', '2025-12-17 19:47:17', '2d28vkMA', '5630970'), + (28, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '2d28vkMA', '5635406'), + (28, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '2d28vkMA', '5638765'), + (28, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '2d28vkMA', '5640097'), + (28, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '2d28vkMA', '5640843'), + (28, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '2d28vkMA', '5641521'), + (28, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '2d28vkMA', '5642818'), + (28, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '2d28vkMA', '5652395'), + (28, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '2d28vkMA', '5670445'), + (28, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '2d28vkMA', '5671637'), + (28, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '2d28vkMA', '5672329'), + (28, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '2d28vkMA', '5674057'), + (28, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '2d28vkMA', '5674060'), + (28, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', '2d28vkMA', '5677461'), + (28, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '2d28vkMA', '5698046'), + (28, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '2d28vkMA', '5699760'), + (28, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '2d28vkMA', '5741601'), + (28, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '2d28vkMA', '5763458'), + (28, 1805, 'attending', '2023-02-03 00:05:51', '2025-12-17 19:47:06', '2d28vkMA', '5764675'), + (28, 1806, 'attending', '2023-01-17 14:56:47', '2025-12-17 19:47:05', '2d28vkMA', '5764676'), + (28, 1807, 'attending', '2023-01-11 03:37:06', '2025-12-17 19:47:05', '2d28vkMA', '5764677'), + (28, 1811, 'maybe', '2023-05-06 16:14:55', '2025-12-17 19:47:02', '2d28vkMA', '5764681'), + (28, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '2d28vkMA', '5774172'), + (28, 1827, 'attending', '2022-11-27 06:45:17', '2025-12-17 19:47:16', '2d28vkMA', '5776786'), + (28, 1829, 'maybe', '2022-11-29 21:44:46', '2025-12-17 19:47:16', '2d28vkMA', '5778867'), + (28, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '2d28vkMA', '5818247'), + (28, 1833, 'not_attending', '2022-12-05 05:22:21', '2025-12-17 19:47:16', '2d28vkMA', '5819465'), + (28, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '2d28vkMA', '5819471'), + (28, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '2d28vkMA', '5827739'), + (28, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '2d28vkMA', '5844306'), + (28, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '2d28vkMA', '5850159'), + (28, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '2d28vkMA', '5858999'), + (28, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '2d28vkMA', '5871984'), + (28, 1858, 'attending', '2023-01-12 19:06:22', '2025-12-17 19:47:05', '2d28vkMA', '5875044'), + (28, 1860, 'attending', '2023-01-13 05:49:20', '2025-12-17 19:47:05', '2d28vkMA', '5876309'), + (28, 1861, 'not_attending', '2023-01-14 04:29:02', '2025-12-17 19:47:05', '2d28vkMA', '5876354'), + (28, 1864, 'attending', '2023-01-17 14:56:48', '2025-12-17 19:47:05', '2d28vkMA', '5879675'), + (28, 1865, 'attending', '2023-01-25 04:33:28', '2025-12-17 19:47:06', '2d28vkMA', '5879676'), + (28, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '2d28vkMA', '5880939'), + (28, 1867, 'attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '2d28vkMA', '5880940'), + (28, 1868, 'not_attending', '2023-02-17 17:40:16', '2025-12-17 19:47:07', '2d28vkMA', '5880942'), + (28, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '2d28vkMA', '5880943'), + (28, 1870, 'attending', '2023-01-17 19:14:15', '2025-12-17 19:47:05', '2d28vkMA', '5881740'), + (28, 1871, 'attending', '2023-01-18 05:57:49', '2025-12-17 19:47:05', '2d28vkMA', '5883502'), + (28, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '2d28vkMA', '5887890'), + (28, 1875, 'not_attending', '2023-01-25 04:33:20', '2025-12-17 19:47:06', '2d28vkMA', '5887908'), + (28, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '2d28vkMA', '5888598'), + (28, 1879, 'attending', '2023-01-24 22:14:56', '2025-12-17 19:47:06', '2d28vkMA', '5893001'), + (28, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '2d28vkMA', '5893260'), + (28, 1882, 'attending', '2023-01-29 18:21:07', '2025-12-17 19:47:06', '2d28vkMA', '5898447'), + (28, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '2d28vkMA', '5899826'), + (28, 1885, 'not_attending', '2023-02-17 17:40:26', '2025-12-17 19:47:08', '2d28vkMA', '5899928'), + (28, 1888, 'attending', '2023-02-17 23:26:58', '2025-12-17 19:47:07', '2d28vkMA', '5900197'), + (28, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '2d28vkMA', '5900199'), + (28, 1890, 'not_attending', '2023-02-17 17:40:20', '2025-12-17 19:47:08', '2d28vkMA', '5900200'), + (28, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '2d28vkMA', '5900202'), + (28, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '2d28vkMA', '5900203'), + (28, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '2d28vkMA', '5901108'), + (28, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '2d28vkMA', '5901126'), + (28, 1897, 'attending', '2023-02-07 20:12:33', '2025-12-17 19:47:07', '2d28vkMA', '5901128'), + (28, 1898, 'attending', '2023-01-31 23:39:17', '2025-12-17 19:47:06', '2d28vkMA', '5901263'), + (28, 1902, 'attending', '2023-02-03 00:05:46', '2025-12-17 19:47:06', '2d28vkMA', '5902254'), + (28, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '2d28vkMA', '5909655'), + (28, 1913, 'maybe', '2023-02-07 20:12:21', '2025-12-17 19:47:07', '2d28vkMA', '5910300'), + (28, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '2d28vkMA', '5910522'), + (28, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '2d28vkMA', '5910526'), + (28, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '2d28vkMA', '5910528'), + (28, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '2d28vkMA', '5916219'), + (28, 1923, 'attending', '2023-02-16 05:26:46', '2025-12-17 19:47:07', '2d28vkMA', '5930436'), + (28, 1924, 'not_attending', '2023-02-19 05:54:06', '2025-12-17 19:47:07', '2d28vkMA', '5931095'), + (28, 1925, 'not_attending', '2023-02-18 18:35:37', '2025-12-17 19:47:08', '2d28vkMA', '5932619'), + (28, 1928, 'not_attending', '2023-02-19 05:54:18', '2025-12-17 19:47:07', '2d28vkMA', '5932627'), + (28, 1929, 'not_attending', '2023-02-18 18:35:33', '2025-12-17 19:47:07', '2d28vkMA', '5932628'), + (28, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '2d28vkMA', '5936234'), + (28, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '2d28vkMA', '5958351'), + (28, 1938, 'maybe', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '2d28vkMA', '5959751'), + (28, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '2d28vkMA', '5959755'), + (28, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '2d28vkMA', '5960055'), + (28, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '2d28vkMA', '5961684'), + (28, 1942, 'not_attending', '2023-02-27 22:54:39', '2025-12-17 19:47:08', '2d28vkMA', '5962085'), + (28, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '2d28vkMA', '5962132'), + (28, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '2d28vkMA', '5962133'), + (28, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '2d28vkMA', '5962134'), + (28, 1947, 'attending', '2023-03-05 18:18:49', '2025-12-17 19:47:09', '2d28vkMA', '5962233'), + (28, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '2d28vkMA', '5962317'), + (28, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '2d28vkMA', '5962318'), + (28, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', '2d28vkMA', '5965933'), + (28, 1953, 'attending', '2023-03-01 20:41:47', '2025-12-17 19:47:09', '2d28vkMA', '5966307'), + (28, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '2d28vkMA', '5967014'), + (28, 1956, 'attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '2d28vkMA', '5972763'), + (28, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '2d28vkMA', '5972815'), + (28, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '2d28vkMA', '5974016'), + (28, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '2d28vkMA', '5981515'), + (28, 1966, 'attending', '2023-03-12 15:16:51', '2025-12-17 19:47:10', '2d28vkMA', '5983042'), + (28, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '2d28vkMA', '5993516'), + (28, 1972, 'not_attending', '2023-03-18 01:48:34', '2025-12-17 19:46:56', '2d28vkMA', '5993776'), + (28, 1973, 'not_attending', '2023-03-18 01:48:30', '2025-12-17 19:46:56', '2d28vkMA', '5993777'), + (28, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '2d28vkMA', '5998939'), + (28, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '2d28vkMA', '6028191'), + (28, 1979, 'not_attending', '2023-03-18 01:48:27', '2025-12-17 19:46:56', '2d28vkMA', '6030009'), + (28, 1980, 'not_attending', '2023-03-22 19:35:18', '2025-12-17 19:46:57', '2d28vkMA', '6036032'), + (28, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '2d28vkMA', '6040066'), + (28, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '2d28vkMA', '6042717'), + (28, 1985, 'attending', '2023-03-26 18:06:35', '2025-12-17 19:46:57', '2d28vkMA', '6043041'), + (28, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '2d28vkMA', '6044838'), + (28, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '2d28vkMA', '6044839'), + (28, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d28vkMA', '6045684'), + (28, 1991, 'attending', '2023-03-30 14:48:11', '2025-12-17 19:46:58', '2d28vkMA', '6047354'), + (28, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '2d28vkMA', '6050104'), + (28, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '2d28vkMA', '6053195'), + (28, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '2d28vkMA', '6053198'), + (28, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '2d28vkMA', '6056085'), + (28, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '2d28vkMA', '6056916'), + (28, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '2d28vkMA', '6059290'), + (28, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '2d28vkMA', '6060328'), + (28, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '2d28vkMA', '6061037'), + (28, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '2d28vkMA', '6061039'), + (28, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '2d28vkMA', '6067245'), + (28, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '2d28vkMA', '6068094'), + (28, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '2d28vkMA', '6068252'), + (28, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '2d28vkMA', '6068253'), + (28, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '2d28vkMA', '6068254'), + (28, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '2d28vkMA', '6068280'), + (28, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '2d28vkMA', '6069093'), + (28, 2039, 'attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', '2d28vkMA', '6072398'), + (28, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '2d28vkMA', '6072528'), + (28, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', '2d28vkMA', '6073678'), + (28, 2045, 'attending', '2023-04-30 02:00:56', '2025-12-17 19:47:01', '2d28vkMA', '6075556'), + (28, 2048, 'attending', '2023-05-03 02:39:22', '2025-12-17 19:47:03', '2d28vkMA', '6076415'), + (28, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '2d28vkMA', '6079840'), + (28, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '2d28vkMA', '6083398'), + (28, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '2d28vkMA', '6093504'), + (28, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '2d28vkMA', '6097414'), + (28, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '2d28vkMA', '6097442'), + (28, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '2d28vkMA', '6097684'), + (28, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '2d28vkMA', '6098762'), + (28, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '2d28vkMA', '6101361'), + (28, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '2d28vkMA', '6101362'), + (28, 2074, 'attending', '2023-05-20 00:08:19', '2025-12-17 19:47:03', '2d28vkMA', '6107312'), + (28, 2075, 'not_attending', '2023-05-17 22:42:51', '2025-12-17 19:46:50', '2d28vkMA', '6107314'), + (28, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '2d28vkMA', '6120034'), + (28, 2094, 'not_attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', '2d28vkMA', '6135924'), + (28, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '2d28vkMA', '6136733'), + (28, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '2d28vkMA', '6137989'), + (28, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '2d28vkMA', '6150864'), + (28, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '2d28vkMA', '6155491'), + (28, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '2d28vkMA', '6164417'), + (28, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '2d28vkMA', '6166388'), + (28, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '2d28vkMA', '6176439'), + (28, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '2d28vkMA', '6182410'), + (28, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '2d28vkMA', '6185812'), + (28, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '2d28vkMA', '6187651'), + (28, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '2d28vkMA', '6187963'), + (28, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '2d28vkMA', '6187964'), + (28, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '2d28vkMA', '6187966'), + (28, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '2d28vkMA', '6187967'), + (28, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '2d28vkMA', '6187969'), + (28, 2140, 'not_attending', '2023-07-13 21:00:43', '2025-12-17 19:46:52', '2d28vkMA', '6188074'), + (28, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '2d28vkMA', '6334878'), + (28, 2145, 'not_attending', '2023-07-13 21:00:45', '2025-12-17 19:46:52', '2d28vkMA', '6334903'), + (28, 2147, 'not_attending', '2023-07-13 21:01:02', '2025-12-17 19:46:52', '2d28vkMA', '6335666'), + (28, 2149, 'attending', '2023-07-09 21:43:40', '2025-12-17 19:46:53', '2d28vkMA', '6335682'), + (28, 2151, 'not_attending', '2023-07-09 22:57:13', '2025-12-17 19:46:52', '2d28vkMA', '6335700'), + (28, 2152, 'attending', '2023-07-11 22:50:36', '2025-12-17 19:46:52', '2d28vkMA', '6337021'), + (28, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '2d28vkMA', '6337236'), + (28, 2154, 'not_attending', '2023-07-11 22:52:40', '2025-12-17 19:46:52', '2d28vkMA', '6337689'), + (28, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '2d28vkMA', '6337970'), + (28, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '2d28vkMA', '6338308'), + (28, 2159, 'not_attending', '2023-07-18 19:09:42', '2025-12-17 19:46:53', '2d28vkMA', '6338355'), + (28, 2160, 'attending', '2023-07-29 21:09:07', '2025-12-17 19:46:54', '2d28vkMA', '6338358'), + (28, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '2d28vkMA', '6341710'), + (28, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '2d28vkMA', '6342044'), + (28, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '2d28vkMA', '6342298'), + (28, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '2d28vkMA', '6343294'), + (28, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '2d28vkMA', '6347034'), + (28, 2177, 'not_attending', '2023-08-09 23:22:24', '2025-12-17 19:46:55', '2d28vkMA', '6347053'), + (28, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '2d28vkMA', '6347056'), + (28, 2184, 'not_attending', '2023-07-29 21:09:08', '2025-12-17 19:46:54', '2d28vkMA', '6353825'), + (28, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '2d28vkMA', '6353830'), + (28, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '2d28vkMA', '6353831'), + (28, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '2d28vkMA', '6357867'), + (28, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '2d28vkMA', '6358652'), + (28, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '2d28vkMA', '6358668'), + (28, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '2d28vkMA', '6358669'), + (28, 2195, 'attending', '2023-08-25 22:45:50', '2025-12-17 19:46:55', '2d28vkMA', '6359397'), + (28, 2199, 'attending', '2023-08-05 15:55:14', '2025-12-17 19:46:55', '2d28vkMA', '6359849'), + (28, 2200, 'attending', '2023-08-05 16:00:11', '2025-12-17 19:46:55', '2d28vkMA', '6359850'), + (28, 2203, 'not_attending', '2023-08-10 14:03:37', '2025-12-17 19:46:55', '2d28vkMA', '6361524'), + (28, 2204, 'not_attending', '2023-08-10 14:03:56', '2025-12-17 19:46:55', '2d28vkMA', '6361542'), + (28, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '2d28vkMA', '6361709'), + (28, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '2d28vkMA', '6361710'), + (28, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '2d28vkMA', '6361711'), + (28, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '2d28vkMA', '6361712'), + (28, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '2d28vkMA', '6361713'), + (28, 2213, 'attending', '2023-08-09 17:40:57', '2025-12-17 19:46:55', '2d28vkMA', '6362935'), + (28, 2216, 'attending', '2023-08-20 19:30:47', '2025-12-17 19:46:55', '2d28vkMA', '6364123'), + (28, 2234, 'attending', '2023-08-28 14:37:55', '2025-12-17 19:46:56', '2d28vkMA', '6382559'), + (28, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '2d28vkMA', '6382573'), + (28, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '2d28vkMA', '6388604'), + (28, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '2d28vkMA', '6394629'), + (28, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '2d28vkMA', '6394631'), + (28, 2256, 'attending', '2023-09-21 14:34:41', '2025-12-17 19:46:45', '2d28vkMA', '6404369'), + (28, 2265, 'not_attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', '2d28vkMA', '6439625'), + (28, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '2d28vkMA', '6440863'), + (28, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '2d28vkMA', '6445440'), + (28, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '2d28vkMA', '6453951'), + (28, 2279, 'attending', '2023-10-12 22:52:49', '2025-12-17 19:46:46', '2d28vkMA', '6455460'), + (28, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '2d28vkMA', '6461696'), + (28, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '2d28vkMA', '6462129'), + (28, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '2d28vkMA', '6463218'), + (28, 2295, 'attending', '2023-10-16 13:24:20', '2025-12-17 19:46:46', '2d28vkMA', '6467832'), + (28, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '2d28vkMA', '6472181'), + (28, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', '2d28vkMA', '6474276'), + (28, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '2d28vkMA', '6482693'), + (28, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '2d28vkMA', '6484200'), + (28, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '2d28vkMA', '6484680'), + (28, 2310, 'attending', '2023-10-29 02:38:38', '2025-12-17 19:46:47', '2d28vkMA', '6487709'), + (28, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '2d28vkMA', '6507741'), + (28, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '2d28vkMA', '6514659'), + (28, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '2d28vkMA', '6514660'), + (28, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '2d28vkMA', '6519103'), + (28, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '2d28vkMA', '6535681'), + (28, 2338, 'not_attending', '2023-11-21 22:10:50', '2025-12-17 19:46:48', '2d28vkMA', '6538868'), + (28, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '2d28vkMA', '6584747'), + (28, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '2d28vkMA', '6587097'), + (28, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '2d28vkMA', '6609022'), + (28, 2372, 'not_attending', '2023-12-15 15:23:06', '2025-12-17 19:46:36', '2d28vkMA', '6628243'), + (28, 2373, 'attending', '2024-01-10 14:04:43', '2025-12-17 19:46:38', '2d28vkMA', '6632678'), + (28, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '2d28vkMA', '6632757'), + (28, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '2d28vkMA', '6644187'), + (28, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '2d28vkMA', '6648951'), + (28, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '2d28vkMA', '6648952'), + (28, 2388, 'attending', '2024-01-05 23:25:55', '2025-12-17 19:46:37', '2d28vkMA', '6649244'), + (28, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '2d28vkMA', '6655401'), + (28, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '2d28vkMA', '6661585'), + (28, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '2d28vkMA', '6661588'), + (28, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '2d28vkMA', '6661589'), + (28, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '2d28vkMA', '6699906'), + (28, 2408, 'attending', '2024-01-22 20:07:43', '2025-12-17 19:46:40', '2d28vkMA', '6699907'), + (28, 2410, 'attending', '2024-02-08 16:34:10', '2025-12-17 19:46:41', '2d28vkMA', '6699911'), + (28, 2411, 'attending', '2024-02-15 22:27:57', '2025-12-17 19:46:41', '2d28vkMA', '6699913'), + (28, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '2d28vkMA', '6701109'), + (28, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '2d28vkMA', '6704561'), + (28, 2425, 'attending', '2024-01-19 05:06:48', '2025-12-17 19:46:40', '2d28vkMA', '6705219'), + (28, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '2d28vkMA', '6710153'), + (28, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '2d28vkMA', '6711552'), + (28, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '2d28vkMA', '6711553'), + (28, 2431, 'attending', '2024-01-28 04:22:00', '2025-12-17 19:46:41', '2d28vkMA', '6712394'), + (28, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '2d28vkMA', '6722688'), + (28, 2438, 'attending', '2024-02-04 02:47:17', '2025-12-17 19:46:41', '2d28vkMA', '6730201'), + (28, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '2d28vkMA', '6730620'), + (28, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '2d28vkMA', '6730642'), + (28, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '2d28vkMA', '6740364'), + (28, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '2d28vkMA', '6743829'), + (28, 2467, 'maybe', '2024-02-21 15:36:38', '2025-12-17 19:46:43', '2d28vkMA', '7029987'), + (28, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '2d28vkMA', '7030380'), + (28, 2471, 'maybe', '2024-02-21 15:35:38', '2025-12-17 19:46:42', '2d28vkMA', '7032425'), + (28, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '2d28vkMA', '7033677'), + (28, 2474, 'not_attending', '2024-02-21 15:36:06', '2025-12-17 19:46:43', '2d28vkMA', '7035415'), + (28, 2479, 'attending', '2024-02-21 02:45:32', '2025-12-17 19:46:43', '2d28vkMA', '7037009'), + (28, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '2d28vkMA', '7044715'), + (28, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '2d28vkMA', '7050318'), + (28, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '2d28vkMA', '7050319'), + (28, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '2d28vkMA', '7050322'), + (28, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '2d28vkMA', '7057804'), + (28, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '2d28vkMA', '7072824'), + (28, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '2d28vkMA', '7074348'), + (28, 2511, 'attending', '2024-04-11 23:29:30', '2025-12-17 19:46:33', '2d28vkMA', '7074351'), + (28, 2512, 'maybe', '2024-03-29 16:32:32', '2025-12-17 19:46:33', '2d28vkMA', '7074352'), + (28, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '2d28vkMA', '7074364'), + (28, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '2d28vkMA', '7089267'), + (28, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '2d28vkMA', '7098747'), + (28, 2553, 'attending', '2024-03-29 11:42:20', '2025-12-17 19:46:33', '2d28vkMA', '7113468'), + (28, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '2d28vkMA', '7114856'), + (28, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '2d28vkMA', '7114951'), + (28, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '2d28vkMA', '7114955'), + (28, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '2d28vkMA', '7114956'), + (28, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '2d28vkMA', '7114957'), + (28, 2564, 'attending', '2024-04-03 01:28:53', '2025-12-17 19:46:33', '2d28vkMA', '7134735'), + (28, 2567, 'attending', '2024-04-04 01:56:00', '2025-12-17 19:46:33', '2d28vkMA', '7144962'), + (28, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '2d28vkMA', '7153615'), + (28, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '2d28vkMA', '7159484'), + (28, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '2d28vkMA', '7178446'), + (28, 2598, 'attending', '2024-04-21 22:45:02', '2025-12-17 19:46:34', '2d28vkMA', '7186731'), + (28, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '2d28vkMA', '7220467'), + (28, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '2d28vkMA', '7240354'), + (28, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '2d28vkMA', '7251633'), + (28, 2626, 'attending', '2024-05-17 13:09:12', '2025-12-17 19:46:35', '2d28vkMA', '7264723'), + (28, 2628, 'attending', '2024-05-30 22:18:35', '2025-12-17 19:46:36', '2d28vkMA', '7264725'), + (28, 2648, 'attending', '2024-05-20 23:53:49', '2025-12-17 19:46:35', '2d28vkMA', '7282283'), + (28, 2655, 'attending', '2024-05-26 21:46:43', '2025-12-17 19:46:35', '2d28vkMA', '7291225'), + (28, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '2d28vkMA', '7302674'), + (28, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '2d28vkMA', '7324073'), + (28, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '2d28vkMA', '7324074'), + (28, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '2d28vkMA', '7324075'), + (28, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '2d28vkMA', '7324078'), + (28, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '2d28vkMA', '7324082'), + (28, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '2d28vkMA', '7331457'), + (28, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '2d28vkMA', '7363643'), + (28, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '2d28vkMA', '7368606'), + (28, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '2d28vkMA', '7397462'), + (28, 2821, 'attending', '2024-10-07 16:32:47', '2025-12-17 19:46:26', '2d28vkMA', '7424275'), + (28, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '2d28vkMA', '7424276'), + (28, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '2d28vkMA', '7432751'), + (28, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '2d28vkMA', '7432752'), + (28, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '2d28vkMA', '7432753'), + (28, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '2d28vkMA', '7432754'), + (28, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '2d28vkMA', '7432755'), + (28, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '2d28vkMA', '7432756'), + (28, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '2d28vkMA', '7432758'), + (28, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '2d28vkMA', '7432759'), + (28, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '2d28vkMA', '7433834'), + (28, 2839, 'attending', '2024-09-25 13:42:47', '2025-12-17 19:46:25', '2d28vkMA', '7439262'), + (28, 2858, 'attending', '2024-10-11 19:25:00', '2025-12-17 19:46:26', '2d28vkMA', '7469388'), + (28, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '2d28vkMA', '7470197'), + (28, 2892, 'attending', '2024-10-27 21:32:27', '2025-12-17 19:46:26', '2d28vkMA', '7672064'), + (28, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '2d28vkMA', '7685613'), + (28, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '2d28vkMA', '7688194'), + (28, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '2d28vkMA', '7688196'), + (28, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '2d28vkMA', '7688289'), + (28, 2908, 'not_attending', '2024-11-11 01:14:50', '2025-12-17 19:46:27', '2d28vkMA', '7689420'), + (28, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '2d28vkMA', '7692763'), + (28, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '2d28vkMA', '7697552'), + (28, 2915, 'attending', '2024-11-17 05:48:35', '2025-12-17 19:46:27', '2d28vkMA', '7698151'), + (28, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '2d28vkMA', '7699878'), + (28, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '2d28vkMA', '7704043'), + (28, 2922, 'not_attending', '2024-11-25 22:47:46', '2025-12-17 19:46:21', '2d28vkMA', '7710890'), + (28, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '2d28vkMA', '7712467'), + (28, 2926, 'attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '2d28vkMA', '7713585'), + (28, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '2d28vkMA', '7713586'), + (28, 2929, 'not_attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', '2d28vkMA', '7723465'), + (28, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '2d28vkMA', '7738518'), + (28, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '2d28vkMA', '7750632'), + (28, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '2d28vkMA', '7750636'), + (28, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '2d28vkMA', '7796540'), + (28, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '2d28vkMA', '7796541'), + (28, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '2d28vkMA', '7796542'), + (28, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '2d28vkMA', '7825913'), + (28, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', '2d28vkMA', '7825920'), + (28, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '2d28vkMA', '7826209'), + (28, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '2d28vkMA', '7834742'), + (28, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '2d28vkMA', '7842108'), + (28, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '2d28vkMA', '7842902'), + (28, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '2d28vkMA', '7842903'), + (28, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '2d28vkMA', '7842904'), + (28, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '2d28vkMA', '7842905'), + (28, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', '2d28vkMA', '7842906'), + (28, 2998, 'not_attending', '2025-03-04 03:56:37', '2025-12-17 19:46:18', '2d28vkMA', '7842909'), + (28, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '2d28vkMA', '7855719'), + (28, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '2d28vkMA', '7860683'), + (28, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '2d28vkMA', '7860684'), + (28, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '2d28vkMA', '7866095'), + (28, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '2d28vkMA', '7869170'), + (28, 3015, 'attending', '2025-04-22 15:27:17', '2025-12-17 19:46:20', '2d28vkMA', '7869186'), + (28, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '2d28vkMA', '7869188'), + (28, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', '2d28vkMA', '7869194'), + (28, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', '2d28vkMA', '7869195'), + (28, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '2d28vkMA', '7869201'), + (28, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '2d28vkMA', '7877465'), + (28, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '2d28vkMA', '7888250'), + (28, 3072, 'maybe', '2025-04-03 16:47:31', '2025-12-17 19:46:19', '2d28vkMA', '7895449'), + (28, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '2d28vkMA', '7904777'), + (28, 3094, 'not_attending', '2025-05-10 15:50:16', '2025-12-17 19:46:21', '2d28vkMA', '8342292'), + (28, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '2d28vkMA', '8349164'), + (28, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '2d28vkMA', '8349545'), + (28, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '2d28vkMA', '8353584'), + (28, 3131, 'attending', '2025-05-15 16:38:43', '2025-12-17 19:46:21', '2d28vkMA', '8368028'), + (28, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '2d28vkMA', '8368029'), + (28, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '2d28vkMA', '8388462'), + (28, 3153, 'attending', '2025-06-03 11:50:05', '2025-12-17 19:46:15', '2d28vkMA', '8400273'), + (28, 3154, 'attending', '2025-06-27 02:33:54', '2025-12-17 19:46:15', '2d28vkMA', '8400274'), + (28, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '2d28vkMA', '8400275'), + (28, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '2d28vkMA', '8400276'), + (28, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '2d28vkMA', '8404977'), + (28, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '2d28vkMA', '8430783'), + (28, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '2d28vkMA', '8430784'), + (28, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '2d28vkMA', '8430799'), + (28, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '2d28vkMA', '8430800'), + (28, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '2d28vkMA', '8430801'), + (28, 3188, 'attending', '2025-07-06 01:49:51', '2025-12-17 19:46:17', '2d28vkMA', '8438709'), + (28, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '2d28vkMA', '8457738'), + (28, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '2d28vkMA', '8459566'), + (28, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '2d28vkMA', '8459567'), + (28, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', '2d28vkMA', '8459568'), + (28, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '2d28vkMA', '8461032'), + (28, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '2d28vkMA', '8477877'), + (28, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '2d28vkMA', '8485688'), + (28, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '2d28vkMA', '8490587'), + (28, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '2d28vkMA', '8493552'), + (28, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '2d28vkMA', '8493553'), + (28, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '2d28vkMA', '8493554'), + (28, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '2d28vkMA', '8493555'), + (28, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '2d28vkMA', '8493556'), + (28, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '2d28vkMA', '8493557'), + (28, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '2d28vkMA', '8493558'), + (28, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '2d28vkMA', '8493559'), + (28, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '2d28vkMA', '8493560'), + (28, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '2d28vkMA', '8493561'), + (28, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '2d28vkMA', '8493572'), + (28, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '2d28vkMA', '8540725'), + (28, 3289, 'attending', '2025-10-24 18:54:34', '2025-12-17 19:46:14', '2d28vkMA', '8542939'), + (28, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '2d28vkMA', '8555421'), + (28, 3325, 'maybe', '2025-11-24 00:28:22', '2025-12-17 19:46:14', '2d28vkMA', '8556660'), + (28, 3327, 'maybe', '2025-11-27 22:45:33', '2025-12-17 19:46:11', '2d28vkMA', '8557174'), + (29, 3304, 'attending', '2025-11-22 11:58:38', '2025-12-17 19:46:14', 'dJVbgOwd', '8550024'), + (29, 3305, 'attending', '2025-12-05 08:37:47', '2025-12-17 19:46:11', 'dJVbgOwd', '8550025'), + (29, 3306, 'attending', '2025-12-13 02:48:56', '2025-12-17 19:46:11', 'dJVbgOwd', '8550026'), + (29, 3324, 'attending', '2025-11-18 00:10:55', '2025-12-17 19:46:14', 'dJVbgOwd', '8556406'), + (29, 3327, 'attending', '2025-11-24 07:43:08', '2025-12-17 19:46:11', 'dJVbgOwd', '8557174'), + (30, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ArbMKbqA', '7904777'), + (30, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', 'ArbMKbqA', '8387505'), + (30, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ArbMKbqA', '8388462'), + (30, 3150, 'attending', '2025-06-21 18:23:51', '2025-12-17 19:46:15', 'ArbMKbqA', '8393174'), + (30, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ArbMKbqA', '8400273'), + (30, 3154, 'attending', '2025-06-28 18:14:39', '2025-12-17 19:46:15', 'ArbMKbqA', '8400274'), + (30, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ArbMKbqA', '8400275'), + (30, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ArbMKbqA', '8400276'), + (30, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ArbMKbqA', '8404977'), + (30, 3170, 'not_attending', '2025-06-09 16:34:14', '2025-12-17 19:46:15', 'ArbMKbqA', '8405947'), + (30, 3171, 'not_attending', '2025-06-13 18:00:16', '2025-12-17 19:46:15', 'ArbMKbqA', '8409765'), + (30, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ArbMKbqA', '8430783'), + (30, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ArbMKbqA', '8430784'), + (30, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ArbMKbqA', '8430799'), + (30, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ArbMKbqA', '8430800'), + (30, 3185, 'maybe', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ArbMKbqA', '8430801'), + (30, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ArbMKbqA', '8438709'), + (30, 3192, 'maybe', '2025-07-15 16:08:02', '2025-12-17 19:46:17', 'ArbMKbqA', '8456429'), + (30, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ArbMKbqA', '8457738'), + (30, 3194, 'attending', '2025-07-18 21:46:22', '2025-12-17 19:46:17', 'ArbMKbqA', '8457740'), + (30, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ArbMKbqA', '8459566'), + (30, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ArbMKbqA', '8459567'), + (30, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ArbMKbqA', '8461032'), + (30, 3209, 'attending', '2025-07-28 02:11:23', '2025-12-17 19:46:17', 'ArbMKbqA', '8467750'), + (30, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ArbMKbqA', '8477877'), + (30, 3216, 'attending', '2025-08-08 02:45:44', '2025-12-17 19:46:17', 'ArbMKbqA', '8481608'), + (30, 3217, 'maybe', '2025-08-09 19:24:20', '2025-12-17 19:46:17', 'ArbMKbqA', '8481811'), + (30, 3219, 'maybe', '2025-08-11 20:07:28', '2025-12-17 19:46:18', 'ArbMKbqA', '8482548'), + (30, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ArbMKbqA', '8485688'), + (30, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ArbMKbqA', '8490587'), + (30, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ArbMKbqA', '8493552'), + (30, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ArbMKbqA', '8493553'), + (30, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ArbMKbqA', '8493554'), + (30, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ArbMKbqA', '8493555'), + (30, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ArbMKbqA', '8493556'), + (30, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ArbMKbqA', '8493557'), + (30, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ArbMKbqA', '8493558'), + (30, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ArbMKbqA', '8493559'), + (30, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ArbMKbqA', '8493560'), + (30, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ArbMKbqA', '8493561'), + (30, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ArbMKbqA', '8493572'), + (30, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ArbMKbqA', '8540725'), + (30, 3295, 'not_attending', '2025-10-29 02:14:11', '2025-12-17 19:46:14', 'ArbMKbqA', '8547541'), + (30, 3296, 'attending', '2025-10-23 13:49:12', '2025-12-17 19:46:14', 'ArbMKbqA', '8547711'), + (30, 3301, 'maybe', '2025-11-27 07:14:00', '2025-12-17 19:46:11', 'ArbMKbqA', '8550021'), + (30, 3310, 'maybe', '2025-11-27 07:13:34', '2025-12-17 19:46:11', 'ArbMKbqA', '8550410'), + (30, 3311, 'maybe', '2025-11-27 07:13:53', '2025-12-17 19:46:11', 'ArbMKbqA', '8550412'), + (30, 3312, 'maybe', '2025-11-27 07:13:56', '2025-12-17 19:46:11', 'ArbMKbqA', '8550413'), + (30, 3314, 'attending', '2025-11-04 22:02:51', '2025-12-17 19:46:14', 'ArbMKbqA', '8551821'), + (30, 3315, 'not_attending', '2025-11-05 01:14:00', '2025-12-17 19:46:14', 'ArbMKbqA', '8552486'), + (30, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ArbMKbqA', '8555421'), + (31, 3295, 'attending', '2025-10-28 08:24:32', '2025-12-17 19:46:14', '4Z6z17l4', '8547541'), + (31, 3300, 'attending', '2025-11-05 12:37:31', '2025-12-17 19:46:14', '4Z6z17l4', '8549145'), + (31, 3302, 'attending', '2025-11-12 10:57:51', '2025-12-17 19:46:14', '4Z6z17l4', '8550022'), + (31, 3304, 'not_attending', '2025-11-22 07:52:52', '2025-12-17 19:46:14', '4Z6z17l4', '8550024'), + (31, 3305, 'attending', '2025-12-06 18:40:42', '2025-12-17 19:46:11', '4Z6z17l4', '8550025'), + (31, 3311, 'maybe', '2025-12-09 17:39:30', '2025-12-17 19:46:11', '4Z6z17l4', '8550412'), + (31, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4Z6z17l4', '8555421'), + (32, 3298, 'not_attending', '2025-10-21 21:28:55', '2025-12-17 19:46:14', '401W2ORd', '8548211'), + (32, 3321, 'attending', '2025-11-14 01:03:34', '2025-12-17 19:46:14', '401W2ORd', '8555418'), + (32, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '401W2ORd', '8555421'), + (33, 3015, 'attending', '2025-04-24 21:13:23', '2025-12-17 19:46:20', 'mjVP59Nm', '7869186'), + (33, 3016, 'attending', '2025-04-19 22:04:14', '2025-12-17 19:46:20', 'mjVP59Nm', '7869187'), + (33, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mjVP59Nm', '7904777'), + (33, 3094, 'attending', '2025-05-10 20:01:32', '2025-12-17 19:46:21', 'mjVP59Nm', '8342292'), + (33, 3095, 'attending', '2025-05-01 19:15:57', '2025-12-17 19:46:20', 'mjVP59Nm', '8342293'), + (33, 3103, 'attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'mjVP59Nm', '8347770'), + (33, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjVP59Nm', '8349164'), + (33, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjVP59Nm', '8349545'), + (33, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mjVP59Nm', '8353584'), + (33, 3116, 'attending', '2025-05-03 18:35:37', '2025-12-17 19:46:20', 'mjVP59Nm', '8358252'), + (33, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjVP59Nm', '8368028'), + (33, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjVP59Nm', '8368029'), + (33, 3133, 'attending', '2025-05-31 20:15:31', '2025-12-17 19:46:14', 'mjVP59Nm', '8368030'), + (33, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjVP59Nm', '8388462'), + (33, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjVP59Nm', '8400273'), + (33, 3154, 'not_attending', '2025-06-26 04:45:46', '2025-12-17 19:46:15', 'mjVP59Nm', '8400274'), + (33, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjVP59Nm', '8400275'), + (33, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mjVP59Nm', '8400276'), + (33, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjVP59Nm', '8404977'), + (33, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mjVP59Nm', '8430783'), + (33, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjVP59Nm', '8430784'), + (33, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjVP59Nm', '8430799'), + (33, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjVP59Nm', '8430800'), + (33, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjVP59Nm', '8430801'), + (33, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mjVP59Nm', '8438709'), + (33, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjVP59Nm', '8457738'), + (33, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjVP59Nm', '8459566'), + (33, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjVP59Nm', '8459567'), + (33, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjVP59Nm', '8461032'), + (33, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjVP59Nm', '8477877'), + (33, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mjVP59Nm', '8485688'), + (33, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mjVP59Nm', '8490587'), + (33, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mjVP59Nm', '8493552'), + (33, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'mjVP59Nm', '8493553'), + (33, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mjVP59Nm', '8493554'), + (33, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mjVP59Nm', '8493555'), + (33, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mjVP59Nm', '8493556'), + (33, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mjVP59Nm', '8493557'), + (33, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mjVP59Nm', '8493558'), + (33, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mjVP59Nm', '8493559'), + (33, 3244, 'maybe', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mjVP59Nm', '8493560'), + (33, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'mjVP59Nm', '8493561'), + (33, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mjVP59Nm', '8493572'), + (33, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mjVP59Nm', '8540725'), + (33, 3302, 'not_attending', '2025-11-09 06:22:12', '2025-12-17 19:46:14', 'mjVP59Nm', '8550022'), + (33, 3304, 'attending', '2025-11-22 08:19:51', '2025-12-17 19:46:14', 'mjVP59Nm', '8550024'), + (33, 3305, 'attending', '2025-12-04 04:33:21', '2025-12-17 19:46:11', 'mjVP59Nm', '8550025'), + (33, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mjVP59Nm', '8555421'), + (34, 3015, 'attending', '2025-04-24 07:57:09', '2025-12-17 19:46:20', 'dVo6zbpm', '7869186'), + (34, 3022, 'not_attending', '2025-04-25 00:04:33', '2025-12-17 19:46:20', 'dVo6zbpm', '7869193'), + (34, 3088, 'attending', '2025-06-09 08:18:24', '2025-12-17 19:46:15', 'dVo6zbpm', '7904777'), + (34, 3094, 'attending', '2025-04-30 23:11:22', '2025-12-17 19:46:21', 'dVo6zbpm', '8342292'), + (34, 3095, 'attending', '2025-04-24 07:57:29', '2025-12-17 19:46:20', 'dVo6zbpm', '8342293'), + (34, 3096, 'maybe', '2025-04-22 20:29:52', '2025-12-17 19:46:20', 'dVo6zbpm', '8342987'), + (34, 3097, 'not_attending', '2025-04-22 20:29:21', '2025-12-17 19:46:20', 'dVo6zbpm', '8342993'), + (34, 3100, 'attending', '2025-04-22 01:57:34', '2025-12-17 19:46:20', 'dVo6zbpm', '8343977'), + (34, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVo6zbpm', '8349164'), + (34, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVo6zbpm', '8349545'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (34, 3106, 'attending', '2025-04-27 18:14:47', '2025-12-17 19:46:20', 'dVo6zbpm', '8349552'), + (34, 3107, 'maybe', '2025-04-27 22:56:39', '2025-12-17 19:46:20', 'dVo6zbpm', '8350107'), + (34, 3109, 'maybe', '2025-05-04 23:06:16', '2025-12-17 19:46:21', 'dVo6zbpm', '8352001'), + (34, 3110, 'maybe', '2025-04-30 23:10:59', '2025-12-17 19:46:20', 'dVo6zbpm', '8353484'), + (34, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVo6zbpm', '8353584'), + (34, 3114, 'not_attending', '2025-05-03 08:10:31', '2025-12-17 19:46:20', 'dVo6zbpm', '8357180'), + (34, 3119, 'attending', '2025-05-07 07:44:52', '2025-12-17 19:46:21', 'dVo6zbpm', '8360035'), + (34, 3120, 'not_attending', '2025-05-07 07:44:01', '2025-12-17 19:46:21', 'dVo6zbpm', '8360736'), + (34, 3121, 'maybe', '2025-05-07 16:58:24', '2025-12-17 19:46:21', 'dVo6zbpm', '8362730'), + (34, 3122, 'maybe', '2025-05-12 09:17:41', '2025-12-17 19:46:21', 'dVo6zbpm', '8362978'), + (34, 3123, 'not_attending', '2025-05-09 08:29:12', '2025-12-17 19:46:21', 'dVo6zbpm', '8363523'), + (34, 3124, 'attending', '2025-05-09 02:03:30', '2025-12-17 19:46:21', 'dVo6zbpm', '8363566'), + (34, 3127, 'not_attending', '2025-05-12 09:17:48', '2025-12-17 19:46:21', 'dVo6zbpm', '8365615'), + (34, 3131, 'attending', '2025-05-13 08:02:15', '2025-12-17 19:46:21', 'dVo6zbpm', '8368028'), + (34, 3132, 'attending', '2025-05-19 17:32:01', '2025-12-17 19:46:21', 'dVo6zbpm', '8368029'), + (34, 3133, 'attending', '2025-05-24 19:55:23', '2025-12-17 19:46:14', 'dVo6zbpm', '8368030'), + (34, 3135, 'maybe', '2025-05-19 17:31:59', '2025-12-17 19:46:21', 'dVo6zbpm', '8373126'), + (34, 3138, 'attending', '2025-05-18 16:48:23', '2025-12-17 19:46:21', 'dVo6zbpm', '8376037'), + (34, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dVo6zbpm', '8388462'), + (34, 3150, 'not_attending', '2025-06-06 22:40:42', '2025-12-17 19:46:15', 'dVo6zbpm', '8393174'), + (34, 3152, 'attending', '2025-05-31 19:17:49', '2025-12-17 19:46:14', 'dVo6zbpm', '8393582'), + (34, 3153, 'attending', '2025-06-03 20:03:15', '2025-12-17 19:46:15', 'dVo6zbpm', '8400273'), + (34, 3154, 'attending', '2025-06-21 19:59:36', '2025-12-17 19:46:15', 'dVo6zbpm', '8400274'), + (34, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dVo6zbpm', '8400275'), + (34, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dVo6zbpm', '8400276'), + (34, 3157, 'maybe', '2025-06-06 22:33:38', '2025-12-17 19:46:15', 'dVo6zbpm', '8401407'), + (34, 3159, 'maybe', '2025-06-06 22:39:48', '2025-12-17 19:46:15', 'dVo6zbpm', '8401410'), + (34, 3161, 'maybe', '2025-06-06 22:19:54', '2025-12-17 19:46:15', 'dVo6zbpm', '8401412'), + (34, 3162, 'not_attending', '2025-06-17 07:08:30', '2025-12-17 19:46:15', 'dVo6zbpm', '8401599'), + (34, 3164, 'attending', '2025-06-06 00:50:56', '2025-12-17 19:46:15', 'dVo6zbpm', '8403121'), + (34, 3166, 'maybe', '2025-06-07 22:16:51', '2025-12-17 19:46:15', 'dVo6zbpm', '8404242'), + (34, 3169, 'not_attending', '2025-06-09 08:17:48', '2025-12-17 19:46:15', 'dVo6zbpm', '8404977'), + (34, 3172, 'not_attending', '2025-06-17 07:08:36', '2025-12-17 19:46:15', 'dVo6zbpm', '8410181'), + (34, 3175, 'maybe', '2025-06-15 01:27:05', '2025-12-17 19:46:15', 'dVo6zbpm', '8410815'), + (34, 3176, 'maybe', '2025-06-21 19:59:23', '2025-12-17 19:46:15', 'dVo6zbpm', '8416741'), + (34, 3179, 'maybe', '2025-06-24 17:41:28', '2025-12-17 19:46:15', 'dVo6zbpm', '8421850'), + (34, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dVo6zbpm', '8430783'), + (34, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dVo6zbpm', '8430784'), + (34, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dVo6zbpm', '8430799'), + (34, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dVo6zbpm', '8430800'), + (34, 3185, 'maybe', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dVo6zbpm', '8430801'), + (34, 3186, 'attending', '2025-07-01 01:03:11', '2025-12-17 19:46:16', 'dVo6zbpm', '8431527'), + (34, 3188, 'attending', '2025-07-14 09:04:17', '2025-12-17 19:46:17', 'dVo6zbpm', '8438709'), + (34, 3189, 'maybe', '2025-07-08 21:35:33', '2025-12-17 19:46:16', 'dVo6zbpm', '8438849'), + (34, 3190, 'not_attending', '2025-07-14 09:04:12', '2025-12-17 19:46:17', 'dVo6zbpm', '8443962'), + (34, 3192, 'attending', '2025-07-15 16:08:02', '2025-12-17 19:46:17', 'dVo6zbpm', '8456429'), + (34, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVo6zbpm', '8457738'), + (34, 3195, 'attending', '2025-07-21 07:45:47', '2025-12-17 19:46:17', 'dVo6zbpm', '8458118'), + (34, 3196, 'attending', '2025-08-07 21:50:42', '2025-12-17 19:46:17', 'dVo6zbpm', '8458543'), + (34, 3197, 'attending', '2025-07-18 02:28:13', '2025-12-17 19:46:17', 'dVo6zbpm', '8458825'), + (34, 3198, 'not_attending', '2025-08-17 11:50:31', '2025-12-17 19:46:18', 'dVo6zbpm', '8459268'), + (34, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVo6zbpm', '8459566'), + (34, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVo6zbpm', '8459567'), + (34, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVo6zbpm', '8461032'), + (34, 3205, 'not_attending', '2025-07-20 22:49:05', '2025-12-17 19:46:17', 'dVo6zbpm', '8461764'), + (34, 3208, 'maybe', '2025-07-28 23:13:52', '2025-12-17 19:46:17', 'dVo6zbpm', '8467717'), + (34, 3210, 'attending', '2025-08-17 11:50:27', '2025-12-17 19:46:18', 'dVo6zbpm', '8471162'), + (34, 3211, 'not_attending', '2025-08-07 21:45:03', '2025-12-17 19:46:17', 'dVo6zbpm', '8477785'), + (34, 3213, 'maybe', '2025-08-11 19:32:37', '2025-12-17 19:46:17', 'dVo6zbpm', '8477876'), + (34, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVo6zbpm', '8477877'), + (34, 3217, 'not_attending', '2025-08-12 15:23:35', '2025-12-17 19:46:17', 'dVo6zbpm', '8481811'), + (34, 3219, 'not_attending', '2025-08-17 11:50:42', '2025-12-17 19:46:18', 'dVo6zbpm', '8482548'), + (34, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dVo6zbpm', '8485688'), + (34, 3235, 'maybe', '2025-08-18 17:52:27', '2025-12-17 19:46:18', 'dVo6zbpm', '8490587'), + (34, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVo6zbpm', '8493552'), + (34, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dVo6zbpm', '8493553'), + (34, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVo6zbpm', '8493554'), + (34, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVo6zbpm', '8493555'), + (34, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVo6zbpm', '8493556'), + (34, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVo6zbpm', '8493557'), + (34, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVo6zbpm', '8493558'), + (34, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVo6zbpm', '8493559'), + (34, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVo6zbpm', '8493560'), + (34, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dVo6zbpm', '8493561'), + (34, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVo6zbpm', '8493572'), + (34, 3261, 'attending', '2025-09-15 07:00:05', '2025-12-17 19:46:12', 'dVo6zbpm', '8512641'), + (34, 3262, 'attending', '2025-09-15 07:00:35', '2025-12-17 19:46:12', 'dVo6zbpm', '8512642'), + (34, 3264, 'not_attending', '2025-09-15 07:00:20', '2025-12-17 19:46:12', 'dVo6zbpm', '8514577'), + (34, 3266, 'attending', '2025-09-27 20:20:43', '2025-12-17 19:46:13', 'dVo6zbpm', '8514579'), + (34, 3272, 'maybe', '2025-09-22 08:15:01', '2025-12-17 19:46:12', 'dVo6zbpm', '8524068'), + (34, 3274, 'maybe', '2025-09-22 08:15:12', '2025-12-17 19:46:12', 'dVo6zbpm', '8527784'), + (34, 3280, 'maybe', '2025-10-01 22:56:34', '2025-12-17 19:46:13', 'dVo6zbpm', '8535686'), + (34, 3281, 'attending', '2025-10-01 22:56:40', '2025-12-17 19:46:14', 'dVo6zbpm', '8535687'), + (34, 3282, 'not_attending', '2025-10-05 19:06:25', '2025-12-17 19:46:13', 'dVo6zbpm', '8537571'), + (34, 3283, 'maybe', '2025-10-05 19:06:45', '2025-12-17 19:46:14', 'dVo6zbpm', '8538077'), + (34, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dVo6zbpm', '8540725'), + (34, 3285, 'not_attending', '2025-10-08 21:01:18', '2025-12-17 19:46:13', 'dVo6zbpm', '8540726'), + (34, 3286, 'attending', '2025-10-08 21:15:32', '2025-12-17 19:46:14', 'dVo6zbpm', '8540728'), + (34, 3287, 'attending', '2025-10-12 22:50:58', '2025-12-17 19:46:14', 'dVo6zbpm', '8540729'), + (34, 3289, 'not_attending', '2025-10-17 01:20:11', '2025-12-17 19:46:14', 'dVo6zbpm', '8542939'), + (34, 3292, 'not_attending', '2025-10-16 08:24:51', '2025-12-17 19:46:14', 'dVo6zbpm', '8543835'), + (34, 3293, 'attending', '2025-10-16 08:24:55', '2025-12-17 19:46:14', 'dVo6zbpm', '8543836'), + (34, 3294, 'attending', '2025-10-18 21:23:27', '2025-12-17 19:46:14', 'dVo6zbpm', '8546775'), + (34, 3295, 'not_attending', '2025-10-28 20:50:29', '2025-12-17 19:46:14', 'dVo6zbpm', '8547541'), + (34, 3300, 'maybe', '2025-10-30 21:02:51', '2025-12-17 19:46:14', 'dVo6zbpm', '8549145'), + (34, 3302, 'attending', '2025-10-29 00:11:44', '2025-12-17 19:46:14', 'dVo6zbpm', '8550022'), + (34, 3304, 'not_attending', '2025-11-18 10:05:30', '2025-12-17 19:46:14', 'dVo6zbpm', '8550024'), + (34, 3306, 'not_attending', '2025-12-02 17:11:31', '2025-12-17 19:46:11', 'dVo6zbpm', '8550026'), + (34, 3307, 'attending', '2025-12-15 20:50:26', '2025-12-17 19:46:11', 'dVo6zbpm', '8550027'), + (34, 3308, 'not_attending', '2025-10-28 20:50:18', '2025-12-17 19:46:14', 'dVo6zbpm', '8550408'), + (34, 3309, 'attending', '2025-11-16 04:12:57', '2025-12-17 19:46:14', 'dVo6zbpm', '8550409'), + (34, 3310, 'attending', '2025-11-19 22:32:29', '2025-12-17 19:46:11', 'dVo6zbpm', '8550410'), + (34, 3311, 'not_attending', '2025-12-08 10:47:26', '2025-12-17 19:46:11', 'dVo6zbpm', '8550412'), + (34, 3313, 'not_attending', '2025-10-30 21:02:58', '2025-12-17 19:46:14', 'dVo6zbpm', '8550896'), + (34, 3319, 'attending', '2025-11-08 20:12:17', '2025-12-17 19:46:14', 'dVo6zbpm', '8553114'), + (34, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dVo6zbpm', '8555421'), + (34, 3327, 'not_attending', '2025-11-24 12:50:30', '2025-12-17 19:46:11', 'dVo6zbpm', '8557174'), + (34, 3334, 'not_attending', '2025-12-08 10:47:23', '2025-12-17 19:46:11', 'dVo6zbpm', '8563246'), + (34, 3343, 'maybe', '2025-12-15 20:50:52', '2025-12-17 19:46:11', 'dVo6zbpm', '8564411'), + (35, 2410, 'attending', '2024-02-08 01:32:14', '2025-12-17 19:46:41', 'dxKzV994', '6699911'), + (35, 2411, 'attending', '2024-02-11 04:29:25', '2025-12-17 19:46:41', 'dxKzV994', '6699913'), + (35, 2412, 'attending', '2024-02-11 05:08:26', '2025-12-17 19:46:43', 'dxKzV994', '6700717'), + (35, 2449, 'not_attending', '2024-02-16 04:17:07', '2025-12-17 19:46:42', 'dxKzV994', '6735833'), + (35, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxKzV994', '6740364'), + (35, 2454, 'attending', '2024-02-16 04:17:11', '2025-12-17 19:46:42', 'dxKzV994', '6740921'), + (35, 2455, 'attending', '2024-02-08 05:15:52', '2025-12-17 19:46:41', 'dxKzV994', '6741034'), + (35, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxKzV994', '6743829'), + (35, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxKzV994', '7030380'), + (35, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxKzV994', '7033677'), + (35, 2474, 'attending', '2024-02-20 22:03:04', '2025-12-17 19:46:43', 'dxKzV994', '7035415'), + (35, 2475, 'not_attending', '2024-02-21 01:20:22', '2025-12-17 19:46:43', 'dxKzV994', '7035643'), + (35, 2476, 'attending', '2024-02-21 01:20:19', '2025-12-17 19:46:43', 'dxKzV994', '7035691'), + (35, 2477, 'attending', '2024-02-20 22:01:59', '2025-12-17 19:46:42', 'dxKzV994', '7035692'), + (35, 2481, 'attending', '2024-02-25 03:47:57', '2025-12-17 19:46:43', 'dxKzV994', '7044715'), + (35, 2482, 'attending', '2024-02-25 03:47:59', '2025-12-17 19:46:44', 'dxKzV994', '7044719'), + (35, 2484, 'attending', '2024-02-26 17:54:24', '2025-12-17 19:46:43', 'dxKzV994', '7046836'), + (35, 2486, 'attending', '2024-03-04 05:44:02', '2025-12-17 19:46:43', 'dxKzV994', '7048277'), + (35, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxKzV994', '7050318'), + (35, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxKzV994', '7050319'), + (35, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxKzV994', '7050322'), + (35, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxKzV994', '7057804'), + (35, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dxKzV994', '7059866'), + (35, 2505, 'maybe', '2024-03-17 02:17:29', '2025-12-17 19:46:33', 'dxKzV994', '7069163'), + (35, 2507, 'attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxKzV994', '7072824'), + (35, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxKzV994', '7074348'), + (35, 2509, 'attending', '2024-03-25 21:16:33', '2025-12-17 19:46:33', 'dxKzV994', '7074349'), + (35, 2512, 'attending', '2024-04-04 23:56:05', '2025-12-17 19:46:33', 'dxKzV994', '7074352'), + (35, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxKzV994', '7074364'), + (35, 2537, 'attending', '2024-03-23 14:50:01', '2025-12-17 19:46:33', 'dxKzV994', '7085484'), + (35, 2539, 'attending', '2024-04-04 23:31:51', '2025-12-17 19:46:33', 'dxKzV994', '7085486'), + (35, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxKzV994', '7089267'), + (35, 2541, 'maybe', '2024-03-17 14:27:01', '2025-12-17 19:46:33', 'dxKzV994', '7089404'), + (35, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxKzV994', '7098747'), + (35, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxKzV994', '7113468'), + (35, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxKzV994', '7114856'), + (35, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxKzV994', '7114951'), + (35, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxKzV994', '7114955'), + (35, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxKzV994', '7114956'), + (35, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxKzV994', '7114957'), + (35, 2562, 'attending', '2024-04-02 19:19:57', '2025-12-17 19:46:33', 'dxKzV994', '7134552'), + (35, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxKzV994', '7153615'), + (35, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxKzV994', '7159484'), + (35, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxKzV994', '7178446'), + (35, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxKzV994', '7220467'), + (35, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxKzV994', '7240354'), + (35, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxKzV994', '7251633'), + (35, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dxKzV994', '7263048'), + (35, 2626, 'attending', '2024-05-18 19:05:20', '2025-12-17 19:46:35', 'dxKzV994', '7264723'), + (35, 2627, 'attending', '2024-05-25 20:15:02', '2025-12-17 19:46:35', 'dxKzV994', '7264724'), + (35, 2628, 'attending', '2024-06-01 16:05:45', '2025-12-17 19:46:36', 'dxKzV994', '7264725'), + (35, 2629, 'attending', '2024-06-04 21:11:45', '2025-12-17 19:46:28', 'dxKzV994', '7264726'), + (35, 2649, 'attending', '2024-05-28 12:28:47', '2025-12-17 19:46:35', 'dxKzV994', '7282950'), + (35, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxKzV994', '7302674'), + (35, 2663, 'attending', '2024-06-04 16:16:34', '2025-12-17 19:46:36', 'dxKzV994', '7303913'), + (35, 2678, 'not_attending', '2024-06-15 19:51:53', '2025-12-17 19:46:28', 'dxKzV994', '7319489'), + (35, 2679, 'attending', '2024-06-18 15:57:01', '2025-12-17 19:46:29', 'dxKzV994', '7319490'), + (35, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxKzV994', '7324073'), + (35, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxKzV994', '7324074'), + (35, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxKzV994', '7324075'), + (35, 2691, 'attending', '2024-07-20 06:56:06', '2025-12-17 19:46:30', 'dxKzV994', '7324076'), + (35, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxKzV994', '7324078'), + (35, 2694, 'maybe', '2024-08-10 14:14:39', '2025-12-17 19:46:31', 'dxKzV994', '7324079'), + (35, 2695, 'attending', '2024-08-16 15:14:06', '2025-12-17 19:46:31', 'dxKzV994', '7324080'), + (35, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxKzV994', '7324082'), + (35, 2698, 'attending', '2024-09-07 20:57:56', '2025-12-17 19:46:24', 'dxKzV994', '7324083'), + (35, 2716, 'attending', '2024-06-17 00:01:56', '2025-12-17 19:46:29', 'dxKzV994', '7329096'), + (35, 2718, 'not_attending', '2024-06-18 15:56:53', '2025-12-17 19:46:28', 'dxKzV994', '7330458'), + (35, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxKzV994', '7331457'), + (35, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxKzV994', '7356752'), + (35, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxKzV994', '7363643'), + (35, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxKzV994', '7368606'), + (35, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxKzV994', '7397462'), + (35, 2821, 'not_attending', '2024-10-06 00:14:27', '2025-12-17 19:46:26', 'dxKzV994', '7424275'), + (35, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxKzV994', '7424276'), + (35, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxKzV994', '7432751'), + (35, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxKzV994', '7432752'), + (35, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxKzV994', '7432753'), + (35, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxKzV994', '7432754'), + (35, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxKzV994', '7432755'), + (35, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxKzV994', '7432756'), + (35, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxKzV994', '7432758'), + (35, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxKzV994', '7432759'), + (35, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxKzV994', '7433834'), + (35, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxKzV994', '7470197'), + (35, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxKzV994', '7685613'), + (35, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxKzV994', '7688194'), + (35, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxKzV994', '7688196'), + (35, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxKzV994', '7688289'), + (35, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dxKzV994', '7692763'), + (35, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxKzV994', '7697552'), + (35, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxKzV994', '7699878'), + (35, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxKzV994', '7704043'), + (35, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxKzV994', '7712467'), + (35, 2925, 'maybe', '2024-12-12 02:16:54', '2025-12-17 19:46:21', 'dxKzV994', '7713584'), + (35, 2926, 'attending', '2024-12-07 01:06:32', '2025-12-17 19:46:21', 'dxKzV994', '7713585'), + (35, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxKzV994', '7713586'), + (35, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxKzV994', '7738518'), + (35, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxKzV994', '7750636'), + (35, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxKzV994', '7796540'), + (35, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxKzV994', '7796541'), + (35, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxKzV994', '7796542'), + (35, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxKzV994', '7825913'), + (35, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxKzV994', '7826209'), + (35, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxKzV994', '7834742'), + (35, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dxKzV994', '7842108'), + (35, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxKzV994', '7842902'), + (35, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxKzV994', '7842903'), + (35, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxKzV994', '7842904'), + (35, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxKzV994', '7842905'), + (35, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxKzV994', '7855719'), + (35, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxKzV994', '7860683'), + (35, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxKzV994', '7860684'), + (35, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxKzV994', '7866095'), + (35, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxKzV994', '7869170'), + (35, 3014, 'attending', '2025-04-05 21:24:35', '2025-12-17 19:46:20', 'dxKzV994', '7869185'), + (35, 3015, 'attending', '2025-04-20 02:08:43', '2025-12-17 19:46:20', 'dxKzV994', '7869186'), + (35, 3016, 'attending', '2025-04-16 15:01:19', '2025-12-17 19:46:20', 'dxKzV994', '7869187'), + (35, 3017, 'attending', '2025-03-22 19:12:27', '2025-12-17 19:46:19', 'dxKzV994', '7869188'), + (35, 3018, 'attending', '2025-04-12 20:10:41', '2025-12-17 19:46:20', 'dxKzV994', '7869189'), + (35, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxKzV994', '7869201'), + (35, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxKzV994', '7877465'), + (35, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dxKzV994', '7878570'), + (35, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxKzV994', '7888250'), + (35, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxKzV994', '7904777'), + (35, 3095, 'not_attending', '2025-05-02 13:20:12', '2025-12-17 19:46:20', 'dxKzV994', '8342293'), + (35, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxKzV994', '8349164'), + (35, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxKzV994', '8349545'), + (35, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxKzV994', '8353584'), + (35, 3131, 'attending', '2025-05-15 03:07:33', '2025-12-17 19:46:21', 'dxKzV994', '8368028'), + (35, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxKzV994', '8368029'), + (35, 3133, 'attending', '2025-05-31 21:50:48', '2025-12-17 19:46:14', 'dxKzV994', '8368030'), + (35, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxKzV994', '8388462'), + (35, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxKzV994', '8400273'), + (35, 3154, 'attending', '2025-06-26 22:36:27', '2025-12-17 19:46:15', 'dxKzV994', '8400274'), + (35, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxKzV994', '8400275'), + (35, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dxKzV994', '8400276'), + (35, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxKzV994', '8404977'), + (35, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxKzV994', '8430783'), + (35, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxKzV994', '8430784'), + (35, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxKzV994', '8430799'), + (35, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxKzV994', '8430800'), + (35, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxKzV994', '8430801'), + (35, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxKzV994', '8438709'), + (35, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxKzV994', '8457738'), + (35, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxKzV994', '8459566'), + (35, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxKzV994', '8459567'), + (35, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxKzV994', '8461032'), + (35, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxKzV994', '8477877'), + (35, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxKzV994', '8485688'), + (35, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxKzV994', '8490587'), + (35, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxKzV994', '8493552'), + (35, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxKzV994', '8493553'), + (35, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxKzV994', '8493554'), + (35, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxKzV994', '8493555'), + (35, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxKzV994', '8493556'), + (35, 3241, 'maybe', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxKzV994', '8493557'), + (35, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxKzV994', '8493558'), + (35, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxKzV994', '8493559'), + (35, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxKzV994', '8493560'), + (35, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxKzV994', '8493561'), + (35, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxKzV994', '8493572'), + (35, 3275, 'not_attending', '2025-09-20 22:37:17', '2025-12-17 19:46:12', 'dxKzV994', '8527786'), + (35, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxKzV994', '8540725'), + (35, 3295, 'not_attending', '2025-10-30 21:52:22', '2025-12-17 19:46:14', 'dxKzV994', '8547541'), + (35, 3300, 'maybe', '2025-10-30 21:52:33', '2025-12-17 19:46:14', 'dxKzV994', '8549145'), + (35, 3302, 'attending', '2025-11-13 01:58:51', '2025-12-17 19:46:14', 'dxKzV994', '8550022'), + (35, 3304, 'attending', '2025-11-16 04:15:56', '2025-12-17 19:46:14', 'dxKzV994', '8550024'), + (35, 3305, 'attending', '2025-11-25 02:18:49', '2025-12-17 19:46:11', 'dxKzV994', '8550025'), + (35, 3306, 'attending', '2025-12-12 20:32:26', '2025-12-17 19:46:11', 'dxKzV994', '8550026'), + (35, 3307, 'not_attending', '2025-12-18 02:21:16', '2025-12-18 02:21:16', NULL, NULL), + (35, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxKzV994', '8555421'), + (36, 3242, 'not_attending', '2025-10-25 16:35:59', '2025-12-17 19:46:14', '4EKLYLXm', '8493558'), + (36, 3243, 'attending', '2025-10-15 22:00:26', '2025-12-17 19:46:14', '4EKLYLXm', '8493559'), + (36, 3289, 'maybe', '2025-10-23 20:00:28', '2025-12-17 19:46:14', '4EKLYLXm', '8542939'), + (36, 3298, 'not_attending', '2025-10-21 21:28:55', '2025-12-17 19:46:14', '4EKLYLXm', '8548211'), + (36, 3300, 'attending', '2025-11-08 19:43:20', '2025-12-17 19:46:14', '4EKLYLXm', '8549145'), + (36, 3302, 'attending', '2025-11-12 22:45:24', '2025-12-17 19:46:14', '4EKLYLXm', '8550022'), + (36, 3304, 'not_attending', '2025-11-18 02:36:32', '2025-12-17 19:46:14', '4EKLYLXm', '8550024'), + (36, 3316, 'attending', '2025-11-05 04:37:28', '2025-12-17 19:46:14', '4EKLYLXm', '8552493'), + (36, 3321, 'attending', '2025-11-14 01:03:34', '2025-12-17 19:46:14', '4EKLYLXm', '8555418'), + (36, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4EKLYLXm', '8555421'), + (37, 2806, 'attending', '2024-09-17 17:38:00', '2025-12-17 19:46:25', 'dJxQEoqA', '7404888'), + (37, 2821, 'attending', '2024-09-19 18:38:06', '2025-12-17 19:46:26', 'dJxQEoqA', '7424275'), + (37, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJxQEoqA', '7424276'), + (37, 2825, 'attending', '2024-09-17 17:38:09', '2025-12-17 19:46:25', 'dJxQEoqA', '7432752'), + (37, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', 'dJxQEoqA', '7432753'), + (37, 2827, 'attending', '2024-09-29 01:56:56', '2025-12-17 19:46:26', 'dJxQEoqA', '7432754'), + (37, 2828, 'attending', '2024-10-13 22:29:18', '2025-12-17 19:46:26', 'dJxQEoqA', '7432755'), + (37, 2829, 'attending', '2024-10-13 22:29:20', '2025-12-17 19:46:26', 'dJxQEoqA', '7432756'), + (37, 2830, 'not_attending', '2024-10-13 22:29:22', '2025-12-17 19:46:26', 'dJxQEoqA', '7432758'), + (37, 2831, 'attending', '2024-10-13 22:29:14', '2025-12-17 19:46:26', 'dJxQEoqA', '7432759'), + (37, 2838, 'not_attending', '2024-09-27 17:51:34', '2025-12-17 19:46:25', 'dJxQEoqA', '7439182'), + (37, 2839, 'maybe', '2024-09-21 22:23:57', '2025-12-17 19:46:25', 'dJxQEoqA', '7439262'), + (37, 2841, 'maybe', '2024-09-17 17:36:04', '2025-12-17 19:46:25', 'dJxQEoqA', '7444444'), + (37, 2843, 'maybe', '2024-09-19 22:43:30', '2025-12-17 19:46:25', 'dJxQEoqA', '7450219'), + (37, 2849, 'attending', '2024-09-29 01:56:08', '2025-12-17 19:46:25', 'dJxQEoqA', '7457114'), + (37, 2850, 'maybe', '2024-09-29 01:56:48', '2025-12-17 19:46:25', 'dJxQEoqA', '7457153'), + (37, 2855, 'maybe', '2024-09-30 18:02:18', '2025-12-17 19:46:26', 'dJxQEoqA', '7469385'), + (37, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJxQEoqA', '7470197'), + (37, 2863, 'maybe', '2024-10-01 05:48:18', '2025-12-17 19:46:26', 'dJxQEoqA', '7470275'), + (37, 2868, 'maybe', '2024-10-06 00:50:41', '2025-12-17 19:46:26', 'dJxQEoqA', '7474506'), + (37, 2874, 'maybe', '2024-10-12 22:44:13', '2025-12-17 19:46:26', 'dJxQEoqA', '7482239'), + (37, 2896, 'attending', '2024-11-11 20:30:58', '2025-12-17 19:46:27', 'dJxQEoqA', '7683647'), + (37, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dJxQEoqA', '7685613'), + (37, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJxQEoqA', '7688194'), + (37, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJxQEoqA', '7688196'), + (37, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJxQEoqA', '7688289'), + (37, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dJxQEoqA', '7692763'), + (37, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dJxQEoqA', '7697552'), + (37, 2916, 'maybe', '2024-11-18 03:34:26', '2025-12-17 19:46:27', 'dJxQEoqA', '7699006'), + (37, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dJxQEoqA', '7699878'), + (37, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dJxQEoqA', '7704043'), + (37, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dJxQEoqA', '7712467'), + (37, 2926, 'attending', '2024-12-02 02:25:03', '2025-12-17 19:46:21', 'dJxQEoqA', '7713585'), + (37, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dJxQEoqA', '7713586'), + (37, 2929, 'maybe', '2024-12-08 04:19:19', '2025-12-17 19:46:21', 'dJxQEoqA', '7723465'), + (37, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'dJxQEoqA', '7738518'), + (37, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dJxQEoqA', '7750636'), + (37, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dJxQEoqA', '7796540'), + (37, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dJxQEoqA', '7796541'), + (37, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dJxQEoqA', '7796542'), + (37, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dJxQEoqA', '7825913'), + (37, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dJxQEoqA', '7826209'), + (37, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dJxQEoqA', '7834742'), + (37, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dJxQEoqA', '7842108'), + (37, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dJxQEoqA', '7842902'), + (37, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dJxQEoqA', '7842903'), + (37, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dJxQEoqA', '7842904'), + (37, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dJxQEoqA', '7842905'), + (37, 3000, 'attending', '2025-02-21 00:22:30', '2025-12-17 19:46:24', 'dJxQEoqA', '7852541'), + (37, 3001, 'attending', '2025-02-21 00:22:19', '2025-12-17 19:46:24', 'dJxQEoqA', '7854184'), + (37, 3003, 'maybe', '2025-02-20 21:10:40', '2025-12-17 19:46:24', 'dJxQEoqA', '7854589'), + (37, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dJxQEoqA', '7855719'), + (37, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dJxQEoqA', '7860683'), + (37, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dJxQEoqA', '7860684'), + (37, 3009, 'attending', '2025-03-02 07:12:43', '2025-12-17 19:46:18', 'dJxQEoqA', '7864019'), + (37, 3010, 'attending', '2025-03-07 23:18:25', '2025-12-17 19:46:18', 'dJxQEoqA', '7864879'), + (37, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dJxQEoqA', '7866095'), + (37, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dJxQEoqA', '7869170'), + (37, 3014, 'attending', '2025-04-01 15:24:31', '2025-12-17 19:46:19', 'dJxQEoqA', '7869185'), + (37, 3015, 'attending', '2025-04-04 20:22:41', '2025-12-17 19:46:20', 'dJxQEoqA', '7869186'), + (37, 3016, 'attending', '2025-04-04 20:22:40', '2025-12-17 19:46:20', 'dJxQEoqA', '7869187'), + (37, 3017, 'attending', '2025-03-25 02:08:28', '2025-12-17 19:46:19', 'dJxQEoqA', '7869188'), + (37, 3018, 'attending', '2025-03-31 02:59:26', '2025-12-17 19:46:20', 'dJxQEoqA', '7869189'), + (37, 3028, 'attending', '2025-04-07 15:22:09', '2025-12-17 19:46:20', 'dJxQEoqA', '7869199'), + (37, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dJxQEoqA', '7869201'), + (37, 3031, 'maybe', '2025-03-07 05:14:48', '2025-12-17 19:46:18', 'dJxQEoqA', '7875371'), + (37, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dJxQEoqA', '7877465'), + (37, 3036, 'maybe', '2025-03-13 20:50:50', '2025-12-17 19:46:19', 'dJxQEoqA', '7880952'), + (37, 3039, 'maybe', '2025-03-19 03:34:28', '2025-12-17 19:46:19', 'dJxQEoqA', '7881992'), + (37, 3041, 'maybe', '2025-03-14 03:08:21', '2025-12-17 19:46:19', 'dJxQEoqA', '7881995'), + (37, 3045, 'maybe', '2025-04-01 15:24:26', '2025-12-17 19:46:19', 'dJxQEoqA', '7882691'), + (37, 3051, 'maybe', '2025-03-18 22:07:16', '2025-12-17 19:46:19', 'dJxQEoqA', '7884023'), + (37, 3054, 'maybe', '2025-03-18 20:38:47', '2025-12-17 19:46:19', 'dJxQEoqA', '7884168'), + (37, 3055, 'maybe', '2025-03-26 22:36:49', '2025-12-17 19:46:19', 'dJxQEoqA', '7888118'), + (37, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dJxQEoqA', '7888250'), + (37, 3060, 'attending', '2025-03-29 00:31:54', '2025-12-17 19:46:19', 'dJxQEoqA', '7892589'), + (37, 3061, 'attending', '2025-03-27 15:18:01', '2025-12-17 19:46:19', 'dJxQEoqA', '7892590'), + (37, 3063, 'attending', '2025-03-29 00:46:23', '2025-12-17 19:46:19', 'dJxQEoqA', '7892801'), + (37, 3065, 'attending', '2025-03-29 00:37:32', '2025-12-17 19:46:19', 'dJxQEoqA', '7893676'), + (37, 3067, 'maybe', '2025-03-31 03:00:16', '2025-12-17 19:46:19', 'dJxQEoqA', '7894745'), + (37, 3070, 'attending', '2025-03-30 23:33:39', '2025-12-17 19:46:20', 'dJxQEoqA', '7894829'), + (37, 3071, 'maybe', '2025-04-01 07:09:56', '2025-12-17 19:46:19', 'dJxQEoqA', '7895429'), + (37, 3072, 'attending', '2025-04-03 16:43:28', '2025-12-17 19:46:19', 'dJxQEoqA', '7895449'), + (37, 3074, 'maybe', '2025-04-04 20:22:04', '2025-12-17 19:46:19', 'dJxQEoqA', '7897784'), + (37, 3075, 'maybe', '2025-04-09 22:14:43', '2025-12-17 19:46:20', 'dJxQEoqA', '7898896'), + (37, 3077, 'attending', '2025-04-05 22:08:41', '2025-12-17 19:46:20', 'dJxQEoqA', '7899510'), + (37, 3080, 'attending', '2025-04-09 22:14:10', '2025-12-17 19:46:20', 'dJxQEoqA', '7901441'), + (37, 3081, 'maybe', '2025-04-09 00:22:02', '2025-12-17 19:46:20', 'dJxQEoqA', '7902801'), + (37, 3084, 'attending', '2025-04-09 00:21:45', '2025-12-17 19:46:20', 'dJxQEoqA', '7903687'), + (37, 3085, 'attending', '2025-04-12 14:47:17', '2025-12-17 19:46:20', 'dJxQEoqA', '7903688'), + (37, 3087, 'attending', '2025-04-09 23:15:18', '2025-12-17 19:46:20', 'dJxQEoqA', '7903856'), + (37, 3088, 'attending', '2025-06-09 20:32:12', '2025-12-17 19:46:15', 'dJxQEoqA', '7904777'), + (37, 3089, 'maybe', '2025-04-14 17:02:45', '2025-12-17 19:46:20', 'dJxQEoqA', '7911208'), + (37, 3090, 'attending', '2025-04-16 23:02:35', '2025-12-17 19:46:20', 'dJxQEoqA', '7914315'), + (37, 3091, 'not_attending', '2025-04-17 21:52:28', '2025-12-17 19:46:20', 'dJxQEoqA', '8340289'), + (37, 3094, 'attending', '2025-04-22 22:14:26', '2025-12-17 19:46:21', 'dJxQEoqA', '8342292'), + (37, 3095, 'attending', '2025-04-28 14:35:13', '2025-12-17 19:46:20', 'dJxQEoqA', '8342293'), + (37, 3096, 'maybe', '2025-04-21 03:33:26', '2025-12-17 19:46:20', 'dJxQEoqA', '8342987'), + (37, 3097, 'maybe', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dJxQEoqA', '8342993'), + (37, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dJxQEoqA', '8349164'), + (37, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dJxQEoqA', '8349545'), + (37, 3106, 'attending', '2025-04-27 05:18:32', '2025-12-17 19:46:20', 'dJxQEoqA', '8349552'), + (37, 3107, 'maybe', '2025-04-28 14:35:05', '2025-12-17 19:46:20', 'dJxQEoqA', '8350107'), + (37, 3110, 'attending', '2025-04-29 19:54:07', '2025-12-17 19:46:20', 'dJxQEoqA', '8353484'), + (37, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dJxQEoqA', '8353584'), + (37, 3116, 'attending', '2025-05-03 18:35:21', '2025-12-17 19:46:20', 'dJxQEoqA', '8358252'), + (37, 3119, 'not_attending', '2025-05-05 20:54:14', '2025-12-17 19:46:21', 'dJxQEoqA', '8360035'), + (37, 3122, 'attending', '2025-05-11 02:35:58', '2025-12-17 19:46:21', 'dJxQEoqA', '8362978'), + (37, 3124, 'attending', '2025-05-11 02:35:46', '2025-12-17 19:46:21', 'dJxQEoqA', '8363566'), + (37, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dJxQEoqA', '8368028'), + (37, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dJxQEoqA', '8368029'), + (37, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dJxQEoqA', '8388462'), + (37, 3150, 'attending', '2025-06-05 22:37:53', '2025-12-17 19:46:15', 'dJxQEoqA', '8393174'), + (37, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dJxQEoqA', '8400273'), + (37, 3154, 'maybe', '2025-06-28 01:12:22', '2025-12-17 19:46:15', 'dJxQEoqA', '8400274'), + (37, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dJxQEoqA', '8400275'), + (37, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dJxQEoqA', '8400276'), + (37, 3160, 'maybe', '2025-06-05 22:36:51', '2025-12-17 19:46:15', 'dJxQEoqA', '8401411'), + (37, 3168, 'maybe', '2025-06-18 04:57:04', '2025-12-17 19:46:15', 'dJxQEoqA', '8404522'), + (37, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dJxQEoqA', '8404977'), + (37, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dJxQEoqA', '8430783'), + (37, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dJxQEoqA', '8430784'), + (37, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dJxQEoqA', '8430799'), + (37, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dJxQEoqA', '8430800'), + (37, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dJxQEoqA', '8430801'), + (37, 3188, 'maybe', '2025-07-13 01:22:40', '2025-12-17 19:46:17', 'dJxQEoqA', '8438709'), + (37, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dJxQEoqA', '8457738'), + (37, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dJxQEoqA', '8459566'), + (37, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dJxQEoqA', '8459567'), + (37, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dJxQEoqA', '8461032'), + (37, 3214, 'attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dJxQEoqA', '8477877'), + (37, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dJxQEoqA', '8485688'), + (37, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dJxQEoqA', '8490587'), + (37, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dJxQEoqA', '8493552'), + (37, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dJxQEoqA', '8493553'), + (37, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dJxQEoqA', '8493554'), + (37, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dJxQEoqA', '8493555'), + (37, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dJxQEoqA', '8493556'), + (37, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dJxQEoqA', '8493557'), + (37, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dJxQEoqA', '8493558'), + (37, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dJxQEoqA', '8493559'), + (37, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dJxQEoqA', '8493560'), + (37, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dJxQEoqA', '8493561'), + (37, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dJxQEoqA', '8493572'), + (37, 3255, 'attending', '2025-08-21 21:17:00', '2025-12-17 19:46:18', 'dJxQEoqA', '8495106'), + (37, 3259, 'maybe', '2025-09-09 20:57:35', '2025-12-17 19:46:12', 'dJxQEoqA', '8512638'), + (37, 3262, 'maybe', '2025-09-09 20:16:10', '2025-12-17 19:46:12', 'dJxQEoqA', '8512642'), + (37, 3263, 'maybe', '2025-09-09 20:57:14', '2025-12-17 19:46:12', 'dJxQEoqA', '8514576'), + (37, 3272, 'attending', '2025-09-17 22:55:01', '2025-12-17 19:46:12', 'dJxQEoqA', '8524068'), + (37, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dJxQEoqA', '8540725'), + (37, 3293, 'maybe', '2025-10-22 07:21:27', '2025-12-17 19:46:14', 'dJxQEoqA', '8543836'), + (37, 3295, 'attending', '2025-10-28 20:58:32', '2025-12-17 19:46:14', 'dJxQEoqA', '8547541'), + (37, 3300, 'attending', '2025-11-03 10:38:04', '2025-12-17 19:46:14', 'dJxQEoqA', '8549145'), + (37, 3302, 'attending', '2025-11-11 00:35:24', '2025-12-17 19:46:14', 'dJxQEoqA', '8550022'), + (37, 3304, 'maybe', '2025-11-11 00:35:25', '2025-12-17 19:46:14', 'dJxQEoqA', '8550024'), + (37, 3305, 'attending', '2025-12-02 12:01:39', '2025-12-17 19:46:11', 'dJxQEoqA', '8550025'), + (37, 3313, 'attending', '2025-10-30 03:18:25', '2025-12-17 19:46:14', 'dJxQEoqA', '8550896'), + (37, 3317, 'attending', '2025-11-06 00:20:17', '2025-12-17 19:46:14', 'dJxQEoqA', '8552943'), + (37, 3319, 'maybe', '2025-11-11 00:46:34', '2025-12-17 19:46:14', 'dJxQEoqA', '8553114'), + (37, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dJxQEoqA', '8555421'), + (37, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'dJxQEoqA', '8555522'), + (37, 3324, 'attending', '2025-11-18 00:04:04', '2025-12-17 19:46:14', 'dJxQEoqA', '8556406'), + (37, 3331, 'attending', '2025-12-02 02:42:36', '2025-12-17 19:46:11', 'dJxQEoqA', '8562166'), + (37, 3335, 'maybe', '2025-12-07 20:33:36', '2025-12-17 19:46:11', 'dJxQEoqA', '8563247'), + (37, 3336, 'maybe', '2025-12-07 03:57:45', '2025-12-17 19:46:11', 'dJxQEoqA', '8563248'), + (37, 3337, 'attending', '2025-12-07 03:57:32', '2025-12-17 19:46:11', 'dJxQEoqA', '8563315'), + (37, 3338, 'attending', '2025-12-06 22:55:49', '2025-12-17 19:46:11', 'dJxQEoqA', '8563316'), + (38, 4, 'attending', '2020-03-21 22:32:11', '2025-12-17 19:47:58', 'VmyeBRym', '2958046'), + (38, 5, 'attending', '2020-03-21 22:31:56', '2025-12-17 19:47:58', 'VmyeBRym', '2958047'), + (38, 10, 'attending', '2020-03-28 21:45:27', '2025-12-17 19:47:56', 'VmyeBRym', '2958053'), + (38, 16, 'attending', '2020-03-27 22:58:15', '2025-12-17 19:47:56', 'VmyeBRym', '2958060'), + (38, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'VmyeBRym', '2961309'), + (38, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'VmyeBRym', '2961895'), + (38, 36, 'attending', '2020-04-05 00:59:26', '2025-12-17 19:47:57', 'VmyeBRym', '2969208'), + (38, 37, 'attending', '2020-03-31 12:38:43', '2025-12-17 19:47:56', 'VmyeBRym', '2969680'), + (38, 39, 'attending', '2020-04-05 00:59:20', '2025-12-17 19:47:56', 'VmyeBRym', '2970637'), + (38, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'VmyeBRym', '2971546'), + (38, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'VmyeBRym', '2974534'), + (38, 46, 'attending', '2020-04-11 21:29:32', '2025-12-17 19:47:57', 'VmyeBRym', '2974955'), + (38, 55, 'maybe', '2020-04-06 20:58:46', '2025-12-17 19:47:57', 'VmyeBRym', '2975384'), + (38, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'VmyeBRym', '2975385'), + (38, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'VmyeBRym', '2976575'), + (38, 60, 'maybe', '2020-04-28 22:28:53', '2025-12-17 19:47:57', 'VmyeBRym', '2977129'), + (38, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'VmyeBRym', '2977343'), + (38, 71, 'attending', '2020-04-11 21:29:33', '2025-12-17 19:47:57', 'VmyeBRym', '2977526'), + (38, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'VmyeBRym', '2977812'), + (38, 73, 'attending', '2020-04-17 23:21:38', '2025-12-17 19:47:57', 'VmyeBRym', '2977931'), + (38, 74, 'attending', '2020-04-17 23:21:45', '2025-12-17 19:47:57', 'VmyeBRym', '2978244'), + (38, 75, 'attending', '2020-04-25 17:15:01', '2025-12-17 19:47:57', 'VmyeBRym', '2978245'), + (38, 76, 'attending', '2020-05-02 19:19:07', '2025-12-17 19:47:57', 'VmyeBRym', '2978246'), + (38, 77, 'attending', '2020-05-09 17:59:57', '2025-12-17 19:47:57', 'VmyeBRym', '2978247'), + (38, 78, 'attending', '2020-05-22 16:37:20', '2025-12-17 19:47:57', 'VmyeBRym', '2978249'), + (38, 79, 'attending', '2020-05-28 14:00:11', '2025-12-17 19:47:57', 'VmyeBRym', '2978250'), + (38, 80, 'attending', '2020-06-06 22:45:28', '2025-12-17 19:47:58', 'VmyeBRym', '2978251'), + (38, 81, 'attending', '2020-06-13 21:45:51', '2025-12-17 19:47:58', 'VmyeBRym', '2978252'), + (38, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'VmyeBRym', '2978433'), + (38, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'VmyeBRym', '2978438'), + (38, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'VmyeBRym', '2980871'), + (38, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'VmyeBRym', '2981388'), + (38, 88, 'maybe', '2020-04-17 23:21:51', '2025-12-17 19:47:57', 'VmyeBRym', '2982603'), + (38, 89, 'attending', '2020-05-02 19:19:09', '2025-12-17 19:47:57', 'VmyeBRym', '2982604'), + (38, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'VmyeBRym', '2986743'), + (38, 104, 'attending', '2020-04-24 14:40:41', '2025-12-17 19:47:57', 'VmyeBRym', '2991471'), + (38, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'VmyeBRym', '2993501'), + (38, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'VmyeBRym', '2994480'), + (38, 115, 'attending', '2020-05-15 17:11:58', '2025-12-17 19:47:57', 'VmyeBRym', '3001217'), + (38, 119, 'maybe', '2020-05-09 18:00:02', '2025-12-17 19:47:57', 'VmyeBRym', '3015486'), + (38, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'VmyeBRym', '3023063'), + (38, 125, 'maybe', '2020-05-22 16:37:10', '2025-12-17 19:47:57', 'VmyeBRym', '3023987'), + (38, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'VmyeBRym', '3034321'), + (38, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'VmyeBRym', '3035881'), + (38, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'VmyeBRym', '3049983'), + (38, 144, 'maybe', '2020-06-06 18:48:45', '2025-12-17 19:47:58', 'VmyeBRym', '3058679'), + (38, 145, 'attending', '2020-06-13 21:45:49', '2025-12-17 19:47:58', 'VmyeBRym', '3058680'), + (38, 147, 'not_attending', '2020-08-19 19:05:07', '2025-12-17 19:47:56', 'VmyeBRym', '3058684'), + (38, 148, 'attending', '2020-07-11 19:45:49', '2025-12-17 19:47:55', 'VmyeBRym', '3058685'), + (38, 151, 'maybe', '2020-08-29 00:45:14', '2025-12-17 19:47:56', 'VmyeBRym', '3058688'), + (38, 152, 'maybe', '2020-09-05 15:18:14', '2025-12-17 19:47:56', 'VmyeBRym', '3058689'), + (38, 158, 'attending', '2020-09-26 21:58:52', '2025-12-17 19:47:52', 'VmyeBRym', '3058695'), + (38, 159, 'maybe', '2020-10-03 21:51:29', '2025-12-17 19:47:52', 'VmyeBRym', '3058696'), + (38, 160, 'maybe', '2020-10-24 16:23:39', '2025-12-17 19:47:52', 'VmyeBRym', '3058697'), + (38, 161, 'maybe', '2020-10-09 22:42:11', '2025-12-17 19:47:52', 'VmyeBRym', '3058698'), + (38, 162, 'maybe', '2020-10-17 16:26:45', '2025-12-17 19:47:52', 'VmyeBRym', '3058699'), + (38, 165, 'attending', '2020-11-07 23:47:35', '2025-12-17 19:47:53', 'VmyeBRym', '3058702'), + (38, 167, 'maybe', '2020-11-28 17:51:19', '2025-12-17 19:47:54', 'VmyeBRym', '3058705'), + (38, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'VmyeBRym', '3058959'), + (38, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'VmyeBRym', '3067093'), + (38, 182, 'maybe', '2020-06-27 02:53:35', '2025-12-17 19:47:55', 'VmyeBRym', '3074514'), + (38, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'VmyeBRym', '3075228'), + (38, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'VmyeBRym', '3075456'), + (38, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'VmyeBRym', '3083791'), + (38, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'VmyeBRym', '3085151'), + (38, 190, 'not_attending', '2020-07-04 21:35:50', '2025-12-17 19:47:55', 'VmyeBRym', '3087258'), + (38, 191, 'attending', '2020-07-11 19:45:50', '2025-12-17 19:47:55', 'VmyeBRym', '3087259'), + (38, 192, 'maybe', '2020-07-13 03:31:51', '2025-12-17 19:47:55', 'VmyeBRym', '3087260'), + (38, 194, 'maybe', '2020-08-01 20:31:44', '2025-12-17 19:47:55', 'VmyeBRym', '3087262'), + (38, 196, 'attending', '2020-08-15 19:13:05', '2025-12-17 19:47:56', 'VmyeBRym', '3087265'), + (38, 197, 'not_attending', '2020-08-19 00:44:16', '2025-12-17 19:47:56', 'VmyeBRym', '3087266'), + (38, 198, 'attending', '2020-08-29 22:06:54', '2025-12-17 19:47:56', 'VmyeBRym', '3087267'), + (38, 199, 'attending', '2020-09-04 03:53:41', '2025-12-17 19:47:56', 'VmyeBRym', '3087268'), + (38, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'VmyeBRym', '3088653'), + (38, 203, 'attending', '2020-06-22 21:36:30', '2025-12-17 19:47:58', 'VmyeBRym', '3091624'), + (38, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'VmyeBRym', '3106813'), + (38, 221, 'attending', '2020-09-17 23:29:15', '2025-12-17 19:47:56', 'VmyeBRym', '3129265'), + (38, 223, 'attending', '2020-09-13 03:29:07', '2025-12-17 19:47:56', 'VmyeBRym', '3129980'), + (38, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'VmyeBRym', '3132817'), + (38, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'VmyeBRym', '3132820'), + (38, 245, 'attending', '2020-12-02 04:38:19', '2025-12-17 19:47:54', 'VmyeBRym', '3149476'), + (38, 258, 'attending', '2021-06-01 15:04:24', '2025-12-17 19:47:47', 'VmyeBRym', '3149489'), + (38, 260, 'attending', '2021-06-15 23:22:51', '2025-12-17 19:47:47', 'VmyeBRym', '3149491'), + (38, 262, 'attending', '2021-06-29 21:06:32', '2025-12-17 19:47:38', 'VmyeBRym', '3149493'), + (38, 268, 'attending', '2020-07-28 22:18:31', '2025-12-17 19:47:55', 'VmyeBRym', '3153060'), + (38, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'VmyeBRym', '3155321'), + (38, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'VmyeBRym', '3162006'), + (38, 275, 'attending', '2020-08-03 20:02:43', '2025-12-17 19:47:56', 'VmyeBRym', '3163405'), + (38, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'VmyeBRym', '3163442'), + (38, 281, 'attending', '2020-08-09 03:05:58', '2025-12-17 19:47:56', 'VmyeBRym', '3166945'), + (38, 293, 'not_attending', '2020-08-19 19:04:23', '2025-12-17 19:47:56', 'VmyeBRym', '3172832'), + (38, 294, 'maybe', '2020-08-26 23:13:59', '2025-12-17 19:47:56', 'VmyeBRym', '3172833'), + (38, 295, 'attending', '2020-09-02 23:56:24', '2025-12-17 19:47:56', 'VmyeBRym', '3172834'), + (38, 296, 'attending', '2020-09-12 03:33:10', '2025-12-17 19:47:56', 'VmyeBRym', '3172876'), + (38, 300, 'attending', '2020-08-12 22:42:39', '2025-12-17 19:47:56', 'VmyeBRym', '3177986'), + (38, 304, 'maybe', '2020-09-08 02:20:50', '2025-12-17 19:47:56', 'VmyeBRym', '3178916'), + (38, 305, 'not_attending', '2020-08-17 14:13:36', '2025-12-17 19:47:56', 'VmyeBRym', '3179555'), + (38, 311, 'maybe', '2020-09-19 14:05:35', '2025-12-17 19:47:56', 'VmyeBRym', '3186057'), + (38, 316, 'attending', '2020-08-26 02:06:59', '2025-12-17 19:47:56', 'VmyeBRym', '3191519'), + (38, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'VmyeBRym', '3191735'), + (38, 319, 'not_attending', '2020-08-31 22:48:18', '2025-12-17 19:47:56', 'VmyeBRym', '3194179'), + (38, 334, 'not_attending', '2020-10-05 14:30:16', '2025-12-17 19:47:52', 'VmyeBRym', '3199784'), + (38, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'VmyeBRym', '3200209'), + (38, 337, 'attending', '2020-09-10 00:32:15', '2025-12-17 19:47:56', 'VmyeBRym', '3201771'), + (38, 339, 'maybe', '2020-09-10 00:32:19', '2025-12-17 19:47:56', 'VmyeBRym', '3204469'), + (38, 340, 'attending', '2020-09-19 02:58:27', '2025-12-17 19:47:56', 'VmyeBRym', '3204470'), + (38, 341, 'maybe', '2020-09-25 19:21:39', '2025-12-17 19:47:52', 'VmyeBRym', '3204471'), + (38, 342, 'attending', '2020-10-02 23:44:53', '2025-12-17 19:47:52', 'VmyeBRym', '3204472'), + (38, 353, 'attending', '2020-09-13 21:15:06', '2025-12-17 19:47:56', 'VmyeBRym', '3210789'), + (38, 354, 'attending', '2020-09-20 23:26:21', '2025-12-17 19:47:56', 'VmyeBRym', '3212570'), + (38, 355, 'attending', '2020-09-17 00:20:57', '2025-12-17 19:47:56', 'VmyeBRym', '3212571'), + (38, 356, 'maybe', '2020-09-23 22:37:56', '2025-12-17 19:47:51', 'VmyeBRym', '3212572'), + (38, 361, 'attending', '2020-09-14 20:28:10', '2025-12-17 19:47:56', 'VmyeBRym', '3213323'), + (38, 362, 'maybe', '2020-09-25 19:23:28', '2025-12-17 19:47:52', 'VmyeBRym', '3214207'), + (38, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'VmyeBRym', '3217037'), + (38, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'VmyeBRym', '3218510'), + (38, 370, 'not_attending', '2020-10-14 23:25:59', '2025-12-17 19:47:52', 'VmyeBRym', '3221405'), + (38, 379, 'maybe', '2020-10-04 19:02:47', '2025-12-17 19:47:52', 'VmyeBRym', '3226266'), + (38, 385, 'attending', '2020-10-03 20:48:21', '2025-12-17 19:47:52', 'VmyeBRym', '3228698'), + (38, 386, 'attending', '2020-10-11 05:23:10', '2025-12-17 19:47:52', 'VmyeBRym', '3228699'), + (38, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'VmyeBRym', '3228700'), + (38, 388, 'maybe', '2020-10-24 16:24:08', '2025-12-17 19:47:52', 'VmyeBRym', '3228701'), + (38, 393, 'attending', '2021-06-24 16:46:11', '2025-12-17 19:47:38', 'VmyeBRym', '3236448'), + (38, 408, 'attending', '2021-02-19 00:54:52', '2025-12-17 19:47:50', 'VmyeBRym', '3236466'), + (38, 410, 'not_attending', '2020-11-26 23:30:30', '2025-12-17 19:47:54', 'VmyeBRym', '3236469'), + (38, 414, 'not_attending', '2020-10-17 00:02:56', '2025-12-17 19:47:52', 'VmyeBRym', '3237277'), + (38, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'VmyeBRym', '3245751'), + (38, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'VmyeBRym', '3250232'), + (38, 427, 'attending', '2020-10-14 21:56:07', '2025-12-17 19:47:53', 'VmyeBRym', '3250233'), + (38, 429, 'attending', '2020-11-27 21:25:02', '2025-12-17 19:47:54', 'VmyeBRym', '3250523'), + (38, 438, 'attending', '2020-10-31 22:47:43', '2025-12-17 19:47:53', 'VmyeBRym', '3256163'), + (38, 440, 'attending', '2020-11-07 23:29:58', '2025-12-17 19:47:53', 'VmyeBRym', '3256168'), + (38, 441, 'attending', '2020-11-15 00:38:01', '2025-12-17 19:47:54', 'VmyeBRym', '3256169'), + (38, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:52', 'VmyeBRym', '3263578'), + (38, 445, 'maybe', '2020-11-12 23:41:37', '2025-12-17 19:47:54', 'VmyeBRym', '3266138'), + (38, 456, 'maybe', '2020-11-17 00:54:22', '2025-12-17 19:47:54', 'VmyeBRym', '3276428'), + (38, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'VmyeBRym', '3281467'), + (38, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'VmyeBRym', '3281470'), + (38, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'VmyeBRym', '3281829'), + (38, 468, 'attending', '2020-11-21 23:16:05', '2025-12-17 19:47:54', 'VmyeBRym', '3285413'), + (38, 469, 'maybe', '2020-11-28 17:51:26', '2025-12-17 19:47:54', 'VmyeBRym', '3285414'), + (38, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'VmyeBRym', '3297764'), + (38, 484, 'attending', '2020-11-20 00:27:28', '2025-12-17 19:47:54', 'VmyeBRym', '3297792'), + (38, 489, 'not_attending', '2020-11-27 21:24:42', '2025-12-17 19:47:54', 'VmyeBRym', '3313022'), + (38, 493, 'attending', '2020-12-05 04:01:51', '2025-12-17 19:47:54', 'VmyeBRym', '3313856'), + (38, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'VmyeBRym', '3314909'), + (38, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'VmyeBRym', '3314964'), + (38, 502, 'maybe', '2020-12-12 19:46:53', '2025-12-17 19:47:55', 'VmyeBRym', '3323365'), + (38, 513, 'attending', '2020-12-20 00:09:25', '2025-12-17 19:47:55', 'VmyeBRym', '3329383'), + (38, 526, 'maybe', '2021-01-01 19:15:28', '2025-12-17 19:47:48', 'VmyeBRym', '3351539'), + (38, 536, 'attending', '2021-01-06 17:07:10', '2025-12-17 19:47:48', 'VmyeBRym', '3386848'), + (38, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'VmyeBRym', '3389527'), + (38, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'VmyeBRym', '3396499'), + (38, 548, 'attending', '2021-01-16 22:20:14', '2025-12-17 19:47:48', 'VmyeBRym', '3403650'), + (38, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:48', 'VmyeBRym', '3406988'), + (38, 555, 'attending', '2021-01-23 20:08:31', '2025-12-17 19:47:49', 'VmyeBRym', '3416576'), + (38, 558, 'maybe', '2021-01-23 00:57:29', '2025-12-17 19:47:49', 'VmyeBRym', '3418925'), + (38, 567, 'maybe', '2021-01-30 22:20:17', '2025-12-17 19:47:50', 'VmyeBRym', '3428895'), + (38, 568, 'maybe', '2021-01-31 00:01:20', '2025-12-17 19:47:50', 'VmyeBRym', '3430267'), + (38, 569, 'not_attending', '2021-01-27 04:55:40', '2025-12-17 19:47:49', 'VmyeBRym', '3432673'), + (38, 579, 'attending', '2021-02-07 00:22:20', '2025-12-17 19:47:50', 'VmyeBRym', '3440978'), + (38, 580, 'not_attending', '2021-01-31 21:14:28', '2025-12-17 19:47:50', 'VmyeBRym', '3444240'), + (38, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'VmyeBRym', '3468125'), + (38, 602, 'maybe', '2021-02-12 14:50:39', '2025-12-17 19:47:50', 'VmyeBRym', '3470303'), + (38, 603, 'attending', '2021-02-20 20:06:05', '2025-12-17 19:47:50', 'VmyeBRym', '3470304'), + (38, 604, 'attending', '2021-02-27 23:10:00', '2025-12-17 19:47:50', 'VmyeBRym', '3470305'), + (38, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VmyeBRym', '3470991'), + (38, 609, 'maybe', '2021-02-12 14:50:36', '2025-12-17 19:47:50', 'VmyeBRym', '3480916'), + (38, 619, 'maybe', '2021-02-20 20:06:02', '2025-12-17 19:47:50', 'VmyeBRym', '3506310'), + (38, 621, 'maybe', '2021-03-06 13:54:41', '2025-12-17 19:47:51', 'VmyeBRym', '3517815'), + (38, 622, 'not_attending', '2021-03-13 19:00:58', '2025-12-17 19:47:51', 'VmyeBRym', '3517816'), + (38, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'VmyeBRym', '3523941'), + (38, 624, 'attending', '2021-02-27 23:09:59', '2025-12-17 19:47:50', 'VmyeBRym', '3528556'), + (38, 626, 'not_attending', '2021-03-06 13:54:35', '2025-12-17 19:47:51', 'VmyeBRym', '3533298'), + (38, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VmyeBRym', '3533850'), + (38, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VmyeBRym', '3536632'), + (38, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VmyeBRym', '3536656'), + (38, 641, 'maybe', '2021-04-02 16:47:58', '2025-12-17 19:47:44', 'VmyeBRym', '3539916'), + (38, 642, 'maybe', '2021-04-10 17:22:24', '2025-12-17 19:47:44', 'VmyeBRym', '3539917'), + (38, 643, 'maybe', '2021-04-17 18:17:11', '2025-12-17 19:47:45', 'VmyeBRym', '3539918'), + (38, 644, 'maybe', '2021-04-24 16:59:31', '2025-12-17 19:47:45', 'VmyeBRym', '3539919'), + (38, 645, 'not_attending', '2021-05-08 14:38:30', '2025-12-17 19:47:46', 'VmyeBRym', '3539920'), + (38, 646, 'attending', '2021-05-15 20:33:23', '2025-12-17 19:47:46', 'VmyeBRym', '3539921'), + (38, 647, 'maybe', '2021-05-22 16:37:19', '2025-12-17 19:47:46', 'VmyeBRym', '3539922'), + (38, 648, 'maybe', '2021-05-28 15:59:46', '2025-12-17 19:47:47', 'VmyeBRym', '3539923'), + (38, 649, 'attending', '2021-03-20 22:48:00', '2025-12-17 19:47:51', 'VmyeBRym', '3539927'), + (38, 657, 'maybe', '2021-04-17 18:17:14', '2025-12-17 19:47:45', 'VmyeBRym', '3547132'), + (38, 659, 'maybe', '2021-04-10 22:01:19', '2025-12-17 19:47:44', 'VmyeBRym', '3547135'), + (38, 662, 'maybe', '2021-04-24 16:59:23', '2025-12-17 19:47:45', 'VmyeBRym', '3547138'), + (38, 663, 'not_attending', '2021-05-05 01:08:47', '2025-12-17 19:47:46', 'VmyeBRym', '3547140'), + (38, 664, 'maybe', '2021-09-11 20:42:11', '2025-12-17 19:47:43', 'VmyeBRym', '3547142'), + (38, 666, 'attending', '2021-08-14 21:33:02', '2025-12-17 19:47:42', 'VmyeBRym', '3547144'), + (38, 667, 'maybe', '2021-08-28 20:33:49', '2025-12-17 19:47:42', 'VmyeBRym', '3547145'), + (38, 669, 'attending', '2021-06-26 21:19:30', '2025-12-17 19:47:38', 'VmyeBRym', '3547147'), + (38, 671, 'maybe', '2021-07-17 05:27:57', '2025-12-17 19:47:39', 'VmyeBRym', '3547149'), + (38, 672, 'maybe', '2021-05-22 16:37:23', '2025-12-17 19:47:46', 'VmyeBRym', '3547150'), + (38, 674, 'maybe', '2021-08-07 14:44:14', '2025-12-17 19:47:41', 'VmyeBRym', '3547152'), + (38, 675, 'not_attending', '2021-07-31 04:03:41', '2025-12-17 19:47:40', 'VmyeBRym', '3547153'), + (38, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VmyeBRym', '3582734'), + (38, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'VmyeBRym', '3583262'), + (38, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VmyeBRym', '3619523'), + (38, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'VmyeBRym', '3661369'), + (38, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VmyeBRym', '3674262'), + (38, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VmyeBRym', '3677402'), + (38, 756, 'attending', '2021-04-13 03:18:10', '2025-12-17 19:47:46', 'VmyeBRym', '3704795'), + (38, 774, 'not_attending', '2021-04-22 01:09:53', '2025-12-17 19:47:45', 'VmyeBRym', '3730212'), + (38, 783, 'attending', '2021-05-03 21:30:41', '2025-12-17 19:47:46', 'VmyeBRym', '3767471'), + (38, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'VmyeBRym', '3793156'), + (38, 822, 'not_attending', '2021-06-03 01:52:19', '2025-12-17 19:47:47', 'VmyeBRym', '3969986'), + (38, 823, 'not_attending', '2021-06-17 04:11:28', '2025-12-17 19:47:48', 'VmyeBRym', '3974109'), + (38, 827, 'not_attending', '2021-06-01 18:15:18', '2025-12-17 19:47:47', 'VmyeBRym', '3975311'), + (38, 828, 'attending', '2021-06-12 22:19:48', '2025-12-17 19:47:47', 'VmyeBRym', '3975312'), + (38, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VmyeBRym', '3994992'), + (38, 844, 'attending', '2021-06-23 22:56:27', '2025-12-17 19:47:38', 'VmyeBRym', '4014338'), + (38, 867, 'attending', '2021-06-26 21:19:32', '2025-12-17 19:47:38', 'VmyeBRym', '4021848'), + (38, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmyeBRym', '4136744'), + (38, 870, 'not_attending', '2021-07-02 23:04:20', '2025-12-17 19:47:38', 'VmyeBRym', '4136937'), + (38, 871, 'attending', '2021-07-10 16:55:28', '2025-12-17 19:47:39', 'VmyeBRym', '4136938'), + (38, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VmyeBRym', '4136947'), + (38, 879, 'maybe', '2021-06-28 21:02:28', '2025-12-17 19:47:38', 'VmyeBRym', '4147806'), + (38, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'VmyeBRym', '4210314'), + (38, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VmyeBRym', '4225444'), + (38, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VmyeBRym', '4239259'), + (38, 900, 'maybe', '2021-07-24 21:34:59', '2025-12-17 19:47:40', 'VmyeBRym', '4240316'), + (38, 901, 'maybe', '2021-07-31 04:02:55', '2025-12-17 19:47:40', 'VmyeBRym', '4240317'), + (38, 902, 'maybe', '2021-08-07 14:44:17', '2025-12-17 19:47:41', 'VmyeBRym', '4240318'), + (38, 903, 'attending', '2021-08-14 21:32:54', '2025-12-17 19:47:42', 'VmyeBRym', '4240320'), + (38, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VmyeBRym', '4250163'), + (38, 906, 'attending', '2021-07-11 16:56:08', '2025-12-17 19:47:39', 'VmyeBRym', '4253431'), + (38, 919, 'maybe', '2021-07-17 05:27:53', '2025-12-17 19:47:39', 'VmyeBRym', '4275957'), + (38, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'VmyeBRym', '4277819'), + (38, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'VmyeBRym', '4301723'), + (38, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VmyeBRym', '4302093'), + (38, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VmyeBRym', '4304151'), + (38, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'VmyeBRym', '4345519'), + (38, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VmyeBRym', '4356801'), + (38, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'VmyeBRym', '4358025'), + (38, 973, 'maybe', '2021-08-21 21:45:08', '2025-12-17 19:47:42', 'VmyeBRym', '4366186'), + (38, 974, 'maybe', '2021-08-28 04:11:23', '2025-12-17 19:47:42', 'VmyeBRym', '4366187'), + (38, 983, 'attending', '2021-08-20 19:44:22', '2025-12-17 19:47:42', 'VmyeBRym', '4390051'), + (38, 988, 'maybe', '2021-08-27 21:08:06', '2025-12-17 19:47:42', 'VmyeBRym', '4402823'), + (38, 990, 'maybe', '2021-09-04 06:36:37', '2025-12-17 19:47:43', 'VmyeBRym', '4420735'), + (38, 991, 'attending', '2021-09-11 20:42:06', '2025-12-17 19:47:43', 'VmyeBRym', '4420738'), + (38, 992, 'not_attending', '2021-09-10 05:26:03', '2025-12-17 19:47:33', 'VmyeBRym', '4420739'), + (38, 993, 'attending', '2021-09-25 17:54:49', '2025-12-17 19:47:34', 'VmyeBRym', '4420741'), + (38, 994, 'maybe', '2021-10-02 21:58:08', '2025-12-17 19:47:34', 'VmyeBRym', '4420742'), + (38, 995, 'maybe', '2021-10-09 16:15:32', '2025-12-17 19:47:34', 'VmyeBRym', '4420744'), + (38, 996, 'attending', '2021-10-16 19:48:25', '2025-12-17 19:47:35', 'VmyeBRym', '4420747'), + (38, 997, 'not_attending', '2021-10-17 02:31:09', '2025-12-17 19:47:35', 'VmyeBRym', '4420748'), + (38, 998, 'attending', '2021-10-30 22:29:32', '2025-12-17 19:47:36', 'VmyeBRym', '4420749'), + (38, 1001, 'attending', '2021-08-30 00:59:31', '2025-12-17 19:47:43', 'VmyeBRym', '4424687'), + (38, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VmyeBRym', '4461883'), + (38, 1038, 'not_attending', '2021-09-25 21:10:50', '2025-12-17 19:47:34', 'VmyeBRym', '4496603'), + (38, 1041, 'not_attending', '2021-11-28 21:03:03', '2025-12-17 19:47:37', 'VmyeBRym', '4496606'), + (38, 1043, 'not_attending', '2021-10-17 02:31:04', '2025-12-17 19:47:35', 'VmyeBRym', '4496608'), + (38, 1044, 'attending', '2021-11-06 19:41:34', '2025-12-17 19:47:36', 'VmyeBRym', '4496609'), + (38, 1045, 'maybe', '2021-10-30 04:53:17', '2025-12-17 19:47:36', 'VmyeBRym', '4496610'), + (38, 1046, 'maybe', '2021-10-16 19:48:23', '2025-12-17 19:47:35', 'VmyeBRym', '4496611'), + (38, 1047, 'maybe', '2021-10-09 16:15:29', '2025-12-17 19:47:34', 'VmyeBRym', '4496612'), + (38, 1049, 'attending', '2022-01-22 19:35:27', '2025-12-17 19:47:32', 'VmyeBRym', '4496614'), + (38, 1050, 'attending', '2022-01-29 20:51:38', '2025-12-17 19:47:32', 'VmyeBRym', '4496615'), + (38, 1051, 'maybe', '2022-02-05 07:04:25', '2025-12-17 19:47:32', 'VmyeBRym', '4496616'), + (38, 1053, 'maybe', '2022-02-19 18:02:50', '2025-12-17 19:47:32', 'VmyeBRym', '4496618'), + (38, 1054, 'attending', '2022-03-18 16:48:31', '2025-12-17 19:47:25', 'VmyeBRym', '4496619'), + (38, 1055, 'maybe', '2021-12-18 19:54:50', '2025-12-17 19:47:31', 'VmyeBRym', '4496621'), + (38, 1056, 'maybe', '2022-01-08 22:09:02', '2025-12-17 19:47:31', 'VmyeBRym', '4496622'), + (38, 1057, 'not_attending', '2021-11-17 21:11:08', '2025-12-17 19:47:37', 'VmyeBRym', '4496624'), + (38, 1058, 'maybe', '2022-02-26 17:37:05', '2025-12-17 19:47:33', 'VmyeBRym', '4496625'), + (38, 1059, 'attending', '2022-03-12 19:46:31', '2025-12-17 19:47:33', 'VmyeBRym', '4496626'), + (38, 1060, 'maybe', '2022-03-26 05:30:25', '2025-12-17 19:47:25', 'VmyeBRym', '4496627'), + (38, 1061, 'maybe', '2022-02-12 17:51:59', '2025-12-17 19:47:32', 'VmyeBRym', '4496628'), + (38, 1062, 'not_attending', '2022-03-01 17:56:20', '2025-12-17 19:47:33', 'VmyeBRym', '4496629'), + (38, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'VmyeBRym', '4508342'), + (38, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:34', 'VmyeBRym', '4568602'), + (38, 1087, 'not_attending', '2021-10-16 19:48:34', '2025-12-17 19:47:35', 'VmyeBRym', '4572153'), + (38, 1089, 'maybe', '2021-10-18 19:23:06', '2025-12-17 19:47:35', 'VmyeBRym', '4574712'), + (38, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VmyeBRym', '4585962'), + (38, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VmyeBRym', '4596356'), + (38, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VmyeBRym', '4598860'), + (38, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'VmyeBRym', '4598861'), + (38, 1099, 'attending', '2021-11-06 19:41:35', '2025-12-17 19:47:36', 'VmyeBRym', '4602797'), + (38, 1103, 'maybe', '2021-11-13 21:17:50', '2025-12-17 19:47:36', 'VmyeBRym', '4616350'), + (38, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'VmyeBRym', '4637896'), + (38, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'VmyeBRym', '4642994'), + (38, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'VmyeBRym', '4642995'), + (38, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'VmyeBRym', '4642996'), + (38, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'VmyeBRym', '4642997'), + (38, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'VmyeBRym', '4645687'), + (38, 1127, 'attending', '2021-12-12 05:22:06', '2025-12-17 19:47:38', 'VmyeBRym', '4645698'), + (38, 1128, 'attending', '2021-11-20 23:43:40', '2025-12-17 19:47:37', 'VmyeBRym', '4645704'), + (38, 1129, 'attending', '2021-11-27 21:58:50', '2025-12-17 19:47:37', 'VmyeBRym', '4645705'), + (38, 1130, 'maybe', '2021-12-04 19:58:40', '2025-12-17 19:47:37', 'VmyeBRym', '4658824'), + (38, 1131, 'attending', '2021-12-18 23:27:03', '2025-12-17 19:47:31', 'VmyeBRym', '4658825'), + (38, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VmyeBRym', '4668385'), + (38, 1138, 'attending', '2021-11-30 00:43:59', '2025-12-17 19:47:37', 'VmyeBRym', '4675407'), + (38, 1145, 'not_attending', '2021-12-09 23:25:24', '2025-12-17 19:47:38', 'VmyeBRym', '4691157'), + (38, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VmyeBRym', '4694407'), + (38, 1162, 'maybe', '2022-01-07 23:29:41', '2025-12-17 19:47:31', 'VmyeBRym', '4718771'), + (38, 1164, 'attending', '2022-01-03 16:06:06', '2025-12-17 19:47:31', 'VmyeBRym', '4724208'), + (38, 1165, 'attending', '2022-01-03 16:06:07', '2025-12-17 19:47:31', 'VmyeBRym', '4724210'), + (38, 1167, 'maybe', '2022-01-07 00:41:46', '2025-12-17 19:47:31', 'VmyeBRym', '4731015'), + (38, 1173, 'attending', '2022-01-08 22:08:59', '2025-12-17 19:47:31', 'VmyeBRym', '4736495'), + (38, 1174, 'attending', '2022-01-15 19:09:26', '2025-12-17 19:47:31', 'VmyeBRym', '4736496'), + (38, 1175, 'attending', '2022-01-22 19:35:28', '2025-12-17 19:47:32', 'VmyeBRym', '4736497'), + (38, 1176, 'attending', '2022-02-04 02:04:11', '2025-12-17 19:47:32', 'VmyeBRym', '4736498'), + (38, 1177, 'attending', '2022-02-12 17:52:02', '2025-12-17 19:47:32', 'VmyeBRym', '4736499'), + (38, 1178, 'attending', '2022-01-29 20:51:34', '2025-12-17 19:47:32', 'VmyeBRym', '4736500'), + (38, 1179, 'attending', '2022-02-19 18:02:55', '2025-12-17 19:47:32', 'VmyeBRym', '4736501'), + (38, 1180, 'attending', '2022-02-26 23:45:46', '2025-12-17 19:47:33', 'VmyeBRym', '4736502'), + (38, 1181, 'not_attending', '2022-03-01 17:56:23', '2025-12-17 19:47:33', 'VmyeBRym', '4736503'), + (38, 1182, 'attending', '2022-03-12 19:46:33', '2025-12-17 19:47:33', 'VmyeBRym', '4736504'), + (38, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VmyeBRym', '4746789'), + (38, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'VmyeBRym', '4753929'), + (38, 1206, 'attending', '2022-04-10 19:26:41', '2025-12-17 19:47:27', 'VmyeBRym', '4773578'), + (38, 1207, 'maybe', '2022-05-08 20:57:27', '2025-12-17 19:47:28', 'VmyeBRym', '4773579'), + (38, 1215, 'attending', '2022-02-26 00:38:53', '2025-12-17 19:47:33', 'VmyeBRym', '4780763'), + (38, 1220, 'maybe', '2022-01-29 01:49:51', '2025-12-17 19:47:32', 'VmyeBRym', '4790257'), + (38, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VmyeBRym', '5038850'), + (38, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VmyeBRym', '5045826'), + (38, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VmyeBRym', '5132533'), + (38, 1272, 'attending', '2022-03-18 16:48:28', '2025-12-17 19:47:25', 'VmyeBRym', '5186582'), + (38, 1273, 'attending', '2022-03-26 22:10:15', '2025-12-17 19:47:25', 'VmyeBRym', '5186583'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (38, 1274, 'attending', '2022-04-02 13:04:41', '2025-12-17 19:47:26', 'VmyeBRym', '5186585'), + (38, 1275, 'maybe', '2022-04-02 13:04:45', '2025-12-17 19:47:26', 'VmyeBRym', '5186587'), + (38, 1276, 'maybe', '2022-03-27 20:51:56', '2025-12-17 19:47:25', 'VmyeBRym', '5186820'), + (38, 1281, 'maybe', '2022-04-09 17:30:26', '2025-12-17 19:47:27', 'VmyeBRym', '5190437'), + (38, 1282, 'attending', '2022-03-18 00:26:12', '2025-12-17 19:47:25', 'VmyeBRym', '5191241'), + (38, 1284, 'attending', '2022-04-16 21:28:53', '2025-12-17 19:47:27', 'VmyeBRym', '5195095'), + (38, 1288, 'maybe', '2022-03-29 21:20:19', '2025-12-17 19:47:25', 'VmyeBRym', '5199460'), + (38, 1293, 'attending', '2022-04-10 19:26:39', '2025-12-17 19:47:27', 'VmyeBRym', '5214641'), + (38, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'VmyeBRym', '5215989'), + (38, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'VmyeBRym', '5223686'), + (38, 1309, 'attending', '2022-04-06 03:43:12', '2025-12-17 19:47:26', 'VmyeBRym', '5227432'), + (38, 1310, 'attending', '2022-04-07 22:17:33', '2025-12-17 19:47:27', 'VmyeBRym', '5231071'), + (38, 1312, 'attending', '2022-04-12 03:05:47', '2025-12-17 19:47:27', 'VmyeBRym', '5231459'), + (38, 1313, 'attending', '2022-04-12 23:20:26', '2025-12-17 19:47:27', 'VmyeBRym', '5231461'), + (38, 1336, 'attending', '2022-04-19 23:20:53', '2025-12-17 19:47:27', 'VmyeBRym', '5244915'), + (38, 1345, 'maybe', '2022-04-23 15:21:09', '2025-12-17 19:47:27', 'VmyeBRym', '5247466'), + (38, 1346, 'attending', '2022-04-23 15:21:12', '2025-12-17 19:47:27', 'VmyeBRym', '5247467'), + (38, 1362, 'attending', '2022-04-25 19:24:53', '2025-12-17 19:47:28', 'VmyeBRym', '5260800'), + (38, 1374, 'attending', '2022-05-07 21:01:12', '2025-12-17 19:47:28', 'VmyeBRym', '5269930'), + (38, 1378, 'attending', '2022-05-13 18:23:10', '2025-12-17 19:47:28', 'VmyeBRym', '5271448'), + (38, 1379, 'attending', '2022-05-20 22:50:08', '2025-12-17 19:47:29', 'VmyeBRym', '5271449'), + (38, 1380, 'not_attending', '2022-05-28 02:08:27', '2025-12-17 19:47:30', 'VmyeBRym', '5271450'), + (38, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'VmyeBRym', '5276469'), + (38, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'VmyeBRym', '5278159'), + (38, 1395, 'maybe', '2022-05-07 21:01:14', '2025-12-17 19:47:28', 'VmyeBRym', '5281102'), + (38, 1397, 'attending', '2022-05-20 22:50:07', '2025-12-17 19:47:29', 'VmyeBRym', '5281104'), + (38, 1407, 'attending', '2022-06-03 23:50:38', '2025-12-17 19:47:30', 'VmyeBRym', '5363695'), + (38, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'VmyeBRym', '5365960'), + (38, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'VmyeBRym', '5368973'), + (38, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'VmyeBRym', '5378247'), + (38, 1431, 'attending', '2022-06-09 15:22:41', '2025-12-17 19:47:30', 'VmyeBRym', '5389605'), + (38, 1442, 'attending', '2022-06-18 15:37:50', '2025-12-17 19:47:17', 'VmyeBRym', '5397265'), + (38, 1444, 'maybe', '2022-06-09 15:22:43', '2025-12-17 19:47:30', 'VmyeBRym', '5397614'), + (38, 1445, 'maybe', '2022-06-18 15:37:53', '2025-12-17 19:47:17', 'VmyeBRym', '5397615'), + (38, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'VmyeBRym', '5403967'), + (38, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'VmyeBRym', '5404786'), + (38, 1460, 'maybe', '2022-06-13 22:21:34', '2025-12-17 19:47:31', 'VmyeBRym', '5404817'), + (38, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'VmyeBRym', '5405203'), + (38, 1477, 'attending', '2022-06-22 00:00:00', '2025-12-17 19:47:17', 'VmyeBRym', '5408766'), + (38, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'VmyeBRym', '5411699'), + (38, 1482, 'attending', '2022-06-23 18:37:04', '2025-12-17 19:47:19', 'VmyeBRym', '5412550'), + (38, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'VmyeBRym', '5415046'), + (38, 1493, 'maybe', '2022-06-25 20:33:34', '2025-12-17 19:47:19', 'VmyeBRym', '5420218'), + (38, 1494, 'not_attending', '2022-06-25 15:19:20', '2025-12-17 19:47:19', 'VmyeBRym', '5421626'), + (38, 1495, 'attending', '2022-07-05 23:49:26', '2025-12-17 19:47:19', 'VmyeBRym', '5422086'), + (38, 1498, 'not_attending', '2022-07-02 04:24:56', '2025-12-17 19:47:19', 'VmyeBRym', '5422406'), + (38, 1499, 'not_attending', '2022-07-02 04:25:06', '2025-12-17 19:47:19', 'VmyeBRym', '5422407'), + (38, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'VmyeBRym', '5424565'), + (38, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'VmyeBRym', '5426882'), + (38, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'VmyeBRym', '5427083'), + (38, 1509, 'attending', '2022-07-05 18:53:23', '2025-12-17 19:47:19', 'VmyeBRym', '5434019'), + (38, 1511, 'attending', '2022-07-09 20:10:19', '2025-12-17 19:47:19', 'VmyeBRym', '5437733'), + (38, 1513, 'attending', '2022-07-14 15:00:00', '2025-12-17 19:47:19', 'VmyeBRym', '5441125'), + (38, 1514, 'attending', '2022-07-21 20:09:25', '2025-12-17 19:47:20', 'VmyeBRym', '5441126'), + (38, 1515, 'attending', '2022-08-05 00:40:00', '2025-12-17 19:47:21', 'VmyeBRym', '5441128'), + (38, 1516, 'attending', '2022-08-20 03:41:06', '2025-12-17 19:47:23', 'VmyeBRym', '5441129'), + (38, 1517, 'attending', '2022-08-25 15:13:55', '2025-12-17 19:47:23', 'VmyeBRym', '5441130'), + (38, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'VmyeBRym', '5441131'), + (38, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'VmyeBRym', '5441132'), + (38, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'VmyeBRym', '5446643'), + (38, 1532, 'maybe', '2022-07-23 19:13:24', '2025-12-17 19:47:20', 'VmyeBRym', '5448757'), + (38, 1536, 'attending', '2022-07-21 22:47:55', '2025-12-17 19:47:20', 'VmyeBRym', '5449068'), + (38, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'VmyeBRym', '5453325'), + (38, 1541, 'attending', '2022-07-25 18:12:15', '2025-12-17 19:47:20', 'VmyeBRym', '5453542'), + (38, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'VmyeBRym', '5454516'), + (38, 1544, 'not_attending', '2022-09-11 14:11:20', '2025-12-17 19:47:11', 'VmyeBRym', '5454517'), + (38, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'VmyeBRym', '5454605'), + (38, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'VmyeBRym', '5455037'), + (38, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'VmyeBRym', '5461278'), + (38, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'VmyeBRym', '5469480'), + (38, 1565, 'attending', '2022-08-07 17:30:58', '2025-12-17 19:47:21', 'VmyeBRym', '5471073'), + (38, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'VmyeBRym', '5474663'), + (38, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'VmyeBRym', '5482022'), + (38, 1572, 'not_attending', '2022-08-01 19:50:19', '2025-12-17 19:47:22', 'VmyeBRym', '5482078'), + (38, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'VmyeBRym', '5482793'), + (38, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'VmyeBRym', '5488912'), + (38, 1586, 'attending', '2022-08-18 23:08:41', '2025-12-17 19:47:23', 'VmyeBRym', '5492019'), + (38, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'VmyeBRym', '5492192'), + (38, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'VmyeBRym', '5493139'), + (38, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'VmyeBRym', '5493200'), + (38, 1593, 'attending', '2022-08-09 03:56:19', '2025-12-17 19:47:22', 'VmyeBRym', '5494043'), + (38, 1603, 'attending', '2022-08-19 22:07:50', '2025-12-17 19:47:23', 'VmyeBRym', '5497895'), + (38, 1604, 'maybe', '2022-08-17 22:24:50', '2025-12-17 19:47:22', 'VmyeBRym', '5501504'), + (38, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'VmyeBRym', '5502188'), + (38, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'VmyeBRym', '5505059'), + (38, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'VmyeBRym', '5509055'), + (38, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'VmyeBRym', '5512862'), + (38, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'VmyeBRym', '5513985'), + (38, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'VmyeBRym', '5519981'), + (38, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'VmyeBRym', '5522550'), + (38, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'VmyeBRym', '5534683'), + (38, 1634, 'attending', '2022-08-29 00:11:24', '2025-12-17 19:47:23', 'VmyeBRym', '5536950'), + (38, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'VmyeBRym', '5537735'), + (38, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'VmyeBRym', '5540859'), + (38, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'VmyeBRym', '5546619'), + (38, 1652, 'maybe', '2022-09-10 18:57:50', '2025-12-17 19:47:24', 'VmyeBRym', '5552671'), + (38, 1658, 'attending', '2022-09-06 15:31:39', '2025-12-17 19:47:24', 'VmyeBRym', '5555245'), + (38, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'VmyeBRym', '5557747'), + (38, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'VmyeBRym', '5560255'), + (38, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'VmyeBRym', '5562906'), + (38, 1667, 'maybe', '2022-09-24 16:08:26', '2025-12-17 19:47:11', 'VmyeBRym', '5563221'), + (38, 1668, 'attending', '2022-10-01 20:44:13', '2025-12-17 19:47:12', 'VmyeBRym', '5563222'), + (38, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'VmyeBRym', '5600604'), + (38, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'VmyeBRym', '5605544'), + (38, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'VmyeBRym', '5606737'), + (38, 1707, 'not_attending', '2022-10-14 04:02:17', '2025-12-17 19:47:12', 'VmyeBRym', '5613104'), + (38, 1719, 'attending', '2022-10-05 16:08:10', '2025-12-17 19:47:12', 'VmyeBRym', '5630958'), + (38, 1720, 'attending', '2022-10-14 19:01:02', '2025-12-17 19:47:12', 'VmyeBRym', '5630959'), + (38, 1721, 'attending', '2022-10-21 15:17:49', '2025-12-17 19:47:13', 'VmyeBRym', '5630960'), + (38, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'VmyeBRym', '5630961'), + (38, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'VmyeBRym', '5630962'), + (38, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'VmyeBRym', '5630966'), + (38, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'VmyeBRym', '5630967'), + (38, 1726, 'maybe', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'VmyeBRym', '5630968'), + (38, 1727, 'attending', '2022-12-03 14:25:21', '2025-12-17 19:47:16', 'VmyeBRym', '5630969'), + (38, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'VmyeBRym', '5635406'), + (38, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'VmyeBRym', '5638765'), + (38, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'VmyeBRym', '5640097'), + (38, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'VmyeBRym', '5640843'), + (38, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'VmyeBRym', '5641521'), + (38, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'VmyeBRym', '5642818'), + (38, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'VmyeBRym', '5652395'), + (38, 1759, 'maybe', '2022-10-21 15:17:52', '2025-12-17 19:47:13', 'VmyeBRym', '5669097'), + (38, 1760, 'attending', '2022-10-21 22:18:06', '2025-12-17 19:47:13', 'VmyeBRym', '5669463'), + (38, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'VmyeBRym', '5670445'), + (38, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'VmyeBRym', '5671637'), + (38, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'VmyeBRym', '5672329'), + (38, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'VmyeBRym', '5674057'), + (38, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'VmyeBRym', '5674060'), + (38, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'VmyeBRym', '5677461'), + (38, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'VmyeBRym', '5698046'), + (38, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'VmyeBRym', '5699760'), + (38, 1790, 'attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'VmyeBRym', '5727424'), + (38, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'VmyeBRym', '5741601'), + (38, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'VmyeBRym', '5763458'), + (38, 1804, 'maybe', '2023-01-28 19:38:17', '2025-12-17 19:47:06', 'VmyeBRym', '5764674'), + (38, 1805, 'attending', '2023-02-04 22:55:27', '2025-12-17 19:47:06', 'VmyeBRym', '5764675'), + (38, 1809, 'attending', '2023-04-15 18:38:09', '2025-12-17 19:46:59', 'VmyeBRym', '5764679'), + (38, 1813, 'maybe', '2023-04-29 15:44:55', '2025-12-17 19:47:01', 'VmyeBRym', '5764683'), + (38, 1815, 'not_attending', '2023-02-17 02:06:59', '2025-12-17 19:47:07', 'VmyeBRym', '5764685'), + (38, 1821, 'maybe', '2023-03-18 15:54:33', '2025-12-17 19:46:56', 'VmyeBRym', '5764691'), + (38, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'VmyeBRym', '5774172'), + (38, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'VmyeBRym', '5818247'), + (38, 1834, 'not_attending', '2022-12-10 05:42:41', '2025-12-17 19:47:17', 'VmyeBRym', '5819470'), + (38, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'VmyeBRym', '5819471'), + (38, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'VmyeBRym', '5827739'), + (38, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'VmyeBRym', '5844306'), + (38, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'VmyeBRym', '5850159'), + (38, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'VmyeBRym', '5858999'), + (38, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'VmyeBRym', '5871984'), + (38, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'VmyeBRym', '5876354'), + (38, 1864, 'attending', '2023-01-21 00:40:01', '2025-12-17 19:47:05', 'VmyeBRym', '5879675'), + (38, 1865, 'attending', '2023-01-28 03:48:31', '2025-12-17 19:47:06', 'VmyeBRym', '5879676'), + (38, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'VmyeBRym', '5880939'), + (38, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'VmyeBRym', '5880940'), + (38, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'VmyeBRym', '5880942'), + (38, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'VmyeBRym', '5880943'), + (38, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'VmyeBRym', '5887890'), + (38, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'VmyeBRym', '5888598'), + (38, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'VmyeBRym', '5893260'), + (38, 1881, 'attending', '2023-02-08 18:45:27', '2025-12-17 19:47:07', 'VmyeBRym', '5894218'), + (38, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'VmyeBRym', '5899826'), + (38, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'VmyeBRym', '5900199'), + (38, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:07', 'VmyeBRym', '5900200'), + (38, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'VmyeBRym', '5900202'), + (38, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'VmyeBRym', '5900203'), + (38, 1893, 'attending', '2023-01-31 23:50:22', '2025-12-17 19:47:06', 'VmyeBRym', '5901055'), + (38, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'VmyeBRym', '5901108'), + (38, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'VmyeBRym', '5901126'), + (38, 1897, 'attending', '2023-02-08 18:44:24', '2025-12-17 19:47:07', 'VmyeBRym', '5901128'), + (38, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'VmyeBRym', '5909655'), + (38, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'VmyeBRym', '5910522'), + (38, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'VmyeBRym', '5910526'), + (38, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'VmyeBRym', '5910528'), + (38, 1922, 'not_attending', '2023-02-13 05:52:16', '2025-12-17 19:47:07', 'VmyeBRym', '5916219'), + (38, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'VmyeBRym', '5936234'), + (38, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'VmyeBRym', '5958351'), + (38, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'VmyeBRym', '5959751'), + (38, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'VmyeBRym', '5959755'), + (38, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'VmyeBRym', '5960055'), + (38, 1941, 'attending', '2023-02-25 03:28:06', '2025-12-17 19:47:09', 'VmyeBRym', '5961684'), + (38, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'VmyeBRym', '5962132'), + (38, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'VmyeBRym', '5962133'), + (38, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'VmyeBRym', '5962134'), + (38, 1947, 'attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'VmyeBRym', '5962233'), + (38, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'VmyeBRym', '5962317'), + (38, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'VmyeBRym', '5962318'), + (38, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'VmyeBRym', '5965933'), + (38, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'VmyeBRym', '5967014'), + (38, 1956, 'attending', '2023-03-06 04:33:13', '2025-12-17 19:47:09', 'VmyeBRym', '5972763'), + (38, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'VmyeBRym', '5972815'), + (38, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'VmyeBRym', '5974016'), + (38, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'VmyeBRym', '5981515'), + (38, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'VmyeBRym', '5993516'), + (38, 1972, 'maybe', '2023-03-19 23:25:19', '2025-12-17 19:46:56', 'VmyeBRym', '5993776'), + (38, 1973, 'attending', '2023-03-17 21:33:17', '2025-12-17 19:46:56', 'VmyeBRym', '5993777'), + (38, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'VmyeBRym', '5998939'), + (38, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'VmyeBRym', '6028191'), + (38, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'VmyeBRym', '6040066'), + (38, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'VmyeBRym', '6042717'), + (38, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'VmyeBRym', '6044838'), + (38, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'VmyeBRym', '6044839'), + (38, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'VmyeBRym', '6045684'), + (38, 1994, 'maybe', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'VmyeBRym', '6050104'), + (38, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'VmyeBRym', '6053195'), + (38, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'VmyeBRym', '6053198'), + (38, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'VmyeBRym', '6056085'), + (38, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'VmyeBRym', '6056916'), + (38, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'VmyeBRym', '6059290'), + (38, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'VmyeBRym', '6060328'), + (38, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'VmyeBRym', '6061037'), + (38, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'VmyeBRym', '6061039'), + (38, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'VmyeBRym', '6067245'), + (38, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'VmyeBRym', '6068094'), + (38, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'VmyeBRym', '6068252'), + (38, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'VmyeBRym', '6068253'), + (38, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'VmyeBRym', '6068254'), + (38, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'VmyeBRym', '6068280'), + (38, 2032, 'not_attending', '2023-05-28 03:49:18', '2025-12-17 19:47:04', 'VmyeBRym', '6068281'), + (38, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'VmyeBRym', '6069093'), + (38, 2039, 'not_attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'VmyeBRym', '6072398'), + (38, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'VmyeBRym', '6072528'), + (38, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', 'VmyeBRym', '6073678'), + (38, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'VmyeBRym', '6079840'), + (38, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'VmyeBRym', '6083398'), + (38, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'VmyeBRym', '6093504'), + (38, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'VmyeBRym', '6097414'), + (38, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'VmyeBRym', '6097442'), + (38, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'VmyeBRym', '6097684'), + (38, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'VmyeBRym', '6098762'), + (38, 2064, 'maybe', '2023-06-24 05:10:28', '2025-12-17 19:46:50', 'VmyeBRym', '6099988'), + (38, 2065, 'attending', '2023-06-17 15:55:04', '2025-12-17 19:46:49', 'VmyeBRym', '6101169'), + (38, 2066, 'maybe', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'VmyeBRym', '6101361'), + (38, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'VmyeBRym', '6101362'), + (38, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'VmyeBRym', '6107314'), + (38, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'VmyeBRym', '6120034'), + (38, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'VmyeBRym', '6136733'), + (38, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'VmyeBRym', '6137989'), + (38, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'VmyeBRym', '6150864'), + (38, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'VmyeBRym', '6155491'), + (38, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'VmyeBRym', '6164417'), + (38, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'VmyeBRym', '6166388'), + (38, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'VmyeBRym', '6176439'), + (38, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'VmyeBRym', '6182410'), + (38, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'VmyeBRym', '6185812'), + (38, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'VmyeBRym', '6187651'), + (38, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'VmyeBRym', '6187963'), + (38, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'VmyeBRym', '6187964'), + (38, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'VmyeBRym', '6187966'), + (38, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'VmyeBRym', '6187967'), + (38, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'VmyeBRym', '6187969'), + (38, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'VmyeBRym', '6334878'), + (38, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:52', 'VmyeBRym', '6337236'), + (38, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'VmyeBRym', '6337970'), + (38, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'VmyeBRym', '6338308'), + (38, 2159, 'attending', '2023-07-20 19:00:45', '2025-12-17 19:46:53', 'VmyeBRym', '6338355'), + (38, 2160, 'not_attending', '2023-07-17 18:46:56', '2025-12-17 19:46:54', 'VmyeBRym', '6338358'), + (38, 2161, 'maybe', '2023-07-15 19:11:38', '2025-12-17 19:46:52', 'VmyeBRym', '6340748'), + (38, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'VmyeBRym', '6340845'), + (38, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'VmyeBRym', '6341710'), + (38, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'VmyeBRym', '6342044'), + (38, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'VmyeBRym', '6342298'), + (38, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'VmyeBRym', '6343294'), + (38, 2175, 'not_attending', '2023-07-22 18:59:02', '2025-12-17 19:46:53', 'VmyeBRym', '6346982'), + (38, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'VmyeBRym', '6347034'), + (38, 2177, 'attending', '2023-08-12 12:44:53', '2025-12-17 19:46:55', 'VmyeBRym', '6347053'), + (38, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'VmyeBRym', '6347056'), + (38, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'VmyeBRym', '6353830'), + (38, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'VmyeBRym', '6353831'), + (38, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'VmyeBRym', '6357867'), + (38, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'VmyeBRym', '6358652'), + (38, 2204, 'attending', '2023-08-14 22:13:46', '2025-12-17 19:46:55', 'VmyeBRym', '6361542'), + (38, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'VmyeBRym', '6361709'), + (38, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'VmyeBRym', '6361710'), + (38, 2210, 'maybe', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'VmyeBRym', '6361711'), + (38, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'VmyeBRym', '6361712'), + (38, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'VmyeBRym', '6361713'), + (38, 2216, 'attending', '2023-08-19 01:46:32', '2025-12-17 19:46:55', 'VmyeBRym', '6364123'), + (38, 2227, 'attending', '2023-08-19 02:04:23', '2025-12-17 19:46:55', 'VmyeBRym', '6370581'), + (38, 2228, 'not_attending', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'VmyeBRym', '6372777'), + (38, 2232, 'attending', '2023-08-26 15:40:49', '2025-12-17 19:46:55', 'VmyeBRym', '6374818'), + (38, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'VmyeBRym', '6382573'), + (38, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'VmyeBRym', '6383149'), + (38, 2239, 'attending', '2023-09-02 20:14:04', '2025-12-17 19:46:56', 'VmyeBRym', '6387592'), + (38, 2240, 'attending', '2023-09-09 03:33:00', '2025-12-17 19:46:56', 'VmyeBRym', '6388603'), + (38, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'VmyeBRym', '6388604'), + (38, 2242, 'maybe', '2023-09-23 20:33:27', '2025-12-17 19:46:45', 'VmyeBRym', '6388606'), + (38, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'VmyeBRym', '6394629'), + (38, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'VmyeBRym', '6394631'), + (38, 2253, 'not_attending', '2023-09-25 02:49:10', '2025-12-17 19:46:45', 'VmyeBRym', '6401811'), + (38, 2255, 'maybe', '2023-09-13 22:37:09', '2025-12-17 19:46:45', 'VmyeBRym', '6403562'), + (38, 2265, 'maybe', '2023-10-01 19:57:14', '2025-12-17 19:46:45', 'VmyeBRym', '6439625'), + (38, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'VmyeBRym', '6440863'), + (38, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'VmyeBRym', '6445440'), + (38, 2273, 'attending', '2023-10-05 23:17:11', '2025-12-17 19:46:45', 'VmyeBRym', '6448282'), + (38, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'VmyeBRym', '6453951'), + (38, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'VmyeBRym', '6461696'), + (38, 2288, 'attending', '2023-10-11 05:12:35', '2025-12-17 19:46:46', 'VmyeBRym', '6462068'), + (38, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'VmyeBRym', '6462129'), + (38, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'VmyeBRym', '6463218'), + (38, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'VmyeBRym', '6472181'), + (38, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', 'VmyeBRym', '6474276'), + (38, 2303, 'maybe', '2023-10-28 06:33:40', '2025-12-17 19:46:47', 'VmyeBRym', '6482691'), + (38, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'VmyeBRym', '6482693'), + (38, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'VmyeBRym', '6484200'), + (38, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'VmyeBRym', '6484680'), + (38, 2310, 'maybe', '2023-11-11 19:47:57', '2025-12-17 19:46:47', 'VmyeBRym', '6487709'), + (38, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'VmyeBRym', '6507741'), + (38, 2322, 'attending', '2023-11-18 19:11:27', '2025-12-17 19:46:48', 'VmyeBRym', '6514659'), + (38, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:48', 'VmyeBRym', '6514660'), + (38, 2324, 'attending', '2023-12-09 07:15:57', '2025-12-17 19:46:49', 'VmyeBRym', '6514662'), + (38, 2325, 'attending', '2023-12-16 20:26:08', '2025-12-17 19:46:36', 'VmyeBRym', '6514663'), + (38, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'VmyeBRym', '6519103'), + (38, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'VmyeBRym', '6535681'), + (38, 2339, 'attending', '2023-11-09 20:10:29', '2025-12-17 19:46:47', 'VmyeBRym', '6539128'), + (38, 2346, 'not_attending', '2023-11-18 22:27:54', '2025-12-17 19:46:48', 'VmyeBRym', '6582418'), + (38, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'VmyeBRym', '6584747'), + (38, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'VmyeBRym', '6587097'), + (38, 2359, 'attending', '2023-11-30 17:20:50', '2025-12-17 19:46:48', 'VmyeBRym', '6596617'), + (38, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'VmyeBRym', '6609022'), + (38, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'VmyeBRym', '6632757'), + (38, 2377, 'attending', '2023-12-29 21:52:24', '2025-12-17 19:46:37', 'VmyeBRym', '6643448'), + (38, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'VmyeBRym', '6644187'), + (38, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'VmyeBRym', '6648951'), + (38, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'VmyeBRym', '6648952'), + (38, 2388, 'maybe', '2024-01-05 16:22:39', '2025-12-17 19:46:37', 'VmyeBRym', '6649244'), + (38, 2395, 'maybe', '2024-01-17 01:12:56', '2025-12-17 19:46:38', 'VmyeBRym', '6654471'), + (38, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'VmyeBRym', '6655401'), + (38, 2399, 'attending', '2024-01-14 00:32:06', '2025-12-17 19:46:37', 'VmyeBRym', '6657583'), + (38, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'VmyeBRym', '6661585'), + (38, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'VmyeBRym', '6661588'), + (38, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'VmyeBRym', '6661589'), + (38, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'VmyeBRym', '6699906'), + (38, 2408, 'attending', '2024-01-27 06:11:03', '2025-12-17 19:46:40', 'VmyeBRym', '6699907'), + (38, 2409, 'attending', '2024-02-03 04:45:32', '2025-12-17 19:46:41', 'VmyeBRym', '6699909'), + (38, 2410, 'attending', '2024-02-08 00:34:41', '2025-12-17 19:46:41', 'VmyeBRym', '6699911'), + (38, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'VmyeBRym', '6699913'), + (38, 2413, 'attending', '2024-02-18 20:52:44', '2025-12-17 19:46:42', 'VmyeBRym', '6700719'), + (38, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'VmyeBRym', '6701109'), + (38, 2417, 'attending', '2024-01-22 02:50:56', '2025-12-17 19:46:40', 'VmyeBRym', '6701905'), + (38, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'VmyeBRym', '6705219'), + (38, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'VmyeBRym', '6710153'), + (38, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'VmyeBRym', '6711552'), + (38, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'VmyeBRym', '6711553'), + (38, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'VmyeBRym', '6722688'), + (38, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'VmyeBRym', '6730620'), + (38, 2440, 'attending', '2024-01-31 07:48:05', '2025-12-17 19:46:41', 'VmyeBRym', '6730642'), + (38, 2450, 'not_attending', '2024-02-11 18:06:32', '2025-12-17 19:46:41', 'VmyeBRym', '6738807'), + (38, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'VmyeBRym', '6740364'), + (38, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'VmyeBRym', '6743829'), + (38, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'VmyeBRym', '7030380'), + (38, 2471, 'attending', '2024-02-18 19:55:16', '2025-12-17 19:46:42', 'VmyeBRym', '7032425'), + (38, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'VmyeBRym', '7033677'), + (38, 2474, 'attending', '2024-02-24 16:11:30', '2025-12-17 19:46:43', 'VmyeBRym', '7035415'), + (38, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'VmyeBRym', '7044715'), + (38, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'VmyeBRym', '7050318'), + (38, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'VmyeBRym', '7050319'), + (38, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'VmyeBRym', '7050322'), + (38, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'VmyeBRym', '7057804'), + (38, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'VmyeBRym', '7059866'), + (38, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'VmyeBRym', '7072824'), + (38, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'VmyeBRym', '7074348'), + (38, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'VmyeBRym', '7074364'), + (38, 2528, 'attending', '2024-08-09 01:40:55', '2025-12-17 19:46:31', 'VmyeBRym', '7074368'), + (38, 2532, 'not_attending', '2024-09-05 21:46:46', '2025-12-17 19:46:32', 'VmyeBRym', '7074383'), + (38, 2535, 'maybe', '2024-03-16 20:06:32', '2025-12-17 19:46:32', 'VmyeBRym', '7076879'), + (38, 2536, 'attending', '2024-03-17 02:14:34', '2025-12-17 19:46:33', 'VmyeBRym', '7077689'), + (38, 2537, 'not_attending', '2024-03-19 04:43:20', '2025-12-17 19:46:33', 'VmyeBRym', '7085484'), + (38, 2538, 'maybe', '2024-03-29 02:48:21', '2025-12-17 19:46:33', 'VmyeBRym', '7085485'), + (38, 2539, 'not_attending', '2024-03-19 04:43:26', '2025-12-17 19:46:33', 'VmyeBRym', '7085486'), + (38, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'VmyeBRym', '7089267'), + (38, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'VmyeBRym', '7098747'), + (38, 2553, 'maybe', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'VmyeBRym', '7113468'), + (38, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'VmyeBRym', '7114856'), + (38, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'VmyeBRym', '7114951'), + (38, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'VmyeBRym', '7114955'), + (38, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'VmyeBRym', '7114956'), + (38, 2558, 'maybe', '2024-04-30 16:28:04', '2025-12-17 19:46:35', 'VmyeBRym', '7114957'), + (38, 2563, 'attending', '2024-04-03 23:00:50', '2025-12-17 19:46:33', 'VmyeBRym', '7134734'), + (38, 2566, 'attending', '2024-04-03 23:00:54', '2025-12-17 19:46:34', 'VmyeBRym', '7140664'), + (38, 2568, 'not_attending', '2024-04-05 18:50:48', '2025-12-17 19:46:33', 'VmyeBRym', '7153615'), + (38, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'VmyeBRym', '7159484'), + (38, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'VmyeBRym', '7178446'), + (38, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'VmyeBRym', '7220467'), + (38, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'VmyeBRym', '7240354'), + (38, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'VmyeBRym', '7251633'), + (38, 2626, 'attending', '2024-05-17 14:08:45', '2025-12-17 19:46:35', 'VmyeBRym', '7264723'), + (38, 2627, 'attending', '2024-05-25 16:31:03', '2025-12-17 19:46:35', 'VmyeBRym', '7264724'), + (38, 2628, 'attending', '2024-05-31 00:56:41', '2025-12-17 19:46:36', 'VmyeBRym', '7264725'), + (38, 2629, 'attending', '2024-06-08 04:11:17', '2025-12-17 19:46:28', 'VmyeBRym', '7264726'), + (38, 2632, 'attending', '2024-05-13 22:59:59', '2025-12-17 19:46:35', 'VmyeBRym', '7269123'), + (38, 2647, 'attending', '2024-06-09 19:36:51', '2025-12-17 19:46:28', 'VmyeBRym', '7282057'), + (38, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'VmyeBRym', '7302674'), + (38, 2678, 'attending', '2024-06-15 06:20:39', '2025-12-17 19:46:28', 'VmyeBRym', '7319489'), + (38, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'VmyeBRym', '7324073'), + (38, 2689, 'maybe', '2024-06-20 14:33:22', '2025-12-17 19:46:29', 'VmyeBRym', '7324074'), + (38, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'VmyeBRym', '7324075'), + (38, 2691, 'attending', '2024-07-20 18:04:27', '2025-12-17 19:46:30', 'VmyeBRym', '7324076'), + (38, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'VmyeBRym', '7324078'), + (38, 2694, 'attending', '2024-08-10 01:34:42', '2025-12-17 19:46:31', 'VmyeBRym', '7324079'), + (38, 2695, 'attending', '2024-08-13 17:45:59', '2025-12-17 19:46:31', 'VmyeBRym', '7324080'), + (38, 2696, 'not_attending', '2024-08-13 17:46:01', '2025-12-17 19:46:32', 'VmyeBRym', '7324081'), + (38, 2697, 'not_attending', '2024-08-31 16:59:23', '2025-12-17 19:46:32', 'VmyeBRym', '7324082'), + (38, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'VmyeBRym', '7331457'), + (38, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'VmyeBRym', '7363643'), + (38, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'VmyeBRym', '7368606'), + (38, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'VmyeBRym', '7397462'), + (38, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'VmyeBRym', '7424275'), + (38, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'VmyeBRym', '7432751'), + (38, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'VmyeBRym', '7432752'), + (38, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'VmyeBRym', '7432753'), + (38, 2827, 'maybe', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'VmyeBRym', '7432754'), + (38, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'VmyeBRym', '7432755'), + (38, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'VmyeBRym', '7432756'), + (38, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'VmyeBRym', '7432758'), + (38, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'VmyeBRym', '7432759'), + (38, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'VmyeBRym', '7433834'), + (38, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'VmyeBRym', '7470197'), + (38, 2870, 'attending', '2024-10-05 21:26:46', '2025-12-17 19:46:26', 'VmyeBRym', '7475068'), + (38, 2874, 'attending', '2024-10-07 21:43:31', '2025-12-17 19:46:26', 'VmyeBRym', '7482239'), + (38, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'VmyeBRym', '7685613'), + (38, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'VmyeBRym', '7688194'), + (38, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'VmyeBRym', '7688196'), + (38, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'VmyeBRym', '7688289'), + (38, 2908, 'not_attending', '2024-11-11 01:14:39', '2025-12-17 19:46:27', 'VmyeBRym', '7689420'), + (38, 2910, 'not_attending', '2024-11-11 01:13:52', '2025-12-17 19:46:27', 'VmyeBRym', '7689867'), + (38, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'VmyeBRym', '7692763'), + (38, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'VmyeBRym', '7697552'), + (38, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'VmyeBRym', '7699878'), + (38, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'VmyeBRym', '7704043'), + (38, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'VmyeBRym', '7712467'), + (38, 2925, 'attending', '2024-12-12 05:09:32', '2025-12-17 19:46:21', 'VmyeBRym', '7713584'), + (38, 2926, 'maybe', '2024-12-04 15:03:42', '2025-12-17 19:46:21', 'VmyeBRym', '7713585'), + (38, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'VmyeBRym', '7713586'), + (38, 2942, 'attending', '2025-02-22 22:39:00', '2025-12-17 19:46:24', 'VmyeBRym', '7725960'), + (38, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'VmyeBRym', '7738518'), + (38, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'VmyeBRym', '7750632'), + (38, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'VmyeBRym', '7750636'), + (38, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'VmyeBRym', '7796540'), + (38, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'VmyeBRym', '7796541'), + (38, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'VmyeBRym', '7796542'), + (38, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'VmyeBRym', '7825913'), + (38, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'VmyeBRym', '7826209'), + (38, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'VmyeBRym', '7834742'), + (38, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'VmyeBRym', '7842108'), + (38, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'VmyeBRym', '7842902'), + (38, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'VmyeBRym', '7842903'), + (38, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'VmyeBRym', '7842904'), + (38, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'VmyeBRym', '7842905'), + (38, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'VmyeBRym', '7842909'), + (38, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'VmyeBRym', '7855719'), + (38, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'VmyeBRym', '7860683'), + (38, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'VmyeBRym', '7860684'), + (38, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'VmyeBRym', '7866095'), + (38, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'VmyeBRym', '7869170'), + (38, 3014, 'attending', '2025-04-05 18:42:47', '2025-12-17 19:46:19', 'VmyeBRym', '7869185'), + (38, 3015, 'attending', '2025-04-26 21:35:04', '2025-12-17 19:46:20', 'VmyeBRym', '7869186'), + (38, 3016, 'attending', '2025-04-17 01:43:32', '2025-12-17 19:46:20', 'VmyeBRym', '7869187'), + (38, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'VmyeBRym', '7869188'), + (38, 3018, 'not_attending', '2025-04-12 18:20:33', '2025-12-17 19:46:20', 'VmyeBRym', '7869189'), + (38, 3019, 'attending', '2025-04-05 18:42:43', '2025-12-17 19:46:20', 'VmyeBRym', '7869190'), + (38, 3021, 'maybe', '2025-04-12 18:20:35', '2025-12-17 19:46:20', 'VmyeBRym', '7869192'), + (38, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'VmyeBRym', '7869194'), + (38, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'VmyeBRym', '7869195'), + (38, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'VmyeBRym', '7869201'), + (38, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'VmyeBRym', '7877465'), + (38, 3046, 'not_attending', '2025-04-12 18:20:31', '2025-12-17 19:46:20', 'VmyeBRym', '7882692'), + (38, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'VmyeBRym', '7888250'), + (38, 3088, 'maybe', '2025-06-10 14:17:58', '2025-12-17 19:46:15', 'VmyeBRym', '7904777'), + (38, 3095, 'attending', '2025-05-03 21:59:48', '2025-12-17 19:46:20', 'VmyeBRym', '8342293'), + (38, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'VmyeBRym', '8349164'), + (38, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'VmyeBRym', '8349545'), + (38, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'VmyeBRym', '8353584'), + (38, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'VmyeBRym', '8368028'), + (38, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'VmyeBRym', '8368029'), + (38, 3133, 'attending', '2025-05-29 15:01:42', '2025-12-17 19:46:14', 'VmyeBRym', '8368030'), + (38, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'VmyeBRym', '8388462'), + (38, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:14', 'VmyeBRym', '8400273'), + (38, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'VmyeBRym', '8400275'), + (38, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'VmyeBRym', '8400276'), + (38, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'VmyeBRym', '8404977'), + (38, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'VmyeBRym', '8430783'), + (38, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'VmyeBRym', '8430784'), + (38, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'VmyeBRym', '8430799'), + (38, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'VmyeBRym', '8430800'), + (38, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'VmyeBRym', '8430801'), + (38, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'VmyeBRym', '8438709'), + (38, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'VmyeBRym', '8457738'), + (38, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'VmyeBRym', '8459566'), + (38, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'VmyeBRym', '8459567'), + (38, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'VmyeBRym', '8459568'), + (38, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'VmyeBRym', '8461032'), + (38, 3212, 'attending', '2025-08-05 00:07:23', '2025-12-17 19:46:17', 'VmyeBRym', '8477787'), + (38, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'VmyeBRym', '8477877'), + (38, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'VmyeBRym', '8485688'), + (38, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'VmyeBRym', '8490587'), + (38, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'VmyeBRym', '8493552'), + (38, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'VmyeBRym', '8493553'), + (38, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'VmyeBRym', '8493554'), + (38, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'VmyeBRym', '8493555'), + (38, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'VmyeBRym', '8493556'), + (38, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'VmyeBRym', '8493557'), + (38, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'VmyeBRym', '8493558'), + (38, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'VmyeBRym', '8493559'), + (38, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'VmyeBRym', '8493560'), + (38, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'VmyeBRym', '8493561'), + (38, 3246, 'not_attending', '2025-09-08 15:05:05', '2025-12-17 19:46:13', 'VmyeBRym', '8493562'), + (38, 3247, 'not_attending', '2025-09-08 15:05:25', '2025-12-17 19:46:14', 'VmyeBRym', '8493563'), + (38, 3248, 'not_attending', '2025-09-08 15:05:17', '2025-12-17 19:46:13', 'VmyeBRym', '8493564'), + (38, 3249, 'not_attending', '2025-09-08 15:05:20', '2025-12-17 19:46:13', 'VmyeBRym', '8493565'), + (38, 3250, 'not_attending', '2025-09-08 15:05:30', '2025-12-17 19:46:14', 'VmyeBRym', '8493566'), + (38, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'VmyeBRym', '8493572'), + (38, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'VmyeBRym', '8540725'), + (38, 3300, 'not_attending', '2025-11-07 18:21:44', '2025-12-17 19:46:14', 'VmyeBRym', '8549145'), + (38, 3301, 'attending', '2025-12-21 07:45:50', '2025-12-21 07:45:54', NULL, NULL), + (38, 3302, 'maybe', '2025-11-15 23:08:55', '2025-12-17 19:46:14', 'VmyeBRym', '8550022'), + (38, 3304, 'maybe', '2025-11-23 00:06:28', '2025-12-17 19:46:14', 'VmyeBRym', '8550024'), + (38, 3305, 'attending', '2025-12-02 22:25:17', '2025-12-17 19:46:11', 'VmyeBRym', '8550025'), + (38, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'VmyeBRym', '8555421'), + (39, 247, 'attending', '2020-12-29 23:52:25', '2025-12-17 19:47:48', 'kdKMreZA', '3149478'), + (39, 518, 'not_attending', '2021-01-07 00:52:33', '2025-12-17 19:47:48', 'kdKMreZA', '3337138'), + (39, 521, 'not_attending', '2021-01-01 17:56:03', '2025-12-17 19:47:48', 'kdKMreZA', '3337454'), + (39, 526, 'attending', '2020-12-30 05:08:34', '2025-12-17 19:47:48', 'kdKMreZA', '3351539'), + (39, 535, 'attending', '2021-01-09 17:36:46', '2025-12-17 19:47:48', 'kdKMreZA', '3384729'), + (39, 536, 'attending', '2021-01-08 20:35:40', '2025-12-17 19:47:48', 'kdKMreZA', '3386848'), + (39, 540, 'not_attending', '2021-01-09 17:35:56', '2025-12-17 19:47:48', 'kdKMreZA', '3389527'), + (39, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdKMreZA', '3396499'), + (39, 548, 'attending', '2021-01-13 18:10:20', '2025-12-17 19:47:48', 'kdKMreZA', '3403650'), + (39, 549, 'not_attending', '2021-01-18 23:46:49', '2025-12-17 19:47:49', 'kdKMreZA', '3406988'), + (39, 551, 'attending', '2021-01-16 15:41:08', '2025-12-17 19:47:49', 'kdKMreZA', '3407219'), + (39, 555, 'not_attending', '2021-01-22 04:28:14', '2025-12-17 19:47:49', 'kdKMreZA', '3416576'), + (39, 558, 'not_attending', '2021-01-22 20:44:51', '2025-12-17 19:47:49', 'kdKMreZA', '3418925'), + (39, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'kdKMreZA', '3426074'), + (39, 568, 'attending', '2021-01-29 22:21:23', '2025-12-17 19:47:50', 'kdKMreZA', '3430267'), + (39, 569, 'attending', '2021-01-26 14:36:29', '2025-12-17 19:47:49', 'kdKMreZA', '3432673'), + (39, 570, 'attending', '2021-02-05 03:25:36', '2025-12-17 19:47:50', 'kdKMreZA', '3435538'), + (39, 571, 'attending', '2021-02-11 23:07:52', '2025-12-17 19:47:50', 'kdKMreZA', '3435539'), + (39, 576, 'attending', '2021-01-30 02:57:39', '2025-12-17 19:47:50', 'kdKMreZA', '3438748'), + (39, 577, 'attending', '2021-01-28 05:31:02', '2025-12-17 19:47:49', 'kdKMreZA', '3439167'), + (39, 578, 'attending', '2021-02-03 14:35:03', '2025-12-17 19:47:50', 'kdKMreZA', '3440043'), + (39, 579, 'attending', '2021-02-06 19:19:57', '2025-12-17 19:47:50', 'kdKMreZA', '3440978'), + (39, 580, 'attending', '2021-01-31 05:19:07', '2025-12-17 19:47:50', 'kdKMreZA', '3444240'), + (39, 581, 'not_attending', '2021-02-01 21:22:58', '2025-12-17 19:47:50', 'kdKMreZA', '3445029'), + (39, 582, 'not_attending', '2021-02-01 14:35:10', '2025-12-17 19:47:50', 'kdKMreZA', '3445769'), + (39, 591, 'attending', '2021-02-05 03:26:24', '2025-12-17 19:47:50', 'kdKMreZA', '3465880'), + (39, 598, 'attending', '2021-02-09 20:26:37', '2025-12-17 19:47:50', 'kdKMreZA', '3468003'), + (39, 599, 'not_attending', '2021-02-16 22:37:29', '2025-12-17 19:47:50', 'kdKMreZA', '3468117'), + (39, 600, 'attending', '2021-02-22 00:29:49', '2025-12-17 19:47:50', 'kdKMreZA', '3468125'), + (39, 602, 'attending', '2021-02-07 17:02:11', '2025-12-17 19:47:50', 'kdKMreZA', '3470303'), + (39, 603, 'attending', '2021-02-20 19:07:24', '2025-12-17 19:47:50', 'kdKMreZA', '3470304'), + (39, 604, 'not_attending', '2021-02-24 18:31:12', '2025-12-17 19:47:50', 'kdKMreZA', '3470305'), + (39, 605, 'attending', '2021-02-14 23:38:20', '2025-12-17 19:47:50', 'kdKMreZA', '3470991'), + (39, 607, 'attending', '2021-02-19 21:11:22', '2025-12-17 19:47:50', 'kdKMreZA', '3471882'), + (39, 612, 'not_attending', '2021-02-18 00:29:34', '2025-12-17 19:47:50', 'kdKMreZA', '3490040'), + (39, 616, 'attending', '2021-02-21 00:46:02', '2025-12-17 19:47:50', 'kdKMreZA', '3493478'), + (39, 618, 'attending', '2021-02-20 20:11:16', '2025-12-17 19:47:50', 'kdKMreZA', '3503991'), + (39, 621, 'attending', '2021-03-05 01:21:11', '2025-12-17 19:47:51', 'kdKMreZA', '3517815'), + (39, 622, 'attending', '2021-03-14 00:24:18', '2025-12-17 19:47:51', 'kdKMreZA', '3517816'), + (39, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdKMreZA', '3523941'), + (39, 631, 'attending', '2021-03-07 23:50:41', '2025-12-17 19:47:51', 'kdKMreZA', '3533850'), + (39, 638, 'not_attending', '2021-04-04 16:39:23', '2025-12-17 19:47:44', 'kdKMreZA', '3536632'), + (39, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKMreZA', '3536656'), + (39, 641, 'attending', '2021-03-29 19:52:45', '2025-12-17 19:47:44', 'kdKMreZA', '3539916'), + (39, 642, 'maybe', '2021-04-08 23:43:19', '2025-12-17 19:47:44', 'kdKMreZA', '3539917'), + (39, 643, 'attending', '2021-04-15 01:47:32', '2025-12-17 19:47:45', 'kdKMreZA', '3539918'), + (39, 644, 'not_attending', '2021-04-23 21:08:23', '2025-12-17 19:47:46', 'kdKMreZA', '3539919'), + (39, 645, 'attending', '2021-05-05 22:34:25', '2025-12-17 19:47:46', 'kdKMreZA', '3539920'), + (39, 646, 'attending', '2021-05-12 01:53:32', '2025-12-17 19:47:46', 'kdKMreZA', '3539921'), + (39, 647, 'attending', '2021-05-18 20:20:09', '2025-12-17 19:47:46', 'kdKMreZA', '3539922'), + (39, 648, 'attending', '2021-05-25 20:20:31', '2025-12-17 19:47:47', 'kdKMreZA', '3539923'), + (39, 649, 'not_attending', '2021-03-18 22:24:51', '2025-12-17 19:47:51', 'kdKMreZA', '3539927'), + (39, 650, 'not_attending', '2021-03-26 20:40:47', '2025-12-17 19:47:44', 'kdKMreZA', '3539928'), + (39, 651, 'not_attending', '2021-03-10 22:36:15', '2025-12-17 19:47:51', 'kdKMreZA', '3541045'), + (39, 685, 'attending', '2021-04-12 20:48:03', '2025-12-17 19:47:44', 'kdKMreZA', '3551564'), + (39, 703, 'maybe', '2021-04-11 16:22:19', '2025-12-17 19:47:44', 'kdKMreZA', '3578388'), + (39, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKMreZA', '3582734'), + (39, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKMreZA', '3583262'), + (39, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKMreZA', '3619523'), + (39, 719, 'maybe', '2021-04-08 23:01:59', '2025-12-17 19:47:44', 'kdKMreZA', '3635405'), + (39, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKMreZA', '3661369'), + (39, 728, 'attending', '2021-04-12 20:54:25', '2025-12-17 19:47:44', 'kdKMreZA', '3668073'), + (39, 729, 'attending', '2021-04-26 18:26:07', '2025-12-17 19:47:46', 'kdKMreZA', '3668075'), + (39, 730, 'not_attending', '2021-05-05 22:34:03', '2025-12-17 19:47:46', 'kdKMreZA', '3668076'), + (39, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKMreZA', '3674262'), + (39, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKMreZA', '3677402'), + (39, 736, 'maybe', '2021-04-08 23:43:10', '2025-12-17 19:47:44', 'kdKMreZA', '3677701'), + (39, 760, 'maybe', '2021-05-14 12:09:37', '2025-12-17 19:47:46', 'kdKMreZA', '3716035'), + (39, 761, 'attending', '2021-05-14 21:19:39', '2025-12-17 19:47:46', 'kdKMreZA', '3716041'), + (39, 764, 'not_attending', '2021-04-23 21:08:11', '2025-12-17 19:47:45', 'kdKMreZA', '3720507'), + (39, 765, 'not_attending', '2021-04-22 20:59:36', '2025-12-17 19:47:45', 'kdKMreZA', '3720508'), + (39, 766, 'maybe', '2021-05-08 20:51:15', '2025-12-17 19:47:46', 'kdKMreZA', '3721383'), + (39, 774, 'not_attending', '2021-04-22 20:59:19', '2025-12-17 19:47:45', 'kdKMreZA', '3730212'), + (39, 777, 'not_attending', '2021-05-01 00:52:47', '2025-12-17 19:47:46', 'kdKMreZA', '3746248'), + (39, 781, 'maybe', '2021-05-03 22:02:13', '2025-12-17 19:47:46', 'kdKMreZA', '3760130'), + (39, 782, 'attending', '2021-05-03 19:27:32', '2025-12-17 19:47:46', 'kdKMreZA', '3761843'), + (39, 785, 'maybe', '2021-05-14 12:10:28', '2025-12-17 19:47:46', 'kdKMreZA', '3779779'), + (39, 789, 'maybe', '2021-05-19 16:34:41', '2025-12-17 19:47:47', 'kdKMreZA', '3785818'), + (39, 790, 'not_attending', '2021-05-07 22:10:28', '2025-12-17 19:47:46', 'kdKMreZA', '3789923'), + (39, 791, 'attending', '2021-05-10 22:51:04', '2025-12-17 19:47:46', 'kdKMreZA', '3792735'), + (39, 792, 'attending', '2021-05-19 16:35:19', '2025-12-17 19:47:46', 'kdKMreZA', '3793156'), + (39, 793, 'attending', '2021-06-02 01:57:07', '2025-12-17 19:47:47', 'kdKMreZA', '3793537'), + (39, 794, 'attending', '2021-05-23 15:31:45', '2025-12-17 19:47:47', 'kdKMreZA', '3793538'), + (39, 795, 'not_attending', '2021-06-07 23:56:53', '2025-12-17 19:47:47', 'kdKMreZA', '3793539'), + (39, 796, 'maybe', '2021-05-17 12:33:30', '2025-12-17 19:47:46', 'kdKMreZA', '3793862'), + (39, 798, 'not_attending', '2021-05-20 21:36:35', '2025-12-17 19:47:46', 'kdKMreZA', '3796262'), + (39, 808, 'maybe', '2021-05-16 02:56:09', '2025-12-17 19:47:46', 'kdKMreZA', '3807358'), + (39, 821, 'maybe', '2021-05-28 10:47:40', '2025-12-17 19:47:47', 'kdKMreZA', '3963965'), + (39, 823, 'attending', '2021-06-13 23:04:50', '2025-12-17 19:47:48', 'kdKMreZA', '3974109'), + (39, 827, 'maybe', '2021-06-05 16:17:55', '2025-12-17 19:47:47', 'kdKMreZA', '3975311'), + (39, 828, 'not_attending', '2021-06-08 23:32:24', '2025-12-17 19:47:47', 'kdKMreZA', '3975312'), + (39, 838, 'not_attending', '2021-06-09 23:14:59', '2025-12-17 19:47:47', 'kdKMreZA', '3994992'), + (39, 841, 'not_attending', '2021-06-15 20:12:19', '2025-12-17 19:47:48', 'kdKMreZA', '4007434'), + (39, 844, 'attending', '2021-06-23 17:42:32', '2025-12-17 19:47:38', 'kdKMreZA', '4014338'), + (39, 850, 'not_attending', '2021-08-25 22:45:31', '2025-12-17 19:47:42', 'kdKMreZA', '4015722'), + (39, 867, 'attending', '2021-06-23 10:30:40', '2025-12-17 19:47:38', 'kdKMreZA', '4021848'), + (39, 869, 'attending', '2021-06-30 21:21:10', '2025-12-17 19:47:38', 'kdKMreZA', '4136744'), + (39, 870, 'attending', '2021-06-30 12:38:50', '2025-12-17 19:47:39', 'kdKMreZA', '4136937'), + (39, 871, 'attending', '2021-07-10 16:12:48', '2025-12-17 19:47:39', 'kdKMreZA', '4136938'), + (39, 872, 'attending', '2021-07-20 09:57:10', '2025-12-17 19:47:40', 'kdKMreZA', '4136947'), + (39, 875, 'attending', '2021-06-26 18:44:56', '2025-12-17 19:47:38', 'kdKMreZA', '4139816'), + (39, 880, 'maybe', '2021-06-19 15:46:12', '2025-12-17 19:47:48', 'kdKMreZA', '4205383'), + (39, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdKMreZA', '4210314'), + (39, 885, 'not_attending', '2021-06-27 22:31:28', '2025-12-17 19:47:38', 'kdKMreZA', '4222370'), + (39, 887, 'attending', '2021-07-10 16:14:50', '2025-12-17 19:47:39', 'kdKMreZA', '4225444'), + (39, 898, 'maybe', '2021-06-30 12:35:32', '2025-12-17 19:47:38', 'kdKMreZA', '4236746'), + (39, 899, 'maybe', '2021-06-30 22:48:17', '2025-12-17 19:47:39', 'kdKMreZA', '4239259'), + (39, 900, 'not_attending', '2021-07-20 09:57:58', '2025-12-17 19:47:40', 'kdKMreZA', '4240316'), + (39, 901, 'attending', '2021-07-31 14:38:15', '2025-12-17 19:47:40', 'kdKMreZA', '4240317'), + (39, 902, 'attending', '2021-08-07 17:47:23', '2025-12-17 19:47:41', 'kdKMreZA', '4240318'), + (39, 903, 'not_attending', '2021-08-09 19:12:09', '2025-12-17 19:47:42', 'kdKMreZA', '4240320'), + (39, 905, 'not_attending', '2021-07-07 10:18:12', '2025-12-17 19:47:39', 'kdKMreZA', '4250163'), + (39, 917, 'not_attending', '2021-07-14 23:17:50', '2025-12-17 19:47:39', 'kdKMreZA', '4274481'), + (39, 919, 'not_attending', '2021-07-17 13:52:47', '2025-12-17 19:47:39', 'kdKMreZA', '4275957'), + (39, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdKMreZA', '4277819'), + (39, 933, 'attending', '2021-07-26 21:51:01', '2025-12-17 19:47:40', 'kdKMreZA', '4301723'), + (39, 934, 'maybe', '2021-08-02 00:16:46', '2025-12-17 19:47:40', 'kdKMreZA', '4302093'), + (39, 935, 'not_attending', '2021-08-11 21:54:33', '2025-12-17 19:47:41', 'kdKMreZA', '4304151'), + (39, 937, 'maybe', '2021-07-26 21:50:43', '2025-12-17 19:47:40', 'kdKMreZA', '4306596'), + (39, 952, 'attending', '2021-08-02 00:16:09', '2025-12-17 19:47:41', 'kdKMreZA', '4318286'), + (39, 955, 'maybe', '2021-08-09 21:46:41', '2025-12-17 19:47:41', 'kdKMreZA', '4331588'), + (39, 961, 'not_attending', '2021-08-13 20:47:27', '2025-12-17 19:47:42', 'kdKMreZA', '4345519'), + (39, 964, 'maybe', '2021-08-21 20:08:26', '2025-12-17 19:47:42', 'kdKMreZA', '4353160'), + (39, 971, 'maybe', '2021-09-08 19:31:53', '2025-12-17 19:47:43', 'kdKMreZA', '4356801'), + (39, 972, 'not_attending', '2021-08-19 19:50:11', '2025-12-17 19:47:42', 'kdKMreZA', '4358025'), + (39, 973, 'not_attending', '2021-08-18 00:38:40', '2025-12-17 19:47:42', 'kdKMreZA', '4366186'), + (39, 974, 'attending', '2021-08-28 22:01:10', '2025-12-17 19:47:42', 'kdKMreZA', '4366187'), + (39, 985, 'not_attending', '2021-08-21 17:35:18', '2025-12-17 19:47:42', 'kdKMreZA', '4391748'), + (39, 986, 'attending', '2021-08-21 20:08:06', '2025-12-17 19:47:42', 'kdKMreZA', '4394209'), + (39, 987, 'attending', '2021-08-30 20:22:24', '2025-12-17 19:47:43', 'kdKMreZA', '4402634'), + (39, 988, 'attending', '2021-08-26 18:15:52', '2025-12-17 19:47:42', 'kdKMreZA', '4402823'), + (39, 989, 'maybe', '2021-09-01 22:12:56', '2025-12-17 19:47:43', 'kdKMreZA', '4414282'), + (39, 990, 'attending', '2021-08-30 02:40:42', '2025-12-17 19:47:43', 'kdKMreZA', '4420735'), + (39, 991, 'not_attending', '2021-09-01 15:19:48', '2025-12-17 19:47:43', 'kdKMreZA', '4420738'), + (39, 992, 'attending', '2021-09-18 13:39:18', '2025-12-17 19:47:33', 'kdKMreZA', '4420739'), + (39, 993, 'attending', '2021-09-16 22:34:50', '2025-12-17 19:47:34', 'kdKMreZA', '4420741'), + (39, 994, 'attending', '2021-10-02 21:26:26', '2025-12-17 19:47:34', 'kdKMreZA', '4420742'), + (39, 995, 'attending', '2021-10-04 19:43:29', '2025-12-17 19:47:34', 'kdKMreZA', '4420744'), + (39, 996, 'attending', '2021-10-15 22:38:16', '2025-12-17 19:47:35', 'kdKMreZA', '4420747'), + (39, 997, 'attending', '2021-10-23 17:07:06', '2025-12-17 19:47:35', 'kdKMreZA', '4420748'), + (39, 998, 'attending', '2021-10-30 21:16:17', '2025-12-17 19:47:36', 'kdKMreZA', '4420749'), + (39, 1016, 'not_attending', '2021-09-09 22:28:08', '2025-12-17 19:47:43', 'kdKMreZA', '4441271'), + (39, 1019, 'not_attending', '2021-09-16 22:32:41', '2025-12-17 19:47:43', 'kdKMreZA', '4450515'), + (39, 1021, 'attending', '2021-09-20 22:32:46', '2025-12-17 19:47:34', 'kdKMreZA', '4451803'), + (39, 1022, 'attending', '2021-09-12 23:32:10', '2025-12-17 19:47:43', 'kdKMreZA', '4458628'), + (39, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKMreZA', '4461883'), + (39, 1036, 'attending', '2021-09-20 20:29:17', '2025-12-17 19:47:34', 'kdKMreZA', '4493166'), + (39, 1040, 'maybe', '2021-12-11 22:25:44', '2025-12-17 19:47:38', 'kdKMreZA', '4496605'), + (39, 1041, 'attending', '2021-12-04 23:42:17', '2025-12-17 19:47:37', 'kdKMreZA', '4496606'), + (39, 1049, 'maybe', '2022-01-22 20:40:36', '2025-12-17 19:47:32', 'kdKMreZA', '4496614'), + (39, 1050, 'attending', '2022-01-29 04:31:38', '2025-12-17 19:47:32', 'kdKMreZA', '4496615'), + (39, 1051, 'attending', '2022-02-05 06:10:23', '2025-12-17 19:47:32', 'kdKMreZA', '4496616'), + (39, 1052, 'attending', '2022-01-11 16:19:06', '2025-12-17 19:47:31', 'kdKMreZA', '4496617'), + (39, 1053, 'not_attending', '2022-02-14 05:09:56', '2025-12-17 19:47:32', 'kdKMreZA', '4496618'), + (39, 1054, 'attending', '2022-03-17 11:57:18', '2025-12-17 19:47:25', 'kdKMreZA', '4496619'), + (39, 1055, 'attending', '2021-12-18 18:20:09', '2025-12-17 19:47:31', 'kdKMreZA', '4496621'), + (39, 1056, 'attending', '2022-01-04 20:58:35', '2025-12-17 19:47:31', 'kdKMreZA', '4496622'), + (39, 1058, 'maybe', '2022-02-26 16:21:26', '2025-12-17 19:47:33', 'kdKMreZA', '4496625'), + (39, 1059, 'not_attending', '2022-03-10 14:46:25', '2025-12-17 19:47:33', 'kdKMreZA', '4496626'), + (39, 1060, 'not_attending', '2022-03-22 11:35:30', '2025-12-17 19:47:25', 'kdKMreZA', '4496627'), + (39, 1061, 'not_attending', '2022-02-06 06:34:37', '2025-12-17 19:47:32', 'kdKMreZA', '4496628'), + (39, 1062, 'not_attending', '2022-02-28 22:10:29', '2025-12-17 19:47:33', 'kdKMreZA', '4496629'), + (39, 1066, 'attending', '2021-09-25 19:02:21', '2025-12-17 19:47:34', 'kdKMreZA', '4506039'), + (39, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKMreZA', '4508342'), + (39, 1068, 'maybe', '2021-09-27 10:59:52', '2025-12-17 19:47:34', 'kdKMreZA', '4511471'), + (39, 1071, 'not_attending', '2021-10-04 22:53:59', '2025-12-17 19:47:34', 'kdKMreZA', '4516078'), + (39, 1072, 'attending', '2021-10-06 13:58:52', '2025-12-17 19:47:34', 'kdKMreZA', '4516287'), + (39, 1074, 'attending', '2021-09-29 02:06:32', '2025-12-17 19:47:34', 'kdKMreZA', '4528953'), + (39, 1077, 'attending', '2021-10-13 22:59:40', '2025-12-17 19:47:34', 'kdKMreZA', '4540903'), + (39, 1078, 'not_attending', '2021-10-07 21:20:22', '2025-12-17 19:47:34', 'kdKMreZA', '4541281'), + (39, 1079, 'attending', '2021-10-20 01:00:54', '2025-12-17 19:47:35', 'kdKMreZA', '4563823'), + (39, 1082, 'attending', '2021-10-12 15:19:56', '2025-12-17 19:47:35', 'kdKMreZA', '4566762'), + (39, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKMreZA', '4568602'), + (39, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKMreZA', '4572153'), + (39, 1089, 'not_attending', '2021-10-18 22:49:29', '2025-12-17 19:47:35', 'kdKMreZA', '4574712'), + (39, 1090, 'maybe', '2021-10-16 16:39:45', '2025-12-17 19:47:35', 'kdKMreZA', '4574713'), + (39, 1092, 'not_attending', '2021-10-21 22:54:10', '2025-12-17 19:47:35', 'kdKMreZA', '4582837'), + (39, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'kdKMreZA', '4585962'), + (39, 1094, 'attending', '2021-10-31 22:31:18', '2025-12-17 19:47:36', 'kdKMreZA', '4587337'), + (39, 1095, 'attending', '2021-10-27 22:28:39', '2025-12-17 19:47:35', 'kdKMreZA', '4596356'), + (39, 1096, 'maybe', '2021-10-29 19:40:19', '2025-12-17 19:47:36', 'kdKMreZA', '4596453'), + (39, 1097, 'attending', '2021-11-03 21:38:21', '2025-12-17 19:47:36', 'kdKMreZA', '4598860'), + (39, 1098, 'attending', '2021-11-10 16:49:11', '2025-12-17 19:47:36', 'kdKMreZA', '4598861'), + (39, 1099, 'not_attending', '2021-11-03 21:39:27', '2025-12-17 19:47:36', 'kdKMreZA', '4602797'), + (39, 1108, 'attending', '2021-11-16 14:43:10', '2025-12-17 19:47:37', 'kdKMreZA', '4632276'), + (39, 1114, 'attending', '2021-11-12 00:23:40', '2025-12-17 19:47:36', 'kdKMreZA', '4637896'), + (39, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKMreZA', '4642994'), + (39, 1117, 'attending', '2021-12-09 00:45:56', '2025-12-17 19:47:37', 'kdKMreZA', '4642995'), + (39, 1118, 'attending', '2021-12-08 20:32:43', '2025-12-17 19:47:38', 'kdKMreZA', '4642996'), + (39, 1119, 'not_attending', '2021-12-22 17:02:49', '2025-12-17 19:47:31', 'kdKMreZA', '4642997'), + (39, 1122, 'attending', '2021-12-02 20:28:32', '2025-12-17 19:47:37', 'kdKMreZA', '4644023'), + (39, 1123, 'attending', '2021-12-10 23:24:15', '2025-12-17 19:47:38', 'kdKMreZA', '4644024'), + (39, 1124, 'maybe', '2021-12-13 17:37:23', '2025-12-17 19:47:38', 'kdKMreZA', '4644025'), + (39, 1126, 'attending', '2021-12-10 14:04:47', '2025-12-17 19:47:38', 'kdKMreZA', '4645687'), + (39, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKMreZA', '4645698'), + (39, 1128, 'attending', '2021-11-20 18:28:22', '2025-12-17 19:47:37', 'kdKMreZA', '4645704'), + (39, 1129, 'attending', '2021-11-26 19:23:01', '2025-12-17 19:47:37', 'kdKMreZA', '4645705'), + (39, 1130, 'attending', '2021-12-04 23:42:25', '2025-12-17 19:47:37', 'kdKMreZA', '4658824'), + (39, 1131, 'attending', '2021-12-18 18:20:23', '2025-12-17 19:47:31', 'kdKMreZA', '4658825'), + (39, 1132, 'attending', '2021-11-22 03:07:19', '2025-12-17 19:47:37', 'kdKMreZA', '4660657'), + (39, 1134, 'attending', '2021-11-24 14:30:06', '2025-12-17 19:47:37', 'kdKMreZA', '4668385'), + (39, 1135, 'attending', '2021-11-26 19:22:47', '2025-12-17 19:47:37', 'kdKMreZA', '4670469'), + (39, 1137, 'maybe', '2021-11-28 20:56:33', '2025-12-17 19:47:37', 'kdKMreZA', '4674797'), + (39, 1138, 'maybe', '2021-11-29 19:05:20', '2025-12-17 19:47:37', 'kdKMreZA', '4675407'), + (39, 1139, 'attending', '2021-12-02 23:51:59', '2025-12-17 19:47:37', 'kdKMreZA', '4675604'), + (39, 1140, 'not_attending', '2021-12-04 02:00:51', '2025-12-17 19:47:37', 'kdKMreZA', '4679701'), + (39, 1143, 'attending', '2021-12-01 21:57:15', '2025-12-17 19:47:37', 'kdKMreZA', '4683667'), + (39, 1144, 'not_attending', '2021-12-08 00:51:43', '2025-12-17 19:47:37', 'kdKMreZA', '4687090'), + (39, 1145, 'attending', '2021-12-09 23:15:06', '2025-12-17 19:47:38', 'kdKMreZA', '4691157'), + (39, 1146, 'not_attending', '2021-12-10 23:24:04', '2025-12-17 19:47:38', 'kdKMreZA', '4692841'), + (39, 1148, 'attending', '2021-12-17 23:55:38', '2025-12-17 19:47:31', 'kdKMreZA', '4692843'), + (39, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKMreZA', '4694407'), + (39, 1151, 'attending', '2022-01-04 20:38:47', '2025-12-17 19:47:31', 'kdKMreZA', '4708704'), + (39, 1152, 'attending', '2022-01-08 20:54:00', '2025-12-17 19:47:31', 'kdKMreZA', '4708705'), + (39, 1153, 'attending', '2022-01-13 04:40:46', '2025-12-17 19:47:32', 'kdKMreZA', '4708707'), + (39, 1154, 'attending', '2022-01-26 16:16:42', '2025-12-17 19:47:32', 'kdKMreZA', '4708708'), + (39, 1155, 'maybe', '2021-12-20 19:18:53', '2025-12-17 19:47:31', 'kdKMreZA', '4715119'), + (39, 1156, 'attending', '2021-12-18 21:47:43', '2025-12-17 19:47:31', 'kdKMreZA', '4715207'), + (39, 1163, 'attending', '2021-12-27 22:41:19', '2025-12-17 19:47:31', 'kdKMreZA', '4724206'), + (39, 1164, 'attending', '2022-01-03 17:12:33', '2025-12-17 19:47:31', 'kdKMreZA', '4724208'), + (39, 1165, 'attending', '2022-01-03 17:12:49', '2025-12-17 19:47:31', 'kdKMreZA', '4724210'), + (39, 1173, 'attending', '2022-01-04 20:58:40', '2025-12-17 19:47:31', 'kdKMreZA', '4736495'), + (39, 1174, 'attending', '2022-01-11 16:19:13', '2025-12-17 19:47:31', 'kdKMreZA', '4736496'), + (39, 1175, 'attending', '2022-01-22 23:47:57', '2025-12-17 19:47:32', 'kdKMreZA', '4736497'), + (39, 1176, 'attending', '2022-02-05 06:10:33', '2025-12-17 19:47:32', 'kdKMreZA', '4736498'), + (39, 1177, 'not_attending', '2022-02-06 06:34:41', '2025-12-17 19:47:32', 'kdKMreZA', '4736499'), + (39, 1178, 'attending', '2022-01-29 04:31:44', '2025-12-17 19:47:32', 'kdKMreZA', '4736500'), + (39, 1179, 'not_attending', '2022-02-14 05:10:00', '2025-12-17 19:47:32', 'kdKMreZA', '4736501'), + (39, 1180, 'maybe', '2022-02-26 16:21:19', '2025-12-17 19:47:33', 'kdKMreZA', '4736502'), + (39, 1181, 'not_attending', '2022-02-28 22:10:34', '2025-12-17 19:47:33', 'kdKMreZA', '4736503'), + (39, 1182, 'not_attending', '2022-03-10 14:46:18', '2025-12-17 19:47:33', 'kdKMreZA', '4736504'), + (39, 1183, 'attending', '2022-01-11 23:38:30', '2025-12-17 19:47:31', 'kdKMreZA', '4742171'), + (39, 1184, 'attending', '2022-01-15 00:24:08', '2025-12-17 19:47:31', 'kdKMreZA', '4742350'), + (39, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKMreZA', '4746789'), + (39, 1188, 'maybe', '2022-01-11 16:20:08', '2025-12-17 19:47:32', 'kdKMreZA', '4753929'), + (39, 1200, 'maybe', '2022-01-18 19:09:17', '2025-12-17 19:47:32', 'kdKMreZA', '4766830'), + (39, 1201, 'not_attending', '2022-01-21 00:08:31', '2025-12-17 19:47:32', 'kdKMreZA', '4766841'), + (39, 1202, 'not_attending', '2022-01-26 20:25:16', '2025-12-17 19:47:32', 'kdKMreZA', '4769423'), + (39, 1211, 'maybe', '2022-01-26 20:25:40', '2025-12-17 19:47:32', 'kdKMreZA', '4780754'), + (39, 1212, 'attending', '2022-01-31 23:53:40', '2025-12-17 19:47:32', 'kdKMreZA', '4780759'), + (39, 1213, 'attending', '2022-02-07 00:59:50', '2025-12-17 19:47:32', 'kdKMreZA', '4780760'), + (39, 1214, 'not_attending', '2022-02-17 23:47:55', '2025-12-17 19:47:32', 'kdKMreZA', '4780761'), + (39, 1219, 'attending', '2022-01-31 15:09:32', '2025-12-17 19:47:32', 'kdKMreZA', '4788466'), + (39, 1222, 'maybe', '2022-02-15 14:33:22', '2025-12-17 19:47:32', 'kdKMreZA', '5015628'), + (39, 1224, 'not_attending', '2022-01-31 23:55:45', '2025-12-17 19:47:32', 'kdKMreZA', '5016682'), + (39, 1228, 'attending', '2022-02-11 16:51:33', '2025-12-17 19:47:32', 'kdKMreZA', '5028238'), + (39, 1229, 'maybe', '2022-02-14 05:09:41', '2025-12-17 19:47:32', 'kdKMreZA', '5034963'), + (39, 1232, 'maybe', '2022-02-09 03:49:00', '2025-12-17 19:47:32', 'kdKMreZA', '5038850'), + (39, 1234, 'maybe', '2022-02-14 05:08:46', '2025-12-17 19:47:32', 'kdKMreZA', '5042197'), + (39, 1236, 'maybe', '2022-02-16 03:50:35', '2025-12-17 19:47:32', 'kdKMreZA', '5045826'), + (39, 1238, 'maybe', '2022-02-23 19:59:55', '2025-12-17 19:47:32', 'kdKMreZA', '5052236'), + (39, 1239, 'not_attending', '2022-03-03 00:49:42', '2025-12-17 19:47:33', 'kdKMreZA', '5052238'), + (39, 1240, 'maybe', '2022-03-16 00:53:50', '2025-12-17 19:47:33', 'kdKMreZA', '5052239'), + (39, 1242, 'attending', '2022-03-30 22:25:14', '2025-12-17 19:47:25', 'kdKMreZA', '5052241'), + (39, 1246, 'maybe', '2022-02-28 22:10:22', '2025-12-17 19:47:33', 'kdKMreZA', '5064727'), + (39, 1257, 'attending', '2022-02-28 21:15:12', '2025-12-17 19:47:33', 'kdKMreZA', '5129274'), + (39, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKMreZA', '5132533'), + (39, 1266, 'attending', '2022-03-12 21:52:57', '2025-12-17 19:47:33', 'kdKMreZA', '5166407'), + (39, 1267, 'maybe', '2022-03-17 11:57:00', '2025-12-17 19:47:25', 'kdKMreZA', '5169578'), + (39, 1268, 'attending', '2022-03-12 21:35:45', '2025-12-17 19:47:33', 'kdKMreZA', '5176296'), + (39, 1272, 'attending', '2022-03-17 11:57:46', '2025-12-17 19:47:25', 'kdKMreZA', '5186582'), + (39, 1273, 'not_attending', '2022-03-22 11:35:25', '2025-12-17 19:47:25', 'kdKMreZA', '5186583'), + (39, 1274, 'attending', '2022-03-28 17:40:50', '2025-12-17 19:47:26', 'kdKMreZA', '5186585'), + (39, 1275, 'attending', '2022-03-28 17:40:45', '2025-12-17 19:47:26', 'kdKMreZA', '5186587'), + (39, 1276, 'maybe', '2022-03-26 14:07:05', '2025-12-17 19:47:25', 'kdKMreZA', '5186820'), + (39, 1281, 'attending', '2022-04-09 19:04:39', '2025-12-17 19:47:27', 'kdKMreZA', '5190437'), + (39, 1284, 'maybe', '2022-04-16 15:05:21', '2025-12-17 19:47:27', 'kdKMreZA', '5195095'), + (39, 1285, 'not_attending', '2022-03-22 11:35:19', '2025-12-17 19:47:25', 'kdKMreZA', '5196763'), + (39, 1288, 'maybe', '2022-03-28 17:40:24', '2025-12-17 19:47:25', 'kdKMreZA', '5199460'), + (39, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKMreZA', '5215989'), + (39, 1304, 'maybe', '2022-04-06 16:17:30', '2025-12-17 19:47:26', 'kdKMreZA', '5223468'), + (39, 1305, 'maybe', '2022-04-10 20:41:45', '2025-12-17 19:47:27', 'kdKMreZA', '5223673'), + (39, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdKMreZA', '5223686'), + (39, 1308, 'not_attending', '2022-04-13 21:53:48', '2025-12-17 19:47:27', 'kdKMreZA', '5226703'), + (39, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'kdKMreZA', '5227432'), + (39, 1313, 'attending', '2022-04-11 01:53:42', '2025-12-17 19:47:27', 'kdKMreZA', '5231461'), + (39, 1314, 'not_attending', '2022-04-11 21:04:14', '2025-12-17 19:47:27', 'kdKMreZA', '5233137'), + (39, 1315, 'not_attending', '2022-04-22 22:36:34', '2025-12-17 19:47:27', 'kdKMreZA', '5237522'), + (39, 1317, 'attending', '2022-04-11 21:04:18', '2025-12-17 19:47:27', 'kdKMreZA', '5237543'), + (39, 1330, 'maybe', '2022-04-18 11:49:16', '2025-12-17 19:47:27', 'kdKMreZA', '5242155'), + (39, 1337, 'not_attending', '2022-04-20 15:47:31', '2025-12-17 19:47:27', 'kdKMreZA', '5245036'), + (39, 1344, 'not_attending', '2022-04-29 23:39:20', '2025-12-17 19:47:28', 'kdKMreZA', '5247465'), + (39, 1345, 'attending', '2022-04-22 18:43:32', '2025-12-17 19:47:27', 'kdKMreZA', '5247466'), + (39, 1346, 'attending', '2022-04-22 18:42:51', '2025-12-17 19:47:27', 'kdKMreZA', '5247467'), + (39, 1353, 'attending', '2022-04-24 15:58:09', '2025-12-17 19:47:27', 'kdKMreZA', '5251777'), + (39, 1355, 'not_attending', '2022-04-29 14:27:22', '2025-12-17 19:47:28', 'kdKMreZA', '5252573'), + (39, 1358, 'attending', '2022-04-24 13:24:32', '2025-12-17 19:47:27', 'kdKMreZA', '5258022'), + (39, 1361, 'attending', '2022-04-25 14:42:13', '2025-12-17 19:47:28', 'kdKMreZA', '5260491'), + (39, 1362, 'not_attending', '2022-04-29 23:39:25', '2025-12-17 19:47:28', 'kdKMreZA', '5260800'), + (39, 1368, 'attending', '2022-05-06 22:53:32', '2025-12-17 19:47:28', 'kdKMreZA', '5262783'), + (39, 1371, 'not_attending', '2022-04-27 21:02:45', '2025-12-17 19:47:27', 'kdKMreZA', '5263784'), + (39, 1372, 'maybe', '2022-05-01 19:10:23', '2025-12-17 19:47:28', 'kdKMreZA', '5264352'), + (39, 1374, 'not_attending', '2022-05-06 23:02:42', '2025-12-17 19:47:28', 'kdKMreZA', '5269930'), + (39, 1378, 'attending', '2022-05-10 01:36:58', '2025-12-17 19:47:28', 'kdKMreZA', '5271448'), + (39, 1379, 'attending', '2022-05-10 01:36:27', '2025-12-17 19:47:29', 'kdKMreZA', '5271449'), + (39, 1380, 'attending', '2022-05-28 20:18:58', '2025-12-17 19:47:30', 'kdKMreZA', '5271450'), + (39, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'kdKMreZA', '5276469'), + (39, 1385, 'not_attending', '2022-05-11 12:33:28', '2025-12-17 19:47:28', 'kdKMreZA', '5277822'), + (39, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdKMreZA', '5278159'), + (39, 1388, 'attending', '2022-05-06 18:49:20', '2025-12-17 19:47:28', 'kdKMreZA', '5278201'), + (39, 1396, 'attending', '2022-05-13 18:00:25', '2025-12-17 19:47:28', 'kdKMreZA', '5281103'), + (39, 1397, 'attending', '2022-05-18 01:00:47', '2025-12-17 19:47:29', 'kdKMreZA', '5281104'), + (39, 1400, 'attending', '2022-05-10 01:51:40', '2025-12-17 19:47:29', 'kdKMreZA', '5284864'), + (39, 1401, 'not_attending', '2022-05-16 18:45:52', '2025-12-17 19:47:29', 'kdKMreZA', '5286295'), + (39, 1407, 'attending', '2022-06-04 19:18:03', '2025-12-17 19:47:30', 'kdKMreZA', '5363695'), + (39, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdKMreZA', '5365960'), + (39, 1409, 'attending', '2022-05-22 02:40:20', '2025-12-17 19:47:30', 'kdKMreZA', '5367032'), + (39, 1415, 'maybe', '2022-05-31 10:21:18', '2025-12-17 19:47:30', 'kdKMreZA', '5368973'), + (39, 1423, 'not_attending', '2022-06-15 22:10:16', '2025-12-17 19:47:17', 'kdKMreZA', '5375727'), + (39, 1427, 'not_attending', '2022-05-24 21:32:48', '2025-12-17 19:47:30', 'kdKMreZA', '5376074'), + (39, 1428, 'not_attending', '2022-06-06 14:56:31', '2025-12-17 19:47:30', 'kdKMreZA', '5378247'), + (39, 1431, 'not_attending', '2022-06-11 14:22:07', '2025-12-17 19:47:31', 'kdKMreZA', '5389605'), + (39, 1438, 'maybe', '2022-06-01 19:55:25', '2025-12-17 19:47:30', 'kdKMreZA', '5395032'), + (39, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdKMreZA', '5397265'), + (39, 1444, 'not_attending', '2022-06-11 14:22:14', '2025-12-17 19:47:30', 'kdKMreZA', '5397614'), + (39, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'kdKMreZA', '5403967'), + (39, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdKMreZA', '5404786'), + (39, 1460, 'maybe', '2022-06-13 10:29:25', '2025-12-17 19:47:31', 'kdKMreZA', '5404817'), + (39, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdKMreZA', '5405203'), + (39, 1477, 'attending', '2022-06-21 22:58:53', '2025-12-17 19:47:17', 'kdKMreZA', '5408766'), + (39, 1478, 'attending', '2022-06-24 18:38:18', '2025-12-17 19:47:17', 'kdKMreZA', '5408794'), + (39, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'kdKMreZA', '5411699'), + (39, 1482, 'not_attending', '2022-06-24 18:37:48', '2025-12-17 19:47:19', 'kdKMreZA', '5412550'), + (39, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdKMreZA', '5415046'), + (39, 1493, 'not_attending', '2022-06-25 18:21:33', '2025-12-17 19:47:19', 'kdKMreZA', '5420218'), + (39, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdKMreZA', '5422086'), + (39, 1498, 'attending', '2022-07-01 15:39:21', '2025-12-17 19:47:19', 'kdKMreZA', '5422406'), + (39, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdKMreZA', '5424565'), + (39, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdKMreZA', '5426882'), + (39, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'kdKMreZA', '5427083'), + (39, 1508, 'maybe', '2022-07-12 18:48:08', '2025-12-17 19:47:19', 'kdKMreZA', '5433453'), + (39, 1511, 'not_attending', '2022-07-09 20:10:55', '2025-12-17 19:47:19', 'kdKMreZA', '5437733'), + (39, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdKMreZA', '5441125'), + (39, 1514, 'maybe', '2022-07-22 18:01:25', '2025-12-17 19:47:20', 'kdKMreZA', '5441126'), + (39, 1515, 'attending', '2022-08-02 01:31:30', '2025-12-17 19:47:21', 'kdKMreZA', '5441128'), + (39, 1516, 'not_attending', '2022-08-19 19:31:31', '2025-12-17 19:47:23', 'kdKMreZA', '5441129'), + (39, 1517, 'attending', '2022-08-26 20:52:37', '2025-12-17 19:47:23', 'kdKMreZA', '5441130'), + (39, 1518, 'maybe', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdKMreZA', '5441131'), + (39, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'kdKMreZA', '5441132'), + (39, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'kdKMreZA', '5446643'), + (39, 1531, 'attending', '2022-07-16 18:46:05', '2025-12-17 19:47:19', 'kdKMreZA', '5448756'), + (39, 1532, 'maybe', '2022-07-23 17:25:55', '2025-12-17 19:47:20', 'kdKMreZA', '5448757'), + (39, 1533, 'not_attending', '2022-07-29 09:23:25', '2025-12-17 19:47:21', 'kdKMreZA', '5448758'), + (39, 1534, 'attending', '2022-08-02 01:31:26', '2025-12-17 19:47:21', 'kdKMreZA', '5448759'), + (39, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdKMreZA', '5453325'), + (39, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdKMreZA', '5454516'), + (39, 1544, 'attending', '2022-09-17 12:05:39', '2025-12-17 19:47:11', 'kdKMreZA', '5454517'), + (39, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdKMreZA', '5454605'), + (39, 1547, 'maybe', '2022-07-26 19:21:33', '2025-12-17 19:47:20', 'kdKMreZA', '5454608'), + (39, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdKMreZA', '5455037'), + (39, 1552, 'attending', '2022-07-19 22:39:15', '2025-12-17 19:47:20', 'kdKMreZA', '5455149'), + (39, 1559, 'maybe', '2022-09-28 16:59:16', '2025-12-17 19:47:11', 'kdKMreZA', '5458731'), + (39, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdKMreZA', '5461278'), + (39, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdKMreZA', '5469480'), + (39, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'kdKMreZA', '5471073'), + (39, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdKMreZA', '5474663'), + (39, 1567, 'attending', '2022-07-31 16:47:23', '2025-12-17 19:47:21', 'kdKMreZA', '5477629'), + (39, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdKMreZA', '5482022'), + (39, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'kdKMreZA', '5482793'), + (39, 1580, 'maybe', '2022-08-08 10:58:18', '2025-12-17 19:47:22', 'kdKMreZA', '5488912'), + (39, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdKMreZA', '5492192'), + (39, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdKMreZA', '5493139'), + (39, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdKMreZA', '5493200'), + (39, 1591, 'attending', '2022-08-08 23:18:45', '2025-12-17 19:47:22', 'kdKMreZA', '5493764'), + (39, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdKMreZA', '5502188'), + (39, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdKMreZA', '5505059'), + (39, 1609, 'maybe', '2022-08-29 14:09:07', '2025-12-17 19:47:23', 'kdKMreZA', '5506590'), + (39, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdKMreZA', '5509055'), + (39, 1618, 'attending', '2022-08-28 20:43:08', '2025-12-17 19:47:23', 'kdKMreZA', '5512005'), + (39, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdKMreZA', '5512862'), + (39, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdKMreZA', '5513985'), + (39, 1626, 'not_attending', '2022-08-26 00:34:27', '2025-12-17 19:47:11', 'kdKMreZA', '5519981'), + (39, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdKMreZA', '5522550'), + (39, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdKMreZA', '5534683'), + (39, 1631, 'attending', '2022-08-27 15:13:24', '2025-12-17 19:47:23', 'kdKMreZA', '5534684'), + (39, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdKMreZA', '5537735'), + (39, 1636, 'attending', '2022-09-04 23:33:36', '2025-12-17 19:47:24', 'kdKMreZA', '5538454'), + (39, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdKMreZA', '5540859'), + (39, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdKMreZA', '5546619'), + (39, 1648, 'maybe', '2022-09-09 17:57:03', '2025-12-17 19:47:24', 'kdKMreZA', '5548974'), + (39, 1649, 'maybe', '2022-09-03 17:43:05', '2025-12-17 19:47:24', 'kdKMreZA', '5549346'), + (39, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'kdKMreZA', '5555245'), + (39, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdKMreZA', '5557747'), + (39, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdKMreZA', '5560255'), + (39, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdKMreZA', '5562906'), + (39, 1666, 'not_attending', '2022-09-27 22:40:51', '2025-12-17 19:47:11', 'kdKMreZA', '5563208'), + (39, 1667, 'attending', '2022-09-24 18:30:09', '2025-12-17 19:47:11', 'kdKMreZA', '5563221'), + (39, 1668, 'not_attending', '2022-10-01 15:28:23', '2025-12-17 19:47:12', 'kdKMreZA', '5563222'), + (39, 1672, 'attending', '2022-09-17 12:05:44', '2025-12-17 19:47:11', 'kdKMreZA', '5586237'), + (39, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdKMreZA', '5600604'), + (39, 1679, 'not_attending', '2022-10-04 22:13:16', '2025-12-17 19:47:12', 'kdKMreZA', '5601099'), + (39, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdKMreZA', '5605544'), + (39, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'kdKMreZA', '5606737'), + (39, 1704, 'attending', '2022-10-07 01:29:28', '2025-12-17 19:47:12', 'kdKMreZA', '5610508'), + (39, 1708, 'attending', '2022-10-05 21:56:17', '2025-12-17 19:47:12', 'kdKMreZA', '5617648'), + (39, 1719, 'attending', '2022-10-08 16:30:24', '2025-12-17 19:47:12', 'kdKMreZA', '5630958'), + (39, 1720, 'not_attending', '2022-10-14 12:42:14', '2025-12-17 19:47:12', 'kdKMreZA', '5630959'), + (39, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdKMreZA', '5630960'), + (39, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdKMreZA', '5630961'), + (39, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdKMreZA', '5630962'), + (39, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdKMreZA', '5630966'), + (39, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdKMreZA', '5630967'), + (39, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdKMreZA', '5630968'), + (39, 1727, 'not_attending', '2022-11-28 22:38:23', '2025-12-17 19:47:16', 'kdKMreZA', '5630969'), + (39, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdKMreZA', '5635406'), + (39, 1735, 'attending', '2022-10-08 17:30:06', '2025-12-17 19:47:12', 'kdKMreZA', '5637484'), + (39, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdKMreZA', '5638765'), + (39, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdKMreZA', '5640097'), + (39, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdKMreZA', '5640843'), + (39, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdKMreZA', '5641521'), + (39, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdKMreZA', '5642818'), + (39, 1747, 'maybe', '2022-10-25 12:26:42', '2025-12-17 19:47:14', 'kdKMreZA', '5648009'), + (39, 1750, 'not_attending', '2022-11-04 02:29:37', '2025-12-17 19:47:15', 'kdKMreZA', '5652365'), + (39, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdKMreZA', '5652395'), + (39, 1759, 'attending', '2022-10-22 17:06:52', '2025-12-17 19:47:13', 'kdKMreZA', '5669097'), + (39, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdKMreZA', '5670445'), + (39, 1763, 'maybe', '2022-11-11 21:46:31', '2025-12-17 19:47:15', 'kdKMreZA', '5670803'), + (39, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdKMreZA', '5671637'), + (39, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdKMreZA', '5672329'), + (39, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdKMreZA', '5674057'), + (39, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdKMreZA', '5674060'), + (39, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdKMreZA', '5677461'), + (39, 1776, 'maybe', '2022-11-08 20:04:03', '2025-12-17 19:47:15', 'kdKMreZA', '5691067'), + (39, 1781, 'maybe', '2022-11-02 17:21:34', '2025-12-17 19:47:15', 'kdKMreZA', '5696178'), + (39, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdKMreZA', '5698046'), + (39, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdKMreZA', '5699760'), + (39, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdKMreZA', '5741601'), + (39, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdKMreZA', '5763458'), + (39, 1799, 'attending', '2022-11-26 18:52:10', '2025-12-17 19:47:16', 'kdKMreZA', '5764666'), + (39, 1800, 'not_attending', '2022-11-19 20:43:46', '2025-12-17 19:47:16', 'kdKMreZA', '5764667'), + (39, 1801, 'not_attending', '2022-11-28 22:38:08', '2025-12-17 19:47:16', 'kdKMreZA', '5764668'), + (39, 1802, 'not_attending', '2022-12-10 15:20:12', '2025-12-17 19:47:17', 'kdKMreZA', '5764669'), + (39, 1804, 'attending', '2023-01-27 17:03:44', '2025-12-17 19:47:06', 'kdKMreZA', '5764674'), + (39, 1805, 'attending', '2023-02-02 22:16:25', '2025-12-17 19:47:06', 'kdKMreZA', '5764675'), + (39, 1806, 'attending', '2023-01-20 14:22:37', '2025-12-17 19:47:05', 'kdKMreZA', '5764676'), + (39, 1807, 'attending', '2023-01-12 22:01:11', '2025-12-17 19:47:05', 'kdKMreZA', '5764677'), + (39, 1808, 'attending', '2023-03-01 14:24:43', '2025-12-17 19:47:08', 'kdKMreZA', '5764678'), + (39, 1809, 'attending', '2023-04-15 14:38:08', '2025-12-17 19:46:59', 'kdKMreZA', '5764679'), + (39, 1810, 'attending', '2023-04-22 11:57:36', '2025-12-17 19:47:00', 'kdKMreZA', '5764680'), + (39, 1811, 'not_attending', '2023-05-06 15:33:28', '2025-12-17 19:47:02', 'kdKMreZA', '5764681'), + (39, 1812, 'attending', '2023-03-11 19:36:18', '2025-12-17 19:47:09', 'kdKMreZA', '5764682'), + (39, 1814, 'attending', '2023-02-25 19:01:14', '2025-12-17 19:47:08', 'kdKMreZA', '5764684'), + (39, 1815, 'not_attending', '2023-02-18 15:51:27', '2025-12-17 19:47:07', 'kdKMreZA', '5764685'), + (39, 1816, 'not_attending', '2023-05-20 15:28:19', '2025-12-17 19:47:03', 'kdKMreZA', '5764686'), + (39, 1818, 'not_attending', '2023-02-10 19:27:24', '2025-12-17 19:47:07', 'kdKMreZA', '5764688'), + (39, 1819, 'attending', '2023-03-31 23:23:08', '2025-12-17 19:46:58', 'kdKMreZA', '5764689'), + (39, 1820, 'not_attending', '2023-04-07 19:13:44', '2025-12-17 19:46:58', 'kdKMreZA', '5764690'), + (39, 1821, 'attending', '2023-03-17 11:42:17', '2025-12-17 19:46:56', 'kdKMreZA', '5764691'), + (39, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdKMreZA', '5774172'), + (39, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'kdKMreZA', '5818247'), + (39, 1833, 'maybe', '2022-12-05 14:23:19', '2025-12-17 19:47:16', 'kdKMreZA', '5819465'), + (39, 1834, 'not_attending', '2022-12-10 15:20:07', '2025-12-17 19:47:17', 'kdKMreZA', '5819470'), + (39, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdKMreZA', '5819471'), + (39, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdKMreZA', '5827739'), + (39, 1843, 'maybe', '2022-12-17 21:46:54', '2025-12-17 19:47:04', 'kdKMreZA', '5844304'), + (39, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdKMreZA', '5844306'), + (39, 1847, 'maybe', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdKMreZA', '5850159'), + (39, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdKMreZA', '5858999'), + (39, 1852, 'not_attending', '2023-01-11 21:05:57', '2025-12-17 19:47:05', 'kdKMreZA', '5869898'), + (39, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdKMreZA', '5871984'), + (39, 1855, 'maybe', '2023-01-12 21:57:04', '2025-12-17 19:47:05', 'kdKMreZA', '5873968'), + (39, 1859, 'maybe', '2023-01-20 19:47:52', '2025-12-17 19:47:05', 'kdKMreZA', '5876234'), + (39, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdKMreZA', '5876354'), + (39, 1864, 'attending', '2023-01-20 14:22:41', '2025-12-17 19:47:05', 'kdKMreZA', '5879675'), + (39, 1865, 'attending', '2023-01-27 17:03:48', '2025-12-17 19:47:06', 'kdKMreZA', '5879676'), + (39, 1866, 'maybe', '2023-01-24 14:37:17', '2025-12-17 19:47:05', 'kdKMreZA', '5880939'), + (39, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdKMreZA', '5880940'), + (39, 1868, 'maybe', '2023-02-21 21:15:42', '2025-12-17 19:47:07', 'kdKMreZA', '5880942'), + (39, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdKMreZA', '5880943'), + (39, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdKMreZA', '5887890'), + (39, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdKMreZA', '5888598'), + (39, 1879, 'attending', '2023-01-25 04:36:10', '2025-12-17 19:47:06', 'kdKMreZA', '5893001'), + (39, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdKMreZA', '5893260'), + (39, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdKMreZA', '5899826'), + (39, 1886, 'maybe', '2023-03-08 21:38:54', '2025-12-17 19:47:09', 'kdKMreZA', '5899930'), + (39, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdKMreZA', '5900199'), + (39, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdKMreZA', '5900200'), + (39, 1891, 'maybe', '2023-03-22 14:55:48', '2025-12-17 19:46:56', 'kdKMreZA', '5900202'), + (39, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdKMreZA', '5900203'), + (39, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdKMreZA', '5901108'), + (39, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdKMreZA', '5901126'), + (39, 1897, 'not_attending', '2023-02-10 19:27:27', '2025-12-17 19:47:07', 'kdKMreZA', '5901128'), + (39, 1898, 'maybe', '2023-02-01 21:08:32', '2025-12-17 19:47:06', 'kdKMreZA', '5901263'), + (39, 1900, 'maybe', '2023-02-02 22:16:08', '2025-12-17 19:47:06', 'kdKMreZA', '5901331'), + (39, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdKMreZA', '5909655'), + (39, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdKMreZA', '5910522'), + (39, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdKMreZA', '5910526'), + (39, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdKMreZA', '5910528'), + (39, 1920, 'maybe', '2023-02-13 01:49:57', '2025-12-17 19:47:07', 'kdKMreZA', '5914091'), + (39, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdKMreZA', '5916219'), + (39, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdKMreZA', '5936234'), + (39, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdKMreZA', '5958351'), + (39, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdKMreZA', '5959751'), + (39, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdKMreZA', '5959755'), + (39, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdKMreZA', '5960055'), + (39, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdKMreZA', '5961684'), + (39, 1943, 'maybe', '2023-03-13 12:45:34', '2025-12-17 19:47:10', 'kdKMreZA', '5962091'), + (39, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'kdKMreZA', '5962132'), + (39, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'kdKMreZA', '5962133'), + (39, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdKMreZA', '5962134'), + (39, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdKMreZA', '5962317'), + (39, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdKMreZA', '5962318'), + (39, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'kdKMreZA', '5965933'), + (39, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdKMreZA', '5967014'), + (39, 1955, 'maybe', '2023-03-29 15:18:17', '2025-12-17 19:46:57', 'kdKMreZA', '5972529'), + (39, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'kdKMreZA', '5972763'), + (39, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdKMreZA', '5972815'), + (39, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdKMreZA', '5974016'), + (39, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdKMreZA', '5981515'), + (39, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdKMreZA', '5993516'), + (39, 1971, 'maybe', '2023-03-20 15:03:06', '2025-12-17 19:46:56', 'kdKMreZA', '5993765'), + (39, 1972, 'not_attending', '2023-03-13 19:42:39', '2025-12-17 19:46:56', 'kdKMreZA', '5993776'), + (39, 1975, 'not_attending', '2023-03-26 15:55:41', '2025-12-17 19:46:57', 'kdKMreZA', '5995351'), + (39, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdKMreZA', '5998939'), + (39, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdKMreZA', '6028191'), + (39, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdKMreZA', '6040066'), + (39, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdKMreZA', '6042717'), + (39, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdKMreZA', '6044838'), + (39, 1987, 'maybe', '2023-04-18 17:48:52', '2025-12-17 19:47:00', 'kdKMreZA', '6044839'), + (39, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKMreZA', '6045684'), + (39, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdKMreZA', '6050104'), + (39, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdKMreZA', '6053195'), + (39, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdKMreZA', '6053198'), + (39, 2007, 'attending', '2023-04-07 03:16:18', '2025-12-17 19:46:58', 'kdKMreZA', '6055291'), + (39, 2008, 'maybe', '2023-04-07 19:49:52', '2025-12-17 19:46:58', 'kdKMreZA', '6055808'), + (39, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdKMreZA', '6056085'), + (39, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdKMreZA', '6056916'), + (39, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdKMreZA', '6059290'), + (39, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdKMreZA', '6060328'), + (39, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdKMreZA', '6061037'), + (39, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdKMreZA', '6061039'), + (39, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdKMreZA', '6067245'), + (39, 2025, 'attending', '2023-04-23 17:10:44', '2025-12-17 19:47:00', 'kdKMreZA', '6067457'), + (39, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdKMreZA', '6068094'), + (39, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdKMreZA', '6068252'), + (39, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdKMreZA', '6068253'), + (39, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdKMreZA', '6068254'), + (39, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'kdKMreZA', '6068280'), + (39, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdKMreZA', '6069093'), + (39, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdKMreZA', '6072528'), + (39, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdKMreZA', '6079840'), + (39, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdKMreZA', '6083398'), + (39, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdKMreZA', '6093504'), + (39, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdKMreZA', '6097414'), + (39, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdKMreZA', '6097442'), + (39, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdKMreZA', '6097684'), + (39, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdKMreZA', '6098762'), + (39, 2064, 'attending', '2023-06-24 16:43:47', '2025-12-17 19:46:50', 'kdKMreZA', '6099988'), + (39, 2065, 'attending', '2023-06-17 21:45:23', '2025-12-17 19:46:49', 'kdKMreZA', '6101169'), + (39, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdKMreZA', '6101361'), + (39, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdKMreZA', '6101362'), + (39, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'kdKMreZA', '6103752'), + (39, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdKMreZA', '6107314'), + (39, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdKMreZA', '6120034'), + (39, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'kdKMreZA', '6136733'), + (39, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdKMreZA', '6137989'), + (39, 2106, 'attending', '2023-06-20 22:52:04', '2025-12-17 19:46:50', 'kdKMreZA', '6150479'), + (39, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdKMreZA', '6150864'), + (39, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdKMreZA', '6155491'), + (39, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdKMreZA', '6164417'), + (39, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdKMreZA', '6166388'), + (39, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdKMreZA', '6176439'), + (39, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'kdKMreZA', '6180853'), + (39, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdKMreZA', '6182410'), + (39, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdKMreZA', '6185812'), + (39, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdKMreZA', '6187651'), + (39, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdKMreZA', '6187963'), + (39, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdKMreZA', '6187964'), + (39, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdKMreZA', '6187966'), + (39, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdKMreZA', '6187967'), + (39, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdKMreZA', '6187969'), + (39, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdKMreZA', '6334878'), + (39, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdKMreZA', '6337236'), + (39, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdKMreZA', '6337970'), + (39, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdKMreZA', '6338308'), + (39, 2159, 'maybe', '2023-07-21 14:09:03', '2025-12-17 19:46:53', 'kdKMreZA', '6338355'), + (39, 2160, 'attending', '2023-07-29 22:36:21', '2025-12-17 19:46:54', 'kdKMreZA', '6338358'), + (39, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'kdKMreZA', '6340845'), + (39, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdKMreZA', '6341710'), + (39, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdKMreZA', '6342044'), + (39, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdKMreZA', '6342298'), + (39, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdKMreZA', '6343294'), + (39, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdKMreZA', '6347034'), + (39, 2177, 'maybe', '2023-08-12 13:06:45', '2025-12-17 19:46:55', 'kdKMreZA', '6347053'), + (39, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdKMreZA', '6347056'), + (39, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdKMreZA', '6353830'), + (39, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdKMreZA', '6353831'), + (39, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdKMreZA', '6357867'), + (39, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdKMreZA', '6358652'), + (39, 2200, 'maybe', '2023-08-07 19:47:01', '2025-12-17 19:46:55', 'kdKMreZA', '6359850'), + (39, 2204, 'maybe', '2023-08-19 15:57:24', '2025-12-17 19:46:55', 'kdKMreZA', '6361542'), + (39, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdKMreZA', '6361709'), + (39, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdKMreZA', '6361710'), + (39, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdKMreZA', '6361711'), + (39, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdKMreZA', '6361712'), + (39, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdKMreZA', '6361713'), + (39, 2232, 'maybe', '2023-08-23 12:48:38', '2025-12-17 19:46:55', 'kdKMreZA', '6374818'), + (39, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdKMreZA', '6382573'), + (39, 2239, 'not_attending', '2023-08-31 18:14:24', '2025-12-17 19:46:56', 'kdKMreZA', '6387592'), + (39, 2240, 'not_attending', '2023-09-05 22:21:08', '2025-12-17 19:46:56', 'kdKMreZA', '6388603'), + (39, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdKMreZA', '6388604'), + (39, 2242, 'maybe', '2023-09-23 17:09:09', '2025-12-17 19:46:45', 'kdKMreZA', '6388606'), + (39, 2243, 'maybe', '2023-09-05 22:20:57', '2025-12-17 19:46:56', 'kdKMreZA', '6393686'), + (39, 2244, 'maybe', '2023-09-11 16:45:46', '2025-12-17 19:46:44', 'kdKMreZA', '6393700'), + (39, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdKMreZA', '6394629'), + (39, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdKMreZA', '6394631'), + (39, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdKMreZA', '6440863'), + (39, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdKMreZA', '6445440'), + (39, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdKMreZA', '6453951'), + (39, 2279, 'maybe', '2023-10-09 17:02:58', '2025-12-17 19:46:46', 'kdKMreZA', '6455460'), + (39, 2285, 'attending', '2023-10-27 22:41:44', '2025-12-17 19:46:47', 'kdKMreZA', '6460929'), + (39, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdKMreZA', '6461696'), + (39, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdKMreZA', '6462129'), + (39, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdKMreZA', '6463218'), + (39, 2296, 'maybe', '2023-10-26 18:46:40', '2025-12-17 19:46:47', 'kdKMreZA', '6468393'), + (39, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdKMreZA', '6472181'), + (39, 2303, 'not_attending', '2023-10-28 18:01:39', '2025-12-17 19:46:47', 'kdKMreZA', '6482691'), + (39, 2304, 'maybe', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdKMreZA', '6482693'), + (39, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdKMreZA', '6484200'), + (39, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdKMreZA', '6484680'), + (39, 2310, 'attending', '2023-11-11 21:30:20', '2025-12-17 19:46:47', 'kdKMreZA', '6487709'), + (39, 2311, 'maybe', '2023-11-05 22:55:05', '2025-12-17 19:46:47', 'kdKMreZA', '6487725'), + (39, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdKMreZA', '6507741'), + (39, 2322, 'attending', '2023-11-16 16:56:29', '2025-12-17 19:46:48', 'kdKMreZA', '6514659'), + (39, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdKMreZA', '6514660'), + (39, 2324, 'not_attending', '2023-12-09 17:22:51', '2025-12-17 19:46:49', 'kdKMreZA', '6514662'), + (39, 2325, 'maybe', '2023-12-16 19:02:54', '2025-12-17 19:46:36', 'kdKMreZA', '6514663'), + (39, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdKMreZA', '6519103'), + (39, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdKMreZA', '6535681'), + (39, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdKMreZA', '6584747'), + (39, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdKMreZA', '6587097'), + (39, 2362, 'maybe', '2023-12-04 12:36:40', '2025-12-17 19:46:49', 'kdKMreZA', '6605708'), + (39, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdKMreZA', '6609022'), + (39, 2365, 'not_attending', '2023-12-23 21:31:24', '2025-12-17 19:46:37', 'kdKMreZA', '6613093'), + (39, 2371, 'maybe', '2023-12-15 17:17:58', '2025-12-17 19:46:36', 'kdKMreZA', '6624495'), + (39, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'kdKMreZA', '6632757'), + (39, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdKMreZA', '6644187'), + (39, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdKMreZA', '6648951'), + (39, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdKMreZA', '6648952'), + (39, 2388, 'maybe', '2024-01-06 21:08:13', '2025-12-17 19:46:37', 'kdKMreZA', '6649244'), + (39, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdKMreZA', '6655401'), + (39, 2399, 'not_attending', '2024-01-13 18:19:55', '2025-12-17 19:46:38', 'kdKMreZA', '6657583'), + (39, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdKMreZA', '6661585'), + (39, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdKMreZA', '6661588'), + (39, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdKMreZA', '6661589'), + (39, 2406, 'attending', '2024-01-20 00:57:11', '2025-12-17 19:46:40', 'kdKMreZA', '6692344'), + (39, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdKMreZA', '6699906'), + (39, 2408, 'attending', '2024-01-26 19:14:23', '2025-12-17 19:46:40', 'kdKMreZA', '6699907'), + (39, 2409, 'not_attending', '2024-02-03 15:28:20', '2025-12-17 19:46:41', 'kdKMreZA', '6699909'), + (39, 2410, 'not_attending', '2024-02-11 00:59:58', '2025-12-17 19:46:41', 'kdKMreZA', '6699911'), + (39, 2411, 'not_attending', '2024-02-16 19:50:46', '2025-12-17 19:46:42', 'kdKMreZA', '6699913'), + (39, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdKMreZA', '6701109'), + (39, 2424, 'not_attending', '2024-01-20 00:56:42', '2025-12-17 19:46:40', 'kdKMreZA', '6705143'), + (39, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdKMreZA', '6705219'), + (39, 2426, 'maybe', '2024-01-20 18:29:35', '2025-12-17 19:46:40', 'kdKMreZA', '6705569'), + (39, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdKMreZA', '6710153'), + (39, 2429, 'maybe', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdKMreZA', '6711552'), + (39, 2430, 'maybe', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdKMreZA', '6711553'), + (39, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdKMreZA', '6722688'), + (39, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdKMreZA', '6730620'), + (39, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'kdKMreZA', '6730642'), + (39, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdKMreZA', '6740364'), + (39, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdKMreZA', '6743829'), + (39, 2462, 'attending', '2024-02-12 20:49:51', '2025-12-17 19:46:41', 'kdKMreZA', '6744701'), + (39, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdKMreZA', '7030380'), + (39, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'kdKMreZA', '7033677'), + (39, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'kdKMreZA', '7035415'), + (39, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdKMreZA', '7044715'), + (39, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdKMreZA', '7050318'), + (39, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdKMreZA', '7050319'), + (39, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdKMreZA', '7050322'), + (39, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdKMreZA', '7057804'), + (39, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'kdKMreZA', '7059866'), + (39, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdKMreZA', '7072824'), + (39, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdKMreZA', '7074348'), + (39, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdKMreZA', '7074364'), + (39, 2531, 'maybe', '2024-08-29 16:47:27', '2025-12-17 19:46:32', 'kdKMreZA', '7074378'), + (39, 2537, 'not_attending', '2024-03-23 17:20:22', '2025-12-17 19:46:33', 'kdKMreZA', '7085484'), + (39, 2539, 'not_attending', '2024-04-04 16:18:28', '2025-12-17 19:46:33', 'kdKMreZA', '7085486'), + (39, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdKMreZA', '7089267'), + (39, 2541, 'maybe', '2024-03-18 18:02:00', '2025-12-17 19:46:33', 'kdKMreZA', '7089404'), + (39, 2548, 'maybe', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdKMreZA', '7098747'), + (39, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdKMreZA', '7113468'), + (39, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdKMreZA', '7114856'), + (39, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdKMreZA', '7114951'), + (39, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdKMreZA', '7114955'), + (39, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdKMreZA', '7114956'), + (39, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdKMreZA', '7114957'), + (39, 2564, 'maybe', '2024-04-08 14:50:35', '2025-12-17 19:46:33', 'kdKMreZA', '7134735'), + (39, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'kdKMreZA', '7153615'), + (39, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdKMreZA', '7159484'), + (39, 2584, 'maybe', '2024-04-21 16:13:06', '2025-12-17 19:46:34', 'kdKMreZA', '7175057'), + (39, 2585, 'attending', '2024-04-24 18:03:49', '2025-12-17 19:46:34', 'kdKMreZA', '7175828'), + (39, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdKMreZA', '7178446'), + (39, 2601, 'maybe', '2024-04-24 18:03:42', '2025-12-17 19:46:34', 'kdKMreZA', '7197023'), + (39, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'kdKMreZA', '7220467'), + (39, 2604, 'attending', '2024-05-29 22:08:58', '2025-12-17 19:46:36', 'kdKMreZA', '7225670'), + (39, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdKMreZA', '7240354'), + (39, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdKMreZA', '7251633'), + (39, 2623, 'maybe', '2024-05-10 13:48:26', '2025-12-17 19:46:35', 'kdKMreZA', '7263048'), + (39, 2627, 'attending', '2024-05-25 16:57:57', '2025-12-17 19:46:35', 'kdKMreZA', '7264724'), + (39, 2628, 'maybe', '2024-06-01 20:51:45', '2025-12-17 19:46:36', 'kdKMreZA', '7264725'), + (39, 2629, 'not_attending', '2024-06-07 16:04:58', '2025-12-17 19:46:28', 'kdKMreZA', '7264726'), + (39, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'kdKMreZA', '7302674'), + (39, 2678, 'not_attending', '2024-06-15 15:34:51', '2025-12-17 19:46:28', 'kdKMreZA', '7319489'), + (39, 2679, 'maybe', '2024-06-22 20:24:04', '2025-12-17 19:46:29', 'kdKMreZA', '7319490'), + (39, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdKMreZA', '7324073'), + (39, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdKMreZA', '7324074'), + (39, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdKMreZA', '7324075'), + (39, 2691, 'attending', '2024-07-20 18:07:44', '2025-12-17 19:46:30', 'kdKMreZA', '7324076'), + (39, 2692, 'not_attending', '2024-07-25 20:37:11', '2025-12-17 19:46:30', 'kdKMreZA', '7324077'), + (39, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdKMreZA', '7324078'), + (39, 2694, 'not_attending', '2024-08-09 18:24:07', '2025-12-17 19:46:31', 'kdKMreZA', '7324079'), + (39, 2695, 'attending', '2024-08-16 09:59:25', '2025-12-17 19:46:31', 'kdKMreZA', '7324080'), + (39, 2696, 'attending', '2024-08-24 16:17:25', '2025-12-17 19:46:32', 'kdKMreZA', '7324081'), + (39, 2697, 'attending', '2024-08-29 16:47:51', '2025-12-17 19:46:32', 'kdKMreZA', '7324082'), + (39, 2698, 'not_attending', '2024-09-05 19:20:21', '2025-12-17 19:46:24', 'kdKMreZA', '7324083'), + (39, 2699, 'attending', '2024-06-12 21:57:55', '2025-12-17 19:46:28', 'kdKMreZA', '7324385'), + (39, 2706, 'attending', '2024-06-19 17:44:26', '2025-12-17 19:46:28', 'kdKMreZA', '7324947'), + (39, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdKMreZA', '7331457'), + (39, 2743, 'maybe', '2024-07-05 13:28:36', '2025-12-17 19:46:29', 'kdKMreZA', '7345688'), + (39, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'kdKMreZA', '7356752'), + (39, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdKMreZA', '7363643'), + (39, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdKMreZA', '7368606'), + (39, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdKMreZA', '7397462'), + (39, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdKMreZA', '7424275'), + (39, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'kdKMreZA', '7424276'), + (39, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdKMreZA', '7432751'), + (39, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdKMreZA', '7432752'), + (39, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdKMreZA', '7432753'), + (39, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdKMreZA', '7432754'), + (39, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdKMreZA', '7432755'), + (39, 2829, 'maybe', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdKMreZA', '7432756'), + (39, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdKMreZA', '7432758'), + (39, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdKMreZA', '7432759'), + (39, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdKMreZA', '7433834'), + (39, 2839, 'not_attending', '2024-09-25 17:59:31', '2025-12-17 19:46:25', 'kdKMreZA', '7439262'), + (39, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'kdKMreZA', '7470197'), + (39, 2878, 'maybe', '2024-10-16 18:19:36', '2025-12-17 19:46:26', 'kdKMreZA', '7633857'), + (39, 2883, 'maybe', '2024-10-23 22:09:37', '2025-12-17 19:46:26', 'kdKMreZA', '7649157'), + (39, 2892, 'not_attending', '2024-10-30 19:04:02', '2025-12-17 19:46:26', 'kdKMreZA', '7672064'), + (39, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdKMreZA', '7685613'), + (39, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdKMreZA', '7688194'), + (39, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdKMreZA', '7688196'), + (39, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdKMreZA', '7688289'), + (39, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdKMreZA', '7692763'), + (39, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdKMreZA', '7697552'), + (39, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdKMreZA', '7699878'), + (39, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdKMreZA', '7704043'), + (39, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdKMreZA', '7712467'), + (39, 2925, 'attending', '2024-12-14 13:34:58', '2025-12-17 19:46:21', 'kdKMreZA', '7713584'), + (39, 2926, 'not_attending', '2024-12-06 19:32:42', '2025-12-17 19:46:21', 'kdKMreZA', '7713585'), + (39, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdKMreZA', '7713586'), + (39, 2930, 'maybe', '2024-12-09 23:02:03', '2025-12-17 19:46:21', 'kdKMreZA', '7724554'), + (39, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdKMreZA', '7738518'), + (39, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'kdKMreZA', '7750632'), + (39, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdKMreZA', '7750636'), + (39, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdKMreZA', '7796540'), + (39, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdKMreZA', '7796541'), + (39, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdKMreZA', '7796542'), + (39, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdKMreZA', '7825913'), + (39, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdKMreZA', '7826209'), + (39, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdKMreZA', '7834742'), + (39, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'kdKMreZA', '7842108'), + (39, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdKMreZA', '7842902'), + (39, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdKMreZA', '7842903'), + (39, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdKMreZA', '7842904'), + (39, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdKMreZA', '7842905'), + (39, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdKMreZA', '7855719'), + (39, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdKMreZA', '7860683'), + (39, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdKMreZA', '7860684'), + (39, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdKMreZA', '7866095'), + (39, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdKMreZA', '7869170'), + (39, 3014, 'attending', '2025-04-05 16:08:31', '2025-12-17 19:46:20', 'kdKMreZA', '7869185'), + (39, 3015, 'attending', '2025-04-26 14:08:12', '2025-12-17 19:46:20', 'kdKMreZA', '7869186'), + (39, 3016, 'attending', '2025-04-19 16:40:10', '2025-12-17 19:46:20', 'kdKMreZA', '7869187'), + (39, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdKMreZA', '7869188'), + (39, 3018, 'attending', '2025-04-12 17:33:40', '2025-12-17 19:46:20', 'kdKMreZA', '7869189'), + (39, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdKMreZA', '7869201'), + (39, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdKMreZA', '7877465'), + (39, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'kdKMreZA', '7878570'), + (39, 3055, 'maybe', '2025-03-27 20:03:22', '2025-12-17 19:46:19', 'kdKMreZA', '7888118'), + (39, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdKMreZA', '7888250'), + (39, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdKMreZA', '7904777'), + (39, 3094, 'attending', '2025-05-10 15:29:51', '2025-12-17 19:46:21', 'kdKMreZA', '8342292'), + (39, 3095, 'not_attending', '2025-05-03 12:31:10', '2025-12-17 19:46:20', 'kdKMreZA', '8342293'), + (39, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdKMreZA', '8349164'), + (39, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdKMreZA', '8349545'), + (39, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'kdKMreZA', '8353584'), + (39, 3126, 'attending', '2025-05-14 20:23:42', '2025-12-17 19:46:21', 'kdKMreZA', '8365614'), + (39, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdKMreZA', '8368028'), + (39, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdKMreZA', '8368029'), + (39, 3133, 'attending', '2025-05-30 20:37:58', '2025-12-17 19:46:14', 'kdKMreZA', '8368030'), + (39, 3136, 'maybe', '2025-05-21 19:10:34', '2025-12-17 19:46:21', 'kdKMreZA', '8374152'), + (39, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdKMreZA', '8388462'), + (39, 3150, 'maybe', '2025-06-21 00:06:19', '2025-12-17 19:46:15', 'kdKMreZA', '8393174'), + (39, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdKMreZA', '8400273'), + (39, 3154, 'not_attending', '2025-06-26 21:02:45', '2025-12-17 19:46:15', 'kdKMreZA', '8400274'), + (39, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdKMreZA', '8400275'), + (39, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'kdKMreZA', '8400276'), + (39, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdKMreZA', '8404977'), + (39, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdKMreZA', '8430783'), + (39, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdKMreZA', '8430784'), + (39, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdKMreZA', '8430799'), + (39, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdKMreZA', '8430800'), + (39, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdKMreZA', '8430801'), + (39, 3186, 'attending', '2025-07-02 12:31:01', '2025-12-17 19:46:16', 'kdKMreZA', '8431527'), + (39, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdKMreZA', '8438709'), + (39, 3189, 'not_attending', '2025-07-10 20:28:51', '2025-12-17 19:46:16', 'kdKMreZA', '8438849'), + (39, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdKMreZA', '8457738'), + (39, 3195, 'attending', '2025-08-06 20:29:05', '2025-12-17 19:46:17', 'kdKMreZA', '8458118'), + (39, 3196, 'attending', '2025-08-13 14:16:12', '2025-12-17 19:46:17', 'kdKMreZA', '8458543'), + (39, 3198, 'maybe', '2025-08-20 18:58:46', '2025-12-17 19:46:18', 'kdKMreZA', '8459268'), + (39, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdKMreZA', '8459566'), + (39, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdKMreZA', '8459567'), + (39, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdKMreZA', '8461032'), + (39, 3210, 'maybe', '2025-08-27 11:41:15', '2025-12-17 19:46:18', 'kdKMreZA', '8471162'), + (39, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdKMreZA', '8477877'), + (39, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdKMreZA', '8485688'), + (39, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdKMreZA', '8490587'), + (39, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdKMreZA', '8493552'), + (39, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdKMreZA', '8493553'), + (39, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdKMreZA', '8493554'), + (39, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdKMreZA', '8493555'), + (39, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdKMreZA', '8493556'), + (39, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdKMreZA', '8493557'), + (39, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdKMreZA', '8493558'), + (39, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdKMreZA', '8493559'), + (39, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdKMreZA', '8493560'), + (39, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdKMreZA', '8493561'), + (39, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdKMreZA', '8493572'), + (39, 3263, 'maybe', '2025-09-10 21:33:59', '2025-12-17 19:46:12', 'kdKMreZA', '8514576'), + (39, 3264, 'maybe', '2025-09-17 20:47:46', '2025-12-17 19:46:12', 'kdKMreZA', '8514577'), + (39, 3266, 'maybe', '2025-10-01 21:25:36', '2025-12-17 19:46:13', 'kdKMreZA', '8514579'), + (39, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdKMreZA', '8540725'), + (39, 3289, 'not_attending', '2025-10-21 20:12:40', '2025-12-17 19:46:14', 'kdKMreZA', '8542939'), + (39, 3295, 'attending', '2025-11-01 21:17:18', '2025-12-17 19:46:14', 'kdKMreZA', '8547541'), + (39, 3300, 'attending', '2025-11-08 17:43:26', '2025-12-17 19:46:14', 'kdKMreZA', '8549145'), + (39, 3302, 'not_attending', '2025-11-14 16:39:38', '2025-12-17 19:46:14', 'kdKMreZA', '8550022'), + (39, 3304, 'attending', '2025-11-17 23:41:20', '2025-12-17 19:46:14', 'kdKMreZA', '8550024'), + (39, 3305, 'attending', '2025-12-06 20:02:07', '2025-12-17 19:46:11', 'kdKMreZA', '8550025'), + (39, 3306, 'attending', '2025-12-13 17:22:15', '2025-12-17 19:46:11', 'kdKMreZA', '8550026'), + (39, 3307, 'maybe', '2025-12-18 01:22:14', '2025-12-18 01:22:14', NULL, NULL), + (39, 3308, 'attending', '2025-11-11 22:55:26', '2025-12-17 19:46:14', 'kdKMreZA', '8550408'), + (39, 3311, 'attending', '2025-12-10 00:56:01', '2025-12-17 19:46:11', 'kdKMreZA', '8550412'), + (39, 3313, 'attending', '2025-11-05 22:24:40', '2025-12-17 19:46:14', 'kdKMreZA', '8550896'), + (39, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdKMreZA', '8555421'), + (39, 3327, 'attending', '2025-12-05 00:57:13', '2025-12-17 19:46:11', 'kdKMreZA', '8557174'), + (40, 3237, 'attending', '2025-09-05 01:26:58', '2025-12-17 19:46:11', 'xAYyPO0A', '8493553'), + (40, 3242, 'attending', '2025-10-24 23:14:15', '2025-12-17 19:46:14', 'xAYyPO0A', '8493558'), + (40, 3253, 'attending', '2025-10-15 00:04:49', '2025-12-17 19:46:14', 'xAYyPO0A', '8493572'), + (40, 3276, 'attending', '2025-09-22 20:54:02', '2025-12-17 19:46:12', 'xAYyPO0A', '8529058'), + (40, 3284, 'attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAYyPO0A', '8540725'), + (40, 3286, 'not_attending', '2025-10-15 00:04:20', '2025-12-17 19:46:14', 'xAYyPO0A', '8540728'), + (40, 3287, 'maybe', '2025-10-15 00:04:02', '2025-12-17 19:46:14', 'xAYyPO0A', '8540729'), + (40, 3289, 'attending', '2025-10-21 23:44:09', '2025-12-17 19:46:14', 'xAYyPO0A', '8542939'), + (40, 3293, 'attending', '2025-10-15 05:54:23', '2025-12-17 19:46:14', 'xAYyPO0A', '8543836'), + (40, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAYyPO0A', '8555421'), + (41, 2210, 'maybe', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxMXk3Om', '6361711'), + (41, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxMXk3Om', '6361713'), + (41, 2239, 'maybe', '2023-09-02 21:49:40', '2025-12-17 19:46:56', 'dxMXk3Om', '6387592'), + (41, 2240, 'attending', '2023-09-09 01:18:29', '2025-12-17 19:46:56', 'dxMXk3Om', '6388603'), + (41, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxMXk3Om', '6388604'), + (41, 2242, 'attending', '2023-09-23 15:25:35', '2025-12-17 19:46:45', 'dxMXk3Om', '6388606'), + (41, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxMXk3Om', '6394629'), + (41, 2249, 'attending', '2023-09-20 20:11:40', '2025-12-17 19:46:45', 'dxMXk3Om', '6394630'), + (41, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxMXk3Om', '6394631'), + (41, 2253, 'attending', '2023-09-30 03:48:12', '2025-12-17 19:46:45', 'dxMXk3Om', '6401811'), + (41, 2259, 'attending', '2023-09-23 01:21:34', '2025-12-17 19:46:45', 'dxMXk3Om', '6421257'), + (41, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxMXk3Om', '6440863'), + (41, 2270, 'attending', '2023-10-10 21:20:09', '2025-12-17 19:46:46', 'dxMXk3Om', '6443067'), + (41, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dxMXk3Om', '6445440'), + (41, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dxMXk3Om', '6453951'), + (41, 2279, 'maybe', '2023-10-12 14:14:18', '2025-12-17 19:46:46', 'dxMXk3Om', '6455460'), + (41, 2285, 'attending', '2023-10-27 22:09:45', '2025-12-17 19:46:47', 'dxMXk3Om', '6460929'), + (41, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dxMXk3Om', '6461696'), + (41, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dxMXk3Om', '6462129'), + (41, 2290, 'attending', '2023-10-18 20:18:42', '2025-12-17 19:46:46', 'dxMXk3Om', '6462214'), + (41, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dxMXk3Om', '6463218'), + (41, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dxMXk3Om', '6472181'), + (41, 2302, 'attending', '2023-10-23 22:27:01', '2025-12-17 19:46:46', 'dxMXk3Om', '6482535'), + (41, 2303, 'attending', '2023-10-28 12:48:48', '2025-12-17 19:46:47', 'dxMXk3Om', '6482691'), + (41, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxMXk3Om', '6482693'), + (41, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dxMXk3Om', '6484200'), + (41, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dxMXk3Om', '6484680'), + (41, 2310, 'not_attending', '2023-11-11 00:00:32', '2025-12-17 19:46:47', 'dxMXk3Om', '6487709'), + (41, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxMXk3Om', '6507741'), + (41, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxMXk3Om', '6514659'), + (41, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMXk3Om', '6514660'), + (41, 2324, 'not_attending', '2023-12-09 18:00:44', '2025-12-17 19:46:49', 'dxMXk3Om', '6514662'), + (41, 2325, 'attending', '2023-12-16 16:39:08', '2025-12-17 19:46:36', 'dxMXk3Om', '6514663'), + (41, 2331, 'attending', '2023-11-15 00:47:02', '2025-12-17 19:46:47', 'dxMXk3Om', '6518640'), + (41, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxMXk3Om', '6519103'), + (41, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dxMXk3Om', '6535681'), + (41, 2338, 'attending', '2023-11-25 19:11:09', '2025-12-17 19:46:48', 'dxMXk3Om', '6538868'), + (41, 2345, 'attending', '2023-11-29 21:19:00', '2025-12-17 19:46:48', 'dxMXk3Om', '6582414'), + (41, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxMXk3Om', '6584747'), + (41, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMXk3Om', '6587097'), + (41, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMXk3Om', '6609022'), + (41, 2365, 'maybe', '2023-12-23 00:24:54', '2025-12-17 19:46:37', 'dxMXk3Om', '6613093'), + (41, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMXk3Om', '6632757'), + (41, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMXk3Om', '6644187'), + (41, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMXk3Om', '6648951'), + (41, 2387, 'maybe', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMXk3Om', '6648952'), + (41, 2388, 'attending', '2024-01-06 03:16:13', '2025-12-17 19:46:37', 'dxMXk3Om', '6649244'), + (41, 2391, 'maybe', '2024-01-12 20:29:24', '2025-12-17 19:46:37', 'dxMXk3Om', '6654138'), + (41, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMXk3Om', '6655401'), + (41, 2399, 'maybe', '2024-01-13 15:20:27', '2025-12-17 19:46:38', 'dxMXk3Om', '6657583'), + (41, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMXk3Om', '6661585'), + (41, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMXk3Om', '6661588'), + (41, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMXk3Om', '6661589'), + (41, 2406, 'maybe', '2024-01-19 14:30:22', '2025-12-17 19:46:40', 'dxMXk3Om', '6692344'), + (41, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMXk3Om', '6699906'), + (41, 2408, 'maybe', '2024-01-27 17:21:25', '2025-12-17 19:46:40', 'dxMXk3Om', '6699907'), + (41, 2409, 'maybe', '2024-02-03 21:33:11', '2025-12-17 19:46:41', 'dxMXk3Om', '6699909'), + (41, 2410, 'attending', '2024-02-11 00:42:26', '2025-12-17 19:46:41', 'dxMXk3Om', '6699911'), + (41, 2411, 'maybe', '2024-02-09 23:02:29', '2025-12-17 19:46:42', 'dxMXk3Om', '6699913'), + (41, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMXk3Om', '6701109'), + (41, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMXk3Om', '6705219'), + (41, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMXk3Om', '6710153'), + (41, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMXk3Om', '6711552'), + (41, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMXk3Om', '6711553'), + (41, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMXk3Om', '6722688'), + (41, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMXk3Om', '6730620'), + (41, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMXk3Om', '6730642'), + (41, 2444, 'maybe', '2024-02-09 23:02:13', '2025-12-17 19:46:41', 'dxMXk3Om', '6734367'), + (41, 2447, 'not_attending', '2024-03-15 13:52:07', '2025-12-17 19:46:32', 'dxMXk3Om', '6734370'), + (41, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMXk3Om', '6740364'), + (41, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMXk3Om', '6743829'), + (41, 2466, 'maybe', '2024-02-14 14:46:27', '2025-12-17 19:46:41', 'dxMXk3Om', '7026777'), + (41, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMXk3Om', '7030380'), + (41, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMXk3Om', '7033677'), + (41, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMXk3Om', '7035415'), + (41, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMXk3Om', '7044715'), + (41, 2484, 'maybe', '2024-03-05 21:33:50', '2025-12-17 19:46:43', 'dxMXk3Om', '7046836'), + (41, 2489, 'attending', '2024-02-27 23:07:15', '2025-12-17 19:46:43', 'dxMXk3Om', '7050161'), + (41, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMXk3Om', '7050318'), + (41, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMXk3Om', '7050319'), + (41, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMXk3Om', '7050322'), + (41, 2498, 'attending', '2024-03-20 15:34:02', '2025-12-17 19:46:33', 'dxMXk3Om', '7057662'), + (41, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMXk3Om', '7057804'), + (41, 2500, 'maybe', '2024-03-06 02:16:59', '2025-12-17 19:46:43', 'dxMXk3Om', '7058603'), + (41, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dxMXk3Om', '7059866'), + (41, 2503, 'attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'dxMXk3Om', '7062500'), + (41, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMXk3Om', '7072824'), + (41, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMXk3Om', '7074348'), + (41, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxMXk3Om', '7074364'), + (41, 2534, 'maybe', '2024-03-13 22:48:56', '2025-12-17 19:46:32', 'dxMXk3Om', '7076875'), + (41, 2539, 'attending', '2024-04-06 21:19:22', '2025-12-17 19:46:33', 'dxMXk3Om', '7085486'), + (41, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMXk3Om', '7089267'), + (41, 2541, 'attending', '2024-03-18 12:57:39', '2025-12-17 19:46:33', 'dxMXk3Om', '7089404'), + (41, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMXk3Om', '7098747'), + (41, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxMXk3Om', '7113468'), + (41, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMXk3Om', '7114856'), + (41, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMXk3Om', '7114951'), + (41, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxMXk3Om', '7114955'), + (41, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMXk3Om', '7114956'), + (41, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMXk3Om', '7114957'), + (41, 2564, 'maybe', '2024-04-10 20:44:07', '2025-12-17 19:46:33', 'dxMXk3Om', '7134735'), + (41, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMXk3Om', '7153615'), + (41, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMXk3Om', '7159484'), + (41, 2576, 'attending', '2024-04-26 14:40:27', '2025-12-17 19:46:34', 'dxMXk3Om', '7164538'), + (41, 2578, 'maybe', '2024-04-12 23:45:18', '2025-12-17 19:46:34', 'dxMXk3Om', '7167016'), + (41, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMXk3Om', '7178446'), + (41, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMXk3Om', '7220467'), + (41, 2603, 'maybe', '2024-05-15 15:34:54', '2025-12-17 19:46:35', 'dxMXk3Om', '7225669'), + (41, 2604, 'maybe', '2024-05-28 22:58:26', '2025-12-17 19:46:36', 'dxMXk3Om', '7225670'), + (41, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMXk3Om', '7240354'), + (41, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMXk3Om', '7251633'), + (41, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dxMXk3Om', '7263048'), + (41, 2626, 'attending', '2024-05-17 02:06:47', '2025-12-17 19:46:35', 'dxMXk3Om', '7264723'), + (41, 2627, 'attending', '2024-05-24 22:58:17', '2025-12-17 19:46:35', 'dxMXk3Om', '7264724'), + (41, 2628, 'attending', '2024-06-01 13:30:57', '2025-12-17 19:46:36', 'dxMXk3Om', '7264725'), + (41, 2629, 'attending', '2024-06-07 22:58:35', '2025-12-17 19:46:28', 'dxMXk3Om', '7264726'), + (41, 2630, 'maybe', '2024-05-16 21:46:16', '2025-12-17 19:46:35', 'dxMXk3Om', '7264801'), + (41, 2647, 'maybe', '2024-06-09 19:49:59', '2025-12-17 19:46:28', 'dxMXk3Om', '7282057'), + (41, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMXk3Om', '7302674'), + (41, 2667, 'maybe', '2024-06-05 15:56:31', '2025-12-17 19:46:36', 'dxMXk3Om', '7307776'), + (41, 2668, 'maybe', '2024-06-07 22:23:53', '2025-12-17 19:46:36', 'dxMXk3Om', '7308821'), + (41, 2678, 'attending', '2024-06-15 03:03:28', '2025-12-17 19:46:28', 'dxMXk3Om', '7319489'), + (41, 2679, 'attending', '2024-06-21 11:34:43', '2025-12-17 19:46:29', 'dxMXk3Om', '7319490'), + (41, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxMXk3Om', '7324073'), + (41, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxMXk3Om', '7324074'), + (41, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxMXk3Om', '7324075'), + (41, 2691, 'attending', '2024-07-19 21:06:53', '2025-12-17 19:46:30', 'dxMXk3Om', '7324076'), + (41, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxMXk3Om', '7324078'), + (41, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxMXk3Om', '7324082'), + (41, 2699, 'attending', '2024-06-12 19:16:59', '2025-12-17 19:46:28', 'dxMXk3Om', '7324385'), + (41, 2700, 'maybe', '2024-06-14 18:32:31', '2025-12-17 19:46:28', 'dxMXk3Om', '7324388'), + (41, 2706, 'attending', '2024-06-19 21:10:39', '2025-12-17 19:46:28', 'dxMXk3Om', '7324947'), + (41, 2719, 'maybe', '2024-06-23 03:14:56', '2025-12-17 19:46:29', 'dxMXk3Om', '7331305'), + (41, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxMXk3Om', '7331457'), + (41, 2723, 'maybe', '2024-06-21 11:34:11', '2025-12-17 19:46:29', 'dxMXk3Om', '7332389'), + (41, 2742, 'maybe', '2024-07-03 20:35:02', '2025-12-17 19:46:29', 'dxMXk3Om', '7345167'), + (41, 2743, 'maybe', '2024-07-05 19:02:07', '2025-12-17 19:46:29', 'dxMXk3Om', '7345688'), + (41, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxMXk3Om', '7356752'), + (41, 2755, 'maybe', '2024-07-10 19:20:52', '2025-12-17 19:46:29', 'dxMXk3Om', '7357808'), + (41, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxMXk3Om', '7363643'), + (41, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxMXk3Om', '7368606'), + (41, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxMXk3Om', '7397462'), + (41, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxMXk3Om', '7424275'), + (41, 2822, 'attending', '2024-11-10 21:55:01', '2025-12-17 19:46:26', 'dxMXk3Om', '7424276'), + (41, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxMXk3Om', '7432751'), + (41, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxMXk3Om', '7432752'), + (41, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxMXk3Om', '7432753'), + (41, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxMXk3Om', '7432754'), + (41, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxMXk3Om', '7432755'), + (41, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxMXk3Om', '7432756'), + (41, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxMXk3Om', '7432758'), + (41, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxMXk3Om', '7432759'), + (41, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxMXk3Om', '7433834'), + (41, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxMXk3Om', '7470197'), + (41, 2881, 'maybe', '2024-11-06 18:55:49', '2025-12-17 19:46:26', 'dxMXk3Om', '7644047'), + (41, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxMXk3Om', '7685613'), + (41, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxMXk3Om', '7688194'), + (41, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxMXk3Om', '7688196'), + (41, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxMXk3Om', '7688289'), + (41, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dxMXk3Om', '7692763'), + (41, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxMXk3Om', '7697552'), + (41, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxMXk3Om', '7699878'), + (41, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxMXk3Om', '7704043'), + (41, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxMXk3Om', '7712467'), + (41, 2925, 'maybe', '2024-12-12 16:40:52', '2025-12-17 19:46:21', 'dxMXk3Om', '7713584'), + (41, 2926, 'attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxMXk3Om', '7713585'), + (41, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxMXk3Om', '7713586'), + (41, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMXk3Om', '7738518'), + (41, 2959, 'maybe', '2024-12-23 17:41:34', '2025-12-17 19:46:22', 'dxMXk3Om', '7747388'), + (41, 2962, 'maybe', '2024-12-27 14:45:59', '2025-12-17 19:46:22', 'dxMXk3Om', '7750632'), + (41, 2963, 'maybe', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMXk3Om', '7750636'), + (41, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMXk3Om', '7796540'), + (41, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMXk3Om', '7796541'), + (41, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMXk3Om', '7796542'), + (41, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxMXk3Om', '7825913'), + (41, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxMXk3Om', '7826209'), + (41, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxMXk3Om', '7834742'), + (41, 2988, 'not_attending', '2025-02-07 14:33:49', '2025-12-17 19:46:23', 'dxMXk3Om', '7839569'), + (41, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dxMXk3Om', '7842108'), + (41, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxMXk3Om', '7842902'), + (41, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxMXk3Om', '7842903'), + (41, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxMXk3Om', '7842904'), + (41, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxMXk3Om', '7842905'), + (41, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxMXk3Om', '7855719'), + (41, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxMXk3Om', '7860683'), + (41, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxMXk3Om', '7860684'), + (41, 3010, 'maybe', '2025-03-08 14:32:52', '2025-12-17 19:46:18', 'dxMXk3Om', '7864879'), + (41, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxMXk3Om', '7866095'), + (41, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxMXk3Om', '7869170'), + (41, 3014, 'attending', '2025-04-05 17:34:45', '2025-12-17 19:46:20', 'dxMXk3Om', '7869185'), + (41, 3015, 'attending', '2025-04-21 17:02:14', '2025-12-17 19:46:20', 'dxMXk3Om', '7869186'), + (41, 3016, 'attending', '2025-04-13 01:54:21', '2025-12-17 19:46:20', 'dxMXk3Om', '7869187'), + (41, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxMXk3Om', '7869188'), + (41, 3018, 'attending', '2025-04-09 00:07:27', '2025-12-17 19:46:20', 'dxMXk3Om', '7869189'), + (41, 3028, 'maybe', '2025-04-20 02:08:50', '2025-12-17 19:46:20', 'dxMXk3Om', '7869199'), + (41, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxMXk3Om', '7869201'), + (41, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxMXk3Om', '7877465'), + (41, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dxMXk3Om', '7878570'), + (41, 3048, 'maybe', '2025-04-19 20:39:27', '2025-12-17 19:46:20', 'dxMXk3Om', '7882694'), + (41, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxMXk3Om', '7888250'), + (41, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxMXk3Om', '7904777'), + (41, 3095, 'maybe', '2025-04-28 00:41:13', '2025-12-17 19:46:20', 'dxMXk3Om', '8342293'), + (41, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxMXk3Om', '8349164'), + (41, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxMXk3Om', '8349545'), + (41, 3106, 'attending', '2025-04-27 20:10:45', '2025-12-17 19:46:20', 'dxMXk3Om', '8349552'), + (41, 3107, 'maybe', '2025-05-02 13:19:35', '2025-12-17 19:46:20', 'dxMXk3Om', '8350107'), + (41, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxMXk3Om', '8353584'), + (41, 3131, 'attending', '2025-05-13 14:58:23', '2025-12-17 19:46:21', 'dxMXk3Om', '8368028'), + (41, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxMXk3Om', '8368029'), + (41, 3133, 'attending', '2025-05-28 12:21:13', '2025-12-17 19:46:14', 'dxMXk3Om', '8368030'), + (41, 3136, 'maybe', '2025-05-20 19:11:41', '2025-12-17 19:46:21', 'dxMXk3Om', '8374152'), + (41, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxMXk3Om', '8388462'), + (41, 3153, 'maybe', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxMXk3Om', '8400273'), + (41, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dxMXk3Om', '8400274'), + (41, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxMXk3Om', '8400275'), + (41, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dxMXk3Om', '8400276'), + (41, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxMXk3Om', '8404977'), + (41, 3173, 'attending', '2025-06-14 20:59:04', '2025-12-17 19:46:15', 'dxMXk3Om', '8410806'), + (41, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxMXk3Om', '8430783'), + (41, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxMXk3Om', '8430784'), + (41, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxMXk3Om', '8430799'), + (41, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxMXk3Om', '8430800'), + (41, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxMXk3Om', '8430801'), + (41, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxMXk3Om', '8438709'), + (41, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxMXk3Om', '8457738'), + (41, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxMXk3Om', '8459566'), + (41, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxMXk3Om', '8459567'), + (41, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxMXk3Om', '8461032'), + (41, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxMXk3Om', '8477877'), + (41, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxMXk3Om', '8485688'), + (41, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxMXk3Om', '8490587'), + (41, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxMXk3Om', '8493552'), + (41, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxMXk3Om', '8493553'), + (41, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxMXk3Om', '8493554'), + (41, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxMXk3Om', '8493555'), + (41, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxMXk3Om', '8493556'), + (41, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxMXk3Om', '8493557'), + (41, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxMXk3Om', '8493558'), + (41, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxMXk3Om', '8493559'), + (41, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxMXk3Om', '8493560'), + (41, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxMXk3Om', '8493561'), + (41, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxMXk3Om', '8493572'), + (41, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxMXk3Om', '8540725'), + (41, 3302, 'attending', '2025-11-16 00:43:41', '2025-12-17 19:46:14', 'dxMXk3Om', '8550022'), + (41, 3304, 'maybe', '2025-11-22 15:17:29', '2025-12-17 19:46:14', 'dxMXk3Om', '8550024'), + (41, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxMXk3Om', '8555421'), + (42, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVDLp6ZA', '6337970'), + (42, 2159, 'attending', '2023-07-22 12:38:55', '2025-12-17 19:46:53', 'dVDLp6ZA', '6338355'), + (42, 2160, 'attending', '2023-07-23 02:53:01', '2025-12-17 19:46:54', 'dVDLp6ZA', '6338358'), + (42, 2165, 'attending', '2023-07-29 18:02:02', '2025-12-17 19:46:54', 'dVDLp6ZA', '6342044'), + (42, 2166, 'not_attending', '2023-07-24 02:34:52', '2025-12-17 19:46:54', 'dVDLp6ZA', '6342115'), + (42, 2169, 'attending', '2023-07-22 02:31:19', '2025-12-17 19:46:53', 'dVDLp6ZA', '6342306'), + (42, 2170, 'not_attending', '2023-07-22 02:31:25', '2025-12-17 19:46:53', 'dVDLp6ZA', '6342307'), + (42, 2172, 'attending', '2023-07-19 14:43:50', '2025-12-17 19:46:53', 'dVDLp6ZA', '6342591'), + (42, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dVDLp6ZA', '6343294'), + (42, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVDLp6ZA', '6347034'), + (42, 2177, 'attending', '2023-08-10 02:40:05', '2025-12-17 19:46:55', 'dVDLp6ZA', '6347053'), + (42, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVDLp6ZA', '6347056'), + (42, 2179, 'attending', '2023-07-24 02:18:36', '2025-12-17 19:46:54', 'dVDLp6ZA', '6347591'), + (42, 2180, 'attending', '2023-07-25 13:10:42', '2025-12-17 19:46:54', 'dVDLp6ZA', '6348788'), + (42, 2181, 'attending', '2023-07-25 19:23:09', '2025-12-17 19:46:54', 'dVDLp6ZA', '6349354'), + (42, 2182, 'maybe', '2023-07-25 21:29:47', '2025-12-17 19:46:53', 'dVDLp6ZA', '6349618'), + (42, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVDLp6ZA', '6353830'), + (42, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVDLp6ZA', '6353831'), + (42, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVDLp6ZA', '6357867'), + (42, 2190, 'not_attending', '2023-08-03 02:31:39', '2025-12-17 19:46:55', 'dVDLp6ZA', '6357892'), + (42, 2191, 'maybe', '2023-08-03 21:47:09', '2025-12-17 19:46:54', 'dVDLp6ZA', '6358652'), + (42, 2193, 'attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dVDLp6ZA', '6358668'), + (42, 2194, 'attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dVDLp6ZA', '6358669'), + (42, 2195, 'attending', '2023-08-05 13:24:44', '2025-12-17 19:46:55', 'dVDLp6ZA', '6359397'), + (42, 2196, 'maybe', '2023-09-08 22:07:21', '2025-12-17 19:46:56', 'dVDLp6ZA', '6359398'), + (42, 2197, 'attending', '2023-09-09 01:21:19', '2025-12-17 19:46:44', 'dVDLp6ZA', '6359399'), + (42, 2198, 'attending', '2023-09-16 19:43:23', '2025-12-17 19:46:45', 'dVDLp6ZA', '6359400'), + (42, 2199, 'attending', '2023-08-06 02:50:22', '2025-12-17 19:46:55', 'dVDLp6ZA', '6359849'), + (42, 2200, 'attending', '2023-08-06 02:50:16', '2025-12-17 19:46:55', 'dVDLp6ZA', '6359850'), + (42, 2202, 'attending', '2023-08-06 18:32:42', '2025-12-17 19:46:54', 'dVDLp6ZA', '6360509'), + (42, 2204, 'attending', '2023-08-09 22:13:17', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361542'), + (42, 2206, 'attending', '2023-08-08 12:43:34', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361659'), + (42, 2208, 'attending', '2023-08-08 12:43:58', '2025-12-17 19:46:54', 'dVDLp6ZA', '6361709'), + (42, 2209, 'attending', '2023-08-20 16:19:56', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361710'), + (42, 2210, 'attending', '2023-08-24 19:31:45', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361711'), + (42, 2211, 'attending', '2023-08-14 12:53:52', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361712'), + (42, 2212, 'attending', '2023-09-20 16:14:38', '2025-12-17 19:46:45', 'dVDLp6ZA', '6361713'), + (42, 2213, 'attending', '2023-08-09 17:36:20', '2025-12-17 19:46:55', 'dVDLp6ZA', '6362935'), + (42, 2215, 'attending', '2023-08-10 22:59:48', '2025-12-17 19:46:55', 'dVDLp6ZA', '6363479'), + (42, 2218, 'attending', '2023-08-15 02:36:40', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367308'), + (42, 2219, 'attending', '2023-08-15 14:24:12', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367309'), + (42, 2220, 'attending', '2023-08-18 13:54:53', '2025-12-17 19:46:56', 'dVDLp6ZA', '6367310'), + (42, 2221, 'not_attending', '2023-08-15 02:36:48', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367357'), + (42, 2222, 'not_attending', '2023-08-15 20:02:26', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367358'), + (42, 2224, 'attending', '2023-08-15 19:59:02', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367635'), + (42, 2227, 'attending', '2023-08-20 19:17:32', '2025-12-17 19:46:55', 'dVDLp6ZA', '6370581'), + (42, 2229, 'attending', '2023-08-20 19:11:50', '2025-12-17 19:46:55', 'dVDLp6ZA', '6373787'), + (42, 2232, 'attending', '2023-08-22 12:32:37', '2025-12-17 19:46:55', 'dVDLp6ZA', '6374818'), + (42, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVDLp6ZA', '6382573'), + (42, 2236, 'maybe', '2023-08-28 20:28:20', '2025-12-17 19:46:55', 'dVDLp6ZA', '6382618'), + (42, 2238, 'attending', '2023-08-31 12:55:50', '2025-12-17 19:46:56', 'dVDLp6ZA', '6387266'), + (42, 2239, 'not_attending', '2023-08-31 17:59:37', '2025-12-17 19:46:56', 'dVDLp6ZA', '6387592'), + (42, 2240, 'attending', '2023-09-04 04:21:07', '2025-12-17 19:46:56', 'dVDLp6ZA', '6388603'), + (42, 2241, 'attending', '2023-09-10 02:59:08', '2025-12-17 19:46:44', 'dVDLp6ZA', '6388604'), + (42, 2242, 'attending', '2023-09-17 19:49:39', '2025-12-17 19:46:45', 'dVDLp6ZA', '6388606'), + (42, 2243, 'attending', '2023-09-04 23:05:33', '2025-12-17 19:46:56', 'dVDLp6ZA', '6393686'), + (42, 2244, 'attending', '2023-09-05 15:58:49', '2025-12-17 19:46:44', 'dVDLp6ZA', '6393700'), + (42, 2245, 'attending', '2023-09-25 16:01:32', '2025-12-17 19:46:45', 'dVDLp6ZA', '6393703'), + (42, 2247, 'attending', '2023-09-05 19:37:29', '2025-12-17 19:46:56', 'dVDLp6ZA', '6394628'), + (42, 2248, 'attending', '2023-09-10 02:58:58', '2025-12-17 19:46:44', 'dVDLp6ZA', '6394629'), + (42, 2249, 'attending', '2023-09-14 02:48:11', '2025-12-17 19:46:45', 'dVDLp6ZA', '6394630'), + (42, 2250, 'attending', '2023-09-20 16:14:32', '2025-12-17 19:46:45', 'dVDLp6ZA', '6394631'), + (42, 2251, 'attending', '2023-09-05 20:28:55', '2025-12-17 19:46:56', 'dVDLp6ZA', '6395182'), + (42, 2252, 'attending', '2023-09-25 02:34:26', '2025-12-17 19:46:45', 'dVDLp6ZA', '6396837'), + (42, 2253, 'attending', '2023-09-15 20:01:06', '2025-12-17 19:46:45', 'dVDLp6ZA', '6401811'), + (42, 2256, 'attending', '2023-09-13 00:21:50', '2025-12-17 19:46:45', 'dVDLp6ZA', '6404369'), + (42, 2259, 'attending', '2023-09-22 02:33:59', '2025-12-17 19:46:45', 'dVDLp6ZA', '6421257'), + (42, 2263, 'attending', '2023-09-25 22:36:32', '2025-12-17 19:46:45', 'dVDLp6ZA', '6429351'), + (42, 2265, 'attending', '2023-10-01 03:43:33', '2025-12-17 19:46:45', 'dVDLp6ZA', '6439625'), + (42, 2267, 'maybe', '2023-10-03 02:06:15', '2025-12-17 19:46:45', 'dVDLp6ZA', '6440034'), + (42, 2268, 'attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVDLp6ZA', '6440863'), + (42, 2270, 'attending', '2023-10-03 02:02:39', '2025-12-17 19:46:46', 'dVDLp6ZA', '6443067'), + (42, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVDLp6ZA', '6445440'), + (42, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVDLp6ZA', '6453951'), + (42, 2277, 'maybe', '2023-10-08 16:13:26', '2025-12-17 19:46:46', 'dVDLp6ZA', '6455211'), + (42, 2279, 'attending', '2023-10-08 19:43:46', '2025-12-17 19:46:46', 'dVDLp6ZA', '6455460'), + (42, 2284, 'attending', '2023-10-10 18:31:20', '2025-12-17 19:46:46', 'dVDLp6ZA', '6460928'), + (42, 2285, 'attending', '2023-10-15 20:50:58', '2025-12-17 19:46:47', 'dVDLp6ZA', '6460929'), + (42, 2286, 'maybe', '2023-11-24 02:52:22', '2025-12-17 19:46:48', 'dVDLp6ZA', '6460930'), + (42, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVDLp6ZA', '6461696'), + (42, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVDLp6ZA', '6462129'), + (42, 2290, 'attending', '2023-10-11 22:04:06', '2025-12-17 19:46:46', 'dVDLp6ZA', '6462214'), + (42, 2291, 'attending', '2023-10-11 22:04:17', '2025-12-17 19:46:46', 'dVDLp6ZA', '6462215'), + (42, 2292, 'attending', '2023-10-19 20:30:04', '2025-12-17 19:46:47', 'dVDLp6ZA', '6462216'), + (42, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVDLp6ZA', '6463218'), + (42, 2294, 'attending', '2023-10-12 14:20:11', '2025-12-17 19:46:46', 'dVDLp6ZA', '6465907'), + (42, 2295, 'not_attending', '2023-10-15 04:03:17', '2025-12-17 19:46:46', 'dVDLp6ZA', '6467832'), + (42, 2299, 'attending', '2023-10-15 20:51:09', '2025-12-17 19:46:46', 'dVDLp6ZA', '6472181'), + (42, 2301, 'maybe', '2023-10-23 02:41:07', '2025-12-17 19:46:46', 'dVDLp6ZA', '6474276'), + (42, 2302, 'attending', '2023-10-23 04:08:06', '2025-12-17 19:46:46', 'dVDLp6ZA', '6482535'), + (42, 2303, 'attending', '2023-10-22 20:26:33', '2025-12-17 19:46:47', 'dVDLp6ZA', '6482691'), + (42, 2304, 'attending', '2023-10-30 00:37:43', '2025-12-17 19:46:47', 'dVDLp6ZA', '6482693'), + (42, 2306, 'attending', '2023-11-07 04:50:38', '2025-12-17 19:46:47', 'dVDLp6ZA', '6484200'), + (42, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVDLp6ZA', '6484680'), + (42, 2308, 'not_attending', '2023-10-23 12:47:21', '2025-12-17 19:46:47', 'dVDLp6ZA', '6485393'), + (42, 2310, 'attending', '2023-10-29 21:12:51', '2025-12-17 19:46:47', 'dVDLp6ZA', '6487709'), + (42, 2314, 'not_attending', '2023-11-02 12:11:08', '2025-12-17 19:46:47', 'dVDLp6ZA', '6493665'), + (42, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVDLp6ZA', '6507741'), + (42, 2320, 'maybe', '2023-11-08 18:01:39', '2025-12-17 19:46:47', 'dVDLp6ZA', '6508647'), + (42, 2322, 'attending', '2023-11-07 04:51:00', '2025-12-17 19:46:48', 'dVDLp6ZA', '6514659'), + (42, 2323, 'attending', '2023-11-19 04:46:02', '2025-12-17 19:46:48', 'dVDLp6ZA', '6514660'), + (42, 2324, 'attending', '2023-12-05 20:57:27', '2025-12-17 19:46:49', 'dVDLp6ZA', '6514662'), + (42, 2325, 'attending', '2023-12-08 04:01:57', '2025-12-17 19:46:36', 'dVDLp6ZA', '6514663'), + (42, 2327, 'maybe', '2023-11-01 20:59:55', '2025-12-17 19:46:47', 'dVDLp6ZA', '6515494'), + (42, 2329, 'maybe', '2023-11-02 16:18:39', '2025-12-17 19:46:47', 'dVDLp6ZA', '6517138'), + (42, 2331, 'attending', '2023-11-05 18:27:21', '2025-12-17 19:46:47', 'dVDLp6ZA', '6518640'), + (42, 2333, 'attending', '2023-11-04 21:01:05', '2025-12-17 19:46:47', 'dVDLp6ZA', '6519103'), + (42, 2335, 'attending', '2023-11-08 04:10:25', '2025-12-17 19:46:47', 'dVDLp6ZA', '6534890'), + (42, 2337, 'attending', '2023-11-08 01:15:09', '2025-12-17 19:46:48', 'dVDLp6ZA', '6535681'), + (42, 2338, 'maybe', '2023-11-10 14:15:55', '2025-12-17 19:46:48', 'dVDLp6ZA', '6538868'), + (42, 2343, 'maybe', '2023-11-19 21:36:35', '2025-12-17 19:46:48', 'dVDLp6ZA', '6574728'), + (42, 2345, 'maybe', '2023-11-21 01:42:08', '2025-12-17 19:46:48', 'dVDLp6ZA', '6582414'), + (42, 2347, 'attending', '2023-11-19 16:00:44', '2025-12-17 19:46:48', 'dVDLp6ZA', '6583053'), + (42, 2350, 'attending', '2023-11-22 05:22:54', '2025-12-17 19:46:48', 'dVDLp6ZA', '6584352'), + (42, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVDLp6ZA', '6584747'), + (42, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVDLp6ZA', '6587097'), + (42, 2354, 'maybe', '2023-11-26 19:18:04', '2025-12-17 19:46:48', 'dVDLp6ZA', '6591742'), + (42, 2356, 'maybe', '2023-12-10 21:28:07', '2025-12-17 19:46:36', 'dVDLp6ZA', '6593340'), + (42, 2358, 'attending', '2023-11-29 18:59:48', '2025-12-17 19:46:48', 'dVDLp6ZA', '6595321'), + (42, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVDLp6ZA', '6609022'), + (42, 2364, 'attending', '2023-12-07 04:28:59', '2025-12-17 19:46:49', 'dVDLp6ZA', '6613011'), + (42, 2366, 'attending', '2023-12-08 21:13:48', '2025-12-17 19:46:36', 'dVDLp6ZA', '6615304'), + (42, 2368, 'attending', '2023-12-11 02:20:03', '2025-12-17 19:46:36', 'dVDLp6ZA', '6621445'), + (42, 2370, 'attending', '2023-12-12 13:45:27', '2025-12-17 19:46:36', 'dVDLp6ZA', '6623765'), + (42, 2371, 'attending', '2023-12-13 02:17:52', '2025-12-17 19:46:36', 'dVDLp6ZA', '6624495'), + (42, 2372, 'maybe', '2023-12-15 21:19:35', '2025-12-17 19:46:36', 'dVDLp6ZA', '6628243'), + (42, 2373, 'attending', '2023-12-18 23:13:40', '2025-12-17 19:46:38', 'dVDLp6ZA', '6632678'), + (42, 2374, 'attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVDLp6ZA', '6632757'), + (42, 2375, 'attending', '2023-12-20 17:20:30', '2025-12-17 19:46:36', 'dVDLp6ZA', '6634548'), + (42, 2378, 'maybe', '2024-01-01 23:15:57', '2025-12-17 19:46:37', 'dVDLp6ZA', '6644006'), + (42, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVDLp6ZA', '6644187'), + (42, 2380, 'attending', '2023-12-30 21:25:52', '2025-12-17 19:46:37', 'dVDLp6ZA', '6645105'), + (42, 2381, 'attending', '2024-01-02 02:15:58', '2025-12-17 19:46:37', 'dVDLp6ZA', '6646398'), + (42, 2382, 'maybe', '2024-01-01 23:16:05', '2025-12-17 19:46:37', 'dVDLp6ZA', '6646401'), + (42, 2385, 'maybe', '2024-01-03 03:13:02', '2025-12-17 19:46:37', 'dVDLp6ZA', '6648943'), + (42, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVDLp6ZA', '6648951'), + (42, 2387, 'attending', '2024-01-03 01:57:16', '2025-12-17 19:46:37', 'dVDLp6ZA', '6648952'), + (42, 2388, 'attending', '2024-01-03 02:20:00', '2025-12-17 19:46:37', 'dVDLp6ZA', '6649244'), + (42, 2391, 'attending', '2024-01-09 02:05:50', '2025-12-17 19:46:37', 'dVDLp6ZA', '6654138'), + (42, 2392, 'maybe', '2024-01-11 16:19:58', '2025-12-17 19:46:37', 'dVDLp6ZA', '6654412'), + (42, 2395, 'attending', '2024-01-04 23:53:48', '2025-12-17 19:46:38', 'dVDLp6ZA', '6654471'), + (42, 2396, 'maybe', '2024-01-16 05:04:32', '2025-12-17 19:46:38', 'dVDLp6ZA', '6655401'), + (42, 2397, 'attending', '2024-01-07 05:19:54', '2025-12-17 19:46:37', 'dVDLp6ZA', '6657379'), + (42, 2398, 'maybe', '2024-01-10 15:16:21', '2025-12-17 19:46:37', 'dVDLp6ZA', '6657381'), + (42, 2399, 'attending', '2024-01-07 18:30:32', '2025-12-17 19:46:37', 'dVDLp6ZA', '6657583'), + (42, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVDLp6ZA', '6661585'), + (42, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVDLp6ZA', '6661588'), + (42, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVDLp6ZA', '6661589'), + (42, 2406, 'maybe', '2024-01-14 15:42:47', '2025-12-17 19:46:40', 'dVDLp6ZA', '6692344'), + (42, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVDLp6ZA', '6699906'), + (42, 2408, 'attending', '2024-01-16 05:08:03', '2025-12-17 19:46:40', 'dVDLp6ZA', '6699907'), + (42, 2409, 'attending', '2024-01-29 18:20:43', '2025-12-17 19:46:41', 'dVDLp6ZA', '6699909'), + (42, 2410, 'attending', '2024-02-04 22:30:26', '2025-12-17 19:46:41', 'dVDLp6ZA', '6699911'), + (42, 2411, 'attending', '2024-02-04 22:30:51', '2025-12-17 19:46:41', 'dVDLp6ZA', '6699913'), + (42, 2412, 'not_attending', '2024-02-02 21:58:39', '2025-12-17 19:46:43', 'dVDLp6ZA', '6700717'), + (42, 2415, 'not_attending', '2024-01-18 04:41:06', '2025-12-17 19:46:40', 'dVDLp6ZA', '6701001'), + (42, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVDLp6ZA', '6701109'), + (42, 2420, 'maybe', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dVDLp6ZA', '6704561'), + (42, 2421, 'attending', '2024-01-21 22:45:46', '2025-12-17 19:46:40', 'dVDLp6ZA', '6704598'), + (42, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVDLp6ZA', '6705219'), + (42, 2426, 'attending', '2024-01-19 20:05:26', '2025-12-17 19:46:40', 'dVDLp6ZA', '6705569'), + (42, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dVDLp6ZA', '6708410'), + (42, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVDLp6ZA', '6710153'), + (42, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVDLp6ZA', '6711552'), + (42, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVDLp6ZA', '6711553'), + (42, 2431, 'maybe', '2024-01-23 03:42:44', '2025-12-17 19:46:41', 'dVDLp6ZA', '6712394'), + (42, 2434, 'attending', '2024-01-25 23:45:02', '2025-12-17 19:46:40', 'dVDLp6ZA', '6716605'), + (42, 2436, 'attending', '2024-01-27 19:52:19', '2025-12-17 19:46:40', 'dVDLp6ZA', '6722687'), + (42, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVDLp6ZA', '6722688'), + (42, 2438, 'maybe', '2024-02-01 21:20:45', '2025-12-17 19:46:41', 'dVDLp6ZA', '6730201'), + (42, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVDLp6ZA', '6730620'), + (42, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVDLp6ZA', '6730642'), + (42, 2442, 'maybe', '2024-02-02 21:58:45', '2025-12-17 19:46:41', 'dVDLp6ZA', '6732647'), + (42, 2444, 'attending', '2024-02-04 22:30:18', '2025-12-17 19:46:41', 'dVDLp6ZA', '6734367'), + (42, 2445, 'attending', '2024-02-11 04:51:18', '2025-12-17 19:46:41', 'dVDLp6ZA', '6734368'), + (42, 2446, 'maybe', '2024-02-23 16:05:30', '2025-12-17 19:46:43', 'dVDLp6ZA', '6734369'), + (42, 2447, 'attending', '2024-03-05 05:19:52', '2025-12-17 19:46:32', 'dVDLp6ZA', '6734370'), + (42, 2448, 'attending', '2024-03-21 03:33:43', '2025-12-17 19:46:33', 'dVDLp6ZA', '6734371'), + (42, 2453, 'attending', '2024-02-08 13:38:21', '2025-12-17 19:46:42', 'dVDLp6ZA', '6740364'), + (42, 2454, 'maybe', '2024-02-18 04:57:12', '2025-12-17 19:46:42', 'dVDLp6ZA', '6740921'), + (42, 2458, 'not_attending', '2024-02-09 21:17:10', '2025-12-17 19:46:41', 'dVDLp6ZA', '6743731'), + (42, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVDLp6ZA', '6743829'), + (42, 2466, 'attending', '2024-02-13 22:13:55', '2025-12-17 19:46:41', 'dVDLp6ZA', '7026777'), + (42, 2467, 'attending', '2024-02-17 13:41:47', '2025-12-17 19:46:43', 'dVDLp6ZA', '7029987'), + (42, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVDLp6ZA', '7030380'), + (42, 2471, 'attending', '2024-02-20 02:21:22', '2025-12-17 19:46:42', 'dVDLp6ZA', '7032425'), + (42, 2472, 'attending', '2024-02-20 02:21:08', '2025-12-17 19:46:42', 'dVDLp6ZA', '7033677'), + (42, 2474, 'attending', '2024-02-20 21:15:51', '2025-12-17 19:46:43', 'dVDLp6ZA', '7035415'), + (42, 2479, 'not_attending', '2024-02-21 04:19:06', '2025-12-17 19:46:43', 'dVDLp6ZA', '7037009'), + (42, 2481, 'not_attending', '2024-02-24 21:23:55', '2025-12-17 19:46:43', 'dVDLp6ZA', '7044715'), + (42, 2487, 'maybe', '2024-02-29 03:22:18', '2025-12-17 19:46:33', 'dVDLp6ZA', '7049279'), + (42, 2489, 'not_attending', '2024-02-27 23:59:51', '2025-12-17 19:46:43', 'dVDLp6ZA', '7050161'), + (42, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVDLp6ZA', '7050318'), + (42, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVDLp6ZA', '7050319'), + (42, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVDLp6ZA', '7050322'), + (42, 2493, 'attending', '2024-03-10 12:39:00', '2025-12-17 19:46:32', 'dVDLp6ZA', '7052471'), + (42, 2498, 'attending', '2024-03-14 23:20:01', '2025-12-17 19:46:33', 'dVDLp6ZA', '7057662'), + (42, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dVDLp6ZA', '7057804'), + (42, 2500, 'maybe', '2024-03-05 01:41:18', '2025-12-17 19:46:43', 'dVDLp6ZA', '7058603'), + (42, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVDLp6ZA', '7072824'), + (42, 2508, 'attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVDLp6ZA', '7074348'), + (42, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dVDLp6ZA', '7074364'), + (42, 2534, 'maybe', '2024-03-13 16:18:52', '2025-12-17 19:46:32', 'dVDLp6ZA', '7076875'), + (42, 2537, 'not_attending', '2024-03-18 15:56:13', '2025-12-17 19:46:33', 'dVDLp6ZA', '7085484'), + (42, 2538, 'attending', '2024-03-21 03:33:33', '2025-12-17 19:46:33', 'dVDLp6ZA', '7085485'), + (42, 2539, 'not_attending', '2024-03-22 17:38:09', '2025-12-17 19:46:33', 'dVDLp6ZA', '7085486'), + (42, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVDLp6ZA', '7089267'), + (42, 2541, 'attending', '2024-03-17 02:24:20', '2025-12-17 19:46:33', 'dVDLp6ZA', '7089404'), + (42, 2548, 'attending', '2024-03-23 18:28:19', '2025-12-17 19:46:33', 'dVDLp6ZA', '7098747'), + (42, 2549, 'attending', '2024-03-26 14:58:02', '2025-12-17 19:46:33', 'dVDLp6ZA', '7099657'), + (42, 2552, 'maybe', '2024-03-27 22:31:58', '2025-12-17 19:46:33', 'dVDLp6ZA', '7111123'), + (42, 2553, 'attending', '2024-03-29 11:57:38', '2025-12-17 19:46:33', 'dVDLp6ZA', '7113468'), + (42, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVDLp6ZA', '7114856'), + (42, 2555, 'attending', '2024-03-31 03:45:05', '2025-12-17 19:46:33', 'dVDLp6ZA', '7114951'), + (42, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVDLp6ZA', '7114955'), + (42, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVDLp6ZA', '7114956'), + (42, 2558, 'attending', '2024-04-28 02:38:16', '2025-12-17 19:46:35', 'dVDLp6ZA', '7114957'), + (42, 2564, 'attending', '2024-04-02 19:16:46', '2025-12-17 19:46:33', 'dVDLp6ZA', '7134735'), + (42, 2567, 'attending', '2024-04-04 01:13:14', '2025-12-17 19:46:33', 'dVDLp6ZA', '7144962'), + (42, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVDLp6ZA', '7153615'), + (42, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVDLp6ZA', '7159484'), + (42, 2573, 'maybe', '2024-04-08 22:59:10', '2025-12-17 19:46:34', 'dVDLp6ZA', '7160612'), + (42, 2575, 'maybe', '2024-04-10 03:18:51', '2025-12-17 19:46:33', 'dVDLp6ZA', '7164534'), + (42, 2576, 'not_attending', '2024-04-23 02:44:00', '2025-12-17 19:46:34', 'dVDLp6ZA', '7164538'), + (42, 2584, 'not_attending', '2024-04-16 13:13:40', '2025-12-17 19:46:34', 'dVDLp6ZA', '7175057'), + (42, 2585, 'maybe', '2024-04-18 03:24:03', '2025-12-17 19:46:34', 'dVDLp6ZA', '7175828'), + (42, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVDLp6ZA', '7178446'), + (42, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dVDLp6ZA', '7220467'), + (42, 2603, 'attending', '2024-05-09 02:38:41', '2025-12-17 19:46:35', 'dVDLp6ZA', '7225669'), + (42, 2604, 'attending', '2024-05-26 21:25:06', '2025-12-17 19:46:36', 'dVDLp6ZA', '7225670'), + (42, 2609, 'not_attending', '2024-04-30 01:20:10', '2025-12-17 19:46:35', 'dVDLp6ZA', '7240354'), + (42, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dVDLp6ZA', '7251633'), + (42, 2620, 'maybe', '2024-05-09 02:38:47', '2025-12-17 19:46:35', 'dVDLp6ZA', '7258097'), + (42, 2626, 'attending', '2024-05-14 17:29:55', '2025-12-17 19:46:35', 'dVDLp6ZA', '7264723'), + (42, 2628, 'attending', '2024-05-24 02:33:49', '2025-12-17 19:46:36', 'dVDLp6ZA', '7264725'), + (42, 2629, 'not_attending', '2024-05-24 02:33:47', '2025-12-17 19:46:28', 'dVDLp6ZA', '7264726'), + (42, 2630, 'maybe', '2024-05-12 13:27:17', '2025-12-17 19:46:35', 'dVDLp6ZA', '7264801'), + (42, 2638, 'attending', '2024-05-15 21:42:18', '2025-12-17 19:46:35', 'dVDLp6ZA', '7273117'), + (42, 2647, 'attending', '2024-05-25 01:13:19', '2025-12-17 19:46:28', 'dVDLp6ZA', '7282057'), + (42, 2650, 'attending', '2024-05-24 16:28:40', '2025-12-17 19:46:35', 'dVDLp6ZA', '7288199'), + (42, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dVDLp6ZA', '7302674'), + (42, 2678, 'maybe', '2024-06-11 11:48:14', '2025-12-17 19:46:28', 'dVDLp6ZA', '7319489'), + (42, 2679, 'not_attending', '2024-06-11 11:48:22', '2025-12-17 19:46:29', 'dVDLp6ZA', '7319490'), + (42, 2688, 'not_attending', '2024-06-22 14:25:24', '2025-12-17 19:46:29', 'dVDLp6ZA', '7324073'), + (42, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dVDLp6ZA', '7324074'), + (42, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dVDLp6ZA', '7324075'), + (42, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dVDLp6ZA', '7324078'), + (42, 2696, 'attending', '2024-08-18 21:43:40', '2025-12-17 19:46:32', 'dVDLp6ZA', '7324081'), + (42, 2697, 'attending', '2024-08-20 17:00:37', '2025-12-17 19:46:32', 'dVDLp6ZA', '7324082'), + (42, 2698, 'attending', '2024-09-04 01:06:14', '2025-12-17 19:46:24', 'dVDLp6ZA', '7324083'), + (42, 2701, 'maybe', '2024-06-21 22:54:26', '2025-12-17 19:46:29', 'dVDLp6ZA', '7324391'), + (42, 2706, 'maybe', '2024-06-13 20:22:09', '2025-12-17 19:46:28', 'dVDLp6ZA', '7324947'), + (42, 2707, 'not_attending', '2024-06-13 20:17:58', '2025-12-17 19:46:28', 'dVDLp6ZA', '7324952'), + (42, 2710, 'maybe', '2024-06-14 00:46:34', '2025-12-17 19:46:28', 'dVDLp6ZA', '7325108'), + (42, 2719, 'attending', '2024-06-18 18:13:52', '2025-12-17 19:46:29', 'dVDLp6ZA', '7331305'), + (42, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dVDLp6ZA', '7331457'), + (42, 2724, 'maybe', '2024-06-23 13:35:50', '2025-12-17 19:46:29', 'dVDLp6ZA', '7332562'), + (42, 2742, 'maybe', '2024-07-01 17:27:52', '2025-12-17 19:46:29', 'dVDLp6ZA', '7345167'), + (42, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dVDLp6ZA', '7363643'), + (42, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dVDLp6ZA', '7368606'), + (42, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dVDLp6ZA', '7397462'), + (42, 2806, 'maybe', '2024-09-09 04:13:14', '2025-12-17 19:46:25', 'dVDLp6ZA', '7404888'), + (42, 2808, 'attending', '2024-08-27 03:32:21', '2025-12-17 19:46:32', 'dVDLp6ZA', '7412860'), + (42, 2814, 'attending', '2024-09-08 15:48:43', '2025-12-17 19:46:24', 'dVDLp6ZA', '7424267'), + (42, 2817, 'maybe', '2024-09-29 16:08:34', '2025-12-17 19:46:25', 'dVDLp6ZA', '7424270'), + (42, 2821, 'attending', '2024-10-08 18:44:36', '2025-12-17 19:46:26', 'dVDLp6ZA', '7424275'), + (42, 2822, 'attending', '2024-10-21 23:34:36', '2025-12-17 19:46:26', 'dVDLp6ZA', '7424276'), + (42, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dVDLp6ZA', '7432751'), + (42, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dVDLp6ZA', '7432752'), + (42, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dVDLp6ZA', '7432753'), + (42, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432754'), + (42, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432755'), + (42, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432756'), + (42, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432758'), + (42, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432759'), + (42, 2832, 'attending', '2024-09-09 20:36:42', '2025-12-17 19:46:24', 'dVDLp6ZA', '7433324'), + (42, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dVDLp6ZA', '7433834'), + (42, 2836, 'attending', '2024-09-14 12:45:02', '2025-12-17 19:46:25', 'dVDLp6ZA', '7438708'), + (42, 2839, 'attending', '2024-09-13 03:38:42', '2025-12-17 19:46:25', 'dVDLp6ZA', '7439262'), + (42, 2843, 'maybe', '2024-09-20 16:22:13', '2025-12-17 19:46:25', 'dVDLp6ZA', '7450219'), + (42, 2845, 'not_attending', '2024-09-21 18:45:15', '2025-12-17 19:46:25', 'dVDLp6ZA', '7452129'), + (42, 2851, 'attending', '2024-09-28 20:40:31', '2025-12-17 19:46:25', 'dVDLp6ZA', '7461883'), + (42, 2857, 'maybe', '2024-10-23 20:17:17', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469387'), + (42, 2858, 'attending', '2024-10-11 19:38:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469388'), + (42, 2860, 'maybe', '2024-10-01 20:31:47', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469393'), + (42, 2861, 'maybe', '2024-09-30 23:32:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469826'), + (42, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dVDLp6ZA', '7470197'), + (42, 2870, 'attending', '2024-10-05 21:22:31', '2025-12-17 19:46:26', 'dVDLp6ZA', '7475068'), + (42, 2871, 'maybe', '2024-10-14 00:48:57', '2025-12-17 19:46:26', 'dVDLp6ZA', '7480481'), + (42, 2878, 'maybe', '2024-10-10 22:59:48', '2025-12-17 19:46:26', 'dVDLp6ZA', '7633857'), + (42, 2881, 'maybe', '2024-10-27 13:18:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7644047'), + (42, 2883, 'maybe', '2024-10-17 01:05:57', '2025-12-17 19:46:26', 'dVDLp6ZA', '7649157'), + (42, 2885, 'attending', '2024-10-17 14:52:57', '2025-12-17 19:46:26', 'dVDLp6ZA', '7649944'), + (42, 2886, 'maybe', '2024-11-02 00:45:47', '2025-12-17 19:46:26', 'dVDLp6ZA', '7654498'), + (42, 2891, 'attending', '2024-10-25 15:58:18', '2025-12-17 19:46:26', 'dVDLp6ZA', '7668163'), + (42, 2892, 'not_attending', '2024-10-27 21:26:55', '2025-12-17 19:46:26', 'dVDLp6ZA', '7672064'), + (42, 2894, 'attending', '2024-11-02 19:34:35', '2025-12-17 19:46:26', 'dVDLp6ZA', '7680059'), + (42, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dVDLp6ZA', '7685613'), + (42, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dVDLp6ZA', '7688194'), + (42, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dVDLp6ZA', '7688196'), + (42, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dVDLp6ZA', '7688289'), + (42, 2906, 'attending', '2024-11-09 22:18:05', '2025-12-17 19:46:26', 'dVDLp6ZA', '7689366'), + (42, 2909, 'maybe', '2024-11-11 02:06:45', '2025-12-17 19:46:27', 'dVDLp6ZA', '7689771'), + (42, 2912, 'maybe', '2024-11-17 03:44:51', '2025-12-17 19:46:27', 'dVDLp6ZA', '7692763'), + (42, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dVDLp6ZA', '7697552'), + (42, 2915, 'maybe', '2024-11-17 17:02:52', '2025-12-17 19:46:27', 'dVDLp6ZA', '7698151'), + (42, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dVDLp6ZA', '7699878'), + (42, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dVDLp6ZA', '7704043'), + (42, 2924, 'maybe', '2024-11-26 15:52:05', '2025-12-17 19:46:28', 'dVDLp6ZA', '7712467'), + (42, 2925, 'attending', '2024-12-09 19:16:25', '2025-12-17 19:46:21', 'dVDLp6ZA', '7713584'), + (42, 2926, 'attending', '2024-12-03 04:18:10', '2025-12-17 19:46:21', 'dVDLp6ZA', '7713585'), + (42, 2927, 'attending', '2024-12-04 00:38:19', '2025-12-17 19:46:22', 'dVDLp6ZA', '7713586'), + (42, 2930, 'maybe', '2024-12-07 20:14:01', '2025-12-17 19:46:21', 'dVDLp6ZA', '7724554'), + (42, 2931, 'attending', '2024-12-07 20:13:50', '2025-12-17 19:46:21', 'dVDLp6ZA', '7725490'), + (42, 2954, 'attending', '2024-12-14 20:20:09', '2025-12-17 19:46:21', 'dVDLp6ZA', '7734260'), + (42, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dVDLp6ZA', '7738518'), + (42, 2962, 'maybe', '2024-12-25 04:41:48', '2025-12-17 19:46:22', 'dVDLp6ZA', '7750632'), + (42, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dVDLp6ZA', '7750636'), + (42, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dVDLp6ZA', '7796540'), + (42, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dVDLp6ZA', '7796541'), + (42, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dVDLp6ZA', '7796542'), + (42, 2968, 'attending', '2025-01-08 21:38:31', '2025-12-17 19:46:22', 'dVDLp6ZA', '7797967'), + (42, 2974, 'attending', '2025-01-18 18:59:10', '2025-12-17 19:46:22', 'dVDLp6ZA', '7814958'), + (42, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dVDLp6ZA', '7825913'), + (42, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dVDLp6ZA', '7826209'), + (42, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dVDLp6ZA', '7834742'), + (42, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842108'), + (42, 2990, 'attending', '2025-02-15 16:22:06', '2025-12-17 19:46:23', 'dVDLp6ZA', '7842898'), + (42, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842902'), + (42, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842903'), + (42, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dVDLp6ZA', '7842904'), + (42, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dVDLp6ZA', '7842905'), + (42, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842906'), + (42, 2996, 'attending', '2025-02-25 00:54:56', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842907'), + (42, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'dVDLp6ZA', '7842909'), + (42, 3005, 'maybe', '2025-02-19 01:24:23', '2025-12-17 19:46:24', 'dVDLp6ZA', '7854604'), + (42, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dVDLp6ZA', '7855719'), + (42, 3007, 'attending', '2025-02-24 20:31:20', '2025-12-17 19:46:24', 'dVDLp6ZA', '7860683'), + (42, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dVDLp6ZA', '7860684'), + (42, 3011, 'attending', '2025-03-01 21:43:51', '2025-12-17 19:46:24', 'dVDLp6ZA', '7865624'), + (42, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dVDLp6ZA', '7866095'), + (42, 3013, 'maybe', '2025-03-04 03:13:27', '2025-12-17 19:46:18', 'dVDLp6ZA', '7869170'), + (42, 3014, 'attending', '2025-03-30 20:26:45', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869185'), + (42, 3015, 'attending', '2025-04-21 12:44:48', '2025-12-17 19:46:20', 'dVDLp6ZA', '7869186'), + (42, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869188'), + (42, 3023, 'attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869194'), + (42, 3024, 'attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869195'), + (42, 3028, 'attending', '2025-04-03 02:07:47', '2025-12-17 19:46:20', 'dVDLp6ZA', '7869199'), + (42, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dVDLp6ZA', '7869201'), + (42, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dVDLp6ZA', '7877465'), + (42, 3036, 'maybe', '2025-03-13 22:28:28', '2025-12-17 19:46:19', 'dVDLp6ZA', '7880952'), + (42, 3043, 'attending', '2025-03-15 19:33:48', '2025-12-17 19:46:19', 'dVDLp6ZA', '7882587'), + (42, 3044, 'attending', '2025-03-26 02:51:46', '2025-12-17 19:46:19', 'dVDLp6ZA', '7882690'), + (42, 3045, 'attending', '2025-04-04 22:16:24', '2025-12-17 19:46:19', 'dVDLp6ZA', '7882691'), + (42, 3046, 'attending', '2025-04-12 21:07:03', '2025-12-17 19:46:20', 'dVDLp6ZA', '7882692'), + (42, 3047, 'attending', '2025-04-26 21:17:24', '2025-12-17 19:46:20', 'dVDLp6ZA', '7882693'), + (42, 3055, 'attending', '2025-03-26 01:50:19', '2025-12-17 19:46:19', 'dVDLp6ZA', '7888118'), + (42, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dVDLp6ZA', '7888250'), + (42, 3072, 'attending', '2025-04-03 01:41:01', '2025-12-17 19:46:19', 'dVDLp6ZA', '7895449'), + (42, 3085, 'not_attending', '2025-04-09 22:38:44', '2025-12-17 19:46:20', 'dVDLp6ZA', '7903688'), + (42, 3086, 'maybe', '2025-04-09 22:38:28', '2025-12-17 19:46:20', 'dVDLp6ZA', '7903852'), + (42, 3088, 'attending', '2025-06-03 17:13:02', '2025-12-17 19:46:15', 'dVDLp6ZA', '7904777'), + (42, 3090, 'maybe', '2025-04-16 13:28:15', '2025-12-17 19:46:20', 'dVDLp6ZA', '7914315'), + (42, 3094, 'attending', '2025-05-03 19:51:56', '2025-12-17 19:46:21', 'dVDLp6ZA', '8342292'), + (42, 3095, 'attending', '2025-04-28 22:55:40', '2025-12-17 19:46:20', 'dVDLp6ZA', '8342293'), + (42, 3104, 'attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVDLp6ZA', '8349164'), + (42, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVDLp6ZA', '8349545'), + (42, 3108, 'attending', '2025-05-03 19:51:21', '2025-12-17 19:46:20', 'dVDLp6ZA', '8351411'), + (42, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVDLp6ZA', '8353584'), + (42, 3126, 'attending', '2025-05-11 16:31:11', '2025-12-17 19:46:21', 'dVDLp6ZA', '8365614'), + (42, 3130, 'not_attending', '2025-05-12 12:36:37', '2025-12-17 19:46:21', 'dVDLp6ZA', '8367403'), + (42, 3131, 'attending', '2025-05-13 00:08:34', '2025-12-17 19:46:21', 'dVDLp6ZA', '8368028'), + (42, 3132, 'attending', '2025-05-18 14:49:44', '2025-12-17 19:46:21', 'dVDLp6ZA', '8368029'), + (42, 3134, 'attending', '2025-05-13 00:39:35', '2025-12-17 19:46:21', 'dVDLp6ZA', '8368031'), + (42, 3136, 'attending', '2025-05-18 14:49:16', '2025-12-17 19:46:21', 'dVDLp6ZA', '8374152'), + (42, 3139, 'attending', '2025-05-24 21:07:22', '2025-12-17 19:46:21', 'dVDLp6ZA', '8377425'), + (42, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dVDLp6ZA', '8388462'), + (42, 3150, 'attending', '2025-06-06 01:01:22', '2025-12-17 19:46:15', 'dVDLp6ZA', '8393174'), + (42, 3151, 'attending', '2025-05-31 18:52:24', '2025-12-17 19:46:14', 'dVDLp6ZA', '8393497'), + (42, 3153, 'maybe', '2025-06-03 17:12:56', '2025-12-17 19:46:15', 'dVDLp6ZA', '8400273'), + (42, 3154, 'attending', '2025-06-26 02:13:33', '2025-12-17 19:46:15', 'dVDLp6ZA', '8400274'), + (42, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dVDLp6ZA', '8400275'), + (42, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dVDLp6ZA', '8400276'), + (42, 3157, 'maybe', '2025-06-05 20:42:07', '2025-12-17 19:46:15', 'dVDLp6ZA', '8401407'), + (42, 3169, 'maybe', '2025-06-08 18:09:28', '2025-12-17 19:46:15', 'dVDLp6ZA', '8404977'), + (42, 3181, 'maybe', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dVDLp6ZA', '8430783'), + (42, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dVDLp6ZA', '8430784'), + (42, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dVDLp6ZA', '8430799'), + (42, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dVDLp6ZA', '8430800'), + (42, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dVDLp6ZA', '8430801'), + (42, 3188, 'maybe', '2025-07-13 19:07:59', '2025-12-17 19:46:17', 'dVDLp6ZA', '8438709'), + (42, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVDLp6ZA', '8457738'), + (42, 3195, 'maybe', '2025-07-27 00:32:05', '2025-12-17 19:46:17', 'dVDLp6ZA', '8458118'), + (42, 3196, 'maybe', '2025-08-09 19:21:27', '2025-12-17 19:46:17', 'dVDLp6ZA', '8458543'), + (42, 3198, 'attending', '2025-08-14 17:20:10', '2025-12-17 19:46:18', 'dVDLp6ZA', '8459268'), + (42, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVDLp6ZA', '8459566'), + (42, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVDLp6ZA', '8459567'), + (42, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dVDLp6ZA', '8459568'), + (42, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVDLp6ZA', '8461032'), + (42, 3210, 'attending', '2025-08-20 23:22:15', '2025-12-17 19:46:18', 'dVDLp6ZA', '8471162'), + (42, 3214, 'attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVDLp6ZA', '8477877'), + (42, 3225, 'attending', '2025-08-19 00:52:55', '2025-12-17 19:46:18', 'dVDLp6ZA', '8485680'), + (42, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'dVDLp6ZA', '8485688'), + (42, 3235, 'maybe', '2025-08-17 15:19:33', '2025-12-17 19:46:18', 'dVDLp6ZA', '8490587'), + (42, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVDLp6ZA', '8493552'), + (42, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dVDLp6ZA', '8493553'), + (42, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVDLp6ZA', '8493554'), + (42, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVDLp6ZA', '8493555'), + (42, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVDLp6ZA', '8493556'), + (42, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVDLp6ZA', '8493557'), + (42, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVDLp6ZA', '8493558'), + (42, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVDLp6ZA', '8493559'), + (42, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVDLp6ZA', '8493560'), + (42, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dVDLp6ZA', '8493561'), + (42, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVDLp6ZA', '8493572'), + (42, 3258, 'maybe', '2025-09-02 00:44:58', '2025-12-17 19:46:11', 'dVDLp6ZA', '8510285'), + (42, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dVDLp6ZA', '8540725'), + (42, 3289, 'attending', '2025-10-14 12:13:40', '2025-12-17 19:46:14', 'dVDLp6ZA', '8542939'), + (42, 3295, 'attending', '2025-10-28 21:07:19', '2025-12-17 19:46:14', 'dVDLp6ZA', '8547541'), + (42, 3300, 'attending', '2025-11-07 10:54:48', '2025-12-17 19:46:14', 'dVDLp6ZA', '8549145'), + (42, 3302, 'attending', '2025-11-08 11:45:49', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550022'), + (42, 3304, 'not_attending', '2025-11-08 11:45:53', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550024'), + (42, 3305, 'attending', '2025-12-03 00:55:09', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550025'), + (42, 3306, 'not_attending', '2025-12-07 22:38:09', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550026'), + (42, 3307, 'attending', '2025-12-13 20:30:57', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550027'), + (42, 3308, 'attending', '2025-11-09 22:16:14', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550408'), + (42, 3309, 'attending', '2025-11-14 22:56:07', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550409'), + (42, 3310, 'attending', '2025-11-24 03:20:27', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550410'), + (42, 3311, 'not_attending', '2025-12-08 01:50:07', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550412'), + (42, 3318, 'not_attending', '2025-11-07 02:02:38', '2025-12-17 19:46:14', 'dVDLp6ZA', '8553025'), + (42, 3319, 'not_attending', '2025-11-08 01:36:31', '2025-12-17 19:46:14', 'dVDLp6ZA', '8553114'), + (42, 3320, 'maybe', '2025-11-13 00:23:32', '2025-12-17 19:46:14', 'dVDLp6ZA', '8555219'), + (42, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dVDLp6ZA', '8555421'), + (42, 3323, 'attending', '2025-11-15 12:00:42', '2025-12-17 19:46:14', 'dVDLp6ZA', '8555522'), + (42, 3332, 'maybe', '2025-12-02 21:38:23', '2025-12-17 19:46:11', 'dVDLp6ZA', '8562248'), + (43, 10, 'attending', '2020-03-25 23:38:55', '2025-12-17 19:47:56', 'x4oeVOJm', '2958053'), + (43, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'x4oeVOJm', '2961309'), + (43, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'x4oeVOJm', '2961895'), + (43, 34, 'attending', '2020-03-25 23:14:10', '2025-12-17 19:47:56', 'x4oeVOJm', '2966259'), + (43, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'x4oeVOJm', '2969208'), + (43, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'x4oeVOJm', '2971546'), + (43, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'x4oeVOJm', '2974534'), + (43, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'x4oeVOJm', '2974955'), + (43, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'x4oeVOJm', '2975384'), + (43, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'x4oeVOJm', '2975385'), + (43, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'x4oeVOJm', '2976575'), + (43, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'x4oeVOJm', '2977343'), + (43, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'x4oeVOJm', '2977812'), + (43, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'x4oeVOJm', '2977931'), + (43, 74, 'attending', '2020-04-18 00:24:39', '2025-12-17 19:47:57', 'x4oeVOJm', '2978244'), + (43, 75, 'attending', '2020-04-25 17:17:48', '2025-12-17 19:47:57', 'x4oeVOJm', '2978245'), + (43, 76, 'attending', '2020-04-18 00:24:43', '2025-12-17 19:47:57', 'x4oeVOJm', '2978246'), + (43, 77, 'attending', '2020-04-18 00:24:48', '2025-12-17 19:47:57', 'x4oeVOJm', '2978247'), + (43, 78, 'not_attending', '2020-05-19 18:49:52', '2025-12-17 19:47:57', 'x4oeVOJm', '2978249'), + (43, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'x4oeVOJm', '2978250'), + (43, 82, 'attending', '2020-04-10 22:33:23', '2025-12-17 19:47:57', 'x4oeVOJm', '2978433'), + (43, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'x4oeVOJm', '2978438'), + (43, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'x4oeVOJm', '2980871'), + (43, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'x4oeVOJm', '2981388'), + (43, 92, 'attending', '2020-04-19 07:02:28', '2025-12-17 19:47:57', 'x4oeVOJm', '2986743'), + (43, 103, 'attending', '2020-04-24 12:39:50', '2025-12-17 19:47:57', 'x4oeVOJm', '2991407'), + (43, 104, 'attending', '2020-04-24 13:41:50', '2025-12-17 19:47:57', 'x4oeVOJm', '2991471'), + (43, 106, 'attending', '2020-04-26 22:32:42', '2025-12-17 19:47:57', 'x4oeVOJm', '2993501'), + (43, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'x4oeVOJm', '2994480'), + (43, 110, 'not_attending', '2020-05-03 15:13:01', '2025-12-17 19:47:57', 'x4oeVOJm', '2994906'), + (43, 114, 'not_attending', '2020-04-28 14:40:24', '2025-12-17 19:47:57', 'x4oeVOJm', '2994911'), + (43, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', 'x4oeVOJm', '3001217'), + (43, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'x4oeVOJm', '3023063'), + (43, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'x4oeVOJm', '3034321'), + (43, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'x4oeVOJm', '3035881'), + (43, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'x4oeVOJm', '3049983'), + (43, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'x4oeVOJm', '3058959'), + (43, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'x4oeVOJm', '3067093'), + (43, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'x4oeVOJm', '3075228'), + (43, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'x4oeVOJm', '3075456'), + (43, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'x4oeVOJm', '3083791'), + (43, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'x4oeVOJm', '3085151'), + (43, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'x4oeVOJm', '3087265'), + (43, 197, 'attending', '2020-08-21 00:20:28', '2025-12-17 19:47:56', 'x4oeVOJm', '3087266'), + (43, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'x4oeVOJm', '3087267'), + (43, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'x4oeVOJm', '3087268'), + (43, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'x4oeVOJm', '3088653'), + (43, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'x4oeVOJm', '3106813'), + (43, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'x4oeVOJm', '3129980'), + (43, 225, 'attending', '2020-07-13 21:33:15', '2025-12-17 19:47:55', 'x4oeVOJm', '3132378'), + (43, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'x4oeVOJm', '3132817'), + (43, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'x4oeVOJm', '3132820'), + (43, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'x4oeVOJm', '3155321'), + (43, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'x4oeVOJm', '3162006'), + (43, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'x4oeVOJm', '3163442'), + (43, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'x4oeVOJm', '3172832'), + (43, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'x4oeVOJm', '3172833'), + (43, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'x4oeVOJm', '3172834'), + (43, 296, 'attending', '2020-08-10 02:04:42', '2025-12-17 19:47:56', 'x4oeVOJm', '3172876'), + (43, 305, 'attending', '2020-08-14 14:27:01', '2025-12-17 19:47:56', 'x4oeVOJm', '3179555'), + (43, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'x4oeVOJm', '3186057'), + (43, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'x4oeVOJm', '3191735'), + (43, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'x4oeVOJm', '3200209'), + (43, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', 'x4oeVOJm', '3214207'), + (43, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'x4oeVOJm', '3217037'), + (43, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'x4oeVOJm', '3218510'), + (43, 379, 'attending', '2020-09-26 00:17:56', '2025-12-17 19:47:52', 'x4oeVOJm', '3226266'), + (43, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'x4oeVOJm', '3228698'), + (43, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'x4oeVOJm', '3228699'), + (43, 387, 'attending', '2020-10-17 16:01:40', '2025-12-17 19:47:52', 'x4oeVOJm', '3228700'), + (43, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'x4oeVOJm', '3228701'), + (43, 424, 'attending', '2020-10-12 00:53:47', '2025-12-17 19:47:52', 'x4oeVOJm', '3245751'), + (43, 427, 'attending', '2020-10-14 16:13:55', '2025-12-17 19:47:53', 'x4oeVOJm', '3250233'), + (43, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'x4oeVOJm', '3256168'), + (43, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'x4oeVOJm', '3263578'), + (43, 456, 'attending', '2020-11-05 05:32:38', '2025-12-17 19:47:54', 'x4oeVOJm', '3276428'), + (43, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'x4oeVOJm', '3281467'), + (43, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'x4oeVOJm', '3281470'), + (43, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'x4oeVOJm', '3281829'), + (43, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'x4oeVOJm', '3285413'), + (43, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'x4oeVOJm', '3285414'), + (43, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'x4oeVOJm', '3297764'), + (43, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'x4oeVOJm', '3313856'), + (43, 499, 'attending', '2020-11-30 03:46:08', '2025-12-17 19:47:55', 'x4oeVOJm', '3314909'), + (43, 500, 'attending', '2020-12-14 02:14:48', '2025-12-17 19:47:55', 'x4oeVOJm', '3314964'), + (43, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'x4oeVOJm', '3323365'), + (43, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'x4oeVOJm', '3329383'), + (43, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'x4oeVOJm', '3351539'), + (43, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'x4oeVOJm', '3386848'), + (43, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'x4oeVOJm', '3389527'), + (43, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'x4oeVOJm', '3396499'), + (43, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'x4oeVOJm', '3403650'), + (43, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'x4oeVOJm', '3406988'), + (43, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'x4oeVOJm', '3416576'), + (43, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'x4oeVOJm', '3426074'), + (43, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'x4oeVOJm', '3430267'), + (43, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'x4oeVOJm', '3470303'), + (43, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'x4oeVOJm', '3470305'), + (43, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'x4oeVOJm', '3470991'), + (43, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'x4oeVOJm', '3517815'), + (43, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'x4oeVOJm', '3517816'), + (43, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'x4oeVOJm', '3523941'), + (43, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'x4oeVOJm', '3533850'), + (43, 637, 'attending', '2021-03-01 17:30:57', '2025-12-17 19:47:51', 'x4oeVOJm', '3536411'), + (43, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'x4oeVOJm', '3536632'), + (43, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'x4oeVOJm', '3536656'), + (43, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'x4oeVOJm', '3539916'), + (43, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'x4oeVOJm', '3539917'), + (43, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'x4oeVOJm', '3539918'), + (43, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'x4oeVOJm', '3539919'), + (43, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'x4oeVOJm', '3539920'), + (43, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'x4oeVOJm', '3539921'), + (43, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'x4oeVOJm', '3539922'), + (43, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'x4oeVOJm', '3539923'), + (43, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'x4oeVOJm', '3539927'), + (43, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'x4oeVOJm', '3582734'), + (43, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'x4oeVOJm', '3583262'), + (43, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'x4oeVOJm', '3619523'), + (43, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'x4oeVOJm', '3661369'), + (43, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'x4oeVOJm', '3674262'), + (43, 761, 'attending', '2021-04-16 12:30:47', '2025-12-17 19:47:46', 'x4oeVOJm', '3716041'), + (43, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'x4oeVOJm', '3730212'), + (43, 784, 'attending', '2021-05-01 15:15:08', '2025-12-17 19:47:46', 'x4oeVOJm', '3768775'), + (43, 792, 'attending', '2021-05-07 17:54:27', '2025-12-17 19:47:46', 'x4oeVOJm', '3793156'), + (43, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'x4oeVOJm', '3974109'), + (43, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'x4oeVOJm', '3975311'), + (43, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'x4oeVOJm', '3975312'), + (43, 835, 'not_attending', '2021-06-04 00:28:36', '2025-12-17 19:47:47', 'x4oeVOJm', '3992486'), + (43, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'x4oeVOJm', '3994992'), + (43, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'x4oeVOJm', '4014338'), + (43, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'x4oeVOJm', '4021848'), + (43, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'x4oeVOJm', '4136744'), + (43, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'x4oeVOJm', '4136937'), + (43, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'x4oeVOJm', '4136938'), + (43, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'x4oeVOJm', '4136947'), + (43, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oeVOJm', '4210314'), + (43, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oeVOJm', '4225444'), + (43, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'x4oeVOJm', '4239259'), + (43, 900, 'maybe', '2021-07-24 13:14:38', '2025-12-17 19:47:40', 'x4oeVOJm', '4240316'), + (43, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oeVOJm', '4240317'), + (43, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'x4oeVOJm', '4240318'), + (43, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'x4oeVOJm', '4240320'), + (43, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'x4oeVOJm', '4250163'), + (43, 906, 'not_attending', '2021-07-05 05:49:09', '2025-12-17 19:47:39', 'x4oeVOJm', '4253431'), + (43, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oeVOJm', '4275957'), + (43, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oeVOJm', '4277819'), + (43, 932, 'attending', '2021-07-22 22:55:33', '2025-12-17 19:47:42', 'x4oeVOJm', '4301664'), + (43, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oeVOJm', '4301723'), + (43, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'x4oeVOJm', '4302093'), + (43, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oeVOJm', '4304151'), + (43, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'x4oeVOJm', '4356801'), + (43, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'x4oeVOJm', '4366186'), + (43, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'x4oeVOJm', '4366187'), + (43, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'x4oeVOJm', '4420735'), + (43, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'x4oeVOJm', '4420738'), + (43, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'x4oeVOJm', '4420739'), + (43, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'x4oeVOJm', '4420741'), + (43, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'x4oeVOJm', '4420744'), + (43, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'x4oeVOJm', '4420747'), + (43, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'x4oeVOJm', '4420748'), + (43, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'x4oeVOJm', '4420749'), + (43, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'x4oeVOJm', '4461883'), + (43, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'x4oeVOJm', '4508342'), + (43, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'x4oeVOJm', '4568602'), + (43, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'x4oeVOJm', '4572153'), + (43, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'x4oeVOJm', '4585962'), + (43, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'x4oeVOJm', '4596356'), + (43, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'x4oeVOJm', '4598860'), + (43, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'x4oeVOJm', '4598861'), + (43, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'x4oeVOJm', '4602797'), + (43, 1102, 'attending', '2021-11-14 21:21:27', '2025-12-17 19:47:37', 'x4oeVOJm', '4612098'), + (43, 1114, 'not_attending', '2021-11-14 00:08:37', '2025-12-17 19:47:36', 'x4oeVOJm', '4637896'), + (43, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'x4oeVOJm', '4642994'), + (43, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'x4oeVOJm', '4642995'), + (43, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'x4oeVOJm', '4642996'), + (43, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'x4oeVOJm', '4642997'), + (43, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'x4oeVOJm', '4645687'), + (43, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'x4oeVOJm', '4645698'), + (43, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'x4oeVOJm', '4645704'), + (43, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'x4oeVOJm', '4645705'), + (43, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'x4oeVOJm', '4668385'), + (43, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'x4oeVOJm', '4694407'), + (43, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'x4oeVOJm', '4736497'), + (43, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'x4oeVOJm', '4736499'), + (43, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'x4oeVOJm', '4736500'), + (43, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'x4oeVOJm', '4736503'), + (43, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'x4oeVOJm', '4736504'), + (43, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'x4oeVOJm', '4746789'), + (43, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'x4oeVOJm', '4753929'), + (43, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'x4oeVOJm', '5038850'), + (43, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'x4oeVOJm', '5045826'), + (43, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'x4oeVOJm', '5132533'), + (43, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'x4oeVOJm', '5186582'), + (43, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'x4oeVOJm', '5186583'), + (43, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'x4oeVOJm', '5186585'), + (43, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'x4oeVOJm', '5190437'), + (43, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'x4oeVOJm', '5215989'), + (43, 1346, 'not_attending', '2022-04-23 21:49:08', '2025-12-17 19:47:27', 'x4oeVOJm', '5247467'), + (43, 1362, 'attending', '2022-04-27 00:53:37', '2025-12-17 19:47:28', 'x4oeVOJm', '5260800'), + (43, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'x4oeVOJm', '5269930'), + (43, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'x4oeVOJm', '5271448'), + (43, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'x4oeVOJm', '5271449'), + (43, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'x4oeVOJm', '5276469'), + (43, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'x4oeVOJm', '5278159'), + (43, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'x4oeVOJm', '5363695'), + (43, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'x4oeVOJm', '5365960'), + (43, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'x4oeVOJm', '5368973'), + (43, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'x4oeVOJm', '5378247'), + (43, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'x4oeVOJm', '5389605'), + (43, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'x4oeVOJm', '5397265'), + (43, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'x4oeVOJm', '5403967'), + (43, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'x4oeVOJm', '5405203'), + (43, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'x4oeVOJm', '5408794'), + (43, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'x4oeVOJm', '5411699'), + (43, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'x4oeVOJm', '5412550'), + (43, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'x4oeVOJm', '5415046'), + (43, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'x4oeVOJm', '5422086'), + (43, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'x4oeVOJm', '5422406'), + (43, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'x4oeVOJm', '5424565'), + (43, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'x4oeVOJm', '5426882'), + (43, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'x4oeVOJm', '5427083'), + (43, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'x4oeVOJm', '5441125'), + (43, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'x4oeVOJm', '5441126'), + (43, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'x4oeVOJm', '5441128'), + (43, 1517, 'attending', '2022-08-26 22:10:44', '2025-12-17 19:47:23', 'x4oeVOJm', '5441130'), + (43, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'x4oeVOJm', '5441131'), + (43, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'x4oeVOJm', '5441132'), + (43, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'x4oeVOJm', '5446643'), + (43, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'x4oeVOJm', '5453325'), + (43, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'x4oeVOJm', '5454516'), + (43, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'x4oeVOJm', '5454605'), + (43, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'x4oeVOJm', '5455037'), + (43, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'x4oeVOJm', '5461278'), + (43, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'x4oeVOJm', '5469480'), + (43, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'x4oeVOJm', '5471073'), + (43, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'x4oeVOJm', '5474663'), + (43, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'x4oeVOJm', '5482022'), + (43, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'x4oeVOJm', '5482793'), + (43, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'x4oeVOJm', '5488912'), + (43, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'x4oeVOJm', '5492192'), + (43, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'x4oeVOJm', '5493139'), + (43, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'x4oeVOJm', '5493200'), + (43, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'x4oeVOJm', '5502188'), + (43, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'x4oeVOJm', '5505059'), + (43, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'x4oeVOJm', '5509055'), + (43, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'x4oeVOJm', '5512862'), + (43, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'x4oeVOJm', '5513985'), + (43, 1626, 'attending', '2022-08-26 00:31:12', '2025-12-17 19:47:11', 'x4oeVOJm', '5519981'), + (43, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'x4oeVOJm', '5522550'), + (43, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'x4oeVOJm', '5534683'), + (43, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'x4oeVOJm', '5537735'), + (43, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'x4oeVOJm', '5540859'), + (43, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'x4oeVOJm', '5546619'), + (43, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'x4oeVOJm', '5555245'), + (43, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'x4oeVOJm', '5557747'), + (43, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'x4oeVOJm', '5560255'), + (43, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'x4oeVOJm', '5562906'), + (43, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'x4oeVOJm', '5600604'), + (43, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'x4oeVOJm', '5605544'), + (43, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'x4oeVOJm', '5630960'), + (43, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'x4oeVOJm', '5630961'), + (43, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'x4oeVOJm', '5630962'), + (43, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'x4oeVOJm', '5630966'), + (43, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'x4oeVOJm', '5630967'), + (43, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'x4oeVOJm', '5630968'), + (43, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'x4oeVOJm', '5635406'), + (43, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'x4oeVOJm', '5638765'), + (43, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'x4oeVOJm', '5640097'), + (43, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'x4oeVOJm', '5640843'), + (43, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'x4oeVOJm', '5641521'), + (43, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'x4oeVOJm', '5642818'), + (43, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'x4oeVOJm', '5652395'), + (43, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'x4oeVOJm', '5670445'), + (43, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'x4oeVOJm', '5671637'), + (43, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'x4oeVOJm', '5672329'), + (43, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'x4oeVOJm', '5674057'), + (43, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'x4oeVOJm', '5674060'), + (43, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'x4oeVOJm', '5677461'), + (43, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'x4oeVOJm', '5698046'), + (43, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'x4oeVOJm', '5699760'), + (43, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'x4oeVOJm', '5741601'), + (43, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'x4oeVOJm', '5763458'), + (43, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'x4oeVOJm', '5774172'), + (43, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'x4oeVOJm', '5818247'), + (43, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'x4oeVOJm', '5819471'), + (43, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'x4oeVOJm', '5827739'), + (43, 1844, 'attending', '2022-12-18 00:27:56', '2025-12-17 19:47:05', 'x4oeVOJm', '5844306'), + (43, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'x4oeVOJm', '5850159'), + (43, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'x4oeVOJm', '5858999'), + (43, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'x4oeVOJm', '5871984'), + (43, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'x4oeVOJm', '5876354'), + (43, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'x4oeVOJm', '5880939'), + (43, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'x4oeVOJm', '5880940'), + (43, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'x4oeVOJm', '5880942'), + (43, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'x4oeVOJm', '5880943'), + (43, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'x4oeVOJm', '5887890'), + (43, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'x4oeVOJm', '5888598'), + (43, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'x4oeVOJm', '5893260'), + (43, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'x4oeVOJm', '5899826'), + (43, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'x4oeVOJm', '5900199'), + (43, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'x4oeVOJm', '5900200'), + (43, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'x4oeVOJm', '5900202'), + (43, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'x4oeVOJm', '5900203'), + (43, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'x4oeVOJm', '5901108'), + (43, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'x4oeVOJm', '5901126'), + (43, 1897, 'attending', '2023-02-11 00:55:35', '2025-12-17 19:47:07', 'x4oeVOJm', '5901128'), + (43, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'x4oeVOJm', '5909655'), + (43, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'x4oeVOJm', '5910522'), + (43, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'x4oeVOJm', '5910526'), + (43, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'x4oeVOJm', '5910528'), + (43, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'x4oeVOJm', '5916219'), + (43, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'x4oeVOJm', '5936234'), + (43, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'x4oeVOJm', '5958351'), + (43, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'x4oeVOJm', '5959751'), + (43, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'x4oeVOJm', '5959755'), + (43, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'x4oeVOJm', '5960055'), + (43, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'x4oeVOJm', '5961684'), + (43, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'x4oeVOJm', '5962132'), + (43, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'x4oeVOJm', '5962133'), + (43, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'x4oeVOJm', '5962134'), + (43, 1947, 'not_attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'x4oeVOJm', '5962233'), + (43, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'x4oeVOJm', '5962317'), + (43, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'x4oeVOJm', '5962318'), + (43, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'x4oeVOJm', '5965933'), + (43, 1953, 'attending', '2023-03-01 20:39:23', '2025-12-17 19:47:09', 'x4oeVOJm', '5966307'), + (43, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'x4oeVOJm', '5967014'), + (43, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'x4oeVOJm', '5972763'), + (43, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'x4oeVOJm', '5972815'), + (43, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'x4oeVOJm', '5974016'), + (43, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'x4oeVOJm', '5981515'), + (43, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'x4oeVOJm', '5993516'), + (43, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'x4oeVOJm', '5998939'), + (43, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'x4oeVOJm', '6028191'), + (43, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'x4oeVOJm', '6040066'), + (43, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'x4oeVOJm', '6042717'), + (43, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'x4oeVOJm', '6044838'), + (43, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'x4oeVOJm', '6044839'), + (43, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oeVOJm', '6045684'), + (43, 1991, 'attending', '2023-03-30 14:47:04', '2025-12-17 19:46:58', 'x4oeVOJm', '6047354'), + (43, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'x4oeVOJm', '6050104'), + (43, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'x4oeVOJm', '6053195'), + (43, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'x4oeVOJm', '6053198'), + (43, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'x4oeVOJm', '6056085'), + (43, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'x4oeVOJm', '6056916'), + (43, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'x4oeVOJm', '6059290'), + (43, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'x4oeVOJm', '6060328'), + (43, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'x4oeVOJm', '6061037'), + (43, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'x4oeVOJm', '6061039'), + (43, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'x4oeVOJm', '6065813'), + (43, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'x4oeVOJm', '6067245'), + (43, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'x4oeVOJm', '6068094'), + (43, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'x4oeVOJm', '6068252'), + (43, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'x4oeVOJm', '6068253'), + (43, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'x4oeVOJm', '6068254'), + (43, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'x4oeVOJm', '6068280'), + (43, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'x4oeVOJm', '6069093'), + (43, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'x4oeVOJm', '6072528'), + (43, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', 'x4oeVOJm', '6073678'), + (43, 2045, 'attending', '2023-04-27 13:13:49', '2025-12-17 19:47:01', 'x4oeVOJm', '6075556'), + (43, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'x4oeVOJm', '6079840'), + (43, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'x4oeVOJm', '6083398'), + (43, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'x4oeVOJm', '6093504'), + (43, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'x4oeVOJm', '6097414'), + (43, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'x4oeVOJm', '6097442'), + (43, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'x4oeVOJm', '6097684'), + (43, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'x4oeVOJm', '6098762'), + (43, 2064, 'attending', '2023-06-20 14:40:23', '2025-12-17 19:46:50', 'x4oeVOJm', '6099988'), + (43, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'x4oeVOJm', '6101361'), + (43, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'x4oeVOJm', '6101362'), + (43, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', 'x4oeVOJm', '6119877'), + (43, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'x4oeVOJm', '6120034'), + (43, 2094, 'not_attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'x4oeVOJm', '6135924'), + (43, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'x4oeVOJm', '6136733'), + (43, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'x4oeVOJm', '6137989'), + (43, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'x4oeVOJm', '6150864'), + (43, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'x4oeVOJm', '6155491'), + (43, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'x4oeVOJm', '6164417'), + (43, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'x4oeVOJm', '6166388'), + (43, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'x4oeVOJm', '6176439'), + (43, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'x4oeVOJm', '6182410'), + (43, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'x4oeVOJm', '6185812'), + (43, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'x4oeVOJm', '6187651'), + (43, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'x4oeVOJm', '6187963'), + (43, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'x4oeVOJm', '6187964'), + (43, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'x4oeVOJm', '6187966'), + (43, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'x4oeVOJm', '6187967'), + (43, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'x4oeVOJm', '6187969'), + (43, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'x4oeVOJm', '6334878'), + (43, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'x4oeVOJm', '6337236'), + (43, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'x4oeVOJm', '6337970'), + (43, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'x4oeVOJm', '6338308'), + (43, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'x4oeVOJm', '6341710'), + (43, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'x4oeVOJm', '6342044'), + (43, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'x4oeVOJm', '6342298'), + (43, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'x4oeVOJm', '6343294'), + (43, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'x4oeVOJm', '6347034'), + (43, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'x4oeVOJm', '6347056'), + (43, 2183, 'attending', '2023-07-29 21:03:51', '2025-12-17 19:46:54', 'x4oeVOJm', '6353008'), + (43, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'x4oeVOJm', '6353830'), + (43, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'x4oeVOJm', '6353831'), + (43, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'x4oeVOJm', '6357867'), + (43, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'x4oeVOJm', '6358652'), + (43, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'x4oeVOJm', '6361709'), + (43, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'x4oeVOJm', '6361710'), + (43, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'x4oeVOJm', '6361711'), + (43, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'x4oeVOJm', '6361712'), + (43, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'x4oeVOJm', '6361713'), + (43, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'x4oeVOJm', '6394629'), + (43, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'x4oeVOJm', '6394631'), + (43, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'x4oeVOJm', '6440863'), + (43, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'x4oeVOJm', '6445440'), + (43, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'x4oeVOJm', '6453951'), + (43, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'x4oeVOJm', '6461696'), + (43, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'x4oeVOJm', '6462129'), + (43, 2291, 'attending', '2023-10-20 15:50:06', '2025-12-17 19:46:46', 'x4oeVOJm', '6462215'), + (43, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'x4oeVOJm', '6463218'), + (43, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'x4oeVOJm', '6472181'), + (43, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'x4oeVOJm', '6482693'), + (43, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'x4oeVOJm', '6484200'), + (43, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'x4oeVOJm', '6484680'), + (43, 2310, 'attending', '2023-10-29 03:30:07', '2025-12-17 19:46:47', 'x4oeVOJm', '6487709'), + (43, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'x4oeVOJm', '6507741'), + (43, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'x4oeVOJm', '6514659'), + (43, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'x4oeVOJm', '6514660'), + (43, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'x4oeVOJm', '6519103'), + (43, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'x4oeVOJm', '6535681'), + (43, 2351, 'attending', '2023-11-21 02:14:06', '2025-12-17 19:46:48', 'x4oeVOJm', '6584747'), + (43, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'x4oeVOJm', '6587097'), + (43, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'x4oeVOJm', '6609022'), + (43, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'x4oeVOJm', '6632757'), + (43, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'x4oeVOJm', '6644187'), + (43, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'x4oeVOJm', '6648951'), + (43, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'x4oeVOJm', '6648952'), + (43, 2388, 'attending', '2024-01-06 02:58:57', '2025-12-17 19:46:37', 'x4oeVOJm', '6649244'), + (43, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'x4oeVOJm', '6655401'), + (43, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'x4oeVOJm', '6661585'), + (43, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'x4oeVOJm', '6661588'), + (43, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'x4oeVOJm', '6661589'), + (43, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'x4oeVOJm', '6699906'), + (43, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'x4oeVOJm', '6699913'), + (43, 2413, 'attending', '2024-02-08 02:21:50', '2025-12-17 19:46:42', 'x4oeVOJm', '6700719'), + (43, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'x4oeVOJm', '6701109'), + (43, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'x4oeVOJm', '6705219'), + (43, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'x4oeVOJm', '6710153'), + (43, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'x4oeVOJm', '6711552'), + (43, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'x4oeVOJm', '6711553'), + (43, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'x4oeVOJm', '6722688'), + (43, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'x4oeVOJm', '6730620'), + (43, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'x4oeVOJm', '6730642'), + (43, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'x4oeVOJm', '6740364'), + (43, 2454, 'attending', '2024-02-08 02:27:20', '2025-12-17 19:46:42', 'x4oeVOJm', '6740921'), + (43, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'x4oeVOJm', '6743829'), + (43, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'x4oeVOJm', '7030380'), + (43, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'x4oeVOJm', '7033677'), + (43, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'x4oeVOJm', '7035415'), + (43, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'x4oeVOJm', '7044715'), + (43, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'x4oeVOJm', '7050318'), + (43, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'x4oeVOJm', '7050319'), + (43, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'x4oeVOJm', '7050322'), + (43, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'x4oeVOJm', '7057804'), + (43, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'x4oeVOJm', '7072824'), + (43, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'x4oeVOJm', '7074348'), + (43, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'x4oeVOJm', '7074364'), + (43, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'x4oeVOJm', '7089267'), + (43, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'x4oeVOJm', '7098747'), + (43, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'x4oeVOJm', '7113468'), + (43, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'x4oeVOJm', '7114856'), + (43, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'x4oeVOJm', '7114951'), + (43, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'x4oeVOJm', '7114955'), + (43, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'x4oeVOJm', '7114956'), + (43, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'x4oeVOJm', '7114957'), + (43, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'x4oeVOJm', '7153615'), + (43, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'x4oeVOJm', '7159484'), + (43, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'x4oeVOJm', '7178446'), + (43, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'x4oeVOJm', '7220467'), + (43, 2605, 'attending', '2024-04-29 03:45:06', '2025-12-17 19:46:35', 'x4oeVOJm', '7229243'), + (43, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'x4oeVOJm', '7240354'), + (43, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'x4oeVOJm', '7251633'), + (43, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'x4oeVOJm', '7302674'), + (43, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'x4oeVOJm', '7324073'), + (43, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'x4oeVOJm', '7324074'), + (43, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'x4oeVOJm', '7324075'), + (43, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'x4oeVOJm', '7324078'), + (43, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'x4oeVOJm', '7324082'), + (43, 2722, 'attending', '2024-06-18 22:36:45', '2025-12-17 19:46:29', 'x4oeVOJm', '7331457'), + (43, 2753, 'attending', '2024-07-08 21:47:20', '2025-12-17 19:46:30', 'x4oeVOJm', '7355538'), + (43, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'x4oeVOJm', '7363643'), + (43, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'x4oeVOJm', '7368606'), + (43, 2787, 'attending', '2024-08-01 22:02:27', '2025-12-17 19:46:32', 'x4oeVOJm', '7381568'), + (43, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'x4oeVOJm', '7397462'), + (43, 2805, 'attending', '2024-08-20 14:00:40', '2025-12-17 19:46:32', 'x4oeVOJm', '7403620'), + (43, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'x4oeVOJm', '7424275'), + (43, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'x4oeVOJm', '7424276'), + (43, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'x4oeVOJm', '7432751'), + (43, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'x4oeVOJm', '7432752'), + (43, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'x4oeVOJm', '7432753'), + (43, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'x4oeVOJm', '7432754'), + (43, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'x4oeVOJm', '7432755'), + (43, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'x4oeVOJm', '7432756'), + (43, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'x4oeVOJm', '7432758'), + (43, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'x4oeVOJm', '7432759'), + (43, 2832, 'attending', '2024-09-09 20:27:36', '2025-12-17 19:46:24', 'x4oeVOJm', '7433324'), + (43, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'x4oeVOJm', '7433834'), + (43, 2837, 'not_attending', '2024-09-12 18:57:43', '2025-12-17 19:46:25', 'x4oeVOJm', '7438711'), + (43, 2843, 'maybe', '2024-09-22 19:48:44', '2025-12-17 19:46:25', 'x4oeVOJm', '7450219'), + (43, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'x4oeVOJm', '7470197'), + (43, 2873, 'attending', '2024-12-10 05:16:40', '2025-12-17 19:46:22', 'x4oeVOJm', '7480850'), + (43, 2878, 'attending', '2024-10-10 22:56:05', '2025-12-17 19:46:26', 'x4oeVOJm', '7633857'), + (43, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'x4oeVOJm', '7685613'), + (43, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'x4oeVOJm', '7688194'), + (43, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'x4oeVOJm', '7688196'), + (43, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'x4oeVOJm', '7688289'), + (43, 2908, 'not_attending', '2024-11-11 01:14:44', '2025-12-17 19:46:27', 'x4oeVOJm', '7689420'), + (43, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'x4oeVOJm', '7692763'), + (43, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'x4oeVOJm', '7697552'), + (43, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'x4oeVOJm', '7699878'), + (43, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'x4oeVOJm', '7704043'), + (43, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'x4oeVOJm', '7712467'), + (43, 2925, 'attending', '2024-12-10 18:07:34', '2025-12-17 19:46:21', 'x4oeVOJm', '7713584'), + (43, 2926, 'attending', '2024-12-04 07:36:35', '2025-12-17 19:46:21', 'x4oeVOJm', '7713585'), + (43, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'x4oeVOJm', '7713586'), + (43, 2942, 'not_attending', '2025-02-20 21:11:16', '2025-12-17 19:46:24', 'x4oeVOJm', '7725960'), + (43, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'x4oeVOJm', '7738518'), + (43, 2962, 'attending', '2024-12-25 03:15:39', '2025-12-17 19:46:22', 'x4oeVOJm', '7750632'), + (43, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'x4oeVOJm', '7750636'), + (43, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'x4oeVOJm', '7796540'), + (43, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'x4oeVOJm', '7796541'), + (43, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'x4oeVOJm', '7796542'), + (43, 2968, 'attending', '2025-01-08 20:09:55', '2025-12-17 19:46:22', 'x4oeVOJm', '7797967'), + (43, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'x4oeVOJm', '7825913'), + (43, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'x4oeVOJm', '7826209'), + (43, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'x4oeVOJm', '7834742'), + (43, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'x4oeVOJm', '7842108'), + (43, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'x4oeVOJm', '7842902'), + (43, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'x4oeVOJm', '7842903'), + (43, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'x4oeVOJm', '7842904'), + (43, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'x4oeVOJm', '7842905'), + (43, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'x4oeVOJm', '7842906'), + (43, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'x4oeVOJm', '7842909'), + (43, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'x4oeVOJm', '7855719'), + (43, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'x4oeVOJm', '7860683'), + (43, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'x4oeVOJm', '7860684'), + (43, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'x4oeVOJm', '7866095'), + (43, 3013, 'attending', '2025-03-04 04:05:12', '2025-12-17 19:46:18', 'x4oeVOJm', '7869170'), + (43, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'x4oeVOJm', '7869188'), + (43, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'x4oeVOJm', '7869194'), + (43, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'x4oeVOJm', '7869195'), + (43, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'x4oeVOJm', '7877465'), + (43, 3056, 'attending', '2025-03-21 15:24:13', '2025-12-17 19:46:19', 'x4oeVOJm', '7888250'), + (43, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'x4oeVOJm', '7903852'), + (43, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'x4oeVOJm', '7904777'), + (43, 3095, 'attending', '2025-05-03 18:01:47', '2025-12-17 19:46:20', 'x4oeVOJm', '8342293'), + (43, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'x4oeVOJm', '8349164'), + (43, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'x4oeVOJm', '8349545'), + (43, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'x4oeVOJm', '8353584'), + (43, 3114, 'maybe', '2025-05-05 11:59:34', '2025-12-17 19:46:20', 'x4oeVOJm', '8357180'), + (43, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'x4oeVOJm', '8368028'), + (43, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'x4oeVOJm', '8368029'), + (43, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'x4oeVOJm', '8400273'), + (43, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'x4oeVOJm', '8400274'), + (43, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'x4oeVOJm', '8400275'), + (43, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'x4oeVOJm', '8400276'), + (43, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'x4oeVOJm', '8404977'), + (43, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'x4oeVOJm', '8430783'), + (43, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'x4oeVOJm', '8430784'), + (43, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'x4oeVOJm', '8430799'), + (43, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'x4oeVOJm', '8430800'), + (43, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'x4oeVOJm', '8430801'), + (43, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'x4oeVOJm', '8438709'), + (43, 3193, 'attending', '2025-07-17 22:37:24', '2025-12-17 19:46:17', 'x4oeVOJm', '8457738'), + (43, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'x4oeVOJm', '8459566'), + (43, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'x4oeVOJm', '8459567'), + (43, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'x4oeVOJm', '8459568'), + (43, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'x4oeVOJm', '8461032'), + (43, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'x4oeVOJm', '8477877'), + (43, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'x4oeVOJm', '8485688'), + (43, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'x4oeVOJm', '8490587'), + (43, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'x4oeVOJm', '8493552'), + (43, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'x4oeVOJm', '8493553'), + (43, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'x4oeVOJm', '8493554'), + (43, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'x4oeVOJm', '8493555'), + (43, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'x4oeVOJm', '8493556'), + (43, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'x4oeVOJm', '8493557'), + (43, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'x4oeVOJm', '8493558'), + (43, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'x4oeVOJm', '8493559'), + (43, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'x4oeVOJm', '8493560'), + (43, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'x4oeVOJm', '8493561'), + (43, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'x4oeVOJm', '8493572'), + (43, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'x4oeVOJm', '8540725'), + (43, 3300, 'attending', '2025-11-07 12:15:00', '2025-12-17 19:46:14', 'x4oeVOJm', '8549145'), + (43, 3302, 'attending', '2025-11-14 03:41:59', '2025-12-17 19:46:14', 'x4oeVOJm', '8550022'), + (43, 3304, 'attending', '2025-11-16 16:37:21', '2025-12-17 19:46:14', 'x4oeVOJm', '8550024'), + (43, 3307, 'attending', '2025-12-15 14:52:06', '2025-12-17 19:46:11', 'x4oeVOJm', '8550027'), + (43, 3308, 'attending', '2025-11-11 23:33:25', '2025-12-17 19:46:14', 'x4oeVOJm', '8550408'), + (43, 3309, 'attending', '2025-11-16 16:36:56', '2025-12-17 19:46:14', 'x4oeVOJm', '8550409'), + (43, 3310, 'attending', '2025-11-30 21:20:24', '2025-12-17 19:46:11', 'x4oeVOJm', '8550410'), + (43, 3311, 'attending', '2025-12-09 03:06:55', '2025-12-17 19:46:11', 'x4oeVOJm', '8550412'), + (43, 3318, 'not_attending', '2025-11-07 02:02:31', '2025-12-17 19:46:14', 'x4oeVOJm', '8553025'), + (43, 3320, 'attending', '2025-11-16 16:37:10', '2025-12-17 19:46:14', 'x4oeVOJm', '8555219'), + (43, 3340, 'attending', '2025-12-09 03:00:08', '2025-12-17 19:46:11', 'x4oeVOJm', '8563371'), + (44, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd5Y0BbOd', '7904777'), + (44, 3107, 'attending', '2025-05-02 05:06:59', '2025-12-17 19:46:20', 'd5Y0BbOd', '8350107'), + (44, 3109, 'attending', '2025-05-06 09:37:55', '2025-12-17 19:46:21', 'd5Y0BbOd', '8352001'), + (44, 3114, 'not_attending', '2025-05-02 21:35:08', '2025-12-17 19:46:20', 'd5Y0BbOd', '8357180'), + (44, 3120, 'maybe', '2025-05-06 09:38:08', '2025-12-17 19:46:21', 'd5Y0BbOd', '8360736'), + (44, 3121, 'maybe', '2025-05-11 06:41:27', '2025-12-17 19:46:21', 'd5Y0BbOd', '8362730'), + (44, 3122, 'not_attending', '2025-05-11 06:41:32', '2025-12-17 19:46:21', 'd5Y0BbOd', '8362978'), + (44, 3129, 'attending', '2025-05-13 05:51:40', '2025-12-17 19:46:21', 'd5Y0BbOd', '8366441'), + (44, 3131, 'not_attending', '2025-05-13 05:51:29', '2025-12-17 19:46:21', 'd5Y0BbOd', '8368028'), + (44, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd5Y0BbOd', '8368029'), + (44, 3133, 'not_attending', '2025-05-26 02:55:14', '2025-12-17 19:46:14', 'd5Y0BbOd', '8368030'), + (44, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd5Y0BbOd', '8388462'), + (44, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd5Y0BbOd', '8400273'), + (44, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd5Y0BbOd', '8400274'), + (44, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd5Y0BbOd', '8400275'), + (44, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd5Y0BbOd', '8400276'), + (44, 3166, 'attending', '2025-06-10 15:33:31', '2025-12-17 19:46:15', 'd5Y0BbOd', '8404242'), + (44, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd5Y0BbOd', '8404977'), + (44, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd5Y0BbOd', '8430783'), + (44, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd5Y0BbOd', '8430784'), + (44, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd5Y0BbOd', '8430799'), + (44, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd5Y0BbOd', '8430800'), + (44, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd5Y0BbOd', '8430801'), + (44, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd5Y0BbOd', '8438709'), + (44, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd5Y0BbOd', '8457738'), + (44, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd5Y0BbOd', '8459566'), + (44, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd5Y0BbOd', '8459567'), + (44, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd5Y0BbOd', '8461032'), + (44, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd5Y0BbOd', '8477877'), + (44, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd5Y0BbOd', '8485688'), + (44, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd5Y0BbOd', '8490587'), + (44, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd5Y0BbOd', '8493552'), + (44, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd5Y0BbOd', '8493553'), + (44, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd5Y0BbOd', '8493554'), + (44, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd5Y0BbOd', '8493555'), + (44, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd5Y0BbOd', '8493556'), + (44, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd5Y0BbOd', '8493557'), + (44, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd5Y0BbOd', '8493558'), + (44, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd5Y0BbOd', '8493559'), + (44, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd5Y0BbOd', '8493560'), + (44, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd5Y0BbOd', '8493561'), + (44, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd5Y0BbOd', '8493572'), + (44, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd5Y0BbOd', '8540725'), + (44, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd5Y0BbOd', '8555421'), + (45, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd9oPaqqA', '6164417'), + (45, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd9oPaqqA', '6166388'), + (45, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd9oPaqqA', '6176439'), + (45, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'd9oPaqqA', '6182410'), + (45, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd9oPaqqA', '6185812'), + (45, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd9oPaqqA', '6187651'), + (45, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd9oPaqqA', '6187963'), + (45, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd9oPaqqA', '6187964'), + (45, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd9oPaqqA', '6187966'), + (45, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd9oPaqqA', '6187967'), + (45, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd9oPaqqA', '6187969'), + (45, 2142, 'maybe', '2023-07-16 14:42:13', '2025-12-17 19:46:52', 'd9oPaqqA', '6333850'), + (45, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd9oPaqqA', '6334878'), + (45, 2149, 'maybe', '2023-07-16 14:42:31', '2025-12-17 19:46:53', 'd9oPaqqA', '6335682'), + (45, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd9oPaqqA', '6337236'), + (45, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd9oPaqqA', '6337970'), + (45, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd9oPaqqA', '6338308'), + (45, 2159, 'attending', '2023-07-21 17:27:55', '2025-12-17 19:46:53', 'd9oPaqqA', '6338355'), + (45, 2160, 'attending', '2023-07-29 17:34:10', '2025-12-17 19:46:54', 'd9oPaqqA', '6338358'), + (45, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'd9oPaqqA', '6340845'), + (45, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd9oPaqqA', '6341710'), + (45, 2165, 'attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd9oPaqqA', '6342044'), + (45, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd9oPaqqA', '6342298'), + (45, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd9oPaqqA', '6343294'), + (45, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd9oPaqqA', '6347034'), + (45, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd9oPaqqA', '6347056'), + (45, 2183, 'maybe', '2023-07-29 17:34:06', '2025-12-17 19:46:54', 'd9oPaqqA', '6353008'), + (45, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd9oPaqqA', '6353830'), + (45, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd9oPaqqA', '6353831'), + (45, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd9oPaqqA', '6357867'), + (45, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd9oPaqqA', '6358652'), + (45, 2204, 'attending', '2023-08-16 17:22:00', '2025-12-17 19:46:55', 'd9oPaqqA', '6361542'), + (45, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd9oPaqqA', '6361709'), + (45, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd9oPaqqA', '6361710'), + (45, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd9oPaqqA', '6361711'), + (45, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd9oPaqqA', '6361712'), + (45, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd9oPaqqA', '6361713'), + (45, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd9oPaqqA', '6382573'), + (45, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd9oPaqqA', '6388604'), + (45, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd9oPaqqA', '6394629'), + (45, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd9oPaqqA', '6394631'), + (45, 2252, 'maybe', '2023-09-25 16:36:39', '2025-12-17 19:46:45', 'd9oPaqqA', '6396837'), + (45, 2253, 'attending', '2023-09-30 22:41:19', '2025-12-17 19:46:45', 'd9oPaqqA', '6401811'), + (45, 2263, 'maybe', '2023-09-30 18:25:59', '2025-12-17 19:46:45', 'd9oPaqqA', '6429351'), + (45, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd9oPaqqA', '6440863'), + (45, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd9oPaqqA', '6445440'), + (45, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd9oPaqqA', '6453951'), + (45, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd9oPaqqA', '6461696'), + (45, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd9oPaqqA', '6462129'), + (45, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd9oPaqqA', '6463218'), + (45, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd9oPaqqA', '6472181'), + (45, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd9oPaqqA', '6482693'), + (45, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd9oPaqqA', '6484200'), + (45, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'd9oPaqqA', '6484680'), + (45, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd9oPaqqA', '6507741'), + (45, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd9oPaqqA', '6514659'), + (45, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd9oPaqqA', '6514660'), + (45, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd9oPaqqA', '6519103'), + (45, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd9oPaqqA', '6535681'), + (45, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd9oPaqqA', '6584747'), + (45, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd9oPaqqA', '6587097'), + (45, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd9oPaqqA', '6609022'), + (45, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd9oPaqqA', '6632757'), + (45, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd9oPaqqA', '6644187'), + (45, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd9oPaqqA', '6648951'), + (45, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd9oPaqqA', '6648952'), + (45, 2388, 'attending', '2024-01-03 04:59:26', '2025-12-17 19:46:37', 'd9oPaqqA', '6649244'), + (45, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd9oPaqqA', '6655401'), + (45, 2399, 'attending', '2024-01-14 00:33:07', '2025-12-17 19:46:38', 'd9oPaqqA', '6657583'), + (45, 2400, 'attending', '2024-01-08 15:02:46', '2025-12-17 19:46:37', 'd9oPaqqA', '6659378'), + (45, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd9oPaqqA', '6661585'), + (45, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd9oPaqqA', '6661588'), + (45, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd9oPaqqA', '6661589'), + (45, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd9oPaqqA', '6699906'), + (45, 2410, 'attending', '2024-02-10 21:31:57', '2025-12-17 19:46:41', 'd9oPaqqA', '6699911'), + (45, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'd9oPaqqA', '6699913'), + (45, 2416, 'maybe', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd9oPaqqA', '6701109'), + (45, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd9oPaqqA', '6705219'), + (45, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd9oPaqqA', '6710153'), + (45, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd9oPaqqA', '6711552'), + (45, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'd9oPaqqA', '6711553'), + (45, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd9oPaqqA', '6722688'), + (45, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd9oPaqqA', '6730620'), + (45, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd9oPaqqA', '6730642'), + (45, 2448, 'maybe', '2024-03-29 12:48:19', '2025-12-17 19:46:33', 'd9oPaqqA', '6734371'), + (45, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd9oPaqqA', '6740364'), + (45, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd9oPaqqA', '6743829'), + (45, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd9oPaqqA', '7030380'), + (45, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd9oPaqqA', '7033677'), + (45, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd9oPaqqA', '7035415'), + (45, 2475, 'attending', '2024-02-29 00:49:09', '2025-12-17 19:46:43', 'd9oPaqqA', '7035643'), + (45, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd9oPaqqA', '7044715'), + (45, 2487, 'maybe', '2024-03-22 21:47:26', '2025-12-17 19:46:33', 'd9oPaqqA', '7049279'), + (45, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd9oPaqqA', '7050318'), + (45, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd9oPaqqA', '7050319'), + (45, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd9oPaqqA', '7050322'), + (45, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd9oPaqqA', '7057804'), + (45, 2500, 'maybe', '2024-03-06 23:21:27', '2025-12-17 19:46:43', 'd9oPaqqA', '7058603'), + (45, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd9oPaqqA', '7072824'), + (45, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd9oPaqqA', '7074348'), + (45, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd9oPaqqA', '7074364'), + (45, 2534, 'maybe', '2024-03-13 22:07:13', '2025-12-17 19:46:32', 'd9oPaqqA', '7076875'), + (45, 2539, 'attending', '2024-04-06 22:52:57', '2025-12-17 19:46:33', 'd9oPaqqA', '7085486'), + (45, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd9oPaqqA', '7089267'), + (45, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd9oPaqqA', '7098747'), + (45, 2553, 'attending', '2024-03-29 12:48:12', '2025-12-17 19:46:33', 'd9oPaqqA', '7113468'), + (45, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd9oPaqqA', '7114856'), + (45, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd9oPaqqA', '7114951'), + (45, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd9oPaqqA', '7114955'), + (45, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd9oPaqqA', '7114956'), + (45, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd9oPaqqA', '7114957'), + (45, 2562, 'attending', '2024-04-02 18:54:32', '2025-12-17 19:46:33', 'd9oPaqqA', '7134552'), + (45, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd9oPaqqA', '7153615'), + (45, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd9oPaqqA', '7159484'), + (45, 2573, 'maybe', '2024-04-16 21:28:10', '2025-12-17 19:46:34', 'd9oPaqqA', '7160612'), + (45, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd9oPaqqA', '7178446'), + (45, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd9oPaqqA', '7220467'), + (45, 2607, 'attending', '2024-04-29 20:43:11', '2025-12-17 19:46:35', 'd9oPaqqA', '7240136'), + (45, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd9oPaqqA', '7240354'), + (45, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd9oPaqqA', '7251633'), + (45, 2626, 'attending', '2024-05-18 10:51:26', '2025-12-17 19:46:35', 'd9oPaqqA', '7264723'), + (45, 2628, 'attending', '2024-05-31 20:31:28', '2025-12-17 19:46:36', 'd9oPaqqA', '7264725'), + (45, 2652, 'attending', '2024-05-31 23:08:48', '2025-12-17 19:46:36', 'd9oPaqqA', '7288339'), + (45, 2671, 'maybe', '2024-06-10 09:46:51', '2025-12-17 19:46:28', 'd9oPaqqA', '7318256'), + (45, 2678, 'attending', '2024-06-15 15:41:36', '2025-12-17 19:46:28', 'd9oPaqqA', '7319489'), + (45, 2679, 'attending', '2024-06-19 15:51:00', '2025-12-17 19:46:29', 'd9oPaqqA', '7319490'), + (45, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd9oPaqqA', '7324073'), + (45, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd9oPaqqA', '7324074'), + (45, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd9oPaqqA', '7324075'), + (45, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd9oPaqqA', '7324078'), + (45, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd9oPaqqA', '7324082'), + (45, 2706, 'attending', '2024-06-19 15:50:55', '2025-12-17 19:46:28', 'd9oPaqqA', '7324947'), + (45, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd9oPaqqA', '7331457'), + (45, 2726, 'attending', '2024-06-19 21:15:08', '2025-12-17 19:46:29', 'd9oPaqqA', '7332853'), + (45, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd9oPaqqA', '7363643'), + (45, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd9oPaqqA', '7368606'), + (45, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd9oPaqqA', '7397462'), + (45, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd9oPaqqA', '7424275'), + (45, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd9oPaqqA', '7424276'), + (45, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd9oPaqqA', '7432751'), + (45, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd9oPaqqA', '7432752'), + (45, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd9oPaqqA', '7432753'), + (45, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd9oPaqqA', '7432754'), + (45, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd9oPaqqA', '7432755'), + (45, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd9oPaqqA', '7432756'), + (45, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd9oPaqqA', '7432758'), + (45, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd9oPaqqA', '7432759'), + (45, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd9oPaqqA', '7433834'), + (45, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd9oPaqqA', '7470197'), + (45, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd9oPaqqA', '7685613'), + (45, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd9oPaqqA', '7688194'), + (45, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd9oPaqqA', '7688196'), + (45, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd9oPaqqA', '7688289'), + (45, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd9oPaqqA', '7692763'), + (45, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd9oPaqqA', '7697552'), + (45, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd9oPaqqA', '7699878'), + (45, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd9oPaqqA', '7704043'), + (45, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd9oPaqqA', '7712467'), + (45, 2925, 'attending', '2024-12-15 00:03:16', '2025-12-17 19:46:21', 'd9oPaqqA', '7713584'), + (45, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd9oPaqqA', '7713585'), + (45, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd9oPaqqA', '7713586'), + (45, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd9oPaqqA', '7738518'), + (45, 2962, 'not_attending', '2024-12-27 09:48:26', '2025-12-17 19:46:22', 'd9oPaqqA', '7750632'), + (45, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd9oPaqqA', '7750636'), + (45, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd9oPaqqA', '7796540'), + (45, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd9oPaqqA', '7796541'), + (45, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd9oPaqqA', '7796542'), + (45, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd9oPaqqA', '7825913'), + (45, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd9oPaqqA', '7826209'), + (45, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd9oPaqqA', '7834742'), + (45, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd9oPaqqA', '7842108'), + (45, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd9oPaqqA', '7842902'), + (45, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd9oPaqqA', '7842903'), + (45, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd9oPaqqA', '7842904'), + (45, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd9oPaqqA', '7842905'), + (45, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd9oPaqqA', '7855719'), + (45, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd9oPaqqA', '7860683'), + (45, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd9oPaqqA', '7860684'), + (45, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd9oPaqqA', '7866095'), + (45, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd9oPaqqA', '7869170'), + (45, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd9oPaqqA', '7869188'), + (45, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd9oPaqqA', '7869201'), + (45, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd9oPaqqA', '7877465'), + (45, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd9oPaqqA', '7888250'), + (45, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd9oPaqqA', '7904777'), + (45, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd9oPaqqA', '8349164'), + (45, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd9oPaqqA', '8349545'), + (45, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd9oPaqqA', '8353584'), + (45, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd9oPaqqA', '8368028'), + (45, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd9oPaqqA', '8368029'), + (45, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd9oPaqqA', '8388462'), + (45, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd9oPaqqA', '8400273'), + (45, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd9oPaqqA', '8400274'), + (45, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd9oPaqqA', '8400275'), + (45, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd9oPaqqA', '8400276'), + (45, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd9oPaqqA', '8404977'), + (45, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd9oPaqqA', '8430783'), + (45, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd9oPaqqA', '8430784'), + (45, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd9oPaqqA', '8430799'), + (45, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd9oPaqqA', '8430800'), + (45, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd9oPaqqA', '8430801'), + (45, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd9oPaqqA', '8438709'), + (45, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd9oPaqqA', '8457738'), + (45, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd9oPaqqA', '8459566'), + (45, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd9oPaqqA', '8459567'), + (45, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd9oPaqqA', '8461032'), + (45, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd9oPaqqA', '8477877'), + (45, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd9oPaqqA', '8485688'), + (45, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd9oPaqqA', '8490587'), + (45, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd9oPaqqA', '8493552'), + (45, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd9oPaqqA', '8493553'), + (45, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd9oPaqqA', '8493554'), + (45, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd9oPaqqA', '8493555'), + (45, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd9oPaqqA', '8493556'), + (45, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd9oPaqqA', '8493557'), + (45, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd9oPaqqA', '8493558'), + (45, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd9oPaqqA', '8493559'), + (45, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd9oPaqqA', '8493560'), + (45, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd9oPaqqA', '8493561'), + (45, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd9oPaqqA', '8493572'), + (45, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd9oPaqqA', '8540725'), + (45, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd9oPaqqA', '8555421'), + (46, 3088, 'not_attending', '2025-05-30 04:57:38', '2025-12-17 19:46:15', 'd3R13PZ4', '7904777'), + (46, 3104, 'not_attending', '2025-05-30 04:57:28', '2025-12-17 19:46:15', 'd3R13PZ4', '8349164'), + (46, 3105, 'not_attending', '2025-05-30 04:57:34', '2025-12-17 19:46:15', 'd3R13PZ4', '8349545'), + (46, 3132, 'attending', '2025-05-22 12:28:40', '2025-12-17 19:46:21', 'd3R13PZ4', '8368029'), + (46, 3133, 'attending', '2025-05-22 12:29:21', '2025-12-17 19:46:14', 'd3R13PZ4', '8368030'), + (46, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd3R13PZ4', '8388462'), + (46, 3146, 'not_attending', '2025-06-02 02:49:34', '2025-12-17 19:46:15', 'd3R13PZ4', '8393169'), + (46, 3147, 'not_attending', '2025-06-02 02:49:53', '2025-12-17 19:46:15', 'd3R13PZ4', '8393170'), + (46, 3148, 'not_attending', '2025-06-02 02:49:56', '2025-12-17 19:46:15', 'd3R13PZ4', '8393171'), + (46, 3149, 'not_attending', '2025-06-02 02:49:57', '2025-12-17 19:46:16', 'd3R13PZ4', '8393173'), + (46, 3150, 'not_attending', '2025-06-02 02:49:41', '2025-12-17 19:46:15', 'd3R13PZ4', '8393174'), + (46, 3152, 'not_attending', '2025-06-02 02:49:32', '2025-12-17 19:46:14', 'd3R13PZ4', '8393582'), + (46, 3153, 'maybe', '2025-06-03 20:40:29', '2025-12-17 19:46:15', 'd3R13PZ4', '8400273'), + (46, 3154, 'attending', '2025-06-04 05:48:46', '2025-12-17 19:46:15', 'd3R13PZ4', '8400274'), + (46, 3155, 'attending', '2025-06-04 05:48:53', '2025-12-17 19:46:16', 'd3R13PZ4', '8400275'), + (46, 3156, 'attending', '2025-06-04 05:48:57', '2025-12-17 19:46:16', 'd3R13PZ4', '8400276'), + (46, 3157, 'not_attending', '2025-06-04 05:48:31', '2025-12-17 19:46:15', 'd3R13PZ4', '8401407'), + (46, 3158, 'not_attending', '2025-06-04 05:48:34', '2025-12-17 19:46:15', 'd3R13PZ4', '8401408'), + (46, 3159, 'not_attending', '2025-06-04 05:48:36', '2025-12-17 19:46:15', 'd3R13PZ4', '8401410'), + (46, 3160, 'not_attending', '2025-06-04 05:48:39', '2025-12-17 19:46:15', 'd3R13PZ4', '8401411'), + (46, 3161, 'not_attending', '2025-06-04 05:48:26', '2025-12-17 19:46:15', 'd3R13PZ4', '8401412'), + (46, 3162, 'not_attending', '2025-06-05 02:00:45', '2025-12-17 19:46:15', 'd3R13PZ4', '8401599'), + (46, 3163, 'not_attending', '2025-06-05 22:56:31', '2025-12-17 19:46:15', 'd3R13PZ4', '8402899'), + (46, 3164, 'maybe', '2025-06-06 06:07:38', '2025-12-17 19:46:15', 'd3R13PZ4', '8403121'), + (46, 3166, 'not_attending', '2025-06-08 22:40:14', '2025-12-17 19:46:15', 'd3R13PZ4', '8404242'), + (46, 3167, 'not_attending', '2025-06-08 22:40:41', '2025-12-17 19:46:15', 'd3R13PZ4', '8404521'), + (46, 3168, 'not_attending', '2025-06-08 22:40:58', '2025-12-17 19:46:15', 'd3R13PZ4', '8404522'), + (46, 3169, 'maybe', '2025-06-08 22:40:23', '2025-12-17 19:46:15', 'd3R13PZ4', '8404977'), + (46, 3170, 'not_attending', '2025-06-10 19:08:38', '2025-12-17 19:46:15', 'd3R13PZ4', '8405947'), + (46, 3171, 'not_attending', '2025-06-13 20:52:43', '2025-12-17 19:46:15', 'd3R13PZ4', '8409765'), + (46, 3172, 'not_attending', '2025-06-14 22:19:11', '2025-12-17 19:46:15', 'd3R13PZ4', '8410181'), + (46, 3173, 'not_attending', '2025-06-14 22:18:46', '2025-12-17 19:46:15', 'd3R13PZ4', '8410806'), + (46, 3175, 'not_attending', '2025-06-14 22:19:16', '2025-12-17 19:46:15', 'd3R13PZ4', '8410815'), + (46, 3176, 'not_attending', '2025-06-20 11:33:43', '2025-12-17 19:46:15', 'd3R13PZ4', '8416741'), + (46, 3177, 'not_attending', '2025-06-20 20:03:18', '2025-12-17 19:46:15', 'd3R13PZ4', '8417592'), + (46, 3178, 'not_attending', '2025-06-24 03:32:56', '2025-12-17 19:46:15', 'd3R13PZ4', '8421848'), + (46, 3179, 'not_attending', '2025-06-24 03:33:02', '2025-12-17 19:46:15', 'd3R13PZ4', '8421850'), + (46, 3180, 'not_attending', '2025-06-25 01:02:38', '2025-12-17 19:46:15', 'd3R13PZ4', '8422682'), + (46, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd3R13PZ4', '8430783'), + (46, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd3R13PZ4', '8430784'), + (46, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd3R13PZ4', '8430799'), + (46, 3184, 'maybe', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd3R13PZ4', '8430800'), + (46, 3185, 'maybe', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd3R13PZ4', '8430801'), + (46, 3186, 'not_attending', '2025-07-01 00:33:35', '2025-12-17 19:46:16', 'd3R13PZ4', '8431527'), + (46, 3187, 'not_attending', '2025-07-03 20:04:47', '2025-12-17 19:46:16', 'd3R13PZ4', '8434478'), + (46, 3188, 'attending', '2025-07-06 21:03:50', '2025-12-17 19:46:17', 'd3R13PZ4', '8438709'), + (46, 3189, 'not_attending', '2025-07-06 21:03:46', '2025-12-17 19:46:16', 'd3R13PZ4', '8438849'), + (46, 3190, 'not_attending', '2025-07-12 20:01:21', '2025-12-17 19:46:17', 'd3R13PZ4', '8443962'), + (46, 3191, 'not_attending', '2025-07-14 19:56:19', '2025-12-17 19:46:17', 'd3R13PZ4', '8444983'), + (46, 3192, 'not_attending', '2025-07-15 20:02:14', '2025-12-17 19:46:17', 'd3R13PZ4', '8456429'), + (46, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd3R13PZ4', '8457738'), + (46, 3194, 'not_attending', '2025-07-17 23:09:33', '2025-12-17 19:46:17', 'd3R13PZ4', '8457740'), + (46, 3195, 'attending', '2025-07-17 23:28:07', '2025-12-17 19:46:17', 'd3R13PZ4', '8458118'), + (46, 3196, 'attending', '2025-07-18 00:22:16', '2025-12-17 19:46:17', 'd3R13PZ4', '8458543'), + (46, 3197, 'not_attending', '2025-07-18 02:41:38', '2025-12-17 19:46:17', 'd3R13PZ4', '8458825'), + (46, 3198, 'attending', '2025-07-18 07:49:06', '2025-12-17 19:46:18', 'd3R13PZ4', '8459268'), + (46, 3199, 'not_attending', '2025-07-19 11:24:33', '2025-12-17 19:46:17', 'd3R13PZ4', '8459565'), + (46, 3200, 'not_attending', '2025-07-19 11:24:40', '2025-12-17 19:46:17', 'd3R13PZ4', '8459566'), + (46, 3201, 'maybe', '2025-07-19 11:24:45', '2025-12-17 19:46:17', 'd3R13PZ4', '8459567'), + (46, 3202, 'not_attending', '2025-07-19 11:24:38', '2025-12-17 19:46:17', 'd3R13PZ4', '8459568'), + (46, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd3R13PZ4', '8461032'), + (46, 3204, 'not_attending', '2025-07-20 03:28:06', '2025-12-17 19:46:17', 'd3R13PZ4', '8461035'), + (46, 3205, 'attending', '2025-07-20 21:25:52', '2025-12-17 19:46:17', 'd3R13PZ4', '8461764'), + (46, 3206, 'maybe', '2025-07-23 03:29:57', '2025-12-17 19:46:17', 'd3R13PZ4', '8462943'), + (46, 3207, 'not_attending', '2025-07-25 22:12:19', '2025-12-17 19:46:17', 'd3R13PZ4', '8466820'), + (46, 3208, 'not_attending', '2025-07-27 04:47:38', '2025-12-17 19:46:17', 'd3R13PZ4', '8467717'), + (46, 3209, 'not_attending', '2025-07-27 20:10:36', '2025-12-17 19:46:17', 'd3R13PZ4', '8467750'), + (46, 3210, 'attending', '2025-07-30 03:16:21', '2025-12-17 19:46:18', 'd3R13PZ4', '8471162'), + (46, 3211, 'maybe', '2025-08-04 23:55:48', '2025-12-17 19:46:17', 'd3R13PZ4', '8477785'), + (46, 3212, 'not_attending', '2025-08-04 23:55:43', '2025-12-17 19:46:17', 'd3R13PZ4', '8477787'), + (46, 3213, 'maybe', '2025-08-05 09:30:23', '2025-12-17 19:46:17', 'd3R13PZ4', '8477876'), + (46, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd3R13PZ4', '8477877'), + (46, 3215, 'maybe', '2025-08-05 09:30:25', '2025-12-17 19:46:18', 'd3R13PZ4', '8477880'), + (46, 3216, 'not_attending', '2025-08-08 10:16:35', '2025-12-17 19:46:17', 'd3R13PZ4', '8481608'), + (46, 3217, 'not_attending', '2025-08-08 19:08:55', '2025-12-17 19:46:17', 'd3R13PZ4', '8481811'), + (46, 3218, 'not_attending', '2025-08-09 19:03:28', '2025-12-17 19:46:17', 'd3R13PZ4', '8481869'), + (46, 3219, 'not_attending', '2025-08-12 13:22:42', '2025-12-17 19:46:18', 'd3R13PZ4', '8482548'), + (46, 3220, 'not_attending', '2025-08-12 13:23:13', '2025-12-17 19:46:18', 'd3R13PZ4', '8485675'), + (46, 3221, 'not_attending', '2025-08-12 13:22:59', '2025-12-17 19:46:18', 'd3R13PZ4', '8485676'), + (46, 3222, 'not_attending', '2025-08-12 13:23:17', '2025-12-17 19:46:11', 'd3R13PZ4', '8485677'), + (46, 3223, 'not_attending', '2025-08-12 13:23:24', '2025-12-17 19:46:12', 'd3R13PZ4', '8485678'), + (46, 3224, 'not_attending', '2025-08-12 13:23:22', '2025-12-17 19:46:12', 'd3R13PZ4', '8485679'), + (46, 3225, 'not_attending', '2025-08-12 13:22:53', '2025-12-17 19:46:18', 'd3R13PZ4', '8485680'), + (46, 3226, 'not_attending', '2025-08-12 13:23:23', '2025-12-17 19:46:12', 'd3R13PZ4', '8485681'), + (46, 3227, 'not_attending', '2025-08-12 13:23:27', '2025-12-17 19:46:12', 'd3R13PZ4', '8485682'), + (46, 3228, 'not_attending', '2025-08-12 13:23:19', '2025-12-17 19:46:11', 'd3R13PZ4', '8485683'), + (46, 3229, 'not_attending', '2025-08-12 13:23:14', '2025-12-17 19:46:18', 'd3R13PZ4', '8485684'), + (46, 3230, 'not_attending', '2025-08-12 13:23:28', '2025-12-17 19:46:12', 'd3R13PZ4', '8485685'), + (46, 3231, 'not_attending', '2025-08-12 13:23:34', '2025-12-17 19:46:13', 'd3R13PZ4', '8485686'), + (46, 3232, 'not_attending', '2025-08-12 13:23:32', '2025-12-17 19:46:13', 'd3R13PZ4', '8485687'), + (46, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd3R13PZ4', '8485688'), + (46, 3235, 'not_attending', '2025-08-17 18:57:07', '2025-12-17 19:46:18', 'd3R13PZ4', '8490587'), + (46, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd3R13PZ4', '8493552'), + (46, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd3R13PZ4', '8493553'), + (46, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd3R13PZ4', '8493554'), + (46, 3239, 'maybe', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd3R13PZ4', '8493555'), + (46, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd3R13PZ4', '8493556'), + (46, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd3R13PZ4', '8493557'), + (46, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd3R13PZ4', '8493558'), + (46, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd3R13PZ4', '8493559'), + (46, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd3R13PZ4', '8493560'), + (46, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'd3R13PZ4', '8493561'), + (46, 3246, 'not_attending', '2025-08-19 21:41:29', '2025-12-17 19:46:13', 'd3R13PZ4', '8493562'), + (46, 3247, 'not_attending', '2025-08-19 21:41:18', '2025-12-17 19:46:14', 'd3R13PZ4', '8493563'), + (46, 3248, 'not_attending', '2025-08-19 21:41:26', '2025-12-17 19:46:13', 'd3R13PZ4', '8493564'), + (46, 3249, 'not_attending', '2025-08-19 21:41:23', '2025-12-17 19:46:13', 'd3R13PZ4', '8493565'), + (46, 3250, 'not_attending', '2025-08-19 21:41:14', '2025-12-17 19:46:14', 'd3R13PZ4', '8493566'), + (46, 3251, 'not_attending', '2025-08-19 21:41:20', '2025-12-17 19:46:14', 'd3R13PZ4', '8493568'), + (46, 3252, 'not_attending', '2025-08-19 21:41:16', '2025-12-17 19:46:14', 'd3R13PZ4', '8493569'), + (46, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd3R13PZ4', '8493572'), + (46, 3254, 'not_attending', '2025-08-19 21:40:57', '2025-12-17 19:46:14', 'd3R13PZ4', '8493575'), + (46, 3255, 'not_attending', '2025-08-22 19:40:31', '2025-12-17 19:46:18', 'd3R13PZ4', '8495106'), + (46, 3256, 'not_attending', '2025-08-28 22:58:11', '2025-12-17 19:46:11', 'd3R13PZ4', '8501354'), + (46, 3257, 'not_attending', '2025-08-28 22:58:07', '2025-12-17 19:46:11', 'd3R13PZ4', '8502340'), + (46, 3258, 'not_attending', '2025-09-02 11:50:09', '2025-12-17 19:46:11', 'd3R13PZ4', '8510285'), + (46, 3261, 'not_attending', '2025-09-13 11:45:58', '2025-12-17 19:46:12', 'd3R13PZ4', '8512641'), + (46, 3262, 'not_attending', '2025-09-13 11:46:04', '2025-12-17 19:46:12', 'd3R13PZ4', '8512642'), + (46, 3264, 'not_attending', '2025-09-13 11:46:02', '2025-12-17 19:46:12', 'd3R13PZ4', '8514577'), + (46, 3265, 'not_attending', '2025-09-13 11:46:11', '2025-12-17 19:46:12', 'd3R13PZ4', '8514578'), + (46, 3266, 'not_attending', '2025-09-13 11:46:17', '2025-12-17 19:46:13', 'd3R13PZ4', '8514579'), + (46, 3268, 'not_attending', '2025-09-13 11:46:06', '2025-12-17 19:46:12', 'd3R13PZ4', '8514581'), + (46, 3269, 'not_attending', '2025-09-13 11:46:13', '2025-12-17 19:46:12', 'd3R13PZ4', '8514582'), + (46, 3270, 'not_attending', '2025-09-13 11:46:19', '2025-12-17 19:46:13', 'd3R13PZ4', '8514583'), + (46, 3271, 'not_attending', '2025-09-16 21:19:27', '2025-12-17 19:46:12', 'd3R13PZ4', '8521430'), + (46, 3272, 'not_attending', '2025-09-17 22:52:53', '2025-12-17 19:46:12', 'd3R13PZ4', '8524068'), + (46, 3273, 'not_attending', '2025-09-19 04:13:13', '2025-12-17 19:46:12', 'd3R13PZ4', '8525831'), + (46, 3274, 'not_attending', '2025-09-20 21:40:43', '2025-12-17 19:46:12', 'd3R13PZ4', '8527784'), + (46, 3275, 'not_attending', '2025-09-20 22:22:32', '2025-12-17 19:46:12', 'd3R13PZ4', '8527786'), + (46, 3276, 'not_attending', '2025-09-22 21:00:21', '2025-12-17 19:46:12', 'd3R13PZ4', '8529058'), + (46, 3277, 'not_attending', '2025-09-27 21:32:06', '2025-12-17 19:46:12', 'd3R13PZ4', '8533938'), + (46, 3278, 'not_attending', '2025-09-30 18:39:55', '2025-12-17 19:46:13', 'd3R13PZ4', '8535533'), + (46, 3279, 'attending', '2025-10-01 08:35:29', '2025-12-17 19:46:13', 'd3R13PZ4', '8535685'), + (46, 3280, 'attending', '2025-10-01 08:35:30', '2025-12-17 19:46:13', 'd3R13PZ4', '8535686'), + (46, 3281, 'attending', '2025-10-01 08:35:32', '2025-12-17 19:46:14', 'd3R13PZ4', '8535687'), + (46, 3282, 'not_attending', '2025-10-04 20:39:33', '2025-12-17 19:46:13', 'd3R13PZ4', '8537571'), + (46, 3283, 'not_attending', '2025-10-05 13:40:01', '2025-12-17 19:46:14', 'd3R13PZ4', '8538077'), + (46, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd3R13PZ4', '8540725'), + (46, 3285, 'not_attending', '2025-10-08 21:07:05', '2025-12-17 19:46:13', 'd3R13PZ4', '8540726'), + (46, 3286, 'not_attending', '2025-10-08 21:07:00', '2025-12-17 19:46:14', 'd3R13PZ4', '8540728'), + (46, 3287, 'not_attending', '2025-10-08 21:07:16', '2025-12-17 19:46:14', 'd3R13PZ4', '8540729'), + (46, 3288, 'not_attending', '2025-10-11 05:46:24', '2025-12-17 19:46:13', 'd3R13PZ4', '8542408'), + (46, 3289, 'not_attending', '2025-10-12 03:41:31', '2025-12-17 19:46:14', 'd3R13PZ4', '8542939'), + (46, 3290, 'not_attending', '2025-10-12 04:39:17', '2025-12-17 19:46:13', 'd3R13PZ4', '8542943'), + (46, 3291, 'not_attending', '2025-10-14 23:18:10', '2025-12-17 19:46:14', 'd3R13PZ4', '8543782'), + (46, 3292, 'not_attending', '2025-10-16 00:46:43', '2025-12-17 19:46:14', 'd3R13PZ4', '8543835'), + (46, 3293, 'not_attending', '2025-10-15 07:45:59', '2025-12-17 19:46:14', 'd3R13PZ4', '8543836'), + (46, 3294, 'not_attending', '2025-10-18 20:17:27', '2025-12-17 19:46:14', 'd3R13PZ4', '8546775'), + (46, 3295, 'attending', '2025-10-19 05:41:12', '2025-12-17 19:46:14', 'd3R13PZ4', '8547541'), + (46, 3296, 'not_attending', '2025-10-20 21:07:25', '2025-12-17 19:46:14', 'd3R13PZ4', '8547711'), + (46, 3297, 'not_attending', '2025-10-21 03:10:23', '2025-12-17 19:46:14', 'd3R13PZ4', '8548090'), + (46, 3298, 'not_attending', '2025-10-21 22:41:27', '2025-12-17 19:46:14', 'd3R13PZ4', '8548211'), + (46, 3299, 'not_attending', '2025-10-25 04:07:28', '2025-12-17 19:46:14', 'd3R13PZ4', '8548493'), + (46, 3300, 'not_attending', '2025-10-26 04:04:29', '2025-12-17 19:46:14', 'd3R13PZ4', '8549145'), + (46, 3302, 'attending', '2025-10-28 00:45:44', '2025-12-17 19:46:14', 'd3R13PZ4', '8550022'), + (46, 3304, 'attending', '2025-10-28 00:46:21', '2025-12-17 19:46:14', 'd3R13PZ4', '8550024'), + (46, 3305, 'attending', '2025-10-28 00:55:49', '2025-12-17 19:46:11', 'd3R13PZ4', '8550025'), + (46, 3306, 'attending', '2025-10-28 00:56:01', '2025-12-17 19:46:11', 'd3R13PZ4', '8550026'), + (46, 3308, 'attending', '2025-10-28 04:25:31', '2025-12-17 19:46:14', 'd3R13PZ4', '8550408'), + (46, 3309, 'attending', '2025-10-28 04:28:11', '2025-12-17 19:46:14', 'd3R13PZ4', '8550409'), + (46, 3310, 'attending', '2025-10-28 04:31:06', '2025-12-17 19:46:11', 'd3R13PZ4', '8550410'), + (46, 3311, 'attending', '2025-10-28 04:31:05', '2025-12-17 19:46:11', 'd3R13PZ4', '8550412'), + (46, 3312, 'not_attending', '2025-10-28 04:31:03', '2025-12-17 19:46:11', 'd3R13PZ4', '8550413'), + (46, 3313, 'not_attending', '2025-10-30 02:23:10', '2025-12-17 19:46:14', 'd3R13PZ4', '8550896'), + (46, 3314, 'not_attending', '2025-11-01 00:13:32', '2025-12-17 19:46:14', 'd3R13PZ4', '8551821'), + (46, 3315, 'not_attending', '2025-11-05 13:03:21', '2025-12-17 19:46:14', 'd3R13PZ4', '8552486'), + (46, 3316, 'not_attending', '2025-11-05 13:03:25', '2025-12-17 19:46:14', 'd3R13PZ4', '8552493'), + (46, 3317, 'not_attending', '2025-11-06 00:50:51', '2025-12-17 19:46:14', 'd3R13PZ4', '8552943'), + (46, 3318, 'maybe', '2025-11-07 02:02:31', '2025-12-17 19:46:14', 'd3R13PZ4', '8553025'), + (46, 3319, 'not_attending', '2025-11-09 08:24:36', '2025-12-17 19:46:14', 'd3R13PZ4', '8553114'), + (46, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd3R13PZ4', '8555421'), + (46, 3333, 'not_attending', '2025-12-04 09:19:14', '2025-12-17 19:46:11', 'd3R13PZ4', '8562500'), + (46, 3340, 'attending', '2025-12-09 02:59:38', '2025-12-17 19:46:11', 'd3R13PZ4', '8563371'), + (47, 3304, 'attending', '2025-11-19 22:13:14', '2025-12-17 19:46:14', 'd2rMEvod', '8550024'), + (47, 3305, 'attending', '2025-12-02 04:36:04', '2025-12-17 19:46:11', 'd2rMEvod', '8550025'), + (47, 3306, 'attending', '2025-12-09 04:06:14', '2025-12-17 19:46:11', 'd2rMEvod', '8550026'), + (47, 3307, 'attending', '2025-12-16 01:34:28', '2025-12-17 19:46:11', 'd2rMEvod', '8550027'), + (47, 3310, 'attending', '2025-11-20 05:37:39', '2025-12-17 19:46:11', 'd2rMEvod', '8550410'), + (47, 3311, 'attending', '2025-12-05 05:07:44', '2025-12-17 19:46:11', 'd2rMEvod', '8550412'), + (47, 3324, 'attending', '2025-11-19 17:14:38', '2025-12-17 19:46:14', 'd2rMEvod', '8556406'), + (47, 3325, 'maybe', '2025-11-20 05:40:54', '2025-12-17 19:46:14', 'd2rMEvod', '8556660'), + (47, 3326, 'maybe', '2025-11-20 21:45:58', '2025-12-17 19:46:14', 'd2rMEvod', '8556661'), + (47, 3327, 'attending', '2025-11-21 01:39:45', '2025-12-17 19:46:11', 'd2rMEvod', '8557174'), + (47, 3331, 'attending', '2025-12-02 04:36:22', '2025-12-17 19:46:11', 'd2rMEvod', '8562166'), + (47, 3333, 'attending', '2025-12-06 03:20:39', '2025-12-17 19:46:11', 'd2rMEvod', '8562500'), + (47, 3334, 'attending', '2025-12-05 05:05:39', '2025-12-17 19:46:11', 'd2rMEvod', '8563246'), + (47, 3335, 'attending', '2025-12-05 05:07:19', '2025-12-17 19:46:11', 'd2rMEvod', '8563247'), + (47, 3336, 'maybe', '2025-12-05 05:07:51', '2025-12-17 19:46:11', 'd2rMEvod', '8563248'), + (47, 3337, 'maybe', '2025-12-07 04:10:12', '2025-12-17 19:46:11', 'd2rMEvod', '8563315'), + (48, 571, 'attending', '2021-02-12 18:28:52', '2025-12-17 19:47:50', 'oAgrkRqm', '3435539'), + (48, 573, 'maybe', '2021-02-18 07:55:47', '2025-12-17 19:47:50', 'oAgrkRqm', '3435542'), + (48, 574, 'maybe', '2021-03-02 03:55:38', '2025-12-17 19:47:51', 'oAgrkRqm', '3435543'), + (48, 582, 'not_attending', '2021-02-28 21:41:23', '2025-12-17 19:47:50', 'oAgrkRqm', '3445769'), + (48, 587, 'not_attending', '2021-02-15 16:53:51', '2025-12-17 19:47:50', 'oAgrkRqm', '3449470'), + (48, 592, 'maybe', '2021-02-18 07:55:18', '2025-12-17 19:47:50', 'oAgrkRqm', '3467757'), + (48, 594, 'maybe', '2021-02-15 17:09:47', '2025-12-17 19:47:51', 'oAgrkRqm', '3467759'), + (48, 595, 'maybe', '2021-03-06 06:57:18', '2025-12-17 19:47:51', 'oAgrkRqm', '3467761'), + (48, 596, 'maybe', '2021-03-06 06:57:11', '2025-12-17 19:47:51', 'oAgrkRqm', '3467762'), + (48, 597, 'not_attending', '2021-03-12 19:28:37', '2025-12-17 19:47:51', 'oAgrkRqm', '3467764'), + (48, 599, 'attending', '2021-02-15 16:53:25', '2025-12-17 19:47:50', 'oAgrkRqm', '3468117'), + (48, 600, 'maybe', '2021-02-18 07:53:10', '2025-12-17 19:47:50', 'oAgrkRqm', '3468125'), + (48, 601, 'not_attending', '2021-02-15 19:57:44', '2025-12-17 19:47:50', 'oAgrkRqm', '3468131'), + (48, 602, 'attending', '2021-02-12 18:28:57', '2025-12-17 19:47:50', 'oAgrkRqm', '3470303'), + (48, 603, 'attending', '2021-02-15 01:51:18', '2025-12-17 19:47:50', 'oAgrkRqm', '3470304'), + (48, 604, 'attending', '2021-02-21 10:17:40', '2025-12-17 19:47:50', 'oAgrkRqm', '3470305'), + (48, 605, 'attending', '2021-02-14 02:37:23', '2025-12-17 19:47:50', 'oAgrkRqm', '3470991'), + (48, 607, 'maybe', '2021-02-18 07:54:20', '2025-12-17 19:47:50', 'oAgrkRqm', '3471882'), + (48, 610, 'attending', '2021-02-12 18:28:07', '2025-12-17 19:47:50', 'oAgrkRqm', '3482159'), + (48, 611, 'attending', '2021-02-15 19:16:22', '2025-12-17 19:47:50', 'oAgrkRqm', '3482659'), + (48, 612, 'attending', '2021-02-15 01:49:43', '2025-12-17 19:47:50', 'oAgrkRqm', '3490040'), + (48, 613, 'attending', '2021-02-15 01:49:48', '2025-12-17 19:47:50', 'oAgrkRqm', '3490041'), + (48, 614, 'attending', '2021-02-15 01:50:10', '2025-12-17 19:47:51', 'oAgrkRqm', '3490042'), + (48, 615, 'attending', '2021-02-15 16:59:17', '2025-12-17 19:47:50', 'oAgrkRqm', '3490045'), + (48, 616, 'maybe', '2021-02-18 21:30:14', '2025-12-17 19:47:50', 'oAgrkRqm', '3493478'), + (48, 618, 'attending', '2021-02-20 09:01:47', '2025-12-17 19:47:50', 'oAgrkRqm', '3503991'), + (48, 620, 'maybe', '2021-02-22 23:59:25', '2025-12-17 19:47:50', 'oAgrkRqm', '3513703'), + (48, 621, 'attending', '2021-02-24 16:29:54', '2025-12-17 19:47:51', 'oAgrkRqm', '3517815'), + (48, 622, 'attending', '2021-02-24 16:29:59', '2025-12-17 19:47:51', 'oAgrkRqm', '3517816'), + (48, 623, 'attending', '2021-02-25 23:36:20', '2025-12-17 19:47:50', 'oAgrkRqm', '3523941'), + (48, 625, 'attending', '2021-02-28 21:06:40', '2025-12-17 19:47:51', 'oAgrkRqm', '3533296'), + (48, 626, 'attending', '2021-02-28 21:06:49', '2025-12-17 19:47:51', 'oAgrkRqm', '3533298'), + (48, 627, 'maybe', '2021-02-28 21:39:05', '2025-12-17 19:47:51', 'oAgrkRqm', '3533303'), + (48, 628, 'maybe', '2021-02-28 21:38:57', '2025-12-17 19:47:51', 'oAgrkRqm', '3533305'), + (48, 629, 'maybe', '2021-02-28 21:39:31', '2025-12-17 19:47:51', 'oAgrkRqm', '3533307'), + (48, 631, 'attending', '2021-03-01 05:19:00', '2025-12-17 19:47:51', 'oAgrkRqm', '3533850'), + (48, 633, 'maybe', '2021-03-14 08:00:00', '2025-12-17 19:47:44', 'oAgrkRqm', '3534717'), + (48, 637, 'maybe', '2021-03-02 15:30:19', '2025-12-17 19:47:51', 'oAgrkRqm', '3536411'), + (48, 638, 'attending', '2021-04-04 01:52:58', '2025-12-17 19:47:44', 'oAgrkRqm', '3536632'), + (48, 639, 'attending', '2021-03-20 02:51:35', '2025-12-17 19:47:51', 'oAgrkRqm', '3536656'), + (48, 640, 'attending', '2021-03-03 02:19:53', '2025-12-17 19:47:51', 'oAgrkRqm', '3538866'), + (48, 641, 'attending', '2021-04-03 15:41:04', '2025-12-17 19:47:44', 'oAgrkRqm', '3539916'), + (48, 642, 'attending', '2021-04-10 22:34:49', '2025-12-17 19:47:44', 'oAgrkRqm', '3539917'), + (48, 643, 'attending', '2021-04-17 15:36:10', '2025-12-17 19:47:45', 'oAgrkRqm', '3539918'), + (48, 644, 'attending', '2021-04-21 15:20:54', '2025-12-17 19:47:45', 'oAgrkRqm', '3539919'), + (48, 645, 'attending', '2021-05-02 13:40:44', '2025-12-17 19:47:46', 'oAgrkRqm', '3539920'), + (48, 646, 'attending', '2021-05-13 23:23:25', '2025-12-17 19:47:46', 'oAgrkRqm', '3539921'), + (48, 647, 'attending', '2021-05-21 09:41:25', '2025-12-17 19:47:46', 'oAgrkRqm', '3539922'), + (48, 648, 'attending', '2021-05-27 20:56:43', '2025-12-17 19:47:47', 'oAgrkRqm', '3539923'), + (48, 649, 'maybe', '2021-03-03 20:22:27', '2025-12-17 19:47:51', 'oAgrkRqm', '3539927'), + (48, 650, 'attending', '2021-03-27 08:34:35', '2025-12-17 19:47:44', 'oAgrkRqm', '3539928'), + (48, 651, 'attending', '2021-03-10 17:40:40', '2025-12-17 19:47:51', 'oAgrkRqm', '3541045'), + (48, 652, 'attending', '2021-03-07 19:53:18', '2025-12-17 19:47:51', 'oAgrkRqm', '3544466'), + (48, 679, 'maybe', '2021-03-10 13:24:11', '2025-12-17 19:47:44', 'oAgrkRqm', '3547168'), + (48, 681, 'attending', '2021-03-07 22:03:42', '2025-12-17 19:47:43', 'oAgrkRqm', '3548803'), + (48, 684, 'attending', '2021-03-12 19:39:13', '2025-12-17 19:47:51', 'oAgrkRqm', '3549257'), + (48, 685, 'not_attending', '2021-04-12 23:15:42', '2025-12-17 19:47:44', 'oAgrkRqm', '3551564'), + (48, 686, 'maybe', '2021-03-10 13:23:32', '2025-12-17 19:47:51', 'oAgrkRqm', '3553333'), + (48, 687, 'maybe', '2021-03-12 01:59:22', '2025-12-17 19:47:51', 'oAgrkRqm', '3553405'), + (48, 690, 'maybe', '2021-03-11 15:03:22', '2025-12-17 19:47:43', 'oAgrkRqm', '3559954'), + (48, 691, 'maybe', '2021-03-16 15:26:56', '2025-12-17 19:47:45', 'oAgrkRqm', '3561928'), + (48, 695, 'attending', '2021-03-18 19:54:23', '2025-12-17 19:47:51', 'oAgrkRqm', '3567535'), + (48, 696, 'maybe', '2021-03-14 08:00:00', '2025-12-17 19:47:51', 'oAgrkRqm', '3567536'), + (48, 697, 'maybe', '2021-03-14 08:00:00', '2025-12-17 19:47:44', 'oAgrkRqm', '3567537'), + (48, 698, 'attending', '2021-03-16 15:26:16', '2025-12-17 19:47:44', 'oAgrkRqm', '3571867'), + (48, 703, 'maybe', '2021-03-19 17:20:44', '2025-12-17 19:47:44', 'oAgrkRqm', '3578388'), + (48, 704, 'maybe', '2021-03-19 17:20:19', '2025-12-17 19:47:44', 'oAgrkRqm', '3581429'), + (48, 705, 'maybe', '2021-03-19 17:20:13', '2025-12-17 19:47:44', 'oAgrkRqm', '3581895'), + (48, 706, 'attending', '2021-04-18 17:45:29', '2025-12-17 19:47:45', 'oAgrkRqm', '3582734'), + (48, 707, 'attending', '2021-04-23 18:13:02', '2025-12-17 19:47:46', 'oAgrkRqm', '3583262'), + (48, 708, 'maybe', '2021-03-25 23:29:35', '2025-12-17 19:47:44', 'oAgrkRqm', '3587850'), + (48, 711, 'maybe', '2021-03-29 21:45:58', '2025-12-17 19:47:44', 'oAgrkRqm', '3588075'), + (48, 715, 'maybe', '2021-03-25 16:30:16', '2025-12-17 19:47:44', 'oAgrkRqm', '3604146'), + (48, 717, 'maybe', '2021-03-25 16:29:47', '2025-12-17 19:47:44', 'oAgrkRqm', '3619523'), + (48, 724, 'attending', '2021-05-09 06:25:05', '2025-12-17 19:47:46', 'oAgrkRqm', '3661369'), + (48, 725, 'attending', '2021-05-09 23:51:18', '2025-12-17 19:47:47', 'oAgrkRqm', '3661372'), + (48, 727, 'attending', '2021-06-04 20:30:42', '2025-12-17 19:47:38', 'oAgrkRqm', '3661377'), + (48, 728, 'maybe', '2021-04-12 23:16:24', '2025-12-17 19:47:44', 'oAgrkRqm', '3668073'), + (48, 729, 'maybe', '2021-04-12 23:16:29', '2025-12-17 19:47:46', 'oAgrkRqm', '3668075'), + (48, 730, 'not_attending', '2021-05-05 22:23:58', '2025-12-17 19:47:46', 'oAgrkRqm', '3668076'), + (48, 731, 'not_attending', '2021-04-04 01:51:16', '2025-12-17 19:47:44', 'oAgrkRqm', '3674262'), + (48, 732, 'not_attending', '2021-04-21 15:20:38', '2025-12-17 19:47:45', 'oAgrkRqm', '3674268'), + (48, 735, 'not_attending', '2021-05-02 13:38:42', '2025-12-17 19:47:46', 'oAgrkRqm', '3677402'), + (48, 761, 'maybe', '2021-05-01 14:39:29', '2025-12-17 19:47:46', 'oAgrkRqm', '3716041'), + (48, 764, 'maybe', '2021-04-23 18:12:40', '2025-12-17 19:47:45', 'oAgrkRqm', '3720507'), + (48, 766, 'maybe', '2021-05-01 14:39:18', '2025-12-17 19:47:46', 'oAgrkRqm', '3721383'), + (48, 774, 'maybe', '2021-04-21 15:20:10', '2025-12-17 19:47:45', 'oAgrkRqm', '3730212'), + (48, 777, 'attending', '2021-05-01 15:00:56', '2025-12-17 19:47:46', 'oAgrkRqm', '3746248'), + (48, 779, 'attending', '2021-05-02 13:38:49', '2025-12-17 19:47:46', 'oAgrkRqm', '3757118'), + (48, 781, 'attending', '2021-05-06 23:35:43', '2025-12-17 19:47:46', 'oAgrkRqm', '3760130'), + (48, 790, 'attending', '2021-05-07 21:39:11', '2025-12-17 19:47:46', 'oAgrkRqm', '3789923'), + (48, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAgrkRqm', '3793156'), + (48, 794, 'maybe', '2021-05-26 22:37:32', '2025-12-17 19:47:47', 'oAgrkRqm', '3793538'), + (48, 795, 'maybe', '2021-06-04 20:30:04', '2025-12-17 19:47:47', 'oAgrkRqm', '3793539'), + (48, 796, 'maybe', '2021-05-08 02:43:45', '2025-12-17 19:47:46', 'oAgrkRqm', '3793862'), + (48, 805, 'attending', '2021-06-04 20:30:24', '2025-12-17 19:47:47', 'oAgrkRqm', '3804777'), + (48, 819, 'not_attending', '2021-05-30 21:57:08', '2025-12-17 19:47:47', 'oAgrkRqm', '3833017'), + (48, 823, 'attending', '2021-06-17 13:08:56', '2025-12-17 19:47:48', 'oAgrkRqm', '3974109'), + (48, 824, 'maybe', '2021-05-30 07:28:37', '2025-12-17 19:47:47', 'oAgrkRqm', '3974112'), + (48, 827, 'attending', '2021-06-04 20:27:03', '2025-12-17 19:47:47', 'oAgrkRqm', '3975311'), + (48, 828, 'not_attending', '2021-06-03 14:38:31', '2025-12-17 19:47:47', 'oAgrkRqm', '3975312'), + (48, 837, 'maybe', '2021-06-04 20:30:32', '2025-12-17 19:47:48', 'oAgrkRqm', '3992545'), + (48, 838, 'maybe', '2021-06-06 22:03:15', '2025-12-17 19:47:47', 'oAgrkRqm', '3994992'), + (48, 841, 'maybe', '2021-06-09 03:50:40', '2025-12-17 19:47:48', 'oAgrkRqm', '4007434'), + (48, 844, 'maybe', '2021-06-23 21:59:38', '2025-12-17 19:47:38', 'oAgrkRqm', '4014338'), + (48, 845, 'not_attending', '2021-06-30 18:33:16', '2025-12-17 19:47:38', 'oAgrkRqm', '4015717'), + (48, 859, 'maybe', '2021-06-10 18:43:12', '2025-12-17 19:47:48', 'oAgrkRqm', '4015993'), + (48, 867, 'attending', '2021-06-25 22:39:04', '2025-12-17 19:47:38', 'oAgrkRqm', '4021848'), + (48, 869, 'maybe', '2021-06-30 18:33:45', '2025-12-17 19:47:38', 'oAgrkRqm', '4136744'), + (48, 870, 'attending', '2021-06-28 13:54:18', '2025-12-17 19:47:38', 'oAgrkRqm', '4136937'), + (48, 871, 'attending', '2021-07-10 18:15:29', '2025-12-17 19:47:39', 'oAgrkRqm', '4136938'), + (48, 872, 'maybe', '2021-06-19 10:42:02', '2025-12-17 19:47:40', 'oAgrkRqm', '4136947'), + (48, 874, 'maybe', '2021-06-16 13:18:08', '2025-12-17 19:47:38', 'oAgrkRqm', '4139815'), + (48, 875, 'maybe', '2021-06-16 13:18:24', '2025-12-17 19:47:38', 'oAgrkRqm', '4139816'), + (48, 876, 'maybe', '2021-06-19 10:41:09', '2025-12-17 19:47:38', 'oAgrkRqm', '4139926'), + (48, 879, 'maybe', '2021-06-17 13:08:32', '2025-12-17 19:47:38', 'oAgrkRqm', '4147806'), + (48, 883, 'maybe', '2021-06-21 15:09:02', '2025-12-17 19:47:38', 'oAgrkRqm', '4209121'), + (48, 884, 'not_attending', '2021-08-11 11:15:35', '2025-12-17 19:47:42', 'oAgrkRqm', '4210314'), + (48, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAgrkRqm', '4225444'), + (48, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAgrkRqm', '4239259'), + (48, 900, 'attending', '2021-07-24 10:53:57', '2025-12-17 19:47:40', 'oAgrkRqm', '4240316'), + (48, 901, 'attending', '2021-07-31 20:28:14', '2025-12-17 19:47:40', 'oAgrkRqm', '4240317'), + (48, 902, 'attending', '2021-08-07 20:11:50', '2025-12-17 19:47:41', 'oAgrkRqm', '4240318'), + (48, 903, 'attending', '2021-08-13 23:20:46', '2025-12-17 19:47:42', 'oAgrkRqm', '4240320'), + (48, 905, 'maybe', '2021-07-05 13:14:09', '2025-12-17 19:47:39', 'oAgrkRqm', '4250163'), + (48, 908, 'maybe', '2021-07-12 07:07:34', '2025-12-17 19:47:39', 'oAgrkRqm', '4257613'), + (48, 916, 'attending', '2021-07-22 23:04:32', '2025-12-17 19:47:40', 'oAgrkRqm', '4273772'), + (48, 917, 'attending', '2021-07-14 12:22:23', '2025-12-17 19:47:39', 'oAgrkRqm', '4274481'), + (48, 919, 'maybe', '2021-07-17 20:17:24', '2025-12-17 19:47:39', 'oAgrkRqm', '4275957'), + (48, 920, 'attending', '2021-07-18 21:58:51', '2025-12-17 19:47:40', 'oAgrkRqm', '4277819'), + (48, 921, 'maybe', '2021-07-14 12:22:19', '2025-12-17 19:47:39', 'oAgrkRqm', '4278368'), + (48, 926, 'attending', '2021-08-18 22:18:17', '2025-12-17 19:47:42', 'oAgrkRqm', '4297211'), + (48, 930, 'maybe', '2021-07-22 21:19:43', '2025-12-17 19:47:41', 'oAgrkRqm', '4300787'), + (48, 931, 'maybe', '2021-07-26 00:05:52', '2025-12-17 19:47:40', 'oAgrkRqm', '4301535'), + (48, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAgrkRqm', '4301723'), + (48, 934, 'not_attending', '2021-08-03 18:01:30', '2025-12-17 19:47:41', 'oAgrkRqm', '4302093'), + (48, 935, 'not_attending', '2021-08-13 23:20:24', '2025-12-17 19:47:41', 'oAgrkRqm', '4304151'), + (48, 961, 'not_attending', '2021-08-11 11:15:14', '2025-12-17 19:47:42', 'oAgrkRqm', '4345519'), + (48, 965, 'maybe', '2021-08-17 19:46:43', '2025-12-17 19:47:42', 'oAgrkRqm', '4353703'), + (48, 971, 'not_attending', '2021-09-08 14:09:42', '2025-12-17 19:47:43', 'oAgrkRqm', '4356801'), + (48, 972, 'not_attending', '2021-08-20 19:58:04', '2025-12-17 19:47:42', 'oAgrkRqm', '4358025'), + (48, 973, 'maybe', '2021-08-20 19:58:34', '2025-12-17 19:47:42', 'oAgrkRqm', '4366186'), + (48, 974, 'not_attending', '2021-08-21 15:57:35', '2025-12-17 19:47:42', 'oAgrkRqm', '4366187'), + (48, 976, 'maybe', '2021-08-17 19:46:39', '2025-12-17 19:47:42', 'oAgrkRqm', '4373933'), + (48, 980, 'maybe', '2021-08-20 19:58:16', '2025-12-17 19:47:42', 'oAgrkRqm', '4380358'), + (48, 987, 'maybe', '2021-08-29 17:31:34', '2025-12-17 19:47:43', 'oAgrkRqm', '4402634'), + (48, 988, 'not_attending', '2021-08-24 13:55:13', '2025-12-17 19:47:42', 'oAgrkRqm', '4402823'), + (48, 990, 'attending', '2021-09-03 03:05:22', '2025-12-17 19:47:43', 'oAgrkRqm', '4420735'), + (48, 991, 'not_attending', '2021-09-08 13:22:04', '2025-12-17 19:47:43', 'oAgrkRqm', '4420738'), + (48, 992, 'attending', '2021-09-18 19:04:41', '2025-12-17 19:47:33', 'oAgrkRqm', '4420739'), + (48, 993, 'attending', '2021-09-23 00:00:26', '2025-12-17 19:47:34', 'oAgrkRqm', '4420741'), + (48, 994, 'not_attending', '2021-10-02 03:54:34', '2025-12-17 19:47:34', 'oAgrkRqm', '4420742'), + (48, 995, 'not_attending', '2021-10-07 04:08:14', '2025-12-17 19:47:34', 'oAgrkRqm', '4420744'), + (48, 996, 'attending', '2021-10-16 14:42:06', '2025-12-17 19:47:35', 'oAgrkRqm', '4420747'), + (48, 997, 'not_attending', '2021-10-23 07:01:07', '2025-12-17 19:47:35', 'oAgrkRqm', '4420748'), + (48, 998, 'maybe', '2021-08-29 17:31:11', '2025-12-17 19:47:36', 'oAgrkRqm', '4420749'), + (48, 1016, 'attending', '2021-09-03 17:14:14', '2025-12-17 19:47:43', 'oAgrkRqm', '4441271'), + (48, 1017, 'not_attending', '2021-09-06 23:16:09', '2025-12-17 19:47:43', 'oAgrkRqm', '4441822'), + (48, 1020, 'not_attending', '2021-09-13 22:45:20', '2025-12-17 19:47:43', 'oAgrkRqm', '4451787'), + (48, 1021, 'not_attending', '2021-09-19 23:56:29', '2025-12-17 19:47:34', 'oAgrkRqm', '4451803'), + (48, 1023, 'not_attending', '2021-09-10 01:00:45', '2025-12-17 19:47:43', 'oAgrkRqm', '4461883'), + (48, 1032, 'maybe', '2021-09-19 23:56:00', '2025-12-17 19:47:34', 'oAgrkRqm', '4473825'), + (48, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAgrkRqm', '4508342'), + (48, 1072, 'maybe', '2021-10-02 18:24:33', '2025-12-17 19:47:34', 'oAgrkRqm', '4516287'), + (48, 1074, 'maybe', '2021-09-29 20:01:20', '2025-12-17 19:47:34', 'oAgrkRqm', '4528953'), + (48, 1077, 'maybe', '2021-10-12 00:15:37', '2025-12-17 19:47:34', 'oAgrkRqm', '4540903'), + (48, 1079, 'maybe', '2021-10-20 17:37:04', '2025-12-17 19:47:35', 'oAgrkRqm', '4563823'), + (48, 1083, 'maybe', '2021-10-12 00:15:19', '2025-12-17 19:47:34', 'oAgrkRqm', '4566768'), + (48, 1084, 'not_attending', '2021-10-16 14:04:35', '2025-12-17 19:47:35', 'oAgrkRqm', '4566769'), + (48, 1085, 'not_attending', '2021-12-23 16:38:18', '2025-12-17 19:47:31', 'oAgrkRqm', '4568542'), + (48, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAgrkRqm', '4568602'), + (48, 1087, 'not_attending', '2021-10-16 14:04:39', '2025-12-17 19:47:35', 'oAgrkRqm', '4572153'), + (48, 1092, 'not_attending', '2021-10-21 18:35:07', '2025-12-17 19:47:35', 'oAgrkRqm', '4582837'), + (48, 1093, 'not_attending', '2021-10-20 23:15:10', '2025-12-17 19:47:35', 'oAgrkRqm', '4585962'), + (48, 1094, 'attending', '2021-10-31 17:06:57', '2025-12-17 19:47:36', 'oAgrkRqm', '4587337'), + (48, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'oAgrkRqm', '4596356'), + (48, 1097, 'maybe', '2021-10-28 14:34:12', '2025-12-17 19:47:36', 'oAgrkRqm', '4598860'), + (48, 1098, 'attending', '2021-11-10 21:12:39', '2025-12-17 19:47:36', 'oAgrkRqm', '4598861'), + (48, 1099, 'maybe', '2021-10-31 17:06:31', '2025-12-17 19:47:36', 'oAgrkRqm', '4602797'), + (48, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'oAgrkRqm', '4637896'), + (48, 1116, 'maybe', '2021-11-14 07:58:36', '2025-12-17 19:47:37', 'oAgrkRqm', '4642994'), + (48, 1117, 'attending', '2021-12-08 20:56:53', '2025-12-17 19:47:37', 'oAgrkRqm', '4642995'), + (48, 1118, 'maybe', '2021-11-14 07:58:33', '2025-12-17 19:47:38', 'oAgrkRqm', '4642996'), + (48, 1119, 'maybe', '2021-11-14 07:58:31', '2025-12-17 19:47:31', 'oAgrkRqm', '4642997'), + (48, 1126, 'maybe', '2021-11-14 23:42:42', '2025-12-17 19:47:38', 'oAgrkRqm', '4645687'), + (48, 1127, 'maybe', '2021-11-14 23:42:40', '2025-12-17 19:47:38', 'oAgrkRqm', '4645698'), + (48, 1128, 'attending', '2021-11-19 20:33:41', '2025-12-17 19:47:37', 'oAgrkRqm', '4645704'), + (48, 1129, 'attending', '2021-11-27 13:22:15', '2025-12-17 19:47:37', 'oAgrkRqm', '4645705'), + (48, 1130, 'attending', '2021-12-04 08:47:19', '2025-12-17 19:47:37', 'oAgrkRqm', '4658824'), + (48, 1131, 'attending', '2021-12-13 01:04:32', '2025-12-17 19:47:31', 'oAgrkRqm', '4658825'), + (48, 1133, 'not_attending', '2021-11-24 00:45:34', '2025-12-17 19:47:37', 'oAgrkRqm', '4661671'), + (48, 1134, 'not_attending', '2021-11-24 17:39:50', '2025-12-17 19:47:37', 'oAgrkRqm', '4668385'), + (48, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAgrkRqm', '4694407'), + (48, 1152, 'attending', '2022-01-12 22:03:32', '2025-12-17 19:47:31', 'oAgrkRqm', '4708705'), + (48, 1155, 'maybe', '2021-12-20 22:42:05', '2025-12-17 19:47:31', 'oAgrkRqm', '4715119'), + (48, 1159, 'maybe', '2022-01-04 04:07:58', '2025-12-17 19:47:31', 'oAgrkRqm', '4717532'), + (48, 1170, 'maybe', '2022-01-10 00:18:23', '2025-12-17 19:47:31', 'oAgrkRqm', '4731045'), + (48, 1172, 'not_attending', '2022-01-19 00:45:32', '2025-12-17 19:47:32', 'oAgrkRqm', '4735348'), + (48, 1173, 'attending', '2022-01-08 22:31:42', '2025-12-17 19:47:31', 'oAgrkRqm', '4736495'), + (48, 1174, 'attending', '2022-01-12 18:17:26', '2025-12-17 19:47:31', 'oAgrkRqm', '4736496'), + (48, 1175, 'attending', '2022-01-22 18:52:59', '2025-12-17 19:47:32', 'oAgrkRqm', '4736497'), + (48, 1176, 'attending', '2022-02-05 19:10:50', '2025-12-17 19:47:32', 'oAgrkRqm', '4736498'), + (48, 1177, 'attending', '2022-02-09 01:42:47', '2025-12-17 19:47:32', 'oAgrkRqm', '4736499'), + (48, 1178, 'attending', '2022-01-27 19:36:39', '2025-12-17 19:47:32', 'oAgrkRqm', '4736500'), + (48, 1179, 'attending', '2022-02-19 08:21:06', '2025-12-17 19:47:32', 'oAgrkRqm', '4736501'), + (48, 1181, 'attending', '2022-03-02 15:31:47', '2025-12-17 19:47:33', 'oAgrkRqm', '4736503'), + (48, 1182, 'attending', '2022-03-11 16:39:08', '2025-12-17 19:47:33', 'oAgrkRqm', '4736504'), + (48, 1185, 'not_attending', '2022-01-12 22:53:50', '2025-12-17 19:47:31', 'oAgrkRqm', '4746789'), + (48, 1188, 'not_attending', '2022-01-12 22:53:27', '2025-12-17 19:47:32', 'oAgrkRqm', '4753929'), + (48, 1202, 'not_attending', '2022-01-27 23:54:06', '2025-12-17 19:47:32', 'oAgrkRqm', '4769423'), + (48, 1206, 'attending', '2022-04-08 21:57:36', '2025-12-17 19:47:27', 'oAgrkRqm', '4773578'), + (48, 1207, 'attending', '2022-05-08 21:49:59', '2025-12-17 19:47:28', 'oAgrkRqm', '4773579'), + (48, 1216, 'not_attending', '2022-01-27 19:37:39', '2025-12-17 19:47:32', 'oAgrkRqm', '4781137'), + (48, 1217, 'attending', '2022-01-27 19:36:52', '2025-12-17 19:47:32', 'oAgrkRqm', '4781139'), + (48, 1229, 'attending', '2022-02-18 04:58:44', '2025-12-17 19:47:32', 'oAgrkRqm', '5034963'), + (48, 1232, 'not_attending', '2022-02-09 01:42:19', '2025-12-17 19:47:32', 'oAgrkRqm', '5038850'), + (48, 1236, 'maybe', '2022-02-16 23:54:01', '2025-12-17 19:47:32', 'oAgrkRqm', '5045826'), + (48, 1239, 'maybe', '2022-03-02 15:31:31', '2025-12-17 19:47:33', 'oAgrkRqm', '5052238'), + (48, 1252, 'not_attending', '2022-03-04 23:27:11', '2025-12-17 19:47:33', 'oAgrkRqm', '5129121'), + (48, 1253, 'attending', '2022-02-28 20:05:36', '2025-12-17 19:47:33', 'oAgrkRqm', '5129122'), + (48, 1259, 'not_attending', '2022-03-01 18:17:28', '2025-12-17 19:47:33', 'oAgrkRqm', '5132533'), + (48, 1261, 'not_attending', '2022-03-07 23:45:27', '2025-12-17 19:47:33', 'oAgrkRqm', '5154274'), + (48, 1266, 'attending', '2022-03-14 23:45:28', '2025-12-17 19:47:33', 'oAgrkRqm', '5166407'), + (48, 1267, 'not_attending', '2022-03-17 15:07:44', '2025-12-17 19:47:25', 'oAgrkRqm', '5169578'), + (48, 1269, 'maybe', '2022-03-13 21:43:32', '2025-12-17 19:47:25', 'oAgrkRqm', '5179439'), + (48, 1270, 'maybe', '2022-03-17 15:08:10', '2025-12-17 19:47:25', 'oAgrkRqm', '5181277'), + (48, 1272, 'attending', '2022-03-17 15:08:12', '2025-12-17 19:47:25', 'oAgrkRqm', '5186582'), + (48, 1273, 'attending', '2022-03-26 16:34:47', '2025-12-17 19:47:25', 'oAgrkRqm', '5186583'), + (48, 1274, 'attending', '2022-03-29 16:49:28', '2025-12-17 19:47:26', 'oAgrkRqm', '5186585'), + (48, 1276, 'maybe', '2022-03-17 15:08:25', '2025-12-17 19:47:25', 'oAgrkRqm', '5186820'), + (48, 1278, 'not_attending', '2022-03-17 15:07:37', '2025-12-17 19:47:33', 'oAgrkRqm', '5186920'), + (48, 1281, 'attending', '2022-04-09 17:35:23', '2025-12-17 19:47:27', 'oAgrkRqm', '5190437'), + (48, 1284, 'attending', '2022-04-11 20:09:53', '2025-12-17 19:47:27', 'oAgrkRqm', '5195095'), + (48, 1287, 'attending', '2022-03-23 04:23:21', '2025-12-17 19:47:25', 'oAgrkRqm', '5199425'), + (48, 1293, 'attending', '2022-03-27 21:08:21', '2025-12-17 19:47:27', 'oAgrkRqm', '5214641'), + (48, 1297, 'not_attending', '2022-03-29 16:49:21', '2025-12-17 19:47:26', 'oAgrkRqm', '5215989'), + (48, 1298, 'attending', '2022-03-29 16:49:08', '2025-12-17 19:47:25', 'oAgrkRqm', '5216645'), + (48, 1307, 'not_attending', '2022-04-05 23:35:54', '2025-12-17 19:47:27', 'oAgrkRqm', '5223686'), + (48, 1309, 'maybe', '2022-04-06 19:07:13', '2025-12-17 19:47:26', 'oAgrkRqm', '5227432'), + (48, 1312, 'maybe', '2022-04-11 20:09:49', '2025-12-17 19:47:27', 'oAgrkRqm', '5231459'), + (48, 1313, 'maybe', '2022-04-11 20:09:38', '2025-12-17 19:47:27', 'oAgrkRqm', '5231461'), + (48, 1316, 'maybe', '2022-04-11 20:09:02', '2025-12-17 19:47:27', 'oAgrkRqm', '5237536'), + (48, 1322, 'attending', '2022-04-26 15:14:49', '2025-12-17 19:47:27', 'oAgrkRqm', '5238356'), + (48, 1325, 'not_attending', '2022-04-12 17:13:41', '2025-12-17 19:47:28', 'oAgrkRqm', '5238361'), + (48, 1337, 'attending', '2022-04-20 18:42:22', '2025-12-17 19:47:27', 'oAgrkRqm', '5245036'), + (48, 1346, 'attending', '2022-04-17 16:40:53', '2025-12-17 19:47:27', 'oAgrkRqm', '5247467'), + (48, 1351, 'maybe', '2022-05-02 13:46:41', '2025-12-17 19:47:28', 'oAgrkRqm', '5251561'), + (48, 1354, 'maybe', '2022-04-22 14:59:27', '2025-12-17 19:47:27', 'oAgrkRqm', '5252569'), + (48, 1362, 'attending', '2022-04-25 17:29:24', '2025-12-17 19:47:28', 'oAgrkRqm', '5260800'), + (48, 1369, 'maybe', '2022-05-10 21:19:35', '2025-12-17 19:47:28', 'oAgrkRqm', '5262809'), + (48, 1370, 'attending', '2022-04-28 13:59:46', '2025-12-17 19:47:28', 'oAgrkRqm', '5263775'), + (48, 1374, 'attending', '2022-05-02 06:07:21', '2025-12-17 19:47:28', 'oAgrkRqm', '5269930'), + (48, 1378, 'attending', '2022-05-07 05:37:37', '2025-12-17 19:47:28', 'oAgrkRqm', '5271448'), + (48, 1379, 'attending', '2022-05-07 05:37:50', '2025-12-17 19:47:29', 'oAgrkRqm', '5271449'), + (48, 1380, 'attending', '2022-05-18 19:33:12', '2025-12-17 19:47:30', 'oAgrkRqm', '5271450'), + (48, 1381, 'attending', '2022-05-05 17:55:22', '2025-12-17 19:47:28', 'oAgrkRqm', '5271453'), + (48, 1383, 'not_attending', '2022-05-10 21:19:47', '2025-12-17 19:47:28', 'oAgrkRqm', '5276469'), + (48, 1384, 'attending', '2022-05-05 13:22:48', '2025-12-17 19:47:28', 'oAgrkRqm', '5277078'), + (48, 1385, 'not_attending', '2022-05-11 04:54:38', '2025-12-17 19:47:28', 'oAgrkRqm', '5277822'), + (48, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'oAgrkRqm', '5278159'), + (48, 1396, 'attending', '2022-05-10 21:20:29', '2025-12-17 19:47:28', 'oAgrkRqm', '5281103'), + (48, 1397, 'attending', '2022-05-10 21:20:35', '2025-12-17 19:47:29', 'oAgrkRqm', '5281104'), + (48, 1407, 'attending', '2022-05-15 19:50:53', '2025-12-17 19:47:30', 'oAgrkRqm', '5363695'), + (48, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'oAgrkRqm', '5365960'), + (48, 1414, 'maybe', '2022-05-18 19:32:39', '2025-12-17 19:47:29', 'oAgrkRqm', '5368445'), + (48, 1415, 'attending', '2022-06-03 22:46:13', '2025-12-17 19:47:30', 'oAgrkRqm', '5368973'), + (48, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'oAgrkRqm', '5378247'), + (48, 1431, 'attending', '2022-06-03 03:04:24', '2025-12-17 19:47:30', 'oAgrkRqm', '5389605'), + (48, 1442, 'attending', '2022-06-03 03:04:26', '2025-12-17 19:47:17', 'oAgrkRqm', '5397265'), + (48, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'oAgrkRqm', '5403967'), + (48, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'oAgrkRqm', '5404786'), + (48, 1460, 'maybe', '2022-06-13 12:57:20', '2025-12-17 19:47:31', 'oAgrkRqm', '5404817'), + (48, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'oAgrkRqm', '5405203'), + (48, 1465, 'attending', '2022-06-12 02:59:02', '2025-12-17 19:47:31', 'oAgrkRqm', '5406355'), + (48, 1470, 'not_attending', '2022-06-18 17:45:27', '2025-12-17 19:47:17', 'oAgrkRqm', '5407053'), + (48, 1478, 'maybe', '2022-06-22 02:02:48', '2025-12-17 19:47:19', 'oAgrkRqm', '5408794'), + (48, 1480, 'maybe', '2022-06-22 00:57:17', '2025-12-17 19:47:19', 'oAgrkRqm', '5411699'), + (48, 1482, 'attending', '2022-06-24 13:12:57', '2025-12-17 19:47:19', 'oAgrkRqm', '5412550'), + (48, 1483, 'not_attending', '2022-06-23 20:02:40', '2025-12-17 19:47:17', 'oAgrkRqm', '5414556'), + (48, 1484, 'maybe', '2022-06-22 17:19:47', '2025-12-17 19:47:17', 'oAgrkRqm', '5415046'), + (48, 1494, 'attending', '2022-06-25 15:18:05', '2025-12-17 19:47:19', 'oAgrkRqm', '5421626'), + (48, 1495, 'attending', '2022-06-26 03:24:01', '2025-12-17 19:47:19', 'oAgrkRqm', '5422086'), + (48, 1498, 'not_attending', '2022-06-27 18:08:10', '2025-12-17 19:47:19', 'oAgrkRqm', '5422406'), + (48, 1502, 'not_attending', '2022-07-09 01:20:23', '2025-12-17 19:47:19', 'oAgrkRqm', '5424565'), + (48, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'oAgrkRqm', '5426882'), + (48, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'oAgrkRqm', '5427083'), + (48, 1511, 'attending', '2022-07-06 23:37:41', '2025-12-17 19:47:19', 'oAgrkRqm', '5437733'), + (48, 1513, 'attending', '2022-07-09 18:57:01', '2025-12-17 19:47:19', 'oAgrkRqm', '5441125'), + (48, 1514, 'attending', '2022-07-09 18:57:02', '2025-12-17 19:47:20', 'oAgrkRqm', '5441126'), + (48, 1515, 'attending', '2022-08-04 23:51:50', '2025-12-17 19:47:21', 'oAgrkRqm', '5441128'), + (48, 1516, 'attending', '2022-08-14 08:10:45', '2025-12-17 19:47:23', 'oAgrkRqm', '5441129'), + (48, 1517, 'attending', '2022-08-21 05:31:32', '2025-12-17 19:47:23', 'oAgrkRqm', '5441130'), + (48, 1518, 'attending', '2022-08-22 02:50:25', '2025-12-17 19:47:24', 'oAgrkRqm', '5441131'), + (48, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'oAgrkRqm', '5441132'), + (48, 1521, 'not_attending', '2022-07-12 20:40:53', '2025-12-17 19:47:19', 'oAgrkRqm', '5442180'), + (48, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'oAgrkRqm', '5446643'), + (48, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'oAgrkRqm', '5453325'), + (48, 1543, 'attending', '2022-07-19 02:19:15', '2025-12-17 19:47:21', 'oAgrkRqm', '5454516'), + (48, 1544, 'attending', '2022-09-13 18:57:24', '2025-12-17 19:47:11', 'oAgrkRqm', '5454517'), + (48, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'oAgrkRqm', '5454605'), + (48, 1546, 'attending', '2022-07-19 13:55:51', '2025-12-17 19:47:20', 'oAgrkRqm', '5454607'), + (48, 1547, 'not_attending', '2022-07-19 17:22:30', '2025-12-17 19:47:20', 'oAgrkRqm', '5454608'), + (48, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'oAgrkRqm', '5455037'), + (48, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'oAgrkRqm', '5461278'), + (48, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'oAgrkRqm', '5469480'), + (48, 1565, 'attending', '2022-07-25 22:41:03', '2025-12-17 19:47:21', 'oAgrkRqm', '5471073'), + (48, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'oAgrkRqm', '5474663'), + (48, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'oAgrkRqm', '5482022'), + (48, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'oAgrkRqm', '5482793'), + (48, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'oAgrkRqm', '5488912'), + (48, 1587, 'maybe', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'oAgrkRqm', '5492192'), + (48, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'oAgrkRqm', '5493139'), + (48, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'oAgrkRqm', '5493200'), + (48, 1605, 'not_attending', '2022-08-15 02:16:03', '2025-12-17 19:47:23', 'oAgrkRqm', '5502188'), + (48, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'oAgrkRqm', '5505059'), + (48, 1610, 'maybe', '2022-08-22 02:49:58', '2025-12-17 19:47:23', 'oAgrkRqm', '5506595'), + (48, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'oAgrkRqm', '5509055'), + (48, 1618, 'attending', '2022-08-25 00:58:21', '2025-12-17 19:47:23', 'oAgrkRqm', '5512005'), + (48, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'oAgrkRqm', '5512862'), + (48, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'oAgrkRqm', '5513985'), + (48, 1626, 'not_attending', '2022-08-25 22:34:46', '2025-12-17 19:47:11', 'oAgrkRqm', '5519981'), + (48, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'oAgrkRqm', '5522550'), + (48, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'oAgrkRqm', '5534683'), + (48, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'oAgrkRqm', '5537735'), + (48, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'oAgrkRqm', '5540859'), + (48, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'oAgrkRqm', '5546619'), + (48, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'oAgrkRqm', '5555245'), + (48, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'oAgrkRqm', '5557747'), + (48, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'oAgrkRqm', '5560255'), + (48, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'oAgrkRqm', '5562906'), + (48, 1667, 'not_attending', '2022-09-24 16:41:34', '2025-12-17 19:47:11', 'oAgrkRqm', '5563221'), + (48, 1668, 'attending', '2022-09-25 04:30:43', '2025-12-17 19:47:12', 'oAgrkRqm', '5563222'), + (48, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'oAgrkRqm', '5600604'), + (48, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'oAgrkRqm', '5605544'), + (48, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'oAgrkRqm', '5606737'), + (48, 1702, 'attending', '2022-10-10 19:38:58', '2025-12-17 19:47:12', 'oAgrkRqm', '5609173'), + (48, 1708, 'attending', '2022-10-05 22:55:30', '2025-12-17 19:47:12', 'oAgrkRqm', '5617648'), + (48, 1711, 'maybe', '2022-10-06 19:59:33', '2025-12-17 19:47:12', 'oAgrkRqm', '5621883'), + (48, 1714, 'maybe', '2022-10-16 20:36:43', '2025-12-17 19:47:14', 'oAgrkRqm', '5622347'), + (48, 1719, 'attending', '2022-10-06 20:19:29', '2025-12-17 19:47:12', 'oAgrkRqm', '5630958'), + (48, 1720, 'attending', '2022-10-08 22:19:01', '2025-12-17 19:47:12', 'oAgrkRqm', '5630959'), + (48, 1721, 'attending', '2022-10-16 20:36:23', '2025-12-17 19:47:13', 'oAgrkRqm', '5630960'), + (48, 1722, 'attending', '2022-10-16 20:37:11', '2025-12-17 19:47:14', 'oAgrkRqm', '5630961'), + (48, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'oAgrkRqm', '5630962'), + (48, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'oAgrkRqm', '5630966'), + (48, 1725, 'attending', '2022-11-13 04:14:56', '2025-12-17 19:47:16', 'oAgrkRqm', '5630967'), + (48, 1726, 'attending', '2022-11-13 04:15:00', '2025-12-17 19:47:16', 'oAgrkRqm', '5630968'), + (48, 1727, 'attending', '2022-11-13 04:15:02', '2025-12-17 19:47:16', 'oAgrkRqm', '5630969'), + (48, 1728, 'attending', '2022-11-27 04:06:52', '2025-12-17 19:47:17', 'oAgrkRqm', '5630970'), + (48, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'oAgrkRqm', '5635406'), + (48, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'oAgrkRqm', '5638765'), + (48, 1739, 'maybe', '2022-10-16 20:36:58', '2025-12-17 19:47:14', 'oAgrkRqm', '5640097'), + (48, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'oAgrkRqm', '5640843'), + (48, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'oAgrkRqm', '5641521'), + (48, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'oAgrkRqm', '5642818'), + (48, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'oAgrkRqm', '5652395'), + (48, 1757, 'not_attending', '2022-10-23 20:55:34', '2025-12-17 19:47:15', 'oAgrkRqm', '5668974'), + (48, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'oAgrkRqm', '5670445'), + (48, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'oAgrkRqm', '5671637'), + (48, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'oAgrkRqm', '5672329'), + (48, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'oAgrkRqm', '5674057'), + (48, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'oAgrkRqm', '5674060'), + (48, 1770, 'not_attending', '2022-10-28 17:53:06', '2025-12-17 19:47:14', 'oAgrkRqm', '5676936'), + (48, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'oAgrkRqm', '5677461'), + (48, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'oAgrkRqm', '5698046'), + (48, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'oAgrkRqm', '5699760'), + (48, 1785, 'attending', '2022-11-15 23:43:42', '2025-12-17 19:47:15', 'oAgrkRqm', '5702414'), + (48, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'oAgrkRqm', '5741601'), + (48, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'oAgrkRqm', '5763458'), + (48, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'oAgrkRqm', '5774172'), + (48, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'oAgrkRqm', '5818247'), + (48, 1834, 'not_attending', '2022-12-07 02:49:23', '2025-12-17 19:47:17', 'oAgrkRqm', '5819470'), + (48, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'oAgrkRqm', '5819471'), + (48, 1841, 'attending', '2023-01-08 19:25:07', '2025-12-17 19:47:05', 'oAgrkRqm', '5827665'), + (48, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'oAgrkRqm', '5827739'), + (48, 1843, 'attending', '2022-12-17 21:53:20', '2025-12-17 19:47:04', 'oAgrkRqm', '5844304'), + (48, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'oAgrkRqm', '5844306'), + (48, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'oAgrkRqm', '5850159'), + (48, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'oAgrkRqm', '5858999'), + (48, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'oAgrkRqm', '5871984'), + (48, 1860, 'attending', '2023-01-13 06:08:12', '2025-12-17 19:47:05', 'oAgrkRqm', '5876309'), + (48, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'oAgrkRqm', '5876354'), + (48, 1864, 'attending', '2023-01-17 16:16:45', '2025-12-17 19:47:05', 'oAgrkRqm', '5879675'), + (48, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'oAgrkRqm', '5880939'), + (48, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'oAgrkRqm', '5880940'), + (48, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'oAgrkRqm', '5880942'), + (48, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'oAgrkRqm', '5880943'), + (48, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'oAgrkRqm', '5887890'), + (48, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'oAgrkRqm', '5888598'), + (48, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'oAgrkRqm', '5893260'), + (48, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'oAgrkRqm', '5899826'), + (48, 1886, 'maybe', '2023-03-06 22:40:40', '2025-12-17 19:47:09', 'oAgrkRqm', '5899930'), + (48, 1888, 'attending', '2023-02-17 17:34:48', '2025-12-17 19:47:07', 'oAgrkRqm', '5900197'), + (48, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'oAgrkRqm', '5900199'), + (48, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'oAgrkRqm', '5900200'), + (48, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'oAgrkRqm', '5900202'), + (48, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'oAgrkRqm', '5900203'), + (48, 1895, 'maybe', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'oAgrkRqm', '5901108'), + (48, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'oAgrkRqm', '5901126'), + (48, 1899, 'not_attending', '2023-02-10 20:38:32', '2025-12-17 19:47:07', 'oAgrkRqm', '5901323'), + (48, 1902, 'attending', '2023-02-01 19:48:18', '2025-12-17 19:47:06', 'oAgrkRqm', '5902254'), + (48, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'oAgrkRqm', '5909655'), + (48, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'oAgrkRqm', '5910522'), + (48, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'oAgrkRqm', '5910526'), + (48, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'oAgrkRqm', '5910528'), + (48, 1922, 'attending', '2023-02-13 22:43:19', '2025-12-17 19:47:07', 'oAgrkRqm', '5916219'), + (48, 1928, 'maybe', '2023-02-18 03:11:12', '2025-12-17 19:47:07', 'oAgrkRqm', '5932627'), + (48, 1933, 'attending', '2023-02-21 17:59:33', '2025-12-17 19:47:08', 'oAgrkRqm', '5936234'), + (48, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'oAgrkRqm', '5958351'), + (48, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'oAgrkRqm', '5959751'), + (48, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'oAgrkRqm', '5959755'), + (48, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'oAgrkRqm', '5960055'), + (48, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'oAgrkRqm', '5961684'), + (48, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'oAgrkRqm', '5962132'), + (48, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'oAgrkRqm', '5962133'), + (48, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'oAgrkRqm', '5962134'), + (48, 1947, 'attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'oAgrkRqm', '5962233'), + (48, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'oAgrkRqm', '5962317'), + (48, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'oAgrkRqm', '5962318'), + (48, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'oAgrkRqm', '5965933'), + (48, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'oAgrkRqm', '5967014'), + (48, 1956, 'maybe', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'oAgrkRqm', '5972763'), + (48, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'oAgrkRqm', '5972815'), + (48, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'oAgrkRqm', '5974016'), + (48, 1964, 'attending', '2023-03-08 23:51:25', '2025-12-17 19:47:09', 'oAgrkRqm', '5977129'), + (48, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'oAgrkRqm', '5981515'), + (48, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'oAgrkRqm', '5993516'), + (48, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'oAgrkRqm', '5998939'), + (48, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'oAgrkRqm', '6028191'), + (48, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'oAgrkRqm', '6040066'), + (48, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'oAgrkRqm', '6042717'), + (48, 1986, 'attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'oAgrkRqm', '6044838'), + (48, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'oAgrkRqm', '6044839'), + (48, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgrkRqm', '6045684'), + (48, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'oAgrkRqm', '6050104'), + (48, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'oAgrkRqm', '6053195'), + (48, 2006, 'maybe', '2023-04-10 04:38:32', '2025-12-17 19:46:59', 'oAgrkRqm', '6053198'), + (48, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'oAgrkRqm', '6056085'), + (48, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'oAgrkRqm', '6056916'), + (48, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'oAgrkRqm', '6059290'), + (48, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'oAgrkRqm', '6060328'), + (48, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'oAgrkRqm', '6061037'), + (48, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'oAgrkRqm', '6061039'), + (48, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'oAgrkRqm', '6061099'), + (48, 2019, 'attending', '2023-04-15 21:26:55', '2025-12-17 19:47:00', 'oAgrkRqm', '6062934'), + (48, 2020, 'maybe', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'oAgrkRqm', '6065813'), + (48, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'oAgrkRqm', '6067245'), + (48, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'oAgrkRqm', '6068094'), + (48, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'oAgrkRqm', '6068252'), + (48, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'oAgrkRqm', '6068253'), + (48, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'oAgrkRqm', '6068254'), + (48, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'oAgrkRqm', '6068280'), + (48, 2032, 'attending', '2023-06-03 18:15:54', '2025-12-17 19:47:04', 'oAgrkRqm', '6068281'), + (48, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'oAgrkRqm', '6069093'), + (48, 2039, 'not_attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'oAgrkRqm', '6072398'), + (48, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'oAgrkRqm', '6072528'), + (48, 2044, 'attending', '2023-05-14 20:51:54', '2025-12-17 19:47:03', 'oAgrkRqm', '6073678'), + (48, 2048, 'maybe', '2023-04-28 13:01:23', '2025-12-17 19:47:03', 'oAgrkRqm', '6076415'), + (48, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'oAgrkRqm', '6079840'), + (48, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'oAgrkRqm', '6083398'), + (48, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'oAgrkRqm', '6093504'), + (48, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'oAgrkRqm', '6097414'), + (48, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'oAgrkRqm', '6097442'), + (48, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'oAgrkRqm', '6097684'), + (48, 2063, 'attending', '2023-05-09 20:38:36', '2025-12-17 19:47:03', 'oAgrkRqm', '6098762'), + (48, 2065, 'attending', '2023-05-20 10:20:25', '2025-12-17 19:46:49', 'oAgrkRqm', '6101169'), + (48, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'oAgrkRqm', '6101361'), + (48, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'oAgrkRqm', '6101362'), + (48, 2070, 'not_attending', '2023-05-17 12:00:40', '2025-12-17 19:47:03', 'oAgrkRqm', '6103752'), + (48, 2073, 'maybe', '2023-05-15 23:28:55', '2025-12-17 19:47:03', 'oAgrkRqm', '6106002'), + (48, 2074, 'maybe', '2023-05-21 22:15:41', '2025-12-17 19:47:03', 'oAgrkRqm', '6107312'), + (48, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'oAgrkRqm', '6107314'), + (48, 2076, 'attending', '2023-05-19 06:43:17', '2025-12-17 19:47:03', 'oAgrkRqm', '6108350'), + (48, 2080, 'attending', '2023-05-22 04:17:43', '2025-12-17 19:47:04', 'oAgrkRqm', '6114677'), + (48, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'oAgrkRqm', '6120034'), + (48, 2090, 'not_attending', '2023-06-02 05:32:50', '2025-12-17 19:47:04', 'oAgrkRqm', '6127961'), + (48, 2094, 'attending', '2023-06-05 12:40:26', '2025-12-17 19:47:04', 'oAgrkRqm', '6135924'), + (48, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'oAgrkRqm', '6136733'), + (48, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'oAgrkRqm', '6137989'), + (48, 2104, 'not_attending', '2023-06-18 14:19:26', '2025-12-17 19:46:50', 'oAgrkRqm', '6149499'), + (48, 2106, 'maybe', '2023-06-18 14:19:13', '2025-12-17 19:46:50', 'oAgrkRqm', '6150479'), + (48, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'oAgrkRqm', '6150864'), + (48, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'oAgrkRqm', '6155491'), + (48, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'oAgrkRqm', '6164417'), + (48, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'oAgrkRqm', '6166388'), + (48, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'oAgrkRqm', '6176439'), + (48, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'oAgrkRqm', '6182410'), + (48, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'oAgrkRqm', '6185812'), + (48, 2133, 'attending', '2023-07-06 16:56:53', '2025-12-17 19:46:51', 'oAgrkRqm', '6187651'), + (48, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'oAgrkRqm', '6187963'), + (48, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'oAgrkRqm', '6187964'), + (48, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'oAgrkRqm', '6187966'), + (48, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'oAgrkRqm', '6187967'), + (48, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'oAgrkRqm', '6187969'), + (48, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'oAgrkRqm', '6334878'), + (48, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'oAgrkRqm', '6337236'), + (48, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'oAgrkRqm', '6337970'), + (48, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'oAgrkRqm', '6338308'), + (48, 2158, 'attending', '2023-07-22 18:54:56', '2025-12-17 19:46:53', 'oAgrkRqm', '6338353'), + (48, 2159, 'attending', '2023-07-17 19:47:13', '2025-12-17 19:46:53', 'oAgrkRqm', '6338355'), + (48, 2160, 'attending', '2023-07-17 19:47:19', '2025-12-17 19:46:54', 'oAgrkRqm', '6338358'), + (48, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'oAgrkRqm', '6341710'), + (48, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'oAgrkRqm', '6342044'), + (48, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'oAgrkRqm', '6342298'), + (48, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'oAgrkRqm', '6343294'), + (48, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'oAgrkRqm', '6347034'), + (48, 2177, 'maybe', '2023-08-12 22:29:14', '2025-12-17 19:46:55', 'oAgrkRqm', '6347053'), + (48, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'oAgrkRqm', '6347056'), + (48, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'oAgrkRqm', '6353830'), + (48, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'oAgrkRqm', '6353831'), + (48, 2187, 'attending', '2023-08-06 06:19:54', '2025-12-17 19:46:55', 'oAgrkRqm', '6357559'), + (48, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'oAgrkRqm', '6357867'), + (48, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'oAgrkRqm', '6358652'), + (48, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'oAgrkRqm', '6358668'), + (48, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'oAgrkRqm', '6358669'), + (48, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'oAgrkRqm', '6361709'), + (48, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'oAgrkRqm', '6361710'), + (48, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'oAgrkRqm', '6361711'), + (48, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'oAgrkRqm', '6361712'), + (48, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'oAgrkRqm', '6361713'), + (48, 2216, 'attending', '2023-08-19 17:03:47', '2025-12-17 19:46:55', 'oAgrkRqm', '6364123'), + (48, 2231, 'not_attending', '2023-08-21 18:03:04', '2025-12-17 19:46:55', 'oAgrkRqm', '6374748'), + (48, 2232, 'attending', '2023-08-23 21:47:56', '2025-12-17 19:46:55', 'oAgrkRqm', '6374818'), + (48, 2235, 'attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'oAgrkRqm', '6382573'), + (48, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'oAgrkRqm', '6388604'), + (48, 2242, 'attending', '2023-09-22 07:22:01', '2025-12-17 19:46:45', 'oAgrkRqm', '6388606'), + (48, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'oAgrkRqm', '6394629'), + (48, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'oAgrkRqm', '6394631'), + (48, 2253, 'attending', '2023-09-22 07:22:17', '2025-12-17 19:46:45', 'oAgrkRqm', '6401811'), + (48, 2259, 'attending', '2023-09-22 01:29:43', '2025-12-17 19:46:45', 'oAgrkRqm', '6421257'), + (48, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'oAgrkRqm', '6440863'), + (48, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'oAgrkRqm', '6445440'), + (48, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'oAgrkRqm', '6453951'), + (48, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'oAgrkRqm', '6461696'), + (48, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'oAgrkRqm', '6462129'), + (48, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'oAgrkRqm', '6463218'), + (48, 2299, 'attending', '2023-10-16 20:44:41', '2025-12-17 19:46:46', 'oAgrkRqm', '6472181'), + (48, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'oAgrkRqm', '6482693'), + (48, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'oAgrkRqm', '6484200'), + (48, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'oAgrkRqm', '6484680'), + (48, 2310, 'not_attending', '2023-11-09 08:10:00', '2025-12-17 19:46:47', 'oAgrkRqm', '6487709'), + (48, 2315, 'attending', '2023-11-05 03:14:05', '2025-12-17 19:46:47', 'oAgrkRqm', '6493666'), + (48, 2316, 'attending', '2023-11-05 03:14:08', '2025-12-17 19:46:48', 'oAgrkRqm', '6493668'), + (48, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'oAgrkRqm', '6507741'), + (48, 2318, 'maybe', '2023-10-31 03:58:13', '2025-12-17 19:46:47', 'oAgrkRqm', '6508566'), + (48, 2320, 'attending', '2023-11-05 03:14:07', '2025-12-17 19:46:47', 'oAgrkRqm', '6508647'), + (48, 2322, 'attending', '2023-11-09 08:13:39', '2025-12-17 19:46:48', 'oAgrkRqm', '6514659'), + (48, 2323, 'attending', '2023-11-09 08:13:40', '2025-12-17 19:46:48', 'oAgrkRqm', '6514660'), + (48, 2324, 'not_attending', '2023-11-09 08:13:43', '2025-12-17 19:46:49', 'oAgrkRqm', '6514662'), + (48, 2325, 'attending', '2023-11-09 08:13:55', '2025-12-17 19:46:36', 'oAgrkRqm', '6514663'), + (48, 2327, 'maybe', '2023-11-01 21:08:25', '2025-12-17 19:46:47', 'oAgrkRqm', '6515494'), + (48, 2330, 'not_attending', '2023-11-07 06:01:49', '2025-12-17 19:46:47', 'oAgrkRqm', '6517941'), + (48, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'oAgrkRqm', '6519103'), + (48, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'oAgrkRqm', '6535681'), + (48, 2338, 'maybe', '2023-11-25 22:53:29', '2025-12-17 19:46:48', 'oAgrkRqm', '6538868'), + (48, 2340, 'attending', '2023-11-17 23:37:17', '2025-12-17 19:46:48', 'oAgrkRqm', '6540279'), + (48, 2350, 'attending', '2023-11-20 22:37:39', '2025-12-17 19:46:48', 'oAgrkRqm', '6584352'), + (48, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'oAgrkRqm', '6584747'), + (48, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'oAgrkRqm', '6587097'), + (48, 2353, 'attending', '2023-11-23 01:56:36', '2025-12-17 19:46:48', 'oAgrkRqm', '6588894'), + (48, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'oAgrkRqm', '6609022'), + (48, 2373, 'maybe', '2024-01-14 07:47:34', '2025-12-17 19:46:38', 'oAgrkRqm', '6632678'), + (48, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'oAgrkRqm', '6632757'), + (48, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAgrkRqm', '6644187'), + (48, 2380, 'attending', '2023-12-31 01:38:33', '2025-12-17 19:46:37', 'oAgrkRqm', '6645105'), + (48, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAgrkRqm', '6648951'), + (48, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAgrkRqm', '6648952'), + (48, 2388, 'attending', '2024-01-03 02:54:59', '2025-12-17 19:46:37', 'oAgrkRqm', '6649244'), + (48, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAgrkRqm', '6655401'), + (48, 2399, 'attending', '2024-01-13 20:23:19', '2025-12-17 19:46:38', 'oAgrkRqm', '6657583'), + (48, 2400, 'not_attending', '2024-01-09 00:06:14', '2025-12-17 19:46:37', 'oAgrkRqm', '6659378'), + (48, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAgrkRqm', '6661585'), + (48, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAgrkRqm', '6661588'), + (48, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAgrkRqm', '6661589'), + (48, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAgrkRqm', '6699906'), + (48, 2408, 'attending', '2024-01-21 18:49:08', '2025-12-17 19:46:40', 'oAgrkRqm', '6699907'), + (48, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'oAgrkRqm', '6699913'), + (48, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAgrkRqm', '6701109'), + (48, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAgrkRqm', '6705219'), + (48, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAgrkRqm', '6710153'), + (48, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAgrkRqm', '6711552'), + (48, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'oAgrkRqm', '6711553'), + (48, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAgrkRqm', '6722688'), + (48, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAgrkRqm', '6730620'), + (48, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'oAgrkRqm', '6730642'), + (48, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAgrkRqm', '6740364'), + (48, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAgrkRqm', '6743829'), + (48, 2467, 'maybe', '2024-02-25 17:32:48', '2025-12-17 19:46:43', 'oAgrkRqm', '7029987'), + (48, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAgrkRqm', '7030380'), + (48, 2471, 'maybe', '2024-02-20 03:11:48', '2025-12-17 19:46:42', 'oAgrkRqm', '7032425'), + (48, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'oAgrkRqm', '7033677'), + (48, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'oAgrkRqm', '7035415'), + (48, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAgrkRqm', '7044715'), + (48, 2487, 'not_attending', '2024-03-17 19:55:10', '2025-12-17 19:46:33', 'oAgrkRqm', '7049279'), + (48, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAgrkRqm', '7050318'), + (48, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAgrkRqm', '7050319'), + (48, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAgrkRqm', '7050322'), + (48, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAgrkRqm', '7057804'), + (48, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAgrkRqm', '7072824'), + (48, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAgrkRqm', '7074348'), + (48, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'oAgrkRqm', '7074364'), + (48, 2528, 'attending', '2024-08-08 23:03:21', '2025-12-17 19:46:31', 'oAgrkRqm', '7074368'), + (48, 2533, 'maybe', '2024-08-22 12:27:57', '2025-12-17 19:46:32', 'oAgrkRqm', '7074384'), + (48, 2537, 'not_attending', '2024-03-17 19:55:13', '2025-12-17 19:46:33', 'oAgrkRqm', '7085484'), + (48, 2538, 'maybe', '2024-03-17 19:55:29', '2025-12-17 19:46:33', 'oAgrkRqm', '7085485'), + (48, 2539, 'attending', '2024-03-17 19:55:35', '2025-12-17 19:46:33', 'oAgrkRqm', '7085486'), + (48, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAgrkRqm', '7089267'), + (48, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAgrkRqm', '7098747'), + (48, 2553, 'maybe', '2024-03-29 23:15:36', '2025-12-17 19:46:33', 'oAgrkRqm', '7113468'), + (48, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAgrkRqm', '7114856'), + (48, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAgrkRqm', '7114951'), + (48, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAgrkRqm', '7114955'), + (48, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAgrkRqm', '7114956'), + (48, 2558, 'attending', '2024-04-03 23:30:55', '2025-12-17 19:46:35', 'oAgrkRqm', '7114957'), + (48, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'oAgrkRqm', '7153615'), + (48, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAgrkRqm', '7159484'), + (48, 2573, 'maybe', '2024-04-08 23:40:30', '2025-12-17 19:46:34', 'oAgrkRqm', '7160612'), + (48, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAgrkRqm', '7178446'), + (48, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'oAgrkRqm', '7220467'), + (48, 2609, 'not_attending', '2024-04-30 01:20:10', '2025-12-17 19:46:35', 'oAgrkRqm', '7240354'), + (48, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'oAgrkRqm', '7251633'), + (48, 2626, 'attending', '2024-05-14 14:27:04', '2025-12-17 19:46:35', 'oAgrkRqm', '7264723'), + (48, 2638, 'attending', '2024-05-15 21:42:13', '2025-12-17 19:46:35', 'oAgrkRqm', '7273117'), + (48, 2647, 'attending', '2024-06-08 18:58:16', '2025-12-17 19:46:28', 'oAgrkRqm', '7282057'), + (48, 2655, 'not_attending', '2024-05-26 22:13:15', '2025-12-17 19:46:35', 'oAgrkRqm', '7291225'), + (48, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'oAgrkRqm', '7302674'), + (48, 2676, 'attending', '2024-08-31 06:45:39', '2025-12-17 19:46:32', 'oAgrkRqm', '7319482'), + (48, 2678, 'not_attending', '2024-06-14 13:24:38', '2025-12-17 19:46:28', 'oAgrkRqm', '7319489'), + (48, 2679, 'maybe', '2024-06-20 03:34:12', '2025-12-17 19:46:29', 'oAgrkRqm', '7319490'), + (48, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'oAgrkRqm', '7324073'), + (48, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'oAgrkRqm', '7324074'), + (48, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'oAgrkRqm', '7324075'), + (48, 2691, 'attending', '2024-07-16 13:50:47', '2025-12-17 19:46:30', 'oAgrkRqm', '7324076'), + (48, 2692, 'maybe', '2024-07-16 13:50:50', '2025-12-17 19:46:30', 'oAgrkRqm', '7324077'), + (48, 2693, 'attending', '2024-07-16 13:50:54', '2025-12-17 19:46:31', 'oAgrkRqm', '7324078'), + (48, 2694, 'attending', '2024-07-16 13:50:55', '2025-12-17 19:46:31', 'oAgrkRqm', '7324079'), + (48, 2695, 'attending', '2024-07-16 13:50:58', '2025-12-17 19:46:31', 'oAgrkRqm', '7324080'), + (48, 2696, 'attending', '2024-07-16 13:51:00', '2025-12-17 19:46:32', 'oAgrkRqm', '7324081'), + (48, 2697, 'attending', '2024-08-31 06:45:27', '2025-12-17 19:46:32', 'oAgrkRqm', '7324082'), + (48, 2698, 'attending', '2024-09-07 17:14:07', '2025-12-17 19:46:24', 'oAgrkRqm', '7324083'), + (48, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'oAgrkRqm', '7331457'), + (48, 2753, 'maybe', '2024-07-08 22:33:36', '2025-12-17 19:46:30', 'oAgrkRqm', '7355538'), + (48, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'oAgrkRqm', '7356752'), + (48, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'oAgrkRqm', '7363643'), + (48, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'oAgrkRqm', '7368606'), + (48, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'oAgrkRqm', '7397462'), + (48, 2805, 'maybe', '2024-08-20 14:23:56', '2025-12-17 19:46:32', 'oAgrkRqm', '7403620'), + (48, 2808, 'attending', '2024-08-31 06:45:37', '2025-12-17 19:46:32', 'oAgrkRqm', '7412860'), + (48, 2811, 'not_attending', '2024-08-31 06:45:33', '2025-12-17 19:46:32', 'oAgrkRqm', '7418895'), + (48, 2821, 'attending', '2024-09-08 03:15:16', '2025-12-17 19:46:26', 'oAgrkRqm', '7424275'), + (48, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'oAgrkRqm', '7424276'), + (48, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'oAgrkRqm', '7432751'), + (48, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'oAgrkRqm', '7432752'), + (48, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'oAgrkRqm', '7432753'), + (48, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'oAgrkRqm', '7432754'), + (48, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'oAgrkRqm', '7432755'), + (48, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'oAgrkRqm', '7432756'), + (48, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'oAgrkRqm', '7432758'), + (48, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'oAgrkRqm', '7432759'), + (48, 2832, 'maybe', '2024-09-11 16:11:27', '2025-12-17 19:46:24', 'oAgrkRqm', '7433324'), + (48, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'oAgrkRqm', '7433834'), + (48, 2858, 'attending', '2024-10-17 14:54:39', '2025-12-17 19:46:26', 'oAgrkRqm', '7469388'), + (48, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'oAgrkRqm', '7470197'), + (48, 2870, 'attending', '2024-10-05 21:20:17', '2025-12-17 19:46:26', 'oAgrkRqm', '7475068'), + (48, 2873, 'attending', '2024-12-11 20:16:58', '2025-12-17 19:46:22', 'oAgrkRqm', '7480850'), + (48, 2885, 'attending', '2024-10-17 14:54:35', '2025-12-17 19:46:26', 'oAgrkRqm', '7649944'), + (48, 2892, 'attending', '2024-10-30 23:13:54', '2025-12-17 19:46:26', 'oAgrkRqm', '7672064'), + (48, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'oAgrkRqm', '7685613'), + (48, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'oAgrkRqm', '7688194'), + (48, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'oAgrkRqm', '7688196'), + (48, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'oAgrkRqm', '7688289'), + (48, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'oAgrkRqm', '7692763'), + (48, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'oAgrkRqm', '7697552'), + (48, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'oAgrkRqm', '7699878'), + (48, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'oAgrkRqm', '7704043'), + (48, 2924, 'attending', '2024-11-26 15:16:31', '2025-12-17 19:46:28', 'oAgrkRqm', '7712467'), + (48, 2925, 'attending', '2024-12-11 20:16:51', '2025-12-17 19:46:21', 'oAgrkRqm', '7713584'), + (48, 2926, 'attending', '2024-12-03 14:56:30', '2025-12-17 19:46:21', 'oAgrkRqm', '7713585'), + (48, 2927, 'attending', '2024-12-11 20:16:53', '2025-12-17 19:46:22', 'oAgrkRqm', '7713586'), + (48, 2948, 'attending', '2024-12-11 20:17:01', '2025-12-17 19:46:22', 'oAgrkRqm', '7728212'), + (48, 2949, 'attending', '2024-12-11 20:17:15', '2025-12-17 19:46:22', 'oAgrkRqm', '7728213'), + (48, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'oAgrkRqm', '7738518'), + (48, 2959, 'maybe', '2024-12-20 22:17:19', '2025-12-17 19:46:22', 'oAgrkRqm', '7747388'), + (48, 2962, 'maybe', '2024-12-24 00:39:15', '2025-12-17 19:46:22', 'oAgrkRqm', '7750632'), + (48, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'oAgrkRqm', '7750636'), + (48, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'oAgrkRqm', '7796540'), + (48, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'oAgrkRqm', '7796541'), + (48, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'oAgrkRqm', '7796542'), + (48, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'oAgrkRqm', '7825913'), + (48, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'oAgrkRqm', '7826209'), + (48, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'oAgrkRqm', '7834742'), + (48, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'oAgrkRqm', '7842108'), + (48, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'oAgrkRqm', '7842902'), + (48, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'oAgrkRqm', '7842903'), + (48, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'oAgrkRqm', '7842904'), + (48, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'oAgrkRqm', '7842905'), + (48, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'oAgrkRqm', '7855719'), + (48, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'oAgrkRqm', '7860683'), + (48, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'oAgrkRqm', '7860684'), + (48, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'oAgrkRqm', '7866095'), + (48, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'oAgrkRqm', '7869170'), + (48, 3014, 'attending', '2025-04-05 15:16:16', '2025-12-17 19:46:20', 'oAgrkRqm', '7869185'), + (48, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'oAgrkRqm', '7869188'), + (48, 3028, 'attending', '2025-04-27 15:56:34', '2025-12-17 19:46:20', 'oAgrkRqm', '7869199'), + (48, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'oAgrkRqm', '7869201'), + (48, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'oAgrkRqm', '7877465'), + (48, 3055, 'not_attending', '2025-03-27 16:26:07', '2025-12-17 19:46:19', 'oAgrkRqm', '7888118'), + (48, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'oAgrkRqm', '7888250'), + (48, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'oAgrkRqm', '7903852'), + (48, 3088, 'attending', '2025-06-13 04:33:22', '2025-12-17 19:46:15', 'oAgrkRqm', '7904777'), + (48, 3094, 'attending', '2025-05-08 18:16:39', '2025-12-17 19:46:21', 'oAgrkRqm', '8342292'), + (48, 3095, 'attending', '2025-05-03 23:19:58', '2025-12-17 19:46:20', 'oAgrkRqm', '8342293'), + (48, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'oAgrkRqm', '8349164'), + (48, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'oAgrkRqm', '8349545'), + (48, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'oAgrkRqm', '8353584'), + (48, 3113, 'not_attending', '2025-05-01 20:50:55', '2025-12-17 19:46:20', 'oAgrkRqm', '8355089'), + (48, 3131, 'attending', '2025-05-15 00:40:02', '2025-12-17 19:46:21', 'oAgrkRqm', '8368028'), + (48, 3132, 'attending', '2025-05-15 00:40:05', '2025-12-17 19:46:21', 'oAgrkRqm', '8368029'), + (48, 3133, 'attending', '2025-05-15 00:40:08', '2025-12-17 19:46:14', 'oAgrkRqm', '8368030'), + (48, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'oAgrkRqm', '8388462'), + (48, 3150, 'maybe', '2025-06-21 22:19:10', '2025-12-17 19:46:15', 'oAgrkRqm', '8393174'), + (48, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'oAgrkRqm', '8400273'), + (48, 3154, 'maybe', '2025-06-23 22:39:33', '2025-12-17 19:46:15', 'oAgrkRqm', '8400274'), + (48, 3155, 'maybe', '2025-06-23 22:39:42', '2025-12-17 19:46:16', 'oAgrkRqm', '8400275'), + (48, 3156, 'maybe', '2025-06-23 22:39:49', '2025-12-17 19:46:16', 'oAgrkRqm', '8400276'), + (48, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'oAgrkRqm', '8404977'), + (48, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'oAgrkRqm', '8430783'), + (48, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'oAgrkRqm', '8430784'), + (48, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'oAgrkRqm', '8430799'), + (48, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'oAgrkRqm', '8430800'), + (48, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'oAgrkRqm', '8430801'), + (48, 3188, 'attending', '2025-07-14 23:58:41', '2025-12-17 19:46:17', 'oAgrkRqm', '8438709'), + (48, 3190, 'not_attending', '2025-07-13 23:07:38', '2025-12-17 19:46:17', 'oAgrkRqm', '8443962'), + (48, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'oAgrkRqm', '8457738'), + (48, 3195, 'attending', '2025-08-03 21:20:37', '2025-12-17 19:46:17', 'oAgrkRqm', '8458118'), + (48, 3196, 'attending', '2025-08-12 00:10:29', '2025-12-17 19:46:17', 'oAgrkRqm', '8458543'), + (48, 3198, 'maybe', '2025-08-20 13:18:06', '2025-12-17 19:46:18', 'oAgrkRqm', '8459268'), + (48, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'oAgrkRqm', '8459566'), + (48, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'oAgrkRqm', '8459567'), + (48, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'oAgrkRqm', '8461032'), + (48, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'oAgrkRqm', '8477877'), + (48, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'oAgrkRqm', '8485688'), + (48, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'oAgrkRqm', '8490587'), + (48, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'oAgrkRqm', '8493552'), + (48, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'oAgrkRqm', '8493553'), + (48, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'oAgrkRqm', '8493554'), + (48, 3239, 'maybe', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'oAgrkRqm', '8493555'), + (48, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'oAgrkRqm', '8493556'), + (48, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'oAgrkRqm', '8493557'), + (48, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'oAgrkRqm', '8493558'), + (48, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'oAgrkRqm', '8493559'), + (48, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'oAgrkRqm', '8493560'), + (48, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'oAgrkRqm', '8493561'), + (48, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'oAgrkRqm', '8493572'), + (48, 3263, 'not_attending', '2025-09-10 13:48:51', '2025-12-17 19:46:12', 'oAgrkRqm', '8514576'), + (48, 3283, 'not_attending', '2025-10-15 04:47:38', '2025-12-17 19:46:14', 'oAgrkRqm', '8538077'), + (48, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'oAgrkRqm', '8540725'), + (48, 3295, 'attending', '2025-10-29 11:07:39', '2025-12-17 19:46:14', 'oAgrkRqm', '8547541'), + (48, 3300, 'attending', '2025-10-29 11:07:49', '2025-12-17 19:46:14', 'oAgrkRqm', '8549145'), + (48, 3302, 'attending', '2025-10-29 11:07:56', '2025-12-17 19:46:14', 'oAgrkRqm', '8550022'), + (48, 3304, 'attending', '2025-10-29 11:07:58', '2025-12-17 19:46:14', 'oAgrkRqm', '8550024'), + (48, 3305, 'attending', '2025-10-29 11:08:00', '2025-12-17 19:46:11', 'oAgrkRqm', '8550025'), + (48, 3306, 'attending', '2025-10-29 11:08:23', '2025-12-17 19:46:11', 'oAgrkRqm', '8550026'), + (48, 3307, 'attending', '2025-10-29 11:08:25', '2025-12-18 00:56:58', 'oAgrkRqm', '8550027'), + (48, 3308, 'attending', '2025-10-29 11:07:35', '2025-12-17 19:46:14', 'oAgrkRqm', '8550408'), + (48, 3309, 'attending', '2025-10-29 11:08:05', '2025-12-17 19:46:14', 'oAgrkRqm', '8550409'), + (48, 3310, 'attending', '2025-10-29 11:08:07', '2025-12-17 19:46:11', 'oAgrkRqm', '8550410'), + (48, 3311, 'attending', '2025-10-29 11:08:13', '2025-12-17 19:46:11', 'oAgrkRqm', '8550412'), + (48, 3312, 'attending', '2025-10-29 11:08:14', '2025-12-17 19:46:11', 'oAgrkRqm', '8550413'), + (48, 3318, 'not_attending', '2025-11-07 02:02:46', '2025-12-17 19:46:14', 'oAgrkRqm', '8553025'), + (48, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'oAgrkRqm', '8555421'), + (49, 2965, 'not_attending', '2025-01-18 22:12:13', '2025-12-17 19:46:22', '4ZE2DlrA', '7796541'), + (49, 2966, 'attending', '2025-01-25 12:45:25', '2025-12-17 19:46:22', '4ZE2DlrA', '7796542'), + (49, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4ZE2DlrA', '7825913'), + (49, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4ZE2DlrA', '7826209'), + (49, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4ZE2DlrA', '7834742'), + (49, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4ZE2DlrA', '7842108'), + (49, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4ZE2DlrA', '7842902'), + (49, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4ZE2DlrA', '7842903'), + (49, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4ZE2DlrA', '7842904'), + (49, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4ZE2DlrA', '7842905'), + (49, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4ZE2DlrA', '7855719'), + (49, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4ZE2DlrA', '7860683'), + (49, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4ZE2DlrA', '7860684'), + (49, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4ZE2DlrA', '7866095'), + (49, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4ZE2DlrA', '7869170'), + (49, 3015, 'not_attending', '2025-04-25 12:58:00', '2025-12-17 19:46:20', '4ZE2DlrA', '7869186'), + (49, 3016, 'attending', '2025-04-19 22:04:42', '2025-12-17 19:46:20', '4ZE2DlrA', '7869187'), + (49, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4ZE2DlrA', '7869188'), + (49, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4ZE2DlrA', '7869201'), + (49, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4ZE2DlrA', '7877465'), + (49, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:19', '4ZE2DlrA', '7878570'), + (49, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4ZE2DlrA', '7888250'), + (49, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4ZE2DlrA', '7904777'), + (49, 3094, 'attending', '2025-05-07 19:07:28', '2025-12-17 19:46:21', '4ZE2DlrA', '8342292'), + (49, 3095, 'not_attending', '2025-04-28 17:54:30', '2025-12-17 19:46:20', '4ZE2DlrA', '8342293'), + (49, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4ZE2DlrA', '8349164'), + (49, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4ZE2DlrA', '8349545'), + (49, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4ZE2DlrA', '8353584'), + (49, 3131, 'maybe', '2025-05-15 02:45:16', '2025-12-17 19:46:21', '4ZE2DlrA', '8368028'), + (49, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4ZE2DlrA', '8368029'), + (49, 3133, 'attending', '2025-05-29 11:43:29', '2025-12-17 19:46:14', '4ZE2DlrA', '8368030'), + (49, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4ZE2DlrA', '8388462'), + (49, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4ZE2DlrA', '8400273'), + (49, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4ZE2DlrA', '8400274'), + (49, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4ZE2DlrA', '8400275'), + (49, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4ZE2DlrA', '8400276'), + (49, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4ZE2DlrA', '8404977'), + (49, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '4ZE2DlrA', '8430783'), + (49, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4ZE2DlrA', '8430784'), + (49, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4ZE2DlrA', '8430799'), + (49, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4ZE2DlrA', '8430800'), + (49, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4ZE2DlrA', '8430801'), + (49, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4ZE2DlrA', '8438709'), + (49, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4ZE2DlrA', '8457738'), + (49, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4ZE2DlrA', '8459566'), + (49, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4ZE2DlrA', '8459567'), + (49, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4ZE2DlrA', '8461032'), + (49, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4ZE2DlrA', '8477877'), + (49, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4ZE2DlrA', '8485688'), + (49, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4ZE2DlrA', '8490587'), + (49, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4ZE2DlrA', '8493552'), + (49, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4ZE2DlrA', '8493553'), + (49, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4ZE2DlrA', '8493554'), + (49, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4ZE2DlrA', '8493555'), + (49, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4ZE2DlrA', '8493556'), + (49, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4ZE2DlrA', '8493557'), + (49, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4ZE2DlrA', '8493558'), + (49, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4ZE2DlrA', '8493559'), + (49, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4ZE2DlrA', '8493560'), + (49, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4ZE2DlrA', '8493561'), + (49, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4ZE2DlrA', '8493572'), + (49, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4ZE2DlrA', '8540725'), + (49, 3300, 'not_attending', '2025-11-08 15:53:39', '2025-12-17 19:46:14', '4ZE2DlrA', '8549145'), + (49, 3305, 'attending', '2025-12-04 01:20:13', '2025-12-17 19:46:11', '4ZE2DlrA', '8550025'), + (49, 3306, 'attending', '2025-12-11 20:39:59', '2025-12-17 19:46:11', '4ZE2DlrA', '8550026'), + (49, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4ZE2DlrA', '8555421'), + (50, 3015, 'attending', '2025-04-24 01:36:11', '2025-12-17 19:46:20', 'AnjQqeyA', '7869186'), + (50, 3016, 'attending', '2025-04-17 01:41:57', '2025-12-17 19:46:20', 'AnjQqeyA', '7869187'), + (50, 3075, 'attending', '2025-04-17 22:52:36', '2025-12-17 19:46:20', 'AnjQqeyA', '7898896'), + (50, 3087, 'attending', '2025-04-15 18:41:37', '2025-12-17 19:46:20', 'AnjQqeyA', '7903856'), + (50, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AnjQqeyA', '7904777'), + (50, 3091, 'maybe', '2025-04-17 22:56:46', '2025-12-17 19:46:20', 'AnjQqeyA', '8340289'), + (50, 3092, 'attending', '2025-04-17 22:56:33', '2025-12-17 19:46:20', 'AnjQqeyA', '8340351'), + (50, 3093, 'attending', '2025-04-23 00:05:07', '2025-12-17 19:46:20', 'AnjQqeyA', '8342248'), + (50, 3094, 'maybe', '2025-05-07 22:10:10', '2025-12-17 19:46:21', 'AnjQqeyA', '8342292'), + (50, 3095, 'attending', '2025-05-02 17:34:36', '2025-12-17 19:46:20', 'AnjQqeyA', '8342293'), + (50, 3096, 'attending', '2025-04-24 01:35:28', '2025-12-17 19:46:20', 'AnjQqeyA', '8342987'), + (50, 3101, 'attending', '2025-04-24 01:36:04', '2025-12-17 19:46:20', 'AnjQqeyA', '8345032'), + (50, 3102, 'attending', '2025-04-24 01:34:49', '2025-12-17 19:46:20', 'AnjQqeyA', '8346008'), + (50, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AnjQqeyA', '8349164'), + (50, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AnjQqeyA', '8349545'), + (50, 3106, 'not_attending', '2025-04-29 20:12:30', '2025-12-17 19:46:20', 'AnjQqeyA', '8349552'), + (50, 3109, 'attending', '2025-05-07 06:00:05', '2025-12-17 19:46:21', 'AnjQqeyA', '8352001'), + (50, 3110, 'attending', '2025-05-07 05:59:58', '2025-12-17 19:46:20', 'AnjQqeyA', '8353484'), + (50, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AnjQqeyA', '8353584'), + (50, 3113, 'attending', '2025-05-01 19:28:46', '2025-12-17 19:46:20', 'AnjQqeyA', '8355089'), + (50, 3119, 'attending', '2025-05-12 23:01:26', '2025-12-17 19:46:21', 'AnjQqeyA', '8360035'), + (50, 3120, 'not_attending', '2025-05-07 06:00:27', '2025-12-17 19:46:21', 'AnjQqeyA', '8360736'), + (50, 3121, 'not_attending', '2025-05-12 23:34:59', '2025-12-17 19:46:21', 'AnjQqeyA', '8362730'), + (50, 3122, 'attending', '2025-05-12 23:01:33', '2025-12-17 19:46:21', 'AnjQqeyA', '8362978'), + (50, 3124, 'attending', '2025-05-12 23:01:00', '2025-12-17 19:46:21', 'AnjQqeyA', '8363566'), + (50, 3130, 'attending', '2025-05-27 06:41:44', '2025-12-17 19:46:21', 'AnjQqeyA', '8367403'), + (50, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AnjQqeyA', '8368028'), + (50, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AnjQqeyA', '8368029'), + (50, 3133, 'attending', '2025-05-31 22:29:37', '2025-12-17 19:46:14', 'AnjQqeyA', '8368030'), + (50, 3138, 'attending', '2025-05-25 01:31:54', '2025-12-17 19:46:21', 'AnjQqeyA', '8376037'), + (50, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AnjQqeyA', '8388462'), + (50, 3150, 'attending', '2025-06-21 21:05:57', '2025-12-17 19:46:15', 'AnjQqeyA', '8393174'), + (50, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AnjQqeyA', '8400273'), + (50, 3154, 'attending', '2025-06-28 19:40:04', '2025-12-17 19:46:15', 'AnjQqeyA', '8400274'), + (50, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AnjQqeyA', '8400275'), + (50, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AnjQqeyA', '8400276'), + (50, 3160, 'maybe', '2025-06-12 20:13:03', '2025-12-17 19:46:15', 'AnjQqeyA', '8401411'), + (50, 3161, 'attending', '2025-06-08 02:05:45', '2025-12-17 19:46:15', 'AnjQqeyA', '8401412'), + (50, 3164, 'attending', '2025-06-08 02:06:16', '2025-12-17 19:46:15', 'AnjQqeyA', '8403121'), + (50, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AnjQqeyA', '8404977'), + (50, 3172, 'maybe', '2025-06-19 04:23:17', '2025-12-17 19:46:15', 'AnjQqeyA', '8410181'), + (50, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AnjQqeyA', '8430783'), + (50, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AnjQqeyA', '8430784'), + (50, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AnjQqeyA', '8430799'), + (50, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AnjQqeyA', '8430800'), + (50, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AnjQqeyA', '8430801'), + (50, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AnjQqeyA', '8438709'), + (50, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AnjQqeyA', '8457738'), + (50, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AnjQqeyA', '8459566'), + (50, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AnjQqeyA', '8459567'), + (50, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AnjQqeyA', '8461032'), + (50, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnjQqeyA', '8477877'), + (50, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnjQqeyA', '8485688'), + (50, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnjQqeyA', '8490587'), + (50, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnjQqeyA', '8493552'), + (50, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnjQqeyA', '8493553'), + (50, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnjQqeyA', '8493554'), + (50, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnjQqeyA', '8493555'), + (50, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnjQqeyA', '8493556'), + (50, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnjQqeyA', '8493557'), + (50, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnjQqeyA', '8493558'), + (50, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnjQqeyA', '8493559'), + (50, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnjQqeyA', '8493560'), + (50, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnjQqeyA', '8493561'), + (50, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnjQqeyA', '8493572'), + (50, 3279, 'attending', '2025-10-02 19:03:38', '2025-12-17 19:46:13', 'AnjQqeyA', '8535685'), + (50, 3280, 'attending', '2025-10-09 17:59:41', '2025-12-17 19:46:13', 'AnjQqeyA', '8535686'), + (50, 3282, 'attending', '2025-10-06 21:29:17', '2025-12-17 19:46:13', 'AnjQqeyA', '8537571'), + (50, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnjQqeyA', '8540725'), + (50, 3285, 'not_attending', '2025-10-08 18:56:32', '2025-12-17 19:46:13', 'AnjQqeyA', '8540726'), + (50, 3291, 'attending', '2025-10-16 18:20:07', '2025-12-17 19:46:14', 'AnjQqeyA', '8543782'), + (50, 3300, 'attending', '2025-11-07 17:07:11', '2025-12-17 19:46:14', 'AnjQqeyA', '8549145'), + (50, 3302, 'attending', '2025-11-14 04:39:04', '2025-12-17 19:46:14', 'AnjQqeyA', '8550022'), + (50, 3304, 'attending', '2025-11-21 21:21:51', '2025-12-17 19:46:14', 'AnjQqeyA', '8550024'), + (50, 3305, 'attending', '2025-12-07 00:47:00', '2025-12-17 19:46:11', 'AnjQqeyA', '8550025'), + (50, 3307, 'maybe', '2025-12-16 01:43:16', '2025-12-17 19:46:11', 'AnjQqeyA', '8550027'), + (50, 3319, 'attending', '2025-11-14 00:08:26', '2025-12-17 19:46:14', 'AnjQqeyA', '8553114'), + (50, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnjQqeyA', '8555421'), + (50, 3334, 'attending', '2025-12-08 21:43:20', '2025-12-17 19:46:11', 'AnjQqeyA', '8563246'), + (50, 3335, 'attending', '2025-12-12 01:10:14', '2025-12-17 19:46:11', 'AnjQqeyA', '8563247'), + (51, 2492, 'attending', '2024-03-13 22:22:57', '2025-12-17 19:46:32', '1ArLNqYd', '7050322'), + (51, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '1ArLNqYd', '7072824'), + (51, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '1ArLNqYd', '7074364'), + (51, 2536, 'attending', '2024-03-17 02:21:47', '2025-12-17 19:46:33', '1ArLNqYd', '7077689'), + (51, 2537, 'not_attending', '2024-03-23 21:32:46', '2025-12-17 19:46:33', '1ArLNqYd', '7085484'), + (51, 2539, 'maybe', '2024-04-06 16:12:48', '2025-12-17 19:46:33', '1ArLNqYd', '7085486'), + (51, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '1ArLNqYd', '7089267'), + (51, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '1ArLNqYd', '7098747'), + (51, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '1ArLNqYd', '7113468'), + (51, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '1ArLNqYd', '7114856'), + (51, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '1ArLNqYd', '7114951'), + (51, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '1ArLNqYd', '7114955'), + (51, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '1ArLNqYd', '7114956'), + (51, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '1ArLNqYd', '7114957'), + (51, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '1ArLNqYd', '7153615'), + (51, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '1ArLNqYd', '7159484'), + (51, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '1ArLNqYd', '7178446'), + (51, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '1ArLNqYd', '7220467'), + (51, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '1ArLNqYd', '7240354'), + (51, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '1ArLNqYd', '7251633'), + (51, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '1ArLNqYd', '7263048'), + (51, 2627, 'not_attending', '2024-05-25 20:51:43', '2025-12-17 19:46:35', '1ArLNqYd', '7264724'), + (51, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '1ArLNqYd', '7302674'), + (51, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '1ArLNqYd', '7324073'), + (51, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '1ArLNqYd', '7324074'), + (51, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '1ArLNqYd', '7324075'), + (51, 2691, 'attending', '2024-07-20 13:26:49', '2025-12-17 19:46:30', '1ArLNqYd', '7324076'), + (51, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '1ArLNqYd', '7324078'), + (51, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '1ArLNqYd', '7324082'), + (51, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '1ArLNqYd', '7331457'), + (51, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '1ArLNqYd', '7356752'), + (51, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '1ArLNqYd', '7363643'), + (51, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '1ArLNqYd', '7368606'), + (51, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '1ArLNqYd', '7397462'), + (51, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '1ArLNqYd', '7424275'), + (51, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '1ArLNqYd', '7424276'), + (51, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '1ArLNqYd', '7432751'), + (51, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '1ArLNqYd', '7432752'), + (51, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '1ArLNqYd', '7432753'), + (51, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '1ArLNqYd', '7432754'), + (51, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '1ArLNqYd', '7432755'), + (51, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '1ArLNqYd', '7432756'), + (51, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '1ArLNqYd', '7432758'), + (51, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '1ArLNqYd', '7432759'), + (51, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '1ArLNqYd', '7433834'), + (51, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '1ArLNqYd', '7470197'), + (51, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '1ArLNqYd', '7685613'), + (51, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '1ArLNqYd', '7688194'), + (51, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '1ArLNqYd', '7688196'), + (51, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '1ArLNqYd', '7688289'), + (51, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '1ArLNqYd', '7692763'), + (51, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '1ArLNqYd', '7697552'), + (51, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '1ArLNqYd', '7699878'), + (51, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '1ArLNqYd', '7704043'), + (51, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1ArLNqYd', '7712467'), + (51, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1ArLNqYd', '7713585'), + (51, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1ArLNqYd', '7713586'), + (51, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '1ArLNqYd', '7738518'), + (51, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '1ArLNqYd', '7750632'), + (51, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1ArLNqYd', '7750636'), + (51, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1ArLNqYd', '7796540'), + (51, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1ArLNqYd', '7796541'), + (51, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1ArLNqYd', '7796542'), + (51, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1ArLNqYd', '7825913'), + (51, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1ArLNqYd', '7826209'), + (51, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1ArLNqYd', '7834742'), + (51, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1ArLNqYd', '7842108'), + (51, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1ArLNqYd', '7842902'), + (51, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1ArLNqYd', '7842903'), + (51, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1ArLNqYd', '7842904'), + (51, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1ArLNqYd', '7842905'), + (51, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1ArLNqYd', '7855719'), + (51, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1ArLNqYd', '7860683'), + (51, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1ArLNqYd', '7860684'), + (51, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1ArLNqYd', '7866095'), + (51, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1ArLNqYd', '7869170'), + (51, 3014, 'attending', '2025-04-04 15:48:59', '2025-12-17 19:46:19', '1ArLNqYd', '7869185'), + (51, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArLNqYd', '7869188'), + (51, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1ArLNqYd', '7869201'), + (51, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1ArLNqYd', '7877465'), + (51, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '1ArLNqYd', '7878570'), + (51, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1ArLNqYd', '7888250'), + (51, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1ArLNqYd', '7904777'), + (51, 3094, 'attending', '2025-05-10 22:28:18', '2025-12-17 19:46:21', '1ArLNqYd', '8342292'), + (51, 3095, 'attending', '2025-05-03 21:15:03', '2025-12-17 19:46:20', '1ArLNqYd', '8342293'), + (51, 3104, 'attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArLNqYd', '8349164'), + (51, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArLNqYd', '8349545'), + (51, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '1ArLNqYd', '8353584'), + (51, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1ArLNqYd', '8368028'), + (51, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1ArLNqYd', '8368029'), + (51, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1ArLNqYd', '8388462'), + (51, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1ArLNqYd', '8400273'), + (51, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '1ArLNqYd', '8400274'), + (51, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1ArLNqYd', '8400275'), + (51, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '1ArLNqYd', '8400276'), + (51, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1ArLNqYd', '8404977'), + (51, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1ArLNqYd', '8430783'), + (51, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1ArLNqYd', '8430784'), + (51, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1ArLNqYd', '8430799'), + (51, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1ArLNqYd', '8430800'), + (51, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1ArLNqYd', '8430801'), + (51, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1ArLNqYd', '8438709'), + (51, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1ArLNqYd', '8457738'), + (51, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1ArLNqYd', '8459566'), + (51, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1ArLNqYd', '8459567'), + (51, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1ArLNqYd', '8461032'), + (51, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1ArLNqYd', '8477877'), + (51, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1ArLNqYd', '8485688'), + (51, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '1ArLNqYd', '8490587'), + (51, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '1ArLNqYd', '8493552'), + (51, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '1ArLNqYd', '8493553'), + (51, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '1ArLNqYd', '8493554'), + (51, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '1ArLNqYd', '8493555'), + (51, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '1ArLNqYd', '8493556'), + (51, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '1ArLNqYd', '8493557'), + (51, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '1ArLNqYd', '8493558'), + (51, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '1ArLNqYd', '8493559'), + (51, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '1ArLNqYd', '8493560'), + (51, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '1ArLNqYd', '8493561'), + (51, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '1ArLNqYd', '8493572'), + (51, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '1ArLNqYd', '8540725'), + (51, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '1ArLNqYd', '8555421'), + (52, 3306, 'maybe', '2025-12-09 00:28:05', '2025-12-17 19:46:11', 'mpL0jgQm', '8550026'), + (52, 3339, 'attending', '2025-12-07 05:26:10', '2025-12-17 19:46:11', 'mpL0jgQm', '8563326'), + (53, 1207, 'not_attending', '2022-05-05 22:24:41', '2025-12-17 19:47:28', 'dzkzQzym', '4773579'), + (53, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dzkzQzym', '5195095'), + (53, 1314, 'attending', '2022-04-10 23:33:59', '2025-12-17 19:47:27', 'dzkzQzym', '5233137'), + (53, 1319, 'attending', '2022-04-11 14:29:10', '2025-12-17 19:47:27', 'dzkzQzym', '5238353'), + (53, 1320, 'attending', '2022-04-11 14:29:21', '2025-12-17 19:47:27', 'dzkzQzym', '5238354'), + (53, 1324, 'attending', '2022-04-14 21:12:40', '2025-12-17 19:47:27', 'dzkzQzym', '5238360'), + (53, 1330, 'attending', '2022-04-13 00:45:48', '2025-12-17 19:47:27', 'dzkzQzym', '5242155'), + (53, 1336, 'attending', '2022-04-15 21:01:07', '2025-12-17 19:47:27', 'dzkzQzym', '5244915'), + (53, 1337, 'maybe', '2022-04-20 22:18:57', '2025-12-17 19:47:27', 'dzkzQzym', '5245036'), + (53, 1346, 'maybe', '2022-04-19 23:40:30', '2025-12-17 19:47:27', 'dzkzQzym', '5247467'), + (53, 1359, 'not_attending', '2022-05-01 21:13:58', '2025-12-17 19:47:28', 'dzkzQzym', '5258360'), + (53, 1360, 'maybe', '2022-04-26 12:18:54', '2025-12-17 19:47:27', 'dzkzQzym', '5260197'), + (53, 1362, 'not_attending', '2022-04-26 02:23:33', '2025-12-17 19:47:28', 'dzkzQzym', '5260800'), + (53, 1364, 'attending', '2022-04-26 12:21:01', '2025-12-17 19:47:28', 'dzkzQzym', '5261598'), + (53, 1368, 'not_attending', '2022-05-06 20:36:10', '2025-12-17 19:47:28', 'dzkzQzym', '5262783'), + (53, 1369, 'not_attending', '2022-05-10 23:49:46', '2025-12-17 19:47:28', 'dzkzQzym', '5262809'), + (53, 1371, 'maybe', '2022-04-27 20:31:40', '2025-12-17 19:47:27', 'dzkzQzym', '5263784'), + (53, 1374, 'attending', '2022-04-30 21:01:25', '2025-12-17 19:47:28', 'dzkzQzym', '5269930'), + (53, 1375, 'attending', '2022-05-05 21:47:57', '2025-12-17 19:47:28', 'dzkzQzym', '5269932'), + (53, 1376, 'not_attending', '2022-05-05 22:25:28', '2025-12-17 19:47:28', 'dzkzQzym', '5271446'), + (53, 1377, 'not_attending', '2022-05-05 22:25:35', '2025-12-17 19:47:28', 'dzkzQzym', '5271447'), + (53, 1378, 'not_attending', '2022-05-05 22:23:25', '2025-12-17 19:47:29', 'dzkzQzym', '5271448'), + (53, 1379, 'attending', '2022-05-02 17:39:17', '2025-12-17 19:47:29', 'dzkzQzym', '5271449'), + (53, 1380, 'attending', '2022-05-28 20:17:54', '2025-12-17 19:47:30', 'dzkzQzym', '5271450'), + (53, 1381, 'not_attending', '2022-05-05 22:24:35', '2025-12-17 19:47:28', 'dzkzQzym', '5271453'), + (53, 1382, 'not_attending', '2022-05-05 22:24:59', '2025-12-17 19:47:28', 'dzkzQzym', '5276350'), + (53, 1383, 'not_attending', '2022-05-05 22:25:41', '2025-12-17 19:47:28', 'dzkzQzym', '5276469'), + (53, 1384, 'maybe', '2022-05-04 20:07:02', '2025-12-17 19:47:28', 'dzkzQzym', '5277078'), + (53, 1385, 'not_attending', '2022-05-05 22:23:44', '2025-12-17 19:47:28', 'dzkzQzym', '5277822'), + (53, 1386, 'not_attending', '2022-05-06 20:35:41', '2025-12-17 19:47:28', 'dzkzQzym', '5278159'), + (53, 1387, 'not_attending', '2022-05-05 22:25:15', '2025-12-17 19:47:28', 'dzkzQzym', '5278173'), + (53, 1388, 'not_attending', '2022-05-05 22:23:59', '2025-12-17 19:47:28', 'dzkzQzym', '5278201'), + (53, 1389, 'not_attending', '2022-05-05 22:24:46', '2025-12-17 19:47:28', 'dzkzQzym', '5278202'), + (53, 1393, 'not_attending', '2022-05-21 02:44:24', '2025-12-17 19:47:30', 'dzkzQzym', '5280603'), + (53, 1394, 'not_attending', '2022-05-16 04:07:30', '2025-12-17 19:47:30', 'dzkzQzym', '5280667'), + (53, 1401, 'not_attending', '2022-05-18 20:46:50', '2025-12-17 19:47:29', 'dzkzQzym', '5286295'), + (53, 1402, 'not_attending', '2022-05-17 20:05:13', '2025-12-17 19:47:30', 'dzkzQzym', '5287977'), + (53, 1403, 'not_attending', '2022-05-20 21:51:18', '2025-12-17 19:47:29', 'dzkzQzym', '5288052'), + (53, 1404, 'attending', '2022-05-15 19:47:09', '2025-12-17 19:47:29', 'dzkzQzym', '5288114'), + (53, 1405, 'maybe', '2022-05-19 22:57:29', '2025-12-17 19:47:29', 'dzkzQzym', '5288115'), + (53, 1407, 'attending', '2022-06-02 19:35:18', '2025-12-17 19:47:30', 'dzkzQzym', '5363695'), + (53, 1408, 'not_attending', '2022-05-20 21:51:15', '2025-12-17 19:47:29', 'dzkzQzym', '5365960'), + (53, 1409, 'maybe', '2022-05-22 15:55:11', '2025-12-17 19:47:30', 'dzkzQzym', '5367032'), + (53, 1414, 'attending', '2022-05-18 10:13:32', '2025-12-17 19:47:29', 'dzkzQzym', '5368445'), + (53, 1415, 'not_attending', '2022-05-19 21:47:21', '2025-12-17 19:47:30', 'dzkzQzym', '5368973'), + (53, 1416, 'attending', '2022-05-28 21:07:42', '2025-12-17 19:47:30', 'dzkzQzym', '5369628'), + (53, 1417, 'not_attending', '2022-05-24 00:10:38', '2025-12-17 19:47:30', 'dzkzQzym', '5370465'), + (53, 1418, 'not_attending', '2022-05-22 02:50:51', '2025-12-17 19:47:30', 'dzkzQzym', '5372162'), + (53, 1419, 'not_attending', '2022-05-31 19:15:40', '2025-12-17 19:47:30', 'dzkzQzym', '5373081'), + (53, 1420, 'attending', '2022-05-27 09:10:15', '2025-12-17 19:47:30', 'dzkzQzym', '5374882'), + (53, 1421, 'attending', '2022-05-23 01:35:19', '2025-12-17 19:47:30', 'dzkzQzym', '5374885'), + (53, 1422, 'not_attending', '2022-05-23 20:53:26', '2025-12-17 19:47:30', 'dzkzQzym', '5375603'), + (53, 1423, 'not_attending', '2022-05-31 19:15:55', '2025-12-17 19:47:17', 'dzkzQzym', '5375727'), + (53, 1424, 'attending', '2022-05-26 19:22:48', '2025-12-17 19:47:30', 'dzkzQzym', '5375772'), + (53, 1425, 'attending', '2022-05-26 19:22:35', '2025-12-17 19:47:30', 'dzkzQzym', '5375861'), + (53, 1427, 'attending', '2022-05-25 21:47:01', '2025-12-17 19:47:30', 'dzkzQzym', '5376074'), + (53, 1428, 'not_attending', '2022-06-01 10:33:22', '2025-12-17 19:47:30', 'dzkzQzym', '5378247'), + (53, 1429, 'attending', '2022-05-29 04:45:11', '2025-12-17 19:47:30', 'dzkzQzym', '5388761'), + (53, 1430, 'not_attending', '2022-06-01 10:33:29', '2025-12-17 19:47:30', 'dzkzQzym', '5389402'), + (53, 1431, 'not_attending', '2022-05-31 19:15:31', '2025-12-17 19:47:30', 'dzkzQzym', '5389605'), + (53, 1432, 'not_attending', '2022-06-01 10:33:10', '2025-12-17 19:47:30', 'dzkzQzym', '5391566'), + (53, 1434, 'not_attending', '2022-06-01 10:32:35', '2025-12-17 19:47:30', 'dzkzQzym', '5393861'), + (53, 1435, 'not_attending', '2022-06-01 10:32:44', '2025-12-17 19:47:30', 'dzkzQzym', '5394015'), + (53, 1436, 'not_attending', '2022-06-01 10:32:51', '2025-12-17 19:47:30', 'dzkzQzym', '5394292'), + (53, 1437, 'not_attending', '2022-06-01 10:33:03', '2025-12-17 19:47:30', 'dzkzQzym', '5394493'), + (53, 1439, 'not_attending', '2022-06-01 20:02:38', '2025-12-17 19:47:30', 'dzkzQzym', '5396072'), + (53, 1440, 'not_attending', '2022-06-07 19:35:05', '2025-12-17 19:47:30', 'dzkzQzym', '5396080'), + (53, 1442, 'attending', '2022-06-03 08:35:58', '2025-12-17 19:47:17', 'dzkzQzym', '5397265'), + (53, 1446, 'not_attending', '2022-06-05 06:47:41', '2025-12-17 19:47:30', 'dzkzQzym', '5399721'), + (53, 1447, 'not_attending', '2022-06-07 19:35:15', '2025-12-17 19:47:30', 'dzkzQzym', '5401089'), + (53, 1449, 'not_attending', '2022-06-13 04:03:47', '2025-12-17 19:47:31', 'dzkzQzym', '5403335'), + (53, 1451, 'maybe', '2022-06-17 09:43:48', '2025-12-17 19:47:17', 'dzkzQzym', '5403967'), + (53, 1454, 'not_attending', '2022-06-12 09:08:01', '2025-12-17 19:47:31', 'dzkzQzym', '5404771'), + (53, 1455, 'maybe', '2022-06-10 10:09:33', '2025-12-17 19:47:31', 'dzkzQzym', '5404772'), + (53, 1457, 'not_attending', '2022-06-12 09:07:53', '2025-12-17 19:47:31', 'dzkzQzym', '5404780'), + (53, 1458, 'maybe', '2022-06-10 10:05:12', '2025-12-17 19:47:17', 'dzkzQzym', '5404786'), + (53, 1461, 'not_attending', '2022-06-13 04:04:10', '2025-12-17 19:47:31', 'dzkzQzym', '5405149'), + (53, 1462, 'not_attending', '2022-06-10 19:18:27', '2025-12-17 19:47:17', 'dzkzQzym', '5405203'), + (53, 1463, 'not_attending', '2022-06-13 04:03:57', '2025-12-17 19:47:31', 'dzkzQzym', '5405208'), + (53, 1465, 'not_attending', '2022-06-12 09:07:46', '2025-12-17 19:47:31', 'dzkzQzym', '5406355'), + (53, 1469, 'not_attending', '2022-06-17 10:16:36', '2025-12-17 19:47:17', 'dzkzQzym', '5406838'), + (53, 1470, 'attending', '2022-06-13 04:07:30', '2025-12-17 19:47:17', 'dzkzQzym', '5407053'), + (53, 1471, 'not_attending', '2022-06-18 22:24:10', '2025-12-17 19:47:17', 'dzkzQzym', '5407063'), + (53, 1472, 'not_attending', '2022-06-21 19:50:40', '2025-12-17 19:47:17', 'dzkzQzym', '5407065'), + (53, 1473, 'not_attending', '2022-06-13 04:03:37', '2025-12-17 19:47:31', 'dzkzQzym', '5407267'), + (53, 1474, 'not_attending', '2022-06-15 01:50:24', '2025-12-17 19:47:19', 'dzkzQzym', '5408029'), + (53, 1475, 'not_attending', '2022-06-16 22:31:12', '2025-12-17 19:47:17', 'dzkzQzym', '5408108'), + (53, 1476, 'not_attending', '2022-06-17 10:16:44', '2025-12-17 19:47:17', 'dzkzQzym', '5408130'), + (53, 1478, 'not_attending', '2022-06-15 01:50:14', '2025-12-17 19:47:19', 'dzkzQzym', '5408794'), + (53, 1479, 'attending', '2022-06-17 09:43:58', '2025-12-17 19:47:17', 'dzkzQzym', '5410322'), + (53, 1480, 'not_attending', '2022-06-21 19:50:51', '2025-12-17 19:47:19', 'dzkzQzym', '5411699'), + (53, 1481, 'not_attending', '2022-06-21 09:53:55', '2025-12-17 19:47:17', 'dzkzQzym', '5412237'), + (53, 1482, 'not_attending', '2022-06-20 08:19:43', '2025-12-17 19:47:19', 'dzkzQzym', '5412550'), + (53, 1483, 'not_attending', '2022-06-20 08:19:56', '2025-12-17 19:47:17', 'dzkzQzym', '5414556'), + (53, 1484, 'not_attending', '2022-06-21 09:52:50', '2025-12-17 19:47:17', 'dzkzQzym', '5415046'), + (53, 1485, 'not_attending', '2022-06-21 19:50:29', '2025-12-17 19:47:17', 'dzkzQzym', '5416276'), + (53, 1486, 'not_attending', '2022-06-22 03:25:38', '2025-12-17 19:47:19', 'dzkzQzym', '5416339'), + (53, 1487, 'not_attending', '2022-06-25 20:44:04', '2025-12-17 19:47:19', 'dzkzQzym', '5419006'), + (53, 1488, 'attending', '2022-06-25 20:44:22', '2025-12-17 19:47:19', 'dzkzQzym', '5420154'), + (53, 1489, 'not_attending', '2022-06-25 20:44:46', '2025-12-17 19:47:19', 'dzkzQzym', '5420155'), + (53, 1490, 'not_attending', '2022-06-25 20:44:56', '2025-12-17 19:47:19', 'dzkzQzym', '5420156'), + (53, 1491, 'not_attending', '2022-06-25 20:45:10', '2025-12-17 19:47:19', 'dzkzQzym', '5420158'), + (53, 1492, 'not_attending', '2022-06-25 20:45:03', '2025-12-17 19:47:19', 'dzkzQzym', '5420175'), + (53, 1495, 'not_attending', '2022-06-26 08:46:15', '2025-12-17 19:47:19', 'dzkzQzym', '5422086'), + (53, 1496, 'not_attending', '2022-06-26 20:38:57', '2025-12-17 19:47:19', 'dzkzQzym', '5422404'), + (53, 1497, 'not_attending', '2022-06-26 20:39:07', '2025-12-17 19:47:19', 'dzkzQzym', '5422405'), + (53, 1498, 'attending', '2022-06-26 20:38:29', '2025-12-17 19:47:19', 'dzkzQzym', '5422406'), + (53, 1500, 'not_attending', '2022-06-28 02:33:13', '2025-12-17 19:47:19', 'dzkzQzym', '5423915'), + (53, 1501, 'not_attending', '2022-06-28 17:28:10', '2025-12-17 19:47:19', 'dzkzQzym', '5424546'), + (53, 1502, 'not_attending', '2022-06-28 17:29:51', '2025-12-17 19:47:19', 'dzkzQzym', '5424565'), + (53, 1503, 'attending', '2022-07-02 19:16:12', '2025-12-17 19:47:19', 'dzkzQzym', '5426820'), + (53, 1504, 'not_attending', '2022-06-30 20:55:36', '2025-12-17 19:47:19', 'dzkzQzym', '5426882'), + (53, 1505, 'not_attending', '2022-06-30 20:55:12', '2025-12-17 19:47:19', 'dzkzQzym', '5427083'), + (53, 1506, 'maybe', '2022-07-02 19:08:09', '2025-12-17 19:47:19', 'dzkzQzym', '5429935'), + (53, 1509, 'not_attending', '2022-07-06 12:18:50', '2025-12-17 19:47:19', 'dzkzQzym', '5434019'), + (53, 1511, 'not_attending', '2022-07-09 20:32:24', '2025-12-17 19:47:19', 'dzkzQzym', '5437733'), + (53, 1513, 'attending', '2022-07-09 08:55:56', '2025-12-17 19:47:19', 'dzkzQzym', '5441125'), + (53, 1514, 'not_attending', '2022-07-09 08:56:06', '2025-12-17 19:47:20', 'dzkzQzym', '5441126'), + (53, 1515, 'not_attending', '2022-07-09 08:56:31', '2025-12-17 19:47:21', 'dzkzQzym', '5441128'), + (53, 1516, 'not_attending', '2022-07-09 11:30:09', '2025-12-17 19:47:23', 'dzkzQzym', '5441129'), + (53, 1517, 'attending', '2022-07-09 11:30:26', '2025-12-17 19:47:23', 'dzkzQzym', '5441130'), + (53, 1518, 'not_attending', '2022-07-09 11:30:54', '2025-12-17 19:47:24', 'dzkzQzym', '5441131'), + (53, 1519, 'attending', '2022-07-09 11:31:13', '2025-12-17 19:47:24', 'dzkzQzym', '5441132'), + (53, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dzkzQzym', '5446643'), + (53, 1537, 'maybe', '2022-07-18 21:27:29', '2025-12-17 19:47:20', 'dzkzQzym', '5449117'), + (53, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dzkzQzym', '5453325'), + (53, 1541, 'not_attending', '2022-07-21 10:52:35', '2025-12-17 19:47:20', 'dzkzQzym', '5453542'), + (53, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dzkzQzym', '5454516'), + (53, 1544, 'not_attending', '2022-08-14 13:03:09', '2025-12-17 19:47:11', 'dzkzQzym', '5454517'), + (53, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dzkzQzym', '5454605'), + (53, 1546, 'not_attending', '2022-07-21 10:52:51', '2025-12-17 19:47:20', 'dzkzQzym', '5454607'), + (53, 1547, 'maybe', '2022-07-20 05:17:20', '2025-12-17 19:47:20', 'dzkzQzym', '5454608'), + (53, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dzkzQzym', '5455037'), + (53, 1560, 'not_attending', '2022-08-07 19:52:35', '2025-12-17 19:47:23', 'dzkzQzym', '5458768'), + (53, 1561, 'attending', '2022-07-26 18:27:35', '2025-12-17 19:47:22', 'dzkzQzym', '5461278'), + (53, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dzkzQzym', '5469480'), + (53, 1565, 'maybe', '2022-07-25 23:03:39', '2025-12-17 19:47:21', 'dzkzQzym', '5471073'), + (53, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dzkzQzym', '5474663'), + (53, 1569, 'not_attending', '2022-08-02 23:35:43', '2025-12-17 19:47:21', 'dzkzQzym', '5481507'), + (53, 1570, 'not_attending', '2022-08-02 23:35:22', '2025-12-17 19:47:21', 'dzkzQzym', '5481830'), + (53, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dzkzQzym', '5482022'), + (53, 1572, 'not_attending', '2022-08-02 23:35:57', '2025-12-17 19:47:22', 'dzkzQzym', '5482078'), + (53, 1573, 'not_attending', '2022-08-01 20:22:29', '2025-12-17 19:47:22', 'dzkzQzym', '5482152'), + (53, 1574, 'attending', '2022-08-01 20:22:40', '2025-12-17 19:47:22', 'dzkzQzym', '5482153'), + (53, 1575, 'not_attending', '2022-08-07 19:52:43', '2025-12-17 19:47:23', 'dzkzQzym', '5482250'), + (53, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dzkzQzym', '5482793'), + (53, 1578, 'not_attending', '2022-08-02 23:35:12', '2025-12-17 19:47:21', 'dzkzQzym', '5483073'), + (53, 1579, 'not_attending', '2022-08-04 11:26:08', '2025-12-17 19:47:22', 'dzkzQzym', '5486019'), + (53, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dzkzQzym', '5488912'), + (53, 1581, 'attending', '2022-08-07 19:51:42', '2025-12-17 19:47:22', 'dzkzQzym', '5490302'), + (53, 1582, 'not_attending', '2022-08-16 22:24:39', '2025-12-17 19:47:23', 'dzkzQzym', '5492001'), + (53, 1583, 'not_attending', '2022-08-08 12:04:13', '2025-12-17 19:47:22', 'dzkzQzym', '5492002'), + (53, 1584, 'maybe', '2022-08-18 10:04:49', '2025-12-17 19:47:23', 'dzkzQzym', '5492004'), + (53, 1586, 'not_attending', '2022-08-17 08:26:05', '2025-12-17 19:47:23', 'dzkzQzym', '5492019'), + (53, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dzkzQzym', '5492192'), + (53, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dzkzQzym', '5493139'), + (53, 1589, 'not_attending', '2022-08-17 08:26:18', '2025-12-17 19:47:23', 'dzkzQzym', '5493159'), + (53, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dzkzQzym', '5493200'), + (53, 1591, 'attending', '2022-08-10 17:33:44', '2025-12-17 19:47:22', 'dzkzQzym', '5493764'), + (53, 1593, 'maybe', '2022-08-10 17:33:23', '2025-12-17 19:47:22', 'dzkzQzym', '5494043'), + (53, 1595, 'maybe', '2022-08-10 14:27:52', '2025-12-17 19:47:22', 'dzkzQzym', '5495736'), + (53, 1599, 'maybe', '2022-08-14 13:01:48', '2025-12-17 19:47:23', 'dzkzQzym', '5496568'), + (53, 1601, 'not_attending', '2022-08-14 21:52:18', '2025-12-17 19:47:22', 'dzkzQzym', '5496589'), + (53, 1602, 'maybe', '2022-08-13 02:09:45', '2025-12-17 19:47:22', 'dzkzQzym', '5497383'), + (53, 1603, 'not_attending', '2022-08-17 08:25:48', '2025-12-17 19:47:23', 'dzkzQzym', '5497895'), + (53, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dzkzQzym', '5502188'), + (53, 1606, 'maybe', '2022-08-18 10:02:06', '2025-12-17 19:47:23', 'dzkzQzym', '5504585'), + (53, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dzkzQzym', '5505059'), + (53, 1611, 'attending', '2022-08-18 09:58:48', '2025-12-17 19:47:24', 'dzkzQzym', '5507652'), + (53, 1612, 'attending', '2022-08-18 10:03:56', '2025-12-17 19:47:12', 'dzkzQzym', '5507653'), + (53, 1613, 'attending', '2022-08-18 10:04:03', '2025-12-17 19:47:14', 'dzkzQzym', '5507654'), + (53, 1614, 'maybe', '2022-08-19 10:51:35', '2025-12-17 19:47:23', 'dzkzQzym', '5508371'), + (53, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dzkzQzym', '5509055'), + (53, 1618, 'not_attending', '2022-08-23 22:12:44', '2025-12-17 19:47:23', 'dzkzQzym', '5512005'), + (53, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dzkzQzym', '5512862'), + (53, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dzkzQzym', '5513985'), + (53, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dzkzQzym', '5519981'), + (53, 1627, 'not_attending', '2022-08-31 20:40:29', '2025-12-17 19:47:24', 'dzkzQzym', '5521552'), + (53, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dzkzQzym', '5522550'), + (53, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dzkzQzym', '5534683'), + (53, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dzkzQzym', '5537735'), + (53, 1636, 'not_attending', '2022-08-31 20:41:06', '2025-12-17 19:47:24', 'dzkzQzym', '5538454'), + (53, 1638, 'not_attending', '2022-08-31 20:40:35', '2025-12-17 19:47:24', 'dzkzQzym', '5540402'), + (53, 1639, 'not_attending', '2022-08-31 20:40:53', '2025-12-17 19:47:24', 'dzkzQzym', '5540403'), + (53, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dzkzQzym', '5540859'), + (53, 1642, 'attending', '2022-09-01 08:44:17', '2025-12-17 19:47:24', 'dzkzQzym', '5544227'), + (53, 1643, 'maybe', '2022-09-09 09:24:06', '2025-12-17 19:47:11', 'dzkzQzym', '5545856'), + (53, 1645, 'not_attending', '2022-09-04 18:28:34', '2025-12-17 19:47:25', 'dzkzQzym', '5546559'), + (53, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dzkzQzym', '5546619'), + (53, 1648, 'maybe', '2022-09-04 18:30:30', '2025-12-17 19:47:24', 'dzkzQzym', '5548974'), + (53, 1651, 'maybe', '2022-09-04 18:28:42', '2025-12-17 19:47:24', 'dzkzQzym', '5551425'), + (53, 1652, 'maybe', '2022-09-10 02:17:03', '2025-12-17 19:47:24', 'dzkzQzym', '5552671'), + (53, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dzkzQzym', '5555245'), + (53, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dzkzQzym', '5557747'), + (53, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dzkzQzym', '5560255'), + (53, 1663, 'maybe', '2022-09-10 15:27:08', '2025-12-17 19:47:24', 'dzkzQzym', '5562345'), + (53, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dzkzQzym', '5562906'), + (53, 1665, 'not_attending', '2022-09-11 02:41:07', '2025-12-17 19:47:25', 'dzkzQzym', '5563133'), + (53, 1667, 'attending', '2022-09-15 07:44:14', '2025-12-17 19:47:11', 'dzkzQzym', '5563221'), + (53, 1668, 'not_attending', '2022-09-15 09:02:06', '2025-12-17 19:47:12', 'dzkzQzym', '5563222'), + (53, 1671, 'not_attending', '2022-09-15 20:53:17', '2025-12-17 19:47:10', 'dzkzQzym', '5585041'), + (53, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dzkzQzym', '5600604'), + (53, 1680, 'attending', '2022-09-27 19:32:55', '2025-12-17 19:47:11', 'dzkzQzym', '5601577'), + (53, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dzkzQzym', '5605544'), + (53, 1699, 'attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'dzkzQzym', '5606737'), + (53, 1705, 'attending', '2022-09-30 02:21:55', '2025-12-17 19:47:12', 'dzkzQzym', '5612209'), + (53, 1716, 'not_attending', '2022-10-06 20:07:02', '2025-12-17 19:47:12', 'dzkzQzym', '5622429'), + (53, 1719, 'not_attending', '2022-10-05 09:45:50', '2025-12-17 19:47:12', 'dzkzQzym', '5630958'), + (53, 1720, 'attending', '2022-10-05 09:45:54', '2025-12-17 19:47:12', 'dzkzQzym', '5630959'), + (53, 1721, 'attending', '2022-10-05 09:45:57', '2025-12-17 19:47:13', 'dzkzQzym', '5630960'), + (53, 1722, 'not_attending', '2022-10-05 09:46:03', '2025-12-17 19:47:14', 'dzkzQzym', '5630961'), + (53, 1723, 'attending', '2022-10-16 17:40:44', '2025-12-17 19:47:15', 'dzkzQzym', '5630962'), + (53, 1724, 'not_attending', '2022-10-16 17:41:00', '2025-12-17 19:47:15', 'dzkzQzym', '5630966'), + (53, 1725, 'attending', '2022-10-16 17:41:11', '2025-12-17 19:47:16', 'dzkzQzym', '5630967'), + (53, 1726, 'not_attending', '2022-10-16 17:41:15', '2025-12-17 19:47:16', 'dzkzQzym', '5630968'), + (53, 1727, 'attending', '2022-10-16 17:41:25', '2025-12-17 19:47:16', 'dzkzQzym', '5630969'), + (53, 1728, 'attending', '2022-11-28 21:43:46', '2025-12-17 19:47:17', 'dzkzQzym', '5630970'), + (53, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dzkzQzym', '5635406'), + (53, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dzkzQzym', '5638765'), + (53, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dzkzQzym', '5640097'), + (53, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dzkzQzym', '5640843'), + (53, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dzkzQzym', '5641521'), + (53, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dzkzQzym', '5642818'), + (53, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dzkzQzym', '5652395'), + (53, 1753, 'not_attending', '2022-10-16 17:39:57', '2025-12-17 19:47:13', 'dzkzQzym', '5656228'), + (53, 1761, 'attending', '2022-11-18 16:17:55', '2025-12-17 19:47:16', 'dzkzQzym', '5670434'), + (53, 1762, 'not_attending', '2022-11-28 21:46:02', '2025-12-17 19:47:16', 'dzkzQzym', '5670445'), + (53, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dzkzQzym', '5671637'), + (53, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dzkzQzym', '5672329'), + (53, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dzkzQzym', '5674057'), + (53, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dzkzQzym', '5674060'), + (53, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dzkzQzym', '5677461'), + (53, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dzkzQzym', '5698046'), + (53, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dzkzQzym', '5699760'), + (53, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dzkzQzym', '5741601'), + (53, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dzkzQzym', '5763458'), + (53, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dzkzQzym', '5774172'), + (53, 1827, 'maybe', '2022-11-28 21:45:08', '2025-12-17 19:47:16', 'dzkzQzym', '5776786'), + (53, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dzkzQzym', '5818247'), + (53, 1834, 'not_attending', '2022-12-05 10:41:37', '2025-12-17 19:47:17', 'dzkzQzym', '5819470'), + (53, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dzkzQzym', '5819471'), + (53, 1837, 'maybe', '2022-12-05 22:36:41', '2025-12-17 19:47:16', 'dzkzQzym', '5820146'), + (53, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'dzkzQzym', '5827739'), + (53, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dzkzQzym', '5844306'), + (53, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dzkzQzym', '5850159'), + (53, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dzkzQzym', '5858999'), + (53, 1852, 'not_attending', '2023-01-10 21:09:49', '2025-12-17 19:47:05', 'dzkzQzym', '5869898'), + (53, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dzkzQzym', '5871984'), + (53, 1860, 'not_attending', '2023-01-15 00:30:36', '2025-12-17 19:47:05', 'dzkzQzym', '5876309'), + (53, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dzkzQzym', '5876354'), + (53, 1864, 'not_attending', '2023-01-20 11:56:45', '2025-12-17 19:47:05', 'dzkzQzym', '5879675'), + (53, 1865, 'attending', '2023-01-20 11:57:02', '2025-12-17 19:47:06', 'dzkzQzym', '5879676'), + (53, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dzkzQzym', '5880939'), + (53, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dzkzQzym', '5880940'), + (53, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dzkzQzym', '5880942'), + (53, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dzkzQzym', '5880943'), + (53, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dzkzQzym', '5887890'), + (53, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dzkzQzym', '5888598'), + (53, 1879, 'maybe', '2023-01-29 14:06:24', '2025-12-17 19:47:06', 'dzkzQzym', '5893001'), + (53, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dzkzQzym', '5893260'), + (53, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dzkzQzym', '5899826'), + (53, 1888, 'maybe', '2023-02-17 16:52:55', '2025-12-17 19:47:07', 'dzkzQzym', '5900197'), + (53, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dzkzQzym', '5900199'), + (53, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dzkzQzym', '5900200'), + (53, 1891, 'not_attending', '2023-03-08 20:55:52', '2025-12-17 19:46:56', 'dzkzQzym', '5900202'), + (53, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dzkzQzym', '5900203'), + (53, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dzkzQzym', '5901108'), + (53, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dzkzQzym', '5901126'), + (53, 1897, 'attending', '2023-02-07 18:01:18', '2025-12-17 19:47:07', 'dzkzQzym', '5901128'), + (53, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dzkzQzym', '5909655'), + (53, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dzkzQzym', '5910522'), + (53, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dzkzQzym', '5910526'), + (53, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dzkzQzym', '5910528'), + (53, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dzkzQzym', '5916219'), + (53, 1930, 'attending', '2023-02-18 14:42:17', '2025-12-17 19:47:08', 'dzkzQzym', '5933462'), + (53, 1931, 'maybe', '2023-02-18 14:42:21', '2025-12-17 19:47:08', 'dzkzQzym', '5933464'), + (53, 1933, 'attending', '2023-02-21 13:39:51', '2025-12-17 19:47:08', 'dzkzQzym', '5936234'), + (53, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dzkzQzym', '5958351'), + (53, 1938, 'maybe', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dzkzQzym', '5959751'), + (53, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dzkzQzym', '5959755'), + (53, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dzkzQzym', '5960055'), + (53, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dzkzQzym', '5961684'), + (53, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dzkzQzym', '5962132'), + (53, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dzkzQzym', '5962133'), + (53, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dzkzQzym', '5962134'), + (53, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dzkzQzym', '5962317'), + (53, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dzkzQzym', '5962318'), + (53, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dzkzQzym', '5965933'), + (53, 1953, 'maybe', '2023-03-02 07:14:15', '2025-12-17 19:47:09', 'dzkzQzym', '5966307'), + (53, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dzkzQzym', '5967014'), + (53, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dzkzQzym', '5972815'), + (53, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dzkzQzym', '5974016'), + (53, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dzkzQzym', '5975052'), + (53, 1963, 'attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dzkzQzym', '5975054'), + (53, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dzkzQzym', '5981515'), + (53, 1966, 'attending', '2023-03-11 18:56:39', '2025-12-17 19:47:10', 'dzkzQzym', '5983042'), + (53, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dzkzQzym', '5993516'), + (53, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dzkzQzym', '5998939'), + (53, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dzkzQzym', '6028191'), + (53, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dzkzQzym', '6040066'), + (53, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dzkzQzym', '6042717'), + (53, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dzkzQzym', '6044838'), + (53, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dzkzQzym', '6044839'), + (53, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzkzQzym', '6045684'), + (53, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dzkzQzym', '6050104'), + (53, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dzkzQzym', '6053195'), + (53, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dzkzQzym', '6053198'), + (53, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dzkzQzym', '6056085'), + (53, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dzkzQzym', '6056916'), + (53, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dzkzQzym', '6059290'), + (53, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dzkzQzym', '6060328'), + (53, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dzkzQzym', '6061037'), + (53, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dzkzQzym', '6061039'), + (53, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dzkzQzym', '6067245'), + (53, 2025, 'maybe', '2023-04-17 11:30:52', '2025-12-17 19:47:00', 'dzkzQzym', '6067457'), + (53, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dzkzQzym', '6068094'), + (53, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dzkzQzym', '6068252'), + (53, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dzkzQzym', '6068253'), + (53, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dzkzQzym', '6068254'), + (53, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dzkzQzym', '6068280'), + (53, 2032, 'attending', '2023-04-18 11:44:46', '2025-12-17 19:47:04', 'dzkzQzym', '6068281'), + (53, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dzkzQzym', '6069093'), + (53, 2034, 'maybe', '2023-04-24 11:18:02', '2025-12-17 19:47:00', 'dzkzQzym', '6069372'), + (53, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dzkzQzym', '6072528'), + (53, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dzkzQzym', '6075556'), + (53, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dzkzQzym', '6079840'), + (53, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dzkzQzym', '6083398'), + (53, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dzkzQzym', '6093504'), + (53, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dzkzQzym', '6097414'), + (53, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dzkzQzym', '6097442'), + (53, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dzkzQzym', '6097684'), + (53, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dzkzQzym', '6098762'), + (53, 2065, 'attending', '2023-06-13 17:13:46', '2025-12-17 19:46:49', 'dzkzQzym', '6101169'), + (53, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dzkzQzym', '6101361'), + (53, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dzkzQzym', '6101362'), + (53, 2068, 'attending', '2023-05-13 17:55:47', '2025-12-17 19:47:03', 'dzkzQzym', '6102837'), + (53, 2071, 'attending', '2023-05-15 04:14:10', '2025-12-17 19:47:03', 'dzkzQzym', '6104949'), + (53, 2074, 'maybe', '2023-05-20 09:17:24', '2025-12-17 19:47:03', 'dzkzQzym', '6107312'), + (53, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dzkzQzym', '6107314'), + (53, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', 'dzkzQzym', '6119877'), + (53, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dzkzQzym', '6120034'), + (53, 2093, 'attending', '2023-06-04 02:39:45', '2025-12-17 19:47:04', 'dzkzQzym', '6132598'), + (53, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dzkzQzym', '6136733'), + (53, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dzkzQzym', '6137989'), + (53, 2103, 'attending', '2023-06-19 20:00:20', '2025-12-17 19:46:50', 'dzkzQzym', '6149451'), + (53, 2105, 'maybe', '2023-06-17 21:57:10', '2025-12-17 19:46:50', 'dzkzQzym', '6149551'), + (53, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dzkzQzym', '6150864'), + (53, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dzkzQzym', '6155491'), + (53, 2114, 'attending', '2023-06-26 22:23:15', '2025-12-17 19:46:50', 'dzkzQzym', '6158648'), + (53, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dzkzQzym', '6164417'), + (53, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dzkzQzym', '6166388'), + (53, 2121, 'maybe', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dzkzQzym', '6176439'), + (53, 2123, 'attending', '2023-06-28 21:33:41', '2025-12-17 19:46:50', 'dzkzQzym', '6176502'), + (53, 2126, 'maybe', '2023-06-30 02:26:51', '2025-12-17 19:46:51', 'dzkzQzym', '6177548'), + (53, 2127, 'attending', '2023-07-01 20:59:30', '2025-12-17 19:46:50', 'dzkzQzym', '6180853'), + (53, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dzkzQzym', '6182410'), + (53, 2130, 'not_attending', '2023-07-03 22:10:04', '2025-12-17 19:46:51', 'dzkzQzym', '6183891'), + (53, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dzkzQzym', '6185812'), + (53, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dzkzQzym', '6187651'), + (53, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dzkzQzym', '6187963'), + (53, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dzkzQzym', '6187964'), + (53, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dzkzQzym', '6187966'), + (53, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dzkzQzym', '6187967'), + (53, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dzkzQzym', '6187969'), + (53, 2140, 'maybe', '2023-07-10 10:28:16', '2025-12-17 19:46:52', 'dzkzQzym', '6188074'), + (53, 2142, 'maybe', '2023-07-07 20:57:55', '2025-12-17 19:46:52', 'dzkzQzym', '6333850'), + (53, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dzkzQzym', '6334878'), + (53, 2151, 'attending', '2023-07-10 10:28:47', '2025-12-17 19:46:52', 'dzkzQzym', '6335700'), + (53, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dzkzQzym', '6337236'), + (53, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dzkzQzym', '6337970'), + (53, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dzkzQzym', '6338308'), + (53, 2159, 'not_attending', '2023-07-13 16:04:04', '2025-12-17 19:46:53', 'dzkzQzym', '6338355'), + (53, 2160, 'attending', '2023-07-13 16:04:08', '2025-12-17 19:46:54', 'dzkzQzym', '6338358'), + (53, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dzkzQzym', '6341710'), + (53, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dzkzQzym', '6342044'), + (53, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dzkzQzym', '6342298'), + (53, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dzkzQzym', '6343294'), + (53, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dzkzQzym', '6347034'), + (53, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dzkzQzym', '6347056'), + (53, 2183, 'maybe', '2023-07-28 13:28:29', '2025-12-17 19:46:54', 'dzkzQzym', '6353008'), + (53, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dzkzQzym', '6353830'), + (53, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dzkzQzym', '6353831'), + (53, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dzkzQzym', '6357867'), + (53, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dzkzQzym', '6358652'), + (53, 2193, 'maybe', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dzkzQzym', '6358668'), + (53, 2194, 'maybe', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dzkzQzym', '6358669'), + (53, 2198, 'maybe', '2023-09-09 22:25:00', '2025-12-17 19:46:45', 'dzkzQzym', '6359400'), + (53, 2204, 'attending', '2023-08-18 22:54:30', '2025-12-17 19:46:55', 'dzkzQzym', '6361542'), + (53, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dzkzQzym', '6361709'), + (53, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dzkzQzym', '6361710'), + (53, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dzkzQzym', '6361711'), + (53, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dzkzQzym', '6361712'), + (53, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dzkzQzym', '6361713'), + (53, 2232, 'attending', '2023-08-23 10:41:16', '2025-12-17 19:46:55', 'dzkzQzym', '6374818'), + (53, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dzkzQzym', '6382573'), + (53, 2240, 'attending', '2023-09-07 12:35:55', '2025-12-17 19:46:56', 'dzkzQzym', '6388603'), + (53, 2241, 'not_attending', '2023-09-09 22:23:07', '2025-12-17 19:46:44', 'dzkzQzym', '6388604'), + (53, 2242, 'attending', '2023-09-21 00:12:43', '2025-12-17 19:46:45', 'dzkzQzym', '6388606'), + (53, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dzkzQzym', '6394629'), + (53, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dzkzQzym', '6394631'), + (53, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dzkzQzym', '6440863'), + (53, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dzkzQzym', '6445440'), + (53, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dzkzQzym', '6453951'), + (53, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dzkzQzym', '6461696'), + (53, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dzkzQzym', '6462129'), + (53, 2290, 'maybe', '2023-10-18 16:39:31', '2025-12-17 19:46:46', 'dzkzQzym', '6462214'), + (53, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dzkzQzym', '6463218'), + (53, 2299, 'attending', '2023-10-15 20:24:13', '2025-12-17 19:46:46', 'dzkzQzym', '6472181'), + (53, 2304, 'attending', '2023-10-24 11:31:38', '2025-12-17 19:46:47', 'dzkzQzym', '6482693'), + (53, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dzkzQzym', '6484200'), + (53, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dzkzQzym', '6484680'), + (53, 2310, 'not_attending', '2023-11-04 17:24:30', '2025-12-17 19:46:47', 'dzkzQzym', '6487709'), + (53, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dzkzQzym', '6507741'), + (53, 2322, 'attending', '2023-11-04 17:24:37', '2025-12-17 19:46:48', 'dzkzQzym', '6514659'), + (53, 2323, 'attending', '2023-11-04 17:24:45', '2025-12-17 19:46:48', 'dzkzQzym', '6514660'), + (53, 2324, 'not_attending', '2023-11-04 17:24:48', '2025-12-17 19:46:49', 'dzkzQzym', '6514662'), + (53, 2325, 'attending', '2023-11-25 20:21:14', '2025-12-17 19:46:36', 'dzkzQzym', '6514663'), + (53, 2326, 'attending', '2023-11-04 17:24:08', '2025-12-17 19:46:48', 'dzkzQzym', '6514805'), + (53, 2329, 'attending', '2023-11-04 17:10:59', '2025-12-17 19:46:47', 'dzkzQzym', '6517138'), + (53, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dzkzQzym', '6519103'), + (53, 2334, 'maybe', '2023-11-06 05:12:49', '2025-12-17 19:46:48', 'dzkzQzym', '6529252'), + (53, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dzkzQzym', '6535681'), + (53, 2338, 'maybe', '2023-11-13 10:47:29', '2025-12-17 19:46:48', 'dzkzQzym', '6538868'), + (53, 2340, 'not_attending', '2023-11-21 04:09:44', '2025-12-17 19:46:48', 'dzkzQzym', '6540279'), + (53, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dzkzQzym', '6584747'), + (53, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dzkzQzym', '6587097'), + (53, 2357, 'maybe', '2023-11-28 00:25:40', '2025-12-17 19:46:36', 'dzkzQzym', '6593341'), + (53, 2358, 'not_attending', '2023-11-29 22:49:45', '2025-12-17 19:46:48', 'dzkzQzym', '6595321'), + (53, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dzkzQzym', '6609022'), + (53, 2365, 'attending', '2023-12-19 00:48:41', '2025-12-17 19:46:37', 'dzkzQzym', '6613093'), + (53, 2373, 'maybe', '2024-01-13 23:25:00', '2025-12-17 19:46:38', 'dzkzQzym', '6632678'), + (53, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dzkzQzym', '6632757'), + (53, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dzkzQzym', '6644187'), + (53, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dzkzQzym', '6648951'), + (53, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dzkzQzym', '6648952'), + (53, 2395, 'maybe', '2024-01-13 23:24:35', '2025-12-17 19:46:38', 'dzkzQzym', '6654471'), + (53, 2396, 'maybe', '2024-01-13 23:24:48', '2025-12-17 19:46:38', 'dzkzQzym', '6655401'), + (53, 2399, 'not_attending', '2024-01-10 04:52:48', '2025-12-17 19:46:38', 'dzkzQzym', '6657583'), + (53, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dzkzQzym', '6661585'), + (53, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dzkzQzym', '6661588'), + (53, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dzkzQzym', '6661589'), + (53, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dzkzQzym', '6699906'), + (53, 2408, 'attending', '2024-01-15 04:53:31', '2025-12-17 19:46:40', 'dzkzQzym', '6699907'), + (53, 2409, 'attending', '2024-01-15 04:53:36', '2025-12-17 19:46:41', 'dzkzQzym', '6699909'), + (53, 2410, 'attending', '2024-01-15 04:53:41', '2025-12-17 19:46:41', 'dzkzQzym', '6699911'), + (53, 2411, 'attending', '2024-02-02 00:31:41', '2025-12-17 19:46:41', 'dzkzQzym', '6699913'), + (53, 2412, 'attending', '2024-02-20 04:26:29', '2025-12-17 19:46:43', 'dzkzQzym', '6700717'), + (53, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dzkzQzym', '6701109'), + (53, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dzkzQzym', '6705219'), + (53, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dzkzQzym', '6710153'), + (53, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dzkzQzym', '6711552'), + (53, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dzkzQzym', '6711553'), + (53, 2431, 'not_attending', '2024-02-02 00:31:23', '2025-12-17 19:46:41', 'dzkzQzym', '6712394'), + (53, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dzkzQzym', '6722688'), + (53, 2438, 'maybe', '2024-02-02 00:31:33', '2025-12-17 19:46:41', 'dzkzQzym', '6730201'), + (53, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dzkzQzym', '6730620'), + (53, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dzkzQzym', '6730642'), + (53, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dzkzQzym', '6740364'), + (53, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dzkzQzym', '6743829'), + (53, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dzkzQzym', '7030380'), + (53, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'dzkzQzym', '7033677'), + (53, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dzkzQzym', '7035415'), + (53, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dzkzQzym', '7044715'), + (53, 2486, 'maybe', '2024-03-04 05:21:25', '2025-12-17 19:46:43', 'dzkzQzym', '7048277'), + (53, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dzkzQzym', '7050318'), + (53, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dzkzQzym', '7050319'), + (53, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dzkzQzym', '7050322'), + (53, 2493, 'not_attending', '2024-03-10 04:44:17', '2025-12-17 19:46:32', 'dzkzQzym', '7052471'), + (53, 2495, 'maybe', '2024-03-05 21:47:21', '2025-12-17 19:46:32', 'dzkzQzym', '7052982'), + (53, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dzkzQzym', '7057804'), + (53, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dzkzQzym', '7059866'), + (53, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dzkzQzym', '7072824'), + (53, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dzkzQzym', '7074348'), + (53, 2524, 'attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dzkzQzym', '7074364'), + (53, 2526, 'attending', '2024-08-01 01:44:42', '2025-12-17 19:46:31', 'dzkzQzym', '7074366'), + (53, 2538, 'attending', '2024-03-26 23:54:20', '2025-12-17 19:46:33', 'dzkzQzym', '7085485'), + (53, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dzkzQzym', '7089267'), + (53, 2542, 'attending', '2024-03-24 23:06:32', '2025-12-17 19:46:33', 'dzkzQzym', '7090025'), + (53, 2545, 'attending', '2024-03-24 23:06:25', '2025-12-17 19:46:33', 'dzkzQzym', '7096942'), + (53, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dzkzQzym', '7098747'), + (53, 2553, 'attending', '2024-03-29 19:58:22', '2025-12-17 19:46:33', 'dzkzQzym', '7113468'), + (53, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dzkzQzym', '7114856'), + (53, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dzkzQzym', '7114951'), + (53, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dzkzQzym', '7114955'), + (53, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dzkzQzym', '7114956'), + (53, 2558, 'maybe', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dzkzQzym', '7114957'), + (53, 2564, 'maybe', '2024-04-10 19:39:33', '2025-12-17 19:46:33', 'dzkzQzym', '7134735'), + (53, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dzkzQzym', '7153615'), + (53, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dzkzQzym', '7159484'), + (53, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzkzQzym', '7178446'), + (53, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dzkzQzym', '7220467'), + (53, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dzkzQzym', '7240354'), + (53, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dzkzQzym', '7251633'), + (53, 2624, 'attending', '2024-05-12 10:03:50', '2025-12-17 19:46:35', 'dzkzQzym', '7263301'), + (53, 2626, 'attending', '2024-05-18 03:10:55', '2025-12-17 19:46:35', 'dzkzQzym', '7264723'), + (53, 2627, 'attending', '2024-05-18 03:11:08', '2025-12-17 19:46:35', 'dzkzQzym', '7264724'), + (53, 2628, 'not_attending', '2024-05-18 03:11:03', '2025-12-17 19:46:36', 'dzkzQzym', '7264725'), + (53, 2629, 'attending', '2024-05-18 03:11:05', '2025-12-17 19:46:28', 'dzkzQzym', '7264726'), + (53, 2647, 'attending', '2024-06-09 04:42:55', '2025-12-17 19:46:28', 'dzkzQzym', '7282057'), + (53, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dzkzQzym', '7302674'), + (53, 2673, 'attending', '2024-06-09 21:46:21', '2025-12-17 19:46:28', 'dzkzQzym', '7319473'), + (53, 2678, 'attending', '2024-06-09 21:44:59', '2025-12-17 19:46:28', 'dzkzQzym', '7319489'), + (53, 2679, 'attending', '2024-06-21 21:14:34', '2025-12-17 19:46:29', 'dzkzQzym', '7319490'), + (53, 2682, 'attending', '2024-06-10 21:38:30', '2025-12-17 19:46:28', 'dzkzQzym', '7321862'), + (53, 2685, 'attending', '2024-06-10 23:12:34', '2025-12-17 19:46:28', 'dzkzQzym', '7322675'), + (53, 2686, 'attending', '2024-06-11 10:09:32', '2025-12-17 19:46:29', 'dzkzQzym', '7323802'), + (53, 2688, 'attending', '2024-06-12 20:59:59', '2025-12-17 19:46:29', 'dzkzQzym', '7324073'), + (53, 2689, 'attending', '2024-06-17 19:38:24', '2025-12-17 19:46:29', 'dzkzQzym', '7324074'), + (53, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dzkzQzym', '7324075'), + (53, 2691, 'attending', '2024-07-14 14:41:52', '2025-12-17 19:46:30', 'dzkzQzym', '7324076'), + (53, 2693, 'attending', '2024-08-01 01:43:12', '2025-12-17 19:46:31', 'dzkzQzym', '7324078'), + (53, 2694, 'attending', '2024-08-01 01:43:29', '2025-12-17 19:46:31', 'dzkzQzym', '7324079'), + (53, 2695, 'attending', '2024-08-01 01:43:39', '2025-12-17 19:46:31', 'dzkzQzym', '7324080'), + (53, 2696, 'attending', '2024-08-01 01:43:41', '2025-12-17 19:46:32', 'dzkzQzym', '7324081'), + (53, 2697, 'not_attending', '2024-08-28 23:38:26', '2025-12-17 19:46:32', 'dzkzQzym', '7324082'), + (53, 2702, 'attending', '2024-06-12 22:18:15', '2025-12-17 19:46:28', 'dzkzQzym', '7324867'), + (53, 2706, 'maybe', '2024-06-19 01:21:05', '2025-12-17 19:46:28', 'dzkzQzym', '7324947'), + (53, 2721, 'attending', '2024-06-19 01:20:46', '2025-12-17 19:46:29', 'dzkzQzym', '7331456'), + (53, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dzkzQzym', '7331457'), + (53, 2732, 'not_attending', '2024-06-24 01:06:20', '2025-12-17 19:46:29', 'dzkzQzym', '7337207'), + (53, 2750, 'attending', '2024-07-07 20:55:42', '2025-12-17 19:46:30', 'dzkzQzym', '7355526'), + (53, 2753, 'attending', '2024-07-08 21:47:08', '2025-12-17 19:46:30', 'dzkzQzym', '7355538'), + (53, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dzkzQzym', '7363643'), + (53, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dzkzQzym', '7368606'), + (53, 2796, 'attending', '2024-08-15 00:29:55', '2025-12-17 19:46:31', 'dzkzQzym', '7391451'), + (53, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dzkzQzym', '7397462'), + (53, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dzkzQzym', '7424275'), + (53, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dzkzQzym', '7424276'), + (53, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dzkzQzym', '7432751'), + (53, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dzkzQzym', '7432752'), + (53, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dzkzQzym', '7432753'), + (53, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dzkzQzym', '7432754'), + (53, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dzkzQzym', '7432755'), + (53, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dzkzQzym', '7432756'), + (53, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dzkzQzym', '7432758'), + (53, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dzkzQzym', '7432759'), + (53, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dzkzQzym', '7433834'), + (53, 2837, 'not_attending', '2024-09-12 18:57:25', '2025-12-17 19:46:25', 'dzkzQzym', '7438711'), + (53, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dzkzQzym', '7470197'), + (53, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dzkzQzym', '7685613'), + (53, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dzkzQzym', '7688194'), + (53, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dzkzQzym', '7688196'), + (53, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dzkzQzym', '7688289'), + (53, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dzkzQzym', '7692763'), + (53, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dzkzQzym', '7697552'), + (53, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dzkzQzym', '7699878'), + (53, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dzkzQzym', '7704043'), + (53, 2922, 'attending', '2024-11-25 22:44:08', '2025-12-17 19:46:21', 'dzkzQzym', '7710890'), + (53, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dzkzQzym', '7712467'), + (53, 2926, 'attending', '2024-12-07 06:51:10', '2025-12-17 19:46:21', 'dzkzQzym', '7713585'), + (53, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dzkzQzym', '7713586'), + (53, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dzkzQzym', '7738518'), + (53, 2962, 'maybe', '2024-12-27 17:31:14', '2025-12-17 19:46:22', 'dzkzQzym', '7750632'), + (53, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dzkzQzym', '7750636'), + (53, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dzkzQzym', '7796540'), + (53, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dzkzQzym', '7796541'), + (53, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dzkzQzym', '7796542'), + (53, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dzkzQzym', '7825913'), + (53, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dzkzQzym', '7825920'), + (53, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dzkzQzym', '7826209'), + (53, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dzkzQzym', '7834742'), + (53, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dzkzQzym', '7842108'), + (53, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dzkzQzym', '7842902'), + (53, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dzkzQzym', '7842903'), + (53, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dzkzQzym', '7842904'), + (53, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dzkzQzym', '7842905'), + (53, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dzkzQzym', '7855719'), + (53, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dzkzQzym', '7860683'), + (53, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dzkzQzym', '7860684'), + (53, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dzkzQzym', '7866095'), + (53, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dzkzQzym', '7869170'), + (53, 3014, 'attending', '2025-04-02 17:43:08', '2025-12-17 19:46:19', 'dzkzQzym', '7869185'), + (53, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dzkzQzym', '7869188'), + (53, 3018, 'maybe', '2025-04-08 16:26:12', '2025-12-17 19:46:20', 'dzkzQzym', '7869189'), + (53, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dzkzQzym', '7869201'), + (53, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dzkzQzym', '7877465'), + (53, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dzkzQzym', '7888250'), + (53, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dzkzQzym', '7904777'), + (53, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dzkzQzym', '8349164'), + (53, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dzkzQzym', '8349545'), + (53, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dzkzQzym', '8353584'), + (53, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dzkzQzym', '8368028'), + (53, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dzkzQzym', '8368029'), + (53, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dzkzQzym', '8388462'), + (53, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dzkzQzym', '8400273'), + (53, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dzkzQzym', '8400274'), + (53, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dzkzQzym', '8400275'), + (53, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dzkzQzym', '8400276'), + (53, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dzkzQzym', '8404977'), + (53, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dzkzQzym', '8430783'), + (53, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dzkzQzym', '8430784'), + (53, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dzkzQzym', '8430799'), + (53, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dzkzQzym', '8430800'), + (53, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dzkzQzym', '8430801'), + (53, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dzkzQzym', '8438709'), + (53, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dzkzQzym', '8457738'), + (53, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dzkzQzym', '8459566'), + (53, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dzkzQzym', '8459567'), + (53, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dzkzQzym', '8459568'), + (53, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dzkzQzym', '8461032'), + (53, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dzkzQzym', '8477877'), + (53, 3215, 'maybe', '2025-08-17 03:17:18', '2025-12-17 19:46:18', 'dzkzQzym', '8477880'), + (53, 3219, 'not_attending', '2025-08-17 03:17:38', '2025-12-17 19:46:18', 'dzkzQzym', '8482548'), + (53, 3222, 'not_attending', '2025-08-29 11:58:42', '2025-12-17 19:46:11', 'dzkzQzym', '8485677'), + (53, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'dzkzQzym', '8485688'), + (53, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dzkzQzym', '8490587'), + (53, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dzkzQzym', '8493552'), + (53, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dzkzQzym', '8493553'), + (53, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dzkzQzym', '8493554'), + (53, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dzkzQzym', '8493555'), + (53, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dzkzQzym', '8493556'), + (53, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dzkzQzym', '8493557'), + (53, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dzkzQzym', '8493558'), + (53, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dzkzQzym', '8493559'), + (53, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dzkzQzym', '8493560'), + (53, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dzkzQzym', '8493561'), + (53, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dzkzQzym', '8493572'), + (53, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dzkzQzym', '8540725'), + (53, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dzkzQzym', '8555421'), + (54, 2821, 'not_attending', '2024-10-09 22:34:19', '2025-12-17 19:46:26', '4oqqKeJm', '7424275'), + (54, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4oqqKeJm', '7424276'), + (54, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', '4oqqKeJm', '7432753'), + (54, 2827, 'not_attending', '2024-09-30 15:46:43', '2025-12-17 19:46:26', '4oqqKeJm', '7432754'), + (54, 2828, 'maybe', '2024-10-09 22:34:24', '2025-12-17 19:46:26', '4oqqKeJm', '7432755'), + (54, 2829, 'attending', '2024-10-09 22:34:27', '2025-12-17 19:46:26', '4oqqKeJm', '7432756'), + (54, 2830, 'maybe', '2024-10-09 22:34:30', '2025-12-17 19:46:26', '4oqqKeJm', '7432758'), + (54, 2831, 'not_attending', '2024-10-09 22:34:32', '2025-12-17 19:46:26', '4oqqKeJm', '7432759'), + (54, 2857, 'maybe', '2024-10-19 06:50:04', '2025-12-17 19:46:26', '4oqqKeJm', '7469387'), + (54, 2858, 'maybe', '2024-10-09 22:34:35', '2025-12-17 19:46:26', '4oqqKeJm', '7469388'), + (54, 2859, 'attending', '2024-10-25 21:47:12', '2025-12-17 19:46:26', '4oqqKeJm', '7469389'), + (54, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4oqqKeJm', '7470197'), + (54, 2865, 'maybe', '2024-10-25 21:47:10', '2025-12-17 19:46:26', '4oqqKeJm', '7471200'), + (54, 2867, 'maybe', '2024-12-06 21:06:04', '2025-12-17 19:46:21', '4oqqKeJm', '7471202'), + (54, 2869, 'attending', '2024-10-02 23:14:23', '2025-12-17 19:46:26', '4oqqKeJm', '7474823'), + (54, 2874, 'maybe', '2024-10-09 22:34:38', '2025-12-17 19:46:26', '4oqqKeJm', '7482239'), + (54, 2886, 'attending', '2024-10-25 21:47:27', '2025-12-17 19:46:26', '4oqqKeJm', '7654498'), + (54, 2889, 'attending', '2024-10-24 22:32:36', '2025-12-17 19:46:26', '4oqqKeJm', '7660485'), + (54, 2893, 'maybe', '2024-11-04 19:33:30', '2025-12-17 19:46:26', '4oqqKeJm', '7672705'), + (54, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4oqqKeJm', '7685613'), + (54, 2899, 'attending', '2024-11-09 17:48:06', '2025-12-17 19:46:27', '4oqqKeJm', '7685616'), + (54, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4oqqKeJm', '7688194'), + (54, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4oqqKeJm', '7688196'), + (54, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4oqqKeJm', '7688289'), + (54, 2909, 'maybe', '2024-11-12 22:57:34', '2025-12-17 19:46:27', '4oqqKeJm', '7689771'), + (54, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4oqqKeJm', '7692763'), + (54, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4oqqKeJm', '7697552'), + (54, 2916, 'attending', '2024-11-17 23:18:24', '2025-12-17 19:46:27', '4oqqKeJm', '7699006'), + (54, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4oqqKeJm', '7699878'), + (54, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4oqqKeJm', '7704043'), + (54, 2924, 'maybe', '2024-11-27 00:41:58', '2025-12-17 19:46:28', '4oqqKeJm', '7712467'), + (54, 2925, 'attending', '2024-12-03 18:12:18', '2025-12-17 19:46:21', '4oqqKeJm', '7713584'), + (54, 2926, 'attending', '2024-12-03 18:12:11', '2025-12-17 19:46:21', '4oqqKeJm', '7713585'), + (54, 2927, 'attending', '2024-12-03 18:12:19', '2025-12-17 19:46:22', '4oqqKeJm', '7713586'), + (54, 2930, 'maybe', '2024-12-07 01:16:42', '2025-12-17 19:46:21', '4oqqKeJm', '7724554'), + (54, 2953, 'maybe', '2024-12-14 17:17:15', '2025-12-17 19:46:21', '4oqqKeJm', '7733836'), + (54, 2957, 'maybe', '2024-12-16 18:00:59', '2025-12-17 19:46:21', '4oqqKeJm', '7735370'), + (54, 2958, 'maybe', '2024-12-18 21:23:26', '2025-12-17 19:46:21', '4oqqKeJm', '7738518'), + (54, 2959, 'attending', '2024-12-21 21:57:14', '2025-12-17 19:46:22', '4oqqKeJm', '7747388'), + (54, 2962, 'not_attending', '2024-12-24 18:51:36', '2025-12-17 19:46:22', '4oqqKeJm', '7750632'), + (54, 2963, 'not_attending', '2024-12-24 18:51:48', '2025-12-17 19:46:22', '4oqqKeJm', '7750636'), + (54, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4oqqKeJm', '7796540'), + (54, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4oqqKeJm', '7796541'), + (54, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4oqqKeJm', '7796542'), + (54, 2968, 'maybe', '2025-01-08 22:58:17', '2025-12-17 19:46:22', '4oqqKeJm', '7797967'), + (54, 2970, 'maybe', '2025-01-12 22:55:16', '2025-12-17 19:46:22', '4oqqKeJm', '7800991'), + (54, 2971, 'maybe', '2025-01-17 18:19:12', '2025-12-17 19:46:22', '4oqqKeJm', '7812230'), + (54, 2972, 'attending', '2025-01-17 18:19:09', '2025-12-17 19:46:22', '4oqqKeJm', '7812563'), + (54, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4oqqKeJm', '7825913'), + (54, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4oqqKeJm', '7826209'), + (54, 2984, 'maybe', '2025-02-06 03:51:11', '2025-12-17 19:46:23', '4oqqKeJm', '7830134'), + (54, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4oqqKeJm', '7834742'), + (54, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '4oqqKeJm', '7842108'), + (54, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4oqqKeJm', '7842902'), + (54, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4oqqKeJm', '7842903'), + (54, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4oqqKeJm', '7842904'), + (54, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4oqqKeJm', '7842905'), + (54, 3000, 'attending', '2025-02-17 19:37:40', '2025-12-17 19:46:24', '4oqqKeJm', '7852541'), + (54, 3001, 'maybe', '2025-02-20 01:30:14', '2025-12-17 19:46:24', '4oqqKeJm', '7854184'), + (54, 3004, 'attending', '2025-02-20 01:29:06', '2025-12-17 19:46:24', '4oqqKeJm', '7854599'), + (54, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4oqqKeJm', '7855719'), + (54, 3007, 'maybe', '2025-02-24 23:00:59', '2025-12-17 19:46:24', '4oqqKeJm', '7860683'), + (54, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4oqqKeJm', '7860684'), + (54, 3009, 'attending', '2025-02-28 04:51:49', '2025-12-17 19:46:18', '4oqqKeJm', '7864019'), + (54, 3010, 'attending', '2025-03-02 20:41:40', '2025-12-17 19:46:18', '4oqqKeJm', '7864879'), + (54, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4oqqKeJm', '7866095'), + (54, 3013, 'attending', '2025-03-05 18:29:17', '2025-12-17 19:46:18', '4oqqKeJm', '7869170'), + (54, 3014, 'not_attending', '2025-03-21 21:24:19', '2025-12-17 19:46:20', '4oqqKeJm', '7869185'), + (54, 3015, 'attending', '2025-03-29 15:41:54', '2025-12-17 19:46:20', '4oqqKeJm', '7869186'), + (54, 3016, 'attending', '2025-03-29 15:41:52', '2025-12-17 19:46:20', '4oqqKeJm', '7869187'), + (54, 3017, 'not_attending', '2025-03-20 22:37:22', '2025-12-17 19:46:19', '4oqqKeJm', '7869188'), + (54, 3018, 'attending', '2025-03-29 15:41:50', '2025-12-17 19:46:20', '4oqqKeJm', '7869189'), + (54, 3028, 'attending', '2025-04-01 22:39:03', '2025-12-17 19:46:20', '4oqqKeJm', '7869199'), + (54, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4oqqKeJm', '7869201'), + (54, 3033, 'attending', '2025-03-11 02:32:21', '2025-12-17 19:46:19', '4oqqKeJm', '7877465'), + (54, 3034, 'maybe', '2025-03-11 22:24:26', '2025-12-17 19:46:18', '4oqqKeJm', '7878570'), + (54, 3036, 'attending', '2025-03-13 20:26:12', '2025-12-17 19:46:19', '4oqqKeJm', '7880952'), + (54, 3038, 'attending', '2025-03-14 02:55:37', '2025-12-17 19:46:19', '4oqqKeJm', '7881989'), + (54, 3039, 'attending', '2025-03-14 13:14:53', '2025-12-17 19:46:19', '4oqqKeJm', '7881992'), + (54, 3040, 'attending', '2025-03-14 03:06:02', '2025-12-17 19:46:19', '4oqqKeJm', '7881994'), + (54, 3041, 'maybe', '2025-03-14 13:15:10', '2025-12-17 19:46:19', '4oqqKeJm', '7881995'), + (54, 3049, 'not_attending', '2025-03-16 23:00:39', '2025-12-17 19:46:19', '4oqqKeJm', '7883215'), + (54, 3050, 'not_attending', '2025-03-16 22:57:56', '2025-12-17 19:46:19', '4oqqKeJm', '7884021'), + (54, 3051, 'attending', '2025-03-16 23:11:00', '2025-12-17 19:46:19', '4oqqKeJm', '7884023'), + (54, 3052, 'attending', '2025-03-16 23:15:31', '2025-12-17 19:46:19', '4oqqKeJm', '7884024'), + (54, 3054, 'attending', '2025-03-17 00:47:32', '2025-12-17 19:46:19', '4oqqKeJm', '7884168'), + (54, 3055, 'attending', '2025-03-21 21:24:02', '2025-12-17 19:46:19', '4oqqKeJm', '7888118'), + (54, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4oqqKeJm', '7888250'), + (54, 3058, 'attending', '2025-03-27 22:33:46', '2025-12-17 19:46:19', '4oqqKeJm', '7891460'), + (54, 3064, 'attending', '2025-03-28 14:09:30', '2025-12-17 19:46:19', '4oqqKeJm', '7892835'), + (54, 3066, 'maybe', '2025-03-31 14:44:08', '2025-12-17 19:46:20', '4oqqKeJm', '7894207'), + (54, 3068, 'attending', '2025-03-30 22:46:58', '2025-12-17 19:46:19', '4oqqKeJm', '7894823'), + (54, 3069, 'attending', '2025-03-31 02:22:29', '2025-12-17 19:46:19', '4oqqKeJm', '7894828'), + (54, 3070, 'attending', '2025-03-30 23:33:39', '2025-12-17 19:46:20', '4oqqKeJm', '7894829'), + (54, 3072, 'attending', '2025-04-01 23:07:37', '2025-12-17 19:46:19', '4oqqKeJm', '7895449'), + (54, 3076, 'attending', '2025-04-05 05:50:53', '2025-12-17 19:46:20', '4oqqKeJm', '7899007'), + (54, 3081, 'maybe', '2025-04-07 19:48:03', '2025-12-17 19:46:20', '4oqqKeJm', '7902801'), + (54, 3082, 'attending', '2025-04-09 23:04:13', '2025-12-17 19:46:20', '4oqqKeJm', '7902819'), + (54, 3084, 'attending', '2025-04-09 14:57:53', '2025-12-17 19:46:20', '4oqqKeJm', '7903687'), + (54, 3085, 'maybe', '2025-04-11 02:29:59', '2025-12-17 19:46:20', '4oqqKeJm', '7903688'), + (54, 3088, 'not_attending', '2025-06-12 16:47:01', '2025-12-17 19:46:15', '4oqqKeJm', '7904777'), + (54, 3090, 'attending', '2025-04-15 23:16:21', '2025-12-17 19:46:20', '4oqqKeJm', '7914315'), + (54, 3093, 'maybe', '2025-04-19 22:24:21', '2025-12-17 19:46:20', '4oqqKeJm', '8342248'), + (54, 3094, 'not_attending', '2025-05-10 02:35:42', '2025-12-17 19:46:21', '4oqqKeJm', '8342292'), + (54, 3095, 'not_attending', '2025-04-27 23:39:25', '2025-12-17 19:46:20', '4oqqKeJm', '8342293'), + (54, 3096, 'attending', '2025-04-21 08:11:27', '2025-12-17 19:46:20', '4oqqKeJm', '8342987'), + (54, 3097, 'attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', '4oqqKeJm', '8342993'), + (54, 3101, 'attending', '2025-04-22 20:00:42', '2025-12-17 19:46:20', '4oqqKeJm', '8345032'), + (54, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4oqqKeJm', '8349164'), + (54, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4oqqKeJm', '8349545'), + (54, 3109, 'maybe', '2025-05-02 00:33:05', '2025-12-17 19:46:21', '4oqqKeJm', '8352001'), + (54, 3110, 'attending', '2025-04-29 19:54:07', '2025-12-17 19:46:20', '4oqqKeJm', '8353484'), + (54, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4oqqKeJm', '8353584'), + (54, 3119, 'maybe', '2025-05-11 00:30:31', '2025-12-17 19:46:21', '4oqqKeJm', '8360035'), + (54, 3121, 'maybe', '2025-05-10 12:31:20', '2025-12-17 19:46:21', '4oqqKeJm', '8362730'), + (54, 3122, 'not_attending', '2025-05-07 22:17:52', '2025-12-17 19:46:21', '4oqqKeJm', '8362978'), + (54, 3126, 'not_attending', '2025-05-14 19:11:46', '2025-12-17 19:46:21', '4oqqKeJm', '8365614'), + (54, 3131, 'attending', '2025-05-13 00:18:27', '2025-12-17 19:46:21', '4oqqKeJm', '8368028'), + (54, 3132, 'attending', '2025-05-18 02:26:29', '2025-12-17 19:46:21', '4oqqKeJm', '8368029'), + (54, 3133, 'attending', '2025-05-25 02:35:45', '2025-12-17 19:46:14', '4oqqKeJm', '8368030'), + (54, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4oqqKeJm', '8388462'), + (54, 3150, 'not_attending', '2025-06-18 10:20:12', '2025-12-17 19:46:15', '4oqqKeJm', '8393174'), + (54, 3153, 'attending', '2025-06-03 17:37:59', '2025-12-17 19:46:15', '4oqqKeJm', '8400273'), + (54, 3154, 'not_attending', '2025-06-14 10:05:06', '2025-12-17 19:46:15', '4oqqKeJm', '8400274'), + (54, 3155, 'not_attending', '2025-06-28 17:33:40', '2025-12-17 19:46:16', '4oqqKeJm', '8400275'), + (54, 3156, 'not_attending', '2025-06-28 17:33:46', '2025-12-17 19:46:16', '4oqqKeJm', '8400276'), + (54, 3159, 'maybe', '2025-06-04 16:08:54', '2025-12-17 19:46:15', '4oqqKeJm', '8401410'), + (54, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4oqqKeJm', '8404977'), + (54, 3172, 'not_attending', '2025-06-18 10:21:29', '2025-12-17 19:46:15', '4oqqKeJm', '8410181'), + (54, 3176, 'maybe', '2025-06-22 00:14:56', '2025-12-17 19:46:15', '4oqqKeJm', '8416741'), + (54, 3180, 'maybe', '2025-06-25 10:54:36', '2025-12-17 19:46:15', '4oqqKeJm', '8422682'), + (54, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '4oqqKeJm', '8430783'), + (54, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4oqqKeJm', '8430784'), + (54, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4oqqKeJm', '8430799'), + (54, 3184, 'maybe', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4oqqKeJm', '8430800'), + (54, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4oqqKeJm', '8430801'), + (54, 3186, 'not_attending', '2025-07-01 01:23:11', '2025-12-17 19:46:16', '4oqqKeJm', '8431527'), + (54, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4oqqKeJm', '8438709'), + (54, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4oqqKeJm', '8457738'), + (54, 3195, 'attending', '2025-07-26 22:03:33', '2025-12-17 19:46:17', '4oqqKeJm', '8458118'), + (54, 3196, 'attending', '2025-07-30 18:01:27', '2025-12-17 19:46:17', '4oqqKeJm', '8458543'), + (54, 3198, 'maybe', '2025-07-30 18:02:29', '2025-12-17 19:46:18', '4oqqKeJm', '8459268'), + (54, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4oqqKeJm', '8459566'), + (54, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4oqqKeJm', '8459567'), + (54, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4oqqKeJm', '8461032'), + (54, 3208, 'maybe', '2025-07-29 04:42:29', '2025-12-17 19:46:17', '4oqqKeJm', '8467717'), + (54, 3210, 'maybe', '2025-07-30 18:02:37', '2025-12-17 19:46:18', '4oqqKeJm', '8471162'), + (54, 3211, 'not_attending', '2025-08-04 23:47:28', '2025-12-17 19:46:17', '4oqqKeJm', '8477785'), + (54, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4oqqKeJm', '8477877'), + (54, 3217, 'not_attending', '2025-08-11 06:24:30', '2025-12-17 19:46:17', '4oqqKeJm', '8481811'), + (54, 3219, 'maybe', '2025-08-12 19:49:46', '2025-12-17 19:46:18', '4oqqKeJm', '8482548'), + (54, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4oqqKeJm', '8485688'), + (54, 3235, 'maybe', '2025-08-17 21:29:37', '2025-12-17 19:46:18', '4oqqKeJm', '8490587'), + (54, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4oqqKeJm', '8493552'), + (54, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4oqqKeJm', '8493553'), + (54, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4oqqKeJm', '8493554'), + (54, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4oqqKeJm', '8493555'), + (54, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4oqqKeJm', '8493556'), + (54, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4oqqKeJm', '8493557'), + (54, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4oqqKeJm', '8493558'), + (54, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4oqqKeJm', '8493559'), + (54, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4oqqKeJm', '8493560'), + (54, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '4oqqKeJm', '8493561'), + (54, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4oqqKeJm', '8493572'), + (54, 3257, 'maybe', '2025-08-28 05:53:02', '2025-12-17 19:46:11', '4oqqKeJm', '8502340'), + (54, 3258, 'not_attending', '2025-09-03 19:18:08', '2025-12-17 19:46:11', '4oqqKeJm', '8510285'), + (54, 3262, 'maybe', '2025-09-05 14:01:49', '2025-12-17 19:46:12', '4oqqKeJm', '8512642'), + (54, 3271, 'maybe', '2025-09-15 21:16:32', '2025-12-17 19:46:12', '4oqqKeJm', '8521430'), + (54, 3279, 'not_attending', '2025-10-02 15:38:56', '2025-12-17 19:46:13', '4oqqKeJm', '8535685'), + (54, 3280, 'maybe', '2025-10-01 14:53:14', '2025-12-17 19:46:13', '4oqqKeJm', '8535686'), + (54, 3281, 'maybe', '2025-10-01 14:53:18', '2025-12-17 19:46:14', '4oqqKeJm', '8535687'), + (54, 3282, 'maybe', '2025-10-05 18:07:35', '2025-12-17 19:46:13', '4oqqKeJm', '8537571'), + (54, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4oqqKeJm', '8540725'), + (54, 3285, 'not_attending', '2025-10-09 01:26:14', '2025-12-17 19:46:13', '4oqqKeJm', '8540726'), + (54, 3289, 'attending', '2025-10-12 18:56:05', '2025-12-17 19:46:14', '4oqqKeJm', '8542939'), + (54, 3295, 'not_attending', '2025-11-01 14:44:57', '2025-12-17 19:46:14', '4oqqKeJm', '8547541'), + (54, 3300, 'attending', '2025-10-28 14:28:33', '2025-12-17 19:46:14', '4oqqKeJm', '8549145'), + (54, 3302, 'attending', '2025-11-01 14:45:19', '2025-12-17 19:46:14', '4oqqKeJm', '8550022'), + (54, 3304, 'maybe', '2025-11-01 14:45:24', '2025-12-17 19:46:14', '4oqqKeJm', '8550024'), + (54, 3305, 'maybe', '2025-12-02 15:59:18', '2025-12-17 19:46:11', '4oqqKeJm', '8550025'), + (54, 3308, 'not_attending', '2025-11-02 01:18:32', '2025-12-17 19:46:14', '4oqqKeJm', '8550408'), + (54, 3309, 'not_attending', '2025-11-02 01:18:35', '2025-12-17 19:46:14', '4oqqKeJm', '8550409'), + (54, 3311, 'not_attending', '2025-12-04 16:15:27', '2025-12-17 19:46:11', '4oqqKeJm', '8550412'), + (54, 3313, 'not_attending', '2025-11-02 14:43:47', '2025-12-17 19:46:14', '4oqqKeJm', '8550896'), + (54, 3314, 'not_attending', '2025-11-02 14:43:43', '2025-12-17 19:46:14', '4oqqKeJm', '8551821'), + (54, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4oqqKeJm', '8555421'), + (54, 3336, 'maybe', '2025-12-12 18:10:41', '2025-12-17 19:46:11', '4oqqKeJm', '8563248'), + (56, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'v4Do21MA', '7074364'), + (56, 2688, 'attending', '2024-06-21 09:55:35', '2025-12-17 19:46:29', 'v4Do21MA', '7324073'), + (56, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'v4Do21MA', '7324074'), + (56, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'v4Do21MA', '7324075'), + (56, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'v4Do21MA', '7324078'), + (56, 2696, 'attending', '2024-08-22 22:32:45', '2025-12-17 19:46:32', 'v4Do21MA', '7324081'), + (56, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'v4Do21MA', '7324082'), + (56, 2705, 'attending', '2024-06-29 00:59:39', '2025-12-17 19:46:29', 'v4Do21MA', '7324944'), + (56, 2719, 'attending', '2024-06-23 17:56:31', '2025-12-17 19:46:29', 'v4Do21MA', '7331305'), + (56, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'v4Do21MA', '7331457'), + (56, 2723, 'attending', '2024-06-19 21:47:52', '2025-12-17 19:46:29', 'v4Do21MA', '7332389'), + (56, 2725, 'not_attending', '2024-06-19 19:53:35', '2025-12-17 19:46:28', 'v4Do21MA', '7332564'), + (56, 2733, 'attending', '2024-06-26 14:58:31', '2025-12-17 19:46:29', 'v4Do21MA', '7338853'), + (56, 2734, 'attending', '2024-07-04 23:54:08', '2025-12-17 19:46:29', 'v4Do21MA', '7339440'), + (56, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'v4Do21MA', '7356752'), + (56, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'v4Do21MA', '7363643'), + (56, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'v4Do21MA', '7368606'), + (56, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'v4Do21MA', '7397462'), + (56, 2808, 'attending', '2024-09-01 17:11:54', '2025-12-17 19:46:32', 'v4Do21MA', '7412860'), + (56, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'v4Do21MA', '7424275'), + (56, 2822, 'attending', '2024-11-10 16:20:50', '2025-12-17 19:46:26', 'v4Do21MA', '7424276'), + (56, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'v4Do21MA', '7432751'), + (56, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'v4Do21MA', '7432752'), + (56, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'v4Do21MA', '7432753'), + (56, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'v4Do21MA', '7432754'), + (56, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'v4Do21MA', '7432755'), + (56, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'v4Do21MA', '7432756'), + (56, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'v4Do21MA', '7432758'), + (56, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'v4Do21MA', '7432759'), + (56, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'v4Do21MA', '7433834'), + (56, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'v4Do21MA', '7470197'), + (56, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'v4Do21MA', '7685613'), + (56, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'v4Do21MA', '7688194'), + (56, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'v4Do21MA', '7688196'), + (56, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'v4Do21MA', '7688289'), + (56, 2909, 'attending', '2024-11-10 21:21:05', '2025-12-17 19:46:27', 'v4Do21MA', '7689771'), + (56, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'v4Do21MA', '7692763'), + (56, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'v4Do21MA', '7697552'), + (56, 2915, 'attending', '2024-11-22 00:35:35', '2025-12-17 19:46:27', 'v4Do21MA', '7698151'), + (56, 2917, 'attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'v4Do21MA', '7699878'), + (56, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'v4Do21MA', '7704043'), + (56, 2920, 'attending', '2024-11-23 23:04:56', '2025-12-17 19:46:28', 'v4Do21MA', '7708406'), + (56, 2921, 'attending', '2024-11-25 02:27:24', '2025-12-17 19:46:28', 'v4Do21MA', '7708460'), + (56, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'v4Do21MA', '7712467'), + (56, 2925, 'attending', '2024-12-11 13:18:35', '2025-12-17 19:46:21', 'v4Do21MA', '7713584'), + (56, 2926, 'attending', '2024-12-06 19:58:06', '2025-12-17 19:46:21', 'v4Do21MA', '7713585'), + (56, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'v4Do21MA', '7713586'), + (56, 2937, 'attending', '2024-12-14 18:04:59', '2025-12-17 19:46:21', 'v4Do21MA', '7725955'), + (56, 2941, 'attending', '2025-02-07 13:44:32', '2025-12-17 19:46:23', 'v4Do21MA', '7725959'), + (56, 2946, 'attending', '2025-03-25 12:09:17', '2025-12-17 19:46:19', 'v4Do21MA', '7725965'), + (56, 2947, 'attending', '2024-12-10 19:39:15', '2025-12-17 19:46:21', 'v4Do21MA', '7727445'), + (56, 2951, 'attending', '2024-12-11 13:18:27', '2025-12-17 19:46:21', 'v4Do21MA', '7729509'), + (56, 2952, 'attending', '2024-12-12 15:53:21', '2025-12-17 19:46:21', 'v4Do21MA', '7730167'), + (56, 2953, 'attending', '2024-12-15 04:41:47', '2025-12-17 19:46:21', 'v4Do21MA', '7733836'), + (56, 2954, 'attending', '2024-12-14 18:04:53', '2025-12-17 19:46:21', 'v4Do21MA', '7734260'), + (56, 2957, 'attending', '2024-12-16 17:03:12', '2025-12-17 19:46:21', 'v4Do21MA', '7735370'), + (56, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'v4Do21MA', '7738518'), + (56, 2962, 'not_attending', '2024-12-27 22:26:20', '2025-12-17 19:46:22', 'v4Do21MA', '7750632'), + (56, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'v4Do21MA', '7750636'), + (56, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'v4Do21MA', '7796540'), + (56, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'v4Do21MA', '7796541'), + (56, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'v4Do21MA', '7796542'), + (56, 2967, 'attending', '2025-01-08 22:09:21', '2025-12-17 19:46:22', 'v4Do21MA', '7797181'), + (56, 2968, 'maybe', '2025-01-08 20:13:27', '2025-12-17 19:46:22', 'v4Do21MA', '7797967'), + (56, 2971, 'not_attending', '2025-01-15 00:36:58', '2025-12-17 19:46:22', 'v4Do21MA', '7812230'), + (56, 2972, 'attending', '2025-01-15 20:13:33', '2025-12-17 19:46:22', 'v4Do21MA', '7812563'), + (56, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'v4Do21MA', '7825913'), + (56, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'v4Do21MA', '7826209'), + (56, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'v4Do21MA', '7834742'), + (56, 2986, 'attending', '2025-02-07 20:58:30', '2025-12-17 19:46:23', 'v4Do21MA', '7835405'), + (56, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'v4Do21MA', '7842108'), + (56, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'v4Do21MA', '7842902'), + (56, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'v4Do21MA', '7842903'), + (56, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'v4Do21MA', '7842904'), + (56, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'v4Do21MA', '7842905'), + (56, 3000, 'maybe', '2025-02-22 19:45:45', '2025-12-17 19:46:24', 'v4Do21MA', '7852541'), + (56, 3004, 'attending', '2025-02-19 12:09:59', '2025-12-17 19:46:24', 'v4Do21MA', '7854599'), + (56, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'v4Do21MA', '7855719'), + (56, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'v4Do21MA', '7860683'), + (56, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'v4Do21MA', '7860684'), + (56, 3009, 'maybe', '2025-03-02 03:53:56', '2025-12-17 19:46:18', 'v4Do21MA', '7864019'), + (56, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'v4Do21MA', '7866095'), + (56, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'v4Do21MA', '7869170'), + (56, 3014, 'attending', '2025-03-31 22:46:42', '2025-12-17 19:46:19', 'v4Do21MA', '7869185'), + (56, 3015, 'attending', '2025-04-23 23:42:49', '2025-12-17 19:46:20', 'v4Do21MA', '7869186'), + (56, 3016, 'attending', '2025-04-17 21:01:20', '2025-12-17 19:46:20', 'v4Do21MA', '7869187'), + (56, 3017, 'attending', '2025-03-25 12:09:12', '2025-12-17 19:46:19', 'v4Do21MA', '7869188'), + (56, 3018, 'attending', '2025-04-09 12:05:32', '2025-12-17 19:46:20', 'v4Do21MA', '7869189'), + (56, 3020, 'attending', '2025-04-17 21:01:23', '2025-12-17 19:46:20', 'v4Do21MA', '7869191'), + (56, 3028, 'attending', '2025-03-29 15:48:20', '2025-12-17 19:46:20', 'v4Do21MA', '7869199'), + (56, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'v4Do21MA', '7869201'), + (56, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'v4Do21MA', '7877465'), + (56, 3034, 'attending', '2025-03-11 16:57:33', '2025-12-17 19:46:18', 'v4Do21MA', '7878570'), + (56, 3036, 'attending', '2025-03-13 22:46:29', '2025-12-17 19:46:19', 'v4Do21MA', '7880952'), + (56, 3038, 'attending', '2025-03-14 11:09:53', '2025-12-17 19:46:19', 'v4Do21MA', '7881989'), + (56, 3039, 'attending', '2025-03-14 09:30:37', '2025-12-17 19:46:19', 'v4Do21MA', '7881992'), + (56, 3040, 'attending', '2025-03-14 09:30:33', '2025-12-17 19:46:19', 'v4Do21MA', '7881994'), + (56, 3041, 'maybe', '2025-03-15 00:18:49', '2025-12-17 19:46:19', 'v4Do21MA', '7881995'), + (56, 3042, 'attending', '2025-03-15 01:12:21', '2025-12-17 19:46:19', 'v4Do21MA', '7882467'), + (56, 3043, 'attending', '2025-03-15 19:14:47', '2025-12-17 19:46:19', 'v4Do21MA', '7882587'), + (56, 3044, 'attending', '2025-03-25 12:09:14', '2025-12-17 19:46:19', 'v4Do21MA', '7882690'), + (56, 3045, 'attending', '2025-03-31 22:46:45', '2025-12-17 19:46:19', 'v4Do21MA', '7882691'), + (56, 3046, 'attending', '2025-04-09 12:05:33', '2025-12-17 19:46:20', 'v4Do21MA', '7882692'), + (56, 3048, 'attending', '2025-04-17 21:01:18', '2025-12-17 19:46:20', 'v4Do21MA', '7882694'), + (56, 3051, 'attending', '2025-03-16 23:10:27', '2025-12-17 19:46:19', 'v4Do21MA', '7884023'), + (56, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'v4Do21MA', '7888250'), + (56, 3067, 'attending', '2025-04-04 22:40:47', '2025-12-17 19:46:19', 'v4Do21MA', '7894745'), + (56, 3068, 'attending', '2025-03-30 22:46:58', '2025-12-17 19:46:19', 'v4Do21MA', '7894823'), + (56, 3069, 'attending', '2025-03-30 23:38:57', '2025-12-17 19:46:19', 'v4Do21MA', '7894828'), + (56, 3070, 'attending', '2025-03-30 23:33:39', '2025-12-17 19:46:20', 'v4Do21MA', '7894829'), + (56, 3072, 'attending', '2025-04-03 20:19:08', '2025-12-17 19:46:19', 'v4Do21MA', '7895449'), + (56, 3074, 'attending', '2025-04-05 14:32:47', '2025-12-17 19:46:19', 'v4Do21MA', '7897784'), + (56, 3075, 'attending', '2025-04-17 21:00:53', '2025-12-17 19:46:20', 'v4Do21MA', '7898896'), + (56, 3076, 'attending', '2025-04-05 05:50:53', '2025-12-17 19:46:20', 'v4Do21MA', '7899007'), + (56, 3086, 'attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'v4Do21MA', '7903852'), + (56, 3088, 'attending', '2025-06-13 18:36:53', '2025-12-17 19:46:15', 'v4Do21MA', '7904777'), + (56, 3094, 'attending', '2025-05-10 17:58:30', '2025-12-17 19:46:21', 'v4Do21MA', '8342292'), + (56, 3095, 'attending', '2025-04-30 03:07:24', '2025-12-17 19:46:20', 'v4Do21MA', '8342293'), + (56, 3101, 'attending', '2025-04-22 19:53:57', '2025-12-17 19:46:20', 'v4Do21MA', '8345032'), + (56, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'v4Do21MA', '8349164'), + (56, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'v4Do21MA', '8349545'), + (56, 3108, 'attending', '2025-04-30 03:07:26', '2025-12-17 19:46:20', 'v4Do21MA', '8351411'), + (56, 3112, 'attending', '2025-05-07 01:02:46', '2025-12-17 19:46:21', 'v4Do21MA', '8353584'), + (56, 3120, 'attending', '2025-05-07 22:28:52', '2025-12-17 19:46:21', 'v4Do21MA', '8360736'), + (56, 3123, 'attending', '2025-05-09 20:55:30', '2025-12-17 19:46:21', 'v4Do21MA', '8363523'), + (56, 3127, 'attending', '2025-05-16 23:39:28', '2025-12-17 19:46:21', 'v4Do21MA', '8365615'), + (56, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'v4Do21MA', '8368028'), + (56, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'v4Do21MA', '8368029'), + (56, 3133, 'attending', '2025-05-29 13:33:10', '2025-12-17 19:46:14', 'v4Do21MA', '8368030'), + (56, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'v4Do21MA', '8388462'), + (56, 3144, 'attending', '2025-05-30 20:25:04', '2025-12-17 19:46:14', 'v4Do21MA', '8393073'), + (56, 3150, 'not_attending', '2025-06-21 22:57:32', '2025-12-17 19:46:15', 'v4Do21MA', '8393174'), + (56, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'v4Do21MA', '8400273'), + (56, 3154, 'attending', '2025-06-26 05:39:05', '2025-12-17 19:46:15', 'v4Do21MA', '8400274'), + (56, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'v4Do21MA', '8400275'), + (56, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'v4Do21MA', '8400276'), + (56, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'v4Do21MA', '8404977'), + (56, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'v4Do21MA', '8430783'), + (56, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'v4Do21MA', '8430784'), + (56, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'v4Do21MA', '8430799'), + (56, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'v4Do21MA', '8430800'), + (56, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'v4Do21MA', '8430801'), + (56, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'v4Do21MA', '8438709'), + (56, 3190, 'attending', '2025-07-12 19:44:54', '2025-12-17 19:46:17', 'v4Do21MA', '8443962'), + (56, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'v4Do21MA', '8457738'), + (56, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'v4Do21MA', '8459566'), + (56, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'v4Do21MA', '8459567'), + (56, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'v4Do21MA', '8461032'), + (56, 3206, 'attending', '2025-07-22 17:48:17', '2025-12-17 19:46:17', 'v4Do21MA', '8462943'), + (56, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'v4Do21MA', '8477877'), + (56, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'v4Do21MA', '8485688'), + (56, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'v4Do21MA', '8490587'), + (56, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'v4Do21MA', '8493552'), + (56, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'v4Do21MA', '8493553'), + (56, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'v4Do21MA', '8493554'), + (56, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'v4Do21MA', '8493555'), + (56, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'v4Do21MA', '8493556'), + (56, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'v4Do21MA', '8493557'), + (56, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'v4Do21MA', '8493558'), + (56, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'v4Do21MA', '8493559'), + (56, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'v4Do21MA', '8493560'), + (56, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'v4Do21MA', '8493561'), + (56, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'v4Do21MA', '8493572'), + (56, 3283, 'attending', '2025-10-05 03:08:09', '2025-12-17 19:46:14', 'v4Do21MA', '8538077'), + (56, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'v4Do21MA', '8540725'), + (56, 3289, 'attending', '2025-10-24 18:40:48', '2025-12-17 19:46:14', 'v4Do21MA', '8542939'), + (56, 3290, 'attending', '2025-10-13 20:30:29', '2025-12-17 19:46:13', 'v4Do21MA', '8542943'), + (56, 3294, 'attending', '2025-10-18 16:09:04', '2025-12-17 19:46:14', 'v4Do21MA', '8546775'), + (56, 3295, 'not_attending', '2025-11-01 22:52:33', '2025-12-17 19:46:14', 'v4Do21MA', '8547541'), + (56, 3300, 'attending', '2025-11-05 05:17:00', '2025-12-17 19:46:14', 'v4Do21MA', '8549145'), + (56, 3302, 'attending', '2025-11-16 00:22:46', '2025-12-17 19:46:14', 'v4Do21MA', '8550022'), + (56, 3304, 'attending', '2025-11-23 00:13:18', '2025-12-17 19:46:14', 'v4Do21MA', '8550024'), + (56, 3305, 'attending', '2025-12-04 08:00:20', '2025-12-17 19:46:11', 'v4Do21MA', '8550025'), + (56, 3306, 'attending', '2025-12-11 17:31:36', '2025-12-17 19:46:11', 'v4Do21MA', '8550026'), + (56, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'v4Do21MA', '8555421'), + (56, 3333, 'attending', '2025-12-04 05:05:01', '2025-12-17 19:46:11', 'v4Do21MA', '8562500'), + (56, 3343, 'attending', '2025-12-14 04:42:09', '2025-12-17 19:46:11', 'v4Do21MA', '8564411'), + (57, 393, 'attending', '2021-06-22 23:31:30', '2025-12-17 19:47:38', 'xAY1yRaA', '3236448'), + (57, 745, 'attending', '2021-07-02 22:04:53', '2025-12-17 19:47:38', 'xAY1yRaA', '3680625'), + (57, 746, 'attending', '2021-07-09 19:59:17', '2025-12-17 19:47:39', 'xAY1yRaA', '3680626'), + (57, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xAY1yRaA', '4021848'), + (57, 869, 'attending', '2021-06-29 00:37:00', '2025-12-17 19:47:38', 'xAY1yRaA', '4136744'), + (57, 870, 'attending', '2021-07-02 21:19:36', '2025-12-17 19:47:39', 'xAY1yRaA', '4136937'), + (57, 871, 'attending', '2021-07-05 10:14:49', '2025-12-17 19:47:39', 'xAY1yRaA', '4136938'), + (57, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'xAY1yRaA', '4136947'), + (57, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'xAY1yRaA', '4210314'), + (57, 885, 'attending', '2021-06-27 22:44:40', '2025-12-17 19:47:38', 'xAY1yRaA', '4222370'), + (57, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xAY1yRaA', '4225444'), + (57, 896, 'attending', '2021-06-29 00:37:08', '2025-12-17 19:47:38', 'xAY1yRaA', '4231145'), + (57, 897, 'not_attending', '2021-06-28 09:55:03', '2025-12-17 19:47:38', 'xAY1yRaA', '4232132'), + (57, 899, 'maybe', '2021-07-04 15:08:29', '2025-12-17 19:47:39', 'xAY1yRaA', '4239259'), + (57, 900, 'attending', '2021-07-18 22:15:57', '2025-12-17 19:47:40', 'xAY1yRaA', '4240316'), + (57, 901, 'attending', '2021-07-30 21:25:44', '2025-12-17 19:47:40', 'xAY1yRaA', '4240317'), + (57, 902, 'attending', '2021-08-04 10:03:57', '2025-12-17 19:47:41', 'xAY1yRaA', '4240318'), + (57, 903, 'attending', '2021-08-09 09:50:09', '2025-12-17 19:47:42', 'xAY1yRaA', '4240320'), + (57, 905, 'not_attending', '2021-07-05 10:15:07', '2025-12-17 19:47:39', 'xAY1yRaA', '4250163'), + (57, 909, 'attending', '2021-07-10 19:34:30', '2025-12-17 19:47:39', 'xAY1yRaA', '4258187'), + (57, 910, 'attending', '2021-07-10 21:10:48', '2025-12-17 19:47:39', 'xAY1yRaA', '4258189'), + (57, 918, 'attending', '2021-07-12 19:37:43', '2025-12-17 19:47:39', 'xAY1yRaA', '4274486'), + (57, 919, 'maybe', '2021-07-17 16:22:39', '2025-12-17 19:47:39', 'xAY1yRaA', '4275957'), + (57, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xAY1yRaA', '4277819'), + (57, 922, 'attending', '2021-07-23 10:42:20', '2025-12-17 19:47:40', 'xAY1yRaA', '4280811'), + (57, 926, 'attending', '2021-08-16 16:34:28', '2025-12-17 19:47:42', 'xAY1yRaA', '4297211'), + (57, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xAY1yRaA', '4301723'), + (57, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xAY1yRaA', '4302093'), + (57, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xAY1yRaA', '4304151'), + (57, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'xAY1yRaA', '4345519'), + (57, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'xAY1yRaA', '4356801'), + (57, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xAY1yRaA', '4358025'), + (57, 973, 'attending', '2021-08-19 11:56:32', '2025-12-17 19:47:42', 'xAY1yRaA', '4366186'), + (57, 974, 'attending', '2021-08-23 11:46:21', '2025-12-17 19:47:42', 'xAY1yRaA', '4366187'), + (57, 977, 'maybe', '2021-08-20 15:50:57', '2025-12-17 19:47:42', 'xAY1yRaA', '4378479'), + (57, 978, 'attending', '2021-08-21 20:04:14', '2025-12-17 19:47:42', 'xAY1yRaA', '4378509'), + (57, 986, 'attending', '2021-08-22 17:28:16', '2025-12-17 19:47:42', 'xAY1yRaA', '4394209'), + (57, 988, 'not_attending', '2021-08-27 20:48:57', '2025-12-17 19:47:42', 'xAY1yRaA', '4402823'), + (57, 990, 'attending', '2021-08-28 22:56:10', '2025-12-17 19:47:43', 'xAY1yRaA', '4420735'), + (57, 991, 'attending', '2021-08-28 22:56:13', '2025-12-17 19:47:43', 'xAY1yRaA', '4420738'), + (57, 992, 'attending', '2021-09-15 10:07:07', '2025-12-17 19:47:33', 'xAY1yRaA', '4420739'), + (57, 993, 'attending', '2021-09-24 22:00:34', '2025-12-17 19:47:34', 'xAY1yRaA', '4420741'), + (57, 994, 'attending', '2021-09-28 22:03:18', '2025-12-17 19:47:34', 'xAY1yRaA', '4420742'), + (57, 995, 'attending', '2021-10-09 09:06:58', '2025-12-17 19:47:34', 'xAY1yRaA', '4420744'), + (57, 996, 'attending', '2021-10-02 15:53:42', '2025-12-17 19:47:35', 'xAY1yRaA', '4420747'), + (57, 997, 'attending', '2021-10-11 09:50:17', '2025-12-17 19:47:35', 'xAY1yRaA', '4420748'), + (57, 998, 'attending', '2021-10-11 09:50:19', '2025-12-17 19:47:36', 'xAY1yRaA', '4420749'), + (57, 999, 'not_attending', '2021-08-31 14:29:18', '2025-12-17 19:47:43', 'xAY1yRaA', '4421150'), + (57, 1017, 'not_attending', '2021-09-06 20:11:47', '2025-12-17 19:47:43', 'xAY1yRaA', '4441822'), + (57, 1019, 'not_attending', '2021-09-16 21:54:43', '2025-12-17 19:47:43', 'xAY1yRaA', '4450515'), + (57, 1022, 'attending', '2021-09-15 22:01:29', '2025-12-17 19:47:43', 'xAY1yRaA', '4458628'), + (57, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'xAY1yRaA', '4461883'), + (57, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'xAY1yRaA', '4508342'), + (57, 1072, 'attending', '2021-10-06 20:13:38', '2025-12-17 19:47:34', 'xAY1yRaA', '4516287'), + (57, 1074, 'attending', '2021-09-29 09:28:40', '2025-12-17 19:47:34', 'xAY1yRaA', '4528953'), + (57, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'xAY1yRaA', '4568602'), + (57, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'xAY1yRaA', '4572153'), + (57, 1092, 'attending', '2021-10-21 19:51:45', '2025-12-17 19:47:35', 'xAY1yRaA', '4582837'), + (57, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xAY1yRaA', '4585962'), + (57, 1095, 'attending', '2021-10-27 21:05:25', '2025-12-17 19:47:35', 'xAY1yRaA', '4596356'), + (57, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xAY1yRaA', '4598860'), + (57, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xAY1yRaA', '4598861'), + (57, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'xAY1yRaA', '4602797'), + (57, 1114, 'attending', '2021-11-11 22:47:19', '2025-12-17 19:47:36', 'xAY1yRaA', '4637896'), + (57, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xAY1yRaA', '4642994'), + (57, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'xAY1yRaA', '4642995'), + (57, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xAY1yRaA', '4642996'), + (57, 1119, 'attending', '2021-12-19 16:58:56', '2025-12-17 19:47:31', 'xAY1yRaA', '4642997'), + (57, 1126, 'attending', '2021-12-11 20:30:55', '2025-12-17 19:47:38', 'xAY1yRaA', '4645687'), + (57, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xAY1yRaA', '4645698'), + (57, 1128, 'attending', '2021-11-18 00:22:29', '2025-12-17 19:47:37', 'xAY1yRaA', '4645704'), + (57, 1129, 'not_attending', '2021-11-27 22:17:34', '2025-12-17 19:47:37', 'xAY1yRaA', '4645705'), + (57, 1130, 'not_attending', '2021-12-04 22:10:05', '2025-12-17 19:47:37', 'xAY1yRaA', '4658824'), + (57, 1131, 'maybe', '2021-12-18 22:32:15', '2025-12-17 19:47:31', 'xAY1yRaA', '4658825'), + (57, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'xAY1yRaA', '4668385'), + (57, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'xAY1yRaA', '4694407'), + (57, 1151, 'attending', '2022-01-02 22:14:57', '2025-12-17 19:47:31', 'xAY1yRaA', '4708704'), + (57, 1173, 'attending', '2022-01-08 20:25:36', '2025-12-17 19:47:31', 'xAY1yRaA', '4736495'), + (57, 1174, 'attending', '2022-01-14 11:43:25', '2025-12-17 19:47:31', 'xAY1yRaA', '4736496'), + (57, 1175, 'attending', '2022-01-22 12:01:31', '2025-12-17 19:47:32', 'xAY1yRaA', '4736497'), + (57, 1176, 'attending', '2022-02-05 19:21:02', '2025-12-17 19:47:32', 'xAY1yRaA', '4736498'), + (57, 1177, 'attending', '2022-02-11 19:44:38', '2025-12-17 19:47:32', 'xAY1yRaA', '4736499'), + (57, 1178, 'attending', '2022-01-28 00:26:49', '2025-12-17 19:47:32', 'xAY1yRaA', '4736500'), + (57, 1181, 'not_attending', '2022-03-05 16:26:07', '2025-12-17 19:47:33', 'xAY1yRaA', '4736503'), + (57, 1182, 'attending', '2022-03-11 22:58:13', '2025-12-17 19:47:33', 'xAY1yRaA', '4736504'), + (57, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xAY1yRaA', '4746789'), + (57, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xAY1yRaA', '4753929'), + (57, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xAY1yRaA', '5038850'), + (57, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xAY1yRaA', '5045826'), + (57, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xAY1yRaA', '5132533'), + (57, 1272, 'maybe', '2022-03-17 20:54:38', '2025-12-17 19:47:25', 'xAY1yRaA', '5186582'), + (57, 1273, 'attending', '2022-03-25 20:20:43', '2025-12-17 19:47:25', 'xAY1yRaA', '5186583'), + (57, 1274, 'attending', '2022-04-02 18:20:49', '2025-12-17 19:47:26', 'xAY1yRaA', '5186585'), + (57, 1281, 'attending', '2022-04-06 20:19:41', '2025-12-17 19:47:27', 'xAY1yRaA', '5190437'), + (57, 1284, 'attending', '2022-04-16 10:59:30', '2025-12-17 19:47:27', 'xAY1yRaA', '5195095'), + (57, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xAY1yRaA', '5215989'), + (57, 1305, 'attending', '2022-04-10 22:33:52', '2025-12-17 19:47:27', 'xAY1yRaA', '5223673'), + (57, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'xAY1yRaA', '5223686'), + (57, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'xAY1yRaA', '5227432'), + (57, 1346, 'attending', '2022-04-20 20:37:46', '2025-12-17 19:47:27', 'xAY1yRaA', '5247467'), + (57, 1357, 'attending', '2022-04-25 19:53:06', '2025-12-17 19:47:27', 'xAY1yRaA', '5256017'), + (57, 1362, 'attending', '2022-04-25 19:52:52', '2025-12-17 19:47:28', 'xAY1yRaA', '5260800'), + (57, 1364, 'attending', '2022-05-03 20:26:12', '2025-12-17 19:47:28', 'xAY1yRaA', '5261598'), + (57, 1374, 'attending', '2022-05-03 20:23:45', '2025-12-17 19:47:28', 'xAY1yRaA', '5269930'), + (57, 1378, 'attending', '2022-05-07 16:59:37', '2025-12-17 19:47:28', 'xAY1yRaA', '5271448'), + (57, 1379, 'attending', '2022-05-18 20:31:54', '2025-12-17 19:47:29', 'xAY1yRaA', '5271449'), + (57, 1383, 'attending', '2022-05-13 21:04:32', '2025-12-17 19:47:28', 'xAY1yRaA', '5276469'), + (57, 1385, 'attending', '2022-05-11 22:45:50', '2025-12-17 19:47:28', 'xAY1yRaA', '5277822'), + (57, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'xAY1yRaA', '5278159'), + (57, 1401, 'attending', '2022-05-18 20:47:19', '2025-12-17 19:47:29', 'xAY1yRaA', '5286295'), + (57, 1407, 'attending', '2022-06-03 21:38:23', '2025-12-17 19:47:30', 'xAY1yRaA', '5363695'), + (57, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'xAY1yRaA', '5365960'), + (57, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'xAY1yRaA', '5368973'), + (57, 1423, 'attending', '2022-06-03 21:38:39', '2025-12-17 19:47:17', 'xAY1yRaA', '5375727'), + (57, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'xAY1yRaA', '5378247'), + (57, 1431, 'attending', '2022-06-03 21:38:28', '2025-12-17 19:47:30', 'xAY1yRaA', '5389605'), + (57, 1442, 'attending', '2022-06-03 21:38:30', '2025-12-17 19:47:17', 'xAY1yRaA', '5397265'), + (57, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'xAY1yRaA', '5403967'), + (57, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'xAY1yRaA', '5404786'), + (57, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'xAY1yRaA', '5405203'), + (57, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'xAY1yRaA', '5408794'), + (57, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'xAY1yRaA', '5411699'), + (57, 1482, 'attending', '2022-06-25 15:16:43', '2025-12-17 19:47:19', 'xAY1yRaA', '5412550'), + (57, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'xAY1yRaA', '5415046'), + (57, 1491, 'attending', '2022-07-08 20:09:13', '2025-12-17 19:47:19', 'xAY1yRaA', '5420158'), + (57, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'xAY1yRaA', '5422086'), + (57, 1498, 'attending', '2022-06-27 00:09:30', '2025-12-17 19:47:19', 'xAY1yRaA', '5422406'), + (57, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'xAY1yRaA', '5424565'), + (57, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'xAY1yRaA', '5426882'), + (57, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'xAY1yRaA', '5427083'), + (57, 1508, 'attending', '2022-07-02 20:48:12', '2025-12-17 19:47:19', 'xAY1yRaA', '5433453'), + (57, 1511, 'attending', '2022-07-08 20:09:17', '2025-12-17 19:47:19', 'xAY1yRaA', '5437733'), + (57, 1513, 'attending', '2022-07-09 09:20:42', '2025-12-17 19:47:19', 'xAY1yRaA', '5441125'), + (57, 1514, 'attending', '2022-07-09 09:27:40', '2025-12-17 19:47:20', 'xAY1yRaA', '5441126'), + (57, 1515, 'attending', '2022-08-06 18:28:45', '2025-12-17 19:47:21', 'xAY1yRaA', '5441128'), + (57, 1516, 'attending', '2022-08-19 09:23:43', '2025-12-17 19:47:23', 'xAY1yRaA', '5441129'), + (57, 1517, 'attending', '2022-08-19 09:23:44', '2025-12-17 19:47:23', 'xAY1yRaA', '5441130'), + (57, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'xAY1yRaA', '5441131'), + (57, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'xAY1yRaA', '5441132'), + (57, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'xAY1yRaA', '5446643'), + (57, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'xAY1yRaA', '5453325'), + (57, 1541, 'attending', '2022-07-25 20:31:02', '2025-12-17 19:47:20', 'xAY1yRaA', '5453542'), + (57, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'xAY1yRaA', '5454516'), + (57, 1544, 'maybe', '2022-09-11 15:34:54', '2025-12-17 19:47:11', 'xAY1yRaA', '5454517'), + (57, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'xAY1yRaA', '5454605'), + (57, 1551, 'attending', '2022-07-19 21:20:08', '2025-12-17 19:47:20', 'xAY1yRaA', '5455037'), + (57, 1557, 'attending', '2022-07-23 15:48:48', '2025-12-17 19:47:21', 'xAY1yRaA', '5458729'), + (57, 1558, 'attending', '2022-07-23 21:31:58', '2025-12-17 19:47:10', 'xAY1yRaA', '5458730'), + (57, 1559, 'attending', '2022-07-23 21:31:56', '2025-12-17 19:47:11', 'xAY1yRaA', '5458731'), + (57, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'xAY1yRaA', '5461278'), + (57, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'xAY1yRaA', '5469480'), + (57, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'xAY1yRaA', '5471073'), + (57, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'xAY1yRaA', '5474663'), + (57, 1569, 'attending', '2022-08-05 18:21:02', '2025-12-17 19:47:21', 'xAY1yRaA', '5481507'), + (57, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'xAY1yRaA', '5482022'), + (57, 1575, 'attending', '2022-08-26 16:14:34', '2025-12-17 19:47:23', 'xAY1yRaA', '5482250'), + (57, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'xAY1yRaA', '5482793'), + (57, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'xAY1yRaA', '5488912'), + (57, 1582, 'maybe', '2022-08-19 09:23:23', '2025-12-17 19:47:23', 'xAY1yRaA', '5492001'), + (57, 1584, 'not_attending', '2022-08-19 09:23:25', '2025-12-17 19:47:23', 'xAY1yRaA', '5492004'), + (57, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'xAY1yRaA', '5492192'), + (57, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'xAY1yRaA', '5493139'), + (57, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'xAY1yRaA', '5493200'), + (57, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'xAY1yRaA', '5502188'), + (57, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'xAY1yRaA', '5505059'), + (57, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'xAY1yRaA', '5509055'), + (57, 1618, 'attending', '2022-08-28 19:11:45', '2025-12-17 19:47:23', 'xAY1yRaA', '5512005'), + (57, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'xAY1yRaA', '5512862'), + (57, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'xAY1yRaA', '5513985'), + (57, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'xAY1yRaA', '5519981'), + (57, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'xAY1yRaA', '5522550'), + (57, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'xAY1yRaA', '5534683'), + (57, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'xAY1yRaA', '5537735'), + (57, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'xAY1yRaA', '5540859'), + (57, 1641, 'attending', '2022-09-01 22:04:20', '2025-12-17 19:47:24', 'xAY1yRaA', '5544226'), + (57, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'xAY1yRaA', '5546619'), + (57, 1648, 'attending', '2022-09-09 16:41:24', '2025-12-17 19:47:24', 'xAY1yRaA', '5548974'), + (57, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'xAY1yRaA', '5555245'), + (57, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'xAY1yRaA', '5557747'), + (57, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'xAY1yRaA', '5560255'), + (57, 1664, 'maybe', '2022-09-10 17:35:57', '2025-12-17 19:47:25', 'xAY1yRaA', '5562906'), + (57, 1667, 'attending', '2022-09-21 22:17:10', '2025-12-17 19:47:11', 'xAY1yRaA', '5563221'), + (57, 1668, 'attending', '2022-09-25 09:41:07', '2025-12-17 19:47:12', 'xAY1yRaA', '5563222'), + (57, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'xAY1yRaA', '5600604'), + (57, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'xAY1yRaA', '5605544'), + (57, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'xAY1yRaA', '5606737'), + (57, 1708, 'attending', '2022-10-01 15:52:19', '2025-12-17 19:47:12', 'xAY1yRaA', '5617648'), + (57, 1719, 'attending', '2022-10-06 20:50:20', '2025-12-17 19:47:12', 'xAY1yRaA', '5630958'), + (57, 1720, 'attending', '2022-10-07 23:50:54', '2025-12-17 19:47:12', 'xAY1yRaA', '5630959'), + (57, 1721, 'attending', '2022-10-07 23:50:56', '2025-12-17 19:47:13', 'xAY1yRaA', '5630960'), + (57, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'xAY1yRaA', '5630961'), + (57, 1723, 'not_attending', '2022-11-01 21:27:12', '2025-12-17 19:47:15', 'xAY1yRaA', '5630962'), + (57, 1724, 'attending', '2022-11-05 14:20:27', '2025-12-17 19:47:15', 'xAY1yRaA', '5630966'), + (57, 1725, 'attending', '2022-11-05 14:20:29', '2025-12-17 19:47:16', 'xAY1yRaA', '5630967'), + (57, 1726, 'attending', '2022-11-20 19:46:35', '2025-12-17 19:47:16', 'xAY1yRaA', '5630968'), + (57, 1727, 'attending', '2022-12-02 21:00:04', '2025-12-17 19:47:16', 'xAY1yRaA', '5630969'), + (57, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'xAY1yRaA', '5635406'), + (57, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'xAY1yRaA', '5638765'), + (57, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'xAY1yRaA', '5640097'), + (57, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'xAY1yRaA', '5640843'), + (57, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'xAY1yRaA', '5641521'), + (57, 1744, 'not_attending', '2022-11-23 21:29:02', '2025-12-17 19:47:16', 'xAY1yRaA', '5642818'), + (57, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'xAY1yRaA', '5652395'), + (57, 1761, 'attending', '2022-11-18 16:48:03', '2025-12-17 19:47:16', 'xAY1yRaA', '5670434'), + (57, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'xAY1yRaA', '5670445'), + (57, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'xAY1yRaA', '5671637'), + (57, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'xAY1yRaA', '5672329'), + (57, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'xAY1yRaA', '5674057'), + (57, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'xAY1yRaA', '5674060'), + (57, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'xAY1yRaA', '5677461'), + (57, 1776, 'attending', '2022-11-05 14:20:35', '2025-12-17 19:47:15', 'xAY1yRaA', '5691067'), + (57, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'xAY1yRaA', '5698046'), + (57, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'xAY1yRaA', '5699760'), + (57, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'xAY1yRaA', '5741601'), + (57, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'xAY1yRaA', '5763458'), + (57, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'xAY1yRaA', '5774172'), + (57, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'xAY1yRaA', '5818247'), + (57, 1834, 'attending', '2022-12-09 22:40:57', '2025-12-17 19:47:17', 'xAY1yRaA', '5819470'), + (57, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'xAY1yRaA', '5819471'), + (57, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'xAY1yRaA', '5827739'), + (57, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xAY1yRaA', '5844306'), + (57, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xAY1yRaA', '5850159'), + (57, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xAY1yRaA', '5858999'), + (57, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xAY1yRaA', '5871984'), + (57, 1859, 'attending', '2023-01-12 23:38:06', '2025-12-17 19:47:05', 'xAY1yRaA', '5876234'), + (57, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xAY1yRaA', '5876354'), + (57, 1864, 'attending', '2023-01-18 21:54:57', '2025-12-17 19:47:05', 'xAY1yRaA', '5879675'), + (57, 1865, 'attending', '2023-01-24 22:37:46', '2025-12-17 19:47:06', 'xAY1yRaA', '5879676'), + (57, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xAY1yRaA', '5880939'), + (57, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xAY1yRaA', '5880940'), + (57, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xAY1yRaA', '5880942'), + (57, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xAY1yRaA', '5880943'), + (57, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xAY1yRaA', '5887890'), + (57, 1875, 'attending', '2023-01-22 18:46:52', '2025-12-17 19:47:06', 'xAY1yRaA', '5887908'), + (57, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xAY1yRaA', '5888598'), + (57, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xAY1yRaA', '5893260'), + (57, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xAY1yRaA', '5899826'), + (57, 1885, 'attending', '2023-02-12 15:32:46', '2025-12-17 19:47:08', 'xAY1yRaA', '5899928'), + (57, 1886, 'attending', '2023-03-02 01:34:29', '2025-12-17 19:47:09', 'xAY1yRaA', '5899930'), + (57, 1888, 'attending', '2023-02-17 16:22:26', '2025-12-17 19:47:07', 'xAY1yRaA', '5900197'), + (57, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xAY1yRaA', '5900199'), + (57, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xAY1yRaA', '5900200'), + (57, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xAY1yRaA', '5900202'), + (57, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xAY1yRaA', '5900203'), + (57, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xAY1yRaA', '5901108'), + (57, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xAY1yRaA', '5901126'), + (57, 1897, 'attending', '2023-02-08 00:35:09', '2025-12-17 19:47:07', 'xAY1yRaA', '5901128'), + (57, 1899, 'maybe', '2023-02-08 00:35:38', '2025-12-17 19:47:07', 'xAY1yRaA', '5901323'), + (57, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xAY1yRaA', '5909655'), + (57, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xAY1yRaA', '5910522'), + (57, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xAY1yRaA', '5910526'), + (57, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xAY1yRaA', '5910528'), + (57, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xAY1yRaA', '5916219'), + (57, 1923, 'attending', '2023-02-16 23:46:18', '2025-12-17 19:47:07', 'xAY1yRaA', '5930436'), + (57, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xAY1yRaA', '5936234'), + (57, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xAY1yRaA', '5958351'), + (57, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xAY1yRaA', '5959751'), + (57, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xAY1yRaA', '5959755'), + (57, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xAY1yRaA', '5960055'), + (57, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xAY1yRaA', '5961684'), + (57, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'xAY1yRaA', '5962132'), + (57, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'xAY1yRaA', '5962133'), + (57, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xAY1yRaA', '5962134'), + (57, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xAY1yRaA', '5962317'), + (57, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xAY1yRaA', '5962318'), + (57, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'xAY1yRaA', '5965933'), + (57, 1953, 'attending', '2023-03-01 21:53:16', '2025-12-17 19:47:09', 'xAY1yRaA', '5966307'), + (57, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xAY1yRaA', '5967014'), + (57, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xAY1yRaA', '5972815'), + (57, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xAY1yRaA', '5974016'), + (57, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xAY1yRaA', '5981515'), + (57, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xAY1yRaA', '5993516'), + (57, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xAY1yRaA', '5998939'), + (57, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xAY1yRaA', '6028191'), + (57, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xAY1yRaA', '6040066'), + (57, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xAY1yRaA', '6042717'), + (57, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xAY1yRaA', '6044838'), + (57, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xAY1yRaA', '6044839'), + (57, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'xAY1yRaA', '6045684'), + (57, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xAY1yRaA', '6050104'), + (57, 1996, 'attending', '2023-04-02 21:57:05', '2025-12-17 19:46:58', 'xAY1yRaA', '6050667'), + (57, 2003, 'attending', '2023-05-14 17:31:11', '2025-12-17 19:47:03', 'xAY1yRaA', '6052606'), + (57, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xAY1yRaA', '6053195'), + (57, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xAY1yRaA', '6053198'), + (57, 2008, 'attending', '2023-04-07 21:52:39', '2025-12-17 19:46:58', 'xAY1yRaA', '6055808'), + (57, 2010, 'maybe', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xAY1yRaA', '6056085'), + (57, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xAY1yRaA', '6056916'), + (57, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xAY1yRaA', '6059290'), + (57, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xAY1yRaA', '6060328'), + (57, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xAY1yRaA', '6061037'), + (57, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xAY1yRaA', '6061039'), + (57, 2020, 'not_attending', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'xAY1yRaA', '6065813'), + (57, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xAY1yRaA', '6067245'), + (57, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xAY1yRaA', '6068094'), + (57, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xAY1yRaA', '6068252'), + (57, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xAY1yRaA', '6068253'), + (57, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xAY1yRaA', '6068254'), + (57, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'xAY1yRaA', '6068280'), + (57, 2032, 'attending', '2023-06-01 22:36:40', '2025-12-17 19:47:04', 'xAY1yRaA', '6068281'), + (57, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xAY1yRaA', '6069093'), + (57, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xAY1yRaA', '6072528'), + (57, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'xAY1yRaA', '6075556'), + (57, 2048, 'maybe', '2023-05-14 17:30:48', '2025-12-17 19:47:03', 'xAY1yRaA', '6076415'), + (57, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xAY1yRaA', '6079840'), + (57, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xAY1yRaA', '6083398'), + (57, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xAY1yRaA', '6093504'), + (57, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xAY1yRaA', '6097414'), + (57, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xAY1yRaA', '6097442'), + (57, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xAY1yRaA', '6097684'), + (57, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xAY1yRaA', '6098762'), + (57, 2064, 'attending', '2023-06-24 18:18:36', '2025-12-17 19:46:50', 'xAY1yRaA', '6099988'), + (57, 2065, 'not_attending', '2023-06-15 21:48:54', '2025-12-17 19:46:49', 'xAY1yRaA', '6101169'), + (57, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xAY1yRaA', '6101361'), + (57, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xAY1yRaA', '6101362'), + (57, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xAY1yRaA', '6107314'), + (57, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xAY1yRaA', '6120034'), + (57, 2091, 'attending', '2023-06-04 18:15:30', '2025-12-17 19:47:04', 'xAY1yRaA', '6130657'), + (57, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'xAY1yRaA', '6136733'), + (57, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xAY1yRaA', '6137989'), + (57, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xAY1yRaA', '6150864'), + (57, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xAY1yRaA', '6155491'), + (57, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xAY1yRaA', '6164417'), + (57, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xAY1yRaA', '6166388'), + (57, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xAY1yRaA', '6176439'), + (57, 2123, 'attending', '2023-06-29 21:13:35', '2025-12-17 19:46:50', 'xAY1yRaA', '6176502'), + (57, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xAY1yRaA', '6182410'), + (57, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xAY1yRaA', '6185812'), + (57, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xAY1yRaA', '6187651'), + (57, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xAY1yRaA', '6187963'), + (57, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xAY1yRaA', '6187964'), + (57, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xAY1yRaA', '6187966'), + (57, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xAY1yRaA', '6187967'), + (57, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xAY1yRaA', '6187969'), + (57, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xAY1yRaA', '6334878'), + (57, 2146, 'attending', '2023-07-14 08:57:02', '2025-12-17 19:46:53', 'xAY1yRaA', '6335638'), + (57, 2152, 'attending', '2023-07-13 20:14:10', '2025-12-17 19:46:52', 'xAY1yRaA', '6337021'), + (57, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xAY1yRaA', '6337236'), + (57, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xAY1yRaA', '6337970'), + (57, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xAY1yRaA', '6338308'), + (57, 2159, 'attending', '2023-07-16 17:26:41', '2025-12-17 19:46:53', 'xAY1yRaA', '6338355'), + (57, 2160, 'attending', '2023-07-16 17:26:43', '2025-12-17 19:46:54', 'xAY1yRaA', '6338358'), + (57, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xAY1yRaA', '6341710'), + (57, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xAY1yRaA', '6342044'), + (57, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xAY1yRaA', '6342298'), + (57, 2168, 'not_attending', '2023-07-17 20:14:56', '2025-12-17 19:46:52', 'xAY1yRaA', '6342302'), + (57, 2169, 'attending', '2023-07-24 19:55:41', '2025-12-17 19:46:53', 'xAY1yRaA', '6342306'), + (57, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xAY1yRaA', '6343294'), + (57, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xAY1yRaA', '6347034'), + (57, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xAY1yRaA', '6347056'), + (57, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xAY1yRaA', '6353830'), + (57, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xAY1yRaA', '6353831'), + (57, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xAY1yRaA', '6357867'), + (57, 2191, 'attending', '2023-08-03 21:49:01', '2025-12-17 19:46:54', 'xAY1yRaA', '6358652'), + (57, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'xAY1yRaA', '6358668'), + (57, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'xAY1yRaA', '6358669'), + (57, 2195, 'attending', '2023-08-25 13:45:16', '2025-12-17 19:46:55', 'xAY1yRaA', '6359397'), + (57, 2196, 'attending', '2023-09-03 14:09:19', '2025-12-17 19:46:56', 'xAY1yRaA', '6359398'), + (57, 2197, 'attending', '2023-09-09 19:35:44', '2025-12-17 19:46:44', 'xAY1yRaA', '6359399'), + (57, 2198, 'attending', '2023-09-21 20:41:50', '2025-12-17 19:46:45', 'xAY1yRaA', '6359400'), + (57, 2200, 'attending', '2023-08-09 20:54:25', '2025-12-17 19:46:55', 'xAY1yRaA', '6359850'), + (57, 2204, 'attending', '2023-08-12 12:21:24', '2025-12-17 19:46:55', 'xAY1yRaA', '6361542'), + (57, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xAY1yRaA', '6361709'), + (57, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xAY1yRaA', '6361710'), + (57, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xAY1yRaA', '6361711'), + (57, 2211, 'attending', '2023-08-12 12:21:20', '2025-12-17 19:46:55', 'xAY1yRaA', '6361712'), + (57, 2212, 'attending', '2023-09-23 09:38:52', '2025-12-17 19:46:45', 'xAY1yRaA', '6361713'), + (57, 2232, 'attending', '2023-08-23 20:23:04', '2025-12-17 19:46:55', 'xAY1yRaA', '6374818'), + (57, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'xAY1yRaA', '6382573'), + (57, 2239, 'attending', '2023-08-31 23:04:14', '2025-12-17 19:46:56', 'xAY1yRaA', '6387592'), + (57, 2240, 'attending', '2023-09-07 16:27:53', '2025-12-17 19:46:56', 'xAY1yRaA', '6388603'), + (57, 2241, 'attending', '2023-09-07 16:27:56', '2025-12-17 19:46:44', 'xAY1yRaA', '6388604'), + (57, 2242, 'attending', '2023-09-22 15:06:21', '2025-12-17 19:46:45', 'xAY1yRaA', '6388606'), + (57, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xAY1yRaA', '6394629'), + (57, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xAY1yRaA', '6394631'), + (57, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xAY1yRaA', '6440863'), + (57, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xAY1yRaA', '6445440'), + (57, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xAY1yRaA', '6453951'), + (57, 2284, 'attending', '2023-10-09 23:17:07', '2025-12-17 19:46:46', 'xAY1yRaA', '6460928'), + (57, 2285, 'attending', '2023-10-15 23:16:56', '2025-12-17 19:46:47', 'xAY1yRaA', '6460929'), + (57, 2286, 'attending', '2023-11-30 00:04:57', '2025-12-17 19:46:48', 'xAY1yRaA', '6460930'), + (57, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xAY1yRaA', '6461696'), + (57, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xAY1yRaA', '6462129'), + (57, 2291, 'attending', '2023-10-18 20:49:06', '2025-12-17 19:46:46', 'xAY1yRaA', '6462215'), + (57, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xAY1yRaA', '6463218'), + (57, 2299, 'attending', '2023-10-20 10:55:24', '2025-12-17 19:46:46', 'xAY1yRaA', '6472181'), + (57, 2303, 'attending', '2023-10-23 20:33:56', '2025-12-17 19:46:47', 'xAY1yRaA', '6482691'), + (57, 2304, 'attending', '2023-10-28 21:26:44', '2025-12-17 19:46:47', 'xAY1yRaA', '6482693'), + (57, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'xAY1yRaA', '6484200'), + (57, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xAY1yRaA', '6484680'), + (57, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xAY1yRaA', '6507741'), + (57, 2321, 'attending', '2023-11-02 20:53:41', '2025-12-17 19:46:47', 'xAY1yRaA', '6512075'), + (57, 2322, 'attending', '2023-11-05 12:40:37', '2025-12-17 19:46:48', 'xAY1yRaA', '6514659'), + (57, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xAY1yRaA', '6514660'), + (57, 2324, 'attending', '2023-12-09 21:46:53', '2025-12-17 19:46:49', 'xAY1yRaA', '6514662'), + (57, 2325, 'attending', '2023-12-09 21:46:59', '2025-12-17 19:46:36', 'xAY1yRaA', '6514663'), + (57, 2326, 'attending', '2023-11-05 15:27:10', '2025-12-17 19:46:48', 'xAY1yRaA', '6514805'), + (57, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xAY1yRaA', '6519103'), + (57, 2335, 'maybe', '2023-11-10 01:56:18', '2025-12-17 19:46:47', 'xAY1yRaA', '6534890'), + (57, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xAY1yRaA', '6535681'), + (57, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xAY1yRaA', '6584747'), + (57, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xAY1yRaA', '6587097'), + (57, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xAY1yRaA', '6609022'), + (57, 2364, 'attending', '2023-12-07 23:32:20', '2025-12-17 19:46:49', 'xAY1yRaA', '6613011'), + (57, 2371, 'attending', '2023-12-12 22:34:15', '2025-12-17 19:46:36', 'xAY1yRaA', '6624495'), + (57, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xAY1yRaA', '6632757'), + (57, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xAY1yRaA', '6644187'), + (57, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xAY1yRaA', '6648951'), + (57, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xAY1yRaA', '6648952'), + (57, 2388, 'attending', '2024-01-04 22:56:38', '2025-12-17 19:46:37', 'xAY1yRaA', '6649244'), + (57, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xAY1yRaA', '6655401'), + (57, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xAY1yRaA', '6661585'), + (57, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xAY1yRaA', '6661588'), + (57, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xAY1yRaA', '6661589'), + (57, 2406, 'attending', '2024-01-20 00:31:37', '2025-12-17 19:46:40', 'xAY1yRaA', '6692344'), + (57, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xAY1yRaA', '6699906'), + (57, 2408, 'attending', '2024-01-20 21:00:13', '2025-12-17 19:46:40', 'xAY1yRaA', '6699907'), + (57, 2409, 'attending', '2024-01-20 21:00:15', '2025-12-17 19:46:41', 'xAY1yRaA', '6699909'), + (57, 2410, 'attending', '2024-01-20 21:00:18', '2025-12-17 19:46:41', 'xAY1yRaA', '6699911'), + (57, 2411, 'attending', '2024-02-16 16:27:09', '2025-12-17 19:46:41', 'xAY1yRaA', '6699913'), + (57, 2412, 'not_attending', '2024-02-16 16:27:14', '2025-12-17 19:46:43', 'xAY1yRaA', '6700717'), + (57, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xAY1yRaA', '6701109'), + (57, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'xAY1yRaA', '6704561'), + (57, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xAY1yRaA', '6705219'), + (57, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'xAY1yRaA', '6708410'), + (57, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xAY1yRaA', '6710153'), + (57, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xAY1yRaA', '6711552'), + (57, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xAY1yRaA', '6711553'), + (57, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xAY1yRaA', '6722688'), + (57, 2438, 'attending', '2024-02-05 23:12:00', '2025-12-17 19:46:41', 'xAY1yRaA', '6730201'), + (57, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xAY1yRaA', '6730620'), + (57, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xAY1yRaA', '6730642'), + (57, 2446, 'attending', '2024-02-27 22:41:19', '2025-12-17 19:46:43', 'xAY1yRaA', '6734369'), + (57, 2447, 'attending', '2024-03-09 21:29:17', '2025-12-17 19:46:32', 'xAY1yRaA', '6734370'), + (57, 2448, 'attending', '2024-03-23 20:17:33', '2025-12-17 19:46:33', 'xAY1yRaA', '6734371'), + (57, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xAY1yRaA', '6740364'), + (57, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xAY1yRaA', '6743829'), + (57, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xAY1yRaA', '7030380'), + (57, 2471, 'attending', '2024-02-18 20:39:50', '2025-12-17 19:46:42', 'xAY1yRaA', '7032425'), + (57, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xAY1yRaA', '7033677'), + (57, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xAY1yRaA', '7035415'), + (57, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xAY1yRaA', '7044715'), + (57, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xAY1yRaA', '7050318'), + (57, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xAY1yRaA', '7050319'), + (57, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xAY1yRaA', '7050322'), + (57, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xAY1yRaA', '7057804'), + (57, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xAY1yRaA', '7072824'), + (57, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xAY1yRaA', '7074348'), + (57, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xAY1yRaA', '7074364'), + (57, 2526, 'attending', '2024-08-01 17:51:02', '2025-12-17 19:46:31', 'xAY1yRaA', '7074366'), + (57, 2535, 'attending', '2024-03-16 00:51:57', '2025-12-17 19:46:32', 'xAY1yRaA', '7076879'), + (57, 2537, 'attending', '2024-03-17 15:46:30', '2025-12-17 19:46:33', 'xAY1yRaA', '7085484'), + (57, 2538, 'attending', '2024-03-17 15:46:44', '2025-12-17 19:46:33', 'xAY1yRaA', '7085485'), + (57, 2539, 'attending', '2024-04-03 21:43:12', '2025-12-17 19:46:33', 'xAY1yRaA', '7085486'), + (57, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'xAY1yRaA', '7089267'), + (57, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xAY1yRaA', '7098747'), + (57, 2553, 'attending', '2024-03-29 18:47:38', '2025-12-17 19:46:33', 'xAY1yRaA', '7113468'), + (57, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xAY1yRaA', '7114856'), + (57, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xAY1yRaA', '7114951'), + (57, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xAY1yRaA', '7114955'), + (57, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xAY1yRaA', '7114956'), + (57, 2558, 'attending', '2024-04-26 22:10:39', '2025-12-17 19:46:35', 'xAY1yRaA', '7114957'), + (57, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xAY1yRaA', '7153615'), + (57, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xAY1yRaA', '7159484'), + (57, 2575, 'attending', '2024-04-11 20:17:43', '2025-12-17 19:46:33', 'xAY1yRaA', '7164534'), + (57, 2576, 'attending', '2024-04-25 20:03:54', '2025-12-17 19:46:34', 'xAY1yRaA', '7164538'), + (57, 2579, 'attending', '2024-04-11 20:16:09', '2025-12-17 19:46:33', 'xAY1yRaA', '7167020'), + (57, 2584, 'attending', '2024-04-18 19:52:58', '2025-12-17 19:46:34', 'xAY1yRaA', '7175057'), + (57, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xAY1yRaA', '7178446'), + (57, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'xAY1yRaA', '7220467'), + (57, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xAY1yRaA', '7240354'), + (57, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xAY1yRaA', '7251633'), + (57, 2626, 'attending', '2024-05-17 16:10:53', '2025-12-17 19:46:35', 'xAY1yRaA', '7264723'), + (57, 2627, 'attending', '2024-05-17 16:10:56', '2025-12-17 19:46:35', 'xAY1yRaA', '7264724'), + (57, 2628, 'attending', '2024-05-17 16:10:58', '2025-12-17 19:46:36', 'xAY1yRaA', '7264725'), + (57, 2629, 'attending', '2024-05-17 16:10:59', '2025-12-17 19:46:28', 'xAY1yRaA', '7264726'), + (57, 2630, 'attending', '2024-05-16 15:10:59', '2025-12-17 19:46:35', 'xAY1yRaA', '7264801'), + (57, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'xAY1yRaA', '7302674'), + (57, 2678, 'attending', '2024-06-14 18:44:43', '2025-12-17 19:46:28', 'xAY1yRaA', '7319489'), + (57, 2688, 'attending', '2024-06-14 18:44:55', '2025-12-17 19:46:29', 'xAY1yRaA', '7324073'), + (57, 2689, 'attending', '2024-06-14 18:44:57', '2025-12-17 19:46:29', 'xAY1yRaA', '7324074'), + (57, 2690, 'attending', '2024-07-01 08:31:38', '2025-12-17 19:46:30', 'xAY1yRaA', '7324075'), + (57, 2691, 'attending', '2024-07-01 08:31:39', '2025-12-17 19:46:30', 'xAY1yRaA', '7324076'), + (57, 2693, 'attending', '2024-07-01 08:31:42', '2025-12-17 19:46:31', 'xAY1yRaA', '7324078'), + (57, 2694, 'attending', '2024-07-01 08:31:44', '2025-12-17 19:46:31', 'xAY1yRaA', '7324079'), + (57, 2695, 'maybe', '2024-08-10 21:01:04', '2025-12-17 19:46:31', 'xAY1yRaA', '7324080'), + (57, 2696, 'attending', '2024-08-10 21:01:08', '2025-12-17 19:46:32', 'xAY1yRaA', '7324081'), + (57, 2697, 'attending', '2024-08-10 21:01:10', '2025-12-17 19:46:32', 'xAY1yRaA', '7324082'), + (57, 2712, 'attending', '2024-08-01 17:50:51', '2025-12-17 19:46:31', 'xAY1yRaA', '7326525'), + (57, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xAY1yRaA', '7331457'), + (57, 2723, 'attending', '2024-06-19 21:04:10', '2025-12-17 19:46:29', 'xAY1yRaA', '7332389'), + (57, 2740, 'not_attending', '2024-06-30 22:48:53', '2025-12-17 19:46:29', 'xAY1yRaA', '7344576'), + (57, 2742, 'attending', '2024-07-03 20:31:13', '2025-12-17 19:46:29', 'xAY1yRaA', '7345167'), + (57, 2743, 'not_attending', '2024-07-04 21:34:02', '2025-12-17 19:46:29', 'xAY1yRaA', '7345688'), + (57, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xAY1yRaA', '7363643'), + (57, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xAY1yRaA', '7368606'), + (57, 2796, 'attending', '2024-08-16 13:34:09', '2025-12-17 19:46:31', 'xAY1yRaA', '7391451'), + (57, 2800, 'attending', '2024-08-13 23:44:51', '2025-12-17 19:46:31', 'xAY1yRaA', '7397405'), + (57, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xAY1yRaA', '7397462'), + (57, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xAY1yRaA', '7424275'), + (57, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'xAY1yRaA', '7424276'), + (57, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xAY1yRaA', '7432751'), + (57, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xAY1yRaA', '7432752'), + (57, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xAY1yRaA', '7432753'), + (57, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xAY1yRaA', '7432754'), + (57, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xAY1yRaA', '7432755'), + (57, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xAY1yRaA', '7432756'), + (57, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xAY1yRaA', '7432758'), + (57, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xAY1yRaA', '7432759'), + (57, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xAY1yRaA', '7433834'), + (57, 2838, 'attending', '2024-09-14 21:09:09', '2025-12-17 19:46:25', 'xAY1yRaA', '7439182'), + (57, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'xAY1yRaA', '7470197'), + (57, 2865, 'attending', '2024-10-27 17:14:53', '2025-12-17 19:46:26', 'xAY1yRaA', '7471200'), + (57, 2867, 'attending', '2024-12-02 00:36:51', '2025-12-17 19:46:21', 'xAY1yRaA', '7471202'), + (57, 2886, 'attending', '2024-11-07 02:40:18', '2025-12-17 19:46:26', 'xAY1yRaA', '7654498'), + (57, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xAY1yRaA', '7685613'), + (57, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xAY1yRaA', '7688194'), + (57, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xAY1yRaA', '7688196'), + (57, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xAY1yRaA', '7688289'), + (57, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xAY1yRaA', '7692763'), + (57, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xAY1yRaA', '7697552'), + (57, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xAY1yRaA', '7699878'), + (57, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'xAY1yRaA', '7704043'), + (57, 2924, 'attending', '2024-11-26 22:00:03', '2025-12-17 19:46:28', 'xAY1yRaA', '7712467'), + (57, 2925, 'attending', '2024-12-02 00:36:44', '2025-12-17 19:46:21', 'xAY1yRaA', '7713584'), + (57, 2926, 'attending', '2024-12-02 00:36:42', '2025-12-17 19:46:21', 'xAY1yRaA', '7713585'), + (57, 2927, 'attending', '2024-12-02 00:36:46', '2025-12-17 19:46:22', 'xAY1yRaA', '7713586'), + (57, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xAY1yRaA', '7738518'), + (57, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', 'xAY1yRaA', '7750632'), + (57, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xAY1yRaA', '7750636'), + (57, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xAY1yRaA', '7796540'), + (57, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xAY1yRaA', '7796541'), + (57, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xAY1yRaA', '7796542'), + (57, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xAY1yRaA', '7825913'), + (57, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xAY1yRaA', '7826209'), + (57, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xAY1yRaA', '7834742'), + (57, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'xAY1yRaA', '7842108'), + (57, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xAY1yRaA', '7842902'), + (57, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xAY1yRaA', '7842903'), + (57, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xAY1yRaA', '7842904'), + (57, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xAY1yRaA', '7842905'), + (57, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xAY1yRaA', '7855719'), + (57, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xAY1yRaA', '7860683'), + (57, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xAY1yRaA', '7860684'), + (57, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xAY1yRaA', '7866095'), + (57, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xAY1yRaA', '7869170'), + (57, 3014, 'attending', '2025-04-05 14:06:33', '2025-12-17 19:46:20', 'xAY1yRaA', '7869185'), + (57, 3015, 'attending', '2025-04-05 14:06:39', '2025-12-17 19:46:20', 'xAY1yRaA', '7869186'), + (57, 3016, 'attending', '2025-04-05 14:06:38', '2025-12-17 19:46:20', 'xAY1yRaA', '7869187'), + (57, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xAY1yRaA', '7869188'), + (57, 3018, 'attending', '2025-04-05 14:06:36', '2025-12-17 19:46:20', 'xAY1yRaA', '7869189'), + (57, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xAY1yRaA', '7869201'), + (57, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xAY1yRaA', '7877465'), + (57, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xAY1yRaA', '7888250'), + (57, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xAY1yRaA', '7904777'), + (57, 3094, 'not_attending', '2025-04-21 21:51:15', '2025-12-17 19:46:21', 'xAY1yRaA', '8342292'), + (57, 3095, 'attending', '2025-04-21 21:51:13', '2025-12-17 19:46:20', 'xAY1yRaA', '8342293'), + (57, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xAY1yRaA', '8349164'), + (57, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xAY1yRaA', '8349545'), + (57, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'xAY1yRaA', '8353584'), + (57, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xAY1yRaA', '8368028'), + (57, 3132, 'attending', '2025-05-17 00:55:49', '2025-12-17 19:46:21', 'xAY1yRaA', '8368029'), + (57, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xAY1yRaA', '8388462'), + (57, 3150, 'not_attending', '2025-06-06 23:42:03', '2025-12-17 19:46:15', 'xAY1yRaA', '8393174'), + (57, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xAY1yRaA', '8400273'), + (57, 3154, 'attending', '2025-06-06 23:42:11', '2025-12-17 19:46:15', 'xAY1yRaA', '8400274'), + (57, 3155, 'not_attending', '2025-06-06 23:42:12', '2025-12-17 19:46:16', 'xAY1yRaA', '8400275'), + (57, 3156, 'attending', '2025-06-06 23:42:13', '2025-12-17 19:46:16', 'xAY1yRaA', '8400276'), + (57, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xAY1yRaA', '8404977'), + (57, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xAY1yRaA', '8430783'), + (57, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xAY1yRaA', '8430784'), + (57, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xAY1yRaA', '8430799'), + (57, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xAY1yRaA', '8430800'), + (57, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xAY1yRaA', '8430801'), + (57, 3188, 'attending', '2025-07-12 22:46:21', '2025-12-17 19:46:17', 'xAY1yRaA', '8438709'), + (57, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xAY1yRaA', '8457738'), + (57, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xAY1yRaA', '8459566'), + (57, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xAY1yRaA', '8459567'), + (57, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xAY1yRaA', '8461032'), + (57, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xAY1yRaA', '8477877'), + (57, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xAY1yRaA', '8485688'), + (57, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xAY1yRaA', '8490587'), + (57, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xAY1yRaA', '8493552'), + (57, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xAY1yRaA', '8493553'), + (57, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xAY1yRaA', '8493554'), + (57, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xAY1yRaA', '8493555'), + (57, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xAY1yRaA', '8493556'), + (57, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xAY1yRaA', '8493557'), + (57, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xAY1yRaA', '8493558'), + (57, 3243, 'maybe', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xAY1yRaA', '8493559'), + (57, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xAY1yRaA', '8493560'), + (57, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'xAY1yRaA', '8493561'), + (57, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xAY1yRaA', '8493572'), + (57, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAY1yRaA', '8540725'), + (57, 3295, 'not_attending', '2025-10-25 22:18:26', '2025-12-17 19:46:14', 'xAY1yRaA', '8547541'), + (57, 3300, 'attending', '2025-10-31 11:03:33', '2025-12-17 19:46:14', 'xAY1yRaA', '8549145'), + (57, 3302, 'attending', '2025-10-31 11:03:47', '2025-12-17 19:46:14', 'xAY1yRaA', '8550022'), + (57, 3304, 'attending', '2025-10-31 11:03:49', '2025-12-17 19:46:14', 'xAY1yRaA', '8550024'), + (57, 3306, 'attending', '2025-12-12 13:09:48', '2025-12-17 19:46:11', 'xAY1yRaA', '8550026'), + (57, 3307, 'attending', '2025-12-12 13:09:54', '2025-12-17 19:46:11', 'xAY1yRaA', '8550027'), + (57, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAY1yRaA', '8555421'), + (58, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GmjRr03m', '5441128'), + (58, 1516, 'attending', '2022-08-14 12:01:44', '2025-12-17 19:47:23', 'GmjRr03m', '5441129'), + (58, 1517, 'attending', '2022-08-22 16:57:00', '2025-12-17 19:47:23', 'GmjRr03m', '5441130'), + (58, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjRr03m', '5441131'), + (58, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjRr03m', '5441132'), + (58, 1544, 'attending', '2022-09-17 23:00:17', '2025-12-17 19:47:11', 'GmjRr03m', '5454517'), + (58, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjRr03m', '5461278'), + (58, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GmjRr03m', '5469480'), + (58, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'GmjRr03m', '5471073'), + (58, 1567, 'attending', '2022-08-03 19:15:16', '2025-12-17 19:47:21', 'GmjRr03m', '5477629'), + (58, 1575, 'attending', '2022-08-22 16:56:48', '2025-12-17 19:47:23', 'GmjRr03m', '5482250'), + (58, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'GmjRr03m', '5482793'), + (58, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjRr03m', '5488912'), + (58, 1582, 'attending', '2022-08-14 12:01:42', '2025-12-17 19:47:23', 'GmjRr03m', '5492001'), + (58, 1584, 'maybe', '2022-08-22 16:56:58', '2025-12-17 19:47:23', 'GmjRr03m', '5492004'), + (58, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjRr03m', '5492192'), + (58, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjRr03m', '5493139'), + (58, 1589, 'attending', '2022-08-14 12:02:04', '2025-12-17 19:47:23', 'GmjRr03m', '5493159'), + (58, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjRr03m', '5493200'), + (58, 1595, 'attending', '2022-08-12 19:44:10', '2025-12-17 19:47:22', 'GmjRr03m', '5495736'), + (58, 1598, 'attending', '2022-08-15 00:51:17', '2025-12-17 19:47:22', 'GmjRr03m', '5496567'), + (58, 1603, 'attending', '2022-08-16 21:13:27', '2025-12-17 19:47:23', 'GmjRr03m', '5497895'), + (58, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjRr03m', '5502188'), + (58, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjRr03m', '5505059'), + (58, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', 'GmjRr03m', '5509055'), + (58, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjRr03m', '5512862'), + (58, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjRr03m', '5513985'), + (58, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'GmjRr03m', '5519981'), + (58, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjRr03m', '5522550'), + (58, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjRr03m', '5534683'), + (58, 1635, 'maybe', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjRr03m', '5537735'), + (58, 1636, 'attending', '2022-09-01 19:34:17', '2025-12-17 19:47:24', 'GmjRr03m', '5538454'), + (58, 1640, 'maybe', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjRr03m', '5540859'), + (58, 1641, 'attending', '2022-09-01 19:34:06', '2025-12-17 19:47:24', 'GmjRr03m', '5544226'), + (58, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjRr03m', '5546619'), + (58, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GmjRr03m', '5555245'), + (58, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjRr03m', '5557747'), + (58, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjRr03m', '5560255'), + (58, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjRr03m', '5562906'), + (58, 1667, 'maybe', '2022-09-24 19:24:23', '2025-12-17 19:47:11', 'GmjRr03m', '5563221'), + (58, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjRr03m', '5600604'), + (58, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjRr03m', '5605544'), + (58, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', 'GmjRr03m', '5606737'), + (58, 1707, 'attending', '2022-10-11 18:00:11', '2025-12-17 19:47:12', 'GmjRr03m', '5613104'), + (58, 1712, 'attending', '2022-10-11 18:00:07', '2025-12-17 19:47:12', 'GmjRr03m', '5622073'), + (58, 1714, 'maybe', '2022-10-26 19:50:52', '2025-12-17 19:47:14', 'GmjRr03m', '5622347'), + (58, 1717, 'attending', '2022-10-18 01:21:02', '2025-12-17 19:47:13', 'GmjRr03m', '5622842'), + (58, 1720, 'attending', '2022-10-12 15:35:14', '2025-12-17 19:47:12', 'GmjRr03m', '5630959'), + (58, 1721, 'attending', '2022-10-17 13:11:16', '2025-12-17 19:47:13', 'GmjRr03m', '5630960'), + (58, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjRr03m', '5630961'), + (58, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjRr03m', '5630962'), + (58, 1724, 'attending', '2022-11-06 23:30:38', '2025-12-17 19:47:15', 'GmjRr03m', '5630966'), + (58, 1725, 'attending', '2022-11-06 23:30:58', '2025-12-17 19:47:16', 'GmjRr03m', '5630967'), + (58, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjRr03m', '5630968'), + (58, 1727, 'attending', '2022-11-29 21:21:49', '2025-12-17 19:47:16', 'GmjRr03m', '5630969'), + (58, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjRr03m', '5635406'), + (58, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjRr03m', '5638765'), + (58, 1739, 'attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjRr03m', '5640097'), + (58, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjRr03m', '5640843'), + (58, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjRr03m', '5641521'), + (58, 1744, 'attending', '2022-11-23 00:49:09', '2025-12-17 19:47:16', 'GmjRr03m', '5642818'), + (58, 1751, 'attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjRr03m', '5652395'), + (58, 1761, 'attending', '2022-11-14 18:56:50', '2025-12-17 19:47:16', 'GmjRr03m', '5670434'), + (58, 1762, 'attending', '2022-11-29 21:21:40', '2025-12-17 19:47:16', 'GmjRr03m', '5670445'), + (58, 1763, 'attending', '2022-11-06 23:30:22', '2025-12-17 19:47:15', 'GmjRr03m', '5670803'), + (58, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjRr03m', '5671637'), + (58, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjRr03m', '5672329'), + (58, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjRr03m', '5674057'), + (58, 1767, 'attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjRr03m', '5674060'), + (58, 1770, 'attending', '2022-10-28 15:37:20', '2025-12-17 19:47:14', 'GmjRr03m', '5676936'), + (58, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GmjRr03m', '5677461'), + (58, 1776, 'attending', '2022-11-10 00:43:37', '2025-12-17 19:47:15', 'GmjRr03m', '5691067'), + (58, 1780, 'attending', '2022-11-06 23:30:16', '2025-12-17 19:47:15', 'GmjRr03m', '5696082'), + (58, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjRr03m', '5698046'), + (58, 1784, 'attending', '2022-11-06 23:30:47', '2025-12-17 19:47:15', 'GmjRr03m', '5699760'), + (58, 1793, 'maybe', '2022-11-25 21:58:17', '2025-12-17 19:47:16', 'GmjRr03m', '5736365'), + (58, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjRr03m', '5741601'), + (58, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjRr03m', '5763458'), + (58, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjRr03m', '5774172'), + (58, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'GmjRr03m', '5818247'), + (58, 1834, 'maybe', '2022-12-10 17:59:50', '2025-12-17 19:47:17', 'GmjRr03m', '5819470'), + (58, 1835, 'maybe', '2023-01-06 02:56:05', '2025-12-17 19:47:05', 'GmjRr03m', '5819471'), + (58, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GmjRr03m', '5827739'), + (58, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjRr03m', '5844306'), + (58, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjRr03m', '5850159'), + (58, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjRr03m', '5858999'), + (58, 1851, 'maybe', '2023-01-08 23:20:37', '2025-12-17 19:47:05', 'GmjRr03m', '5869316'), + (58, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjRr03m', '5871984'), + (58, 1859, 'attending', '2023-01-20 20:16:52', '2025-12-17 19:47:05', 'GmjRr03m', '5876234'), + (58, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjRr03m', '5876354'), + (58, 1864, 'attending', '2023-01-20 20:17:08', '2025-12-17 19:47:05', 'GmjRr03m', '5879675'), + (58, 1865, 'attending', '2023-01-28 00:16:15', '2025-12-17 19:47:06', 'GmjRr03m', '5879676'), + (58, 1866, 'maybe', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjRr03m', '5880939'), + (58, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjRr03m', '5880940'), + (58, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GmjRr03m', '5880942'), + (58, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjRr03m', '5880943'), + (58, 1872, 'maybe', '2023-01-20 23:59:52', '2025-12-17 19:47:05', 'GmjRr03m', '5883546'), + (58, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjRr03m', '5887890'), + (58, 1875, 'attending', '2023-01-23 19:33:04', '2025-12-17 19:47:06', 'GmjRr03m', '5887908'), + (58, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjRr03m', '5888598'), + (58, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjRr03m', '5893260'), + (58, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjRr03m', '5899826'), + (58, 1885, 'attending', '2023-02-23 23:33:56', '2025-12-17 19:47:08', 'GmjRr03m', '5899928'), + (58, 1888, 'attending', '2023-02-17 15:39:57', '2025-12-17 19:47:07', 'GmjRr03m', '5900197'), + (58, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjRr03m', '5900199'), + (58, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjRr03m', '5900200'), + (58, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjRr03m', '5900202'), + (58, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjRr03m', '5900203'), + (58, 1895, 'maybe', '2023-01-31 21:46:41', '2025-12-17 19:47:06', 'GmjRr03m', '5901108'), + (58, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjRr03m', '5901126'), + (58, 1897, 'attending', '2023-02-11 16:28:26', '2025-12-17 19:47:07', 'GmjRr03m', '5901128'), + (58, 1899, 'maybe', '2023-02-11 00:14:55', '2025-12-17 19:47:07', 'GmjRr03m', '5901323'), + (58, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjRr03m', '5909655'), + (58, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjRr03m', '5910522'), + (58, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjRr03m', '5910526'), + (58, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjRr03m', '5910528'), + (58, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjRr03m', '5916219'), + (58, 1924, 'maybe', '2023-02-17 15:40:05', '2025-12-17 19:47:07', 'GmjRr03m', '5931095'), + (58, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GmjRr03m', '5936234'), + (58, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjRr03m', '5958351'), + (58, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjRr03m', '5959751'), + (58, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjRr03m', '5959755'), + (58, 1940, 'attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjRr03m', '5960055'), + (58, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjRr03m', '5961684'), + (58, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'GmjRr03m', '5962132'), + (58, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GmjRr03m', '5962133'), + (58, 1946, 'maybe', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjRr03m', '5962134'), + (58, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjRr03m', '5962317'), + (58, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjRr03m', '5962318'), + (58, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'GmjRr03m', '5965933'), + (58, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjRr03m', '5967014'), + (58, 1955, 'maybe', '2023-03-29 22:52:53', '2025-12-17 19:46:57', 'GmjRr03m', '5972529'), + (58, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjRr03m', '5972815'), + (58, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjRr03m', '5974016'), + (58, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjRr03m', '5981515'), + (58, 1968, 'maybe', '2023-03-12 23:14:58', '2025-12-17 19:47:10', 'GmjRr03m', '5993515'), + (58, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjRr03m', '5993516'), + (58, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjRr03m', '5998939'), + (58, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjRr03m', '6028191'), + (58, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjRr03m', '6040066'), + (58, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjRr03m', '6042717'), + (58, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjRr03m', '6044838'), + (58, 1987, 'maybe', '2023-04-15 14:56:22', '2025-12-17 19:47:00', 'GmjRr03m', '6044839'), + (58, 1988, 'attending', '2023-04-15 14:56:24', '2025-12-17 19:47:01', 'GmjRr03m', '6044840'), + (58, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjRr03m', '6045684'), + (58, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjRr03m', '6050104'), + (58, 1998, 'attending', '2023-04-08 18:19:30', '2025-12-17 19:46:59', 'GmjRr03m', '6052056'), + (58, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjRr03m', '6053195'), + (58, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjRr03m', '6053198'), + (58, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjRr03m', '6056085'), + (58, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjRr03m', '6056916'), + (58, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjRr03m', '6059290'), + (58, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjRr03m', '6060328'), + (58, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjRr03m', '6061037'), + (58, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjRr03m', '6061039'), + (58, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjRr03m', '6067245'), + (58, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjRr03m', '6068094'), + (58, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjRr03m', '6068252'), + (58, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjRr03m', '6068253'), + (58, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjRr03m', '6068254'), + (58, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'GmjRr03m', '6068280'), + (58, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjRr03m', '6069093'), + (58, 2038, 'maybe', '2023-04-28 18:24:46', '2025-12-17 19:47:01', 'GmjRr03m', '6071944'), + (58, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'GmjRr03m', '6072528'), + (58, 2046, 'maybe', '2023-05-12 19:10:29', '2025-12-17 19:47:02', 'GmjRr03m', '6076020'), + (58, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjRr03m', '6079840'), + (58, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjRr03m', '6083398'), + (58, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GmjRr03m', '6093504'), + (58, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjRr03m', '6097414'), + (58, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjRr03m', '6097442'), + (58, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjRr03m', '6097684'), + (58, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjRr03m', '6098762'), + (58, 2065, 'attending', '2023-06-16 03:33:31', '2025-12-17 19:46:49', 'GmjRr03m', '6101169'), + (58, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjRr03m', '6101361'), + (58, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjRr03m', '6101362'), + (58, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'GmjRr03m', '6103752'), + (58, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjRr03m', '6107314'), + (58, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GmjRr03m', '6120034'), + (58, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'GmjRr03m', '6136733'), + (58, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjRr03m', '6137989'), + (58, 2102, 'attending', '2023-06-16 03:33:38', '2025-12-17 19:46:50', 'GmjRr03m', '6146559'), + (58, 2104, 'maybe', '2023-06-22 22:07:32', '2025-12-17 19:46:50', 'GmjRr03m', '6149499'), + (58, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjRr03m', '6150864'), + (58, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjRr03m', '6155491'), + (58, 2116, 'maybe', '2023-07-05 20:33:03', '2025-12-17 19:46:51', 'GmjRr03m', '6163389'), + (58, 2118, 'maybe', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjRr03m', '6164417'), + (58, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjRr03m', '6166388'), + (58, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjRr03m', '6176439'), + (58, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'GmjRr03m', '6182410'), + (58, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjRr03m', '6185812'), + (58, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjRr03m', '6187651'), + (58, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjRr03m', '6187963'), + (58, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjRr03m', '6187964'), + (58, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjRr03m', '6187966'), + (58, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjRr03m', '6187967'), + (58, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjRr03m', '6187969'), + (58, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjRr03m', '6334878'), + (58, 2146, 'maybe', '2023-07-09 21:35:00', '2025-12-17 19:46:53', 'GmjRr03m', '6335638'), + (58, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjRr03m', '6337236'), + (58, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjRr03m', '6337970'), + (58, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjRr03m', '6338308'), + (58, 2159, 'attending', '2023-07-16 20:43:18', '2025-12-17 19:46:53', 'GmjRr03m', '6338355'), + (58, 2160, 'attending', '2023-07-29 22:36:54', '2025-12-17 19:46:54', 'GmjRr03m', '6338358'), + (58, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'GmjRr03m', '6340845'), + (58, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjRr03m', '6341710'), + (58, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjRr03m', '6342044'), + (58, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjRr03m', '6342298'), + (58, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'GmjRr03m', '6343294'), + (58, 2176, 'maybe', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjRr03m', '6347034'), + (58, 2177, 'maybe', '2023-08-12 19:50:27', '2025-12-17 19:46:55', 'GmjRr03m', '6347053'), + (58, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjRr03m', '6347056'), + (58, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjRr03m', '6353830'), + (58, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjRr03m', '6353831'), + (58, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjRr03m', '6357867'), + (58, 2191, 'maybe', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjRr03m', '6358652'), + (58, 2197, 'maybe', '2023-09-15 14:00:03', '2025-12-17 19:46:44', 'GmjRr03m', '6359399'), + (58, 2198, 'attending', '2023-09-22 14:17:29', '2025-12-17 19:46:45', 'GmjRr03m', '6359400'), + (58, 2199, 'maybe', '2023-08-16 22:55:17', '2025-12-17 19:46:55', 'GmjRr03m', '6359849'), + (58, 2200, 'maybe', '2023-08-10 00:41:59', '2025-12-17 19:46:55', 'GmjRr03m', '6359850'), + (58, 2201, 'attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'GmjRr03m', '6359940'), + (58, 2204, 'attending', '2023-08-18 12:36:45', '2025-12-17 19:46:55', 'GmjRr03m', '6361542'), + (58, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjRr03m', '6361709'), + (58, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjRr03m', '6361710'), + (58, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjRr03m', '6361711'), + (58, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjRr03m', '6361712'), + (58, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjRr03m', '6361713'), + (58, 2232, 'attending', '2023-08-23 22:27:55', '2025-12-17 19:46:55', 'GmjRr03m', '6374818'), + (58, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GmjRr03m', '6382573'), + (58, 2239, 'attending', '2023-09-02 15:48:05', '2025-12-17 19:46:56', 'GmjRr03m', '6387592'), + (58, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'GmjRr03m', '6388604'), + (58, 2242, 'attending', '2023-09-18 20:01:52', '2025-12-17 19:46:45', 'GmjRr03m', '6388606'), + (58, 2244, 'maybe', '2023-09-11 23:28:52', '2025-12-17 19:46:44', 'GmjRr03m', '6393700'), + (58, 2248, 'maybe', '2023-09-11 23:28:34', '2025-12-17 19:46:44', 'GmjRr03m', '6394629'), + (58, 2249, 'maybe', '2023-09-20 00:28:12', '2025-12-17 19:46:45', 'GmjRr03m', '6394630'), + (58, 2250, 'maybe', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjRr03m', '6394631'), + (58, 2253, 'not_attending', '2023-09-25 20:56:02', '2025-12-17 19:46:45', 'GmjRr03m', '6401811'), + (58, 2259, 'maybe', '2023-09-22 14:22:28', '2025-12-17 19:46:45', 'GmjRr03m', '6421257'), + (58, 2261, 'maybe', '2023-09-28 21:10:33', '2025-12-17 19:46:45', 'GmjRr03m', '6427422'), + (58, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjRr03m', '6440863'), + (58, 2269, 'maybe', '2023-10-02 18:39:09', '2025-12-17 19:46:45', 'GmjRr03m', '6442978'), + (58, 2270, 'attending', '2023-10-10 22:43:29', '2025-12-17 19:46:46', 'GmjRr03m', '6443067'), + (58, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjRr03m', '6445440'), + (58, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjRr03m', '6453951'), + (58, 2285, 'not_attending', '2023-10-19 20:09:13', '2025-12-17 19:46:47', 'GmjRr03m', '6460929'), + (58, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjRr03m', '6461696'), + (58, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjRr03m', '6462129'), + (58, 2291, 'maybe', '2023-10-19 00:01:35', '2025-12-17 19:46:46', 'GmjRr03m', '6462215'), + (58, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjRr03m', '6463218'), + (58, 2299, 'maybe', '2023-10-19 00:01:31', '2025-12-17 19:46:46', 'GmjRr03m', '6472181'), + (58, 2302, 'not_attending', '2023-10-24 23:04:49', '2025-12-17 19:46:46', 'GmjRr03m', '6482535'), + (58, 2303, 'not_attending', '2023-10-24 23:05:08', '2025-12-17 19:46:47', 'GmjRr03m', '6482691'), + (58, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjRr03m', '6482693'), + (58, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'GmjRr03m', '6484200'), + (58, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'GmjRr03m', '6484680'), + (58, 2310, 'attending', '2023-11-08 01:07:40', '2025-12-17 19:46:47', 'GmjRr03m', '6487709'), + (58, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjRr03m', '6507741'), + (58, 2318, 'attending', '2023-10-31 22:55:41', '2025-12-17 19:46:47', 'GmjRr03m', '6508566'), + (58, 2322, 'attending', '2023-11-12 16:29:44', '2025-12-17 19:46:48', 'GmjRr03m', '6514659'), + (58, 2323, 'attending', '2023-11-27 17:40:28', '2025-12-17 19:46:48', 'GmjRr03m', '6514660'), + (58, 2324, 'attending', '2023-12-04 23:52:59', '2025-12-17 19:46:49', 'GmjRr03m', '6514662'), + (58, 2325, 'attending', '2023-12-14 00:22:45', '2025-12-17 19:46:36', 'GmjRr03m', '6514663'), + (58, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjRr03m', '6519103'), + (58, 2335, 'attending', '2023-11-11 00:54:17', '2025-12-17 19:46:47', 'GmjRr03m', '6534890'), + (58, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjRr03m', '6535681'), + (58, 2338, 'maybe', '2023-11-15 22:18:55', '2025-12-17 19:46:48', 'GmjRr03m', '6538868'), + (58, 2340, 'maybe', '2023-11-21 20:12:44', '2025-12-17 19:46:48', 'GmjRr03m', '6540279'), + (58, 2343, 'maybe', '2023-11-19 16:57:25', '2025-12-17 19:46:48', 'GmjRr03m', '6574728'), + (58, 2345, 'maybe', '2023-11-29 22:12:28', '2025-12-17 19:46:48', 'GmjRr03m', '6582414'), + (58, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjRr03m', '6584747'), + (58, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjRr03m', '6587097'), + (58, 2362, 'maybe', '2023-12-04 23:52:56', '2025-12-17 19:46:49', 'GmjRr03m', '6605708'), + (58, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjRr03m', '6609022'), + (58, 2365, 'maybe', '2023-12-23 15:59:33', '2025-12-17 19:46:37', 'GmjRr03m', '6613093'), + (58, 2371, 'maybe', '2023-12-14 00:22:41', '2025-12-17 19:46:36', 'GmjRr03m', '6624495'), + (58, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GmjRr03m', '6632757'), + (58, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjRr03m', '6644187'), + (58, 2381, 'maybe', '2024-01-01 19:18:13', '2025-12-17 19:46:37', 'GmjRr03m', '6646398'), + (58, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjRr03m', '6648951'), + (58, 2387, 'attending', '2024-01-04 00:59:26', '2025-12-17 19:46:37', 'GmjRr03m', '6648952'), + (58, 2388, 'maybe', '2024-01-05 20:22:46', '2025-12-17 19:46:37', 'GmjRr03m', '6649244'), + (58, 2392, 'attending', '2024-01-09 21:13:32', '2025-12-17 19:46:37', 'GmjRr03m', '6654412'), + (58, 2394, 'not_attending', '2024-01-15 22:14:10', '2025-12-17 19:46:38', 'GmjRr03m', '6654470'), + (58, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjRr03m', '6655401'), + (58, 2399, 'attending', '2024-01-08 23:26:02', '2025-12-17 19:46:37', 'GmjRr03m', '6657583'), + (58, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjRr03m', '6661585'), + (58, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjRr03m', '6661588'), + (58, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjRr03m', '6661589'), + (58, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjRr03m', '6699906'), + (58, 2408, 'attending', '2024-01-22 02:48:36', '2025-12-17 19:46:40', 'GmjRr03m', '6699907'), + (58, 2409, 'not_attending', '2024-02-01 00:19:32', '2025-12-17 19:46:41', 'GmjRr03m', '6699909'), + (58, 2411, 'attending', '2024-02-15 18:22:43', '2025-12-17 19:46:41', 'GmjRr03m', '6699913'), + (58, 2412, 'attending', '2024-02-20 02:41:56', '2025-12-17 19:46:43', 'GmjRr03m', '6700717'), + (58, 2415, 'maybe', '2024-01-20 23:15:30', '2025-12-17 19:46:40', 'GmjRr03m', '6701001'), + (58, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjRr03m', '6701109'), + (58, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjRr03m', '6705219'), + (58, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjRr03m', '6710153'), + (58, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjRr03m', '6711552'), + (58, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GmjRr03m', '6711553'), + (58, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjRr03m', '6722688'), + (58, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjRr03m', '6730620'), + (58, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'GmjRr03m', '6730642'), + (58, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjRr03m', '6740364'), + (58, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjRr03m', '6743829'), + (58, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjRr03m', '7030380'), + (58, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GmjRr03m', '7033677'), + (58, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'GmjRr03m', '7035415'), + (58, 2475, 'attending', '2024-02-27 01:02:19', '2025-12-17 19:46:43', 'GmjRr03m', '7035643'), + (58, 2478, 'maybe', '2024-02-21 00:19:47', '2025-12-17 19:46:43', 'GmjRr03m', '7036478'), + (58, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjRr03m', '7044715'), + (58, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjRr03m', '7050318'), + (58, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjRr03m', '7050319'), + (58, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjRr03m', '7050322'), + (58, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjRr03m', '7057804'), + (58, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'GmjRr03m', '7059866'), + (58, 2506, 'attending', '2024-03-09 20:10:00', '2025-12-17 19:46:44', 'GmjRr03m', '7069242'), + (58, 2507, 'attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjRr03m', '7072824'), + (58, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjRr03m', '7074348'), + (58, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GmjRr03m', '7074364'), + (58, 2537, 'maybe', '2024-03-22 19:07:36', '2025-12-17 19:46:33', 'GmjRr03m', '7085484'), + (58, 2539, 'maybe', '2024-04-06 22:05:06', '2025-12-17 19:46:33', 'GmjRr03m', '7085486'), + (58, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'GmjRr03m', '7089267'), + (58, 2541, 'attending', '2024-03-18 19:14:49', '2025-12-17 19:46:33', 'GmjRr03m', '7089404'), + (58, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjRr03m', '7098747'), + (58, 2553, 'maybe', '2024-03-29 13:05:46', '2025-12-17 19:46:33', 'GmjRr03m', '7113468'), + (58, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjRr03m', '7114856'), + (58, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjRr03m', '7114951'), + (58, 2556, 'maybe', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjRr03m', '7114955'), + (58, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjRr03m', '7114956'), + (58, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GmjRr03m', '7114957'), + (58, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'GmjRr03m', '7153615'), + (58, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjRr03m', '7159484'), + (58, 2572, 'maybe', '2024-04-13 01:12:24', '2025-12-17 19:46:33', 'GmjRr03m', '7159522'), + (58, 2573, 'maybe', '2024-04-14 21:06:26', '2025-12-17 19:46:34', 'GmjRr03m', '7160612'), + (58, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjRr03m', '7178446'), + (58, 2596, 'not_attending', '2024-04-26 04:48:05', '2025-12-17 19:46:34', 'GmjRr03m', '7183788'), + (58, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'GmjRr03m', '7220467'), + (58, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjRr03m', '7240354'), + (58, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjRr03m', '7251633'), + (58, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'GmjRr03m', '7263048'), + (58, 2626, 'maybe', '2024-05-16 23:15:39', '2025-12-17 19:46:35', 'GmjRr03m', '7264723'), + (58, 2644, 'maybe', '2024-05-20 20:00:36', '2025-12-17 19:46:35', 'GmjRr03m', '7279039'), + (58, 2646, 'attending', '2024-05-20 20:00:49', '2025-12-17 19:46:35', 'GmjRr03m', '7281768'), + (58, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'GmjRr03m', '7302674'), + (58, 2666, 'attending', '2024-06-06 02:13:26', '2025-12-17 19:46:36', 'GmjRr03m', '7307775'), + (58, 2678, 'maybe', '2024-06-11 22:18:36', '2025-12-17 19:46:28', 'GmjRr03m', '7319489'), + (58, 2682, 'attending', '2024-06-10 22:33:34', '2025-12-17 19:46:28', 'GmjRr03m', '7321862'), + (58, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjRr03m', '7324073'), + (58, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjRr03m', '7324074'), + (58, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GmjRr03m', '7324075'), + (58, 2692, 'maybe', '2024-07-27 11:39:31', '2025-12-17 19:46:30', 'GmjRr03m', '7324077'), + (58, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GmjRr03m', '7324078'), + (58, 2694, 'not_attending', '2024-08-09 18:56:06', '2025-12-17 19:46:31', 'GmjRr03m', '7324079'), + (58, 2695, 'maybe', '2024-08-17 22:13:00', '2025-12-17 19:46:32', 'GmjRr03m', '7324080'), + (58, 2696, 'attending', '2024-08-23 02:31:34', '2025-12-17 19:46:32', 'GmjRr03m', '7324081'), + (58, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GmjRr03m', '7324082'), + (58, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GmjRr03m', '7331457'), + (58, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'GmjRr03m', '7356752'), + (58, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'GmjRr03m', '7363643'), + (58, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GmjRr03m', '7368606'), + (58, 2783, 'attending', '2024-08-03 15:37:52', '2025-12-17 19:46:31', 'GmjRr03m', '7379699'), + (58, 2801, 'maybe', '2024-08-19 20:53:17', '2025-12-17 19:46:32', 'GmjRr03m', '7397462'), + (58, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GmjRr03m', '7424275'), + (58, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'GmjRr03m', '7424276'), + (58, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GmjRr03m', '7432751'), + (58, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GmjRr03m', '7432752'), + (58, 2826, 'maybe', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GmjRr03m', '7432753'), + (58, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GmjRr03m', '7432754'), + (58, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GmjRr03m', '7432755'), + (58, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GmjRr03m', '7432756'), + (58, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GmjRr03m', '7432758'), + (58, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GmjRr03m', '7432759'), + (58, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GmjRr03m', '7433834'), + (58, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GmjRr03m', '7470197'), + (58, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GmjRr03m', '7685613'), + (58, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GmjRr03m', '7688194'), + (58, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GmjRr03m', '7688196'), + (58, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GmjRr03m', '7688289'), + (58, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'GmjRr03m', '7692763'), + (58, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GmjRr03m', '7697552'), + (58, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GmjRr03m', '7699878'), + (58, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GmjRr03m', '7704043'), + (58, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GmjRr03m', '7712467'), + (58, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GmjRr03m', '7713585'), + (58, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GmjRr03m', '7713586'), + (58, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GmjRr03m', '7738518'), + (58, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GmjRr03m', '7750636'), + (58, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GmjRr03m', '7796540'), + (58, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GmjRr03m', '7796541'), + (58, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GmjRr03m', '7796542'), + (58, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GmjRr03m', '7825913'), + (58, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GmjRr03m', '7826209'), + (58, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GmjRr03m', '7834742'), + (58, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GmjRr03m', '7842108'), + (58, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GmjRr03m', '7842902'), + (58, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GmjRr03m', '7842903'), + (58, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GmjRr03m', '7842904'), + (58, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GmjRr03m', '7842905'), + (58, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GmjRr03m', '7855719'), + (58, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GmjRr03m', '7860683'), + (58, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GmjRr03m', '7860684'), + (58, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GmjRr03m', '7866095'), + (58, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GmjRr03m', '7869170'), + (58, 3014, 'maybe', '2025-03-30 17:04:21', '2025-12-17 19:46:20', 'GmjRr03m', '7869185'), + (58, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GmjRr03m', '7869188'), + (58, 3018, 'attending', '2025-04-10 16:46:00', '2025-12-17 19:46:20', 'GmjRr03m', '7869189'), + (58, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GmjRr03m', '7869201'), + (58, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GmjRr03m', '7877465'), + (58, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'GmjRr03m', '7878570'), + (58, 3043, 'attending', '2025-03-15 20:09:49', '2025-12-17 19:46:19', 'GmjRr03m', '7882587'), + (58, 3055, 'maybe', '2025-03-27 22:23:48', '2025-12-17 19:46:19', 'GmjRr03m', '7888118'), + (58, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GmjRr03m', '7888250'), + (58, 3088, 'attending', '2025-06-09 20:31:56', '2025-12-17 19:46:15', 'GmjRr03m', '7904777'), + (58, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GmjRr03m', '8349164'), + (58, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GmjRr03m', '8349545'), + (58, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'GmjRr03m', '8353584'), + (58, 3131, 'not_attending', '2025-05-15 00:40:27', '2025-12-17 19:46:21', 'GmjRr03m', '8368028'), + (58, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GmjRr03m', '8368029'), + (58, 3133, 'attending', '2025-05-27 23:23:32', '2025-12-17 19:46:14', 'GmjRr03m', '8368030'), + (58, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GmjRr03m', '8388462'), + (58, 3153, 'maybe', '2025-06-03 20:00:09', '2025-12-17 19:46:15', 'GmjRr03m', '8400273'), + (58, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'GmjRr03m', '8400274'), + (58, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GmjRr03m', '8400275'), + (58, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'GmjRr03m', '8400276'), + (58, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GmjRr03m', '8404977'), + (58, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GmjRr03m', '8430783'), + (58, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GmjRr03m', '8430784'), + (58, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GmjRr03m', '8430799'), + (58, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GmjRr03m', '8430800'), + (58, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GmjRr03m', '8430801'), + (58, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GmjRr03m', '8438709'), + (58, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GmjRr03m', '8457738'), + (58, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GmjRr03m', '8459566'), + (58, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GmjRr03m', '8459567'), + (58, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GmjRr03m', '8461032'), + (58, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GmjRr03m', '8477877'), + (58, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GmjRr03m', '8485688'), + (58, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GmjRr03m', '8490587'), + (58, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GmjRr03m', '8493552'), + (58, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GmjRr03m', '8493553'), + (58, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GmjRr03m', '8493554'), + (58, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GmjRr03m', '8493555'), + (58, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GmjRr03m', '8493556'), + (58, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GmjRr03m', '8493557'), + (58, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GmjRr03m', '8493558'), + (58, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GmjRr03m', '8493559'), + (58, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GmjRr03m', '8493560'), + (58, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GmjRr03m', '8493561'), + (58, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GmjRr03m', '8493572'), + (58, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GmjRr03m', '8540725'), + (58, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GmjRr03m', '8555421'), + (59, 2146, 'maybe', '2023-07-21 04:39:53', '2025-12-17 19:46:53', 'dxMJoEXm', '6335638'), + (59, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:52', 'dxMJoEXm', '6337236'), + (59, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxMJoEXm', '6337970'), + (59, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'dxMJoEXm', '6338308'), + (59, 2159, 'attending', '2023-07-19 22:45:48', '2025-12-17 19:46:53', 'dxMJoEXm', '6338355'), + (59, 2160, 'not_attending', '2023-07-27 17:30:21', '2025-12-17 19:46:54', 'dxMJoEXm', '6338358'), + (59, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxMJoEXm', '6341710'), + (59, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxMJoEXm', '6342044'), + (59, 2167, 'attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxMJoEXm', '6342298'), + (59, 2169, 'maybe', '2023-07-21 02:45:15', '2025-12-17 19:46:53', 'dxMJoEXm', '6342306'), + (59, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxMJoEXm', '6342591'), + (59, 2173, 'attending', '2023-07-18 16:54:21', '2025-12-17 19:46:53', 'dxMJoEXm', '6342769'), + (59, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dxMJoEXm', '6343294'), + (59, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxMJoEXm', '6347034'), + (59, 2177, 'attending', '2023-08-12 20:32:31', '2025-12-17 19:46:55', 'dxMJoEXm', '6347053'), + (59, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxMJoEXm', '6347056'), + (59, 2179, 'attending', '2023-07-24 03:28:36', '2025-12-17 19:46:54', 'dxMJoEXm', '6347591'), + (59, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxMJoEXm', '6353830'), + (59, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxMJoEXm', '6353831'), + (59, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxMJoEXm', '6357867'), + (59, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxMJoEXm', '6358652'), + (59, 2193, 'attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dxMJoEXm', '6358668'), + (59, 2194, 'attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dxMJoEXm', '6358669'), + (59, 2204, 'attending', '2023-08-10 22:26:28', '2025-12-17 19:46:55', 'dxMJoEXm', '6361542'), + (59, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxMJoEXm', '6361709'), + (59, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxMJoEXm', '6361710'), + (59, 2210, 'maybe', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxMJoEXm', '6361711'), + (59, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxMJoEXm', '6361712'), + (59, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxMJoEXm', '6361713'), + (59, 2218, 'maybe', '2023-08-14 22:10:14', '2025-12-17 19:46:55', 'dxMJoEXm', '6367308'), + (59, 2219, 'maybe', '2023-08-14 22:10:58', '2025-12-17 19:46:55', 'dxMJoEXm', '6367309'), + (59, 2224, 'attending', '2023-08-15 18:46:24', '2025-12-17 19:46:55', 'dxMJoEXm', '6367635'), + (59, 2229, 'maybe', '2023-08-20 19:11:50', '2025-12-17 19:46:55', 'dxMJoEXm', '6373787'), + (59, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxMJoEXm', '6382573'), + (59, 2239, 'attending', '2023-08-31 17:59:16', '2025-12-17 19:46:56', 'dxMJoEXm', '6387592'), + (59, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxMJoEXm', '6388604'), + (59, 2247, 'attending', '2023-09-06 22:23:01', '2025-12-17 19:46:56', 'dxMJoEXm', '6394628'), + (59, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxMJoEXm', '6394629'), + (59, 2249, 'attending', '2023-09-20 22:52:51', '2025-12-17 19:46:45', 'dxMJoEXm', '6394630'), + (59, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxMJoEXm', '6394631'), + (59, 2251, 'attending', '2023-09-05 20:27:49', '2025-12-17 19:46:56', 'dxMJoEXm', '6395182'), + (59, 2253, 'maybe', '2023-09-25 17:58:11', '2025-12-17 19:46:45', 'dxMJoEXm', '6401811'), + (59, 2256, 'maybe', '2023-09-18 23:22:07', '2025-12-17 19:46:45', 'dxMJoEXm', '6404369'), + (59, 2259, 'attending', '2023-09-23 00:58:29', '2025-12-17 19:46:45', 'dxMJoEXm', '6421257'), + (59, 2263, 'attending', '2023-09-27 13:31:08', '2025-12-17 19:46:45', 'dxMJoEXm', '6429351'), + (59, 2267, 'attending', '2023-09-29 22:00:04', '2025-12-17 19:46:45', 'dxMJoEXm', '6440034'), + (59, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxMJoEXm', '6440863'), + (59, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dxMJoEXm', '6445440'), + (59, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dxMJoEXm', '6453951'), + (59, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dxMJoEXm', '6461696'), + (59, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dxMJoEXm', '6462129'), + (59, 2290, 'attending', '2023-10-18 17:55:38', '2025-12-17 19:46:46', 'dxMJoEXm', '6462214'), + (59, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dxMJoEXm', '6463218'), + (59, 2294, 'attending', '2023-10-13 00:58:17', '2025-12-17 19:46:46', 'dxMJoEXm', '6465907'), + (59, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dxMJoEXm', '6472181'), + (59, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxMJoEXm', '6482693'), + (59, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dxMJoEXm', '6484200'), + (59, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dxMJoEXm', '6484680'), + (59, 2317, 'attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxMJoEXm', '6507741'), + (59, 2318, 'maybe', '2023-10-30 14:44:27', '2025-12-17 19:46:47', 'dxMJoEXm', '6508566'), + (59, 2319, 'maybe', '2023-10-30 14:44:52', '2025-12-17 19:46:47', 'dxMJoEXm', '6508567'), + (59, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxMJoEXm', '6514659'), + (59, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMJoEXm', '6514660'), + (59, 2329, 'attending', '2023-11-07 14:42:20', '2025-12-17 19:46:47', 'dxMJoEXm', '6517138'), + (59, 2330, 'attending', '2023-11-03 08:46:54', '2025-12-17 19:46:47', 'dxMJoEXm', '6517941'), + (59, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxMJoEXm', '6519103'), + (59, 2337, 'attending', '2023-11-08 01:08:22', '2025-12-17 19:46:48', 'dxMJoEXm', '6535681'), + (59, 2341, 'maybe', '2023-11-13 19:52:38', '2025-12-17 19:46:48', 'dxMJoEXm', '6543263'), + (59, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxMJoEXm', '6584747'), + (59, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMJoEXm', '6587097'), + (59, 2360, 'maybe', '2023-12-02 03:04:11', '2025-12-17 19:46:49', 'dxMJoEXm', '6599341'), + (59, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMJoEXm', '6609022'), + (59, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMJoEXm', '6632757'), + (59, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMJoEXm', '6644187'), + (59, 2383, 'attending', '2024-01-02 00:29:36', '2025-12-17 19:46:37', 'dxMJoEXm', '6647606'), + (59, 2384, 'attending', '2024-01-02 04:26:38', '2025-12-17 19:46:37', 'dxMJoEXm', '6648022'), + (59, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMJoEXm', '6648951'), + (59, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMJoEXm', '6648952'), + (59, 2388, 'maybe', '2024-01-04 21:41:49', '2025-12-17 19:46:37', 'dxMJoEXm', '6649244'), + (59, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMJoEXm', '6655401'), + (59, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMJoEXm', '6661585'), + (59, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMJoEXm', '6661588'), + (59, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMJoEXm', '6661589'), + (59, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMJoEXm', '6699906'), + (59, 2408, 'maybe', '2024-01-25 20:31:15', '2025-12-17 19:46:40', 'dxMJoEXm', '6699907'), + (59, 2410, 'maybe', '2024-02-10 02:56:35', '2025-12-17 19:46:41', 'dxMJoEXm', '6699911'), + (59, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxMJoEXm', '6699913'), + (59, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMJoEXm', '6701109'), + (59, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dxMJoEXm', '6704561'), + (59, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMJoEXm', '6705219'), + (59, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dxMJoEXm', '6708410'), + (59, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMJoEXm', '6710153'), + (59, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMJoEXm', '6711552'), + (59, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMJoEXm', '6711553'), + (59, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMJoEXm', '6722688'), + (59, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMJoEXm', '6730620'), + (59, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMJoEXm', '6730642'), + (59, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMJoEXm', '6740364'), + (59, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMJoEXm', '6743829'), + (59, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMJoEXm', '7030380'), + (59, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMJoEXm', '7033677'), + (59, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMJoEXm', '7035415'), + (59, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMJoEXm', '7044715'), + (59, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMJoEXm', '7050318'), + (59, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMJoEXm', '7050319'), + (59, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMJoEXm', '7050322'), + (59, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMJoEXm', '7057804'), + (59, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMJoEXm', '7072824'), + (59, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMJoEXm', '7074348'), + (59, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMJoEXm', '7089267'), + (59, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMJoEXm', '7098747'), + (59, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxMJoEXm', '7113468'), + (59, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMJoEXm', '7114856'), + (59, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMJoEXm', '7114951'), + (59, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxMJoEXm', '7114955'), + (59, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMJoEXm', '7114956'), + (59, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMJoEXm', '7114957'), + (59, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMJoEXm', '7153615'), + (59, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMJoEXm', '7159484'), + (59, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMJoEXm', '7178446'), + (59, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMJoEXm', '7220467'), + (59, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMJoEXm', '7240354'), + (59, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMJoEXm', '7251633'), + (59, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMJoEXm', '7302674'), + (59, 2925, 'attending', '2024-12-10 03:40:39', '2025-12-17 19:46:21', 'dxMJoEXm', '7713584'), + (59, 2927, 'attending', '2024-12-16 00:24:26', '2025-12-17 19:46:22', 'dxMJoEXm', '7713586'), + (59, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMJoEXm', '7738518'), + (59, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMJoEXm', '7750636'), + (59, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMJoEXm', '7796540'), + (59, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMJoEXm', '7796541'), + (59, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMJoEXm', '7796542'), + (59, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxMJoEXm', '7825913'), + (59, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxMJoEXm', '7826209'), + (59, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxMJoEXm', '7834742'), + (59, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dxMJoEXm', '7842108'), + (59, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxMJoEXm', '7842902'), + (59, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxMJoEXm', '7842903'), + (59, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxMJoEXm', '7842904'), + (59, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxMJoEXm', '7842905'), + (59, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxMJoEXm', '7855719'), + (59, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxMJoEXm', '7860683'), + (59, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxMJoEXm', '7860684'), + (59, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxMJoEXm', '7866095'), + (59, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxMJoEXm', '7869170'), + (59, 3015, 'attending', '2025-04-23 06:10:34', '2025-12-17 19:46:20', 'dxMJoEXm', '7869186'), + (59, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxMJoEXm', '7869188'), + (59, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxMJoEXm', '7869201'), + (59, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxMJoEXm', '7877465'), + (59, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxMJoEXm', '7888250'), + (59, 3070, 'attending', '2025-04-02 02:44:30', '2025-12-17 19:46:20', 'dxMJoEXm', '7894829'), + (59, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxMJoEXm', '7904777'), + (59, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxMJoEXm', '8349164'), + (59, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxMJoEXm', '8349545'), + (59, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxMJoEXm', '8353584'), + (59, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dxMJoEXm', '8368028'), + (59, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxMJoEXm', '8368029'), + (59, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxMJoEXm', '8388462'), + (59, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxMJoEXm', '8400273'), + (59, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dxMJoEXm', '8400274'), + (59, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxMJoEXm', '8400275'), + (59, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dxMJoEXm', '8400276'), + (59, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxMJoEXm', '8404977'), + (59, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxMJoEXm', '8430783'), + (59, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxMJoEXm', '8430784'), + (59, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxMJoEXm', '8430799'), + (59, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxMJoEXm', '8430800'), + (59, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxMJoEXm', '8430801'), + (59, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxMJoEXm', '8438709'), + (59, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxMJoEXm', '8457738'), + (59, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxMJoEXm', '8459566'), + (59, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxMJoEXm', '8459567'), + (59, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxMJoEXm', '8461032'), + (59, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxMJoEXm', '8477877'), + (59, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxMJoEXm', '8485688'), + (59, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxMJoEXm', '8490587'), + (59, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxMJoEXm', '8493552'), + (59, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxMJoEXm', '8493553'), + (59, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxMJoEXm', '8493554'), + (59, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxMJoEXm', '8493555'), + (59, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxMJoEXm', '8493556'), + (59, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxMJoEXm', '8493557'), + (59, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxMJoEXm', '8493558'), + (59, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxMJoEXm', '8493559'), + (59, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxMJoEXm', '8493560'), + (59, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxMJoEXm', '8493561'), + (59, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxMJoEXm', '8493572'), + (59, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxMJoEXm', '8540725'), + (59, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxMJoEXm', '8555421'), + (60, 497, 'attending', '2020-12-17 21:40:56', '2025-12-17 19:47:55', '8mR9wNYd', '3314270'), + (60, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '8mR9wNYd', '3314964'), + (60, 502, 'attending', '2020-12-12 23:08:32', '2025-12-17 19:47:55', '8mR9wNYd', '3323365'), + (60, 513, 'attending', '2020-12-20 00:49:16', '2025-12-17 19:47:55', '8mR9wNYd', '3329383'), + (60, 518, 'not_attending', '2021-01-06 23:58:02', '2025-12-17 19:47:48', '8mR9wNYd', '3337138'), + (60, 519, 'attending', '2020-12-20 21:04:33', '2025-12-17 19:47:55', '8mR9wNYd', '3337448'), + (60, 525, 'attending', '2020-12-22 03:16:56', '2025-12-17 19:47:48', '8mR9wNYd', '3350467'), + (60, 526, 'attending', '2020-12-29 18:17:14', '2025-12-17 19:47:48', '8mR9wNYd', '3351539'), + (60, 529, 'attending', '2021-01-03 22:51:08', '2025-12-17 19:47:48', '8mR9wNYd', '3364568'), + (60, 532, 'attending', '2021-01-08 14:08:56', '2025-12-17 19:47:48', '8mR9wNYd', '3381412'), + (60, 534, 'attending', '2021-01-05 04:34:22', '2025-12-17 19:47:48', '8mR9wNYd', '3384157'), + (60, 536, 'attending', '2021-01-07 17:21:11', '2025-12-17 19:47:48', '8mR9wNYd', '3386848'), + (60, 538, 'maybe', '2021-01-12 03:57:02', '2025-12-17 19:47:48', '8mR9wNYd', '3388151'), + (60, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '8mR9wNYd', '3389527'), + (60, 542, 'attending', '2021-01-11 02:41:06', '2025-12-17 19:47:48', '8mR9wNYd', '3395013'), + (60, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '8mR9wNYd', '3396499'), + (60, 548, 'not_attending', '2021-01-12 03:54:40', '2025-12-17 19:47:48', '8mR9wNYd', '3403650'), + (60, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '8mR9wNYd', '3406988'), + (60, 555, 'attending', '2021-01-20 18:34:43', '2025-12-17 19:47:49', '8mR9wNYd', '3416576'), + (60, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '8mR9wNYd', '3418925'), + (60, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', '8mR9wNYd', '3426074'), + (60, 565, 'attending', '2021-01-26 19:25:49', '2025-12-17 19:47:49', '8mR9wNYd', '3426083'), + (60, 567, 'attending', '2021-01-26 19:37:06', '2025-12-17 19:47:50', '8mR9wNYd', '3428895'), + (60, 568, 'attending', '2021-01-26 19:37:09', '2025-12-17 19:47:50', '8mR9wNYd', '3430267'), + (60, 569, 'attending', '2021-01-26 19:25:40', '2025-12-17 19:47:49', '8mR9wNYd', '3432673'), + (60, 571, 'maybe', '2021-02-12 17:40:37', '2025-12-17 19:47:50', '8mR9wNYd', '3435539'), + (60, 576, 'attending', '2021-01-29 08:41:54', '2025-12-17 19:47:50', '8mR9wNYd', '3438748'), + (60, 579, 'attending', '2021-02-01 22:50:23', '2025-12-17 19:47:50', '8mR9wNYd', '3440978'), + (60, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '8mR9wNYd', '3468125'), + (60, 602, 'attending', '2021-02-07 23:32:58', '2025-12-17 19:47:50', '8mR9wNYd', '3470303'), + (60, 603, 'attending', '2021-02-20 21:47:26', '2025-12-17 19:47:50', '8mR9wNYd', '3470304'), + (60, 604, 'attending', '2021-02-24 00:18:30', '2025-12-17 19:47:50', '8mR9wNYd', '3470305'), + (60, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '8mR9wNYd', '3470991'), + (60, 608, 'attending', '2021-02-10 21:16:33', '2025-12-17 19:47:50', '8mR9wNYd', '3475332'), + (60, 621, 'attending', '2021-03-02 21:31:25', '2025-12-17 19:47:51', '8mR9wNYd', '3517815'), + (60, 622, 'attending', '2021-03-10 14:51:58', '2025-12-17 19:47:51', '8mR9wNYd', '3517816'), + (60, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '8mR9wNYd', '3523941'), + (60, 631, 'not_attending', '2021-03-02 21:31:19', '2025-12-17 19:47:51', '8mR9wNYd', '3533850'), + (60, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8mR9wNYd', '3536632'), + (60, 639, 'not_attending', '2021-03-02 21:31:07', '2025-12-17 19:47:51', '8mR9wNYd', '3536656'), + (60, 641, 'attending', '2021-04-01 05:08:31', '2025-12-17 19:47:44', '8mR9wNYd', '3539916'), + (60, 642, 'attending', '2021-04-09 21:09:17', '2025-12-17 19:47:44', '8mR9wNYd', '3539917'), + (60, 643, 'attending', '2021-04-15 00:19:40', '2025-12-17 19:47:45', '8mR9wNYd', '3539918'), + (60, 644, 'attending', '2021-04-24 05:56:10', '2025-12-17 19:47:45', '8mR9wNYd', '3539919'), + (60, 645, 'attending', '2021-05-07 17:55:43', '2025-12-17 19:47:46', '8mR9wNYd', '3539920'), + (60, 646, 'attending', '2021-05-11 18:52:41', '2025-12-17 19:47:46', '8mR9wNYd', '3539921'), + (60, 647, 'attending', '2021-05-21 17:32:22', '2025-12-17 19:47:46', '8mR9wNYd', '3539922'), + (60, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8mR9wNYd', '3539923'), + (60, 649, 'attending', '2021-03-20 00:00:34', '2025-12-17 19:47:51', '8mR9wNYd', '3539927'), + (60, 650, 'attending', '2021-03-27 17:34:47', '2025-12-17 19:47:44', '8mR9wNYd', '3539928'), + (60, 687, 'not_attending', '2021-03-11 20:49:45', '2025-12-17 19:47:51', '8mR9wNYd', '3553405'), + (60, 690, 'attending', '2021-03-23 20:03:51', '2025-12-17 19:47:43', '8mR9wNYd', '3559954'), + (60, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8mR9wNYd', '3582734'), + (60, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8mR9wNYd', '3583262'), + (60, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8mR9wNYd', '3619523'), + (60, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8mR9wNYd', '3661369'), + (60, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8mR9wNYd', '3674262'), + (60, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8mR9wNYd', '3677402'), + (60, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '8mR9wNYd', '3730212'), + (60, 777, 'attending', '2021-04-28 20:50:00', '2025-12-17 19:47:46', '8mR9wNYd', '3746248'), + (60, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8mR9wNYd', '3793156'), + (60, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '8mR9wNYd', '3974109'), + (60, 827, 'attending', '2021-06-03 18:13:05', '2025-12-17 19:47:47', '8mR9wNYd', '3975311'), + (60, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '8mR9wNYd', '3975312'), + (60, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '8mR9wNYd', '3994992'), + (60, 844, 'attending', '2021-06-12 00:52:14', '2025-12-17 19:47:38', '8mR9wNYd', '4014338'), + (60, 867, 'attending', '2021-06-26 15:12:54', '2025-12-17 19:47:38', '8mR9wNYd', '4021848'), + (60, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '8mR9wNYd', '4136744'), + (60, 870, 'attending', '2021-07-03 21:53:44', '2025-12-17 19:47:39', '8mR9wNYd', '4136937'), + (60, 871, 'attending', '2021-07-09 22:16:25', '2025-12-17 19:47:39', '8mR9wNYd', '4136938'), + (60, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '8mR9wNYd', '4136947'), + (60, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '8mR9wNYd', '4210314'), + (60, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8mR9wNYd', '4225444'), + (60, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '8mR9wNYd', '4239259'), + (60, 900, 'not_attending', '2021-07-24 22:04:22', '2025-12-17 19:47:40', '8mR9wNYd', '4240316'), + (60, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '8mR9wNYd', '4240317'), + (60, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '8mR9wNYd', '4240318'), + (60, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '8mR9wNYd', '4240320'), + (60, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8mR9wNYd', '4250163'), + (60, 919, 'attending', '2021-07-17 12:44:17', '2025-12-17 19:47:39', '8mR9wNYd', '4275957'), + (60, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '8mR9wNYd', '4277819'), + (60, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '8mR9wNYd', '4301723'), + (60, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '8mR9wNYd', '4302093'), + (60, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '8mR9wNYd', '4304151'), + (60, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '8mR9wNYd', '4345519'), + (60, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '8mR9wNYd', '4356801'), + (60, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '8mR9wNYd', '4358025'), + (60, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '8mR9wNYd', '4366186'), + (60, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '8mR9wNYd', '4366187'), + (60, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '8mR9wNYd', '4402823'), + (60, 990, 'attending', '2021-09-04 21:10:54', '2025-12-17 19:47:43', '8mR9wNYd', '4420735'), + (60, 991, 'attending', '2021-09-11 21:51:43', '2025-12-17 19:47:43', '8mR9wNYd', '4420738'), + (60, 992, 'attending', '2021-09-18 21:38:33', '2025-12-17 19:47:33', '8mR9wNYd', '4420739'), + (60, 993, 'attending', '2021-09-25 20:34:44', '2025-12-17 19:47:34', '8mR9wNYd', '4420741'), + (60, 994, 'attending', '2021-10-01 01:08:50', '2025-12-17 19:47:34', '8mR9wNYd', '4420742'), + (60, 995, 'attending', '2021-10-09 20:04:45', '2025-12-17 19:47:34', '8mR9wNYd', '4420744'), + (60, 996, 'attending', '2021-10-16 02:22:55', '2025-12-17 19:47:35', '8mR9wNYd', '4420747'), + (60, 997, 'attending', '2021-10-23 19:56:16', '2025-12-17 19:47:35', '8mR9wNYd', '4420748'), + (60, 998, 'attending', '2021-10-30 15:55:28', '2025-12-17 19:47:36', '8mR9wNYd', '4420749'), + (60, 1016, 'attending', '2021-09-05 01:53:59', '2025-12-17 19:47:43', '8mR9wNYd', '4441271'), + (60, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '8mR9wNYd', '4461883'), + (60, 1040, 'attending', '2021-12-11 18:40:37', '2025-12-17 19:47:38', '8mR9wNYd', '4496605'), + (60, 1049, 'attending', '2022-01-22 23:00:52', '2025-12-17 19:47:32', '8mR9wNYd', '4496614'), + (60, 1050, 'attending', '2022-01-29 19:31:35', '2025-12-17 19:47:32', '8mR9wNYd', '4496615'), + (60, 1051, 'not_attending', '2022-02-05 16:04:40', '2025-12-17 19:47:32', '8mR9wNYd', '4496616'), + (60, 1052, 'attending', '2022-01-14 16:52:04', '2025-12-17 19:47:31', '8mR9wNYd', '4496617'), + (60, 1056, 'attending', '2022-01-08 23:29:28', '2025-12-17 19:47:31', '8mR9wNYd', '4496622'), + (60, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '8mR9wNYd', '4508342'), + (60, 1068, 'attending', '2021-09-30 22:17:49', '2025-12-17 19:47:34', '8mR9wNYd', '4511471'), + (60, 1070, 'attending', '2021-10-01 22:36:45', '2025-12-17 19:47:34', '8mR9wNYd', '4512562'), + (60, 1072, 'attending', '2021-10-06 20:22:09', '2025-12-17 19:47:34', '8mR9wNYd', '4516287'), + (60, 1074, 'attending', '2021-09-29 20:41:42', '2025-12-17 19:47:34', '8mR9wNYd', '4528953'), + (60, 1079, 'attending', '2021-10-20 21:11:34', '2025-12-17 19:47:35', '8mR9wNYd', '4563823'), + (60, 1082, 'attending', '2021-10-15 20:26:52', '2025-12-17 19:47:35', '8mR9wNYd', '4566762'), + (60, 1085, 'attending', '2021-12-23 23:43:42', '2025-12-17 19:47:31', '8mR9wNYd', '4568542'), + (60, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '8mR9wNYd', '4568602'), + (60, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '8mR9wNYd', '4572153'), + (60, 1092, 'attending', '2021-10-21 21:52:50', '2025-12-17 19:47:35', '8mR9wNYd', '4582837'), + (60, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', '8mR9wNYd', '4585962'), + (60, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '8mR9wNYd', '4596356'), + (60, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '8mR9wNYd', '4598860'), + (60, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '8mR9wNYd', '4598861'), + (60, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '8mR9wNYd', '4602797'), + (60, 1103, 'attending', '2021-11-13 20:36:17', '2025-12-17 19:47:36', '8mR9wNYd', '4616350'), + (60, 1108, 'attending', '2021-11-18 00:44:36', '2025-12-17 19:47:37', '8mR9wNYd', '4632276'), + (60, 1114, 'attending', '2021-11-13 20:36:11', '2025-12-17 19:47:36', '8mR9wNYd', '4637896'), + (60, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '8mR9wNYd', '4642994'), + (60, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '8mR9wNYd', '4642995'), + (60, 1118, 'attending', '2021-12-16 00:34:23', '2025-12-17 19:47:38', '8mR9wNYd', '4642996'), + (60, 1119, 'attending', '2021-12-22 23:31:54', '2025-12-17 19:47:31', '8mR9wNYd', '4642997'), + (60, 1126, 'attending', '2021-12-11 18:40:33', '2025-12-17 19:47:38', '8mR9wNYd', '4645687'), + (60, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '8mR9wNYd', '4645698'), + (60, 1128, 'attending', '2021-11-20 04:19:31', '2025-12-17 19:47:37', '8mR9wNYd', '4645704'), + (60, 1129, 'attending', '2021-11-27 22:36:33', '2025-12-17 19:47:37', '8mR9wNYd', '4645705'), + (60, 1130, 'attending', '2021-12-04 20:52:36', '2025-12-17 19:47:37', '8mR9wNYd', '4658824'), + (60, 1131, 'attending', '2021-12-18 19:22:38', '2025-12-17 19:47:31', '8mR9wNYd', '4658825'), + (60, 1132, 'attending', '2021-11-22 23:05:01', '2025-12-17 19:47:37', '8mR9wNYd', '4660657'), + (60, 1134, 'attending', '2021-11-24 20:33:27', '2025-12-17 19:47:37', '8mR9wNYd', '4668385'), + (60, 1135, 'attending', '2021-11-26 23:41:47', '2025-12-17 19:47:37', '8mR9wNYd', '4670469'), + (60, 1136, 'not_attending', '2021-11-26 00:09:49', '2025-12-17 19:47:37', '8mR9wNYd', '4670473'), + (60, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '8mR9wNYd', '4694407'), + (60, 1151, 'attending', '2022-01-06 01:01:11', '2025-12-17 19:47:31', '8mR9wNYd', '4708704'), + (60, 1152, 'attending', '2022-01-13 00:40:58', '2025-12-17 19:47:31', '8mR9wNYd', '4708705'), + (60, 1153, 'attending', '2022-01-20 00:51:08', '2025-12-17 19:47:32', '8mR9wNYd', '4708707'), + (60, 1156, 'attending', '2021-12-21 23:13:45', '2025-12-17 19:47:31', '8mR9wNYd', '4715207'), + (60, 1173, 'attending', '2022-01-04 16:10:24', '2025-12-17 19:47:31', '8mR9wNYd', '4736495'), + (60, 1174, 'attending', '2022-01-14 16:52:02', '2025-12-17 19:47:31', '8mR9wNYd', '4736496'), + (60, 1175, 'attending', '2022-01-22 23:00:53', '2025-12-17 19:47:32', '8mR9wNYd', '4736497'), + (60, 1176, 'not_attending', '2022-02-05 16:04:33', '2025-12-17 19:47:32', '8mR9wNYd', '4736498'), + (60, 1177, 'attending', '2022-02-12 23:46:16', '2025-12-17 19:47:32', '8mR9wNYd', '4736499'), + (60, 1178, 'attending', '2022-01-29 19:31:32', '2025-12-17 19:47:32', '8mR9wNYd', '4736500'), + (60, 1181, 'attending', '2022-03-05 20:28:20', '2025-12-17 19:47:33', '8mR9wNYd', '4736503'), + (60, 1182, 'attending', '2022-03-12 20:34:51', '2025-12-17 19:47:33', '8mR9wNYd', '4736504'), + (60, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '8mR9wNYd', '4746789'), + (60, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '8mR9wNYd', '4753929'), + (60, 1211, 'maybe', '2022-01-28 17:57:58', '2025-12-17 19:47:32', '8mR9wNYd', '4780754'), + (60, 1212, 'attending', '2022-02-03 19:36:05', '2025-12-17 19:47:32', '8mR9wNYd', '4780759'), + (60, 1215, 'attending', '2022-02-18 22:28:20', '2025-12-17 19:47:33', '8mR9wNYd', '4780763'), + (60, 1219, 'attending', '2022-02-02 23:59:06', '2025-12-17 19:47:32', '8mR9wNYd', '4788466'), + (60, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '8mR9wNYd', '5038850'), + (60, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '8mR9wNYd', '5045826'), + (60, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '8mR9wNYd', '5132533'), + (60, 1272, 'attending', '2022-03-19 17:00:26', '2025-12-17 19:47:25', '8mR9wNYd', '5186582'), + (60, 1273, 'attending', '2022-03-26 15:50:58', '2025-12-17 19:47:25', '8mR9wNYd', '5186583'), + (60, 1274, 'attending', '2022-04-02 19:30:59', '2025-12-17 19:47:26', '8mR9wNYd', '5186585'), + (60, 1281, 'attending', '2022-04-09 22:12:59', '2025-12-17 19:47:27', '8mR9wNYd', '5190437'), + (60, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '8mR9wNYd', '5195095'), + (60, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '8mR9wNYd', '5215989'), + (60, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '8mR9wNYd', '5223686'), + (60, 1308, 'attending', '2022-04-13 22:33:34', '2025-12-17 19:47:27', '8mR9wNYd', '5226703'), + (60, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '8mR9wNYd', '5227432'), + (60, 1313, 'attending', '2022-04-12 01:44:15', '2025-12-17 19:47:27', '8mR9wNYd', '5231461'), + (60, 1318, 'attending', '2022-04-14 22:07:35', '2025-12-17 19:47:27', '8mR9wNYd', '5238343'), + (60, 1332, 'not_attending', '2022-04-14 22:56:04', '2025-12-17 19:47:27', '8mR9wNYd', '5243274'), + (60, 1337, 'attending', '2022-04-20 21:04:38', '2025-12-17 19:47:27', '8mR9wNYd', '5245036'), + (60, 1346, 'attending', '2022-04-23 21:45:31', '2025-12-17 19:47:27', '8mR9wNYd', '5247467'), + (60, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', '8mR9wNYd', '5249631'), + (60, 1354, 'not_attending', '2022-04-21 18:07:01', '2025-12-17 19:47:27', '8mR9wNYd', '5252569'), + (60, 1356, 'attending', '2022-04-22 01:32:41', '2025-12-17 19:47:27', '8mR9wNYd', '5252913'), + (60, 1362, 'attending', '2022-04-27 21:02:10', '2025-12-17 19:47:28', '8mR9wNYd', '5260800'), + (60, 1371, 'attending', '2022-04-27 21:02:07', '2025-12-17 19:47:27', '8mR9wNYd', '5263784'), + (60, 1374, 'maybe', '2022-05-07 16:19:39', '2025-12-17 19:47:28', '8mR9wNYd', '5269930'), + (60, 1378, 'attending', '2022-05-14 14:56:23', '2025-12-17 19:47:29', '8mR9wNYd', '5271448'), + (60, 1379, 'attending', '2022-05-20 12:06:07', '2025-12-17 19:47:29', '8mR9wNYd', '5271449'), + (60, 1380, 'attending', '2022-05-28 15:52:57', '2025-12-17 19:47:30', '8mR9wNYd', '5271450'), + (60, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '8mR9wNYd', '5276469'), + (60, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '8mR9wNYd', '5278159'), + (60, 1407, 'attending', '2022-06-01 19:25:02', '2025-12-17 19:47:30', '8mR9wNYd', '5363695'), + (60, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '8mR9wNYd', '5365960'), + (60, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '8mR9wNYd', '5368973'), + (60, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '8mR9wNYd', '5378247'), + (60, 1431, 'attending', '2022-06-11 19:45:04', '2025-12-17 19:47:30', '8mR9wNYd', '5389605'), + (60, 1442, 'attending', '2022-06-18 17:36:07', '2025-12-17 19:47:17', '8mR9wNYd', '5397265'), + (60, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '8mR9wNYd', '5403967'), + (60, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '8mR9wNYd', '5404786'), + (60, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '8mR9wNYd', '5405203'), + (60, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '8mR9wNYd', '5408794'), + (60, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '8mR9wNYd', '5411699'), + (60, 1482, 'attending', '2022-06-25 18:33:45', '2025-12-17 19:47:19', '8mR9wNYd', '5412550'), + (60, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '8mR9wNYd', '5415046'), + (60, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '8mR9wNYd', '5422086'), + (60, 1498, 'attending', '2022-07-02 21:54:54', '2025-12-17 19:47:19', '8mR9wNYd', '5422406'), + (60, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '8mR9wNYd', '5424565'), + (60, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '8mR9wNYd', '5426882'), + (60, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '8mR9wNYd', '5427083'), + (60, 1508, 'attending', '2022-07-13 22:40:57', '2025-12-17 19:47:19', '8mR9wNYd', '5433453'), + (60, 1511, 'attending', '2022-07-09 20:45:19', '2025-12-17 19:47:19', '8mR9wNYd', '5437733'), + (60, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '8mR9wNYd', '5441125'), + (60, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '8mR9wNYd', '5441126'), + (60, 1515, 'attending', '2022-08-06 22:05:15', '2025-12-17 19:47:21', '8mR9wNYd', '5441128'), + (60, 1516, 'maybe', '2022-08-20 21:48:56', '2025-12-17 19:47:23', '8mR9wNYd', '5441129'), + (60, 1517, 'attending', '2022-08-27 19:18:02', '2025-12-17 19:47:23', '8mR9wNYd', '5441130'), + (60, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '8mR9wNYd', '5441131'), + (60, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '8mR9wNYd', '5441132'), + (60, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '8mR9wNYd', '5446643'), + (60, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '8mR9wNYd', '5453325'), + (60, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '8mR9wNYd', '5454516'), + (60, 1544, 'attending', '2022-09-17 16:17:59', '2025-12-17 19:47:11', '8mR9wNYd', '5454517'), + (60, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '8mR9wNYd', '5454605'), + (60, 1546, 'attending', '2022-07-27 22:00:51', '2025-12-17 19:47:20', '8mR9wNYd', '5454607'), + (60, 1551, 'attending', '2022-07-19 22:44:10', '2025-12-17 19:47:20', '8mR9wNYd', '5455037'), + (60, 1557, 'attending', '2022-08-03 21:17:19', '2025-12-17 19:47:21', '8mR9wNYd', '5458729'), + (60, 1558, 'attending', '2022-09-13 21:02:55', '2025-12-17 19:47:10', '8mR9wNYd', '5458730'), + (60, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '8mR9wNYd', '5461278'), + (60, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '8mR9wNYd', '5469480'), + (60, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '8mR9wNYd', '5471073'), + (60, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '8mR9wNYd', '5474663'), + (60, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '8mR9wNYd', '5482022'), + (60, 1575, 'attending', '2022-08-26 22:45:29', '2025-12-17 19:47:23', '8mR9wNYd', '5482250'), + (60, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '8mR9wNYd', '5482793'), + (60, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '8mR9wNYd', '5488912'), + (60, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '8mR9wNYd', '5492192'), + (60, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '8mR9wNYd', '5493139'), + (60, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '8mR9wNYd', '5493200'), + (60, 1592, 'attending', '2022-08-10 16:21:19', '2025-12-17 19:47:22', '8mR9wNYd', '5494031'), + (60, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '8mR9wNYd', '5502188'), + (60, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '8mR9wNYd', '5505059'), + (60, 1610, 'attending', '2022-08-26 20:06:19', '2025-12-17 19:47:23', '8mR9wNYd', '5506595'), + (60, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '8mR9wNYd', '5509055'), + (60, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '8mR9wNYd', '5512862'), + (60, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '8mR9wNYd', '5513985'), + (60, 1626, 'attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '8mR9wNYd', '5519981'), + (60, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '8mR9wNYd', '5522550'), + (60, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '8mR9wNYd', '5534683'), + (60, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '8mR9wNYd', '5537735'), + (60, 1640, 'attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '8mR9wNYd', '5540859'), + (60, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '8mR9wNYd', '5546619'), + (60, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '8mR9wNYd', '5555245'), + (60, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '8mR9wNYd', '5557747'), + (60, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '8mR9wNYd', '5560255'), + (60, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '8mR9wNYd', '5562906'), + (60, 1667, 'attending', '2022-09-24 18:42:30', '2025-12-17 19:47:11', '8mR9wNYd', '5563221'), + (60, 1668, 'attending', '2022-09-25 03:23:26', '2025-12-17 19:47:12', '8mR9wNYd', '5563222'), + (60, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '8mR9wNYd', '5600604'), + (60, 1679, 'attending', '2022-10-04 21:56:21', '2025-12-17 19:47:12', '8mR9wNYd', '5601099'), + (60, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '8mR9wNYd', '5605544'), + (60, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', '8mR9wNYd', '5606737'), + (60, 1717, 'attending', '2022-10-21 20:03:09', '2025-12-17 19:47:13', '8mR9wNYd', '5622842'), + (60, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', '8mR9wNYd', '5630907'), + (60, 1719, 'attending', '2022-10-07 21:58:50', '2025-12-17 19:47:12', '8mR9wNYd', '5630958'), + (60, 1720, 'attending', '2022-10-15 18:11:24', '2025-12-17 19:47:12', '8mR9wNYd', '5630959'), + (60, 1721, 'not_attending', '2022-10-17 20:09:46', '2025-12-17 19:47:13', '8mR9wNYd', '5630960'), + (60, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '8mR9wNYd', '5630961'), + (60, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '8mR9wNYd', '5630962'), + (60, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '8mR9wNYd', '5630966'), + (60, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '8mR9wNYd', '5630967'), + (60, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '8mR9wNYd', '5630968'), + (60, 1727, 'attending', '2022-12-03 18:49:00', '2025-12-17 19:47:16', '8mR9wNYd', '5630969'), + (60, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '8mR9wNYd', '5635406'), + (60, 1733, 'attending', '2022-10-11 15:46:46', '2025-12-17 19:47:12', '8mR9wNYd', '5635411'), + (60, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '8mR9wNYd', '5638765'), + (60, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '8mR9wNYd', '5640097'), + (60, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '8mR9wNYd', '5640843'), + (60, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '8mR9wNYd', '5641521'), + (60, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '8mR9wNYd', '5642818'), + (60, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '8mR9wNYd', '5652395'), + (60, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '8mR9wNYd', '5670445'), + (60, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '8mR9wNYd', '5671637'), + (60, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '8mR9wNYd', '5672329'), + (60, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '8mR9wNYd', '5674057'), + (60, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '8mR9wNYd', '5674060'), + (60, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '8mR9wNYd', '5677461'), + (60, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '8mR9wNYd', '5698046'), + (60, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '8mR9wNYd', '5699760'), + (60, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '8mR9wNYd', '5741601'), + (60, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '8mR9wNYd', '5763458'), + (60, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '8mR9wNYd', '5774172'), + (60, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '8mR9wNYd', '5818247'), + (60, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '8mR9wNYd', '5819471'), + (60, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '8mR9wNYd', '5827739'), + (60, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '8mR9wNYd', '5844306'), + (60, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '8mR9wNYd', '5850159'), + (60, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '8mR9wNYd', '5858999'), + (60, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '8mR9wNYd', '5871984'), + (60, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '8mR9wNYd', '5876354'), + (60, 1864, 'attending', '2023-01-20 21:32:26', '2025-12-17 19:47:05', '8mR9wNYd', '5879675'), + (60, 1865, 'not_attending', '2023-01-28 15:07:02', '2025-12-17 19:47:06', '8mR9wNYd', '5879676'), + (60, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '8mR9wNYd', '5880939'), + (60, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '8mR9wNYd', '5887890'), + (60, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '8mR9wNYd', '5888598'), + (60, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '8mR9wNYd', '5893260'), + (60, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '8mR9wNYd', '5899826'), + (60, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '8mR9wNYd', '5901108'), + (60, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '8mR9wNYd', '5901126'), + (60, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mR9wNYd', '6045684'), + (60, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8mR9wNYd', '6067245'), + (60, 2060, 'not_attending', '2023-05-20 22:43:24', '2025-12-17 19:47:03', '8mR9wNYd', '6097414'), + (60, 2061, 'not_attending', '2023-05-11 23:34:43', '2025-12-17 19:47:02', '8mR9wNYd', '6097442'), + (60, 2064, 'maybe', '2023-06-24 16:25:28', '2025-12-17 19:46:50', '8mR9wNYd', '6099988'), + (60, 2065, 'maybe', '2023-06-16 22:32:59', '2025-12-17 19:46:49', '8mR9wNYd', '6101169'), + (60, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '8mR9wNYd', '6101361'), + (60, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8mR9wNYd', '6101362'), + (60, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '8mR9wNYd', '6103752'), + (60, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8mR9wNYd', '6107314'), + (60, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '8mR9wNYd', '6120034'), + (60, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '8mR9wNYd', '6136733'), + (60, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '8mR9wNYd', '6137989'), + (60, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '8mR9wNYd', '6150864'), + (60, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '8mR9wNYd', '6155491'), + (60, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '8mR9wNYd', '6164417'), + (60, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '8mR9wNYd', '6166388'), + (60, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '8mR9wNYd', '6176439'), + (60, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '8mR9wNYd', '6182410'), + (60, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '8mR9wNYd', '6185812'), + (60, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '8mR9wNYd', '6187651'), + (60, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '8mR9wNYd', '6187963'), + (60, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '8mR9wNYd', '6187964'), + (60, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '8mR9wNYd', '6187966'), + (60, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '8mR9wNYd', '6187967'), + (60, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '8mR9wNYd', '6187969'), + (60, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '8mR9wNYd', '6334878'), + (60, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '8mR9wNYd', '6337236'), + (60, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '8mR9wNYd', '6337970'), + (60, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '8mR9wNYd', '6338308'), + (60, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '8mR9wNYd', '6340845'), + (60, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '8mR9wNYd', '6341710'), + (60, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '8mR9wNYd', '6342044'), + (60, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '8mR9wNYd', '6342298'), + (60, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '8mR9wNYd', '6343294'), + (60, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '8mR9wNYd', '6347034'), + (60, 2177, 'attending', '2023-08-12 20:36:56', '2025-12-17 19:46:55', '8mR9wNYd', '6347053'), + (60, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '8mR9wNYd', '6347056'), + (60, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '8mR9wNYd', '6353830'), + (60, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '8mR9wNYd', '6353831'), + (60, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '8mR9wNYd', '6357867'), + (60, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '8mR9wNYd', '6358652'), + (60, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '8mR9wNYd', '6361709'), + (60, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '8mR9wNYd', '6361710'), + (60, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '8mR9wNYd', '6361711'), + (60, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '8mR9wNYd', '6361712'), + (60, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '8mR9wNYd', '6361713'), + (60, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '8mR9wNYd', '6382573'), + (60, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '8mR9wNYd', '6388604'), + (60, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '8mR9wNYd', '6394629'), + (60, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '8mR9wNYd', '6394631'), + (60, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '8mR9wNYd', '6440863'), + (60, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '8mR9wNYd', '6445440'), + (60, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '8mR9wNYd', '6453951'), + (60, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '8mR9wNYd', '6461696'), + (60, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '8mR9wNYd', '6462129'), + (60, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '8mR9wNYd', '6463218'), + (60, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '8mR9wNYd', '6472181'), + (60, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '8mR9wNYd', '6482693'), + (60, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '8mR9wNYd', '6484200'), + (60, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '8mR9wNYd', '6484680'), + (60, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '8mR9wNYd', '6507741'), + (60, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '8mR9wNYd', '6514659'), + (60, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '8mR9wNYd', '6514660'), + (60, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '8mR9wNYd', '6519103'), + (60, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '8mR9wNYd', '6535681'), + (60, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '8mR9wNYd', '6584747'), + (60, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '8mR9wNYd', '6587097'), + (60, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '8mR9wNYd', '6609022'), + (60, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '8mR9wNYd', '6632757'), + (60, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '8mR9wNYd', '6644187'), + (60, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '8mR9wNYd', '6648951'), + (60, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '8mR9wNYd', '6648952'), + (60, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '8mR9wNYd', '6655401'), + (60, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '8mR9wNYd', '6661585'), + (60, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '8mR9wNYd', '6661588'), + (60, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '8mR9wNYd', '6661589'), + (60, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '8mR9wNYd', '6699906'), + (60, 2410, 'attending', '2024-02-10 18:59:10', '2025-12-17 19:46:41', '8mR9wNYd', '6699911'), + (60, 2411, 'attending', '2024-02-15 18:15:38', '2025-12-17 19:46:41', '8mR9wNYd', '6699913'), + (60, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '8mR9wNYd', '6701109'), + (60, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '8mR9wNYd', '6705219'), + (60, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '8mR9wNYd', '6710153'), + (60, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '8mR9wNYd', '6711552'), + (60, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '8mR9wNYd', '6711553'), + (60, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '8mR9wNYd', '6722688'), + (60, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '8mR9wNYd', '6730620'), + (60, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '8mR9wNYd', '6730642'), + (60, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '8mR9wNYd', '6740364'), + (60, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '8mR9wNYd', '6743829'), + (60, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '8mR9wNYd', '7030380'), + (60, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '8mR9wNYd', '7033677'), + (60, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '8mR9wNYd', '7035415'), + (60, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '8mR9wNYd', '7044715'), + (60, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '8mR9wNYd', '7050318'), + (60, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '8mR9wNYd', '7050319'), + (60, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '8mR9wNYd', '7050322'), + (60, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '8mR9wNYd', '7057804'), + (60, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '8mR9wNYd', '7059866'), + (60, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '8mR9wNYd', '7072824'), + (60, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '8mR9wNYd', '7074348'), + (60, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '8mR9wNYd', '7074364'), + (60, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '8mR9wNYd', '7089267'), + (60, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '8mR9wNYd', '7098747'), + (60, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '8mR9wNYd', '7113468'), + (60, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '8mR9wNYd', '7114856'), + (60, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '8mR9wNYd', '7114951'), + (60, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '8mR9wNYd', '7114955'), + (60, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '8mR9wNYd', '7114956'), + (60, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '8mR9wNYd', '7114957'), + (60, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '8mR9wNYd', '7153615'), + (60, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '8mR9wNYd', '7159484'), + (60, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '8mR9wNYd', '7178446'), + (60, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '8mR9wNYd', '7220467'), + (60, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '8mR9wNYd', '7240354'), + (60, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '8mR9wNYd', '7251633'), + (60, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '8mR9wNYd', '7263048'), + (60, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '8mR9wNYd', '7302674'), + (60, 2679, 'attending', '2024-06-22 18:31:37', '2025-12-17 19:46:29', '8mR9wNYd', '7319490'), + (60, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '8mR9wNYd', '7324073'), + (60, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '8mR9wNYd', '7324074'), + (60, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '8mR9wNYd', '7324075'), + (60, 2691, 'attending', '2024-07-20 22:06:25', '2025-12-17 19:46:30', '8mR9wNYd', '7324076'), + (60, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '8mR9wNYd', '7324078'), + (60, 2695, 'attending', '2024-08-17 17:42:35', '2025-12-17 19:46:31', '8mR9wNYd', '7324080'), + (60, 2696, 'attending', '2024-08-24 20:37:29', '2025-12-17 19:46:32', '8mR9wNYd', '7324081'), + (60, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '8mR9wNYd', '7324082'), + (60, 2698, 'maybe', '2024-09-06 12:12:22', '2025-12-17 19:46:24', '8mR9wNYd', '7324083'), + (60, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '8mR9wNYd', '7331457'), + (60, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '8mR9wNYd', '7356752'), + (60, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '8mR9wNYd', '7363643'), + (60, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '8mR9wNYd', '7368606'), + (60, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '8mR9wNYd', '7397462'), + (60, 2821, 'maybe', '2024-10-08 14:06:06', '2025-12-17 19:46:26', '8mR9wNYd', '7424275'), + (60, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '8mR9wNYd', '7424276'), + (60, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '8mR9wNYd', '7432751'), + (60, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '8mR9wNYd', '7432752'), + (60, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '8mR9wNYd', '7432753'), + (60, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '8mR9wNYd', '7432754'), + (60, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '8mR9wNYd', '7432755'), + (60, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '8mR9wNYd', '7432756'), + (60, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '8mR9wNYd', '7432758'), + (60, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '8mR9wNYd', '7432759'), + (60, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '8mR9wNYd', '7433834'), + (60, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '8mR9wNYd', '7470197'), + (60, 2878, 'maybe', '2024-10-16 21:09:30', '2025-12-17 19:46:26', '8mR9wNYd', '7633857'), + (60, 2881, 'attending', '2024-10-29 03:20:35', '2025-12-17 19:46:26', '8mR9wNYd', '7644047'), + (60, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '8mR9wNYd', '7685613'), + (60, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '8mR9wNYd', '7688194'), + (60, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '8mR9wNYd', '7688196'), + (60, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '8mR9wNYd', '7688289'), + (60, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '8mR9wNYd', '7692763'), + (60, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '8mR9wNYd', '7697552'), + (60, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '8mR9wNYd', '7699878'), + (60, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '8mR9wNYd', '7704043'), + (60, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '8mR9wNYd', '7712467'), + (60, 2926, 'attending', '2024-12-07 21:58:52', '2025-12-17 19:46:21', '8mR9wNYd', '7713585'), + (60, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '8mR9wNYd', '7713586'), + (60, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '8mR9wNYd', '7738518'), + (60, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '8mR9wNYd', '7750632'), + (60, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '8mR9wNYd', '7750636'), + (60, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '8mR9wNYd', '7796540'), + (60, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '8mR9wNYd', '7796541'), + (60, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '8mR9wNYd', '7796542'), + (60, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '8mR9wNYd', '7825913'), + (60, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '8mR9wNYd', '7826209'), + (60, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '8mR9wNYd', '7834742'), + (60, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '8mR9wNYd', '7842108'), + (60, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '8mR9wNYd', '7842902'), + (60, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '8mR9wNYd', '7842903'), + (60, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '8mR9wNYd', '7842904'), + (60, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '8mR9wNYd', '7842905'), + (60, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '8mR9wNYd', '7855719'), + (60, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '8mR9wNYd', '7860683'), + (60, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '8mR9wNYd', '7860684'), + (60, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '8mR9wNYd', '7866095'), + (60, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '8mR9wNYd', '7869170'), + (60, 3014, 'attending', '2025-04-01 17:20:47', '2025-12-17 19:46:19', '8mR9wNYd', '7869185'), + (60, 3015, 'attending', '2025-04-21 16:31:35', '2025-12-17 19:46:20', '8mR9wNYd', '7869186'), + (60, 3016, 'attending', '2025-04-16 13:18:55', '2025-12-17 19:46:20', '8mR9wNYd', '7869187'), + (60, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '8mR9wNYd', '7869188'), + (60, 3018, 'attending', '2025-04-09 20:33:10', '2025-12-17 19:46:20', '8mR9wNYd', '7869189'), + (60, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '8mR9wNYd', '7869201'), + (60, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '8mR9wNYd', '7877465'), + (60, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '8mR9wNYd', '7878570'), + (60, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '8mR9wNYd', '7888250'), + (60, 3088, 'maybe', '2025-06-12 14:42:46', '2025-12-17 19:46:15', '8mR9wNYd', '7904777'), + (60, 3094, 'maybe', '2025-05-10 12:55:02', '2025-12-17 19:46:21', '8mR9wNYd', '8342292'), + (60, 3095, 'attending', '2025-04-29 14:21:22', '2025-12-17 19:46:20', '8mR9wNYd', '8342293'), + (60, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '8mR9wNYd', '8349164'), + (60, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '8mR9wNYd', '8349545'), + (60, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '8mR9wNYd', '8353584'), + (60, 3131, 'not_attending', '2025-05-15 12:41:49', '2025-12-17 19:46:21', '8mR9wNYd', '8368028'), + (60, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '8mR9wNYd', '8368029'), + (60, 3133, 'maybe', '2025-05-29 14:53:43', '2025-12-17 19:46:14', '8mR9wNYd', '8368030'), + (60, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '8mR9wNYd', '8388462'), + (60, 3150, 'attending', '2025-06-21 16:32:48', '2025-12-17 19:46:15', '8mR9wNYd', '8393174'), + (60, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '8mR9wNYd', '8400273'), + (60, 3154, 'attending', '2025-06-28 18:06:03', '2025-12-17 19:46:15', '8mR9wNYd', '8400274'), + (60, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '8mR9wNYd', '8400275'), + (60, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '8mR9wNYd', '8400276'), + (60, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '8mR9wNYd', '8404977'), + (60, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '8mR9wNYd', '8430783'), + (60, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '8mR9wNYd', '8430784'), + (60, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '8mR9wNYd', '8430799'), + (60, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '8mR9wNYd', '8430800'), + (60, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '8mR9wNYd', '8430801'), + (60, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '8mR9wNYd', '8438709'), + (60, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '8mR9wNYd', '8457738'), + (60, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '8mR9wNYd', '8459566'), + (60, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '8mR9wNYd', '8459567'), + (60, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '8mR9wNYd', '8461032'), + (60, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '8mR9wNYd', '8477877'), + (60, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '8mR9wNYd', '8485688'), + (60, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '8mR9wNYd', '8490587'), + (60, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '8mR9wNYd', '8493552'), + (60, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '8mR9wNYd', '8493553'), + (60, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '8mR9wNYd', '8493554'), + (60, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '8mR9wNYd', '8493555'), + (60, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '8mR9wNYd', '8493556'), + (60, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '8mR9wNYd', '8493557'), + (60, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '8mR9wNYd', '8493558'), + (60, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '8mR9wNYd', '8493559'), + (60, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '8mR9wNYd', '8493560'), + (60, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '8mR9wNYd', '8493561'), + (60, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '8mR9wNYd', '8493572'), + (60, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '8mR9wNYd', '8540725'), + (60, 3305, 'attending', '2025-12-06 20:19:17', '2025-12-17 19:46:11', '8mR9wNYd', '8550025'), + (60, 3306, 'attending', '2025-12-13 18:55:19', '2025-12-17 19:46:11', '8mR9wNYd', '8550026'), + (60, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '8mR9wNYd', '8555421'), + (61, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOpMqqEm', '5630967'), + (61, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOpMqqEm', '5630968'), + (61, 1727, 'attending', '2022-11-28 01:58:09', '2025-12-17 19:47:16', 'dOpMqqEm', '5630969'), + (61, 1744, 'maybe', '2022-11-23 16:42:10', '2025-12-17 19:47:16', 'dOpMqqEm', '5642818'), + (61, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOpMqqEm', '5670445'), + (61, 1784, 'not_attending', '2022-11-16 19:58:39', '2025-12-17 19:47:16', 'dOpMqqEm', '5699760'), + (61, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOpMqqEm', '5741601'), + (61, 1795, 'attending', '2022-11-16 18:40:21', '2025-12-17 19:47:16', 'dOpMqqEm', '5754366'), + (61, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOpMqqEm', '5763458'), + (61, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOpMqqEm', '5774172'), + (61, 1826, 'attending', '2022-11-28 02:00:09', '2025-12-17 19:47:04', 'dOpMqqEm', '5776768'), + (61, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOpMqqEm', '5818247'), + (61, 1834, 'maybe', '2022-12-10 18:12:57', '2025-12-17 19:47:17', 'dOpMqqEm', '5819470'), + (61, 1835, 'maybe', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOpMqqEm', '5819471'), + (61, 1839, 'attending', '2022-12-06 04:37:28', '2025-12-17 19:47:04', 'dOpMqqEm', '5821920'), + (61, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOpMqqEm', '5827739'), + (61, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOpMqqEm', '5844306'), + (61, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOpMqqEm', '5850159'), + (61, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOpMqqEm', '5858999'), + (61, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOpMqqEm', '5871984'), + (61, 1861, 'maybe', '2023-01-17 16:10:08', '2025-12-17 19:47:05', 'dOpMqqEm', '5876354'), + (61, 1864, 'attending', '2023-01-17 04:44:23', '2025-12-17 19:47:05', 'dOpMqqEm', '5879675'), + (61, 1865, 'attending', '2023-01-26 12:02:56', '2025-12-17 19:47:06', 'dOpMqqEm', '5879676'), + (61, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dOpMqqEm', '5880939'), + (61, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dOpMqqEm', '5880940'), + (61, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dOpMqqEm', '5880942'), + (61, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dOpMqqEm', '5880943'), + (61, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOpMqqEm', '5887890'), + (61, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOpMqqEm', '5888598'), + (61, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOpMqqEm', '5893260'), + (61, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dOpMqqEm', '5899826'), + (61, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dOpMqqEm', '5900199'), + (61, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dOpMqqEm', '5900200'), + (61, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOpMqqEm', '5900202'), + (61, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOpMqqEm', '5900203'), + (61, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dOpMqqEm', '5901108'), + (61, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dOpMqqEm', '5901126'), + (61, 1897, 'attending', '2023-02-07 12:19:03', '2025-12-17 19:47:07', 'dOpMqqEm', '5901128'), + (61, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dOpMqqEm', '5909655'), + (61, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dOpMqqEm', '5910522'), + (61, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dOpMqqEm', '5910526'), + (61, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dOpMqqEm', '5910528'), + (61, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dOpMqqEm', '5916219'), + (61, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dOpMqqEm', '5936234'), + (61, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dOpMqqEm', '5958351'), + (61, 1936, 'attending', '2023-02-26 00:16:58', '2025-12-17 19:47:08', 'dOpMqqEm', '5959397'), + (61, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dOpMqqEm', '5959751'), + (61, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dOpMqqEm', '5959755'), + (61, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dOpMqqEm', '5960055'), + (61, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dOpMqqEm', '5961684'), + (61, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dOpMqqEm', '5962132'), + (61, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dOpMqqEm', '5962133'), + (61, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dOpMqqEm', '5962134'), + (61, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dOpMqqEm', '5962317'), + (61, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dOpMqqEm', '5962318'), + (61, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dOpMqqEm', '5965933'), + (61, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dOpMqqEm', '5967014'), + (61, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dOpMqqEm', '5972815'), + (61, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dOpMqqEm', '5974016'), + (61, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dOpMqqEm', '5981515'), + (61, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOpMqqEm', '5993516'), + (61, 1973, 'maybe', '2023-03-18 14:16:32', '2025-12-17 19:46:56', 'dOpMqqEm', '5993777'), + (61, 1974, 'maybe', '2023-03-30 20:50:03', '2025-12-17 19:46:57', 'dOpMqqEm', '5993778'), + (61, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOpMqqEm', '5998939'), + (61, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOpMqqEm', '6028191'), + (61, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOpMqqEm', '6040066'), + (61, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOpMqqEm', '6042717'), + (61, 1986, 'maybe', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOpMqqEm', '6044838'), + (61, 1987, 'maybe', '2023-04-18 16:05:24', '2025-12-17 19:47:00', 'dOpMqqEm', '6044839'), + (61, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOpMqqEm', '6045684'), + (61, 1992, 'maybe', '2023-04-01 15:22:29', '2025-12-17 19:46:58', 'dOpMqqEm', '6048742'), + (61, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dOpMqqEm', '6050104'), + (61, 1999, 'maybe', '2023-04-18 16:05:38', '2025-12-17 19:47:00', 'dOpMqqEm', '6052057'), + (61, 2002, 'maybe', '2023-04-28 21:43:05', '2025-12-17 19:47:01', 'dOpMqqEm', '6052605'), + (61, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOpMqqEm', '6053195'), + (61, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOpMqqEm', '6053198'), + (61, 2008, 'maybe', '2023-04-07 16:42:47', '2025-12-17 19:46:58', 'dOpMqqEm', '6055808'), + (61, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOpMqqEm', '6056085'), + (61, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOpMqqEm', '6056916'), + (61, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOpMqqEm', '6059290'), + (61, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOpMqqEm', '6060328'), + (61, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOpMqqEm', '6061037'), + (61, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOpMqqEm', '6061039'), + (61, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOpMqqEm', '6067245'), + (61, 2026, 'attending', '2023-04-24 14:03:18', '2025-12-17 19:47:01', 'dOpMqqEm', '6068078'), + (61, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOpMqqEm', '6068094'), + (61, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOpMqqEm', '6068252'), + (61, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOpMqqEm', '6068253'), + (61, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOpMqqEm', '6068254'), + (61, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dOpMqqEm', '6068280'), + (61, 2032, 'attending', '2023-06-02 17:39:22', '2025-12-17 19:47:04', 'dOpMqqEm', '6068281'), + (61, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOpMqqEm', '6069093'), + (61, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOpMqqEm', '6072528'), + (61, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOpMqqEm', '6079840'), + (61, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOpMqqEm', '6083398'), + (61, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dOpMqqEm', '6093504'), + (61, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOpMqqEm', '6097414'), + (61, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOpMqqEm', '6097442'), + (61, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOpMqqEm', '6097684'), + (61, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOpMqqEm', '6098762'), + (61, 2064, 'maybe', '2023-06-24 15:14:23', '2025-12-17 19:46:50', 'dOpMqqEm', '6099988'), + (61, 2065, 'attending', '2023-06-15 23:48:50', '2025-12-17 19:46:49', 'dOpMqqEm', '6101169'), + (61, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOpMqqEm', '6101361'), + (61, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOpMqqEm', '6101362'), + (61, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dOpMqqEm', '6103752'), + (61, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOpMqqEm', '6107314'), + (61, 2085, 'attending', '2023-05-30 23:03:03', '2025-12-17 19:47:04', 'dOpMqqEm', '6118068'), + (61, 2087, 'attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOpMqqEm', '6120034'), + (61, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dOpMqqEm', '6136733'), + (61, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOpMqqEm', '6137989'), + (61, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOpMqqEm', '6150864'), + (61, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOpMqqEm', '6155491'), + (61, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOpMqqEm', '6164417'), + (61, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOpMqqEm', '6166388'), + (61, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOpMqqEm', '6176439'), + (61, 2122, 'attending', '2023-06-27 22:03:23', '2025-12-17 19:46:51', 'dOpMqqEm', '6176476'), + (61, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dOpMqqEm', '6180853'), + (61, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOpMqqEm', '6182410'), + (61, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOpMqqEm', '6185812'), + (61, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOpMqqEm', '6187651'), + (61, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOpMqqEm', '6187963'), + (61, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOpMqqEm', '6187964'), + (61, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOpMqqEm', '6187966'), + (61, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOpMqqEm', '6187967'), + (61, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOpMqqEm', '6187969'), + (61, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOpMqqEm', '6334878'), + (61, 2152, 'maybe', '2023-07-14 21:43:35', '2025-12-17 19:46:52', 'dOpMqqEm', '6337021'), + (61, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOpMqqEm', '6337236'), + (61, 2155, 'maybe', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOpMqqEm', '6337970'), + (61, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOpMqqEm', '6338308'), + (61, 2159, 'attending', '2023-07-19 14:55:59', '2025-12-17 19:46:53', 'dOpMqqEm', '6338355'), + (61, 2160, 'attending', '2023-07-29 14:37:12', '2025-12-17 19:46:54', 'dOpMqqEm', '6338358'), + (61, 2161, 'attending', '2023-07-15 19:11:38', '2025-12-17 19:46:52', 'dOpMqqEm', '6340748'), + (61, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dOpMqqEm', '6340845'), + (61, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOpMqqEm', '6341710'), + (61, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOpMqqEm', '6342044'), + (61, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOpMqqEm', '6342298'), + (61, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOpMqqEm', '6343294'), + (61, 2175, 'not_attending', '2023-07-22 18:59:02', '2025-12-17 19:46:53', 'dOpMqqEm', '6346982'), + (61, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOpMqqEm', '6347034'), + (61, 2177, 'attending', '2023-08-11 19:36:58', '2025-12-17 19:46:55', 'dOpMqqEm', '6347053'), + (61, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOpMqqEm', '6347056'), + (61, 2184, 'attending', '2023-07-29 20:37:46', '2025-12-17 19:46:54', 'dOpMqqEm', '6353825'), + (61, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOpMqqEm', '6353830'), + (61, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOpMqqEm', '6353831'), + (61, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOpMqqEm', '6357867'), + (61, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOpMqqEm', '6358652'), + (61, 2196, 'attending', '2023-08-29 23:11:00', '2025-12-17 19:46:56', 'dOpMqqEm', '6359398'), + (61, 2197, 'attending', '2023-09-13 03:13:42', '2025-12-17 19:46:44', 'dOpMqqEm', '6359399'), + (61, 2198, 'attending', '2023-09-13 03:13:45', '2025-12-17 19:46:45', 'dOpMqqEm', '6359400'), + (61, 2200, 'attending', '2023-08-10 23:02:56', '2025-12-17 19:46:55', 'dOpMqqEm', '6359850'), + (61, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'dOpMqqEm', '6359940'), + (61, 2204, 'attending', '2023-08-16 14:06:46', '2025-12-17 19:46:55', 'dOpMqqEm', '6361542'), + (61, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOpMqqEm', '6361709'), + (61, 2209, 'attending', '2023-08-23 14:13:43', '2025-12-17 19:46:55', 'dOpMqqEm', '6361710'), + (61, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOpMqqEm', '6361711'), + (61, 2211, 'attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOpMqqEm', '6361712'), + (61, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOpMqqEm', '6361713'), + (61, 2214, 'attending', '2023-08-12 02:50:01', '2025-12-17 19:46:55', 'dOpMqqEm', '6363218'), + (61, 2218, 'attending', '2023-08-16 23:56:33', '2025-12-17 19:46:55', 'dOpMqqEm', '6367308'), + (61, 2220, 'attending', '2023-09-04 22:55:32', '2025-12-17 19:46:56', 'dOpMqqEm', '6367310'), + (61, 2228, 'not_attending', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'dOpMqqEm', '6372777'), + (61, 2232, 'attending', '2023-08-22 23:29:42', '2025-12-17 19:46:55', 'dOpMqqEm', '6374818'), + (61, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOpMqqEm', '6382573'), + (61, 2239, 'attending', '2023-09-01 18:32:10', '2025-12-17 19:46:56', 'dOpMqqEm', '6387592'), + (61, 2240, 'attending', '2023-09-08 18:13:54', '2025-12-17 19:46:56', 'dOpMqqEm', '6388603'), + (61, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOpMqqEm', '6388604'), + (61, 2242, 'attending', '2023-09-23 05:41:05', '2025-12-17 19:46:45', 'dOpMqqEm', '6388606'), + (61, 2243, 'maybe', '2023-09-07 21:31:20', '2025-12-17 19:46:56', 'dOpMqqEm', '6393686'), + (61, 2244, 'attending', '2023-09-08 06:38:57', '2025-12-17 19:46:44', 'dOpMqqEm', '6393700'), + (61, 2245, 'attending', '2023-09-08 06:37:03', '2025-12-17 19:46:45', 'dOpMqqEm', '6393703'), + (61, 2247, 'attending', '2023-09-06 20:45:23', '2025-12-17 19:46:56', 'dOpMqqEm', '6394628'), + (61, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOpMqqEm', '6394629'), + (61, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOpMqqEm', '6394631'), + (61, 2253, 'attending', '2023-09-30 17:05:53', '2025-12-17 19:46:45', 'dOpMqqEm', '6401811'), + (61, 2257, 'attending', '2023-09-16 21:58:20', '2025-12-17 19:46:44', 'dOpMqqEm', '6408068'), + (61, 2263, 'attending', '2023-09-25 22:45:22', '2025-12-17 19:46:45', 'dOpMqqEm', '6429351'), + (61, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOpMqqEm', '6440863'), + (61, 2270, 'attending', '2023-10-02 22:42:13', '2025-12-17 19:46:46', 'dOpMqqEm', '6443067'), + (61, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOpMqqEm', '6445440'), + (61, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOpMqqEm', '6453951'), + (61, 2283, 'attending', '2023-10-09 18:15:49', '2025-12-17 19:46:46', 'dOpMqqEm', '6455503'), + (61, 2284, 'attending', '2023-10-11 00:08:31', '2025-12-17 19:46:46', 'dOpMqqEm', '6460928'), + (61, 2285, 'attending', '2023-10-16 02:07:34', '2025-12-17 19:46:47', 'dOpMqqEm', '6460929'), + (61, 2286, 'attending', '2023-11-30 00:41:37', '2025-12-17 19:46:48', 'dOpMqqEm', '6460930'), + (61, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOpMqqEm', '6461696'), + (61, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOpMqqEm', '6462129'), + (61, 2290, 'attending', '2023-10-18 13:08:22', '2025-12-17 19:46:46', 'dOpMqqEm', '6462214'), + (61, 2291, 'maybe', '2023-10-19 02:00:23', '2025-12-17 19:46:46', 'dOpMqqEm', '6462215'), + (61, 2293, 'attending', '2023-10-11 21:27:46', '2025-12-17 19:46:46', 'dOpMqqEm', '6463218'), + (61, 2299, 'attending', '2023-10-18 22:42:11', '2025-12-17 19:46:46', 'dOpMqqEm', '6472181'), + (61, 2303, 'attending', '2023-10-27 02:17:37', '2025-12-17 19:46:47', 'dOpMqqEm', '6482691'), + (61, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOpMqqEm', '6482693'), + (61, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dOpMqqEm', '6484200'), + (61, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOpMqqEm', '6484680'), + (61, 2310, 'attending', '2023-11-05 02:36:22', '2025-12-17 19:46:47', 'dOpMqqEm', '6487709'), + (61, 2314, 'attending', '2023-10-29 20:53:08', '2025-12-17 19:46:47', 'dOpMqqEm', '6493665'), + (61, 2315, 'attending', '2023-10-29 20:53:22', '2025-12-17 19:46:47', 'dOpMqqEm', '6493666'), + (61, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOpMqqEm', '6507741'), + (61, 2320, 'attending', '2023-10-30 20:32:05', '2025-12-17 19:46:47', 'dOpMqqEm', '6508647'), + (61, 2322, 'attending', '2023-11-13 06:45:47', '2025-12-17 19:46:48', 'dOpMqqEm', '6514659'), + (61, 2323, 'attending', '2023-11-27 04:13:51', '2025-12-17 19:46:48', 'dOpMqqEm', '6514660'), + (61, 2324, 'attending', '2023-12-07 22:29:57', '2025-12-17 19:46:49', 'dOpMqqEm', '6514662'), + (61, 2325, 'attending', '2023-12-07 22:29:59', '2025-12-17 19:46:36', 'dOpMqqEm', '6514663'), + (61, 2331, 'attending', '2023-11-09 04:19:36', '2025-12-17 19:46:47', 'dOpMqqEm', '6518640'), + (61, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOpMqqEm', '6519103'), + (61, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOpMqqEm', '6535681'), + (61, 2340, 'attending', '2023-11-21 18:23:00', '2025-12-17 19:46:48', 'dOpMqqEm', '6540279'), + (61, 2345, 'attending', '2023-11-29 22:23:45', '2025-12-17 19:46:48', 'dOpMqqEm', '6582414'), + (61, 2350, 'attending', '2023-11-21 02:01:13', '2025-12-17 19:46:48', 'dOpMqqEm', '6584352'), + (61, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOpMqqEm', '6584747'), + (61, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOpMqqEm', '6587097'), + (61, 2353, 'maybe', '2023-11-29 23:20:10', '2025-12-17 19:46:48', 'dOpMqqEm', '6588894'), + (61, 2355, 'maybe', '2023-12-01 00:44:06', '2025-12-17 19:46:49', 'dOpMqqEm', '6593339'), + (61, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOpMqqEm', '6609022'), + (61, 2364, 'attending', '2023-12-08 14:09:30', '2025-12-17 19:46:49', 'dOpMqqEm', '6613011'), + (61, 2367, 'attending', '2023-12-09 22:32:29', '2025-12-17 19:46:49', 'dOpMqqEm', '6620890'), + (61, 2371, 'attending', '2023-12-13 21:55:50', '2025-12-17 19:46:36', 'dOpMqqEm', '6624495'), + (61, 2373, 'attending', '2024-01-10 23:00:54', '2025-12-17 19:46:38', 'dOpMqqEm', '6632678'), + (61, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOpMqqEm', '6632757'), + (61, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOpMqqEm', '6644187'), + (61, 2380, 'attending', '2023-12-31 02:02:02', '2025-12-17 19:46:37', 'dOpMqqEm', '6645105'), + (61, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOpMqqEm', '6648951'), + (61, 2387, 'attending', '2024-01-03 00:46:25', '2025-12-17 19:46:37', 'dOpMqqEm', '6648952'), + (61, 2388, 'attending', '2024-01-04 03:36:44', '2025-12-17 19:46:37', 'dOpMqqEm', '6649244'), + (61, 2391, 'attending', '2024-01-08 00:43:26', '2025-12-17 19:46:37', 'dOpMqqEm', '6654138'), + (61, 2392, 'attending', '2024-01-06 16:19:15', '2025-12-17 19:46:37', 'dOpMqqEm', '6654412'), + (61, 2394, 'attending', '2024-01-06 16:19:16', '2025-12-17 19:46:38', 'dOpMqqEm', '6654470'), + (61, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOpMqqEm', '6655401'), + (61, 2399, 'attending', '2024-01-08 00:43:32', '2025-12-17 19:46:37', 'dOpMqqEm', '6657583'), + (61, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOpMqqEm', '6661585'), + (61, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOpMqqEm', '6661588'), + (61, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOpMqqEm', '6661589'), + (61, 2406, 'attending', '2024-01-16 01:47:53', '2025-12-17 19:46:40', 'dOpMqqEm', '6692344'), + (61, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOpMqqEm', '6699906'), + (61, 2408, 'attending', '2024-01-15 05:16:54', '2025-12-17 19:46:40', 'dOpMqqEm', '6699907'), + (61, 2409, 'attending', '2024-01-15 05:16:56', '2025-12-17 19:46:41', 'dOpMqqEm', '6699909'), + (61, 2410, 'attending', '2024-01-15 05:16:58', '2025-12-17 19:46:41', 'dOpMqqEm', '6699911'), + (61, 2411, 'attending', '2024-02-03 16:27:15', '2025-12-17 19:46:41', 'dOpMqqEm', '6699913'), + (61, 2412, 'attending', '2024-02-18 22:24:22', '2025-12-17 19:46:43', 'dOpMqqEm', '6700717'), + (61, 2413, 'maybe', '2024-02-18 19:56:36', '2025-12-17 19:46:42', 'dOpMqqEm', '6700719'), + (61, 2414, 'maybe', '2024-01-18 01:18:31', '2025-12-17 19:46:40', 'dOpMqqEm', '6701000'), + (61, 2415, 'attending', '2024-01-18 01:18:35', '2025-12-17 19:46:40', 'dOpMqqEm', '6701001'), + (61, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOpMqqEm', '6701109'), + (61, 2421, 'attending', '2024-01-26 01:09:53', '2025-12-17 19:46:40', 'dOpMqqEm', '6704598'), + (61, 2423, 'attending', '2024-01-19 01:26:02', '2025-12-17 19:46:40', 'dOpMqqEm', '6705141'), + (61, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOpMqqEm', '6705219'), + (61, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOpMqqEm', '6710153'), + (61, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOpMqqEm', '6711552'), + (61, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dOpMqqEm', '6711553'), + (61, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOpMqqEm', '6722688'), + (61, 2438, 'attending', '2024-02-07 23:26:11', '2025-12-17 19:46:41', 'dOpMqqEm', '6730201'), + (61, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOpMqqEm', '6730620'), + (61, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOpMqqEm', '6730642'), + (61, 2444, 'attending', '2024-02-04 14:48:19', '2025-12-17 19:46:41', 'dOpMqqEm', '6734367'), + (61, 2445, 'attending', '2024-02-04 14:48:21', '2025-12-17 19:46:41', 'dOpMqqEm', '6734368'), + (61, 2446, 'attending', '2024-03-01 03:58:17', '2025-12-17 19:46:43', 'dOpMqqEm', '6734369'), + (61, 2447, 'attending', '2024-03-13 14:57:23', '2025-12-17 19:46:32', 'dOpMqqEm', '6734370'), + (61, 2448, 'attending', '2024-03-26 14:43:49', '2025-12-17 19:46:33', 'dOpMqqEm', '6734371'), + (61, 2450, 'attending', '2024-02-05 18:28:22', '2025-12-17 19:46:41', 'dOpMqqEm', '6738807'), + (61, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOpMqqEm', '6740364'), + (61, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOpMqqEm', '6743829'), + (61, 2466, 'maybe', '2024-02-14 03:42:19', '2025-12-17 19:46:41', 'dOpMqqEm', '7026777'), + (61, 2467, 'maybe', '2024-02-25 04:16:27', '2025-12-17 19:46:43', 'dOpMqqEm', '7029987'), + (61, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOpMqqEm', '7030380'), + (61, 2472, 'attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOpMqqEm', '7033677'), + (61, 2474, 'attending', '2024-02-21 03:23:18', '2025-12-17 19:46:43', 'dOpMqqEm', '7035415'), + (61, 2478, 'attending', '2024-02-24 22:21:05', '2025-12-17 19:46:43', 'dOpMqqEm', '7036478'), + (61, 2480, 'maybe', '2024-02-25 04:16:35', '2025-12-17 19:46:43', 'dOpMqqEm', '7042160'), + (61, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOpMqqEm', '7044715'), + (61, 2484, 'attending', '2024-03-01 03:58:47', '2025-12-17 19:46:43', 'dOpMqqEm', '7046836'), + (61, 2489, 'attending', '2024-02-28 05:31:07', '2025-12-17 19:46:43', 'dOpMqqEm', '7050161'), + (61, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOpMqqEm', '7050318'), + (61, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOpMqqEm', '7050319'), + (61, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOpMqqEm', '7050322'), + (61, 2496, 'attending', '2024-03-02 22:32:54', '2025-12-17 19:46:43', 'dOpMqqEm', '7055967'), + (61, 2498, 'attending', '2024-03-19 04:36:08', '2025-12-17 19:46:33', 'dOpMqqEm', '7057662'), + (61, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOpMqqEm', '7057804'), + (61, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dOpMqqEm', '7059866'), + (61, 2505, 'attending', '2024-03-09 17:30:30', '2025-12-17 19:46:33', 'dOpMqqEm', '7069163'), + (61, 2507, 'attending', '2024-03-12 15:21:38', '2025-12-17 19:46:33', 'dOpMqqEm', '7072824'), + (61, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOpMqqEm', '7074348'), + (61, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dOpMqqEm', '7074364'), + (61, 2529, 'attending', '2024-05-22 23:44:14', '2025-12-17 19:46:35', 'dOpMqqEm', '7074369'), + (61, 2534, 'attending', '2024-03-13 16:18:33', '2025-12-17 19:46:32', 'dOpMqqEm', '7076875'), + (61, 2537, 'maybe', '2024-03-23 01:21:52', '2025-12-17 19:46:33', 'dOpMqqEm', '7085484'), + (61, 2538, 'attending', '2024-03-19 06:10:48', '2025-12-17 19:46:33', 'dOpMqqEm', '7085485'), + (61, 2539, 'attending', '2024-03-31 02:09:11', '2025-12-17 19:46:33', 'dOpMqqEm', '7085486'), + (61, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOpMqqEm', '7089267'), + (61, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOpMqqEm', '7098747'), + (61, 2553, 'attending', '2024-03-29 18:47:25', '2025-12-17 19:46:33', 'dOpMqqEm', '7113468'), + (61, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOpMqqEm', '7114856'), + (61, 2555, 'attending', '2024-04-02 21:31:57', '2025-12-17 19:46:33', 'dOpMqqEm', '7114951'), + (61, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOpMqqEm', '7114955'), + (61, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOpMqqEm', '7114956'), + (61, 2558, 'attending', '2024-04-03 01:09:16', '2025-12-17 19:46:35', 'dOpMqqEm', '7114957'), + (61, 2563, 'maybe', '2024-04-08 21:54:55', '2025-12-17 19:46:33', 'dOpMqqEm', '7134734'), + (61, 2564, 'maybe', '2024-04-07 12:40:50', '2025-12-17 19:46:33', 'dOpMqqEm', '7134735'), + (61, 2566, 'maybe', '2024-04-12 04:16:55', '2025-12-17 19:46:34', 'dOpMqqEm', '7140664'), + (61, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOpMqqEm', '7153615'), + (61, 2571, 'attending', '2024-04-08 17:47:55', '2025-12-17 19:46:33', 'dOpMqqEm', '7159484'), + (61, 2572, 'attending', '2024-04-13 19:27:14', '2025-12-17 19:46:33', 'dOpMqqEm', '7159522'), + (61, 2573, 'maybe', '2024-04-14 02:09:11', '2025-12-17 19:46:34', 'dOpMqqEm', '7160612'), + (61, 2575, 'attending', '2024-04-11 11:25:56', '2025-12-17 19:46:33', 'dOpMqqEm', '7164534'), + (61, 2580, 'maybe', '2024-04-11 22:55:32', '2025-12-17 19:46:34', 'dOpMqqEm', '7167272'), + (61, 2585, 'maybe', '2024-04-24 13:55:42', '2025-12-17 19:46:34', 'dOpMqqEm', '7175828'), + (61, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOpMqqEm', '7178446'), + (61, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOpMqqEm', '7220467'), + (61, 2604, 'attending', '2024-05-29 01:14:52', '2025-12-17 19:46:36', 'dOpMqqEm', '7225670'), + (61, 2609, 'attending', '2024-05-06 14:02:45', '2025-12-17 19:46:35', 'dOpMqqEm', '7240354'), + (61, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOpMqqEm', '7251633'), + (61, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dOpMqqEm', '7263048'), + (61, 2626, 'attending', '2024-05-16 01:16:57', '2025-12-17 19:46:35', 'dOpMqqEm', '7264723'), + (61, 2627, 'attending', '2024-05-21 22:47:10', '2025-12-17 19:46:35', 'dOpMqqEm', '7264724'), + (61, 2628, 'attending', '2024-05-30 02:03:51', '2025-12-17 19:46:36', 'dOpMqqEm', '7264725'), + (61, 2629, 'attending', '2024-06-03 02:14:50', '2025-12-17 19:46:28', 'dOpMqqEm', '7264726'), + (61, 2630, 'attending', '2024-05-15 19:34:50', '2025-12-17 19:46:35', 'dOpMqqEm', '7264801'), + (61, 2644, 'attending', '2024-05-19 13:44:24', '2025-12-17 19:46:35', 'dOpMqqEm', '7279039'), + (61, 2647, 'attending', '2024-06-03 17:53:11', '2025-12-17 19:46:28', 'dOpMqqEm', '7282057'), + (61, 2653, 'attending', '2024-05-25 21:00:47', '2025-12-17 19:46:35', 'dOpMqqEm', '7289186'), + (61, 2654, 'attending', '2024-05-28 00:07:11', '2025-12-17 19:46:36', 'dOpMqqEm', '7291219'), + (61, 2659, 'attending', '2024-06-01 21:54:55', '2025-12-17 19:46:36', 'dOpMqqEm', '7299599'), + (61, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOpMqqEm', '7302674'), + (61, 2664, 'attending', '2024-06-04 14:38:02', '2025-12-17 19:46:36', 'dOpMqqEm', '7306358'), + (61, 2665, 'attending', '2024-06-04 14:53:04', '2025-12-17 19:46:36', 'dOpMqqEm', '7306370'), + (61, 2666, 'attending', '2024-06-05 13:56:28', '2025-12-17 19:46:36', 'dOpMqqEm', '7307775'), + (61, 2668, 'maybe', '2024-06-07 03:05:11', '2025-12-17 19:46:36', 'dOpMqqEm', '7308821'), + (61, 2678, 'maybe', '2024-06-15 03:39:03', '2025-12-17 19:46:28', 'dOpMqqEm', '7319489'), + (61, 2679, 'attending', '2024-06-16 23:17:42', '2025-12-17 19:46:29', 'dOpMqqEm', '7319490'), + (61, 2687, 'attending', '2024-06-11 19:36:27', '2025-12-17 19:46:28', 'dOpMqqEm', '7324019'), + (61, 2688, 'attending', '2024-06-24 03:07:38', '2025-12-17 19:46:29', 'dOpMqqEm', '7324073'), + (61, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dOpMqqEm', '7324074'), + (61, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dOpMqqEm', '7324075'), + (61, 2691, 'attending', '2024-07-18 02:41:27', '2025-12-17 19:46:30', 'dOpMqqEm', '7324076'), + (61, 2692, 'attending', '2024-07-27 05:40:37', '2025-12-17 19:46:30', 'dOpMqqEm', '7324077'), + (61, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dOpMqqEm', '7324078'), + (61, 2694, 'attending', '2024-08-07 22:54:01', '2025-12-17 19:46:31', 'dOpMqqEm', '7324079'), + (61, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dOpMqqEm', '7324082'), + (61, 2698, 'attending', '2024-09-04 14:56:28', '2025-12-17 19:46:24', 'dOpMqqEm', '7324083'), + (61, 2700, 'attending', '2024-06-14 18:24:34', '2025-12-17 19:46:28', 'dOpMqqEm', '7324388'), + (61, 2705, 'attending', '2024-06-21 01:32:19', '2025-12-17 19:46:29', 'dOpMqqEm', '7324944'), + (61, 2707, 'attending', '2024-06-17 20:06:30', '2025-12-17 19:46:28', 'dOpMqqEm', '7324952'), + (61, 2711, 'attending', '2024-07-19 17:32:53', '2025-12-17 19:46:30', 'dOpMqqEm', '7326524'), + (61, 2712, 'attending', '2024-08-02 14:14:15', '2025-12-17 19:46:31', 'dOpMqqEm', '7326525'), + (61, 2720, 'maybe', '2024-06-18 21:37:33', '2025-12-17 19:46:28', 'dOpMqqEm', '7331436'), + (61, 2721, 'maybe', '2024-06-21 01:31:50', '2025-12-17 19:46:29', 'dOpMqqEm', '7331456'), + (61, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dOpMqqEm', '7331457'), + (61, 2723, 'attending', '2024-06-21 19:25:47', '2025-12-17 19:46:29', 'dOpMqqEm', '7332389'), + (61, 2724, 'attending', '2024-06-26 22:00:29', '2025-12-17 19:46:29', 'dOpMqqEm', '7332562'), + (61, 2737, 'attending', '2024-07-02 22:43:56', '2025-12-17 19:46:29', 'dOpMqqEm', '7344070'), + (61, 2738, 'maybe', '2024-07-05 12:13:41', '2025-12-17 19:46:29', 'dOpMqqEm', '7344085'), + (61, 2745, 'attending', '2024-07-25 20:13:02', '2025-12-17 19:46:30', 'dOpMqqEm', '7348712'), + (61, 2747, 'maybe', '2024-07-17 20:04:51', '2025-12-17 19:46:30', 'dOpMqqEm', '7353587'), + (61, 2749, 'attending', '2024-07-07 20:14:12', '2025-12-17 19:46:29', 'dOpMqqEm', '7355496'), + (61, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dOpMqqEm', '7356752'), + (61, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dOpMqqEm', '7358733'), + (61, 2764, 'attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dOpMqqEm', '7363595'), + (61, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dOpMqqEm', '7363643'), + (61, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dOpMqqEm', '7368606'), + (61, 2776, 'attending', '2024-07-24 16:47:45', '2025-12-17 19:46:30', 'dOpMqqEm', '7370690'), + (61, 2777, 'attending', '2024-07-24 16:47:47', '2025-12-17 19:46:30', 'dOpMqqEm', '7370870'), + (61, 2783, 'attending', '2024-07-29 22:06:56', '2025-12-17 19:46:31', 'dOpMqqEm', '7379699'), + (61, 2784, 'attending', '2024-07-30 16:01:57', '2025-12-17 19:46:31', 'dOpMqqEm', '7380872'), + (61, 2788, 'attending', '2024-08-02 22:44:16', '2025-12-17 19:46:31', 'dOpMqqEm', '7384036'), + (61, 2794, 'not_attending', '2024-08-08 01:51:03', '2025-12-17 19:46:31', 'dOpMqqEm', '7391173'), + (61, 2802, 'attending', '2024-09-02 06:36:32', '2025-12-17 19:46:32', 'dOpMqqEm', '7397463'), + (61, 2806, 'attending', '2024-09-17 14:56:47', '2025-12-17 19:46:25', 'dOpMqqEm', '7404888'), + (61, 2821, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOpMqqEm', '7424275'), + (61, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dOpMqqEm', '7424276'), + (61, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dOpMqqEm', '7432751'), + (61, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dOpMqqEm', '7432752'), + (61, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dOpMqqEm', '7432753'), + (61, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dOpMqqEm', '7432754'), + (61, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dOpMqqEm', '7432755'), + (61, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dOpMqqEm', '7432756'), + (61, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOpMqqEm', '7432758'), + (61, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dOpMqqEm', '7432759'), + (61, 2832, 'attending', '2024-09-11 22:44:11', '2025-12-17 19:46:24', 'dOpMqqEm', '7433324'), + (61, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dOpMqqEm', '7433834'), + (61, 2834, 'attending', '2024-09-10 21:37:44', '2025-12-17 19:46:25', 'dOpMqqEm', '7433852'), + (61, 2844, 'attending', '2024-09-20 20:24:39', '2025-12-17 19:46:25', 'dOpMqqEm', '7450233'), + (61, 2856, 'attending', '2024-10-10 22:16:53', '2025-12-17 19:46:26', 'dOpMqqEm', '7469386'), + (61, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dOpMqqEm', '7470197'), + (61, 2878, 'maybe', '2024-10-16 20:57:05', '2025-12-17 19:46:26', 'dOpMqqEm', '7633857'), + (61, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dOpMqqEm', '7685613'), + (61, 2899, 'attending', '2024-11-07 17:16:51', '2025-12-17 19:46:27', 'dOpMqqEm', '7685616'), + (61, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dOpMqqEm', '7688194'), + (61, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dOpMqqEm', '7688196'), + (61, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dOpMqqEm', '7688289'), + (61, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dOpMqqEm', '7692763'), + (61, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dOpMqqEm', '7697552'), + (61, 2916, 'attending', '2024-11-17 16:58:49', '2025-12-17 19:46:27', 'dOpMqqEm', '7699006'), + (61, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dOpMqqEm', '7699878'), + (61, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dOpMqqEm', '7704043'), + (61, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dOpMqqEm', '7712467'), + (61, 2925, 'attending', '2024-12-08 12:42:17', '2025-12-17 19:46:21', 'dOpMqqEm', '7713584'), + (61, 2926, 'attending', '2024-12-03 20:10:47', '2025-12-17 19:46:21', 'dOpMqqEm', '7713585'), + (61, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dOpMqqEm', '7713586'), + (61, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dOpMqqEm', '7738518'), + (61, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dOpMqqEm', '7750636'), + (61, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dOpMqqEm', '7796540'), + (61, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dOpMqqEm', '7796541'), + (61, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dOpMqqEm', '7796542'), + (61, 2972, 'attending', '2025-01-16 22:06:36', '2025-12-17 19:46:22', 'dOpMqqEm', '7812563'), + (61, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dOpMqqEm', '7825913'), + (61, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dOpMqqEm', '7825920'), + (61, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dOpMqqEm', '7826209'), + (61, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dOpMqqEm', '7834742'), + (61, 2988, 'attending', '2025-02-07 14:33:49', '2025-12-17 19:46:23', 'dOpMqqEm', '7839569'), + (61, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dOpMqqEm', '7842108'), + (61, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dOpMqqEm', '7842902'), + (61, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dOpMqqEm', '7842903'), + (61, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dOpMqqEm', '7842904'), + (61, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dOpMqqEm', '7842905'), + (61, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dOpMqqEm', '7855719'), + (61, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dOpMqqEm', '7860683'), + (61, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dOpMqqEm', '7860684'), + (61, 3010, 'attending', '2025-02-28 23:06:22', '2025-12-17 19:46:18', 'dOpMqqEm', '7864879'), + (61, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dOpMqqEm', '7866095'), + (61, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dOpMqqEm', '7869170'), + (61, 3014, 'attending', '2025-03-26 03:02:11', '2025-12-17 19:46:19', 'dOpMqqEm', '7869185'), + (61, 3015, 'attending', '2025-03-26 03:02:25', '2025-12-17 19:46:20', 'dOpMqqEm', '7869186'), + (61, 3016, 'attending', '2025-03-26 03:02:20', '2025-12-17 19:46:20', 'dOpMqqEm', '7869187'), + (61, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dOpMqqEm', '7869188'), + (61, 3018, 'attending', '2025-03-26 03:02:16', '2025-12-17 19:46:20', 'dOpMqqEm', '7869189'), + (61, 3028, 'attending', '2025-04-20 02:51:45', '2025-12-17 19:46:20', 'dOpMqqEm', '7869199'), + (61, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dOpMqqEm', '7869201'), + (61, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dOpMqqEm', '7877465'), + (61, 3034, 'attending', '2025-03-11 22:18:14', '2025-12-17 19:46:18', 'dOpMqqEm', '7878570'), + (61, 3036, 'attending', '2025-03-13 15:34:16', '2025-12-17 19:46:19', 'dOpMqqEm', '7880952'), + (61, 3039, 'attending', '2025-03-14 03:00:25', '2025-12-17 19:46:19', 'dOpMqqEm', '7881992'), + (61, 3048, 'attending', '2025-04-19 13:32:04', '2025-12-17 19:46:20', 'dOpMqqEm', '7882694'), + (61, 3054, 'maybe', '2025-03-17 00:16:03', '2025-12-17 19:46:19', 'dOpMqqEm', '7884168'), + (61, 3055, 'attending', '2025-03-20 22:36:04', '2025-12-17 19:46:19', 'dOpMqqEm', '7888118'), + (61, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dOpMqqEm', '7888250'), + (61, 3060, 'attending', '2025-03-27 14:13:21', '2025-12-17 19:46:19', 'dOpMqqEm', '7892589'), + (61, 3061, 'attending', '2025-03-27 15:06:03', '2025-12-17 19:46:19', 'dOpMqqEm', '7892590'), + (61, 3071, 'attending', '2025-03-31 20:39:51', '2025-12-17 19:46:19', 'dOpMqqEm', '7895429'), + (61, 3072, 'attending', '2025-04-03 03:52:44', '2025-12-17 19:46:19', 'dOpMqqEm', '7895449'), + (61, 3073, 'attending', '2025-04-03 20:28:01', '2025-12-17 19:46:19', 'dOpMqqEm', '7897303'), + (61, 3075, 'maybe', '2025-04-06 14:43:10', '2025-12-17 19:46:20', 'dOpMqqEm', '7898896'), + (61, 3080, 'attending', '2025-04-06 16:24:04', '2025-12-17 19:46:20', 'dOpMqqEm', '7901441'), + (61, 3084, 'attending', '2025-04-08 19:11:02', '2025-12-17 19:46:20', 'dOpMqqEm', '7903687'), + (61, 3085, 'attending', '2025-04-08 19:11:04', '2025-12-17 19:46:20', 'dOpMqqEm', '7903688'), + (61, 3088, 'attending', '2025-06-03 13:50:06', '2025-12-17 19:46:15', 'dOpMqqEm', '7904777'), + (61, 3090, 'attending', '2025-04-16 00:37:30', '2025-12-17 19:46:20', 'dOpMqqEm', '7914315'), + (61, 3094, 'attending', '2025-05-06 19:35:09', '2025-12-17 19:46:21', 'dOpMqqEm', '8342292'), + (61, 3095, 'attending', '2025-05-03 18:18:25', '2025-12-17 19:46:20', 'dOpMqqEm', '8342293'), + (61, 3096, 'attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dOpMqqEm', '8342987'), + (61, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dOpMqqEm', '8349164'), + (61, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dOpMqqEm', '8349545'), + (61, 3110, 'attending', '2025-04-29 19:52:29', '2025-12-17 19:46:20', 'dOpMqqEm', '8353484'), + (61, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dOpMqqEm', '8353584'), + (61, 3122, 'attending', '2025-05-08 14:24:14', '2025-12-17 19:46:21', 'dOpMqqEm', '8362978'), + (61, 3123, 'attending', '2025-05-08 18:49:23', '2025-12-17 19:46:21', 'dOpMqqEm', '8363523'), + (61, 3127, 'attending', '2025-05-11 03:58:21', '2025-12-17 19:46:21', 'dOpMqqEm', '8365615'), + (61, 3131, 'attending', '2025-05-14 01:27:58', '2025-12-17 19:46:21', 'dOpMqqEm', '8368028'), + (61, 3132, 'attending', '2025-05-19 14:58:14', '2025-12-17 19:46:21', 'dOpMqqEm', '8368029'), + (61, 3133, 'attending', '2025-05-19 14:58:16', '2025-12-17 19:46:14', 'dOpMqqEm', '8368030'), + (61, 3134, 'attending', '2025-05-17 22:23:49', '2025-12-17 19:46:21', 'dOpMqqEm', '8368031'), + (61, 3135, 'attending', '2025-05-17 19:47:01', '2025-12-17 19:46:21', 'dOpMqqEm', '8373126'), + (61, 3137, 'attending', '2025-05-19 14:57:42', '2025-12-17 19:46:21', 'dOpMqqEm', '8374153'), + (61, 3138, 'attending', '2025-05-18 16:48:23', '2025-12-17 19:46:21', 'dOpMqqEm', '8376037'), + (61, 3139, 'attending', '2025-05-24 21:55:59', '2025-12-17 19:46:21', 'dOpMqqEm', '8377425'), + (61, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dOpMqqEm', '8388462'), + (61, 3144, 'attending', '2025-05-30 20:25:04', '2025-12-17 19:46:14', 'dOpMqqEm', '8393073'), + (61, 3150, 'attending', '2025-06-03 13:50:13', '2025-12-17 19:46:15', 'dOpMqqEm', '8393174'), + (61, 3153, 'attending', '2025-06-03 13:49:54', '2025-12-17 19:46:15', 'dOpMqqEm', '8400273'), + (61, 3154, 'attending', '2025-06-26 04:44:07', '2025-12-17 19:46:15', 'dOpMqqEm', '8400274'), + (61, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dOpMqqEm', '8400275'), + (61, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dOpMqqEm', '8400276'), + (61, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dOpMqqEm', '8404977'), + (61, 3173, 'attending', '2025-06-14 17:02:54', '2025-12-17 19:46:15', 'dOpMqqEm', '8410806'), + (61, 3178, 'attending', '2025-06-24 22:05:02', '2025-12-17 19:46:15', 'dOpMqqEm', '8421848'), + (61, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dOpMqqEm', '8430783'), + (61, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dOpMqqEm', '8430784'), + (61, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dOpMqqEm', '8430799'), + (61, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dOpMqqEm', '8430800'), + (61, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dOpMqqEm', '8430801'), + (61, 3188, 'attending', '2025-07-08 18:23:58', '2025-12-17 19:46:17', 'dOpMqqEm', '8438709'), + (61, 3189, 'attending', '2025-07-10 22:09:54', '2025-12-17 19:46:16', 'dOpMqqEm', '8438849'), + (61, 3192, 'maybe', '2025-07-15 17:12:51', '2025-12-17 19:46:17', 'dOpMqqEm', '8456429'), + (61, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dOpMqqEm', '8457738'), + (61, 3194, 'attending', '2025-07-17 22:37:09', '2025-12-17 19:46:17', 'dOpMqqEm', '8457740'), + (61, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dOpMqqEm', '8459566'), + (61, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dOpMqqEm', '8459567'), + (61, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dOpMqqEm', '8461032'), + (61, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dOpMqqEm', '8477877'), + (61, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dOpMqqEm', '8485688'), + (61, 3235, 'attending', '2025-08-18 22:28:37', '2025-12-17 19:46:18', 'dOpMqqEm', '8490587'), + (61, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dOpMqqEm', '8493552'), + (61, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dOpMqqEm', '8493553'), + (61, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dOpMqqEm', '8493554'), + (61, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dOpMqqEm', '8493555'), + (61, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dOpMqqEm', '8493556'), + (61, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dOpMqqEm', '8493557'), + (61, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dOpMqqEm', '8493558'), + (61, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dOpMqqEm', '8493559'), + (61, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dOpMqqEm', '8493560'), + (61, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dOpMqqEm', '8493561'), + (61, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dOpMqqEm', '8493572'), + (61, 3257, 'attending', '2025-08-28 20:56:22', '2025-12-17 19:46:11', 'dOpMqqEm', '8502340'), + (61, 3258, 'attending', '2025-09-02 14:30:00', '2025-12-17 19:46:11', 'dOpMqqEm', '8510285'), + (61, 3263, 'attending', '2025-09-07 13:51:41', '2025-12-17 19:46:12', 'dOpMqqEm', '8514576'), + (61, 3272, 'attending', '2025-09-18 03:24:34', '2025-12-17 19:46:12', 'dOpMqqEm', '8524068'), + (61, 3275, 'not_attending', '2025-09-20 22:38:53', '2025-12-17 19:46:12', 'dOpMqqEm', '8527786'), + (61, 3277, 'attending', '2025-09-27 21:46:36', '2025-12-17 19:46:12', 'dOpMqqEm', '8533938'), + (61, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dOpMqqEm', '8540725'), + (61, 3289, 'attending', '2025-10-20 14:49:02', '2025-12-17 19:46:14', 'dOpMqqEm', '8542939'), + (61, 3295, 'attending', '2025-10-28 20:58:07', '2025-12-17 19:46:14', 'dOpMqqEm', '8547541'), + (61, 3300, 'attending', '2025-11-06 00:51:52', '2025-12-17 19:46:14', 'dOpMqqEm', '8549145'), + (61, 3302, 'attending', '2025-11-06 00:51:45', '2025-12-17 19:46:14', 'dOpMqqEm', '8550022'), + (61, 3304, 'attending', '2025-11-06 00:51:47', '2025-12-17 19:46:14', 'dOpMqqEm', '8550024'), + (61, 3305, 'attending', '2025-11-18 20:56:37', '2025-12-17 19:46:11', 'dOpMqqEm', '8550025'), + (61, 3306, 'attending', '2025-12-02 05:09:10', '2025-12-17 19:46:11', 'dOpMqqEm', '8550026'), + (61, 3307, 'attending', '2025-12-14 22:37:45', '2025-12-17 19:46:11', 'dOpMqqEm', '8550027'), + (61, 3308, 'attending', '2025-11-11 06:01:11', '2025-12-17 19:46:14', 'dOpMqqEm', '8550408'), + (61, 3309, 'attending', '2025-11-18 20:56:06', '2025-12-17 19:46:14', 'dOpMqqEm', '8550409'), + (61, 3310, 'attending', '2025-11-18 20:56:34', '2025-12-17 19:46:11', 'dOpMqqEm', '8550410'), + (61, 3311, 'attending', '2025-12-08 01:35:13', '2025-12-17 19:46:11', 'dOpMqqEm', '8550412'), + (61, 3318, 'not_attending', '2025-11-07 02:02:31', '2025-12-17 19:46:14', 'dOpMqqEm', '8553025'), + (61, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dOpMqqEm', '8555421'), + (61, 3323, 'attending', '2025-11-15 06:42:33', '2025-12-17 19:46:14', 'dOpMqqEm', '8555522'), + (61, 3326, 'not_attending', '2025-11-20 00:28:50', '2025-12-17 19:46:14', 'dOpMqqEm', '8556661'), + (61, 3328, 'attending', '2025-11-21 09:03:48', '2025-12-17 19:46:14', 'dOpMqqEm', '8557254'), + (61, 3329, 'attending', '2025-11-23 02:55:44', '2025-12-17 19:46:14', 'dOpMqqEm', '8558286'), + (61, 3331, 'maybe', '2025-12-05 01:52:54', '2025-12-17 19:46:11', 'dOpMqqEm', '8562166'), + (61, 3338, 'attending', '2025-12-06 21:41:54', '2025-12-17 19:46:11', 'dOpMqqEm', '8563316'), + (61, 3340, 'attending', '2025-12-12 18:35:35', '2025-12-17 19:46:11', 'dOpMqqEm', '8563371'), + (61, 3341, 'attending', '2025-12-13 17:31:06', '2025-12-17 19:46:11', 'dOpMqqEm', '8564397'), + (61, 3342, 'attending', '2025-12-13 17:31:05', '2025-12-17 19:46:11', 'dOpMqqEm', '8564398'), + (62, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dO6Jw0n4', '7074364'), + (62, 2609, 'not_attending', '2024-05-11 02:57:10', '2025-12-17 19:46:35', 'dO6Jw0n4', '7240354'), + (62, 2625, 'attending', '2024-05-12 18:00:03', '2025-12-17 19:46:35', 'dO6Jw0n4', '7263302'), + (62, 2626, 'attending', '2024-05-12 03:47:35', '2025-12-17 19:46:35', 'dO6Jw0n4', '7264723'), + (62, 2627, 'attending', '2024-05-20 00:17:00', '2025-12-17 19:46:35', 'dO6Jw0n4', '7264724'), + (62, 2628, 'attending', '2024-05-20 01:38:35', '2025-12-17 19:46:36', 'dO6Jw0n4', '7264725'), + (62, 2629, 'attending', '2024-05-20 01:38:39', '2025-12-17 19:46:28', 'dO6Jw0n4', '7264726'), + (62, 2631, 'attending', '2024-05-12 15:47:11', '2025-12-17 19:46:35', 'dO6Jw0n4', '7265589'), + (62, 2634, 'attending', '2024-05-15 17:02:00', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270321'), + (62, 2635, 'attending', '2024-05-15 17:02:05', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270322'), + (62, 2636, 'attending', '2024-05-16 03:33:28', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270323'), + (62, 2637, 'attending', '2024-05-16 03:33:30', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270324'), + (62, 2647, 'attending', '2024-05-29 03:42:09', '2025-12-17 19:46:28', 'dO6Jw0n4', '7282057'), + (62, 2661, 'attending', '2024-06-02 16:01:35', '2025-12-17 19:46:28', 'dO6Jw0n4', '7302674'), + (62, 2675, 'attending', '2024-07-28 22:43:30', '2025-12-17 19:46:31', 'dO6Jw0n4', '7319481'), + (62, 2677, 'attending', '2024-09-22 04:06:12', '2025-12-17 19:46:26', 'dO6Jw0n4', '7319483'), + (62, 2678, 'attending', '2024-06-10 11:57:30', '2025-12-17 19:46:28', 'dO6Jw0n4', '7319489'), + (62, 2688, 'attending', '2024-06-22 16:23:57', '2025-12-17 19:46:29', 'dO6Jw0n4', '7324073'), + (62, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dO6Jw0n4', '7324074'), + (62, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dO6Jw0n4', '7324075'), + (62, 2691, 'maybe', '2024-07-18 02:21:20', '2025-12-17 19:46:30', 'dO6Jw0n4', '7324076'), + (62, 2692, 'not_attending', '2024-07-27 22:42:54', '2025-12-17 19:46:30', 'dO6Jw0n4', '7324077'), + (62, 2693, 'attending', '2024-07-28 22:42:57', '2025-12-17 19:46:31', 'dO6Jw0n4', '7324078'), + (62, 2694, 'not_attending', '2024-07-28 22:43:41', '2025-12-17 19:46:31', 'dO6Jw0n4', '7324079'), + (62, 2695, 'attending', '2024-08-15 16:42:45', '2025-12-17 19:46:31', 'dO6Jw0n4', '7324080'), + (62, 2696, 'attending', '2024-08-23 12:23:27', '2025-12-17 19:46:32', 'dO6Jw0n4', '7324081'), + (62, 2697, 'attending', '2024-08-26 05:06:55', '2025-12-17 19:46:32', 'dO6Jw0n4', '7324082'), + (62, 2705, 'attending', '2024-06-19 00:06:38', '2025-12-17 19:46:29', 'dO6Jw0n4', '7324944'), + (62, 2706, 'maybe', '2024-06-17 03:04:23', '2025-12-17 19:46:28', 'dO6Jw0n4', '7324947'), + (62, 2708, 'maybe', '2024-06-13 20:20:43', '2025-12-17 19:46:28', 'dO6Jw0n4', '7325048'), + (62, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dO6Jw0n4', '7331457'), + (62, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dO6Jw0n4', '7356752'), + (62, 2764, 'attending', '2024-07-28 20:59:12', '2025-12-17 19:46:30', 'dO6Jw0n4', '7363595'), + (62, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dO6Jw0n4', '7363643'), + (62, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dO6Jw0n4', '7368606'), + (62, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dO6Jw0n4', '7397462'), + (62, 2808, 'attending', '2024-08-29 05:34:31', '2025-12-17 19:46:32', 'dO6Jw0n4', '7412860'), + (62, 2816, 'attending', '2024-09-15 20:14:30', '2025-12-17 19:46:25', 'dO6Jw0n4', '7424269'), + (62, 2817, 'attending', '2024-09-15 20:14:41', '2025-12-17 19:46:25', 'dO6Jw0n4', '7424270'), + (62, 2818, 'attending', '2024-09-22 04:06:21', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424272'), + (62, 2819, 'attending', '2024-09-22 04:06:24', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424273'), + (62, 2820, 'attending', '2024-09-22 04:06:29', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424274'), + (62, 2821, 'attending', '2024-09-22 04:06:42', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424275'), + (62, 2822, 'attending', '2024-11-07 22:02:53', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424276'), + (62, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dO6Jw0n4', '7432751'), + (62, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dO6Jw0n4', '7432752'), + (62, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dO6Jw0n4', '7432753'), + (62, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432754'), + (62, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432755'), + (62, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432756'), + (62, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432758'), + (62, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432759'), + (62, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dO6Jw0n4', '7433834'), + (62, 2834, 'maybe', '2024-09-12 04:30:25', '2025-12-17 19:46:25', 'dO6Jw0n4', '7433852'), + (62, 2835, 'attending', '2024-09-12 04:31:38', '2025-12-17 19:46:24', 'dO6Jw0n4', '7437354'), + (62, 2837, 'attending', '2024-09-13 04:54:31', '2025-12-17 19:46:25', 'dO6Jw0n4', '7438711'), + (62, 2847, 'attending', '2024-09-22 04:05:46', '2025-12-17 19:46:25', 'dO6Jw0n4', '7452299'), + (62, 2853, 'attending', '2024-11-07 22:02:48', '2025-12-17 19:46:26', 'dO6Jw0n4', '7465683'), + (62, 2858, 'attending', '2024-10-17 21:59:12', '2025-12-17 19:46:26', 'dO6Jw0n4', '7469388'), + (62, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dO6Jw0n4', '7470197'), + (62, 2870, 'attending', '2024-10-04 14:04:52', '2025-12-17 19:46:26', 'dO6Jw0n4', '7475068'), + (62, 2874, 'attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'dO6Jw0n4', '7482239'), + (62, 2878, 'maybe', '2024-10-13 13:59:16', '2025-12-17 19:46:26', 'dO6Jw0n4', '7633857'), + (62, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dO6Jw0n4', '7685613'), + (62, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dO6Jw0n4', '7688194'), + (62, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dO6Jw0n4', '7688196'), + (62, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dO6Jw0n4', '7688289'), + (62, 2909, 'not_attending', '2024-11-10 21:20:50', '2025-12-17 19:46:27', 'dO6Jw0n4', '7689771'), + (62, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dO6Jw0n4', '7692763'), + (62, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dO6Jw0n4', '7697552'), + (62, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dO6Jw0n4', '7699878'), + (62, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dO6Jw0n4', '7704043'), + (62, 2921, 'attending', '2024-11-24 01:01:43', '2025-12-17 19:46:28', 'dO6Jw0n4', '7708460'), + (62, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dO6Jw0n4', '7712467'), + (62, 2925, 'attending', '2024-12-08 17:12:02', '2025-12-17 19:46:21', 'dO6Jw0n4', '7713584'), + (62, 2926, 'attending', '2024-12-06 21:55:15', '2025-12-17 19:46:21', 'dO6Jw0n4', '7713585'), + (62, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dO6Jw0n4', '7713586'), + (62, 2934, 'attending', '2025-01-10 20:13:20', '2025-12-17 19:46:22', 'dO6Jw0n4', '7725952'), + (62, 2937, 'attending', '2024-12-08 17:12:06', '2025-12-17 19:46:21', 'dO6Jw0n4', '7725955'), + (62, 2939, 'maybe', '2025-02-15 17:00:10', '2025-12-17 19:46:24', 'dO6Jw0n4', '7725957'), + (62, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dO6Jw0n4', '7738518'), + (62, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dO6Jw0n4', '7750636'), + (62, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dO6Jw0n4', '7796540'), + (62, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dO6Jw0n4', '7796541'), + (62, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dO6Jw0n4', '7796542'), + (62, 2968, 'maybe', '2025-01-08 21:39:33', '2025-12-17 19:46:22', 'dO6Jw0n4', '7797967'), + (62, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dO6Jw0n4', '7825913'), + (62, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dO6Jw0n4', '7826209'), + (62, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dO6Jw0n4', '7834742'), + (62, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dO6Jw0n4', '7842108'), + (62, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dO6Jw0n4', '7842902'), + (62, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dO6Jw0n4', '7842903'), + (62, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dO6Jw0n4', '7842904'), + (62, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dO6Jw0n4', '7842905'), + (62, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dO6Jw0n4', '7855719'), + (62, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dO6Jw0n4', '7860683'), + (62, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dO6Jw0n4', '7860684'), + (62, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dO6Jw0n4', '7866095'), + (62, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dO6Jw0n4', '7869170'), + (62, 3014, 'maybe', '2025-04-05 14:40:06', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869185'), + (62, 3015, 'not_attending', '2025-04-26 21:12:48', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869186'), + (62, 3016, 'maybe', '2025-04-16 23:08:27', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869187'), + (62, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dO6Jw0n4', '7869188'), + (62, 3018, 'attending', '2025-04-12 16:02:06', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869189'), + (62, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dO6Jw0n4', '7869201'), + (62, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dO6Jw0n4', '7877465'), + (62, 3034, 'not_attending', '2025-03-11 16:55:48', '2025-12-17 19:46:18', 'dO6Jw0n4', '7878570'), + (62, 3040, 'not_attending', '2025-03-14 03:06:02', '2025-12-17 19:46:19', 'dO6Jw0n4', '7881994'), + (62, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dO6Jw0n4', '7888250'), + (62, 3083, 'not_attending', '2025-04-08 17:17:42', '2025-12-17 19:46:20', 'dO6Jw0n4', '7903308'), + (62, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dO6Jw0n4', '7904777'), + (62, 3094, 'maybe', '2025-05-08 16:03:41', '2025-12-17 19:46:21', 'dO6Jw0n4', '8342292'), + (62, 3095, 'maybe', '2025-05-03 19:10:17', '2025-12-17 19:46:20', 'dO6Jw0n4', '8342293'), + (62, 3096, 'not_attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dO6Jw0n4', '8342987'), + (62, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dO6Jw0n4', '8349164'), + (62, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dO6Jw0n4', '8349545'), + (62, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dO6Jw0n4', '8353584'), + (62, 3131, 'maybe', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dO6Jw0n4', '8368028'), + (62, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dO6Jw0n4', '8368029'), + (62, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dO6Jw0n4', '8388462'), + (62, 3150, 'maybe', '2025-06-21 17:00:16', '2025-12-17 19:46:15', 'dO6Jw0n4', '8393174'), + (62, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dO6Jw0n4', '8400273'), + (62, 3154, 'attending', '2025-06-27 12:38:41', '2025-12-17 19:46:15', 'dO6Jw0n4', '8400274'), + (62, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dO6Jw0n4', '8400275'), + (62, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dO6Jw0n4', '8400276'), + (62, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dO6Jw0n4', '8404977'), + (62, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dO6Jw0n4', '8430783'), + (62, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dO6Jw0n4', '8430784'), + (62, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dO6Jw0n4', '8430799'), + (62, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dO6Jw0n4', '8430800'), + (62, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dO6Jw0n4', '8430801'), + (62, 3187, 'attending', '2025-07-03 23:29:38', '2025-12-17 19:46:16', 'dO6Jw0n4', '8434478'), + (62, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dO6Jw0n4', '8438709'), + (62, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dO6Jw0n4', '8457738'), + (62, 3197, 'maybe', '2025-07-24 23:19:11', '2025-12-17 19:46:17', 'dO6Jw0n4', '8458825'), + (62, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dO6Jw0n4', '8459566'), + (62, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dO6Jw0n4', '8459567'), + (62, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dO6Jw0n4', '8461032'), + (62, 3206, 'maybe', '2025-07-22 17:48:47', '2025-12-17 19:46:17', 'dO6Jw0n4', '8462943'), + (62, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dO6Jw0n4', '8477877'), + (62, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dO6Jw0n4', '8485688'), + (62, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dO6Jw0n4', '8490587'), + (62, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dO6Jw0n4', '8493552'), + (62, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dO6Jw0n4', '8493553'), + (62, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dO6Jw0n4', '8493554'), + (62, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dO6Jw0n4', '8493555'), + (62, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dO6Jw0n4', '8493556'), + (62, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dO6Jw0n4', '8493557'), + (62, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dO6Jw0n4', '8493558'), + (62, 3243, 'maybe', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dO6Jw0n4', '8493559'), + (62, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dO6Jw0n4', '8493560'), + (62, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dO6Jw0n4', '8493561'), + (62, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dO6Jw0n4', '8493572'), + (62, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dO6Jw0n4', '8540725'), + (62, 3295, 'maybe', '2025-11-01 06:56:43', '2025-12-17 19:46:14', 'dO6Jw0n4', '8547541'), + (62, 3302, 'attending', '2025-11-11 16:52:46', '2025-12-17 19:46:14', 'dO6Jw0n4', '8550022'), + (62, 3304, 'not_attending', '2025-11-22 15:03:26', '2025-12-17 19:46:14', 'dO6Jw0n4', '8550024'), + (62, 3306, 'not_attending', '2025-12-11 17:23:57', '2025-12-17 19:46:11', 'dO6Jw0n4', '8550026'), + (62, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dO6Jw0n4', '8555421'), + (63, 3284, 'maybe', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '401wK9Ed', '8540725'), + (63, 3288, 'not_attending', '2025-10-11 05:44:36', '2025-12-17 19:46:13', '401wK9Ed', '8542408'), + (63, 3290, 'attending', '2025-10-12 22:59:40', '2025-12-17 19:46:13', '401wK9Ed', '8542943'), + (63, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '401wK9Ed', '8555421'), + (64, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mLzK5gZ4', '7713586'), + (64, 2955, 'attending', '2024-12-15 20:02:05', '2025-12-17 19:46:21', 'mLzK5gZ4', '7735094'), + (64, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mLzK5gZ4', '7738518'), + (64, 2962, 'attending', '2024-12-27 00:10:39', '2025-12-17 19:46:22', 'mLzK5gZ4', '7750632'), + (64, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mLzK5gZ4', '7750636'), + (64, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mLzK5gZ4', '7796540'), + (64, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mLzK5gZ4', '7796541'), + (64, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mLzK5gZ4', '7796542'), + (64, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mLzK5gZ4', '7825913'), + (64, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mLzK5gZ4', '7826209'), + (64, 2983, 'attending', '2025-02-01 16:58:26', '2025-12-17 19:46:23', 'mLzK5gZ4', '7829499'), + (64, 2984, 'attending', '2025-02-04 01:16:36', '2025-12-17 19:46:23', 'mLzK5gZ4', '7830134'), + (64, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mLzK5gZ4', '7834742'), + (64, 2987, 'not_attending', '2025-02-07 14:30:12', '2025-12-17 19:46:23', 'mLzK5gZ4', '7839568'), + (64, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mLzK5gZ4', '7842108'), + (64, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mLzK5gZ4', '7842902'), + (64, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mLzK5gZ4', '7842903'), + (64, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mLzK5gZ4', '7842904'), + (64, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mLzK5gZ4', '7842905'), + (64, 2999, 'not_attending', '2025-02-13 02:45:14', '2025-12-17 19:46:23', 'mLzK5gZ4', '7844784'), + (64, 3002, 'not_attending', '2025-02-22 23:34:12', '2025-12-17 19:46:24', 'mLzK5gZ4', '7854212'), + (64, 3006, 'attending', '2025-02-20 02:23:03', '2025-12-17 19:46:24', 'mLzK5gZ4', '7855719'), + (64, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mLzK5gZ4', '7860683'), + (64, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mLzK5gZ4', '7860684'), + (64, 3010, 'not_attending', '2025-03-01 01:20:05', '2025-12-17 19:46:18', 'mLzK5gZ4', '7864879'), + (64, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mLzK5gZ4', '7866095'), + (64, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mLzK5gZ4', '7869170'), + (64, 3014, 'attending', '2025-04-05 18:17:20', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869185'), + (64, 3015, 'attending', '2025-04-05 18:17:32', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869186'), + (64, 3016, 'attending', '2025-04-05 18:17:29', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869187'), + (64, 3017, 'attending', '2025-03-22 02:43:10', '2025-12-17 19:46:19', 'mLzK5gZ4', '7869188'), + (64, 3018, 'attending', '2025-04-05 18:17:27', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869189'), + (64, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mLzK5gZ4', '7869201'), + (64, 3030, 'attending', '2025-03-06 19:10:17', '2025-12-17 19:46:18', 'mLzK5gZ4', '7872088'), + (64, 3031, 'attending', '2025-03-07 04:51:10', '2025-12-17 19:46:18', 'mLzK5gZ4', '7875371'), + (64, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mLzK5gZ4', '7877465'), + (64, 3037, 'maybe', '2025-03-13 16:58:04', '2025-12-17 19:46:19', 'mLzK5gZ4', '7880977'), + (64, 3038, 'attending', '2025-03-14 02:15:32', '2025-12-17 19:46:19', 'mLzK5gZ4', '7881989'), + (64, 3039, 'maybe', '2025-03-16 23:18:23', '2025-12-17 19:46:19', 'mLzK5gZ4', '7881992'), + (64, 3041, 'not_attending', '2025-03-16 16:13:35', '2025-12-17 19:46:19', 'mLzK5gZ4', '7881995'), + (64, 3049, 'attending', '2025-03-16 23:17:13', '2025-12-17 19:46:19', 'mLzK5gZ4', '7883215'), + (64, 3050, 'attending', '2025-03-16 22:59:47', '2025-12-17 19:46:19', 'mLzK5gZ4', '7884021'), + (64, 3055, 'maybe', '2025-03-22 02:42:54', '2025-12-17 19:46:19', 'mLzK5gZ4', '7888118'), + (64, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mLzK5gZ4', '7888250'), + (64, 3058, 'attending', '2025-03-27 00:37:09', '2025-12-17 19:46:19', 'mLzK5gZ4', '7891460'), + (64, 3060, 'maybe', '2025-03-30 20:20:55', '2025-12-17 19:46:19', 'mLzK5gZ4', '7892589'), + (64, 3064, 'attending', '2025-03-29 15:51:53', '2025-12-17 19:46:19', 'mLzK5gZ4', '7892835'), + (64, 3067, 'attending', '2025-03-31 18:38:07', '2025-12-17 19:46:19', 'mLzK5gZ4', '7894745'), + (64, 3072, 'attending', '2025-04-03 20:45:41', '2025-12-17 19:46:19', 'mLzK5gZ4', '7895449'), + (64, 3074, 'attending', '2025-04-05 18:20:09', '2025-12-17 19:46:19', 'mLzK5gZ4', '7897784'), + (64, 3077, 'attending', '2025-04-07 06:57:12', '2025-12-17 19:46:20', 'mLzK5gZ4', '7899510'), + (64, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mLzK5gZ4', '7904777'), + (64, 3090, 'maybe', '2025-04-15 23:22:52', '2025-12-17 19:46:20', 'mLzK5gZ4', '7914315'), + (64, 3094, 'not_attending', '2025-04-27 21:08:19', '2025-12-17 19:46:21', 'mLzK5gZ4', '8342292'), + (64, 3095, 'not_attending', '2025-04-27 21:08:13', '2025-12-17 19:46:20', 'mLzK5gZ4', '8342293'), + (64, 3102, 'attending', '2025-04-26 17:28:03', '2025-12-17 19:46:20', 'mLzK5gZ4', '8346008'), + (64, 3103, 'attending', '2025-04-26 15:28:43', '2025-12-17 19:46:20', 'mLzK5gZ4', '8347770'), + (64, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mLzK5gZ4', '8349164'), + (64, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mLzK5gZ4', '8349545'), + (64, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mLzK5gZ4', '8353584'), + (64, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mLzK5gZ4', '8368028'), + (64, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mLzK5gZ4', '8368029'), + (64, 3136, 'attending', '2025-05-17 21:57:47', '2025-12-17 19:46:21', 'mLzK5gZ4', '8374152'), + (64, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mLzK5gZ4', '8388462'), + (64, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mLzK5gZ4', '8400273'), + (64, 3154, 'attending', '2025-06-26 18:35:43', '2025-12-17 19:46:15', 'mLzK5gZ4', '8400274'), + (64, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mLzK5gZ4', '8400275'), + (64, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mLzK5gZ4', '8400276'), + (64, 3157, 'attending', '2025-06-04 04:29:10', '2025-12-17 19:46:15', 'mLzK5gZ4', '8401407'), + (64, 3159, 'attending', '2025-06-05 18:48:23', '2025-12-17 19:46:15', 'mLzK5gZ4', '8401410'), + (64, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mLzK5gZ4', '8404977'), + (64, 3176, 'attending', '2025-06-20 01:02:05', '2025-12-17 19:46:15', 'mLzK5gZ4', '8416741'), + (64, 3179, 'not_attending', '2025-06-24 03:27:21', '2025-12-17 19:46:15', 'mLzK5gZ4', '8421850'), + (64, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mLzK5gZ4', '8430783'), + (64, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mLzK5gZ4', '8430784'), + (64, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mLzK5gZ4', '8430799'), + (64, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mLzK5gZ4', '8430800'), + (64, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mLzK5gZ4', '8430801'), + (64, 3187, 'attending', '2025-07-03 16:40:43', '2025-12-17 19:46:16', 'mLzK5gZ4', '8434478'), + (64, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mLzK5gZ4', '8438709'), + (64, 3191, 'attending', '2025-07-15 17:40:26', '2025-12-17 19:46:17', 'mLzK5gZ4', '8444983'), + (64, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mLzK5gZ4', '8457738'), + (64, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mLzK5gZ4', '8459566'), + (64, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mLzK5gZ4', '8459567'), + (64, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mLzK5gZ4', '8461032'), + (64, 3205, 'not_attending', '2025-07-20 21:25:34', '2025-12-17 19:46:17', 'mLzK5gZ4', '8461764'), + (64, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mLzK5gZ4', '8477877'), + (64, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mLzK5gZ4', '8485688'), + (64, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mLzK5gZ4', '8490587'), + (64, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mLzK5gZ4', '8493552'), + (64, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mLzK5gZ4', '8493553'), + (64, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mLzK5gZ4', '8493554'), + (64, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mLzK5gZ4', '8493555'), + (64, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mLzK5gZ4', '8493556'), + (64, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mLzK5gZ4', '8493557'), + (64, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mLzK5gZ4', '8493558'), + (64, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mLzK5gZ4', '8493559'), + (64, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mLzK5gZ4', '8493560'), + (64, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mLzK5gZ4', '8493561'), + (64, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mLzK5gZ4', '8493572'), + (64, 3271, 'maybe', '2025-09-17 19:24:48', '2025-12-17 19:46:12', 'mLzK5gZ4', '8521430'), + (64, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mLzK5gZ4', '8540725'), + (64, 3296, 'attending', '2025-10-23 18:03:26', '2025-12-17 19:46:14', 'mLzK5gZ4', '8547711'), + (64, 3302, 'attending', '2025-11-12 15:59:03', '2025-12-17 19:46:14', 'mLzK5gZ4', '8550022'), + (64, 3307, 'attending', '2025-12-15 17:07:27', '2025-12-17 19:46:11', 'mLzK5gZ4', '8550027'), + (64, 3321, 'attending', '2025-11-14 01:03:34', '2025-12-17 19:46:14', 'mLzK5gZ4', '8555418'), + (64, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mLzK5gZ4', '8555421'), + (64, 3330, 'attending', '2025-11-30 19:26:44', '2025-12-17 19:46:11', 'mLzK5gZ4', '8561720'), + (65, 3305, 'attending', '2025-12-02 02:47:12', '2025-12-17 19:46:11', 'dazMLRZm', '8550025'), + (65, 3306, 'attending', '2025-12-13 02:32:37', '2025-12-17 19:46:11', 'dazMLRZm', '8550026'), + (65, 3307, 'attending', '2025-12-16 08:13:42', '2025-12-18 22:55:00', 'dazMLRZm', '8550027'), + (65, 3330, 'attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', 'dazMLRZm', '8561720'), + (65, 3336, 'attending', '2025-12-16 00:54:24', '2025-12-17 19:46:11', 'dazMLRZm', '8563248'), + (66, 3195, 'not_attending', '2025-08-03 06:40:10', '2025-12-17 19:46:17', 'nm6a881d', '8458118'), + (66, 3200, 'attending', '2025-08-02 01:05:03', '2025-12-17 19:46:17', 'nm6a881d', '8459566'), + (66, 3201, 'attending', '2025-08-03 06:40:15', '2025-12-17 19:46:17', 'nm6a881d', '8459567'), + (66, 3203, 'attending', '2025-07-24 04:43:36', '2025-12-17 19:46:17', 'nm6a881d', '8461032'), + (66, 3207, 'attending', '2025-07-25 18:53:40', '2025-12-17 19:46:17', 'nm6a881d', '8466820'), + (66, 3211, 'attending', '2025-08-05 02:23:10', '2025-12-17 19:46:17', 'nm6a881d', '8477785'), + (66, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm6a881d', '8477877'), + (66, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'nm6a881d', '8485688'), + (66, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm6a881d', '8490587'), + (66, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm6a881d', '8493552'), + (66, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm6a881d', '8493553'), + (66, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm6a881d', '8493554'), + (66, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm6a881d', '8493555'), + (66, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm6a881d', '8493556'), + (66, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm6a881d', '8493557'), + (66, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm6a881d', '8493558'), + (66, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm6a881d', '8493559'), + (66, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm6a881d', '8493560'), + (66, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'nm6a881d', '8493561'), + (66, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm6a881d', '8493572'), + (66, 3257, 'attending', '2025-08-28 22:55:14', '2025-12-17 19:46:11', 'nm6a881d', '8502340'), + (66, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'nm6a881d', '8540725'), + (66, 3289, 'attending', '2025-10-24 23:55:40', '2025-12-17 19:46:14', 'nm6a881d', '8542939'), + (66, 3300, 'not_attending', '2025-11-05 01:03:23', '2025-12-17 19:46:14', 'nm6a881d', '8549145'), + (66, 3302, 'attending', '2025-11-10 01:11:30', '2025-12-17 19:46:14', 'nm6a881d', '8550022'), + (66, 3304, 'attending', '2025-11-16 04:38:32', '2025-12-17 19:46:14', 'nm6a881d', '8550024'), + (66, 3305, 'not_attending', '2025-12-01 08:05:25', '2025-12-17 19:46:11', 'nm6a881d', '8550025'), + (66, 3307, 'maybe', '2025-12-18 08:07:29', '2025-12-18 08:07:29', NULL, NULL), + (66, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm6a881d', '8555421'), + (67, 2821, 'attending', '2024-10-11 01:06:43', '2025-12-17 19:46:26', 'mRBRe9Ym', '7424275'), + (67, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mRBRe9Ym', '7424276'), + (67, 2825, 'attending', '2024-09-21 05:25:04', '2025-12-17 19:46:25', 'mRBRe9Ym', '7432752'), + (67, 2826, 'attending', '2024-09-26 20:32:59', '2025-12-17 19:46:25', 'mRBRe9Ym', '7432753'), + (67, 2827, 'attending', '2024-10-04 11:09:05', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432754'), + (67, 2828, 'not_attending', '2024-10-14 09:54:40', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432755'), + (67, 2829, 'attending', '2024-10-14 09:54:47', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432756'), + (67, 2830, 'attending', '2024-10-14 09:55:23', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432758'), + (67, 2831, 'attending', '2024-11-09 13:15:57', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432759'), + (67, 2839, 'maybe', '2024-09-25 15:58:07', '2025-12-17 19:46:25', 'mRBRe9Ym', '7439262'), + (67, 2858, 'maybe', '2024-10-14 09:54:35', '2025-12-17 19:46:26', 'mRBRe9Ym', '7469388'), + (67, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mRBRe9Ym', '7470197'), + (67, 2864, 'maybe', '2024-10-14 09:54:17', '2025-12-17 19:46:26', 'mRBRe9Ym', '7471199'), + (67, 2865, 'attending', '2024-11-01 01:25:05', '2025-12-17 19:46:26', 'mRBRe9Ym', '7471200'), + (67, 2871, 'attending', '2024-10-14 09:54:23', '2025-12-17 19:46:26', 'mRBRe9Ym', '7480481'), + (67, 2878, 'maybe', '2024-10-14 09:54:27', '2025-12-17 19:46:26', 'mRBRe9Ym', '7633857'), + (67, 2881, 'attending', '2024-11-06 04:27:44', '2025-12-17 19:46:26', 'mRBRe9Ym', '7644047'), + (67, 2883, 'attending', '2024-10-22 04:20:58', '2025-12-17 19:46:26', 'mRBRe9Ym', '7649157'), + (67, 2888, 'attending', '2024-10-21 07:59:30', '2025-12-17 19:46:26', 'mRBRe9Ym', '7654822'), + (67, 2889, 'attending', '2024-10-22 03:07:34', '2025-12-17 19:46:26', 'mRBRe9Ym', '7660485'), + (67, 2893, 'attending', '2024-10-29 02:22:27', '2025-12-17 19:46:26', 'mRBRe9Ym', '7672705'), + (67, 2896, 'attending', '2024-11-12 16:27:23', '2025-12-17 19:46:27', 'mRBRe9Ym', '7683647'), + (67, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mRBRe9Ym', '7685613'), + (67, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mRBRe9Ym', '7688194'), + (67, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mRBRe9Ym', '7688196'), + (67, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mRBRe9Ym', '7688289'), + (67, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'mRBRe9Ym', '7692763'), + (67, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mRBRe9Ym', '7697552'), + (67, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mRBRe9Ym', '7699878'), + (67, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mRBRe9Ym', '7704043'), + (67, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mRBRe9Ym', '7712467'), + (67, 2926, 'attending', '2024-12-07 02:33:27', '2025-12-17 19:46:21', 'mRBRe9Ym', '7713585'), + (67, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mRBRe9Ym', '7713586'), + (67, 2930, 'maybe', '2024-12-10 14:24:02', '2025-12-17 19:46:21', 'mRBRe9Ym', '7724554'), + (67, 2955, 'attending', '2024-12-16 22:21:42', '2025-12-17 19:46:21', 'mRBRe9Ym', '7735094'), + (67, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mRBRe9Ym', '7738518'), + (67, 2962, 'not_attending', '2024-12-27 22:26:25', '2025-12-17 19:46:22', 'mRBRe9Ym', '7750632'), + (67, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mRBRe9Ym', '7750636'), + (67, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mRBRe9Ym', '7796540'), + (67, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mRBRe9Ym', '7796541'), + (67, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mRBRe9Ym', '7796542'), + (67, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mRBRe9Ym', '7825913'), + (67, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mRBRe9Ym', '7826209'), + (67, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mRBRe9Ym', '7834742'), + (67, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mRBRe9Ym', '7842108'), + (67, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mRBRe9Ym', '7842902'), + (67, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mRBRe9Ym', '7842903'), + (67, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mRBRe9Ym', '7842904'), + (67, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mRBRe9Ym', '7842905'), + (67, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mRBRe9Ym', '7855719'), + (67, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mRBRe9Ym', '7860683'), + (67, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mRBRe9Ym', '7860684'), + (67, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mRBRe9Ym', '7866095'), + (67, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mRBRe9Ym', '7869170'), + (67, 3014, 'maybe', '2025-04-05 21:56:37', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869185'), + (67, 3015, 'not_attending', '2025-04-26 20:05:15', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869186'), + (67, 3016, 'attending', '2025-04-15 00:12:53', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869187'), + (67, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mRBRe9Ym', '7869188'), + (67, 3018, 'not_attending', '2025-04-12 02:17:08', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869189'), + (67, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mRBRe9Ym', '7869201'), + (67, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mRBRe9Ym', '7877465'), + (67, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mRBRe9Ym', '7888250'), + (67, 3060, 'attending', '2025-04-04 00:07:03', '2025-12-17 19:46:19', 'mRBRe9Ym', '7892589'), + (67, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mRBRe9Ym', '7904777'), + (67, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mRBRe9Ym', '8349164'), + (67, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mRBRe9Ym', '8349545'), + (67, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mRBRe9Ym', '8353584'), + (67, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mRBRe9Ym', '8368028'), + (67, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mRBRe9Ym', '8368029'), + (67, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mRBRe9Ym', '8388462'), + (67, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mRBRe9Ym', '8400273'), + (67, 3154, 'maybe', '2025-06-27 22:01:06', '2025-12-17 19:46:15', 'mRBRe9Ym', '8400274'), + (67, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mRBRe9Ym', '8400275'), + (67, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mRBRe9Ym', '8400276'), + (67, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mRBRe9Ym', '8404977'), + (67, 3178, 'attending', '2025-06-24 03:14:58', '2025-12-17 19:46:15', 'mRBRe9Ym', '8421848'), + (67, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mRBRe9Ym', '8430783'), + (67, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mRBRe9Ym', '8430784'), + (67, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mRBRe9Ym', '8430799'), + (67, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mRBRe9Ym', '8430800'), + (67, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mRBRe9Ym', '8430801'), + (67, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mRBRe9Ym', '8438709'), + (67, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mRBRe9Ym', '8457738'), + (67, 3195, 'attending', '2025-07-18 00:25:36', '2025-12-17 19:46:17', 'mRBRe9Ym', '8458118'), + (67, 3196, 'attending', '2025-07-18 00:56:04', '2025-12-17 19:46:17', 'mRBRe9Ym', '8458543'), + (67, 3197, 'maybe', '2025-07-22 05:23:01', '2025-12-17 19:46:17', 'mRBRe9Ym', '8458825'), + (67, 3198, 'attending', '2025-07-18 07:53:22', '2025-12-17 19:46:18', 'mRBRe9Ym', '8459268'), + (67, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mRBRe9Ym', '8459566'), + (67, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mRBRe9Ym', '8459567'), + (67, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mRBRe9Ym', '8461032'), + (67, 3210, 'attending', '2025-07-30 03:16:51', '2025-12-17 19:46:18', 'mRBRe9Ym', '8471162'), + (67, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mRBRe9Ym', '8477877'), + (67, 3216, 'attending', '2025-08-09 01:54:51', '2025-12-17 19:46:17', 'mRBRe9Ym', '8481608'), + (67, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mRBRe9Ym', '8485688'), + (67, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mRBRe9Ym', '8490587'), + (67, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mRBRe9Ym', '8493552'), + (67, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mRBRe9Ym', '8493553'), + (67, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mRBRe9Ym', '8493554'), + (67, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mRBRe9Ym', '8493555'), + (67, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mRBRe9Ym', '8493556'), + (67, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mRBRe9Ym', '8493557'), + (67, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mRBRe9Ym', '8493558'), + (67, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mRBRe9Ym', '8493559'), + (67, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mRBRe9Ym', '8493560'), + (67, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mRBRe9Ym', '8493561'), + (67, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mRBRe9Ym', '8493572'), + (67, 3272, 'attending', '2025-09-18 03:24:36', '2025-12-17 19:46:12', 'mRBRe9Ym', '8524068'), + (67, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mRBRe9Ym', '8540725'), + (67, 3289, 'attending', '2025-10-25 00:31:44', '2025-12-17 19:46:14', 'mRBRe9Ym', '8542939'), + (67, 3295, 'attending', '2025-10-29 00:58:21', '2025-12-17 19:46:14', 'mRBRe9Ym', '8547541'), + (67, 3302, 'attending', '2025-11-14 00:05:48', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550022'), + (67, 3304, 'attending', '2025-11-22 00:49:25', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550024'), + (67, 3305, 'attending', '2025-12-06 01:35:54', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550025'), + (67, 3306, 'attending', '2025-12-13 02:31:14', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550026'), + (67, 3307, 'attending', '2025-12-18 22:24:33', '2025-12-18 22:24:33', NULL, NULL), + (67, 3308, 'attending', '2025-11-09 22:15:51', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550408'), + (67, 3309, 'attending', '2025-11-17 00:06:07', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550409'), + (67, 3310, 'attending', '2025-12-01 01:47:58', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550410'), + (67, 3311, 'maybe', '2025-12-09 04:31:18', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550412'), + (67, 3313, 'maybe', '2025-11-05 22:40:43', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550896'), + (67, 3317, 'attending', '2025-11-13 00:38:38', '2025-12-17 19:46:14', 'mRBRe9Ym', '8552943'), + (67, 3319, 'maybe', '2025-11-08 01:36:42', '2025-12-17 19:46:14', 'mRBRe9Ym', '8553114'), + (67, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mRBRe9Ym', '8555421'), + (67, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'mRBRe9Ym', '8555522'), + (67, 3343, 'attending', '2025-12-14 04:42:15', '2025-12-17 19:46:11', 'mRBRe9Ym', '8564411'), + (68, 3014, 'maybe', '2025-04-04 04:00:31', '2025-12-17 19:46:20', 'mq6lQajA', '7869185'), + (68, 3015, 'maybe', '2025-04-26 17:32:27', '2025-12-17 19:46:20', 'mq6lQajA', '7869186'), + (68, 3016, 'maybe', '2025-04-19 12:02:24', '2025-12-17 19:46:20', 'mq6lQajA', '7869187'), + (68, 3018, 'maybe', '2025-04-12 15:30:52', '2025-12-17 19:46:20', 'mq6lQajA', '7869189'), + (68, 3067, 'maybe', '2025-04-04 04:00:39', '2025-12-17 19:46:19', 'mq6lQajA', '7894745'), + (68, 3070, 'not_attending', '2025-04-09 08:37:39', '2025-12-17 19:46:20', 'mq6lQajA', '7894829'), + (68, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'mq6lQajA', '7897784'), + (68, 3079, 'maybe', '2025-04-06 16:08:31', '2025-12-17 19:46:20', 'mq6lQajA', '7901439'), + (68, 3080, 'maybe', '2025-04-07 07:12:07', '2025-12-17 19:46:20', 'mq6lQajA', '7901441'), + (68, 3083, 'maybe', '2025-04-09 07:08:34', '2025-12-17 19:46:20', 'mq6lQajA', '7903308'), + (68, 3084, 'maybe', '2025-04-09 07:09:03', '2025-12-17 19:46:20', 'mq6lQajA', '7903687'), + (68, 3085, 'not_attending', '2025-04-12 04:04:22', '2025-12-17 19:46:20', 'mq6lQajA', '7903688'), + (68, 3088, 'maybe', '2025-06-13 00:38:38', '2025-12-17 19:46:15', 'mq6lQajA', '7904777'), + (68, 3089, 'attending', '2025-04-13 17:13:49', '2025-12-17 19:46:20', 'mq6lQajA', '7911208'), + (68, 3094, 'maybe', '2025-05-10 17:25:28', '2025-12-17 19:46:21', 'mq6lQajA', '8342292'), + (68, 3095, 'attending', '2025-05-03 17:31:12', '2025-12-17 19:46:20', 'mq6lQajA', '8342293'), + (68, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mq6lQajA', '8349164'), + (68, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mq6lQajA', '8349545'), + (68, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mq6lQajA', '8353584'), + (68, 3126, 'maybe', '2025-05-14 19:57:22', '2025-12-17 19:46:21', 'mq6lQajA', '8365614'), + (68, 3131, 'maybe', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mq6lQajA', '8368028'), + (68, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mq6lQajA', '8368029'), + (68, 3133, 'attending', '2025-05-31 21:20:05', '2025-12-17 19:46:14', 'mq6lQajA', '8368030'), + (68, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mq6lQajA', '8388462'), + (68, 3150, 'maybe', '2025-06-21 22:05:54', '2025-12-17 19:46:15', 'mq6lQajA', '8393174'), + (68, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mq6lQajA', '8400273'), + (68, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mq6lQajA', '8400274'), + (68, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mq6lQajA', '8400275'), + (68, 3156, 'maybe', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mq6lQajA', '8400276'), + (68, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mq6lQajA', '8404977'), + (68, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mq6lQajA', '8430783'), + (68, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mq6lQajA', '8430784'), + (68, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mq6lQajA', '8430799'), + (68, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mq6lQajA', '8430800'), + (68, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mq6lQajA', '8430801'), + (68, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mq6lQajA', '8438709'), + (68, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mq6lQajA', '8457738'), + (68, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mq6lQajA', '8459566'), + (68, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mq6lQajA', '8459567'), + (68, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mq6lQajA', '8461032'), + (68, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mq6lQajA', '8477877'), + (68, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mq6lQajA', '8485688'), + (68, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mq6lQajA', '8490587'), + (68, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mq6lQajA', '8493552'), + (68, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mq6lQajA', '8493553'), + (68, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mq6lQajA', '8493554'), + (68, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mq6lQajA', '8493555'), + (68, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mq6lQajA', '8493556'), + (68, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mq6lQajA', '8493557'), + (68, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mq6lQajA', '8493558'), + (68, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mq6lQajA', '8493559'), + (68, 3244, 'maybe', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mq6lQajA', '8493560'), + (68, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mq6lQajA', '8493561'), + (68, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mq6lQajA', '8493572'), + (68, 3258, 'attending', '2025-09-03 20:16:41', '2025-12-17 19:46:11', 'mq6lQajA', '8510285'), + (68, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mq6lQajA', '8540725'), + (68, 3304, 'maybe', '2025-11-22 21:46:03', '2025-12-17 19:46:14', 'mq6lQajA', '8550024'), + (68, 3305, 'maybe', '2025-12-06 21:19:36', '2025-12-17 19:46:11', 'mq6lQajA', '8550025'), + (68, 3306, 'attending', '2025-12-13 22:19:40', '2025-12-17 19:46:11', 'mq6lQajA', '8550026'), + (68, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mq6lQajA', '8555421'), + (69, 3237, 'attending', '2025-09-02 21:26:41', '2025-12-17 19:46:11', 'dljWe8OA', '8493553'), + (69, 3240, 'attending', '2025-09-07 01:59:42', '2025-12-17 19:46:12', 'dljWe8OA', '8493556'), + (69, 3241, 'not_attending', '2025-10-03 22:16:58', '2025-12-17 19:46:13', 'dljWe8OA', '8493557'), + (69, 3244, 'attending', '2025-09-29 10:41:02', '2025-12-17 19:46:13', 'dljWe8OA', '8493560'), + (69, 3245, 'attending', '2025-09-20 14:09:10', '2025-12-17 19:46:12', 'dljWe8OA', '8493561'), + (69, 3258, 'attending', '2025-09-02 20:41:58', '2025-12-17 19:46:11', 'dljWe8OA', '8510285'), + (69, 3259, 'attending', '2025-09-06 13:49:44', '2025-12-17 19:46:12', 'dljWe8OA', '8512638'), + (69, 3260, 'attending', '2025-09-06 13:49:42', '2025-12-17 19:46:12', 'dljWe8OA', '8512640'), + (69, 3261, 'attending', '2025-09-06 13:49:46', '2025-12-17 19:46:12', 'dljWe8OA', '8512641'), + (69, 3262, 'attending', '2025-09-06 13:49:48', '2025-12-17 19:46:12', 'dljWe8OA', '8512642'), + (69, 3263, 'attending', '2025-09-07 14:30:51', '2025-12-17 19:46:12', 'dljWe8OA', '8514576'), + (69, 3264, 'attending', '2025-09-15 17:43:28', '2025-12-17 19:46:12', 'dljWe8OA', '8514577'), + (69, 3265, 'attending', '2025-09-22 18:30:17', '2025-12-17 19:46:12', 'dljWe8OA', '8514578'), + (69, 3266, 'attending', '2025-09-29 10:41:15', '2025-12-17 19:46:13', 'dljWe8OA', '8514579'), + (69, 3271, 'attending', '2025-09-20 13:59:10', '2025-12-17 19:46:12', 'dljWe8OA', '8521430'), + (69, 3272, 'attending', '2025-09-17 22:50:56', '2025-12-17 19:46:12', 'dljWe8OA', '8524068'), + (69, 3273, 'attending', '2025-09-19 02:47:34', '2025-12-17 19:46:12', 'dljWe8OA', '8525831'), + (69, 3275, 'attending', '2025-09-22 18:20:43', '2025-12-17 19:46:12', 'dljWe8OA', '8527786'), + (69, 3276, 'not_attending', '2025-09-22 18:20:47', '2025-12-17 19:46:12', 'dljWe8OA', '8529058'), + (69, 3280, 'attending', '2025-10-09 17:47:48', '2025-12-17 19:46:13', 'dljWe8OA', '8535686'), + (69, 3281, 'not_attending', '2025-10-11 14:34:29', '2025-12-17 19:46:14', 'dljWe8OA', '8535687'), + (69, 3282, 'attending', '2025-10-04 20:21:46', '2025-12-17 19:46:13', 'dljWe8OA', '8537571'), + (69, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dljWe8OA', '8540725'), + (69, 3285, 'not_attending', '2025-10-08 18:56:32', '2025-12-17 19:46:13', 'dljWe8OA', '8540726'), + (69, 3286, 'attending', '2025-10-11 14:34:35', '2025-12-17 19:46:14', 'dljWe8OA', '8540728'), + (69, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dljWe8OA', '8555421'), + (70, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dz7V5Ebm', '7842108'), + (70, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dz7V5Ebm', '7842902'), + (70, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dz7V5Ebm', '7842903'), + (70, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dz7V5Ebm', '7842904'), + (70, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dz7V5Ebm', '7842905'), + (70, 2999, 'attending', '2025-02-13 02:18:05', '2025-12-17 19:46:23', 'dz7V5Ebm', '7844784'), + (70, 3001, 'maybe', '2025-02-21 03:09:07', '2025-12-17 19:46:24', 'dz7V5Ebm', '7854184'), + (70, 3003, 'attending', '2025-02-18 23:45:12', '2025-12-17 19:46:24', 'dz7V5Ebm', '7854589'), + (70, 3006, 'attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dz7V5Ebm', '7855719'), + (70, 3007, 'maybe', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dz7V5Ebm', '7860683'), + (70, 3008, 'attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dz7V5Ebm', '7860684'), + (70, 3009, 'maybe', '2025-02-28 23:04:13', '2025-12-17 19:46:18', 'dz7V5Ebm', '7864019'), + (70, 3010, 'maybe', '2025-03-01 01:20:05', '2025-12-17 19:46:18', 'dz7V5Ebm', '7864879'), + (70, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dz7V5Ebm', '7866095'), + (70, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dz7V5Ebm', '7869170'), + (70, 3014, 'attending', '2025-03-31 22:50:22', '2025-12-17 19:46:19', 'dz7V5Ebm', '7869185'), + (70, 3015, 'attending', '2025-04-22 22:14:00', '2025-12-17 19:46:20', 'dz7V5Ebm', '7869186'), + (70, 3016, 'attending', '2025-04-08 00:27:46', '2025-12-17 19:46:20', 'dz7V5Ebm', '7869187'), + (70, 3017, 'attending', '2025-03-25 22:48:11', '2025-12-17 19:46:19', 'dz7V5Ebm', '7869188'), + (70, 3018, 'attending', '2025-04-03 20:22:47', '2025-12-17 19:46:20', 'dz7V5Ebm', '7869189'), + (70, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dz7V5Ebm', '7869201'), + (70, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dz7V5Ebm', '7877465'), + (70, 3034, 'attending', '2025-03-11 22:18:53', '2025-12-17 19:46:18', 'dz7V5Ebm', '7878570'), + (70, 3039, 'maybe', '2025-03-19 21:07:13', '2025-12-17 19:46:19', 'dz7V5Ebm', '7881992'), + (70, 3040, 'maybe', '2025-03-17 23:03:50', '2025-12-17 19:46:19', 'dz7V5Ebm', '7881994'), + (70, 3041, 'maybe', '2025-03-16 22:54:37', '2025-12-17 19:46:19', 'dz7V5Ebm', '7881995'), + (70, 3051, 'attending', '2025-03-16 23:10:54', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884023'), + (70, 3052, 'maybe', '2025-03-17 22:45:02', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884024'), + (70, 3053, 'maybe', '2025-03-17 23:04:02', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884030'), + (70, 3054, 'maybe', '2025-03-17 22:13:08', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884168'), + (70, 3055, 'attending', '2025-03-25 22:48:07', '2025-12-17 19:46:19', 'dz7V5Ebm', '7888118'), + (70, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dz7V5Ebm', '7888250'), + (70, 3060, 'maybe', '2025-03-30 02:30:06', '2025-12-17 19:46:19', 'dz7V5Ebm', '7892589'), + (70, 3061, 'not_attending', '2025-03-28 20:47:32', '2025-12-17 19:46:19', 'dz7V5Ebm', '7892590'), + (70, 3065, 'attending', '2025-03-29 00:40:23', '2025-12-17 19:46:19', 'dz7V5Ebm', '7893676'), + (70, 3066, 'maybe', '2025-03-30 23:23:21', '2025-12-17 19:46:20', 'dz7V5Ebm', '7894207'), + (70, 3069, 'maybe', '2025-04-02 21:20:21', '2025-12-17 19:46:19', 'dz7V5Ebm', '7894828'), + (70, 3070, 'not_attending', '2025-03-30 23:34:30', '2025-12-17 19:46:20', 'dz7V5Ebm', '7894829'), + (70, 3075, 'maybe', '2025-04-08 00:26:35', '2025-12-17 19:46:20', 'dz7V5Ebm', '7898896'), + (70, 3080, 'attending', '2025-04-06 16:39:16', '2025-12-17 19:46:20', 'dz7V5Ebm', '7901441'), + (70, 3081, 'maybe', '2025-04-08 00:26:44', '2025-12-17 19:46:20', 'dz7V5Ebm', '7902801'), + (70, 3083, 'maybe', '2025-04-08 20:17:16', '2025-12-17 19:46:20', 'dz7V5Ebm', '7903308'), + (70, 3084, 'maybe', '2025-04-08 20:17:21', '2025-12-17 19:46:20', 'dz7V5Ebm', '7903687'), + (70, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dz7V5Ebm', '7904777'), + (70, 3090, 'maybe', '2025-04-16 20:40:20', '2025-12-17 19:46:20', 'dz7V5Ebm', '7914315'), + (70, 3093, 'maybe', '2025-04-21 01:14:42', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342248'), + (70, 3094, 'attending', '2025-05-07 23:07:59', '2025-12-17 19:46:21', 'dz7V5Ebm', '8342292'), + (70, 3095, 'attending', '2025-04-30 21:54:48', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342293'), + (70, 3096, 'not_attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342987'), + (70, 3097, 'maybe', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342993'), + (70, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dz7V5Ebm', '8349164'), + (70, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dz7V5Ebm', '8349545'), + (70, 3109, 'attending', '2025-05-07 23:08:34', '2025-12-17 19:46:21', 'dz7V5Ebm', '8352001'), + (70, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dz7V5Ebm', '8353584'), + (70, 3119, 'attending', '2025-05-05 20:54:14', '2025-12-17 19:46:21', 'dz7V5Ebm', '8360035'), + (70, 3121, 'maybe', '2025-05-12 22:51:26', '2025-12-17 19:46:21', 'dz7V5Ebm', '8362730'), + (70, 3122, 'maybe', '2025-05-08 21:33:08', '2025-12-17 19:46:21', 'dz7V5Ebm', '8362978'), + (70, 3131, 'attending', '2025-05-15 01:19:59', '2025-12-17 19:46:21', 'dz7V5Ebm', '8368028'), + (70, 3132, 'attending', '2025-05-15 22:47:14', '2025-12-17 19:46:21', 'dz7V5Ebm', '8368029'), + (70, 3133, 'attending', '2025-05-15 22:47:15', '2025-12-17 19:46:14', 'dz7V5Ebm', '8368030'), + (70, 3137, 'maybe', '2025-05-17 20:05:46', '2025-12-17 19:46:21', 'dz7V5Ebm', '8374153'), + (70, 3138, 'maybe', '2025-05-18 20:40:42', '2025-12-17 19:46:21', 'dz7V5Ebm', '8376037'), + (70, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dz7V5Ebm', '8388462'), + (70, 3150, 'maybe', '2025-06-21 20:35:37', '2025-12-17 19:46:15', 'dz7V5Ebm', '8393174'), + (70, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dz7V5Ebm', '8400273'), + (70, 3154, 'attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dz7V5Ebm', '8400274'), + (70, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dz7V5Ebm', '8400275'), + (70, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dz7V5Ebm', '8400276'), + (70, 3157, 'maybe', '2025-06-05 00:00:24', '2025-12-17 19:46:15', 'dz7V5Ebm', '8401407'), + (70, 3160, 'attending', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'dz7V5Ebm', '8401411'), + (70, 3163, 'not_attending', '2025-06-07 22:20:43', '2025-12-17 19:46:15', 'dz7V5Ebm', '8402899'), + (70, 3164, 'maybe', '2025-06-08 15:55:29', '2025-12-17 19:46:15', 'dz7V5Ebm', '8403121'), + (70, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dz7V5Ebm', '8404977'), + (70, 3176, 'maybe', '2025-06-23 23:19:16', '2025-12-17 19:46:15', 'dz7V5Ebm', '8416741'), + (70, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dz7V5Ebm', '8430783'), + (70, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dz7V5Ebm', '8430784'), + (70, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dz7V5Ebm', '8430799'), + (70, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dz7V5Ebm', '8430800'), + (70, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dz7V5Ebm', '8430801'), + (70, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dz7V5Ebm', '8438709'), + (70, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dz7V5Ebm', '8457738'), + (70, 3194, 'attending', '2025-07-18 22:12:20', '2025-12-17 19:46:17', 'dz7V5Ebm', '8457740'), + (70, 3197, 'attending', '2025-07-19 17:32:54', '2025-12-17 19:46:17', 'dz7V5Ebm', '8458825'), + (70, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dz7V5Ebm', '8459566'), + (70, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dz7V5Ebm', '8459567'), + (70, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dz7V5Ebm', '8461032'), + (70, 3205, 'maybe', '2025-07-20 23:48:22', '2025-12-17 19:46:17', 'dz7V5Ebm', '8461764'), + (70, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dz7V5Ebm', '8477877'), + (70, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dz7V5Ebm', '8485688'), + (70, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dz7V5Ebm', '8490587'), + (70, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dz7V5Ebm', '8493552'), + (70, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dz7V5Ebm', '8493553'), + (70, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dz7V5Ebm', '8493554'), + (70, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dz7V5Ebm', '8493555'), + (70, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dz7V5Ebm', '8493556'), + (70, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dz7V5Ebm', '8493557'), + (70, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dz7V5Ebm', '8493558'), + (70, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dz7V5Ebm', '8493559'), + (70, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dz7V5Ebm', '8493560'), + (70, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dz7V5Ebm', '8493561'), + (70, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dz7V5Ebm', '8493572'), + (70, 3257, 'maybe', '2025-08-27 23:53:23', '2025-12-17 19:46:11', 'dz7V5Ebm', '8502340'), + (70, 3258, 'maybe', '2025-09-03 22:52:25', '2025-12-17 19:46:11', 'dz7V5Ebm', '8510285'), + (70, 3274, 'maybe', '2025-09-20 21:23:38', '2025-12-17 19:46:12', 'dz7V5Ebm', '8527784'), + (70, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dz7V5Ebm', '8540725'), + (70, 3295, 'maybe', '2025-10-31 20:59:30', '2025-12-17 19:46:14', 'dz7V5Ebm', '8547541'), + (70, 3302, 'not_attending', '2025-11-06 00:51:33', '2025-12-17 19:46:14', 'dz7V5Ebm', '8550022'), + (70, 3304, 'not_attending', '2025-11-06 00:51:38', '2025-12-17 19:46:14', 'dz7V5Ebm', '8550024'), + (70, 3305, 'maybe', '2025-12-02 02:40:13', '2025-12-17 19:46:11', 'dz7V5Ebm', '8550025'), + (70, 3306, 'maybe', '2025-12-07 18:30:52', '2025-12-17 19:46:11', 'dz7V5Ebm', '8550026'), + (70, 3313, 'attending', '2025-10-30 21:58:16', '2025-12-17 19:46:14', 'dz7V5Ebm', '8550896'), + (70, 3314, 'maybe', '2025-11-04 01:00:15', '2025-12-17 19:46:14', 'dz7V5Ebm', '8551821'), + (70, 3317, 'attending', '2025-11-07 00:56:02', '2025-12-17 19:46:14', 'dz7V5Ebm', '8552943'), + (70, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dz7V5Ebm', '8555421'), + (70, 3327, 'maybe', '2025-12-02 02:41:28', '2025-12-17 19:46:11', 'dz7V5Ebm', '8557174'), + (70, 3331, 'attending', '2025-12-02 02:41:33', '2025-12-17 19:46:11', 'dz7V5Ebm', '8562166'), + (70, 3335, 'maybe', '2025-12-11 22:37:30', '2025-12-17 19:46:11', 'dz7V5Ebm', '8563247'), + (70, 3336, 'maybe', '2025-12-15 01:31:17', '2025-12-17 19:46:11', 'dz7V5Ebm', '8563248'), + (70, 3337, 'maybe', '2025-12-07 18:30:28', '2025-12-17 19:46:11', 'dz7V5Ebm', '8563315'), + (71, 1824, 'not_attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'GmjM985d', '5774172'), + (71, 1832, 'not_attending', '2022-12-03 19:14:16', '2025-12-17 19:47:16', 'GmjM985d', '5818247'), + (71, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjM985d', '5819471'), + (71, 1836, 'attending', '2022-12-07 15:09:52', '2025-12-17 19:47:16', 'GmjM985d', '5819484'), + (71, 1837, 'attending', '2022-12-07 18:12:02', '2025-12-17 19:47:16', 'GmjM985d', '5820146'), + (71, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GmjM985d', '5827739'), + (71, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjM985d', '5844306'), + (71, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjM985d', '5850159'), + (71, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjM985d', '5858999'), + (71, 1851, 'attending', '2023-01-09 01:02:40', '2025-12-17 19:47:05', 'GmjM985d', '5869316'), + (71, 1852, 'maybe', '2023-01-11 22:06:32', '2025-12-17 19:47:05', 'GmjM985d', '5869898'), + (71, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjM985d', '5871984'), + (71, 1859, 'attending', '2023-01-18 00:07:56', '2025-12-17 19:47:05', 'GmjM985d', '5876234'), + (71, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjM985d', '5876354'), + (71, 1864, 'attending', '2023-01-19 01:03:27', '2025-12-17 19:47:05', 'GmjM985d', '5879675'), + (71, 1865, 'attending', '2023-01-24 21:06:34', '2025-12-17 19:47:06', 'GmjM985d', '5879676'), + (71, 1866, 'attending', '2023-01-22 04:54:14', '2025-12-17 19:47:05', 'GmjM985d', '5880939'), + (71, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjM985d', '5880940'), + (71, 1868, 'attending', '2023-02-21 21:48:54', '2025-12-17 19:47:07', 'GmjM985d', '5880942'), + (71, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjM985d', '5880943'), + (71, 1871, 'attending', '2023-01-19 14:46:12', '2025-12-17 19:47:05', 'GmjM985d', '5883502'), + (71, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjM985d', '5887890'), + (71, 1875, 'attending', '2023-01-24 21:06:28', '2025-12-17 19:47:06', 'GmjM985d', '5887908'), + (71, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjM985d', '5888598'), + (71, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjM985d', '5893260'), + (71, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjM985d', '5899826'), + (71, 1885, 'attending', '2023-02-22 18:40:12', '2025-12-17 19:47:08', 'GmjM985d', '5899928'), + (71, 1886, 'attending', '2023-03-06 22:45:39', '2025-12-17 19:47:09', 'GmjM985d', '5899930'), + (71, 1888, 'attending', '2023-02-16 04:30:39', '2025-12-17 19:47:07', 'GmjM985d', '5900197'), + (71, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjM985d', '5900199'), + (71, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjM985d', '5900200'), + (71, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjM985d', '5900202'), + (71, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjM985d', '5900203'), + (71, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GmjM985d', '5901108'), + (71, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjM985d', '5901126'), + (71, 1897, 'attending', '2023-02-06 22:26:22', '2025-12-17 19:47:07', 'GmjM985d', '5901128'), + (71, 1899, 'attending', '2023-02-06 22:26:28', '2025-12-17 19:47:07', 'GmjM985d', '5901323'), + (71, 1905, 'not_attending', '2023-02-04 23:04:01', '2025-12-17 19:47:06', 'GmjM985d', '5904479'), + (71, 1906, 'attending', '2023-03-10 16:00:08', '2025-12-17 19:47:09', 'GmjM985d', '5904523'), + (71, 1908, 'attending', '2023-02-16 04:35:19', '2025-12-17 19:47:07', 'GmjM985d', '5905018'), + (71, 1910, 'attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjM985d', '5909655'), + (71, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjM985d', '5910522'), + (71, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjM985d', '5910526'), + (71, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjM985d', '5910528'), + (71, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjM985d', '5916219'), + (71, 1926, 'attending', '2023-02-26 00:31:58', '2025-12-17 19:47:08', 'GmjM985d', '5932620'), + (71, 1929, 'attending', '2023-02-20 19:12:56', '2025-12-17 19:47:07', 'GmjM985d', '5932628'), + (71, 1933, 'attending', '2023-02-20 22:24:14', '2025-12-17 19:47:08', 'GmjM985d', '5936234'), + (71, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjM985d', '5958351'), + (71, 1936, 'not_attending', '2023-02-26 00:31:42', '2025-12-17 19:47:08', 'GmjM985d', '5959397'), + (71, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjM985d', '5959751'), + (71, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjM985d', '5959755'), + (71, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjM985d', '5960055'), + (71, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjM985d', '5961684'), + (71, 1942, 'attending', '2023-03-01 18:53:49', '2025-12-17 19:47:08', 'GmjM985d', '5962085'), + (71, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'GmjM985d', '5962132'), + (71, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'GmjM985d', '5962133'), + (71, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjM985d', '5962134'), + (71, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjM985d', '5962317'), + (71, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjM985d', '5962318'), + (71, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GmjM985d', '5965933'), + (71, 1952, 'attending', '2023-03-02 21:55:31', '2025-12-17 19:47:08', 'GmjM985d', '5965937'), + (71, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjM985d', '5967014'), + (71, 1955, 'attending', '2023-03-29 15:22:22', '2025-12-17 19:46:57', 'GmjM985d', '5972529'), + (71, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjM985d', '5972815'), + (71, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjM985d', '5974016'), + (71, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjM985d', '5981515'), + (71, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjM985d', '5993516'), + (71, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjM985d', '5998939'), + (71, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjM985d', '6028191'), + (71, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjM985d', '6040066'), + (71, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjM985d', '6042717'), + (71, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjM985d', '6044838'), + (71, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GmjM985d', '6044839'), + (71, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'GmjM985d', '6045684'), + (71, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjM985d', '6050104'), + (71, 2002, 'attending', '2023-04-28 21:33:31', '2025-12-17 19:47:01', 'GmjM985d', '6052605'), + (71, 2003, 'attending', '2023-05-18 22:42:48', '2025-12-17 19:47:03', 'GmjM985d', '6052606'), + (71, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjM985d', '6053195'), + (71, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjM985d', '6053198'), + (71, 2008, 'attending', '2023-04-07 20:47:31', '2025-12-17 19:46:58', 'GmjM985d', '6055808'), + (71, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjM985d', '6056085'), + (71, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjM985d', '6056916'), + (71, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjM985d', '6059290'), + (71, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjM985d', '6060328'), + (71, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjM985d', '6061037'), + (71, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjM985d', '6061039'), + (71, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjM985d', '6067245'), + (71, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjM985d', '6068094'), + (71, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjM985d', '6068252'), + (71, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjM985d', '6068253'), + (71, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjM985d', '6068254'), + (71, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'GmjM985d', '6068280'), + (71, 2032, 'attending', '2023-05-31 01:46:20', '2025-12-17 19:47:04', 'GmjM985d', '6068281'), + (71, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjM985d', '6069093'), + (71, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'GmjM985d', '6072528'), + (71, 2046, 'maybe', '2023-05-12 16:01:54', '2025-12-17 19:47:02', 'GmjM985d', '6076020'), + (71, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjM985d', '6079840'), + (71, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjM985d', '6083398'), + (71, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'GmjM985d', '6093504'), + (71, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjM985d', '6097414'), + (71, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjM985d', '6097442'), + (71, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjM985d', '6097684'), + (71, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjM985d', '6098762'), + (71, 2065, 'attending', '2023-06-16 16:07:26', '2025-12-17 19:46:49', 'GmjM985d', '6101169'), + (71, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjM985d', '6101361'), + (71, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjM985d', '6101362'), + (71, 2069, 'attending', '2023-05-18 19:21:02', '2025-12-17 19:47:03', 'GmjM985d', '6103750'), + (71, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'GmjM985d', '6103752'), + (71, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjM985d', '6107314'), + (71, 2087, 'attending', '2023-05-31 01:46:15', '2025-12-17 19:47:04', 'GmjM985d', '6120034'), + (71, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'GmjM985d', '6136733'), + (71, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjM985d', '6137989'), + (71, 2097, 'maybe', '2023-06-12 14:23:27', '2025-12-17 19:47:04', 'GmjM985d', '6139059'), + (71, 2108, 'attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjM985d', '6150864'), + (71, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjM985d', '6155491'), + (71, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjM985d', '6164417'), + (71, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjM985d', '6166388'), + (71, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjM985d', '6176439'), + (71, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'GmjM985d', '6182410'), + (71, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjM985d', '6185812'), + (71, 2132, 'attending', '2023-07-09 22:53:38', '2025-12-17 19:46:52', 'GmjM985d', '6187015'), + (71, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjM985d', '6187651'), + (71, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjM985d', '6187963'), + (71, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjM985d', '6187964'), + (71, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjM985d', '6187966'), + (71, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjM985d', '6187967'), + (71, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjM985d', '6187969'), + (71, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjM985d', '6334878'), + (71, 2149, 'attending', '2023-07-18 16:56:52', '2025-12-17 19:46:53', 'GmjM985d', '6335682'), + (71, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjM985d', '6337236'), + (71, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjM985d', '6337970'), + (71, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjM985d', '6338308'), + (71, 2159, 'attending', '2023-07-21 00:28:46', '2025-12-17 19:46:53', 'GmjM985d', '6338355'), + (71, 2160, 'attending', '2023-07-27 13:29:08', '2025-12-17 19:46:54', 'GmjM985d', '6338358'), + (71, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'GmjM985d', '6340845'), + (71, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjM985d', '6341710'), + (71, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjM985d', '6342044'), + (71, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjM985d', '6342298'), + (71, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'GmjM985d', '6343294'), + (71, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjM985d', '6347034'), + (71, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjM985d', '6347056'), + (71, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjM985d', '6353830'), + (71, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjM985d', '6353831'), + (71, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjM985d', '6357867'), + (71, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjM985d', '6358652'), + (71, 2197, 'attending', '2023-09-15 14:13:18', '2025-12-17 19:46:44', 'GmjM985d', '6359399'), + (71, 2204, 'not_attending', '2023-08-19 10:14:42', '2025-12-17 19:46:55', 'GmjM985d', '6361542'), + (71, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjM985d', '6361709'), + (71, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjM985d', '6361710'), + (71, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjM985d', '6361711'), + (71, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjM985d', '6361712'), + (71, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjM985d', '6361713'), + (71, 2219, 'not_attending', '2023-08-28 08:04:59', '2025-12-17 19:46:55', 'GmjM985d', '6367309'), + (71, 2235, 'attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GmjM985d', '6382573'), + (71, 2236, 'attending', '2023-08-31 19:15:40', '2025-12-17 19:46:55', 'GmjM985d', '6382618'), + (71, 2239, 'attending', '2023-08-31 20:47:01', '2025-12-17 19:46:56', 'GmjM985d', '6387592'), + (71, 2240, 'attending', '2023-09-09 17:39:38', '2025-12-17 19:46:56', 'GmjM985d', '6388603'), + (71, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GmjM985d', '6388604'), + (71, 2243, 'maybe', '2023-09-07 19:40:50', '2025-12-17 19:46:56', 'GmjM985d', '6393686'), + (71, 2247, 'attending', '2023-09-06 19:56:44', '2025-12-17 19:46:56', 'GmjM985d', '6394628'), + (71, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GmjM985d', '6394629'), + (71, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjM985d', '6394631'), + (71, 2262, 'attending', '2023-10-01 22:16:29', '2025-12-17 19:46:45', 'GmjM985d', '6427423'), + (71, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjM985d', '6440863'), + (71, 2269, 'attending', '2023-10-05 21:25:03', '2025-12-17 19:46:45', 'GmjM985d', '6442978'), + (71, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjM985d', '6445440'), + (71, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjM985d', '6453951'), + (71, 2279, 'not_attending', '2023-10-11 15:13:39', '2025-12-17 19:46:46', 'GmjM985d', '6455460'), + (71, 2285, 'attending', '2023-10-27 01:45:31', '2025-12-17 19:46:47', 'GmjM985d', '6460929'), + (71, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjM985d', '6461696'), + (71, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjM985d', '6462129'), + (71, 2290, 'attending', '2023-10-18 14:36:30', '2025-12-17 19:46:46', 'GmjM985d', '6462214'), + (71, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjM985d', '6463218'), + (71, 2296, 'attending', '2023-10-26 12:10:38', '2025-12-17 19:46:47', 'GmjM985d', '6468393'), + (71, 2299, 'maybe', '2023-10-19 02:03:53', '2025-12-17 19:46:46', 'GmjM985d', '6472181'), + (71, 2302, 'attending', '2023-10-22 19:29:40', '2025-12-17 19:46:46', 'GmjM985d', '6482535'), + (71, 2303, 'attending', '2023-10-27 19:12:35', '2025-12-17 19:46:47', 'GmjM985d', '6482691'), + (71, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjM985d', '6482693'), + (71, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'GmjM985d', '6484200'), + (71, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'GmjM985d', '6484680'), + (71, 2310, 'attending', '2023-11-11 19:42:06', '2025-12-17 19:46:47', 'GmjM985d', '6487709'), + (71, 2315, 'attending', '2023-11-06 21:41:38', '2025-12-17 19:46:47', 'GmjM985d', '6493666'), + (71, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjM985d', '6507741'), + (71, 2322, 'attending', '2023-11-17 23:31:40', '2025-12-17 19:46:48', 'GmjM985d', '6514659'), + (71, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GmjM985d', '6514660'), + (71, 2325, 'maybe', '2023-12-16 04:55:32', '2025-12-17 19:46:36', 'GmjM985d', '6514663'), + (71, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjM985d', '6519103'), + (71, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjM985d', '6535681'), + (71, 2345, 'attending', '2023-11-29 20:57:49', '2025-12-17 19:46:48', 'GmjM985d', '6582414'), + (71, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjM985d', '6584747'), + (71, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjM985d', '6587097'), + (71, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjM985d', '6609022'), + (71, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GmjM985d', '6632757'), + (71, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjM985d', '6644187'), + (71, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjM985d', '6648951'), + (71, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GmjM985d', '6648952'), + (71, 2388, 'attending', '2024-01-06 13:25:04', '2025-12-17 19:46:37', 'GmjM985d', '6649244'), + (71, 2391, 'attending', '2024-01-12 04:30:07', '2025-12-17 19:46:37', 'GmjM985d', '6654138'), + (71, 2392, 'attending', '2024-01-12 00:46:41', '2025-12-17 19:46:37', 'GmjM985d', '6654412'), + (71, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjM985d', '6655401'), + (71, 2399, 'not_attending', '2024-01-13 21:55:46', '2025-12-17 19:46:38', 'GmjM985d', '6657583'), + (71, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjM985d', '6661585'), + (71, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjM985d', '6661588'), + (71, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjM985d', '6661589'), + (71, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjM985d', '6699906'), + (71, 2409, 'attending', '2024-02-03 23:00:52', '2025-12-17 19:46:41', 'GmjM985d', '6699909'), + (71, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GmjM985d', '6699913'), + (71, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjM985d', '6701109'), + (71, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjM985d', '6705219'), + (71, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjM985d', '6710153'), + (71, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjM985d', '6711552'), + (71, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'GmjM985d', '6711553'), + (71, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjM985d', '6722688'), + (71, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjM985d', '6730620'), + (71, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'GmjM985d', '6730642'), + (71, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjM985d', '6740364'), + (71, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjM985d', '6743829'), + (71, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjM985d', '7030380'), + (71, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GmjM985d', '7033677'), + (71, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'GmjM985d', '7035415'), + (71, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjM985d', '7044715'), + (71, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjM985d', '7050318'), + (71, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjM985d', '7050319'), + (71, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjM985d', '7050322'), + (71, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjM985d', '7057804'), + (71, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'GmjM985d', '7059866'), + (71, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjM985d', '7072824'), + (71, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjM985d', '7074348'), + (71, 2516, 'maybe', '2024-05-02 18:44:20', '2025-12-17 19:46:35', 'GmjM985d', '7074356'), + (71, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GmjM985d', '7074364'), + (71, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'GmjM985d', '7089267'), + (71, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjM985d', '7098747'), + (71, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GmjM985d', '7113468'), + (71, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjM985d', '7114856'), + (71, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjM985d', '7114951'), + (71, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjM985d', '7114955'), + (71, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjM985d', '7114956'), + (71, 2558, 'not_attending', '2024-05-02 18:47:36', '2025-12-17 19:46:35', 'GmjM985d', '7114957'), + (71, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'GmjM985d', '7153615'), + (71, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjM985d', '7159484'), + (71, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjM985d', '7178446'), + (71, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'GmjM985d', '7220467'), + (71, 2605, 'attending', '2024-05-02 18:44:34', '2025-12-17 19:46:35', 'GmjM985d', '7229243'), + (71, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjM985d', '7240354'), + (71, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjM985d', '7251633'), + (71, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'GmjM985d', '7263048'), + (71, 2626, 'attending', '2024-05-18 21:44:07', '2025-12-17 19:46:35', 'GmjM985d', '7264723'), + (71, 2629, 'attending', '2024-06-08 18:38:51', '2025-12-17 19:46:28', 'GmjM985d', '7264726'), + (71, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'GmjM985d', '7302674'), + (71, 2678, 'not_attending', '2024-06-15 18:55:33', '2025-12-17 19:46:28', 'GmjM985d', '7319489'), + (71, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjM985d', '7324073'), + (71, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjM985d', '7324074'), + (71, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GmjM985d', '7324075'), + (71, 2691, 'attending', '2024-07-20 20:02:23', '2025-12-17 19:46:30', 'GmjM985d', '7324076'), + (71, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GmjM985d', '7324078'), + (71, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GmjM985d', '7324082'), + (71, 2699, 'attending', '2024-06-12 22:34:16', '2025-12-17 19:46:28', 'GmjM985d', '7324385'), + (71, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GmjM985d', '7331457'), + (71, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'GmjM985d', '7356752'), + (71, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'GmjM985d', '7363643'), + (71, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GmjM985d', '7368606'), + (71, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GmjM985d', '7397462'), + (71, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GmjM985d', '7424275'), + (71, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'GmjM985d', '7424276'), + (71, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GmjM985d', '7432751'), + (71, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GmjM985d', '7432752'), + (71, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GmjM985d', '7432753'), + (71, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GmjM985d', '7432754'), + (71, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GmjM985d', '7432755'), + (71, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GmjM985d', '7432756'), + (71, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GmjM985d', '7432758'), + (71, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GmjM985d', '7432759'), + (71, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GmjM985d', '7433834'), + (71, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GmjM985d', '7470197'), + (71, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GmjM985d', '7685613'), + (71, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GmjM985d', '7688194'), + (71, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GmjM985d', '7688196'), + (71, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GmjM985d', '7688289'), + (71, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GmjM985d', '7692763'), + (71, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GmjM985d', '7697552'), + (71, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GmjM985d', '7699878'), + (71, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GmjM985d', '7704043'), + (71, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GmjM985d', '7712467'), + (71, 2925, 'attending', '2024-12-13 19:08:50', '2025-12-17 19:46:21', 'GmjM985d', '7713584'), + (71, 2926, 'attending', '2024-12-06 00:44:47', '2025-12-17 19:46:21', 'GmjM985d', '7713585'), + (71, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GmjM985d', '7713586'), + (71, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GmjM985d', '7738518'), + (71, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GmjM985d', '7750636'), + (71, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GmjM985d', '7796540'), + (71, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GmjM985d', '7796541'), + (71, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GmjM985d', '7796542'), + (71, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GmjM985d', '7825913'), + (71, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GmjM985d', '7826209'), + (71, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GmjM985d', '7834742'), + (71, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'GmjM985d', '7842108'), + (71, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GmjM985d', '7842902'), + (71, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GmjM985d', '7842903'), + (71, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GmjM985d', '7842904'), + (71, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GmjM985d', '7842905'), + (71, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GmjM985d', '7855719'), + (71, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GmjM985d', '7860683'), + (71, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GmjM985d', '7860684'), + (71, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GmjM985d', '7866095'), + (71, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GmjM985d', '7869170'), + (71, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GmjM985d', '7869188'), + (71, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GmjM985d', '7869201'), + (71, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GmjM985d', '7877465'), + (71, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'GmjM985d', '7878570'), + (71, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GmjM985d', '7888250'), + (71, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GmjM985d', '7904777'), + (71, 3094, 'attending', '2025-05-10 20:01:56', '2025-12-17 19:46:21', 'GmjM985d', '8342292'), + (71, 3095, 'attending', '2025-05-02 19:55:09', '2025-12-17 19:46:20', 'GmjM985d', '8342293'), + (71, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GmjM985d', '8349164'), + (71, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GmjM985d', '8349545'), + (71, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'GmjM985d', '8353584'), + (71, 3126, 'attending', '2025-05-13 19:53:53', '2025-12-17 19:46:21', 'GmjM985d', '8365614'), + (71, 3131, 'attending', '2025-05-14 20:52:47', '2025-12-17 19:46:21', 'GmjM985d', '8368028'), + (71, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GmjM985d', '8368029'), + (71, 3133, 'attending', '2025-05-31 18:17:36', '2025-12-17 19:46:14', 'GmjM985d', '8368030'), + (71, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GmjM985d', '8388462'), + (71, 3150, 'attending', '2025-06-21 17:29:28', '2025-12-17 19:46:15', 'GmjM985d', '8393174'), + (71, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GmjM985d', '8400273'), + (71, 3154, 'attending', '2025-06-27 23:10:32', '2025-12-17 19:46:15', 'GmjM985d', '8400274'), + (71, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GmjM985d', '8400275'), + (71, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'GmjM985d', '8400276'), + (71, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GmjM985d', '8404977'), + (71, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GmjM985d', '8430783'), + (71, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GmjM985d', '8430784'), + (71, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GmjM985d', '8430799'), + (71, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GmjM985d', '8430800'), + (71, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GmjM985d', '8430801'), + (71, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GmjM985d', '8438709'), + (71, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GmjM985d', '8457738'), + (71, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GmjM985d', '8459566'), + (71, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GmjM985d', '8459567'), + (71, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GmjM985d', '8461032'), + (71, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GmjM985d', '8477877'), + (71, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'GmjM985d', '8485688'), + (71, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GmjM985d', '8490587'), + (71, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GmjM985d', '8493552'), + (71, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GmjM985d', '8493553'), + (71, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GmjM985d', '8493554'), + (71, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GmjM985d', '8493555'), + (71, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GmjM985d', '8493556'), + (71, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GmjM985d', '8493557'), + (71, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GmjM985d', '8493558'), + (71, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GmjM985d', '8493559'), + (71, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GmjM985d', '8493560'), + (71, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GmjM985d', '8493561'), + (71, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GmjM985d', '8493572'), + (71, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GmjM985d', '8540725'), + (71, 3300, 'attending', '2025-11-07 21:53:21', '2025-12-17 19:46:14', 'GmjM985d', '8549145'), + (71, 3302, 'attending', '2025-11-15 20:29:36', '2025-12-17 19:46:14', 'GmjM985d', '8550022'), + (71, 3304, 'attending', '2025-11-22 21:19:59', '2025-12-17 19:46:14', 'GmjM985d', '8550024'), + (71, 3306, 'not_attending', '2025-12-09 18:20:15', '2025-12-17 19:46:11', 'GmjM985d', '8550026'), + (71, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GmjM985d', '8555421'), + (71, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'GmjM985d', '8555522'), + (72, 3300, 'attending', '2025-11-09 00:32:13', '2025-12-17 19:46:14', 'd5b07J1m', '8549145'), + (72, 3302, 'attending', '2025-11-14 12:59:45', '2025-12-17 19:46:14', 'd5b07J1m', '8550022'), + (72, 3308, 'attending', '2025-11-11 05:28:00', '2025-12-17 19:46:14', 'd5b07J1m', '8550408'), + (72, 3309, 'attending', '2025-11-17 00:57:21', '2025-12-17 19:46:14', 'd5b07J1m', '8550409'), + (72, 3316, 'attending', '2025-11-05 04:37:28', '2025-12-17 19:46:14', 'd5b07J1m', '8552493'), + (72, 3319, 'attending', '2025-11-14 01:06:59', '2025-12-17 19:46:14', 'd5b07J1m', '8553114'), + (72, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd5b07J1m', '8555421'), + (72, 3326, 'attending', '2025-11-20 00:28:50', '2025-12-17 19:46:14', 'd5b07J1m', '8556661'), + (73, 3015, 'attending', '2025-04-23 01:08:50', '2025-12-17 19:46:20', '841PEgPA', '7869186'), + (73, 3016, 'attending', '2025-04-19 02:01:28', '2025-12-17 19:46:20', '841PEgPA', '7869187'), + (73, 3088, 'attending', '2025-06-09 21:29:03', '2025-12-17 19:46:15', '841PEgPA', '7904777'), + (73, 3094, 'attending', '2025-05-10 21:34:01', '2025-12-17 19:46:21', '841PEgPA', '8342292'), + (73, 3095, 'attending', '2025-04-28 01:40:56', '2025-12-17 19:46:20', '841PEgPA', '8342293'), + (73, 3108, 'attending', '2025-05-01 01:58:39', '2025-12-17 19:46:20', '841PEgPA', '8351411'), + (73, 3112, 'maybe', '2025-05-07 20:56:27', '2025-12-17 19:46:21', '841PEgPA', '8353584'), + (73, 3113, 'attending', '2025-05-01 21:18:44', '2025-12-17 19:46:20', '841PEgPA', '8355089'), + (73, 3119, 'attending', '2025-05-13 19:32:52', '2025-12-17 19:46:21', '841PEgPA', '8360035'), + (73, 3126, 'attending', '2025-05-14 02:50:24', '2025-12-17 19:46:21', '841PEgPA', '8365614'), + (73, 3128, 'maybe', '2025-05-13 16:42:12', '2025-12-17 19:46:21', '841PEgPA', '8366077'), + (73, 3131, 'attending', '2025-05-15 04:11:14', '2025-12-17 19:46:21', '841PEgPA', '8368028'), + (73, 3132, 'attending', '2025-05-23 19:27:25', '2025-12-17 19:46:21', '841PEgPA', '8368029'), + (73, 3134, 'attending', '2025-05-15 04:11:03', '2025-12-17 19:46:21', '841PEgPA', '8368031'), + (73, 3136, 'attending', '2025-05-21 19:54:41', '2025-12-17 19:46:21', '841PEgPA', '8374152'), + (73, 3137, 'attending', '2025-05-21 19:54:32', '2025-12-17 19:46:21', '841PEgPA', '8374153'), + (73, 3139, 'attending', '2025-05-23 19:27:20', '2025-12-17 19:46:21', '841PEgPA', '8377425'), + (73, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '841PEgPA', '8388462'), + (73, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '841PEgPA', '8400273'), + (73, 3154, 'not_attending', '2025-06-17 04:55:06', '2025-12-17 19:46:15', '841PEgPA', '8400274'), + (73, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '841PEgPA', '8400275'), + (73, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '841PEgPA', '8400276'), + (73, 3159, 'maybe', '2025-06-09 21:29:57', '2025-12-17 19:46:15', '841PEgPA', '8401410'), + (73, 3169, 'attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '841PEgPA', '8404977'), + (73, 3172, 'not_attending', '2025-06-17 05:09:39', '2025-12-17 19:46:15', '841PEgPA', '8410181'), + (73, 3173, 'attending', '2025-06-14 20:27:43', '2025-12-17 19:46:15', '841PEgPA', '8410806'), + (73, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '841PEgPA', '8430783'), + (73, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '841PEgPA', '8430784'), + (73, 3183, 'attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '841PEgPA', '8430799'), + (73, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '841PEgPA', '8430800'), + (73, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '841PEgPA', '8430801'), + (73, 3186, 'attending', '2025-07-03 21:00:22', '2025-12-17 19:46:16', '841PEgPA', '8431527'), + (73, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '841PEgPA', '8438709'), + (73, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '841PEgPA', '8457738'), + (73, 3194, 'not_attending', '2025-07-17 22:37:32', '2025-12-17 19:46:17', '841PEgPA', '8457740'), + (73, 3196, 'attending', '2025-08-13 20:13:07', '2025-12-17 19:46:17', '841PEgPA', '8458543'), + (73, 3198, 'maybe', '2025-08-18 16:03:11', '2025-12-17 19:46:18', '841PEgPA', '8459268'), + (73, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '841PEgPA', '8459566'), + (73, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '841PEgPA', '8459567'), + (73, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '841PEgPA', '8461032'), + (73, 3208, 'attending', '2025-07-31 17:33:12', '2025-12-17 19:46:17', '841PEgPA', '8467717'), + (73, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '841PEgPA', '8477877'), + (73, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '841PEgPA', '8485688'), + (73, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '841PEgPA', '8490587'), + (73, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '841PEgPA', '8493552'), + (73, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '841PEgPA', '8493553'), + (73, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '841PEgPA', '8493554'), + (73, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '841PEgPA', '8493555'), + (73, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '841PEgPA', '8493556'), + (73, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '841PEgPA', '8493557'), + (73, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '841PEgPA', '8493558'), + (73, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '841PEgPA', '8493559'), + (73, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '841PEgPA', '8493560'), + (73, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '841PEgPA', '8493561'), + (73, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '841PEgPA', '8493572'), + (73, 3255, 'maybe', '2025-08-26 11:40:57', '2025-12-17 19:46:18', '841PEgPA', '8495106'), + (73, 3256, 'maybe', '2025-08-27 17:49:41', '2025-12-17 19:46:11', '841PEgPA', '8501354'), + (73, 3258, 'attending', '2025-09-03 18:34:13', '2025-12-17 19:46:11', '841PEgPA', '8510285'), + (73, 3259, 'maybe', '2025-09-08 03:11:49', '2025-12-17 19:46:12', '841PEgPA', '8512638'), + (73, 3260, 'attending', '2025-09-08 03:11:33', '2025-12-17 19:46:12', '841PEgPA', '8512640'), + (73, 3261, 'attending', '2025-09-16 22:16:29', '2025-12-17 19:46:12', '841PEgPA', '8512641'), + (73, 3262, 'maybe', '2025-09-18 19:44:16', '2025-12-17 19:46:12', '841PEgPA', '8512642'), + (73, 3263, 'attending', '2025-09-10 16:00:30', '2025-12-17 19:46:12', '841PEgPA', '8514576'), + (73, 3265, 'attending', '2025-09-24 20:34:59', '2025-12-17 19:46:12', '841PEgPA', '8514578'), + (73, 3266, 'attending', '2025-09-30 00:12:54', '2025-12-17 19:46:13', '841PEgPA', '8514579'), + (73, 3268, 'maybe', '2025-09-18 22:25:17', '2025-12-17 19:46:12', '841PEgPA', '8514581'), + (73, 3271, 'maybe', '2025-09-22 19:46:43', '2025-12-17 19:46:12', '841PEgPA', '8521430'), + (73, 3279, 'attending', '2025-10-01 23:38:14', '2025-12-17 19:46:13', '841PEgPA', '8535685'), + (73, 3282, 'attending', '2025-10-06 18:58:22', '2025-12-17 19:46:13', '841PEgPA', '8537571'), + (73, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '841PEgPA', '8540725'), + (73, 3289, 'attending', '2025-10-20 19:06:24', '2025-12-17 19:46:14', '841PEgPA', '8542939'), + (73, 3292, 'attending', '2025-10-21 21:38:29', '2025-12-17 19:46:14', '841PEgPA', '8543835'), + (73, 3295, 'maybe', '2025-10-29 03:15:31', '2025-12-17 19:46:14', '841PEgPA', '8547541'), + (73, 3300, 'not_attending', '2025-11-05 05:29:38', '2025-12-17 19:46:14', '841PEgPA', '8549145'), + (73, 3305, 'attending', '2025-12-01 04:45:59', '2025-12-17 19:46:11', '841PEgPA', '8550025'), + (73, 3306, 'attending', '2025-12-10 22:59:29', '2025-12-17 19:46:11', '841PEgPA', '8550026'), + (73, 3307, 'attending', '2025-12-15 09:33:46', '2025-12-17 19:46:11', '841PEgPA', '8550027'), + (73, 3308, 'maybe', '2025-11-10 22:38:09', '2025-12-17 19:46:14', '841PEgPA', '8550408'), + (73, 3309, 'attending', '2025-11-17 00:11:58', '2025-12-17 19:46:14', '841PEgPA', '8550409'), + (73, 3310, 'attending', '2025-12-01 04:45:31', '2025-12-17 19:46:11', '841PEgPA', '8550410'), + (73, 3311, 'attending', '2025-12-08 04:50:27', '2025-12-17 19:46:11', '841PEgPA', '8550412'), + (73, 3313, 'attending', '2025-11-05 23:56:51', '2025-12-17 19:46:14', '841PEgPA', '8550896'), + (73, 3317, 'maybe', '2025-11-10 22:38:14', '2025-12-17 19:46:14', '841PEgPA', '8552943'), + (73, 3319, 'attending', '2025-11-08 01:20:04', '2025-12-17 19:46:14', '841PEgPA', '8553114'), + (73, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '841PEgPA', '8555421'), + (73, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', '841PEgPA', '8555522'), + (73, 3327, 'attending', '2025-12-04 20:57:38', '2025-12-17 19:46:11', '841PEgPA', '8557174'), + (73, 3334, 'attending', '2025-12-08 18:12:46', '2025-12-17 19:46:11', '841PEgPA', '8563246'), + (73, 3335, 'attending', '2025-12-11 22:25:11', '2025-12-17 19:46:11', '841PEgPA', '8563247'), + (73, 3336, 'attending', '2025-12-15 22:42:16', '2025-12-17 19:46:11', '841PEgPA', '8563248'), + (74, 646, 'attending', '2021-05-12 20:55:10', '2025-12-17 19:47:46', 'amG6Ynrd', '3539921'), + (74, 647, 'attending', '2021-05-17 20:53:45', '2025-12-17 19:47:46', 'amG6Ynrd', '3539922'), + (74, 648, 'attending', '2021-05-24 22:45:28', '2025-12-17 19:47:47', 'amG6Ynrd', '3539923'), + (74, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amG6Ynrd', '3974109'), + (74, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amG6Ynrd', '3975311'), + (74, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amG6Ynrd', '3975312'), + (74, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amG6Ynrd', '3994992'), + (74, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amG6Ynrd', '4014338'), + (74, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amG6Ynrd', '4021848'), + (74, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amG6Ynrd', '4136744'), + (74, 870, 'attending', '2021-06-29 22:35:06', '2025-12-17 19:47:38', 'amG6Ynrd', '4136937'), + (74, 871, 'attending', '2021-07-06 19:21:23', '2025-12-17 19:47:39', 'amG6Ynrd', '4136938'), + (74, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amG6Ynrd', '4136947'), + (74, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amG6Ynrd', '4210314'), + (74, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amG6Ynrd', '4225444'), + (74, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amG6Ynrd', '4239259'), + (74, 900, 'attending', '2021-07-18 20:15:30', '2025-12-17 19:47:40', 'amG6Ynrd', '4240316'), + (74, 901, 'attending', '2021-07-31 17:55:35', '2025-12-17 19:47:40', 'amG6Ynrd', '4240317'), + (74, 902, 'attending', '2021-08-04 21:43:39', '2025-12-17 19:47:41', 'amG6Ynrd', '4240318'), + (74, 903, 'not_attending', '2021-08-13 16:21:28', '2025-12-17 19:47:42', 'amG6Ynrd', '4240320'), + (74, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amG6Ynrd', '4250163'), + (74, 919, 'attending', '2021-07-17 23:16:00', '2025-12-17 19:47:39', 'amG6Ynrd', '4275957'), + (74, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amG6Ynrd', '4277819'), + (74, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amG6Ynrd', '4301723'), + (74, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'amG6Ynrd', '4302093'), + (74, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amG6Ynrd', '4304151'), + (74, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'amG6Ynrd', '4345519'), + (74, 971, 'not_attending', '2021-09-08 22:58:52', '2025-12-17 19:47:43', 'amG6Ynrd', '4356801'), + (74, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'amG6Ynrd', '4358025'), + (74, 973, 'attending', '2021-08-21 15:29:52', '2025-12-17 19:47:42', 'amG6Ynrd', '4366186'), + (74, 974, 'attending', '2021-08-28 14:59:15', '2025-12-17 19:47:42', 'amG6Ynrd', '4366187'), + (74, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'amG6Ynrd', '4402823'), + (74, 990, 'not_attending', '2021-08-29 14:05:19', '2025-12-17 19:47:43', 'amG6Ynrd', '4420735'), + (74, 991, 'attending', '2021-08-29 14:05:58', '2025-12-17 19:47:43', 'amG6Ynrd', '4420738'), + (74, 992, 'attending', '2021-09-18 22:16:58', '2025-12-17 19:47:33', 'amG6Ynrd', '4420739'), + (74, 993, 'attending', '2021-09-25 21:11:56', '2025-12-17 19:47:34', 'amG6Ynrd', '4420741'), + (74, 994, 'not_attending', '2021-10-02 01:35:02', '2025-12-17 19:47:34', 'amG6Ynrd', '4420742'), + (74, 995, 'not_attending', '2021-10-06 22:20:01', '2025-12-17 19:47:34', 'amG6Ynrd', '4420744'), + (74, 996, 'maybe', '2021-10-16 22:10:34', '2025-12-17 19:47:35', 'amG6Ynrd', '4420747'), + (74, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'amG6Ynrd', '4420748'), + (74, 998, 'maybe', '2021-10-30 22:13:01', '2025-12-17 19:47:36', 'amG6Ynrd', '4420749'), + (74, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'amG6Ynrd', '4461883'), + (74, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'amG6Ynrd', '4508342'), + (74, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'amG6Ynrd', '4568602'), + (74, 1087, 'maybe', '2021-10-15 18:11:45', '2025-12-17 19:47:35', 'amG6Ynrd', '4572153'), + (74, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'amG6Ynrd', '4585962'), + (74, 1094, 'attending', '2021-10-31 22:32:28', '2025-12-17 19:47:36', 'amG6Ynrd', '4587337'), + (74, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'amG6Ynrd', '4596356'), + (74, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'amG6Ynrd', '4598860'), + (74, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'amG6Ynrd', '4598861'), + (74, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'amG6Ynrd', '4602797'), + (74, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'amG6Ynrd', '4637896'), + (74, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'amG6Ynrd', '4642994'), + (74, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'amG6Ynrd', '4642995'), + (74, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'amG6Ynrd', '4642996'), + (74, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'amG6Ynrd', '4642997'), + (74, 1126, 'attending', '2021-12-11 18:46:37', '2025-12-17 19:47:38', 'amG6Ynrd', '4645687'), + (74, 1127, 'attending', '2021-12-12 20:52:27', '2025-12-17 19:47:38', 'amG6Ynrd', '4645698'), + (74, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'amG6Ynrd', '4645704'), + (74, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'amG6Ynrd', '4645705'), + (74, 1130, 'attending', '2021-12-04 22:58:27', '2025-12-17 19:47:37', 'amG6Ynrd', '4658824'), + (74, 1131, 'not_attending', '2021-12-19 00:33:23', '2025-12-17 19:47:31', 'amG6Ynrd', '4658825'), + (74, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'amG6Ynrd', '4668385'), + (74, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amG6Ynrd', '4694407'), + (74, 1173, 'attending', '2022-01-08 14:28:14', '2025-12-17 19:47:31', 'amG6Ynrd', '4736495'), + (74, 1174, 'attending', '2022-01-16 00:21:27', '2025-12-17 19:47:31', 'amG6Ynrd', '4736496'), + (74, 1175, 'attending', '2022-01-21 19:51:53', '2025-12-17 19:47:32', 'amG6Ynrd', '4736497'), + (74, 1176, 'attending', '2022-02-06 00:02:32', '2025-12-17 19:47:32', 'amG6Ynrd', '4736498'), + (74, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amG6Ynrd', '4736499'), + (74, 1178, 'maybe', '2022-01-29 04:59:54', '2025-12-17 19:47:32', 'amG6Ynrd', '4736500'), + (74, 1181, 'attending', '2022-03-05 12:30:57', '2025-12-17 19:47:33', 'amG6Ynrd', '4736503'), + (74, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amG6Ynrd', '4736504'), + (74, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'amG6Ynrd', '4746789'), + (74, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amG6Ynrd', '4753929'), + (74, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amG6Ynrd', '5038850'), + (74, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amG6Ynrd', '5045826'), + (74, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amG6Ynrd', '5132533'), + (74, 1272, 'maybe', '2022-03-18 19:52:05', '2025-12-17 19:47:25', 'amG6Ynrd', '5186582'), + (74, 1273, 'maybe', '2022-03-20 10:01:16', '2025-12-17 19:47:25', 'amG6Ynrd', '5186583'), + (74, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amG6Ynrd', '5186585'), + (74, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amG6Ynrd', '5190437'), + (74, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'amG6Ynrd', '5195095'), + (74, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'amG6Ynrd', '5215989'), + (74, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'amG6Ynrd', '5223686'), + (74, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'amG6Ynrd', '5227432'), + (74, 1336, 'maybe', '2022-04-19 16:33:19', '2025-12-17 19:47:27', 'amG6Ynrd', '5244915'), + (74, 1346, 'maybe', '2022-04-20 00:05:45', '2025-12-17 19:47:27', 'amG6Ynrd', '5247467'), + (74, 1362, 'attending', '2022-04-29 17:28:49', '2025-12-17 19:47:28', 'amG6Ynrd', '5260800'), + (74, 1374, 'not_attending', '2022-05-07 21:46:13', '2025-12-17 19:47:28', 'amG6Ynrd', '5269930'), + (74, 1378, 'not_attending', '2022-05-14 15:03:35', '2025-12-17 19:47:29', 'amG6Ynrd', '5271448'), + (74, 1379, 'not_attending', '2022-05-21 23:01:38', '2025-12-17 19:47:30', 'amG6Ynrd', '5271449'), + (74, 1383, 'maybe', '2022-05-04 01:02:55', '2025-12-17 19:47:28', 'amG6Ynrd', '5276469'), + (74, 1384, 'not_attending', '2022-05-07 21:46:17', '2025-12-17 19:47:28', 'amG6Ynrd', '5277078'), + (74, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'amG6Ynrd', '5278159'), + (74, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'amG6Ynrd', '5363695'), + (74, 1408, 'not_attending', '2022-05-20 21:57:31', '2025-12-17 19:47:29', 'amG6Ynrd', '5365960'), + (74, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'amG6Ynrd', '5368973'), + (74, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'amG6Ynrd', '5378247'), + (74, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'amG6Ynrd', '5389605'), + (74, 1442, 'attending', '2022-06-18 12:02:49', '2025-12-17 19:47:17', 'amG6Ynrd', '5397265'), + (74, 1451, 'not_attending', '2022-06-17 16:03:24', '2025-12-17 19:47:17', 'amG6Ynrd', '5403967'), + (74, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'amG6Ynrd', '5404786'), + (74, 1462, 'not_attending', '2022-06-17 16:03:27', '2025-12-17 19:47:17', 'amG6Ynrd', '5405203'), + (74, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'amG6Ynrd', '5411699'), + (74, 1482, 'not_attending', '2022-06-25 15:30:57', '2025-12-17 19:47:19', 'amG6Ynrd', '5412550'), + (74, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'amG6Ynrd', '5415046'), + (74, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'amG6Ynrd', '5422086'), + (74, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'amG6Ynrd', '5422406'), + (74, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'amG6Ynrd', '5424565'), + (74, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'amG6Ynrd', '5426882'), + (74, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'amG6Ynrd', '5427083'), + (74, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'amG6Ynrd', '5441125'), + (74, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'amG6Ynrd', '5441126'), + (74, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'amG6Ynrd', '5446643'), + (74, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'amG6Ynrd', '5453325'), + (74, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'amG6Ynrd', '5454516'), + (74, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'amG6Ynrd', '5454605'), + (74, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'amG6Ynrd', '5455037'), + (74, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'amG6Ynrd', '5471073'), + (74, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'amG6Ynrd', '5474663'), + (74, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'amG6Ynrd', '5482022'), + (74, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amG6Ynrd', '6045684'), + (74, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'amG6Ynrd', '6361713'), + (74, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'amG6Ynrd', '6388604'), + (74, 2242, 'attending', '2023-09-22 23:30:43', '2025-12-17 19:46:45', 'amG6Ynrd', '6388606'), + (74, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'amG6Ynrd', '6394629'), + (74, 2250, 'maybe', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'amG6Ynrd', '6394631'), + (74, 2253, 'attending', '2023-09-26 21:35:15', '2025-12-17 19:46:45', 'amG6Ynrd', '6401811'), + (74, 2254, 'attending', '2023-09-10 21:29:34', '2025-12-17 19:46:44', 'amG6Ynrd', '6401889'), + (74, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'amG6Ynrd', '6440863'), + (74, 2270, 'attending', '2023-10-10 21:20:44', '2025-12-17 19:46:46', 'amG6Ynrd', '6443067'), + (74, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'amG6Ynrd', '6445440'), + (74, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'amG6Ynrd', '6453951'), + (74, 2283, 'maybe', '2023-10-10 22:55:48', '2025-12-17 19:46:46', 'amG6Ynrd', '6455503'), + (74, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'amG6Ynrd', '6461696'), + (74, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'amG6Ynrd', '6462129'), + (74, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'amG6Ynrd', '6463218'), + (74, 2299, 'attending', '2023-10-20 21:54:28', '2025-12-17 19:46:46', 'amG6Ynrd', '6472181'), + (74, 2303, 'attending', '2023-10-26 20:57:01', '2025-12-17 19:46:47', 'amG6Ynrd', '6482691'), + (74, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'amG6Ynrd', '6482693'), + (74, 2306, 'maybe', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'amG6Ynrd', '6484200'), + (74, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'amG6Ynrd', '6484680'), + (74, 2310, 'not_attending', '2023-11-11 19:57:59', '2025-12-17 19:46:47', 'amG6Ynrd', '6487709'), + (74, 2314, 'not_attending', '2023-11-01 22:15:33', '2025-12-17 19:46:47', 'amG6Ynrd', '6493665'), + (74, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'amG6Ynrd', '6507741'), + (74, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'amG6Ynrd', '6514659'), + (74, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'amG6Ynrd', '6514660'), + (74, 2324, 'attending', '2023-12-09 21:43:37', '2025-12-17 19:46:49', 'amG6Ynrd', '6514662'), + (74, 2325, 'attending', '2023-12-15 11:35:41', '2025-12-17 19:46:36', 'amG6Ynrd', '6514663'), + (74, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'amG6Ynrd', '6519103'), + (74, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'amG6Ynrd', '6535681'), + (74, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'amG6Ynrd', '6584747'), + (74, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'amG6Ynrd', '6587097'), + (74, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'amG6Ynrd', '6609022'), + (74, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'amG6Ynrd', '6632757'), + (74, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'amG6Ynrd', '6644187'), + (74, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'amG6Ynrd', '6648951'), + (74, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'amG6Ynrd', '6648952'), + (74, 2388, 'maybe', '2024-01-05 11:50:53', '2025-12-17 19:46:37', 'amG6Ynrd', '6649244'), + (74, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'amG6Ynrd', '6655401'), + (74, 2399, 'maybe', '2024-01-13 20:04:48', '2025-12-17 19:46:38', 'amG6Ynrd', '6657583'), + (74, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'amG6Ynrd', '6661585'), + (74, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'amG6Ynrd', '6661588'), + (74, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'amG6Ynrd', '6661589'), + (74, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'amG6Ynrd', '6699906'), + (74, 2408, 'attending', '2024-01-27 17:48:51', '2025-12-17 19:46:40', 'amG6Ynrd', '6699907'), + (74, 2409, 'not_attending', '2024-01-31 20:24:49', '2025-12-17 19:46:41', 'amG6Ynrd', '6699909'), + (74, 2410, 'attending', '2024-02-09 23:20:48', '2025-12-17 19:46:41', 'amG6Ynrd', '6699911'), + (74, 2411, 'attending', '2024-02-16 15:44:11', '2025-12-17 19:46:41', 'amG6Ynrd', '6699913'), + (74, 2412, 'not_attending', '2024-02-20 11:51:47', '2025-12-17 19:46:43', 'amG6Ynrd', '6700717'), + (74, 2414, 'attending', '2024-01-20 17:54:09', '2025-12-17 19:46:40', 'amG6Ynrd', '6701000'), + (74, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'amG6Ynrd', '6701109'), + (74, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'amG6Ynrd', '6705219'), + (74, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'amG6Ynrd', '6710153'), + (74, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'amG6Ynrd', '6711552'), + (74, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'amG6Ynrd', '6711553'), + (74, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'amG6Ynrd', '6722688'), + (74, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'amG6Ynrd', '6730620'), + (74, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'amG6Ynrd', '6730642'), + (74, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'amG6Ynrd', '6740364'), + (74, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'amG6Ynrd', '6743829'), + (74, 2465, 'not_attending', '2024-02-17 22:18:49', '2025-12-17 19:46:42', 'amG6Ynrd', '7026725'), + (74, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'amG6Ynrd', '7030380'), + (74, 2469, 'maybe', '2024-02-17 22:17:38', '2025-12-17 19:46:42', 'amG6Ynrd', '7030632'), + (74, 2471, 'maybe', '2024-02-19 01:04:34', '2025-12-17 19:46:42', 'amG6Ynrd', '7032425'), + (74, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'amG6Ynrd', '7033677'), + (74, 2474, 'attending', '2024-02-20 21:49:45', '2025-12-17 19:46:43', 'amG6Ynrd', '7035415'), + (74, 2475, 'maybe', '2024-02-23 03:33:01', '2025-12-17 19:46:43', 'amG6Ynrd', '7035643'), + (74, 2477, 'maybe', '2024-02-22 22:52:38', '2025-12-17 19:46:42', 'amG6Ynrd', '7035692'), + (74, 2481, 'maybe', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'amG6Ynrd', '7044715'), + (74, 2482, 'not_attending', '2024-03-07 01:06:19', '2025-12-17 19:46:44', 'amG6Ynrd', '7044719'), + (74, 2483, 'not_attending', '2024-02-24 21:49:12', '2025-12-17 19:46:32', 'amG6Ynrd', '7044720'), + (74, 2485, 'attending', '2024-02-26 23:56:04', '2025-12-17 19:46:43', 'amG6Ynrd', '7048111'), + (74, 2486, 'maybe', '2024-03-04 23:28:23', '2025-12-17 19:46:43', 'amG6Ynrd', '7048277'), + (74, 2487, 'maybe', '2024-03-17 20:20:11', '2025-12-17 19:46:33', 'amG6Ynrd', '7049279'), + (74, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'amG6Ynrd', '7050318'), + (74, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'amG6Ynrd', '7050319'), + (74, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'amG6Ynrd', '7050322'), + (74, 2493, 'not_attending', '2024-03-10 21:05:39', '2025-12-17 19:46:32', 'amG6Ynrd', '7052471'), + (74, 2494, 'not_attending', '2024-03-10 21:05:42', '2025-12-17 19:46:32', 'amG6Ynrd', '7052472'), + (74, 2499, 'attending', '2024-03-07 01:05:52', '2025-12-17 19:46:43', 'amG6Ynrd', '7057804'), + (74, 2502, 'maybe', '2024-03-17 20:19:39', '2025-12-17 19:46:33', 'amG6Ynrd', '7061202'), + (74, 2503, 'not_attending', '2024-03-07 01:09:11', '2025-12-17 19:46:32', 'amG6Ynrd', '7062500'), + (74, 2505, 'maybe', '2024-03-17 20:19:57', '2025-12-17 19:46:33', 'amG6Ynrd', '7069163'), + (74, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'amG6Ynrd', '7072824'), + (74, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'amG6Ynrd', '7074348'), + (74, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'amG6Ynrd', '7074364'), + (74, 2525, 'maybe', '2024-06-10 16:59:37', '2025-12-17 19:46:28', 'amG6Ynrd', '7074365'), + (74, 2534, 'maybe', '2024-03-13 16:22:34', '2025-12-17 19:46:32', 'amG6Ynrd', '7076875'), + (74, 2539, 'attending', '2024-04-05 18:33:49', '2025-12-17 19:46:33', 'amG6Ynrd', '7085486'), + (74, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'amG6Ynrd', '7089267'), + (74, 2541, 'maybe', '2024-03-17 20:19:16', '2025-12-17 19:46:33', 'amG6Ynrd', '7089404'), + (74, 2548, 'maybe', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'amG6Ynrd', '7098747'), + (74, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'amG6Ynrd', '7113468'), + (74, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'amG6Ynrd', '7114856'), + (74, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'amG6Ynrd', '7114951'), + (74, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'amG6Ynrd', '7114955'), + (74, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'amG6Ynrd', '7114956'), + (74, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'amG6Ynrd', '7114957'), + (74, 2566, 'maybe', '2024-04-05 18:35:25', '2025-12-17 19:46:34', 'amG6Ynrd', '7140664'), + (74, 2567, 'maybe', '2024-04-05 18:34:22', '2025-12-17 19:46:33', 'amG6Ynrd', '7144962'), + (74, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'amG6Ynrd', '7153615'), + (74, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'amG6Ynrd', '7159484'), + (74, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'amG6Ynrd', '7178446'), + (74, 2597, 'maybe', '2024-04-23 20:00:49', '2025-12-17 19:46:34', 'amG6Ynrd', '7186726'), + (74, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'amG6Ynrd', '7220467'), + (74, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'amG6Ynrd', '7240354'), + (74, 2613, 'maybe', '2024-05-05 12:55:48', '2025-12-17 19:46:35', 'amG6Ynrd', '7247644'), + (74, 2614, 'maybe', '2024-05-05 12:55:54', '2025-12-17 19:46:35', 'amG6Ynrd', '7247645'), + (74, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'amG6Ynrd', '7251633'), + (74, 2626, 'attending', '2024-05-18 11:20:56', '2025-12-17 19:46:35', 'amG6Ynrd', '7264723'), + (74, 2627, 'attending', '2024-05-20 08:45:38', '2025-12-17 19:46:35', 'amG6Ynrd', '7264724'), + (74, 2628, 'attending', '2024-05-29 00:35:17', '2025-12-17 19:46:36', 'amG6Ynrd', '7264725'), + (74, 2629, 'attending', '2024-06-07 21:26:09', '2025-12-17 19:46:28', 'amG6Ynrd', '7264726'), + (74, 2636, 'maybe', '2024-05-20 08:45:44', '2025-12-17 19:46:35', 'amG6Ynrd', '7270323'), + (74, 2637, 'maybe', '2024-05-20 08:45:46', '2025-12-17 19:46:35', 'amG6Ynrd', '7270324'), + (74, 2647, 'attending', '2024-05-21 16:58:41', '2025-12-17 19:46:28', 'amG6Ynrd', '7282057'), + (74, 2649, 'maybe', '2024-05-25 13:02:51', '2025-12-17 19:46:35', 'amG6Ynrd', '7282950'), + (74, 2652, 'maybe', '2024-05-29 00:34:52', '2025-12-17 19:46:36', 'amG6Ynrd', '7288339'), + (74, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'amG6Ynrd', '7302674'), + (74, 2672, 'maybe', '2024-06-09 16:03:14', '2025-12-17 19:46:28', 'amG6Ynrd', '7318459'), + (74, 2674, 'maybe', '2024-07-01 18:21:06', '2025-12-17 19:46:29', 'amG6Ynrd', '7319480'), + (74, 2678, 'attending', '2024-06-15 16:05:34', '2025-12-17 19:46:28', 'amG6Ynrd', '7319489'), + (74, 2679, 'attending', '2024-06-20 12:28:01', '2025-12-17 19:46:29', 'amG6Ynrd', '7319490'), + (74, 2681, 'maybe', '2024-06-10 16:59:03', '2025-12-17 19:46:28', 'amG6Ynrd', '7320409'), + (74, 2686, 'maybe', '2024-06-20 12:27:49', '2025-12-17 19:46:29', 'amG6Ynrd', '7323802'), + (74, 2688, 'attending', '2024-06-24 21:39:50', '2025-12-17 19:46:29', 'amG6Ynrd', '7324073'), + (74, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'amG6Ynrd', '7324074'), + (74, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'amG6Ynrd', '7324075'), + (74, 2691, 'not_attending', '2024-07-11 11:51:44', '2025-12-17 19:46:30', 'amG6Ynrd', '7324076'), + (74, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'amG6Ynrd', '7324078'), + (74, 2694, 'maybe', '2024-08-07 15:52:56', '2025-12-17 19:46:31', 'amG6Ynrd', '7324079'), + (74, 2696, 'attending', '2024-08-24 22:12:13', '2025-12-17 19:46:32', 'amG6Ynrd', '7324081'), + (74, 2697, 'maybe', '2024-08-30 10:26:55', '2025-12-17 19:46:32', 'amG6Ynrd', '7324082'), + (74, 2701, 'maybe', '2024-06-26 20:10:00', '2025-12-17 19:46:29', 'amG6Ynrd', '7324391'), + (74, 2705, 'maybe', '2024-06-26 22:03:28', '2025-12-17 19:46:29', 'amG6Ynrd', '7324944'), + (74, 2717, 'maybe', '2024-06-24 21:39:44', '2025-12-17 19:46:29', 'amG6Ynrd', '7329149'), + (74, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'amG6Ynrd', '7331457'), + (74, 2733, 'maybe', '2024-06-26 00:43:26', '2025-12-17 19:46:29', 'amG6Ynrd', '7338853'), + (74, 2738, 'maybe', '2024-07-01 18:20:27', '2025-12-17 19:46:29', 'amG6Ynrd', '7344085'), + (74, 2763, 'maybe', '2024-07-18 16:02:12', '2025-12-17 19:46:30', 'amG6Ynrd', '7363594'), + (74, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'amG6Ynrd', '7363643'), + (74, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'amG6Ynrd', '7368606'), + (74, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'amG6Ynrd', '7397462'), + (74, 2816, 'maybe', '2024-09-19 00:10:38', '2025-12-17 19:46:25', 'amG6Ynrd', '7424269'), + (74, 2821, 'attending', '2024-10-12 15:57:48', '2025-12-17 19:46:26', 'amG6Ynrd', '7424275'), + (74, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'amG6Ynrd', '7424276'), + (74, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'amG6Ynrd', '7432751'), + (74, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'amG6Ynrd', '7432752'), + (74, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'amG6Ynrd', '7432753'), + (74, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'amG6Ynrd', '7432754'), + (74, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'amG6Ynrd', '7432755'), + (74, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'amG6Ynrd', '7432756'), + (74, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'amG6Ynrd', '7432758'), + (74, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'amG6Ynrd', '7432759'), + (74, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'amG6Ynrd', '7433834'), + (74, 2834, 'maybe', '2024-09-14 14:39:10', '2025-12-17 19:46:25', 'amG6Ynrd', '7433852'), + (74, 2843, 'maybe', '2024-09-20 16:11:10', '2025-12-17 19:46:25', 'amG6Ynrd', '7450219'), + (74, 2860, 'maybe', '2024-10-08 22:21:11', '2025-12-17 19:46:26', 'amG6Ynrd', '7469393'), + (74, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'amG6Ynrd', '7470197'), + (74, 2876, 'maybe', '2024-10-08 22:20:55', '2025-12-17 19:46:26', 'amG6Ynrd', '7490980'), + (74, 2897, 'maybe', '2024-11-16 14:05:39', '2025-12-17 19:46:27', 'amG6Ynrd', '7683650'), + (74, 2898, 'maybe', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'amG6Ynrd', '7685613'), + (74, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'amG6Ynrd', '7688194'), + (74, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'amG6Ynrd', '7688196'), + (74, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'amG6Ynrd', '7688289'), + (74, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'amG6Ynrd', '7692763'), + (74, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'amG6Ynrd', '7697552'), + (74, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'amG6Ynrd', '7699878'), + (74, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'amG6Ynrd', '7704043'), + (74, 2922, 'not_attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'amG6Ynrd', '7710890'), + (74, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'amG6Ynrd', '7712467'), + (74, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'amG6Ynrd', '7713585'), + (74, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'amG6Ynrd', '7713586'), + (74, 2929, 'maybe', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'amG6Ynrd', '7723465'), + (74, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'amG6Ynrd', '7738518'), + (74, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', 'amG6Ynrd', '7750632'), + (74, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'amG6Ynrd', '7750636'), + (74, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'amG6Ynrd', '7796540'), + (74, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'amG6Ynrd', '7796541'), + (74, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'amG6Ynrd', '7796542'), + (74, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'amG6Ynrd', '7825913'), + (74, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'amG6Ynrd', '7826209'), + (74, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'amG6Ynrd', '7834742'), + (74, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'amG6Ynrd', '7842108'), + (74, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'amG6Ynrd', '7842902'), + (74, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'amG6Ynrd', '7842903'), + (74, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'amG6Ynrd', '7842904'), + (74, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'amG6Ynrd', '7842905'), + (74, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'amG6Ynrd', '7855719'), + (74, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'amG6Ynrd', '7860683'), + (74, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'amG6Ynrd', '7860684'), + (74, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'amG6Ynrd', '7866095'), + (74, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'amG6Ynrd', '7869170'), + (74, 3014, 'attending', '2025-04-05 14:30:51', '2025-12-17 19:46:20', 'amG6Ynrd', '7869185'), + (74, 3015, 'not_attending', '2025-04-26 19:09:54', '2025-12-17 19:46:20', 'amG6Ynrd', '7869186'), + (74, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'amG6Ynrd', '7869188'), + (74, 3018, 'not_attending', '2025-04-12 20:49:47', '2025-12-17 19:46:20', 'amG6Ynrd', '7869189'), + (74, 3028, 'maybe', '2025-04-26 13:49:53', '2025-12-17 19:46:20', 'amG6Ynrd', '7869199'), + (74, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'amG6Ynrd', '7869201'), + (74, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'amG6Ynrd', '7877465'), + (74, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'amG6Ynrd', '7888250'), + (74, 3072, 'maybe', '2025-04-01 14:00:54', '2025-12-17 19:46:19', 'amG6Ynrd', '7895449'), + (74, 3081, 'maybe', '2025-04-11 20:52:51', '2025-12-17 19:46:20', 'amG6Ynrd', '7902801'), + (74, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'amG6Ynrd', '7904777'), + (74, 3095, 'not_attending', '2025-04-29 15:15:48', '2025-12-17 19:46:20', 'amG6Ynrd', '8342293'), + (74, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'amG6Ynrd', '8349164'), + (74, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'amG6Ynrd', '8349545'), + (74, 3110, 'maybe', '2025-05-07 01:51:58', '2025-12-17 19:46:21', 'amG6Ynrd', '8353484'), + (74, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'amG6Ynrd', '8353584'), + (74, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'amG6Ynrd', '8368028'), + (74, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'amG6Ynrd', '8368029'), + (74, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'amG6Ynrd', '8388462'), + (74, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'amG6Ynrd', '8400273'), + (74, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'amG6Ynrd', '8400274'), + (74, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'amG6Ynrd', '8400275'), + (74, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'amG6Ynrd', '8400276'), + (74, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'amG6Ynrd', '8404977'), + (74, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'amG6Ynrd', '8430783'), + (74, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'amG6Ynrd', '8430784'), + (74, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'amG6Ynrd', '8430799'), + (74, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'amG6Ynrd', '8430800'), + (74, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'amG6Ynrd', '8430801'), + (74, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'amG6Ynrd', '8438709'), + (74, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'amG6Ynrd', '8457738'), + (74, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'amG6Ynrd', '8459566'), + (74, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'amG6Ynrd', '8459567'), + (74, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'amG6Ynrd', '8461032'), + (74, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'amG6Ynrd', '8477877'), + (74, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'amG6Ynrd', '8485688'), + (74, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'amG6Ynrd', '8490587'), + (74, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'amG6Ynrd', '8493552'), + (74, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'amG6Ynrd', '8493553'), + (74, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'amG6Ynrd', '8493554'), + (74, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'amG6Ynrd', '8493555'), + (74, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'amG6Ynrd', '8493556'), + (74, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'amG6Ynrd', '8493557'), + (74, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'amG6Ynrd', '8493558'), + (74, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'amG6Ynrd', '8493559'), + (74, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'amG6Ynrd', '8493560'), + (74, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'amG6Ynrd', '8493561'), + (74, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'amG6Ynrd', '8493572'), + (74, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'amG6Ynrd', '8540725'), + (74, 3302, 'attending', '2025-11-13 22:08:26', '2025-12-17 19:46:14', 'amG6Ynrd', '8550022'), + (74, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'amG6Ynrd', '8555421'), + (75, 3201, 'attending', '2025-08-09 21:33:56', '2025-12-17 19:46:17', '4Wpw0zEd', '8459567'), + (75, 3211, 'attending', '2025-08-08 20:28:43', '2025-12-17 19:46:17', '4Wpw0zEd', '8477785'), + (75, 3218, 'not_attending', '2025-08-09 00:21:03', '2025-12-17 19:46:17', '4Wpw0zEd', '8481869'), + (75, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4Wpw0zEd', '8485688'), + (75, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4Wpw0zEd', '8490587'), + (75, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4Wpw0zEd', '8493552'), + (75, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4Wpw0zEd', '8493553'), + (75, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4Wpw0zEd', '8493554'), + (75, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4Wpw0zEd', '8493555'), + (75, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4Wpw0zEd', '8493556'), + (75, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4Wpw0zEd', '8493557'), + (75, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4Wpw0zEd', '8493558'), + (75, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4Wpw0zEd', '8493559'), + (75, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4Wpw0zEd', '8493560'), + (75, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '4Wpw0zEd', '8493561'), + (75, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4Wpw0zEd', '8493572'), + (75, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4Wpw0zEd', '8540725'), + (75, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4Wpw0zEd', '8555421'), + (76, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mp1j1klA', '8438709'), + (76, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mp1j1klA', '8457738'), + (76, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mp1j1klA', '8459566'), + (76, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mp1j1klA', '8459567'), + (76, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mp1j1klA', '8461032'), + (76, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mp1j1klA', '8477877'), + (76, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mp1j1klA', '8485688'), + (76, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mp1j1klA', '8490587'), + (76, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mp1j1klA', '8493552'), + (76, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mp1j1klA', '8493553'), + (76, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mp1j1klA', '8493554'), + (76, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mp1j1klA', '8493555'), + (76, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mp1j1klA', '8493556'), + (76, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mp1j1klA', '8493557'), + (76, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mp1j1klA', '8493558'), + (76, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mp1j1klA', '8493559'), + (76, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mp1j1klA', '8493560'), + (76, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mp1j1klA', '8493561'), + (76, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mp1j1klA', '8493572'), + (76, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mp1j1klA', '8540725'), + (76, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mp1j1klA', '8555421'), + (77, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AYg6GRGd', '7074364'), + (77, 2604, 'attending', '2024-05-29 01:15:44', '2025-12-17 19:46:36', 'AYg6GRGd', '7225670'), + (77, 2628, 'not_attending', '2024-05-31 00:56:26', '2025-12-17 19:46:36', 'AYg6GRGd', '7264725'), + (77, 2629, 'attending', '2024-06-08 12:20:11', '2025-12-17 19:46:28', 'AYg6GRGd', '7264726'), + (77, 2647, 'attending', '2024-06-09 18:39:47', '2025-12-17 19:46:28', 'AYg6GRGd', '7282057'), + (77, 2654, 'maybe', '2024-05-28 17:57:16', '2025-12-17 19:46:36', 'AYg6GRGd', '7291219'), + (77, 2657, 'attending', '2024-05-29 01:20:06', '2025-12-17 19:46:36', 'AYg6GRGd', '7294438'), + (77, 2658, 'attending', '2024-06-01 19:49:45', '2025-12-17 19:46:36', 'AYg6GRGd', '7298846'), + (77, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AYg6GRGd', '7302674'), + (77, 2662, 'not_attending', '2024-06-05 04:03:00', '2025-12-17 19:46:36', 'AYg6GRGd', '7302815'), + (77, 2667, 'attending', '2024-06-05 14:30:36', '2025-12-17 19:46:36', 'AYg6GRGd', '7307776'), + (77, 2671, 'attending', '2024-06-09 18:45:29', '2025-12-17 19:46:28', 'AYg6GRGd', '7318256'), + (77, 2688, 'attending', '2024-06-24 18:48:49', '2025-12-17 19:46:29', 'AYg6GRGd', '7324073'), + (77, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AYg6GRGd', '7324074'), + (77, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AYg6GRGd', '7324075'), + (77, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AYg6GRGd', '7324078'), + (77, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AYg6GRGd', '7324082'), + (77, 2699, 'attending', '2024-06-12 22:45:07', '2025-12-17 19:46:28', 'AYg6GRGd', '7324385'), + (77, 2706, 'attending', '2024-06-19 15:17:00', '2025-12-17 19:46:28', 'AYg6GRGd', '7324947'), + (77, 2707, 'maybe', '2024-06-13 20:30:14', '2025-12-17 19:46:28', 'AYg6GRGd', '7324952'), + (77, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AYg6GRGd', '7331457'), + (77, 2724, 'attending', '2024-06-19 17:48:24', '2025-12-17 19:46:29', 'AYg6GRGd', '7332562'), + (77, 2755, 'not_attending', '2024-07-10 15:51:31', '2025-12-17 19:46:29', 'AYg6GRGd', '7357808'), + (77, 2756, 'attending', '2024-07-09 23:06:53', '2025-12-17 19:46:29', 'AYg6GRGd', '7358329'), + (77, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AYg6GRGd', '7363643'), + (77, 2773, 'not_attending', '2024-07-21 18:44:50', '2025-12-17 19:46:31', 'AYg6GRGd', '7368605'), + (77, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AYg6GRGd', '7368606'), + (77, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AYg6GRGd', '7397462'), + (77, 2806, 'attending', '2024-09-15 23:36:24', '2025-12-17 19:46:25', 'AYg6GRGd', '7404888'), + (77, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AYg6GRGd', '7424275'), + (77, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AYg6GRGd', '7424276'), + (77, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AYg6GRGd', '7432751'), + (77, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AYg6GRGd', '7432752'), + (77, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AYg6GRGd', '7432753'), + (77, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AYg6GRGd', '7432754'), + (77, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AYg6GRGd', '7432755'), + (77, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AYg6GRGd', '7432756'), + (77, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AYg6GRGd', '7432758'), + (77, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AYg6GRGd', '7432759'), + (77, 2832, 'attending', '2024-09-11 16:15:22', '2025-12-17 19:46:24', 'AYg6GRGd', '7433324'), + (77, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AYg6GRGd', '7433834'), + (77, 2839, 'not_attending', '2024-09-24 16:31:16', '2025-12-17 19:46:25', 'AYg6GRGd', '7439262'), + (77, 2842, 'attending', '2024-09-16 22:29:39', '2025-12-17 19:46:25', 'AYg6GRGd', '7446133'), + (77, 2850, 'attending', '2024-10-01 16:27:54', '2025-12-17 19:46:25', 'AYg6GRGd', '7457153'), + (77, 2854, 'not_attending', '2024-10-03 20:58:18', '2025-12-17 19:46:26', 'AYg6GRGd', '7465684'), + (77, 2855, 'attending', '2024-10-03 20:49:59', '2025-12-17 19:46:26', 'AYg6GRGd', '7469385'), + (77, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AYg6GRGd', '7470197'), + (77, 2863, 'attending', '2024-10-01 16:54:11', '2025-12-17 19:46:26', 'AYg6GRGd', '7470275'), + (77, 2868, 'attending', '2024-10-03 21:08:42', '2025-12-17 19:46:26', 'AYg6GRGd', '7474506'), + (77, 2869, 'not_attending', '2024-10-03 20:58:07', '2025-12-17 19:46:26', 'AYg6GRGd', '7474823'), + (77, 2870, 'not_attending', '2024-10-03 20:58:12', '2025-12-17 19:46:26', 'AYg6GRGd', '7475068'), + (77, 2875, 'attending', '2024-10-07 23:04:57', '2025-12-17 19:46:26', 'AYg6GRGd', '7482241'), + (77, 2883, 'attending', '2024-10-21 22:34:01', '2025-12-17 19:46:26', 'AYg6GRGd', '7649157'), + (77, 2888, 'attending', '2024-10-21 22:34:05', '2025-12-17 19:46:26', 'AYg6GRGd', '7654822'), + (77, 2889, 'attending', '2024-10-22 02:19:51', '2025-12-17 19:46:26', 'AYg6GRGd', '7660485'), + (77, 2893, 'attending', '2024-11-03 02:16:23', '2025-12-17 19:46:26', 'AYg6GRGd', '7672705'), + (77, 2896, 'not_attending', '2024-11-13 00:01:04', '2025-12-17 19:46:27', 'AYg6GRGd', '7683647'), + (77, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AYg6GRGd', '7685613'), + (77, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AYg6GRGd', '7688194'), + (77, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AYg6GRGd', '7688196'), + (77, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AYg6GRGd', '7688289'), + (77, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AYg6GRGd', '7692763'), + (77, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AYg6GRGd', '7697552'), + (77, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AYg6GRGd', '7699878'), + (77, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AYg6GRGd', '7704043'), + (77, 2922, 'attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'AYg6GRGd', '7710890'), + (77, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AYg6GRGd', '7712467'), + (77, 2925, 'attending', '2024-12-10 02:53:56', '2025-12-17 19:46:21', 'AYg6GRGd', '7713584'), + (77, 2926, 'attending', '2024-12-04 01:28:43', '2025-12-17 19:46:21', 'AYg6GRGd', '7713585'), + (77, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AYg6GRGd', '7713586'), + (77, 2929, 'attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'AYg6GRGd', '7723465'), + (77, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AYg6GRGd', '7738518'), + (77, 2962, 'attending', '2024-12-27 22:29:40', '2025-12-17 19:46:22', 'AYg6GRGd', '7750632'), + (77, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AYg6GRGd', '7750636'), + (77, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AYg6GRGd', '7796540'), + (77, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AYg6GRGd', '7796541'), + (77, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AYg6GRGd', '7796542'), + (77, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AYg6GRGd', '7825913'), + (77, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AYg6GRGd', '7826209'), + (77, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AYg6GRGd', '7834742'), + (77, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AYg6GRGd', '7842108'), + (77, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AYg6GRGd', '7842902'), + (77, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AYg6GRGd', '7842903'), + (77, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AYg6GRGd', '7842904'), + (77, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AYg6GRGd', '7842905'), + (77, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AYg6GRGd', '7855719'), + (77, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AYg6GRGd', '7860683'), + (77, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AYg6GRGd', '7860684'), + (77, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AYg6GRGd', '7866095'), + (77, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AYg6GRGd', '7869170'), + (77, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AYg6GRGd', '7869188'), + (77, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AYg6GRGd', '7869201'), + (77, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AYg6GRGd', '7877465'), + (77, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AYg6GRGd', '7888250'), + (77, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AYg6GRGd', '7904777'), + (77, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AYg6GRGd', '8349164'), + (77, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AYg6GRGd', '8349545'), + (77, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AYg6GRGd', '8353584'), + (77, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AYg6GRGd', '8368028'), + (77, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AYg6GRGd', '8368029'), + (77, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AYg6GRGd', '8388462'), + (77, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AYg6GRGd', '8400273'), + (77, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AYg6GRGd', '8400274'), + (77, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AYg6GRGd', '8400275'), + (77, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AYg6GRGd', '8400276'), + (77, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AYg6GRGd', '8404977'), + (77, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AYg6GRGd', '8430783'), + (77, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AYg6GRGd', '8430784'), + (77, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AYg6GRGd', '8430799'), + (77, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AYg6GRGd', '8430800'), + (77, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AYg6GRGd', '8430801'), + (77, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AYg6GRGd', '8438709'), + (77, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AYg6GRGd', '8457738'), + (77, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AYg6GRGd', '8459566'), + (77, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AYg6GRGd', '8459567'), + (77, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AYg6GRGd', '8461032'), + (77, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AYg6GRGd', '8477877'), + (77, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AYg6GRGd', '8485688'), + (77, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AYg6GRGd', '8490587'), + (77, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AYg6GRGd', '8493552'), + (77, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AYg6GRGd', '8493553'), + (77, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AYg6GRGd', '8493554'), + (77, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AYg6GRGd', '8493555'), + (77, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AYg6GRGd', '8493556'), + (77, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AYg6GRGd', '8493557'), + (77, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AYg6GRGd', '8493558'), + (77, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AYg6GRGd', '8493559'), + (77, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AYg6GRGd', '8493560'), + (77, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AYg6GRGd', '8493561'), + (77, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AYg6GRGd', '8493572'), + (77, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AYg6GRGd', '8540725'), + (77, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AYg6GRGd', '8555421'), + (78, 2695, 'attending', '2024-08-17 17:14:18', '2025-12-17 19:46:31', 'mGWO76km', '7324080'), + (78, 2696, 'maybe', '2024-08-24 18:48:11', '2025-12-17 19:46:32', 'mGWO76km', '7324081'), + (78, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mGWO76km', '7324082'), + (78, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mGWO76km', '7397462'), + (78, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mGWO76km', '7424275'), + (78, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mGWO76km', '7424276'), + (78, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mGWO76km', '7432751'), + (78, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mGWO76km', '7432752'), + (78, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mGWO76km', '7432753'), + (78, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mGWO76km', '7432754'), + (78, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mGWO76km', '7432755'), + (78, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mGWO76km', '7432756'), + (78, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mGWO76km', '7432758'), + (78, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mGWO76km', '7432759'), + (78, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mGWO76km', '7433834'), + (78, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mGWO76km', '7470197'), + (78, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mGWO76km', '7685613'), + (78, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mGWO76km', '7688194'), + (78, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mGWO76km', '7688196'), + (78, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mGWO76km', '7688289'), + (78, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mGWO76km', '7692763'), + (78, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mGWO76km', '7697552'), + (78, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mGWO76km', '7699878'), + (78, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mGWO76km', '7704043'), + (78, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mGWO76km', '7712467'), + (78, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mGWO76km', '7713585'), + (78, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mGWO76km', '7713586'), + (78, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mGWO76km', '7738518'), + (78, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mGWO76km', '7750636'), + (78, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mGWO76km', '7796540'), + (78, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mGWO76km', '7796541'), + (78, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mGWO76km', '7796542'), + (78, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mGWO76km', '7825913'), + (78, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mGWO76km', '7826209'), + (78, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mGWO76km', '7834742'), + (78, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mGWO76km', '7842108'), + (78, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mGWO76km', '7842902'), + (78, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mGWO76km', '7842903'), + (78, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mGWO76km', '7842904'), + (78, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mGWO76km', '7842905'), + (78, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mGWO76km', '7855719'), + (78, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mGWO76km', '7860683'), + (78, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mGWO76km', '7860684'), + (78, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mGWO76km', '7866095'), + (78, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mGWO76km', '7869170'), + (78, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mGWO76km', '7869188'), + (78, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mGWO76km', '7869201'), + (78, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mGWO76km', '7877465'), + (78, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mGWO76km', '7888250'), + (78, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mGWO76km', '7904777'), + (78, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mGWO76km', '8349164'), + (78, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mGWO76km', '8349545'), + (78, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mGWO76km', '8353584'), + (78, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mGWO76km', '8368028'), + (78, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mGWO76km', '8368029'), + (78, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mGWO76km', '8388462'), + (78, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mGWO76km', '8400273'), + (78, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mGWO76km', '8400274'), + (78, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mGWO76km', '8400275'), + (78, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mGWO76km', '8400276'), + (78, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mGWO76km', '8404977'), + (78, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mGWO76km', '8430783'), + (78, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mGWO76km', '8430784'), + (78, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mGWO76km', '8430799'), + (78, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mGWO76km', '8430800'), + (78, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mGWO76km', '8430801'), + (78, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mGWO76km', '8438709'), + (78, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mGWO76km', '8457738'), + (78, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mGWO76km', '8459566'), + (78, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mGWO76km', '8459567'), + (78, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mGWO76km', '8461032'), + (78, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mGWO76km', '8477877'), + (78, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mGWO76km', '8485688'), + (78, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mGWO76km', '8490587'), + (78, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mGWO76km', '8493552'), + (78, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'mGWO76km', '8493553'), + (78, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mGWO76km', '8493554'), + (78, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mGWO76km', '8493555'), + (78, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mGWO76km', '8493556'), + (78, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mGWO76km', '8493557'), + (78, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mGWO76km', '8493558'), + (78, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mGWO76km', '8493559'), + (78, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mGWO76km', '8493560'), + (78, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mGWO76km', '8493561'), + (78, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mGWO76km', '8493572'), + (78, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mGWO76km', '8540725'), + (78, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mGWO76km', '8555421'), + (79, 3088, 'not_attending', '2025-06-14 16:24:53', '2025-12-17 19:46:15', 'ydw10ZjA', '7904777'), + (79, 3131, 'attending', '2025-05-13 01:04:28', '2025-12-17 19:46:21', 'ydw10ZjA', '8368028'), + (79, 3132, 'not_attending', '2025-05-22 17:01:40', '2025-12-17 19:46:21', 'ydw10ZjA', '8368029'), + (79, 3133, 'attending', '2025-05-28 02:57:28', '2025-12-17 19:46:14', 'ydw10ZjA', '8368030'), + (79, 3153, 'not_attending', '2025-06-04 14:00:27', '2025-12-17 19:46:15', 'ydw10ZjA', '8400273'), + (79, 3154, 'not_attending', '2025-06-28 21:03:04', '2025-12-17 19:46:15', 'ydw10ZjA', '8400274'), + (79, 3155, 'maybe', '2025-07-02 16:23:49', '2025-12-17 19:46:16', 'ydw10ZjA', '8400275'), + (79, 3188, 'not_attending', '2025-07-17 16:37:27', '2025-12-17 19:46:17', 'ydw10ZjA', '8438709'), + (79, 3200, 'not_attending', '2025-08-01 00:49:36', '2025-12-17 19:46:17', 'ydw10ZjA', '8459566'), + (79, 3203, 'not_attending', '2025-07-23 03:14:06', '2025-12-17 19:46:17', 'ydw10ZjA', '8461032'), + (79, 3236, 'not_attending', '2025-08-21 07:53:50', '2025-12-17 19:46:18', 'ydw10ZjA', '8493552'), + (79, 3237, 'not_attending', '2025-09-03 23:25:54', '2025-12-17 19:46:12', 'ydw10ZjA', '8493553'), + (79, 3238, 'not_attending', '2025-08-29 18:20:26', '2025-12-17 19:46:11', 'ydw10ZjA', '8493554'), + (79, 3240, 'maybe', '2025-09-10 01:12:12', '2025-12-17 19:46:12', 'ydw10ZjA', '8493556'), + (80, 2513, 'attending', '2024-04-18 16:02:52', '2025-12-17 19:46:34', 'mLo70Lad', '7074353'), + (80, 2514, 'maybe', '2024-04-22 15:32:31', '2025-12-17 19:46:34', 'mLo70Lad', '7074354'), + (80, 2516, 'attending', '2024-05-02 16:39:25', '2025-12-17 19:46:35', 'mLo70Lad', '7074356'), + (80, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mLo70Lad', '7074364'), + (80, 2529, 'maybe', '2024-05-23 02:38:34', '2025-12-17 19:46:35', 'mLo70Lad', '7074369'), + (80, 2555, 'attending', '2024-04-09 21:11:39', '2025-12-17 19:46:34', 'mLo70Lad', '7114951'), + (80, 2556, 'attending', '2024-04-15 16:07:39', '2025-12-17 19:46:34', 'mLo70Lad', '7114955'), + (80, 2557, 'attending', '2024-04-22 15:37:07', '2025-12-17 19:46:34', 'mLo70Lad', '7114956'), + (80, 2558, 'attending', '2024-05-02 17:45:22', '2025-12-17 19:46:35', 'mLo70Lad', '7114957'), + (80, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mLo70Lad', '7153615'), + (80, 2570, 'attending', '2024-04-07 17:50:58', '2025-12-17 19:46:33', 'mLo70Lad', '7159187'), + (80, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mLo70Lad', '7159484'), + (80, 2581, 'not_attending', '2024-04-22 16:10:21', '2025-12-17 19:46:34', 'mLo70Lad', '7169048'), + (80, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mLo70Lad', '7178446'), + (80, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'mLo70Lad', '7220467'), + (80, 2604, 'attending', '2024-05-29 16:00:34', '2025-12-17 19:46:36', 'mLo70Lad', '7225670'), + (80, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mLo70Lad', '7240354'), + (80, 2611, 'maybe', '2024-05-06 22:28:33', '2025-12-17 19:46:35', 'mLo70Lad', '7247642'), + (80, 2613, 'maybe', '2024-05-09 20:18:02', '2025-12-17 19:46:35', 'mLo70Lad', '7247644'), + (80, 2614, 'maybe', '2024-05-10 02:20:49', '2025-12-17 19:46:35', 'mLo70Lad', '7247645'), + (80, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mLo70Lad', '7251633'), + (80, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mLo70Lad', '7263048'), + (80, 2625, 'maybe', '2024-05-12 22:37:38', '2025-12-17 19:46:35', 'mLo70Lad', '7263302'), + (80, 2626, 'attending', '2024-05-17 02:11:00', '2025-12-17 19:46:35', 'mLo70Lad', '7264723'), + (80, 2627, 'attending', '2024-05-25 16:05:44', '2025-12-17 19:46:35', 'mLo70Lad', '7264724'), + (80, 2628, 'attending', '2024-05-31 15:46:23', '2025-12-17 19:46:36', 'mLo70Lad', '7264725'), + (80, 2629, 'attending', '2024-06-08 01:28:28', '2025-12-17 19:46:28', 'mLo70Lad', '7264726'), + (80, 2630, 'attending', '2024-05-16 23:05:34', '2025-12-17 19:46:35', 'mLo70Lad', '7264801'), + (80, 2634, 'maybe', '2024-05-19 15:40:06', '2025-12-17 19:46:35', 'mLo70Lad', '7270321'), + (80, 2635, 'attending', '2024-05-19 03:39:02', '2025-12-17 19:46:35', 'mLo70Lad', '7270322'), + (80, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mLo70Lad', '7302674'), + (80, 2678, 'attending', '2024-06-15 01:48:11', '2025-12-17 19:46:28', 'mLo70Lad', '7319489'), + (80, 2679, 'attending', '2024-06-22 00:24:18', '2025-12-17 19:46:29', 'mLo70Lad', '7319490'), + (80, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mLo70Lad', '7324073'), + (80, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mLo70Lad', '7324074'), + (80, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mLo70Lad', '7324075'), + (80, 2691, 'attending', '2024-07-19 00:46:23', '2025-12-17 19:46:30', 'mLo70Lad', '7324076'), + (80, 2692, 'not_attending', '2024-07-07 15:43:52', '2025-12-17 19:46:30', 'mLo70Lad', '7324077'), + (80, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mLo70Lad', '7324078'), + (80, 2694, 'attending', '2024-08-10 01:36:59', '2025-12-17 19:46:31', 'mLo70Lad', '7324079'), + (80, 2695, 'attending', '2024-08-17 00:20:36', '2025-12-17 19:46:31', 'mLo70Lad', '7324080'), + (80, 2696, 'attending', '2024-08-24 15:48:31', '2025-12-17 19:46:32', 'mLo70Lad', '7324081'), + (80, 2697, 'attending', '2024-08-26 16:06:33', '2025-12-17 19:46:32', 'mLo70Lad', '7324082'), + (80, 2698, 'attending', '2024-09-07 16:00:30', '2025-12-17 19:46:24', 'mLo70Lad', '7324083'), + (80, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mLo70Lad', '7331457'), + (80, 2743, 'attending', '2024-07-06 00:00:03', '2025-12-17 19:46:29', 'mLo70Lad', '7345688'), + (80, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mLo70Lad', '7356752'), + (80, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mLo70Lad', '7363643'), + (80, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mLo70Lad', '7368606'), + (80, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mLo70Lad', '7397462'), + (80, 2821, 'attending', '2024-10-10 00:30:24', '2025-12-17 19:46:26', 'mLo70Lad', '7424275'), + (80, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mLo70Lad', '7424276'), + (80, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mLo70Lad', '7432751'), + (80, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mLo70Lad', '7432752'), + (80, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mLo70Lad', '7432753'), + (80, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mLo70Lad', '7432754'), + (80, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mLo70Lad', '7432755'), + (80, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mLo70Lad', '7432756'), + (80, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mLo70Lad', '7432758'), + (80, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mLo70Lad', '7432759'), + (80, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mLo70Lad', '7433834'), + (80, 2849, 'maybe', '2024-09-29 01:53:00', '2025-12-17 19:46:25', 'mLo70Lad', '7457114'), + (80, 2858, 'attending', '2024-10-17 23:24:08', '2025-12-17 19:46:26', 'mLo70Lad', '7469388'), + (80, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mLo70Lad', '7470197'), + (80, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mLo70Lad', '7685613'), + (80, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mLo70Lad', '7688194'), + (80, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mLo70Lad', '7688196'), + (80, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mLo70Lad', '7688289'), + (80, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mLo70Lad', '7692763'), + (80, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mLo70Lad', '7697552'), + (80, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mLo70Lad', '7699878'), + (80, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mLo70Lad', '7704043'), + (80, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mLo70Lad', '7712467'), + (80, 2925, 'attending', '2024-12-10 01:52:04', '2025-12-17 19:46:21', 'mLo70Lad', '7713584'), + (80, 2926, 'attending', '2024-12-05 20:28:25', '2025-12-17 19:46:21', 'mLo70Lad', '7713585'), + (80, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mLo70Lad', '7713586'), + (80, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mLo70Lad', '7738518'), + (80, 2962, 'attending', '2024-12-27 17:40:05', '2025-12-17 19:46:22', 'mLo70Lad', '7750632'), + (80, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mLo70Lad', '7750636'), + (80, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mLo70Lad', '7796540'), + (80, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mLo70Lad', '7796541'), + (80, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mLo70Lad', '7796542'), + (80, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mLo70Lad', '7825913'), + (80, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'mLo70Lad', '7825920'), + (80, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mLo70Lad', '7826209'), + (80, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mLo70Lad', '7834742'), + (80, 2988, 'attending', '2025-02-08 03:36:59', '2025-12-17 19:46:23', 'mLo70Lad', '7839569'), + (80, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'mLo70Lad', '7842108'), + (80, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mLo70Lad', '7842902'), + (80, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mLo70Lad', '7842903'), + (80, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mLo70Lad', '7842904'), + (80, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mLo70Lad', '7842905'), + (80, 2999, 'not_attending', '2025-02-13 02:50:14', '2025-12-17 19:46:23', 'mLo70Lad', '7844784'), + (80, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mLo70Lad', '7855719'), + (80, 3007, 'attending', '2025-02-25 04:02:38', '2025-12-17 19:46:24', 'mLo70Lad', '7860683'), + (80, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mLo70Lad', '7860684'), + (80, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mLo70Lad', '7866095'), + (80, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mLo70Lad', '7869170'), + (80, 3014, 'attending', '2025-04-01 16:36:20', '2025-12-17 19:46:19', 'mLo70Lad', '7869185'), + (80, 3015, 'attending', '2025-04-22 15:51:49', '2025-12-17 19:46:20', 'mLo70Lad', '7869186'), + (80, 3016, 'attending', '2025-04-15 00:12:05', '2025-12-17 19:46:20', 'mLo70Lad', '7869187'), + (80, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mLo70Lad', '7869188'), + (80, 3018, 'attending', '2025-04-08 22:50:32', '2025-12-17 19:46:20', 'mLo70Lad', '7869189'), + (80, 3028, 'attending', '2025-04-27 03:12:37', '2025-12-17 19:46:20', 'mLo70Lad', '7869199'), + (80, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mLo70Lad', '7869201'), + (80, 3033, 'attending', '2025-03-11 02:32:15', '2025-12-17 19:46:19', 'mLo70Lad', '7877465'), + (80, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'mLo70Lad', '7878570'), + (80, 3050, 'attending', '2025-03-16 22:53:40', '2025-12-17 19:46:19', 'mLo70Lad', '7884021'), + (80, 3053, 'attending', '2025-03-16 23:27:28', '2025-12-17 19:46:19', 'mLo70Lad', '7884030'), + (80, 3055, 'maybe', '2025-03-27 16:26:07', '2025-12-17 19:46:19', 'mLo70Lad', '7888118'), + (80, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mLo70Lad', '7888250'), + (80, 3072, 'maybe', '2025-04-03 16:47:25', '2025-12-17 19:46:19', 'mLo70Lad', '7895449'), + (80, 3088, 'attending', '2025-06-11 20:56:28', '2025-12-17 19:46:15', 'mLo70Lad', '7904777'), + (80, 3090, 'maybe', '2025-04-16 16:09:45', '2025-12-17 19:46:20', 'mLo70Lad', '7914315'), + (80, 3094, 'not_attending', '2025-05-06 16:41:11', '2025-12-17 19:46:21', 'mLo70Lad', '8342292'), + (80, 3095, 'attending', '2025-04-27 16:17:09', '2025-12-17 19:46:20', 'mLo70Lad', '8342293'), + (80, 3099, 'attending', '2025-04-22 01:36:21', '2025-12-17 19:46:20', 'mLo70Lad', '8343522'), + (80, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mLo70Lad', '8349164'), + (80, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mLo70Lad', '8349545'), + (80, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mLo70Lad', '8353584'), + (80, 3113, 'attending', '2025-05-01 00:52:12', '2025-12-17 19:46:20', 'mLo70Lad', '8355089'), + (80, 3131, 'not_attending', '2025-05-13 01:08:50', '2025-12-17 19:46:21', 'mLo70Lad', '8368028'), + (80, 3132, 'not_attending', '2025-05-13 01:08:55', '2025-12-17 19:46:21', 'mLo70Lad', '8368029'), + (80, 3133, 'not_attending', '2025-05-27 20:28:58', '2025-12-17 19:46:14', 'mLo70Lad', '8368030'), + (80, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mLo70Lad', '8388462'), + (80, 3150, 'not_attending', '2025-06-15 17:56:43', '2025-12-17 19:46:15', 'mLo70Lad', '8393174'), + (80, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mLo70Lad', '8400273'), + (80, 3154, 'attending', '2025-06-23 00:43:35', '2025-12-17 19:46:15', 'mLo70Lad', '8400274'), + (80, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mLo70Lad', '8400275'), + (80, 3156, 'attending', '2025-06-17 15:35:27', '2025-12-17 19:46:16', 'mLo70Lad', '8400276'), + (80, 3158, 'attending', '2025-06-04 04:30:57', '2025-12-17 19:46:15', 'mLo70Lad', '8401408'), + (80, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mLo70Lad', '8404977'), + (80, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mLo70Lad', '8430783'), + (80, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mLo70Lad', '8430784'), + (80, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mLo70Lad', '8430799'), + (80, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mLo70Lad', '8430800'), + (80, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mLo70Lad', '8430801'), + (80, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mLo70Lad', '8438709'), + (80, 3193, 'attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mLo70Lad', '8457738'), + (80, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mLo70Lad', '8459566'), + (80, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mLo70Lad', '8459567'), + (80, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mLo70Lad', '8461032'), + (80, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mLo70Lad', '8477877'), + (80, 3216, 'attending', '2025-08-08 02:45:49', '2025-12-17 19:46:17', 'mLo70Lad', '8481608'), + (80, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mLo70Lad', '8485688'), + (80, 3235, 'maybe', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mLo70Lad', '8490587'), + (80, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mLo70Lad', '8493552'), + (80, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mLo70Lad', '8493553'), + (80, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mLo70Lad', '8493554'), + (80, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mLo70Lad', '8493555'), + (80, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mLo70Lad', '8493556'), + (80, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mLo70Lad', '8493557'), + (80, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mLo70Lad', '8493558'), + (80, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mLo70Lad', '8493559'), + (80, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mLo70Lad', '8493560'), + (80, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mLo70Lad', '8493561'), + (80, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mLo70Lad', '8493572'), + (80, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mLo70Lad', '8540725'), + (80, 3295, 'not_attending', '2025-10-29 16:16:10', '2025-12-17 19:46:14', 'mLo70Lad', '8547541'), + (80, 3300, 'not_attending', '2025-10-26 21:23:22', '2025-12-17 19:46:14', 'mLo70Lad', '8549145'), + (80, 3302, 'attending', '2025-11-09 18:09:06', '2025-12-17 19:46:14', 'mLo70Lad', '8550022'), + (80, 3304, 'attending', '2025-11-19 03:36:01', '2025-12-17 19:46:14', 'mLo70Lad', '8550024'), + (80, 3305, 'maybe', '2025-11-26 00:36:30', '2025-12-17 19:46:11', 'mLo70Lad', '8550025'), + (80, 3306, 'attending', '2025-12-07 18:11:07', '2025-12-17 19:46:11', 'mLo70Lad', '8550026'), + (80, 3307, 'attending', '2025-12-16 02:30:06', '2025-12-17 19:46:11', 'mLo70Lad', '8550027'), + (80, 3311, 'maybe', '2025-12-09 18:19:29', '2025-12-17 19:46:11', 'mLo70Lad', '8550412'), + (80, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mLo70Lad', '8555421'), + (81, 395, 'attending', '2021-06-08 21:45:33', '2025-12-17 19:47:47', '841br9Ed', '3236450'), + (81, 665, 'attending', '2021-09-04 22:08:54', '2025-12-17 19:47:43', '841br9Ed', '3547143'), + (81, 666, 'attending', '2021-08-09 00:08:37', '2025-12-17 19:47:42', '841br9Ed', '3547144'), + (81, 667, 'attending', '2021-08-26 18:57:23', '2025-12-17 19:47:42', '841br9Ed', '3547145'), + (81, 805, 'attending', '2021-06-13 20:55:57', '2025-12-17 19:47:47', '841br9Ed', '3804777'), + (81, 823, 'maybe', '2021-06-26 20:33:24', '2025-12-17 19:47:48', '841br9Ed', '3974109'), + (81, 828, 'attending', '2021-06-12 19:18:35', '2025-12-17 19:47:47', '841br9Ed', '3975312'), + (81, 837, 'attending', '2021-06-15 21:58:37', '2025-12-17 19:47:48', '841br9Ed', '3992545'), + (81, 841, 'attending', '2021-06-12 05:19:46', '2025-12-17 19:47:48', '841br9Ed', '4007434'), + (81, 844, 'attending', '2021-06-12 21:23:39', '2025-12-17 19:47:38', '841br9Ed', '4014338'), + (81, 845, 'not_attending', '2021-06-29 19:49:23', '2025-12-17 19:47:38', '841br9Ed', '4015717'), + (81, 850, 'attending', '2021-08-24 15:16:23', '2025-12-17 19:47:42', '841br9Ed', '4015722'), + (81, 857, 'not_attending', '2021-11-24 03:57:30', '2025-12-17 19:47:37', '841br9Ed', '4015731'), + (81, 866, 'maybe', '2021-06-21 20:02:36', '2025-12-17 19:47:38', '841br9Ed', '4020424'), + (81, 867, 'attending', '2021-06-17 18:50:46', '2025-12-17 19:47:38', '841br9Ed', '4021848'), + (81, 869, 'maybe', '2021-06-30 12:13:44', '2025-12-17 19:47:38', '841br9Ed', '4136744'), + (81, 870, 'attending', '2021-06-20 21:40:55', '2025-12-17 19:47:38', '841br9Ed', '4136937'), + (81, 871, 'attending', '2021-06-20 21:41:00', '2025-12-17 19:47:39', '841br9Ed', '4136938'), + (81, 872, 'attending', '2021-07-21 15:12:42', '2025-12-17 19:47:40', '841br9Ed', '4136947'), + (81, 873, 'attending', '2021-06-14 22:24:45', '2025-12-17 19:47:48', '841br9Ed', '4138297'), + (81, 874, 'attending', '2021-06-20 21:40:24', '2025-12-17 19:47:38', '841br9Ed', '4139815'), + (81, 875, 'attending', '2021-06-27 02:28:57', '2025-12-17 19:47:38', '841br9Ed', '4139816'), + (81, 876, 'not_attending', '2021-06-22 20:33:48', '2025-12-17 19:47:38', '841br9Ed', '4139926'), + (81, 878, 'attending', '2021-06-16 01:17:14', '2025-12-17 19:47:38', '841br9Ed', '4143331'), + (81, 879, 'maybe', '2021-06-27 02:27:39', '2025-12-17 19:47:38', '841br9Ed', '4147806'), + (81, 880, 'attending', '2021-06-19 21:20:01', '2025-12-17 19:47:48', '841br9Ed', '4205383'), + (81, 882, 'maybe', '2021-06-20 21:41:21', '2025-12-17 19:47:38', '841br9Ed', '4207630'), + (81, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '841br9Ed', '4210314'), + (81, 885, 'maybe', '2021-06-27 02:29:41', '2025-12-17 19:47:38', '841br9Ed', '4222370'), + (81, 887, 'not_attending', '2021-07-14 21:55:36', '2025-12-17 19:47:39', '841br9Ed', '4225444'), + (81, 890, 'maybe', '2021-06-29 01:59:49', '2025-12-17 19:47:38', '841br9Ed', '4228666'), + (81, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '841br9Ed', '4239259'), + (81, 900, 'attending', '2021-07-19 21:12:35', '2025-12-17 19:47:40', '841br9Ed', '4240316'), + (81, 901, 'attending', '2021-07-26 20:13:59', '2025-12-17 19:47:40', '841br9Ed', '4240317'), + (81, 902, 'attending', '2021-08-03 15:30:32', '2025-12-17 19:47:41', '841br9Ed', '4240318'), + (81, 903, 'attending', '2021-08-09 00:08:39', '2025-12-17 19:47:42', '841br9Ed', '4240320'), + (81, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '841br9Ed', '4250163'), + (81, 911, 'not_attending', '2021-07-12 19:55:03', '2025-12-17 19:47:39', '841br9Ed', '4264465'), + (81, 913, 'attending', '2021-07-12 19:55:06', '2025-12-17 19:47:39', '841br9Ed', '4273765'), + (81, 914, 'maybe', '2021-07-15 19:59:56', '2025-12-17 19:47:39', '841br9Ed', '4273767'), + (81, 915, 'maybe', '2021-07-19 21:13:26', '2025-12-17 19:47:39', '841br9Ed', '4273770'), + (81, 917, 'attending', '2021-07-12 19:55:55', '2025-12-17 19:47:39', '841br9Ed', '4274481'), + (81, 919, 'attending', '2021-07-12 19:57:36', '2025-12-17 19:47:39', '841br9Ed', '4275957'), + (81, 920, 'maybe', '2021-07-25 18:41:37', '2025-12-17 19:47:40', '841br9Ed', '4277819'), + (81, 926, 'attending', '2021-08-16 14:08:28', '2025-12-17 19:47:42', '841br9Ed', '4297211'), + (81, 927, 'maybe', '2021-07-29 22:22:31', '2025-12-17 19:47:40', '841br9Ed', '4297216'), + (81, 928, 'attending', '2021-07-26 20:12:20', '2025-12-17 19:47:40', '841br9Ed', '4297218'), + (81, 929, 'maybe', '2021-08-05 21:48:19', '2025-12-17 19:47:41', '841br9Ed', '4297223'), + (81, 933, 'maybe', '2021-07-27 22:08:01', '2025-12-17 19:47:40', '841br9Ed', '4301723'), + (81, 934, 'maybe', '2021-08-04 20:00:58', '2025-12-17 19:47:41', '841br9Ed', '4302093'), + (81, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '841br9Ed', '4304151'), + (81, 937, 'maybe', '2021-07-27 18:53:45', '2025-12-17 19:47:40', '841br9Ed', '4306596'), + (81, 938, 'maybe', '2021-07-26 22:02:05', '2025-12-17 19:47:40', '841br9Ed', '4306597'), + (81, 946, 'attending', '2021-07-27 22:07:45', '2025-12-17 19:47:40', '841br9Ed', '4314835'), + (81, 952, 'maybe', '2021-08-05 21:48:17', '2025-12-17 19:47:41', '841br9Ed', '4318286'), + (81, 955, 'maybe', '2021-08-09 00:07:29', '2025-12-17 19:47:41', '841br9Ed', '4331588'), + (81, 960, 'attending', '2021-08-09 00:07:51', '2025-12-17 19:47:41', '841br9Ed', '4344519'), + (81, 961, 'not_attending', '2021-08-09 00:08:08', '2025-12-17 19:47:42', '841br9Ed', '4345519'), + (81, 963, 'attending', '2021-08-15 21:41:03', '2025-12-17 19:47:42', '841br9Ed', '4353159'), + (81, 964, 'attending', '2021-08-23 16:01:07', '2025-12-17 19:47:42', '841br9Ed', '4353160'), + (81, 971, 'maybe', '2021-09-08 20:38:46', '2025-12-17 19:47:43', '841br9Ed', '4356801'), + (81, 972, 'not_attending', '2021-08-20 20:44:09', '2025-12-17 19:47:42', '841br9Ed', '4358025'), + (81, 973, 'attending', '2021-08-15 21:41:07', '2025-12-17 19:47:42', '841br9Ed', '4366186'), + (81, 974, 'attending', '2021-08-16 14:09:05', '2025-12-17 19:47:42', '841br9Ed', '4366187'), + (81, 976, 'attending', '2021-08-17 20:34:36', '2025-12-17 19:47:42', '841br9Ed', '4373933'), + (81, 981, 'maybe', '2021-08-23 16:01:28', '2025-12-17 19:47:42', '841br9Ed', '4387305'), + (81, 987, 'attending', '2021-08-28 22:32:27', '2025-12-17 19:47:43', '841br9Ed', '4402634'), + (81, 988, 'maybe', '2021-08-27 20:51:30', '2025-12-17 19:47:42', '841br9Ed', '4402823'), + (81, 989, 'maybe', '2021-09-09 20:55:33', '2025-12-17 19:47:43', '841br9Ed', '4414282'), + (81, 990, 'attending', '2021-08-28 22:31:50', '2025-12-17 19:47:43', '841br9Ed', '4420735'), + (81, 991, 'attending', '2021-08-28 22:32:12', '2025-12-17 19:47:43', '841br9Ed', '4420738'), + (81, 992, 'not_attending', '2021-09-18 16:32:48', '2025-12-17 19:47:34', '841br9Ed', '4420739'), + (81, 993, 'attending', '2021-09-20 15:45:53', '2025-12-17 19:47:34', '841br9Ed', '4420741'), + (81, 994, 'maybe', '2021-10-02 14:56:33', '2025-12-17 19:47:34', '841br9Ed', '4420742'), + (81, 995, 'attending', '2021-10-09 15:10:51', '2025-12-17 19:47:34', '841br9Ed', '4420744'), + (81, 996, 'attending', '2021-10-11 22:55:26', '2025-12-17 19:47:35', '841br9Ed', '4420747'), + (81, 997, 'attending', '2021-10-20 21:17:33', '2025-12-17 19:47:35', '841br9Ed', '4420748'), + (81, 998, 'attending', '2021-10-30 21:23:40', '2025-12-17 19:47:36', '841br9Ed', '4420749'), + (81, 1016, 'attending', '2021-09-03 18:26:07', '2025-12-17 19:47:43', '841br9Ed', '4441271'), + (81, 1019, 'maybe', '2021-09-16 18:15:32', '2025-12-17 19:47:43', '841br9Ed', '4450515'), + (81, 1020, 'attending', '2021-09-08 20:40:09', '2025-12-17 19:47:43', '841br9Ed', '4451787'), + (81, 1021, 'maybe', '2021-09-20 21:37:05', '2025-12-17 19:47:34', '841br9Ed', '4451803'), + (81, 1022, 'maybe', '2021-09-15 10:32:59', '2025-12-17 19:47:43', '841br9Ed', '4458628'), + (81, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '841br9Ed', '4461883'), + (81, 1033, 'maybe', '2021-09-18 14:03:18', '2025-12-17 19:47:43', '841br9Ed', '4486006'), + (81, 1036, 'maybe', '2021-09-19 17:56:28', '2025-12-17 19:47:34', '841br9Ed', '4493166'), + (81, 1038, 'attending', '2021-09-20 15:45:55', '2025-12-17 19:47:34', '841br9Ed', '4496603'), + (81, 1042, 'attending', '2021-11-27 20:52:47', '2025-12-17 19:47:37', '841br9Ed', '4496607'), + (81, 1043, 'attending', '2021-10-21 21:03:59', '2025-12-17 19:47:35', '841br9Ed', '4496608'), + (81, 1045, 'attending', '2021-10-30 21:23:41', '2025-12-17 19:47:36', '841br9Ed', '4496610'), + (81, 1046, 'attending', '2021-10-16 15:20:45', '2025-12-17 19:47:35', '841br9Ed', '4496611'), + (81, 1047, 'attending', '2021-10-09 15:10:53', '2025-12-17 19:47:34', '841br9Ed', '4496612'), + (81, 1048, 'attending', '2021-11-08 23:47:10', '2025-12-17 19:47:36', '841br9Ed', '4496613'), + (81, 1049, 'attending', '2022-01-19 22:07:40', '2025-12-17 19:47:32', '841br9Ed', '4496614'), + (81, 1050, 'maybe', '2022-01-29 19:58:46', '2025-12-17 19:47:32', '841br9Ed', '4496615'), + (81, 1052, 'attending', '2022-01-14 16:33:22', '2025-12-17 19:47:31', '841br9Ed', '4496617'), + (81, 1053, 'attending', '2022-02-19 14:51:51', '2025-12-17 19:47:32', '841br9Ed', '4496618'), + (81, 1054, 'attending', '2022-03-18 14:39:37', '2025-12-17 19:47:25', '841br9Ed', '4496619'), + (81, 1055, 'not_attending', '2021-12-16 03:54:16', '2025-12-17 19:47:31', '841br9Ed', '4496621'), + (81, 1056, 'attending', '2022-01-03 03:11:36', '2025-12-17 19:47:31', '841br9Ed', '4496622'), + (81, 1057, 'attending', '2021-11-20 17:08:18', '2025-12-17 19:47:37', '841br9Ed', '4496624'), + (81, 1058, 'attending', '2022-02-24 17:18:12', '2025-12-17 19:47:33', '841br9Ed', '4496625'), + (81, 1059, 'not_attending', '2022-03-10 20:53:04', '2025-12-17 19:47:33', '841br9Ed', '4496626'), + (81, 1060, 'not_attending', '2022-03-25 15:35:49', '2025-12-17 19:47:25', '841br9Ed', '4496627'), + (81, 1061, 'attending', '2022-02-10 10:59:09', '2025-12-17 19:47:32', '841br9Ed', '4496628'), + (81, 1062, 'attending', '2022-03-03 23:45:35', '2025-12-17 19:47:33', '841br9Ed', '4496629'), + (81, 1063, 'attending', '2021-09-21 14:54:05', '2025-12-17 19:47:34', '841br9Ed', '4496630'), + (81, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '841br9Ed', '4508342'), + (81, 1074, 'maybe', '2021-09-29 20:03:24', '2025-12-17 19:47:34', '841br9Ed', '4528953'), + (81, 1077, 'maybe', '2021-10-11 14:20:29', '2025-12-17 19:47:34', '841br9Ed', '4540903'), + (81, 1079, 'maybe', '2021-10-20 21:16:50', '2025-12-17 19:47:35', '841br9Ed', '4563823'), + (81, 1082, 'maybe', '2021-10-15 17:37:06', '2025-12-17 19:47:35', '841br9Ed', '4566762'), + (81, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '841br9Ed', '4568602'), + (81, 1087, 'attending', '2021-10-15 08:38:15', '2025-12-17 19:47:35', '841br9Ed', '4572153'), + (81, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '841br9Ed', '4585962'), + (81, 1094, 'attending', '2021-10-30 16:04:01', '2025-12-17 19:47:36', '841br9Ed', '4587337'), + (81, 1095, 'maybe', '2021-10-27 21:32:24', '2025-12-17 19:47:36', '841br9Ed', '4596356'), + (81, 1097, 'attending', '2021-10-30 16:03:40', '2025-12-17 19:47:36', '841br9Ed', '4598860'), + (81, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '841br9Ed', '4598861'), + (81, 1099, 'attending', '2021-10-31 10:19:46', '2025-12-17 19:47:36', '841br9Ed', '4602797'), + (81, 1100, 'maybe', '2021-11-02 22:08:45', '2025-12-17 19:47:36', '841br9Ed', '4607305'), + (81, 1101, 'maybe', '2021-11-02 22:08:49', '2025-12-17 19:47:36', '841br9Ed', '4607339'), + (81, 1102, 'maybe', '2021-11-13 17:59:31', '2025-12-17 19:47:37', '841br9Ed', '4612098'), + (81, 1104, 'attending', '2021-11-08 23:47:08', '2025-12-17 19:47:36', '841br9Ed', '4618310'), + (81, 1108, 'attending', '2021-11-18 00:30:25', '2025-12-17 19:47:37', '841br9Ed', '4632276'), + (81, 1114, 'attending', '2021-11-12 01:19:38', '2025-12-17 19:47:36', '841br9Ed', '4637896'), + (81, 1116, 'attending', '2021-11-24 03:58:08', '2025-12-17 19:47:37', '841br9Ed', '4642994'), + (81, 1117, 'attending', '2021-12-09 00:37:48', '2025-12-17 19:47:37', '841br9Ed', '4642995'), + (81, 1118, 'attending', '2021-12-16 00:52:56', '2025-12-17 19:47:38', '841br9Ed', '4642996'), + (81, 1119, 'attending', '2021-12-20 17:43:59', '2025-12-17 19:47:31', '841br9Ed', '4642997'), + (81, 1122, 'attending', '2021-11-29 02:21:47', '2025-12-17 19:47:37', '841br9Ed', '4644023'), + (81, 1126, 'not_attending', '2021-12-09 21:10:04', '2025-12-17 19:47:38', '841br9Ed', '4645687'), + (81, 1127, 'attending', '2021-11-14 22:26:27', '2025-12-17 19:47:38', '841br9Ed', '4645698'), + (81, 1128, 'attending', '2021-11-14 22:31:53', '2025-12-17 19:47:37', '841br9Ed', '4645704'), + (81, 1129, 'attending', '2021-11-27 20:52:45', '2025-12-17 19:47:37', '841br9Ed', '4645705'), + (81, 1130, 'attending', '2021-11-30 05:41:27', '2025-12-17 19:47:37', '841br9Ed', '4658824'), + (81, 1131, 'not_attending', '2021-12-16 03:54:22', '2025-12-17 19:47:31', '841br9Ed', '4658825'), + (81, 1132, 'maybe', '2021-11-21 23:21:41', '2025-12-17 19:47:37', '841br9Ed', '4660657'), + (81, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '841br9Ed', '4668385'), + (81, 1137, 'attending', '2021-11-28 19:28:02', '2025-12-17 19:47:37', '841br9Ed', '4674797'), + (81, 1138, 'attending', '2021-11-28 19:28:07', '2025-12-17 19:47:37', '841br9Ed', '4675407'), + (81, 1139, 'maybe', '2021-12-02 23:13:00', '2025-12-17 19:47:37', '841br9Ed', '4675604'), + (81, 1140, 'maybe', '2021-12-04 02:03:44', '2025-12-17 19:47:37', '841br9Ed', '4679701'), + (81, 1143, 'attending', '2021-12-01 21:47:59', '2025-12-17 19:47:37', '841br9Ed', '4683667'), + (81, 1144, 'not_attending', '2021-12-07 22:27:17', '2025-12-17 19:47:37', '841br9Ed', '4687090'), + (81, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '841br9Ed', '4694407'), + (81, 1152, 'attending', '2022-01-07 01:19:43', '2025-12-17 19:47:31', '841br9Ed', '4708705'), + (81, 1153, 'attending', '2022-01-19 22:07:29', '2025-12-17 19:47:32', '841br9Ed', '4708707'), + (81, 1163, 'attending', '2022-01-02 13:37:57', '2025-12-17 19:47:31', '841br9Ed', '4724206'), + (81, 1173, 'attending', '2022-01-07 01:19:31', '2025-12-17 19:47:31', '841br9Ed', '4736495'), + (81, 1174, 'attending', '2022-01-14 16:32:28', '2025-12-17 19:47:31', '841br9Ed', '4736496'), + (81, 1175, 'attending', '2022-01-19 22:07:37', '2025-12-17 19:47:32', '841br9Ed', '4736497'), + (81, 1176, 'attending', '2022-02-05 16:56:48', '2025-12-17 19:47:32', '841br9Ed', '4736498'), + (81, 1177, 'attending', '2022-02-10 10:59:11', '2025-12-17 19:47:32', '841br9Ed', '4736499'), + (81, 1178, 'maybe', '2022-01-29 19:58:49', '2025-12-17 19:47:32', '841br9Ed', '4736500'), + (81, 1179, 'attending', '2022-02-19 14:51:50', '2025-12-17 19:47:32', '841br9Ed', '4736501'), + (81, 1180, 'attending', '2022-02-24 17:18:13', '2025-12-17 19:47:33', '841br9Ed', '4736502'), + (81, 1181, 'attending', '2022-03-02 14:04:39', '2025-12-17 19:47:33', '841br9Ed', '4736503'), + (81, 1182, 'not_attending', '2022-03-10 20:53:09', '2025-12-17 19:47:33', '841br9Ed', '4736504'), + (81, 1184, 'maybe', '2022-01-14 22:15:29', '2025-12-17 19:47:31', '841br9Ed', '4742350'), + (81, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '841br9Ed', '4746789'), + (81, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '841br9Ed', '4753929'), + (81, 1190, 'maybe', '2022-01-12 21:47:12', '2025-12-17 19:47:31', '841br9Ed', '4757377'), + (81, 1201, 'maybe', '2022-01-19 22:07:51', '2025-12-17 19:47:32', '841br9Ed', '4766841'), + (81, 1203, 'attending', '2022-01-22 00:47:13', '2025-12-17 19:47:32', '841br9Ed', '4773535'), + (81, 1206, 'attending', '2022-03-27 11:48:42', '2025-12-17 19:47:27', '841br9Ed', '4773578'), + (81, 1207, 'attending', '2022-05-02 17:22:09', '2025-12-17 19:47:28', '841br9Ed', '4773579'), + (81, 1215, 'maybe', '2022-02-24 21:54:12', '2025-12-17 19:47:33', '841br9Ed', '4780763'), + (81, 1216, 'maybe', '2022-01-29 19:58:53', '2025-12-17 19:47:32', '841br9Ed', '4781137'), + (81, 1232, 'not_attending', '2022-02-09 22:28:47', '2025-12-17 19:47:32', '841br9Ed', '5038850'), + (81, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '841br9Ed', '5045826'), + (81, 1238, 'not_attending', '2022-02-23 18:25:15', '2025-12-17 19:47:32', '841br9Ed', '5052236'), + (81, 1240, 'attending', '2022-03-14 02:02:36', '2025-12-17 19:47:33', '841br9Ed', '5052239'), + (81, 1241, 'maybe', '2022-03-23 22:09:51', '2025-12-17 19:47:25', '841br9Ed', '5052240'), + (81, 1242, 'maybe', '2022-03-30 22:31:31', '2025-12-17 19:47:25', '841br9Ed', '5052241'), + (81, 1243, 'attending', '2022-03-06 19:45:30', '2025-12-17 19:47:33', '841br9Ed', '5058336'), + (81, 1245, 'maybe', '2022-02-24 21:55:34', '2025-12-17 19:47:33', '841br9Ed', '5061301'), + (81, 1248, 'attending', '2022-02-23 18:42:22', '2025-12-17 19:47:33', '841br9Ed', '5065064'), + (81, 1249, 'attending', '2022-03-10 00:17:57', '2025-12-17 19:47:33', '841br9Ed', '5068530'), + (81, 1250, 'attending', '2022-03-03 23:45:16', '2025-12-17 19:47:33', '841br9Ed', '5069735'), + (81, 1253, 'maybe', '2022-03-03 23:46:16', '2025-12-17 19:47:33', '841br9Ed', '5129122'), + (81, 1259, 'maybe', '2022-03-03 23:47:17', '2025-12-17 19:47:33', '841br9Ed', '5132533'), + (81, 1261, 'maybe', '2022-03-03 23:46:52', '2025-12-17 19:47:33', '841br9Ed', '5154274'), + (81, 1264, 'attending', '2022-03-16 22:46:56', '2025-12-17 19:47:25', '841br9Ed', '5160281'), + (81, 1266, 'maybe', '2022-03-14 02:02:31', '2025-12-17 19:47:33', '841br9Ed', '5166407'), + (81, 1269, 'attending', '2022-03-18 14:40:07', '2025-12-17 19:47:25', '841br9Ed', '5179439'), + (81, 1270, 'maybe', '2022-03-18 14:40:26', '2025-12-17 19:47:25', '841br9Ed', '5181277'), + (81, 1271, 'maybe', '2022-03-18 14:39:50', '2025-12-17 19:47:25', '841br9Ed', '5181648'), + (81, 1272, 'attending', '2022-03-16 22:46:38', '2025-12-17 19:47:25', '841br9Ed', '5186582'), + (81, 1273, 'not_attending', '2022-03-25 15:35:52', '2025-12-17 19:47:25', '841br9Ed', '5186583'), + (81, 1274, 'attending', '2022-04-01 18:43:23', '2025-12-17 19:47:26', '841br9Ed', '5186585'), + (81, 1275, 'attending', '2022-04-01 18:43:22', '2025-12-17 19:47:26', '841br9Ed', '5186587'), + (81, 1281, 'attending', '2022-04-05 20:06:48', '2025-12-17 19:47:27', '841br9Ed', '5190437'), + (81, 1282, 'attending', '2022-03-18 14:40:33', '2025-12-17 19:47:25', '841br9Ed', '5191241'), + (81, 1284, 'attending', '2022-04-16 21:54:31', '2025-12-17 19:47:27', '841br9Ed', '5195095'), + (81, 1287, 'attending', '2022-03-23 01:05:02', '2025-12-17 19:47:25', '841br9Ed', '5199425'), + (81, 1288, 'attending', '2022-03-23 01:16:59', '2025-12-17 19:47:25', '841br9Ed', '5199460'), + (81, 1293, 'attending', '2022-03-28 18:59:46', '2025-12-17 19:47:27', '841br9Ed', '5214641'), + (81, 1295, 'attending', '2022-03-28 14:10:29', '2025-12-17 19:47:25', '841br9Ed', '5215609'), + (81, 1297, 'maybe', '2022-03-28 21:23:53', '2025-12-17 19:47:26', '841br9Ed', '5215989'), + (81, 1299, 'attending', '2022-03-30 01:14:16', '2025-12-17 19:47:25', '841br9Ed', '5217660'), + (81, 1301, 'attending', '2022-03-30 22:32:02', '2025-12-17 19:47:26', '841br9Ed', '5218175'), + (81, 1304, 'not_attending', '2022-04-06 21:31:50', '2025-12-17 19:47:26', '841br9Ed', '5223468'), + (81, 1305, 'maybe', '2022-04-10 22:48:17', '2025-12-17 19:47:27', '841br9Ed', '5223673'), + (81, 1306, 'attending', '2022-04-05 20:05:34', '2025-12-17 19:47:26', '841br9Ed', '5223682'), + (81, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '841br9Ed', '5223686'), + (81, 1308, 'not_attending', '2022-04-13 19:06:35', '2025-12-17 19:47:27', '841br9Ed', '5226703'), + (81, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '841br9Ed', '5227432'), + (81, 1310, 'attending', '2022-04-07 17:48:30', '2025-12-17 19:47:27', '841br9Ed', '5231071'), + (81, 1312, 'attending', '2022-04-08 03:10:45', '2025-12-17 19:47:27', '841br9Ed', '5231459'), + (81, 1313, 'attending', '2022-04-08 03:24:47', '2025-12-17 19:47:27', '841br9Ed', '5231461'), + (81, 1315, 'attending', '2022-04-11 12:38:16', '2025-12-17 19:47:27', '841br9Ed', '5237522'), + (81, 1330, 'not_attending', '2022-04-18 21:21:10', '2025-12-17 19:47:27', '841br9Ed', '5242155'), + (81, 1334, 'not_attending', '2022-04-14 18:09:09', '2025-12-17 19:47:27', '841br9Ed', '5244797'), + (81, 1337, 'attending', '2022-04-18 00:02:08', '2025-12-17 19:47:27', '841br9Ed', '5245036'), + (81, 1344, 'attending', '2022-04-17 16:32:14', '2025-12-17 19:47:28', '841br9Ed', '5247465'), + (81, 1346, 'attending', '2022-04-17 16:39:54', '2025-12-17 19:47:27', '841br9Ed', '5247467'), + (81, 1353, 'attending', '2022-04-21 16:23:23', '2025-12-17 19:47:27', '841br9Ed', '5251777'), + (81, 1357, 'attending', '2022-04-25 17:33:36', '2025-12-17 19:47:27', '841br9Ed', '5256017'), + (81, 1362, 'attending', '2022-04-25 17:31:06', '2025-12-17 19:47:28', '841br9Ed', '5260800'), + (81, 1368, 'attending', '2022-05-01 20:34:06', '2025-12-17 19:47:28', '841br9Ed', '5262783'), + (81, 1374, 'attending', '2022-05-02 17:22:01', '2025-12-17 19:47:28', '841br9Ed', '5269930'), + (81, 1375, 'attending', '2022-05-02 17:20:45', '2025-12-17 19:47:28', '841br9Ed', '5269932'), + (81, 1378, 'attending', '2022-05-10 20:01:21', '2025-12-17 19:47:28', '841br9Ed', '5271448'), + (81, 1379, 'attending', '2022-05-15 02:47:35', '2025-12-17 19:47:29', '841br9Ed', '5271449'), + (81, 1380, 'not_attending', '2022-05-15 02:48:03', '2025-12-17 19:47:30', '841br9Ed', '5271450'), + (81, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '841br9Ed', '5276469'), + (81, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '841br9Ed', '5278159'), + (81, 1394, 'not_attending', '2022-05-18 19:41:33', '2025-12-17 19:47:30', '841br9Ed', '5280667'), + (81, 1395, 'attending', '2022-05-07 16:06:26', '2025-12-17 19:47:28', '841br9Ed', '5281102'), + (81, 1397, 'attending', '2022-05-17 12:05:46', '2025-12-17 19:47:29', '841br9Ed', '5281104'), + (81, 1407, 'attending', '2022-06-01 15:49:28', '2025-12-17 19:47:30', '841br9Ed', '5363695'), + (81, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '841br9Ed', '5365960'), + (81, 1414, 'not_attending', '2022-05-20 23:58:31', '2025-12-17 19:47:29', '841br9Ed', '5368445'), + (81, 1415, 'maybe', '2022-06-03 14:50:31', '2025-12-17 19:47:30', '841br9Ed', '5368973'), + (81, 1428, 'attending', '2022-06-05 23:32:02', '2025-12-17 19:47:30', '841br9Ed', '5378247'), + (81, 1431, 'attending', '2022-06-03 14:49:28', '2025-12-17 19:47:30', '841br9Ed', '5389605'), + (81, 1441, 'not_attending', '2022-06-05 16:28:53', '2025-12-17 19:47:30', '841br9Ed', '5397171'), + (81, 1442, 'attending', '2022-06-05 23:32:41', '2025-12-17 19:47:17', '841br9Ed', '5397265'), + (81, 1443, 'attending', '2022-06-03 14:52:38', '2025-12-17 19:47:30', '841br9Ed', '5397613'), + (81, 1444, 'attending', '2022-06-05 23:32:38', '2025-12-17 19:47:30', '841br9Ed', '5397614'), + (81, 1445, 'attending', '2022-06-10 10:26:36', '2025-12-17 19:47:17', '841br9Ed', '5397615'), + (81, 1451, 'maybe', '2022-06-17 22:13:29', '2025-12-17 19:47:17', '841br9Ed', '5403967'), + (81, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '841br9Ed', '5404786'), + (81, 1459, 'attending', '2022-06-10 10:26:51', '2025-12-17 19:47:17', '841br9Ed', '5404793'), + (81, 1460, 'attending', '2022-06-12 20:36:02', '2025-12-17 19:47:31', '841br9Ed', '5404817'), + (81, 1462, 'not_attending', '2022-06-12 22:16:31', '2025-12-17 19:47:17', '841br9Ed', '5405203'), + (81, 1465, 'attending', '2022-06-12 03:06:46', '2025-12-17 19:47:31', '841br9Ed', '5406355'), + (81, 1478, 'maybe', '2022-06-24 21:24:57', '2025-12-17 19:47:19', '841br9Ed', '5408794'), + (81, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '841br9Ed', '5411699'), + (81, 1482, 'attending', '2022-06-20 03:03:19', '2025-12-17 19:47:19', '841br9Ed', '5412550'), + (81, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '841br9Ed', '5415046'), + (81, 1493, 'attending', '2022-06-24 19:22:58', '2025-12-17 19:47:19', '841br9Ed', '5420218'), + (81, 1494, 'not_attending', '2022-06-25 15:22:37', '2025-12-17 19:47:19', '841br9Ed', '5421626'), + (81, 1495, 'attending', '2022-06-27 19:28:37', '2025-12-17 19:47:19', '841br9Ed', '5422086'), + (81, 1498, 'not_attending', '2022-06-27 19:28:33', '2025-12-17 19:47:19', '841br9Ed', '5422406'), + (81, 1499, 'not_attending', '2022-06-27 18:11:26', '2025-12-17 19:47:19', '841br9Ed', '5422407'), + (81, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '841br9Ed', '5424565'), + (81, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '841br9Ed', '5426882'), + (81, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '841br9Ed', '5427083'), + (81, 1511, 'not_attending', '2022-07-06 23:43:26', '2025-12-17 19:47:19', '841br9Ed', '5437733'), + (81, 1513, 'attending', '2022-07-09 16:17:19', '2025-12-17 19:47:19', '841br9Ed', '5441125'), + (81, 1514, 'attending', '2022-07-19 13:23:00', '2025-12-17 19:47:20', '841br9Ed', '5441126'), + (81, 1515, 'attending', '2022-08-04 18:57:26', '2025-12-17 19:47:21', '841br9Ed', '5441128'), + (81, 1516, 'not_attending', '2022-08-19 23:29:40', '2025-12-17 19:47:23', '841br9Ed', '5441129'), + (81, 1517, 'not_attending', '2022-08-23 20:13:15', '2025-12-17 19:47:23', '841br9Ed', '5441130'), + (81, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '841br9Ed', '5441131'), + (81, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '841br9Ed', '5441132'), + (81, 1522, 'attending', '2022-07-18 14:15:14', '2025-12-17 19:47:20', '841br9Ed', '5442832'), + (81, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '841br9Ed', '5446643'), + (81, 1531, 'attending', '2022-07-16 12:37:49', '2025-12-17 19:47:19', '841br9Ed', '5448756'), + (81, 1532, 'attending', '2022-07-18 14:14:59', '2025-12-17 19:47:20', '841br9Ed', '5448757'), + (81, 1534, 'attending', '2022-08-04 18:57:25', '2025-12-17 19:47:21', '841br9Ed', '5448759'), + (81, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '841br9Ed', '5453325'), + (81, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '841br9Ed', '5454516'), + (81, 1544, 'attending', '2022-09-13 23:47:25', '2025-12-17 19:47:11', '841br9Ed', '5454517'), + (81, 1545, 'maybe', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '841br9Ed', '5454605'), + (81, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '841br9Ed', '5455037'), + (81, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '841br9Ed', '5461278'), + (81, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '841br9Ed', '5469480'), + (81, 1565, 'attending', '2022-07-27 00:31:08', '2025-12-17 19:47:21', '841br9Ed', '5471073'), + (81, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '841br9Ed', '5474663'), + (81, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '841br9Ed', '5482022'), + (81, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '841br9Ed', '5482793'), + (81, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '841br9Ed', '5488912'), + (81, 1583, 'attending', '2022-08-10 00:32:19', '2025-12-17 19:47:22', '841br9Ed', '5492002'), + (81, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '841br9Ed', '5492192'), + (81, 1588, 'not_attending', '2022-08-08 19:40:40', '2025-12-17 19:47:22', '841br9Ed', '5493139'), + (81, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '841br9Ed', '5493200'), + (81, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '841br9Ed', '5502188'), + (81, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '841br9Ed', '5505059'), + (81, 1609, 'maybe', '2022-08-25 20:16:05', '2025-12-17 19:47:23', '841br9Ed', '5506590'), + (81, 1610, 'maybe', '2022-08-25 20:16:28', '2025-12-17 19:47:23', '841br9Ed', '5506595'), + (81, 1612, 'not_attending', '2022-09-26 19:57:04', '2025-12-17 19:47:12', '841br9Ed', '5507653'), + (81, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '841br9Ed', '5509055'), + (81, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '841br9Ed', '5512862'), + (81, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '841br9Ed', '5513985'), + (81, 1626, 'attending', '2022-08-26 00:29:00', '2025-12-17 19:47:11', '841br9Ed', '5519981'), + (81, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '841br9Ed', '5522550'), + (81, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '841br9Ed', '5534683'), + (81, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '841br9Ed', '5537735'), + (81, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '841br9Ed', '5540859'), + (81, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '841br9Ed', '5546619'), + (81, 1649, 'attending', '2022-09-03 15:36:37', '2025-12-17 19:47:24', '841br9Ed', '5549346'), + (81, 1652, 'maybe', '2022-09-08 14:16:56', '2025-12-17 19:47:24', '841br9Ed', '5552671'), + (81, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '841br9Ed', '5555245'), + (81, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '841br9Ed', '5557747'), + (81, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '841br9Ed', '5560255'), + (81, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '841br9Ed', '5562906'), + (81, 1667, 'maybe', '2022-09-24 18:10:32', '2025-12-17 19:47:11', '841br9Ed', '5563221'), + (81, 1668, 'not_attending', '2022-10-01 22:06:42', '2025-12-17 19:47:12', '841br9Ed', '5563222'), + (81, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '841br9Ed', '5600604'), + (81, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '841br9Ed', '5605544'), + (81, 1699, 'maybe', '2022-09-26 12:15:58', '2025-12-17 19:47:12', '841br9Ed', '5606737'), + (81, 1705, 'attending', '2022-09-29 21:29:18', '2025-12-17 19:47:12', '841br9Ed', '5612209'), + (81, 1716, 'attending', '2022-10-03 20:58:10', '2025-12-17 19:47:12', '841br9Ed', '5622429'), + (81, 1719, 'attending', '2022-10-07 18:25:50', '2025-12-17 19:47:12', '841br9Ed', '5630958'), + (81, 1720, 'attending', '2022-10-14 19:37:29', '2025-12-17 19:47:12', '841br9Ed', '5630959'), + (81, 1721, 'attending', '2022-10-22 14:18:29', '2025-12-17 19:47:13', '841br9Ed', '5630960'), + (81, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '841br9Ed', '5630961'), + (81, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '841br9Ed', '5630962'), + (81, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '841br9Ed', '5630966'), + (81, 1725, 'attending', '2022-11-12 01:18:33', '2025-12-17 19:47:16', '841br9Ed', '5630967'), + (81, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '841br9Ed', '5630968'), + (81, 1727, 'attending', '2022-11-21 23:16:55', '2025-12-17 19:47:16', '841br9Ed', '5630969'), + (81, 1728, 'attending', '2022-12-05 02:49:04', '2025-12-17 19:47:17', '841br9Ed', '5630970'), + (81, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '841br9Ed', '5635406'), + (81, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '841br9Ed', '5638765'), + (81, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '841br9Ed', '5640097'), + (81, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '841br9Ed', '5640843'), + (81, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '841br9Ed', '5641521'), + (81, 1744, 'attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '841br9Ed', '5642818'), + (81, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '841br9Ed', '5652395'), + (81, 1753, 'maybe', '2022-10-16 14:00:34', '2025-12-17 19:47:13', '841br9Ed', '5656228'), + (81, 1759, 'attending', '2022-10-22 20:56:18', '2025-12-17 19:47:13', '841br9Ed', '5669097'), + (81, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '841br9Ed', '5670445'), + (81, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '841br9Ed', '5671637'), + (81, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '841br9Ed', '5672329'), + (81, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '841br9Ed', '5674057'), + (81, 1767, 'maybe', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '841br9Ed', '5674060'), + (81, 1769, 'maybe', '2022-11-03 22:25:55', '2025-12-17 19:47:15', '841br9Ed', '5676351'), + (81, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '841br9Ed', '5677461'), + (81, 1776, 'maybe', '2022-11-09 21:05:17', '2025-12-17 19:47:15', '841br9Ed', '5691067'), + (81, 1777, 'attending', '2022-11-07 22:35:40', '2025-12-17 19:47:15', '841br9Ed', '5693021'), + (81, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '841br9Ed', '5698046'), + (81, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '841br9Ed', '5699760'), + (81, 1790, 'maybe', '2022-11-12 01:18:00', '2025-12-17 19:47:15', '841br9Ed', '5727424'), + (81, 1793, 'maybe', '2022-11-21 23:16:49', '2025-12-17 19:47:16', '841br9Ed', '5736365'), + (81, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '841br9Ed', '5741601'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (81, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '841br9Ed', '5763458'), + (81, 1813, 'attending', '2023-04-29 21:53:12', '2025-12-17 19:47:01', '841br9Ed', '5764683'), + (81, 1815, 'attending', '2023-02-17 15:01:19', '2025-12-17 19:47:07', '841br9Ed', '5764685'), + (81, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '841br9Ed', '5774172'), + (81, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '841br9Ed', '5818247'), + (81, 1834, 'maybe', '2022-12-10 13:42:48', '2025-12-17 19:47:17', '841br9Ed', '5819470'), + (81, 1835, 'attending', '2023-01-04 03:00:50', '2025-12-17 19:47:05', '841br9Ed', '5819471'), + (81, 1841, 'attending', '2022-12-23 15:57:09', '2025-12-17 19:47:05', '841br9Ed', '5827665'), + (81, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '841br9Ed', '5827739'), + (81, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '841br9Ed', '5844306'), + (81, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '841br9Ed', '5850159'), + (81, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '841br9Ed', '5858999'), + (81, 1852, 'maybe', '2023-01-11 20:35:32', '2025-12-17 19:47:05', '841br9Ed', '5869898'), + (81, 1853, 'attending', '2023-01-10 02:34:14', '2025-12-17 19:47:05', '841br9Ed', '5871984'), + (81, 1856, 'maybe', '2023-01-17 16:13:45', '2025-12-17 19:47:05', '841br9Ed', '5873970'), + (81, 1860, 'maybe', '2023-01-16 17:10:51', '2025-12-17 19:47:05', '841br9Ed', '5876309'), + (81, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '841br9Ed', '5876354'), + (81, 1864, 'attending', '2023-01-16 17:10:45', '2025-12-17 19:47:05', '841br9Ed', '5879675'), + (81, 1865, 'attending', '2023-01-26 12:25:58', '2025-12-17 19:47:06', '841br9Ed', '5879676'), + (81, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '841br9Ed', '5880939'), + (81, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '841br9Ed', '5880940'), + (81, 1868, 'maybe', '2023-02-19 16:39:32', '2025-12-17 19:47:07', '841br9Ed', '5880942'), + (81, 1869, 'maybe', '2023-02-28 19:47:14', '2025-12-17 19:47:09', '841br9Ed', '5880943'), + (81, 1872, 'maybe', '2023-01-20 20:18:45', '2025-12-17 19:47:05', '841br9Ed', '5883546'), + (81, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '841br9Ed', '5887890'), + (81, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '841br9Ed', '5888598'), + (81, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '841br9Ed', '5893260'), + (81, 1881, 'attending', '2023-01-25 03:49:39', '2025-12-17 19:47:07', '841br9Ed', '5894218'), + (81, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '841br9Ed', '5899826'), + (81, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '841br9Ed', '5900199'), + (81, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '841br9Ed', '5900200'), + (81, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '841br9Ed', '5900202'), + (81, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '841br9Ed', '5900203'), + (81, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '841br9Ed', '5901108'), + (81, 1897, 'attending', '2023-02-10 14:29:22', '2025-12-17 19:47:07', '841br9Ed', '5901128'), + (81, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '841br9Ed', '5909655'), + (81, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '841br9Ed', '5910522'), + (81, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '841br9Ed', '5910526'), + (81, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '841br9Ed', '5910528'), + (81, 1920, 'attending', '2023-02-14 00:24:42', '2025-12-17 19:47:07', '841br9Ed', '5914091'), + (81, 1922, 'attending', '2023-02-12 18:27:32', '2025-12-17 19:47:07', '841br9Ed', '5916219'), + (81, 1923, 'attending', '2023-02-18 18:31:09', '2025-12-17 19:47:07', '841br9Ed', '5930436'), + (81, 1933, 'attending', '2023-02-20 16:56:35', '2025-12-17 19:47:08', '841br9Ed', '5936234'), + (81, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '841br9Ed', '5958351'), + (81, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '841br9Ed', '5959751'), + (81, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '841br9Ed', '5959755'), + (81, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '841br9Ed', '5960055'), + (81, 1941, 'maybe', '2023-02-25 23:34:41', '2025-12-17 19:47:09', '841br9Ed', '5961684'), + (81, 1944, 'attending', '2023-02-26 03:03:03', '2025-12-17 19:47:09', '841br9Ed', '5962132'), + (81, 1945, 'attending', '2023-02-27 21:22:18', '2025-12-17 19:47:09', '841br9Ed', '5962133'), + (81, 1946, 'attending', '2023-02-27 21:22:26', '2025-12-17 19:46:56', '841br9Ed', '5962134'), + (81, 1947, 'attending', '2023-02-25 23:59:31', '2025-12-17 19:47:09', '841br9Ed', '5962233'), + (81, 1948, 'attending', '2023-02-27 21:22:35', '2025-12-17 19:46:57', '841br9Ed', '5962317'), + (81, 1949, 'not_attending', '2023-02-26 04:44:40', '2025-12-17 19:46:59', '841br9Ed', '5962318'), + (81, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '841br9Ed', '5965933'), + (81, 1953, 'maybe', '2023-03-01 20:57:20', '2025-12-17 19:47:09', '841br9Ed', '5966307'), + (81, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '841br9Ed', '5967014'), + (81, 1956, 'attending', '2023-03-06 04:33:10', '2025-12-17 19:47:09', '841br9Ed', '5972763'), + (81, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '841br9Ed', '5972815'), + (81, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '841br9Ed', '5974016'), + (81, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '841br9Ed', '5981515'), + (81, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '841br9Ed', '5993516'), + (81, 1972, 'attending', '2023-03-16 01:28:27', '2025-12-17 19:46:56', '841br9Ed', '5993776'), + (81, 1973, 'maybe', '2023-03-19 03:22:20', '2025-12-17 19:46:56', '841br9Ed', '5993777'), + (81, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '841br9Ed', '5998939'), + (81, 1978, 'maybe', '2023-03-26 07:35:24', '2025-12-17 19:46:58', '841br9Ed', '6028191'), + (81, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '841br9Ed', '6040066'), + (81, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '841br9Ed', '6042717'), + (81, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '841br9Ed', '6044838'), + (81, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '841br9Ed', '6044839'), + (81, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841br9Ed', '6045684'), + (81, 1992, 'attending', '2023-04-01 00:28:29', '2025-12-17 19:46:58', '841br9Ed', '6048742'), + (81, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '841br9Ed', '6050104'), + (81, 1997, 'attending', '2023-04-03 13:31:12', '2025-12-17 19:46:58', '841br9Ed', '6051604'), + (81, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '841br9Ed', '6053195'), + (81, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '841br9Ed', '6053198'), + (81, 2010, 'attending', '2023-04-07 18:33:36', '2025-12-17 19:46:59', '841br9Ed', '6056085'), + (81, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '841br9Ed', '6056916'), + (81, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '841br9Ed', '6059290'), + (81, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '841br9Ed', '6060328'), + (81, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '841br9Ed', '6061037'), + (81, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '841br9Ed', '6061039'), + (81, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', '841br9Ed', '6061099'), + (81, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '841br9Ed', '6067245'), + (81, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '841br9Ed', '6068094'), + (81, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '841br9Ed', '6068252'), + (81, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '841br9Ed', '6068253'), + (81, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '841br9Ed', '6068254'), + (81, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '841br9Ed', '6068280'), + (81, 2032, 'attending', '2023-05-20 21:20:46', '2025-12-17 19:47:04', '841br9Ed', '6068281'), + (81, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '841br9Ed', '6069093'), + (81, 2039, 'attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', '841br9Ed', '6072398'), + (81, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '841br9Ed', '6072528'), + (81, 2043, 'maybe', '2023-04-25 22:03:35', '2025-12-17 19:47:01', '841br9Ed', '6073023'), + (81, 2044, 'attending', '2023-04-26 00:28:45', '2025-12-17 19:47:03', '841br9Ed', '6073678'), + (81, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '841br9Ed', '6079840'), + (81, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '841br9Ed', '6083398'), + (81, 2056, 'attending', '2023-05-09 19:49:34', '2025-12-17 19:47:02', '841br9Ed', '6093504'), + (81, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '841br9Ed', '6097414'), + (81, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '841br9Ed', '6097442'), + (81, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '841br9Ed', '6097684'), + (81, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '841br9Ed', '6098762'), + (81, 2064, 'attending', '2023-06-24 16:20:23', '2025-12-17 19:46:50', '841br9Ed', '6099988'), + (81, 2065, 'attending', '2023-05-20 21:20:35', '2025-12-17 19:46:49', '841br9Ed', '6101169'), + (81, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '841br9Ed', '6101361'), + (81, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '841br9Ed', '6101362'), + (81, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '841br9Ed', '6103752'), + (81, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '841br9Ed', '6107314'), + (81, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '841br9Ed', '6120034'), + (81, 2089, 'maybe', '2023-06-07 23:57:16', '2025-12-17 19:47:04', '841br9Ed', '6125227'), + (81, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', '841br9Ed', '6135924'), + (81, 2095, 'attending', '2023-06-05 20:05:26', '2025-12-17 19:46:51', '841br9Ed', '6136733'), + (81, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '841br9Ed', '6137989'), + (81, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '841br9Ed', '6150864'), + (81, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '841br9Ed', '6155491'), + (81, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '841br9Ed', '6164417'), + (81, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '841br9Ed', '6166388'), + (81, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '841br9Ed', '6176439'), + (81, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '841br9Ed', '6182410'), + (81, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '841br9Ed', '6185812'), + (81, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '841br9Ed', '6187651'), + (81, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '841br9Ed', '6187963'), + (81, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '841br9Ed', '6187964'), + (81, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '841br9Ed', '6187966'), + (81, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '841br9Ed', '6187967'), + (81, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '841br9Ed', '6187969'), + (81, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '841br9Ed', '6334878'), + (81, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '841br9Ed', '6337236'), + (81, 2154, 'maybe', '2023-07-11 23:11:58', '2025-12-17 19:46:52', '841br9Ed', '6337689'), + (81, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '841br9Ed', '6337970'), + (81, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '841br9Ed', '6338308'), + (81, 2157, 'not_attending', '2023-07-12 21:54:13', '2025-12-17 19:46:52', '841br9Ed', '6338342'), + (81, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '841br9Ed', '6341710'), + (81, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '841br9Ed', '6342044'), + (81, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '841br9Ed', '6342298'), + (81, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '841br9Ed', '6343294'), + (81, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '841br9Ed', '6347034'), + (81, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '841br9Ed', '6347056'), + (81, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '841br9Ed', '6353830'), + (81, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '841br9Ed', '6353831'), + (81, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '841br9Ed', '6357867'), + (81, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '841br9Ed', '6358652'), + (81, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '841br9Ed', '6358668'), + (81, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '841br9Ed', '6358669'), + (81, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '841br9Ed', '6361709'), + (81, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '841br9Ed', '6361710'), + (81, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '841br9Ed', '6361711'), + (81, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '841br9Ed', '6361712'), + (81, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '841br9Ed', '6361713'), + (81, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '841br9Ed', '6382573'), + (81, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '841br9Ed', '6388604'), + (81, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '841br9Ed', '6394629'), + (81, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '841br9Ed', '6394631'), + (81, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '841br9Ed', '6440863'), + (81, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '841br9Ed', '6445440'), + (81, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '841br9Ed', '6453951'), + (81, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '841br9Ed', '6461696'), + (81, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '841br9Ed', '6462129'), + (81, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '841br9Ed', '6463218'), + (81, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '841br9Ed', '6472181'), + (81, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', '841br9Ed', '6474276'), + (81, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '841br9Ed', '6482693'), + (81, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '841br9Ed', '6484200'), + (81, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '841br9Ed', '6484680'), + (81, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '841br9Ed', '6507741'), + (81, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '841br9Ed', '6514659'), + (81, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '841br9Ed', '6514660'), + (81, 2324, 'not_attending', '2023-12-09 19:40:29', '2025-12-17 19:46:49', '841br9Ed', '6514662'), + (81, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '841br9Ed', '6519103'), + (81, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '841br9Ed', '6535681'), + (81, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '841br9Ed', '6584747'), + (81, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '841br9Ed', '6587097'), + (81, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '841br9Ed', '6609022'), + (81, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '841br9Ed', '6644187'), + (81, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '841br9Ed', '6648951'), + (81, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '841br9Ed', '6648952'), + (81, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '841br9Ed', '6655401'), + (81, 2399, 'attending', '2024-01-13 18:46:29', '2025-12-17 19:46:38', '841br9Ed', '6657583'), + (81, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '841br9Ed', '6661585'), + (81, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '841br9Ed', '6661588'), + (81, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '841br9Ed', '6661589'), + (81, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '841br9Ed', '6699906'), + (81, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '841br9Ed', '6699913'), + (81, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '841br9Ed', '6701109'), + (81, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '841br9Ed', '6705219'), + (81, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '841br9Ed', '6710153'), + (81, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '841br9Ed', '6711552'), + (81, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '841br9Ed', '6711553'), + (81, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '841br9Ed', '6722688'), + (81, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '841br9Ed', '6730620'), + (81, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '841br9Ed', '6740364'), + (81, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '841br9Ed', '6743829'), + (81, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '841br9Ed', '7030380'), + (81, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '841br9Ed', '7033677'), + (81, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '841br9Ed', '7044715'), + (81, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '841br9Ed', '7050318'), + (81, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '841br9Ed', '7050319'), + (81, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '841br9Ed', '7050322'), + (81, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '841br9Ed', '7057804'), + (81, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '841br9Ed', '7072824'), + (81, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '841br9Ed', '7074348'), + (81, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '841br9Ed', '7074364'), + (81, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '841br9Ed', '7089267'), + (81, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '841br9Ed', '7098747'), + (81, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '841br9Ed', '7113468'), + (81, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '841br9Ed', '7114856'), + (81, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '841br9Ed', '7114951'), + (81, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '841br9Ed', '7114955'), + (81, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '841br9Ed', '7114956'), + (81, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '841br9Ed', '7114957'), + (81, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '841br9Ed', '7159484'), + (81, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '841br9Ed', '7178446'), + (81, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '841br9Ed', '7220467'), + (81, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '841br9Ed', '7240354'), + (81, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '841br9Ed', '7251633'), + (81, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '841br9Ed', '7324073'), + (81, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '841br9Ed', '7324074'), + (81, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '841br9Ed', '7324075'), + (81, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '841br9Ed', '7324078'), + (81, 2697, 'attending', '2024-08-30 23:54:52', '2025-12-17 19:46:32', '841br9Ed', '7324082'), + (81, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '841br9Ed', '7331457'), + (81, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '841br9Ed', '7363643'), + (81, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '841br9Ed', '7368606'), + (81, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '841br9Ed', '7397462'), + (81, 2808, 'attending', '2024-08-30 22:27:47', '2025-12-17 19:46:32', '841br9Ed', '7412860'), + (81, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '841br9Ed', '7424275'), + (81, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '841br9Ed', '7424276'), + (81, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '841br9Ed', '7432751'), + (81, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '841br9Ed', '7432752'), + (81, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '841br9Ed', '7432753'), + (81, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '841br9Ed', '7432754'), + (81, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '841br9Ed', '7432755'), + (81, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '841br9Ed', '7432756'), + (81, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '841br9Ed', '7432758'), + (81, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '841br9Ed', '7432759'), + (81, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '841br9Ed', '7433834'), + (81, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '841br9Ed', '7470197'), + (81, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '841br9Ed', '7685613'), + (81, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '841br9Ed', '7688194'), + (81, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '841br9Ed', '7688196'), + (81, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '841br9Ed', '7688289'), + (81, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '841br9Ed', '7692763'), + (81, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '841br9Ed', '7697552'), + (81, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '841br9Ed', '7699878'), + (81, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '841br9Ed', '7704043'), + (81, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '841br9Ed', '7712467'), + (81, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '841br9Ed', '7713585'), + (81, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '841br9Ed', '7713586'), + (81, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '841br9Ed', '7738518'), + (81, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', '841br9Ed', '7750632'), + (81, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '841br9Ed', '7750636'), + (81, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '841br9Ed', '7796540'), + (81, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '841br9Ed', '7796541'), + (81, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '841br9Ed', '7796542'), + (81, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '841br9Ed', '7825913'), + (81, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '841br9Ed', '7826209'), + (81, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '841br9Ed', '7834742'), + (81, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '841br9Ed', '7842108'), + (81, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '841br9Ed', '7842902'), + (81, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '841br9Ed', '7842903'), + (81, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '841br9Ed', '7842904'), + (81, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '841br9Ed', '7842905'), + (81, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '841br9Ed', '7855719'), + (81, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '841br9Ed', '7860683'), + (81, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '841br9Ed', '7860684'), + (81, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '841br9Ed', '7866095'), + (81, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '841br9Ed', '7869170'), + (81, 3014, 'not_attending', '2025-03-31 23:13:03', '2025-12-17 19:46:20', '841br9Ed', '7869185'), + (81, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '841br9Ed', '7869188'), + (81, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '841br9Ed', '7869201'), + (81, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '841br9Ed', '7877465'), + (81, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '841br9Ed', '7878570'), + (81, 3055, 'maybe', '2025-03-27 22:56:55', '2025-12-17 19:46:19', '841br9Ed', '7888118'), + (81, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '841br9Ed', '7888250'), + (81, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '841br9Ed', '7904777'), + (81, 3095, 'attending', '2025-05-03 22:33:57', '2025-12-17 19:46:20', '841br9Ed', '8342293'), + (81, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '841br9Ed', '8349164'), + (81, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '841br9Ed', '8349545'), + (81, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '841br9Ed', '8353584'), + (81, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '841br9Ed', '8368028'), + (81, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '841br9Ed', '8368029'), + (81, 3133, 'not_attending', '2025-05-29 14:36:06', '2025-12-17 19:46:14', '841br9Ed', '8368030'), + (81, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '841br9Ed', '8388462'), + (81, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '841br9Ed', '8400273'), + (81, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '841br9Ed', '8400274'), + (81, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '841br9Ed', '8400275'), + (81, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '841br9Ed', '8400276'), + (81, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '841br9Ed', '8404977'), + (81, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '841br9Ed', '8430783'), + (81, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '841br9Ed', '8430784'), + (81, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '841br9Ed', '8430799'), + (81, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '841br9Ed', '8430800'), + (81, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '841br9Ed', '8430801'), + (81, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '841br9Ed', '8438709'), + (81, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '841br9Ed', '8457738'), + (81, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '841br9Ed', '8459566'), + (81, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '841br9Ed', '8459567'), + (81, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '841br9Ed', '8461032'), + (81, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '841br9Ed', '8477877'), + (81, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '841br9Ed', '8485688'), + (81, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '841br9Ed', '8490587'), + (81, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '841br9Ed', '8493552'), + (81, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '841br9Ed', '8493553'), + (81, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '841br9Ed', '8493554'), + (81, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '841br9Ed', '8493555'), + (81, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '841br9Ed', '8493556'), + (81, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '841br9Ed', '8493557'), + (81, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '841br9Ed', '8493558'), + (81, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '841br9Ed', '8493559'), + (81, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '841br9Ed', '8493560'), + (81, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '841br9Ed', '8493561'), + (81, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '841br9Ed', '8493572'), + (81, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '841br9Ed', '8540725'), + (81, 3295, 'maybe', '2025-11-01 21:43:02', '2025-12-17 19:46:14', '841br9Ed', '8547541'), + (81, 3302, 'attending', '2025-11-13 07:14:13', '2025-12-17 19:46:14', '841br9Ed', '8550022'), + (81, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '841br9Ed', '8555421'), + (81, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', '841br9Ed', '8555522'), + (82, 245, 'attending', '2020-12-01 00:30:24', '2025-12-17 19:47:54', 'kdK0eo5m', '3149476'), + (82, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'kdK0eo5m', '3285414'), + (82, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'kdK0eo5m', '3313856'), + (82, 496, 'attending', '2020-12-10 22:46:44', '2025-12-17 19:47:54', 'kdK0eo5m', '3314269'), + (82, 497, 'not_attending', '2020-12-18 00:31:39', '2025-12-17 19:47:55', 'kdK0eo5m', '3314270'), + (82, 499, 'attending', '2020-12-12 00:59:15', '2025-12-17 19:47:55', 'kdK0eo5m', '3314909'), + (82, 500, 'maybe', '2020-12-19 00:25:12', '2025-12-17 19:47:55', 'kdK0eo5m', '3314964'), + (82, 501, 'attending', '2020-12-09 00:27:13', '2025-12-17 19:47:54', 'kdK0eo5m', '3317834'), + (82, 502, 'attending', '2020-12-11 06:51:42', '2025-12-17 19:47:55', 'kdK0eo5m', '3323365'), + (82, 506, 'attending', '2020-12-14 00:48:42', '2025-12-17 19:47:55', 'kdK0eo5m', '3323375'), + (82, 513, 'attending', '2020-12-19 19:29:40', '2025-12-17 19:47:55', 'kdK0eo5m', '3329383'), + (82, 517, 'maybe', '2021-01-04 21:11:25', '2025-12-17 19:47:48', 'kdK0eo5m', '3337137'), + (82, 518, 'maybe', '2021-01-04 21:11:06', '2025-12-17 19:47:48', 'kdK0eo5m', '3337138'), + (82, 526, 'attending', '2020-12-31 12:30:21', '2025-12-17 19:47:48', 'kdK0eo5m', '3351539'), + (82, 529, 'maybe', '2021-01-04 21:10:53', '2025-12-17 19:47:48', 'kdK0eo5m', '3364568'), + (82, 532, 'maybe', '2021-01-08 06:41:28', '2025-12-17 19:47:48', 'kdK0eo5m', '3381412'), + (82, 534, 'attending', '2021-01-08 06:41:34', '2025-12-17 19:47:48', 'kdK0eo5m', '3384157'), + (82, 536, 'attending', '2021-01-08 06:41:36', '2025-12-17 19:47:48', 'kdK0eo5m', '3386848'), + (82, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdK0eo5m', '3389527'), + (82, 542, 'attending', '2021-01-11 21:13:22', '2025-12-17 19:47:48', 'kdK0eo5m', '3395013'), + (82, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdK0eo5m', '3396499'), + (82, 548, 'attending', '2021-01-14 04:58:42', '2025-12-17 19:47:48', 'kdK0eo5m', '3403650'), + (82, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdK0eo5m', '3406988'), + (82, 550, 'attending', '2021-01-18 00:43:48', '2025-12-17 19:47:48', 'kdK0eo5m', '3407018'), + (82, 555, 'attending', '2021-01-23 19:50:42', '2025-12-17 19:47:49', 'kdK0eo5m', '3416576'), + (82, 556, 'maybe', '2021-01-25 20:02:54', '2025-12-17 19:47:49', 'kdK0eo5m', '3417170'), + (82, 557, 'maybe', '2021-01-19 18:52:24', '2025-12-17 19:47:49', 'kdK0eo5m', '3418748'), + (82, 558, 'maybe', '2021-01-20 04:34:58', '2025-12-17 19:47:49', 'kdK0eo5m', '3418925'), + (82, 562, 'attending', '2021-01-23 18:27:47', '2025-12-17 19:47:49', 'kdK0eo5m', '3424911'), + (82, 564, 'not_attending', '2021-01-24 08:44:18', '2025-12-17 19:47:49', 'kdK0eo5m', '3426074'), + (82, 567, 'attending', '2021-01-24 08:50:46', '2025-12-17 19:47:50', 'kdK0eo5m', '3428895'), + (82, 568, 'attending', '2021-01-26 00:38:36', '2025-12-17 19:47:50', 'kdK0eo5m', '3430267'), + (82, 569, 'maybe', '2021-01-27 22:08:56', '2025-12-17 19:47:49', 'kdK0eo5m', '3432673'), + (82, 571, 'maybe', '2021-02-12 05:09:04', '2025-12-17 19:47:50', 'kdK0eo5m', '3435539'), + (82, 577, 'maybe', '2021-01-29 05:03:59', '2025-12-17 19:47:49', 'kdK0eo5m', '3439167'), + (82, 579, 'attending', '2021-02-06 21:52:09', '2025-12-17 19:47:50', 'kdK0eo5m', '3440978'), + (82, 580, 'maybe', '2021-01-31 19:43:38', '2025-12-17 19:47:50', 'kdK0eo5m', '3444240'), + (82, 591, 'maybe', '2021-02-08 20:06:10', '2025-12-17 19:47:50', 'kdK0eo5m', '3465880'), + (82, 599, 'maybe', '2021-02-11 22:59:44', '2025-12-17 19:47:50', 'kdK0eo5m', '3468117'), + (82, 600, 'maybe', '2021-02-21 10:33:40', '2025-12-17 19:47:50', 'kdK0eo5m', '3468125'), + (82, 602, 'attending', '2021-02-10 01:05:48', '2025-12-17 19:47:50', 'kdK0eo5m', '3470303'), + (82, 603, 'attending', '2021-02-20 20:20:31', '2025-12-17 19:47:50', 'kdK0eo5m', '3470304'), + (82, 604, 'attending', '2021-02-27 01:29:13', '2025-12-17 19:47:50', 'kdK0eo5m', '3470305'), + (82, 605, 'attending', '2021-02-15 02:00:54', '2025-12-17 19:47:50', 'kdK0eo5m', '3470991'), + (82, 612, 'attending', '2021-02-18 03:49:08', '2025-12-17 19:47:50', 'kdK0eo5m', '3490040'), + (82, 613, 'maybe', '2021-02-24 03:02:55', '2025-12-17 19:47:50', 'kdK0eo5m', '3490041'), + (82, 614, 'attending', '2021-03-04 00:45:10', '2025-12-17 19:47:51', 'kdK0eo5m', '3490042'), + (82, 616, 'attending', '2021-02-21 20:09:24', '2025-12-17 19:47:50', 'kdK0eo5m', '3493478'), + (82, 621, 'attending', '2021-03-04 09:45:32', '2025-12-17 19:47:51', 'kdK0eo5m', '3517815'), + (82, 622, 'attending', '2021-03-10 01:15:24', '2025-12-17 19:47:51', 'kdK0eo5m', '3517816'), + (82, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdK0eo5m', '3523941'), + (82, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdK0eo5m', '3533850'), + (82, 637, 'attending', '2021-03-01 21:33:46', '2025-12-17 19:47:51', 'kdK0eo5m', '3536411'), + (82, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdK0eo5m', '3536632'), + (82, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdK0eo5m', '3536656'), + (82, 641, 'attending', '2021-04-03 04:46:25', '2025-12-17 19:47:44', 'kdK0eo5m', '3539916'), + (82, 642, 'attending', '2021-04-10 03:14:53', '2025-12-17 19:47:44', 'kdK0eo5m', '3539917'), + (82, 643, 'attending', '2021-04-15 23:09:09', '2025-12-17 19:47:45', 'kdK0eo5m', '3539918'), + (82, 644, 'attending', '2021-04-23 21:29:52', '2025-12-17 19:47:45', 'kdK0eo5m', '3539919'), + (82, 645, 'attending', '2021-05-08 04:10:03', '2025-12-17 19:47:46', 'kdK0eo5m', '3539920'), + (82, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdK0eo5m', '3539921'), + (82, 647, 'attending', '2021-05-21 17:10:55', '2025-12-17 19:47:46', 'kdK0eo5m', '3539922'), + (82, 648, 'attending', '2021-05-28 16:11:29', '2025-12-17 19:47:47', 'kdK0eo5m', '3539923'), + (82, 649, 'maybe', '2021-03-20 06:00:47', '2025-12-17 19:47:51', 'kdK0eo5m', '3539927'), + (82, 650, 'attending', '2021-03-27 17:30:22', '2025-12-17 19:47:44', 'kdK0eo5m', '3539928'), + (82, 687, 'attending', '2021-03-12 01:45:06', '2025-12-17 19:47:51', 'kdK0eo5m', '3553405'), + (82, 699, 'maybe', '2021-03-26 03:40:56', '2025-12-17 19:47:44', 'kdK0eo5m', '3572241'), + (82, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdK0eo5m', '3582734'), + (82, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdK0eo5m', '3583262'), + (82, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdK0eo5m', '3619523'), + (82, 719, 'maybe', '2021-04-08 22:31:24', '2025-12-17 19:47:44', 'kdK0eo5m', '3635405'), + (82, 722, 'maybe', '2021-04-02 21:56:44', '2025-12-17 19:47:44', 'kdK0eo5m', '3646347'), + (82, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdK0eo5m', '3661369'), + (82, 731, 'maybe', '2021-04-05 22:42:52', '2025-12-17 19:47:44', 'kdK0eo5m', '3674262'), + (82, 735, 'maybe', '2021-04-05 21:11:35', '2025-12-17 19:47:46', 'kdK0eo5m', '3677402'), + (82, 737, 'attending', '2021-04-06 22:05:13', '2025-12-17 19:47:44', 'kdK0eo5m', '3679349'), + (82, 752, 'attending', '2021-04-15 23:12:58', '2025-12-17 19:47:44', 'kdK0eo5m', '3699422'), + (82, 774, 'maybe', '2021-04-21 21:02:59', '2025-12-17 19:47:45', 'kdK0eo5m', '3730212'), + (82, 777, 'attending', '2021-05-01 21:08:03', '2025-12-17 19:47:46', 'kdK0eo5m', '3746248'), + (82, 779, 'maybe', '2021-05-03 21:03:20', '2025-12-17 19:47:46', 'kdK0eo5m', '3757118'), + (82, 782, 'maybe', '2021-05-04 06:00:22', '2025-12-17 19:47:46', 'kdK0eo5m', '3761843'), + (82, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdK0eo5m', '3793156'), + (82, 793, 'attending', '2021-06-01 22:16:28', '2025-12-17 19:47:47', 'kdK0eo5m', '3793537'), + (82, 794, 'attending', '2021-05-20 07:28:21', '2025-12-17 19:47:47', 'kdK0eo5m', '3793538'), + (82, 808, 'maybe', '2021-05-20 19:51:35', '2025-12-17 19:47:46', 'kdK0eo5m', '3807358'), + (82, 823, 'attending', '2021-06-17 03:17:20', '2025-12-17 19:47:48', 'kdK0eo5m', '3974109'), + (82, 827, 'attending', '2021-06-05 18:55:05', '2025-12-17 19:47:47', 'kdK0eo5m', '3975311'), + (82, 828, 'attending', '2021-06-12 05:11:04', '2025-12-17 19:47:47', 'kdK0eo5m', '3975312'), + (82, 834, 'maybe', '2021-06-08 00:19:59', '2025-12-17 19:47:47', 'kdK0eo5m', '3990439'), + (82, 837, 'attending', '2021-06-17 22:36:55', '2025-12-17 19:47:48', 'kdK0eo5m', '3992545'), + (82, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdK0eo5m', '3994992'), + (82, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdK0eo5m', '4014338'), + (82, 866, 'maybe', '2021-06-15 22:36:29', '2025-12-17 19:47:38', 'kdK0eo5m', '4020424'), + (82, 867, 'not_attending', '2021-06-24 08:13:25', '2025-12-17 19:47:38', 'kdK0eo5m', '4021848'), + (82, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdK0eo5m', '4136744'), + (82, 870, 'attending', '2021-07-02 03:08:44', '2025-12-17 19:47:39', 'kdK0eo5m', '4136937'), + (82, 871, 'attending', '2021-07-07 22:21:38', '2025-12-17 19:47:39', 'kdK0eo5m', '4136938'), + (82, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdK0eo5m', '4136947'), + (82, 876, 'attending', '2021-06-22 23:48:10', '2025-12-17 19:47:38', 'kdK0eo5m', '4139926'), + (82, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdK0eo5m', '4210314'), + (82, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdK0eo5m', '4225444'), + (82, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdK0eo5m', '4239259'), + (82, 900, 'attending', '2021-07-24 17:00:32', '2025-12-17 19:47:40', 'kdK0eo5m', '4240316'), + (82, 901, 'attending', '2021-07-30 23:06:03', '2025-12-17 19:47:40', 'kdK0eo5m', '4240317'), + (82, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdK0eo5m', '4240318'), + (82, 903, 'attending', '2021-08-12 17:20:09', '2025-12-17 19:47:42', 'kdK0eo5m', '4240320'), + (82, 905, 'attending', '2021-07-07 22:20:47', '2025-12-17 19:47:39', 'kdK0eo5m', '4250163'), + (82, 919, 'attending', '2021-07-17 22:27:00', '2025-12-17 19:47:39', 'kdK0eo5m', '4275957'), + (82, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdK0eo5m', '4277819'), + (82, 933, 'attending', '2021-07-28 22:49:04', '2025-12-17 19:47:40', 'kdK0eo5m', '4301723'), + (82, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdK0eo5m', '4302093'), + (82, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdK0eo5m', '4304151'), + (82, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'kdK0eo5m', '4345519'), + (82, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdK0eo5m', '4356801'), + (82, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'kdK0eo5m', '4358025'), + (82, 973, 'attending', '2021-08-21 17:26:47', '2025-12-17 19:47:42', 'kdK0eo5m', '4366186'), + (82, 974, 'attending', '2021-08-27 21:24:52', '2025-12-17 19:47:42', 'kdK0eo5m', '4366187'), + (82, 988, 'maybe', '2021-08-27 19:10:20', '2025-12-17 19:47:42', 'kdK0eo5m', '4402823'), + (82, 990, 'attending', '2021-09-04 18:39:25', '2025-12-17 19:47:43', 'kdK0eo5m', '4420735'), + (82, 991, 'attending', '2021-09-11 19:34:13', '2025-12-17 19:47:43', 'kdK0eo5m', '4420738'), + (82, 992, 'attending', '2021-09-18 17:49:51', '2025-12-17 19:47:33', 'kdK0eo5m', '4420739'), + (82, 993, 'attending', '2021-09-25 18:24:02', '2025-12-17 19:47:34', 'kdK0eo5m', '4420741'), + (82, 994, 'not_attending', '2021-10-02 20:05:25', '2025-12-17 19:47:34', 'kdK0eo5m', '4420742'), + (82, 995, 'attending', '2021-10-09 09:11:01', '2025-12-17 19:47:34', 'kdK0eo5m', '4420744'), + (82, 996, 'attending', '2021-10-15 17:52:36', '2025-12-17 19:47:35', 'kdK0eo5m', '4420747'), + (82, 997, 'not_attending', '2021-10-23 21:26:09', '2025-12-17 19:47:35', 'kdK0eo5m', '4420748'), + (82, 998, 'attending', '2021-10-30 02:15:41', '2025-12-17 19:47:36', 'kdK0eo5m', '4420749'), + (82, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdK0eo5m', '4461883'), + (82, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdK0eo5m', '4508342'), + (82, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdK0eo5m', '4568602'), + (82, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdK0eo5m', '4572153'), + (82, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'kdK0eo5m', '4585962'), + (82, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'kdK0eo5m', '4596356'), + (82, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdK0eo5m', '4598860'), + (82, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdK0eo5m', '4598861'), + (82, 1099, 'not_attending', '2021-11-06 20:23:49', '2025-12-17 19:47:36', 'kdK0eo5m', '4602797'), + (82, 1114, 'not_attending', '2021-11-13 21:55:21', '2025-12-17 19:47:36', 'kdK0eo5m', '4637896'), + (82, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdK0eo5m', '4642994'), + (82, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'kdK0eo5m', '4642995'), + (82, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdK0eo5m', '4642996'), + (82, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdK0eo5m', '4642997'), + (82, 1126, 'not_attending', '2021-12-11 17:54:30', '2025-12-17 19:47:38', 'kdK0eo5m', '4645687'), + (82, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdK0eo5m', '4645698'), + (82, 1128, 'not_attending', '2021-11-20 21:53:55', '2025-12-17 19:47:37', 'kdK0eo5m', '4645704'), + (82, 1129, 'not_attending', '2021-11-28 00:22:53', '2025-12-17 19:47:37', 'kdK0eo5m', '4645705'), + (82, 1130, 'not_attending', '2021-12-04 22:04:23', '2025-12-17 19:47:37', 'kdK0eo5m', '4658824'), + (82, 1131, 'attending', '2021-12-19 00:42:16', '2025-12-17 19:47:31', 'kdK0eo5m', '4658825'), + (82, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdK0eo5m', '4668385'), + (82, 1146, 'maybe', '2021-12-08 06:32:47', '2025-12-17 19:47:38', 'kdK0eo5m', '4692841'), + (82, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdK0eo5m', '4694407'), + (82, 1151, 'maybe', '2022-01-06 00:49:23', '2025-12-17 19:47:31', 'kdK0eo5m', '4708704'), + (82, 1173, 'attending', '2022-01-09 00:23:32', '2025-12-17 19:47:31', 'kdK0eo5m', '4736495'), + (82, 1174, 'attending', '2022-01-15 22:13:46', '2025-12-17 19:47:31', 'kdK0eo5m', '4736496'), + (82, 1175, 'attending', '2022-01-22 22:00:33', '2025-12-17 19:47:32', 'kdK0eo5m', '4736497'), + (82, 1176, 'attending', '2022-02-05 22:44:21', '2025-12-17 19:47:32', 'kdK0eo5m', '4736498'), + (82, 1177, 'attending', '2022-02-12 22:52:46', '2025-12-17 19:47:32', 'kdK0eo5m', '4736499'), + (82, 1178, 'attending', '2022-01-29 22:36:48', '2025-12-17 19:47:32', 'kdK0eo5m', '4736500'), + (82, 1179, 'attending', '2022-02-19 22:34:36', '2025-12-17 19:47:32', 'kdK0eo5m', '4736501'), + (82, 1180, 'attending', '2022-02-26 23:55:14', '2025-12-17 19:47:33', 'kdK0eo5m', '4736502'), + (82, 1181, 'attending', '2022-03-06 00:02:02', '2025-12-17 19:47:33', 'kdK0eo5m', '4736503'), + (82, 1182, 'attending', '2022-03-12 21:50:57', '2025-12-17 19:47:33', 'kdK0eo5m', '4736504'), + (82, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdK0eo5m', '4746789'), + (82, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdK0eo5m', '4753929'), + (82, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdK0eo5m', '5038850'), + (82, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdK0eo5m', '5045826'), + (82, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdK0eo5m', '5132533'), + (82, 1272, 'attending', '2022-03-19 20:53:53', '2025-12-17 19:47:25', 'kdK0eo5m', '5186582'), + (82, 1273, 'attending', '2022-03-26 04:31:14', '2025-12-17 19:47:25', 'kdK0eo5m', '5186583'), + (82, 1274, 'attending', '2022-04-02 19:41:26', '2025-12-17 19:47:26', 'kdK0eo5m', '5186585'), + (82, 1281, 'not_attending', '2022-04-09 22:01:30', '2025-12-17 19:47:27', 'kdK0eo5m', '5190437'), + (82, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdK0eo5m', '5195095'), + (82, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdK0eo5m', '5215989'), + (82, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdK0eo5m', '5223686'), + (82, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'kdK0eo5m', '5227432'), + (82, 1346, 'not_attending', '2022-04-23 22:21:30', '2025-12-17 19:47:27', 'kdK0eo5m', '5247467'), + (82, 1362, 'attending', '2022-04-30 18:40:27', '2025-12-17 19:47:28', 'kdK0eo5m', '5260800'), + (82, 1374, 'attending', '2022-05-07 20:21:55', '2025-12-17 19:47:28', 'kdK0eo5m', '5269930'), + (82, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdK0eo5m', '5271448'), + (82, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'kdK0eo5m', '5271449'), + (82, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'kdK0eo5m', '5276469'), + (82, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdK0eo5m', '5278159'), + (82, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdK0eo5m', '5363695'), + (82, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdK0eo5m', '5365960'), + (82, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'kdK0eo5m', '5368973'), + (82, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdK0eo5m', '5378247'), + (82, 1431, 'attending', '2022-06-11 19:25:07', '2025-12-17 19:47:30', 'kdK0eo5m', '5389605'), + (82, 1442, 'not_attending', '2022-06-18 22:08:05', '2025-12-17 19:47:17', 'kdK0eo5m', '5397265'), + (82, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'kdK0eo5m', '5403967'), + (82, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdK0eo5m', '5404786'), + (82, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdK0eo5m', '5405203'), + (82, 1478, 'not_attending', '2022-06-23 17:45:38', '2025-12-17 19:47:19', 'kdK0eo5m', '5408794'), + (82, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'kdK0eo5m', '5411699'), + (82, 1482, 'not_attending', '2022-06-25 22:20:15', '2025-12-17 19:47:19', 'kdK0eo5m', '5412550'), + (82, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdK0eo5m', '5415046'), + (82, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdK0eo5m', '5422086'), + (82, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdK0eo5m', '5422406'), + (82, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdK0eo5m', '5424565'), + (82, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdK0eo5m', '5426882'), + (82, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'kdK0eo5m', '5427083'), + (82, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdK0eo5m', '5441125'), + (82, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdK0eo5m', '5441126'), + (82, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdK0eo5m', '5441128'), + (82, 1516, 'attending', '2022-08-20 19:12:34', '2025-12-17 19:47:23', 'kdK0eo5m', '5441129'), + (82, 1517, 'attending', '2022-08-06 01:33:01', '2025-12-17 19:47:23', 'kdK0eo5m', '5441130'), + (82, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdK0eo5m', '5441131'), + (82, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdK0eo5m', '5441132'), + (82, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'kdK0eo5m', '5446643'), + (82, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdK0eo5m', '5453325'), + (82, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdK0eo5m', '5454516'), + (82, 1544, 'attending', '2022-09-17 21:21:50', '2025-12-17 19:47:11', 'kdK0eo5m', '5454517'), + (82, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdK0eo5m', '5454605'), + (82, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdK0eo5m', '5455037'), + (82, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdK0eo5m', '5461278'), + (82, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdK0eo5m', '5469480'), + (82, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'kdK0eo5m', '5471073'), + (82, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdK0eo5m', '5474663'), + (82, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdK0eo5m', '5482022'), + (82, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'kdK0eo5m', '5482793'), + (82, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdK0eo5m', '5488912'), + (82, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdK0eo5m', '5492192'), + (82, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdK0eo5m', '5493139'), + (82, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdK0eo5m', '5493200'), + (82, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdK0eo5m', '5502188'), + (82, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdK0eo5m', '5505059'), + (82, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdK0eo5m', '5509055'), + (82, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdK0eo5m', '5512862'), + (82, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdK0eo5m', '5513985'), + (82, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdK0eo5m', '5519981'), + (82, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdK0eo5m', '5522550'), + (82, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdK0eo5m', '5534683'), + (82, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdK0eo5m', '5537735'), + (82, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdK0eo5m', '5540859'), + (82, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdK0eo5m', '5546619'), + (82, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'kdK0eo5m', '5555245'), + (82, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdK0eo5m', '5557747'), + (82, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdK0eo5m', '5560255'), + (82, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdK0eo5m', '5562906'), + (82, 1667, 'attending', '2022-09-24 21:44:40', '2025-12-17 19:47:11', 'kdK0eo5m', '5563221'), + (82, 1668, 'attending', '2022-10-01 20:58:15', '2025-12-17 19:47:12', 'kdK0eo5m', '5563222'), + (82, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdK0eo5m', '5600604'), + (82, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdK0eo5m', '5605544'), + (82, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'kdK0eo5m', '5606737'), + (82, 1719, 'attending', '2022-10-08 18:55:31', '2025-12-17 19:47:12', 'kdK0eo5m', '5630958'), + (82, 1720, 'attending', '2022-10-15 21:56:52', '2025-12-17 19:47:12', 'kdK0eo5m', '5630959'), + (82, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdK0eo5m', '5630960'), + (82, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdK0eo5m', '5630961'), + (82, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdK0eo5m', '5630962'), + (82, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdK0eo5m', '5630966'), + (82, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdK0eo5m', '5630967'), + (82, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdK0eo5m', '5630968'), + (82, 1727, 'attending', '2022-12-03 22:19:46', '2025-12-17 19:47:16', 'kdK0eo5m', '5630969'), + (82, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdK0eo5m', '5635406'), + (82, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdK0eo5m', '5638765'), + (82, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdK0eo5m', '5640097'), + (82, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdK0eo5m', '5640843'), + (82, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdK0eo5m', '5641521'), + (82, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdK0eo5m', '5642818'), + (82, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdK0eo5m', '5652395'), + (82, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdK0eo5m', '5670445'), + (82, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdK0eo5m', '5671637'), + (82, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdK0eo5m', '5672329'), + (82, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdK0eo5m', '5674057'), + (82, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdK0eo5m', '5674060'), + (82, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdK0eo5m', '5677461'), + (82, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdK0eo5m', '5698046'), + (82, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdK0eo5m', '5699760'), + (82, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdK0eo5m', '5741601'), + (82, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdK0eo5m', '5763458'), + (82, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdK0eo5m', '5774172'), + (82, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdK0eo5m', '5818247'), + (82, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdK0eo5m', '5819471'), + (82, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdK0eo5m', '5827739'), + (82, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdK0eo5m', '5844306'), + (82, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdK0eo5m', '5850159'), + (82, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdK0eo5m', '5858999'), + (82, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdK0eo5m', '5871984'), + (82, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdK0eo5m', '5876354'), + (82, 1864, 'attending', '2023-01-21 22:11:28', '2025-12-17 19:47:05', 'kdK0eo5m', '5879675'), + (82, 1865, 'attending', '2023-01-28 23:56:06', '2025-12-17 19:47:06', 'kdK0eo5m', '5879676'), + (82, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdK0eo5m', '5880939'), + (82, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdK0eo5m', '5880940'), + (82, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdK0eo5m', '5880942'), + (82, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdK0eo5m', '5880943'), + (82, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdK0eo5m', '5887890'), + (82, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdK0eo5m', '5888598'), + (82, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdK0eo5m', '5893260'), + (82, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdK0eo5m', '5899826'), + (82, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdK0eo5m', '5900199'), + (82, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdK0eo5m', '5900200'), + (82, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdK0eo5m', '5900202'), + (82, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdK0eo5m', '5900203'), + (82, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdK0eo5m', '5901108'), + (82, 1896, 'maybe', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdK0eo5m', '5901126'), + (82, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdK0eo5m', '5909655'), + (82, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdK0eo5m', '5910522'), + (82, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdK0eo5m', '5910526'), + (82, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdK0eo5m', '5910528'), + (82, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdK0eo5m', '5916219'), + (82, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdK0eo5m', '5936234'), + (82, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdK0eo5m', '5958351'), + (82, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdK0eo5m', '5959751'), + (82, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdK0eo5m', '5959755'), + (82, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdK0eo5m', '5960055'), + (82, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdK0eo5m', '5961684'), + (82, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdK0eo5m', '5962132'), + (82, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'kdK0eo5m', '5962133'), + (82, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdK0eo5m', '5962134'), + (82, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdK0eo5m', '5962317'), + (82, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdK0eo5m', '5962318'), + (82, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdK0eo5m', '5965933'), + (82, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdK0eo5m', '5967014'), + (82, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdK0eo5m', '5972815'), + (82, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdK0eo5m', '5974016'), + (82, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdK0eo5m', '5981515'), + (82, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdK0eo5m', '5993516'), + (82, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdK0eo5m', '5998939'), + (82, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdK0eo5m', '6028191'), + (82, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdK0eo5m', '6040066'), + (82, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdK0eo5m', '6042717'), + (82, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdK0eo5m', '6044838'), + (82, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdK0eo5m', '6044839'), + (82, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0eo5m', '6045684'), + (82, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdK0eo5m', '6050104'), + (82, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdK0eo5m', '6053195'), + (82, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdK0eo5m', '6053198'), + (82, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdK0eo5m', '6056085'), + (82, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdK0eo5m', '6056916'), + (82, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdK0eo5m', '6059290'), + (82, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdK0eo5m', '6060328'), + (82, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdK0eo5m', '6061037'), + (82, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdK0eo5m', '6061039'), + (82, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdK0eo5m', '6067245'), + (82, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdK0eo5m', '6068094'), + (82, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdK0eo5m', '6068252'), + (82, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdK0eo5m', '6068253'), + (82, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdK0eo5m', '6068254'), + (82, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdK0eo5m', '6068280'), + (82, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdK0eo5m', '6069093'), + (82, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdK0eo5m', '6072528'), + (82, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdK0eo5m', '6079840'), + (82, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdK0eo5m', '6083398'), + (82, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdK0eo5m', '6093504'), + (82, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdK0eo5m', '6097414'), + (82, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdK0eo5m', '6097442'), + (82, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdK0eo5m', '6097684'), + (82, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdK0eo5m', '6098762'), + (82, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdK0eo5m', '6101361'), + (82, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdK0eo5m', '6101362'), + (82, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'kdK0eo5m', '6103752'), + (82, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdK0eo5m', '6107314'), + (82, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdK0eo5m', '6120034'), + (82, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'kdK0eo5m', '6136733'), + (82, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdK0eo5m', '6137989'), + (82, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdK0eo5m', '6150864'), + (82, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdK0eo5m', '6155491'), + (82, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdK0eo5m', '6164417'), + (82, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdK0eo5m', '6166388'), + (82, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdK0eo5m', '6176439'), + (82, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdK0eo5m', '6182410'), + (82, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdK0eo5m', '6185812'), + (82, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdK0eo5m', '6187651'), + (82, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdK0eo5m', '6187963'), + (82, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdK0eo5m', '6187964'), + (82, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdK0eo5m', '6187966'), + (82, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdK0eo5m', '6187967'), + (82, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdK0eo5m', '6187969'), + (82, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdK0eo5m', '6334878'), + (82, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdK0eo5m', '6337236'), + (82, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdK0eo5m', '6337970'), + (82, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdK0eo5m', '6338308'), + (82, 2159, 'attending', '2023-07-22 21:40:54', '2025-12-17 19:46:53', 'kdK0eo5m', '6338355'), + (82, 2160, 'attending', '2023-07-29 21:28:25', '2025-12-17 19:46:54', 'kdK0eo5m', '6338358'), + (82, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'kdK0eo5m', '6340845'), + (82, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdK0eo5m', '6341710'), + (82, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdK0eo5m', '6342044'), + (82, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdK0eo5m', '6342298'), + (82, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdK0eo5m', '6343294'), + (82, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdK0eo5m', '6347034'), + (82, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdK0eo5m', '6347056'), + (82, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdK0eo5m', '6353830'), + (82, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdK0eo5m', '6353831'), + (82, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdK0eo5m', '6357867'), + (82, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdK0eo5m', '6358652'), + (82, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdK0eo5m', '6361709'), + (82, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdK0eo5m', '6361710'), + (82, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdK0eo5m', '6361711'), + (82, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdK0eo5m', '6361712'), + (82, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdK0eo5m', '6361713'), + (82, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdK0eo5m', '6382573'), + (82, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'kdK0eo5m', '6388604'), + (82, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdK0eo5m', '6394629'), + (82, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdK0eo5m', '6394631'), + (82, 2253, 'maybe', '2023-09-30 22:52:42', '2025-12-17 19:46:45', 'kdK0eo5m', '6401811'), + (82, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdK0eo5m', '6440863'), + (82, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdK0eo5m', '6445440'), + (82, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdK0eo5m', '6453951'), + (82, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdK0eo5m', '6461696'), + (82, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdK0eo5m', '6462129'), + (82, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdK0eo5m', '6463218'), + (82, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdK0eo5m', '6472181'), + (82, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdK0eo5m', '6482693'), + (82, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdK0eo5m', '6484200'), + (82, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdK0eo5m', '6484680'), + (82, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdK0eo5m', '6507741'), + (82, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdK0eo5m', '6514659'), + (82, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdK0eo5m', '6514660'), + (82, 2324, 'attending', '2023-12-09 23:34:55', '2025-12-17 19:46:49', 'kdK0eo5m', '6514662'), + (82, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdK0eo5m', '6519103'), + (82, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdK0eo5m', '6535681'), + (82, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdK0eo5m', '6584747'), + (82, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdK0eo5m', '6587097'), + (82, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdK0eo5m', '6609022'), + (82, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'kdK0eo5m', '6632757'), + (82, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdK0eo5m', '6644187'), + (82, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdK0eo5m', '6648951'), + (82, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdK0eo5m', '6648952'), + (82, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdK0eo5m', '6655401'), + (82, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdK0eo5m', '6661585'), + (82, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdK0eo5m', '6661588'), + (82, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdK0eo5m', '6661589'), + (82, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdK0eo5m', '6699906'), + (82, 2408, 'attending', '2024-01-27 23:01:12', '2025-12-17 19:46:40', 'kdK0eo5m', '6699907'), + (82, 2410, 'attending', '2024-02-10 21:57:56', '2025-12-17 19:46:41', 'kdK0eo5m', '6699911'), + (82, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdK0eo5m', '6699913'), + (82, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdK0eo5m', '6701109'), + (82, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdK0eo5m', '6705219'), + (82, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdK0eo5m', '6710153'), + (82, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdK0eo5m', '6711552'), + (82, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdK0eo5m', '6711553'), + (82, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdK0eo5m', '6722688'), + (82, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdK0eo5m', '6730620'), + (82, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'kdK0eo5m', '6730642'), + (82, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdK0eo5m', '6740364'), + (82, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdK0eo5m', '6743829'), + (82, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdK0eo5m', '7030380'), + (82, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'kdK0eo5m', '7033677'), + (82, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'kdK0eo5m', '7035415'), + (82, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdK0eo5m', '7044715'), + (82, 2484, 'maybe', '2024-03-01 20:30:40', '2025-12-17 19:46:43', 'kdK0eo5m', '7046836'), + (82, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdK0eo5m', '7050318'), + (82, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdK0eo5m', '7050319'), + (82, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdK0eo5m', '7050322'), + (82, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdK0eo5m', '7057804'), + (82, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'kdK0eo5m', '7059866'), + (82, 2505, 'attending', '2024-03-19 00:08:40', '2025-12-17 19:46:33', 'kdK0eo5m', '7069163'), + (82, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdK0eo5m', '7072824'), + (82, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdK0eo5m', '7074348'), + (82, 2509, 'maybe', '2024-03-28 23:08:25', '2025-12-17 19:46:33', 'kdK0eo5m', '7074349'), + (82, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdK0eo5m', '7074364'), + (82, 2534, 'attending', '2024-03-13 22:24:52', '2025-12-17 19:46:32', 'kdK0eo5m', '7076875'), + (82, 2538, 'attending', '2024-03-28 21:05:45', '2025-12-17 19:46:33', 'kdK0eo5m', '7085485'), + (82, 2539, 'attending', '2024-04-06 21:01:42', '2025-12-17 19:46:33', 'kdK0eo5m', '7085486'), + (82, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdK0eo5m', '7089267'), + (82, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdK0eo5m', '7098747'), + (82, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdK0eo5m', '7113468'), + (82, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdK0eo5m', '7114856'), + (82, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'kdK0eo5m', '7114951'), + (82, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdK0eo5m', '7114955'), + (82, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdK0eo5m', '7114956'), + (82, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdK0eo5m', '7114957'), + (82, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'kdK0eo5m', '7153615'), + (82, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdK0eo5m', '7159484'), + (82, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdK0eo5m', '7178446'), + (82, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdK0eo5m', '7220467'), + (82, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdK0eo5m', '7240354'), + (82, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdK0eo5m', '7251633'), + (82, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'kdK0eo5m', '7263048'), + (82, 2626, 'attending', '2024-05-18 21:59:51', '2025-12-17 19:46:35', 'kdK0eo5m', '7264723'), + (82, 2627, 'attending', '2024-05-25 22:21:38', '2025-12-17 19:46:35', 'kdK0eo5m', '7264724'), + (82, 2628, 'attending', '2024-06-01 21:21:57', '2025-12-17 19:46:36', 'kdK0eo5m', '7264725'), + (82, 2629, 'attending', '2024-06-08 20:51:31', '2025-12-17 19:46:28', 'kdK0eo5m', '7264726'), + (82, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'kdK0eo5m', '7302674'), + (82, 2667, 'attending', '2024-06-05 23:13:14', '2025-12-17 19:46:36', 'kdK0eo5m', '7307776'), + (82, 2678, 'attending', '2024-06-15 21:59:24', '2025-12-17 19:46:28', 'kdK0eo5m', '7319489'), + (82, 2679, 'attending', '2024-06-22 20:45:52', '2025-12-17 19:46:29', 'kdK0eo5m', '7319490'), + (82, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdK0eo5m', '7324073'), + (82, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdK0eo5m', '7324074'), + (82, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdK0eo5m', '7324075'), + (82, 2691, 'not_attending', '2024-07-19 09:54:52', '2025-12-17 19:46:30', 'kdK0eo5m', '7324076'), + (82, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdK0eo5m', '7324078'), + (82, 2694, 'not_attending', '2024-08-10 18:03:26', '2025-12-17 19:46:31', 'kdK0eo5m', '7324079'), + (82, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdK0eo5m', '7324082'), + (82, 2700, 'maybe', '2024-06-14 19:38:05', '2025-12-17 19:46:28', 'kdK0eo5m', '7324388'), + (82, 2706, 'attending', '2024-06-19 22:12:39', '2025-12-17 19:46:28', 'kdK0eo5m', '7324947'), + (82, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdK0eo5m', '7331457'), + (82, 2723, 'attending', '2024-06-21 22:08:21', '2025-12-17 19:46:29', 'kdK0eo5m', '7332389'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (82, 2724, 'attending', '2024-06-26 22:11:57', '2025-12-17 19:46:29', 'kdK0eo5m', '7332562'), + (82, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'kdK0eo5m', '7356752'), + (82, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdK0eo5m', '7363643'), + (82, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdK0eo5m', '7368606'), + (82, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdK0eo5m', '7397462'), + (82, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdK0eo5m', '7424275'), + (82, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'kdK0eo5m', '7424276'), + (82, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdK0eo5m', '7432751'), + (82, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdK0eo5m', '7432752'), + (82, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdK0eo5m', '7432753'), + (82, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdK0eo5m', '7432754'), + (82, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdK0eo5m', '7432755'), + (82, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdK0eo5m', '7432756'), + (82, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdK0eo5m', '7432758'), + (82, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdK0eo5m', '7432759'), + (82, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdK0eo5m', '7433834'), + (82, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'kdK0eo5m', '7470197'), + (82, 2865, 'attending', '2024-11-01 21:31:35', '2025-12-17 19:46:26', 'kdK0eo5m', '7471200'), + (82, 2870, 'attending', '2024-10-05 21:18:03', '2025-12-17 19:46:26', 'kdK0eo5m', '7475068'), + (82, 2886, 'maybe', '2024-11-08 21:59:18', '2025-12-17 19:46:26', 'kdK0eo5m', '7654498'), + (82, 2898, 'maybe', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdK0eo5m', '7685613'), + (82, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdK0eo5m', '7688194'), + (82, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdK0eo5m', '7688196'), + (82, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdK0eo5m', '7688289'), + (82, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdK0eo5m', '7692763'), + (82, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdK0eo5m', '7697552'), + (82, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdK0eo5m', '7699878'), + (82, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdK0eo5m', '7704043'), + (82, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdK0eo5m', '7712467'), + (82, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdK0eo5m', '7713585'), + (82, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdK0eo5m', '7713586'), + (82, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdK0eo5m', '7738518'), + (82, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'kdK0eo5m', '7750632'), + (82, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdK0eo5m', '7750636'), + (82, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdK0eo5m', '7796540'), + (82, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdK0eo5m', '7796541'), + (82, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdK0eo5m', '7796542'), + (82, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdK0eo5m', '7825913'), + (82, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdK0eo5m', '7826209'), + (82, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdK0eo5m', '7834742'), + (82, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'kdK0eo5m', '7842108'), + (82, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdK0eo5m', '7842902'), + (82, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdK0eo5m', '7842903'), + (82, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdK0eo5m', '7842904'), + (82, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdK0eo5m', '7842905'), + (82, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdK0eo5m', '7855719'), + (82, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdK0eo5m', '7860683'), + (82, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdK0eo5m', '7860684'), + (82, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdK0eo5m', '7866095'), + (82, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdK0eo5m', '7869170'), + (82, 3014, 'attending', '2025-04-05 20:55:03', '2025-12-17 19:46:20', 'kdK0eo5m', '7869185'), + (82, 3015, 'attending', '2025-04-25 22:27:12', '2025-12-17 19:46:20', 'kdK0eo5m', '7869186'), + (82, 3016, 'attending', '2025-04-19 19:31:57', '2025-12-17 19:46:20', 'kdK0eo5m', '7869187'), + (82, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdK0eo5m', '7869188'), + (82, 3018, 'attending', '2025-04-12 20:00:15', '2025-12-17 19:46:20', 'kdK0eo5m', '7869189'), + (82, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdK0eo5m', '7869201'), + (82, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdK0eo5m', '7877465'), + (82, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'kdK0eo5m', '7878570'), + (82, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdK0eo5m', '7888250'), + (82, 3088, 'attending', '2025-06-12 17:39:10', '2025-12-17 19:46:15', 'kdK0eo5m', '7904777'), + (82, 3094, 'attending', '2025-05-10 20:57:06', '2025-12-17 19:46:21', 'kdK0eo5m', '8342292'), + (82, 3095, 'attending', '2025-04-30 02:17:38', '2025-12-17 19:46:20', 'kdK0eo5m', '8342293'), + (82, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdK0eo5m', '8349164'), + (82, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdK0eo5m', '8349545'), + (82, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'kdK0eo5m', '8353584'), + (82, 3126, 'attending', '2025-05-14 18:02:01', '2025-12-17 19:46:21', 'kdK0eo5m', '8365614'), + (82, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdK0eo5m', '8368028'), + (82, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdK0eo5m', '8368029'), + (82, 3133, 'attending', '2025-05-30 15:52:07', '2025-12-17 19:46:14', 'kdK0eo5m', '8368030'), + (82, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdK0eo5m', '8388462'), + (82, 3150, 'maybe', '2025-06-21 21:57:30', '2025-12-17 19:46:15', 'kdK0eo5m', '8393174'), + (82, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdK0eo5m', '8400273'), + (82, 3154, 'attending', '2025-06-28 00:40:53', '2025-12-17 19:46:15', 'kdK0eo5m', '8400274'), + (82, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdK0eo5m', '8400275'), + (82, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'kdK0eo5m', '8400276'), + (82, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdK0eo5m', '8404977'), + (82, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdK0eo5m', '8430783'), + (82, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdK0eo5m', '8430784'), + (82, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdK0eo5m', '8430799'), + (82, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdK0eo5m', '8430800'), + (82, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdK0eo5m', '8430801'), + (82, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdK0eo5m', '8438709'), + (82, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdK0eo5m', '8457738'), + (82, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdK0eo5m', '8459566'), + (82, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdK0eo5m', '8459567'), + (82, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdK0eo5m', '8461032'), + (82, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdK0eo5m', '8477877'), + (82, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdK0eo5m', '8485688'), + (82, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdK0eo5m', '8490587'), + (82, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdK0eo5m', '8493552'), + (82, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdK0eo5m', '8493553'), + (82, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdK0eo5m', '8493554'), + (82, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdK0eo5m', '8493555'), + (82, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdK0eo5m', '8493556'), + (82, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdK0eo5m', '8493557'), + (82, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdK0eo5m', '8493558'), + (82, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdK0eo5m', '8493559'), + (82, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdK0eo5m', '8493560'), + (82, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdK0eo5m', '8493561'), + (82, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdK0eo5m', '8493572'), + (82, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdK0eo5m', '8540725'), + (82, 3302, 'attending', '2025-11-13 21:56:20', '2025-12-17 19:46:14', 'kdK0eo5m', '8550022'), + (82, 3306, 'attending', '2025-12-13 01:15:28', '2025-12-17 19:46:11', 'kdK0eo5m', '8550026'), + (82, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdK0eo5m', '8555421'), + (167, 196, 'not_attending', '2020-08-15 23:34:31', '2025-12-17 19:47:56', '1ArKKVX4', '3087265'), + (167, 197, 'attending', '2020-08-15 23:36:21', '2025-12-17 19:47:56', '1ArKKVX4', '3087266'), + (167, 198, 'not_attending', '2020-08-21 01:53:11', '2025-12-17 19:47:56', '1ArKKVX4', '3087267'), + (167, 199, 'attending', '2020-08-27 21:11:21', '2025-12-17 19:47:56', '1ArKKVX4', '3087268'), + (167, 219, 'attending', '2020-08-13 23:18:53', '2025-12-17 19:47:56', '1ArKKVX4', '3129263'), + (167, 223, 'attending', '2020-09-04 22:06:32', '2025-12-17 19:47:56', '1ArKKVX4', '3129980'), + (167, 293, 'not_attending', '2020-08-14 20:29:51', '2025-12-17 19:47:56', '1ArKKVX4', '3172832'), + (167, 294, 'not_attending', '2020-08-21 01:57:01', '2025-12-17 19:47:56', '1ArKKVX4', '3172833'), + (167, 295, 'attending', '2020-08-22 23:47:01', '2025-12-17 19:47:56', '1ArKKVX4', '3172834'), + (167, 304, 'attending', '2020-09-01 14:05:11', '2025-12-17 19:47:56', '1ArKKVX4', '3178916'), + (167, 306, 'not_attending', '2020-08-21 16:08:35', '2025-12-17 19:47:56', '1ArKKVX4', '3179777'), + (167, 308, 'attending', '2020-08-27 21:11:57', '2025-12-17 19:47:56', '1ArKKVX4', '3183341'), + (167, 311, 'not_attending', '2020-09-19 23:01:00', '2025-12-17 19:47:56', '1ArKKVX4', '3186057'), + (167, 312, 'not_attending', '2020-09-10 21:55:41', '2025-12-17 19:47:56', '1ArKKVX4', '3187795'), + (167, 315, 'maybe', '2020-09-07 14:30:51', '2025-12-17 19:47:56', '1ArKKVX4', '3189085'), + (167, 317, 'not_attending', '2020-08-27 21:10:41', '2025-12-17 19:47:56', '1ArKKVX4', '3191735'), + (167, 330, 'not_attending', '2020-09-05 14:04:53', '2025-12-17 19:47:56', '1ArKKVX4', '3197322'), + (167, 335, 'attending', '2020-09-02 13:47:45', '2025-12-17 19:47:56', '1ArKKVX4', '3200209'), + (167, 339, 'attending', '2020-09-07 14:30:41', '2025-12-17 19:47:56', '1ArKKVX4', '3204469'), + (167, 340, 'not_attending', '2020-09-18 20:52:32', '2025-12-17 19:47:56', '1ArKKVX4', '3204470'), + (167, 341, 'not_attending', '2020-09-25 14:48:20', '2025-12-17 19:47:52', '1ArKKVX4', '3204471'), + (167, 342, 'not_attending', '2020-10-02 22:12:16', '2025-12-17 19:47:52', '1ArKKVX4', '3204472'), + (167, 344, 'attending', '2020-10-05 21:23:18', '2025-12-17 19:47:53', '1ArKKVX4', '3206906'), + (167, 345, 'not_attending', '2020-09-13 03:01:42', '2025-12-17 19:47:56', '1ArKKVX4', '3207423'), + (167, 348, 'attending', '2020-09-25 04:30:56', '2025-12-17 19:47:52', '1ArKKVX4', '3209159'), + (167, 349, 'not_attending', '2020-09-13 21:36:06', '2025-12-17 19:47:56', '1ArKKVX4', '3209194'), + (167, 354, 'not_attending', '2020-09-19 23:06:32', '2025-12-17 19:47:56', '1ArKKVX4', '3212570'), + (167, 362, 'attending', '2020-09-26 21:27:09', '2025-12-17 19:47:52', '1ArKKVX4', '3214207'), + (167, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '1ArKKVX4', '3217037'), + (167, 365, 'not_attending', '2020-09-24 15:45:59', '2025-12-17 19:47:52', '1ArKKVX4', '3218510'), + (167, 375, 'not_attending', '2020-10-08 22:16:32', '2025-12-17 19:47:52', '1ArKKVX4', '3222825'), + (167, 381, 'attending', '2020-09-26 18:52:26', '2025-12-17 19:47:52', '1ArKKVX4', '3226871'), + (167, 382, 'attending', '2020-09-27 22:14:14', '2025-12-17 19:47:52', '1ArKKVX4', '3226873'), + (167, 385, 'attending', '2020-09-29 13:24:41', '2025-12-17 19:47:52', '1ArKKVX4', '3228698'), + (167, 386, 'attending', '2020-09-29 13:24:43', '2025-12-17 19:47:52', '1ArKKVX4', '3228699'), + (167, 387, 'attending', '2020-10-16 01:15:41', '2025-12-17 19:47:52', '1ArKKVX4', '3228700'), + (167, 388, 'not_attending', '2020-10-16 01:15:46', '2025-12-17 19:47:52', '1ArKKVX4', '3228701'), + (167, 390, 'attending', '2020-10-01 14:59:04', '2025-12-17 19:47:52', '1ArKKVX4', '3231510'), + (167, 414, 'attending', '2020-10-18 18:35:39', '2025-12-17 19:47:52', '1ArKKVX4', '3237277'), + (167, 416, 'attending', '2020-10-09 18:09:41', '2025-12-17 19:47:52', '1ArKKVX4', '3238073'), + (167, 417, 'not_attending', '2020-10-12 14:17:31', '2025-12-17 19:47:52', '1ArKKVX4', '3238779'), + (167, 418, 'attending', '2020-10-14 13:43:10', '2025-12-17 19:47:52', '1ArKKVX4', '3241728'), + (167, 420, 'attending', '2020-10-12 14:17:47', '2025-12-17 19:47:52', '1ArKKVX4', '3245293'), + (167, 421, 'attending', '2020-10-12 14:17:48', '2025-12-17 19:47:52', '1ArKKVX4', '3245294'), + (167, 422, 'attending', '2020-10-12 14:17:50', '2025-12-17 19:47:53', '1ArKKVX4', '3245295'), + (167, 423, 'attending', '2020-10-12 14:17:53', '2025-12-17 19:47:53', '1ArKKVX4', '3245296'), + (167, 424, 'maybe', '2020-10-18 17:22:24', '2025-12-17 19:47:52', '1ArKKVX4', '3245751'), + (167, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '1ArKKVX4', '3250232'), + (167, 428, 'not_attending', '2020-10-22 21:32:29', '2025-12-17 19:47:53', '1ArKKVX4', '3250332'), + (167, 430, 'not_attending', '2020-10-18 03:12:41', '2025-12-17 19:47:52', '1ArKKVX4', '3253094'), + (167, 431, 'not_attending', '2020-10-27 22:50:09', '2025-12-17 19:47:53', '1ArKKVX4', '3253225'), + (167, 435, 'attending', '2020-10-18 03:13:14', '2025-12-17 19:47:52', '1ArKKVX4', '3254790'), + (167, 438, 'not_attending', '2020-10-18 15:21:23', '2025-12-17 19:47:53', '1ArKKVX4', '3256163'), + (167, 439, 'not_attending', '2020-10-18 18:35:52', '2025-12-17 19:47:53', '1ArKKVX4', '3256164'), + (167, 440, 'attending', '2020-10-18 17:16:31', '2025-12-17 19:47:53', '1ArKKVX4', '3256168'), + (167, 441, 'attending', '2020-11-08 04:20:45', '2025-12-17 19:47:54', '1ArKKVX4', '3256169'), + (167, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', '1ArKKVX4', '3263578'), + (167, 444, 'maybe', '2020-10-24 13:16:53', '2025-12-17 19:47:53', '1ArKKVX4', '3263745'), + (167, 445, 'attending', '2020-11-08 04:21:23', '2025-12-17 19:47:54', '1ArKKVX4', '3266138'), + (167, 448, 'attending', '2020-10-30 23:02:50', '2025-12-17 19:47:53', '1ArKKVX4', '3271831'), + (167, 449, 'not_attending', '2020-11-08 04:21:04', '2025-12-17 19:47:53', '1ArKKVX4', '3272055'), + (167, 452, 'not_attending', '2020-11-26 22:47:07', '2025-12-17 19:47:54', '1ArKKVX4', '3272981'), + (167, 456, 'maybe', '2020-11-08 19:49:59', '2025-12-17 19:47:54', '1ArKKVX4', '3276428'), + (167, 458, 'not_attending', '2020-11-10 06:02:23', '2025-12-17 19:47:53', '1ArKKVX4', '3279233'), + (167, 459, 'not_attending', '2020-11-15 00:48:10', '2025-12-17 19:47:54', '1ArKKVX4', '3281467'), + (167, 461, 'not_attending', '2020-11-09 15:28:46', '2025-12-17 19:47:53', '1ArKKVX4', '3281469'), + (167, 462, 'attending', '2020-11-08 16:00:17', '2025-12-17 19:47:53', '1ArKKVX4', '3281470'), + (167, 466, 'not_attending', '2020-11-24 00:45:22', '2025-12-17 19:47:54', '1ArKKVX4', '3281829'), + (167, 467, 'not_attending', '2020-11-16 15:38:02', '2025-12-17 19:47:54', '1ArKKVX4', '3282756'), + (167, 468, 'not_attending', '2020-11-21 23:10:30', '2025-12-17 19:47:54', '1ArKKVX4', '3285413'), + (167, 469, 'not_attending', '2020-11-28 23:16:53', '2025-12-17 19:47:54', '1ArKKVX4', '3285414'), + (167, 475, 'maybe', '2020-11-22 15:47:08', '2025-12-17 19:47:54', '1ArKKVX4', '3286760'), + (167, 478, 'maybe', '2020-11-17 15:12:14', '2025-12-17 19:47:54', '1ArKKVX4', '3290899'), + (167, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '1ArKKVX4', '3297764'), + (167, 485, 'attending', '2020-11-26 22:46:53', '2025-12-17 19:47:54', '1ArKKVX4', '3299698'), + (167, 486, 'maybe', '2020-11-23 14:26:17', '2025-12-17 19:47:54', '1ArKKVX4', '3300281'), + (167, 488, 'not_attending', '2020-11-26 22:47:22', '2025-12-17 19:47:54', '1ArKKVX4', '3312757'), + (167, 489, 'not_attending', '2020-11-27 23:39:07', '2025-12-17 19:47:54', '1ArKKVX4', '3313022'), + (167, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '1ArKKVX4', '3313856'), + (167, 496, 'maybe', '2020-12-07 03:43:39', '2025-12-17 19:47:54', '1ArKKVX4', '3314269'), + (167, 499, 'maybe', '2020-12-08 15:54:14', '2025-12-17 19:47:55', '1ArKKVX4', '3314909'), + (167, 500, 'maybe', '2020-12-15 14:06:40', '2025-12-17 19:47:55', '1ArKKVX4', '3314964'), + (167, 501, 'maybe', '2020-12-07 15:44:54', '2025-12-17 19:47:54', '1ArKKVX4', '3317834'), + (167, 502, 'attending', '2020-12-07 03:43:33', '2025-12-17 19:47:55', '1ArKKVX4', '3323365'), + (167, 506, 'maybe', '2020-12-13 00:07:14', '2025-12-17 19:47:55', '1ArKKVX4', '3323375'), + (167, 513, 'attending', '2020-12-14 15:51:17', '2025-12-17 19:47:55', '1ArKKVX4', '3329383'), + (167, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '1ArKKVX4', '3351539'), + (167, 993, 'attending', '2021-09-24 14:50:00', '2025-12-17 19:47:34', '1ArKKVX4', '4420741'), + (167, 994, 'attending', '2021-10-01 15:42:58', '2025-12-17 19:47:34', '1ArKKVX4', '4420742'), + (167, 995, 'attending', '2021-10-01 15:42:56', '2025-12-17 19:47:34', '1ArKKVX4', '4420744'), + (167, 996, 'not_attending', '2021-10-16 16:49:48', '2025-12-17 19:47:35', '1ArKKVX4', '4420747'), + (167, 997, 'not_attending', '2021-10-22 10:44:05', '2025-12-17 19:47:35', '1ArKKVX4', '4420748'), + (167, 1066, 'attending', '2021-09-25 19:09:17', '2025-12-17 19:47:34', '1ArKKVX4', '4506039'), + (167, 1068, 'maybe', '2021-09-26 01:43:13', '2025-12-17 19:47:34', '1ArKKVX4', '4511471'), + (167, 1069, 'attending', '2021-09-24 16:34:05', '2025-12-17 19:47:34', '1ArKKVX4', '4512090'), + (167, 1070, 'maybe', '2021-10-01 00:04:20', '2025-12-17 19:47:34', '1ArKKVX4', '4512562'), + (167, 1072, 'maybe', '2021-10-01 15:42:52', '2025-12-17 19:47:34', '1ArKKVX4', '4516287'), + (167, 1074, 'attending', '2021-09-30 00:19:34', '2025-12-17 19:47:34', '1ArKKVX4', '4528953'), + (167, 1075, 'not_attending', '2021-10-09 00:20:53', '2025-12-17 19:47:34', '1ArKKVX4', '4536351'), + (167, 1077, 'maybe', '2021-10-11 19:28:27', '2025-12-17 19:47:34', '1ArKKVX4', '4540903'), + (167, 1078, 'maybe', '2021-10-05 19:39:34', '2025-12-17 19:47:34', '1ArKKVX4', '4541281'), + (167, 1082, 'maybe', '2021-10-13 16:55:49', '2025-12-17 19:47:35', '1ArKKVX4', '4566762'), + (167, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '1ArKKVX4', '4568602'), + (167, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '1ArKKVX4', '4572153'), + (167, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '1ArKKVX4', '4585962'), + (167, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '1ArKKVX4', '4596356'), + (167, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '1ArKKVX4', '4598860'), + (167, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '1ArKKVX4', '4598861'), + (167, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '1ArKKVX4', '4602797'), + (167, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '1ArKKVX4', '4637896'), + (167, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '1ArKKVX4', '4642994'), + (167, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '1ArKKVX4', '4642995'), + (167, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '1ArKKVX4', '4642996'), + (167, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '1ArKKVX4', '4642997'), + (167, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '1ArKKVX4', '4645687'), + (167, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '1ArKKVX4', '4645698'), + (167, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '1ArKKVX4', '4645704'), + (167, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '1ArKKVX4', '4645705'), + (167, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '1ArKKVX4', '4668385'), + (167, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '1ArKKVX4', '4694407'), + (167, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '1ArKKVX4', '4736497'), + (167, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '1ArKKVX4', '4736499'), + (167, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '1ArKKVX4', '4736500'), + (167, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '1ArKKVX4', '4736503'), + (167, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '1ArKKVX4', '4736504'), + (167, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '1ArKKVX4', '4746789'), + (167, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '1ArKKVX4', '4753929'), + (167, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '1ArKKVX4', '5038850'), + (167, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '1ArKKVX4', '5045826'), + (167, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '1ArKKVX4', '5132533'), + (167, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '1ArKKVX4', '5186582'), + (167, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '1ArKKVX4', '5186583'), + (167, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '1ArKKVX4', '5186585'), + (167, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '1ArKKVX4', '5190437'), + (167, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '1ArKKVX4', '5195095'), + (167, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '1ArKKVX4', '5215989'), + (167, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '1ArKKVX4', '5223686'), + (167, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '1ArKKVX4', '5247467'), + (167, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '1ArKKVX4', '5260800'), + (167, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '1ArKKVX4', '5269930'), + (167, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '1ArKKVX4', '5271448'), + (167, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '1ArKKVX4', '5271449'), + (167, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '1ArKKVX4', '5278159'), + (167, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '1ArKKVX4', '5363695'), + (167, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '1ArKKVX4', '5365960'), + (167, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '1ArKKVX4', '5378247'), + (167, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '1ArKKVX4', '5389605'), + (167, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '1ArKKVX4', '5397265'), + (167, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '1ArKKVX4', '5404786'), + (167, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '1ArKKVX4', '5405203'), + (167, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '1ArKKVX4', '5412550'), + (167, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '1ArKKVX4', '5415046'), + (167, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '1ArKKVX4', '5422086'), + (167, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '1ArKKVX4', '5422406'), + (167, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '1ArKKVX4', '5424565'), + (167, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '1ArKKVX4', '5426882'), + (167, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '1ArKKVX4', '5441125'), + (167, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '1ArKKVX4', '5441126'), + (167, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '1ArKKVX4', '5441128'), + (167, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '1ArKKVX4', '5441131'), + (167, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '1ArKKVX4', '5441132'), + (167, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '1ArKKVX4', '5453325'), + (167, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '1ArKKVX4', '5454516'), + (167, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '1ArKKVX4', '5454605'), + (167, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '1ArKKVX4', '5455037'), + (167, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '1ArKKVX4', '5461278'), + (167, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '1ArKKVX4', '5469480'), + (167, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '1ArKKVX4', '5474663'), + (167, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '1ArKKVX4', '5482022'), + (167, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '1ArKKVX4', '5488912'), + (167, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '1ArKKVX4', '5492192'), + (167, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '1ArKKVX4', '5493139'), + (167, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '1ArKKVX4', '5493200'), + (167, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '1ArKKVX4', '5502188'), + (167, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '1ArKKVX4', '5505059'), + (167, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '1ArKKVX4', '5509055'), + (167, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '1ArKKVX4', '5512862'), + (167, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '1ArKKVX4', '5513985'), + (167, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '1ArKKVX4', '5519981'), + (167, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '1ArKKVX4', '5522550'), + (167, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '1ArKKVX4', '5534683'), + (167, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '1ArKKVX4', '5537735'), + (167, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '1ArKKVX4', '5540859'), + (167, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '1ArKKVX4', '5546619'), + (167, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '1ArKKVX4', '5557747'), + (167, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '1ArKKVX4', '5560255'), + (167, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '1ArKKVX4', '5562906'), + (167, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '1ArKKVX4', '5600604'), + (167, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '1ArKKVX4', '5605544'), + (167, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '1ArKKVX4', '5630960'), + (167, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '1ArKKVX4', '5630961'), + (167, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '1ArKKVX4', '5630962'), + (167, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '1ArKKVX4', '5630966'), + (167, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '1ArKKVX4', '5630967'), + (167, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '1ArKKVX4', '5630968'), + (167, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '1ArKKVX4', '5635406'), + (167, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '1ArKKVX4', '5638765'), + (167, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '1ArKKVX4', '5640097'), + (167, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '1ArKKVX4', '5640843'), + (167, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '1ArKKVX4', '5641521'), + (167, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '1ArKKVX4', '5642818'), + (167, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '1ArKKVX4', '5652395'), + (167, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '1ArKKVX4', '5670445'), + (167, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '1ArKKVX4', '5671637'), + (167, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '1ArKKVX4', '5672329'), + (167, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '1ArKKVX4', '5674057'), + (167, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '1ArKKVX4', '5674060'), + (167, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '1ArKKVX4', '5677461'), + (167, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '1ArKKVX4', '5698046'), + (167, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '1ArKKVX4', '5699760'), + (167, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '1ArKKVX4', '5741601'), + (167, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '1ArKKVX4', '5763458'), + (167, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '1ArKKVX4', '5774172'), + (167, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '1ArKKVX4', '5818247'), + (167, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '1ArKKVX4', '5819471'), + (167, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '1ArKKVX4', '5827739'), + (167, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '1ArKKVX4', '5844306'), + (167, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '1ArKKVX4', '5850159'), + (167, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '1ArKKVX4', '5858999'), + (167, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '1ArKKVX4', '5871984'), + (167, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '1ArKKVX4', '5876354'), + (167, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '1ArKKVX4', '5880939'), + (167, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '1ArKKVX4', '5880940'), + (167, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '1ArKKVX4', '5880942'), + (167, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '1ArKKVX4', '5880943'), + (167, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '1ArKKVX4', '5887890'), + (167, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '1ArKKVX4', '5888598'), + (167, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '1ArKKVX4', '5893260'), + (167, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '1ArKKVX4', '5899826'), + (167, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '1ArKKVX4', '5900199'), + (167, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '1ArKKVX4', '5900200'), + (167, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '1ArKKVX4', '5900202'), + (167, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '1ArKKVX4', '5900203'), + (167, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '1ArKKVX4', '5901108'), + (167, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '1ArKKVX4', '5901126'), + (167, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '1ArKKVX4', '5901606'), + (167, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '1ArKKVX4', '5909655'), + (167, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '1ArKKVX4', '5910522'), + (167, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '1ArKKVX4', '5910526'), + (167, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '1ArKKVX4', '5910528'), + (167, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '1ArKKVX4', '5916219'), + (167, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '1ArKKVX4', '5936234'), + (167, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '1ArKKVX4', '5958351'), + (167, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '1ArKKVX4', '5959751'), + (167, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '1ArKKVX4', '5959755'), + (167, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '1ArKKVX4', '5960055'), + (167, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '1ArKKVX4', '5961684'), + (167, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '1ArKKVX4', '5962132'), + (167, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '1ArKKVX4', '5962133'), + (167, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '1ArKKVX4', '5962134'), + (167, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '1ArKKVX4', '5962317'), + (167, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '1ArKKVX4', '5962318'), + (167, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '1ArKKVX4', '5965933'), + (167, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '1ArKKVX4', '5967014'), + (167, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '1ArKKVX4', '5972815'), + (167, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '1ArKKVX4', '5974016'), + (167, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '1ArKKVX4', '5981515'), + (167, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '1ArKKVX4', '5993516'), + (167, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '1ArKKVX4', '5998939'), + (167, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '1ArKKVX4', '6028191'), + (167, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '1ArKKVX4', '6040066'), + (167, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '1ArKKVX4', '6042717'), + (167, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '1ArKKVX4', '6044838'), + (167, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '1ArKKVX4', '6044839'), + (167, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArKKVX4', '6045684'), + (167, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '1ArKKVX4', '6050104'), + (167, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '1ArKKVX4', '6053195'), + (167, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '1ArKKVX4', '6053198'), + (167, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '1ArKKVX4', '6056085'), + (167, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '1ArKKVX4', '6056916'), + (167, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '1ArKKVX4', '6059290'), + (167, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '1ArKKVX4', '6060328'), + (167, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '1ArKKVX4', '6061037'), + (167, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '1ArKKVX4', '6061039'), + (167, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '1ArKKVX4', '6067245'), + (167, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '1ArKKVX4', '6068094'), + (167, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '1ArKKVX4', '6068252'), + (167, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '1ArKKVX4', '6068253'), + (167, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '1ArKKVX4', '6068254'), + (167, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '1ArKKVX4', '6068280'), + (167, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '1ArKKVX4', '6069093'), + (167, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '1ArKKVX4', '6072528'), + (167, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '1ArKKVX4', '6079840'), + (167, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '1ArKKVX4', '6083398'), + (167, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '1ArKKVX4', '6093504'), + (167, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '1ArKKVX4', '6097414'), + (167, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '1ArKKVX4', '6097442'), + (167, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '1ArKKVX4', '6097684'), + (167, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '1ArKKVX4', '6098762'), + (167, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '1ArKKVX4', '6101361'), + (167, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '1ArKKVX4', '6101362'), + (167, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '1ArKKVX4', '6107314'), + (167, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '1ArKKVX4', '6120034'), + (167, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '1ArKKVX4', '6136733'), + (167, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '1ArKKVX4', '6137989'), + (167, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '1ArKKVX4', '6150864'), + (167, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '1ArKKVX4', '6155491'), + (167, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '1ArKKVX4', '6164417'), + (167, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '1ArKKVX4', '6166388'), + (167, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '1ArKKVX4', '6176439'), + (167, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '1ArKKVX4', '6182410'), + (167, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '1ArKKVX4', '6185812'), + (167, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '1ArKKVX4', '6187651'), + (167, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '1ArKKVX4', '6187963'), + (167, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '1ArKKVX4', '6187964'), + (167, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '1ArKKVX4', '6187966'), + (167, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '1ArKKVX4', '6187967'), + (167, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '1ArKKVX4', '6187969'), + (167, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '1ArKKVX4', '6334878'), + (167, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '1ArKKVX4', '6337236'), + (167, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '1ArKKVX4', '6337970'), + (167, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '1ArKKVX4', '6338308'), + (167, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '1ArKKVX4', '6341710'), + (167, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '1ArKKVX4', '6342044'), + (167, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '1ArKKVX4', '6342298'), + (167, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '1ArKKVX4', '6343294'), + (167, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '1ArKKVX4', '6347034'), + (167, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '1ArKKVX4', '6347056'), + (167, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '1ArKKVX4', '6353830'), + (167, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '1ArKKVX4', '6353831'), + (167, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '1ArKKVX4', '6357867'), + (167, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '1ArKKVX4', '6358652'), + (167, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '1ArKKVX4', '6361709'), + (167, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '1ArKKVX4', '6361710'), + (167, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '1ArKKVX4', '6361711'), + (167, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '1ArKKVX4', '6361712'), + (167, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '1ArKKVX4', '6361713'), + (167, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '1ArKKVX4', '6382573'), + (167, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '1ArKKVX4', '6388604'), + (167, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '1ArKKVX4', '6394629'), + (167, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '1ArKKVX4', '6394631'), + (167, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '1ArKKVX4', '6440863'), + (167, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '1ArKKVX4', '6445440'), + (167, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '1ArKKVX4', '6453951'), + (167, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '1ArKKVX4', '6461696'), + (167, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '1ArKKVX4', '6462129'), + (167, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '1ArKKVX4', '6463218'), + (167, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '1ArKKVX4', '6472181'), + (167, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '1ArKKVX4', '6482693'), + (167, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '1ArKKVX4', '6484200'), + (167, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '1ArKKVX4', '6484680'), + (167, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '1ArKKVX4', '6507741'), + (167, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '1ArKKVX4', '6514659'), + (167, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '1ArKKVX4', '6514660'), + (167, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '1ArKKVX4', '6519103'), + (167, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '1ArKKVX4', '6535681'), + (167, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '1ArKKVX4', '6584747'), + (167, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '1ArKKVX4', '6587097'), + (167, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '1ArKKVX4', '6609022'), + (167, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '1ArKKVX4', '6632757'), + (167, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '1ArKKVX4', '6644187'), + (167, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '1ArKKVX4', '6648951'), + (167, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '1ArKKVX4', '6648952'), + (167, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '1ArKKVX4', '6655401'), + (167, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '1ArKKVX4', '6661585'), + (167, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '1ArKKVX4', '6661588'), + (167, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '1ArKKVX4', '6661589'), + (167, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '1ArKKVX4', '6699906'), + (167, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '1ArKKVX4', '6699913'), + (167, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '1ArKKVX4', '6701109'), + (167, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '1ArKKVX4', '6705219'), + (167, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '1ArKKVX4', '6710153'), + (167, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '1ArKKVX4', '6711552'), + (167, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '1ArKKVX4', '6711553'), + (167, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '1ArKKVX4', '6722688'), + (167, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '1ArKKVX4', '6730620'), + (167, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '1ArKKVX4', '6740364'), + (167, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '1ArKKVX4', '6743829'), + (167, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '1ArKKVX4', '7030380'), + (167, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '1ArKKVX4', '7033677'), + (167, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '1ArKKVX4', '7044715'), + (167, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '1ArKKVX4', '7050318'), + (167, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '1ArKKVX4', '7050319'), + (167, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '1ArKKVX4', '7050322'), + (167, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '1ArKKVX4', '7057804'), + (167, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '1ArKKVX4', '7072824'), + (167, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '1ArKKVX4', '7074348'), + (167, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '1ArKKVX4', '7074364'), + (167, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '1ArKKVX4', '7089267'), + (167, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '1ArKKVX4', '7098747'), + (167, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '1ArKKVX4', '7113468'), + (167, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '1ArKKVX4', '7114856'), + (167, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '1ArKKVX4', '7114951'), + (167, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '1ArKKVX4', '7114955'), + (167, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '1ArKKVX4', '7114956'), + (167, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '1ArKKVX4', '7114957'), + (167, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '1ArKKVX4', '7159484'), + (167, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '1ArKKVX4', '7178446'), + (167, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '1ArKKVX4', '7220467'), + (167, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '1ArKKVX4', '7240354'), + (167, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '1ArKKVX4', '7251633'), + (167, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '1ArKKVX4', '7324073'), + (167, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '1ArKKVX4', '7324074'), + (167, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '1ArKKVX4', '7324075'), + (167, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '1ArKKVX4', '7324078'), + (167, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '1ArKKVX4', '7324082'), + (167, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '1ArKKVX4', '7331457'), + (167, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '1ArKKVX4', '7363643'), + (167, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '1ArKKVX4', '7368606'), + (167, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '1ArKKVX4', '7397462'), + (167, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '1ArKKVX4', '7424275'), + (167, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '1ArKKVX4', '7432751'), + (167, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '1ArKKVX4', '7432752'), + (167, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '1ArKKVX4', '7432753'), + (167, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '1ArKKVX4', '7432754'), + (167, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '1ArKKVX4', '7432755'), + (167, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '1ArKKVX4', '7432756'), + (167, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '1ArKKVX4', '7432758'), + (167, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '1ArKKVX4', '7432759'), + (167, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '1ArKKVX4', '7433834'), + (167, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '1ArKKVX4', '7470197'), + (167, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '1ArKKVX4', '7685613'), + (167, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '1ArKKVX4', '7688194'), + (167, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '1ArKKVX4', '7688196'), + (167, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '1ArKKVX4', '7688289'), + (167, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '1ArKKVX4', '7692763'), + (167, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '1ArKKVX4', '7697552'), + (167, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '1ArKKVX4', '7699878'), + (167, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '1ArKKVX4', '7704043'), + (167, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1ArKKVX4', '7712467'), + (167, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1ArKKVX4', '7713585'), + (167, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1ArKKVX4', '7713586'), + (167, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '1ArKKVX4', '7738518'), + (167, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1ArKKVX4', '7750636'), + (167, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1ArKKVX4', '7796540'), + (167, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1ArKKVX4', '7796541'), + (167, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1ArKKVX4', '7796542'), + (167, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1ArKKVX4', '7825913'), + (167, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1ArKKVX4', '7826209'), + (167, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1ArKKVX4', '7834742'), + (167, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1ArKKVX4', '7842108'), + (167, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1ArKKVX4', '7842902'), + (167, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1ArKKVX4', '7842903'), + (167, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1ArKKVX4', '7842904'), + (167, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1ArKKVX4', '7842905'), + (167, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1ArKKVX4', '7855719'), + (167, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1ArKKVX4', '7860683'), + (167, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1ArKKVX4', '7860684'), + (167, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1ArKKVX4', '7866095'), + (167, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1ArKKVX4', '7869170'), + (167, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArKKVX4', '7869188'), + (167, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1ArKKVX4', '7869201'), + (167, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1ArKKVX4', '7877465'), + (167, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1ArKKVX4', '7888250'), + (167, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1ArKKVX4', '7904777'), + (167, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArKKVX4', '8349164'), + (167, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArKKVX4', '8349545'), + (167, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1ArKKVX4', '8368028'), + (167, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1ArKKVX4', '8368029'), + (167, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1ArKKVX4', '8388462'), + (167, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1ArKKVX4', '8400273'), + (167, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1ArKKVX4', '8400275'), + (167, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '1ArKKVX4', '8400276'), + (167, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1ArKKVX4', '8404977'), + (167, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1ArKKVX4', '8430783'), + (167, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1ArKKVX4', '8430784'), + (167, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1ArKKVX4', '8430799'), + (167, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1ArKKVX4', '8430800'), + (167, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1ArKKVX4', '8430801'), + (167, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1ArKKVX4', '8438709'), + (167, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1ArKKVX4', '8457738'), + (167, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1ArKKVX4', '8459566'), + (167, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1ArKKVX4', '8459567'), + (167, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1ArKKVX4', '8461032'), + (167, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1ArKKVX4', '8477877'), + (167, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1ArKKVX4', '8485688'), + (167, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '1ArKKVX4', '8490587'), + (167, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '1ArKKVX4', '8493552'), + (167, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '1ArKKVX4', '8493553'), + (167, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '1ArKKVX4', '8493554'), + (167, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '1ArKKVX4', '8493555'), + (167, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '1ArKKVX4', '8493556'), + (167, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '1ArKKVX4', '8493557'), + (167, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '1ArKKVX4', '8493558'), + (167, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '1ArKKVX4', '8493559'), + (167, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '1ArKKVX4', '8493560'), + (167, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '1ArKKVX4', '8493561'), + (167, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '1ArKKVX4', '8493572'), + (167, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '1ArKKVX4', '8540725'), + (167, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '1ArKKVX4', '8555421'), + (168, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'Qd53g9VA', '3149489'), + (168, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'Qd53g9VA', '3149491'), + (168, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'Qd53g9VA', '3236450'), + (168, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'Qd53g9VA', '3236452'), + (168, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Qd53g9VA', '3539921'), + (168, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Qd53g9VA', '3539922'), + (168, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Qd53g9VA', '3539923'), + (168, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Qd53g9VA', '3806392'), + (168, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'Qd53g9VA', '3963335'), + (168, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Qd53g9VA', '3975311'), + (168, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Qd53g9VA', '3975312'), + (168, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Qd53g9VA', '3994992'), + (168, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Qd53g9VA', '4014338'), + (168, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Qd53g9VA', '4136744'), + (168, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd53g9VA', '6045684'), + (169, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'my10reWm', '5880940'), + (169, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'my10reWm', '5880942'), + (169, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'my10reWm', '5880943'), + (169, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'my10reWm', '5900199'), + (169, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'my10reWm', '5900200'), + (169, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'my10reWm', '5900202'), + (169, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'my10reWm', '5900203'), + (169, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'my10reWm', '5909655'), + (169, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'my10reWm', '5910522'), + (169, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'my10reWm', '5910526'), + (169, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'my10reWm', '5910528'), + (169, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'my10reWm', '5916219'), + (169, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'my10reWm', '5936234'), + (169, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'my10reWm', '5936691'), + (169, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'my10reWm', '5958351'), + (169, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'my10reWm', '5959751'), + (169, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'my10reWm', '5959755'), + (169, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'my10reWm', '5960055'), + (169, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'my10reWm', '5961684'), + (169, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'my10reWm', '5962132'), + (169, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'my10reWm', '5962133'), + (169, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'my10reWm', '5962134'), + (169, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'my10reWm', '5962317'), + (169, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'my10reWm', '5962318'), + (169, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'my10reWm', '5965933'), + (169, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'my10reWm', '5967014'), + (169, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'my10reWm', '5972815'), + (169, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'my10reWm', '5974016'), + (169, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'my10reWm', '5981515'), + (169, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'my10reWm', '5993516'), + (169, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'my10reWm', '5998939'), + (169, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'my10reWm', '6028191'), + (169, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'my10reWm', '6040066'), + (169, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'my10reWm', '6042717'), + (169, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'my10reWm', '6045684'), + (170, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AXonw1Em', '7834742'), + (170, 2986, 'not_attending', '2025-02-04 20:56:50', '2025-12-17 19:46:23', 'AXonw1Em', '7835405'), + (170, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AXonw1Em', '7842108'), + (170, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AXonw1Em', '7842902'), + (170, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AXonw1Em', '7842903'), + (170, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AXonw1Em', '7842904'), + (170, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AXonw1Em', '7842905'), + (170, 2999, 'attending', '2025-02-13 02:18:05', '2025-12-17 19:46:23', 'AXonw1Em', '7844784'), + (170, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AXonw1Em', '7855719'), + (170, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AXonw1Em', '7860683'), + (170, 3008, 'attending', '2025-02-24 19:23:45', '2025-12-17 19:46:24', 'AXonw1Em', '7860684'), + (170, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AXonw1Em', '7866095'), + (170, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AXonw1Em', '7869170'), + (170, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AXonw1Em', '7869188'), + (170, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AXonw1Em', '7869201'), + (170, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AXonw1Em', '7877465'), + (170, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AXonw1Em', '7878570'), + (170, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AXonw1Em', '7888250'), + (170, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AXonw1Em', '7904777'), + (170, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AXonw1Em', '8349164'), + (170, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AXonw1Em', '8349545'), + (170, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AXonw1Em', '8353584'), + (170, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AXonw1Em', '8368028'), + (170, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AXonw1Em', '8368029'), + (170, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AXonw1Em', '8388462'), + (170, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AXonw1Em', '8400273'), + (170, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AXonw1Em', '8400274'), + (170, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AXonw1Em', '8400275'), + (170, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AXonw1Em', '8400276'), + (170, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AXonw1Em', '8404977'), + (170, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AXonw1Em', '8430783'), + (170, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AXonw1Em', '8430784'), + (170, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AXonw1Em', '8430799'), + (170, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AXonw1Em', '8430800'), + (170, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AXonw1Em', '8430801'), + (170, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AXonw1Em', '8438709'), + (170, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AXonw1Em', '8457738'), + (170, 3196, 'attending', '2025-08-13 21:54:28', '2025-12-17 19:46:17', 'AXonw1Em', '8458543'), + (170, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AXonw1Em', '8459566'), + (170, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AXonw1Em', '8459567'), + (170, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AXonw1Em', '8461032'), + (170, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AXonw1Em', '8477877'), + (170, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AXonw1Em', '8485688'), + (171, 1515, 'attending', '2022-08-06 06:54:10', '2025-12-17 19:47:21', 'AQRN1X04', '5441128'), + (171, 1516, 'attending', '2022-08-20 11:37:07', '2025-12-17 19:47:23', 'AQRN1X04', '5441129'), + (171, 1517, 'attending', '2022-08-27 23:19:24', '2025-12-17 19:47:23', 'AQRN1X04', '5441130'), + (171, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AQRN1X04', '5441131'), + (171, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'AQRN1X04', '5441132'), + (171, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AQRN1X04', '5461278'), + (171, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AQRN1X04', '5469480'), + (171, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'AQRN1X04', '5471073'), + (171, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AQRN1X04', '5482022'), + (171, 1574, 'attending', '2022-08-09 11:51:05', '2025-12-17 19:47:22', 'AQRN1X04', '5482153'), + (171, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AQRN1X04', '5482793'), + (171, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AQRN1X04', '5488912'), + (171, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AQRN1X04', '5492192'), + (171, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AQRN1X04', '5493139'), + (171, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AQRN1X04', '5493200'), + (171, 1594, 'attending', '2022-08-09 23:46:44', '2025-12-17 19:47:22', 'AQRN1X04', '5495523'), + (171, 1598, 'attending', '2022-08-13 01:30:42', '2025-12-17 19:47:22', 'AQRN1X04', '5496567'), + (171, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AQRN1X04', '5502188'), + (171, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AQRN1X04', '5505059'), + (171, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AQRN1X04', '5509055'), + (171, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AQRN1X04', '5512862'), + (171, 1621, 'not_attending', '2022-08-23 08:37:50', '2025-12-17 19:47:23', 'AQRN1X04', '5513531'), + (171, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AQRN1X04', '5513985'), + (171, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'AQRN1X04', '5519981'), + (171, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AQRN1X04', '5522550'), + (171, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AQRN1X04', '5534683'), + (171, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AQRN1X04', '5537735'), + (171, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AQRN1X04', '5540859'), + (171, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AQRN1X04', '5546619'), + (171, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AQRN1X04', '5555245'), + (171, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AQRN1X04', '5557747'), + (171, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AQRN1X04', '5560255'), + (171, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AQRN1X04', '5562906'), + (171, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AQRN1X04', '5600604'), + (171, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AQRN1X04', '5605544'), + (171, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', 'AQRN1X04', '5606737'), + (171, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AQRN1X04', '5630960'), + (171, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AQRN1X04', '5630961'), + (171, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AQRN1X04', '5630962'), + (171, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AQRN1X04', '5630966'), + (171, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AQRN1X04', '5630967'), + (171, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AQRN1X04', '5630968'), + (171, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AQRN1X04', '5635406'), + (171, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AQRN1X04', '5638765'), + (171, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AQRN1X04', '5640097'), + (171, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AQRN1X04', '5640843'), + (171, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AQRN1X04', '5641521'), + (171, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AQRN1X04', '5642818'), + (171, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AQRN1X04', '5652395'), + (171, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AQRN1X04', '5670445'), + (171, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AQRN1X04', '5671637'), + (171, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AQRN1X04', '5672329'), + (171, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AQRN1X04', '5674057'), + (171, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AQRN1X04', '5674060'), + (171, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AQRN1X04', '5677461'), + (171, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AQRN1X04', '5698046'), + (171, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AQRN1X04', '5699760'), + (171, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AQRN1X04', '5741601'), + (171, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AQRN1X04', '5763458'), + (171, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AQRN1X04', '5774172'), + (171, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AQRN1X04', '5818247'), + (171, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AQRN1X04', '5819471'), + (171, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AQRN1X04', '5827739'), + (171, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AQRN1X04', '5844306'), + (171, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AQRN1X04', '5850159'), + (171, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AQRN1X04', '5858999'), + (171, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AQRN1X04', '5871984'), + (171, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AQRN1X04', '5876354'), + (171, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AQRN1X04', '5880939'), + (171, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AQRN1X04', '5887890'), + (171, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AQRN1X04', '5888598'), + (171, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AQRN1X04', '5893260'), + (171, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQRN1X04', '6045684'), + (172, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '64vqJ0WA', '5269930'), + (172, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '64vqJ0WA', '5271448'), + (172, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '64vqJ0WA', '5271449'), + (172, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '64vqJ0WA', '5276469'), + (172, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '64vqJ0WA', '5278159'), + (172, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '64vqJ0WA', '5363695'), + (172, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '64vqJ0WA', '5365960'), + (172, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '64vqJ0WA', '5368973'), + (172, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '64vqJ0WA', '5378247'), + (172, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '64vqJ0WA', '5389605'), + (172, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '64vqJ0WA', '5397265'), + (172, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '64vqJ0WA', '6045684'), + (173, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', '401ExNRd', '8529058'), + (173, 3278, 'not_attending', '2025-09-30 15:01:05', '2025-12-17 19:46:13', '401ExNRd', '8535533'), + (173, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '401ExNRd', '8540725'), + (173, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '401ExNRd', '8555421'), + (173, 3324, 'not_attending', '2025-11-18 00:10:55', '2025-12-17 19:46:14', '401ExNRd', '8556406'), + (173, 3330, 'not_attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', '401ExNRd', '8561720'), + (174, 408, 'attending', '2021-02-06 00:26:43', '2025-12-17 19:47:50', 'rdOP6W8m', '3236466'), + (174, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'rdOP6W8m', '3236467'), + (174, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'rdOP6W8m', '3314964'), + (174, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'rdOP6W8m', '3323365'), + (174, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'rdOP6W8m', '3324148'), + (174, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'rdOP6W8m', '3329383'), + (174, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'rdOP6W8m', '3351539'), + (174, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'rdOP6W8m', '3386848'), + (174, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'rdOP6W8m', '3389527'), + (174, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'rdOP6W8m', '3396499'), + (174, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'rdOP6W8m', '3403650'), + (174, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'rdOP6W8m', '3406988'), + (174, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'rdOP6W8m', '3416576'), + (174, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'rdOP6W8m', '3426074'), + (174, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'rdOP6W8m', '3430267'), + (174, 570, 'attending', '2021-02-06 01:07:19', '2025-12-17 19:47:50', 'rdOP6W8m', '3435538'), + (174, 571, 'attending', '2021-02-13 22:54:16', '2025-12-17 19:47:50', 'rdOP6W8m', '3435539'), + (174, 572, 'attending', '2021-02-06 01:07:21', '2025-12-17 19:47:50', 'rdOP6W8m', '3435540'), + (174, 589, 'not_attending', '2021-02-19 14:57:23', '2025-12-17 19:47:50', 'rdOP6W8m', '3449473'), + (174, 592, 'not_attending', '2021-02-25 18:36:27', '2025-12-17 19:47:50', 'rdOP6W8m', '3467757'), + (174, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'rdOP6W8m', '3468125'), + (174, 602, 'attending', '2021-02-13 23:33:55', '2025-12-17 19:47:50', 'rdOP6W8m', '3470303'), + (174, 603, 'attending', '2021-02-19 14:57:36', '2025-12-17 19:47:50', 'rdOP6W8m', '3470304'), + (174, 604, 'attending', '2021-02-23 02:51:18', '2025-12-17 19:47:50', 'rdOP6W8m', '3470305'), + (174, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOP6W8m', '3470991'), + (174, 607, 'not_attending', '2021-02-19 14:57:27', '2025-12-17 19:47:50', 'rdOP6W8m', '3471882'), + (174, 608, 'not_attending', '2021-02-11 01:00:11', '2025-12-17 19:47:50', 'rdOP6W8m', '3475332'), + (174, 615, 'attending', '2021-02-19 14:57:03', '2025-12-17 19:47:50', 'rdOP6W8m', '3490045'), + (174, 616, 'not_attending', '2021-02-21 20:44:05', '2025-12-17 19:47:50', 'rdOP6W8m', '3493478'), + (174, 621, 'attending', '2021-03-01 01:05:52', '2025-12-17 19:47:51', 'rdOP6W8m', '3517815'), + (174, 622, 'attending', '2021-03-01 01:05:56', '2025-12-17 19:47:51', 'rdOP6W8m', '3517816'), + (174, 623, 'attending', '2021-02-25 18:37:07', '2025-12-17 19:47:50', 'rdOP6W8m', '3523941'), + (174, 631, 'maybe', '2021-03-01 01:06:09', '2025-12-17 19:47:51', 'rdOP6W8m', '3533850'), + (174, 637, 'maybe', '2021-03-03 15:58:57', '2025-12-17 19:47:51', 'rdOP6W8m', '3536411'), + (174, 638, 'attending', '2021-03-01 19:23:55', '2025-12-17 19:47:44', 'rdOP6W8m', '3536632'), + (174, 639, 'attending', '2021-03-01 19:48:35', '2025-12-17 19:47:51', 'rdOP6W8m', '3536656'), + (174, 641, 'attending', '2021-03-03 16:02:29', '2025-12-17 19:47:44', 'rdOP6W8m', '3539916'), + (174, 642, 'attending', '2021-03-03 16:02:27', '2025-12-17 19:47:44', 'rdOP6W8m', '3539917'), + (174, 643, 'attending', '2021-03-03 16:02:25', '2025-12-17 19:47:45', 'rdOP6W8m', '3539918'), + (174, 644, 'attending', '2021-04-24 15:21:19', '2025-12-17 19:47:45', 'rdOP6W8m', '3539919'), + (174, 645, 'maybe', '2021-05-04 10:00:11', '2025-12-17 19:47:46', 'rdOP6W8m', '3539920'), + (174, 646, 'maybe', '2021-05-04 10:00:19', '2025-12-17 19:47:46', 'rdOP6W8m', '3539921'), + (174, 647, 'attending', '2021-05-22 21:02:11', '2025-12-17 19:47:46', 'rdOP6W8m', '3539922'), + (174, 648, 'attending', '2021-05-28 10:18:17', '2025-12-17 19:47:47', 'rdOP6W8m', '3539923'), + (174, 649, 'not_attending', '2021-03-20 22:28:09', '2025-12-17 19:47:51', 'rdOP6W8m', '3539927'), + (174, 650, 'attending', '2021-03-27 20:44:08', '2025-12-17 19:47:44', 'rdOP6W8m', '3539928'), + (174, 664, 'maybe', '2021-09-11 20:46:40', '2025-12-17 19:47:43', 'rdOP6W8m', '3547142'), + (174, 665, 'not_attending', '2021-09-04 20:29:35', '2025-12-17 19:47:43', 'rdOP6W8m', '3547143'), + (174, 667, 'attending', '2021-08-28 16:19:56', '2025-12-17 19:47:42', 'rdOP6W8m', '3547145'), + (174, 703, 'not_attending', '2021-04-12 16:08:46', '2025-12-17 19:47:44', 'rdOP6W8m', '3578388'), + (174, 706, 'attending', '2021-03-19 17:56:55', '2025-12-17 19:47:45', 'rdOP6W8m', '3582734'), + (174, 707, 'attending', '2021-04-24 15:21:22', '2025-12-17 19:47:46', 'rdOP6W8m', '3583262'), + (174, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOP6W8m', '3619523'), + (174, 724, 'attending', '2021-05-09 21:06:34', '2025-12-17 19:47:46', 'rdOP6W8m', '3661369'), + (174, 725, 'attending', '2021-04-13 11:17:50', '2025-12-17 19:47:47', 'rdOP6W8m', '3661372'), + (174, 727, 'attending', '2021-05-24 01:25:57', '2025-12-17 19:47:38', 'rdOP6W8m', '3661377'), + (174, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'rdOP6W8m', '3674262'), + (174, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'rdOP6W8m', '3677402'), + (174, 761, 'maybe', '2021-05-04 10:00:01', '2025-12-17 19:47:46', 'rdOP6W8m', '3716041'), + (174, 767, 'maybe', '2021-04-18 23:54:20', '2025-12-17 19:47:46', 'rdOP6W8m', '3722476'), + (174, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOP6W8m', '3730212'), + (174, 777, 'not_attending', '2021-05-01 17:16:32', '2025-12-17 19:47:46', 'rdOP6W8m', '3746248'), + (174, 789, 'attending', '2021-05-28 10:18:19', '2025-12-17 19:47:47', 'rdOP6W8m', '3785818'), + (174, 792, 'maybe', '2021-05-09 14:06:22', '2025-12-17 19:47:46', 'rdOP6W8m', '3793156'), + (174, 805, 'attending', '2021-05-24 01:25:55', '2025-12-17 19:47:47', 'rdOP6W8m', '3804777'), + (174, 823, 'attending', '2021-06-02 01:04:36', '2025-12-17 19:47:48', 'rdOP6W8m', '3974109'), + (174, 827, 'attending', '2021-06-05 21:47:37', '2025-12-17 19:47:47', 'rdOP6W8m', '3975311'), + (174, 828, 'not_attending', '2021-06-12 22:29:46', '2025-12-17 19:47:47', 'rdOP6W8m', '3975312'), + (174, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOP6W8m', '3994992'), + (174, 844, 'maybe', '2021-06-10 15:09:55', '2025-12-17 19:47:38', 'rdOP6W8m', '4014338'), + (174, 846, 'attending', '2021-06-10 23:19:39', '2025-12-17 19:47:39', 'rdOP6W8m', '4015718'), + (174, 867, 'not_attending', '2021-06-16 11:44:49', '2025-12-17 19:47:38', 'rdOP6W8m', '4021848'), + (174, 868, 'maybe', '2021-06-16 11:44:19', '2025-12-17 19:47:48', 'rdOP6W8m', '4022012'), + (174, 869, 'not_attending', '2021-06-30 23:32:22', '2025-12-17 19:47:38', 'rdOP6W8m', '4136744'), + (174, 870, 'attending', '2021-07-03 22:46:27', '2025-12-17 19:47:39', 'rdOP6W8m', '4136937'), + (174, 871, 'maybe', '2021-07-07 16:44:48', '2025-12-17 19:47:39', 'rdOP6W8m', '4136938'), + (174, 872, 'maybe', '2021-06-22 18:06:04', '2025-12-17 19:47:40', 'rdOP6W8m', '4136947'), + (174, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOP6W8m', '4210314'), + (174, 887, 'maybe', '2021-07-15 13:32:47', '2025-12-17 19:47:39', 'rdOP6W8m', '4225444'), + (174, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdOP6W8m', '4239259'), + (174, 900, 'not_attending', '2021-07-25 12:07:29', '2025-12-17 19:47:40', 'rdOP6W8m', '4240316'), + (174, 901, 'attending', '2021-07-31 14:50:01', '2025-12-17 19:47:40', 'rdOP6W8m', '4240317'), + (174, 902, 'attending', '2021-08-07 19:20:56', '2025-12-17 19:47:41', 'rdOP6W8m', '4240318'), + (174, 903, 'maybe', '2021-08-14 17:59:20', '2025-12-17 19:47:42', 'rdOP6W8m', '4240320'), + (174, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdOP6W8m', '4250163'), + (174, 919, 'attending', '2021-07-15 13:32:12', '2025-12-17 19:47:39', 'rdOP6W8m', '4275957'), + (174, 920, 'attending', '2021-07-15 13:33:07', '2025-12-17 19:47:40', 'rdOP6W8m', '4277819'), + (174, 926, 'attending', '2021-08-18 22:55:59', '2025-12-17 19:47:42', 'rdOP6W8m', '4297211'), + (174, 930, 'maybe', '2021-07-26 16:43:14', '2025-12-17 19:47:41', 'rdOP6W8m', '4300787'), + (174, 933, 'not_attending', '2021-07-25 12:07:46', '2025-12-17 19:47:40', 'rdOP6W8m', '4301723'), + (174, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'rdOP6W8m', '4302093'), + (174, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOP6W8m', '4304151'), + (174, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'rdOP6W8m', '4345519'), + (174, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOP6W8m', '4356801'), + (174, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'rdOP6W8m', '4358025'), + (174, 973, 'attending', '2021-08-21 22:47:02', '2025-12-17 19:47:42', 'rdOP6W8m', '4366186'), + (174, 974, 'not_attending', '2021-08-28 16:20:01', '2025-12-17 19:47:43', 'rdOP6W8m', '4366187'), + (174, 976, 'maybe', '2021-08-20 15:35:41', '2025-12-17 19:47:42', 'rdOP6W8m', '4373933'), + (174, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'rdOP6W8m', '4402823'), + (174, 990, 'not_attending', '2021-09-04 20:29:24', '2025-12-17 19:47:43', 'rdOP6W8m', '4420735'), + (174, 991, 'maybe', '2021-09-11 20:46:48', '2025-12-17 19:47:43', 'rdOP6W8m', '4420738'), + (174, 992, 'attending', '2021-09-02 13:54:18', '2025-12-17 19:47:33', 'rdOP6W8m', '4420739'), + (174, 993, 'attending', '2021-09-02 13:54:20', '2025-12-17 19:47:34', 'rdOP6W8m', '4420741'), + (174, 994, 'not_attending', '2021-09-26 02:23:09', '2025-12-17 19:47:34', 'rdOP6W8m', '4420742'), + (174, 995, 'attending', '2021-10-09 15:14:22', '2025-12-17 19:47:34', 'rdOP6W8m', '4420744'), + (174, 996, 'attending', '2021-09-18 02:23:23', '2025-12-17 19:47:35', 'rdOP6W8m', '4420747'), + (174, 997, 'attending', '2021-09-18 02:23:26', '2025-12-17 19:47:35', 'rdOP6W8m', '4420748'), + (174, 998, 'attending', '2021-09-18 02:23:28', '2025-12-17 19:47:36', 'rdOP6W8m', '4420749'), + (174, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'rdOP6W8m', '4461883'), + (174, 1032, 'maybe', '2021-09-16 14:33:14', '2025-12-17 19:47:34', 'rdOP6W8m', '4473825'), + (174, 1033, 'attending', '2021-09-18 02:21:42', '2025-12-17 19:47:43', 'rdOP6W8m', '4486006'), + (174, 1038, 'attending', '2021-09-24 01:34:49', '2025-12-17 19:47:34', 'rdOP6W8m', '4496603'), + (174, 1039, 'not_attending', '2021-09-26 02:23:06', '2025-12-17 19:47:34', 'rdOP6W8m', '4496604'), + (174, 1040, 'maybe', '2021-12-06 02:46:13', '2025-12-17 19:47:38', 'rdOP6W8m', '4496605'), + (174, 1042, 'maybe', '2021-11-15 21:56:31', '2025-12-17 19:47:37', 'rdOP6W8m', '4496607'), + (174, 1044, 'not_attending', '2021-11-07 16:20:40', '2025-12-17 19:47:36', 'rdOP6W8m', '4496609'), + (174, 1048, 'maybe', '2021-11-12 23:58:49', '2025-12-17 19:47:36', 'rdOP6W8m', '4496613'), + (174, 1050, 'attending', '2022-01-29 20:48:50', '2025-12-17 19:47:32', 'rdOP6W8m', '4496615'), + (174, 1053, 'attending', '2022-02-13 21:41:51', '2025-12-17 19:47:32', 'rdOP6W8m', '4496618'), + (174, 1054, 'not_attending', '2022-03-13 04:41:25', '2025-12-17 19:47:25', 'rdOP6W8m', '4496619'), + (174, 1055, 'attending', '2021-12-18 22:59:20', '2025-12-17 19:47:31', 'rdOP6W8m', '4496621'), + (174, 1057, 'maybe', '2021-11-15 21:56:27', '2025-12-17 19:47:37', 'rdOP6W8m', '4496624'), + (174, 1058, 'attending', '2022-02-13 21:41:55', '2025-12-17 19:47:33', 'rdOP6W8m', '4496625'), + (174, 1059, 'maybe', '2022-03-12 16:22:17', '2025-12-17 19:47:33', 'rdOP6W8m', '4496626'), + (174, 1060, 'not_attending', '2022-03-13 04:41:31', '2025-12-17 19:47:25', 'rdOP6W8m', '4496627'), + (174, 1061, 'attending', '2022-02-10 16:04:05', '2025-12-17 19:47:32', 'rdOP6W8m', '4496628'), + (174, 1062, 'attending', '2022-02-20 15:36:10', '2025-12-17 19:47:33', 'rdOP6W8m', '4496629'), + (174, 1065, 'not_attending', '2021-09-21 15:45:23', '2025-12-17 19:47:34', 'rdOP6W8m', '4505800'), + (174, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'rdOP6W8m', '4508342'), + (174, 1071, 'attending', '2021-09-27 01:51:52', '2025-12-17 19:47:34', 'rdOP6W8m', '4516078'), + (174, 1073, 'not_attending', '2021-09-29 11:33:45', '2025-12-17 19:47:34', 'rdOP6W8m', '4518993'), + (174, 1076, 'maybe', '2021-10-07 00:22:46', '2025-12-17 19:47:34', 'rdOP6W8m', '4539147'), + (174, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'rdOP6W8m', '4568602'), + (174, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'rdOP6W8m', '4572153'), + (174, 1088, 'attending', '2021-10-20 22:59:07', '2025-12-17 19:47:35', 'rdOP6W8m', '4574382'), + (174, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'rdOP6W8m', '4585962'), + (174, 1094, 'attending', '2021-10-28 00:12:13', '2025-12-17 19:47:36', 'rdOP6W8m', '4587337'), + (174, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'rdOP6W8m', '4596356'), + (174, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'rdOP6W8m', '4598860'), + (174, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'rdOP6W8m', '4598861'), + (174, 1099, 'attending', '2021-10-31 17:19:28', '2025-12-17 19:47:36', 'rdOP6W8m', '4602797'), + (174, 1101, 'attending', '2021-11-01 22:25:15', '2025-12-17 19:47:36', 'rdOP6W8m', '4607339'), + (174, 1103, 'maybe', '2021-11-12 23:58:27', '2025-12-17 19:47:36', 'rdOP6W8m', '4616350'), + (174, 1104, 'maybe', '2021-11-12 23:58:37', '2025-12-17 19:47:36', 'rdOP6W8m', '4618310'), + (174, 1109, 'not_attending', '2021-11-20 22:43:33', '2025-12-17 19:47:37', 'rdOP6W8m', '4635221'), + (174, 1110, 'not_attending', '2021-11-20 22:43:36', '2025-12-17 19:47:37', 'rdOP6W8m', '4635224'), + (174, 1113, 'not_attending', '2021-11-27 21:53:21', '2025-12-17 19:47:37', 'rdOP6W8m', '4635421'), + (174, 1114, 'maybe', '2021-11-12 23:57:36', '2025-12-17 19:47:36', 'rdOP6W8m', '4637896'), + (174, 1115, 'not_attending', '2021-11-17 00:48:20', '2025-12-17 19:47:37', 'rdOP6W8m', '4638673'), + (174, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'rdOP6W8m', '4642994'), + (174, 1117, 'attending', '2021-12-09 00:16:44', '2025-12-17 19:47:37', 'rdOP6W8m', '4642995'), + (174, 1118, 'maybe', '2021-12-15 23:31:59', '2025-12-17 19:47:38', 'rdOP6W8m', '4642996'), + (174, 1119, 'maybe', '2021-12-19 19:44:06', '2025-12-17 19:47:31', 'rdOP6W8m', '4642997'), + (174, 1126, 'attending', '2021-11-27 21:53:46', '2025-12-17 19:47:38', 'rdOP6W8m', '4645687'), + (174, 1127, 'maybe', '2021-12-02 17:30:46', '2025-12-17 19:47:38', 'rdOP6W8m', '4645698'), + (174, 1128, 'attending', '2021-11-15 13:13:32', '2025-12-17 19:47:37', 'rdOP6W8m', '4645704'), + (174, 1129, 'not_attending', '2021-12-02 17:29:38', '2025-12-17 19:47:37', 'rdOP6W8m', '4645705'), + (174, 1130, 'attending', '2021-11-26 18:17:41', '2025-12-17 19:47:37', 'rdOP6W8m', '4658824'), + (174, 1131, 'attending', '2021-11-27 21:53:49', '2025-12-17 19:47:31', 'rdOP6W8m', '4658825'), + (174, 1134, 'maybe', '2021-11-26 18:11:02', '2025-12-17 19:47:37', 'rdOP6W8m', '4668385'), + (174, 1135, 'not_attending', '2021-11-26 18:16:50', '2025-12-17 19:47:37', 'rdOP6W8m', '4670469'), + (174, 1142, 'maybe', '2021-12-02 17:30:15', '2025-12-17 19:47:37', 'rdOP6W8m', '4681923'), + (174, 1145, 'maybe', '2021-12-07 03:01:24', '2025-12-17 19:47:38', 'rdOP6W8m', '4691157'), + (174, 1146, 'maybe', '2021-12-07 03:01:28', '2025-12-17 19:47:38', 'rdOP6W8m', '4692841'), + (174, 1148, 'maybe', '2021-12-17 23:49:46', '2025-12-17 19:47:31', 'rdOP6W8m', '4692843'), + (174, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'rdOP6W8m', '4694407'), + (174, 1150, 'attending', '2021-12-13 00:53:16', '2025-12-17 19:47:38', 'rdOP6W8m', '4706262'), + (174, 1151, 'maybe', '2021-12-27 16:06:54', '2025-12-17 19:47:31', 'rdOP6W8m', '4708704'), + (174, 1154, 'maybe', '2022-01-26 23:43:58', '2025-12-17 19:47:32', 'rdOP6W8m', '4708708'), + (174, 1173, 'attending', '2022-01-08 16:49:50', '2025-12-17 19:47:31', 'rdOP6W8m', '4736495'), + (174, 1174, 'attending', '2022-01-08 16:50:05', '2025-12-17 19:47:31', 'rdOP6W8m', '4736496'), + (174, 1175, 'attending', '2022-01-08 16:50:07', '2025-12-17 19:47:32', 'rdOP6W8m', '4736497'), + (174, 1176, 'attending', '2022-02-05 04:10:11', '2025-12-17 19:47:32', 'rdOP6W8m', '4736498'), + (174, 1177, 'attending', '2022-02-10 16:04:08', '2025-12-17 19:47:32', 'rdOP6W8m', '4736499'), + (174, 1178, 'attending', '2022-01-08 16:50:08', '2025-12-17 19:47:32', 'rdOP6W8m', '4736500'), + (174, 1179, 'attending', '2022-02-13 21:41:53', '2025-12-17 19:47:32', 'rdOP6W8m', '4736501'), + (174, 1180, 'attending', '2022-02-13 21:41:56', '2025-12-17 19:47:33', 'rdOP6W8m', '4736502'), + (174, 1181, 'attending', '2022-02-20 15:36:09', '2025-12-17 19:47:33', 'rdOP6W8m', '4736503'), + (174, 1182, 'attending', '2022-03-08 19:03:16', '2025-12-17 19:47:33', 'rdOP6W8m', '4736504'), + (174, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'rdOP6W8m', '4746789'), + (174, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'rdOP6W8m', '4753929'), + (174, 1189, 'maybe', '2022-01-16 18:03:17', '2025-12-17 19:47:31', 'rdOP6W8m', '4753938'), + (174, 1207, 'not_attending', '2022-05-06 02:32:49', '2025-12-17 19:47:28', 'rdOP6W8m', '4773579'), + (174, 1219, 'maybe', '2022-01-29 20:49:27', '2025-12-17 19:47:32', 'rdOP6W8m', '4788466'), + (174, 1222, 'maybe', '2022-02-16 17:45:56', '2025-12-17 19:47:32', 'rdOP6W8m', '5015628'), + (174, 1225, 'not_attending', '2022-02-04 22:51:44', '2025-12-17 19:47:32', 'rdOP6W8m', '5019063'), + (174, 1228, 'attending', '2022-02-11 23:06:19', '2025-12-17 19:47:32', 'rdOP6W8m', '5028238'), + (174, 1232, 'not_attending', '2022-02-10 15:57:58', '2025-12-17 19:47:32', 'rdOP6W8m', '5038850'), + (174, 1233, 'maybe', '2022-02-10 16:03:45', '2025-12-17 19:47:32', 'rdOP6W8m', '5038910'), + (174, 1234, 'maybe', '2022-02-13 22:05:26', '2025-12-17 19:47:32', 'rdOP6W8m', '5042197'), + (174, 1236, 'attending', '2022-02-16 03:12:09', '2025-12-17 19:47:32', 'rdOP6W8m', '5045826'), + (174, 1238, 'maybe', '2022-02-20 15:35:25', '2025-12-17 19:47:32', 'rdOP6W8m', '5052236'), + (174, 1239, 'attending', '2022-03-02 18:00:47', '2025-12-17 19:47:33', 'rdOP6W8m', '5052238'), + (174, 1240, 'maybe', '2022-03-09 21:06:47', '2025-12-17 19:47:33', 'rdOP6W8m', '5052239'), + (174, 1241, 'maybe', '2022-03-22 01:07:27', '2025-12-17 19:47:25', 'rdOP6W8m', '5052240'), + (174, 1242, 'attending', '2022-03-30 22:36:07', '2025-12-17 19:47:25', 'rdOP6W8m', '5052241'), + (174, 1243, 'not_attending', '2022-03-06 20:09:26', '2025-12-17 19:47:33', 'rdOP6W8m', '5058336'), + (174, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'rdOP6W8m', '5132533'), + (174, 1260, 'not_attending', '2022-03-02 18:00:42', '2025-12-17 19:47:33', 'rdOP6W8m', '5142082'), + (174, 1262, 'maybe', '2022-03-09 21:12:42', '2025-12-17 19:47:33', 'rdOP6W8m', '5157773'), + (174, 1264, 'not_attending', '2022-03-13 04:41:53', '2025-12-17 19:47:25', 'rdOP6W8m', '5160281'), + (174, 1266, 'not_attending', '2022-03-13 04:41:35', '2025-12-17 19:47:33', 'rdOP6W8m', '5166407'), + (174, 1267, 'not_attending', '2022-03-13 04:41:47', '2025-12-17 19:47:25', 'rdOP6W8m', '5169578'), + (174, 1268, 'not_attending', '2022-03-13 04:41:39', '2025-12-17 19:47:33', 'rdOP6W8m', '5176296'), + (174, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'rdOP6W8m', '5186582'), + (174, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'rdOP6W8m', '5186583'), + (174, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'rdOP6W8m', '5186585'), + (174, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'rdOP6W8m', '5190437'), + (174, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'rdOP6W8m', '5195095'), + (174, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'rdOP6W8m', '5215989'), + (174, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'rdOP6W8m', '5223686'), + (174, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'rdOP6W8m', '5227432'), + (174, 1311, 'not_attending', '2022-04-08 02:44:27', '2025-12-17 19:47:27', 'rdOP6W8m', '5231430'), + (174, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'rdOP6W8m', '5231461'), + (174, 1343, 'not_attending', '2022-05-06 02:32:33', '2025-12-17 19:47:28', 'rdOP6W8m', '5247200'), + (174, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'rdOP6W8m', '5247467'), + (174, 1354, 'not_attending', '2022-04-21 18:07:01', '2025-12-17 19:47:27', 'rdOP6W8m', '5252569'), + (174, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'rdOP6W8m', '5260800'), + (174, 1369, 'not_attending', '2022-05-06 02:33:01', '2025-12-17 19:47:28', 'rdOP6W8m', '5262809'), + (174, 1374, 'not_attending', '2022-05-06 02:32:46', '2025-12-17 19:47:28', 'rdOP6W8m', '5269930'), + (174, 1376, 'not_attending', '2022-05-06 02:33:12', '2025-12-17 19:47:28', 'rdOP6W8m', '5271446'), + (174, 1377, 'not_attending', '2022-05-06 02:33:16', '2025-12-17 19:47:28', 'rdOP6W8m', '5271447'), + (174, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'rdOP6W8m', '5271448'), + (174, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'rdOP6W8m', '5271449'), + (174, 1380, 'not_attending', '2022-05-27 01:40:26', '2025-12-17 19:47:30', 'rdOP6W8m', '5271450'), + (174, 1381, 'not_attending', '2022-05-06 02:32:36', '2025-12-17 19:47:28', 'rdOP6W8m', '5271453'), + (174, 1382, 'not_attending', '2022-05-06 02:32:57', '2025-12-17 19:47:28', 'rdOP6W8m', '5276350'), + (174, 1383, 'not_attending', '2022-05-06 02:33:20', '2025-12-17 19:47:28', 'rdOP6W8m', '5276469'), + (174, 1385, 'not_attending', '2022-05-06 02:33:09', '2025-12-17 19:47:28', 'rdOP6W8m', '5277822'), + (174, 1386, 'not_attending', '2022-05-06 02:32:30', '2025-12-17 19:47:28', 'rdOP6W8m', '5278159'), + (174, 1387, 'not_attending', '2022-05-06 02:33:05', '2025-12-17 19:47:28', 'rdOP6W8m', '5278173'), + (174, 1388, 'not_attending', '2022-05-06 02:32:26', '2025-12-17 19:47:28', 'rdOP6W8m', '5278201'), + (174, 1389, 'not_attending', '2022-05-06 02:32:53', '2025-12-17 19:47:28', 'rdOP6W8m', '5278202'), + (174, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'rdOP6W8m', '5363695'), + (174, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'rdOP6W8m', '5365960'), + (174, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'rdOP6W8m', '5368973'), + (174, 1416, 'not_attending', '2022-05-27 01:40:30', '2025-12-17 19:47:30', 'rdOP6W8m', '5369628'), + (174, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'rdOP6W8m', '5378247'), + (174, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'rdOP6W8m', '5389605'), + (174, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'rdOP6W8m', '5397265'), + (174, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'rdOP6W8m', '5403967'), + (174, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'rdOP6W8m', '5404786'), + (174, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'rdOP6W8m', '5405203'), + (174, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'rdOP6W8m', '5411699'), + (174, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'rdOP6W8m', '5412550'), + (174, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'rdOP6W8m', '5415046'), + (174, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'rdOP6W8m', '5422086'), + (174, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'rdOP6W8m', '5422406'), + (174, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'rdOP6W8m', '5424565'), + (174, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'rdOP6W8m', '5426882'), + (174, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'rdOP6W8m', '5427083'), + (174, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'rdOP6W8m', '5441125'), + (174, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'rdOP6W8m', '5441126'), + (174, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'rdOP6W8m', '5441128'), + (174, 1517, 'attending', '2022-08-22 13:37:12', '2025-12-17 19:47:23', 'rdOP6W8m', '5441130'), + (174, 1518, 'attending', '2022-08-31 22:34:35', '2025-12-17 19:47:24', 'rdOP6W8m', '5441131'), + (174, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'rdOP6W8m', '5441132'), + (174, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'rdOP6W8m', '5446643'), + (174, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'rdOP6W8m', '5453325'), + (174, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'rdOP6W8m', '5454516'), + (174, 1544, 'not_attending', '2022-09-11 18:20:44', '2025-12-17 19:47:11', 'rdOP6W8m', '5454517'), + (174, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'rdOP6W8m', '5454605'), + (174, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'rdOP6W8m', '5455037'), + (174, 1559, 'maybe', '2022-09-28 21:38:40', '2025-12-17 19:47:11', 'rdOP6W8m', '5458731'), + (174, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'rdOP6W8m', '5461278'), + (174, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'rdOP6W8m', '5469480'), + (174, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'rdOP6W8m', '5471073'), + (174, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'rdOP6W8m', '5474663'), + (174, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'rdOP6W8m', '5482022'), + (174, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'rdOP6W8m', '5482793'), + (174, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'rdOP6W8m', '5488912'), + (174, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'rdOP6W8m', '5492192'), + (174, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'rdOP6W8m', '5493139'), + (174, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'rdOP6W8m', '5493200'), + (174, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'rdOP6W8m', '5502188'), + (174, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'rdOP6W8m', '5505059'), + (174, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'rdOP6W8m', '5509055'), + (174, 1616, 'attending', '2022-08-22 13:40:53', '2025-12-17 19:47:23', 'rdOP6W8m', '5509478'), + (174, 1618, 'maybe', '2022-08-22 13:37:08', '2025-12-17 19:47:23', 'rdOP6W8m', '5512005'), + (174, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'rdOP6W8m', '5512862'), + (174, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'rdOP6W8m', '5513985'), + (174, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'rdOP6W8m', '5519981'), + (174, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'rdOP6W8m', '5522550'), + (174, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'rdOP6W8m', '5534683'), + (174, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'rdOP6W8m', '5537735'), + (174, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'rdOP6W8m', '5540859'), + (174, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'rdOP6W8m', '5546619'), + (174, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'rdOP6W8m', '5555245'), + (174, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'rdOP6W8m', '5557747'), + (174, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'rdOP6W8m', '5560255'), + (174, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'rdOP6W8m', '5562906'), + (174, 1668, 'maybe', '2022-10-01 13:40:26', '2025-12-17 19:47:12', 'rdOP6W8m', '5563222'), + (174, 1673, 'maybe', '2022-09-29 22:05:35', '2025-12-17 19:47:11', 'rdOP6W8m', '5592454'), + (174, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'rdOP6W8m', '5600604'), + (174, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'rdOP6W8m', '5605544'), + (174, 1699, 'maybe', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'rdOP6W8m', '5606737'), + (174, 1703, 'maybe', '2022-10-05 20:51:06', '2025-12-17 19:47:12', 'rdOP6W8m', '5609176'), + (174, 1708, 'maybe', '2022-10-05 20:51:35', '2025-12-17 19:47:12', 'rdOP6W8m', '5617648'), + (174, 1711, 'maybe', '2022-10-05 20:52:58', '2025-12-17 19:47:12', 'rdOP6W8m', '5621883'), + (174, 1717, 'attending', '2022-10-20 21:59:39', '2025-12-17 19:47:13', 'rdOP6W8m', '5622842'), + (174, 1719, 'attending', '2022-10-05 20:54:19', '2025-12-17 19:47:12', 'rdOP6W8m', '5630958'), + (174, 1720, 'attending', '2022-10-10 13:14:57', '2025-12-17 19:47:12', 'rdOP6W8m', '5630959'), + (174, 1721, 'attending', '2022-10-18 23:26:17', '2025-12-17 19:47:13', 'rdOP6W8m', '5630960'), + (174, 1722, 'attending', '2022-10-20 22:00:05', '2025-12-17 19:47:14', 'rdOP6W8m', '5630961'), + (174, 1723, 'maybe', '2022-11-01 20:20:07', '2025-12-17 19:47:15', 'rdOP6W8m', '5630962'), + (174, 1724, 'attending', '2022-11-01 20:21:14', '2025-12-17 19:47:15', 'rdOP6W8m', '5630966'), + (174, 1725, 'attending', '2022-11-01 20:21:19', '2025-12-17 19:47:16', 'rdOP6W8m', '5630967'), + (174, 1726, 'maybe', '2022-11-01 20:21:21', '2025-12-17 19:47:16', 'rdOP6W8m', '5630968'), + (174, 1727, 'maybe', '2022-11-01 20:21:23', '2025-12-17 19:47:16', 'rdOP6W8m', '5630969'), + (174, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'rdOP6W8m', '5635406'), + (174, 1733, 'not_attending', '2022-10-09 02:54:50', '2025-12-17 19:47:12', 'rdOP6W8m', '5635411'), + (174, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'rdOP6W8m', '5638765'), + (174, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'rdOP6W8m', '5640097'), + (174, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'rdOP6W8m', '5640843'), + (174, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'rdOP6W8m', '5641521'), + (174, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'rdOP6W8m', '5642818'), + (174, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'rdOP6W8m', '5652395'), + (174, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'rdOP6W8m', '5670445'), + (174, 1763, 'maybe', '2022-11-01 20:21:03', '2025-12-17 19:47:15', 'rdOP6W8m', '5670803'), + (174, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'rdOP6W8m', '5671637'), + (174, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'rdOP6W8m', '5672329'), + (174, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'rdOP6W8m', '5674057'), + (174, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'rdOP6W8m', '5674060'), + (174, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'rdOP6W8m', '5677461'), + (174, 1776, 'maybe', '2022-11-01 20:20:54', '2025-12-17 19:47:15', 'rdOP6W8m', '5691067'), + (174, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'rdOP6W8m', '5698046'), + (174, 1783, 'maybe', '2022-11-15 23:27:33', '2025-12-17 19:47:16', 'rdOP6W8m', '5698621'), + (174, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'rdOP6W8m', '5699760'), + (174, 1785, 'maybe', '2022-11-15 23:27:49', '2025-12-17 19:47:15', 'rdOP6W8m', '5702414'), + (174, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'rdOP6W8m', '5741601'), + (174, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'rdOP6W8m', '5763458'), + (174, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'rdOP6W8m', '5774172'), + (174, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'rdOP6W8m', '5818247'), + (174, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'rdOP6W8m', '5819471'), + (174, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'rdOP6W8m', '5827739'), + (174, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'rdOP6W8m', '5844306'), + (174, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'rdOP6W8m', '5850159'), + (174, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'rdOP6W8m', '5858999'), + (174, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'rdOP6W8m', '5871984'), + (174, 1859, 'maybe', '2023-01-19 23:10:49', '2025-12-17 19:47:05', 'rdOP6W8m', '5876234'), + (174, 1860, 'maybe', '2023-01-18 22:22:39', '2025-12-17 19:47:05', 'rdOP6W8m', '5876309'), + (174, 1861, 'maybe', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'rdOP6W8m', '5876354'), + (174, 1864, 'maybe', '2023-01-19 23:11:07', '2025-12-17 19:47:05', 'rdOP6W8m', '5879675'), + (174, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'rdOP6W8m', '5880939'), + (174, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'rdOP6W8m', '5880940'), + (174, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'rdOP6W8m', '5880942'), + (174, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'rdOP6W8m', '5880943'), + (174, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'rdOP6W8m', '5887890'), + (174, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'rdOP6W8m', '5888598'), + (174, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'rdOP6W8m', '5893260'), + (174, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'rdOP6W8m', '5899826'), + (174, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'rdOP6W8m', '5900199'), + (174, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'rdOP6W8m', '5900200'), + (174, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'rdOP6W8m', '5900202'), + (174, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'rdOP6W8m', '5900203'), + (174, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'rdOP6W8m', '5901108'), + (174, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'rdOP6W8m', '5901126'), + (174, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'rdOP6W8m', '5909655'), + (174, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'rdOP6W8m', '5910522'), + (174, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'rdOP6W8m', '5910526'), + (174, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'rdOP6W8m', '5910528'), + (174, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'rdOP6W8m', '5916219'), + (174, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'rdOP6W8m', '5936234'), + (174, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'rdOP6W8m', '5958351'), + (174, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'rdOP6W8m', '5959751'), + (174, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'rdOP6W8m', '5959755'), + (174, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'rdOP6W8m', '5960055'), + (174, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'rdOP6W8m', '5961684'), + (174, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'rdOP6W8m', '5962132'), + (174, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'rdOP6W8m', '5962133'), + (174, 1946, 'maybe', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'rdOP6W8m', '5962134'), + (174, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'rdOP6W8m', '5962317'), + (174, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'rdOP6W8m', '5962318'), + (174, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'rdOP6W8m', '5965933'), + (174, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'rdOP6W8m', '5967014'), + (174, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'rdOP6W8m', '5972815'), + (174, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'rdOP6W8m', '5974016'), + (174, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'rdOP6W8m', '5975052'), + (174, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'rdOP6W8m', '5975054'), + (174, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'rdOP6W8m', '5981515'), + (174, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'rdOP6W8m', '5993516'), + (174, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'rdOP6W8m', '5998939'), + (174, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'rdOP6W8m', '6028191'), + (174, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'rdOP6W8m', '6040066'), + (174, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'rdOP6W8m', '6042717'), + (174, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'rdOP6W8m', '6044838'), + (174, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'rdOP6W8m', '6044839'), + (174, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOP6W8m', '6045684'), + (174, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'rdOP6W8m', '6050104'), + (174, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'rdOP6W8m', '6053195'), + (174, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'rdOP6W8m', '6053198'), + (174, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'rdOP6W8m', '6056085'), + (174, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'rdOP6W8m', '6056916'), + (174, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'rdOP6W8m', '6059290'), + (174, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'rdOP6W8m', '6060328'), + (174, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'rdOP6W8m', '6061037'), + (174, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'rdOP6W8m', '6061039'), + (174, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'rdOP6W8m', '6065813'), + (174, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'rdOP6W8m', '6067245'), + (174, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'rdOP6W8m', '6068094'), + (174, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'rdOP6W8m', '6068252'), + (174, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'rdOP6W8m', '6068253'), + (174, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'rdOP6W8m', '6068254'), + (174, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'rdOP6W8m', '6068280'), + (174, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'rdOP6W8m', '6069093'), + (174, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'rdOP6W8m', '6072528'), + (174, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'rdOP6W8m', '6075556'), + (174, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'rdOP6W8m', '6079840'), + (174, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'rdOP6W8m', '6083398'), + (174, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'rdOP6W8m', '6093504'), + (174, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'rdOP6W8m', '6097414'), + (174, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'rdOP6W8m', '6097442'), + (174, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'rdOP6W8m', '6097684'), + (174, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'rdOP6W8m', '6098762'), + (174, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'rdOP6W8m', '6101362'), + (174, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'rdOP6W8m', '6107314'), + (174, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'rdOP6W8m', '6337970'), + (174, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'rdOP6W8m', '6342044'), + (174, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'rdOP6W8m', '6343294'), + (174, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'rdOP6W8m', '6347034'), + (174, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'rdOP6W8m', '6347056'), + (174, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'rdOP6W8m', '6353830'), + (174, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'rdOP6W8m', '6353831'), + (174, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'rdOP6W8m', '6357867'), + (174, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'rdOP6W8m', '6358652'), + (174, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'rdOP6W8m', '6361709'), + (174, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'rdOP6W8m', '6361710'), + (174, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'rdOP6W8m', '6361711'), + (174, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'rdOP6W8m', '6361712'), + (174, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'rdOP6W8m', '6361713'), + (174, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'rdOP6W8m', '6382573'), + (174, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'rdOP6W8m', '6388604'), + (174, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'rdOP6W8m', '6394629'), + (174, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'rdOP6W8m', '6394631'), + (174, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'rdOP6W8m', '6440863'), + (174, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'rdOP6W8m', '6445440'), + (174, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'rdOP6W8m', '6453951'), + (174, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'rdOP6W8m', '6461696'), + (174, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'rdOP6W8m', '6462129'), + (174, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'rdOP6W8m', '6463218'), + (174, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'rdOP6W8m', '6472181'), + (174, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'rdOP6W8m', '6482693'), + (174, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'rdOP6W8m', '6484200'), + (174, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'rdOP6W8m', '6484680'), + (174, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'rdOP6W8m', '6507741'), + (174, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'rdOP6W8m', '6514659'), + (174, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'rdOP6W8m', '6514660'), + (174, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'rdOP6W8m', '6519103'), + (174, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'rdOP6W8m', '6535681'), + (174, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'rdOP6W8m', '6584747'), + (174, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'rdOP6W8m', '6587097'), + (174, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'rdOP6W8m', '6609022'), + (174, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'rdOP6W8m', '6632757'), + (174, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'rdOP6W8m', '6644187'), + (174, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'rdOP6W8m', '6648951'), + (174, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'rdOP6W8m', '6648952'), + (174, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'rdOP6W8m', '6655401'), + (174, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'rdOP6W8m', '6661585'), + (174, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'rdOP6W8m', '6661588'), + (174, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'rdOP6W8m', '6661589'), + (174, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'rdOP6W8m', '6699906'), + (174, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'rdOP6W8m', '6699913'), + (174, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'rdOP6W8m', '6701109'), + (174, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'rdOP6W8m', '6705219'), + (174, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'rdOP6W8m', '6710153'), + (174, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'rdOP6W8m', '6711552'), + (174, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'rdOP6W8m', '6711553'), + (174, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'rdOP6W8m', '6722688'), + (174, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'rdOP6W8m', '6730620'), + (174, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'rdOP6W8m', '6740364'), + (174, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'rdOP6W8m', '6743829'), + (174, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'rdOP6W8m', '7030380'), + (174, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'rdOP6W8m', '7033677'), + (174, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'rdOP6W8m', '7044715'), + (174, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'rdOP6W8m', '7050318'), + (174, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'rdOP6W8m', '7050319'), + (174, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'rdOP6W8m', '7050322'), + (174, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'rdOP6W8m', '7057804'), + (174, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'rdOP6W8m', '7072824'), + (174, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'rdOP6W8m', '7074348'), + (174, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'rdOP6W8m', '7074364'), + (174, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'rdOP6W8m', '7089267'), + (174, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'rdOP6W8m', '7098747'), + (174, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'rdOP6W8m', '7113468'), + (174, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'rdOP6W8m', '7114856'), + (174, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'rdOP6W8m', '7114951'), + (174, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'rdOP6W8m', '7114955'), + (174, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'rdOP6W8m', '7114956'), + (174, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'rdOP6W8m', '7114957'), + (174, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'rdOP6W8m', '7159484'), + (174, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'rdOP6W8m', '7178446'), + (174, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'rdOP6W8m', '7220467'), + (174, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'rdOP6W8m', '7240354'), + (174, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'rdOP6W8m', '7251633'), + (174, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'rdOP6W8m', '7324073'), + (174, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'rdOP6W8m', '7324074'), + (174, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'rdOP6W8m', '7324075'), + (174, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'rdOP6W8m', '7324078'), + (174, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'rdOP6W8m', '7324082'), + (174, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'rdOP6W8m', '7331457'), + (174, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'rdOP6W8m', '7363643'), + (174, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'rdOP6W8m', '7368606'), + (174, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'rdOP6W8m', '7397462'), + (174, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'rdOP6W8m', '7424275'), + (174, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'rdOP6W8m', '7432751'), + (174, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'rdOP6W8m', '7432752'), + (174, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'rdOP6W8m', '7432753'), + (174, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'rdOP6W8m', '7432754'), + (174, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'rdOP6W8m', '7432755'), + (174, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'rdOP6W8m', '7432756'), + (174, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'rdOP6W8m', '7432758'), + (174, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'rdOP6W8m', '7432759'), + (174, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'rdOP6W8m', '7433834'), + (174, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'rdOP6W8m', '7470197'), + (174, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'rdOP6W8m', '7685613'), + (174, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'rdOP6W8m', '7688194'), + (174, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'rdOP6W8m', '7688196'), + (174, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'rdOP6W8m', '7688289'), + (174, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'rdOP6W8m', '7692763'), + (174, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'rdOP6W8m', '7697552'), + (174, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'rdOP6W8m', '7699878'), + (174, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'rdOP6W8m', '7704043'), + (174, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'rdOP6W8m', '7712467'), + (174, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'rdOP6W8m', '7713585'), + (174, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'rdOP6W8m', '7713586'), + (174, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'rdOP6W8m', '7738518'), + (174, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'rdOP6W8m', '7750636'), + (174, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'rdOP6W8m', '7796540'), + (174, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'rdOP6W8m', '7796541'), + (174, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'rdOP6W8m', '7796542'), + (174, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'rdOP6W8m', '7825913'), + (174, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'rdOP6W8m', '7826209'), + (174, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'rdOP6W8m', '7834742'), + (174, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'rdOP6W8m', '7842108'), + (174, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'rdOP6W8m', '7842902'), + (174, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'rdOP6W8m', '7842903'), + (174, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'rdOP6W8m', '7842904'), + (174, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'rdOP6W8m', '7842905'), + (174, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'rdOP6W8m', '7855719'), + (174, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'rdOP6W8m', '7860683'), + (174, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'rdOP6W8m', '7860684'), + (174, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'rdOP6W8m', '7866095'), + (174, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'rdOP6W8m', '7869170'), + (174, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'rdOP6W8m', '7869188'), + (174, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'rdOP6W8m', '7869201'), + (174, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'rdOP6W8m', '7877465'), + (174, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'rdOP6W8m', '7888250'), + (174, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'rdOP6W8m', '7904777'), + (174, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'rdOP6W8m', '8349164'), + (174, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'rdOP6W8m', '8349545'), + (174, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'rdOP6W8m', '8368028'), + (174, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'rdOP6W8m', '8368029'), + (174, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'rdOP6W8m', '8388462'), + (174, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'rdOP6W8m', '8400273'), + (174, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'rdOP6W8m', '8400275'), + (174, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'rdOP6W8m', '8400276'), + (174, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'rdOP6W8m', '8404977'), + (174, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'rdOP6W8m', '8430783'), + (174, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'rdOP6W8m', '8430784'), + (174, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'rdOP6W8m', '8430799'), + (174, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'rdOP6W8m', '8430800'), + (174, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'rdOP6W8m', '8430801'), + (174, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'rdOP6W8m', '8438709'), + (174, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'rdOP6W8m', '8457738'), + (174, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'rdOP6W8m', '8459566'), + (174, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'rdOP6W8m', '8459567'), + (174, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'rdOP6W8m', '8461032'), + (174, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'rdOP6W8m', '8477877'), + (174, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'rdOP6W8m', '8485688'), + (174, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'rdOP6W8m', '8490587'), + (174, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'rdOP6W8m', '8493552'), + (174, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'rdOP6W8m', '8493553'), + (174, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'rdOP6W8m', '8493554'), + (174, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'rdOP6W8m', '8493555'), + (174, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'rdOP6W8m', '8493556'), + (174, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'rdOP6W8m', '8493557'), + (174, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'rdOP6W8m', '8493558'), + (174, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'rdOP6W8m', '8493559'), + (174, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'rdOP6W8m', '8493560'), + (174, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'rdOP6W8m', '8493561'), + (174, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'rdOP6W8m', '8493572'), + (174, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'rdOP6W8m', '8540725'), + (174, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'rdOP6W8m', '8555421'), + (175, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dxD095Gd', '4694407'), + (175, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dxD095Gd', '4736497'), + (175, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dxD095Gd', '4736500'), + (175, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dxD095Gd', '4746789'), + (175, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dxD095Gd', '4753929'), + (175, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dxD095Gd', '6045684'), + (176, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mMbOKBYA', '5880940'), + (176, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mMbOKBYA', '5880942'), + (176, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mMbOKBYA', '5880943'), + (176, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mMbOKBYA', '5900199'), + (176, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mMbOKBYA', '5900200'), + (176, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mMbOKBYA', '5900202'), + (176, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mMbOKBYA', '5900203'), + (176, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mMbOKBYA', '5901108'), + (176, 1896, 'attending', '2023-02-03 03:29:49', '2025-12-17 19:47:06', 'mMbOKBYA', '5901126'), + (176, 1897, 'maybe', '2023-02-10 21:11:10', '2025-12-17 19:47:07', 'mMbOKBYA', '5901128'), + (176, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mMbOKBYA', '5909655'), + (176, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mMbOKBYA', '5910522'), + (176, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mMbOKBYA', '5910526'), + (176, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mMbOKBYA', '5910528'), + (176, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mMbOKBYA', '5916219'), + (176, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mMbOKBYA', '5936234'), + (176, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mMbOKBYA', '5958351'), + (176, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mMbOKBYA', '5959751'), + (176, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mMbOKBYA', '5959755'), + (176, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mMbOKBYA', '5960055'), + (176, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mMbOKBYA', '5961684'), + (176, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mMbOKBYA', '5962132'), + (176, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mMbOKBYA', '5962133'), + (176, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mMbOKBYA', '5962134'), + (176, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mMbOKBYA', '5962317'), + (176, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mMbOKBYA', '5962318'), + (176, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mMbOKBYA', '5965933'), + (176, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mMbOKBYA', '5967014'), + (176, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mMbOKBYA', '5972815'), + (176, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mMbOKBYA', '5974016'), + (176, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mMbOKBYA', '5981515'), + (176, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mMbOKBYA', '5993516'), + (176, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mMbOKBYA', '5998939'), + (176, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mMbOKBYA', '6028191'), + (176, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mMbOKBYA', '6040066'), + (176, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mMbOKBYA', '6042717'), + (176, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mMbOKBYA', '6044838'), + (176, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mMbOKBYA', '6044839'), + (176, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mMbOKBYA', '6045684'), + (176, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mMbOKBYA', '6050104'), + (176, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mMbOKBYA', '6053195'), + (176, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mMbOKBYA', '6053198'), + (176, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mMbOKBYA', '6056085'), + (176, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mMbOKBYA', '6056916'), + (176, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mMbOKBYA', '6059290'), + (176, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mMbOKBYA', '6060328'), + (176, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mMbOKBYA', '6061037'), + (176, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mMbOKBYA', '6061039'), + (176, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mMbOKBYA', '6067245'), + (176, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mMbOKBYA', '6068094'), + (176, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mMbOKBYA', '6068252'), + (176, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mMbOKBYA', '6068253'), + (176, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mMbOKBYA', '6068254'), + (176, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mMbOKBYA', '6068280'), + (176, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mMbOKBYA', '6069093'), + (176, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mMbOKBYA', '6072528'), + (176, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mMbOKBYA', '6079840'), + (176, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mMbOKBYA', '6083398'), + (176, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mMbOKBYA', '6093504'), + (176, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mMbOKBYA', '6097414'), + (176, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mMbOKBYA', '6097442'), + (176, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mMbOKBYA', '6097684'), + (176, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mMbOKBYA', '6098762'), + (176, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mMbOKBYA', '6101362'), + (176, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mMbOKBYA', '6103752'), + (176, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mMbOKBYA', '6107314'), + (177, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4WP20JPd', '4356801'), + (177, 973, 'attending', '2021-08-21 11:43:39', '2025-12-17 19:47:42', '4WP20JPd', '4366186'), + (177, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:42', '4WP20JPd', '4366187'), + (177, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4WP20JPd', '4420735'), + (177, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4WP20JPd', '4420738'), + (177, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', '4WP20JPd', '4420739'), + (177, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4WP20JPd', '4420741'), + (177, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4WP20JPd', '4420744'), + (177, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4WP20JPd', '4420747'), + (177, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4WP20JPd', '4420748'), + (177, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4WP20JPd', '4420749'), + (177, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4WP20JPd', '4461883'), + (177, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4WP20JPd', '4508342'), + (177, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4WP20JPd', '4568602'), + (177, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4WP20JPd', '4572153'), + (177, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4WP20JPd', '4585962'), + (177, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4WP20JPd', '4596356'), + (177, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4WP20JPd', '4598860'), + (177, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4WP20JPd', '4598861'), + (177, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4WP20JPd', '4602797'), + (177, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4WP20JPd', '4637896'), + (177, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4WP20JPd', '4642994'), + (177, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4WP20JPd', '4642995'), + (177, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4WP20JPd', '4642996'), + (177, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4WP20JPd', '4642997'), + (177, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4WP20JPd', '4645687'), + (177, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4WP20JPd', '4645698'), + (177, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4WP20JPd', '4645704'), + (177, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4WP20JPd', '4645705'), + (177, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4WP20JPd', '4668385'), + (177, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WP20JPd', '6045684'), + (178, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'AQRkr1a4', '5513985'), + (178, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'AQRkr1a4', '5534683'), + (178, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AQRkr1a4', '5537735'), + (178, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AQRkr1a4', '5540859'), + (178, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AQRkr1a4', '5555245'), + (178, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AQRkr1a4', '5557747'), + (178, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AQRkr1a4', '5560255'), + (178, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AQRkr1a4', '5562906'), + (178, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AQRkr1a4', '5600604'), + (178, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AQRkr1a4', '5605544'), + (178, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AQRkr1a4', '5635406'), + (178, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AQRkr1a4', '5638765'), + (178, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'AQRkr1a4', '5640843'), + (178, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQRkr1a4', '6045684'), + (179, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', 'mj6BxZbm', '5426882'), + (179, 1513, 'attending', '2022-07-16 01:15:13', '2025-12-17 19:47:19', 'mj6BxZbm', '5441125'), + (179, 1514, 'attending', '2022-07-22 02:27:59', '2025-12-17 19:47:20', 'mj6BxZbm', '5441126'), + (179, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mj6BxZbm', '5441128'), + (179, 1516, 'attending', '2022-08-20 20:47:33', '2025-12-17 19:47:23', 'mj6BxZbm', '5441129'), + (179, 1517, 'attending', '2022-08-26 18:54:18', '2025-12-17 19:47:23', 'mj6BxZbm', '5441130'), + (179, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mj6BxZbm', '5441131'), + (179, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mj6BxZbm', '5441132'), + (179, 1528, 'not_attending', '2022-07-17 17:31:19', '2025-12-17 19:47:20', 'mj6BxZbm', '5446643'), + (179, 1536, 'attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'mj6BxZbm', '5449068'), + (179, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mj6BxZbm', '5453325'), + (179, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mj6BxZbm', '5454516'), + (179, 1544, 'attending', '2022-09-17 18:02:23', '2025-12-17 19:47:11', 'mj6BxZbm', '5454517'), + (179, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mj6BxZbm', '5454605'), + (179, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mj6BxZbm', '5455037'), + (179, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mj6BxZbm', '5461278'), + (179, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mj6BxZbm', '5469480'), + (179, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mj6BxZbm', '5471073'), + (179, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mj6BxZbm', '5474663'), + (179, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mj6BxZbm', '5482022'), + (179, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mj6BxZbm', '5482793'), + (179, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mj6BxZbm', '5488912'), + (179, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mj6BxZbm', '5492192'), + (179, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mj6BxZbm', '5493139'), + (179, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mj6BxZbm', '5493200'), + (179, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mj6BxZbm', '5502188'), + (179, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mj6BxZbm', '5505059'), + (179, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mj6BxZbm', '5509055'), + (179, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mj6BxZbm', '5512862'), + (179, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mj6BxZbm', '5513985'), + (179, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mj6BxZbm', '5519981'), + (179, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mj6BxZbm', '5522550'), + (179, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mj6BxZbm', '5534683'), + (179, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mj6BxZbm', '5537735'), + (179, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mj6BxZbm', '5540859'), + (179, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mj6BxZbm', '5546619'), + (179, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mj6BxZbm', '5555245'), + (179, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mj6BxZbm', '5557747'), + (179, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mj6BxZbm', '5560255'), + (179, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mj6BxZbm', '5562906'), + (179, 1668, 'attending', '2022-10-01 17:43:01', '2025-12-17 19:47:12', 'mj6BxZbm', '5563222'), + (179, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mj6BxZbm', '5600604'), + (179, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mj6BxZbm', '5605544'), + (179, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'mj6BxZbm', '5606737'), + (179, 1719, 'attending', '2022-10-07 14:56:13', '2025-12-17 19:47:12', 'mj6BxZbm', '5630958'), + (179, 1720, 'attending', '2022-10-15 19:14:21', '2025-12-17 19:47:12', 'mj6BxZbm', '5630959'), + (179, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mj6BxZbm', '5630960'), + (179, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mj6BxZbm', '5630961'), + (179, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mj6BxZbm', '5630962'), + (179, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mj6BxZbm', '5630966'), + (179, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mj6BxZbm', '5630967'), + (179, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mj6BxZbm', '5630968'), + (179, 1727, 'attending', '2022-12-03 04:00:26', '2025-12-17 19:47:16', 'mj6BxZbm', '5630969'), + (179, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mj6BxZbm', '5635406'), + (179, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mj6BxZbm', '5638765'), + (179, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mj6BxZbm', '5640097'), + (179, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mj6BxZbm', '5640843'), + (179, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mj6BxZbm', '5641521'), + (179, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mj6BxZbm', '5642818'), + (179, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mj6BxZbm', '5652395'), + (179, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mj6BxZbm', '5670445'), + (179, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mj6BxZbm', '5671637'), + (179, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mj6BxZbm', '5672329'), + (179, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mj6BxZbm', '5674057'), + (179, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mj6BxZbm', '5674060'), + (179, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mj6BxZbm', '5677461'), + (179, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mj6BxZbm', '5698046'), + (179, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mj6BxZbm', '5699760'), + (179, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mj6BxZbm', '5741601'), + (179, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mj6BxZbm', '5763458'), + (179, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mj6BxZbm', '5774172'), + (179, 1832, 'not_attending', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'mj6BxZbm', '5818247'), + (179, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mj6BxZbm', '5819471'), + (179, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mj6BxZbm', '5827739'), + (179, 1843, 'attending', '2022-12-18 00:01:06', '2025-12-17 19:47:04', 'mj6BxZbm', '5844304'), + (179, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mj6BxZbm', '5844306'), + (179, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mj6BxZbm', '5850159'), + (179, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mj6BxZbm', '5858999'), + (179, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mj6BxZbm', '5871984'), + (179, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mj6BxZbm', '5876354'), + (179, 1864, 'attending', '2023-01-21 21:48:13', '2025-12-17 19:47:05', 'mj6BxZbm', '5879675'), + (179, 1865, 'attending', '2023-01-28 19:13:39', '2025-12-17 19:47:06', 'mj6BxZbm', '5879676'), + (179, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mj6BxZbm', '5880939'), + (179, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mj6BxZbm', '5880940'), + (179, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mj6BxZbm', '5880942'), + (179, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mj6BxZbm', '5880943'), + (179, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mj6BxZbm', '5887890'), + (179, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mj6BxZbm', '5888598'), + (179, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mj6BxZbm', '5893260'), + (179, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mj6BxZbm', '5899826'), + (179, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mj6BxZbm', '5900199'), + (179, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mj6BxZbm', '5900200'), + (179, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mj6BxZbm', '5900202'), + (179, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mj6BxZbm', '5900203'), + (179, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mj6BxZbm', '5901108'), + (179, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mj6BxZbm', '5901126'), + (179, 1897, 'attending', '2023-02-11 22:28:29', '2025-12-17 19:47:07', 'mj6BxZbm', '5901128'), + (179, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mj6BxZbm', '5909655'), + (179, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mj6BxZbm', '5910522'), + (179, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mj6BxZbm', '5910526'), + (179, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mj6BxZbm', '5910528'), + (179, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mj6BxZbm', '5916219'), + (179, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mj6BxZbm', '5936234'), + (179, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mj6BxZbm', '5958351'), + (179, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mj6BxZbm', '5959751'), + (179, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mj6BxZbm', '5959755'), + (179, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mj6BxZbm', '5960055'), + (179, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mj6BxZbm', '5961684'), + (179, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mj6BxZbm', '5962132'), + (179, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mj6BxZbm', '5962133'), + (179, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mj6BxZbm', '5962134'), + (179, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mj6BxZbm', '5962317'), + (179, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mj6BxZbm', '5962318'), + (179, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mj6BxZbm', '5965933'), + (179, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mj6BxZbm', '5967014'), + (179, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mj6BxZbm', '5972815'), + (179, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mj6BxZbm', '5974016'), + (179, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mj6BxZbm', '5981515'), + (179, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mj6BxZbm', '5993516'), + (179, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mj6BxZbm', '5998939'), + (179, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mj6BxZbm', '6028191'), + (179, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mj6BxZbm', '6040066'), + (179, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mj6BxZbm', '6042717'), + (179, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mj6BxZbm', '6044838'), + (179, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mj6BxZbm', '6044839'), + (179, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj6BxZbm', '6045684'), + (179, 1991, 'not_attending', '2023-04-01 22:27:06', '2025-12-17 19:46:58', 'mj6BxZbm', '6047354'), + (179, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mj6BxZbm', '6050104'), + (179, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mj6BxZbm', '6053195'), + (179, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mj6BxZbm', '6053198'), + (179, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mj6BxZbm', '6056085'), + (179, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mj6BxZbm', '6056916'), + (179, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mj6BxZbm', '6059290'), + (179, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mj6BxZbm', '6060328'), + (179, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mj6BxZbm', '6061037'), + (179, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mj6BxZbm', '6061039'), + (179, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mj6BxZbm', '6067245'), + (179, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mj6BxZbm', '6068094'), + (179, 2028, 'maybe', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mj6BxZbm', '6068252'), + (179, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mj6BxZbm', '6068253'), + (179, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mj6BxZbm', '6068254'), + (179, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'mj6BxZbm', '6068280'), + (179, 2032, 'attending', '2023-06-03 22:20:58', '2025-12-17 19:47:04', 'mj6BxZbm', '6068281'), + (179, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mj6BxZbm', '6069093'), + (179, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mj6BxZbm', '6072528'), + (179, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mj6BxZbm', '6079840'), + (179, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mj6BxZbm', '6083398'), + (179, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'mj6BxZbm', '6093504'), + (179, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mj6BxZbm', '6097414'), + (179, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mj6BxZbm', '6097442'), + (179, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mj6BxZbm', '6097684'), + (179, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mj6BxZbm', '6098762'), + (179, 2064, 'not_attending', '2023-06-24 12:27:52', '2025-12-17 19:46:50', 'mj6BxZbm', '6099988'), + (179, 2065, 'attending', '2023-06-17 17:06:59', '2025-12-17 19:46:49', 'mj6BxZbm', '6101169'), + (179, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mj6BxZbm', '6101361'), + (179, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mj6BxZbm', '6101362'), + (179, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mj6BxZbm', '6103752'), + (179, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mj6BxZbm', '6107314'), + (179, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mj6BxZbm', '6120034'), + (179, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mj6BxZbm', '6136733'), + (179, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mj6BxZbm', '6137989'), + (179, 2097, 'attending', '2023-06-10 19:18:24', '2025-12-17 19:47:04', 'mj6BxZbm', '6139059'), + (179, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mj6BxZbm', '6150864'), + (179, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mj6BxZbm', '6155491'), + (179, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mj6BxZbm', '6164417'), + (179, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mj6BxZbm', '6166388'), + (179, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mj6BxZbm', '6176439'), + (179, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'mj6BxZbm', '6182410'), + (179, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mj6BxZbm', '6185812'), + (179, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mj6BxZbm', '6187651'), + (179, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mj6BxZbm', '6187963'), + (179, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mj6BxZbm', '6187964'), + (179, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mj6BxZbm', '6187966'), + (179, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mj6BxZbm', '6187967'), + (179, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mj6BxZbm', '6187969'), + (179, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mj6BxZbm', '6334878'), + (179, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mj6BxZbm', '6337236'), + (179, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mj6BxZbm', '6337970'), + (179, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mj6BxZbm', '6338308'), + (179, 2159, 'attending', '2023-07-22 18:58:56', '2025-12-17 19:46:53', 'mj6BxZbm', '6338355'), + (179, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mj6BxZbm', '6340845'), + (179, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mj6BxZbm', '6341710'), + (179, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mj6BxZbm', '6342044'), + (179, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mj6BxZbm', '6342298'), + (179, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mj6BxZbm', '6343294'), + (179, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mj6BxZbm', '6347034'), + (179, 2177, 'attending', '2023-08-12 18:39:22', '2025-12-17 19:46:55', 'mj6BxZbm', '6347053'), + (179, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mj6BxZbm', '6347056'), + (179, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mj6BxZbm', '6353830'), + (179, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mj6BxZbm', '6353831'), + (179, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mj6BxZbm', '6357867'), + (179, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mj6BxZbm', '6358652'), + (179, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mj6BxZbm', '6361709'), + (179, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mj6BxZbm', '6361710'), + (179, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mj6BxZbm', '6361711'), + (179, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mj6BxZbm', '6361712'), + (179, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mj6BxZbm', '6361713'), + (179, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mj6BxZbm', '6382573'), + (179, 2239, 'attending', '2023-09-02 14:30:23', '2025-12-17 19:46:56', 'mj6BxZbm', '6387592'), + (179, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mj6BxZbm', '6388604'), + (179, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mj6BxZbm', '6394629'), + (179, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mj6BxZbm', '6394631'), + (179, 2253, 'attending', '2023-09-30 21:31:45', '2025-12-17 19:46:45', 'mj6BxZbm', '6401811'), + (179, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mj6BxZbm', '6440863'), + (179, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mj6BxZbm', '6445440'), + (179, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mj6BxZbm', '6453951'), + (179, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mj6BxZbm', '6461696'), + (179, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mj6BxZbm', '6462129'), + (179, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mj6BxZbm', '6463218'), + (179, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mj6BxZbm', '6472181'), + (179, 2303, 'attending', '2023-10-28 19:04:35', '2025-12-17 19:46:47', 'mj6BxZbm', '6482691'), + (179, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mj6BxZbm', '6482693'), + (179, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mj6BxZbm', '6484200'), + (179, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mj6BxZbm', '6484680'), + (179, 2310, 'not_attending', '2023-11-10 21:07:26', '2025-12-17 19:46:47', 'mj6BxZbm', '6487709'), + (179, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mj6BxZbm', '6507741'), + (179, 2322, 'attending', '2023-11-18 19:54:19', '2025-12-17 19:46:48', 'mj6BxZbm', '6514659'), + (179, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mj6BxZbm', '6514660'), + (179, 2324, 'not_attending', '2023-12-09 23:41:06', '2025-12-17 19:46:49', 'mj6BxZbm', '6514662'), + (179, 2325, 'not_attending', '2023-12-16 21:13:01', '2025-12-17 19:46:36', 'mj6BxZbm', '6514663'), + (179, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mj6BxZbm', '6519103'), + (179, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mj6BxZbm', '6535681'), + (179, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mj6BxZbm', '6584747'), + (179, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mj6BxZbm', '6587097'), + (179, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mj6BxZbm', '6609022'), + (179, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mj6BxZbm', '6632757'), + (179, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mj6BxZbm', '6644187'), + (179, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mj6BxZbm', '6648951'), + (179, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mj6BxZbm', '6648952'), + (179, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mj6BxZbm', '6655401'), + (179, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mj6BxZbm', '6661585'), + (179, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mj6BxZbm', '6661588'), + (179, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mj6BxZbm', '6661589'), + (179, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mj6BxZbm', '6699906'), + (179, 2408, 'attending', '2024-01-27 18:21:41', '2025-12-17 19:46:40', 'mj6BxZbm', '6699907'), + (179, 2409, 'attending', '2024-02-03 20:32:59', '2025-12-17 19:46:41', 'mj6BxZbm', '6699909'), + (179, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'mj6BxZbm', '6699913'), + (179, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mj6BxZbm', '6701109'), + (179, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mj6BxZbm', '6705219'), + (179, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mj6BxZbm', '6710153'), + (179, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mj6BxZbm', '6711552'), + (179, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'mj6BxZbm', '6711553'), + (179, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mj6BxZbm', '6722688'), + (179, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mj6BxZbm', '6730620'), + (179, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mj6BxZbm', '6730642'), + (179, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mj6BxZbm', '6740364'), + (179, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mj6BxZbm', '6743829'), + (179, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mj6BxZbm', '7030380'), + (179, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mj6BxZbm', '7033677'), + (179, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mj6BxZbm', '7035415'), + (179, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mj6BxZbm', '7044715'), + (179, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mj6BxZbm', '7050318'), + (179, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mj6BxZbm', '7050319'), + (179, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mj6BxZbm', '7050322'), + (179, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mj6BxZbm', '7057804'), + (179, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'mj6BxZbm', '7059866'), + (179, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mj6BxZbm', '7072824'), + (179, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mj6BxZbm', '7074348'), + (179, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mj6BxZbm', '7074364'), + (179, 2539, 'not_attending', '2024-04-06 21:46:53', '2025-12-17 19:46:33', 'mj6BxZbm', '7085486'), + (179, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mj6BxZbm', '7089267'), + (179, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mj6BxZbm', '7098747'), + (179, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mj6BxZbm', '7113468'), + (179, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mj6BxZbm', '7114856'), + (179, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mj6BxZbm', '7114951'), + (179, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mj6BxZbm', '7114955'), + (179, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mj6BxZbm', '7114956'), + (179, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mj6BxZbm', '7114957'), + (179, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mj6BxZbm', '7153615'), + (179, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mj6BxZbm', '7159484'), + (179, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mj6BxZbm', '7178446'), + (179, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mj6BxZbm', '7220467'), + (179, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mj6BxZbm', '7240354'), + (179, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mj6BxZbm', '7251633'), + (179, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mj6BxZbm', '7263048'), + (179, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mj6BxZbm', '7302674'), + (179, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mj6BxZbm', '7324073'), + (179, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mj6BxZbm', '7324074'), + (179, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mj6BxZbm', '7324075'), + (179, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mj6BxZbm', '7324078'), + (179, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mj6BxZbm', '7324082'), + (179, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mj6BxZbm', '7331457'), + (179, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mj6BxZbm', '7356752'), + (179, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mj6BxZbm', '7363643'), + (179, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mj6BxZbm', '7368606'), + (179, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mj6BxZbm', '7397462'), + (179, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mj6BxZbm', '7424275'), + (179, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mj6BxZbm', '7424276'), + (179, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mj6BxZbm', '7432751'), + (179, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mj6BxZbm', '7432752'), + (179, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mj6BxZbm', '7432753'), + (179, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mj6BxZbm', '7432754'), + (179, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mj6BxZbm', '7432755'), + (179, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mj6BxZbm', '7432756'), + (179, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mj6BxZbm', '7432758'), + (179, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mj6BxZbm', '7432759'), + (179, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mj6BxZbm', '7433834'), + (179, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mj6BxZbm', '7470197'), + (179, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mj6BxZbm', '7685613'), + (179, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mj6BxZbm', '7688194'), + (179, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mj6BxZbm', '7688196'), + (179, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mj6BxZbm', '7688289'), + (180, 1714, 'attending', '2022-10-27 19:54:07', '2025-12-17 19:47:14', 'AYVQOGo4', '5622347'), + (180, 1722, 'not_attending', '2022-10-27 16:45:54', '2025-12-17 19:47:14', 'AYVQOGo4', '5630961'), + (180, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AYVQOGo4', '5630962'), + (180, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AYVQOGo4', '5630966'), + (180, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AYVQOGo4', '5630967'), + (180, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AYVQOGo4', '5630968'), + (180, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AYVQOGo4', '5642818'), + (180, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AYVQOGo4', '5698046'), + (180, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'AYVQOGo4', '5699760'), + (180, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AYVQOGo4', '5741601'), + (180, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AYVQOGo4', '5763458'), + (180, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AYVQOGo4', '5774172'), + (180, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYVQOGo4', '6045684'), + (181, 2517, 'maybe', '2024-06-27 20:14:16', '2025-12-17 19:46:29', 'mqnGJx1A', '7074357'), + (181, 2521, 'attending', '2024-06-20 20:58:36', '2025-12-17 19:46:29', 'mqnGJx1A', '7074361'), + (181, 2523, 'attending', '2024-06-03 20:00:08', '2025-12-17 19:46:36', 'mqnGJx1A', '7074363'), + (181, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mqnGJx1A', '7074364'), + (181, 2525, 'attending', '2024-06-10 11:31:35', '2025-12-17 19:46:28', 'mqnGJx1A', '7074365'), + (181, 2526, 'attending', '2024-08-01 21:03:58', '2025-12-17 19:46:31', 'mqnGJx1A', '7074366'), + (181, 2527, 'attending', '2024-06-27 20:14:34', '2025-12-17 19:46:29', 'mqnGJx1A', '7074367'), + (181, 2628, 'attending', '2024-06-01 21:39:54', '2025-12-17 19:46:36', 'mqnGJx1A', '7264725'), + (181, 2629, 'attending', '2024-06-03 20:00:16', '2025-12-17 19:46:28', 'mqnGJx1A', '7264726'), + (181, 2647, 'attending', '2024-06-05 11:50:11', '2025-12-17 19:46:28', 'mqnGJx1A', '7282057'), + (181, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'mqnGJx1A', '7291219'), + (181, 2660, 'attending', '2024-06-01 21:40:00', '2025-12-17 19:46:36', 'mqnGJx1A', '7301638'), + (181, 2661, 'maybe', '2024-06-07 20:45:57', '2025-12-17 19:46:28', 'mqnGJx1A', '7302674'), + (181, 2665, 'attending', '2024-06-04 14:53:00', '2025-12-17 19:46:36', 'mqnGJx1A', '7306370'), + (181, 2666, 'maybe', '2024-06-06 19:09:00', '2025-12-17 19:46:36', 'mqnGJx1A', '7307775'), + (181, 2678, 'attending', '2024-06-10 11:31:40', '2025-12-17 19:46:28', 'mqnGJx1A', '7319489'), + (181, 2679, 'attending', '2024-06-22 20:36:11', '2025-12-17 19:46:29', 'mqnGJx1A', '7319490'), + (181, 2683, 'attending', '2024-06-10 19:21:29', '2025-12-17 19:46:28', 'mqnGJx1A', '7321978'), + (181, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mqnGJx1A', '7324073'), + (181, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mqnGJx1A', '7324074'), + (181, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mqnGJx1A', '7324075'), + (181, 2691, 'attending', '2024-07-20 21:32:26', '2025-12-17 19:46:30', 'mqnGJx1A', '7324076'), + (181, 2692, 'attending', '2024-07-27 22:44:35', '2025-12-17 19:46:30', 'mqnGJx1A', '7324077'), + (181, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mqnGJx1A', '7324078'), + (181, 2694, 'not_attending', '2024-08-09 23:14:14', '2025-12-17 19:46:31', 'mqnGJx1A', '7324079'), + (181, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mqnGJx1A', '7324082'), + (181, 2700, 'maybe', '2024-06-13 10:58:12', '2025-12-17 19:46:28', 'mqnGJx1A', '7324388'), + (181, 2716, 'not_attending', '2024-06-22 20:36:14', '2025-12-17 19:46:29', 'mqnGJx1A', '7329096'), + (181, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mqnGJx1A', '7331457'), + (181, 2729, 'attending', '2024-06-21 21:32:28', '2025-12-17 19:46:29', 'mqnGJx1A', '7335092'), + (181, 2738, 'not_attending', '2024-06-30 23:55:17', '2025-12-17 19:46:29', 'mqnGJx1A', '7344085'), + (181, 2741, 'not_attending', '2024-06-30 23:33:56', '2025-12-17 19:46:30', 'mqnGJx1A', '7344592'), + (181, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mqnGJx1A', '7356752'), + (181, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mqnGJx1A', '7363643'), + (181, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mqnGJx1A', '7368606'), + (181, 2791, 'not_attending', '2024-08-09 23:14:22', '2025-12-17 19:46:31', 'mqnGJx1A', '7390760'), + (181, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mqnGJx1A', '7397462'), + (181, 2813, 'not_attending', '2024-09-06 16:46:16', '2025-12-17 19:46:24', 'mqnGJx1A', '7424105'), + (181, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mqnGJx1A', '7424275'), + (181, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mqnGJx1A', '7432751'), + (181, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mqnGJx1A', '7432752'), + (181, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mqnGJx1A', '7432753'), + (181, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mqnGJx1A', '7432754'), + (181, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mqnGJx1A', '7432755'), + (181, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mqnGJx1A', '7432756'), + (181, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mqnGJx1A', '7432758'), + (181, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mqnGJx1A', '7432759'), + (181, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mqnGJx1A', '7433834'), + (181, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mqnGJx1A', '7470197'), + (182, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybLjMgA', '7324075'), + (182, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybLjMgA', '7324078'), + (182, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mybLjMgA', '7331457'), + (182, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mybLjMgA', '7359624'), + (182, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mybLjMgA', '7363643'), + (182, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybLjMgA', '7368606'), + (183, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dzO1KBpm', '4694407'), + (183, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dzO1KBpm', '4736497'), + (183, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dzO1KBpm', '4736500'), + (183, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dzO1KBpm', '4746789'), + (183, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dzO1KBpm', '4753929'), + (183, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dzO1KBpm', '6045684'), + (184, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'VdxQr0Gm', '6045684'), + (185, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzOY0rRm', '6045684'), + (186, 767, 'not_attending', '2021-05-01 15:11:35', '2025-12-17 19:47:46', '2d2Ev3M4', '3722476'), + (186, 777, 'not_attending', '2021-05-01 15:10:40', '2025-12-17 19:47:46', '2d2Ev3M4', '3746248'), + (186, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2Ev3M4', '6045684'), + (187, 196, 'not_attending', '2020-08-15 19:53:37', '2025-12-17 19:47:56', 'ndaMxJad', '3087265'), + (187, 197, 'maybe', '2020-08-22 02:54:30', '2025-12-17 19:47:56', 'ndaMxJad', '3087266'), + (187, 198, 'not_attending', '2020-08-29 17:18:29', '2025-12-17 19:47:56', 'ndaMxJad', '3087267'), + (187, 199, 'not_attending', '2020-09-04 14:11:19', '2025-12-17 19:47:56', 'ndaMxJad', '3087268'), + (187, 219, 'attending', '2020-08-16 04:32:04', '2025-12-17 19:47:56', 'ndaMxJad', '3129263'), + (187, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'ndaMxJad', '3129980'), + (187, 239, 'maybe', '2020-08-25 02:25:53', '2025-12-17 19:47:56', 'ndaMxJad', '3149470'), + (187, 285, 'attending', '2020-08-25 00:07:44', '2025-12-17 19:47:56', 'ndaMxJad', '3170245'), + (187, 286, 'attending', '2020-08-25 02:26:06', '2025-12-17 19:47:56', 'ndaMxJad', '3170246'), + (187, 287, 'attending', '2020-08-28 23:21:08', '2025-12-17 19:47:56', 'ndaMxJad', '3170247'), + (187, 288, 'attending', '2020-09-02 23:57:18', '2025-12-17 19:47:56', 'ndaMxJad', '3170249'), + (187, 289, 'attending', '2020-09-04 23:33:08', '2025-12-17 19:47:56', 'ndaMxJad', '3170250'), + (187, 291, 'attending', '2020-09-11 01:22:28', '2025-12-17 19:47:56', 'ndaMxJad', '3170252'), + (187, 293, 'not_attending', '2020-08-14 20:29:51', '2025-12-17 19:47:56', 'ndaMxJad', '3172832'), + (187, 294, 'not_attending', '2020-08-14 20:29:58', '2025-12-17 19:47:56', 'ndaMxJad', '3172833'), + (187, 295, 'not_attending', '2020-08-14 20:30:10', '2025-12-17 19:47:56', 'ndaMxJad', '3172834'), + (187, 309, 'attending', '2020-08-21 01:58:37', '2025-12-17 19:47:56', 'ndaMxJad', '3185332'), + (187, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'ndaMxJad', '3186057'), + (187, 313, 'attending', '2020-08-23 02:51:04', '2025-12-17 19:47:56', 'ndaMxJad', '3188127'), + (187, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'ndaMxJad', '3191735'), + (187, 318, 'maybe', '2020-08-31 16:56:55', '2025-12-17 19:47:56', 'ndaMxJad', '3193885'), + (187, 321, 'not_attending', '2020-09-06 21:57:19', '2025-12-17 19:47:56', 'ndaMxJad', '3197077'), + (187, 324, 'maybe', '2020-09-18 13:56:29', '2025-12-17 19:47:56', 'ndaMxJad', '3197082'), + (187, 325, 'maybe', '2020-09-18 13:56:38', '2025-12-17 19:47:51', 'ndaMxJad', '3197083'), + (187, 331, 'maybe', '2020-09-01 14:59:52', '2025-12-17 19:47:56', 'ndaMxJad', '3198871'), + (187, 332, 'attending', '2020-09-10 00:20:18', '2025-12-17 19:47:56', 'ndaMxJad', '3198873'), + (187, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'ndaMxJad', '3200209'), + (187, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', 'ndaMxJad', '3200495'), + (187, 343, 'not_attending', '2020-09-21 22:56:44', '2025-12-17 19:47:56', 'ndaMxJad', '3206759'), + (187, 344, 'maybe', '2020-09-12 04:37:15', '2025-12-17 19:47:53', 'ndaMxJad', '3206906'), + (187, 362, 'not_attending', '2020-09-25 19:23:20', '2025-12-17 19:47:52', 'ndaMxJad', '3214207'), + (187, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'ndaMxJad', '3217037'), + (187, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'ndaMxJad', '3218510'), + (187, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', 'ndaMxJad', '3221403'), + (187, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'ndaMxJad', '3228698'), + (187, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'ndaMxJad', '3228699'), + (187, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'ndaMxJad', '3228700'), + (187, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'ndaMxJad', '3228701'), + (187, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'ndaMxJad', '3245751'), + (187, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'ndaMxJad', '3250232'), + (187, 432, 'maybe', '2020-10-27 22:24:41', '2025-12-17 19:47:53', 'ndaMxJad', '3254416'), + (187, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'ndaMxJad', '3256168'), + (187, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'ndaMxJad', '3263578'), + (187, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'ndaMxJad', '3276428'), + (187, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ndaMxJad', '3281467'), + (187, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'ndaMxJad', '3281470'), + (187, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'ndaMxJad', '3281829'), + (187, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'ndaMxJad', '3285413'), + (187, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'ndaMxJad', '3285414'), + (187, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ndaMxJad', '3297764'), + (187, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'ndaMxJad', '3313856'), + (187, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ndaMxJad', '3314909'), + (187, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaMxJad', '3314964'), + (187, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ndaMxJad', '3323365'), + (187, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'ndaMxJad', '3329383'), + (187, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndaMxJad', '3351539'), + (187, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndaMxJad', '3386848'), + (187, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndaMxJad', '3389527'), + (187, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndaMxJad', '3396499'), + (187, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndaMxJad', '3403650'), + (187, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaMxJad', '3406988'), + (187, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'ndaMxJad', '3408338'), + (187, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndaMxJad', '3416576'), + (187, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaMxJad', '6045684'), + (188, 2122, 'attending', '2023-07-05 22:09:03', '2025-12-17 19:46:51', 'xd96qyZm', '6176476'), + (188, 2125, 'not_attending', '2023-07-02 02:53:23', '2025-12-17 19:46:51', 'xd96qyZm', '6177485'), + (188, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xd96qyZm', '6182410'), + (188, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xd96qyZm', '6185812'), + (188, 2132, 'maybe', '2023-07-08 15:23:58', '2025-12-17 19:46:52', 'xd96qyZm', '6187015'), + (188, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xd96qyZm', '6187651'), + (188, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xd96qyZm', '6187963'), + (188, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xd96qyZm', '6187964'), + (188, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xd96qyZm', '6187966'), + (188, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xd96qyZm', '6187967'), + (188, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xd96qyZm', '6187969'), + (188, 2141, 'attending', '2023-07-08 15:23:01', '2025-12-17 19:46:52', 'xd96qyZm', '6188819'), + (188, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xd96qyZm', '6334878'), + (188, 2146, 'attending', '2023-07-20 23:05:32', '2025-12-17 19:46:53', 'xd96qyZm', '6335638'), + (188, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xd96qyZm', '6337236'), + (188, 2154, 'maybe', '2023-07-12 22:03:58', '2025-12-17 19:46:52', 'xd96qyZm', '6337689'), + (188, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xd96qyZm', '6337970'), + (188, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xd96qyZm', '6338308'), + (188, 2157, 'not_attending', '2023-07-12 21:54:30', '2025-12-17 19:46:52', 'xd96qyZm', '6338342'), + (188, 2159, 'maybe', '2023-07-18 20:59:57', '2025-12-17 19:46:53', 'xd96qyZm', '6338355'), + (188, 2160, 'attending', '2023-07-29 18:10:32', '2025-12-17 19:46:54', 'xd96qyZm', '6338358'), + (188, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xd96qyZm', '6341710'), + (188, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xd96qyZm', '6342044'), + (188, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xd96qyZm', '6342298'), + (188, 2171, 'attending', '2023-07-28 18:52:30', '2025-12-17 19:46:54', 'xd96qyZm', '6342328'), + (188, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xd96qyZm', '6343294'), + (188, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xd96qyZm', '6347034'), + (188, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xd96qyZm', '6347056'), + (188, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xd96qyZm', '6353830'), + (188, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xd96qyZm', '6353831'), + (188, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xd96qyZm', '6357867'), + (188, 2190, 'attending', '2023-08-07 22:39:49', '2025-12-17 19:46:55', 'xd96qyZm', '6357892'), + (188, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xd96qyZm', '6358652'), + (188, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'xd96qyZm', '6358668'), + (188, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'xd96qyZm', '6358669'), + (188, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xd96qyZm', '6361709'), + (188, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xd96qyZm', '6361710'), + (188, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xd96qyZm', '6361711'), + (188, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xd96qyZm', '6361712'), + (188, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xd96qyZm', '6361713'), + (188, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'xd96qyZm', '6382573'), + (188, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'xd96qyZm', '6388604'), + (188, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xd96qyZm', '6394629'), + (188, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xd96qyZm', '6394631'), + (188, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xd96qyZm', '6440863'), + (188, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xd96qyZm', '6445440'), + (188, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xd96qyZm', '6453951'), + (188, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xd96qyZm', '6461696'), + (188, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xd96qyZm', '6462129'), + (188, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xd96qyZm', '6463218'), + (188, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'xd96qyZm', '6472181'), + (188, 2304, 'maybe', '2023-10-28 02:20:59', '2025-12-17 19:46:47', 'xd96qyZm', '6482693'), + (188, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'xd96qyZm', '6484200'), + (188, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xd96qyZm', '6484680'), + (188, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xd96qyZm', '6507741'), + (188, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'xd96qyZm', '6514659'), + (188, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xd96qyZm', '6514660'), + (188, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xd96qyZm', '6519103'), + (188, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xd96qyZm', '6535681'), + (188, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xd96qyZm', '6584747'), + (188, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xd96qyZm', '6587097'), + (188, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xd96qyZm', '6609022'), + (188, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xd96qyZm', '6632757'), + (188, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xd96qyZm', '6644187'), + (188, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xd96qyZm', '6648951'), + (188, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xd96qyZm', '6648952'), + (188, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xd96qyZm', '6655401'), + (188, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xd96qyZm', '6661585'), + (188, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xd96qyZm', '6661588'), + (188, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xd96qyZm', '6661589'), + (188, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xd96qyZm', '6699906'), + (188, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'xd96qyZm', '6699913'), + (188, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xd96qyZm', '6701109'), + (188, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'xd96qyZm', '6704561'), + (188, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xd96qyZm', '6705219'), + (188, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'xd96qyZm', '6708410'), + (188, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xd96qyZm', '6710153'), + (188, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xd96qyZm', '6711552'), + (188, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xd96qyZm', '6711553'), + (188, 2435, 'not_attending', '2024-01-27 02:47:43', '2025-12-17 19:46:41', 'xd96qyZm', '6721547'), + (188, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xd96qyZm', '6722688'), + (188, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xd96qyZm', '6730620'), + (188, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xd96qyZm', '6730642'), + (188, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xd96qyZm', '6740364'), + (188, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xd96qyZm', '6743829'), + (188, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xd96qyZm', '7030380'), + (188, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xd96qyZm', '7033677'), + (188, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xd96qyZm', '7035415'), + (188, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xd96qyZm', '7044715'), + (188, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xd96qyZm', '7050318'), + (188, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xd96qyZm', '7050319'), + (188, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xd96qyZm', '7050322'), + (188, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xd96qyZm', '7057804'), + (188, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xd96qyZm', '7072824'), + (188, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xd96qyZm', '7074348'), + (188, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'xd96qyZm', '7089267'), + (188, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xd96qyZm', '7098747'), + (188, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xd96qyZm', '7113468'), + (188, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xd96qyZm', '7114856'), + (188, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xd96qyZm', '7114951'), + (188, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xd96qyZm', '7114955'), + (188, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xd96qyZm', '7114956'), + (188, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xd96qyZm', '7153615'), + (188, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xd96qyZm', '7159484'), + (189, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E5a3p04', '6045684'), + (190, 1865, 'attending', '2023-01-28 15:03:23', '2025-12-17 19:47:06', 'dKb1r7Y4', '5879676'), + (190, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dKb1r7Y4', '5880939'), + (190, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dKb1r7Y4', '5880940'), + (190, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dKb1r7Y4', '5880942'), + (190, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dKb1r7Y4', '5887890'), + (190, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dKb1r7Y4', '5888598'), + (190, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dKb1r7Y4', '5893260'), + (190, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dKb1r7Y4', '5899826'), + (190, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dKb1r7Y4', '5900199'), + (190, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dKb1r7Y4', '5900200'), + (190, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901055'), + (190, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901108'), + (190, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901126'), + (190, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901606'), + (190, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dKb1r7Y4', '5909655'), + (190, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dKb1r7Y4', '5910522'), + (190, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dKb1r7Y4', '5910526'), + (190, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dKb1r7Y4', '5910528'), + (190, 1920, 'not_attending', '2023-02-13 14:43:47', '2025-12-17 19:47:07', 'dKb1r7Y4', '5914091'), + (190, 1921, 'maybe', '2023-02-27 15:45:00', '2025-12-17 19:47:08', 'dKb1r7Y4', '5914092'), + (190, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dKb1r7Y4', '5916219'), + (190, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dKb1r7Y4', '5936234'), + (190, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'dKb1r7Y4', '5936691'), + (190, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dKb1r7Y4', '5958351'), + (190, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dKb1r7Y4', '5959751'), + (190, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dKb1r7Y4', '5959755'), + (190, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dKb1r7Y4', '5960055'), + (190, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dKb1r7Y4', '5961684'), + (190, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dKb1r7Y4', '5962132'), + (190, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dKb1r7Y4', '5962133'), + (190, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dKb1r7Y4', '5962134'), + (190, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dKb1r7Y4', '5962317'), + (190, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dKb1r7Y4', '5962318'), + (190, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKb1r7Y4', '6045684'), + (191, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Agkj0pjA', '4736497'), + (191, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Agkj0pjA', '4736499'), + (191, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Agkj0pjA', '4736500'), + (191, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Agkj0pjA', '4736503'), + (191, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Agkj0pjA', '4736504'), + (191, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Agkj0pjA', '5038850'), + (191, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Agkj0pjA', '5045826'), + (191, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Agkj0pjA', '5132533'), + (191, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Agkj0pjA', '6045684'), + (192, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybg8agA', '7074364'), + (192, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'mybg8agA', '7301638'), + (192, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybg8agA', '7324073'), + (192, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybg8agA', '7324074'), + (192, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybg8agA', '7324075'), + (192, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybg8agA', '7324078'), + (192, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybg8agA', '7324082'), + (192, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mybg8agA', '7324867'), + (192, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mybg8agA', '7331457'), + (192, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'mybg8agA', '7332564'), + (192, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'mybg8agA', '7335193'), + (192, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mybg8agA', '7359624'), + (192, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mybg8agA', '7363643'), + (192, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybg8agA', '7368606'), + (192, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybg8agA', '7397462'), + (192, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybg8agA', '7424275'), + (192, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybg8agA', '7432751'), + (192, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybg8agA', '7432752'), + (192, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybg8agA', '7432753'), + (192, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybg8agA', '7432754'), + (192, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybg8agA', '7432755'), + (192, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybg8agA', '7432756'), + (192, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybg8agA', '7432758'), + (192, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybg8agA', '7432759'), + (192, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mybg8agA', '7433834'), + (192, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybg8agA', '7470197'), + (192, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybg8agA', '7685613'), + (192, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybg8agA', '7688194'), + (192, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybg8agA', '7688196'), + (192, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybg8agA', '7688289'), + (193, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dzO9pjam', '4420744'), + (193, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dzO9pjam', '4420747'), + (193, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dzO9pjam', '4568602'), + (193, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dzO9pjam', '4572153'), + (193, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dzO9pjam', '4585962'), + (193, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dzO9pjam', '4596356'), + (193, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dzO9pjam', '4598860'), + (193, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dzO9pjam', '4598861'), + (193, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dzO9pjam', '4602797'), + (193, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dzO9pjam', '4637896'), + (193, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dzO9pjam', '4642994'), + (193, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dzO9pjam', '4642995'), + (193, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dzO9pjam', '4642996'), + (193, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dzO9pjam', '4642997'), + (193, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dzO9pjam', '4645687'), + (193, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dzO9pjam', '4645698'), + (193, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dzO9pjam', '4645704'), + (193, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dzO9pjam', '4645705'), + (193, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dzO9pjam', '4668385'), + (193, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzO9pjam', '6045684'), + (194, 262, 'attending', '2021-06-26 19:33:20', '2025-12-17 19:47:38', 'amGy6jL4', '3149493'), + (194, 727, 'maybe', '2021-06-27 03:17:19', '2025-12-17 19:47:38', 'amGy6jL4', '3661377'), + (194, 845, 'maybe', '2021-06-27 23:27:49', '2025-12-17 19:47:38', 'amGy6jL4', '4015717'), + (194, 867, 'maybe', '2021-06-26 20:08:12', '2025-12-17 19:47:38', 'amGy6jL4', '4021848'), + (194, 869, 'attending', '2021-06-30 04:50:27', '2025-12-17 19:47:38', 'amGy6jL4', '4136744'), + (194, 870, 'maybe', '2021-06-27 23:28:03', '2025-12-17 19:47:39', 'amGy6jL4', '4136937'), + (194, 871, 'attending', '2021-07-05 15:58:45', '2025-12-17 19:47:39', 'amGy6jL4', '4136938'), + (194, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'amGy6jL4', '4136947'), + (194, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGy6jL4', '4210314'), + (194, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGy6jL4', '4225444'), + (194, 899, 'maybe', '2021-07-02 18:14:14', '2025-12-17 19:47:39', 'amGy6jL4', '4239259'), + (194, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGy6jL4', '4240316'), + (194, 905, 'attending', '2021-07-05 15:58:09', '2025-12-17 19:47:39', 'amGy6jL4', '4250163'), + (194, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGy6jL4', '4275957'), + (194, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGy6jL4', '6045684'), + (195, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40kgWbKA', '6045684'), + (196, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'AQ9PRZgA', '4420744'), + (196, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'AQ9PRZgA', '4420747'), + (196, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AQ9PRZgA', '4568602'), + (196, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'AQ9PRZgA', '4572153'), + (196, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'AQ9PRZgA', '4585962'), + (196, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'AQ9PRZgA', '4596356'), + (196, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AQ9PRZgA', '4598860'), + (196, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AQ9PRZgA', '4598861'), + (196, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'AQ9PRZgA', '4602797'), + (196, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AQ9PRZgA', '4637896'), + (196, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AQ9PRZgA', '4642994'), + (196, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AQ9PRZgA', '4642995'), + (196, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AQ9PRZgA', '4642996'), + (196, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AQ9PRZgA', '4642997'), + (196, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AQ9PRZgA', '4645687'), + (196, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AQ9PRZgA', '4645698'), + (196, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AQ9PRZgA', '4645704'), + (196, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AQ9PRZgA', '4645705'), + (196, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AQ9PRZgA', '4668385'), + (196, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ9PRZgA', '6045684'), + (197, 2514, 'attending', '2024-04-20 04:09:44', '2025-12-17 19:46:34', 'Agvo9ggm', '7074354'), + (197, 2515, 'not_attending', '2024-04-30 01:43:32', '2025-12-17 19:46:35', 'Agvo9ggm', '7074355'), + (197, 2516, 'attending', '2024-04-24 04:37:47', '2025-12-17 19:46:35', 'Agvo9ggm', '7074356'), + (197, 2519, 'attending', '2024-04-30 01:43:20', '2025-12-17 19:46:36', 'Agvo9ggm', '7074359'), + (197, 2520, 'maybe', '2024-04-30 01:43:17', '2025-12-17 19:46:35', 'Agvo9ggm', '7074360'), + (197, 2521, 'attending', '2024-04-30 01:43:23', '2025-12-17 19:46:29', 'Agvo9ggm', '7074361'), + (197, 2523, 'attending', '2024-04-30 01:43:22', '2025-12-17 19:46:36', 'Agvo9ggm', '7074363'), + (197, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Agvo9ggm', '7074364'), + (197, 2525, 'attending', '2024-04-30 01:43:22', '2025-12-17 19:46:28', 'Agvo9ggm', '7074365'), + (197, 2529, 'attending', '2024-04-30 01:43:18', '2025-12-17 19:46:35', 'Agvo9ggm', '7074369'), + (197, 2556, 'not_attending', '2024-04-20 04:06:11', '2025-12-17 19:46:34', 'Agvo9ggm', '7114955'), + (197, 2557, 'attending', '2024-04-20 04:07:08', '2025-12-17 19:46:34', 'Agvo9ggm', '7114956'), + (197, 2558, 'attending', '2024-04-20 04:10:45', '2025-12-17 19:46:35', 'Agvo9ggm', '7114957'), + (197, 2576, 'maybe', '2024-04-24 04:37:28', '2025-12-17 19:46:34', 'Agvo9ggm', '7164538'), + (197, 2581, 'attending', '2024-04-20 04:09:21', '2025-12-17 19:46:34', 'Agvo9ggm', '7169048'), + (197, 2584, 'not_attending', '2024-04-20 04:06:24', '2025-12-17 19:46:34', 'Agvo9ggm', '7175057'), + (197, 2585, 'maybe', '2024-04-20 04:06:39', '2025-12-17 19:46:34', 'Agvo9ggm', '7175828'), + (197, 2595, 'attending', '2024-04-20 04:09:43', '2025-12-17 19:46:34', 'Agvo9ggm', '7182252'), + (197, 2597, 'attending', '2024-04-22 14:13:58', '2025-12-17 19:46:34', 'Agvo9ggm', '7186726'), + (197, 2599, 'attending', '2024-04-22 13:04:25', '2025-12-17 19:46:34', 'Agvo9ggm', '7189372'), + (197, 2600, 'maybe', '2024-04-24 02:21:36', '2025-12-17 19:46:35', 'Agvo9ggm', '7196794'), + (197, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Agvo9ggm', '7220467'), + (197, 2603, 'maybe', '2024-04-30 01:43:14', '2025-12-17 19:46:35', 'Agvo9ggm', '7225669'), + (197, 2604, 'attending', '2024-04-30 01:43:20', '2025-12-17 19:46:36', 'Agvo9ggm', '7225670'), + (197, 2605, 'not_attending', '2024-04-28 03:44:39', '2025-12-17 19:46:35', 'Agvo9ggm', '7229243'), + (197, 2607, 'not_attending', '2024-04-29 20:42:42', '2025-12-17 19:46:35', 'Agvo9ggm', '7240136'), + (197, 2608, 'not_attending', '2024-04-30 01:25:58', '2025-12-17 19:46:35', 'Agvo9ggm', '7240272'), + (197, 2609, 'not_attending', '2024-04-30 01:43:04', '2025-12-17 19:46:35', 'Agvo9ggm', '7240354'), + (197, 2611, 'not_attending', '2024-05-02 23:08:30', '2025-12-17 19:46:35', 'Agvo9ggm', '7247642'), + (197, 2612, 'not_attending', '2024-05-02 23:08:31', '2025-12-17 19:46:35', 'Agvo9ggm', '7247643'), + (197, 2613, 'not_attending', '2024-05-02 23:08:32', '2025-12-17 19:46:35', 'Agvo9ggm', '7247644'), + (197, 2614, 'not_attending', '2024-05-02 23:08:34', '2025-12-17 19:46:35', 'Agvo9ggm', '7247645'), + (197, 2617, 'attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Agvo9ggm', '7251633'), + (197, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'Agvo9ggm', '7263048'), + (197, 2624, 'attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', 'Agvo9ggm', '7263301'), + (197, 2625, 'not_attending', '2024-05-10 22:39:46', '2025-12-17 19:46:35', 'Agvo9ggm', '7263302'), + (197, 2626, 'not_attending', '2024-05-12 19:50:07', '2025-12-17 19:46:35', 'Agvo9ggm', '7264723'), + (197, 2627, 'attending', '2024-05-12 19:50:09', '2025-12-17 19:46:35', 'Agvo9ggm', '7264724'), + (197, 2628, 'attending', '2024-05-12 19:50:10', '2025-12-17 19:46:36', 'Agvo9ggm', '7264725'), + (197, 2629, 'attending', '2024-05-12 19:50:11', '2025-12-17 19:46:28', 'Agvo9ggm', '7264726'), + (197, 2634, 'not_attending', '2024-05-14 23:15:15', '2025-12-17 19:46:35', 'Agvo9ggm', '7270321'), + (197, 2635, 'not_attending', '2024-05-14 23:15:16', '2025-12-17 19:46:35', 'Agvo9ggm', '7270322'), + (197, 2636, 'not_attending', '2024-05-14 23:15:23', '2025-12-17 19:46:35', 'Agvo9ggm', '7270323'), + (197, 2637, 'not_attending', '2024-05-14 23:15:23', '2025-12-17 19:46:35', 'Agvo9ggm', '7270324'), + (197, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'Agvo9ggm', '7302674'), + (197, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Agvo9ggm', '7324073'), + (197, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Agvo9ggm', '7324074'), + (197, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Agvo9ggm', '7324075'), + (197, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Agvo9ggm', '7324078'), + (197, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Agvo9ggm', '7324082'), + (197, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'Agvo9ggm', '7331457'), + (197, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'Agvo9ggm', '7356752'), + (197, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'Agvo9ggm', '7363643'), + (197, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Agvo9ggm', '7368606'), + (197, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Agvo9ggm', '7397462'), + (197, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Agvo9ggm', '7424275'), + (197, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Agvo9ggm', '7424276'), + (197, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Agvo9ggm', '7432751'), + (197, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Agvo9ggm', '7432752'), + (197, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Agvo9ggm', '7432753'), + (197, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Agvo9ggm', '7432754'), + (197, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Agvo9ggm', '7432755'), + (197, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Agvo9ggm', '7432756'), + (197, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Agvo9ggm', '7432758'), + (197, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Agvo9ggm', '7432759'), + (197, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Agvo9ggm', '7433834'), + (197, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Agvo9ggm', '7470197'), + (197, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Agvo9ggm', '7685613'), + (197, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Agvo9ggm', '7688194'), + (197, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Agvo9ggm', '7688196'), + (197, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Agvo9ggm', '7688289'), + (198, 258, 'attending', '2021-06-01 22:40:16', '2025-12-17 19:47:47', 'GmjorN3A', '3149489'), + (198, 745, 'not_attending', '2021-07-02 23:36:47', '2025-12-17 19:47:38', 'GmjorN3A', '3680625'), + (198, 823, 'attending', '2021-06-15 20:34:49', '2025-12-17 19:47:48', 'GmjorN3A', '3974109'), + (198, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjorN3A', '3975311'), + (198, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjorN3A', '3975312'), + (198, 838, 'attending', '2021-06-06 20:00:05', '2025-12-17 19:47:47', 'GmjorN3A', '3994992'), + (198, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjorN3A', '4014338'), + (198, 857, 'not_attending', '2021-11-24 20:17:47', '2025-12-17 19:47:37', 'GmjorN3A', '4015731'), + (198, 867, 'attending', '2021-06-26 17:40:06', '2025-12-17 19:47:38', 'GmjorN3A', '4021848'), + (198, 869, 'attending', '2021-06-30 18:12:01', '2025-12-17 19:47:38', 'GmjorN3A', '4136744'), + (198, 870, 'attending', '2021-06-29 20:57:40', '2025-12-17 19:47:38', 'GmjorN3A', '4136937'), + (198, 871, 'attending', '2021-07-05 18:38:09', '2025-12-17 19:47:39', 'GmjorN3A', '4136938'), + (198, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjorN3A', '4136947'), + (198, 875, 'not_attending', '2021-07-01 02:11:16', '2025-12-17 19:47:38', 'GmjorN3A', '4139816'), + (198, 879, 'maybe', '2021-06-28 20:40:47', '2025-12-17 19:47:38', 'GmjorN3A', '4147806'), + (198, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjorN3A', '4210314'), + (198, 885, 'attending', '2021-06-26 20:59:02', '2025-12-17 19:47:38', 'GmjorN3A', '4222370'), + (198, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjorN3A', '4225444'), + (198, 896, 'attending', '2021-06-29 22:30:57', '2025-12-17 19:47:38', 'GmjorN3A', '4231145'), + (198, 898, 'not_attending', '2021-06-30 03:41:43', '2025-12-17 19:47:38', 'GmjorN3A', '4236746'), + (198, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjorN3A', '4239259'), + (198, 900, 'attending', '2021-07-24 17:33:53', '2025-12-17 19:47:40', 'GmjorN3A', '4240316'), + (198, 901, 'attending', '2021-07-31 21:05:34', '2025-12-17 19:47:40', 'GmjorN3A', '4240317'), + (198, 902, 'attending', '2021-08-07 15:25:26', '2025-12-17 19:47:41', 'GmjorN3A', '4240318'), + (198, 903, 'attending', '2021-08-13 20:22:38', '2025-12-17 19:47:42', 'GmjorN3A', '4240320'), + (198, 905, 'attending', '2021-07-07 20:49:29', '2025-12-17 19:47:39', 'GmjorN3A', '4250163'), + (198, 909, 'attending', '2021-07-10 19:56:00', '2025-12-17 19:47:39', 'GmjorN3A', '4258187'), + (198, 911, 'not_attending', '2021-07-13 21:21:34', '2025-12-17 19:47:39', 'GmjorN3A', '4264465'), + (198, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjorN3A', '4275957'), + (198, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjorN3A', '4277819'), + (198, 926, 'attending', '2021-08-17 20:02:15', '2025-12-17 19:47:42', 'GmjorN3A', '4297211'), + (198, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjorN3A', '4301723'), + (198, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GmjorN3A', '4302093'), + (198, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjorN3A', '4304151'), + (198, 961, 'not_attending', '2021-08-13 20:46:22', '2025-12-17 19:47:42', 'GmjorN3A', '4345519'), + (198, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjorN3A', '4356801'), + (198, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'GmjorN3A', '4358025'), + (198, 973, 'attending', '2021-08-21 20:44:56', '2025-12-17 19:47:42', 'GmjorN3A', '4366186'), + (198, 974, 'attending', '2021-08-28 21:19:53', '2025-12-17 19:47:42', 'GmjorN3A', '4366187'), + (198, 985, 'attending', '2021-08-21 02:37:59', '2025-12-17 19:47:42', 'GmjorN3A', '4391748'), + (198, 988, 'attending', '2021-08-27 22:23:47', '2025-12-17 19:47:42', 'GmjorN3A', '4402823'), + (198, 989, 'attending', '2021-09-09 02:07:58', '2025-12-17 19:47:43', 'GmjorN3A', '4414282'), + (198, 990, 'attending', '2021-09-04 03:00:08', '2025-12-17 19:47:43', 'GmjorN3A', '4420735'), + (198, 991, 'attending', '2021-09-09 02:08:23', '2025-12-17 19:47:43', 'GmjorN3A', '4420738'), + (198, 992, 'attending', '2021-09-18 18:15:24', '2025-12-17 19:47:33', 'GmjorN3A', '4420739'), + (198, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjorN3A', '4420741'), + (198, 994, 'attending', '2021-10-02 18:55:41', '2025-12-17 19:47:34', 'GmjorN3A', '4420742'), + (198, 995, 'attending', '2021-10-09 16:06:06', '2025-12-17 19:47:34', 'GmjorN3A', '4420744'), + (198, 996, 'attending', '2021-10-16 20:31:35', '2025-12-17 19:47:35', 'GmjorN3A', '4420747'), + (198, 997, 'attending', '2021-10-23 19:45:37', '2025-12-17 19:47:35', 'GmjorN3A', '4420748'), + (198, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjorN3A', '4420749'), + (198, 1019, 'maybe', '2021-09-16 22:27:54', '2025-12-17 19:47:43', 'GmjorN3A', '4450515'), + (198, 1020, 'attending', '2021-09-13 22:57:57', '2025-12-17 19:47:43', 'GmjorN3A', '4451787'), + (198, 1022, 'attending', '2021-09-15 21:33:51', '2025-12-17 19:47:43', 'GmjorN3A', '4458628'), + (198, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GmjorN3A', '4461883'), + (198, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GmjorN3A', '4508342'), + (198, 1074, 'attending', '2021-09-29 21:08:57', '2025-12-17 19:47:34', 'GmjorN3A', '4528953'), + (198, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GmjorN3A', '4568602'), + (198, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GmjorN3A', '4572153'), + (198, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GmjorN3A', '4585962'), + (198, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'GmjorN3A', '4596356'), + (198, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GmjorN3A', '4598860'), + (198, 1098, 'attending', '2021-11-08 03:18:23', '2025-12-17 19:47:36', 'GmjorN3A', '4598861'), + (198, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GmjorN3A', '4602797'), + (198, 1106, 'attending', '2021-11-10 03:29:52', '2025-12-17 19:47:36', 'GmjorN3A', '4620452'), + (198, 1107, 'not_attending', '2021-11-16 19:43:11', '2025-12-17 19:47:37', 'GmjorN3A', '4620697'), + (198, 1114, 'attending', '2021-11-12 23:30:14', '2025-12-17 19:47:36', 'GmjorN3A', '4637896'), + (198, 1116, 'not_attending', '2021-12-01 22:12:00', '2025-12-17 19:47:37', 'GmjorN3A', '4642994'), + (198, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'GmjorN3A', '4642995'), + (198, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GmjorN3A', '4642996'), + (198, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GmjorN3A', '4642997'), + (198, 1126, 'not_attending', '2021-12-12 00:31:51', '2025-12-17 19:47:38', 'GmjorN3A', '4645687'), + (198, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GmjorN3A', '4645698'), + (198, 1128, 'attending', '2021-11-20 20:20:53', '2025-12-17 19:47:37', 'GmjorN3A', '4645704'), + (198, 1129, 'attending', '2021-11-24 19:36:00', '2025-12-17 19:47:37', 'GmjorN3A', '4645705'), + (198, 1130, 'attending', '2021-12-04 20:25:39', '2025-12-17 19:47:37', 'GmjorN3A', '4658824'), + (198, 1134, 'not_attending', '2021-11-24 20:17:50', '2025-12-17 19:47:37', 'GmjorN3A', '4668385'), + (198, 1138, 'attending', '2021-11-29 21:29:19', '2025-12-17 19:47:37', 'GmjorN3A', '4675407'), + (198, 1139, 'attending', '2021-11-29 07:25:33', '2025-12-17 19:47:37', 'GmjorN3A', '4675604'), + (198, 1140, 'attending', '2021-11-30 03:52:55', '2025-12-17 19:47:37', 'GmjorN3A', '4679701'), + (198, 1142, 'attending', '2021-12-06 18:07:51', '2025-12-17 19:47:37', 'GmjorN3A', '4681923'), + (198, 1144, 'attending', '2021-12-06 18:07:34', '2025-12-17 19:47:37', 'GmjorN3A', '4687090'), + (198, 1146, 'not_attending', '2021-12-09 04:06:43', '2025-12-17 19:47:38', 'GmjorN3A', '4692841'), + (198, 1148, 'not_attending', '2021-12-17 23:47:33', '2025-12-17 19:47:31', 'GmjorN3A', '4692843'), + (198, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GmjorN3A', '4694407'), + (198, 1156, 'attending', '2021-12-18 21:32:17', '2025-12-17 19:47:31', 'GmjorN3A', '4715207'), + (198, 1164, 'attending', '2022-01-03 20:10:15', '2025-12-17 19:47:31', 'GmjorN3A', '4724208'), + (198, 1165, 'attending', '2022-01-03 20:10:16', '2025-12-17 19:47:31', 'GmjorN3A', '4724210'), + (198, 1174, 'attending', '2022-01-12 20:36:43', '2025-12-17 19:47:31', 'GmjorN3A', '4736496'), + (198, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GmjorN3A', '4736497'), + (198, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GmjorN3A', '4736499'), + (198, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GmjorN3A', '4736500'), + (198, 1179, 'attending', '2022-02-19 22:11:05', '2025-12-17 19:47:32', 'GmjorN3A', '4736501'), + (198, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GmjorN3A', '4736503'), + (198, 1182, 'not_attending', '2022-03-12 23:02:28', '2025-12-17 19:47:33', 'GmjorN3A', '4736504'), + (198, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GmjorN3A', '4746789'), + (198, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'GmjorN3A', '4753929'), + (198, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GmjorN3A', '5038850'), + (198, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GmjorN3A', '5045826'), + (198, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GmjorN3A', '5132533'), + (198, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GmjorN3A', '5186582'), + (198, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GmjorN3A', '5186583'), + (198, 1274, 'attending', '2022-04-02 16:58:35', '2025-12-17 19:47:26', 'GmjorN3A', '5186585'), + (198, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GmjorN3A', '5190437'), + (198, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GmjorN3A', '5195095'), + (198, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GmjorN3A', '5215989'), + (198, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GmjorN3A', '5223686'), + (198, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'GmjorN3A', '5227432'), + (198, 1346, 'attending', '2022-04-23 21:09:52', '2025-12-17 19:47:27', 'GmjorN3A', '5247467'), + (198, 1362, 'attending', '2022-04-30 20:03:26', '2025-12-17 19:47:28', 'GmjorN3A', '5260800'), + (198, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GmjorN3A', '5269930'), + (198, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GmjorN3A', '5271448'), + (198, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'GmjorN3A', '5271449'), + (198, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'GmjorN3A', '5276469'), + (198, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GmjorN3A', '5278159'), + (198, 1407, 'attending', '2022-06-03 22:44:17', '2025-12-17 19:47:30', 'GmjorN3A', '5363695'), + (198, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GmjorN3A', '5365960'), + (198, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'GmjorN3A', '5368973'), + (198, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GmjorN3A', '5378247'), + (198, 1431, 'attending', '2022-06-11 19:46:14', '2025-12-17 19:47:30', 'GmjorN3A', '5389605'), + (198, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GmjorN3A', '5397265'), + (198, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'GmjorN3A', '5403967'), + (198, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GmjorN3A', '5404786'), + (198, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GmjorN3A', '5405203'), + (198, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'GmjorN3A', '5408794'), + (198, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'GmjorN3A', '5411699'), + (198, 1482, 'attending', '2022-06-25 18:23:01', '2025-12-17 19:47:19', 'GmjorN3A', '5412550'), + (198, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GmjorN3A', '5415046'), + (198, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GmjorN3A', '5422086'), + (198, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GmjorN3A', '5422406'), + (198, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GmjorN3A', '5424565'), + (198, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GmjorN3A', '5426882'), + (198, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'GmjorN3A', '5427083'), + (198, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GmjorN3A', '5441125'), + (198, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GmjorN3A', '5441126'), + (198, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GmjorN3A', '5441128'), + (198, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjorN3A', '5441131'), + (198, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjorN3A', '5441132'), + (198, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'GmjorN3A', '5446643'), + (198, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GmjorN3A', '5453325'), + (198, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GmjorN3A', '5454516'), + (198, 1544, 'attending', '2022-09-17 18:16:52', '2025-12-17 19:47:11', 'GmjorN3A', '5454517'), + (198, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GmjorN3A', '5454605'), + (198, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GmjorN3A', '5455037'), + (198, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjorN3A', '5461278'), + (198, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GmjorN3A', '5469480'), + (198, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'GmjorN3A', '5471073'), + (198, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GmjorN3A', '5474663'), + (198, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GmjorN3A', '5482022'), + (198, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'GmjorN3A', '5482793'), + (198, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjorN3A', '5488912'), + (198, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjorN3A', '5492192'), + (198, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjorN3A', '5493139'), + (198, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjorN3A', '5493200'), + (198, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjorN3A', '5502188'), + (198, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjorN3A', '5505059'), + (198, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GmjorN3A', '5509055'), + (198, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjorN3A', '5512862'), + (198, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjorN3A', '5513985'), + (198, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'GmjorN3A', '5519981'), + (198, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjorN3A', '5522550'), + (198, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjorN3A', '5534683'), + (198, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjorN3A', '5537735'), + (198, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjorN3A', '5540859'), + (198, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjorN3A', '5546619'), + (198, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GmjorN3A', '5555245'), + (198, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjorN3A', '5557747'), + (198, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjorN3A', '5560255'), + (198, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjorN3A', '5562906'), + (198, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjorN3A', '5600604'), + (198, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjorN3A', '5605544'), + (198, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'GmjorN3A', '5606737'), + (198, 1712, 'not_attending', '2022-10-13 22:25:20', '2025-12-17 19:47:12', 'GmjorN3A', '5622073'), + (198, 1719, 'attending', '2022-10-08 15:57:25', '2025-12-17 19:47:12', 'GmjorN3A', '5630958'), + (198, 1720, 'attending', '2022-10-15 19:53:32', '2025-12-17 19:47:12', 'GmjorN3A', '5630959'), + (198, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GmjorN3A', '5630960'), + (198, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjorN3A', '5630961'), + (198, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjorN3A', '5630962'), + (198, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GmjorN3A', '5630966'), + (198, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GmjorN3A', '5630967'), + (198, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjorN3A', '5630968'), + (198, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjorN3A', '5635406'), + (198, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjorN3A', '5638765'), + (198, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjorN3A', '5640097'), + (198, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjorN3A', '5640843'), + (198, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjorN3A', '5641521'), + (198, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GmjorN3A', '5642818'), + (198, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjorN3A', '5652395'), + (198, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GmjorN3A', '5670445'), + (198, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjorN3A', '5671637'), + (198, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjorN3A', '5672329'), + (198, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjorN3A', '5674057'), + (198, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjorN3A', '5674060'), + (198, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GmjorN3A', '5677461'), + (198, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjorN3A', '5698046'), + (198, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GmjorN3A', '5699760'), + (198, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjorN3A', '5741601'), + (198, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjorN3A', '5763458'), + (198, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjorN3A', '5774172'), + (198, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'GmjorN3A', '5818247'), + (198, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjorN3A', '5819471'), + (198, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'GmjorN3A', '5827739'), + (198, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjorN3A', '5844306'), + (198, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjorN3A', '5850159'), + (198, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjorN3A', '5858999'), + (198, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjorN3A', '5871984'), + (198, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjorN3A', '5876354'), + (198, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjorN3A', '5880939'), + (198, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjorN3A', '5887890'), + (198, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjorN3A', '5888598'), + (198, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjorN3A', '5893260'), + (198, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjorN3A', '6045684'), + (199, 249, 'not_attending', '2020-11-17 23:13:35', '2025-12-17 19:47:54', 'LmpjJqQ4', '3149480'), + (199, 410, 'attending', '2020-11-22 05:42:25', '2025-12-17 19:47:54', 'LmpjJqQ4', '3236469'), + (199, 452, 'not_attending', '2020-11-27 05:58:03', '2025-12-17 19:47:54', 'LmpjJqQ4', '3272981'), + (199, 468, 'attending', '2020-11-15 21:52:41', '2025-12-17 19:47:54', 'LmpjJqQ4', '3285413'), + (199, 469, 'attending', '2020-11-22 05:42:34', '2025-12-17 19:47:54', 'LmpjJqQ4', '3285414'), + (199, 481, 'not_attending', '2020-11-20 01:34:51', '2025-12-17 19:47:54', 'LmpjJqQ4', '3297764'), + (199, 487, 'not_attending', '2020-11-27 05:58:11', '2025-12-17 19:47:54', 'LmpjJqQ4', '3311122'), + (199, 488, 'not_attending', '2020-12-02 03:54:22', '2025-12-17 19:47:54', 'LmpjJqQ4', '3312757'), + (199, 493, 'attending', '2020-11-29 16:29:06', '2025-12-17 19:47:54', 'LmpjJqQ4', '3313856'), + (199, 494, 'attending', '2020-11-29 17:27:39', '2025-12-17 19:47:54', 'LmpjJqQ4', '3313866'), + (199, 496, 'attending', '2020-11-29 21:47:34', '2025-12-17 19:47:54', 'LmpjJqQ4', '3314269'), + (199, 497, 'attending', '2020-11-29 21:47:38', '2025-12-17 19:47:55', 'LmpjJqQ4', '3314270'), + (199, 498, 'attending', '2020-11-29 22:25:38', '2025-12-17 19:47:54', 'LmpjJqQ4', '3314302'), + (199, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'LmpjJqQ4', '3314909'), + (199, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'LmpjJqQ4', '3314964'), + (199, 501, 'attending', '2020-12-02 03:58:51', '2025-12-17 19:47:54', 'LmpjJqQ4', '3317834'), + (199, 502, 'attending', '2020-12-09 06:12:45', '2025-12-17 19:47:55', 'LmpjJqQ4', '3323365'), + (199, 506, 'attending', '2020-12-13 21:45:41', '2025-12-17 19:47:55', 'LmpjJqQ4', '3323375'), + (199, 513, 'attending', '2020-12-14 14:53:55', '2025-12-17 19:47:55', 'LmpjJqQ4', '3329383'), + (199, 516, 'maybe', '2020-12-15 02:00:40', '2025-12-17 19:47:48', 'LmpjJqQ4', '3334530'), + (199, 517, 'maybe', '2020-12-15 02:00:01', '2025-12-17 19:47:48', 'LmpjJqQ4', '3337137'), + (199, 518, 'maybe', '2020-12-15 02:00:05', '2025-12-17 19:47:48', 'LmpjJqQ4', '3337138'), + (199, 519, 'not_attending', '2020-12-22 00:22:05', '2025-12-17 19:47:55', 'LmpjJqQ4', '3337448'), + (199, 520, 'not_attending', '2020-12-20 21:48:59', '2025-12-17 19:47:55', 'LmpjJqQ4', '3337453'), + (199, 521, 'not_attending', '2020-12-21 15:08:32', '2025-12-17 19:47:48', 'LmpjJqQ4', '3337454'), + (199, 526, 'maybe', '2020-12-27 23:30:23', '2025-12-17 19:47:48', 'LmpjJqQ4', '3351539'), + (199, 529, 'not_attending', '2021-01-05 18:05:48', '2025-12-17 19:47:48', 'LmpjJqQ4', '3364568'), + (199, 530, 'not_attending', '2021-01-03 06:21:24', '2025-12-17 19:47:48', 'LmpjJqQ4', '3373923'), + (199, 532, 'maybe', '2021-01-03 06:21:10', '2025-12-17 19:47:48', 'LmpjJqQ4', '3381412'), + (199, 534, 'maybe', '2021-01-05 04:33:38', '2025-12-17 19:47:48', 'LmpjJqQ4', '3384157'), + (199, 536, 'maybe', '2021-01-10 00:06:03', '2025-12-17 19:47:48', 'LmpjJqQ4', '3386848'), + (199, 538, 'not_attending', '2021-01-11 16:19:44', '2025-12-17 19:47:48', 'LmpjJqQ4', '3388151'), + (199, 540, 'maybe', '2021-01-07 21:20:24', '2025-12-17 19:47:48', 'LmpjJqQ4', '3389527'), + (199, 542, 'attending', '2021-01-12 03:02:37', '2025-12-17 19:47:48', 'LmpjJqQ4', '3395013'), + (199, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'LmpjJqQ4', '3396499'), + (199, 548, 'maybe', '2021-01-13 16:29:40', '2025-12-17 19:47:48', 'LmpjJqQ4', '3403650'), + (199, 549, 'not_attending', '2021-01-19 04:13:12', '2025-12-17 19:47:49', 'LmpjJqQ4', '3406988'), + (199, 550, 'not_attending', '2021-01-17 18:12:36', '2025-12-17 19:47:48', 'LmpjJqQ4', '3407018'), + (199, 551, 'maybe', '2021-01-15 17:57:40', '2025-12-17 19:47:49', 'LmpjJqQ4', '3407219'), + (199, 555, 'not_attending', '2021-01-24 00:43:16', '2025-12-17 19:47:49', 'LmpjJqQ4', '3416576'), + (199, 556, 'not_attending', '2021-01-24 20:34:46', '2025-12-17 19:47:49', 'LmpjJqQ4', '3417170'), + (199, 558, 'maybe', '2021-01-19 16:05:51', '2025-12-17 19:47:49', 'LmpjJqQ4', '3418925'), + (199, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'LmpjJqQ4', '3426074'), + (199, 567, 'maybe', '2021-01-24 20:32:33', '2025-12-17 19:47:50', 'LmpjJqQ4', '3428895'), + (199, 568, 'maybe', '2021-01-24 20:32:41', '2025-12-17 19:47:50', 'LmpjJqQ4', '3430267'), + (199, 569, 'not_attending', '2021-01-26 02:09:40', '2025-12-17 19:47:49', 'LmpjJqQ4', '3432673'), + (199, 570, 'maybe', '2021-01-26 15:55:17', '2025-12-17 19:47:50', 'LmpjJqQ4', '3435538'), + (199, 571, 'maybe', '2021-02-12 17:39:06', '2025-12-17 19:47:50', 'LmpjJqQ4', '3435539'), + (199, 579, 'maybe', '2021-01-31 21:00:06', '2025-12-17 19:47:50', 'LmpjJqQ4', '3440978'), + (199, 591, 'maybe', '2021-02-05 01:31:20', '2025-12-17 19:47:50', 'LmpjJqQ4', '3465880'), + (199, 600, 'not_attending', '2021-02-16 00:49:37', '2025-12-17 19:47:50', 'LmpjJqQ4', '3468125'), + (199, 602, 'maybe', '2021-02-11 00:08:18', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470303'), + (199, 603, 'maybe', '2021-02-11 00:08:21', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470304'), + (199, 604, 'maybe', '2021-02-11 00:08:23', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470305'), + (199, 605, 'not_attending', '2021-02-08 22:17:01', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470991'), + (199, 607, 'not_attending', '2021-02-16 00:49:16', '2025-12-17 19:47:50', 'LmpjJqQ4', '3471882'), + (199, 611, 'not_attending', '2021-02-16 00:49:22', '2025-12-17 19:47:50', 'LmpjJqQ4', '3482659'), + (199, 615, 'maybe', '2021-02-16 00:47:44', '2025-12-17 19:47:50', 'LmpjJqQ4', '3490045'), + (199, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'LmpjJqQ4', '3517815'), + (199, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'LmpjJqQ4', '3517816'), + (199, 623, 'not_attending', '2021-02-26 00:31:58', '2025-12-17 19:47:51', 'LmpjJqQ4', '3523941'), + (199, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'LmpjJqQ4', '3533850'), + (199, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'LmpjJqQ4', '3536632'), + (199, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'LmpjJqQ4', '3536656'), + (199, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'LmpjJqQ4', '3539916'), + (199, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'LmpjJqQ4', '3539917'), + (199, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'LmpjJqQ4', '3539918'), + (199, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539919'), + (199, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539920'), + (199, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539921'), + (199, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539922'), + (199, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'LmpjJqQ4', '3539923'), + (199, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'LmpjJqQ4', '3539927'), + (199, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'LmpjJqQ4', '3582734'), + (199, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'LmpjJqQ4', '3583262'), + (199, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'LmpjJqQ4', '3619523'), + (199, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'LmpjJqQ4', '3661369'), + (199, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'LmpjJqQ4', '3674262'), + (199, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'LmpjJqQ4', '3677402'), + (199, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'LmpjJqQ4', '3730212'), + (199, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'LmpjJqQ4', '3793156'), + (199, 823, 'not_attending', '2021-06-17 00:50:41', '2025-12-17 19:47:48', 'LmpjJqQ4', '3974109'), + (199, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'LmpjJqQ4', '3975311'), + (199, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpjJqQ4', '3975312'), + (199, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpjJqQ4', '3994992'), + (199, 841, 'not_attending', '2021-06-15 19:02:35', '2025-12-17 19:47:48', 'LmpjJqQ4', '4007434'), + (199, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpjJqQ4', '4014338'), + (199, 867, 'attending', '2021-06-24 21:12:42', '2025-12-17 19:47:38', 'LmpjJqQ4', '4021848'), + (199, 868, 'attending', '2021-06-18 23:52:51', '2025-12-17 19:47:48', 'LmpjJqQ4', '4022012'), + (199, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpjJqQ4', '4136744'), + (199, 870, 'not_attending', '2021-07-02 22:01:55', '2025-12-17 19:47:39', 'LmpjJqQ4', '4136937'), + (199, 871, 'not_attending', '2021-07-10 21:04:54', '2025-12-17 19:47:39', 'LmpjJqQ4', '4136938'), + (199, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpjJqQ4', '4136947'), + (199, 873, 'not_attending', '2021-06-17 00:50:38', '2025-12-17 19:47:48', 'LmpjJqQ4', '4138297'), + (199, 874, 'not_attending', '2021-06-24 23:07:47', '2025-12-17 19:47:38', 'LmpjJqQ4', '4139815'), + (199, 876, 'maybe', '2021-06-17 00:51:24', '2025-12-17 19:47:38', 'LmpjJqQ4', '4139926'), + (199, 878, 'maybe', '2021-06-17 00:51:09', '2025-12-17 19:47:38', 'LmpjJqQ4', '4143331'), + (199, 879, 'not_attending', '2021-06-28 22:00:54', '2025-12-17 19:47:38', 'LmpjJqQ4', '4147806'), + (199, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpjJqQ4', '4210314'), + (199, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpjJqQ4', '4225444'), + (199, 898, 'maybe', '2021-06-30 15:06:10', '2025-12-17 19:47:38', 'LmpjJqQ4', '4236746'), + (199, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpjJqQ4', '4239259'), + (199, 900, 'attending', '2021-07-22 20:42:59', '2025-12-17 19:47:40', 'LmpjJqQ4', '4240316'), + (199, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'LmpjJqQ4', '4240317'), + (199, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'LmpjJqQ4', '4240318'), + (199, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'LmpjJqQ4', '4240320'), + (199, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpjJqQ4', '4250163'), + (199, 917, 'maybe', '2021-07-12 12:54:04', '2025-12-17 19:47:39', 'LmpjJqQ4', '4274481'), + (199, 919, 'maybe', '2021-07-17 20:56:09', '2025-12-17 19:47:39', 'LmpjJqQ4', '4275957'), + (199, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpjJqQ4', '4277819'), + (199, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpjJqQ4', '4301723'), + (199, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpjJqQ4', '4302093'), + (199, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpjJqQ4', '4304151'), + (199, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'LmpjJqQ4', '4345519'), + (199, 971, 'not_attending', '2021-09-08 23:15:37', '2025-12-17 19:47:43', 'LmpjJqQ4', '4356801'), + (199, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpjJqQ4', '4358025'), + (199, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'LmpjJqQ4', '4366186'), + (199, 974, 'attending', '2021-08-24 15:44:48', '2025-12-17 19:47:42', 'LmpjJqQ4', '4366187'), + (199, 987, 'attending', '2021-09-01 21:33:02', '2025-12-17 19:47:43', 'LmpjJqQ4', '4402634'), + (199, 988, 'maybe', '2021-08-27 00:06:51', '2025-12-17 19:47:42', 'LmpjJqQ4', '4402823'), + (199, 989, 'maybe', '2021-08-28 22:28:21', '2025-12-17 19:47:43', 'LmpjJqQ4', '4414282'), + (199, 990, 'attending', '2021-09-04 00:19:07', '2025-12-17 19:47:43', 'LmpjJqQ4', '4420735'), + (199, 991, 'attending', '2021-09-11 21:57:18', '2025-12-17 19:47:43', 'LmpjJqQ4', '4420738'), + (199, 992, 'attending', '2021-09-18 18:13:38', '2025-12-17 19:47:33', 'LmpjJqQ4', '4420739'), + (199, 993, 'attending', '2021-09-25 03:10:26', '2025-12-17 19:47:34', 'LmpjJqQ4', '4420741'), + (199, 994, 'attending', '2021-10-02 21:01:06', '2025-12-17 19:47:34', 'LmpjJqQ4', '4420742'), + (199, 995, 'not_attending', '2021-10-09 20:37:18', '2025-12-17 19:47:34', 'LmpjJqQ4', '4420744'), + (199, 996, 'not_attending', '2021-10-16 22:29:43', '2025-12-17 19:47:35', 'LmpjJqQ4', '4420747'), + (199, 997, 'not_attending', '2021-10-23 21:18:57', '2025-12-17 19:47:35', 'LmpjJqQ4', '4420748'), + (199, 998, 'attending', '2021-10-30 19:57:14', '2025-12-17 19:47:36', 'LmpjJqQ4', '4420749'), + (199, 1001, 'maybe', '2021-08-30 13:38:36', '2025-12-17 19:47:43', 'LmpjJqQ4', '4424687'), + (199, 1002, 'attending', '2021-08-30 13:37:57', '2025-12-17 19:47:43', 'LmpjJqQ4', '4424932'), + (199, 1016, 'attending', '2021-09-04 00:18:40', '2025-12-17 19:47:43', 'LmpjJqQ4', '4441271'), + (199, 1017, 'attending', '2021-09-06 23:16:10', '2025-12-17 19:47:43', 'LmpjJqQ4', '4441822'), + (199, 1020, 'attending', '2021-09-06 15:38:03', '2025-12-17 19:47:43', 'LmpjJqQ4', '4451787'), + (199, 1021, 'attending', '2021-09-20 22:16:02', '2025-12-17 19:47:34', 'LmpjJqQ4', '4451803'), + (199, 1023, 'maybe', '2021-09-13 20:31:00', '2025-12-17 19:47:43', 'LmpjJqQ4', '4461883'), + (199, 1025, 'maybe', '2021-09-14 20:35:30', '2025-12-17 19:47:43', 'LmpjJqQ4', '4462052'), + (199, 1029, 'maybe', '2021-09-13 02:51:24', '2025-12-17 19:47:43', 'LmpjJqQ4', '4473063'), + (199, 1030, 'not_attending', '2021-09-18 18:14:10', '2025-12-17 19:47:34', 'LmpjJqQ4', '4473064'), + (199, 1035, 'not_attending', '2021-09-20 19:45:43', '2025-12-17 19:47:34', 'LmpjJqQ4', '4492184'), + (199, 1036, 'maybe', '2021-09-18 18:13:59', '2025-12-17 19:47:34', 'LmpjJqQ4', '4493166'), + (199, 1066, 'attending', '2021-09-25 14:58:40', '2025-12-17 19:47:34', 'LmpjJqQ4', '4506039'), + (199, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpjJqQ4', '4508342'), + (199, 1068, 'attending', '2021-09-30 21:40:36', '2025-12-17 19:47:34', 'LmpjJqQ4', '4511471'), + (199, 1070, 'not_attending', '2021-10-01 22:53:59', '2025-12-17 19:47:34', 'LmpjJqQ4', '4512562'), + (199, 1074, 'attending', '2021-09-29 20:41:21', '2025-12-17 19:47:34', 'LmpjJqQ4', '4528953'), + (199, 1079, 'attending', '2021-10-20 21:37:47', '2025-12-17 19:47:35', 'LmpjJqQ4', '4563823'), + (199, 1082, 'maybe', '2021-10-12 00:04:26', '2025-12-17 19:47:35', 'LmpjJqQ4', '4566762'), + (199, 1085, 'attending', '2021-12-23 21:35:09', '2025-12-17 19:47:31', 'LmpjJqQ4', '4568542'), + (199, 1086, 'not_attending', '2021-10-14 19:58:47', '2025-12-17 19:47:35', 'LmpjJqQ4', '4568602'), + (199, 1087, 'not_attending', '2021-10-15 11:04:46', '2025-12-17 19:47:35', 'LmpjJqQ4', '4572153'), + (199, 1092, 'not_attending', '2021-10-21 21:56:52', '2025-12-17 19:47:35', 'LmpjJqQ4', '4582837'), + (199, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpjJqQ4', '4585962'), + (199, 1094, 'maybe', '2021-10-21 03:49:24', '2025-12-17 19:47:36', 'LmpjJqQ4', '4587337'), + (199, 1095, 'not_attending', '2021-10-27 21:43:31', '2025-12-17 19:47:36', 'LmpjJqQ4', '4596356'), + (199, 1097, 'not_attending', '2021-11-03 18:07:26', '2025-12-17 19:47:36', 'LmpjJqQ4', '4598860'), + (199, 1098, 'not_attending', '2021-11-09 16:17:26', '2025-12-17 19:47:36', 'LmpjJqQ4', '4598861'), + (199, 1099, 'attending', '2021-11-06 22:32:31', '2025-12-17 19:47:36', 'LmpjJqQ4', '4602797'), + (199, 1107, 'not_attending', '2021-11-17 00:45:32', '2025-12-17 19:47:37', 'LmpjJqQ4', '4620697'), + (199, 1114, 'maybe', '2021-11-12 02:27:35', '2025-12-17 19:47:36', 'LmpjJqQ4', '4637896'), + (199, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpjJqQ4', '4642994'), + (199, 1117, 'maybe', '2021-12-02 17:00:48', '2025-12-17 19:47:38', 'LmpjJqQ4', '4642995'), + (199, 1118, 'maybe', '2021-12-02 17:01:06', '2025-12-17 19:47:38', 'LmpjJqQ4', '4642996'), + (199, 1119, 'maybe', '2021-12-02 17:01:09', '2025-12-17 19:47:31', 'LmpjJqQ4', '4642997'), + (199, 1126, 'not_attending', '2021-12-11 23:44:54', '2025-12-17 19:47:38', 'LmpjJqQ4', '4645687'), + (199, 1127, 'maybe', '2021-12-02 17:00:59', '2025-12-17 19:47:38', 'LmpjJqQ4', '4645698'), + (199, 1128, 'not_attending', '2021-11-20 20:14:53', '2025-12-17 19:47:37', 'LmpjJqQ4', '4645704'), + (199, 1129, 'maybe', '2021-11-22 00:51:08', '2025-12-17 19:47:37', 'LmpjJqQ4', '4645705'), + (199, 1132, 'not_attending', '2021-11-22 23:26:02', '2025-12-17 19:47:37', 'LmpjJqQ4', '4660657'), + (199, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpjJqQ4', '4668385'), + (199, 1140, 'maybe', '2021-12-02 17:00:25', '2025-12-17 19:47:37', 'LmpjJqQ4', '4679701'), + (199, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpjJqQ4', '4694407'), + (199, 1164, 'maybe', '2021-12-28 06:24:57', '2025-12-17 19:47:31', 'LmpjJqQ4', '4724208'), + (199, 1165, 'maybe', '2021-12-28 06:25:03', '2025-12-17 19:47:31', 'LmpjJqQ4', '4724210'), + (199, 1167, 'not_attending', '2022-01-03 18:40:29', '2025-12-17 19:47:31', 'LmpjJqQ4', '4731015'), + (199, 1170, 'maybe', '2022-01-03 18:40:16', '2025-12-17 19:47:31', 'LmpjJqQ4', '4731045'), + (199, 1174, 'attending', '2022-01-15 23:43:51', '2025-12-17 19:47:31', 'LmpjJqQ4', '4736496'), + (199, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'LmpjJqQ4', '4736497'), + (199, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpjJqQ4', '4736499'), + (199, 1178, 'not_attending', '2022-01-29 22:17:12', '2025-12-17 19:47:32', 'LmpjJqQ4', '4736500'), + (199, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'LmpjJqQ4', '4736503'), + (199, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpjJqQ4', '4736504'), + (199, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpjJqQ4', '4746789'), + (199, 1188, 'maybe', '2022-01-15 19:54:44', '2025-12-17 19:47:32', 'LmpjJqQ4', '4753929'), + (199, 1193, 'maybe', '2022-01-15 19:54:56', '2025-12-17 19:47:32', 'LmpjJqQ4', '4759563'), + (199, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpjJqQ4', '5038850'), + (199, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpjJqQ4', '5045826'), + (199, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpjJqQ4', '5132533'), + (199, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'LmpjJqQ4', '5186582'), + (199, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpjJqQ4', '5186583'), + (199, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'LmpjJqQ4', '5186585'), + (199, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpjJqQ4', '5190437'), + (199, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'LmpjJqQ4', '5195095'), + (199, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpjJqQ4', '5215989'), + (199, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'LmpjJqQ4', '5223686'), + (199, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'LmpjJqQ4', '5227432'), + (199, 1346, 'not_attending', '2022-04-23 22:07:17', '2025-12-17 19:47:27', 'LmpjJqQ4', '5247467'), + (199, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'LmpjJqQ4', '5260800'), + (199, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'LmpjJqQ4', '5269930'), + (199, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'LmpjJqQ4', '5271448'), + (199, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'LmpjJqQ4', '5271449'), + (199, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'LmpjJqQ4', '5276469'), + (199, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'LmpjJqQ4', '5278159'), + (199, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'LmpjJqQ4', '5363695'), + (199, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'LmpjJqQ4', '5365960'), + (199, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'LmpjJqQ4', '5368973'), + (199, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpjJqQ4', '6045684'), + (200, 1177, 'attending', '2022-02-18 14:59:08', '2025-12-17 19:47:32', 'mj6EzlNm', '4736499'), + (200, 1231, 'attending', '2022-02-18 14:58:41', '2025-12-17 19:47:33', 'mj6EzlNm', '5037637'), + (200, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mj6EzlNm', '6045684'), + (201, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4E5gqyX4', '4637896'), + (201, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4E5gqyX4', '4642994'), + (201, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4E5gqyX4', '4642995'), + (201, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4E5gqyX4', '4642996'), + (201, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4E5gqyX4', '4642997'), + (201, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4E5gqyX4', '4645687'), + (201, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4E5gqyX4', '4645698'), + (201, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4E5gqyX4', '4645704'), + (201, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4E5gqyX4', '4645705'), + (201, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4E5gqyX4', '4668385'), + (201, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E5gqyX4', '6045684'), + (202, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKG7GGNd', '6045684'), + (203, 996, 'attending', '2021-10-12 19:32:55', '2025-12-17 19:47:35', 'dVB17ryd', '4420747'), + (203, 997, 'attending', '2021-10-23 18:11:34', '2025-12-17 19:47:35', 'dVB17ryd', '4420748'), + (203, 998, 'attending', '2021-10-30 17:46:53', '2025-12-17 19:47:36', 'dVB17ryd', '4420749'), + (203, 1009, 'attending', '2021-10-11 00:19:23', '2025-12-17 19:47:34', 'dVB17ryd', '4438811'), + (203, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dVB17ryd', '4568602'), + (203, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVB17ryd', '4572153'), + (203, 1088, 'attending', '2021-10-23 19:57:17', '2025-12-17 19:47:35', 'dVB17ryd', '4574382'), + (203, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dVB17ryd', '4585962'), + (203, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dVB17ryd', '4596356'), + (203, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dVB17ryd', '4598860'), + (203, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dVB17ryd', '4598861'), + (203, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dVB17ryd', '4602797'), + (203, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dVB17ryd', '4637896'), + (203, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dVB17ryd', '4642994'), + (203, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dVB17ryd', '4642995'), + (203, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dVB17ryd', '4642996'), + (203, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dVB17ryd', '4642997'), + (203, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dVB17ryd', '4645687'), + (203, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dVB17ryd', '4645698'), + (203, 1128, 'attending', '2021-11-20 03:09:28', '2025-12-17 19:47:37', 'dVB17ryd', '4645704'), + (203, 1129, 'attending', '2021-11-27 19:01:02', '2025-12-17 19:47:37', 'dVB17ryd', '4645705'), + (203, 1130, 'not_attending', '2021-12-04 18:16:54', '2025-12-17 19:47:37', 'dVB17ryd', '4658824'), + (203, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dVB17ryd', '4668385'), + (203, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dVB17ryd', '4694407'), + (203, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'dVB17ryd', '4706262'), + (203, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dVB17ryd', '4736497'), + (203, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dVB17ryd', '4736499'), + (203, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dVB17ryd', '4736500'), + (203, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dVB17ryd', '4736503'), + (203, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dVB17ryd', '4736504'), + (203, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVB17ryd', '4746789'), + (203, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dVB17ryd', '4753929'), + (203, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dVB17ryd', '5038850'), + (203, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dVB17ryd', '5045826'), + (203, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVB17ryd', '5132533'), + (203, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dVB17ryd', '5186582'), + (203, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dVB17ryd', '5186583'), + (203, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dVB17ryd', '5186585'), + (203, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVB17ryd', '5190437'), + (203, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVB17ryd', '5215989'), + (203, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVB17ryd', '6045684'), + (204, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'QdJxR7nA', '5630961'), + (204, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'QdJxR7nA', '5630962'), + (204, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'QdJxR7nA', '5630966'), + (204, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'QdJxR7nA', '5630967'), + (204, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'QdJxR7nA', '5630968'), + (204, 1738, 'maybe', '2022-10-25 17:37:20', '2025-12-17 19:47:14', 'QdJxR7nA', '5638765'), + (204, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'QdJxR7nA', '5640097'), + (204, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'QdJxR7nA', '5642818'), + (204, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'QdJxR7nA', '5670445'), + (204, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'QdJxR7nA', '5671637'), + (204, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'QdJxR7nA', '5672329'), + (204, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'QdJxR7nA', '5674057'), + (204, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'QdJxR7nA', '5674060'), + (204, 1772, 'maybe', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'QdJxR7nA', '5677461'), + (204, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'QdJxR7nA', '5698046'), + (204, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'QdJxR7nA', '5699760'), + (204, 1786, 'not_attending', '2022-11-08 23:40:43', '2025-12-17 19:47:15', 'QdJxR7nA', '5727232'), + (204, 1788, 'attending', '2022-11-17 12:26:34', '2025-12-17 19:47:16', 'QdJxR7nA', '5727236'), + (204, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'QdJxR7nA', '5741601'), + (204, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'QdJxR7nA', '5763458'), + (204, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'QdJxR7nA', '5774172'), + (204, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'QdJxR7nA', '5818247'), + (204, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'QdJxR7nA', '5819471'), + (204, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'QdJxR7nA', '5827739'), + (204, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'QdJxR7nA', '5844306'), + (204, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'QdJxR7nA', '5850159'), + (204, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'QdJxR7nA', '5858999'), + (204, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'QdJxR7nA', '5871984'), + (204, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'QdJxR7nA', '5876354'), + (204, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'QdJxR7nA', '5880939'), + (204, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'QdJxR7nA', '5887890'), + (204, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'QdJxR7nA', '5888598'), + (204, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'QdJxR7nA', '5893260'), + (204, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'QdJxR7nA', '6045684'), + (205, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4DpLWeo4', '6514660'), + (205, 2352, 'not_attending', '2023-11-22 19:12:21', '2025-12-17 19:46:48', '4DpLWeo4', '6587097'), + (205, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', '4DpLWeo4', '6596617'), + (205, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4DpLWeo4', '6609022'), + (205, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4DpLWeo4', '6632757'), + (205, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4DpLWeo4', '6644187'), + (205, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4DpLWeo4', '6648951'), + (205, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4DpLWeo4', '6648952'), + (205, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', '4DpLWeo4', '6651141'), + (205, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4DpLWeo4', '6655401'), + (205, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4DpLWeo4', '6661585'), + (205, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4DpLWeo4', '6661588'), + (205, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4DpLWeo4', '6661589'), + (205, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4DpLWeo4', '6699906'), + (205, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4DpLWeo4', '6699913'), + (205, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4DpLWeo4', '6701109'), + (205, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4DpLWeo4', '6705219'), + (205, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4DpLWeo4', '6710153'), + (205, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4DpLWeo4', '6711552'), + (205, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4DpLWeo4', '6711553'), + (205, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4DpLWeo4', '6722688'), + (205, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4DpLWeo4', '6730620'), + (205, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4DpLWeo4', '6730642'), + (205, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4DpLWeo4', '6740364'), + (205, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4DpLWeo4', '6743829'), + (205, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4DpLWeo4', '7030380'), + (205, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4DpLWeo4', '7033677'), + (205, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4DpLWeo4', '7035415'), + (205, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4DpLWeo4', '7044715'), + (205, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4DpLWeo4', '7050318'), + (205, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4DpLWeo4', '7050319'), + (205, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4DpLWeo4', '7050322'), + (205, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4DpLWeo4', '7057804'), + (205, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4DpLWeo4', '7072824'), + (205, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4DpLWeo4', '7074348'), + (205, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4DpLWeo4', '7089267'), + (205, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4DpLWeo4', '7098747'), + (205, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4DpLWeo4', '7113468'), + (205, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4DpLWeo4', '7114856'), + (205, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4DpLWeo4', '7114951'), + (205, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4DpLWeo4', '7114955'), + (205, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4DpLWeo4', '7114956'), + (205, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4DpLWeo4', '7153615'), + (205, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4DpLWeo4', '7159484'), + (205, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4DpLWeo4', '7178446'), + (206, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'LmpJy8N4', '3974109'), + (206, 827, 'attending', '2021-06-04 20:53:38', '2025-12-17 19:47:47', 'LmpJy8N4', '3975311'), + (206, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpJy8N4', '3975312'), + (206, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpJy8N4', '3994992'), + (206, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpJy8N4', '4014338'), + (206, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'LmpJy8N4', '4021848'), + (206, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpJy8N4', '4136744'), + (206, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'LmpJy8N4', '4136937'), + (206, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'LmpJy8N4', '4136938'), + (206, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJy8N4', '4136947'), + (206, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpJy8N4', '4225444'), + (206, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpJy8N4', '4239259'), + (206, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpJy8N4', '4250163'), + (206, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJy8N4', '6045684'), + (207, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd8qQgVpm', '7324078'), + (207, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd8qQgVpm', '7324082'), + (207, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd8qQgVpm', '7363643'), + (207, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd8qQgVpm', '7397462'), + (207, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd8qQgVpm', '7424275'), + (207, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd8qQgVpm', '7432751'), + (207, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd8qQgVpm', '7432752'), + (207, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd8qQgVpm', '7432753'), + (207, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd8qQgVpm', '7432754'), + (207, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd8qQgVpm', '7432755'), + (207, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd8qQgVpm', '7432756'), + (207, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd8qQgVpm', '7432758'), + (207, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd8qQgVpm', '7432759'), + (207, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd8qQgVpm', '7433834'), + (207, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd8qQgVpm', '7470197'), + (207, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd8qQgVpm', '7685613'), + (207, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd8qQgVpm', '7688194'), + (207, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd8qQgVpm', '7688196'), + (207, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd8qQgVpm', '7688289'), + (208, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZ81694', '6514660'), + (208, 2352, 'not_attending', '2023-11-22 19:12:21', '2025-12-17 19:46:48', 'dKZ81694', '6587097'), + (208, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZ81694', '6609022'), + (208, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZ81694', '6632757'), + (208, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZ81694', '6644187'), + (208, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZ81694', '6648951'), + (208, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZ81694', '6648952'), + (208, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZ81694', '6655401'), + (208, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZ81694', '6661585'), + (208, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZ81694', '6661588'), + (208, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZ81694', '6661589'), + (208, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZ81694', '6699906'), + (208, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dKZ81694', '6699913'), + (208, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZ81694', '6701109'), + (208, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZ81694', '6705219'), + (208, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZ81694', '6710153'), + (208, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZ81694', '6711552'), + (208, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZ81694', '6711553'), + (208, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKZ81694', '6722688'), + (208, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKZ81694', '6730620'), + (208, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKZ81694', '6730642'), + (208, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKZ81694', '6740364'), + (208, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKZ81694', '6743829'), + (208, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKZ81694', '7030380'), + (208, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKZ81694', '7033677'), + (208, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKZ81694', '7035415'), + (208, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKZ81694', '7044715'), + (208, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKZ81694', '7050318'), + (208, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKZ81694', '7050319'), + (208, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKZ81694', '7050322'), + (208, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKZ81694', '7057804'), + (208, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKZ81694', '7072824'), + (208, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dKZ81694', '7074348'), + (208, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKZ81694', '7089267'), + (208, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKZ81694', '7098747'), + (208, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dKZ81694', '7113468'), + (208, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKZ81694', '7114856'), + (208, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKZ81694', '7114951'), + (208, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKZ81694', '7114955'), + (208, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKZ81694', '7114956'), + (208, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKZ81694', '7153615'), + (208, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKZ81694', '7159484'), + (208, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKZ81694', '7178446'), + (209, 2065, 'attending', '2023-06-17 17:21:00', '2025-12-17 19:46:49', 'dzgb7Mpm', '6101169'), + (209, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dzgb7Mpm', '6101361'), + (209, 2075, 'maybe', '2023-06-30 02:22:49', '2025-12-17 19:46:50', 'dzgb7Mpm', '6107314'), + (209, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dzgb7Mpm', '6136733'), + (209, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dzgb7Mpm', '6137989'), + (209, 2098, 'not_attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dzgb7Mpm', '6139831'), + (209, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dzgb7Mpm', '6150864'), + (209, 2109, 'attending', '2023-06-19 05:59:02', '2025-12-17 19:46:50', 'dzgb7Mpm', '6152821'), + (209, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dzgb7Mpm', '6155491'), + (209, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dzgb7Mpm', '6164417'), + (209, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dzgb7Mpm', '6166388'), + (209, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dzgb7Mpm', '6176439'), + (209, 2122, 'attending', '2023-06-30 22:16:33', '2025-12-17 19:46:51', 'dzgb7Mpm', '6176476'), + (209, 2124, 'attending', '2023-07-04 11:01:12', '2025-12-17 19:46:51', 'dzgb7Mpm', '6176988'), + (209, 2128, 'maybe', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dzgb7Mpm', '6182410'), + (209, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dzgb7Mpm', '6185812'), + (209, 2132, 'attending', '2023-07-06 02:13:03', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187015'), + (209, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dzgb7Mpm', '6187651'), + (209, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187963'), + (209, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187964'), + (209, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dzgb7Mpm', '6187966'), + (209, 2137, 'attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dzgb7Mpm', '6187967'), + (209, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187969'), + (209, 2139, 'attending', '2023-07-09 02:53:03', '2025-12-17 19:46:52', 'dzgb7Mpm', '6188027'), + (209, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dzgb7Mpm', '6334878'), + (209, 2146, 'attending', '2023-07-18 00:00:55', '2025-12-17 19:46:53', 'dzgb7Mpm', '6335638'), + (209, 2148, 'attending', '2023-07-11 11:17:11', '2025-12-17 19:46:53', 'dzgb7Mpm', '6335667'), + (209, 2152, 'attending', '2023-07-13 03:12:17', '2025-12-17 19:46:52', 'dzgb7Mpm', '6337021'), + (209, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dzgb7Mpm', '6337236'), + (209, 2155, 'attending', '2023-07-17 23:59:56', '2025-12-17 19:46:53', 'dzgb7Mpm', '6337970'), + (209, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dzgb7Mpm', '6338308'), + (209, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dzgb7Mpm', '6340845'), + (209, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dzgb7Mpm', '6341710'), + (209, 2164, 'maybe', '2023-07-19 19:40:17', '2025-12-17 19:46:54', 'dzgb7Mpm', '6341797'), + (209, 2165, 'attending', '2023-08-01 07:53:58', '2025-12-17 19:46:54', 'dzgb7Mpm', '6342044'), + (209, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dzgb7Mpm', '6342298'), + (209, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dzgb7Mpm', '6343294'), + (209, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dzgb7Mpm', '6347034'), + (209, 2177, 'attending', '2023-08-04 02:01:28', '2025-12-17 19:46:55', 'dzgb7Mpm', '6347053'), + (209, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dzgb7Mpm', '6347056'), + (209, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dzgb7Mpm', '6353830'), + (209, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dzgb7Mpm', '6353831'), + (209, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dzgb7Mpm', '6357867'), + (209, 2190, 'attending', '2023-08-07 04:28:01', '2025-12-17 19:46:55', 'dzgb7Mpm', '6357892'), + (209, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dzgb7Mpm', '6358652'), + (209, 2195, 'attending', '2023-08-20 23:18:10', '2025-12-17 19:46:55', 'dzgb7Mpm', '6359397'), + (209, 2196, 'attending', '2023-09-03 16:26:15', '2025-12-17 19:46:56', 'dzgb7Mpm', '6359398'), + (209, 2197, 'attending', '2023-09-15 14:07:11', '2025-12-17 19:46:44', 'dzgb7Mpm', '6359399'), + (209, 2198, 'attending', '2023-09-18 03:38:30', '2025-12-17 19:46:45', 'dzgb7Mpm', '6359400'), + (209, 2199, 'attending', '2023-08-08 01:44:39', '2025-12-17 19:46:55', 'dzgb7Mpm', '6359849'), + (209, 2200, 'attending', '2023-08-10 17:00:02', '2025-12-17 19:46:55', 'dzgb7Mpm', '6359850'), + (209, 2202, 'attending', '2023-08-06 19:02:11', '2025-12-17 19:46:54', 'dzgb7Mpm', '6360509'), + (209, 2204, 'attending', '2023-08-14 22:44:51', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361542'), + (209, 2206, 'attending', '2023-08-08 14:47:18', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361659'), + (209, 2208, 'maybe', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dzgb7Mpm', '6361709'), + (209, 2209, 'maybe', '2023-08-20 23:17:53', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361710'), + (209, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361711'), + (209, 2211, 'attending', '2023-08-14 02:29:38', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361712'), + (209, 2212, 'attending', '2023-09-18 03:39:19', '2025-12-17 19:46:45', 'dzgb7Mpm', '6361713'), + (209, 2214, 'attending', '2023-08-10 22:18:16', '2025-12-17 19:46:55', 'dzgb7Mpm', '6363218'), + (209, 2215, 'attending', '2023-08-11 22:04:22', '2025-12-17 19:46:55', 'dzgb7Mpm', '6363479'), + (209, 2217, 'attending', '2023-08-14 02:28:51', '2025-12-17 19:46:55', 'dzgb7Mpm', '6364333'), + (209, 2220, 'attending', '2023-09-04 22:52:10', '2025-12-17 19:46:56', 'dzgb7Mpm', '6367310'), + (209, 2225, 'attending', '2023-08-29 05:08:54', '2025-12-17 19:46:55', 'dzgb7Mpm', '6368434'), + (209, 2227, 'attending', '2023-08-20 23:17:42', '2025-12-17 19:46:55', 'dzgb7Mpm', '6370581'), + (209, 2232, 'attending', '2023-08-23 19:24:36', '2025-12-17 19:46:55', 'dzgb7Mpm', '6374818'), + (209, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dzgb7Mpm', '6382573'), + (209, 2239, 'maybe', '2023-09-01 00:37:17', '2025-12-17 19:46:56', 'dzgb7Mpm', '6387592'), + (209, 2240, 'attending', '2023-09-05 02:42:39', '2025-12-17 19:46:56', 'dzgb7Mpm', '6388603'), + (209, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dzgb7Mpm', '6388604'), + (209, 2242, 'maybe', '2023-09-21 21:45:07', '2025-12-17 19:46:45', 'dzgb7Mpm', '6388606'), + (209, 2244, 'attending', '2023-09-05 02:42:34', '2025-12-17 19:46:44', 'dzgb7Mpm', '6393700'), + (209, 2245, 'attending', '2023-09-18 03:39:05', '2025-12-17 19:46:45', 'dzgb7Mpm', '6393703'), + (209, 2247, 'attending', '2023-09-05 19:25:24', '2025-12-17 19:46:56', 'dzgb7Mpm', '6394628'), + (209, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dzgb7Mpm', '6394629'), + (209, 2249, 'attending', '2023-09-18 03:38:27', '2025-12-17 19:46:45', 'dzgb7Mpm', '6394630'), + (209, 2250, 'maybe', '2023-09-18 03:39:14', '2025-12-17 19:46:45', 'dzgb7Mpm', '6394631'), + (209, 2252, 'attending', '2023-09-18 03:38:58', '2025-12-17 19:46:45', 'dzgb7Mpm', '6396837'), + (209, 2253, 'attending', '2023-09-27 09:09:07', '2025-12-17 19:46:45', 'dzgb7Mpm', '6401811'), + (209, 2258, 'attending', '2023-09-21 08:13:43', '2025-12-17 19:46:45', 'dzgb7Mpm', '6419492'), + (209, 2261, 'attending', '2023-09-27 06:46:08', '2025-12-17 19:46:45', 'dzgb7Mpm', '6427422'), + (209, 2262, 'attending', '2023-10-01 17:47:11', '2025-12-17 19:46:45', 'dzgb7Mpm', '6427423'), + (209, 2265, 'attending', '2023-10-01 17:49:00', '2025-12-17 19:46:45', 'dzgb7Mpm', '6439625'), + (209, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dzgb7Mpm', '6440863'), + (209, 2269, 'attending', '2023-10-05 20:41:57', '2025-12-17 19:46:45', 'dzgb7Mpm', '6442978'), + (209, 2271, 'attending', '2023-10-03 00:44:09', '2025-12-17 19:46:45', 'dzgb7Mpm', '6445375'), + (209, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dzgb7Mpm', '6445440'), + (209, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dzgb7Mpm', '6453951'), + (209, 2279, 'attending', '2023-10-10 13:57:34', '2025-12-17 19:46:46', 'dzgb7Mpm', '6455460'), + (209, 2283, 'maybe', '2023-10-10 14:07:08', '2025-12-17 19:46:46', 'dzgb7Mpm', '6455503'), + (209, 2284, 'maybe', '2023-10-10 14:02:28', '2025-12-17 19:46:46', 'dzgb7Mpm', '6460928'), + (209, 2285, 'attending', '2023-10-10 14:07:35', '2025-12-17 19:46:47', 'dzgb7Mpm', '6460929'), + (209, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dzgb7Mpm', '6461696'), + (209, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dzgb7Mpm', '6462129'), + (209, 2290, 'attending', '2023-10-11 09:03:41', '2025-12-17 19:46:46', 'dzgb7Mpm', '6462214'), + (209, 2291, 'not_attending', '2023-10-15 20:16:14', '2025-12-17 19:46:46', 'dzgb7Mpm', '6462215'), + (209, 2292, 'attending', '2023-10-31 20:17:17', '2025-12-17 19:46:47', 'dzgb7Mpm', '6462216'), + (209, 2293, 'attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dzgb7Mpm', '6463218'), + (209, 2296, 'attending', '2023-10-23 12:20:40', '2025-12-17 19:46:47', 'dzgb7Mpm', '6468393'), + (209, 2299, 'attending', '2023-10-15 20:16:21', '2025-12-17 19:46:46', 'dzgb7Mpm', '6472181'), + (209, 2300, 'attending', '2023-10-23 12:22:27', '2025-12-17 19:46:47', 'dzgb7Mpm', '6472185'), + (209, 2302, 'attending', '2023-10-22 22:52:01', '2025-12-17 19:46:46', 'dzgb7Mpm', '6482535'), + (209, 2303, 'attending', '2023-10-23 12:20:55', '2025-12-17 19:46:47', 'dzgb7Mpm', '6482691'), + (209, 2304, 'attending', '2023-10-31 20:18:28', '2025-12-17 19:46:47', 'dzgb7Mpm', '6482693'), + (209, 2306, 'attending', '2023-11-14 00:58:18', '2025-12-17 19:46:47', 'dzgb7Mpm', '6484200'), + (209, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dzgb7Mpm', '6484680'), + (209, 2310, 'attending', '2023-11-11 16:13:20', '2025-12-17 19:46:47', 'dzgb7Mpm', '6487709'), + (209, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dzgb7Mpm', '6507741'), + (209, 2322, 'attending', '2023-11-12 07:36:19', '2025-12-17 19:46:48', 'dzgb7Mpm', '6514659'), + (209, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dzgb7Mpm', '6514660'), + (209, 2324, 'not_attending', '2023-12-02 19:25:28', '2025-12-17 19:46:49', 'dzgb7Mpm', '6514662'), + (209, 2325, 'attending', '2023-12-12 02:48:47', '2025-12-17 19:46:36', 'dzgb7Mpm', '6514663'), + (209, 2329, 'attending', '2023-11-02 15:52:14', '2025-12-17 19:46:47', 'dzgb7Mpm', '6517138'), + (209, 2333, 'maybe', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dzgb7Mpm', '6519103'), + (209, 2335, 'attending', '2023-11-11 00:54:08', '2025-12-17 19:46:47', 'dzgb7Mpm', '6534890'), + (209, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dzgb7Mpm', '6535681'), + (209, 2338, 'maybe', '2023-11-12 07:36:44', '2025-12-17 19:46:48', 'dzgb7Mpm', '6538868'), + (209, 2345, 'attending', '2023-11-21 07:26:45', '2025-12-17 19:46:48', 'dzgb7Mpm', '6582414'), + (209, 2350, 'attending', '2023-11-21 07:26:07', '2025-12-17 19:46:48', 'dzgb7Mpm', '6584352'), + (209, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dzgb7Mpm', '6584747'), + (209, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dzgb7Mpm', '6587097'), + (209, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dzgb7Mpm', '6609022'), + (209, 2366, 'attending', '2023-12-08 22:15:25', '2025-12-17 19:46:36', 'dzgb7Mpm', '6615304'), + (209, 2373, 'attending', '2024-01-14 18:10:29', '2025-12-17 19:46:38', 'dzgb7Mpm', '6632678'), + (209, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dzgb7Mpm', '6632757'), + (209, 2375, 'attending', '2023-12-20 20:49:34', '2025-12-17 19:46:36', 'dzgb7Mpm', '6634548'), + (209, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dzgb7Mpm', '6644187'), + (209, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dzgb7Mpm', '6648951'), + (209, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dzgb7Mpm', '6648952'), + (209, 2388, 'attending', '2024-01-06 08:30:53', '2025-12-17 19:46:37', 'dzgb7Mpm', '6649244'), + (209, 2391, 'attending', '2024-01-12 08:37:12', '2025-12-17 19:46:37', 'dzgb7Mpm', '6654138'), + (209, 2392, 'attending', '2024-01-11 23:25:03', '2025-12-17 19:46:37', 'dzgb7Mpm', '6654412'), + (209, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dzgb7Mpm', '6655401'), + (209, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dzgb7Mpm', '6661585'), + (209, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dzgb7Mpm', '6661588'), + (209, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dzgb7Mpm', '6661589'), + (209, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dzgb7Mpm', '6699906'), + (209, 2408, 'attending', '2024-01-18 03:09:43', '2025-12-17 19:46:40', 'dzgb7Mpm', '6699907'), + (209, 2409, 'attending', '2024-01-18 03:09:46', '2025-12-17 19:46:41', 'dzgb7Mpm', '6699909'), + (209, 2410, 'attending', '2024-01-18 03:09:49', '2025-12-17 19:46:41', 'dzgb7Mpm', '6699911'), + (209, 2411, 'attending', '2024-02-06 01:27:58', '2025-12-17 19:46:41', 'dzgb7Mpm', '6699913'), + (209, 2412, 'maybe', '2024-02-12 19:17:17', '2025-12-17 19:46:43', 'dzgb7Mpm', '6700717'), + (209, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dzgb7Mpm', '6701109'), + (209, 2424, 'attending', '2024-01-19 03:07:24', '2025-12-17 19:46:40', 'dzgb7Mpm', '6705143'), + (209, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dzgb7Mpm', '6705219'), + (209, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dzgb7Mpm', '6710153'), + (209, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dzgb7Mpm', '6711552'), + (209, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dzgb7Mpm', '6711553'), + (209, 2431, 'maybe', '2024-01-30 00:09:19', '2025-12-17 19:46:41', 'dzgb7Mpm', '6712394'), + (209, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dzgb7Mpm', '6722688'), + (209, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dzgb7Mpm', '6730620'), + (209, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dzgb7Mpm', '6730642'), + (209, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dzgb7Mpm', '6740364'), + (209, 2457, 'attending', '2024-02-08 17:31:26', '2025-12-17 19:46:41', 'dzgb7Mpm', '6742221'), + (209, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dzgb7Mpm', '6743829'), + (209, 2462, 'attending', '2024-02-12 19:16:35', '2025-12-17 19:46:41', 'dzgb7Mpm', '6744701'), + (209, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dzgb7Mpm', '7030380'), + (209, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'dzgb7Mpm', '7033677'), + (209, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dzgb7Mpm', '7035415'), + (209, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dzgb7Mpm', '7044715'), + (209, 2484, 'attending', '2024-02-26 03:10:27', '2025-12-17 19:46:43', 'dzgb7Mpm', '7046836'), + (209, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dzgb7Mpm', '7050318'), + (209, 2491, 'attending', '2024-02-28 02:25:37', '2025-12-17 19:46:44', 'dzgb7Mpm', '7050319'), + (209, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dzgb7Mpm', '7050322'), + (209, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dzgb7Mpm', '7057804'), + (209, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dzgb7Mpm', '7059866'), + (209, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dzgb7Mpm', '7072824'), + (209, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dzgb7Mpm', '7074348'), + (209, 2513, 'maybe', '2024-04-15 15:08:23', '2025-12-17 19:46:34', 'dzgb7Mpm', '7074353'), + (209, 2522, 'attending', '2024-07-18 21:02:32', '2025-12-17 19:46:30', 'dzgb7Mpm', '7074362'), + (209, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dzgb7Mpm', '7074364'), + (209, 2537, 'maybe', '2024-03-23 02:52:22', '2025-12-17 19:46:33', 'dzgb7Mpm', '7085484'), + (209, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dzgb7Mpm', '7089267'), + (209, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dzgb7Mpm', '7098747'), + (209, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dzgb7Mpm', '7113468'), + (209, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dzgb7Mpm', '7114856'), + (209, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dzgb7Mpm', '7114951'), + (209, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dzgb7Mpm', '7114955'), + (209, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dzgb7Mpm', '7114956'), + (209, 2558, 'maybe', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dzgb7Mpm', '7114957'), + (209, 2566, 'attending', '2024-04-15 15:07:50', '2025-12-17 19:46:34', 'dzgb7Mpm', '7140664'), + (209, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dzgb7Mpm', '7153615'), + (209, 2570, 'attending', '2024-04-07 19:07:21', '2025-12-17 19:46:33', 'dzgb7Mpm', '7159187'), + (209, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dzgb7Mpm', '7159484'), + (209, 2573, 'attending', '2024-04-14 02:10:01', '2025-12-17 19:46:34', 'dzgb7Mpm', '7160612'), + (209, 2581, 'attending', '2024-04-18 03:10:01', '2025-12-17 19:46:34', 'dzgb7Mpm', '7169048'), + (209, 2585, 'attending', '2024-04-15 15:11:49', '2025-12-17 19:46:34', 'dzgb7Mpm', '7175828'), + (209, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzgb7Mpm', '7178446'), + (209, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dzgb7Mpm', '7220467'), + (209, 2603, 'attending', '2024-05-13 04:51:00', '2025-12-17 19:46:35', 'dzgb7Mpm', '7225669'), + (209, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dzgb7Mpm', '7240354'), + (209, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dzgb7Mpm', '7251633'), + (209, 2623, 'attending', '2024-05-11 20:13:01', '2025-12-17 19:46:35', 'dzgb7Mpm', '7263048'), + (209, 2626, 'not_attending', '2024-05-13 04:51:23', '2025-12-17 19:46:35', 'dzgb7Mpm', '7264723'), + (209, 2627, 'attending', '2024-05-25 21:44:05', '2025-12-17 19:46:35', 'dzgb7Mpm', '7264724'), + (209, 2628, 'attending', '2024-05-30 18:50:51', '2025-12-17 19:46:36', 'dzgb7Mpm', '7264725'), + (209, 2629, 'attending', '2024-06-08 04:09:05', '2025-12-17 19:46:28', 'dzgb7Mpm', '7264726'), + (209, 2636, 'maybe', '2024-05-19 15:29:17', '2025-12-17 19:46:35', 'dzgb7Mpm', '7270323'), + (209, 2637, 'maybe', '2024-05-19 15:29:19', '2025-12-17 19:46:35', 'dzgb7Mpm', '7270324'), + (209, 2644, 'maybe', '2024-05-19 15:25:09', '2025-12-17 19:46:35', 'dzgb7Mpm', '7279039'), + (209, 2649, 'maybe', '2024-05-27 20:34:59', '2025-12-17 19:46:35', 'dzgb7Mpm', '7282950'), + (209, 2656, 'attending', '2024-05-30 18:50:29', '2025-12-17 19:46:36', 'dzgb7Mpm', '7291301'), + (209, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dzgb7Mpm', '7302674'), + (209, 2665, 'attending', '2024-06-06 20:18:20', '2025-12-17 19:46:36', 'dzgb7Mpm', '7306370'), + (209, 2667, 'attending', '2024-06-05 23:14:27', '2025-12-17 19:46:36', 'dzgb7Mpm', '7307776'), + (209, 2675, 'attending', '2024-08-04 16:44:53', '2025-12-17 19:46:31', 'dzgb7Mpm', '7319481'), + (209, 2678, 'attending', '2024-06-15 05:51:53', '2025-12-17 19:46:28', 'dzgb7Mpm', '7319489'), + (209, 2679, 'not_attending', '2024-06-17 11:29:54', '2025-12-17 19:46:29', 'dzgb7Mpm', '7319490'), + (209, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'dzgb7Mpm', '7324019'), + (209, 2688, 'attending', '2024-06-15 05:52:17', '2025-12-17 19:46:29', 'dzgb7Mpm', '7324073'), + (209, 2689, 'attending', '2024-06-15 05:52:19', '2025-12-17 19:46:29', 'dzgb7Mpm', '7324074'), + (209, 2690, 'attending', '2024-06-17 11:30:59', '2025-12-17 19:46:30', 'dzgb7Mpm', '7324075'), + (209, 2691, 'attending', '2024-06-17 11:31:01', '2025-12-17 19:46:30', 'dzgb7Mpm', '7324076'), + (209, 2692, 'maybe', '2024-06-17 11:31:06', '2025-12-17 19:46:30', 'dzgb7Mpm', '7324077'), + (209, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dzgb7Mpm', '7324078'), + (209, 2694, 'attending', '2024-08-01 21:26:18', '2025-12-17 19:46:31', 'dzgb7Mpm', '7324079'), + (209, 2695, 'maybe', '2024-08-01 21:26:23', '2025-12-17 19:46:31', 'dzgb7Mpm', '7324080'), + (209, 2696, 'attending', '2024-08-01 21:26:25', '2025-12-17 19:46:32', 'dzgb7Mpm', '7324081'), + (209, 2697, 'attending', '2024-08-30 17:37:38', '2025-12-17 19:46:32', 'dzgb7Mpm', '7324082'), + (209, 2698, 'not_attending', '2024-09-03 17:37:52', '2025-12-17 19:46:24', 'dzgb7Mpm', '7324083'), + (209, 2705, 'attending', '2024-06-13 13:28:13', '2025-12-17 19:46:29', 'dzgb7Mpm', '7324944'), + (209, 2706, 'attending', '2024-06-17 23:57:30', '2025-12-17 19:46:28', 'dzgb7Mpm', '7324947'), + (209, 2722, 'attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dzgb7Mpm', '7331457'), + (209, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'dzgb7Mpm', '7335193'), + (209, 2731, 'attending', '2024-06-25 17:31:38', '2025-12-17 19:46:29', 'dzgb7Mpm', '7335303'), + (209, 2742, 'attending', '2024-07-03 22:39:11', '2025-12-17 19:46:29', 'dzgb7Mpm', '7345167'), + (209, 2743, 'attending', '2024-07-05 22:31:44', '2025-12-17 19:46:29', 'dzgb7Mpm', '7345688'), + (209, 2749, 'attending', '2024-07-07 18:42:30', '2025-12-17 19:46:29', 'dzgb7Mpm', '7355496'), + (209, 2754, 'attending', '2024-07-14 22:59:55', '2025-12-17 19:46:30', 'dzgb7Mpm', '7356752'), + (209, 2755, 'attending', '2024-07-10 22:19:21', '2025-12-17 19:46:29', 'dzgb7Mpm', '7357808'), + (209, 2757, 'attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dzgb7Mpm', '7358733'), + (209, 2763, 'attending', '2024-07-17 01:29:11', '2025-12-17 19:46:30', 'dzgb7Mpm', '7363594'), + (209, 2764, 'attending', '2024-07-14 23:08:18', '2025-12-17 19:46:30', 'dzgb7Mpm', '7363595'), + (209, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dzgb7Mpm', '7363643'), + (209, 2767, 'attending', '2024-07-17 01:29:08', '2025-12-17 19:46:30', 'dzgb7Mpm', '7364726'), + (209, 2768, 'attending', '2024-07-18 00:36:40', '2025-12-17 19:46:30', 'dzgb7Mpm', '7366031'), + (209, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dzgb7Mpm', '7368606'), + (209, 2776, 'maybe', '2024-07-25 21:05:43', '2025-12-17 19:46:30', 'dzgb7Mpm', '7370690'), + (209, 2783, 'attending', '2024-07-29 22:07:08', '2025-12-17 19:46:31', 'dzgb7Mpm', '7379699'), + (209, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dzgb7Mpm', '7397462'), + (209, 2808, 'attending', '2024-09-01 09:29:20', '2025-12-17 19:46:32', 'dzgb7Mpm', '7412860'), + (209, 2809, 'attending', '2024-08-30 17:37:46', '2025-12-17 19:46:32', 'dzgb7Mpm', '7414808'), + (209, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dzgb7Mpm', '7424275'), + (209, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dzgb7Mpm', '7424276'), + (209, 2824, 'maybe', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dzgb7Mpm', '7432751'), + (209, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dzgb7Mpm', '7432752'), + (209, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dzgb7Mpm', '7432753'), + (209, 2827, 'maybe', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432754'), + (209, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432755'), + (209, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432756'), + (209, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432758'), + (209, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432759'), + (209, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dzgb7Mpm', '7433834'), + (209, 2847, 'not_attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', 'dzgb7Mpm', '7452299'), + (209, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dzgb7Mpm', '7470197'), + (209, 2870, 'maybe', '2024-10-05 17:31:08', '2025-12-17 19:46:26', 'dzgb7Mpm', '7475068'), + (209, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dzgb7Mpm', '7685613'), + (209, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dzgb7Mpm', '7688194'), + (209, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dzgb7Mpm', '7688196'), + (209, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dzgb7Mpm', '7688289'), + (209, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dzgb7Mpm', '7692763'), + (209, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dzgb7Mpm', '7697552'), + (209, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dzgb7Mpm', '7699878'), + (209, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dzgb7Mpm', '7704043'), + (209, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dzgb7Mpm', '7712467'), + (209, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dzgb7Mpm', '7713585'), + (209, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dzgb7Mpm', '7713586'), + (209, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dzgb7Mpm', '7738518'), + (209, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dzgb7Mpm', '7750636'), + (209, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dzgb7Mpm', '7796540'), + (209, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dzgb7Mpm', '7796541'), + (209, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dzgb7Mpm', '7796542'), + (210, 884, 'not_attending', '2021-08-13 22:24:14', '2025-12-17 19:47:42', 'AQ91XjxA', '4210314'), + (210, 903, 'attending', '2021-08-13 21:25:40', '2025-12-17 19:47:42', 'AQ91XjxA', '4240320'), + (210, 926, 'attending', '2021-08-18 02:48:22', '2025-12-17 19:47:42', 'AQ91XjxA', '4297211'), + (210, 948, 'attending', '2021-08-12 22:28:23', '2025-12-17 19:47:41', 'AQ91XjxA', '4315714'), + (210, 971, 'not_attending', '2021-09-09 03:09:19', '2025-12-17 19:47:43', 'AQ91XjxA', '4356801'), + (210, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'AQ91XjxA', '4358025'), + (210, 973, 'not_attending', '2021-08-21 20:37:52', '2025-12-17 19:47:42', 'AQ91XjxA', '4366186'), + (210, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'AQ91XjxA', '4366187'), + (210, 985, 'attending', '2021-08-21 17:04:47', '2025-12-17 19:47:42', 'AQ91XjxA', '4391748'), + (210, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'AQ91XjxA', '4402823'), + (210, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'AQ91XjxA', '4420735'), + (210, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'AQ91XjxA', '4420738'), + (210, 992, 'attending', '2021-09-18 21:54:41', '2025-12-17 19:47:33', 'AQ91XjxA', '4420739'), + (210, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'AQ91XjxA', '4420741'), + (210, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'AQ91XjxA', '4420744'), + (210, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'AQ91XjxA', '4420747'), + (210, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'AQ91XjxA', '4420748'), + (210, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'AQ91XjxA', '4420749'), + (210, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AQ91XjxA', '4461883'), + (210, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AQ91XjxA', '4508342'), + (210, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AQ91XjxA', '4568602'), + (210, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AQ91XjxA', '6045684'), + (211, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', '40k5NaEA', '4420739'), + (211, 993, 'not_attending', '2021-09-27 00:25:15', '2025-12-17 19:47:34', '40k5NaEA', '4420741'), + (211, 994, 'attending', '2021-10-02 21:43:05', '2025-12-17 19:47:34', '40k5NaEA', '4420742'), + (211, 995, 'attending', '2021-10-04 19:55:26', '2025-12-17 19:47:34', '40k5NaEA', '4420744'), + (211, 996, 'attending', '2021-10-10 16:54:22', '2025-12-17 19:47:35', '40k5NaEA', '4420747'), + (211, 997, 'not_attending', '2021-10-23 20:23:29', '2025-12-17 19:47:35', '40k5NaEA', '4420748'), + (211, 998, 'not_attending', '2021-10-29 14:14:52', '2025-12-17 19:47:36', '40k5NaEA', '4420749'), + (211, 1005, 'attending', '2021-09-17 03:45:11', '2025-12-17 19:47:34', '40k5NaEA', '4438807'), + (211, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '40k5NaEA', '4508342'), + (211, 1070, 'attending', '2021-09-30 22:39:38', '2025-12-17 19:47:34', '40k5NaEA', '4512562'), + (211, 1078, 'attending', '2021-10-07 17:15:05', '2025-12-17 19:47:34', '40k5NaEA', '4541281'), + (211, 1086, 'attending', '2021-10-13 19:21:24', '2025-12-17 19:47:34', '40k5NaEA', '4568602'), + (211, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '40k5NaEA', '4572153'), + (211, 1093, 'not_attending', '2021-10-22 15:44:30', '2025-12-17 19:47:35', '40k5NaEA', '4585962'), + (211, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '40k5NaEA', '4596356'), + (211, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '40k5NaEA', '4598860'), + (211, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '40k5NaEA', '4598861'), + (211, 1099, 'not_attending', '2021-11-10 20:17:36', '2025-12-17 19:47:36', '40k5NaEA', '4602797'), + (211, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '40k5NaEA', '4637896'), + (211, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '40k5NaEA', '4642994'), + (211, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '40k5NaEA', '4642995'), + (211, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '40k5NaEA', '4642996'), + (211, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '40k5NaEA', '4642997'), + (211, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '40k5NaEA', '4645687'), + (211, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '40k5NaEA', '4645698'), + (211, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '40k5NaEA', '4645704'), + (211, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '40k5NaEA', '4645705'), + (211, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '40k5NaEA', '4668385'), + (211, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '40k5NaEA', '4694407'), + (211, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '40k5NaEA', '4736497'), + (211, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '40k5NaEA', '4736499'), + (211, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '40k5NaEA', '4736500'), + (211, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '40k5NaEA', '4736503'), + (211, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '40k5NaEA', '4736504'), + (211, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '40k5NaEA', '4746789'), + (211, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '40k5NaEA', '4753929'), + (211, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '40k5NaEA', '5038850'), + (211, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '40k5NaEA', '5045826'), + (211, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '40k5NaEA', '5132533'), + (211, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '40k5NaEA', '5186582'), + (211, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '40k5NaEA', '5186583'), + (211, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '40k5NaEA', '5186585'), + (211, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '40k5NaEA', '5190437'), + (211, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '40k5NaEA', '5215989'), + (211, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40k5NaEA', '6045684'), + (212, 650, 'maybe', '2022-03-16 23:19:39', '2025-12-17 19:47:44', 'dVbr7epd', '3539928'), + (212, 699, 'attending', '2022-03-16 23:19:24', '2025-12-17 19:47:44', 'dVbr7epd', '3572241'), + (212, 712, 'attending', '2022-03-16 23:19:12', '2025-12-17 19:47:44', 'dVbr7epd', '3604056'), + (212, 1240, 'maybe', '2022-03-16 09:57:12', '2025-12-17 19:47:33', 'dVbr7epd', '5052239'), + (212, 1259, 'attending', '2022-03-14 17:48:24', '2025-12-17 19:47:33', 'dVbr7epd', '5132533'), + (212, 1264, 'maybe', '2022-03-15 11:41:09', '2025-12-17 19:47:25', 'dVbr7epd', '5160281'), + (212, 1266, 'maybe', '2022-03-14 17:47:59', '2025-12-17 19:47:33', 'dVbr7epd', '5166407'), + (212, 1268, 'attending', '2022-03-13 23:22:05', '2025-12-17 19:47:33', 'dVbr7epd', '5176296'), + (212, 1270, 'attending', '2022-03-20 00:28:47', '2025-12-17 19:47:25', 'dVbr7epd', '5181277'), + (212, 1271, 'attending', '2022-03-15 11:40:11', '2025-12-17 19:47:25', 'dVbr7epd', '5181648'), + (212, 1272, 'maybe', '2022-03-16 22:18:08', '2025-12-17 19:47:25', 'dVbr7epd', '5186582'), + (212, 1273, 'attending', '2022-03-20 22:10:49', '2025-12-17 19:47:25', 'dVbr7epd', '5186583'), + (212, 1274, 'maybe', '2022-04-02 17:49:22', '2025-12-17 19:47:26', 'dVbr7epd', '5186585'), + (212, 1276, 'maybe', '2022-03-26 16:09:42', '2025-12-17 19:47:25', 'dVbr7epd', '5186820'), + (212, 1277, 'maybe', '2022-03-16 00:48:30', '2025-12-17 19:47:25', 'dVbr7epd', '5186865'), + (212, 1279, 'maybe', '2022-03-16 09:44:42', '2025-12-17 19:47:25', 'dVbr7epd', '5187212'), + (212, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVbr7epd', '5190437'), + (212, 1282, 'attending', '2022-03-19 13:57:35', '2025-12-17 19:47:25', 'dVbr7epd', '5191241'), + (212, 1284, 'maybe', '2022-04-02 17:45:41', '2025-12-17 19:47:27', 'dVbr7epd', '5195095'), + (212, 1289, 'attending', '2022-03-23 19:17:59', '2025-12-17 19:47:25', 'dVbr7epd', '5200190'), + (212, 1290, 'attending', '2022-03-23 19:18:09', '2025-12-17 19:47:25', 'dVbr7epd', '5200196'), + (212, 1292, 'attending', '2022-03-28 16:46:55', '2025-12-17 19:47:25', 'dVbr7epd', '5214043'), + (212, 1293, 'maybe', '2022-03-27 20:57:06', '2025-12-17 19:47:27', 'dVbr7epd', '5214641'), + (212, 1294, 'attending', '2022-04-02 09:19:17', '2025-12-17 19:47:26', 'dVbr7epd', '5214686'), + (212, 1296, 'maybe', '2022-04-02 17:48:40', '2025-12-17 19:47:26', 'dVbr7epd', '5215985'), + (212, 1297, 'attending', '2022-03-28 16:46:21', '2025-12-17 19:47:25', 'dVbr7epd', '5215989'), + (212, 1302, 'not_attending', '2022-04-02 17:48:18', '2025-12-17 19:47:27', 'dVbr7epd', '5220867'), + (212, 1303, 'maybe', '2022-04-07 05:41:37', '2025-12-17 19:47:27', 'dVbr7epd', '5222531'), + (212, 1304, 'maybe', '2022-04-05 01:33:54', '2025-12-17 19:47:26', 'dVbr7epd', '5223468'), + (212, 1307, 'maybe', '2022-04-04 22:07:20', '2025-12-17 19:47:26', 'dVbr7epd', '5223686'), + (212, 1308, 'maybe', '2022-04-13 19:55:52', '2025-12-17 19:47:27', 'dVbr7epd', '5226703'), + (212, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVbr7epd', '5227432'), + (212, 1316, 'attending', '2022-04-12 13:23:14', '2025-12-17 19:47:27', 'dVbr7epd', '5237536'), + (212, 1318, 'maybe', '2022-04-12 13:23:39', '2025-12-17 19:47:27', 'dVbr7epd', '5238343'), + (212, 1321, 'maybe', '2022-04-12 13:23:48', '2025-12-17 19:47:27', 'dVbr7epd', '5238355'), + (212, 1322, 'attending', '2022-04-12 13:24:22', '2025-12-17 19:47:27', 'dVbr7epd', '5238356'), + (212, 1328, 'maybe', '2022-04-12 13:52:40', '2025-12-17 19:47:27', 'dVbr7epd', '5238759'), + (212, 1332, 'maybe', '2022-04-15 18:19:59', '2025-12-17 19:47:27', 'dVbr7epd', '5243274'), + (212, 1336, 'attending', '2022-04-17 15:35:29', '2025-12-17 19:47:27', 'dVbr7epd', '5244915'), + (212, 1337, 'attending', '2022-04-18 19:39:39', '2025-12-17 19:47:27', 'dVbr7epd', '5245036'), + (212, 1341, 'maybe', '2022-04-17 01:51:23', '2025-12-17 19:47:28', 'dVbr7epd', '5245755'), + (212, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dVbr7epd', '5247467'), + (212, 1347, 'maybe', '2022-04-18 19:39:58', '2025-12-17 19:47:27', 'dVbr7epd', '5247537'), + (212, 1349, 'maybe', '2022-04-21 22:25:36', '2025-12-17 19:47:27', 'dVbr7epd', '5249631'), + (212, 1351, 'maybe', '2022-04-22 21:12:39', '2025-12-17 19:47:28', 'dVbr7epd', '5251561'), + (212, 1359, 'maybe', '2022-04-25 09:06:26', '2025-12-17 19:47:28', 'dVbr7epd', '5258360'), + (212, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dVbr7epd', '5260800'), + (212, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dVbr7epd', '5269930'), + (212, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dVbr7epd', '5271448'), + (212, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dVbr7epd', '5271449'), + (212, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dVbr7epd', '5276469'), + (212, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'dVbr7epd', '5277078'), + (212, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVbr7epd', '5278159'), + (212, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dVbr7epd', '5363695'), + (212, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVbr7epd', '5365960'), + (212, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dVbr7epd', '5368973'), + (212, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVbr7epd', '5378247'), + (212, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dVbr7epd', '5389605'), + (212, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dVbr7epd', '5397265'), + (212, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dVbr7epd', '5403967'), + (212, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVbr7epd', '5404786'), + (212, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVbr7epd', '5405203'), + (212, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dVbr7epd', '5411699'), + (212, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dVbr7epd', '5412550'), + (212, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dVbr7epd', '5415046'), + (212, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVbr7epd', '5422086'), + (212, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dVbr7epd', '5422406'), + (212, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVbr7epd', '5424565'), + (212, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVbr7epd', '5426882'), + (212, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dVbr7epd', '5427083'), + (212, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dVbr7epd', '5441125'), + (212, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dVbr7epd', '5441126'), + (212, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVbr7epd', '5441128'), + (212, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVbr7epd', '5441131'), + (212, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVbr7epd', '5441132'), + (212, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVbr7epd', '5446643'), + (212, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVbr7epd', '5453325'), + (212, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVbr7epd', '5454516'), + (212, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVbr7epd', '5454605'), + (212, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVbr7epd', '5455037'), + (212, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVbr7epd', '5461278'), + (212, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVbr7epd', '5469480'), + (212, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVbr7epd', '5471073'), + (212, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVbr7epd', '5474663'), + (212, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVbr7epd', '5482022'), + (212, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVbr7epd', '5482793'), + (212, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVbr7epd', '5488912'), + (212, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVbr7epd', '5492192'), + (212, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVbr7epd', '5493139'), + (212, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVbr7epd', '5493200'), + (212, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVbr7epd', '5502188'), + (212, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVbr7epd', '5505059'), + (212, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVbr7epd', '5509055'), + (212, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVbr7epd', '5512862'), + (212, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVbr7epd', '5513985'), + (212, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dVbr7epd', '5519981'), + (212, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVbr7epd', '5522550'), + (212, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVbr7epd', '5534683'), + (212, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVbr7epd', '5537735'), + (212, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVbr7epd', '5540859'), + (212, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVbr7epd', '5546619'), + (212, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVbr7epd', '5555245'), + (212, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVbr7epd', '5557747'), + (212, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVbr7epd', '5560255'), + (212, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVbr7epd', '5562906'), + (212, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVbr7epd', '5600604'), + (212, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVbr7epd', '5605544'), + (212, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'dVbr7epd', '5606737'), + (212, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVbr7epd', '5630960'), + (212, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVbr7epd', '5630961'), + (212, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVbr7epd', '5630962'), + (212, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVbr7epd', '5630966'), + (212, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVbr7epd', '5630967'), + (212, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVbr7epd', '5630968'), + (212, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVbr7epd', '5635406'), + (212, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVbr7epd', '5638765'), + (212, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVbr7epd', '5640097'), + (212, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVbr7epd', '5640843'), + (212, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVbr7epd', '5641521'), + (212, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVbr7epd', '5642818'), + (212, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVbr7epd', '5652395'), + (212, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVbr7epd', '5670445'), + (212, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVbr7epd', '5671637'), + (212, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVbr7epd', '5672329'), + (212, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVbr7epd', '5674057'), + (212, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVbr7epd', '5674060'), + (212, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVbr7epd', '5677461'), + (212, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVbr7epd', '5698046'), + (212, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVbr7epd', '5699760'), + (212, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVbr7epd', '5741601'), + (212, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVbr7epd', '5763458'), + (212, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVbr7epd', '5774172'), + (212, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVbr7epd', '5818247'), + (212, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVbr7epd', '5819471'), + (212, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVbr7epd', '5827739'), + (212, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVbr7epd', '5844306'), + (212, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVbr7epd', '5850159'), + (212, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVbr7epd', '5858999'), + (212, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVbr7epd', '5871984'), + (212, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVbr7epd', '5876354'), + (212, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVbr7epd', '5880939'), + (212, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dVbr7epd', '5880940'), + (212, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVbr7epd', '5880942'), + (212, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVbr7epd', '5880943'), + (212, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVbr7epd', '5887890'), + (212, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVbr7epd', '5888598'), + (212, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVbr7epd', '5893260'), + (212, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dVbr7epd', '5899826'), + (212, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dVbr7epd', '5900199'), + (212, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVbr7epd', '5900200'), + (212, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVbr7epd', '5900202'), + (212, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVbr7epd', '5900203'), + (212, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dVbr7epd', '5901108'), + (212, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dVbr7epd', '5901126'), + (212, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dVbr7epd', '5909655'), + (212, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dVbr7epd', '5910522'), + (212, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dVbr7epd', '5910526'), + (212, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dVbr7epd', '5910528'), + (212, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dVbr7epd', '5916219'), + (212, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVbr7epd', '5936234'), + (212, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVbr7epd', '5958351'), + (212, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVbr7epd', '5959751'), + (212, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVbr7epd', '5959755'), + (212, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVbr7epd', '5960055'), + (212, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVbr7epd', '5961684'), + (212, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVbr7epd', '5962132'), + (212, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVbr7epd', '5962133'), + (212, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVbr7epd', '5962134'), + (212, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVbr7epd', '5962317'), + (212, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVbr7epd', '5962318'), + (212, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVbr7epd', '5965933'), + (212, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVbr7epd', '5967014'), + (212, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVbr7epd', '5972815'), + (212, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVbr7epd', '5974016'), + (212, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dVbr7epd', '5975052'), + (212, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dVbr7epd', '5975054'), + (212, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVbr7epd', '5981515'), + (212, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVbr7epd', '5993516'), + (212, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVbr7epd', '5998939'), + (212, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVbr7epd', '6028191'), + (212, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVbr7epd', '6040066'), + (212, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVbr7epd', '6042717'), + (212, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVbr7epd', '6044838'), + (212, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVbr7epd', '6044839'), + (212, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbr7epd', '6045684'), + (212, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVbr7epd', '6050104'), + (212, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVbr7epd', '6053195'), + (212, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVbr7epd', '6053198'), + (212, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVbr7epd', '6056085'), + (212, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVbr7epd', '6056916'), + (212, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVbr7epd', '6059290'), + (212, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVbr7epd', '6060328'), + (212, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVbr7epd', '6061037'), + (212, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVbr7epd', '6061039'), + (212, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVbr7epd', '6067245'), + (212, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVbr7epd', '6068094'), + (212, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVbr7epd', '6068252'), + (212, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVbr7epd', '6068253'), + (212, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVbr7epd', '6068254'), + (212, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVbr7epd', '6068280'), + (212, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVbr7epd', '6069093'), + (212, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dVbr7epd', '6072528'), + (212, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dVbr7epd', '6075556'), + (212, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVbr7epd', '6079840'), + (212, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVbr7epd', '6083398'), + (212, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVbr7epd', '6093504'), + (212, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVbr7epd', '6097414'), + (212, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVbr7epd', '6097442'), + (212, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVbr7epd', '6097684'), + (212, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVbr7epd', '6098762'), + (212, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVbr7epd', '6101362'), + (212, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVbr7epd', '6107314'), + (213, 406, 'attending', '2021-04-22 15:43:30', '2025-12-17 19:47:44', 'pmbpnwE4', '3236464'), + (213, 644, 'attending', '2021-04-22 22:45:06', '2025-12-17 19:47:45', 'pmbpnwE4', '3539919'), + (213, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'pmbpnwE4', '3539920'), + (213, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'pmbpnwE4', '3539921'), + (213, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'pmbpnwE4', '3539922'), + (213, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'pmbpnwE4', '3539923'), + (213, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'pmbpnwE4', '3583262'), + (213, 768, 'attending', '2021-04-26 22:35:00', '2025-12-17 19:47:46', 'pmbpnwE4', '3724124'), + (213, 775, 'attending', '2021-04-22 03:45:41', '2025-12-17 19:47:45', 'pmbpnwE4', '3731062'), + (213, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'pmbpnwE4', '3793156'), + (213, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmbpnwE4', '3975311'), + (213, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbpnwE4', '3994992'), + (213, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbpnwE4', '6045684'), + (214, 971, 'attending', '2021-09-08 19:13:55', '2025-12-17 19:47:43', 'dBnl00wd', '4356801'), + (214, 991, 'attending', '2021-09-08 09:48:38', '2025-12-17 19:47:43', 'dBnl00wd', '4420738'), + (214, 992, 'not_attending', '2021-09-19 01:31:23', '2025-12-17 19:47:34', 'dBnl00wd', '4420739'), + (214, 993, 'attending', '2021-09-09 22:57:54', '2025-12-17 19:47:34', 'dBnl00wd', '4420741'), + (214, 994, 'attending', '2021-10-02 18:13:45', '2025-12-17 19:47:34', 'dBnl00wd', '4420742'), + (214, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dBnl00wd', '4420744'), + (214, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dBnl00wd', '4420747'), + (214, 1004, 'attending', '2021-09-08 09:48:55', '2025-12-17 19:47:43', 'dBnl00wd', '4438804'), + (214, 1019, 'attending', '2021-09-09 22:57:25', '2025-12-17 19:47:43', 'dBnl00wd', '4450515'), + (214, 1020, 'maybe', '2021-09-13 14:10:05', '2025-12-17 19:47:43', 'dBnl00wd', '4451787'), + (214, 1022, 'attending', '2021-09-09 22:57:15', '2025-12-17 19:47:43', 'dBnl00wd', '4458628'), + (214, 1023, 'not_attending', '2021-09-09 22:55:39', '2025-12-17 19:47:43', 'dBnl00wd', '4461883'), + (214, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dBnl00wd', '4508342'), + (214, 1072, 'attending', '2021-10-06 23:24:25', '2025-12-17 19:47:34', 'dBnl00wd', '4516287'), + (214, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dBnl00wd', '4568602'), + (214, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dBnl00wd', '6045684'), + (215, 221, 'attending', '2020-09-15 21:53:55', '2025-12-17 19:47:56', 'GmjM1Vad', '3129265'), + (215, 311, 'attending', '2020-09-18 15:00:39', '2025-12-17 19:47:56', 'GmjM1Vad', '3186057'), + (215, 340, 'attending', '2020-09-18 15:00:52', '2025-12-17 19:47:56', 'GmjM1Vad', '3204470'), + (215, 341, 'maybe', '2020-09-25 20:59:59', '2025-12-17 19:47:52', 'GmjM1Vad', '3204471'), + (215, 342, 'attending', '2020-10-02 19:37:12', '2025-12-17 19:47:52', 'GmjM1Vad', '3204472'), + (215, 344, 'maybe', '2020-11-01 17:06:13', '2025-12-17 19:47:53', 'GmjM1Vad', '3206906'), + (215, 348, 'maybe', '2020-09-27 03:24:59', '2025-12-17 19:47:52', 'GmjM1Vad', '3209159'), + (215, 362, 'attending', '2020-09-20 16:19:33', '2025-12-17 19:47:52', 'GmjM1Vad', '3214207'), + (215, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'GmjM1Vad', '3217037'), + (215, 364, 'maybe', '2020-09-19 16:10:52', '2025-12-17 19:47:56', 'GmjM1Vad', '3217106'), + (215, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'GmjM1Vad', '3218510'), + (215, 375, 'maybe', '2020-10-05 02:50:43', '2025-12-17 19:47:52', 'GmjM1Vad', '3222825'), + (215, 382, 'maybe', '2020-09-27 21:57:48', '2025-12-17 19:47:52', 'GmjM1Vad', '3226873'), + (215, 385, 'attending', '2020-09-28 23:18:04', '2025-12-17 19:47:52', 'GmjM1Vad', '3228698'), + (215, 386, 'attending', '2020-10-09 17:04:36', '2025-12-17 19:47:52', 'GmjM1Vad', '3228699'), + (215, 387, 'not_attending', '2020-10-17 18:27:03', '2025-12-17 19:47:52', 'GmjM1Vad', '3228700'), + (215, 388, 'attending', '2020-10-24 13:59:21', '2025-12-17 19:47:52', 'GmjM1Vad', '3228701'), + (215, 390, 'maybe', '2020-10-01 18:19:50', '2025-12-17 19:47:52', 'GmjM1Vad', '3231510'), + (215, 411, 'maybe', '2020-10-04 22:14:43', '2025-12-17 19:47:52', 'GmjM1Vad', '3236596'), + (215, 414, 'not_attending', '2020-10-18 20:04:32', '2025-12-17 19:47:52', 'GmjM1Vad', '3237277'), + (215, 415, 'maybe', '2020-10-12 16:43:09', '2025-12-17 19:47:52', 'GmjM1Vad', '3238044'), + (215, 416, 'maybe', '2020-10-09 20:39:27', '2025-12-17 19:47:52', 'GmjM1Vad', '3238073'), + (215, 417, 'maybe', '2020-10-08 19:52:01', '2025-12-17 19:47:52', 'GmjM1Vad', '3238779'), + (215, 420, 'attending', '2020-10-15 22:54:55', '2025-12-17 19:47:52', 'GmjM1Vad', '3245293'), + (215, 421, 'maybe', '2020-10-23 22:59:03', '2025-12-17 19:47:52', 'GmjM1Vad', '3245294'), + (215, 422, 'maybe', '2020-10-29 22:10:31', '2025-12-17 19:47:53', 'GmjM1Vad', '3245295'), + (215, 423, 'maybe', '2020-11-05 23:56:00', '2025-12-17 19:47:53', 'GmjM1Vad', '3245296'), + (215, 424, 'maybe', '2020-10-12 01:12:00', '2025-12-17 19:47:52', 'GmjM1Vad', '3245751'), + (215, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GmjM1Vad', '3250232'), + (215, 428, 'maybe', '2020-10-26 20:03:30', '2025-12-17 19:47:53', 'GmjM1Vad', '3250332'), + (215, 438, 'maybe', '2020-10-31 20:34:10', '2025-12-17 19:47:53', 'GmjM1Vad', '3256163'), + (215, 439, 'maybe', '2020-10-28 18:26:17', '2025-12-17 19:47:53', 'GmjM1Vad', '3256164'), + (215, 440, 'maybe', '2020-10-18 16:39:59', '2025-12-17 19:47:53', 'GmjM1Vad', '3256168'), + (215, 441, 'maybe', '2020-11-14 16:17:42', '2025-12-17 19:47:54', 'GmjM1Vad', '3256169'), + (215, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GmjM1Vad', '3263578'), + (215, 445, 'maybe', '2020-11-12 19:47:51', '2025-12-17 19:47:54', 'GmjM1Vad', '3266138'), + (215, 447, 'maybe', '2020-10-28 00:43:18', '2025-12-17 19:47:53', 'GmjM1Vad', '3267895'), + (215, 456, 'maybe', '2020-11-05 15:17:35', '2025-12-17 19:47:54', 'GmjM1Vad', '3276428'), + (215, 459, 'maybe', '2020-11-10 00:12:43', '2025-12-17 19:47:54', 'GmjM1Vad', '3281467'), + (215, 461, 'maybe', '2020-11-10 00:13:00', '2025-12-17 19:47:53', 'GmjM1Vad', '3281469'), + (215, 462, 'not_attending', '2020-11-11 22:51:00', '2025-12-17 19:47:54', 'GmjM1Vad', '3281470'), + (215, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GmjM1Vad', '3281829'), + (215, 468, 'maybe', '2020-11-11 22:51:10', '2025-12-17 19:47:54', 'GmjM1Vad', '3285413'), + (215, 469, 'maybe', '2020-11-11 22:51:08', '2025-12-17 19:47:54', 'GmjM1Vad', '3285414'), + (215, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GmjM1Vad', '3297764'), + (215, 493, 'maybe', '2020-12-05 15:31:35', '2025-12-17 19:47:54', 'GmjM1Vad', '3313856'), + (215, 497, 'maybe', '2020-12-15 00:20:07', '2025-12-17 19:47:55', 'GmjM1Vad', '3314270'), + (215, 499, 'maybe', '2020-12-05 15:31:42', '2025-12-17 19:47:55', 'GmjM1Vad', '3314909'), + (215, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GmjM1Vad', '3314964'), + (215, 502, 'not_attending', '2020-12-12 20:34:05', '2025-12-17 19:47:55', 'GmjM1Vad', '3323365'), + (215, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GmjM1Vad', '3329383'), + (215, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GmjM1Vad', '3351539'), + (215, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GmjM1Vad', '3386848'), + (215, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GmjM1Vad', '3389527'), + (215, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GmjM1Vad', '3396499'), + (215, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GmjM1Vad', '3403650'), + (215, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GmjM1Vad', '3406988'), + (215, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GmjM1Vad', '3416576'), + (215, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'GmjM1Vad', '3418925'), + (215, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'GmjM1Vad', '3430267'), + (215, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'GmjM1Vad', '3470303'), + (215, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'GmjM1Vad', '3470305'), + (215, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GmjM1Vad', '3470991'), + (215, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'GmjM1Vad', '3517815'), + (215, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'GmjM1Vad', '3517816'), + (215, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'GmjM1Vad', '3523941'), + (215, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GmjM1Vad', '3533850'), + (215, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GmjM1Vad', '3536632'), + (215, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GmjM1Vad', '3536656'), + (215, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'GmjM1Vad', '3539916'), + (215, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'GmjM1Vad', '3539917'), + (215, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'GmjM1Vad', '3539918'), + (215, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'GmjM1Vad', '3539919'), + (215, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'GmjM1Vad', '3539920'), + (215, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'GmjM1Vad', '3539921'), + (215, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'GmjM1Vad', '3539922'), + (215, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'GmjM1Vad', '3539923'), + (215, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GmjM1Vad', '3539927'), + (215, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GmjM1Vad', '3582734'), + (215, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GmjM1Vad', '3583262'), + (215, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GmjM1Vad', '3619523'), + (215, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GmjM1Vad', '3661369'), + (215, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GmjM1Vad', '3674262'), + (215, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GmjM1Vad', '3677402'), + (215, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GmjM1Vad', '3730212'), + (215, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GmjM1Vad', '3793156'), + (215, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjM1Vad', '3974109'), + (215, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjM1Vad', '3975311'), + (215, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjM1Vad', '3975312'), + (215, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjM1Vad', '3994992'), + (215, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjM1Vad', '4014338'), + (215, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GmjM1Vad', '4021848'), + (215, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjM1Vad', '4136744'), + (215, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GmjM1Vad', '4136937'), + (215, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GmjM1Vad', '4136938'), + (215, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjM1Vad', '4136947'), + (215, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjM1Vad', '4210314'), + (215, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjM1Vad', '4225444'), + (215, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjM1Vad', '4239259'), + (215, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GmjM1Vad', '4240316'), + (215, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GmjM1Vad', '4240317'), + (215, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GmjM1Vad', '4240318'), + (215, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GmjM1Vad', '4240320'), + (215, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GmjM1Vad', '4250163'), + (215, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjM1Vad', '4275957'), + (215, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjM1Vad', '4277819'), + (215, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjM1Vad', '4301723'), + (215, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GmjM1Vad', '4302093'), + (215, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjM1Vad', '4304151'), + (215, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjM1Vad', '4356801'), + (215, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GmjM1Vad', '4366186'), + (215, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GmjM1Vad', '4366187'), + (215, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GmjM1Vad', '4420735'), + (215, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GmjM1Vad', '4420738'), + (215, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GmjM1Vad', '4420739'), + (215, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjM1Vad', '4420741'), + (215, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GmjM1Vad', '4420744'), + (215, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GmjM1Vad', '4420747'), + (215, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GmjM1Vad', '4420748'), + (215, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjM1Vad', '4420749'), + (215, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GmjM1Vad', '4461883'), + (215, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GmjM1Vad', '4508342'), + (215, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GmjM1Vad', '4568602'), + (215, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GmjM1Vad', '4572153'), + (215, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GmjM1Vad', '4585962'), + (215, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'GmjM1Vad', '4596356'), + (215, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GmjM1Vad', '4598860'), + (215, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'GmjM1Vad', '4598861'), + (215, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GmjM1Vad', '4602797'), + (215, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'GmjM1Vad', '4637896'), + (215, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'GmjM1Vad', '4642994'), + (215, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'GmjM1Vad', '4642995'), + (215, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GmjM1Vad', '4642996'), + (215, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GmjM1Vad', '4642997'), + (215, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'GmjM1Vad', '4645687'), + (215, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GmjM1Vad', '4645698'), + (215, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'GmjM1Vad', '4645704'), + (215, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'GmjM1Vad', '4645705'), + (215, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GmjM1Vad', '4668385'), + (215, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GmjM1Vad', '4694407'), + (215, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GmjM1Vad', '4736497'), + (215, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GmjM1Vad', '4736499'), + (215, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GmjM1Vad', '4736500'), + (215, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GmjM1Vad', '4736503'), + (215, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'GmjM1Vad', '4736504'), + (215, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GmjM1Vad', '4746789'), + (215, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'GmjM1Vad', '4753929'), + (215, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GmjM1Vad', '5038850'), + (215, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GmjM1Vad', '5045826'), + (215, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GmjM1Vad', '5132533'), + (215, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GmjM1Vad', '5186582'), + (215, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GmjM1Vad', '5186583'), + (215, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'GmjM1Vad', '5186585'), + (215, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GmjM1Vad', '5190437'), + (215, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GmjM1Vad', '5195095'), + (215, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GmjM1Vad', '5215989'), + (215, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GmjM1Vad', '5223686'), + (215, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GmjM1Vad', '5247467'), + (215, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'GmjM1Vad', '5260800'), + (215, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GmjM1Vad', '5269930'), + (215, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GmjM1Vad', '5271448'), + (215, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'GmjM1Vad', '5271449'), + (215, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GmjM1Vad', '5278159'), + (215, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'GmjM1Vad', '5363695'), + (215, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GmjM1Vad', '5365960'), + (215, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GmjM1Vad', '5378247'), + (215, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GmjM1Vad', '5389605'), + (215, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GmjM1Vad', '5397265'), + (215, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GmjM1Vad', '5404786'), + (215, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GmjM1Vad', '5405203'), + (215, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GmjM1Vad', '5412550'), + (215, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GmjM1Vad', '5415046'), + (215, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GmjM1Vad', '5422086'), + (215, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GmjM1Vad', '5422406'), + (215, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GmjM1Vad', '5424565'), + (215, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GmjM1Vad', '5426882'), + (215, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GmjM1Vad', '5441125'), + (215, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GmjM1Vad', '5441126'), + (215, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GmjM1Vad', '5441128'), + (215, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjM1Vad', '5441131'), + (215, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjM1Vad', '5441132'), + (215, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GmjM1Vad', '5453325'), + (215, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GmjM1Vad', '5454516'), + (215, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GmjM1Vad', '5454605'), + (215, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GmjM1Vad', '5455037'), + (215, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjM1Vad', '5461278'), + (215, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GmjM1Vad', '5469480'), + (215, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GmjM1Vad', '5474663'), + (215, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GmjM1Vad', '5482022'), + (215, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjM1Vad', '5488912'), + (215, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjM1Vad', '5492192'), + (215, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjM1Vad', '5493139'), + (215, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjM1Vad', '5493200'), + (215, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjM1Vad', '5502188'), + (215, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjM1Vad', '5505059'), + (215, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GmjM1Vad', '5509055'), + (215, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjM1Vad', '5512862'), + (215, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjM1Vad', '5513985'), + (215, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GmjM1Vad', '5519981'), + (215, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjM1Vad', '5522550'), + (215, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjM1Vad', '5534683'), + (215, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjM1Vad', '5537735'), + (215, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjM1Vad', '5540859'), + (215, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjM1Vad', '5546619'), + (215, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjM1Vad', '5557747'), + (215, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjM1Vad', '5560255'), + (215, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjM1Vad', '5562906'), + (215, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjM1Vad', '5600604'), + (215, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjM1Vad', '5605544'), + (215, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GmjM1Vad', '5630960'), + (215, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjM1Vad', '5630961'), + (215, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjM1Vad', '5630962'), + (215, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GmjM1Vad', '5630966'), + (215, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GmjM1Vad', '5630967'), + (215, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjM1Vad', '5630968'), + (215, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjM1Vad', '5635406'), + (215, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjM1Vad', '5638765'), + (215, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjM1Vad', '5640097'), + (215, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjM1Vad', '5640843'), + (215, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjM1Vad', '5641521'), + (215, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GmjM1Vad', '5642818'), + (215, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjM1Vad', '5652395'), + (215, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GmjM1Vad', '5670445'), + (215, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjM1Vad', '5671637'), + (215, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjM1Vad', '5672329'), + (215, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjM1Vad', '5674057'), + (215, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjM1Vad', '5674060'), + (215, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GmjM1Vad', '5677461'), + (215, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjM1Vad', '5698046'), + (215, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GmjM1Vad', '5699760'), + (215, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjM1Vad', '5741601'), + (215, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjM1Vad', '5763458'), + (215, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjM1Vad', '5774172'), + (215, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GmjM1Vad', '5818247'), + (215, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjM1Vad', '5819471'), + (215, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'GmjM1Vad', '5827739'), + (215, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjM1Vad', '5844306'), + (215, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjM1Vad', '5850159'), + (215, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjM1Vad', '5858999'), + (215, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjM1Vad', '5871984'), + (215, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjM1Vad', '5876354'), + (215, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjM1Vad', '5880939'), + (215, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjM1Vad', '5880940'), + (215, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GmjM1Vad', '5880942'), + (215, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjM1Vad', '5880943'), + (215, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjM1Vad', '5887890'), + (215, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjM1Vad', '5888598'), + (215, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjM1Vad', '5893260'), + (215, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjM1Vad', '5899826'), + (215, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjM1Vad', '5900199'), + (215, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjM1Vad', '5900200'), + (215, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjM1Vad', '5900202'), + (215, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjM1Vad', '5900203'), + (215, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GmjM1Vad', '5901108'), + (215, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjM1Vad', '5901126'), + (215, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'GmjM1Vad', '5901606'), + (215, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjM1Vad', '5909655'), + (215, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjM1Vad', '5910522'), + (215, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjM1Vad', '5910526'), + (215, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjM1Vad', '5910528'), + (215, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjM1Vad', '5916219'), + (215, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GmjM1Vad', '5936234'), + (215, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjM1Vad', '5958351'), + (215, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjM1Vad', '5959751'), + (215, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjM1Vad', '5959755'), + (215, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjM1Vad', '5960055'), + (215, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjM1Vad', '5961684'), + (215, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GmjM1Vad', '5962132'), + (215, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GmjM1Vad', '5962133'), + (215, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjM1Vad', '5962134'), + (215, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjM1Vad', '5962317'), + (215, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjM1Vad', '5962318'), + (215, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GmjM1Vad', '5965933'), + (215, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjM1Vad', '5967014'), + (215, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjM1Vad', '5972815'), + (215, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjM1Vad', '5974016'), + (215, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjM1Vad', '5981515'), + (215, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjM1Vad', '5993516'), + (215, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjM1Vad', '5998939'), + (215, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjM1Vad', '6028191'), + (215, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjM1Vad', '6040066'), + (215, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjM1Vad', '6042717'), + (215, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjM1Vad', '6044838'), + (215, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GmjM1Vad', '6044839'), + (215, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjM1Vad', '6045684'), + (215, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjM1Vad', '6050104'), + (215, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjM1Vad', '6053195'), + (215, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjM1Vad', '6053198'), + (215, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjM1Vad', '6056085'), + (215, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjM1Vad', '6056916'), + (215, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjM1Vad', '6059290'), + (215, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjM1Vad', '6060328'), + (215, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjM1Vad', '6061037'), + (215, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjM1Vad', '6061039'), + (215, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjM1Vad', '6067245'), + (215, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjM1Vad', '6068094'), + (215, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjM1Vad', '6068252'), + (215, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjM1Vad', '6068253'), + (215, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjM1Vad', '6068254'), + (215, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GmjM1Vad', '6068280'), + (215, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjM1Vad', '6069093'), + (215, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GmjM1Vad', '6072528'), + (215, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjM1Vad', '6079840'), + (215, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjM1Vad', '6083398'), + (215, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GmjM1Vad', '6093504'), + (215, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjM1Vad', '6097414'), + (215, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjM1Vad', '6097442'), + (215, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjM1Vad', '6097684'), + (215, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjM1Vad', '6098762'), + (215, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjM1Vad', '6101361'), + (215, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjM1Vad', '6101362'), + (215, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjM1Vad', '6107314'), + (215, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GmjM1Vad', '6120034'), + (215, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GmjM1Vad', '6136733'), + (215, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjM1Vad', '6137989'), + (215, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjM1Vad', '6150864'), + (215, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjM1Vad', '6155491'), + (215, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjM1Vad', '6164417'), + (215, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjM1Vad', '6166388'), + (215, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjM1Vad', '6176439'), + (215, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GmjM1Vad', '6182410'), + (215, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjM1Vad', '6185812'), + (215, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjM1Vad', '6187651'), + (215, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjM1Vad', '6187963'), + (215, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjM1Vad', '6187964'), + (215, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjM1Vad', '6187966'), + (215, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjM1Vad', '6187967'), + (215, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjM1Vad', '6187969'), + (215, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjM1Vad', '6334878'), + (215, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjM1Vad', '6337236'), + (215, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjM1Vad', '6337970'), + (215, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjM1Vad', '6338308'), + (215, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjM1Vad', '6341710'), + (215, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjM1Vad', '6342044'), + (215, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjM1Vad', '6342298'), + (215, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GmjM1Vad', '6343294'), + (215, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjM1Vad', '6347034'), + (215, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjM1Vad', '6347056'), + (215, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjM1Vad', '6353830'), + (215, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjM1Vad', '6353831'), + (215, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjM1Vad', '6357867'), + (215, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjM1Vad', '6358652'), + (215, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjM1Vad', '6361709'), + (215, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjM1Vad', '6361710'), + (215, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjM1Vad', '6361711'), + (215, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjM1Vad', '6361712'), + (215, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjM1Vad', '6361713'), + (215, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GmjM1Vad', '6382573'), + (215, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GmjM1Vad', '6388604'), + (215, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GmjM1Vad', '6394629'), + (215, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjM1Vad', '6394631'), + (215, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjM1Vad', '6440863'), + (215, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjM1Vad', '6445440'), + (215, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjM1Vad', '6453951'), + (215, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjM1Vad', '6461696'), + (215, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjM1Vad', '6462129'), + (215, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjM1Vad', '6463218'), + (215, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GmjM1Vad', '6472181'), + (215, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjM1Vad', '6482693'), + (215, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GmjM1Vad', '6484200'), + (215, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GmjM1Vad', '6484680'), + (215, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjM1Vad', '6507741'), + (215, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GmjM1Vad', '6514659'), + (215, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GmjM1Vad', '6514660'), + (215, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjM1Vad', '6519103'), + (215, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjM1Vad', '6535681'), + (215, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjM1Vad', '6584747'), + (215, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjM1Vad', '6587097'), + (215, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjM1Vad', '6609022'), + (215, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GmjM1Vad', '6632757'), + (215, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjM1Vad', '6644187'), + (215, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjM1Vad', '6648951'), + (215, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GmjM1Vad', '6648952'), + (215, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjM1Vad', '6655401'), + (215, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjM1Vad', '6661585'), + (215, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjM1Vad', '6661588'), + (215, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjM1Vad', '6661589'), + (215, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjM1Vad', '6699906'), + (215, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GmjM1Vad', '6699913'), + (215, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjM1Vad', '6701109'), + (215, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjM1Vad', '6705219'), + (215, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjM1Vad', '6710153'), + (215, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjM1Vad', '6711552'), + (215, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GmjM1Vad', '6711553'), + (215, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjM1Vad', '6722688'), + (215, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjM1Vad', '6730620'), + (215, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjM1Vad', '6740364'), + (215, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjM1Vad', '6743829'), + (215, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjM1Vad', '7030380'), + (215, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GmjM1Vad', '7033677'), + (215, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjM1Vad', '7044715'), + (215, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjM1Vad', '7050318'), + (215, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjM1Vad', '7050319'), + (215, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjM1Vad', '7050322'), + (215, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjM1Vad', '7057804'), + (215, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjM1Vad', '7072824'), + (215, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjM1Vad', '7074348'), + (215, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GmjM1Vad', '7074364'), + (215, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GmjM1Vad', '7089267'), + (215, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjM1Vad', '7098747'), + (215, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GmjM1Vad', '7113468'), + (215, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjM1Vad', '7114856'), + (215, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjM1Vad', '7114951'), + (215, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjM1Vad', '7114955'), + (215, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjM1Vad', '7114956'), + (215, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GmjM1Vad', '7114957'), + (215, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjM1Vad', '7159484'), + (215, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjM1Vad', '7178446'), + (215, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GmjM1Vad', '7220467'), + (215, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjM1Vad', '7240354'), + (215, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjM1Vad', '7251633'), + (215, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjM1Vad', '7324073'), + (215, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjM1Vad', '7324074'), + (215, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GmjM1Vad', '7324075'), + (215, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GmjM1Vad', '7324078'), + (215, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GmjM1Vad', '7324082'), + (215, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GmjM1Vad', '7331457'), + (215, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GmjM1Vad', '7363643'), + (215, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GmjM1Vad', '7368606'), + (215, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GmjM1Vad', '7397462'), + (215, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GmjM1Vad', '7424275'), + (215, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GmjM1Vad', '7432751'), + (215, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GmjM1Vad', '7432752'), + (215, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GmjM1Vad', '7432753'), + (215, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GmjM1Vad', '7432754'), + (215, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GmjM1Vad', '7432755'), + (215, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GmjM1Vad', '7432756'), + (215, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GmjM1Vad', '7432758'), + (215, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GmjM1Vad', '7432759'), + (215, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GmjM1Vad', '7433834'), + (215, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GmjM1Vad', '7470197'), + (215, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GmjM1Vad', '7685613'), + (215, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GmjM1Vad', '7688194'), + (215, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GmjM1Vad', '7688196'), + (215, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GmjM1Vad', '7688289'), + (215, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GmjM1Vad', '7692763'), + (215, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GmjM1Vad', '7697552'), + (215, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GmjM1Vad', '7699878'), + (215, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GmjM1Vad', '7704043'), + (215, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GmjM1Vad', '7712467'), + (215, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GmjM1Vad', '7713585'), + (215, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GmjM1Vad', '7713586'), + (215, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GmjM1Vad', '7738518'), + (215, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GmjM1Vad', '7750636'), + (215, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GmjM1Vad', '7796540'), + (215, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GmjM1Vad', '7796541'), + (215, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GmjM1Vad', '7796542'), + (215, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GmjM1Vad', '7825913'), + (215, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GmjM1Vad', '7826209'), + (215, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GmjM1Vad', '7834742'), + (215, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GmjM1Vad', '7842108'), + (215, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GmjM1Vad', '7842902'), + (215, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GmjM1Vad', '7842903'), + (215, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GmjM1Vad', '7842904'), + (215, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GmjM1Vad', '7842905'), + (215, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GmjM1Vad', '7855719'), + (215, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GmjM1Vad', '7860683'), + (215, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GmjM1Vad', '7860684'), + (215, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GmjM1Vad', '7866095'), + (215, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GmjM1Vad', '7869170'), + (215, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GmjM1Vad', '7869188'), + (215, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GmjM1Vad', '7869201'), + (215, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GmjM1Vad', '7877465'), + (215, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GmjM1Vad', '7888250'), + (215, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GmjM1Vad', '7904777'), + (215, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GmjM1Vad', '8349164'), + (215, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GmjM1Vad', '8349545'), + (215, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GmjM1Vad', '8368028'), + (215, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GmjM1Vad', '8368029'), + (215, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GmjM1Vad', '8388462'), + (215, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GmjM1Vad', '8400273'), + (215, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GmjM1Vad', '8400275'), + (215, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'GmjM1Vad', '8400276'), + (215, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GmjM1Vad', '8404977'), + (215, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GmjM1Vad', '8430783'), + (215, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GmjM1Vad', '8430784'), + (215, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GmjM1Vad', '8430799'), + (215, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GmjM1Vad', '8430800'), + (215, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GmjM1Vad', '8430801'), + (215, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GmjM1Vad', '8438709'), + (215, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GmjM1Vad', '8457738'), + (215, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GmjM1Vad', '8459566'), + (215, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GmjM1Vad', '8459567'), + (215, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GmjM1Vad', '8461032'), + (215, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GmjM1Vad', '8477877'), + (215, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GmjM1Vad', '8485688'), + (215, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GmjM1Vad', '8490587'), + (215, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GmjM1Vad', '8493552'), + (215, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GmjM1Vad', '8493553'), + (215, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GmjM1Vad', '8493554'), + (215, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GmjM1Vad', '8493555'), + (215, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GmjM1Vad', '8493556'), + (215, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GmjM1Vad', '8493557'), + (215, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GmjM1Vad', '8493558'), + (215, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GmjM1Vad', '8493559'), + (215, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GmjM1Vad', '8493560'), + (215, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GmjM1Vad', '8493561'), + (215, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GmjM1Vad', '8493572'), + (215, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GmjM1Vad', '8540725'), + (215, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GmjM1Vad', '8555421'), + (216, 30, 'attending', '2020-04-05 05:04:35', '2025-12-17 19:47:57', '6AXQbev4', '2961895'), + (216, 36, 'not_attending', '2020-04-02 04:22:07', '2025-12-17 19:47:57', '6AXQbev4', '2969208'), + (216, 37, 'attending', '2020-03-29 14:59:55', '2025-12-17 19:47:56', '6AXQbev4', '2969680'), + (216, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', '6AXQbev4', '2971546'), + (216, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '6AXQbev4', '2974534'), + (216, 46, 'attending', '2020-04-11 18:33:04', '2025-12-17 19:47:57', '6AXQbev4', '2974955'), + (216, 55, 'attending', '2020-04-06 15:50:11', '2025-12-17 19:47:57', '6AXQbev4', '2975384'), + (216, 56, 'attending', '2020-04-06 16:01:12', '2025-12-17 19:47:57', '6AXQbev4', '2975385'), + (216, 57, 'attending', '2020-04-27 16:02:28', '2025-12-17 19:47:57', '6AXQbev4', '2976575'), + (216, 59, 'not_attending', '2020-04-27 16:03:41', '2025-12-17 19:47:57', '6AXQbev4', '2977128'), + (216, 60, 'not_attending', '2020-04-27 16:02:37', '2025-12-17 19:47:57', '6AXQbev4', '2977129'), + (216, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '6AXQbev4', '2977343'), + (216, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '6AXQbev4', '2977812'), + (216, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', '6AXQbev4', '2977931'), + (216, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', '6AXQbev4', '2978244'), + (216, 75, 'attending', '2020-04-22 01:55:09', '2025-12-17 19:47:57', '6AXQbev4', '2978245'), + (216, 76, 'not_attending', '2020-04-27 16:03:10', '2025-12-17 19:47:57', '6AXQbev4', '2978246'), + (216, 77, 'attending', '2020-05-09 22:35:45', '2025-12-17 19:47:57', '6AXQbev4', '2978247'), + (216, 78, 'attending', '2020-05-23 01:53:14', '2025-12-17 19:47:57', '6AXQbev4', '2978249'), + (216, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', '6AXQbev4', '2978250'), + (216, 80, 'attending', '2020-06-02 19:30:57', '2025-12-17 19:47:58', '6AXQbev4', '2978251'), + (216, 81, 'not_attending', '2020-06-02 19:31:41', '2025-12-17 19:47:58', '6AXQbev4', '2978252'), + (216, 82, 'not_attending', '2020-04-23 06:44:43', '2025-12-17 19:47:57', '6AXQbev4', '2978433'), + (216, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '6AXQbev4', '2978438'), + (216, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '6AXQbev4', '2980871'), + (216, 85, 'not_attending', '2020-04-22 22:41:26', '2025-12-17 19:47:57', '6AXQbev4', '2980872'), + (216, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '6AXQbev4', '2981388'), + (216, 91, 'attending', '2020-04-27 16:03:04', '2025-12-17 19:47:57', '6AXQbev4', '2985130'), + (216, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '6AXQbev4', '2986743'), + (216, 95, 'not_attending', '2020-04-27 16:02:52', '2025-12-17 19:47:57', '6AXQbev4', '2987452'), + (216, 99, 'not_attending', '2020-04-27 16:03:21', '2025-12-17 19:47:57', '6AXQbev4', '2988545'), + (216, 102, 'attending', '2020-04-28 14:40:42', '2025-12-17 19:47:57', '6AXQbev4', '2990784'), + (216, 103, 'attending', '2020-04-27 16:03:29', '2025-12-17 19:47:57', '6AXQbev4', '2991407'), + (216, 104, 'attending', '2020-04-24 17:17:30', '2025-12-17 19:47:57', '6AXQbev4', '2991471'), + (216, 106, 'not_attending', '2020-04-27 16:02:14', '2025-12-17 19:47:57', '6AXQbev4', '2993501'), + (216, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '6AXQbev4', '2994480'), + (216, 114, 'attending', '2020-04-28 14:40:15', '2025-12-17 19:47:57', '6AXQbev4', '2994911'), + (216, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', '6AXQbev4', '3001217'), + (216, 121, 'attending', '2020-05-27 05:23:54', '2025-12-17 19:47:57', '6AXQbev4', '3023063'), + (216, 133, 'attending', '2020-06-26 00:56:32', '2025-12-17 19:47:58', '6AXQbev4', '3034321'), + (216, 134, 'attending', '2020-05-24 00:06:05', '2025-12-17 19:47:57', '6AXQbev4', '3034367'), + (216, 135, 'attending', '2020-05-24 00:11:02', '2025-12-17 19:47:57', '6AXQbev4', '3034368'), + (216, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '6AXQbev4', '3035881'), + (216, 142, 'attending', '2020-05-31 22:53:41', '2025-12-17 19:47:57', '6AXQbev4', '3049860'), + (216, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '6AXQbev4', '3049983'), + (216, 168, 'attending', '2020-06-06 17:51:55', '2025-12-17 19:47:58', '6AXQbev4', '3058740'), + (216, 170, 'attending', '2020-06-06 18:07:29', '2025-12-17 19:47:58', '6AXQbev4', '3058742'), + (216, 171, 'attending', '2020-06-06 18:09:27', '2025-12-17 19:47:58', '6AXQbev4', '3058743'), + (216, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '6AXQbev4', '3058959'), + (216, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', '6AXQbev4', '3067093'), + (216, 181, 'attending', '2020-06-20 22:15:25', '2025-12-17 19:47:58', '6AXQbev4', '3074513'), + (216, 182, 'not_attending', '2020-06-27 16:40:01', '2025-12-17 19:47:55', '6AXQbev4', '3074514'), + (216, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '6AXQbev4', '3075228'), + (216, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '6AXQbev4', '3075456'), + (216, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '6AXQbev4', '3083791'), + (216, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '6AXQbev4', '3085151'), + (216, 192, 'maybe', '2020-07-18 06:24:16', '2025-12-17 19:47:55', '6AXQbev4', '3087260'), + (216, 194, 'attending', '2020-07-28 16:28:07', '2025-12-17 19:47:56', '6AXQbev4', '3087262'), + (216, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '6AXQbev4', '3087265'), + (216, 197, 'not_attending', '2020-08-20 23:26:49', '2025-12-17 19:47:56', '6AXQbev4', '3087266'), + (216, 198, 'not_attending', '2020-08-26 15:06:23', '2025-12-17 19:47:56', '6AXQbev4', '3087267'), + (216, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', '6AXQbev4', '3087268'), + (216, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '6AXQbev4', '3088653'), + (216, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '6AXQbev4', '3106813'), + (216, 223, 'not_attending', '2020-09-12 21:27:59', '2025-12-17 19:47:56', '6AXQbev4', '3129980'), + (216, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '6AXQbev4', '3132817'), + (216, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '6AXQbev4', '3132820'), + (216, 228, 'attending', '2020-07-13 20:05:36', '2025-12-17 19:47:55', '6AXQbev4', '3132821'), + (216, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '6AXQbev4', '3155321'), + (216, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '6AXQbev4', '3162006'), + (216, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '6AXQbev4', '3163442'), + (216, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '6AXQbev4', '3169555'), + (216, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', '6AXQbev4', '3169556'), + (216, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '6AXQbev4', '3172832'), + (216, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '6AXQbev4', '3172833'), + (216, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '6AXQbev4', '3172834'), + (216, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '6AXQbev4', '3172876'), + (216, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', '6AXQbev4', '3186057'), + (216, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '6AXQbev4', '3191735'), + (216, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', '6AXQbev4', '3193885'), + (216, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '6AXQbev4', '3200209'), + (216, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', '6AXQbev4', '3200495'), + (216, 343, 'not_attending', '2020-09-21 22:56:44', '2025-12-17 19:47:56', '6AXQbev4', '3206759'), + (216, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', '6AXQbev4', '3214207'), + (216, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '6AXQbev4', '3217037'), + (216, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '6AXQbev4', '3218510'), + (216, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', '6AXQbev4', '3221403'), + (216, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', '6AXQbev4', '3228698'), + (216, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', '6AXQbev4', '3228699'), + (216, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', '6AXQbev4', '3228700'), + (216, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', '6AXQbev4', '3228701'), + (216, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', '6AXQbev4', '3245751'), + (216, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '6AXQbev4', '3250232'), + (216, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', '6AXQbev4', '3256168'), + (216, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXQbev4', '6045684'), + (216, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '6AXQbev4', '7904777'), + (216, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '6AXQbev4', '8349164'), + (216, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '6AXQbev4', '8349545'), + (216, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '6AXQbev4', '8368028'), + (216, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '6AXQbev4', '8368029'), + (216, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '6AXQbev4', '8388462'), + (216, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '6AXQbev4', '8400273'), + (216, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '6AXQbev4', '8400275'), + (216, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '6AXQbev4', '8400276'), + (216, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '6AXQbev4', '8404977'), + (216, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '6AXQbev4', '8430783'), + (216, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '6AXQbev4', '8430784'), + (216, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '6AXQbev4', '8430799'), + (216, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '6AXQbev4', '8430800'), + (216, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '6AXQbev4', '8430801'), + (216, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '6AXQbev4', '8438709'), + (216, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '6AXQbev4', '8457738'), + (216, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '6AXQbev4', '8459566'), + (216, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '6AXQbev4', '8459567'), + (216, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '6AXQbev4', '8461032'), + (216, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '6AXQbev4', '8477877'), + (216, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '6AXQbev4', '8485688'), + (216, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '6AXQbev4', '8490587'), + (216, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '6AXQbev4', '8493552'), + (216, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '6AXQbev4', '8493553'), + (216, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '6AXQbev4', '8493554'), + (216, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '6AXQbev4', '8493555'), + (216, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '6AXQbev4', '8493556'), + (216, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '6AXQbev4', '8493557'), + (216, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '6AXQbev4', '8493558'), + (216, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '6AXQbev4', '8493559'), + (216, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '6AXQbev4', '8493560'), + (216, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '6AXQbev4', '8493561'), + (216, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '6AXQbev4', '8493572'), + (216, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '6AXQbev4', '8540725'), + (216, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '6AXQbev4', '8555421'), + (217, 393, 'attending', '2021-06-24 21:57:05', '2025-12-17 19:47:38', 'x4o8e3nd', '3236448'), + (217, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'x4o8e3nd', '4021848'), + (217, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4o8e3nd', '6045684'), + (218, 397, 'attending', '2021-05-24 22:42:00', '2025-12-17 19:47:47', 'LmpJz8N4', '3236452'), + (218, 648, 'attending', '2021-05-28 03:03:27', '2025-12-17 19:47:47', 'LmpJz8N4', '3539923'), + (218, 742, 'attending', '2021-06-18 21:46:47', '2025-12-17 19:47:48', 'LmpJz8N4', '3680622'), + (218, 744, 'not_attending', '2021-06-07 12:48:32', '2025-12-17 19:47:47', 'LmpJz8N4', '3680624'), + (218, 821, 'attending', '2021-05-29 00:40:41', '2025-12-17 19:47:47', 'LmpJz8N4', '3963965'), + (218, 823, 'attending', '2021-06-12 14:56:05', '2025-12-17 19:47:48', 'LmpJz8N4', '3974109'), + (218, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'LmpJz8N4', '3975311'), + (218, 828, 'not_attending', '2021-06-12 14:55:25', '2025-12-17 19:47:47', 'LmpJz8N4', '3975312'), + (218, 830, 'attending', '2021-06-03 15:26:00', '2025-12-17 19:47:47', 'LmpJz8N4', '3976648'), + (218, 831, 'attending', '2021-06-03 15:26:04', '2025-12-17 19:47:47', 'LmpJz8N4', '3976649'), + (218, 832, 'attending', '2021-06-03 15:26:08', '2025-12-17 19:47:47', 'LmpJz8N4', '3976650'), + (218, 838, 'maybe', '2021-06-06 18:32:56', '2025-12-17 19:47:47', 'LmpJz8N4', '3994992'), + (218, 844, 'attending', '2021-06-23 22:17:59', '2025-12-17 19:47:38', 'LmpJz8N4', '4014338'), + (218, 867, 'attending', '2021-06-23 18:34:11', '2025-12-17 19:47:38', 'LmpJz8N4', '4021848'), + (218, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpJz8N4', '4136744'), + (218, 870, 'not_attending', '2021-07-03 19:22:57', '2025-12-17 19:47:39', 'LmpJz8N4', '4136937'), + (218, 871, 'not_attending', '2021-07-10 20:31:18', '2025-12-17 19:47:39', 'LmpJz8N4', '4136938'), + (218, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJz8N4', '4136947'), + (218, 877, 'attending', '2021-06-16 16:57:29', '2025-12-17 19:47:48', 'LmpJz8N4', '4140575'), + (218, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpJz8N4', '4210314'), + (218, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpJz8N4', '4225444'), + (218, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpJz8N4', '4239259'), + (218, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'LmpJz8N4', '4240316'), + (218, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'LmpJz8N4', '4240317'), + (218, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'LmpJz8N4', '4240318'), + (218, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'LmpJz8N4', '4240320'), + (218, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpJz8N4', '4250163'), + (218, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'LmpJz8N4', '4275957'), + (218, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpJz8N4', '4277819'), + (218, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpJz8N4', '4301723'), + (218, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpJz8N4', '4302093'), + (218, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpJz8N4', '4304151'), + (218, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'LmpJz8N4', '4356801'), + (218, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'LmpJz8N4', '4366186'), + (218, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'LmpJz8N4', '4366187'), + (218, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'LmpJz8N4', '4420735'), + (218, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'LmpJz8N4', '4420738'), + (218, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'LmpJz8N4', '4420739'), + (218, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'LmpJz8N4', '4420741'), + (218, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'LmpJz8N4', '4420744'), + (218, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'LmpJz8N4', '4420747'), + (218, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'LmpJz8N4', '4420748'), + (218, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'LmpJz8N4', '4420749'), + (218, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'LmpJz8N4', '4461883'), + (218, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpJz8N4', '4508342'), + (218, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpJz8N4', '4568602'), + (218, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'LmpJz8N4', '4572153'), + (218, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpJz8N4', '4585962'), + (218, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'LmpJz8N4', '4596356'), + (218, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpJz8N4', '4598860'), + (218, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpJz8N4', '4598861'), + (218, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'LmpJz8N4', '4602797'), + (218, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'LmpJz8N4', '4637896'), + (218, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpJz8N4', '4642994'), + (218, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'LmpJz8N4', '4642995'), + (218, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpJz8N4', '4642996'), + (218, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpJz8N4', '4642997'), + (218, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'LmpJz8N4', '4645687'), + (218, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpJz8N4', '4645698'), + (218, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'LmpJz8N4', '4645704'), + (218, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'LmpJz8N4', '4645705'), + (218, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpJz8N4', '4668385'), + (218, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpJz8N4', '4694407'), + (218, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'LmpJz8N4', '4706262'), + (218, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'LmpJz8N4', '4736497'), + (218, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpJz8N4', '4736499'), + (218, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'LmpJz8N4', '4736500'), + (218, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'LmpJz8N4', '4736503'), + (218, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpJz8N4', '4736504'), + (218, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpJz8N4', '4746789'), + (218, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'LmpJz8N4', '4753929'), + (218, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpJz8N4', '5038850'), + (218, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpJz8N4', '5045826'), + (218, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpJz8N4', '5132533'), + (218, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'LmpJz8N4', '5186582'), + (218, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpJz8N4', '5186583'), + (218, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'LmpJz8N4', '5186585'), + (218, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpJz8N4', '5190437'), + (218, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpJz8N4', '5215989'), + (218, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJz8N4', '6045684'), + (219, 2904, 'attending', '2024-11-24 00:35:52', '2025-12-17 19:46:28', 'm6Yzl7Rd', '7688196'), + (219, 2920, 'not_attending', '2024-11-23 23:12:56', '2025-12-17 19:46:28', 'm6Yzl7Rd', '7708406'), + (219, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6Yzl7Rd', '7712467'), + (219, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6Yzl7Rd', '7713585'), + (219, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7713586'), + (219, 2947, 'not_attending', '2024-12-09 03:11:05', '2025-12-17 19:46:21', 'm6Yzl7Rd', '7727445'), + (219, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7738518'), + (219, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7750636'), + (219, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7796540'), + (219, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7796541'), + (219, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7796542'), + (219, 2967, 'not_attending', '2025-01-07 14:57:05', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7797181'), + (219, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7825913'), + (219, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7826209'), + (219, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7834742'), + (219, 2986, 'not_attending', '2025-02-07 22:00:58', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7835405'), + (219, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7842108'), + (219, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7842902'), + (219, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7842903'), + (219, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6Yzl7Rd', '7842904'), + (219, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7842905'), + (219, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7844784'), + (219, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7855719'), + (219, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7860683'), + (219, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7860684'), + (219, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6Yzl7Rd', '7866095'), + (219, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7869170'), + (219, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7869201'), + (219, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7872088'), + (220, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'xAYL689m', '3149489'), + (220, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'xAYL689m', '3149491'), + (220, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'xAYL689m', '3236450'), + (220, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'xAYL689m', '3236452'), + (220, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'xAYL689m', '3539921'), + (220, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xAYL689m', '3539922'), + (220, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'xAYL689m', '3539923'), + (220, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'xAYL689m', '3806392'), + (220, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'xAYL689m', '3963335'), + (220, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xAYL689m', '3975311'), + (220, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xAYL689m', '3975312'), + (220, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xAYL689m', '3994992'), + (220, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xAYL689m', '4014338'), + (220, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xAYL689m', '4136744'), + (220, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYL689m', '6045684'), + (221, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dODP7NPm', '4637896'), + (221, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dODP7NPm', '4642994'), + (221, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'dODP7NPm', '4642995'), + (221, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dODP7NPm', '4642996'), + (221, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dODP7NPm', '4642997'), + (221, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dODP7NPm', '4645687'), + (221, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dODP7NPm', '4645698'), + (221, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dODP7NPm', '4645704'), + (221, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dODP7NPm', '4645705'), + (221, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dODP7NPm', '4668385'), + (221, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dODP7NPm', '6045684'), + (222, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dVBvL8pd', '4736497'), + (222, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dVBvL8pd', '4736500'), + (222, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVBvL8pd', '4746789'), + (222, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dVBvL8pd', '4753929'), + (222, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBvL8pd', '6045684'), + (223, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dK39RzZd', '6045684'), + (224, 2521, 'attending', '2024-06-20 09:17:38', '2025-12-17 19:46:29', 'dJQe07w4', '7074361'), + (224, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJQe07w4', '7074364'), + (224, 2525, 'attending', '2024-06-13 08:26:32', '2025-12-17 19:46:28', 'dJQe07w4', '7074365'), + (224, 2527, 'maybe', '2024-06-27 23:14:46', '2025-12-17 19:46:29', 'dJQe07w4', '7074367'), + (224, 2629, 'attending', '2024-06-08 20:53:48', '2025-12-17 19:46:28', 'dJQe07w4', '7264726'), + (224, 2647, 'attending', '2024-06-09 05:09:48', '2025-12-17 19:46:28', 'dJQe07w4', '7282057'), + (224, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'dJQe07w4', '7302674'), + (224, 2671, 'attending', '2024-06-10 09:04:44', '2025-12-17 19:46:28', 'dJQe07w4', '7318256'), + (224, 2678, 'attending', '2024-06-15 02:50:33', '2025-12-17 19:46:28', 'dJQe07w4', '7319489'), + (224, 2679, 'attending', '2024-06-22 02:18:30', '2025-12-17 19:46:29', 'dJQe07w4', '7319490'), + (224, 2683, 'attending', '2024-06-15 02:51:00', '2025-12-17 19:46:28', 'dJQe07w4', '7321978'), + (224, 2688, 'attending', '2024-06-23 03:55:12', '2025-12-17 19:46:29', 'dJQe07w4', '7324073'), + (224, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJQe07w4', '7324074'), + (224, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJQe07w4', '7324075'), + (224, 2691, 'attending', '2024-07-20 02:36:26', '2025-12-17 19:46:30', 'dJQe07w4', '7324076'), + (224, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJQe07w4', '7324078'), + (224, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dJQe07w4', '7324082'), + (224, 2699, 'maybe', '2024-06-12 20:10:35', '2025-12-17 19:46:28', 'dJQe07w4', '7324385'), + (224, 2700, 'maybe', '2024-06-14 03:20:46', '2025-12-17 19:46:28', 'dJQe07w4', '7324388'), + (224, 2701, 'maybe', '2024-06-27 23:16:42', '2025-12-17 19:46:29', 'dJQe07w4', '7324391'), + (224, 2706, 'attending', '2024-06-19 21:21:11', '2025-12-17 19:46:28', 'dJQe07w4', '7324947'), + (224, 2720, 'attending', '2024-06-18 20:58:15', '2025-12-17 19:46:28', 'dJQe07w4', '7331436'), + (224, 2721, 'attending', '2024-06-21 15:53:47', '2025-12-17 19:46:29', 'dJQe07w4', '7331456'), + (224, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dJQe07w4', '7331457'), + (224, 2723, 'maybe', '2024-06-21 21:15:53', '2025-12-17 19:46:29', 'dJQe07w4', '7332389'), + (224, 2724, 'maybe', '2024-06-26 10:35:34', '2025-12-17 19:46:29', 'dJQe07w4', '7332562'), + (224, 2728, 'attending', '2024-06-21 11:27:30', '2025-12-17 19:46:29', 'dJQe07w4', '7334124'), + (224, 2729, 'maybe', '2024-06-23 03:55:34', '2025-12-17 19:46:29', 'dJQe07w4', '7335092'), + (224, 2742, 'maybe', '2024-07-03 22:18:35', '2025-12-17 19:46:29', 'dJQe07w4', '7345167'), + (224, 2753, 'maybe', '2024-07-16 08:07:27', '2025-12-17 19:46:30', 'dJQe07w4', '7355538'), + (224, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJQe07w4', '7356752'), + (224, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dJQe07w4', '7363643'), + (224, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJQe07w4', '7368606'), + (224, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJQe07w4', '7397462'), + (224, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dJQe07w4', '7424275'), + (224, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJQe07w4', '7424276'), + (224, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJQe07w4', '7432751'), + (224, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJQe07w4', '7432752'), + (224, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJQe07w4', '7432753'), + (224, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJQe07w4', '7432754'), + (224, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJQe07w4', '7432755'), + (224, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJQe07w4', '7432756'), + (224, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJQe07w4', '7432758'), + (224, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJQe07w4', '7432759'), + (224, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dJQe07w4', '7433834'), + (224, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJQe07w4', '7470197'), + (224, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dJQe07w4', '7685613'), + (224, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJQe07w4', '7688194'), + (224, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJQe07w4', '7688196'), + (224, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJQe07w4', '7688289'), + (225, 871, 'maybe', '2021-07-05 17:23:40', '2025-12-17 19:47:39', 'pmbejZKd', '4136938'), + (225, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'pmbejZKd', '4136947'), + (225, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbejZKd', '4210314'), + (225, 887, 'maybe', '2021-07-11 19:19:15', '2025-12-17 19:47:39', 'pmbejZKd', '4225444'), + (225, 892, 'attending', '2021-07-05 17:23:27', '2025-12-17 19:47:39', 'pmbejZKd', '4229418'), + (225, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'pmbejZKd', '4229420'), + (225, 894, 'maybe', '2021-07-20 13:08:00', '2025-12-17 19:47:40', 'pmbejZKd', '4229423'), + (225, 895, 'maybe', '2021-07-10 18:29:05', '2025-12-17 19:47:39', 'pmbejZKd', '4229424'), + (225, 900, 'not_attending', '2021-07-18 20:46:11', '2025-12-17 19:47:40', 'pmbejZKd', '4240316'), + (225, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbejZKd', '4240317'), + (225, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbejZKd', '4240318'), + (225, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbejZKd', '4240320'), + (225, 919, 'not_attending', '2021-07-14 09:44:12', '2025-12-17 19:47:39', 'pmbejZKd', '4275957'), + (225, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbejZKd', '4277819'), + (225, 923, 'not_attending', '2021-07-20 10:48:17', '2025-12-17 19:47:40', 'pmbejZKd', '4292773'), + (225, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbejZKd', '4301723'), + (225, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbejZKd', '4302093'), + (225, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbejZKd', '4304151'), + (225, 940, 'not_attending', '2021-07-30 16:29:50', '2025-12-17 19:47:40', 'pmbejZKd', '4309049'), + (225, 947, 'maybe', '2021-07-30 16:49:55', '2025-12-17 19:47:41', 'pmbejZKd', '4315713'), + (225, 948, 'not_attending', '2021-08-11 05:28:23', '2025-12-17 19:47:41', 'pmbejZKd', '4315714'), + (225, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'pmbejZKd', '4315726'), + (225, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbejZKd', '4356801'), + (225, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbejZKd', '4366186'), + (225, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbejZKd', '4366187'), + (225, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbejZKd', '4420735'), + (225, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbejZKd', '4420738'), + (225, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbejZKd', '4420739'), + (225, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbejZKd', '4420741'), + (225, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbejZKd', '4420744'), + (225, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbejZKd', '4420747'), + (225, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbejZKd', '4420748'), + (225, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbejZKd', '4420749'), + (225, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbejZKd', '6045684'), + (226, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'da7pZrDA', '7074364'), + (226, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'da7pZrDA', '7324073'), + (226, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'da7pZrDA', '7324074'), + (226, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'da7pZrDA', '7324075'), + (226, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'da7pZrDA', '7324078'), + (226, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'da7pZrDA', '7331457'), + (226, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'da7pZrDA', '7332564'), + (226, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'da7pZrDA', '7335193'), + (226, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'da7pZrDA', '7344575'), + (226, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'da7pZrDA', '7359624'), + (226, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'da7pZrDA', '7363643'), + (226, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'da7pZrDA', '7368606'), + (227, 1374, 'attending', '2022-05-02 21:34:39', '2025-12-17 19:47:28', 'dBWaRaPm', '5269930'), + (227, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dBWaRaPm', '5271448'), + (227, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dBWaRaPm', '5271449'), + (227, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dBWaRaPm', '5276469'), + (227, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dBWaRaPm', '5278159'), + (227, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dBWaRaPm', '5363695'), + (227, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dBWaRaPm', '5365960'), + (227, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dBWaRaPm', '5368973'), + (227, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dBWaRaPm', '5378247'), + (227, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dBWaRaPm', '5389605'), + (227, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dBWaRaPm', '5397265'), + (227, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBWaRaPm', '6045684'), + (228, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dOpbaM8m', '5630962'), + (228, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOpbaM8m', '5630966'), + (228, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOpbaM8m', '5630967'), + (228, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOpbaM8m', '5630968'), + (228, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOpbaM8m', '5642818'), + (228, 1778, 'maybe', '2022-11-02 02:07:36', '2025-12-17 19:47:15', 'dOpbaM8m', '5694251'), + (228, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOpbaM8m', '5698046'), + (228, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dOpbaM8m', '5699760'), + (228, 1786, 'not_attending', '2022-11-08 23:41:42', '2025-12-17 19:47:15', 'dOpbaM8m', '5727232'), + (228, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOpbaM8m', '5741601'), + (228, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOpbaM8m', '5763458'), + (228, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOpbaM8m', '5774172'), + (228, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOpbaM8m', '6045684'), + (229, 871, 'attending', '2021-07-10 19:45:44', '2025-12-17 19:47:39', 'N4E0NnWA', '4136938'), + (229, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'N4E0NnWA', '4136947'), + (229, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'N4E0NnWA', '4210314'), + (229, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'N4E0NnWA', '4225444'), + (229, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'N4E0NnWA', '4229420'), + (229, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'N4E0NnWA', '4229423'), + (229, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'N4E0NnWA', '4240316'), + (229, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'N4E0NnWA', '4275957'), + (229, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'N4E0NnWA', '4292773'), + (229, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4E0NnWA', '6045684'), + (230, 1480, 'not_attending', '2022-06-22 22:19:47', '2025-12-17 19:47:19', 'dx6oqzOA', '5411699'), + (230, 1482, 'not_attending', '2022-06-25 01:25:48', '2025-12-17 19:47:19', 'dx6oqzOA', '5412550'), + (230, 1485, 'attending', '2022-06-23 22:08:11', '2025-12-17 19:47:17', 'dx6oqzOA', '5416276'), + (230, 1486, 'not_attending', '2022-06-23 22:08:22', '2025-12-17 19:47:19', 'dx6oqzOA', '5416339'), + (230, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dx6oqzOA', '5422086'), + (230, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dx6oqzOA', '5422406'), + (230, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dx6oqzOA', '5424565'), + (230, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dx6oqzOA', '5426882'), + (230, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dx6oqzOA', '5427083'), + (230, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dx6oqzOA', '5441125'), + (230, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dx6oqzOA', '5441126'), + (230, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dx6oqzOA', '5441128'), + (230, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dx6oqzOA', '5446643'), + (230, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dx6oqzOA', '5453325'), + (230, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dx6oqzOA', '5454516'), + (230, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dx6oqzOA', '5454605'), + (230, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dx6oqzOA', '5455037'), + (230, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dx6oqzOA', '5461278'), + (230, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dx6oqzOA', '5469480'), + (230, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dx6oqzOA', '5471073'), + (230, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dx6oqzOA', '5474663'), + (230, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dx6oqzOA', '5482022'), + (230, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dx6oqzOA', '5482793'), + (230, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dx6oqzOA', '5488912'), + (230, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dx6oqzOA', '5492192'), + (230, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dx6oqzOA', '5493139'), + (230, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dx6oqzOA', '5493200'), + (230, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dx6oqzOA', '5502188'), + (230, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dx6oqzOA', '5512862'), + (230, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dx6oqzOA', '5513985'), + (230, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx6oqzOA', '6045684'), + (231, 251, 'maybe', '2021-01-26 03:16:24', '2025-12-17 19:47:49', 'v4DPq664', '3149482'), + (231, 400, 'attending', '2021-01-27 01:59:39', '2025-12-17 19:47:50', 'v4DPq664', '3236455'), + (231, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'v4DPq664', '3430267'), + (231, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'v4DPq664', '3468125'), + (231, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'v4DPq664', '3470303'), + (231, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'v4DPq664', '3470991'), + (231, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DPq664', '6045684'), + (232, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Aen3RgV4', '7424275'), + (232, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', 'Aen3RgV4', '7432753'), + (232, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'Aen3RgV4', '7432756'), + (232, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'Aen3RgV4', '7432758'), + (232, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Aen3RgV4', '7470197'), + (232, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Aen3RgV4', '7685613'), + (232, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Aen3RgV4', '7688194'), + (232, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Aen3RgV4', '7688196'), + (232, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Aen3RgV4', '7688289'), + (233, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'myDzWVJd', '4356801'), + (233, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'myDzWVJd', '4420738'), + (233, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'myDzWVJd', '4420739'), + (233, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'myDzWVJd', '4420741'), + (233, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'myDzWVJd', '4420744'), + (233, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'myDzWVJd', '4420747'), + (233, 1003, 'attending', '2021-09-06 20:35:33', '2025-12-17 19:47:43', 'myDzWVJd', '4438802'), + (233, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'myDzWVJd', '4461883'), + (233, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'myDzWVJd', '4508342'), + (233, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'myDzWVJd', '4568602'), + (233, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'myDzWVJd', '4572153'), + (233, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'myDzWVJd', '4585962'), + (233, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'myDzWVJd', '4596356'), + (233, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'myDzWVJd', '4598860'), + (233, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'myDzWVJd', '4598861'), + (233, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'myDzWVJd', '4602797'), + (233, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'myDzWVJd', '4637896'), + (233, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'myDzWVJd', '4642994'), + (233, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'myDzWVJd', '4642995'), + (233, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'myDzWVJd', '4642996'), + (233, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'myDzWVJd', '4642997'), + (233, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'myDzWVJd', '4645687'), + (233, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'myDzWVJd', '4645698'), + (233, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'myDzWVJd', '4645704'), + (233, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'myDzWVJd', '4645705'), + (233, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'myDzWVJd', '4668385'), + (233, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'myDzWVJd', '6045684'), + (234, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'd9n8lJem', '4420744'), + (234, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'd9n8lJem', '4420747'), + (234, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd9n8lJem', '4568602'), + (234, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'd9n8lJem', '4572153'), + (234, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'd9n8lJem', '4585962'), + (234, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'd9n8lJem', '4596356'), + (234, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'd9n8lJem', '4598860'), + (234, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'd9n8lJem', '4598861'), + (234, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'd9n8lJem', '4602797'), + (234, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'd9n8lJem', '4637896'), + (234, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'd9n8lJem', '4642994'), + (234, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'd9n8lJem', '4642995'), + (234, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'd9n8lJem', '4642996'), + (234, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'd9n8lJem', '4642997'), + (234, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd9n8lJem', '4645687'), + (234, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd9n8lJem', '4645698'), + (234, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd9n8lJem', '4645704'), + (234, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd9n8lJem', '4645705'), + (234, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'd9n8lJem', '4668385'), + (234, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9n8lJem', '6045684'), + (235, 250, 'attending', '2021-02-09 21:58:22', '2025-12-17 19:47:50', 'w4Wk1xp4', '3149481'), + (235, 602, 'maybe', '2021-02-13 23:35:08', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470303'), + (235, 603, 'attending', '2021-02-19 23:30:55', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470304'), + (235, 604, 'not_attending', '2021-02-25 08:41:13', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470305'), + (235, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470991'), + (235, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'w4Wk1xp4', '3517815'), + (235, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'w4Wk1xp4', '3523941'), + (235, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4Wk1xp4', '3533850'), + (235, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4Wk1xp4', '3536632'), + (235, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'w4Wk1xp4', '3536656'), + (235, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'w4Wk1xp4', '3539916'), + (235, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'w4Wk1xp4', '3539917'), + (235, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'w4Wk1xp4', '3539918'), + (235, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539919'), + (235, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539920'), + (235, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539921'), + (235, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539922'), + (235, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'w4Wk1xp4', '3539923'), + (235, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4Wk1xp4', '6045684'), + (236, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ6ZJwd', '6045684'), + (237, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7zOvzPd', '6045684'), + (238, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'mq1eqrLm', '4420744'), + (238, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mq1eqrLm', '4420747'), + (238, 997, 'attending', '2021-10-22 14:45:12', '2025-12-17 19:47:35', 'mq1eqrLm', '4420748'), + (238, 998, 'attending', '2021-10-29 14:30:08', '2025-12-17 19:47:36', 'mq1eqrLm', '4420749'), + (238, 1006, 'not_attending', '2021-10-01 20:29:04', '2025-12-17 19:47:34', 'mq1eqrLm', '4438808'), + (238, 1008, 'attending', '2021-10-12 18:29:44', '2025-12-17 19:47:35', 'mq1eqrLm', '4438810'), + (238, 1009, 'not_attending', '2021-10-11 22:45:41', '2025-12-17 19:47:34', 'mq1eqrLm', '4438811'), + (238, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mq1eqrLm', '4568602'), + (238, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mq1eqrLm', '4572153'), + (238, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mq1eqrLm', '4585962'), + (238, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mq1eqrLm', '4596356'), + (238, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'mq1eqrLm', '4598860'), + (238, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'mq1eqrLm', '4598861'), + (238, 1099, 'not_attending', '2021-11-06 20:57:05', '2025-12-17 19:47:36', 'mq1eqrLm', '4602797'), + (238, 1114, 'not_attending', '2021-11-14 00:26:51', '2025-12-17 19:47:36', 'mq1eqrLm', '4637896'), + (238, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mq1eqrLm', '4642994'), + (238, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mq1eqrLm', '4642995'), + (238, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mq1eqrLm', '4642996'), + (238, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mq1eqrLm', '4642997'), + (238, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mq1eqrLm', '4645687'), + (238, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mq1eqrLm', '4645698'), + (238, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mq1eqrLm', '4645704'), + (238, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mq1eqrLm', '4645705'), + (238, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mq1eqrLm', '4668385'), + (238, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mq1eqrLm', '4694407'), + (238, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mq1eqrLm', '4736497'), + (238, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mq1eqrLm', '4736499'), + (238, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mq1eqrLm', '4736500'), + (238, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mq1eqrLm', '4736503'), + (238, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mq1eqrLm', '4736504'), + (238, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mq1eqrLm', '4746789'), + (238, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mq1eqrLm', '4753929'), + (238, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mq1eqrLm', '5038850'), + (238, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mq1eqrLm', '5045826'), + (238, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mq1eqrLm', '5132533'), + (238, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mq1eqrLm', '5186582'), + (238, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mq1eqrLm', '5186583'), + (238, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mq1eqrLm', '5186585'), + (238, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mq1eqrLm', '5190437'), + (238, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mq1eqrLm', '5215989'), + (238, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mq1eqrLm', '6045684'), + (239, 247, 'attending', '2020-12-29 22:14:10', '2025-12-17 19:47:48', '8mRz3zlm', '3149478'), + (239, 400, 'not_attending', '2021-02-05 01:10:20', '2025-12-17 19:47:50', '8mRz3zlm', '3236455'), + (239, 408, 'not_attending', '2021-02-04 19:35:16', '2025-12-17 19:47:50', '8mRz3zlm', '3236466'), + (239, 526, 'attending', '2021-01-02 22:45:47', '2025-12-17 19:47:48', '8mRz3zlm', '3351539'), + (239, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '8mRz3zlm', '3386848'), + (239, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '8mRz3zlm', '3389527'), + (239, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '8mRz3zlm', '3396499'), + (239, 548, 'attending', '2021-01-16 21:35:14', '2025-12-17 19:47:48', '8mRz3zlm', '3403650'), + (239, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '8mRz3zlm', '3406988'), + (239, 551, 'attending', '2021-01-20 00:00:24', '2025-12-17 19:47:49', '8mRz3zlm', '3407219'), + (239, 555, 'attending', '2021-01-20 00:00:01', '2025-12-17 19:47:49', '8mRz3zlm', '3416576'), + (239, 556, 'not_attending', '2021-01-27 00:08:55', '2025-12-17 19:47:49', '8mRz3zlm', '3417170'), + (239, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '8mRz3zlm', '3418925'), + (239, 562, 'attending', '2021-01-23 20:38:33', '2025-12-17 19:47:49', '8mRz3zlm', '3424911'), + (239, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', '8mRz3zlm', '3426074'), + (239, 567, 'attending', '2021-01-27 23:17:33', '2025-12-17 19:47:50', '8mRz3zlm', '3428895'), + (239, 568, 'attending', '2021-01-27 22:55:34', '2025-12-17 19:47:50', '8mRz3zlm', '3430267'), + (239, 569, 'attending', '2021-01-27 00:08:03', '2025-12-17 19:47:49', '8mRz3zlm', '3432673'), + (239, 570, 'attending', '2021-02-05 15:12:37', '2025-12-17 19:47:50', '8mRz3zlm', '3435538'), + (239, 576, 'not_attending', '2021-02-01 04:53:18', '2025-12-17 19:47:50', '8mRz3zlm', '3438748'), + (239, 577, 'attending', '2021-01-29 22:29:17', '2025-12-17 19:47:49', '8mRz3zlm', '3439167'), + (239, 578, 'not_attending', '2021-02-01 04:52:34', '2025-12-17 19:47:50', '8mRz3zlm', '3440043'), + (239, 579, 'maybe', '2021-02-05 18:53:01', '2025-12-17 19:47:50', '8mRz3zlm', '3440978'), + (239, 580, 'attending', '2021-01-30 18:38:45', '2025-12-17 19:47:50', '8mRz3zlm', '3444240'), + (239, 581, 'attending', '2021-01-30 03:55:15', '2025-12-17 19:47:50', '8mRz3zlm', '3445029'), + (239, 582, 'not_attending', '2021-02-01 04:52:26', '2025-12-17 19:47:50', '8mRz3zlm', '3445769'), + (239, 587, 'maybe', '2021-02-15 23:56:19', '2025-12-17 19:47:50', '8mRz3zlm', '3449470'), + (239, 588, 'attending', '2021-02-02 18:08:01', '2025-12-17 19:47:50', '8mRz3zlm', '3449471'), + (239, 589, 'maybe', '2021-02-19 03:15:02', '2025-12-17 19:47:50', '8mRz3zlm', '3449473'), + (239, 591, 'not_attending', '2021-02-08 22:18:41', '2025-12-17 19:47:50', '8mRz3zlm', '3465880'), + (239, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '8mRz3zlm', '3468125'), + (239, 602, 'attending', '2021-02-07 17:45:45', '2025-12-17 19:47:50', '8mRz3zlm', '3470303'), + (239, 603, 'not_attending', '2021-02-20 21:01:25', '2025-12-17 19:47:50', '8mRz3zlm', '3470304'), + (239, 604, 'attending', '2021-02-07 17:45:49', '2025-12-17 19:47:50', '8mRz3zlm', '3470305'), + (239, 605, 'not_attending', '2021-02-15 00:51:50', '2025-12-17 19:47:50', '8mRz3zlm', '3470991'), + (239, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '8mRz3zlm', '3517815'), + (239, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '8mRz3zlm', '3517816'), + (239, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '8mRz3zlm', '3523941'), + (239, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '8mRz3zlm', '3533850'), + (239, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8mRz3zlm', '3536632'), + (239, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8mRz3zlm', '3536656'), + (239, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '8mRz3zlm', '3539916'), + (239, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '8mRz3zlm', '3539917'), + (239, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '8mRz3zlm', '3539918'), + (239, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '8mRz3zlm', '3539919'), + (239, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '8mRz3zlm', '3539920'), + (239, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '8mRz3zlm', '3539921'), + (239, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '8mRz3zlm', '3539922'), + (239, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8mRz3zlm', '3539923'), + (239, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8mRz3zlm', '3539927'), + (239, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8mRz3zlm', '3582734'), + (239, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8mRz3zlm', '3619523'), + (239, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRz3zlm', '6045684'), + (240, 400, 'attending', '2021-02-02 01:54:10', '2025-12-17 19:47:50', 'rdOr5j84', '3236455'), + (240, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'rdOr5j84', '3468125'), + (240, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'rdOr5j84', '3470303'), + (240, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'rdOr5j84', '3470305'), + (240, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOr5j84', '3470991'), + (240, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'rdOr5j84', '3517815'), + (240, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'rdOr5j84', '3517816'), + (240, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'rdOr5j84', '3523941'), + (240, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOr5j84', '3533850'), + (240, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOr5j84', '3536632'), + (240, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'rdOr5j84', '3536656'), + (240, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'rdOr5j84', '3539916'), + (240, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'rdOr5j84', '3539917'), + (240, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOr5j84', '3539918'), + (240, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'rdOr5j84', '3539919'), + (240, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'rdOr5j84', '3539920'), + (240, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'rdOr5j84', '3539921'), + (240, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'rdOr5j84', '3539922'), + (240, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'rdOr5j84', '3539923'), + (240, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOr5j84', '3539927'), + (240, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOr5j84', '3582734'), + (240, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOr5j84', '3619523'), + (240, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOr5j84', '6045684'), + (241, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amG67wLd', '4694407'), + (241, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'amG67wLd', '4736497'), + (241, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amG67wLd', '4736499'), + (241, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'amG67wLd', '4736500'), + (241, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'amG67wLd', '4736503'), + (241, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amG67wLd', '4736504'), + (241, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'amG67wLd', '4746789'), + (241, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amG67wLd', '4753929'), + (241, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amG67wLd', '5038850'), + (241, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amG67wLd', '5045826'), + (241, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amG67wLd', '5132533'), + (241, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'amG67wLd', '5186582'), + (241, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'amG67wLd', '5186583'), + (241, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amG67wLd', '5186585'), + (241, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amG67wLd', '5190437'), + (241, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'amG67wLd', '5195095'), + (241, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'amG67wLd', '5215989'), + (241, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'amG67wLd', '5223686'), + (241, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'amG67wLd', '5247467'), + (241, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'amG67wLd', '5260800'), + (241, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'amG67wLd', '5269930'), + (241, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'amG67wLd', '5271448'), + (241, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'amG67wLd', '5271449'), + (241, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'amG67wLd', '5278159'), + (241, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'amG67wLd', '5363695'), + (241, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'amG67wLd', '5365960'), + (241, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'amG67wLd', '5378247'), + (241, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'amG67wLd', '5389605'), + (241, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'amG67wLd', '5397265'), + (241, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'amG67wLd', '5404786'), + (241, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'amG67wLd', '5405203'), + (241, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'amG67wLd', '5412550'), + (241, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'amG67wLd', '5415046'), + (241, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'amG67wLd', '5422086'), + (241, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'amG67wLd', '5422406'), + (241, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'amG67wLd', '5424565'), + (241, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'amG67wLd', '5426882'), + (241, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'amG67wLd', '5441125'), + (241, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'amG67wLd', '5441126'), + (241, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'amG67wLd', '5441128'), + (241, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'amG67wLd', '5441131'), + (241, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'amG67wLd', '5441132'), + (241, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'amG67wLd', '5453325'), + (241, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'amG67wLd', '5454516'), + (241, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'amG67wLd', '5454605'), + (241, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'amG67wLd', '5455037'), + (241, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'amG67wLd', '5461278'), + (241, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'amG67wLd', '5469480'), + (241, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'amG67wLd', '5474663'), + (241, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'amG67wLd', '5482022'), + (241, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'amG67wLd', '5488912'), + (241, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'amG67wLd', '5492192'), + (241, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'amG67wLd', '5493139'), + (241, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'amG67wLd', '5493200'), + (241, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'amG67wLd', '5502188'), + (241, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'amG67wLd', '5505059'), + (241, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'amG67wLd', '5509055'), + (241, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'amG67wLd', '5512862'), + (241, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'amG67wLd', '5513985'), + (241, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'amG67wLd', '5519981'), + (241, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'amG67wLd', '5522550'), + (241, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'amG67wLd', '5534683'), + (241, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'amG67wLd', '5537735'), + (241, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'amG67wLd', '5540859'), + (241, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'amG67wLd', '5546619'), + (241, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'amG67wLd', '5557747'), + (241, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'amG67wLd', '5560255'), + (241, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'amG67wLd', '5562906'), + (241, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'amG67wLd', '5600604'), + (241, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'amG67wLd', '5605544'), + (241, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'amG67wLd', '5630960'), + (241, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'amG67wLd', '5630961'), + (241, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'amG67wLd', '5630962'), + (241, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'amG67wLd', '5630966'), + (241, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'amG67wLd', '5630967'), + (241, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'amG67wLd', '5630968'), + (241, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'amG67wLd', '5635406'), + (241, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'amG67wLd', '5638765'), + (241, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'amG67wLd', '5640097'), + (241, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'amG67wLd', '5640843'), + (241, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'amG67wLd', '5641521'), + (241, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'amG67wLd', '5642818'), + (241, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'amG67wLd', '5652395'), + (241, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'amG67wLd', '5670445'), + (241, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'amG67wLd', '5671637'), + (241, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'amG67wLd', '5672329'), + (241, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'amG67wLd', '5674057'), + (241, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'amG67wLd', '5674060'), + (241, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'amG67wLd', '5677461'), + (241, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'amG67wLd', '5698046'), + (241, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'amG67wLd', '5699760'), + (241, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'amG67wLd', '5741601'), + (241, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'amG67wLd', '5763458'), + (241, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'amG67wLd', '5774172'), + (241, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'amG67wLd', '5818247'), + (241, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'amG67wLd', '5819471'), + (241, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'amG67wLd', '5827739'), + (241, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'amG67wLd', '5844306'), + (241, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'amG67wLd', '5850159'), + (241, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'amG67wLd', '5858999'), + (241, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'amG67wLd', '5871984'), + (241, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'amG67wLd', '5876354'), + (241, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'amG67wLd', '5880939'), + (241, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'amG67wLd', '5880940'), + (241, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'amG67wLd', '5880942'), + (241, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'amG67wLd', '5880943'), + (241, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'amG67wLd', '5887890'), + (241, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'amG67wLd', '5888598'), + (241, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'amG67wLd', '5893260'), + (241, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'amG67wLd', '5899826'), + (241, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'amG67wLd', '5900199'), + (241, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'amG67wLd', '5900200'), + (241, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'amG67wLd', '5900202'), + (241, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'amG67wLd', '5900203'), + (241, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'amG67wLd', '5901108'), + (241, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'amG67wLd', '5901126'), + (241, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'amG67wLd', '5901606'), + (241, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'amG67wLd', '5909655'), + (241, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'amG67wLd', '5910522'), + (241, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'amG67wLd', '5910526'), + (241, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'amG67wLd', '5910528'), + (241, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'amG67wLd', '5916219'), + (241, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'amG67wLd', '5936234'), + (241, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'amG67wLd', '5958351'), + (241, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'amG67wLd', '5959751'), + (241, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'amG67wLd', '5959755'), + (241, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'amG67wLd', '5960055'), + (241, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'amG67wLd', '5961684'), + (241, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'amG67wLd', '5962132'), + (241, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'amG67wLd', '5962133'), + (241, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'amG67wLd', '5962134'), + (241, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'amG67wLd', '5962317'), + (241, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'amG67wLd', '5962318'), + (241, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'amG67wLd', '5965933'), + (241, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'amG67wLd', '5967014'), + (241, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'amG67wLd', '5972815'), + (241, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'amG67wLd', '5974016'), + (241, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'amG67wLd', '5981515'), + (241, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'amG67wLd', '5993516'), + (241, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'amG67wLd', '5998939'), + (241, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'amG67wLd', '6028191'), + (241, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'amG67wLd', '6040066'), + (241, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'amG67wLd', '6042717'), + (241, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'amG67wLd', '6044838'), + (241, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'amG67wLd', '6044839'), + (241, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amG67wLd', '6045684'), + (241, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'amG67wLd', '6050104'), + (241, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'amG67wLd', '6053195'), + (241, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'amG67wLd', '6053198'), + (241, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'amG67wLd', '6056085'), + (241, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'amG67wLd', '6056916'), + (241, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'amG67wLd', '6059290'), + (241, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'amG67wLd', '6060328'), + (241, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'amG67wLd', '6061037'), + (241, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'amG67wLd', '6061039'), + (241, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'amG67wLd', '6067245'), + (241, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'amG67wLd', '6068094'), + (241, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'amG67wLd', '6068252'), + (241, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'amG67wLd', '6068253'), + (241, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'amG67wLd', '6068254'), + (241, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'amG67wLd', '6068280'), + (241, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'amG67wLd', '6069093'), + (241, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'amG67wLd', '6072528'), + (241, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'amG67wLd', '6079840'), + (241, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'amG67wLd', '6083398'), + (241, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'amG67wLd', '6093504'), + (241, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'amG67wLd', '6097414'), + (241, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'amG67wLd', '6097442'), + (241, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'amG67wLd', '6097684'), + (241, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'amG67wLd', '6098762'), + (241, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'amG67wLd', '6101361'), + (241, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'amG67wLd', '6101362'), + (241, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'amG67wLd', '6107314'), + (241, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'amG67wLd', '6120034'), + (241, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'amG67wLd', '6136733'), + (241, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'amG67wLd', '6137989'), + (241, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'amG67wLd', '6150864'), + (241, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'amG67wLd', '6155491'), + (241, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'amG67wLd', '6164417'), + (241, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'amG67wLd', '6166388'), + (241, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'amG67wLd', '6176439'), + (241, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'amG67wLd', '6182410'), + (241, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'amG67wLd', '6185812'), + (241, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'amG67wLd', '6187651'), + (241, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'amG67wLd', '6187963'), + (241, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'amG67wLd', '6187964'), + (241, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'amG67wLd', '6187966'), + (241, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'amG67wLd', '6187967'), + (241, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'amG67wLd', '6187969'), + (241, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'amG67wLd', '6334878'), + (241, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'amG67wLd', '6337236'), + (241, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'amG67wLd', '6337970'), + (241, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'amG67wLd', '6338308'), + (241, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'amG67wLd', '6341710'), + (241, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'amG67wLd', '6342044'), + (241, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'amG67wLd', '6342298'), + (241, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'amG67wLd', '6343294'), + (241, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'amG67wLd', '6347034'), + (241, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'amG67wLd', '6347056'), + (241, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'amG67wLd', '6353830'), + (241, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'amG67wLd', '6353831'), + (241, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'amG67wLd', '6357867'), + (241, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'amG67wLd', '6358652'), + (241, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'amG67wLd', '6361709'), + (241, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'amG67wLd', '6361710'), + (241, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'amG67wLd', '6361711'), + (241, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'amG67wLd', '6361712'), + (241, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'amG67wLd', '6361713'), + (241, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'amG67wLd', '6382573'), + (241, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'amG67wLd', '6388604'), + (241, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'amG67wLd', '6394629'), + (241, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'amG67wLd', '6394631'), + (241, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'amG67wLd', '6440863'), + (241, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'amG67wLd', '6445440'), + (241, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'amG67wLd', '6453951'), + (241, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'amG67wLd', '6461696'), + (241, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'amG67wLd', '6462129'), + (241, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'amG67wLd', '6463218'), + (241, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'amG67wLd', '6472181'), + (241, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'amG67wLd', '6482693'), + (241, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'amG67wLd', '6484200'), + (241, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'amG67wLd', '6484680'), + (241, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'amG67wLd', '6507741'), + (241, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'amG67wLd', '6514659'), + (241, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'amG67wLd', '6514660'), + (241, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'amG67wLd', '6519103'), + (241, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'amG67wLd', '6535681'), + (241, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'amG67wLd', '6584747'), + (241, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'amG67wLd', '6587097'), + (241, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'amG67wLd', '6609022'), + (241, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'amG67wLd', '6632757'), + (241, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'amG67wLd', '6644187'), + (241, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'amG67wLd', '6648951'), + (241, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'amG67wLd', '6648952'), + (241, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'amG67wLd', '6655401'), + (241, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'amG67wLd', '6661585'), + (241, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'amG67wLd', '6661588'), + (241, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'amG67wLd', '6661589'), + (241, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'amG67wLd', '6699906'), + (241, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'amG67wLd', '6699913'), + (241, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'amG67wLd', '6701109'), + (241, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'amG67wLd', '6705219'), + (241, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'amG67wLd', '6710153'), + (241, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'amG67wLd', '6711552'), + (241, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'amG67wLd', '6711553'), + (241, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'amG67wLd', '6722688'), + (241, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'amG67wLd', '6730620'), + (241, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'amG67wLd', '6740364'), + (241, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'amG67wLd', '6743829'), + (241, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'amG67wLd', '7030380'), + (241, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'amG67wLd', '7033677'), + (241, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'amG67wLd', '7044715'), + (241, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'amG67wLd', '7050318'), + (241, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'amG67wLd', '7050319'), + (241, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'amG67wLd', '7050322'), + (241, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'amG67wLd', '7057804'), + (241, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'amG67wLd', '7072824'), + (241, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'amG67wLd', '7074348'), + (241, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'amG67wLd', '7074364'), + (241, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'amG67wLd', '7089267'), + (241, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'amG67wLd', '7098747'), + (241, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'amG67wLd', '7113468'), + (241, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'amG67wLd', '7114856'), + (241, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'amG67wLd', '7114951'), + (241, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'amG67wLd', '7114955'), + (241, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'amG67wLd', '7114956'), + (241, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'amG67wLd', '7114957'), + (241, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'amG67wLd', '7159484'), + (241, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'amG67wLd', '7178446'), + (241, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'amG67wLd', '7220467'), + (241, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'amG67wLd', '7240354'), + (241, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'amG67wLd', '7251633'), + (241, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'amG67wLd', '7324073'), + (241, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'amG67wLd', '7324074'), + (241, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'amG67wLd', '7324075'), + (241, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'amG67wLd', '7324078'), + (241, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'amG67wLd', '7324082'), + (241, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'amG67wLd', '7331457'), + (241, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'amG67wLd', '7363643'), + (241, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'amG67wLd', '7368606'), + (241, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'amG67wLd', '7397462'), + (241, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'amG67wLd', '7424275'), + (241, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'amG67wLd', '7432751'), + (241, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'amG67wLd', '7432752'), + (241, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'amG67wLd', '7432753'), + (241, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'amG67wLd', '7432754'), + (241, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'amG67wLd', '7432755'), + (241, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'amG67wLd', '7432756'), + (241, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'amG67wLd', '7432758'), + (241, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'amG67wLd', '7432759'), + (241, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'amG67wLd', '7433834'), + (241, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'amG67wLd', '7470197'), + (241, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'amG67wLd', '7685613'), + (241, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'amG67wLd', '7688194'), + (241, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'amG67wLd', '7688196'), + (241, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'amG67wLd', '7688289'), + (241, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'amG67wLd', '7692763'), + (241, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'amG67wLd', '7697552'), + (241, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'amG67wLd', '7699878'), + (241, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'amG67wLd', '7704043'), + (241, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'amG67wLd', '7712467'), + (241, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'amG67wLd', '7713585'), + (241, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'amG67wLd', '7713586'), + (241, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'amG67wLd', '7738518'), + (241, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'amG67wLd', '7750636'), + (241, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'amG67wLd', '7796540'), + (241, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'amG67wLd', '7796541'), + (241, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'amG67wLd', '7796542'), + (241, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'amG67wLd', '7825913'), + (241, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'amG67wLd', '7826209'), + (241, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'amG67wLd', '7834742'), + (241, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'amG67wLd', '7842108'), + (241, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'amG67wLd', '7842902'), + (241, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'amG67wLd', '7842903'), + (241, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'amG67wLd', '7842904'), + (241, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'amG67wLd', '7842905'), + (241, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'amG67wLd', '7855719'), + (241, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'amG67wLd', '7860683'), + (241, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'amG67wLd', '7860684'), + (241, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'amG67wLd', '7866095'), + (241, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'amG67wLd', '7869170'), + (241, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'amG67wLd', '7869188'), + (241, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'amG67wLd', '7869201'), + (241, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'amG67wLd', '7877465'), + (241, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'amG67wLd', '7888250'), + (241, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'amG67wLd', '7904777'), + (241, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'amG67wLd', '8349164'), + (241, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'amG67wLd', '8349545'), + (241, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'amG67wLd', '8368028'), + (241, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'amG67wLd', '8368029'), + (241, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'amG67wLd', '8388462'), + (241, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'amG67wLd', '8400273'), + (241, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'amG67wLd', '8400275'), + (241, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'amG67wLd', '8400276'), + (241, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'amG67wLd', '8404977'), + (241, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'amG67wLd', '8430783'), + (241, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'amG67wLd', '8430784'), + (241, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'amG67wLd', '8430799'), + (241, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'amG67wLd', '8430800'), + (241, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'amG67wLd', '8430801'), + (241, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'amG67wLd', '8438709'), + (241, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'amG67wLd', '8457738'), + (241, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'amG67wLd', '8459566'), + (241, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'amG67wLd', '8459567'), + (241, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'amG67wLd', '8461032'), + (241, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'amG67wLd', '8477877'), + (241, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'amG67wLd', '8485688'), + (241, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'amG67wLd', '8490587'), + (241, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'amG67wLd', '8493552'), + (241, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'amG67wLd', '8493553'), + (241, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'amG67wLd', '8493554'), + (241, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'amG67wLd', '8493555'), + (241, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'amG67wLd', '8493556'), + (241, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'amG67wLd', '8493557'), + (241, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'amG67wLd', '8493558'), + (241, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'amG67wLd', '8493559'), + (241, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'amG67wLd', '8493560'), + (241, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'amG67wLd', '8493561'), + (241, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'amG67wLd', '8493572'), + (241, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'amG67wLd', '8540725'), + (241, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'amG67wLd', '8555421'), + (242, 1659, 'attending', '2022-09-23 02:40:11', '2025-12-17 19:47:11', 'd8L5Oo0d', '5557747'), + (242, 1667, 'attending', '2022-09-24 20:54:44', '2025-12-17 19:47:11', 'd8L5Oo0d', '5563221'), + (242, 1668, 'not_attending', '2022-10-01 19:48:22', '2025-12-17 19:47:12', 'd8L5Oo0d', '5563222'), + (242, 1676, 'attending', '2022-09-21 13:23:56', '2025-12-17 19:47:11', 'd8L5Oo0d', '5596181'), + (242, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd8L5Oo0d', '5600604'), + (242, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd8L5Oo0d', '5605544'), + (242, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'd8L5Oo0d', '5606737'), + (242, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd8L5Oo0d', '5630960'), + (242, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd8L5Oo0d', '5630961'), + (242, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd8L5Oo0d', '5630962'), + (242, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd8L5Oo0d', '5630966'), + (242, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd8L5Oo0d', '5630967'), + (242, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd8L5Oo0d', '5630968'), + (242, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd8L5Oo0d', '5635406'), + (242, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd8L5Oo0d', '5638765'), + (242, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd8L5Oo0d', '5640097'), + (242, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'd8L5Oo0d', '5640843'), + (242, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd8L5Oo0d', '5641521'), + (242, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd8L5Oo0d', '5642818'), + (242, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd8L5Oo0d', '5652395'), + (242, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd8L5Oo0d', '5670445'), + (242, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd8L5Oo0d', '5671637'), + (242, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd8L5Oo0d', '5672329'), + (242, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd8L5Oo0d', '5674057'), + (242, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd8L5Oo0d', '5674060'), + (242, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd8L5Oo0d', '5677461'), + (242, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd8L5Oo0d', '5698046'), + (242, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd8L5Oo0d', '5699760'), + (242, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd8L5Oo0d', '5741601'), + (242, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd8L5Oo0d', '5763458'), + (242, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd8L5Oo0d', '5774172'), + (242, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd8L5Oo0d', '5818247'), + (242, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd8L5Oo0d', '5819471'), + (242, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd8L5Oo0d', '5827739'), + (242, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd8L5Oo0d', '5844306'), + (242, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd8L5Oo0d', '5850159'), + (242, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd8L5Oo0d', '5858999'), + (242, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd8L5Oo0d', '5871984'), + (242, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd8L5Oo0d', '5876354'), + (242, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd8L5Oo0d', '5880939'), + (242, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd8L5Oo0d', '5887890'), + (242, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd8L5Oo0d', '5888598'), + (242, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd8L5Oo0d', '5893260'), + (242, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8L5Oo0d', '6045684'), + (243, 1442, 'attending', '2022-06-18 17:22:23', '2025-12-17 19:47:17', 'O4Zobld1', '5397265'), + (243, 1459, 'maybe', '2022-06-20 00:05:56', '2025-12-17 19:47:17', 'O4Zobld1', '5404793'), + (243, 1476, 'maybe', '2022-06-19 17:45:02', '2025-12-17 19:47:17', 'O4Zobld1', '5408130'), + (243, 1480, 'attending', '2022-06-19 03:16:17', '2025-12-17 19:47:19', 'O4Zobld1', '5411699'), + (243, 1482, 'attending', '2022-06-22 01:49:51', '2025-12-17 19:47:19', 'O4Zobld1', '5412550'), + (243, 1483, 'maybe', '2022-06-22 02:54:03', '2025-12-17 19:47:17', 'O4Zobld1', '5414556'), + (243, 1484, 'attending', '2022-06-22 20:58:14', '2025-12-17 19:47:17', 'O4Zobld1', '5415046'), + (243, 1485, 'maybe', '2022-06-21 20:15:51', '2025-12-17 19:47:17', 'O4Zobld1', '5416276'), + (243, 1486, 'attending', '2022-06-28 23:34:35', '2025-12-17 19:47:19', 'O4Zobld1', '5416339'), + (243, 1488, 'maybe', '2022-06-30 06:52:24', '2025-12-17 19:47:19', 'O4Zobld1', '5420154'), + (243, 1489, 'maybe', '2022-06-30 05:40:51', '2025-12-17 19:47:19', 'O4Zobld1', '5420155'), + (243, 1495, 'maybe', '2022-07-05 04:11:57', '2025-12-17 19:47:19', 'O4Zobld1', '5422086'), + (243, 1496, 'maybe', '2022-06-28 19:50:13', '2025-12-17 19:47:19', 'O4Zobld1', '5422404'), + (243, 1497, 'maybe', '2022-06-28 23:34:36', '2025-12-17 19:47:19', 'O4Zobld1', '5422405'), + (243, 1498, 'attending', '2022-07-01 01:36:42', '2025-12-17 19:47:19', 'O4Zobld1', '5422406'), + (243, 1500, 'maybe', '2022-07-05 04:11:17', '2025-12-17 19:47:19', 'O4Zobld1', '5423915'), + (243, 1501, 'maybe', '2022-06-28 23:34:43', '2025-12-17 19:47:19', 'O4Zobld1', '5424546'), + (243, 1502, 'maybe', '2022-07-05 04:11:24', '2025-12-17 19:47:19', 'O4Zobld1', '5424565'), + (243, 1504, 'attending', '2022-07-02 20:58:09', '2025-12-17 19:47:19', 'O4Zobld1', '5426882'), + (243, 1505, 'maybe', '2022-07-02 20:58:34', '2025-12-17 19:47:19', 'O4Zobld1', '5427083'), + (243, 1508, 'attending', '2022-07-02 20:57:59', '2025-12-17 19:47:19', 'O4Zobld1', '5433453'), + (243, 1509, 'maybe', '2022-07-06 02:02:28', '2025-12-17 19:47:19', 'O4Zobld1', '5434019'), + (243, 1513, 'attending', '2022-07-12 23:26:11', '2025-12-17 19:47:19', 'O4Zobld1', '5441125'), + (243, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'O4Zobld1', '5441126'), + (243, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'O4Zobld1', '5441128'), + (243, 1516, 'attending', '2022-08-16 23:43:25', '2025-12-17 19:47:23', 'O4Zobld1', '5441129'), + (243, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'O4Zobld1', '5441131'), + (243, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'O4Zobld1', '5441132'), + (243, 1520, 'attending', '2022-07-12 05:20:28', '2025-12-17 19:47:19', 'O4Zobld1', '5441645'), + (243, 1522, 'attending', '2022-07-11 17:50:39', '2025-12-17 19:47:20', 'O4Zobld1', '5442832'), + (243, 1525, 'attending', '2022-07-12 23:26:35', '2025-12-17 19:47:19', 'O4Zobld1', '5444962'), + (243, 1528, 'maybe', '2022-07-13 22:43:39', '2025-12-17 19:47:20', 'O4Zobld1', '5446643'), + (243, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'O4Zobld1', '5453325'), + (243, 1541, 'attending', '2022-07-24 04:08:29', '2025-12-17 19:47:20', 'O4Zobld1', '5453542'), + (243, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'O4Zobld1', '5454516'), + (243, 1544, 'attending', '2022-09-17 21:47:31', '2025-12-17 19:47:11', 'O4Zobld1', '5454517'), + (243, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'O4Zobld1', '5454605'), + (243, 1547, 'maybe', '2022-07-26 03:57:41', '2025-12-17 19:47:20', 'O4Zobld1', '5454608'), + (243, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'O4Zobld1', '5455037'), + (243, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'O4Zobld1', '5461278'), + (243, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'O4Zobld1', '5469480'), + (243, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'O4Zobld1', '5471073'), + (243, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'O4Zobld1', '5474663'), + (243, 1570, 'attending', '2022-08-31 21:02:48', '2025-12-17 19:47:21', 'O4Zobld1', '5481830'), + (243, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'O4Zobld1', '5482022'), + (243, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'O4Zobld1', '5482793'), + (243, 1580, 'attending', '2022-08-09 22:26:58', '2025-12-17 19:47:22', 'O4Zobld1', '5488912'), + (243, 1581, 'attending', '2022-08-11 19:46:00', '2025-12-17 19:47:22', 'O4Zobld1', '5490302'), + (243, 1586, 'attending', '2022-08-16 23:43:10', '2025-12-17 19:47:23', 'O4Zobld1', '5492019'), + (243, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'O4Zobld1', '5492192'), + (243, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'O4Zobld1', '5493139'), + (243, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'O4Zobld1', '5493200'), + (243, 1592, 'attending', '2022-08-10 20:59:09', '2025-12-17 19:47:22', 'O4Zobld1', '5494031'), + (243, 1593, 'maybe', '2022-08-13 02:19:50', '2025-12-17 19:47:22', 'O4Zobld1', '5494043'), + (243, 1595, 'attending', '2022-08-12 03:31:12', '2025-12-17 19:47:22', 'O4Zobld1', '5495736'), + (243, 1597, 'maybe', '2022-08-13 04:21:52', '2025-12-17 19:47:22', 'O4Zobld1', '5496566'), + (243, 1598, 'attending', '2022-08-13 04:22:00', '2025-12-17 19:47:22', 'O4Zobld1', '5496567'), + (243, 1603, 'maybe', '2022-08-13 04:22:27', '2025-12-17 19:47:23', 'O4Zobld1', '5497895'), + (243, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'O4Zobld1', '5502188'), + (243, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'O4Zobld1', '5505059'), + (243, 1609, 'attending', '2022-08-29 01:03:27', '2025-12-17 19:47:23', 'O4Zobld1', '5506590'), + (243, 1610, 'maybe', '2022-08-29 01:03:47', '2025-12-17 19:47:23', 'O4Zobld1', '5506595'), + (243, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'O4Zobld1', '5509055'), + (243, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'O4Zobld1', '5512862'), + (243, 1620, 'attending', '2022-08-25 20:54:22', '2025-12-17 19:47:23', 'O4Zobld1', '5513046'), + (243, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'O4Zobld1', '5513985'), + (243, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'O4Zobld1', '5519981'), + (243, 1627, 'attending', '2022-09-02 01:00:19', '2025-12-17 19:47:24', 'O4Zobld1', '5521552'), + (243, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'O4Zobld1', '5522550'), + (243, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'O4Zobld1', '5534683'), + (243, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'O4Zobld1', '5537735'), + (243, 1636, 'maybe', '2022-09-04 22:41:51', '2025-12-17 19:47:24', 'O4Zobld1', '5538454'), + (243, 1638, 'attending', '2022-09-01 18:19:43', '2025-12-17 19:47:24', 'O4Zobld1', '5540402'), + (243, 1639, 'attending', '2022-09-01 23:32:22', '2025-12-17 19:47:24', 'O4Zobld1', '5540403'), + (243, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'O4Zobld1', '5540859'), + (243, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'O4Zobld1', '5546619'), + (243, 1652, 'attending', '2022-09-10 20:32:26', '2025-12-17 19:47:24', 'O4Zobld1', '5552671'), + (243, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'O4Zobld1', '5555245'), + (243, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'O4Zobld1', '5557747'), + (243, 1661, 'attending', '2022-09-09 00:19:23', '2025-12-17 19:47:24', 'O4Zobld1', '5560254'), + (243, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'O4Zobld1', '5560255'), + (243, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'O4Zobld1', '5562906'), + (243, 1667, 'attending', '2022-09-24 21:57:01', '2025-12-17 19:47:11', 'O4Zobld1', '5563221'), + (243, 1668, 'attending', '2022-10-01 21:34:36', '2025-12-17 19:47:12', 'O4Zobld1', '5563222'), + (243, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'O4Zobld1', '5600604'), + (243, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'O4Zobld1', '5605544'), + (243, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'O4Zobld1', '5606737'), + (243, 1714, 'attending', '2022-10-27 23:10:39', '2025-12-17 19:47:14', 'O4Zobld1', '5622347'), + (243, 1720, 'attending', '2022-10-15 18:05:14', '2025-12-17 19:47:12', 'O4Zobld1', '5630959'), + (243, 1721, 'attending', '2022-10-21 04:06:20', '2025-12-17 19:47:13', 'O4Zobld1', '5630960'), + (243, 1722, 'attending', '2022-10-24 20:56:22', '2025-12-17 19:47:14', 'O4Zobld1', '5630961'), + (243, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'O4Zobld1', '5630962'), + (243, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'O4Zobld1', '5630966'), + (243, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'O4Zobld1', '5630967'), + (243, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'O4Zobld1', '5630968'), + (243, 1727, 'attending', '2022-12-02 02:56:22', '2025-12-17 19:47:16', 'O4Zobld1', '5630969'), + (243, 1728, 'attending', '2022-11-27 04:11:22', '2025-12-17 19:47:17', 'O4Zobld1', '5630970'), + (243, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'O4Zobld1', '5635406'), + (243, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'O4Zobld1', '5638765'), + (243, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'O4Zobld1', '5640097'), + (243, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'O4Zobld1', '5640843'), + (243, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'O4Zobld1', '5641521'), + (243, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'O4Zobld1', '5642818'), + (243, 1747, 'attending', '2022-10-18 23:32:38', '2025-12-17 19:47:13', 'O4Zobld1', '5648009'), + (243, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'O4Zobld1', '5652395'), + (243, 1757, 'maybe', '2022-11-03 22:06:37', '2025-12-17 19:47:15', 'O4Zobld1', '5668974'), + (243, 1762, 'attending', '2022-12-02 00:13:20', '2025-12-17 19:47:16', 'O4Zobld1', '5670445'), + (243, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'O4Zobld1', '5671637'), + (243, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'O4Zobld1', '5672329'), + (243, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'O4Zobld1', '5674057'), + (243, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'O4Zobld1', '5674060'), + (243, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'O4Zobld1', '5677461'), + (243, 1776, 'attending', '2022-11-08 23:23:02', '2025-12-17 19:47:15', 'O4Zobld1', '5691067'), + (243, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'O4Zobld1', '5698046'), + (243, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'O4Zobld1', '5699760'), + (243, 1793, 'maybe', '2022-11-23 22:32:36', '2025-12-17 19:47:16', 'O4Zobld1', '5736365'), + (243, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'O4Zobld1', '5741601'), + (243, 1796, 'attending', '2022-12-01 05:27:49', '2025-12-17 19:47:16', 'O4Zobld1', '5756755'), + (243, 1797, 'maybe', '2022-12-08 06:51:58', '2025-12-17 19:47:17', 'O4Zobld1', '5757486'), + (243, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'O4Zobld1', '5763458'), + (243, 1802, 'attending', '2022-12-08 06:52:02', '2025-12-17 19:47:17', 'O4Zobld1', '5764669'), + (243, 1803, 'attending', '2023-01-04 05:48:14', '2025-12-17 19:47:05', 'O4Zobld1', '5764673'), + (243, 1806, 'attending', '2023-01-21 03:59:54', '2025-12-17 19:47:05', 'O4Zobld1', '5764676'), + (243, 1807, 'attending', '2023-01-12 03:59:03', '2025-12-17 19:47:05', 'O4Zobld1', '5764677'), + (243, 1820, 'not_attending', '2023-04-05 21:23:37', '2025-12-17 19:46:58', 'O4Zobld1', '5764690'), + (243, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'O4Zobld1', '5774172'), + (243, 1825, 'attending', '2022-12-09 00:56:03', '2025-12-17 19:47:16', 'O4Zobld1', '5776760'), + (243, 1826, 'attending', '2022-12-20 02:59:58', '2025-12-17 19:47:04', 'O4Zobld1', '5776768'), + (243, 1828, 'attending', '2022-11-28 20:40:15', '2025-12-17 19:47:16', 'O4Zobld1', '5778865'), + (243, 1829, 'maybe', '2022-12-02 05:41:12', '2025-12-17 19:47:16', 'O4Zobld1', '5778867'), + (243, 1831, 'maybe', '2022-12-02 05:54:27', '2025-12-17 19:47:16', 'O4Zobld1', '5813239'), + (243, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'O4Zobld1', '5818247'), + (243, 1833, 'maybe', '2022-12-06 06:24:42', '2025-12-17 19:47:16', 'O4Zobld1', '5819465'), + (243, 1834, 'maybe', '2022-12-08 06:52:03', '2025-12-17 19:47:17', 'O4Zobld1', '5819470'), + (243, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'O4Zobld1', '5819471'), + (243, 1836, 'attending', '2022-12-05 17:24:33', '2025-12-17 19:47:16', 'O4Zobld1', '5819484'), + (243, 1837, 'attending', '2022-12-07 23:16:52', '2025-12-17 19:47:16', 'O4Zobld1', '5820146'), + (243, 1838, 'attending', '2022-12-05 23:38:54', '2025-12-17 19:47:16', 'O4Zobld1', '5821722'), + (243, 1839, 'attending', '2022-12-21 23:33:00', '2025-12-17 19:47:04', 'O4Zobld1', '5821920'), + (243, 1840, 'maybe', '2022-12-08 06:39:13', '2025-12-17 19:47:17', 'O4Zobld1', '5822288'), + (243, 1841, 'attending', '2022-12-29 03:06:06', '2025-12-17 19:47:05', 'O4Zobld1', '5827665'), + (243, 1842, 'maybe', '2022-12-09 03:45:41', '2025-12-17 19:47:04', 'O4Zobld1', '5827739'), + (243, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'O4Zobld1', '5844306'), + (243, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'O4Zobld1', '5850159'), + (243, 1849, 'maybe', '2023-01-04 05:48:05', '2025-12-17 19:47:05', 'O4Zobld1', '5852467'), + (243, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'O4Zobld1', '5858999'), + (243, 1852, 'attending', '2023-01-11 04:08:21', '2025-12-17 19:47:05', 'O4Zobld1', '5869898'), + (243, 1853, 'maybe', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'O4Zobld1', '5871984'), + (243, 1859, 'attending', '2023-01-20 03:51:34', '2025-12-17 19:47:05', 'O4Zobld1', '5876234'), + (243, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'O4Zobld1', '5876354'), + (243, 1864, 'attending', '2023-01-21 03:59:53', '2025-12-17 19:47:05', 'O4Zobld1', '5879675'), + (243, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'O4Zobld1', '5880939'), + (243, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'O4Zobld1', '5880940'), + (243, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'O4Zobld1', '5880942'), + (243, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'O4Zobld1', '5880943'), + (243, 1872, 'attending', '2023-01-20 03:51:55', '2025-12-17 19:47:05', 'O4Zobld1', '5883546'), + (243, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'O4Zobld1', '5887890'), + (243, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'O4Zobld1', '5888598'), + (243, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'O4Zobld1', '5893260'), + (243, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'O4Zobld1', '5899826'), + (243, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'O4Zobld1', '5900199'), + (243, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'O4Zobld1', '5900200'), + (243, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'O4Zobld1', '5900202'), + (243, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'O4Zobld1', '5900203'), + (243, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'O4Zobld1', '5901108'), + (243, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'O4Zobld1', '5901126'), + (243, 1897, 'attending', '2023-02-10 06:22:25', '2025-12-17 19:47:07', 'O4Zobld1', '5901128'), + (243, 1905, 'maybe', '2023-02-05 21:20:51', '2025-12-17 19:47:06', 'O4Zobld1', '5904479'), + (243, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'O4Zobld1', '5909655'), + (243, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'O4Zobld1', '5910522'), + (243, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'O4Zobld1', '5910526'), + (243, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'O4Zobld1', '5910528'), + (243, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'O4Zobld1', '5916219'), + (243, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'O4Zobld1', '5936234'), + (243, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'O4Zobld1', '5958351'), + (243, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'O4Zobld1', '5959751'), + (243, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'O4Zobld1', '5959755'), + (243, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'O4Zobld1', '5960055'), + (243, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'O4Zobld1', '5961684'), + (243, 1942, 'attending', '2023-03-01 02:24:19', '2025-12-17 19:47:08', 'O4Zobld1', '5962085'), + (243, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'O4Zobld1', '5962132'), + (243, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'O4Zobld1', '5962133'), + (243, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'O4Zobld1', '5962134'), + (243, 1947, 'attending', '2023-03-05 03:54:57', '2025-12-17 19:47:09', 'O4Zobld1', '5962233'), + (243, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'O4Zobld1', '5962317'), + (243, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'O4Zobld1', '5962318'), + (243, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'O4Zobld1', '5965933'), + (243, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'O4Zobld1', '5967014'), + (243, 1955, 'attending', '2023-03-29 22:20:03', '2025-12-17 19:46:57', 'O4Zobld1', '5972529'), + (243, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'O4Zobld1', '5972763'), + (243, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'O4Zobld1', '5972815'), + (243, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'O4Zobld1', '5974016'), + (243, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'O4Zobld1', '5981515'), + (243, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'O4Zobld1', '5993516'), + (243, 1973, 'attending', '2023-03-15 03:19:34', '2025-12-17 19:46:56', 'O4Zobld1', '5993777'), + (243, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'O4Zobld1', '5998939'), + (243, 1978, 'maybe', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'O4Zobld1', '6028191'), + (243, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'O4Zobld1', '6040066'), + (243, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'O4Zobld1', '6042717'), + (243, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'O4Zobld1', '6044838'), + (243, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'O4Zobld1', '6044839'), + (243, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'O4Zobld1', '6045684'), + (243, 1992, 'attending', '2023-04-01 01:03:27', '2025-12-17 19:46:58', 'O4Zobld1', '6048742'), + (243, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'O4Zobld1', '6050104'), + (243, 1997, 'attending', '2023-04-05 21:23:35', '2025-12-17 19:46:58', 'O4Zobld1', '6051604'), + (243, 1999, 'maybe', '2023-04-11 01:50:15', '2025-12-17 19:47:00', 'O4Zobld1', '6052057'), + (243, 2000, 'attending', '2023-04-04 02:22:15', '2025-12-17 19:46:58', 'O4Zobld1', '6052107'), + (243, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'O4Zobld1', '6053195'), + (243, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'O4Zobld1', '6053198'), + (243, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'O4Zobld1', '6056085'), + (243, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'O4Zobld1', '6056916'), + (243, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'O4Zobld1', '6059290'), + (243, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'O4Zobld1', '6060328'), + (243, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'O4Zobld1', '6061037'), + (243, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'O4Zobld1', '6061039'), + (243, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'O4Zobld1', '6061099'), + (243, 2021, 'attending', '2023-04-16 23:54:52', '2025-12-17 19:47:00', 'O4Zobld1', '6066316'), + (243, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'O4Zobld1', '6067245'), + (243, 2025, 'maybe', '2023-04-23 03:52:10', '2025-12-17 19:47:00', 'O4Zobld1', '6067457'), + (243, 2026, 'maybe', '2023-04-23 21:14:21', '2025-12-17 19:47:01', 'O4Zobld1', '6068078'), + (243, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'O4Zobld1', '6068094'), + (243, 2028, 'maybe', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'O4Zobld1', '6068252'), + (243, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'O4Zobld1', '6068253'), + (243, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'O4Zobld1', '6068254'), + (243, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'O4Zobld1', '6068280'), + (243, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'O4Zobld1', '6069093'), + (243, 2037, 'attending', '2023-04-23 21:13:28', '2025-12-17 19:47:01', 'O4Zobld1', '6071943'), + (243, 2039, 'maybe', '2023-04-23 21:14:03', '2025-12-17 19:47:01', 'O4Zobld1', '6072398'), + (243, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'O4Zobld1', '6072528'), + (243, 2043, 'maybe', '2023-04-26 02:41:39', '2025-12-17 19:47:01', 'O4Zobld1', '6073023'), + (243, 2045, 'maybe', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'O4Zobld1', '6075556'), + (243, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'O4Zobld1', '6079840'), + (243, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'O4Zobld1', '6083398'), + (243, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'O4Zobld1', '6093504'), + (243, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'O4Zobld1', '6097414'), + (243, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'O4Zobld1', '6097442'), + (243, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'O4Zobld1', '6097684'), + (243, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'O4Zobld1', '6098762'), + (243, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'O4Zobld1', '6101362'), + (243, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'O4Zobld1', '6107314'), + (244, 1116, 'attending', '2021-11-29 22:33:07', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4642994'), + (244, 1122, 'not_attending', '2021-11-25 06:39:59', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4644023'), + (244, 1126, 'attending', '2021-12-12 00:48:35', '2025-12-17 19:47:38', 'Ae7wW0Wd', '4645687'), + (244, 1129, 'maybe', '2021-11-26 19:07:31', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4645705'), + (244, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4668385'), + (244, 1135, 'attending', '2021-11-25 19:45:25', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4670469'), + (244, 1139, 'attending', '2021-11-29 00:05:54', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4675604'), + (244, 1140, 'attending', '2021-11-30 20:37:46', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4679701'), + (244, 1143, 'attending', '2021-12-01 21:50:03', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4683667'), + (244, 1146, 'attending', '2021-12-08 00:52:41', '2025-12-17 19:47:38', 'Ae7wW0Wd', '4692841'), + (244, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Ae7wW0Wd', '4694407'), + (244, 1157, 'attending', '2021-12-19 14:36:22', '2025-12-17 19:47:31', 'Ae7wW0Wd', '4715208'), + (244, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4736497'), + (244, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4736499'), + (244, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4736500'), + (244, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Ae7wW0Wd', '4736503'), + (244, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Ae7wW0Wd', '4736504'), + (244, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Ae7wW0Wd', '4746789'), + (244, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4753929'), + (244, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Ae7wW0Wd', '5038850'), + (244, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Ae7wW0Wd', '5045826'), + (244, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Ae7wW0Wd', '5132533'), + (244, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Ae7wW0Wd', '5186582'), + (244, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Ae7wW0Wd', '5186583'), + (244, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Ae7wW0Wd', '5186585'), + (244, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Ae7wW0Wd', '5190437'), + (244, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Ae7wW0Wd', '5215989'), + (244, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ae7wW0Wd', '6045684'), + (245, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dKwYOlBd', '7324075'), + (245, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dKwYOlBd', '7324078'), + (245, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dKwYOlBd', '7324082'), + (245, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dKwYOlBd', '7331457'), + (245, 2734, 'attending', '2024-07-05 22:39:31', '2025-12-17 19:46:29', 'dKwYOlBd', '7339440'), + (245, 2748, 'attending', '2024-07-05 22:35:52', '2025-12-17 19:46:29', 'dKwYOlBd', '7353759'), + (245, 2750, 'attending', '2024-07-10 09:56:03', '2025-12-17 19:46:30', 'dKwYOlBd', '7355526'), + (245, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dKwYOlBd', '7363643'), + (245, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dKwYOlBd', '7368606'), + (245, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dKwYOlBd', '7397462'), + (245, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dKwYOlBd', '7424275'), + (245, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dKwYOlBd', '7424276'), + (245, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dKwYOlBd', '7432751'), + (245, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dKwYOlBd', '7432752'), + (245, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dKwYOlBd', '7432753'), + (245, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dKwYOlBd', '7432754'), + (245, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dKwYOlBd', '7432755'), + (245, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dKwYOlBd', '7432756'), + (245, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dKwYOlBd', '7432758'), + (245, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dKwYOlBd', '7432759'), + (245, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dKwYOlBd', '7433834'), + (245, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dKwYOlBd', '7470197'), + (245, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dKwYOlBd', '7685613'), + (245, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dKwYOlBd', '7688194'), + (245, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dKwYOlBd', '7688196'), + (245, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dKwYOlBd', '7688289'), + (246, 2516, 'maybe', '2024-05-02 13:47:26', '2025-12-17 19:46:35', 'dxObDGD4', '7074356'), + (246, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxObDGD4', '7074364'), + (246, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dxObDGD4', '7114956'), + (246, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxObDGD4', '7114957'), + (246, 2576, 'maybe', '2024-04-23 19:30:05', '2025-12-17 19:46:34', 'dxObDGD4', '7164538'), + (246, 2585, 'maybe', '2024-04-22 20:00:37', '2025-12-17 19:46:34', 'dxObDGD4', '7175828'), + (246, 2591, 'attending', '2024-04-19 21:43:28', '2025-12-17 19:46:34', 'dxObDGD4', '7180957'), + (246, 2593, 'attending', '2024-04-19 01:42:06', '2025-12-17 19:46:34', 'dxObDGD4', '7181003'), + (246, 2597, 'attending', '2024-04-23 19:29:58', '2025-12-17 19:46:34', 'dxObDGD4', '7186726'), + (246, 2598, 'attending', '2024-04-22 22:06:26', '2025-12-17 19:46:34', 'dxObDGD4', '7186731'), + (246, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxObDGD4', '7220467'), + (246, 2603, 'attending', '2024-05-15 01:49:36', '2025-12-17 19:46:35', 'dxObDGD4', '7225669'), + (246, 2604, 'maybe', '2024-05-28 18:29:15', '2025-12-17 19:46:36', 'dxObDGD4', '7225670'), + (246, 2607, 'attending', '2024-04-30 00:26:15', '2025-12-17 19:46:35', 'dxObDGD4', '7240136'), + (246, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxObDGD4', '7240354'), + (246, 2611, 'attending', '2024-05-02 22:41:04', '2025-12-17 19:46:35', 'dxObDGD4', '7247642'), + (246, 2612, 'maybe', '2024-05-02 22:41:06', '2025-12-17 19:46:35', 'dxObDGD4', '7247643'), + (246, 2613, 'maybe', '2024-05-02 22:41:09', '2025-12-17 19:46:35', 'dxObDGD4', '7247644'), + (246, 2614, 'maybe', '2024-05-02 22:41:11', '2025-12-17 19:46:35', 'dxObDGD4', '7247645'), + (246, 2617, 'maybe', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxObDGD4', '7251633'), + (246, 2619, 'attending', '2024-05-09 17:34:09', '2025-12-17 19:46:35', 'dxObDGD4', '7252965'), + (246, 2624, 'not_attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', 'dxObDGD4', '7263301'), + (246, 2626, 'attending', '2024-05-15 01:50:39', '2025-12-17 19:46:35', 'dxObDGD4', '7264723'), + (246, 2627, 'attending', '2024-05-22 03:44:29', '2025-12-17 19:46:35', 'dxObDGD4', '7264724'), + (246, 2628, 'attending', '2024-05-31 14:30:45', '2025-12-17 19:46:36', 'dxObDGD4', '7264725'), + (246, 2629, 'attending', '2024-06-08 22:02:05', '2025-12-17 19:46:28', 'dxObDGD4', '7264726'), + (246, 2630, 'attending', '2024-05-15 01:50:28', '2025-12-17 19:46:35', 'dxObDGD4', '7264801'), + (246, 2650, 'maybe', '2024-05-28 18:28:27', '2025-12-17 19:46:36', 'dxObDGD4', '7288199'), + (246, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxObDGD4', '7302674'), + (246, 2662, 'attending', '2024-06-02 19:11:57', '2025-12-17 19:46:36', 'dxObDGD4', '7302815'), + (246, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxObDGD4', '7324073'), + (246, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxObDGD4', '7324074'), + (246, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxObDGD4', '7324075'), + (246, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxObDGD4', '7324078'), + (246, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxObDGD4', '7324082'), + (246, 2700, 'maybe', '2024-06-13 23:35:26', '2025-12-17 19:46:28', 'dxObDGD4', '7324388'), + (246, 2706, 'attending', '2024-06-19 18:45:48', '2025-12-17 19:46:28', 'dxObDGD4', '7324947'), + (246, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxObDGD4', '7331457'), + (246, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxObDGD4', '7363643'), + (246, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxObDGD4', '7368606'), + (246, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxObDGD4', '7397462'), + (246, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxObDGD4', '7424275'), + (246, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxObDGD4', '7424276'), + (246, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxObDGD4', '7432751'), + (246, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxObDGD4', '7432752'), + (246, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxObDGD4', '7432753'), + (246, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxObDGD4', '7432754'), + (246, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxObDGD4', '7432755'), + (246, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxObDGD4', '7432756'), + (246, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxObDGD4', '7432758'), + (246, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxObDGD4', '7432759'), + (246, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxObDGD4', '7433834'), + (246, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxObDGD4', '7470197'), + (246, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxObDGD4', '7685613'), + (246, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxObDGD4', '7688194'), + (246, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxObDGD4', '7688196'), + (246, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxObDGD4', '7688289'), + (247, 1176, 'maybe', '2022-02-03 08:02:02', '2025-12-17 19:47:32', 'ydwM1N5A', '4736498'), + (247, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ydwM1N5A', '4736499'), + (247, 1178, 'attending', '2022-01-29 21:23:13', '2025-12-17 19:47:32', 'ydwM1N5A', '4736500'), + (247, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ydwM1N5A', '4736503'), + (247, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ydwM1N5A', '4736504'), + (247, 1202, 'attending', '2022-01-25 08:23:57', '2025-12-17 19:47:32', 'ydwM1N5A', '4769423'), + (247, 1211, 'attending', '2022-01-25 00:27:37', '2025-12-17 19:47:32', 'ydwM1N5A', '4780754'), + (247, 1216, 'attending', '2022-01-25 08:23:39', '2025-12-17 19:47:32', 'ydwM1N5A', '4781137'), + (247, 1217, 'not_attending', '2022-01-29 23:22:42', '2025-12-17 19:47:32', 'ydwM1N5A', '4781139'), + (247, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ydwM1N5A', '5038850'), + (247, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ydwM1N5A', '5045826'), + (247, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ydwM1N5A', '5132533'), + (247, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ydwM1N5A', '5186582'), + (247, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ydwM1N5A', '5186583'), + (247, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ydwM1N5A', '5186585'), + (247, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ydwM1N5A', '5190437'), + (247, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ydwM1N5A', '5215989'), + (247, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwM1N5A', '6045684'), + (248, 1181, 'attending', '2022-03-05 22:10:36', '2025-12-17 19:47:33', 'ArQxe8wm', '4736503'), + (248, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ArQxe8wm', '4736504'), + (248, 1212, 'maybe', '2022-02-21 23:54:22', '2025-12-17 19:47:32', 'ArQxe8wm', '4780759'), + (248, 1215, 'not_attending', '2022-02-26 01:47:54', '2025-12-17 19:47:33', 'ArQxe8wm', '4780763'), + (248, 1246, 'attending', '2022-03-03 13:01:00', '2025-12-17 19:47:33', 'ArQxe8wm', '5064727'), + (248, 1249, 'attending', '2022-03-07 23:06:49', '2025-12-17 19:47:33', 'ArQxe8wm', '5068530'), + (248, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ArQxe8wm', '5132533'), + (248, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ArQxe8wm', '5186582'), + (248, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ArQxe8wm', '5186583'), + (248, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ArQxe8wm', '5186585'), + (248, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ArQxe8wm', '5190437'), + (248, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ArQxe8wm', '5195095'), + (248, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ArQxe8wm', '5215989'), + (248, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ArQxe8wm', '5223686'), + (248, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ArQxe8wm', '5227432'), + (248, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ArQxe8wm', '5247467'), + (248, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ArQxe8wm', '5260800'), + (248, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ArQxe8wm', '5269930'), + (248, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ArQxe8wm', '5271448'), + (248, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'ArQxe8wm', '5271449'), + (248, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ArQxe8wm', '5276469'), + (248, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ArQxe8wm', '5278159'), + (248, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ArQxe8wm', '5363695'), + (248, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQxe8wm', '5365960'), + (248, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQxe8wm', '5368973'), + (248, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ArQxe8wm', '5378247'), + (248, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ArQxe8wm', '5389605'), + (248, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ArQxe8wm', '5397265'), + (248, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ArQxe8wm', '5403967'), + (248, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ArQxe8wm', '5404786'), + (248, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ArQxe8wm', '5405203'), + (248, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'ArQxe8wm', '5408794'), + (248, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ArQxe8wm', '5411699'), + (248, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ArQxe8wm', '5412550'), + (248, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ArQxe8wm', '5415046'), + (248, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ArQxe8wm', '5422086'), + (248, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ArQxe8wm', '5422406'), + (248, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ArQxe8wm', '5424565'), + (248, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQxe8wm', '5426882'), + (248, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ArQxe8wm', '5427083'), + (248, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ArQxe8wm', '5441125'), + (248, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ArQxe8wm', '5441126'), + (248, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ArQxe8wm', '5441128'), + (248, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ArQxe8wm', '5441131'), + (248, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ArQxe8wm', '5441132'), + (248, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQxe8wm', '5446643'), + (248, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQxe8wm', '5453325'), + (248, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQxe8wm', '5454516'), + (248, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQxe8wm', '5454605'), + (248, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQxe8wm', '5455037'), + (248, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQxe8wm', '5461278'), + (248, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQxe8wm', '5469480'), + (248, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQxe8wm', '5471073'), + (248, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ArQxe8wm', '5474663'), + (248, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQxe8wm', '5482022'), + (248, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQxe8wm', '5482793'), + (248, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQxe8wm', '5488912'), + (248, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQxe8wm', '5492192'), + (248, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQxe8wm', '5493139'), + (248, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQxe8wm', '5493200'), + (248, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQxe8wm', '5502188'), + (248, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ArQxe8wm', '5505059'), + (248, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ArQxe8wm', '5509055'), + (248, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ArQxe8wm', '5512862'), + (248, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ArQxe8wm', '5513985'), + (248, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ArQxe8wm', '5519981'), + (248, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ArQxe8wm', '5522550'), + (248, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ArQxe8wm', '5534683'), + (248, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ArQxe8wm', '5546619'), + (248, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ArQxe8wm', '5555245'), + (248, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ArQxe8wm', '5557747'), + (248, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArQxe8wm', '6045684'), + (249, 401, 'attending', '2021-05-11 19:42:16', '2025-12-17 19:47:46', 'xd9BzWZm', '3236456'), + (249, 646, 'not_attending', '2021-05-15 11:18:28', '2025-12-17 19:47:46', 'xd9BzWZm', '3539921'), + (249, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xd9BzWZm', '3539922'), + (249, 648, 'attending', '2021-05-28 22:53:21', '2025-12-17 19:47:47', 'xd9BzWZm', '3539923'), + (249, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xd9BzWZm', '3974109'), + (249, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xd9BzWZm', '3975311'), + (249, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xd9BzWZm', '3975312'), + (249, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xd9BzWZm', '3994992'), + (249, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd9BzWZm', '4014338'), + (249, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xd9BzWZm', '4021848'), + (249, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd9BzWZm', '4136744'), + (249, 870, 'not_attending', '2021-07-03 18:50:30', '2025-12-17 19:47:39', 'xd9BzWZm', '4136937'), + (249, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd9BzWZm', '4136938'), + (249, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd9BzWZm', '4136947'), + (249, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'xd9BzWZm', '4210314'), + (249, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd9BzWZm', '4225444'), + (249, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd9BzWZm', '4239259'), + (249, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'xd9BzWZm', '4240316'), + (249, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'xd9BzWZm', '4240317'), + (249, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'xd9BzWZm', '4240318'), + (249, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'xd9BzWZm', '4240320'), + (249, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd9BzWZm', '4250163'), + (249, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'xd9BzWZm', '4275957'), + (249, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xd9BzWZm', '4277819'), + (249, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xd9BzWZm', '4301723'), + (249, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xd9BzWZm', '4302093'), + (249, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xd9BzWZm', '4304151'), + (249, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'xd9BzWZm', '4345519'), + (249, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xd9BzWZm', '4358025'), + (249, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'xd9BzWZm', '4366186'), + (249, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'xd9BzWZm', '4366187'), + (249, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9BzWZm', '6045684'), + (250, 423, 'attending', '2020-11-06 00:32:36', '2025-12-17 19:47:53', '6AXqYJY4', '3245296'), + (250, 440, 'attending', '2020-11-08 00:19:29', '2025-12-17 19:47:53', '6AXqYJY4', '3256168'), + (250, 441, 'attending', '2020-11-08 21:01:37', '2025-12-17 19:47:54', '6AXqYJY4', '3256169'), + (250, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', '6AXqYJY4', '3266138'), + (250, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '6AXqYJY4', '3281467'), + (250, 462, 'attending', '2020-11-08 05:46:12', '2025-12-17 19:47:53', '6AXqYJY4', '3281470'), + (250, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '6AXqYJY4', '3281829'), + (250, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '6AXqYJY4', '3285413'), + (250, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '6AXqYJY4', '3285414'), + (250, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '6AXqYJY4', '3297764'), + (250, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '6AXqYJY4', '3313856'), + (250, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '6AXqYJY4', '3314909'), + (250, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '6AXqYJY4', '3314964'), + (250, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '6AXqYJY4', '3323365'), + (250, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '6AXqYJY4', '3329383'), + (250, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '6AXqYJY4', '3351539'), + (250, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '6AXqYJY4', '3386848'), + (250, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '6AXqYJY4', '3389527'), + (250, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '6AXqYJY4', '3396499'), + (250, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '6AXqYJY4', '3403650'), + (250, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '6AXqYJY4', '3406988'), + (250, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '6AXqYJY4', '3416576'), + (250, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '6AXqYJY4', '3418925'), + (250, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', '6AXqYJY4', '3426074'), + (250, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', '6AXqYJY4', '3430267'), + (250, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '6AXqYJY4', '3470305'), + (250, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '6AXqYJY4', '3470991'), + (250, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '6AXqYJY4', '3517815'), + (250, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '6AXqYJY4', '3517816'), + (250, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '6AXqYJY4', '3523941'), + (250, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '6AXqYJY4', '3533850'), + (250, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '6AXqYJY4', '3536632'), + (250, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '6AXqYJY4', '3536656'), + (250, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '6AXqYJY4', '3539916'), + (250, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '6AXqYJY4', '3539917'), + (250, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '6AXqYJY4', '3539918'), + (250, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '6AXqYJY4', '3539919'), + (250, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '6AXqYJY4', '3539920'), + (250, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '6AXqYJY4', '3539921'), + (250, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '6AXqYJY4', '3539922'), + (250, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '6AXqYJY4', '3539923'), + (250, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '6AXqYJY4', '3539927'), + (250, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '6AXqYJY4', '3582734'), + (250, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '6AXqYJY4', '3583262'), + (250, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXqYJY4', '3619523'), + (250, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '6AXqYJY4', '3661369'), + (250, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXqYJY4', '3674262'), + (250, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXqYJY4', '3677402'), + (250, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXqYJY4', '3730212'), + (250, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXqYJY4', '3793156'), + (250, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXqYJY4', '3974109'), + (250, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXqYJY4', '3975311'), + (250, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXqYJY4', '3975312'), + (250, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXqYJY4', '3994992'), + (250, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXqYJY4', '4014338'), + (250, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXqYJY4', '4021848'), + (250, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXqYJY4', '4136744'), + (250, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXqYJY4', '4136937'), + (250, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXqYJY4', '4136938'), + (250, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXqYJY4', '4136947'), + (250, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXqYJY4', '4210314'), + (250, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXqYJY4', '4225444'), + (250, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXqYJY4', '4239259'), + (250, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXqYJY4', '4240316'), + (250, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXqYJY4', '4240317'), + (250, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXqYJY4', '4240318'), + (250, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXqYJY4', '4240320'), + (250, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXqYJY4', '4250163'), + (250, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXqYJY4', '4275957'), + (250, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXqYJY4', '4277819'), + (250, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXqYJY4', '4301723'), + (250, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXqYJY4', '4302093'), + (250, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXqYJY4', '4304151'), + (250, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXqYJY4', '4356801'), + (250, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXqYJY4', '4366186'), + (250, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXqYJY4', '4366187'), + (250, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AXqYJY4', '4420735'), + (250, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AXqYJY4', '4420738'), + (250, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AXqYJY4', '4420739'), + (250, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AXqYJY4', '4420741'), + (250, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXqYJY4', '4420744'), + (250, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXqYJY4', '4420747'), + (250, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AXqYJY4', '4420748'), + (250, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXqYJY4', '4420749'), + (250, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXqYJY4', '4461883'), + (250, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXqYJY4', '4508342'), + (250, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXqYJY4', '4568602'), + (250, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AXqYJY4', '4572153'), + (250, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AXqYJY4', '4585962'), + (250, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '6AXqYJY4', '4596356'), + (250, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AXqYJY4', '4598860'), + (250, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AXqYJY4', '4598861'), + (250, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '6AXqYJY4', '4602797'), + (250, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '6AXqYJY4', '4637896'), + (250, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AXqYJY4', '4642994'), + (250, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AXqYJY4', '4642995'), + (250, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AXqYJY4', '4642996'), + (250, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AXqYJY4', '4642997'), + (250, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '6AXqYJY4', '4645687'), + (250, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '6AXqYJY4', '4645698'), + (250, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '6AXqYJY4', '4645704'), + (250, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '6AXqYJY4', '4645705'), + (250, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '6AXqYJY4', '4668385'), + (250, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '6AXqYJY4', '4694407'), + (250, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '6AXqYJY4', '4736497'), + (250, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '6AXqYJY4', '4736499'), + (250, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '6AXqYJY4', '4736500'), + (250, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '6AXqYJY4', '4736503'), + (250, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '6AXqYJY4', '4736504'), + (250, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '6AXqYJY4', '4746789'), + (250, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '6AXqYJY4', '4753929'), + (250, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '6AXqYJY4', '5038850'), + (250, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '6AXqYJY4', '5045826'), + (250, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '6AXqYJY4', '5132533'), + (250, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '6AXqYJY4', '5186582'), + (250, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '6AXqYJY4', '5186583'), + (250, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '6AXqYJY4', '5186585'), + (250, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '6AXqYJY4', '5190437'), + (250, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '6AXqYJY4', '5195095'), + (250, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '6AXqYJY4', '5215989'), + (250, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '6AXqYJY4', '5223686'), + (250, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '6AXqYJY4', '5247467'), + (250, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '6AXqYJY4', '5260800'), + (250, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '6AXqYJY4', '5269930'), + (250, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '6AXqYJY4', '5271448'), + (250, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '6AXqYJY4', '5271449'), + (250, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '6AXqYJY4', '5278159'), + (250, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '6AXqYJY4', '5363695'), + (250, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '6AXqYJY4', '5365960'), + (250, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '6AXqYJY4', '5378247'), + (250, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '6AXqYJY4', '5389605'), + (250, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '6AXqYJY4', '5397265'), + (250, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '6AXqYJY4', '5404786'), + (250, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '6AXqYJY4', '5405203'), + (250, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '6AXqYJY4', '5412550'), + (250, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '6AXqYJY4', '5415046'), + (250, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '6AXqYJY4', '5422086'), + (250, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '6AXqYJY4', '5422406'), + (250, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '6AXqYJY4', '5424565'), + (250, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '6AXqYJY4', '5426882'), + (250, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '6AXqYJY4', '5441125'), + (250, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '6AXqYJY4', '5441126'), + (250, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '6AXqYJY4', '5441128'), + (250, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '6AXqYJY4', '5441131'), + (250, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '6AXqYJY4', '5441132'), + (250, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '6AXqYJY4', '5453325'), + (250, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '6AXqYJY4', '5454516'), + (250, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '6AXqYJY4', '5454605'), + (250, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '6AXqYJY4', '5455037'), + (250, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '6AXqYJY4', '5461278'), + (250, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '6AXqYJY4', '5469480'), + (250, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '6AXqYJY4', '5474663'), + (250, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '6AXqYJY4', '5482022'), + (250, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '6AXqYJY4', '5488912'), + (250, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '6AXqYJY4', '5492192'), + (250, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '6AXqYJY4', '5493139'), + (250, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '6AXqYJY4', '5493200'), + (250, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '6AXqYJY4', '5502188'), + (250, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '6AXqYJY4', '5505059'), + (250, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '6AXqYJY4', '5509055'), + (250, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '6AXqYJY4', '5512862'), + (250, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '6AXqYJY4', '5513985'), + (250, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '6AXqYJY4', '5519981'), + (250, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '6AXqYJY4', '5522550'), + (250, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '6AXqYJY4', '5534683'), + (250, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '6AXqYJY4', '5537735'), + (250, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '6AXqYJY4', '5540859'), + (250, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '6AXqYJY4', '5546619'), + (250, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '6AXqYJY4', '5557747'), + (250, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '6AXqYJY4', '5560255'), + (250, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '6AXqYJY4', '5562906'), + (250, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '6AXqYJY4', '5600604'), + (250, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '6AXqYJY4', '5605544'), + (250, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '6AXqYJY4', '5630960'), + (250, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '6AXqYJY4', '5630961'), + (250, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '6AXqYJY4', '5630962'), + (250, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '6AXqYJY4', '5630966'), + (250, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '6AXqYJY4', '5630967'), + (250, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '6AXqYJY4', '5630968'), + (250, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '6AXqYJY4', '5635406'), + (250, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '6AXqYJY4', '5638765'), + (250, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '6AXqYJY4', '5640097'), + (250, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '6AXqYJY4', '5640843'), + (250, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '6AXqYJY4', '5641521'), + (250, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '6AXqYJY4', '5642818'), + (250, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '6AXqYJY4', '5652395'), + (250, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '6AXqYJY4', '5670445'), + (250, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '6AXqYJY4', '5671637'), + (250, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '6AXqYJY4', '5672329'), + (250, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '6AXqYJY4', '5674057'), + (250, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '6AXqYJY4', '5674060'), + (250, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '6AXqYJY4', '5677461'), + (250, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '6AXqYJY4', '5698046'), + (250, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '6AXqYJY4', '5699760'), + (250, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '6AXqYJY4', '5741601'), + (250, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '6AXqYJY4', '5763458'), + (250, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '6AXqYJY4', '5774172'), + (250, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '6AXqYJY4', '5818247'), + (250, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '6AXqYJY4', '5819471'), + (250, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '6AXqYJY4', '5827739'), + (250, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '6AXqYJY4', '5844306'), + (250, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '6AXqYJY4', '5850159'), + (250, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '6AXqYJY4', '5858999'), + (250, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '6AXqYJY4', '5871984'), + (250, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '6AXqYJY4', '5876354'), + (250, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '6AXqYJY4', '5880939'), + (250, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '6AXqYJY4', '5880940'), + (250, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '6AXqYJY4', '5880942'), + (250, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '6AXqYJY4', '5880943'), + (250, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '6AXqYJY4', '5887890'), + (250, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '6AXqYJY4', '5888598'), + (250, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '6AXqYJY4', '5893260'), + (250, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '6AXqYJY4', '5899826'), + (250, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '6AXqYJY4', '5900199'), + (250, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '6AXqYJY4', '5900200'), + (250, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '6AXqYJY4', '5900202'), + (250, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '6AXqYJY4', '5900203'), + (250, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '6AXqYJY4', '5901108'), + (250, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '6AXqYJY4', '5901126'), + (250, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '6AXqYJY4', '5901606'), + (250, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '6AXqYJY4', '5909655'), + (250, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '6AXqYJY4', '5910522'), + (250, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '6AXqYJY4', '5910526'), + (250, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '6AXqYJY4', '5910528'), + (250, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '6AXqYJY4', '5916219'), + (250, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '6AXqYJY4', '5936234'), + (250, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '6AXqYJY4', '5958351'), + (250, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '6AXqYJY4', '5959751'), + (250, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '6AXqYJY4', '5959755'), + (250, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '6AXqYJY4', '5960055'), + (250, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '6AXqYJY4', '5961684'), + (250, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '6AXqYJY4', '5962132'), + (250, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '6AXqYJY4', '5962133'), + (250, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '6AXqYJY4', '5962134'), + (250, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '6AXqYJY4', '5962317'), + (250, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '6AXqYJY4', '5962318'), + (250, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '6AXqYJY4', '5965933'), + (250, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '6AXqYJY4', '5967014'), + (250, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '6AXqYJY4', '5972815'), + (250, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '6AXqYJY4', '5974016'), + (250, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '6AXqYJY4', '5981515'), + (250, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '6AXqYJY4', '5993516'), + (250, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '6AXqYJY4', '5998939'), + (250, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '6AXqYJY4', '6028191'), + (250, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '6AXqYJY4', '6040066'), + (250, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '6AXqYJY4', '6042717'), + (250, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '6AXqYJY4', '6044838'), + (250, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '6AXqYJY4', '6044839'), + (250, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXqYJY4', '6045684'), + (250, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '6AXqYJY4', '6050104'), + (250, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '6AXqYJY4', '6053195'), + (250, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '6AXqYJY4', '6053198'), + (250, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '6AXqYJY4', '6056085'), + (250, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '6AXqYJY4', '6056916'), + (250, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '6AXqYJY4', '6059290'), + (250, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '6AXqYJY4', '6060328'), + (250, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '6AXqYJY4', '6061037'), + (250, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '6AXqYJY4', '6061039'), + (250, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '6AXqYJY4', '6067245'), + (250, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '6AXqYJY4', '6068094'), + (250, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '6AXqYJY4', '6068252'), + (250, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '6AXqYJY4', '6068253'), + (250, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '6AXqYJY4', '6068254'), + (250, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '6AXqYJY4', '6068280'), + (250, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '6AXqYJY4', '6069093'), + (250, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '6AXqYJY4', '6072528'), + (250, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '6AXqYJY4', '6079840'), + (250, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '6AXqYJY4', '6083398'), + (250, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '6AXqYJY4', '6093504'), + (250, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '6AXqYJY4', '6097414'), + (250, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '6AXqYJY4', '6097442'), + (250, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '6AXqYJY4', '6097684'), + (250, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '6AXqYJY4', '6098762'), + (250, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '6AXqYJY4', '6101361'), + (250, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '6AXqYJY4', '6101362'), + (250, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '6AXqYJY4', '6107314'), + (250, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '6AXqYJY4', '6120034'), + (250, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '6AXqYJY4', '6136733'), + (250, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '6AXqYJY4', '6137989'), + (250, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '6AXqYJY4', '6150864'), + (250, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '6AXqYJY4', '6155491'), + (250, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '6AXqYJY4', '6164417'), + (250, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '6AXqYJY4', '6166388'), + (250, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '6AXqYJY4', '6176439'), + (250, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '6AXqYJY4', '6182410'), + (250, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '6AXqYJY4', '6185812'), + (250, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '6AXqYJY4', '6187651'), + (250, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '6AXqYJY4', '6187963'), + (250, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '6AXqYJY4', '6187964'), + (250, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '6AXqYJY4', '6187966'), + (250, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '6AXqYJY4', '6187967'), + (250, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '6AXqYJY4', '6187969'), + (250, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '6AXqYJY4', '6334878'), + (250, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '6AXqYJY4', '6337236'), + (250, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '6AXqYJY4', '6337970'), + (250, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '6AXqYJY4', '6338308'), + (250, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '6AXqYJY4', '6341710'), + (250, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '6AXqYJY4', '6342044'), + (250, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '6AXqYJY4', '6342298'), + (250, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '6AXqYJY4', '6343294'), + (250, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '6AXqYJY4', '6347034'), + (250, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '6AXqYJY4', '6347056'), + (250, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '6AXqYJY4', '6353830'), + (250, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '6AXqYJY4', '6353831'), + (250, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '6AXqYJY4', '6357867'), + (250, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '6AXqYJY4', '6358652'), + (250, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '6AXqYJY4', '6361709'), + (250, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '6AXqYJY4', '6361710'), + (250, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '6AXqYJY4', '6361711'), + (250, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '6AXqYJY4', '6361712'), + (250, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '6AXqYJY4', '6361713'), + (250, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '6AXqYJY4', '6382573'), + (250, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '6AXqYJY4', '6388604'), + (250, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '6AXqYJY4', '6394629'), + (250, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '6AXqYJY4', '6394631'), + (250, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '6AXqYJY4', '6440863'), + (250, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '6AXqYJY4', '6445440'), + (250, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '6AXqYJY4', '6453951'), + (250, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '6AXqYJY4', '6461696'), + (250, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '6AXqYJY4', '6462129'), + (250, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '6AXqYJY4', '6463218'), + (250, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '6AXqYJY4', '6472181'), + (250, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '6AXqYJY4', '6482693'), + (250, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '6AXqYJY4', '6484200'), + (250, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '6AXqYJY4', '6484680'), + (250, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '6AXqYJY4', '6507741'), + (250, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '6AXqYJY4', '6514659'), + (250, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '6AXqYJY4', '6514660'), + (250, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '6AXqYJY4', '6519103'), + (250, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '6AXqYJY4', '6535681'), + (250, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '6AXqYJY4', '6584747'), + (250, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '6AXqYJY4', '6587097'), + (250, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '6AXqYJY4', '6609022'), + (250, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '6AXqYJY4', '6632757'), + (250, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '6AXqYJY4', '6644187'), + (250, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '6AXqYJY4', '6648951'), + (250, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '6AXqYJY4', '6648952'), + (250, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '6AXqYJY4', '6655401'), + (250, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '6AXqYJY4', '6661585'), + (250, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '6AXqYJY4', '6661588'), + (250, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '6AXqYJY4', '6661589'), + (250, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '6AXqYJY4', '6699906'), + (250, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '6AXqYJY4', '6699913'), + (250, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '6AXqYJY4', '6701109'), + (250, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '6AXqYJY4', '6705219'), + (250, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '6AXqYJY4', '6710153'), + (250, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '6AXqYJY4', '6711552'), + (250, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '6AXqYJY4', '6711553'), + (250, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '6AXqYJY4', '6722688'), + (250, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '6AXqYJY4', '6730620'), + (250, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '6AXqYJY4', '6740364'), + (250, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '6AXqYJY4', '6743829'), + (250, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '6AXqYJY4', '7030380'), + (250, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '6AXqYJY4', '7033677'), + (250, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '6AXqYJY4', '7044715'), + (250, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '6AXqYJY4', '7050318'), + (250, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '6AXqYJY4', '7050319'), + (250, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '6AXqYJY4', '7050322'), + (250, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '6AXqYJY4', '7057804'), + (250, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '6AXqYJY4', '7072824'), + (250, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '6AXqYJY4', '7074348'), + (250, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '6AXqYJY4', '7074364'), + (250, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '6AXqYJY4', '7089267'), + (250, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '6AXqYJY4', '7098747'), + (250, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '6AXqYJY4', '7113468'), + (250, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '6AXqYJY4', '7114856'), + (250, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '6AXqYJY4', '7114951'), + (250, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '6AXqYJY4', '7114955'), + (250, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '6AXqYJY4', '7114956'), + (250, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '6AXqYJY4', '7114957'), + (250, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '6AXqYJY4', '7159484'), + (250, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '6AXqYJY4', '7178446'), + (250, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '6AXqYJY4', '7220467'), + (250, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '6AXqYJY4', '7240354'), + (250, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '6AXqYJY4', '7251633'), + (250, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '6AXqYJY4', '7324073'), + (250, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '6AXqYJY4', '7324074'), + (250, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '6AXqYJY4', '7324075'), + (250, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '6AXqYJY4', '7324078'), + (250, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '6AXqYJY4', '7324082'), + (250, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '6AXqYJY4', '7331457'), + (250, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '6AXqYJY4', '7363643'), + (250, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '6AXqYJY4', '7368606'), + (250, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '6AXqYJY4', '7397462'), + (250, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '6AXqYJY4', '7424275'), + (250, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '6AXqYJY4', '7432751'), + (250, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '6AXqYJY4', '7432752'), + (250, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '6AXqYJY4', '7432753'), + (250, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '6AXqYJY4', '7432754'), + (250, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '6AXqYJY4', '7432755'), + (250, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '6AXqYJY4', '7432756'), + (250, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '6AXqYJY4', '7432758'), + (250, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '6AXqYJY4', '7432759'), + (250, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '6AXqYJY4', '7433834'), + (250, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '6AXqYJY4', '7470197'), + (250, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '6AXqYJY4', '7685613'), + (250, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '6AXqYJY4', '7688194'), + (250, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '6AXqYJY4', '7688196'), + (250, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '6AXqYJY4', '7688289'), + (250, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '6AXqYJY4', '7692763'), + (250, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '6AXqYJY4', '7697552'), + (250, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '6AXqYJY4', '7699878'), + (250, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '6AXqYJY4', '7704043'), + (250, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '6AXqYJY4', '7712467'), + (250, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '6AXqYJY4', '7713585'), + (250, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '6AXqYJY4', '7713586'), + (250, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '6AXqYJY4', '7738518'), + (250, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '6AXqYJY4', '7750636'), + (250, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '6AXqYJY4', '7796540'), + (250, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '6AXqYJY4', '7796541'), + (250, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '6AXqYJY4', '7796542'), + (250, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '6AXqYJY4', '7825913'), + (250, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '6AXqYJY4', '7826209'), + (250, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '6AXqYJY4', '7834742'), + (250, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '6AXqYJY4', '7842108'), + (250, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '6AXqYJY4', '7842902'), + (250, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '6AXqYJY4', '7842903'), + (250, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '6AXqYJY4', '7842904'), + (250, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '6AXqYJY4', '7842905'), + (250, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '6AXqYJY4', '7855719'), + (250, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '6AXqYJY4', '7860683'), + (250, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '6AXqYJY4', '7860684'), + (250, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '6AXqYJY4', '7866095'), + (250, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '6AXqYJY4', '7869170'), + (250, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '6AXqYJY4', '7869188'), + (250, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '6AXqYJY4', '7869201'), + (250, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '6AXqYJY4', '7877465'), + (250, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '6AXqYJY4', '7888250'), + (250, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '6AXqYJY4', '7904777'), + (250, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '6AXqYJY4', '8349164'), + (250, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '6AXqYJY4', '8349545'), + (250, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '6AXqYJY4', '8368028'), + (250, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '6AXqYJY4', '8368029'), + (250, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '6AXqYJY4', '8388462'), + (250, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '6AXqYJY4', '8400273'), + (250, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '6AXqYJY4', '8400275'), + (250, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '6AXqYJY4', '8400276'), + (250, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '6AXqYJY4', '8404977'), + (250, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '6AXqYJY4', '8430783'), + (250, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '6AXqYJY4', '8430784'), + (250, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '6AXqYJY4', '8430799'), + (250, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '6AXqYJY4', '8430800'), + (250, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '6AXqYJY4', '8430801'), + (250, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '6AXqYJY4', '8438709'), + (250, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '6AXqYJY4', '8457738'), + (250, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '6AXqYJY4', '8459566'), + (250, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '6AXqYJY4', '8459567'), + (250, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '6AXqYJY4', '8461032'), + (250, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '6AXqYJY4', '8477877'), + (250, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '6AXqYJY4', '8485688'), + (250, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '6AXqYJY4', '8490587'), + (250, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '6AXqYJY4', '8493552'), + (250, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '6AXqYJY4', '8493553'), + (250, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '6AXqYJY4', '8493554'), + (250, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '6AXqYJY4', '8493555'), + (250, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '6AXqYJY4', '8493556'), + (250, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '6AXqYJY4', '8493557'), + (250, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '6AXqYJY4', '8493558'), + (250, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '6AXqYJY4', '8493559'), + (250, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '6AXqYJY4', '8493560'), + (250, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '6AXqYJY4', '8493561'), + (250, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '6AXqYJY4', '8493572'), + (250, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '6AXqYJY4', '8540725'), + (250, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '6AXqYJY4', '8555421'), + (251, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3ROYLe4', '6045684'), + (252, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40J3LKm', '6045684'), + (253, 260, 'attending', '2021-06-13 18:48:03', '2025-12-17 19:47:47', 'ndaVPZKm', '3149491'), + (253, 743, 'attending', '2021-06-20 04:23:26', '2025-12-17 19:47:38', 'ndaVPZKm', '3680623'), + (253, 823, 'attending', '2021-06-16 03:47:48', '2025-12-17 19:47:48', 'ndaVPZKm', '3974109'), + (253, 844, 'not_attending', '2021-06-14 18:34:52', '2025-12-17 19:47:38', 'ndaVPZKm', '4014338'), + (253, 867, 'attending', '2021-06-20 03:44:54', '2025-12-17 19:47:38', 'ndaVPZKm', '4021848'), + (253, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ndaVPZKm', '4136744'), + (253, 870, 'not_attending', '2021-07-01 14:25:39', '2025-12-17 19:47:39', 'ndaVPZKm', '4136937'), + (253, 871, 'attending', '2021-07-05 14:19:01', '2025-12-17 19:47:39', 'ndaVPZKm', '4136938'), + (253, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndaVPZKm', '4136947'), + (253, 874, 'attending', '2021-06-19 18:08:40', '2025-12-17 19:47:38', 'ndaVPZKm', '4139815'), + (253, 875, 'attending', '2021-06-27 02:42:24', '2025-12-17 19:47:38', 'ndaVPZKm', '4139816'), + (253, 879, 'attending', '2021-06-28 22:17:00', '2025-12-17 19:47:38', 'ndaVPZKm', '4147806'), + (253, 880, 'attending', '2021-06-18 13:43:11', '2025-12-17 19:47:48', 'ndaVPZKm', '4205383'), + (253, 883, 'not_attending', '2021-06-22 11:47:11', '2025-12-17 19:47:38', 'ndaVPZKm', '4209121'), + (253, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndaVPZKm', '4210314'), + (253, 885, 'not_attending', '2021-06-27 20:17:41', '2025-12-17 19:47:38', 'ndaVPZKm', '4222370'), + (253, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndaVPZKm', '4225444'), + (253, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndaVPZKm', '4239259'), + (253, 900, 'not_attending', '2021-07-24 16:58:22', '2025-12-17 19:47:40', 'ndaVPZKm', '4240316'), + (253, 901, 'attending', '2021-07-30 02:24:09', '2025-12-17 19:47:40', 'ndaVPZKm', '4240317'), + (253, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndaVPZKm', '4240318'), + (253, 903, 'attending', '2021-08-10 20:10:41', '2025-12-17 19:47:42', 'ndaVPZKm', '4240320'), + (253, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndaVPZKm', '4250163'), + (253, 909, 'attending', '2021-07-10 19:50:27', '2025-12-17 19:47:39', 'ndaVPZKm', '4258187'), + (253, 910, 'not_attending', '2021-07-17 21:05:13', '2025-12-17 19:47:39', 'ndaVPZKm', '4258189'), + (253, 916, 'not_attending', '2021-07-22 03:58:54', '2025-12-17 19:47:40', 'ndaVPZKm', '4273772'), + (253, 917, 'attending', '2021-07-12 12:38:24', '2025-12-17 19:47:39', 'ndaVPZKm', '4274481'), + (253, 918, 'attending', '2021-07-12 22:47:38', '2025-12-17 19:47:39', 'ndaVPZKm', '4274486'), + (253, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndaVPZKm', '4275957'), + (253, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndaVPZKm', '4277819'), + (253, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndaVPZKm', '4301723'), + (253, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ndaVPZKm', '4302093'), + (253, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndaVPZKm', '4304151'), + (253, 946, 'attending', '2021-08-01 02:36:53', '2025-12-17 19:47:40', 'ndaVPZKm', '4314835'), + (253, 955, 'attending', '2021-08-03 03:10:39', '2025-12-17 19:47:41', 'ndaVPZKm', '4331588'), + (253, 960, 'attending', '2021-08-11 18:26:01', '2025-12-17 19:47:41', 'ndaVPZKm', '4344519'), + (253, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndaVPZKm', '4345519'), + (253, 970, 'not_attending', '2021-08-13 22:52:56', '2025-12-17 19:47:42', 'ndaVPZKm', '4356798'), + (253, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndaVPZKm', '4356801'), + (253, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndaVPZKm', '4358025'), + (253, 973, 'attending', '2021-08-17 12:41:24', '2025-12-17 19:47:42', 'ndaVPZKm', '4366186'), + (253, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndaVPZKm', '4366187'), + (253, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndaVPZKm', '4402823'), + (253, 990, 'maybe', '2021-08-30 14:12:57', '2025-12-17 19:47:43', 'ndaVPZKm', '4420735'), + (253, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ndaVPZKm', '4420738'), + (253, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndaVPZKm', '4420739'), + (253, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndaVPZKm', '4420741'), + (253, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndaVPZKm', '4420744'), + (253, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndaVPZKm', '4420747'), + (253, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndaVPZKm', '4420748'), + (253, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndaVPZKm', '4420749'), + (253, 1020, 'not_attending', '2021-09-13 19:11:25', '2025-12-17 19:47:43', 'ndaVPZKm', '4451787'), + (253, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndaVPZKm', '4461883'), + (253, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndaVPZKm', '4508342'), + (253, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndaVPZKm', '4568602'), + (253, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ndaVPZKm', '4668385'), + (253, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndaVPZKm', '4694407'), + (253, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ndaVPZKm', '4736497'), + (253, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndaVPZKm', '4736500'), + (253, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndaVPZKm', '4746789'), + (253, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ndaVPZKm', '4753929'), + (253, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndaVPZKm', '5038850'), + (253, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaVPZKm', '6045684'), + (254, 871, 'not_attending', '2021-07-05 05:53:31', '2025-12-17 19:47:39', 'x4oRKGoA', '4136938'), + (254, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'x4oRKGoA', '4136947'), + (254, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oRKGoA', '4210314'), + (254, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oRKGoA', '4225444'), + (254, 892, 'maybe', '2021-07-05 01:20:48', '2025-12-17 19:47:39', 'x4oRKGoA', '4229418'), + (254, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'x4oRKGoA', '4229420'), + (254, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'x4oRKGoA', '4229423'), + (254, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'x4oRKGoA', '4240316'), + (254, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oRKGoA', '4240317'), + (254, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'x4oRKGoA', '4240318'), + (254, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'x4oRKGoA', '4240320'), + (254, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oRKGoA', '4275957'), + (254, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oRKGoA', '4277819'), + (254, 923, 'not_attending', '2021-07-20 02:30:47', '2025-12-17 19:47:40', 'x4oRKGoA', '4292773'), + (254, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oRKGoA', '4301723'), + (254, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'x4oRKGoA', '4302093'), + (254, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oRKGoA', '4304151'), + (254, 940, 'not_attending', '2021-07-30 16:29:29', '2025-12-17 19:47:40', 'x4oRKGoA', '4309049'), + (254, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'x4oRKGoA', '4315713'), + (254, 948, 'not_attending', '2021-08-11 05:28:23', '2025-12-17 19:47:41', 'x4oRKGoA', '4315714'), + (254, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'x4oRKGoA', '4315726'), + (254, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'x4oRKGoA', '4356801'), + (254, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'x4oRKGoA', '4366186'), + (254, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'x4oRKGoA', '4366187'), + (254, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'x4oRKGoA', '4420735'), + (254, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'x4oRKGoA', '4420738'), + (254, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'x4oRKGoA', '4420739'), + (254, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'x4oRKGoA', '4420741'), + (254, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'x4oRKGoA', '4420744'), + (254, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'x4oRKGoA', '4420747'), + (254, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'x4oRKGoA', '4420748'), + (254, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'x4oRKGoA', '4420749'), + (254, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oRKGoA', '6045684'), + (255, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlO6PYV4', '6045684'), + (256, 3233, 'attending', '2025-08-15 20:15:27', '2025-12-17 19:46:18', 'AnJZbzJA', '8485688'), + (256, 3234, 'attending', '2025-08-15 02:56:47', '2025-12-17 19:46:17', 'AnJZbzJA', '8488773'), + (256, 3235, 'not_attending', '2025-08-19 15:28:45', '2025-12-17 19:46:18', 'AnJZbzJA', '8490587'), + (256, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnJZbzJA', '8493552'), + (256, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnJZbzJA', '8493553'), + (256, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnJZbzJA', '8493554'), + (256, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnJZbzJA', '8493555'), + (256, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnJZbzJA', '8493556'), + (256, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnJZbzJA', '8493557'), + (256, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnJZbzJA', '8493558'), + (256, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnJZbzJA', '8493559'), + (256, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnJZbzJA', '8493560'), + (256, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'AnJZbzJA', '8493561'), + (256, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnJZbzJA', '8493572'), + (256, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'AnJZbzJA', '8540725'), + (256, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnJZbzJA', '8555421'), + (257, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'oAgMxVyd', '6045684'), + (258, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLgQ1yd', '5424565'), + (258, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLgQ1yd', '5426882'), + (258, 1505, 'not_attending', '2022-07-06 01:20:19', '2025-12-17 19:47:19', 'NmLgQ1yd', '5427083'), + (258, 1512, 'maybe', '2022-07-12 17:02:29', '2025-12-17 19:47:19', 'NmLgQ1yd', '5441112'), + (258, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLgQ1yd', '5441125'), + (258, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmLgQ1yd', '5441126'), + (258, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmLgQ1yd', '5441128'), + (258, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLgQ1yd', '5446643'), + (258, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'NmLgQ1yd', '5449068'), + (258, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLgQ1yd', '5453325'), + (258, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLgQ1yd', '5454516'), + (258, 1544, 'attending', '2022-09-17 02:45:18', '2025-12-17 19:47:11', 'NmLgQ1yd', '5454517'), + (258, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLgQ1yd', '5454605'), + (258, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLgQ1yd', '5455037'), + (258, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLgQ1yd', '5461278'), + (258, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLgQ1yd', '5469480'), + (258, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLgQ1yd', '5471073'), + (258, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'NmLgQ1yd', '5474663'), + (258, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLgQ1yd', '5482022'), + (258, 1574, 'attending', '2022-08-08 16:13:57', '2025-12-17 19:47:22', 'NmLgQ1yd', '5482153'), + (258, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLgQ1yd', '5482793'), + (258, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLgQ1yd', '5488912'), + (258, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLgQ1yd', '5492192'), + (258, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLgQ1yd', '5493139'), + (258, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLgQ1yd', '5493200'), + (258, 1598, 'attending', '2022-08-11 16:28:12', '2025-12-17 19:47:22', 'NmLgQ1yd', '5496567'), + (258, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLgQ1yd', '5502188'), + (258, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLgQ1yd', '5512862'), + (258, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLgQ1yd', '5513985'), + (258, 1630, 'attending', '2022-09-13 17:58:54', '2025-12-17 19:47:10', 'NmLgQ1yd', '5534683'), + (258, 1635, 'attending', '2022-09-16 11:01:12', '2025-12-17 19:47:10', 'NmLgQ1yd', '5537735'), + (258, 1640, 'not_attending', '2022-09-15 22:05:31', '2025-12-17 19:47:10', 'NmLgQ1yd', '5540859'), + (258, 1643, 'maybe', '2022-09-22 15:56:14', '2025-12-17 19:47:11', 'NmLgQ1yd', '5545856'), + (258, 1644, 'attending', '2022-09-19 22:53:28', '2025-12-17 19:47:11', 'NmLgQ1yd', '5545857'), + (258, 1647, 'maybe', '2022-09-18 09:37:24', '2025-12-17 19:47:11', 'NmLgQ1yd', '5548660'), + (258, 1662, 'attending', '2022-09-20 06:31:33', '2025-12-17 19:47:11', 'NmLgQ1yd', '5560255'), + (258, 1666, 'attending', '2022-09-22 15:56:26', '2025-12-17 19:47:11', 'NmLgQ1yd', '5563208'), + (258, 1677, 'attending', '2022-09-22 15:56:04', '2025-12-17 19:47:11', 'NmLgQ1yd', '5600604'), + (258, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLgQ1yd', '5605544'), + (258, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'NmLgQ1yd', '5606737'), + (258, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLgQ1yd', '5630960'), + (258, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLgQ1yd', '5630961'), + (258, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLgQ1yd', '5630962'), + (258, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLgQ1yd', '5630966'), + (258, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLgQ1yd', '5630967'), + (258, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLgQ1yd', '5630968'), + (258, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLgQ1yd', '5635406'), + (258, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLgQ1yd', '5638765'), + (258, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLgQ1yd', '5640097'), + (258, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLgQ1yd', '5640843'), + (258, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLgQ1yd', '5641521'), + (258, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLgQ1yd', '5642818'), + (258, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLgQ1yd', '5652395'), + (258, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLgQ1yd', '5670445'), + (258, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLgQ1yd', '5671637'), + (258, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLgQ1yd', '5672329'), + (258, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLgQ1yd', '5674057'), + (258, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLgQ1yd', '5674060'), + (258, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLgQ1yd', '5677461'), + (258, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLgQ1yd', '5698046'), + (258, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLgQ1yd', '5699760'), + (258, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLgQ1yd', '5741601'), + (258, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLgQ1yd', '5763458'), + (258, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLgQ1yd', '5774172'), + (258, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'NmLgQ1yd', '5818247'), + (258, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLgQ1yd', '5819471'), + (258, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLgQ1yd', '5827739'), + (258, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLgQ1yd', '5844306'), + (258, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLgQ1yd', '5850159'), + (258, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLgQ1yd', '5858999'), + (258, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLgQ1yd', '5871984'), + (258, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLgQ1yd', '5876354'), + (258, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'NmLgQ1yd', '5880939'), + (258, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLgQ1yd', '5880940'), + (258, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLgQ1yd', '5880942'), + (258, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'NmLgQ1yd', '5880943'), + (258, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLgQ1yd', '5887890'), + (258, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLgQ1yd', '5888598'), + (258, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLgQ1yd', '5893260'), + (258, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLgQ1yd', '5899826'), + (258, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLgQ1yd', '5900199'), + (258, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLgQ1yd', '5900200'), + (258, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'NmLgQ1yd', '5900202'), + (258, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLgQ1yd', '5900203'), + (258, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLgQ1yd', '5901108'), + (258, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLgQ1yd', '5901126'), + (258, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLgQ1yd', '5909655'), + (258, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLgQ1yd', '5910522'), + (258, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLgQ1yd', '5910526'), + (258, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLgQ1yd', '5910528'), + (258, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLgQ1yd', '5916219'), + (258, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'NmLgQ1yd', '5936234'), + (258, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLgQ1yd', '5958351'), + (258, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'NmLgQ1yd', '5959751'), + (258, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'NmLgQ1yd', '5959755'), + (258, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'NmLgQ1yd', '5960055'), + (258, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLgQ1yd', '5961684'), + (258, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'NmLgQ1yd', '5962132'), + (258, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'NmLgQ1yd', '5962133'), + (258, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLgQ1yd', '5962134'), + (258, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLgQ1yd', '5962317'), + (258, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLgQ1yd', '5962318'), + (258, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'NmLgQ1yd', '5965933'), + (258, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLgQ1yd', '5967014'), + (258, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLgQ1yd', '5972815'), + (258, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'NmLgQ1yd', '5974016'), + (258, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLgQ1yd', '5981515'), + (258, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'NmLgQ1yd', '5993516'), + (258, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'NmLgQ1yd', '5998939'), + (258, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLgQ1yd', '6028191'), + (258, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'NmLgQ1yd', '6040066'), + (258, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'NmLgQ1yd', '6042717'), + (258, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLgQ1yd', '6044838'), + (258, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLgQ1yd', '6044839'), + (258, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'NmLgQ1yd', '6045684'), + (258, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLgQ1yd', '6050104'), + (258, 1999, 'maybe', '2023-04-15 21:44:58', '2025-12-17 19:47:00', 'NmLgQ1yd', '6052057'), + (258, 2002, 'attending', '2023-04-25 05:16:56', '2025-12-17 19:47:01', 'NmLgQ1yd', '6052605'), + (258, 2003, 'maybe', '2023-05-15 01:14:43', '2025-12-17 19:47:03', 'NmLgQ1yd', '6052606'), + (258, 2004, 'maybe', '2023-05-16 06:05:45', '2025-12-17 19:47:04', 'NmLgQ1yd', '6052607'), + (258, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLgQ1yd', '6053195'), + (258, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'NmLgQ1yd', '6053198'), + (258, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'NmLgQ1yd', '6056085'), + (258, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLgQ1yd', '6056916'), + (258, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLgQ1yd', '6059290'), + (258, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLgQ1yd', '6060328'), + (258, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLgQ1yd', '6061037'), + (258, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLgQ1yd', '6061039'), + (258, 2019, 'attending', '2023-04-15 21:44:26', '2025-12-17 19:47:00', 'NmLgQ1yd', '6062934'), + (258, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLgQ1yd', '6067245'), + (258, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLgQ1yd', '6068094'), + (258, 2028, 'maybe', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'NmLgQ1yd', '6068252'), + (258, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'NmLgQ1yd', '6068253'), + (258, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'NmLgQ1yd', '6068254'), + (258, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'NmLgQ1yd', '6068280'), + (258, 2032, 'maybe', '2023-05-16 06:05:29', '2025-12-17 19:47:04', 'NmLgQ1yd', '6068281'), + (258, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLgQ1yd', '6069093'), + (258, 2035, 'maybe', '2023-05-04 04:02:37', '2025-12-17 19:47:02', 'NmLgQ1yd', '6070142'), + (258, 2039, 'not_attending', '2023-04-25 05:21:47', '2025-12-17 19:47:01', 'NmLgQ1yd', '6072398'), + (258, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'NmLgQ1yd', '6072528'), + (258, 2042, 'maybe', '2023-04-27 06:35:53', '2025-12-17 19:47:01', 'NmLgQ1yd', '6072941'), + (258, 2043, 'maybe', '2023-04-25 05:18:35', '2025-12-17 19:47:01', 'NmLgQ1yd', '6073023'), + (258, 2049, 'maybe', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'NmLgQ1yd', '6079840'), + (258, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLgQ1yd', '6083398'), + (258, 2052, 'attending', '2023-05-06 02:22:23', '2025-12-17 19:47:02', 'NmLgQ1yd', '6088220'), + (258, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'NmLgQ1yd', '6093504'), + (258, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'NmLgQ1yd', '6097414'), + (258, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLgQ1yd', '6097442'), + (258, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLgQ1yd', '6097684'), + (258, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLgQ1yd', '6098762'), + (258, 2065, 'maybe', '2023-06-15 17:50:22', '2025-12-17 19:46:49', 'NmLgQ1yd', '6101169'), + (258, 2066, 'maybe', '2023-05-16 06:05:34', '2025-12-17 19:47:04', 'NmLgQ1yd', '6101361'), + (258, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLgQ1yd', '6101362'), + (258, 2070, 'maybe', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'NmLgQ1yd', '6103752'), + (258, 2074, 'attending', '2023-05-24 03:24:07', '2025-12-17 19:47:03', 'NmLgQ1yd', '6107312'), + (258, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLgQ1yd', '6107314'), + (258, 2080, 'not_attending', '2023-05-29 19:53:27', '2025-12-17 19:47:04', 'NmLgQ1yd', '6114677'), + (258, 2087, 'maybe', '2023-05-29 02:09:39', '2025-12-17 19:47:04', 'NmLgQ1yd', '6120034'), + (258, 2089, 'attending', '2023-06-06 05:32:07', '2025-12-17 19:47:04', 'NmLgQ1yd', '6125227'), + (258, 2090, 'attending', '2023-06-02 20:45:42', '2025-12-17 19:47:04', 'NmLgQ1yd', '6127961'), + (258, 2091, 'maybe', '2023-06-04 04:39:27', '2025-12-17 19:47:04', 'NmLgQ1yd', '6130657'), + (258, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'NmLgQ1yd', '6136733'), + (258, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'NmLgQ1yd', '6137989'), + (258, 2099, 'attending', '2023-06-15 21:59:23', '2025-12-17 19:46:49', 'NmLgQ1yd', '6143012'), + (258, 2101, 'not_attending', '2023-06-17 02:28:01', '2025-12-17 19:46:49', 'NmLgQ1yd', '6144741'), + (258, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'NmLgQ1yd', '6150864'), + (258, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'NmLgQ1yd', '6155491'), + (258, 2115, 'not_attending', '2023-06-29 04:42:32', '2025-12-17 19:46:50', 'NmLgQ1yd', '6161437'), + (258, 2116, 'maybe', '2023-07-01 20:25:34', '2025-12-17 19:46:51', 'NmLgQ1yd', '6163389'), + (258, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'NmLgQ1yd', '6164417'), + (258, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'NmLgQ1yd', '6166388'), + (258, 2121, 'maybe', '2023-06-28 12:48:59', '2025-12-17 19:46:50', 'NmLgQ1yd', '6176439'), + (258, 2124, 'maybe', '2023-06-29 22:19:37', '2025-12-17 19:46:51', 'NmLgQ1yd', '6176988'), + (258, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'NmLgQ1yd', '6182410'), + (258, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'NmLgQ1yd', '6185812'), + (258, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'NmLgQ1yd', '6187651'), + (258, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'NmLgQ1yd', '6187963'), + (258, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'NmLgQ1yd', '6187964'), + (258, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'NmLgQ1yd', '6187966'), + (258, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'NmLgQ1yd', '6187967'), + (258, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'NmLgQ1yd', '6187969'), + (258, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'NmLgQ1yd', '6334878'), + (258, 2146, 'maybe', '2023-07-17 06:07:51', '2025-12-17 19:46:53', 'NmLgQ1yd', '6335638'), + (258, 2152, 'attending', '2023-07-14 22:56:01', '2025-12-17 19:46:52', 'NmLgQ1yd', '6337021'), + (258, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'NmLgQ1yd', '6337236'), + (258, 2155, 'attending', '2023-07-17 06:07:27', '2025-12-17 19:46:53', 'NmLgQ1yd', '6337970'), + (258, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'NmLgQ1yd', '6338308'), + (258, 2158, 'maybe', '2023-07-20 22:10:32', '2025-12-17 19:46:53', 'NmLgQ1yd', '6338353'), + (258, 2159, 'attending', '2023-07-17 06:08:07', '2025-12-17 19:46:53', 'NmLgQ1yd', '6338355'), + (258, 2160, 'maybe', '2023-07-20 22:11:10', '2025-12-17 19:46:54', 'NmLgQ1yd', '6338358'), + (258, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'NmLgQ1yd', '6340845'), + (258, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'NmLgQ1yd', '6341710'), + (258, 2164, 'maybe', '2023-07-27 04:28:17', '2025-12-17 19:46:54', 'NmLgQ1yd', '6341797'), + (258, 2165, 'attending', '2023-08-01 14:27:03', '2025-12-17 19:46:54', 'NmLgQ1yd', '6342044'), + (258, 2166, 'not_attending', '2023-07-20 22:10:57', '2025-12-17 19:46:54', 'NmLgQ1yd', '6342115'), + (258, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'NmLgQ1yd', '6342298'), + (258, 2171, 'maybe', '2023-07-27 04:31:23', '2025-12-17 19:46:54', 'NmLgQ1yd', '6342328'), + (258, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'NmLgQ1yd', '6343294'), + (258, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'NmLgQ1yd', '6347034'), + (258, 2177, 'not_attending', '2023-08-01 14:27:30', '2025-12-17 19:46:55', 'NmLgQ1yd', '6347053'), + (258, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'NmLgQ1yd', '6347056'), + (258, 2180, 'attending', '2023-07-25 16:25:36', '2025-12-17 19:46:54', 'NmLgQ1yd', '6348788'), + (258, 2185, 'maybe', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'NmLgQ1yd', '6353830'), + (258, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'NmLgQ1yd', '6353831'), + (258, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'NmLgQ1yd', '6357867'), + (258, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'NmLgQ1yd', '6358652'), + (258, 2195, 'attending', '2023-08-21 15:54:16', '2025-12-17 19:46:55', 'NmLgQ1yd', '6359397'), + (258, 2196, 'attending', '2023-09-08 02:13:01', '2025-12-17 19:46:56', 'NmLgQ1yd', '6359398'), + (258, 2197, 'attending', '2023-09-10 05:03:52', '2025-12-17 19:46:44', 'NmLgQ1yd', '6359399'), + (258, 2198, 'maybe', '2023-09-17 21:28:14', '2025-12-17 19:46:45', 'NmLgQ1yd', '6359400'), + (258, 2200, 'maybe', '2023-08-09 06:46:17', '2025-12-17 19:46:55', 'NmLgQ1yd', '6359850'), + (258, 2204, 'maybe', '2023-08-19 02:19:07', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361542'), + (258, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361709'), + (258, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361710'), + (258, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361711'), + (258, 2211, 'attending', '2023-08-18 05:42:34', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361712'), + (258, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'NmLgQ1yd', '6361713'), + (258, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'NmLgQ1yd', '6382573'), + (258, 2236, 'maybe', '2023-08-30 20:00:24', '2025-12-17 19:46:55', 'NmLgQ1yd', '6382618'), + (258, 2239, 'attending', '2023-08-31 20:12:57', '2025-12-17 19:46:56', 'NmLgQ1yd', '6387592'), + (258, 2241, 'attending', '2023-09-10 05:04:11', '2025-12-17 19:46:44', 'NmLgQ1yd', '6388604'), + (258, 2243, 'attending', '2023-09-07 05:14:45', '2025-12-17 19:46:56', 'NmLgQ1yd', '6393686'), + (258, 2248, 'not_attending', '2023-09-10 05:04:53', '2025-12-17 19:46:44', 'NmLgQ1yd', '6394629'), + (258, 2249, 'attending', '2023-09-17 21:27:46', '2025-12-17 19:46:45', 'NmLgQ1yd', '6394630'), + (258, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'NmLgQ1yd', '6394631'), + (258, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'NmLgQ1yd', '6440863'), + (258, 2271, 'attending', '2023-10-06 16:43:03', '2025-12-17 19:46:45', 'NmLgQ1yd', '6445375'), + (258, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLgQ1yd', '6445440'), + (258, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLgQ1yd', '6453951'), + (258, 2283, 'maybe', '2023-10-10 15:45:07', '2025-12-17 19:46:46', 'NmLgQ1yd', '6455503'), + (258, 2285, 'maybe', '2023-10-23 13:16:47', '2025-12-17 19:46:47', 'NmLgQ1yd', '6460929'), + (258, 2286, 'maybe', '2023-11-28 17:35:23', '2025-12-17 19:46:48', 'NmLgQ1yd', '6460930'), + (258, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'NmLgQ1yd', '6461696'), + (258, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'NmLgQ1yd', '6462129'), + (258, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLgQ1yd', '6463218'), + (258, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'NmLgQ1yd', '6472181'), + (258, 2304, 'maybe', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'NmLgQ1yd', '6482693'), + (258, 2306, 'attending', '2023-11-15 18:49:02', '2025-12-17 19:46:47', 'NmLgQ1yd', '6484200'), + (258, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'NmLgQ1yd', '6484680'), + (258, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'NmLgQ1yd', '6507741'), + (258, 2320, 'maybe', '2023-11-07 16:44:49', '2025-12-17 19:46:47', 'NmLgQ1yd', '6508647'), + (258, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'NmLgQ1yd', '6514659'), + (258, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'NmLgQ1yd', '6514660'), + (258, 2324, 'maybe', '2023-12-07 17:57:33', '2025-12-17 19:46:49', 'NmLgQ1yd', '6514662'), + (258, 2333, 'attending', '2023-11-07 16:44:38', '2025-12-17 19:46:47', 'NmLgQ1yd', '6519103'), + (258, 2337, 'maybe', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'NmLgQ1yd', '6535681'), + (258, 2338, 'maybe', '2023-11-24 06:57:16', '2025-12-17 19:46:48', 'NmLgQ1yd', '6538868'), + (258, 2345, 'attending', '2023-11-28 17:35:10', '2025-12-17 19:46:48', 'NmLgQ1yd', '6582414'), + (258, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLgQ1yd', '6584747'), + (258, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLgQ1yd', '6587097'), + (258, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLgQ1yd', '6609022'), + (258, 2365, 'maybe', '2023-12-22 19:00:42', '2025-12-17 19:46:37', 'NmLgQ1yd', '6613093'), + (258, 2366, 'maybe', '2023-12-12 23:16:15', '2025-12-17 19:46:36', 'NmLgQ1yd', '6615304'), + (258, 2370, 'attending', '2023-12-12 17:41:00', '2025-12-17 19:46:36', 'NmLgQ1yd', '6623765'), + (258, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'NmLgQ1yd', '6632757'), + (258, 2378, 'attending', '2024-01-01 20:19:10', '2025-12-17 19:46:37', 'NmLgQ1yd', '6644006'), + (258, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLgQ1yd', '6644187'), + (258, 2382, 'not_attending', '2024-01-01 20:17:42', '2025-12-17 19:46:37', 'NmLgQ1yd', '6646401'), + (258, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLgQ1yd', '6648951'), + (258, 2387, 'attending', '2024-01-04 03:38:40', '2025-12-17 19:46:37', 'NmLgQ1yd', '6648952'), + (258, 2391, 'attending', '2024-01-08 07:40:37', '2025-12-17 19:46:37', 'NmLgQ1yd', '6654138'), + (258, 2394, 'attending', '2024-01-17 04:40:03', '2025-12-17 19:46:38', 'NmLgQ1yd', '6654470'), + (258, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'NmLgQ1yd', '6655401'), + (258, 2398, 'attending', '2024-01-08 07:40:16', '2025-12-17 19:46:37', 'NmLgQ1yd', '6657381'), + (258, 2399, 'not_attending', '2024-01-13 10:55:19', '2025-12-17 19:46:38', 'NmLgQ1yd', '6657583'), + (258, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'NmLgQ1yd', '6661585'), + (258, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'NmLgQ1yd', '6661588'), + (258, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'NmLgQ1yd', '6661589'), + (258, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLgQ1yd', '6699906'), + (258, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'NmLgQ1yd', '6699913'), + (258, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'NmLgQ1yd', '6701109'), + (258, 2423, 'maybe', '2024-01-22 05:21:32', '2025-12-17 19:46:40', 'NmLgQ1yd', '6705141'), + (258, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLgQ1yd', '6705219'), + (258, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLgQ1yd', '6710153'), + (258, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLgQ1yd', '6711552'), + (258, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'NmLgQ1yd', '6711553'), + (258, 2431, 'maybe', '2024-01-28 07:01:42', '2025-12-17 19:46:41', 'NmLgQ1yd', '6712394'), + (258, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'NmLgQ1yd', '6722688'), + (258, 2438, 'attending', '2024-02-05 05:13:24', '2025-12-17 19:46:41', 'NmLgQ1yd', '6730201'), + (258, 2439, 'maybe', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'NmLgQ1yd', '6730620'), + (258, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'NmLgQ1yd', '6730642'), + (258, 2445, 'attending', '2024-02-15 06:57:18', '2025-12-17 19:46:41', 'NmLgQ1yd', '6734368'), + (258, 2446, 'attending', '2024-02-27 06:42:03', '2025-12-17 19:46:43', 'NmLgQ1yd', '6734369'), + (258, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'NmLgQ1yd', '6740364'), + (258, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'NmLgQ1yd', '6743829'), + (258, 2465, 'not_attending', '2024-02-20 10:32:27', '2025-12-17 19:46:42', 'NmLgQ1yd', '7026725'), + (258, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'NmLgQ1yd', '7030380'), + (258, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'NmLgQ1yd', '7033677'), + (258, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'NmLgQ1yd', '7035415'), + (258, 2477, 'not_attending', '2024-02-21 08:19:58', '2025-12-17 19:46:42', 'NmLgQ1yd', '7035692'), + (258, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'NmLgQ1yd', '7044715'), + (258, 2490, 'maybe', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'NmLgQ1yd', '7050318'), + (258, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'NmLgQ1yd', '7050319'), + (258, 2492, 'maybe', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'NmLgQ1yd', '7050322'), + (258, 2499, 'maybe', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'NmLgQ1yd', '7057804'), + (258, 2501, 'maybe', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'NmLgQ1yd', '7059866'), + (258, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'NmLgQ1yd', '7072824'), + (258, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'NmLgQ1yd', '7074348'), + (258, 2516, 'not_attending', '2024-04-30 05:37:04', '2025-12-17 19:46:35', 'NmLgQ1yd', '7074356'), + (258, 2522, 'maybe', '2024-07-18 14:50:21', '2025-12-17 19:46:30', 'NmLgQ1yd', '7074362'), + (258, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'NmLgQ1yd', '7074364'), + (258, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'NmLgQ1yd', '7089267'), + (258, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'NmLgQ1yd', '7098747'), + (258, 2552, 'attending', '2024-03-27 21:56:33', '2025-12-17 19:46:33', 'NmLgQ1yd', '7111123'), + (258, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'NmLgQ1yd', '7113468'), + (258, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'NmLgQ1yd', '7114856'), + (258, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'NmLgQ1yd', '7114951'), + (258, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'NmLgQ1yd', '7114955'), + (258, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'NmLgQ1yd', '7114956'), + (258, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'NmLgQ1yd', '7114957'), + (258, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'NmLgQ1yd', '7153615'), + (258, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'NmLgQ1yd', '7159484'), + (258, 2575, 'maybe', '2024-04-12 14:34:36', '2025-12-17 19:46:33', 'NmLgQ1yd', '7164534'), + (258, 2585, 'maybe', '2024-04-21 04:58:54', '2025-12-17 19:46:34', 'NmLgQ1yd', '7175828'), + (258, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'NmLgQ1yd', '7178446'), + (258, 2595, 'maybe', '2024-04-22 05:36:42', '2025-12-17 19:46:34', 'NmLgQ1yd', '7182252'), + (258, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'NmLgQ1yd', '7220467'), + (258, 2603, 'maybe', '2024-05-12 17:49:30', '2025-12-17 19:46:35', 'NmLgQ1yd', '7225669'), + (258, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'NmLgQ1yd', '7240354'), + (258, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'NmLgQ1yd', '7251633'), + (258, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'NmLgQ1yd', '7263048'), + (258, 2628, 'maybe', '2024-05-29 16:23:21', '2025-12-17 19:46:36', 'NmLgQ1yd', '7264725'), + (258, 2630, 'maybe', '2024-05-12 17:50:06', '2025-12-17 19:46:35', 'NmLgQ1yd', '7264801'), + (258, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'NmLgQ1yd', '7302674'), + (258, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'NmLgQ1yd', '7324073'), + (258, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'NmLgQ1yd', '7324074'), + (258, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'NmLgQ1yd', '7324075'), + (258, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'NmLgQ1yd', '7324078'), + (258, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'NmLgQ1yd', '7324082'), + (258, 2701, 'maybe', '2024-06-26 02:44:25', '2025-12-17 19:46:29', 'NmLgQ1yd', '7324391'), + (258, 2706, 'attending', '2024-06-18 02:24:40', '2025-12-17 19:46:28', 'NmLgQ1yd', '7324947'), + (258, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'NmLgQ1yd', '7331457'), + (258, 2746, 'maybe', '2024-07-08 15:02:17', '2025-12-17 19:46:29', 'NmLgQ1yd', '7348713'), + (258, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'NmLgQ1yd', '7356752'), + (258, 2755, 'maybe', '2024-07-10 02:47:42', '2025-12-17 19:46:29', 'NmLgQ1yd', '7357808'), + (258, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'NmLgQ1yd', '7363643'), + (258, 2772, 'maybe', '2024-07-23 00:08:17', '2025-12-17 19:46:30', 'NmLgQ1yd', '7368267'), + (258, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'NmLgQ1yd', '7368606'), + (258, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'NmLgQ1yd', '7397462'), + (258, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'NmLgQ1yd', '7424275'), + (258, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'NmLgQ1yd', '7424276'), + (258, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'NmLgQ1yd', '7432751'), + (258, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'NmLgQ1yd', '7432752'), + (258, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'NmLgQ1yd', '7432753'), + (258, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432754'), + (258, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432755'), + (258, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432756'), + (258, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432758'), + (258, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432759'), + (258, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'NmLgQ1yd', '7433834'), + (258, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'NmLgQ1yd', '7470197'), + (258, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'NmLgQ1yd', '7685613'), + (258, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'NmLgQ1yd', '7688194'), + (258, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'NmLgQ1yd', '7688196'), + (258, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'NmLgQ1yd', '7688289'), + (258, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'NmLgQ1yd', '7692763'), + (258, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'NmLgQ1yd', '7697552'), + (258, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'NmLgQ1yd', '7699878'), + (258, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'NmLgQ1yd', '7704043'), + (258, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'NmLgQ1yd', '7712467'), + (258, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'NmLgQ1yd', '7713585'), + (258, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'NmLgQ1yd', '7713586'), + (258, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'NmLgQ1yd', '7738518'), + (258, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'NmLgQ1yd', '7750636'), + (258, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'NmLgQ1yd', '7796540'), + (258, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'NmLgQ1yd', '7796541'), + (258, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'NmLgQ1yd', '7796542'), + (258, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'NmLgQ1yd', '7825913'), + (258, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'NmLgQ1yd', '7826209'), + (258, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'NmLgQ1yd', '7834742'), + (258, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'NmLgQ1yd', '7842108'), + (258, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'NmLgQ1yd', '7842902'), + (258, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'NmLgQ1yd', '7842903'), + (258, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'NmLgQ1yd', '7842904'), + (258, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'NmLgQ1yd', '7842905'), + (258, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'NmLgQ1yd', '7855719'), + (258, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'NmLgQ1yd', '7860683'), + (258, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'NmLgQ1yd', '7860684'), + (258, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'NmLgQ1yd', '7866095'), + (258, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'NmLgQ1yd', '7869170'), + (258, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'NmLgQ1yd', '7869188'), + (258, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'NmLgQ1yd', '7869201'), + (258, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'NmLgQ1yd', '7877465'), + (258, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'NmLgQ1yd', '7888250'), + (258, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'NmLgQ1yd', '7904777'), + (258, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'NmLgQ1yd', '8349164'), + (258, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'NmLgQ1yd', '8349545'), + (258, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'NmLgQ1yd', '8368028'), + (258, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'NmLgQ1yd', '8368029'), + (258, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'NmLgQ1yd', '8388462'), + (258, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'NmLgQ1yd', '8400273'), + (258, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'NmLgQ1yd', '8400275'), + (258, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'NmLgQ1yd', '8400276'), + (258, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'NmLgQ1yd', '8404977'), + (258, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'NmLgQ1yd', '8430783'), + (258, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'NmLgQ1yd', '8430784'), + (258, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'NmLgQ1yd', '8430799'), + (258, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'NmLgQ1yd', '8430800'), + (258, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'NmLgQ1yd', '8430801'), + (258, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'NmLgQ1yd', '8438709'), + (258, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'NmLgQ1yd', '8457738'), + (258, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'NmLgQ1yd', '8459566'), + (258, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'NmLgQ1yd', '8459567'), + (258, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'NmLgQ1yd', '8461032'), + (258, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'NmLgQ1yd', '8477877'), + (258, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'NmLgQ1yd', '8485688'), + (258, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'NmLgQ1yd', '8490587'), + (258, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'NmLgQ1yd', '8493552'), + (258, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'NmLgQ1yd', '8493553'), + (258, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'NmLgQ1yd', '8493554'), + (258, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'NmLgQ1yd', '8493555'), + (258, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'NmLgQ1yd', '8493556'), + (258, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'NmLgQ1yd', '8493557'), + (258, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'NmLgQ1yd', '8493558'), + (258, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'NmLgQ1yd', '8493559'), + (258, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'NmLgQ1yd', '8493560'), + (258, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'NmLgQ1yd', '8493561'), + (258, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'NmLgQ1yd', '8493572'), + (258, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'NmLgQ1yd', '8540725'), + (258, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'NmLgQ1yd', '8555421'), + (259, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4Dn2vDLm', '4736503'), + (259, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '4Dn2vDLm', '5199460'), + (259, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4Dn2vDLm', '6045684'), + (260, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'm7jRy8Md', '6655401'), + (260, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'm7jRy8Md', '6699906'), + (260, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'm7jRy8Md', '6699913'), + (260, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'm7jRy8Md', '6701109'), + (260, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'm7jRy8Md', '6705219'), + (260, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'm7jRy8Md', '6710153'), + (260, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'm7jRy8Md', '6711552'), + (260, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'm7jRy8Md', '6711553'), + (260, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'm7jRy8Md', '6722688'), + (260, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'm7jRy8Md', '6730620'), + (260, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'm7jRy8Md', '6730642'), + (260, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'm7jRy8Md', '6740364'), + (260, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'm7jRy8Md', '6743829'), + (260, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'm7jRy8Md', '7030380'), + (260, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'm7jRy8Md', '7033677'), + (260, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'm7jRy8Md', '7035415'), + (260, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'm7jRy8Md', '7044715'), + (260, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'm7jRy8Md', '7050318'), + (260, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'm7jRy8Md', '7050319'), + (260, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'm7jRy8Md', '7050322'), + (260, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'm7jRy8Md', '7057804'), + (260, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'm7jRy8Md', '7072824'), + (260, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'm7jRy8Md', '7074348'), + (260, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'm7jRy8Md', '7089267'), + (260, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'm7jRy8Md', '7098747'), + (260, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'm7jRy8Md', '7113468'), + (260, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'm7jRy8Md', '7114856'), + (260, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'm7jRy8Md', '7114951'), + (260, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'm7jRy8Md', '7114955'), + (260, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'm7jRy8Md', '7114956'), + (260, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'm7jRy8Md', '7153615'), + (260, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'm7jRy8Md', '7159484'), + (260, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'm7jRy8Md', '7178446'), + (261, 399, 'attending', '2020-11-12 09:34:58', '2025-12-17 19:47:54', 'nm6bX13m', '3236454'), + (261, 441, 'maybe', '2020-11-15 01:53:30', '2025-12-17 19:47:54', 'nm6bX13m', '3256169'), + (261, 469, 'attending', '2020-11-27 06:34:43', '2025-12-17 19:47:54', 'nm6bX13m', '3285414'), + (261, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'nm6bX13m', '3297764'), + (261, 484, 'not_attending', '2020-11-21 01:10:23', '2025-12-17 19:47:54', 'nm6bX13m', '3297792'), + (261, 490, 'attending', '2020-11-29 20:18:54', '2025-12-17 19:47:54', 'nm6bX13m', '3313532'), + (261, 491, 'attending', '2020-11-29 20:18:43', '2025-12-17 19:47:55', 'nm6bX13m', '3313533'), + (261, 492, 'attending', '2020-11-29 20:18:48', '2025-12-17 19:47:54', 'nm6bX13m', '3313731'), + (261, 493, 'maybe', '2020-11-29 20:18:17', '2025-12-17 19:47:54', 'nm6bX13m', '3313856'), + (261, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'nm6bX13m', '3314909'), + (261, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'nm6bX13m', '3314964'), + (261, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'nm6bX13m', '3323365'), + (261, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'nm6bX13m', '3329383'), + (261, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'nm6bX13m', '3351539'), + (261, 529, 'attending', '2021-01-06 03:31:40', '2025-12-17 19:47:48', 'nm6bX13m', '3364568'), + (261, 532, 'attending', '2021-01-07 19:21:58', '2025-12-17 19:47:48', 'nm6bX13m', '3381412'), + (261, 534, 'attending', '2021-01-09 21:53:27', '2025-12-17 19:47:48', 'nm6bX13m', '3384157'), + (261, 535, 'attending', '2021-01-09 21:06:30', '2025-12-17 19:47:48', 'nm6bX13m', '3384729'), + (261, 536, 'attending', '2021-01-06 03:30:46', '2025-12-17 19:47:48', 'nm6bX13m', '3386848'), + (261, 540, 'attending', '2021-01-10 14:20:08', '2025-12-17 19:47:48', 'nm6bX13m', '3389527'), + (261, 542, 'not_attending', '2021-01-11 03:00:50', '2025-12-17 19:47:48', 'nm6bX13m', '3395013'), + (261, 543, 'attending', '2021-01-11 03:01:44', '2025-12-17 19:47:48', 'nm6bX13m', '3396499'), + (261, 546, 'attending', '2021-01-22 02:35:50', '2025-12-17 19:47:49', 'nm6bX13m', '3396503'), + (261, 547, 'not_attending', '2021-01-22 00:09:41', '2025-12-17 19:47:49', 'nm6bX13m', '3396504'), + (261, 548, 'maybe', '2021-01-16 02:28:55', '2025-12-17 19:47:48', 'nm6bX13m', '3403650'), + (261, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nm6bX13m', '3406988'), + (261, 555, 'attending', '2021-01-20 01:00:19', '2025-12-17 19:47:49', 'nm6bX13m', '3416576'), + (261, 556, 'not_attending', '2021-01-20 01:12:04', '2025-12-17 19:47:49', 'nm6bX13m', '3417170'), + (261, 558, 'maybe', '2021-01-20 12:21:42', '2025-12-17 19:47:49', 'nm6bX13m', '3418925'), + (261, 561, 'attending', '2021-01-20 12:19:32', '2025-12-17 19:47:49', 'nm6bX13m', '3421916'), + (261, 562, 'not_attending', '2021-01-22 00:09:29', '2025-12-17 19:47:49', 'nm6bX13m', '3424911'), + (261, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'nm6bX13m', '3426074'), + (261, 568, 'not_attending', '2021-01-31 00:45:53', '2025-12-17 19:47:50', 'nm6bX13m', '3430267'), + (261, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'nm6bX13m', '3432673'), + (261, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'nm6bX13m', '3468125'), + (261, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'nm6bX13m', '3470303'), + (261, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'nm6bX13m', '3470305'), + (261, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'nm6bX13m', '3470991'), + (261, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'nm6bX13m', '3517815'), + (261, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'nm6bX13m', '3517816'), + (261, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'nm6bX13m', '3523941'), + (261, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'nm6bX13m', '3533850'), + (261, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'nm6bX13m', '3536632'), + (261, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'nm6bX13m', '3536656'), + (261, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'nm6bX13m', '3539916'), + (261, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'nm6bX13m', '3539917'), + (261, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'nm6bX13m', '3539918'), + (261, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'nm6bX13m', '3539919'), + (261, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'nm6bX13m', '3539920'), + (261, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'nm6bX13m', '3539921'), + (261, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'nm6bX13m', '3539922'), + (261, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'nm6bX13m', '3539923'), + (261, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'nm6bX13m', '3539927'), + (261, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'nm6bX13m', '3582734'), + (261, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'nm6bX13m', '3583262'), + (261, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'nm6bX13m', '3619523'), + (261, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'nm6bX13m', '3661369'), + (261, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'nm6bX13m', '3674262'), + (261, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'nm6bX13m', '3677402'), + (261, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'nm6bX13m', '3730212'), + (261, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6bX13m', '6045684'), + (262, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZBJje4', '6482693'), + (262, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZBJje4', '6484200'), + (262, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'dKZBJje4', '6484680'), + (262, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZBJje4', '6507741'), + (262, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZBJje4', '6514659'), + (262, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZBJje4', '6514660'), + (262, 2328, 'not_attending', '2023-11-03 19:15:50', '2025-12-17 19:46:47', 'dKZBJje4', '6515504'), + (262, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZBJje4', '6519103'), + (262, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZBJje4', '6535681'), + (262, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'dKZBJje4', '6545076'), + (262, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZBJje4', '6584747'), + (262, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZBJje4', '6587097'), + (262, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZBJje4', '6609022'), + (262, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZBJje4', '6632757'), + (262, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZBJje4', '6644187'), + (262, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZBJje4', '6648951'), + (262, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZBJje4', '6648952'), + (262, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dKZBJje4', '6651141'), + (262, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZBJje4', '6655401'), + (262, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZBJje4', '6661585'), + (262, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZBJje4', '6661588'), + (262, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZBJje4', '6661589'), + (262, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZBJje4', '6699906'), + (262, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dKZBJje4', '6699913'), + (262, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZBJje4', '6701109'), + (262, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZBJje4', '6705219'), + (262, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZBJje4', '6710153'), + (262, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZBJje4', '6711552'), + (262, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZBJje4', '6711553'), + (262, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKZBJje4', '6722688'), + (262, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKZBJje4', '6730620'), + (262, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKZBJje4', '6730642'), + (262, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKZBJje4', '6740364'), + (262, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKZBJje4', '6743829'), + (262, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKZBJje4', '7030380'), + (262, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKZBJje4', '7033677'), + (262, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKZBJje4', '7035415'), + (262, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKZBJje4', '7044715'), + (262, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKZBJje4', '7050318'), + (262, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKZBJje4', '7050319'), + (262, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKZBJje4', '7050322'), + (262, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKZBJje4', '7057804'), + (262, 2502, 'not_attending', '2024-03-06 02:24:36', '2025-12-17 19:46:33', 'dKZBJje4', '7061202'), + (262, 2503, 'not_attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'dKZBJje4', '7062500'), + (262, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKZBJje4', '7072824'), + (262, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dKZBJje4', '7074348'), + (262, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKZBJje4', '7089267'), + (262, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKZBJje4', '7098747'), + (262, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dKZBJje4', '7113468'), + (262, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKZBJje4', '7114856'), + (262, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKZBJje4', '7114951'), + (262, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKZBJje4', '7114955'), + (262, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKZBJje4', '7114956'), + (262, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKZBJje4', '7153615'), + (262, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKZBJje4', '7159484'), + (262, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKZBJje4', '7178446'), + (263, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'nm6yEkGd', '3386848'), + (263, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'nm6yEkGd', '3389527'), + (263, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'nm6yEkGd', '3396499'), + (263, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'nm6yEkGd', '3403650'), + (263, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nm6yEkGd', '3406988'), + (263, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'nm6yEkGd', '3416576'), + (263, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'nm6yEkGd', '3426074'), + (263, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'nm6yEkGd', '3430267'), + (263, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'nm6yEkGd', '3468125'), + (263, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'nm6yEkGd', '3470303'), + (263, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'nm6yEkGd', '3470991'), + (263, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6yEkGd', '6045684'), + (264, 645, 'attending', '2021-04-28 02:48:05', '2025-12-17 19:47:46', 'oAQv9DN4', '3539920'), + (264, 646, 'attending', '2021-05-09 19:42:39', '2025-12-17 19:47:46', 'oAQv9DN4', '3539921'), + (264, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'oAQv9DN4', '3539922'), + (264, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'oAQv9DN4', '3539923'), + (264, 663, 'not_attending', '2021-05-04 19:47:57', '2025-12-17 19:47:46', 'oAQv9DN4', '3547140'), + (264, 707, 'attending', '2021-04-25 19:22:13', '2025-12-17 19:47:46', 'oAQv9DN4', '3583262'), + (264, 724, 'attending', '2021-05-04 19:47:49', '2025-12-17 19:47:46', 'oAQv9DN4', '3661369'), + (264, 729, 'maybe', '2021-04-28 14:26:15', '2025-12-17 19:47:46', 'oAQv9DN4', '3668075'), + (264, 756, 'attending', '2021-04-26 00:50:34', '2025-12-17 19:47:46', 'oAQv9DN4', '3704795'), + (264, 761, 'attending', '2021-05-09 19:42:33', '2025-12-17 19:47:46', 'oAQv9DN4', '3716041'), + (264, 767, 'attending', '2021-04-27 00:06:37', '2025-12-17 19:47:46', 'oAQv9DN4', '3722476'), + (264, 773, 'attending', '2021-04-26 00:50:42', '2025-12-17 19:47:46', 'oAQv9DN4', '3729399'), + (264, 777, 'attending', '2021-04-28 02:47:17', '2025-12-17 19:47:46', 'oAQv9DN4', '3746248'), + (264, 780, 'attending', '2021-05-04 19:47:52', '2025-12-17 19:47:46', 'oAQv9DN4', '3757175'), + (264, 784, 'attending', '2021-05-04 19:41:55', '2025-12-17 19:47:46', 'oAQv9DN4', '3768775'), + (264, 791, 'attending', '2021-05-09 19:42:09', '2025-12-17 19:47:46', 'oAQv9DN4', '3792735'), + (264, 792, 'attending', '2021-05-08 01:21:16', '2025-12-17 19:47:46', 'oAQv9DN4', '3793156'), + (264, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'oAQv9DN4', '3974109'), + (264, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAQv9DN4', '3975311'), + (264, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'oAQv9DN4', '3975312'), + (264, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQv9DN4', '3994992'), + (264, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'oAQv9DN4', '4014338'), + (264, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'oAQv9DN4', '4021848'), + (264, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAQv9DN4', '4136744'), + (264, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAQv9DN4', '4136937'), + (264, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAQv9DN4', '4136938'), + (264, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAQv9DN4', '4136947'), + (264, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAQv9DN4', '4239259'), + (264, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQv9DN4', '4250163'), + (264, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQv9DN4', '6045684'), + (265, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'kdKjenY4', '3149489'), + (265, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'kdKjenY4', '3149491'), + (265, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'kdKjenY4', '3236450'), + (265, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'kdKjenY4', '3236452'), + (265, 646, 'not_attending', '2021-05-14 05:34:22', '2025-12-17 19:47:46', 'kdKjenY4', '3539921'), + (265, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'kdKjenY4', '3539922'), + (265, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'kdKjenY4', '3539923'), + (265, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'kdKjenY4', '3806392'), + (265, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'kdKjenY4', '3963335'), + (265, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdKjenY4', '3975311'), + (265, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKjenY4', '3975312'), + (265, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKjenY4', '3994992'), + (265, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKjenY4', '4014338'), + (265, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKjenY4', '4136744'), + (265, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKjenY4', '6045684'), + (266, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v81gJWm', '6045684'), + (267, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', '4PNnq6Mm', '5426882'), + (267, 1512, 'attending', '2022-07-15 01:57:19', '2025-12-17 19:47:19', '4PNnq6Mm', '5441112'), + (267, 1513, 'attending', '2022-07-16 00:59:25', '2025-12-17 19:47:19', '4PNnq6Mm', '5441125'), + (267, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4PNnq6Mm', '5441126'), + (267, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4PNnq6Mm', '5441128'), + (267, 1528, 'not_attending', '2022-07-17 17:31:19', '2025-12-17 19:47:20', '4PNnq6Mm', '5446643'), + (267, 1535, 'not_attending', '2022-07-17 16:14:59', '2025-12-17 19:47:20', '4PNnq6Mm', '5448830'), + (267, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', '4PNnq6Mm', '5449068'), + (267, 1537, 'attending', '2022-07-17 16:14:53', '2025-12-17 19:47:20', '4PNnq6Mm', '5449117'), + (267, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4PNnq6Mm', '5453325'), + (267, 1541, 'not_attending', '2022-07-19 02:46:57', '2025-12-17 19:47:20', '4PNnq6Mm', '5453542'), + (267, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4PNnq6Mm', '5454516'), + (267, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4PNnq6Mm', '5454605'), + (267, 1546, 'not_attending', '2022-07-25 15:30:52', '2025-12-17 19:47:20', '4PNnq6Mm', '5454607'), + (267, 1549, 'attending', '2022-07-23 01:47:55', '2025-12-17 19:47:20', '4PNnq6Mm', '5454789'), + (267, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4PNnq6Mm', '5455037'), + (267, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4PNnq6Mm', '5461278'), + (267, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4PNnq6Mm', '5469480'), + (267, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4PNnq6Mm', '5471073'), + (267, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '4PNnq6Mm', '5474663'), + (267, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4PNnq6Mm', '5482022'), + (267, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4PNnq6Mm', '5482793'), + (267, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4PNnq6Mm', '5488912'), + (267, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4PNnq6Mm', '5492192'), + (267, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4PNnq6Mm', '5493139'), + (267, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4PNnq6Mm', '5493200'), + (267, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4PNnq6Mm', '5502188'), + (267, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4PNnq6Mm', '5512862'), + (267, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4PNnq6Mm', '5513985'), + (267, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNnq6Mm', '6045684'), + (268, 2925, 'not_attending', '2024-12-10 05:51:39', '2025-12-17 19:46:21', 'm6qyjWLd', '7713584'), + (268, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6qyjWLd', '7713586'), + (268, 2947, 'not_attending', '2024-12-09 03:11:24', '2025-12-17 19:46:21', 'm6qyjWLd', '7727445'), + (268, 2952, 'attending', '2024-12-11 16:38:02', '2025-12-17 19:46:21', 'm6qyjWLd', '7730167'), + (268, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'm6qyjWLd', '7738518'), + (268, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6qyjWLd', '7750636'), + (268, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6qyjWLd', '7796540'), + (268, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6qyjWLd', '7796541'), + (268, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6qyjWLd', '7796542'), + (268, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6qyjWLd', '7825913'), + (268, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6qyjWLd', '7826209'), + (268, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6qyjWLd', '7834742'), + (268, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6qyjWLd', '7842108'), + (268, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6qyjWLd', '7842902'), + (268, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6qyjWLd', '7842903'), + (268, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6qyjWLd', '7842904'), + (268, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6qyjWLd', '7842905'), + (268, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6qyjWLd', '7855719'), + (268, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6qyjWLd', '7860683'), + (268, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6qyjWLd', '7860684'), + (268, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6qyjWLd', '7866095'), + (268, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6qyjWLd', '7869170'), + (268, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'm6qyjWLd', '7869188'), + (268, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6qyjWLd', '7869201'), + (268, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'm6qyjWLd', '7877465'), + (268, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'm6qyjWLd', '7878570'), + (268, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'm6qyjWLd', '7888250'), + (268, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'm6qyjWLd', '8349164'), + (268, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'm6qyjWLd', '8349545'), + (268, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'm6qyjWLd', '8353584'), + (269, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybqnRwA', '7074364'), + (269, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'mybqnRwA', '7302674'), + (269, 2678, 'maybe', '2024-06-14 13:41:01', '2025-12-17 19:46:28', 'mybqnRwA', '7319489'), + (269, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybqnRwA', '7324073'), + (269, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybqnRwA', '7324074'), + (269, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybqnRwA', '7324075'), + (269, 2691, 'attending', '2024-07-19 22:18:53', '2025-12-17 19:46:30', 'mybqnRwA', '7324076'), + (269, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybqnRwA', '7324078'), + (269, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybqnRwA', '7324082'), + (269, 2702, 'attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mybqnRwA', '7324867'), + (269, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mybqnRwA', '7331457'), + (269, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mybqnRwA', '7356752'), + (269, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mybqnRwA', '7363643'), + (269, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybqnRwA', '7368606'), + (269, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybqnRwA', '7397462'), + (269, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybqnRwA', '7424275'), + (269, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mybqnRwA', '7424276'), + (269, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybqnRwA', '7432751'), + (269, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybqnRwA', '7432752'), + (269, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybqnRwA', '7432753'), + (269, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybqnRwA', '7432754'), + (269, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybqnRwA', '7432755'), + (269, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybqnRwA', '7432756'), + (269, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybqnRwA', '7432758'), + (269, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybqnRwA', '7432759'), + (269, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mybqnRwA', '7433834'), + (269, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybqnRwA', '7470197'), + (269, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybqnRwA', '7685613'), + (269, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybqnRwA', '7688194'), + (269, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybqnRwA', '7688196'), + (269, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybqnRwA', '7688289'), + (270, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mLDwX28m', '6045684'), + (271, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', 'm7QaMGl4', '4420739'), + (271, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'm7QaMGl4', '4420741'), + (271, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'm7QaMGl4', '4420744'), + (271, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'm7QaMGl4', '4420747'), + (271, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm7QaMGl4', '4508342'), + (271, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm7QaMGl4', '4568602'), + (271, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm7QaMGl4', '4572153'), + (271, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'm7QaMGl4', '4585962'), + (271, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm7QaMGl4', '4596356'), + (271, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm7QaMGl4', '4598860'), + (271, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm7QaMGl4', '4598861'), + (271, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm7QaMGl4', '4602797'), + (271, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm7QaMGl4', '4637896'), + (271, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm7QaMGl4', '4642994'), + (271, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm7QaMGl4', '4642995'), + (271, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm7QaMGl4', '4642996'), + (271, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm7QaMGl4', '4642997'), + (271, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm7QaMGl4', '4645687'), + (271, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm7QaMGl4', '4645698'), + (271, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm7QaMGl4', '4645704'), + (271, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm7QaMGl4', '4645705'), + (271, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm7QaMGl4', '4668385'), + (271, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7QaMGl4', '6045684'), + (272, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4knNDqLA', '5441131'), + (272, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4knNDqLA', '5441132'), + (272, 1562, 'not_attending', '2022-08-17 14:05:38', '2025-12-17 19:47:22', '4knNDqLA', '5469480'), + (272, 1575, 'attending', '2022-08-26 22:20:19', '2025-12-17 19:47:23', '4knNDqLA', '5482250'), + (272, 1591, 'attending', '2022-08-15 19:20:15', '2025-12-17 19:47:22', '4knNDqLA', '5493764'), + (272, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4knNDqLA', '5505059'), + (272, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4knNDqLA', '5509055'), + (272, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4knNDqLA', '5512862'), + (272, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4knNDqLA', '5513985'), + (272, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '4knNDqLA', '5519981'), + (272, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4knNDqLA', '5522550'), + (272, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4knNDqLA', '5534683'), + (272, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4knNDqLA', '5537735'), + (272, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4knNDqLA', '5540859'), + (272, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4knNDqLA', '5546619'), + (272, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4knNDqLA', '5555245'), + (272, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4knNDqLA', '5557747'), + (272, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4knNDqLA', '5560255'), + (272, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4knNDqLA', '5562906'), + (272, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4knNDqLA', '5600604'), + (272, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4knNDqLA', '5605544'), + (272, 1699, 'not_attending', '2022-09-26 12:18:45', '2025-12-17 19:47:12', '4knNDqLA', '5606737'), + (272, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4knNDqLA', '5630960'), + (272, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4knNDqLA', '5630961'), + (272, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4knNDqLA', '5630962'), + (272, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4knNDqLA', '5630966'), + (272, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4knNDqLA', '5630967'), + (272, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4knNDqLA', '5630968'), + (272, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4knNDqLA', '5635406'), + (272, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4knNDqLA', '5638765'), + (272, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4knNDqLA', '5640097'), + (272, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4knNDqLA', '5640843'), + (272, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4knNDqLA', '5641521'), + (272, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4knNDqLA', '5642818'), + (272, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4knNDqLA', '5652395'), + (272, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4knNDqLA', '5670445'), + (272, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4knNDqLA', '5671637'), + (272, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4knNDqLA', '5672329'), + (272, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4knNDqLA', '5674057'), + (272, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4knNDqLA', '5674060'), + (272, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4knNDqLA', '5677461'), + (272, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4knNDqLA', '5698046'), + (272, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4knNDqLA', '5699760'), + (272, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4knNDqLA', '5741601'), + (272, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4knNDqLA', '5763458'), + (272, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4knNDqLA', '5774172'), + (272, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4knNDqLA', '5818247'), + (272, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4knNDqLA', '5819471'), + (272, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4knNDqLA', '5827739'), + (272, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4knNDqLA', '5844306'), + (272, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4knNDqLA', '5850159'), + (272, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4knNDqLA', '5858999'), + (272, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4knNDqLA', '5871984'), + (272, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4knNDqLA', '5876354'), + (272, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4knNDqLA', '5880939'), + (272, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4knNDqLA', '5887890'), + (272, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4knNDqLA', '5888598'), + (272, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4knNDqLA', '5893260'), + (272, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4knNDqLA', '6045684'), + (273, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4Z7Znnrd', '6101361'), + (273, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '4Z7Znnrd', '6136733'), + (273, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4Z7Znnrd', '6137989'), + (273, 2098, 'not_attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', '4Z7Znnrd', '6139831'), + (273, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4Z7Znnrd', '6150864'), + (273, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4Z7Znnrd', '6155491'), + (273, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4Z7Znnrd', '6164417'), + (273, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4Z7Znnrd', '6166388'), + (273, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4Z7Znnrd', '6176439'), + (273, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', '4Z7Znnrd', '6177485'), + (273, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4Z7Znnrd', '6182410'), + (273, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4Z7Znnrd', '6185812'), + (273, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4Z7Znnrd', '6187651'), + (273, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4Z7Znnrd', '6187963'), + (273, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4Z7Znnrd', '6187964'), + (273, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4Z7Znnrd', '6187966'), + (273, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4Z7Znnrd', '6187967'), + (273, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4Z7Znnrd', '6187969'), + (273, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4Z7Znnrd', '6334878'), + (274, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mG7jyBwm', '6044839'), + (274, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mG7jyBwm', '6053198'), + (274, 2011, 'not_attending', '2023-04-10 18:04:05', '2025-12-17 19:46:59', 'mG7jyBwm', '6056916'), + (274, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mG7jyBwm', '6059290'), + (274, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mG7jyBwm', '6060328'), + (274, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mG7jyBwm', '6061037'), + (274, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mG7jyBwm', '6061039'), + (274, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mG7jyBwm', '6067245'), + (274, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mG7jyBwm', '6068094'), + (274, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mG7jyBwm', '6068252'), + (274, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mG7jyBwm', '6068253'), + (274, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mG7jyBwm', '6068254'), + (274, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'mG7jyBwm', '6068280'), + (274, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mG7jyBwm', '6069093'), + (274, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mG7jyBwm', '6072528'), + (274, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mG7jyBwm', '6079840'), + (274, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mG7jyBwm', '6083398'), + (274, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'mG7jyBwm', '6093504'), + (274, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mG7jyBwm', '6097414'), + (274, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mG7jyBwm', '6097442'), + (274, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mG7jyBwm', '6097684'), + (274, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mG7jyBwm', '6098762'), + (274, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mG7jyBwm', '6101362'), + (274, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mG7jyBwm', '6107314'), + (274, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mG7jyBwm', '6120034'), + (275, 2521, 'maybe', '2024-06-18 01:19:04', '2025-12-17 19:46:29', 'mybqKV6A', '7074361'), + (275, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybqKV6A', '7074364'), + (275, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'mybqKV6A', '7302674'), + (275, 2678, 'attending', '2024-06-15 17:46:21', '2025-12-17 19:46:28', 'mybqKV6A', '7319489'), + (275, 2683, 'attending', '2024-06-16 01:55:17', '2025-12-17 19:46:28', 'mybqKV6A', '7321978'), + (275, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybqKV6A', '7324073'), + (275, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybqKV6A', '7324074'), + (275, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybqKV6A', '7324075'), + (275, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybqKV6A', '7324078'), + (275, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybqKV6A', '7324082'), + (275, 2706, 'attending', '2024-06-18 01:20:06', '2025-12-17 19:46:28', 'mybqKV6A', '7324947'), + (275, 2720, 'attending', '2024-06-18 20:56:00', '2025-12-17 19:46:28', 'mybqKV6A', '7331436'), + (275, 2721, 'attending', '2024-06-18 22:51:11', '2025-12-17 19:46:29', 'mybqKV6A', '7331456'), + (275, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mybqKV6A', '7331457'), + (275, 2723, 'not_attending', '2024-06-21 18:54:14', '2025-12-17 19:46:29', 'mybqKV6A', '7332389'), + (275, 2746, 'attending', '2024-07-09 22:42:55', '2025-12-17 19:46:29', 'mybqKV6A', '7348713'), + (275, 2747, 'not_attending', '2024-07-17 16:52:24', '2025-12-17 19:46:30', 'mybqKV6A', '7353587'), + (275, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mybqKV6A', '7356752'), + (275, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mybqKV6A', '7363643'), + (275, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybqKV6A', '7368606'), + (275, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybqKV6A', '7397462'), + (275, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybqKV6A', '7424275'), + (275, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mybqKV6A', '7424276'), + (275, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybqKV6A', '7432751'), + (275, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybqKV6A', '7432752'), + (275, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybqKV6A', '7432753'), + (275, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybqKV6A', '7432754'), + (275, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybqKV6A', '7432755'), + (275, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybqKV6A', '7432756'), + (275, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybqKV6A', '7432758'), + (275, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybqKV6A', '7432759'), + (275, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mybqKV6A', '7433834'), + (275, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybqKV6A', '7470197'), + (275, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybqKV6A', '7685613'), + (275, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybqKV6A', '7688194'), + (275, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybqKV6A', '7688196'), + (275, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybqKV6A', '7688289'), + (276, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dJVD5EQd', '7904777'), + (276, 3094, 'attending', '2025-05-04 10:40:46', '2025-12-17 19:46:21', 'dJVD5EQd', '8342292'), + (276, 3106, 'attending', '2025-05-01 02:34:22', '2025-12-17 19:46:20', 'dJVD5EQd', '8349552'), + (276, 3110, 'maybe', '2025-05-04 10:41:10', '2025-12-17 19:46:20', 'dJVD5EQd', '8353484'), + (276, 3112, 'maybe', '2025-05-04 10:41:01', '2025-12-17 19:46:21', 'dJVD5EQd', '8353584'), + (276, 3126, 'not_attending', '2025-05-12 14:56:40', '2025-12-17 19:46:21', 'dJVD5EQd', '8365614'), + (276, 3131, 'attending', '2025-05-14 22:18:48', '2025-12-17 19:46:21', 'dJVD5EQd', '8368028'), + (276, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dJVD5EQd', '8368029'), + (276, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dJVD5EQd', '8388462'), + (276, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dJVD5EQd', '8400273'), + (276, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dJVD5EQd', '8400274'), + (276, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dJVD5EQd', '8400275'), + (276, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dJVD5EQd', '8400276'), + (276, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dJVD5EQd', '8404977'), + (276, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dJVD5EQd', '8430783'), + (276, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dJVD5EQd', '8430784'), + (276, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dJVD5EQd', '8430799'), + (276, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dJVD5EQd', '8430800'), + (276, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dJVD5EQd', '8430801'), + (276, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dJVD5EQd', '8438709'), + (276, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dJVD5EQd', '8457738'), + (276, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dJVD5EQd', '8459566'), + (276, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dJVD5EQd', '8459567'), + (276, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dJVD5EQd', '8461032'), + (276, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dJVD5EQd', '8477877'), + (276, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dJVD5EQd', '8485688'), + (276, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dJVD5EQd', '8490587'), + (276, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dJVD5EQd', '8493552'), + (276, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dJVD5EQd', '8493553'), + (276, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dJVD5EQd', '8493554'), + (276, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dJVD5EQd', '8493555'), + (276, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dJVD5EQd', '8493556'), + (276, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dJVD5EQd', '8493557'), + (276, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dJVD5EQd', '8493558'), + (276, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dJVD5EQd', '8493559'), + (276, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dJVD5EQd', '8493560'), + (276, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dJVD5EQd', '8493561'), + (276, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dJVD5EQd', '8493572'), + (276, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dJVD5EQd', '8540725'), + (276, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dJVD5EQd', '8555421'), + (277, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mLLBzXZm', '6482693'), + (277, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mLLBzXZm', '6484200'), + (277, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'mLLBzXZm', '6484680'), + (277, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mLLBzXZm', '6507741'), + (277, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mLLBzXZm', '6514659'), + (277, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mLLBzXZm', '6514660'), + (277, 2328, 'attending', '2023-11-03 19:15:50', '2025-12-17 19:46:47', 'mLLBzXZm', '6515504'), + (277, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mLLBzXZm', '6519103'), + (277, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mLLBzXZm', '6535681'), + (277, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mLLBzXZm', '6545076'), + (277, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mLLBzXZm', '6584747'), + (277, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mLLBzXZm', '6587097'), + (277, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mLLBzXZm', '6609022'), + (277, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mLLBzXZm', '6632757'), + (277, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mLLBzXZm', '6644187'), + (277, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mLLBzXZm', '6648951'), + (277, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mLLBzXZm', '6648952'), + (277, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mLLBzXZm', '6651141'), + (277, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mLLBzXZm', '6655401'), + (277, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mLLBzXZm', '6661585'), + (277, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mLLBzXZm', '6661588'), + (277, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mLLBzXZm', '6661589'), + (277, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mLLBzXZm', '6699906'), + (277, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mLLBzXZm', '6699913'), + (277, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mLLBzXZm', '6701109'), + (277, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mLLBzXZm', '6705219'), + (277, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mLLBzXZm', '6710153'), + (277, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mLLBzXZm', '6711552'), + (277, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mLLBzXZm', '6711553'), + (277, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mLLBzXZm', '6722688'), + (277, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mLLBzXZm', '6730620'), + (277, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mLLBzXZm', '6730642'), + (277, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mLLBzXZm', '6740364'), + (277, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mLLBzXZm', '6743829'), + (277, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mLLBzXZm', '7030380'), + (277, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mLLBzXZm', '7033677'), + (277, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mLLBzXZm', '7035415'), + (277, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mLLBzXZm', '7044715'), + (277, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mLLBzXZm', '7050318'), + (277, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mLLBzXZm', '7050319'), + (277, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mLLBzXZm', '7050322'), + (277, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mLLBzXZm', '7057804'), + (277, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mLLBzXZm', '7072824'), + (277, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mLLBzXZm', '7074348'), + (277, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mLLBzXZm', '7089267'), + (277, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mLLBzXZm', '7098747'), + (277, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mLLBzXZm', '7113468'), + (277, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mLLBzXZm', '7114856'), + (277, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mLLBzXZm', '7114951'), + (277, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mLLBzXZm', '7114955'), + (277, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mLLBzXZm', '7114956'), + (277, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mLLBzXZm', '7153615'), + (277, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mLLBzXZm', '7159484'), + (277, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mLLBzXZm', '7178446'), + (278, 1097, 'attending', '2021-11-03 05:34:40', '2025-12-17 19:47:36', 'AYzJ2nw4', '4598860'), + (278, 1098, 'attending', '2021-11-04 02:34:28', '2025-12-17 19:47:36', 'AYzJ2nw4', '4598861'), + (278, 1103, 'attending', '2021-11-07 16:20:23', '2025-12-17 19:47:36', 'AYzJ2nw4', '4616350'), + (278, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AYzJ2nw4', '4637896'), + (278, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AYzJ2nw4', '4642994'), + (278, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'AYzJ2nw4', '4642995'), + (278, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AYzJ2nw4', '4642996'), + (278, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AYzJ2nw4', '4642997'), + (278, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AYzJ2nw4', '4645687'), + (278, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AYzJ2nw4', '4645698'), + (278, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AYzJ2nw4', '4645704'), + (278, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AYzJ2nw4', '4645705'), + (278, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AYzJ2nw4', '4668385'), + (278, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'AYzJ2nw4', '4694407'), + (278, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYzJ2nw4', '6045684'), + (279, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dN9VnnW4', '4736503'), + (279, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dN9VnnW4', '4736504'), + (279, 1257, 'attending', '2022-03-01 00:21:23', '2025-12-17 19:47:33', 'dN9VnnW4', '5129274'), + (279, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dN9VnnW4', '5132533'), + (279, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dN9VnnW4', '5186582'), + (279, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dN9VnnW4', '5186583'), + (279, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dN9VnnW4', '5186585'), + (279, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dN9VnnW4', '5190437'), + (279, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dN9VnnW4', '5215989'), + (279, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dN9VnnW4', '6045684'), + (280, 538, 'attending', '2022-01-12 00:31:05', '2025-12-17 19:47:48', '4ZkX9bLd', '3388151'), + (280, 864, 'not_attending', '2021-11-14 03:27:52', '2025-12-17 19:47:37', '4ZkX9bLd', '4015998'), + (280, 1079, 'attending', '2021-10-21 03:52:03', '2025-12-17 19:47:35', '4ZkX9bLd', '4563823'), + (280, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '4ZkX9bLd', '4585962'), + (280, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4ZkX9bLd', '4596356'), + (280, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4ZkX9bLd', '4598860'), + (280, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4ZkX9bLd', '4598861'), + (280, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4ZkX9bLd', '4602797'), + (280, 1103, 'attending', '2021-11-13 21:18:21', '2025-12-17 19:47:36', '4ZkX9bLd', '4616350'), + (280, 1114, 'attending', '2021-11-14 00:05:50', '2025-12-17 19:47:36', '4ZkX9bLd', '4637896'), + (280, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4ZkX9bLd', '4642994'), + (280, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4ZkX9bLd', '4642995'), + (280, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4ZkX9bLd', '4642996'), + (280, 1119, 'attending', '2021-12-23 00:58:08', '2025-12-17 19:47:31', '4ZkX9bLd', '4642997'), + (280, 1120, 'attending', '2021-11-14 03:27:32', '2025-12-17 19:47:37', '4ZkX9bLd', '4644021'), + (280, 1126, 'attending', '2021-12-11 23:39:29', '2025-12-17 19:47:38', '4ZkX9bLd', '4645687'), + (280, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4ZkX9bLd', '4645698'), + (280, 1128, 'attending', '2021-11-18 18:46:13', '2025-12-17 19:47:37', '4ZkX9bLd', '4645704'), + (280, 1129, 'attending', '2021-11-24 21:01:36', '2025-12-17 19:47:37', '4ZkX9bLd', '4645705'), + (280, 1130, 'attending', '2021-12-04 17:38:18', '2025-12-17 19:47:37', '4ZkX9bLd', '4658824'), + (280, 1131, 'not_attending', '2021-12-18 17:04:27', '2025-12-17 19:47:31', '4ZkX9bLd', '4658825'), + (280, 1132, 'attending', '2021-11-23 00:01:41', '2025-12-17 19:47:37', '4ZkX9bLd', '4660657'), + (280, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4ZkX9bLd', '4668385'), + (280, 1139, 'maybe', '2021-12-01 21:34:06', '2025-12-17 19:47:37', '4ZkX9bLd', '4675604'), + (280, 1140, 'maybe', '2021-12-01 21:34:09', '2025-12-17 19:47:37', '4ZkX9bLd', '4679701'), + (280, 1147, 'attending', '2021-12-12 15:06:09', '2025-12-17 19:47:38', '4ZkX9bLd', '4692842'), + (280, 1148, 'attending', '2021-12-16 04:40:47', '2025-12-17 19:47:31', '4ZkX9bLd', '4692843'), + (280, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4ZkX9bLd', '4694407'), + (280, 1152, 'not_attending', '2022-01-11 03:28:50', '2025-12-17 19:47:31', '4ZkX9bLd', '4708705'), + (280, 1153, 'not_attending', '2022-01-19 02:01:57', '2025-12-17 19:47:32', '4ZkX9bLd', '4708707'), + (280, 1154, 'not_attending', '2022-01-23 21:33:18', '2025-12-17 19:47:32', '4ZkX9bLd', '4708708'), + (280, 1155, 'attending', '2021-12-18 17:04:38', '2025-12-17 19:47:31', '4ZkX9bLd', '4715119'), + (280, 1156, 'attending', '2021-12-20 23:53:01', '2025-12-17 19:47:31', '4ZkX9bLd', '4715207'), + (280, 1164, 'attending', '2021-12-28 00:54:21', '2025-12-17 19:47:31', '4ZkX9bLd', '4724208'), + (280, 1165, 'not_attending', '2021-12-28 00:54:24', '2025-12-17 19:47:31', '4ZkX9bLd', '4724210'), + (280, 1167, 'not_attending', '2022-01-06 23:52:49', '2025-12-17 19:47:31', '4ZkX9bLd', '4731015'), + (280, 1170, 'not_attending', '2022-01-09 23:48:42', '2025-12-17 19:47:31', '4ZkX9bLd', '4731045'), + (280, 1173, 'attending', '2022-01-08 20:58:27', '2025-12-17 19:47:31', '4ZkX9bLd', '4736495'), + (280, 1174, 'attending', '2022-01-12 00:33:02', '2025-12-17 19:47:31', '4ZkX9bLd', '4736496'), + (280, 1175, 'attending', '2022-01-23 00:19:51', '2025-12-17 19:47:32', '4ZkX9bLd', '4736497'), + (280, 1176, 'attending', '2022-02-01 00:32:00', '2025-12-17 19:47:32', '4ZkX9bLd', '4736498'), + (280, 1177, 'attending', '2022-02-08 14:21:19', '2025-12-17 19:47:32', '4ZkX9bLd', '4736499'), + (280, 1178, 'attending', '2022-01-23 06:32:14', '2025-12-17 19:47:32', '4ZkX9bLd', '4736500'), + (280, 1179, 'attending', '2022-02-16 02:31:04', '2025-12-17 19:47:32', '4ZkX9bLd', '4736501'), + (280, 1180, 'attending', '2022-02-23 03:06:14', '2025-12-17 19:47:33', '4ZkX9bLd', '4736502'), + (280, 1181, 'not_attending', '2022-03-05 20:14:42', '2025-12-17 19:47:33', '4ZkX9bLd', '4736503'), + (280, 1182, 'attending', '2022-03-07 18:30:26', '2025-12-17 19:47:33', '4ZkX9bLd', '4736504'), + (280, 1184, 'attending', '2022-01-15 00:50:47', '2025-12-17 19:47:31', '4ZkX9bLd', '4742350'), + (280, 1185, 'not_attending', '2022-01-12 13:39:58', '2025-12-17 19:47:31', '4ZkX9bLd', '4746789'), + (280, 1188, 'attending', '2022-01-17 18:47:17', '2025-12-17 19:47:31', '4ZkX9bLd', '4753929'), + (280, 1197, 'not_attending', '2022-01-25 13:26:32', '2025-12-17 19:47:32', '4ZkX9bLd', '4766799'), + (280, 1198, 'not_attending', '2022-01-24 23:49:09', '2025-12-17 19:47:32', '4ZkX9bLd', '4766801'), + (280, 1199, 'attending', '2022-01-24 21:33:42', '2025-12-17 19:47:32', '4ZkX9bLd', '4766802'), + (280, 1200, 'attending', '2022-01-18 02:25:33', '2025-12-17 19:47:32', '4ZkX9bLd', '4766830'), + (280, 1202, 'attending', '2022-01-19 18:26:43', '2025-12-17 19:47:32', '4ZkX9bLd', '4769423'), + (280, 1217, 'not_attending', '2022-01-30 20:34:53', '2025-12-17 19:47:32', '4ZkX9bLd', '4781139'), + (280, 1219, 'not_attending', '2022-02-01 22:22:46', '2025-12-17 19:47:32', '4ZkX9bLd', '4788466'), + (280, 1221, 'not_attending', '2022-01-29 21:45:22', '2025-12-17 19:47:32', '4ZkX9bLd', '4790261'), + (280, 1222, 'not_attending', '2022-02-16 02:30:30', '2025-12-17 19:47:32', '4ZkX9bLd', '5015628'), + (280, 1224, 'attending', '2022-01-31 15:52:43', '2025-12-17 19:47:32', '4ZkX9bLd', '5016682'), + (280, 1228, 'not_attending', '2022-02-08 18:37:21', '2025-12-17 19:47:32', '4ZkX9bLd', '5028238'), + (280, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4ZkX9bLd', '5038850'), + (280, 1234, 'attending', '2022-02-13 02:42:13', '2025-12-17 19:47:32', '4ZkX9bLd', '5042197'), + (280, 1236, 'attending', '2022-02-16 02:29:32', '2025-12-17 19:47:32', '4ZkX9bLd', '5045826'), + (280, 1237, 'not_attending', '2022-02-16 04:00:33', '2025-12-17 19:47:32', '4ZkX9bLd', '5050641'), + (280, 1238, 'maybe', '2022-02-24 01:13:36', '2025-12-17 19:47:32', '4ZkX9bLd', '5052236'), + (280, 1240, 'not_attending', '2022-03-14 21:03:24', '2025-12-17 19:47:33', '4ZkX9bLd', '5052239'), + (280, 1241, 'not_attending', '2022-03-23 16:55:09', '2025-12-17 19:47:25', '4ZkX9bLd', '5052240'), + (280, 1242, 'not_attending', '2022-03-29 20:27:07', '2025-12-17 19:47:25', '4ZkX9bLd', '5052241'), + (280, 1248, 'attending', '2022-02-23 18:49:47', '2025-12-17 19:47:33', '4ZkX9bLd', '5065064'), + (280, 1255, 'attending', '2022-03-01 02:15:42', '2025-12-17 19:47:33', '4ZkX9bLd', '5129140'), + (280, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4ZkX9bLd', '5132533'), + (280, 1262, 'attending', '2022-03-10 14:02:07', '2025-12-17 19:47:33', '4ZkX9bLd', '5157773'), + (280, 1264, 'not_attending', '2022-03-22 23:20:50', '2025-12-17 19:47:25', '4ZkX9bLd', '5160281'), + (280, 1266, 'not_attending', '2022-03-15 00:14:41', '2025-12-17 19:47:33', '4ZkX9bLd', '5166407'), + (280, 1270, 'not_attending', '2022-03-20 16:21:19', '2025-12-17 19:47:25', '4ZkX9bLd', '5181277'), + (280, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4ZkX9bLd', '5186582'), + (280, 1273, 'attending', '2022-03-26 21:40:22', '2025-12-17 19:47:25', '4ZkX9bLd', '5186583'), + (280, 1274, 'attending', '2022-04-02 13:55:42', '2025-12-17 19:47:26', '4ZkX9bLd', '5186585'), + (280, 1276, 'attending', '2022-03-27 00:35:54', '2025-12-17 19:47:25', '4ZkX9bLd', '5186820'), + (280, 1279, 'not_attending', '2022-03-20 20:54:06', '2025-12-17 19:47:25', '4ZkX9bLd', '5187212'), + (280, 1281, 'attending', '2022-04-04 17:32:36', '2025-12-17 19:47:27', '4ZkX9bLd', '5190437'), + (280, 1284, 'not_attending', '2022-04-16 19:09:05', '2025-12-17 19:47:27', '4ZkX9bLd', '5195095'), + (280, 1294, 'attending', '2022-03-30 03:19:11', '2025-12-17 19:47:26', '4ZkX9bLd', '5214686'), + (280, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4ZkX9bLd', '5215989'), + (280, 1302, 'not_attending', '2022-04-03 03:54:41', '2025-12-17 19:47:27', '4ZkX9bLd', '5220867'), + (280, 1304, 'not_attending', '2022-04-04 12:56:57', '2025-12-17 19:47:26', '4ZkX9bLd', '5223468'), + (280, 1305, 'attending', '2022-04-04 17:33:28', '2025-12-17 19:47:27', '4ZkX9bLd', '5223673'), + (280, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4ZkX9bLd', '5223686'), + (280, 1308, 'not_attending', '2022-04-08 20:36:21', '2025-12-17 19:47:27', '4ZkX9bLd', '5226703'), + (280, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4ZkX9bLd', '5227432'), + (280, 1315, 'not_attending', '2022-04-22 01:17:23', '2025-12-17 19:47:27', '4ZkX9bLd', '5237522'), + (280, 1317, 'not_attending', '2022-04-11 04:09:30', '2025-12-17 19:47:27', '4ZkX9bLd', '5237543'), + (280, 1320, 'not_attending', '2022-04-24 22:46:25', '2025-12-17 19:47:27', '4ZkX9bLd', '5238354'), + (280, 1322, 'not_attending', '2022-04-26 00:04:38', '2025-12-17 19:47:27', '4ZkX9bLd', '5238356'), + (280, 1324, 'maybe', '2022-04-15 03:16:46', '2025-12-17 19:47:27', '4ZkX9bLd', '5238360'), + (280, 1326, 'attending', '2022-05-01 01:47:27', '2025-12-17 19:47:28', '4ZkX9bLd', '5238362'), + (280, 1336, 'attending', '2022-04-15 02:25:17', '2025-12-17 19:47:27', '4ZkX9bLd', '5244915'), + (280, 1337, 'attending', '2022-04-15 02:25:27', '2025-12-17 19:47:27', '4ZkX9bLd', '5245036'), + (280, 1346, 'attending', '2022-04-17 20:01:15', '2025-12-17 19:47:27', '4ZkX9bLd', '5247467'), + (280, 1348, 'maybe', '2022-05-01 17:49:57', '2025-12-17 19:47:28', '4ZkX9bLd', '5247605'), + (280, 1350, 'not_attending', '2022-04-19 20:22:52', '2025-12-17 19:47:27', '4ZkX9bLd', '5249763'), + (280, 1357, 'attending', '2022-04-25 17:54:54', '2025-12-17 19:47:27', '4ZkX9bLd', '5256017'), + (280, 1362, 'not_attending', '2022-04-25 23:30:23', '2025-12-17 19:47:28', '4ZkX9bLd', '5260800'), + (280, 1374, 'attending', '2022-04-30 21:27:01', '2025-12-17 19:47:28', '4ZkX9bLd', '5269930'), + (280, 1375, 'not_attending', '2022-05-05 23:49:41', '2025-12-17 19:47:28', '4ZkX9bLd', '5269932'), + (280, 1378, 'attending', '2022-05-08 14:18:49', '2025-12-17 19:47:28', '4ZkX9bLd', '5271448'), + (280, 1379, 'attending', '2022-05-20 12:30:27', '2025-12-17 19:47:29', '4ZkX9bLd', '5271449'), + (280, 1380, 'not_attending', '2022-05-08 14:19:23', '2025-12-17 19:47:30', '4ZkX9bLd', '5271450'), + (280, 1383, 'not_attending', '2022-05-08 22:10:10', '2025-12-17 19:47:28', '4ZkX9bLd', '5276469'), + (280, 1385, 'not_attending', '2022-05-07 19:43:58', '2025-12-17 19:47:28', '4ZkX9bLd', '5277822'), + (280, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4ZkX9bLd', '5278159'), + (280, 1392, 'not_attending', '2022-05-10 22:45:25', '2025-12-17 19:47:28', '4ZkX9bLd', '5279532'), + (280, 1401, 'not_attending', '2022-05-11 09:36:39', '2025-12-17 19:47:29', '4ZkX9bLd', '5286295'), + (280, 1403, 'not_attending', '2022-05-17 03:40:22', '2025-12-17 19:47:29', '4ZkX9bLd', '5288052'), + (280, 1407, 'attending', '2022-05-15 13:21:27', '2025-12-17 19:47:30', '4ZkX9bLd', '5363695'), + (280, 1408, 'not_attending', '2022-05-20 02:45:57', '2025-12-17 19:47:29', '4ZkX9bLd', '5365960'), + (280, 1414, 'not_attending', '2022-05-20 13:54:07', '2025-12-17 19:47:29', '4ZkX9bLd', '5368445'), + (280, 1415, 'attending', '2022-05-19 16:13:18', '2025-12-17 19:47:30', '4ZkX9bLd', '5368973'), + (280, 1419, 'not_attending', '2022-05-26 22:42:32', '2025-12-17 19:47:30', '4ZkX9bLd', '5373081'), + (280, 1423, 'not_attending', '2022-06-16 00:31:57', '2025-12-17 19:47:17', '4ZkX9bLd', '5375727'), + (280, 1428, 'not_attending', '2022-06-06 17:08:57', '2025-12-17 19:47:30', '4ZkX9bLd', '5378247'), + (280, 1431, 'attending', '2022-06-03 03:16:29', '2025-12-17 19:47:30', '4ZkX9bLd', '5389605'), + (280, 1441, 'not_attending', '2022-06-05 13:42:17', '2025-12-17 19:47:30', '4ZkX9bLd', '5397171'), + (280, 1442, 'not_attending', '2022-06-19 02:53:26', '2025-12-17 19:47:17', '4ZkX9bLd', '5397265'), + (280, 1446, 'not_attending', '2022-06-09 04:39:39', '2025-12-17 19:47:30', '4ZkX9bLd', '5399721'), + (280, 1451, 'attending', '2022-06-09 21:32:48', '2025-12-17 19:47:17', '4ZkX9bLd', '5403967'), + (280, 1455, 'not_attending', '2022-06-10 01:40:25', '2025-12-17 19:47:31', '4ZkX9bLd', '5404772'), + (280, 1458, 'not_attending', '2022-06-18 22:35:57', '2025-12-17 19:47:17', '4ZkX9bLd', '5404786'), + (280, 1462, 'not_attending', '2022-06-11 03:34:54', '2025-12-17 19:47:17', '4ZkX9bLd', '5405203'), + (280, 1463, 'not_attending', '2022-06-12 19:24:44', '2025-12-17 19:47:31', '4ZkX9bLd', '5405208'), + (280, 1466, 'not_attending', '2022-06-16 03:20:45', '2025-12-17 19:47:17', '4ZkX9bLd', '5406427'), + (280, 1470, 'not_attending', '2022-06-13 01:59:52', '2025-12-17 19:47:17', '4ZkX9bLd', '5407053'), + (280, 1473, 'not_attending', '2022-06-13 12:19:40', '2025-12-17 19:47:31', '4ZkX9bLd', '5407267'), + (280, 1476, 'attending', '2022-06-15 18:31:02', '2025-12-17 19:47:17', '4ZkX9bLd', '5408130'), + (280, 1478, 'attending', '2022-06-15 17:48:05', '2025-12-17 19:47:17', '4ZkX9bLd', '5408794'), + (280, 1480, 'attending', '2022-06-20 17:45:31', '2025-12-17 19:47:19', '4ZkX9bLd', '5411699'), + (280, 1482, 'attending', '2022-06-19 19:51:00', '2025-12-17 19:47:19', '4ZkX9bLd', '5412550'), + (280, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4ZkX9bLd', '5415046'), + (280, 1485, 'not_attending', '2022-06-21 20:24:20', '2025-12-17 19:47:17', '4ZkX9bLd', '5416276'), + (280, 1495, 'not_attending', '2022-06-27 01:52:19', '2025-12-17 19:47:19', '4ZkX9bLd', '5422086'), + (280, 1498, 'not_attending', '2022-06-29 17:43:48', '2025-12-17 19:47:19', '4ZkX9bLd', '5422406'), + (280, 1499, 'not_attending', '2022-06-29 17:43:51', '2025-12-17 19:47:19', '4ZkX9bLd', '5422407'), + (280, 1501, 'maybe', '2022-06-29 22:28:55', '2025-12-17 19:47:19', '4ZkX9bLd', '5424546'), + (280, 1502, 'not_attending', '2022-07-08 21:51:49', '2025-12-17 19:47:19', '4ZkX9bLd', '5424565'), + (280, 1504, 'attending', '2022-07-04 16:49:13', '2025-12-17 19:47:19', '4ZkX9bLd', '5426882'), + (280, 1505, 'attending', '2022-07-01 01:31:26', '2025-12-17 19:47:19', '4ZkX9bLd', '5427083'), + (280, 1507, 'not_attending', '2022-07-04 16:50:19', '2025-12-17 19:47:19', '4ZkX9bLd', '5433100'), + (280, 1508, 'attending', '2022-07-04 16:49:39', '2025-12-17 19:47:19', '4ZkX9bLd', '5433453'), + (280, 1511, 'not_attending', '2022-07-06 23:39:05', '2025-12-17 19:47:19', '4ZkX9bLd', '5437733'), + (280, 1513, 'not_attending', '2022-07-11 04:42:43', '2025-12-17 19:47:20', '4ZkX9bLd', '5441125'), + (280, 1514, 'attending', '2022-07-09 06:09:14', '2025-12-17 19:47:20', '4ZkX9bLd', '5441126'), + (280, 1515, 'attending', '2022-07-09 06:09:20', '2025-12-17 19:47:21', '4ZkX9bLd', '5441128'), + (280, 1516, 'attending', '2022-08-01 00:07:19', '2025-12-17 19:47:23', '4ZkX9bLd', '5441129'), + (280, 1517, 'not_attending', '2022-08-11 15:38:47', '2025-12-17 19:47:23', '4ZkX9bLd', '5441130'), + (280, 1518, 'attending', '2022-08-24 18:38:42', '2025-12-17 19:47:24', '4ZkX9bLd', '5441131'), + (280, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '4ZkX9bLd', '5441132'), + (280, 1520, 'not_attending', '2022-07-11 23:29:30', '2025-12-17 19:47:19', '4ZkX9bLd', '5441645'), + (280, 1522, 'attending', '2022-07-10 19:51:56', '2025-12-17 19:47:20', '4ZkX9bLd', '5442832'), + (280, 1524, 'maybe', '2022-07-11 21:22:10', '2025-12-17 19:47:19', '4ZkX9bLd', '5443300'), + (280, 1528, 'attending', '2022-07-13 23:05:18', '2025-12-17 19:47:20', '4ZkX9bLd', '5446643'), + (280, 1529, 'not_attending', '2022-07-15 16:09:27', '2025-12-17 19:47:19', '4ZkX9bLd', '5447079'), + (280, 1531, 'not_attending', '2022-07-16 18:48:44', '2025-12-17 19:47:19', '4ZkX9bLd', '5448756'), + (280, 1533, 'attending', '2022-07-30 19:29:21', '2025-12-17 19:47:21', '4ZkX9bLd', '5448758'), + (280, 1536, 'maybe', '2022-07-16 18:49:28', '2025-12-17 19:47:20', '4ZkX9bLd', '5449068'), + (280, 1539, 'not_attending', '2022-07-17 23:16:37', '2025-12-17 19:47:21', '4ZkX9bLd', '5449671'), + (280, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4ZkX9bLd', '5453325'), + (280, 1541, 'maybe', '2022-07-18 17:58:27', '2025-12-17 19:47:20', '4ZkX9bLd', '5453542'), + (280, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4ZkX9bLd', '5454516'), + (280, 1544, 'attending', '2022-09-13 01:06:38', '2025-12-17 19:47:11', '4ZkX9bLd', '5454517'), + (280, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4ZkX9bLd', '5454605'), + (280, 1546, 'not_attending', '2022-07-19 16:30:23', '2025-12-17 19:47:20', '4ZkX9bLd', '5454607'), + (280, 1547, 'not_attending', '2022-07-20 18:43:51', '2025-12-17 19:47:20', '4ZkX9bLd', '5454608'), + (280, 1550, 'maybe', '2022-07-22 00:23:44', '2025-12-17 19:47:20', '4ZkX9bLd', '5454803'), + (280, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4ZkX9bLd', '5455037'), + (280, 1557, 'not_attending', '2022-08-01 00:06:27', '2025-12-17 19:47:21', '4ZkX9bLd', '5458729'), + (280, 1558, 'not_attending', '2022-09-13 01:06:31', '2025-12-17 19:47:10', '4ZkX9bLd', '5458730'), + (280, 1559, 'not_attending', '2022-09-24 12:49:36', '2025-12-17 19:47:11', '4ZkX9bLd', '5458731'), + (280, 1561, 'not_attending', '2022-07-28 21:09:57', '2025-12-17 19:47:22', '4ZkX9bLd', '5461278'), + (280, 1562, 'not_attending', '2022-08-01 00:07:26', '2025-12-17 19:47:22', '4ZkX9bLd', '5469480'), + (280, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4ZkX9bLd', '5471073'), + (280, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4ZkX9bLd', '5474663'), + (280, 1567, 'attending', '2022-08-01 00:05:59', '2025-12-17 19:47:21', '4ZkX9bLd', '5477629'), + (280, 1568, 'not_attending', '2022-08-01 01:38:59', '2025-12-17 19:47:21', '4ZkX9bLd', '5480628'), + (280, 1569, 'maybe', '2022-08-01 17:27:49', '2025-12-17 19:47:21', '4ZkX9bLd', '5481507'), + (280, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4ZkX9bLd', '5482022'), + (280, 1572, 'not_attending', '2022-08-02 16:24:08', '2025-12-17 19:47:22', '4ZkX9bLd', '5482078'), + (280, 1575, 'not_attending', '2022-08-05 02:05:56', '2025-12-17 19:47:23', '4ZkX9bLd', '5482250'), + (280, 1577, 'attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4ZkX9bLd', '5482793'), + (280, 1579, 'not_attending', '2022-08-04 02:50:18', '2025-12-17 19:47:22', '4ZkX9bLd', '5486019'), + (280, 1580, 'attending', '2022-08-07 02:12:47', '2025-12-17 19:47:22', '4ZkX9bLd', '5488912'), + (280, 1581, 'not_attending', '2022-08-07 18:29:50', '2025-12-17 19:47:22', '4ZkX9bLd', '5490302'), + (280, 1586, 'attending', '2022-08-09 19:44:57', '2025-12-17 19:47:23', '4ZkX9bLd', '5492019'), + (280, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4ZkX9bLd', '5492192'), + (280, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4ZkX9bLd', '5493139'), + (280, 1589, 'attending', '2022-08-12 18:19:19', '2025-12-17 19:47:23', '4ZkX9bLd', '5493159'), + (280, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', '4ZkX9bLd', '5493200'), + (280, 1593, 'maybe', '2022-08-10 17:49:41', '2025-12-17 19:47:22', '4ZkX9bLd', '5494043'), + (280, 1595, 'not_attending', '2022-08-10 01:09:42', '2025-12-17 19:47:22', '4ZkX9bLd', '5495736'), + (280, 1603, 'not_attending', '2022-08-19 20:53:51', '2025-12-17 19:47:23', '4ZkX9bLd', '5497895'), + (280, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4ZkX9bLd', '5502188'), + (280, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4ZkX9bLd', '5505059'), + (280, 1609, 'attending', '2022-08-18 13:00:13', '2025-12-17 19:47:23', '4ZkX9bLd', '5506590'), + (280, 1610, 'attending', '2022-08-18 13:00:23', '2025-12-17 19:47:23', '4ZkX9bLd', '5506595'), + (280, 1615, 'not_attending', '2022-08-25 23:57:11', '2025-12-17 19:47:23', '4ZkX9bLd', '5509055'), + (280, 1618, 'attending', '2022-08-22 03:52:04', '2025-12-17 19:47:23', '4ZkX9bLd', '5512005'), + (280, 1619, 'not_attending', '2022-08-23 22:28:55', '2025-12-17 19:47:23', '4ZkX9bLd', '5512862'), + (280, 1620, 'not_attending', '2022-08-23 02:32:43', '2025-12-17 19:47:23', '4ZkX9bLd', '5513046'), + (280, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4ZkX9bLd', '5513985'), + (280, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', '4ZkX9bLd', '5519981'), + (280, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4ZkX9bLd', '5522550'), + (280, 1630, 'attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4ZkX9bLd', '5534683'), + (280, 1635, 'not_attending', '2022-09-13 01:06:35', '2025-12-17 19:47:10', '4ZkX9bLd', '5537735'), + (280, 1637, 'attending', '2022-08-31 03:33:20', '2025-12-17 19:47:24', '4ZkX9bLd', '5539591'), + (280, 1640, 'maybe', '2022-09-13 01:06:33', '2025-12-17 19:47:10', '4ZkX9bLd', '5540859'), + (280, 1643, 'not_attending', '2022-09-18 15:52:30', '2025-12-17 19:47:11', '4ZkX9bLd', '5545856'), + (280, 1644, 'attending', '2022-09-13 01:06:21', '2025-12-17 19:47:11', '4ZkX9bLd', '5545857'), + (280, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4ZkX9bLd', '5546619'), + (280, 1647, 'not_attending', '2022-09-13 21:43:18', '2025-12-17 19:47:11', '4ZkX9bLd', '5548660'), + (280, 1653, 'maybe', '2022-09-19 17:28:27', '2025-12-17 19:47:11', '4ZkX9bLd', '5554400'), + (280, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4ZkX9bLd', '5555245'), + (280, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4ZkX9bLd', '5557747'), + (280, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4ZkX9bLd', '5560255'), + (280, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4ZkX9bLd', '5562906'), + (280, 1665, 'attending', '2022-09-13 01:06:27', '2025-12-17 19:47:25', '4ZkX9bLd', '5563133'), + (280, 1667, 'attending', '2022-09-20 17:49:24', '2025-12-17 19:47:11', '4ZkX9bLd', '5563221'), + (280, 1668, 'not_attending', '2022-09-25 03:07:52', '2025-12-17 19:47:12', '4ZkX9bLd', '5563222'), + (280, 1673, 'not_attending', '2022-09-29 03:55:55', '2025-12-17 19:47:11', '4ZkX9bLd', '5592454'), + (280, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4ZkX9bLd', '5600604'), + (280, 1679, 'attending', '2022-10-03 17:41:06', '2025-12-17 19:47:12', '4ZkX9bLd', '5601099'), + (280, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4ZkX9bLd', '5605544'), + (280, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', '4ZkX9bLd', '5606737'), + (280, 1704, 'not_attending', '2022-10-06 22:18:38', '2025-12-17 19:47:12', '4ZkX9bLd', '5610508'), + (280, 1718, 'attending', '2022-10-18 23:10:16', '2025-12-17 19:47:12', '4ZkX9bLd', '5630907'), + (280, 1719, 'attending', '2022-10-05 17:32:40', '2025-12-17 19:47:12', '4ZkX9bLd', '5630958'), + (280, 1720, 'attending', '2022-10-05 17:32:44', '2025-12-17 19:47:12', '4ZkX9bLd', '5630959'), + (280, 1721, 'not_attending', '2022-10-05 17:32:47', '2025-12-17 19:47:13', '4ZkX9bLd', '5630960'), + (280, 1722, 'attending', '2022-10-14 21:49:45', '2025-12-17 19:47:14', '4ZkX9bLd', '5630961'), + (280, 1723, 'attending', '2022-10-31 17:47:03', '2025-12-17 19:47:15', '4ZkX9bLd', '5630962'), + (280, 1724, 'attending', '2022-10-31 17:47:07', '2025-12-17 19:47:15', '4ZkX9bLd', '5630966'), + (280, 1725, 'attending', '2022-10-31 17:47:11', '2025-12-17 19:47:16', '4ZkX9bLd', '5630967'), + (280, 1726, 'attending', '2022-11-14 03:48:21', '2025-12-17 19:47:16', '4ZkX9bLd', '5630968'), + (280, 1727, 'attending', '2022-11-29 18:44:09', '2025-12-17 19:47:16', '4ZkX9bLd', '5630969'), + (280, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4ZkX9bLd', '5635406'), + (280, 1736, 'not_attending', '2022-10-24 01:18:03', '2025-12-17 19:47:15', '4ZkX9bLd', '5638456'), + (280, 1737, 'not_attending', '2022-11-23 23:57:32', '2025-12-17 19:47:16', '4ZkX9bLd', '5638457'), + (280, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4ZkX9bLd', '5638765'), + (280, 1739, 'not_attending', '2022-10-21 20:51:48', '2025-12-17 19:47:14', '4ZkX9bLd', '5640097'), + (280, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4ZkX9bLd', '5640843'), + (280, 1742, 'not_attending', '2022-10-10 18:30:16', '2025-12-17 19:47:13', '4ZkX9bLd', '5641245'), + (280, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4ZkX9bLd', '5641521'), + (280, 1744, 'not_attending', '2022-11-23 18:37:24', '2025-12-17 19:47:16', '4ZkX9bLd', '5642818'), + (280, 1745, 'not_attending', '2022-10-11 17:40:25', '2025-12-17 19:47:12', '4ZkX9bLd', '5643088'), + (280, 1747, 'attending', '2022-10-12 20:43:59', '2025-12-17 19:47:13', '4ZkX9bLd', '5648009'), + (280, 1750, 'not_attending', '2022-11-04 12:10:55', '2025-12-17 19:47:15', '4ZkX9bLd', '5652365'), + (280, 1751, 'not_attending', '2022-10-16 17:45:57', '2025-12-17 19:47:13', '4ZkX9bLd', '5652395'), + (280, 1756, 'not_attending', '2022-10-19 03:36:43', '2025-12-17 19:47:13', '4ZkX9bLd', '5663338'), + (280, 1757, 'maybe', '2022-10-25 20:25:25', '2025-12-17 19:47:15', '4ZkX9bLd', '5668974'), + (280, 1761, 'not_attending', '2022-11-14 03:48:39', '2025-12-17 19:47:16', '4ZkX9bLd', '5670434'), + (280, 1762, 'attending', '2022-11-20 23:48:26', '2025-12-17 19:47:16', '4ZkX9bLd', '5670445'), + (280, 1763, 'not_attending', '2022-11-06 17:40:28', '2025-12-17 19:47:15', '4ZkX9bLd', '5670803'), + (280, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4ZkX9bLd', '5671637'), + (280, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4ZkX9bLd', '5672329'), + (280, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4ZkX9bLd', '5674057'), + (280, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4ZkX9bLd', '5674060'), + (280, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', '4ZkX9bLd', '5677461'), + (280, 1776, 'maybe', '2022-11-01 03:45:17', '2025-12-17 19:47:15', '4ZkX9bLd', '5691067'), + (280, 1780, 'attending', '2022-11-01 22:16:38', '2025-12-17 19:47:15', '4ZkX9bLd', '5696082'), + (280, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4ZkX9bLd', '5698046'), + (280, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4ZkX9bLd', '5699760'), + (280, 1790, 'not_attending', '2022-11-12 19:51:54', '2025-12-17 19:47:15', '4ZkX9bLd', '5727424'), + (280, 1793, 'maybe', '2022-11-24 04:31:21', '2025-12-17 19:47:16', '4ZkX9bLd', '5736365'), + (280, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4ZkX9bLd', '5741601'), + (280, 1796, 'not_attending', '2022-11-29 18:44:04', '2025-12-17 19:47:16', '4ZkX9bLd', '5756755'), + (280, 1797, 'not_attending', '2022-12-07 13:30:20', '2025-12-17 19:47:17', '4ZkX9bLd', '5757486'), + (280, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4ZkX9bLd', '5763458'), + (280, 1806, 'not_attending', '2023-01-21 23:40:15', '2025-12-17 19:47:05', '4ZkX9bLd', '5764676'), + (280, 1808, 'not_attending', '2023-03-04 18:36:14', '2025-12-17 19:47:08', '4ZkX9bLd', '5764678'), + (280, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4ZkX9bLd', '5774172'), + (280, 1826, 'not_attending', '2022-12-07 13:31:05', '2025-12-17 19:47:04', '4ZkX9bLd', '5776768'), + (280, 1828, 'not_attending', '2022-11-29 18:44:02', '2025-12-17 19:47:16', '4ZkX9bLd', '5778865'), + (280, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '4ZkX9bLd', '5818247'), + (280, 1834, 'attending', '2022-12-07 13:30:41', '2025-12-17 19:47:17', '4ZkX9bLd', '5819470'), + (280, 1835, 'not_attending', '2022-12-07 13:30:33', '2025-12-17 19:47:05', '4ZkX9bLd', '5819471'), + (280, 1837, 'not_attending', '2022-12-07 13:30:03', '2025-12-17 19:47:16', '4ZkX9bLd', '5820146'), + (280, 1839, 'not_attending', '2022-12-19 18:41:34', '2025-12-17 19:47:04', '4ZkX9bLd', '5821920'), + (280, 1841, 'attending', '2022-12-26 21:49:46', '2025-12-17 19:47:05', '4ZkX9bLd', '5827665'), + (280, 1842, 'attending', '2022-12-12 01:47:23', '2025-12-17 19:47:04', '4ZkX9bLd', '5827739'), + (280, 1843, 'not_attending', '2022-12-18 01:22:10', '2025-12-17 19:47:04', '4ZkX9bLd', '5844304'), + (280, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4ZkX9bLd', '5844306'), + (280, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4ZkX9bLd', '5850159'), + (280, 1848, 'not_attending', '2023-01-04 02:25:08', '2025-12-17 19:47:05', '4ZkX9bLd', '5852466'), + (280, 1849, 'maybe', '2023-01-04 02:25:03', '2025-12-17 19:47:05', '4ZkX9bLd', '5852467'), + (280, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4ZkX9bLd', '5858999'), + (280, 1852, 'not_attending', '2023-01-09 14:35:33', '2025-12-17 19:47:05', '4ZkX9bLd', '5869898'), + (280, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4ZkX9bLd', '5871984'), + (280, 1859, 'not_attending', '2023-01-21 16:25:03', '2025-12-17 19:47:05', '4ZkX9bLd', '5876234'), + (280, 1861, 'not_attending', '2023-01-15 16:00:52', '2025-12-17 19:47:05', '4ZkX9bLd', '5876354'), + (280, 1864, 'attending', '2023-01-17 10:58:41', '2025-12-17 19:47:05', '4ZkX9bLd', '5879675'), + (280, 1865, 'attending', '2023-01-24 21:34:02', '2025-12-17 19:47:06', '4ZkX9bLd', '5879676'), + (280, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '4ZkX9bLd', '5880939'), + (280, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4ZkX9bLd', '5880940'), + (280, 1868, 'not_attending', '2023-02-21 23:43:45', '2025-12-17 19:47:07', '4ZkX9bLd', '5880942'), + (280, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4ZkX9bLd', '5880943'), + (280, 1873, 'not_attending', '2023-01-20 13:03:37', '2025-12-17 19:47:05', '4ZkX9bLd', '5885295'), + (280, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4ZkX9bLd', '5887890'), + (280, 1875, 'not_attending', '2023-01-28 01:04:53', '2025-12-17 19:47:06', '4ZkX9bLd', '5887908'), + (280, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4ZkX9bLd', '5888598'), + (280, 1878, 'attending', '2023-01-24 19:17:42', '2025-12-17 19:47:07', '4ZkX9bLd', '5893000'), + (280, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4ZkX9bLd', '5893260'), + (280, 1882, 'attending', '2023-01-30 23:23:20', '2025-12-17 19:47:06', '4ZkX9bLd', '5898447'), + (280, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4ZkX9bLd', '5899826'), + (280, 1885, 'not_attending', '2023-02-11 03:35:27', '2025-12-17 19:47:08', '4ZkX9bLd', '5899928'), + (280, 1886, 'not_attending', '2023-02-25 21:07:57', '2025-12-17 19:47:09', '4ZkX9bLd', '5899930'), + (280, 1888, 'not_attending', '2023-02-04 04:16:11', '2025-12-17 19:47:07', '4ZkX9bLd', '5900197'), + (280, 1889, 'not_attending', '2023-02-01 18:25:16', '2025-12-17 19:47:07', '4ZkX9bLd', '5900199'), + (280, 1890, 'attending', '2023-02-02 18:06:03', '2025-12-17 19:47:08', '4ZkX9bLd', '5900200'), + (280, 1891, 'not_attending', '2023-03-14 20:57:27', '2025-12-17 19:46:56', '4ZkX9bLd', '5900202'), + (280, 1892, 'not_attending', '2023-03-12 19:25:04', '2025-12-17 19:46:56', '4ZkX9bLd', '5900203'), + (280, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4ZkX9bLd', '5901108'), + (280, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4ZkX9bLd', '5901126'), + (280, 1897, 'not_attending', '2023-02-07 01:57:03', '2025-12-17 19:47:07', '4ZkX9bLd', '5901128'), + (280, 1898, 'not_attending', '2023-02-01 00:01:55', '2025-12-17 19:47:06', '4ZkX9bLd', '5901263'), + (280, 1899, 'not_attending', '2023-02-07 01:57:11', '2025-12-17 19:47:07', '4ZkX9bLd', '5901323'), + (280, 1908, 'not_attending', '2023-02-05 16:06:15', '2025-12-17 19:47:07', '4ZkX9bLd', '5905018'), + (280, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4ZkX9bLd', '5909655'), + (280, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4ZkX9bLd', '5910522'), + (280, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4ZkX9bLd', '5910526'), + (280, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4ZkX9bLd', '5910528'), + (280, 1922, 'not_attending', '2023-02-13 14:16:07', '2025-12-17 19:47:07', '4ZkX9bLd', '5916219'), + (280, 1927, 'not_attending', '2023-03-17 04:15:17', '2025-12-17 19:47:10', '4ZkX9bLd', '5932621'), + (280, 1929, 'maybe', '2023-02-18 19:38:06', '2025-12-17 19:47:07', '4ZkX9bLd', '5932628'), + (280, 1933, 'attending', '2023-02-20 21:16:17', '2025-12-17 19:47:08', '4ZkX9bLd', '5936234'), + (280, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4ZkX9bLd', '5958351'), + (280, 1936, 'not_attending', '2023-02-23 17:46:47', '2025-12-17 19:47:08', '4ZkX9bLd', '5959397'), + (280, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4ZkX9bLd', '5959751'), + (280, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4ZkX9bLd', '5959755'), + (280, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4ZkX9bLd', '5960055'), + (280, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4ZkX9bLd', '5961684'), + (280, 1942, 'not_attending', '2023-02-26 03:52:49', '2025-12-17 19:47:08', '4ZkX9bLd', '5962085'), + (280, 1943, 'not_attending', '2023-03-04 23:19:42', '2025-12-17 19:47:10', '4ZkX9bLd', '5962091'), + (280, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '4ZkX9bLd', '5962132'), + (280, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '4ZkX9bLd', '5962133'), + (280, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4ZkX9bLd', '5962134'), + (280, 1947, 'not_attending', '2023-03-06 04:58:35', '2025-12-17 19:47:09', '4ZkX9bLd', '5962233'), + (280, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4ZkX9bLd', '5962317'), + (280, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4ZkX9bLd', '5962318'), + (280, 1951, 'not_attending', '2023-03-05 18:07:21', '2025-12-17 19:46:56', '4ZkX9bLd', '5965933'), + (280, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4ZkX9bLd', '5967014'), + (280, 1955, 'not_attending', '2023-03-14 20:57:31', '2025-12-17 19:46:57', '4ZkX9bLd', '5972529'), + (280, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '4ZkX9bLd', '5972763'), + (280, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4ZkX9bLd', '5972815'), + (280, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4ZkX9bLd', '5974016'), + (280, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4ZkX9bLd', '5981515'), + (280, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4ZkX9bLd', '5993516'), + (280, 1972, 'not_attending', '2023-03-14 20:58:06', '2025-12-17 19:46:56', '4ZkX9bLd', '5993776'), + (280, 1973, 'maybe', '2023-03-14 20:57:51', '2025-12-17 19:46:56', '4ZkX9bLd', '5993777'), + (280, 1974, 'maybe', '2023-03-13 17:56:06', '2025-12-17 19:46:57', '4ZkX9bLd', '5993778'), + (280, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4ZkX9bLd', '5998939'), + (280, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4ZkX9bLd', '6028191'), + (280, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4ZkX9bLd', '6040066'), + (280, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4ZkX9bLd', '6042717'), + (280, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4ZkX9bLd', '6044838'), + (280, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4ZkX9bLd', '6044839'), + (280, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZkX9bLd', '6045684'), + (280, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4ZkX9bLd', '6050104'), + (280, 1998, 'maybe', '2023-04-05 14:39:04', '2025-12-17 19:46:59', '4ZkX9bLd', '6052056'), + (280, 1999, 'not_attending', '2023-04-19 13:15:00', '2025-12-17 19:47:00', '4ZkX9bLd', '6052057'), + (280, 2002, 'not_attending', '2023-04-19 13:17:27', '2025-12-17 19:47:01', '4ZkX9bLd', '6052605'), + (280, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4ZkX9bLd', '6053195'), + (280, 2006, 'not_attending', '2023-04-07 18:13:46', '2025-12-17 19:46:59', '4ZkX9bLd', '6053198'), + (280, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4ZkX9bLd', '6056085'), + (280, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4ZkX9bLd', '6056916'), + (280, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4ZkX9bLd', '6059290'), + (280, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4ZkX9bLd', '6060328'), + (280, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4ZkX9bLd', '6061037'), + (280, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4ZkX9bLd', '6061039'), + (280, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4ZkX9bLd', '6067245'), + (280, 2025, 'not_attending', '2023-04-19 13:15:48', '2025-12-17 19:47:00', '4ZkX9bLd', '6067457'), + (280, 2026, 'not_attending', '2023-04-19 13:15:22', '2025-12-17 19:47:01', '4ZkX9bLd', '6068078'), + (280, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4ZkX9bLd', '6068094'), + (280, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4ZkX9bLd', '6068252'), + (280, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4ZkX9bLd', '6068253'), + (280, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4ZkX9bLd', '6068254'), + (280, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4ZkX9bLd', '6068280'), + (280, 2032, 'attending', '2023-06-01 19:44:28', '2025-12-17 19:47:04', '4ZkX9bLd', '6068281'), + (280, 2033, 'maybe', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4ZkX9bLd', '6069093'), + (280, 2036, 'attending', '2023-04-21 03:05:44', '2025-12-17 19:47:01', '4ZkX9bLd', '6070780'), + (280, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4ZkX9bLd', '6072528'), + (280, 2046, 'not_attending', '2023-05-11 04:59:27', '2025-12-17 19:47:02', '4ZkX9bLd', '6076020'), + (280, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4ZkX9bLd', '6079840'), + (280, 2050, 'not_attending', '2023-05-01 15:04:39', '2025-12-17 19:47:02', '4ZkX9bLd', '6080489'), + (280, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4ZkX9bLd', '6083398'), + (280, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4ZkX9bLd', '6093504'), + (280, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4ZkX9bLd', '6097414'), + (280, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4ZkX9bLd', '6097442'), + (280, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4ZkX9bLd', '6097684'), + (280, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4ZkX9bLd', '6098762'), + (280, 2064, 'not_attending', '2023-06-19 00:50:38', '2025-12-17 19:46:50', '4ZkX9bLd', '6099988'), + (280, 2065, 'not_attending', '2023-06-12 12:44:48', '2025-12-17 19:46:49', '4ZkX9bLd', '6101169'), + (280, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4ZkX9bLd', '6101361'), + (280, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4ZkX9bLd', '6101362'), + (280, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4ZkX9bLd', '6103752'), + (280, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4ZkX9bLd', '6107314'), + (280, 2078, 'maybe', '2023-05-21 13:34:45', '2025-12-17 19:47:03', '4ZkX9bLd', '6114163'), + (280, 2080, 'not_attending', '2023-05-27 17:17:28', '2025-12-17 19:47:04', '4ZkX9bLd', '6114677'), + (280, 2086, 'not_attending', '2023-05-26 16:00:21', '2025-12-17 19:47:04', '4ZkX9bLd', '6119877'), + (280, 2087, 'not_attending', '2023-05-30 19:21:41', '2025-12-17 19:47:04', '4ZkX9bLd', '6120034'), + (280, 2089, 'not_attending', '2023-06-05 03:57:17', '2025-12-17 19:47:04', '4ZkX9bLd', '6125227'), + (280, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4ZkX9bLd', '6136733'), + (280, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4ZkX9bLd', '6137989'), + (280, 2097, 'attending', '2023-06-07 16:07:19', '2025-12-17 19:47:04', '4ZkX9bLd', '6139059'), + (280, 2104, 'attending', '2023-06-18 23:14:58', '2025-12-17 19:46:50', '4ZkX9bLd', '6149499'), + (280, 2105, 'not_attending', '2023-06-19 20:38:59', '2025-12-17 19:46:50', '4ZkX9bLd', '6149551'), + (280, 2106, 'not_attending', '2023-06-20 18:09:50', '2025-12-17 19:46:50', '4ZkX9bLd', '6150479'), + (280, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4ZkX9bLd', '6150864'), + (280, 2110, 'not_attending', '2023-06-20 18:09:58', '2025-12-17 19:46:50', '4ZkX9bLd', '6155491'), + (280, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4ZkX9bLd', '6164417'), + (280, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4ZkX9bLd', '6166388'), + (280, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4ZkX9bLd', '6176439'), + (280, 2122, 'not_attending', '2023-07-03 00:36:11', '2025-12-17 19:46:51', '4ZkX9bLd', '6176476'), + (280, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '4ZkX9bLd', '6182410'), + (280, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4ZkX9bLd', '6185812'), + (280, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4ZkX9bLd', '6187651'), + (280, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4ZkX9bLd', '6187963'), + (280, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4ZkX9bLd', '6187964'), + (280, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4ZkX9bLd', '6187966'), + (280, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4ZkX9bLd', '6187967'), + (280, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4ZkX9bLd', '6187969'), + (280, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4ZkX9bLd', '6334878'), + (280, 2147, 'not_attending', '2023-07-16 20:11:24', '2025-12-17 19:46:52', '4ZkX9bLd', '6335666'), + (280, 2148, 'not_attending', '2023-07-21 15:03:28', '2025-12-17 19:46:53', '4ZkX9bLd', '6335667'), + (280, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4ZkX9bLd', '6337236'), + (280, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4ZkX9bLd', '6337970'), + (280, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4ZkX9bLd', '6338308'), + (280, 2159, 'attending', '2023-07-21 15:03:07', '2025-12-17 19:46:53', '4ZkX9bLd', '6338355'), + (280, 2160, 'attending', '2023-07-29 18:19:22', '2025-12-17 19:46:54', '4ZkX9bLd', '6338358'), + (280, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4ZkX9bLd', '6340845'), + (280, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4ZkX9bLd', '6341710'), + (280, 2164, 'not_attending', '2023-07-24 22:20:25', '2025-12-17 19:46:54', '4ZkX9bLd', '6341797'), + (280, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4ZkX9bLd', '6342044'), + (280, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4ZkX9bLd', '6342298'), + (280, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '4ZkX9bLd', '6343294'), + (280, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4ZkX9bLd', '6347034'), + (280, 2177, 'not_attending', '2023-08-04 20:15:32', '2025-12-17 19:46:55', '4ZkX9bLd', '6347053'), + (280, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4ZkX9bLd', '6347056'), + (280, 2180, 'not_attending', '2023-07-27 15:21:00', '2025-12-17 19:46:54', '4ZkX9bLd', '6348788'), + (280, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4ZkX9bLd', '6353830'), + (280, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4ZkX9bLd', '6353831'), + (280, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4ZkX9bLd', '6357867'), + (280, 2190, 'attending', '2023-08-03 12:28:01', '2025-12-17 19:46:55', '4ZkX9bLd', '6357892'), + (280, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4ZkX9bLd', '6358652'), + (280, 2200, 'attending', '2023-08-10 02:24:49', '2025-12-17 19:46:55', '4ZkX9bLd', '6359850'), + (280, 2204, 'not_attending', '2023-08-13 20:55:06', '2025-12-17 19:46:55', '4ZkX9bLd', '6361542'), + (280, 2206, 'not_attending', '2023-08-08 20:18:06', '2025-12-17 19:46:55', '4ZkX9bLd', '6361659'), + (280, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4ZkX9bLd', '6361709'), + (280, 2209, 'maybe', '2023-08-23 14:03:27', '2025-12-17 19:46:55', '4ZkX9bLd', '6361710'), + (280, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4ZkX9bLd', '6361711'), + (280, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4ZkX9bLd', '6361712'), + (280, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4ZkX9bLd', '6361713'), + (280, 2214, 'attending', '2023-08-10 02:25:06', '2025-12-17 19:46:55', '4ZkX9bLd', '6363218'), + (280, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4ZkX9bLd', '6382573'), + (280, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4ZkX9bLd', '6388604'), + (280, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4ZkX9bLd', '6394629'), + (280, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4ZkX9bLd', '6394631'), + (280, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4ZkX9bLd', '6440863'), + (280, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4ZkX9bLd', '6445440'), + (280, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4ZkX9bLd', '6453951'), + (280, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4ZkX9bLd', '6461696'), + (280, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4ZkX9bLd', '6462129'), + (280, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4ZkX9bLd', '6463218'), + (280, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4ZkX9bLd', '6472181'), + (280, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4ZkX9bLd', '6482693'), + (280, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4ZkX9bLd', '6484200'), + (280, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '4ZkX9bLd', '6484680'), + (280, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4ZkX9bLd', '6507741'), + (280, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4ZkX9bLd', '6514659'), + (280, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4ZkX9bLd', '6514660'), + (280, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4ZkX9bLd', '6519103'), + (280, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4ZkX9bLd', '6535681'), + (280, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4ZkX9bLd', '6584747'), + (280, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4ZkX9bLd', '6587097'), + (280, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4ZkX9bLd', '6609022'), + (280, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4ZkX9bLd', '6632757'), + (280, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4ZkX9bLd', '6644187'), + (280, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4ZkX9bLd', '6648951'), + (280, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4ZkX9bLd', '6648952'), + (280, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4ZkX9bLd', '6655401'), + (280, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4ZkX9bLd', '6661585'), + (280, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4ZkX9bLd', '6661588'), + (280, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4ZkX9bLd', '6661589'), + (280, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4ZkX9bLd', '6699906'), + (280, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4ZkX9bLd', '6699913'), + (280, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4ZkX9bLd', '6701109'), + (280, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4ZkX9bLd', '6705219'), + (280, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4ZkX9bLd', '6710153'), + (280, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4ZkX9bLd', '6711552'), + (280, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4ZkX9bLd', '6711553'), + (280, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4ZkX9bLd', '6722688'), + (280, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4ZkX9bLd', '6730620'), + (280, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4ZkX9bLd', '6730642'), + (280, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4ZkX9bLd', '6740364'), + (280, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4ZkX9bLd', '6743829'), + (280, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4ZkX9bLd', '7030380'), + (280, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4ZkX9bLd', '7033677'), + (280, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4ZkX9bLd', '7035415'), + (280, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4ZkX9bLd', '7044715'), + (280, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4ZkX9bLd', '7050318'), + (280, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4ZkX9bLd', '7050319'), + (280, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4ZkX9bLd', '7050322'), + (280, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4ZkX9bLd', '7057804'), + (280, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '4ZkX9bLd', '7059866'), + (280, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4ZkX9bLd', '7072824'), + (280, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4ZkX9bLd', '7074348'), + (280, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4ZkX9bLd', '7074364'), + (280, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4ZkX9bLd', '7089267'), + (280, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4ZkX9bLd', '7098747'), + (280, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4ZkX9bLd', '7113468'), + (280, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4ZkX9bLd', '7114856'), + (280, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4ZkX9bLd', '7114951'), + (280, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4ZkX9bLd', '7114955'), + (280, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4ZkX9bLd', '7114956'), + (280, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4ZkX9bLd', '7114957'), + (280, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4ZkX9bLd', '7153615'), + (280, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4ZkX9bLd', '7159484'), + (280, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4ZkX9bLd', '7178446'), + (280, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4ZkX9bLd', '7220467'), + (280, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4ZkX9bLd', '7240354'), + (280, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4ZkX9bLd', '7251633'), + (280, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4ZkX9bLd', '7263048'), + (280, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4ZkX9bLd', '7302674'), + (280, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4ZkX9bLd', '7324073'), + (280, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4ZkX9bLd', '7324074'), + (280, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4ZkX9bLd', '7324075'), + (280, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4ZkX9bLd', '7324078'), + (280, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4ZkX9bLd', '7324082'), + (280, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4ZkX9bLd', '7331457'), + (280, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4ZkX9bLd', '7356752'), + (280, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '4ZkX9bLd', '7363643'), + (280, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4ZkX9bLd', '7368606'), + (280, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4ZkX9bLd', '7397462'), + (280, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4ZkX9bLd', '7424275'), + (280, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4ZkX9bLd', '7424276'), + (280, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4ZkX9bLd', '7432751'), + (280, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4ZkX9bLd', '7432752'), + (280, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4ZkX9bLd', '7432753'), + (280, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4ZkX9bLd', '7432754'), + (280, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4ZkX9bLd', '7432755'), + (280, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4ZkX9bLd', '7432756'), + (280, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4ZkX9bLd', '7432758'), + (280, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4ZkX9bLd', '7432759'), + (280, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4ZkX9bLd', '7433834'), + (280, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4ZkX9bLd', '7470197'), + (280, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4ZkX9bLd', '7685613'), + (280, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4ZkX9bLd', '7688194'), + (280, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4ZkX9bLd', '7688196'), + (280, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4ZkX9bLd', '7688289'), + (281, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mqEaZO5m', '5195095'), + (281, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mqEaZO5m', '5247467'), + (281, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mqEaZO5m', '5260800'), + (281, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mqEaZO5m', '5269930'), + (281, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mqEaZO5m', '5271448'), + (281, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'mqEaZO5m', '5271449'), + (281, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mqEaZO5m', '5276469'), + (281, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mqEaZO5m', '5278159'), + (281, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mqEaZO5m', '5363695'), + (281, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mqEaZO5m', '5365960'), + (281, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mqEaZO5m', '5368973'), + (281, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mqEaZO5m', '5378247'), + (281, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mqEaZO5m', '5389605'), + (281, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mqEaZO5m', '5397265'), + (281, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mqEaZO5m', '6045684'), + (282, 262, 'attending', '2021-06-29 21:35:18', '2025-12-17 19:47:38', 'w4WeBkqm', '3149493'), + (282, 746, 'not_attending', '2021-07-10 00:10:18', '2025-12-17 19:47:39', 'w4WeBkqm', '3680626'), + (282, 870, 'attending', '2021-06-30 15:16:24', '2025-12-17 19:47:39', 'w4WeBkqm', '4136937'), + (282, 871, 'not_attending', '2021-07-11 12:37:49', '2025-12-17 19:47:39', 'w4WeBkqm', '4136938'), + (282, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'w4WeBkqm', '4136947'), + (282, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4WeBkqm', '4210314'), + (282, 887, 'not_attending', '2021-07-14 23:17:00', '2025-12-17 19:47:39', 'w4WeBkqm', '4225444'), + (282, 891, 'maybe', '2021-06-30 15:16:44', '2025-12-17 19:47:38', 'w4WeBkqm', '4229417'), + (282, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'w4WeBkqm', '4229418'), + (282, 899, 'not_attending', '2021-07-05 23:30:58', '2025-12-17 19:47:39', 'w4WeBkqm', '4239259'), + (282, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4WeBkqm', '4240316'), + (282, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4WeBkqm', '4240317'), + (282, 902, 'not_attending', '2021-08-07 22:51:19', '2025-12-17 19:47:41', 'w4WeBkqm', '4240318'), + (282, 903, 'attending', '2021-08-09 19:24:19', '2025-12-17 19:47:42', 'w4WeBkqm', '4240320'), + (282, 905, 'attending', '2021-07-05 18:57:16', '2025-12-17 19:47:39', 'w4WeBkqm', '4250163'), + (282, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4WeBkqm', '4275957'), + (282, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4WeBkqm', '4277819'), + (282, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4WeBkqm', '4301723'), + (282, 934, 'maybe', '2021-08-03 14:37:47', '2025-12-17 19:47:41', 'w4WeBkqm', '4302093'), + (282, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4WeBkqm', '4304151'), + (282, 952, 'maybe', '2021-08-04 23:39:54', '2025-12-17 19:47:41', 'w4WeBkqm', '4318286'), + (282, 954, 'maybe', '2021-08-09 19:23:55', '2025-12-17 19:47:41', 'w4WeBkqm', '4331303'), + (282, 967, 'maybe', '2021-08-12 01:20:04', '2025-12-17 19:47:42', 'w4WeBkqm', '4356164'), + (282, 971, 'not_attending', '2021-09-08 23:15:33', '2025-12-17 19:47:43', 'w4WeBkqm', '4356801'), + (282, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4WeBkqm', '4366186'), + (282, 974, 'not_attending', '2021-08-28 20:43:38', '2025-12-17 19:47:43', 'w4WeBkqm', '4366187'), + (282, 981, 'maybe', '2021-08-25 11:49:46', '2025-12-17 19:47:42', 'w4WeBkqm', '4387305'), + (282, 989, 'not_attending', '2021-09-09 13:33:27', '2025-12-17 19:47:43', 'w4WeBkqm', '4414282'), + (282, 990, 'attending', '2021-09-02 15:16:15', '2025-12-17 19:47:43', 'w4WeBkqm', '4420735'), + (282, 991, 'attending', '2021-09-05 13:50:19', '2025-12-17 19:47:43', 'w4WeBkqm', '4420738'), + (282, 992, 'not_attending', '2021-09-25 23:51:51', '2025-12-17 19:47:34', 'w4WeBkqm', '4420739'), + (282, 993, 'not_attending', '2021-10-16 23:32:42', '2025-12-17 19:47:34', 'w4WeBkqm', '4420741'), + (282, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'w4WeBkqm', '4420744'), + (282, 996, 'not_attending', '2021-10-16 23:32:50', '2025-12-17 19:47:35', 'w4WeBkqm', '4420747'), + (282, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'w4WeBkqm', '4420748'), + (282, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4WeBkqm', '4420749'), + (282, 999, 'not_attending', '2021-09-01 00:49:12', '2025-12-17 19:47:43', 'w4WeBkqm', '4421150'), + (282, 1013, 'maybe', '2021-09-05 13:49:16', '2025-12-17 19:47:43', 'w4WeBkqm', '4438817'), + (282, 1014, 'not_attending', '2021-09-06 22:16:00', '2025-12-17 19:47:43', 'w4WeBkqm', '4439233'), + (282, 1016, 'not_attending', '2021-09-09 13:33:08', '2025-12-17 19:47:43', 'w4WeBkqm', '4441271'), + (282, 1020, 'maybe', '2021-09-09 13:33:38', '2025-12-17 19:47:43', 'w4WeBkqm', '4451787'), + (282, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4WeBkqm', '4461883'), + (282, 1034, 'not_attending', '2021-09-17 16:28:31', '2025-12-17 19:47:43', 'w4WeBkqm', '4486265'), + (282, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4WeBkqm', '4508342'), + (282, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4WeBkqm', '4568602'), + (282, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4WeBkqm', '4585962'), + (282, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'w4WeBkqm', '4596356'), + (282, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4WeBkqm', '4598860'), + (282, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4WeBkqm', '4598861'), + (282, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'w4WeBkqm', '4602797'), + (282, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'w4WeBkqm', '4637896'), + (282, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'w4WeBkqm', '4642994'), + (282, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'w4WeBkqm', '4642995'), + (282, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'w4WeBkqm', '4642996'), + (282, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'w4WeBkqm', '4642997'), + (282, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'w4WeBkqm', '4645687'), + (282, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'w4WeBkqm', '4645698'), + (282, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'w4WeBkqm', '4645704'), + (282, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'w4WeBkqm', '4645705'), + (282, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'w4WeBkqm', '4668385'), + (282, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'w4WeBkqm', '4694407'), + (282, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'w4WeBkqm', '4706262'), + (282, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4WeBkqm', '4736497'), + (282, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4WeBkqm', '4736499'), + (282, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4WeBkqm', '4736500'), + (282, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4WeBkqm', '4736503'), + (282, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4WeBkqm', '4736504'), + (282, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'w4WeBkqm', '4746789'), + (282, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'w4WeBkqm', '4753929'), + (282, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4WeBkqm', '5038850'), + (282, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4WeBkqm', '5045826'), + (282, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4WeBkqm', '5132533'), + (282, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4WeBkqm', '5186582'), + (282, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4WeBkqm', '5186583'), + (282, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4WeBkqm', '5186585'), + (282, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4WeBkqm', '5190437'), + (282, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4WeBkqm', '5215989'), + (282, 1518, 'attending', '2022-08-31 13:17:52', '2025-12-17 19:47:24', 'w4WeBkqm', '5441131'), + (282, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'w4WeBkqm', '5441132'), + (282, 1544, 'attending', '2022-09-13 23:11:58', '2025-12-17 19:47:11', 'w4WeBkqm', '5454517'), + (282, 1558, 'maybe', '2022-09-13 23:11:32', '2025-12-17 19:47:10', 'w4WeBkqm', '5458730'), + (282, 1561, 'not_attending', '2022-08-11 04:53:05', '2025-12-17 19:47:22', 'w4WeBkqm', '5461278'), + (282, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'w4WeBkqm', '5488912'), + (282, 1591, 'attending', '2022-08-11 01:40:04', '2025-12-17 19:47:22', 'w4WeBkqm', '5493764'), + (282, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'w4WeBkqm', '5502188'), + (282, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'w4WeBkqm', '5505059'), + (282, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'w4WeBkqm', '5509055'), + (282, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'w4WeBkqm', '5512862'), + (282, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'w4WeBkqm', '5513985'), + (282, 1626, 'maybe', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'w4WeBkqm', '5519981'), + (282, 1628, 'attending', '2022-08-27 17:09:03', '2025-12-17 19:47:23', 'w4WeBkqm', '5522500'), + (282, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'w4WeBkqm', '5522550'), + (282, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'w4WeBkqm', '5534683'), + (282, 1635, 'maybe', '2022-09-13 23:11:51', '2025-12-17 19:47:10', 'w4WeBkqm', '5537735'), + (282, 1640, 'maybe', '2022-09-13 23:11:41', '2025-12-17 19:47:10', 'w4WeBkqm', '5540859'), + (282, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'w4WeBkqm', '5546619'), + (282, 1647, 'attending', '2022-09-13 23:11:16', '2025-12-17 19:47:11', 'w4WeBkqm', '5548660'), + (282, 1648, 'maybe', '2022-09-09 18:41:33', '2025-12-17 19:47:24', 'w4WeBkqm', '5548974'), + (282, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'w4WeBkqm', '5555245'), + (282, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'w4WeBkqm', '5557747'), + (282, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'w4WeBkqm', '5560255'), + (282, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'w4WeBkqm', '5562906'), + (282, 1667, 'not_attending', '2022-09-24 07:52:42', '2025-12-17 19:47:11', 'w4WeBkqm', '5563221'), + (282, 1674, 'attending', '2022-09-25 18:11:49', '2025-12-17 19:47:12', 'w4WeBkqm', '5593112'), + (282, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'w4WeBkqm', '5600604'), + (282, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'w4WeBkqm', '5605544'), + (282, 1697, 'not_attending', '2022-09-25 18:11:32', '2025-12-17 19:47:12', 'w4WeBkqm', '5605560'), + (282, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'w4WeBkqm', '5606737'), + (282, 1713, 'maybe', '2022-10-17 22:00:52', '2025-12-17 19:47:13', 'w4WeBkqm', '5622108'), + (282, 1719, 'maybe', '2022-10-05 19:43:52', '2025-12-17 19:47:12', 'w4WeBkqm', '5630958'), + (282, 1720, 'not_attending', '2022-10-05 19:44:00', '2025-12-17 19:47:12', 'w4WeBkqm', '5630959'), + (282, 1721, 'maybe', '2022-10-05 19:44:05', '2025-12-17 19:47:13', 'w4WeBkqm', '5630960'), + (282, 1722, 'maybe', '2022-10-05 19:44:10', '2025-12-17 19:47:14', 'w4WeBkqm', '5630961'), + (282, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'w4WeBkqm', '5630962'), + (282, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'w4WeBkqm', '5630966'), + (282, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'w4WeBkqm', '5630967'), + (282, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'w4WeBkqm', '5630968'), + (282, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'w4WeBkqm', '5635406'), + (282, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'w4WeBkqm', '5638765'), + (282, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'w4WeBkqm', '5640097'), + (282, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'w4WeBkqm', '5640843'), + (282, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'w4WeBkqm', '5641521'), + (282, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'w4WeBkqm', '5642818'), + (282, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'w4WeBkqm', '5652395'), + (282, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'w4WeBkqm', '5670445'), + (282, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'w4WeBkqm', '5671637'), + (282, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'w4WeBkqm', '5672329'), + (282, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'w4WeBkqm', '5674057'), + (282, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'w4WeBkqm', '5674060'), + (282, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'w4WeBkqm', '5677461'), + (282, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'w4WeBkqm', '5698046'), + (282, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'w4WeBkqm', '5699760'), + (282, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'w4WeBkqm', '5741601'), + (282, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'w4WeBkqm', '5763458'), + (282, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'w4WeBkqm', '5774172'), + (282, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'w4WeBkqm', '5818247'), + (282, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'w4WeBkqm', '5819471'), + (282, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'w4WeBkqm', '5827739'), + (282, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'w4WeBkqm', '5844306'), + (282, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'w4WeBkqm', '5850159'), + (282, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'w4WeBkqm', '5858999'), + (282, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'w4WeBkqm', '5871984'), + (282, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'w4WeBkqm', '5876354'), + (282, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'w4WeBkqm', '5880939'), + (282, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'w4WeBkqm', '5880940'), + (282, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'w4WeBkqm', '5880942'), + (282, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'w4WeBkqm', '5880943'), + (282, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'w4WeBkqm', '5887890'), + (282, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'w4WeBkqm', '5888598'), + (282, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'w4WeBkqm', '5893260'), + (282, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'w4WeBkqm', '5899826'), + (282, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'w4WeBkqm', '5900199'), + (282, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'w4WeBkqm', '5900200'), + (282, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'w4WeBkqm', '5900202'), + (282, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'w4WeBkqm', '5900203'), + (282, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'w4WeBkqm', '5901108'), + (282, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'w4WeBkqm', '5901126'), + (282, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'w4WeBkqm', '5909655'), + (282, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'w4WeBkqm', '5910522'), + (282, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'w4WeBkqm', '5910526'), + (282, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'w4WeBkqm', '5910528'), + (282, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'w4WeBkqm', '5916219'), + (282, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'w4WeBkqm', '5936234'), + (282, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'w4WeBkqm', '5958351'), + (282, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'w4WeBkqm', '5959751'), + (282, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'w4WeBkqm', '5959755'), + (282, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'w4WeBkqm', '5960055'), + (282, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'w4WeBkqm', '5961684'), + (282, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'w4WeBkqm', '5962132'), + (282, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'w4WeBkqm', '5962133'), + (282, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'w4WeBkqm', '5962134'), + (282, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'w4WeBkqm', '5962317'), + (282, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'w4WeBkqm', '5962318'), + (282, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'w4WeBkqm', '5965933'), + (282, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'w4WeBkqm', '5967014'), + (282, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'w4WeBkqm', '5972815'), + (282, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'w4WeBkqm', '5974016'), + (282, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'w4WeBkqm', '5981515'), + (282, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'w4WeBkqm', '5993516'), + (282, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'w4WeBkqm', '5998939'), + (282, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'w4WeBkqm', '6028191'), + (282, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'w4WeBkqm', '6040066'), + (282, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'w4WeBkqm', '6042717'), + (282, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'w4WeBkqm', '6044838'), + (282, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'w4WeBkqm', '6044839'), + (282, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WeBkqm', '6045684'), + (282, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'w4WeBkqm', '6050104'), + (282, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'w4WeBkqm', '6053195'), + (282, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'w4WeBkqm', '6053198'), + (282, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'w4WeBkqm', '6056085'), + (282, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'w4WeBkqm', '6056916'), + (282, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'w4WeBkqm', '6059290'), + (282, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'w4WeBkqm', '6060328'), + (282, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'w4WeBkqm', '6061037'), + (282, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'w4WeBkqm', '6061039'), + (282, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'w4WeBkqm', '6067245'), + (282, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'w4WeBkqm', '6068094'), + (282, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'w4WeBkqm', '6068252'), + (282, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'w4WeBkqm', '6068253'), + (282, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'w4WeBkqm', '6068254'), + (282, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'w4WeBkqm', '6068280'), + (282, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'w4WeBkqm', '6069093'), + (282, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'w4WeBkqm', '6072528'), + (282, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'w4WeBkqm', '6079840'), + (282, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'w4WeBkqm', '6083398'), + (282, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'w4WeBkqm', '6093504'), + (282, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'w4WeBkqm', '6097414'), + (282, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'w4WeBkqm', '6097442'), + (282, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'w4WeBkqm', '6097684'), + (282, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'w4WeBkqm', '6098762'), + (282, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'w4WeBkqm', '6101361'), + (282, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'w4WeBkqm', '6101362'), + (282, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'w4WeBkqm', '6107314'), + (282, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'w4WeBkqm', '6120034'), + (282, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'w4WeBkqm', '6136733'), + (282, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'w4WeBkqm', '6137989'), + (282, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'w4WeBkqm', '6150864'), + (282, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'w4WeBkqm', '6155491'), + (282, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'w4WeBkqm', '6164417'), + (282, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'w4WeBkqm', '6166388'), + (282, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'w4WeBkqm', '6176439'), + (282, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'w4WeBkqm', '6182410'), + (282, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'w4WeBkqm', '6185812'), + (282, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'w4WeBkqm', '6187651'), + (282, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'w4WeBkqm', '6187963'), + (282, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'w4WeBkqm', '6187964'), + (282, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'w4WeBkqm', '6187966'), + (282, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'w4WeBkqm', '6187967'), + (282, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'w4WeBkqm', '6187969'), + (282, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'w4WeBkqm', '6334878'), + (282, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'w4WeBkqm', '6337236'), + (282, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'w4WeBkqm', '6337970'), + (282, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'w4WeBkqm', '6338308'), + (282, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'w4WeBkqm', '6341710'), + (282, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'w4WeBkqm', '6342044'), + (282, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'w4WeBkqm', '6342298'), + (282, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'w4WeBkqm', '6343294'), + (282, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'w4WeBkqm', '6347034'), + (282, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'w4WeBkqm', '6347056'), + (282, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'w4WeBkqm', '6353830'), + (282, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'w4WeBkqm', '6353831'), + (282, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'w4WeBkqm', '6357867'), + (282, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'w4WeBkqm', '6358652'), + (282, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'w4WeBkqm', '6361709'), + (282, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'w4WeBkqm', '6361710'), + (282, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'w4WeBkqm', '6361711'), + (282, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'w4WeBkqm', '6361712'), + (282, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'w4WeBkqm', '6361713'), + (282, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'w4WeBkqm', '6382573'), + (282, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'w4WeBkqm', '6388604'), + (282, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'w4WeBkqm', '6394629'), + (282, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'w4WeBkqm', '6394631'), + (282, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'w4WeBkqm', '6440863'), + (282, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'w4WeBkqm', '6445440'), + (282, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'w4WeBkqm', '6453951'), + (282, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'w4WeBkqm', '6461696'), + (282, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'w4WeBkqm', '6462129'), + (282, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'w4WeBkqm', '6463218'), + (282, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'w4WeBkqm', '6472181'), + (282, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'w4WeBkqm', '6482693'), + (282, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'w4WeBkqm', '6484200'), + (282, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'w4WeBkqm', '6484680'), + (282, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'w4WeBkqm', '6507741'), + (282, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'w4WeBkqm', '6514659'), + (282, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'w4WeBkqm', '6514660'), + (282, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'w4WeBkqm', '6519103'), + (282, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'w4WeBkqm', '6535681'), + (282, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'w4WeBkqm', '6584747'), + (282, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'w4WeBkqm', '6587097'), + (282, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'w4WeBkqm', '6609022'), + (282, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'w4WeBkqm', '6632757'), + (282, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'w4WeBkqm', '6644187'), + (282, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'w4WeBkqm', '6648951'), + (282, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'w4WeBkqm', '6648952'), + (282, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'w4WeBkqm', '6655401'), + (282, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'w4WeBkqm', '6661585'), + (282, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'w4WeBkqm', '6661588'), + (282, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'w4WeBkqm', '6661589'), + (282, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'w4WeBkqm', '6699906'), + (282, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'w4WeBkqm', '6699913'), + (282, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'w4WeBkqm', '6701109'), + (282, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'w4WeBkqm', '6705219'), + (282, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'w4WeBkqm', '6710153'), + (282, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'w4WeBkqm', '6711552'), + (282, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'w4WeBkqm', '6711553'), + (282, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'w4WeBkqm', '6722688'), + (282, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'w4WeBkqm', '6730620'), + (282, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'w4WeBkqm', '6740364'), + (282, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'w4WeBkqm', '6743829'), + (282, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'w4WeBkqm', '7030380'), + (282, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'w4WeBkqm', '7033677'), + (282, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'w4WeBkqm', '7044715'), + (282, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'w4WeBkqm', '7050318'), + (282, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'w4WeBkqm', '7050319'), + (282, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'w4WeBkqm', '7050322'), + (282, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'w4WeBkqm', '7057804'), + (282, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'w4WeBkqm', '7072824'), + (282, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'w4WeBkqm', '7074348'), + (282, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'w4WeBkqm', '7074364'), + (282, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'w4WeBkqm', '7089267'), + (282, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'w4WeBkqm', '7098747'), + (282, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'w4WeBkqm', '7113468'), + (282, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'w4WeBkqm', '7114856'), + (282, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'w4WeBkqm', '7114951'), + (282, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'w4WeBkqm', '7114955'), + (282, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'w4WeBkqm', '7114956'), + (282, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'w4WeBkqm', '7114957'), + (282, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'w4WeBkqm', '7159484'), + (282, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'w4WeBkqm', '7178446'), + (282, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'w4WeBkqm', '7220467'), + (282, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'w4WeBkqm', '7240354'), + (282, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'w4WeBkqm', '7251633'), + (282, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'w4WeBkqm', '7324073'), + (282, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'w4WeBkqm', '7324074'), + (282, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'w4WeBkqm', '7324075'), + (282, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'w4WeBkqm', '7324078'), + (282, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'w4WeBkqm', '7324082'), + (282, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'w4WeBkqm', '7331457'), + (282, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'w4WeBkqm', '7363643'), + (282, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'w4WeBkqm', '7368606'), + (282, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'w4WeBkqm', '7397462'), + (282, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'w4WeBkqm', '7424275'), + (282, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'w4WeBkqm', '7432751'), + (282, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'w4WeBkqm', '7432752'), + (282, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'w4WeBkqm', '7432753'), + (282, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'w4WeBkqm', '7432754'), + (282, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'w4WeBkqm', '7432755'), + (282, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'w4WeBkqm', '7432756'), + (282, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'w4WeBkqm', '7432758'), + (282, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'w4WeBkqm', '7432759'), + (282, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'w4WeBkqm', '7433834'), + (282, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'w4WeBkqm', '7470197'), + (282, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'w4WeBkqm', '7685613'), + (282, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'w4WeBkqm', '7688194'), + (282, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'w4WeBkqm', '7688196'), + (282, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'w4WeBkqm', '7688289'), + (282, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'w4WeBkqm', '7692763'), + (282, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'w4WeBkqm', '7697552'), + (282, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'w4WeBkqm', '7699878'), + (282, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'w4WeBkqm', '7704043'), + (282, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'w4WeBkqm', '7712467'), + (282, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'w4WeBkqm', '7713585'), + (282, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'w4WeBkqm', '7713586'), + (282, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'w4WeBkqm', '7738518'), + (282, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'w4WeBkqm', '7750636'), + (282, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'w4WeBkqm', '7796540'), + (282, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'w4WeBkqm', '7796541'), + (282, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'w4WeBkqm', '7796542'), + (282, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'w4WeBkqm', '7825913'), + (282, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'w4WeBkqm', '7826209'), + (282, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'w4WeBkqm', '7834742'), + (282, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'w4WeBkqm', '7842108'), + (282, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'w4WeBkqm', '7842902'), + (282, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'w4WeBkqm', '7842903'), + (282, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'w4WeBkqm', '7842904'), + (282, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'w4WeBkqm', '7842905'), + (282, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'w4WeBkqm', '7855719'), + (282, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'w4WeBkqm', '7860683'), + (282, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'w4WeBkqm', '7860684'), + (282, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'w4WeBkqm', '7866095'), + (282, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'w4WeBkqm', '7869170'), + (282, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'w4WeBkqm', '7869188'), + (282, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'w4WeBkqm', '7869201'), + (282, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'w4WeBkqm', '7877465'), + (282, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'w4WeBkqm', '7888250'), + (282, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'w4WeBkqm', '7904777'), + (282, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'w4WeBkqm', '8349164'), + (282, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'w4WeBkqm', '8349545'), + (282, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'w4WeBkqm', '8368028'), + (282, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'w4WeBkqm', '8368029'), + (282, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'w4WeBkqm', '8388462'), + (282, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'w4WeBkqm', '8400273'), + (282, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'w4WeBkqm', '8400275'), + (282, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'w4WeBkqm', '8400276'), + (282, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'w4WeBkqm', '8404977'), + (282, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'w4WeBkqm', '8430783'), + (282, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'w4WeBkqm', '8430784'), + (282, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'w4WeBkqm', '8430799'), + (282, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'w4WeBkqm', '8430800'), + (282, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'w4WeBkqm', '8430801'), + (282, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'w4WeBkqm', '8438709'), + (282, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'w4WeBkqm', '8457738'), + (282, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'w4WeBkqm', '8459566'), + (282, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'w4WeBkqm', '8459567'), + (282, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'w4WeBkqm', '8461032'), + (282, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'w4WeBkqm', '8477877'), + (282, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'w4WeBkqm', '8485688'), + (282, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'w4WeBkqm', '8490587'), + (282, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'w4WeBkqm', '8493552'), + (282, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'w4WeBkqm', '8493553'), + (282, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'w4WeBkqm', '8493554'), + (282, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'w4WeBkqm', '8493555'), + (282, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'w4WeBkqm', '8493556'), + (282, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'w4WeBkqm', '8493557'), + (282, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'w4WeBkqm', '8493558'), + (282, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'w4WeBkqm', '8493559'), + (282, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'w4WeBkqm', '8493560'), + (282, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'w4WeBkqm', '8493561'), + (282, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'w4WeBkqm', '8493572'), + (282, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'w4WeBkqm', '8540725'), + (282, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'w4WeBkqm', '8555421'), + (283, 260, 'maybe', '2021-06-15 21:32:58', '2025-12-17 19:47:48', 'v4D0GyL4', '3149491'), + (283, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'v4D0GyL4', '3149493'), + (283, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'v4D0GyL4', '3236448'), + (283, 395, 'maybe', '2021-06-09 03:39:35', '2025-12-17 19:47:47', 'v4D0GyL4', '3236450'), + (283, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'v4D0GyL4', '3974109'), + (283, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'v4D0GyL4', '3975311'), + (283, 828, 'not_attending', '2021-06-12 22:45:35', '2025-12-17 19:47:47', 'v4D0GyL4', '3975312'), + (283, 838, 'maybe', '2021-06-09 15:36:46', '2025-12-17 19:47:47', 'v4D0GyL4', '3994992'), + (283, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4D0GyL4', '4014338'), + (283, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'v4D0GyL4', '4021848'), + (283, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4D0GyL4', '4136744'), + (283, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'v4D0GyL4', '4136937'), + (283, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'v4D0GyL4', '4136938'), + (283, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'v4D0GyL4', '4136947'), + (283, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4D0GyL4', '4225444'), + (283, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'v4D0GyL4', '4229417'), + (283, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'v4D0GyL4', '4229418'), + (283, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'v4D0GyL4', '4239259'), + (283, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4D0GyL4', '4250163'), + (283, 1009, 'attending', '2021-10-11 14:46:19', '2025-12-17 19:47:34', 'v4D0GyL4', '4438811'), + (283, 1077, 'maybe', '2021-10-13 15:38:58', '2025-12-17 19:47:34', 'v4D0GyL4', '4540903'), + (283, 1082, 'attending', '2021-10-15 21:20:28', '2025-12-17 19:47:35', 'v4D0GyL4', '4566762'), + (283, 1086, 'attending', '2021-10-15 21:11:46', '2025-12-17 19:47:34', 'v4D0GyL4', '4568602'), + (283, 1153, 'maybe', '2022-01-19 02:52:10', '2025-12-17 19:47:32', 'v4D0GyL4', '4708707'), + (283, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'v4D0GyL4', '4736497'), + (283, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'v4D0GyL4', '4736499'), + (283, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'v4D0GyL4', '4736500'), + (283, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'v4D0GyL4', '4736503'), + (283, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'v4D0GyL4', '4736504'), + (283, 1196, 'attending', '2022-01-20 01:12:37', '2025-12-17 19:47:32', 'v4D0GyL4', '4765583'), + (283, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4D0GyL4', '5038850'), + (283, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4D0GyL4', '5045826'), + (283, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4D0GyL4', '5132533'), + (283, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'v4D0GyL4', '5186582'), + (283, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'v4D0GyL4', '5186583'), + (283, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'v4D0GyL4', '5186585'), + (283, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4D0GyL4', '5190437'), + (283, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4D0GyL4', '5215989'), + (283, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4D0GyL4', '6045684'), + (284, 665, 'not_attending', '2021-09-04 22:05:32', '2025-12-17 19:47:43', 'AYzjRPe4', '3547143'), + (284, 951, 'attending', '2021-08-29 19:58:57', '2025-12-17 19:47:43', 'AYzjRPe4', '4315731'), + (284, 971, 'attending', '2021-09-08 16:44:46', '2025-12-17 19:47:43', 'AYzjRPe4', '4356801'), + (284, 987, 'attending', '2021-09-01 15:17:55', '2025-12-17 19:47:43', 'AYzjRPe4', '4402634'), + (284, 989, 'attending', '2021-09-10 19:39:10', '2025-12-17 19:47:43', 'AYzjRPe4', '4414282'), + (284, 990, 'not_attending', '2021-09-04 22:05:47', '2025-12-17 19:47:43', 'AYzjRPe4', '4420735'), + (284, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'AYzjRPe4', '4420738'), + (284, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'AYzjRPe4', '4420739'), + (284, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'AYzjRPe4', '4420741'), + (284, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'AYzjRPe4', '4420744'), + (284, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'AYzjRPe4', '4420747'), + (284, 1002, 'attending', '2021-08-30 17:39:13', '2025-12-17 19:47:43', 'AYzjRPe4', '4424932'), + (284, 1017, 'not_attending', '2021-09-06 23:25:25', '2025-12-17 19:47:43', 'AYzjRPe4', '4441822'), + (284, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AYzjRPe4', '4461883'), + (284, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AYzjRPe4', '4508342'), + (284, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AYzjRPe4', '4568602'), + (284, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AYzjRPe4', '6045684'), + (285, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ArngEwYA', '7904777'), + (285, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ArngEwYA', '8368028'), + (285, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ArngEwYA', '8368029'), + (285, 3140, 'not_attending', '2025-05-21 04:07:31', '2025-12-17 19:46:21', 'ArngEwYA', '8380399'), + (285, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', 'ArngEwYA', '8387505'), + (285, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ArngEwYA', '8388462'), + (285, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ArngEwYA', '8400273'), + (285, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ArngEwYA', '8400274'), + (285, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ArngEwYA', '8400275'), + (285, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ArngEwYA', '8400276'), + (285, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ArngEwYA', '8404977'), + (285, 3171, 'not_attending', '2025-06-13 18:00:16', '2025-12-17 19:46:15', 'ArngEwYA', '8409765'), + (285, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'ArngEwYA', '8430783'), + (285, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ArngEwYA', '8430784'), + (285, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ArngEwYA', '8430799'), + (285, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ArngEwYA', '8430800'), + (285, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ArngEwYA', '8430801'), + (285, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ArngEwYA', '8438709'), + (285, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ArngEwYA', '8457738'), + (285, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ArngEwYA', '8459566'), + (285, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ArngEwYA', '8459567'), + (285, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ArngEwYA', '8461032'), + (285, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ArngEwYA', '8477877'), + (285, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ArngEwYA', '8485688'), + (285, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ArngEwYA', '8490587'), + (285, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ArngEwYA', '8493552'), + (285, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'ArngEwYA', '8493553'), + (285, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ArngEwYA', '8493554'), + (285, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ArngEwYA', '8493555'), + (285, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ArngEwYA', '8493556'), + (285, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ArngEwYA', '8493557'), + (285, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ArngEwYA', '8493558'), + (285, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ArngEwYA', '8493559'), + (285, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ArngEwYA', '8493560'), + (285, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'ArngEwYA', '8493561'), + (285, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ArngEwYA', '8493572'), + (285, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'ArngEwYA', '8529058'), + (286, 1241, 'maybe', '2022-03-23 23:08:13', '2025-12-17 19:47:25', 'dw8QYw0m', '5052240'), + (286, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'dw8QYw0m', '5186585'), + (286, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dw8QYw0m', '5195095'), + (286, 1285, 'attending', '2022-03-25 21:50:56', '2025-12-17 19:47:25', 'dw8QYw0m', '5196763'), + (286, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dw8QYw0m', '5215989'), + (286, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dw8QYw0m', '5223686'), + (286, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dw8QYw0m', '5227432'), + (286, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dw8QYw0m', '5247467'), + (286, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dw8QYw0m', '5260800'), + (286, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dw8QYw0m', '5269930'), + (286, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dw8QYw0m', '5271448'), + (286, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dw8QYw0m', '5271449'), + (286, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dw8QYw0m', '5276469'), + (286, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dw8QYw0m', '5278159'), + (286, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dw8QYw0m', '6045684'), + (287, 622, 'attending', '2021-03-08 16:49:20', '2025-12-17 19:47:51', 'Pm7NE5ld', '3517816'), + (287, 638, 'attending', '2021-04-03 20:27:10', '2025-12-17 19:47:44', 'Pm7NE5ld', '3536632'), + (287, 639, 'maybe', '2021-03-20 18:28:23', '2025-12-17 19:47:51', 'Pm7NE5ld', '3536656'), + (287, 641, 'attending', '2021-04-02 11:59:29', '2025-12-17 19:47:44', 'Pm7NE5ld', '3539916'), + (287, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Pm7NE5ld', '3539918'), + (287, 644, 'attending', '2021-04-24 16:23:19', '2025-12-17 19:47:45', 'Pm7NE5ld', '3539919'), + (287, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm7NE5ld', '3539920'), + (287, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm7NE5ld', '3539921'), + (287, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Pm7NE5ld', '3539922'), + (287, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Pm7NE5ld', '3539923'), + (287, 649, 'attending', '2021-03-08 16:49:48', '2025-12-17 19:47:51', 'Pm7NE5ld', '3539927'), + (287, 650, 'not_attending', '2021-03-27 21:01:00', '2025-12-17 19:47:44', 'Pm7NE5ld', '3539928'), + (287, 654, 'attending', '2021-03-08 13:20:34', '2025-12-17 19:47:51', 'Pm7NE5ld', '3546990'), + (287, 692, 'attending', '2021-03-13 23:08:29', '2025-12-17 19:47:51', 'Pm7NE5ld', '3561995'), + (287, 705, 'not_attending', '2021-04-02 11:59:20', '2025-12-17 19:47:44', 'Pm7NE5ld', '3581895'), + (287, 706, 'attending', '2021-03-27 14:39:00', '2025-12-17 19:47:45', 'Pm7NE5ld', '3582734'), + (287, 707, 'maybe', '2021-04-25 16:33:38', '2025-12-17 19:47:46', 'Pm7NE5ld', '3583262'), + (287, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Pm7NE5ld', '3619523'), + (287, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7NE5ld', '3661369'), + (287, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7NE5ld', '3674262'), + (287, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm7NE5ld', '3677402'), + (287, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7NE5ld', '3730212'), + (287, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7NE5ld', '3793156'), + (287, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7NE5ld', '3975311'), + (287, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7NE5ld', '3994992'), + (287, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7NE5ld', '6045684'), + (288, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlOQvPX4', '6045684'), + (289, 850, 'attending', '2021-08-25 18:09:28', '2025-12-17 19:47:42', 'nm6wWxgA', '4015722'), + (289, 950, 'not_attending', '2021-08-21 07:35:16', '2025-12-17 19:47:42', 'nm6wWxgA', '4315730'), + (289, 965, 'maybe', '2021-08-19 03:08:59', '2025-12-17 19:47:42', 'nm6wWxgA', '4353703'), + (289, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nm6wWxgA', '4356801'), + (289, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'nm6wWxgA', '4366186'), + (289, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'nm6wWxgA', '4366187'), + (289, 977, 'attending', '2021-08-20 18:57:52', '2025-12-17 19:47:42', 'nm6wWxgA', '4378479'), + (289, 980, 'not_attending', '2021-08-21 18:48:36', '2025-12-17 19:47:42', 'nm6wWxgA', '4380358'), + (289, 981, 'maybe', '2021-08-27 21:53:02', '2025-12-17 19:47:42', 'nm6wWxgA', '4387305'), + (289, 983, 'attending', '2021-08-20 22:43:11', '2025-12-17 19:47:42', 'nm6wWxgA', '4390051'), + (289, 990, 'not_attending', '2021-08-30 23:33:28', '2025-12-17 19:47:43', 'nm6wWxgA', '4420735'), + (289, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nm6wWxgA', '4420738'), + (289, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'nm6wWxgA', '4420739'), + (289, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm6wWxgA', '4420741'), + (289, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nm6wWxgA', '4420744'), + (289, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nm6wWxgA', '4420747'), + (289, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nm6wWxgA', '4420748'), + (289, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nm6wWxgA', '4420749'), + (289, 1015, 'maybe', '2021-09-10 16:17:22', '2025-12-17 19:47:43', 'nm6wWxgA', '4440800'), + (289, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nm6wWxgA', '4461883'), + (289, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nm6wWxgA', '4508342'), + (289, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nm6wWxgA', '4568602'), + (289, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nm6wWxgA', '4572153'), + (289, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'nm6wWxgA', '4585962'), + (289, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'nm6wWxgA', '4596356'), + (289, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nm6wWxgA', '4598860'), + (289, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'nm6wWxgA', '4598861'), + (289, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'nm6wWxgA', '4602797'), + (289, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'nm6wWxgA', '4637896'), + (289, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nm6wWxgA', '4642994'), + (289, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'nm6wWxgA', '4642995'), + (289, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'nm6wWxgA', '4642996'), + (289, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'nm6wWxgA', '4642997'), + (289, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'nm6wWxgA', '4645687'), + (289, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nm6wWxgA', '4645698'), + (289, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'nm6wWxgA', '4645704'), + (289, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'nm6wWxgA', '4645705'), + (289, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nm6wWxgA', '4668385'), + (289, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nm6wWxgA', '4694407'), + (289, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm6wWxgA', '4736497'), + (289, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nm6wWxgA', '4736499'), + (289, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm6wWxgA', '4736500'), + (289, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nm6wWxgA', '4736503'), + (289, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nm6wWxgA', '4736504'), + (289, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nm6wWxgA', '4746789'), + (289, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'nm6wWxgA', '4753929'), + (289, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nm6wWxgA', '5038850'), + (289, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nm6wWxgA', '5045826'), + (289, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm6wWxgA', '5132533'), + (289, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'nm6wWxgA', '5186582'), + (289, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nm6wWxgA', '5186583'), + (289, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nm6wWxgA', '5186585'), + (289, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'nm6wWxgA', '5190437'), + (289, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nm6wWxgA', '5195095'), + (289, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm6wWxgA', '5215989'), + (289, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm6wWxgA', '5223686'), + (289, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nm6wWxgA', '5247467'), + (289, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nm6wWxgA', '5260800'), + (289, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nm6wWxgA', '5269930'), + (289, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nm6wWxgA', '5271448'), + (289, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'nm6wWxgA', '5271449'), + (289, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm6wWxgA', '5278159'), + (289, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'nm6wWxgA', '5363695'), + (289, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm6wWxgA', '5365960'), + (289, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm6wWxgA', '5378247'), + (289, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'nm6wWxgA', '5389605'), + (289, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nm6wWxgA', '5397265'), + (289, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm6wWxgA', '5404786'), + (289, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm6wWxgA', '5405203'), + (289, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm6wWxgA', '5412550'), + (289, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm6wWxgA', '5415046'), + (289, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm6wWxgA', '5422086'), + (289, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nm6wWxgA', '5422406'), + (289, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm6wWxgA', '5424565'), + (289, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm6wWxgA', '5426882'), + (289, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm6wWxgA', '5441125'), + (289, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm6wWxgA', '5441126'), + (289, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nm6wWxgA', '5441128'), + (289, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm6wWxgA', '5441131'), + (289, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm6wWxgA', '5441132'), + (289, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm6wWxgA', '5453325'), + (289, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm6wWxgA', '5454516'), + (289, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm6wWxgA', '5454605'), + (289, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm6wWxgA', '5455037'), + (289, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm6wWxgA', '5461278'), + (289, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm6wWxgA', '5469480'), + (289, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm6wWxgA', '5474663'), + (289, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm6wWxgA', '5482022'), + (289, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm6wWxgA', '5488912'), + (289, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm6wWxgA', '5492192'), + (289, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm6wWxgA', '5493139'), + (289, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm6wWxgA', '5493200'), + (289, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm6wWxgA', '5502188'), + (289, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm6wWxgA', '5505059'), + (289, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm6wWxgA', '5509055'), + (289, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm6wWxgA', '5512862'), + (289, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm6wWxgA', '5513985'), + (289, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nm6wWxgA', '5519981'), + (289, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm6wWxgA', '5522550'), + (289, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm6wWxgA', '5534683'), + (289, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm6wWxgA', '5537735'), + (289, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm6wWxgA', '5540859'), + (289, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm6wWxgA', '5546619'), + (289, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm6wWxgA', '5557747'), + (289, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm6wWxgA', '5560255'), + (289, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm6wWxgA', '5562906'), + (289, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm6wWxgA', '5600604'), + (289, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm6wWxgA', '5605544'), + (289, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'nm6wWxgA', '5606737'), + (289, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm6wWxgA', '5630960'), + (289, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm6wWxgA', '5630961'), + (289, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm6wWxgA', '5630962'), + (289, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm6wWxgA', '5630966'), + (289, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm6wWxgA', '5630967'), + (289, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm6wWxgA', '5630968'), + (289, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm6wWxgA', '5635406'), + (289, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm6wWxgA', '5638765'), + (289, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm6wWxgA', '5640097'), + (289, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm6wWxgA', '5640843'), + (289, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm6wWxgA', '5641521'), + (289, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm6wWxgA', '5642818'), + (289, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm6wWxgA', '5652395'), + (289, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm6wWxgA', '5670445'), + (289, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm6wWxgA', '5671637'), + (289, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm6wWxgA', '5672329'), + (289, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm6wWxgA', '5674057'), + (289, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm6wWxgA', '5674060'), + (289, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm6wWxgA', '5677461'), + (289, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm6wWxgA', '5698046'), + (289, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm6wWxgA', '5699760'), + (289, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm6wWxgA', '5741601'), + (289, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm6wWxgA', '5763458'), + (289, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm6wWxgA', '5774172'), + (289, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nm6wWxgA', '5818247'), + (289, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm6wWxgA', '5819471'), + (289, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'nm6wWxgA', '5827739'), + (289, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm6wWxgA', '5844306'), + (289, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm6wWxgA', '5850159'), + (289, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm6wWxgA', '5858999'), + (289, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm6wWxgA', '5871984'), + (289, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm6wWxgA', '5876354'), + (289, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm6wWxgA', '5880939'), + (289, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm6wWxgA', '5880940'), + (289, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm6wWxgA', '5880942'), + (289, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm6wWxgA', '5880943'), + (289, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm6wWxgA', '5887890'), + (289, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm6wWxgA', '5888598'), + (289, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm6wWxgA', '5893260'), + (289, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm6wWxgA', '5899826'), + (289, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm6wWxgA', '5900199'), + (289, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm6wWxgA', '5900200'), + (289, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm6wWxgA', '5900202'), + (289, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm6wWxgA', '5900203'), + (289, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm6wWxgA', '5901108'), + (289, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm6wWxgA', '5901126'), + (289, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm6wWxgA', '5909655'), + (289, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm6wWxgA', '5910522'), + (289, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm6wWxgA', '5910526'), + (289, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm6wWxgA', '5910528'), + (289, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm6wWxgA', '5916219'), + (289, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm6wWxgA', '5936234'), + (289, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm6wWxgA', '5958351'), + (289, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm6wWxgA', '5959751'), + (289, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm6wWxgA', '5959755'), + (289, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm6wWxgA', '5960055'), + (289, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm6wWxgA', '5961684'), + (289, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm6wWxgA', '5962132'), + (289, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nm6wWxgA', '5962133'), + (289, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm6wWxgA', '5962134'), + (289, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm6wWxgA', '5962317'), + (289, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm6wWxgA', '5962318'), + (289, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nm6wWxgA', '5965933'), + (289, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm6wWxgA', '5967014'), + (289, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm6wWxgA', '5972815'), + (289, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm6wWxgA', '5974016'), + (289, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm6wWxgA', '5981515'), + (289, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm6wWxgA', '5993516'), + (289, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm6wWxgA', '5998939'), + (289, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm6wWxgA', '6028191'), + (289, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm6wWxgA', '6040066'), + (289, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm6wWxgA', '6042717'), + (289, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm6wWxgA', '6044838'), + (289, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm6wWxgA', '6044839'), + (289, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6wWxgA', '6045684'), + (289, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm6wWxgA', '6050104'), + (289, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm6wWxgA', '6053195'), + (289, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm6wWxgA', '6053198'), + (289, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm6wWxgA', '6056085'), + (289, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm6wWxgA', '6056916'), + (289, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm6wWxgA', '6059290'), + (289, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm6wWxgA', '6060328'), + (289, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm6wWxgA', '6061037'), + (289, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm6wWxgA', '6061039'), + (289, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm6wWxgA', '6067245'), + (289, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm6wWxgA', '6068094'), + (289, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm6wWxgA', '6068252'), + (289, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm6wWxgA', '6068253'), + (289, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm6wWxgA', '6068254'), + (289, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm6wWxgA', '6068280'), + (289, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm6wWxgA', '6069093'), + (289, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm6wWxgA', '6072528'), + (289, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm6wWxgA', '6079840'), + (289, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm6wWxgA', '6083398'), + (289, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm6wWxgA', '6093504'), + (289, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm6wWxgA', '6097414'), + (289, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm6wWxgA', '6097442'), + (289, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm6wWxgA', '6097684'), + (289, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm6wWxgA', '6098762'), + (289, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm6wWxgA', '6101361'), + (289, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm6wWxgA', '6101362'), + (289, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm6wWxgA', '6107314'), + (289, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm6wWxgA', '6120034'), + (289, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nm6wWxgA', '6136733'), + (289, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm6wWxgA', '6137989'), + (289, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm6wWxgA', '6150864'), + (289, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm6wWxgA', '6155491'), + (289, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm6wWxgA', '6164417'), + (289, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm6wWxgA', '6166388'), + (289, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm6wWxgA', '6176439'), + (289, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm6wWxgA', '6182410'), + (289, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm6wWxgA', '6185812'), + (289, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm6wWxgA', '6187651'), + (289, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm6wWxgA', '6187963'), + (289, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm6wWxgA', '6187964'), + (289, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm6wWxgA', '6187966'), + (289, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm6wWxgA', '6187967'), + (289, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm6wWxgA', '6187969'), + (289, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm6wWxgA', '6334878'), + (289, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm6wWxgA', '6337236'), + (289, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm6wWxgA', '6337970'), + (289, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm6wWxgA', '6338308'), + (289, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm6wWxgA', '6341710'), + (289, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm6wWxgA', '6342044'), + (289, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm6wWxgA', '6342298'), + (289, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm6wWxgA', '6343294'), + (289, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm6wWxgA', '6347034'), + (289, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm6wWxgA', '6347056'), + (289, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm6wWxgA', '6353830'), + (289, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm6wWxgA', '6353831'), + (289, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm6wWxgA', '6357867'), + (289, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm6wWxgA', '6358652'), + (289, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm6wWxgA', '6361709'), + (289, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm6wWxgA', '6361710'), + (289, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm6wWxgA', '6361711'), + (289, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm6wWxgA', '6361712'), + (289, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm6wWxgA', '6361713'), + (289, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nm6wWxgA', '6382573'), + (289, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm6wWxgA', '6388604'), + (289, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm6wWxgA', '6394629'), + (289, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm6wWxgA', '6394631'), + (289, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm6wWxgA', '6440863'), + (289, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm6wWxgA', '6445440'), + (289, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm6wWxgA', '6453951'), + (289, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm6wWxgA', '6461696'), + (289, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm6wWxgA', '6462129'), + (289, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm6wWxgA', '6463218'), + (289, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm6wWxgA', '6472181'), + (289, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm6wWxgA', '6482693'), + (289, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nm6wWxgA', '6484200'), + (289, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm6wWxgA', '6484680'), + (289, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm6wWxgA', '6507741'), + (289, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm6wWxgA', '6514659'), + (289, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm6wWxgA', '6514660'), + (289, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm6wWxgA', '6519103'), + (289, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm6wWxgA', '6535681'), + (289, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm6wWxgA', '6584747'), + (289, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm6wWxgA', '6587097'), + (289, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm6wWxgA', '6609022'), + (289, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nm6wWxgA', '6632757'), + (289, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm6wWxgA', '6644187'), + (289, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm6wWxgA', '6648951'), + (289, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm6wWxgA', '6648952'), + (289, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm6wWxgA', '6655401'), + (289, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm6wWxgA', '6661585'), + (289, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm6wWxgA', '6661588'), + (289, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm6wWxgA', '6661589'), + (289, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm6wWxgA', '6699906'), + (289, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm6wWxgA', '6699913'), + (289, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm6wWxgA', '6701109'), + (289, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm6wWxgA', '6705219'), + (289, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm6wWxgA', '6710153'), + (289, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm6wWxgA', '6711552'), + (289, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nm6wWxgA', '6711553'), + (289, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm6wWxgA', '6722688'), + (289, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm6wWxgA', '6730620'), + (289, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm6wWxgA', '6740364'), + (289, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm6wWxgA', '6743829'), + (289, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm6wWxgA', '7030380'), + (289, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nm6wWxgA', '7033677'), + (289, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm6wWxgA', '7044715'), + (289, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm6wWxgA', '7050318'), + (289, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm6wWxgA', '7050319'), + (289, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm6wWxgA', '7050322'), + (289, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm6wWxgA', '7057804'), + (289, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm6wWxgA', '7072824'), + (289, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm6wWxgA', '7074348'), + (289, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm6wWxgA', '7074364'), + (289, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nm6wWxgA', '7089267'), + (289, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm6wWxgA', '7098747'), + (289, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm6wWxgA', '7113468'), + (289, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm6wWxgA', '7114856'), + (289, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm6wWxgA', '7114951'), + (289, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm6wWxgA', '7114955'), + (289, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm6wWxgA', '7114956'), + (289, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm6wWxgA', '7114957'), + (289, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm6wWxgA', '7159484'), + (289, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm6wWxgA', '7178446'), + (289, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nm6wWxgA', '7220467'), + (289, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm6wWxgA', '7240354'), + (289, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm6wWxgA', '7251633'), + (289, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm6wWxgA', '7324073'), + (289, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm6wWxgA', '7324074'), + (289, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm6wWxgA', '7324075'), + (289, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm6wWxgA', '7324078'), + (289, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm6wWxgA', '7324082'), + (289, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm6wWxgA', '7331457'), + (289, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm6wWxgA', '7363643'), + (289, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm6wWxgA', '7368606'), + (289, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm6wWxgA', '7397462'), + (289, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm6wWxgA', '7424275'), + (289, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm6wWxgA', '7432751'), + (289, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm6wWxgA', '7432752'), + (289, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm6wWxgA', '7432753'), + (289, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm6wWxgA', '7432754'), + (289, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm6wWxgA', '7432755'), + (289, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm6wWxgA', '7432756'), + (289, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm6wWxgA', '7432758'), + (289, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm6wWxgA', '7432759'), + (289, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm6wWxgA', '7433834'), + (289, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nm6wWxgA', '7470197'), + (289, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm6wWxgA', '7685613'), + (289, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm6wWxgA', '7688194'), + (289, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm6wWxgA', '7688196'), + (289, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm6wWxgA', '7688289'), + (289, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm6wWxgA', '7692763'), + (289, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm6wWxgA', '7697552'), + (289, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm6wWxgA', '7699878'), + (289, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nm6wWxgA', '7704043'), + (289, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm6wWxgA', '7712467'), + (289, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm6wWxgA', '7713585'), + (289, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm6wWxgA', '7713586'), + (289, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm6wWxgA', '7738518'), + (289, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm6wWxgA', '7750636'), + (289, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm6wWxgA', '7796540'), + (289, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm6wWxgA', '7796541'), + (289, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm6wWxgA', '7796542'), + (289, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm6wWxgA', '7825913'), + (289, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm6wWxgA', '7826209'), + (289, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm6wWxgA', '7834742'), + (289, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm6wWxgA', '7842108'), + (289, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm6wWxgA', '7842902'), + (289, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm6wWxgA', '7842903'), + (289, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm6wWxgA', '7842904'), + (289, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm6wWxgA', '7842905'), + (289, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm6wWxgA', '7855719'), + (289, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm6wWxgA', '7860683'), + (289, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm6wWxgA', '7860684'), + (289, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm6wWxgA', '7866095'), + (289, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm6wWxgA', '7869170'), + (289, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm6wWxgA', '7869188'), + (289, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm6wWxgA', '7869201'), + (289, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm6wWxgA', '7877465'), + (289, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm6wWxgA', '7888250'), + (289, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm6wWxgA', '7904777'), + (289, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm6wWxgA', '8349164'), + (289, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm6wWxgA', '8349545'), + (289, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm6wWxgA', '8368028'), + (289, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm6wWxgA', '8368029'), + (289, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm6wWxgA', '8388462'), + (289, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm6wWxgA', '8400273'), + (289, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm6wWxgA', '8400275'), + (289, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nm6wWxgA', '8400276'), + (289, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm6wWxgA', '8404977'), + (289, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm6wWxgA', '8430783'), + (289, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm6wWxgA', '8430784'), + (289, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm6wWxgA', '8430799'), + (289, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm6wWxgA', '8430800'), + (289, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm6wWxgA', '8430801'), + (289, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm6wWxgA', '8438709'), + (289, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm6wWxgA', '8457738'), + (289, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm6wWxgA', '8459566'), + (289, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm6wWxgA', '8459567'), + (289, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm6wWxgA', '8461032'), + (289, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm6wWxgA', '8477877'), + (289, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm6wWxgA', '8485688'), + (289, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm6wWxgA', '8490587'), + (289, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm6wWxgA', '8493552'), + (289, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm6wWxgA', '8493553'), + (289, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm6wWxgA', '8493554'), + (289, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm6wWxgA', '8493555'), + (289, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm6wWxgA', '8493556'), + (289, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm6wWxgA', '8493557'), + (289, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm6wWxgA', '8493558'), + (289, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm6wWxgA', '8493559'), + (289, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm6wWxgA', '8493560'), + (289, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nm6wWxgA', '8493561'), + (289, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm6wWxgA', '8493572'), + (289, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm6wWxgA', '8540725'), + (289, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm6wWxgA', '8555421'), + (290, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4EZ368Wd', '7074364'), + (290, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4EZ368Wd', '7324073'), + (290, 2689, 'attending', '2024-06-27 13:35:30', '2025-12-17 19:46:29', '4EZ368Wd', '7324074'), + (290, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4EZ368Wd', '7324075'), + (290, 2691, 'attending', '2024-07-20 21:23:13', '2025-12-17 19:46:30', '4EZ368Wd', '7324076'), + (290, 2692, 'maybe', '2024-07-27 18:59:42', '2025-12-17 19:46:30', '4EZ368Wd', '7324077'), + (290, 2693, 'maybe', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4EZ368Wd', '7324078'), + (290, 2694, 'attending', '2024-08-10 15:53:36', '2025-12-17 19:46:31', '4EZ368Wd', '7324079'), + (290, 2697, 'not_attending', '2024-08-31 17:07:51', '2025-12-17 19:46:32', '4EZ368Wd', '7324082'), + (290, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '4EZ368Wd', '7331457'), + (290, 2737, 'attending', '2024-07-02 18:33:11', '2025-12-17 19:46:29', '4EZ368Wd', '7344070'), + (290, 2739, 'attending', '2024-06-30 23:17:56', '2025-12-17 19:46:29', '4EZ368Wd', '7344575'), + (290, 2740, 'attending', '2024-07-01 18:48:03', '2025-12-17 19:46:29', '4EZ368Wd', '7344576'), + (290, 2743, 'attending', '2024-07-05 18:04:26', '2025-12-17 19:46:29', '4EZ368Wd', '7345688'), + (290, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4EZ368Wd', '7356752'), + (290, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '4EZ368Wd', '7363643'), + (290, 2772, 'maybe', '2024-07-21 17:43:12', '2025-12-17 19:46:30', '4EZ368Wd', '7368267'), + (290, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4EZ368Wd', '7368606'), + (290, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4EZ368Wd', '7397462'), + (290, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4EZ368Wd', '7424275'), + (290, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4EZ368Wd', '7424276'), + (290, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4EZ368Wd', '7432751'), + (290, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4EZ368Wd', '7432752'), + (290, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4EZ368Wd', '7432753'), + (290, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4EZ368Wd', '7432754'), + (290, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4EZ368Wd', '7432755'), + (290, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4EZ368Wd', '7432756'), + (290, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4EZ368Wd', '7432758'), + (290, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4EZ368Wd', '7432759'), + (290, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '4EZ368Wd', '7433834'), + (290, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4EZ368Wd', '7470197'), + (290, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4EZ368Wd', '7685613'), + (290, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4EZ368Wd', '7688194'), + (290, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4EZ368Wd', '7688196'), + (290, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4EZ368Wd', '7688289'), + (290, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4EZ368Wd', '7692763'), + (290, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4EZ368Wd', '7697552'), + (290, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4EZ368Wd', '7699878'), + (290, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4EZ368Wd', '7704043'), + (290, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4EZ368Wd', '7712467'), + (290, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4EZ368Wd', '7713585'), + (290, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4EZ368Wd', '7713586'), + (290, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4EZ368Wd', '7738518'), + (290, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4EZ368Wd', '7750636'), + (290, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4EZ368Wd', '7796540'), + (290, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4EZ368Wd', '7796541'), + (290, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4EZ368Wd', '7796542'), + (291, 1148, 'attending', '2021-12-17 23:19:14', '2025-12-17 19:47:31', 'VmMOryY4', '4692843'), + (291, 1156, 'attending', '2021-12-21 01:51:21', '2025-12-17 19:47:31', 'VmMOryY4', '4715207'), + (291, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'VmMOryY4', '4736497'), + (291, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'VmMOryY4', '4736499'), + (291, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'VmMOryY4', '4736500'), + (291, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'VmMOryY4', '4736503'), + (291, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'VmMOryY4', '4736504'), + (291, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VmMOryY4', '4746789'), + (291, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'VmMOryY4', '4753929'), + (291, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VmMOryY4', '5038850'), + (291, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VmMOryY4', '5045826'), + (291, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VmMOryY4', '5132533'), + (291, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMOryY4', '6045684'), + (292, 1643, 'not_attending', '2022-09-26 23:10:09', '2025-12-17 19:47:11', 'dOjwMey4', '5545856'), + (292, 1668, 'attending', '2022-09-28 21:00:17', '2025-12-17 19:47:12', 'dOjwMey4', '5563222'), + (292, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dOjwMey4', '5600604'), + (292, 1680, 'attending', '2022-09-26 21:44:32', '2025-12-17 19:47:11', 'dOjwMey4', '5601577'), + (292, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dOjwMey4', '5605544'), + (292, 1698, 'attending', '2022-09-26 22:46:14', '2025-12-17 19:47:11', 'dOjwMey4', '5606366'), + (292, 1699, 'attending', '2022-10-04 12:48:09', '2025-12-17 19:47:12', 'dOjwMey4', '5606737'), + (292, 1700, 'attending', '2022-09-30 12:59:37', '2025-12-17 19:47:12', 'dOjwMey4', '5606814'), + (292, 1701, 'not_attending', '2022-09-26 21:43:31', '2025-12-17 19:47:11', 'dOjwMey4', '5607857'), + (292, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dOjwMey4', '5630960'), + (292, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dOjwMey4', '5630961'), + (292, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dOjwMey4', '5630962'), + (292, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOjwMey4', '5630966'), + (292, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOjwMey4', '5630967'), + (292, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOjwMey4', '5630968'), + (292, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dOjwMey4', '5635406'), + (292, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dOjwMey4', '5638765'), + (292, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dOjwMey4', '5640097'), + (292, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dOjwMey4', '5640843'), + (292, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dOjwMey4', '5641521'), + (292, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOjwMey4', '5642818'), + (292, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dOjwMey4', '5652395'), + (292, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOjwMey4', '5670445'), + (292, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dOjwMey4', '5671637'), + (292, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dOjwMey4', '5672329'), + (292, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dOjwMey4', '5674057'), + (292, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dOjwMey4', '5674060'), + (292, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dOjwMey4', '5677461'), + (292, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOjwMey4', '5698046'), + (292, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dOjwMey4', '5699760'), + (292, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOjwMey4', '5741601'), + (292, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOjwMey4', '5763458'), + (292, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOjwMey4', '5774172'), + (292, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOjwMey4', '5818247'), + (292, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOjwMey4', '5819471'), + (292, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOjwMey4', '5827739'), + (292, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOjwMey4', '5844306'), + (292, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOjwMey4', '5850159'), + (292, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOjwMey4', '5858999'), + (292, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOjwMey4', '5871984'), + (292, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOjwMey4', '5876354'), + (292, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOjwMey4', '5880939'), + (292, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dOjwMey4', '5880940'), + (292, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dOjwMey4', '5880942'), + (292, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dOjwMey4', '5880943'), + (292, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOjwMey4', '5887890'), + (292, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOjwMey4', '5888598'), + (292, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOjwMey4', '5893260'), + (292, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dOjwMey4', '5899826'), + (292, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dOjwMey4', '5900199'), + (292, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dOjwMey4', '5900200'), + (292, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOjwMey4', '5900202'), + (292, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOjwMey4', '5900203'), + (292, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dOjwMey4', '5901108'), + (292, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dOjwMey4', '5901126'), + (292, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dOjwMey4', '5909655'), + (292, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dOjwMey4', '5910522'), + (292, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dOjwMey4', '5910526'), + (292, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dOjwMey4', '5910528'), + (292, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dOjwMey4', '5916219'), + (292, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dOjwMey4', '5936234'), + (292, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dOjwMey4', '5958351'), + (292, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dOjwMey4', '5959751'), + (292, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dOjwMey4', '5959755'), + (292, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dOjwMey4', '5960055'), + (292, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dOjwMey4', '5961684'), + (292, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dOjwMey4', '5962132'), + (292, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dOjwMey4', '5962133'), + (292, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dOjwMey4', '5962134'), + (292, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dOjwMey4', '5962317'), + (292, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dOjwMey4', '5962318'), + (292, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dOjwMey4', '5965933'), + (292, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dOjwMey4', '5967014'), + (292, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dOjwMey4', '5972815'), + (292, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dOjwMey4', '5974016'), + (292, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dOjwMey4', '5975052'), + (292, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dOjwMey4', '5975054'), + (292, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dOjwMey4', '5981515'), + (292, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOjwMey4', '5993516'), + (292, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOjwMey4', '5998939'), + (292, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOjwMey4', '6028191'), + (292, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOjwMey4', '6040066'), + (292, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOjwMey4', '6042717'), + (292, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOjwMey4', '6044838'), + (292, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOjwMey4', '6044839'), + (292, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOjwMey4', '6045684'), + (292, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dOjwMey4', '6050104'), + (292, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOjwMey4', '6053195'), + (292, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOjwMey4', '6053198'), + (292, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOjwMey4', '6056085'), + (292, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOjwMey4', '6056916'), + (292, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOjwMey4', '6059290'), + (292, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOjwMey4', '6060328'), + (292, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOjwMey4', '6061037'), + (292, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOjwMey4', '6061039'), + (292, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOjwMey4', '6067245'), + (292, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOjwMey4', '6068094'), + (292, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOjwMey4', '6068252'), + (292, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOjwMey4', '6068253'), + (292, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOjwMey4', '6068254'), + (292, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dOjwMey4', '6068280'), + (292, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOjwMey4', '6069093'), + (292, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOjwMey4', '6072528'), + (292, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dOjwMey4', '6075556'), + (292, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOjwMey4', '6079840'), + (292, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOjwMey4', '6083398'), + (292, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOjwMey4', '6093504'), + (292, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOjwMey4', '6097414'), + (292, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOjwMey4', '6097442'), + (292, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOjwMey4', '6097684'), + (292, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOjwMey4', '6098762'), + (292, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOjwMey4', '6101362'), + (292, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOjwMey4', '6107314'), + (293, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AXZe87vd', '7074364'), + (293, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AXZe87vd', '7324073'), + (293, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AXZe87vd', '7324074'), + (293, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AXZe87vd', '7324075'), + (293, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AXZe87vd', '7324078'), + (293, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'AXZe87vd', '7324867'), + (293, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AXZe87vd', '7331457'), + (293, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'AXZe87vd', '7332564'), + (293, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'AXZe87vd', '7335193'), + (293, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'AXZe87vd', '7359624'), + (293, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AXZe87vd', '7363643'), + (293, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AXZe87vd', '7368606'), + (294, 849, 'not_attending', '2021-07-28 23:52:53', '2025-12-17 19:47:40', '6AXe2Q64', '4015721'), + (294, 870, 'not_attending', '2021-07-03 01:49:22', '2025-12-17 19:47:39', '6AXe2Q64', '4136937'), + (294, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXe2Q64', '4136938'), + (294, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', '6AXe2Q64', '4136947'), + (294, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXe2Q64', '4210314'), + (294, 887, 'attending', '2021-07-14 22:30:47', '2025-12-17 19:47:39', '6AXe2Q64', '4225444'), + (294, 891, 'attending', '2021-07-02 19:55:49', '2025-12-17 19:47:38', '6AXe2Q64', '4229417'), + (294, 892, 'attending', '2021-07-04 02:49:50', '2025-12-17 19:47:39', '6AXe2Q64', '4229418'), + (294, 894, 'not_attending', '2021-07-14 22:34:16', '2025-12-17 19:47:39', '6AXe2Q64', '4229423'), + (294, 895, 'attending', '2021-07-03 00:56:07', '2025-12-17 19:47:39', '6AXe2Q64', '4229424'), + (294, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXe2Q64', '4239259'), + (294, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXe2Q64', '4240316'), + (294, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXe2Q64', '4240317'), + (294, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXe2Q64', '4240318'), + (294, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXe2Q64', '4240320'), + (294, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXe2Q64', '4250163'), + (294, 908, 'not_attending', '2021-07-15 22:16:22', '2025-12-17 19:47:39', '6AXe2Q64', '4257613'), + (294, 910, 'maybe', '2021-07-13 01:10:30', '2025-12-17 19:47:39', '6AXe2Q64', '4258189'), + (294, 912, 'attending', '2021-07-13 01:00:06', '2025-12-17 19:47:39', '6AXe2Q64', '4271104'), + (294, 914, 'maybe', '2021-07-17 21:25:10', '2025-12-17 19:47:39', '6AXe2Q64', '4273767'), + (294, 918, 'attending', '2021-07-12 22:34:19', '2025-12-17 19:47:39', '6AXe2Q64', '4274486'), + (294, 919, 'attending', '2021-07-14 15:31:43', '2025-12-17 19:47:39', '6AXe2Q64', '4275957'), + (294, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXe2Q64', '4277819'), + (294, 921, 'attending', '2021-07-14 00:55:02', '2025-12-17 19:47:39', '6AXe2Q64', '4278368'), + (294, 927, 'attending', '2021-07-27 00:20:10', '2025-12-17 19:47:40', '6AXe2Q64', '4297216'), + (294, 929, 'maybe', '2021-08-03 01:08:13', '2025-12-17 19:47:41', '6AXe2Q64', '4297223'), + (294, 933, 'not_attending', '2021-07-28 23:53:17', '2025-12-17 19:47:40', '6AXe2Q64', '4301723'), + (294, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXe2Q64', '4302093'), + (294, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXe2Q64', '4304151'), + (294, 938, 'attending', '2021-07-25 22:46:06', '2025-12-17 19:47:40', '6AXe2Q64', '4306597'), + (294, 952, 'maybe', '2021-08-03 01:07:52', '2025-12-17 19:47:41', '6AXe2Q64', '4318286'), + (294, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '6AXe2Q64', '4345519'), + (294, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXe2Q64', '4356801'), + (294, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '6AXe2Q64', '4358025'), + (294, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXe2Q64', '4366186'), + (294, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXe2Q64', '4366187'), + (294, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '6AXe2Q64', '4402823'), + (294, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AXe2Q64', '4420735'), + (294, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AXe2Q64', '4420738'), + (294, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AXe2Q64', '4420739'), + (294, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AXe2Q64', '4420741'), + (294, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXe2Q64', '4420744'), + (294, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXe2Q64', '4420747'), + (294, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AXe2Q64', '4420748'), + (294, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXe2Q64', '4420749'), + (294, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXe2Q64', '4461883'), + (294, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXe2Q64', '4508342'), + (294, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXe2Q64', '4568602'), + (294, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXe2Q64', '6045684'), + (295, 513, 'attending', '2020-12-20 00:09:18', '2025-12-17 19:47:55', 'rdOPwZym', '3329383'), + (295, 522, 'attending', '2020-12-16 21:26:42', '2025-12-17 19:47:55', 'rdOPwZym', '3342836'), + (295, 526, 'attending', '2021-01-03 00:17:23', '2025-12-17 19:47:48', 'rdOPwZym', '3351539'), + (295, 532, 'attending', '2021-01-08 18:38:45', '2025-12-17 19:47:48', 'rdOPwZym', '3381412'), + (295, 535, 'attending', '2021-01-09 20:26:16', '2025-12-17 19:47:48', 'rdOPwZym', '3384729'), + (295, 536, 'attending', '2021-01-06 17:21:05', '2025-12-17 19:47:48', 'rdOPwZym', '3386848'), + (295, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'rdOPwZym', '3389527'), + (295, 542, 'attending', '2021-01-12 00:21:11', '2025-12-17 19:47:48', 'rdOPwZym', '3395013'), + (295, 543, 'attending', '2021-01-15 21:01:47', '2025-12-17 19:47:48', 'rdOPwZym', '3396499'), + (295, 548, 'attending', '2021-01-13 18:17:50', '2025-12-17 19:47:48', 'rdOPwZym', '3403650'), + (295, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'rdOPwZym', '3406988'), + (295, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'rdOPwZym', '3416576'), + (295, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'rdOPwZym', '3418925'), + (295, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'rdOPwZym', '3430267'), + (295, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'rdOPwZym', '3432673'), + (295, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'rdOPwZym', '3468125'), + (295, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'rdOPwZym', '3470303'), + (295, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'rdOPwZym', '3470305'), + (295, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOPwZym', '3470991'), + (295, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'rdOPwZym', '3517815'), + (295, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'rdOPwZym', '3517816'), + (295, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'rdOPwZym', '3523941'), + (295, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOPwZym', '3533850'), + (295, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOPwZym', '3536632'), + (295, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'rdOPwZym', '3536656'), + (295, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'rdOPwZym', '3539916'), + (295, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'rdOPwZym', '3539917'), + (295, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOPwZym', '3539918'), + (295, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'rdOPwZym', '3539919'), + (295, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'rdOPwZym', '3539920'), + (295, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'rdOPwZym', '3539921'), + (295, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'rdOPwZym', '3539922'), + (295, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'rdOPwZym', '3539923'), + (295, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOPwZym', '3539927'), + (295, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOPwZym', '3582734'), + (295, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'rdOPwZym', '3583262'), + (295, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOPwZym', '3619523'), + (295, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'rdOPwZym', '3661369'), + (295, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'rdOPwZym', '3674262'), + (295, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'rdOPwZym', '3677402'), + (295, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOPwZym', '3730212'), + (295, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOPwZym', '6045684'), + (296, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'EdVWLErm', '3470305'), + (296, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'EdVWLErm', '3517815'), + (296, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'EdVWLErm', '3523941'), + (296, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'EdVWLErm', '3533850'), + (296, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'EdVWLErm', '3536632'), + (296, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'EdVWLErm', '3536656'), + (296, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'EdVWLErm', '3539916'), + (296, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'EdVWLErm', '3539917'), + (296, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'EdVWLErm', '3539918'), + (296, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'EdVWLErm', '3539919'), + (296, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'EdVWLErm', '3539920'), + (296, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'EdVWLErm', '3539921'), + (296, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'EdVWLErm', '3539922'), + (296, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'EdVWLErm', '3539923'), + (296, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVWLErm', '6045684'), + (297, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6ozY30A', '5426882'), + (297, 1512, 'attending', '2022-07-12 22:31:16', '2025-12-17 19:47:19', 'm6ozY30A', '5441112'), + (297, 1513, 'attending', '2022-07-13 10:59:43', '2025-12-17 19:47:19', 'm6ozY30A', '5441125'), + (297, 1514, 'attending', '2022-07-19 07:50:35', '2025-12-17 19:47:20', 'm6ozY30A', '5441126'), + (297, 1515, 'attending', '2022-08-05 07:50:30', '2025-12-17 19:47:21', 'm6ozY30A', '5441128'), + (297, 1516, 'attending', '2022-08-19 08:06:09', '2025-12-17 19:47:23', 'm6ozY30A', '5441129'), + (297, 1517, 'attending', '2022-08-19 08:06:20', '2025-12-17 19:47:23', 'm6ozY30A', '5441130'), + (297, 1518, 'not_attending', '2022-09-01 15:10:57', '2025-12-17 19:47:24', 'm6ozY30A', '5441131'), + (297, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6ozY30A', '5441132'), + (297, 1526, 'maybe', '2022-07-16 00:13:30', '2025-12-17 19:47:20', 'm6ozY30A', '5445059'), + (297, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6ozY30A', '5446643'), + (297, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'm6ozY30A', '5449068'), + (297, 1540, 'not_attending', '2022-07-22 16:19:25', '2025-12-17 19:47:20', 'm6ozY30A', '5453325'), + (297, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6ozY30A', '5454516'), + (297, 1544, 'not_attending', '2022-09-17 20:01:46', '2025-12-17 19:47:11', 'm6ozY30A', '5454517'), + (297, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6ozY30A', '5454605'), + (297, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6ozY30A', '5455037'), + (297, 1561, 'maybe', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6ozY30A', '5461278'), + (297, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6ozY30A', '5469480'), + (297, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6ozY30A', '5471073'), + (297, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'm6ozY30A', '5474663'), + (297, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6ozY30A', '5482022'), + (297, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6ozY30A', '5482793'), + (297, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6ozY30A', '5488912'), + (297, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6ozY30A', '5492192'), + (297, 1588, 'attending', '2022-08-09 15:31:13', '2025-12-17 19:47:22', 'm6ozY30A', '5493139'), + (297, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6ozY30A', '5493200'), + (297, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6ozY30A', '5502188'), + (297, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6ozY30A', '5505059'), + (297, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6ozY30A', '5509055'), + (297, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6ozY30A', '5512862'), + (297, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6ozY30A', '5513985'), + (297, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'm6ozY30A', '5519981'), + (297, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6ozY30A', '5522550'), + (297, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6ozY30A', '5534683'), + (297, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6ozY30A', '5537735'), + (297, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6ozY30A', '5540859'), + (297, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6ozY30A', '5546619'), + (297, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6ozY30A', '5555245'), + (297, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6ozY30A', '5557747'), + (297, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6ozY30A', '5560255'), + (297, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6ozY30A', '5562906'), + (297, 1667, 'attending', '2022-09-24 19:16:23', '2025-12-17 19:47:11', 'm6ozY30A', '5563221'), + (297, 1668, 'attending', '2022-10-01 01:23:21', '2025-12-17 19:47:12', 'm6ozY30A', '5563222'), + (297, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6ozY30A', '5600604'), + (297, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6ozY30A', '5605544'), + (297, 1699, 'attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'm6ozY30A', '5606737'), + (297, 1719, 'attending', '2022-10-05 07:56:09', '2025-12-17 19:47:12', 'm6ozY30A', '5630958'), + (297, 1720, 'attending', '2022-10-05 08:01:57', '2025-12-17 19:47:12', 'm6ozY30A', '5630959'), + (297, 1721, 'not_attending', '2022-10-17 07:12:44', '2025-12-17 19:47:13', 'm6ozY30A', '5630960'), + (297, 1722, 'not_attending', '2022-10-24 14:45:57', '2025-12-17 19:47:14', 'm6ozY30A', '5630961'), + (297, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6ozY30A', '5630962'), + (297, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6ozY30A', '5630966'), + (297, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6ozY30A', '5630967'), + (297, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm6ozY30A', '5630968'), + (297, 1727, 'not_attending', '2022-12-03 22:25:03', '2025-12-17 19:47:16', 'm6ozY30A', '5630969'), + (297, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6ozY30A', '5635406'), + (297, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6ozY30A', '5638765'), + (297, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6ozY30A', '5640097'), + (297, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6ozY30A', '5640843'), + (297, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6ozY30A', '5641521'), + (297, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6ozY30A', '5642818'), + (297, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6ozY30A', '5652395'), + (297, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6ozY30A', '5670445'), + (297, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6ozY30A', '5671637'), + (297, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6ozY30A', '5672329'), + (297, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6ozY30A', '5674057'), + (297, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6ozY30A', '5674060'), + (297, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6ozY30A', '5677461'), + (297, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6ozY30A', '5698046'), + (297, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6ozY30A', '5699760'), + (297, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6ozY30A', '5741601'), + (297, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6ozY30A', '5763458'), + (297, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6ozY30A', '5774172'), + (297, 1832, 'not_attending', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'm6ozY30A', '5818247'), + (297, 1834, 'not_attending', '2022-12-10 09:03:28', '2025-12-17 19:47:17', 'm6ozY30A', '5819470'), + (297, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6ozY30A', '5819471'), + (297, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6ozY30A', '5827739'), + (297, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6ozY30A', '5844306'), + (297, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6ozY30A', '5850159'), + (297, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6ozY30A', '5858999'), + (297, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6ozY30A', '5871984'), + (297, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6ozY30A', '5876354'), + (297, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm6ozY30A', '5880939'), + (297, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6ozY30A', '5887890'), + (297, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6ozY30A', '5888598'), + (297, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6ozY30A', '5893260'), + (297, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6ozY30A', '6045684'), + (298, 311, 'not_attending', '2020-09-14 14:45:56', '2025-12-17 19:47:56', 'QdJY2Pn4', '3186057'), + (298, 327, 'attending', '2020-09-26 14:22:35', '2025-12-17 19:47:52', 'QdJY2Pn4', '3197085'), + (298, 328, 'attending', '2020-09-26 14:22:47', '2025-12-17 19:47:52', 'QdJY2Pn4', '3197086'), + (298, 333, 'attending', '2020-10-05 22:40:52', '2025-12-17 19:47:52', 'QdJY2Pn4', '3199782'), + (298, 334, 'attending', '2020-10-08 20:04:45', '2025-12-17 19:47:52', 'QdJY2Pn4', '3199784'), + (298, 342, 'attending', '2020-10-02 21:48:37', '2025-12-17 19:47:52', 'QdJY2Pn4', '3204472'), + (298, 347, 'maybe', '2020-09-24 19:44:26', '2025-12-17 19:47:51', 'QdJY2Pn4', '3207930'), + (298, 348, 'attending', '2020-09-25 16:02:17', '2025-12-17 19:47:52', 'QdJY2Pn4', '3209159'), + (298, 357, 'maybe', '2020-09-30 03:11:43', '2025-12-17 19:47:52', 'QdJY2Pn4', '3212573'), + (298, 362, 'attending', '2020-09-26 01:14:13', '2025-12-17 19:47:52', 'QdJY2Pn4', '3214207'), + (298, 363, 'not_attending', '2020-09-28 00:17:53', '2025-12-17 19:47:52', 'QdJY2Pn4', '3217037'), + (298, 365, 'maybe', '2020-09-24 19:44:21', '2025-12-17 19:47:52', 'QdJY2Pn4', '3218510'), + (298, 369, 'attending', '2020-10-12 21:04:53', '2025-12-17 19:47:52', 'QdJY2Pn4', '3221404'), + (298, 383, 'attending', '2020-09-28 00:17:20', '2025-12-17 19:47:52', 'QdJY2Pn4', '3227946'), + (298, 385, 'attending', '2020-10-03 15:24:48', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228698'), + (298, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228699'), + (298, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228700'), + (298, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228701'), + (298, 412, 'not_attending', '2020-10-07 23:03:59', '2025-12-17 19:47:52', 'QdJY2Pn4', '3236636'), + (298, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'QdJY2Pn4', '3245751'), + (298, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'QdJY2Pn4', '3250232'), + (298, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'QdJY2Pn4', '3256168'), + (298, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'QdJY2Pn4', '3263578'), + (298, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'QdJY2Pn4', '3276428'), + (298, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'QdJY2Pn4', '3281467'), + (298, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'QdJY2Pn4', '3281470'), + (298, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'QdJY2Pn4', '3281829'), + (298, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'QdJY2Pn4', '3285413'), + (298, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'QdJY2Pn4', '3285414'), + (298, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'QdJY2Pn4', '3297764'), + (298, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'QdJY2Pn4', '3313856'), + (298, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'QdJY2Pn4', '3314909'), + (298, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'QdJY2Pn4', '3314964'), + (298, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'QdJY2Pn4', '3323365'), + (298, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'QdJY2Pn4', '3329383'), + (298, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'QdJY2Pn4', '3351539'), + (298, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'QdJY2Pn4', '3386848'), + (298, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'QdJY2Pn4', '3389527'), + (298, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'QdJY2Pn4', '3396499'), + (298, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'QdJY2Pn4', '3403650'), + (298, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'QdJY2Pn4', '3406988'), + (298, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'QdJY2Pn4', '3408338'), + (298, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'QdJY2Pn4', '3416576'), + (298, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJY2Pn4', '6045684'), + (299, 2376, 'attending', '2024-01-03 22:53:14', '2025-12-17 19:46:40', 'xAYQZxGA', '6642900'), + (299, 2377, 'attending', '2024-01-03 22:52:52', '2025-12-17 19:46:37', 'xAYQZxGA', '6643448'), + (299, 2379, 'attending', '2024-01-03 22:52:24', '2025-12-17 19:46:37', 'xAYQZxGA', '6644187'), + (299, 2385, 'attending', '2024-01-03 22:52:55', '2025-12-17 19:46:37', 'xAYQZxGA', '6648943'), + (299, 2386, 'attending', '2024-01-03 22:50:43', '2025-12-17 19:46:37', 'xAYQZxGA', '6648951'), + (299, 2387, 'attending', '2024-01-03 22:52:12', '2025-12-17 19:46:37', 'xAYQZxGA', '6648952'), + (299, 2388, 'attending', '2024-01-03 22:52:35', '2025-12-17 19:46:37', 'xAYQZxGA', '6649244'), + (299, 2389, 'attending', '2024-01-03 22:53:11', '2025-12-17 19:46:40', 'xAYQZxGA', '6651094'), + (299, 2390, 'maybe', '2024-01-03 22:52:39', '2025-12-17 19:46:37', 'xAYQZxGA', '6651141'), + (299, 2392, 'attending', '2024-01-09 18:01:00', '2025-12-17 19:46:37', 'xAYQZxGA', '6654412'), + (299, 2393, 'maybe', '2024-01-09 09:42:16', '2025-12-17 19:46:38', 'xAYQZxGA', '6654468'), + (299, 2394, 'maybe', '2024-01-09 18:03:37', '2025-12-17 19:46:38', 'xAYQZxGA', '6654470'), + (299, 2396, 'attending', '2024-01-16 21:54:29', '2025-12-17 19:46:38', 'xAYQZxGA', '6655401'), + (299, 2397, 'attending', '2024-01-08 22:39:05', '2025-12-17 19:46:37', 'xAYQZxGA', '6657379'), + (299, 2398, 'attending', '2024-01-11 03:57:23', '2025-12-17 19:46:37', 'xAYQZxGA', '6657381'), + (299, 2399, 'attending', '2024-01-09 18:03:14', '2025-12-17 19:46:37', 'xAYQZxGA', '6657583'), + (299, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xAYQZxGA', '6661585'), + (299, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xAYQZxGA', '6661588'), + (299, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xAYQZxGA', '6661589'), + (299, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xAYQZxGA', '6699906'), + (299, 2408, 'not_attending', '2024-01-21 00:44:34', '2025-12-17 19:46:40', 'xAYQZxGA', '6699907'), + (299, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'xAYQZxGA', '6699913'), + (299, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xAYQZxGA', '6701109'), + (299, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xAYQZxGA', '6705219'), + (299, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xAYQZxGA', '6710153'), + (299, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xAYQZxGA', '6711552'), + (299, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'xAYQZxGA', '6711553'), + (299, 2435, 'not_attending', '2024-01-29 19:35:31', '2025-12-17 19:46:41', 'xAYQZxGA', '6721547'), + (299, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xAYQZxGA', '6722688'), + (299, 2438, 'attending', '2024-02-07 19:10:20', '2025-12-17 19:46:41', 'xAYQZxGA', '6730201'), + (299, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xAYQZxGA', '6730620'), + (299, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xAYQZxGA', '6730642'), + (299, 2449, 'attending', '2024-02-19 23:07:19', '2025-12-17 19:46:42', 'xAYQZxGA', '6735833'), + (299, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xAYQZxGA', '6740364'), + (299, 2454, 'attending', '2024-02-20 22:47:28', '2025-12-17 19:46:42', 'xAYQZxGA', '6740921'), + (299, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xAYQZxGA', '6743829'), + (299, 2462, 'attending', '2024-02-12 19:56:25', '2025-12-17 19:46:41', 'xAYQZxGA', '6744701'), + (299, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xAYQZxGA', '7030380'), + (299, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'xAYQZxGA', '7033677'), + (299, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xAYQZxGA', '7035415'), + (299, 2475, 'attending', '2024-02-29 00:02:34', '2025-12-17 19:46:43', 'xAYQZxGA', '7035643'), + (299, 2476, 'attending', '2024-02-27 12:38:55', '2025-12-17 19:46:43', 'xAYQZxGA', '7035691'), + (299, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xAYQZxGA', '7044715'), + (299, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xAYQZxGA', '7050318'), + (299, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xAYQZxGA', '7050319'), + (299, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xAYQZxGA', '7050322'), + (299, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xAYQZxGA', '7057804'), + (299, 2500, 'maybe', '2024-03-06 23:19:05', '2025-12-17 19:46:43', 'xAYQZxGA', '7058603'), + (299, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'xAYQZxGA', '7059866'), + (299, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xAYQZxGA', '7072824'), + (299, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xAYQZxGA', '7074348'), + (299, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xAYQZxGA', '7074364'), + (299, 2537, 'not_attending', '2024-03-23 14:30:34', '2025-12-17 19:46:33', 'xAYQZxGA', '7085484'), + (299, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'xAYQZxGA', '7089267'), + (299, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xAYQZxGA', '7098747'), + (299, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xAYQZxGA', '7113468'), + (299, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xAYQZxGA', '7114856'), + (299, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xAYQZxGA', '7114951'), + (299, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xAYQZxGA', '7114955'), + (299, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xAYQZxGA', '7114956'), + (299, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xAYQZxGA', '7114957'), + (299, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xAYQZxGA', '7153615'), + (299, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xAYQZxGA', '7159484'), + (299, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xAYQZxGA', '7178446'), + (299, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'xAYQZxGA', '7220467'), + (299, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xAYQZxGA', '7240354'), + (299, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xAYQZxGA', '7251633'), + (299, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'xAYQZxGA', '7263048'), + (299, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'xAYQZxGA', '7302674'), + (299, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xAYQZxGA', '7324073'), + (299, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xAYQZxGA', '7324074'), + (299, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xAYQZxGA', '7324075'), + (299, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'xAYQZxGA', '7324078'), + (299, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xAYQZxGA', '7324082'), + (299, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xAYQZxGA', '7331457'), + (299, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xAYQZxGA', '7363643'), + (299, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xAYQZxGA', '7368606'), + (299, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xAYQZxGA', '7397462'), + (299, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xAYQZxGA', '7424275'), + (299, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xAYQZxGA', '7432751'), + (299, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xAYQZxGA', '7432752'), + (299, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xAYQZxGA', '7432753'), + (299, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xAYQZxGA', '7432754'), + (299, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xAYQZxGA', '7432755'), + (299, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xAYQZxGA', '7432756'), + (299, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xAYQZxGA', '7432758'), + (299, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xAYQZxGA', '7432759'), + (299, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xAYQZxGA', '7433834'), + (299, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'xAYQZxGA', '7470197'), + (299, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xAYQZxGA', '7685613'), + (299, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xAYQZxGA', '7688194'), + (299, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xAYQZxGA', '7688196'), + (299, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xAYQZxGA', '7688289'), + (299, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xAYQZxGA', '7692763'), + (299, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xAYQZxGA', '7697552'), + (299, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xAYQZxGA', '7699878'), + (299, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'xAYQZxGA', '7704043'), + (299, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'xAYQZxGA', '7712467'), + (299, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'xAYQZxGA', '7713585'), + (299, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'xAYQZxGA', '7713586'), + (299, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xAYQZxGA', '7738518'), + (299, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xAYQZxGA', '7750636'), + (299, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xAYQZxGA', '7796540'), + (299, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xAYQZxGA', '7796541'), + (299, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xAYQZxGA', '7796542'), + (299, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xAYQZxGA', '7825913'), + (299, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xAYQZxGA', '7826209'), + (299, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xAYQZxGA', '7834742'), + (299, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'xAYQZxGA', '7842108'), + (299, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xAYQZxGA', '7842902'), + (299, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xAYQZxGA', '7842903'), + (299, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xAYQZxGA', '7842904'), + (299, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xAYQZxGA', '7842905'), + (299, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xAYQZxGA', '7855719'), + (299, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xAYQZxGA', '7860683'), + (299, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xAYQZxGA', '7860684'), + (299, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xAYQZxGA', '7866095'), + (299, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xAYQZxGA', '7869170'), + (299, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xAYQZxGA', '7869188'), + (299, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xAYQZxGA', '7869201'), + (299, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xAYQZxGA', '7877465'), + (299, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xAYQZxGA', '7888250'), + (299, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xAYQZxGA', '7904777'), + (299, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xAYQZxGA', '8349164'), + (299, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xAYQZxGA', '8349545'), + (299, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xAYQZxGA', '8368028'), + (299, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'xAYQZxGA', '8368029'), + (299, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xAYQZxGA', '8388462'), + (299, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xAYQZxGA', '8400273'), + (299, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'xAYQZxGA', '8400275'), + (299, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'xAYQZxGA', '8400276'), + (299, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xAYQZxGA', '8404977'), + (299, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xAYQZxGA', '8430783'), + (299, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xAYQZxGA', '8430784'), + (299, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xAYQZxGA', '8430799'), + (299, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xAYQZxGA', '8430800'), + (299, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xAYQZxGA', '8430801'), + (299, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'xAYQZxGA', '8438709'), + (299, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xAYQZxGA', '8457738'), + (299, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xAYQZxGA', '8459566'), + (299, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xAYQZxGA', '8459567'), + (299, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xAYQZxGA', '8461032'), + (299, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xAYQZxGA', '8477877'), + (299, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xAYQZxGA', '8485688'), + (299, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xAYQZxGA', '8490587'), + (299, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xAYQZxGA', '8493552'), + (299, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xAYQZxGA', '8493553'), + (299, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xAYQZxGA', '8493554'), + (299, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xAYQZxGA', '8493555'), + (299, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xAYQZxGA', '8493556'), + (299, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xAYQZxGA', '8493557'), + (299, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xAYQZxGA', '8493558'), + (299, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xAYQZxGA', '8493559'), + (299, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xAYQZxGA', '8493560'), + (299, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'xAYQZxGA', '8493561'), + (299, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xAYQZxGA', '8493572'), + (299, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAYQZxGA', '8540725'), + (299, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAYQZxGA', '8555421'), + (300, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ndaxPMZ4', '5441131'), + (300, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ndaxPMZ4', '5441132'), + (300, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndaxPMZ4', '5505059'), + (300, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ndaxPMZ4', '5509055'), + (300, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndaxPMZ4', '5512862'), + (300, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndaxPMZ4', '5513985'), + (300, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ndaxPMZ4', '5519981'), + (300, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndaxPMZ4', '5522550'), + (300, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndaxPMZ4', '5534683'), + (300, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ndaxPMZ4', '5537735'), + (300, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndaxPMZ4', '5540859'), + (300, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndaxPMZ4', '5546619'), + (300, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndaxPMZ4', '5557747'), + (300, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndaxPMZ4', '5560255'), + (300, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndaxPMZ4', '5562906'), + (300, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndaxPMZ4', '5600604'), + (300, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndaxPMZ4', '5605544'), + (300, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ndaxPMZ4', '5630960'), + (300, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndaxPMZ4', '5630961'), + (300, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndaxPMZ4', '5630962'), + (300, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndaxPMZ4', '5630966'), + (300, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ndaxPMZ4', '5630967'), + (300, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndaxPMZ4', '5630968'), + (300, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndaxPMZ4', '5635406'), + (300, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndaxPMZ4', '5638765'), + (300, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndaxPMZ4', '5640097'), + (300, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ndaxPMZ4', '5640843'), + (300, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndaxPMZ4', '5641521'), + (300, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ndaxPMZ4', '5642818'), + (300, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndaxPMZ4', '5652395'), + (300, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ndaxPMZ4', '5670445'), + (300, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndaxPMZ4', '5671637'), + (300, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndaxPMZ4', '5672329'), + (300, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndaxPMZ4', '5674057'), + (300, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndaxPMZ4', '5674060'), + (300, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndaxPMZ4', '5677461'), + (300, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndaxPMZ4', '5698046'), + (300, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ndaxPMZ4', '5699760'), + (300, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndaxPMZ4', '5741601'), + (300, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndaxPMZ4', '5763458'), + (300, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndaxPMZ4', '5774172'), + (300, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ndaxPMZ4', '5818247'), + (300, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndaxPMZ4', '5819471'), + (300, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndaxPMZ4', '5827739'), + (300, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndaxPMZ4', '5844306'), + (300, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndaxPMZ4', '5850159'), + (300, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndaxPMZ4', '5858999'), + (300, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndaxPMZ4', '5871984'), + (300, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndaxPMZ4', '5876354'), + (300, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndaxPMZ4', '5880939'), + (300, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ndaxPMZ4', '5880940'), + (300, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndaxPMZ4', '5880942'), + (300, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndaxPMZ4', '5880943'), + (300, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndaxPMZ4', '5887890'), + (300, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndaxPMZ4', '5888598'), + (300, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndaxPMZ4', '5893260'), + (300, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndaxPMZ4', '5899826'), + (300, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndaxPMZ4', '5900199'), + (300, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ndaxPMZ4', '5900200'), + (300, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndaxPMZ4', '5900202'), + (300, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndaxPMZ4', '5900203'), + (300, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndaxPMZ4', '5901108'), + (300, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndaxPMZ4', '5901126'), + (300, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndaxPMZ4', '5909655'), + (300, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndaxPMZ4', '5910522'), + (300, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndaxPMZ4', '5910526'), + (300, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndaxPMZ4', '5910528'), + (300, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ndaxPMZ4', '5916219'), + (300, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndaxPMZ4', '5936234'), + (300, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndaxPMZ4', '5958351'), + (300, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndaxPMZ4', '5959751'), + (300, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndaxPMZ4', '5959755'), + (300, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndaxPMZ4', '5960055'), + (300, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndaxPMZ4', '5961684'), + (300, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndaxPMZ4', '5962132'), + (300, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ndaxPMZ4', '5962133'), + (300, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndaxPMZ4', '5962134'), + (300, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndaxPMZ4', '5962317'), + (300, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndaxPMZ4', '5962318'), + (300, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndaxPMZ4', '5965933'), + (300, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndaxPMZ4', '5967014'), + (300, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndaxPMZ4', '5972815'), + (300, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndaxPMZ4', '5974016'), + (300, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndaxPMZ4', '5981515'), + (300, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndaxPMZ4', '5993516'), + (300, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndaxPMZ4', '5998939'), + (300, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndaxPMZ4', '6028191'), + (300, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndaxPMZ4', '6040066'), + (300, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndaxPMZ4', '6042717'), + (300, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndaxPMZ4', '6044838'), + (300, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndaxPMZ4', '6044839'), + (300, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaxPMZ4', '6045684'), + (300, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndaxPMZ4', '6050104'), + (300, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndaxPMZ4', '6053195'), + (300, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndaxPMZ4', '6053198'), + (300, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndaxPMZ4', '6056085'), + (300, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndaxPMZ4', '6056916'), + (300, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndaxPMZ4', '6059290'), + (300, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndaxPMZ4', '6060328'), + (300, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndaxPMZ4', '6061037'), + (300, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndaxPMZ4', '6061039'), + (300, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndaxPMZ4', '6067245'), + (300, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndaxPMZ4', '6068094'), + (300, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndaxPMZ4', '6068252'), + (300, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndaxPMZ4', '6068253'), + (300, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndaxPMZ4', '6068254'), + (300, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndaxPMZ4', '6068280'), + (300, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndaxPMZ4', '6069093'), + (300, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndaxPMZ4', '6072528'), + (300, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndaxPMZ4', '6079840'), + (300, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndaxPMZ4', '6083398'), + (300, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndaxPMZ4', '6093504'), + (300, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndaxPMZ4', '6097414'), + (300, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndaxPMZ4', '6097442'), + (300, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndaxPMZ4', '6097684'), + (300, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndaxPMZ4', '6098762'), + (300, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ndaxPMZ4', '6101361'), + (300, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndaxPMZ4', '6101362'), + (300, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndaxPMZ4', '6107314'), + (300, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndaxPMZ4', '6120034'), + (300, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'ndaxPMZ4', '6136733'), + (300, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndaxPMZ4', '6137989'), + (300, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndaxPMZ4', '6150864'), + (300, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndaxPMZ4', '6155491'), + (300, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndaxPMZ4', '6164417'), + (300, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndaxPMZ4', '6166388'), + (300, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndaxPMZ4', '6176439'), + (300, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndaxPMZ4', '6182410'), + (300, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndaxPMZ4', '6185812'), + (300, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndaxPMZ4', '6187651'), + (300, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndaxPMZ4', '6187963'), + (300, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndaxPMZ4', '6187964'), + (300, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndaxPMZ4', '6187966'), + (300, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndaxPMZ4', '6187967'), + (300, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndaxPMZ4', '6187969'), + (300, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndaxPMZ4', '6334878'), + (300, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndaxPMZ4', '6337236'), + (300, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndaxPMZ4', '6337970'), + (300, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndaxPMZ4', '6338308'), + (300, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndaxPMZ4', '6341710'), + (300, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndaxPMZ4', '6342044'), + (300, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndaxPMZ4', '6342298'), + (300, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndaxPMZ4', '6343294'), + (300, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndaxPMZ4', '6347034'), + (300, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndaxPMZ4', '6347056'), + (300, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndaxPMZ4', '6353830'), + (300, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndaxPMZ4', '6353831'), + (300, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndaxPMZ4', '6357867'), + (300, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndaxPMZ4', '6358652'), + (300, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndaxPMZ4', '6361709'), + (300, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndaxPMZ4', '6361710'), + (300, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndaxPMZ4', '6361711'), + (300, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndaxPMZ4', '6361712'), + (300, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndaxPMZ4', '6361713'), + (300, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndaxPMZ4', '6382573'), + (300, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ndaxPMZ4', '6388604'), + (300, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndaxPMZ4', '6394629'), + (300, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndaxPMZ4', '6394631'), + (300, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndaxPMZ4', '6440863'), + (300, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndaxPMZ4', '6445440'), + (300, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndaxPMZ4', '6453951'), + (300, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndaxPMZ4', '6461696'), + (300, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndaxPMZ4', '6462129'), + (300, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndaxPMZ4', '6463218'), + (300, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ndaxPMZ4', '6472181'), + (300, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndaxPMZ4', '6482693'), + (300, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ndaxPMZ4', '6484200'), + (300, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndaxPMZ4', '6484680'), + (300, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndaxPMZ4', '6507741'), + (300, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndaxPMZ4', '6514659'), + (300, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndaxPMZ4', '6514660'), + (300, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndaxPMZ4', '6519103'), + (300, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndaxPMZ4', '6535681'), + (300, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndaxPMZ4', '6584747'), + (300, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndaxPMZ4', '6587097'), + (300, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndaxPMZ4', '6609022'), + (300, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndaxPMZ4', '6632757'), + (300, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndaxPMZ4', '6644187'), + (300, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndaxPMZ4', '6648951'), + (300, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndaxPMZ4', '6648952'), + (300, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndaxPMZ4', '6655401'), + (300, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndaxPMZ4', '6661585'), + (300, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndaxPMZ4', '6661588'), + (300, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndaxPMZ4', '6661589'), + (300, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndaxPMZ4', '6699906'), + (300, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ndaxPMZ4', '6699913'), + (300, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndaxPMZ4', '6701109'), + (300, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndaxPMZ4', '6705219'), + (300, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndaxPMZ4', '6710153'), + (300, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndaxPMZ4', '6711552'), + (300, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ndaxPMZ4', '6711553'), + (300, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ndaxPMZ4', '6722688'), + (300, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ndaxPMZ4', '6730620'), + (300, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ndaxPMZ4', '6740364'), + (300, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ndaxPMZ4', '6743829'), + (300, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ndaxPMZ4', '7030380'), + (300, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ndaxPMZ4', '7033677'), + (300, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ndaxPMZ4', '7044715'), + (300, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ndaxPMZ4', '7050318'), + (300, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ndaxPMZ4', '7050319'), + (300, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ndaxPMZ4', '7050322'), + (300, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ndaxPMZ4', '7057804'), + (300, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ndaxPMZ4', '7072824'), + (300, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ndaxPMZ4', '7074348'), + (300, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndaxPMZ4', '7074364'), + (300, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ndaxPMZ4', '7089267'), + (300, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ndaxPMZ4', '7098747'), + (300, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ndaxPMZ4', '7113468'), + (300, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ndaxPMZ4', '7114856'), + (300, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ndaxPMZ4', '7114951'), + (300, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ndaxPMZ4', '7114955'), + (300, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ndaxPMZ4', '7114956'), + (300, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndaxPMZ4', '7114957'), + (300, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndaxPMZ4', '7159484'), + (300, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndaxPMZ4', '7178446'), + (300, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ndaxPMZ4', '7220467'), + (300, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndaxPMZ4', '7240354'), + (300, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndaxPMZ4', '7251633'), + (300, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndaxPMZ4', '7324073'), + (300, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndaxPMZ4', '7324074'), + (300, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndaxPMZ4', '7324075'), + (300, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ndaxPMZ4', '7324078'), + (300, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ndaxPMZ4', '7324082'), + (300, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ndaxPMZ4', '7331457'), + (300, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ndaxPMZ4', '7363643'), + (300, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndaxPMZ4', '7368606'), + (300, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndaxPMZ4', '7397462'), + (300, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndaxPMZ4', '7424275'), + (300, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndaxPMZ4', '7432751'), + (300, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndaxPMZ4', '7432752'), + (300, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndaxPMZ4', '7432753'), + (300, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432754'), + (300, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432755'), + (300, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432756'), + (300, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432758'), + (300, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432759'), + (300, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndaxPMZ4', '7433834'), + (300, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndaxPMZ4', '7470197'), + (300, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndaxPMZ4', '7685613'), + (300, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndaxPMZ4', '7688194'), + (300, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndaxPMZ4', '7688196'), + (300, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndaxPMZ4', '7688289'), + (300, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ndaxPMZ4', '7692763'), + (300, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndaxPMZ4', '7697552'), + (300, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndaxPMZ4', '7699878'), + (300, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndaxPMZ4', '7704043'), + (300, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndaxPMZ4', '7712467'), + (300, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ndaxPMZ4', '7713585'), + (300, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ndaxPMZ4', '7713586'), + (300, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndaxPMZ4', '7738518'), + (300, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndaxPMZ4', '7750636'), + (300, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndaxPMZ4', '7796540'), + (300, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndaxPMZ4', '7796541'), + (300, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndaxPMZ4', '7796542'), + (300, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndaxPMZ4', '7825913'), + (300, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndaxPMZ4', '7826209'), + (300, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndaxPMZ4', '7834742'), + (300, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ndaxPMZ4', '7842108'), + (300, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndaxPMZ4', '7842902'), + (300, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndaxPMZ4', '7842903'), + (300, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndaxPMZ4', '7842904'), + (300, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndaxPMZ4', '7842905'), + (300, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndaxPMZ4', '7855719'), + (300, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndaxPMZ4', '7860683'), + (300, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndaxPMZ4', '7860684'), + (300, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndaxPMZ4', '7866095'), + (300, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndaxPMZ4', '7869170'), + (300, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ndaxPMZ4', '7869188'), + (300, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndaxPMZ4', '7869201'), + (300, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndaxPMZ4', '7877465'), + (300, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndaxPMZ4', '7888250'), + (300, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ndaxPMZ4', '7904777'), + (300, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndaxPMZ4', '8349164'), + (300, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndaxPMZ4', '8349545'), + (300, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndaxPMZ4', '8368028'), + (300, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndaxPMZ4', '8368029'), + (300, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndaxPMZ4', '8388462'), + (300, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndaxPMZ4', '8400273'), + (300, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndaxPMZ4', '8400275'), + (300, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ndaxPMZ4', '8400276'), + (300, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndaxPMZ4', '8404977'), + (300, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndaxPMZ4', '8430783'), + (300, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndaxPMZ4', '8430784'), + (300, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndaxPMZ4', '8430799'), + (300, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndaxPMZ4', '8430800'), + (300, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndaxPMZ4', '8430801'), + (300, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndaxPMZ4', '8438709'), + (300, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndaxPMZ4', '8457738'), + (300, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndaxPMZ4', '8459566'), + (300, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndaxPMZ4', '8459567'), + (300, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndaxPMZ4', '8461032'), + (300, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndaxPMZ4', '8477877'), + (300, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ndaxPMZ4', '8485688'), + (300, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ndaxPMZ4', '8490587'), + (300, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ndaxPMZ4', '8493552'), + (300, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ndaxPMZ4', '8493553'), + (300, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ndaxPMZ4', '8493554'), + (300, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ndaxPMZ4', '8493555'), + (300, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ndaxPMZ4', '8493556'), + (300, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ndaxPMZ4', '8493557'), + (300, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ndaxPMZ4', '8493558'), + (300, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ndaxPMZ4', '8493559'), + (300, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ndaxPMZ4', '8493560'), + (300, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ndaxPMZ4', '8493561'), + (300, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ndaxPMZ4', '8493572'), + (300, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ndaxPMZ4', '8540725'), + (300, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndaxPMZ4', '8555421'), + (301, 403, 'attending', '2021-02-25 02:10:40', '2025-12-17 19:47:51', '54koj9p4', '3236458'), + (301, 573, 'attending', '2021-02-26 23:03:34', '2025-12-17 19:47:50', '54koj9p4', '3435542'), + (301, 574, 'attending', '2021-03-06 00:34:26', '2025-12-17 19:47:51', '54koj9p4', '3435543'), + (301, 595, 'attending', '2021-03-08 21:57:10', '2025-12-17 19:47:51', '54koj9p4', '3467761'), + (301, 604, 'attending', '2021-02-27 03:52:51', '2025-12-17 19:47:50', '54koj9p4', '3470305'), + (301, 621, 'attending', '2021-03-03 07:14:01', '2025-12-17 19:47:51', '54koj9p4', '3517815'), + (301, 622, 'attending', '2021-03-08 21:39:05', '2025-12-17 19:47:51', '54koj9p4', '3517816'), + (301, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '54koj9p4', '3523941'), + (301, 630, 'attending', '2021-03-02 19:22:16', '2025-12-17 19:47:51', '54koj9p4', '3533425'), + (301, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54koj9p4', '3533850'), + (301, 633, 'attending', '2021-03-22 04:30:12', '2025-12-17 19:47:44', '54koj9p4', '3534717'), + (301, 634, 'maybe', '2021-04-02 04:24:53', '2025-12-17 19:47:44', '54koj9p4', '3534718'), + (301, 635, 'attending', '2021-04-09 20:19:07', '2025-12-17 19:47:44', '54koj9p4', '3534719'), + (301, 636, 'maybe', '2021-04-16 22:29:44', '2025-12-17 19:47:45', '54koj9p4', '3534720'), + (301, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '54koj9p4', '3536632'), + (301, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '54koj9p4', '3536656'), + (301, 641, 'attending', '2021-03-25 21:55:43', '2025-12-17 19:47:44', '54koj9p4', '3539916'), + (301, 642, 'attending', '2021-04-10 17:35:01', '2025-12-17 19:47:44', '54koj9p4', '3539917'), + (301, 643, 'attending', '2021-04-14 17:51:51', '2025-12-17 19:47:45', '54koj9p4', '3539918'), + (301, 644, 'not_attending', '2021-04-20 21:25:58', '2025-12-17 19:47:46', '54koj9p4', '3539919'), + (301, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54koj9p4', '3539920'), + (301, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54koj9p4', '3539921'), + (301, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54koj9p4', '3539922'), + (301, 648, 'attending', '2021-05-29 02:34:49', '2025-12-17 19:47:47', '54koj9p4', '3539923'), + (301, 649, 'attending', '2021-03-16 17:06:31', '2025-12-17 19:47:51', '54koj9p4', '3539927'), + (301, 650, 'attending', '2021-03-27 03:48:44', '2025-12-17 19:47:44', '54koj9p4', '3539928'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (301, 678, 'attending', '2021-03-11 08:24:24', '2025-12-17 19:47:51', '54koj9p4', '3547158'), + (301, 684, 'not_attending', '2021-03-11 08:24:50', '2025-12-17 19:47:51', '54koj9p4', '3549257'), + (301, 692, 'attending', '2021-03-13 18:59:47', '2025-12-17 19:47:51', '54koj9p4', '3561995'), + (301, 704, 'maybe', '2021-03-29 17:09:53', '2025-12-17 19:47:44', '54koj9p4', '3581429'), + (301, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54koj9p4', '3582734'), + (301, 707, 'maybe', '2021-04-11 06:04:03', '2025-12-17 19:47:46', '54koj9p4', '3583262'), + (301, 708, 'maybe', '2021-03-25 19:04:08', '2025-12-17 19:47:44', '54koj9p4', '3587850'), + (301, 709, 'maybe', '2021-04-04 23:46:43', '2025-12-17 19:47:44', '54koj9p4', '3587852'), + (301, 710, 'maybe', '2021-04-04 23:46:47', '2025-12-17 19:47:44', '54koj9p4', '3587853'), + (301, 712, 'attending', '2021-03-29 17:09:41', '2025-12-17 19:47:44', '54koj9p4', '3604056'), + (301, 713, 'attending', '2021-03-29 17:10:04', '2025-12-17 19:47:44', '54koj9p4', '3604061'), + (301, 714, 'attending', '2021-03-29 17:10:12', '2025-12-17 19:47:44', '54koj9p4', '3604063'), + (301, 717, 'maybe', '2021-03-25 18:22:46', '2025-12-17 19:47:44', '54koj9p4', '3619523'), + (301, 724, 'maybe', '2021-04-11 06:03:56', '2025-12-17 19:47:46', '54koj9p4', '3661369'), + (301, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54koj9p4', '3674262'), + (301, 734, 'maybe', '2021-04-04 23:45:38', '2025-12-17 19:47:44', '54koj9p4', '3676806'), + (301, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54koj9p4', '3677402'), + (301, 742, 'maybe', '2021-06-14 15:41:27', '2025-12-17 19:47:48', '54koj9p4', '3680622'), + (301, 748, 'maybe', '2021-04-07 21:45:47', '2025-12-17 19:47:44', '54koj9p4', '3685353'), + (301, 752, 'attending', '2021-04-15 23:09:20', '2025-12-17 19:47:44', '54koj9p4', '3699422'), + (301, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54koj9p4', '3730212'), + (301, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '54koj9p4', '3793156'), + (301, 823, 'not_attending', '2021-06-19 17:25:38', '2025-12-17 19:47:48', '54koj9p4', '3974109'), + (301, 827, 'attending', '2021-06-05 21:05:30', '2025-12-17 19:47:47', '54koj9p4', '3975311'), + (301, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '54koj9p4', '3975312'), + (301, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54koj9p4', '3994992'), + (301, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '54koj9p4', '4014338'), + (301, 867, 'not_attending', '2021-06-26 18:04:59', '2025-12-17 19:47:38', '54koj9p4', '4021848'), + (301, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '54koj9p4', '4136744'), + (301, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '54koj9p4', '4136937'), + (301, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '54koj9p4', '4136938'), + (301, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '54koj9p4', '4136947'), + (301, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54koj9p4', '4210314'), + (301, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54koj9p4', '4225444'), + (301, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54koj9p4', '4239259'), + (301, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '54koj9p4', '4240316'), + (301, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '54koj9p4', '4240317'), + (301, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '54koj9p4', '4240318'), + (301, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '54koj9p4', '4240320'), + (301, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '54koj9p4', '4250163'), + (301, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54koj9p4', '4275957'), + (301, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54koj9p4', '4277819'), + (301, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54koj9p4', '4301723'), + (301, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '54koj9p4', '4302093'), + (301, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '54koj9p4', '4304151'), + (301, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54koj9p4', '4356801'), + (301, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '54koj9p4', '4366186'), + (301, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '54koj9p4', '4366187'), + (301, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '54koj9p4', '4420735'), + (301, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '54koj9p4', '4420738'), + (301, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '54koj9p4', '4420739'), + (301, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '54koj9p4', '4420741'), + (301, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '54koj9p4', '4420744'), + (301, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '54koj9p4', '4420747'), + (301, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '54koj9p4', '4420748'), + (301, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '54koj9p4', '4420749'), + (301, 1017, 'attending', '2021-09-06 01:21:14', '2025-12-17 19:47:43', '54koj9p4', '4441822'), + (301, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '54koj9p4', '4461883'), + (301, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '54koj9p4', '4508342'), + (301, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '54koj9p4', '4568602'), + (301, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '54koj9p4', '4572153'), + (301, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', '54koj9p4', '4585962'), + (301, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '54koj9p4', '4596356'), + (301, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '54koj9p4', '4598860'), + (301, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '54koj9p4', '4598861'), + (301, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '54koj9p4', '4602797'), + (301, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '54koj9p4', '4637896'), + (301, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '54koj9p4', '4642994'), + (301, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '54koj9p4', '4642995'), + (301, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '54koj9p4', '4642996'), + (301, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '54koj9p4', '4642997'), + (301, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '54koj9p4', '4645687'), + (301, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '54koj9p4', '4645698'), + (301, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '54koj9p4', '4645704'), + (301, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '54koj9p4', '4645705'), + (301, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '54koj9p4', '4668385'), + (301, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '54koj9p4', '4694407'), + (301, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '54koj9p4', '4706262'), + (301, 1153, 'attending', '2022-01-20 00:16:49', '2025-12-17 19:47:32', '54koj9p4', '4708707'), + (301, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '54koj9p4', '4736497'), + (301, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '54koj9p4', '4736499'), + (301, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '54koj9p4', '4736500'), + (301, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '54koj9p4', '4736503'), + (301, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '54koj9p4', '4736504'), + (301, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '54koj9p4', '4746789'), + (301, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '54koj9p4', '4753929'), + (301, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '54koj9p4', '5038850'), + (301, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '54koj9p4', '5045826'), + (301, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '54koj9p4', '5132533'), + (301, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '54koj9p4', '5186582'), + (301, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '54koj9p4', '5186583'), + (301, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '54koj9p4', '5186585'), + (301, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '54koj9p4', '5190437'), + (301, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '54koj9p4', '5195095'), + (301, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '54koj9p4', '5215989'), + (301, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '54koj9p4', '5223686'), + (301, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '54koj9p4', '5227432'), + (301, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '54koj9p4', '5247467'), + (301, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '54koj9p4', '5260800'), + (301, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '54koj9p4', '5269930'), + (301, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '54koj9p4', '5271448'), + (301, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '54koj9p4', '5271449'), + (301, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '54koj9p4', '5276469'), + (301, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '54koj9p4', '5278159'), + (301, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '54koj9p4', '5363695'), + (301, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '54koj9p4', '5365960'), + (301, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '54koj9p4', '5368973'), + (301, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '54koj9p4', '5378247'), + (301, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', '54koj9p4', '5389605'), + (301, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '54koj9p4', '5397265'), + (301, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '54koj9p4', '5403967'), + (301, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '54koj9p4', '5404786'), + (301, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '54koj9p4', '5405203'), + (301, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '54koj9p4', '5411699'), + (301, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '54koj9p4', '5412550'), + (301, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '54koj9p4', '5415046'), + (301, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '54koj9p4', '5422086'), + (301, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '54koj9p4', '5422406'), + (301, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '54koj9p4', '5424565'), + (301, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '54koj9p4', '5426882'), + (301, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '54koj9p4', '5427083'), + (301, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '54koj9p4', '5441125'), + (301, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '54koj9p4', '5441126'), + (301, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '54koj9p4', '5441128'), + (301, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '54koj9p4', '5446643'), + (301, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '54koj9p4', '5453325'), + (301, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '54koj9p4', '5454516'), + (301, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '54koj9p4', '5454605'), + (301, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '54koj9p4', '5455037'), + (301, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '54koj9p4', '5461278'), + (301, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '54koj9p4', '5469480'), + (301, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '54koj9p4', '5471073'), + (301, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '54koj9p4', '5474663'), + (301, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '54koj9p4', '5482022'), + (301, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '54koj9p4', '5482793'), + (301, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '54koj9p4', '5488912'), + (301, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '54koj9p4', '5492192'), + (301, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '54koj9p4', '5493139'), + (301, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '54koj9p4', '5493200'), + (301, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '54koj9p4', '5502188'), + (301, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '54koj9p4', '5512862'), + (301, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '54koj9p4', '5513985'), + (301, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54koj9p4', '6045684'), + (302, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mR1ej6Ed', '7074364'), + (302, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mR1ej6Ed', '7324073'), + (302, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mR1ej6Ed', '7324074'), + (302, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mR1ej6Ed', '7324075'), + (302, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mR1ej6Ed', '7324078'), + (302, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mR1ej6Ed', '7324867'), + (302, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mR1ej6Ed', '7331457'), + (302, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'mR1ej6Ed', '7332564'), + (302, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'mR1ej6Ed', '7335193'), + (302, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mR1ej6Ed', '7359624'), + (302, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mR1ej6Ed', '7363643'), + (302, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mR1ej6Ed', '7368606'), + (303, 408, 'attending', '2021-02-19 00:06:55', '2025-12-17 19:47:50', 'Pm7ky95m', '3236466'), + (303, 599, 'attending', '2021-02-17 00:56:42', '2025-12-17 19:47:50', 'Pm7ky95m', '3468117'), + (303, 600, 'attending', '2021-02-22 00:25:27', '2025-12-17 19:47:50', 'Pm7ky95m', '3468125'), + (303, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'Pm7ky95m', '3470305'), + (303, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'Pm7ky95m', '3470991'), + (303, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'Pm7ky95m', '3517815'), + (303, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'Pm7ky95m', '3517816'), + (303, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'Pm7ky95m', '3523941'), + (303, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Pm7ky95m', '3533850'), + (303, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Pm7ky95m', '3536632'), + (303, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Pm7ky95m', '3536656'), + (303, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Pm7ky95m', '3539916'), + (303, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Pm7ky95m', '3539917'), + (303, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Pm7ky95m', '3539918'), + (303, 644, 'attending', '2021-04-24 22:53:26', '2025-12-17 19:47:45', 'Pm7ky95m', '3539919'), + (303, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Pm7ky95m', '3539920'), + (303, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Pm7ky95m', '3539921'), + (303, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Pm7ky95m', '3539922'), + (303, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Pm7ky95m', '3539923'), + (303, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Pm7ky95m', '3539927'), + (303, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Pm7ky95m', '3582734'), + (303, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm7ky95m', '3583262'), + (303, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Pm7ky95m', '3619523'), + (303, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7ky95m', '3661369'), + (303, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7ky95m', '3674262'), + (303, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm7ky95m', '3677402'), + (303, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7ky95m', '3730212'), + (303, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7ky95m', '3793156'), + (303, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Pm7ky95m', '3974109'), + (303, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7ky95m', '3975311'), + (303, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Pm7ky95m', '3975312'), + (303, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7ky95m', '3994992'), + (303, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Pm7ky95m', '4014338'), + (303, 867, 'attending', '2021-06-26 22:18:44', '2025-12-17 19:47:38', 'Pm7ky95m', '4021848'), + (303, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Pm7ky95m', '4136744'), + (303, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Pm7ky95m', '4136937'), + (303, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Pm7ky95m', '4136938'), + (303, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Pm7ky95m', '4136947'), + (303, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Pm7ky95m', '4210314'), + (303, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Pm7ky95m', '4225444'), + (303, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Pm7ky95m', '4239259'), + (303, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Pm7ky95m', '4240316'), + (303, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Pm7ky95m', '4240317'), + (303, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Pm7ky95m', '4240318'), + (303, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Pm7ky95m', '4240320'), + (303, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Pm7ky95m', '4250163'), + (303, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Pm7ky95m', '4275957'), + (303, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Pm7ky95m', '4277819'), + (303, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Pm7ky95m', '4301723'), + (303, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'Pm7ky95m', '4302093'), + (303, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Pm7ky95m', '4304151'), + (303, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'Pm7ky95m', '4345519'), + (303, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Pm7ky95m', '4356801'), + (303, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'Pm7ky95m', '4358025'), + (303, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Pm7ky95m', '4366186'), + (303, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Pm7ky95m', '4366187'), + (303, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'Pm7ky95m', '4402823'), + (303, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Pm7ky95m', '4420735'), + (303, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Pm7ky95m', '4420738'), + (303, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Pm7ky95m', '4420739'), + (303, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Pm7ky95m', '4420741'), + (303, 995, 'attending', '2021-10-09 15:47:28', '2025-12-17 19:47:34', 'Pm7ky95m', '4420744'), + (303, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Pm7ky95m', '4420747'), + (303, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Pm7ky95m', '4420748'), + (303, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Pm7ky95m', '4420749'), + (303, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Pm7ky95m', '4461883'), + (303, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Pm7ky95m', '4508342'), + (303, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Pm7ky95m', '4568602'), + (303, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Pm7ky95m', '4572153'), + (303, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'Pm7ky95m', '4585962'), + (303, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Pm7ky95m', '4596356'), + (303, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Pm7ky95m', '4598860'), + (303, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Pm7ky95m', '4598861'), + (303, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Pm7ky95m', '4602797'), + (303, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Pm7ky95m', '4637896'), + (303, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Pm7ky95m', '4642994'), + (303, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Pm7ky95m', '4642995'), + (303, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Pm7ky95m', '4642996'), + (303, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Pm7ky95m', '4642997'), + (303, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Pm7ky95m', '4645687'), + (303, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Pm7ky95m', '4645698'), + (303, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Pm7ky95m', '4645704'), + (303, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Pm7ky95m', '4645705'), + (303, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Pm7ky95m', '4668385'), + (303, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Pm7ky95m', '4694407'), + (303, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Pm7ky95m', '4736497'), + (303, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Pm7ky95m', '4736499'), + (303, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Pm7ky95m', '4736500'), + (303, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Pm7ky95m', '4736503'), + (303, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Pm7ky95m', '4736504'), + (303, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Pm7ky95m', '4746789'), + (303, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Pm7ky95m', '4753929'), + (303, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Pm7ky95m', '5038850'), + (303, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Pm7ky95m', '5045826'), + (303, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Pm7ky95m', '5132533'), + (303, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Pm7ky95m', '5186582'), + (303, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Pm7ky95m', '5186583'), + (303, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Pm7ky95m', '5186585'), + (303, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Pm7ky95m', '5190437'), + (303, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Pm7ky95m', '5195095'), + (303, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Pm7ky95m', '5215989'), + (303, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Pm7ky95m', '5223686'), + (303, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Pm7ky95m', '5247467'), + (303, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Pm7ky95m', '5260800'), + (303, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Pm7ky95m', '5269930'), + (303, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Pm7ky95m', '5271448'), + (303, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'Pm7ky95m', '5271449'), + (303, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Pm7ky95m', '5278159'), + (303, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Pm7ky95m', '5363695'), + (303, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Pm7ky95m', '5365960'), + (303, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Pm7ky95m', '5378247'), + (303, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'Pm7ky95m', '5389605'), + (303, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Pm7ky95m', '5397265'), + (303, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Pm7ky95m', '5404786'), + (303, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Pm7ky95m', '5405203'), + (303, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Pm7ky95m', '5412550'), + (303, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Pm7ky95m', '5415046'), + (303, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Pm7ky95m', '5422086'), + (303, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Pm7ky95m', '5422406'), + (303, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Pm7ky95m', '5424565'), + (303, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Pm7ky95m', '5426882'), + (303, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Pm7ky95m', '5441125'), + (303, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Pm7ky95m', '5441126'), + (303, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Pm7ky95m', '5441128'), + (303, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Pm7ky95m', '5441131'), + (303, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Pm7ky95m', '5441132'), + (303, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Pm7ky95m', '5453325'), + (303, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Pm7ky95m', '5454516'), + (303, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Pm7ky95m', '5454605'), + (303, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Pm7ky95m', '5455037'), + (303, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Pm7ky95m', '5461278'), + (303, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Pm7ky95m', '5469480'), + (303, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Pm7ky95m', '5474663'), + (303, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Pm7ky95m', '5482022'), + (303, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Pm7ky95m', '5488912'), + (303, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Pm7ky95m', '5492192'), + (303, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Pm7ky95m', '5493139'), + (303, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Pm7ky95m', '5493200'), + (303, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Pm7ky95m', '5502188'), + (303, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Pm7ky95m', '5505059'), + (303, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Pm7ky95m', '5509055'), + (303, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Pm7ky95m', '5512862'), + (303, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Pm7ky95m', '5513985'), + (303, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'Pm7ky95m', '5519981'), + (303, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Pm7ky95m', '5522550'), + (303, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Pm7ky95m', '5534683'), + (303, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Pm7ky95m', '5537735'), + (303, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Pm7ky95m', '5540859'), + (303, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Pm7ky95m', '5546619'), + (303, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Pm7ky95m', '5557747'), + (303, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Pm7ky95m', '5560255'), + (303, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Pm7ky95m', '5562906'), + (303, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Pm7ky95m', '5600604'), + (303, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Pm7ky95m', '5605544'), + (303, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Pm7ky95m', '5630960'), + (303, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Pm7ky95m', '5630961'), + (303, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Pm7ky95m', '5630962'), + (303, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Pm7ky95m', '5630966'), + (303, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Pm7ky95m', '5630967'), + (303, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Pm7ky95m', '5630968'), + (303, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Pm7ky95m', '5635406'), + (303, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Pm7ky95m', '5638765'), + (303, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Pm7ky95m', '5640097'), + (303, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Pm7ky95m', '5640843'), + (303, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Pm7ky95m', '5641521'), + (303, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Pm7ky95m', '5642818'), + (303, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Pm7ky95m', '5652395'), + (303, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Pm7ky95m', '5670445'), + (303, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Pm7ky95m', '5671637'), + (303, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Pm7ky95m', '5672329'), + (303, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Pm7ky95m', '5674057'), + (303, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Pm7ky95m', '5674060'), + (303, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Pm7ky95m', '5677461'), + (303, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Pm7ky95m', '5698046'), + (303, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Pm7ky95m', '5699760'), + (303, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Pm7ky95m', '5741601'), + (303, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Pm7ky95m', '5763458'), + (303, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Pm7ky95m', '5774172'), + (303, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'Pm7ky95m', '5818247'), + (303, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Pm7ky95m', '5819471'), + (303, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Pm7ky95m', '5827739'), + (303, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Pm7ky95m', '5844306'), + (303, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Pm7ky95m', '5850159'), + (303, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Pm7ky95m', '5858999'), + (303, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Pm7ky95m', '5871984'), + (303, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Pm7ky95m', '5876354'), + (303, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Pm7ky95m', '5880939'), + (303, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Pm7ky95m', '5880940'), + (303, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Pm7ky95m', '5880942'), + (303, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Pm7ky95m', '5880943'), + (303, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Pm7ky95m', '5887890'), + (303, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Pm7ky95m', '5888598'), + (303, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Pm7ky95m', '5893260'), + (303, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Pm7ky95m', '5899826'), + (303, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Pm7ky95m', '5900199'), + (303, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Pm7ky95m', '5900200'), + (303, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Pm7ky95m', '5900202'), + (303, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Pm7ky95m', '5900203'), + (303, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Pm7ky95m', '5901108'), + (303, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Pm7ky95m', '5901126'), + (303, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Pm7ky95m', '5909655'), + (303, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Pm7ky95m', '5910522'), + (303, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Pm7ky95m', '5910526'), + (303, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Pm7ky95m', '5910528'), + (303, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Pm7ky95m', '5916219'), + (303, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Pm7ky95m', '5936234'), + (303, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Pm7ky95m', '5958351'), + (303, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Pm7ky95m', '5959751'), + (303, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Pm7ky95m', '5959755'), + (303, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Pm7ky95m', '5960055'), + (303, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Pm7ky95m', '5961684'), + (303, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Pm7ky95m', '5962132'), + (303, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Pm7ky95m', '5962133'), + (303, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Pm7ky95m', '5962134'), + (303, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Pm7ky95m', '5962317'), + (303, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Pm7ky95m', '5962318'), + (303, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Pm7ky95m', '5965933'), + (303, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Pm7ky95m', '5967014'), + (303, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Pm7ky95m', '5972815'), + (303, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Pm7ky95m', '5974016'), + (303, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Pm7ky95m', '5981515'), + (303, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Pm7ky95m', '5993516'), + (303, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Pm7ky95m', '5998939'), + (303, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Pm7ky95m', '6028191'), + (303, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Pm7ky95m', '6040066'), + (303, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Pm7ky95m', '6042717'), + (303, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Pm7ky95m', '6044838'), + (303, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Pm7ky95m', '6044839'), + (303, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7ky95m', '6045684'), + (303, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Pm7ky95m', '6050104'), + (303, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Pm7ky95m', '6053195'), + (303, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Pm7ky95m', '6053198'), + (303, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Pm7ky95m', '6056085'), + (303, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Pm7ky95m', '6056916'), + (303, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Pm7ky95m', '6059290'), + (303, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Pm7ky95m', '6060328'), + (303, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Pm7ky95m', '6061037'), + (303, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Pm7ky95m', '6061039'), + (303, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Pm7ky95m', '6067245'), + (303, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Pm7ky95m', '6068094'), + (303, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Pm7ky95m', '6068252'), + (303, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Pm7ky95m', '6068253'), + (303, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Pm7ky95m', '6068254'), + (303, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Pm7ky95m', '6068280'), + (303, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Pm7ky95m', '6069093'), + (303, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Pm7ky95m', '6072528'), + (303, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Pm7ky95m', '6079840'), + (303, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Pm7ky95m', '6083398'), + (303, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Pm7ky95m', '6093504'), + (303, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Pm7ky95m', '6097414'), + (303, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Pm7ky95m', '6097442'), + (303, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Pm7ky95m', '6097684'), + (303, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Pm7ky95m', '6098762'), + (303, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Pm7ky95m', '6101361'), + (303, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Pm7ky95m', '6101362'), + (303, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Pm7ky95m', '6107314'), + (303, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Pm7ky95m', '6120034'), + (303, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'Pm7ky95m', '6136733'), + (303, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Pm7ky95m', '6137989'), + (303, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Pm7ky95m', '6150864'), + (303, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Pm7ky95m', '6155491'), + (303, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Pm7ky95m', '6164417'), + (303, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Pm7ky95m', '6166388'), + (303, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Pm7ky95m', '6176439'), + (303, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Pm7ky95m', '6182410'), + (303, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Pm7ky95m', '6185812'), + (303, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Pm7ky95m', '6187651'), + (303, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Pm7ky95m', '6187963'), + (303, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Pm7ky95m', '6187964'), + (303, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Pm7ky95m', '6187966'), + (303, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Pm7ky95m', '6187967'), + (303, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Pm7ky95m', '6187969'), + (303, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Pm7ky95m', '6334878'), + (303, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Pm7ky95m', '6337236'), + (303, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Pm7ky95m', '6337970'), + (303, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Pm7ky95m', '6338308'), + (303, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Pm7ky95m', '6341710'), + (303, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Pm7ky95m', '6342044'), + (303, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Pm7ky95m', '6342298'), + (303, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Pm7ky95m', '6343294'), + (303, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Pm7ky95m', '6347034'), + (303, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Pm7ky95m', '6347056'), + (303, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Pm7ky95m', '6353830'), + (303, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Pm7ky95m', '6353831'), + (303, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Pm7ky95m', '6357867'), + (303, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Pm7ky95m', '6358652'), + (303, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Pm7ky95m', '6361709'), + (303, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Pm7ky95m', '6361710'), + (303, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Pm7ky95m', '6361711'), + (303, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Pm7ky95m', '6361712'), + (303, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Pm7ky95m', '6361713'), + (303, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Pm7ky95m', '6382573'), + (303, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Pm7ky95m', '6388604'), + (303, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Pm7ky95m', '6394629'), + (303, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Pm7ky95m', '6394631'), + (303, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Pm7ky95m', '6440863'), + (303, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Pm7ky95m', '6445440'), + (303, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Pm7ky95m', '6453951'), + (303, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Pm7ky95m', '6461696'), + (303, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Pm7ky95m', '6462129'), + (303, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Pm7ky95m', '6463218'), + (303, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Pm7ky95m', '6472181'), + (303, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Pm7ky95m', '6482693'), + (303, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Pm7ky95m', '6484200'), + (303, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Pm7ky95m', '6484680'), + (303, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Pm7ky95m', '6507741'), + (303, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Pm7ky95m', '6514659'), + (303, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Pm7ky95m', '6514660'), + (303, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Pm7ky95m', '6519103'), + (303, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Pm7ky95m', '6535681'), + (303, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Pm7ky95m', '6584747'), + (303, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Pm7ky95m', '6587097'), + (303, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Pm7ky95m', '6609022'), + (303, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Pm7ky95m', '6632757'), + (303, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Pm7ky95m', '6644187'), + (303, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Pm7ky95m', '6648951'), + (303, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Pm7ky95m', '6648952'), + (303, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Pm7ky95m', '6655401'), + (303, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Pm7ky95m', '6661585'), + (303, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Pm7ky95m', '6661588'), + (303, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Pm7ky95m', '6661589'), + (303, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Pm7ky95m', '6699906'), + (303, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Pm7ky95m', '6699913'), + (303, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Pm7ky95m', '6701109'), + (303, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Pm7ky95m', '6705219'), + (303, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Pm7ky95m', '6710153'), + (303, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Pm7ky95m', '6711552'), + (303, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'Pm7ky95m', '6711553'), + (303, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Pm7ky95m', '6722688'), + (303, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Pm7ky95m', '6730620'), + (303, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Pm7ky95m', '6740364'), + (303, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Pm7ky95m', '6743829'), + (303, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Pm7ky95m', '7030380'), + (303, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Pm7ky95m', '7033677'), + (303, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Pm7ky95m', '7044715'), + (303, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Pm7ky95m', '7050318'), + (303, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Pm7ky95m', '7050319'), + (303, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Pm7ky95m', '7050322'), + (303, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Pm7ky95m', '7057804'), + (303, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Pm7ky95m', '7072824'), + (303, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Pm7ky95m', '7074348'), + (303, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Pm7ky95m', '7074364'), + (303, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Pm7ky95m', '7089267'), + (303, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Pm7ky95m', '7098747'), + (303, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Pm7ky95m', '7113468'), + (303, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Pm7ky95m', '7114856'), + (303, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Pm7ky95m', '7114951'), + (303, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Pm7ky95m', '7114955'), + (303, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Pm7ky95m', '7114956'), + (303, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Pm7ky95m', '7114957'), + (303, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Pm7ky95m', '7159484'), + (303, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Pm7ky95m', '7178446'), + (303, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Pm7ky95m', '7220467'), + (303, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Pm7ky95m', '7240354'), + (303, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Pm7ky95m', '7251633'), + (303, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Pm7ky95m', '7324073'), + (303, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Pm7ky95m', '7324074'), + (303, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Pm7ky95m', '7324075'), + (303, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Pm7ky95m', '7324078'), + (303, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Pm7ky95m', '7324082'), + (303, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Pm7ky95m', '7331457'), + (303, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Pm7ky95m', '7363643'), + (303, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Pm7ky95m', '7368606'), + (303, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Pm7ky95m', '7397462'), + (303, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Pm7ky95m', '7424275'), + (303, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Pm7ky95m', '7432751'), + (303, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Pm7ky95m', '7432752'), + (303, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Pm7ky95m', '7432753'), + (303, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Pm7ky95m', '7432754'), + (303, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Pm7ky95m', '7432755'), + (303, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Pm7ky95m', '7432756'), + (303, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Pm7ky95m', '7432758'), + (303, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Pm7ky95m', '7432759'), + (303, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Pm7ky95m', '7433834'), + (303, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Pm7ky95m', '7470197'), + (303, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Pm7ky95m', '7685613'), + (303, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Pm7ky95m', '7688194'), + (303, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Pm7ky95m', '7688196'), + (303, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Pm7ky95m', '7688289'), + (303, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Pm7ky95m', '7692763'), + (303, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Pm7ky95m', '7697552'), + (303, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Pm7ky95m', '7699878'), + (303, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Pm7ky95m', '7704043'), + (303, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Pm7ky95m', '7712467'), + (303, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Pm7ky95m', '7713585'), + (303, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Pm7ky95m', '7713586'), + (303, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Pm7ky95m', '7738518'), + (303, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Pm7ky95m', '7750636'), + (303, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Pm7ky95m', '7796540'), + (303, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Pm7ky95m', '7796541'), + (303, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Pm7ky95m', '7796542'), + (303, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Pm7ky95m', '7825913'), + (303, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Pm7ky95m', '7826209'), + (303, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Pm7ky95m', '7834742'), + (303, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Pm7ky95m', '7842108'), + (303, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Pm7ky95m', '7842902'), + (303, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Pm7ky95m', '7842903'), + (303, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Pm7ky95m', '7842904'), + (303, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Pm7ky95m', '7842905'), + (303, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Pm7ky95m', '7855719'), + (303, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Pm7ky95m', '7860683'), + (303, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Pm7ky95m', '7860684'), + (303, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Pm7ky95m', '7866095'), + (303, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Pm7ky95m', '7869170'), + (303, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Pm7ky95m', '7869188'), + (303, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Pm7ky95m', '7869201'), + (303, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Pm7ky95m', '7877465'), + (303, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Pm7ky95m', '7888250'), + (303, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Pm7ky95m', '7904777'), + (303, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Pm7ky95m', '8349164'), + (303, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Pm7ky95m', '8349545'), + (303, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Pm7ky95m', '8368028'), + (303, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Pm7ky95m', '8368029'), + (303, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Pm7ky95m', '8388462'), + (303, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Pm7ky95m', '8400273'), + (303, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Pm7ky95m', '8400275'), + (303, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Pm7ky95m', '8400276'), + (303, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Pm7ky95m', '8404977'), + (303, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Pm7ky95m', '8430783'), + (303, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Pm7ky95m', '8430784'), + (303, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Pm7ky95m', '8430799'), + (303, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Pm7ky95m', '8430800'), + (303, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Pm7ky95m', '8430801'), + (303, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Pm7ky95m', '8438709'), + (303, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Pm7ky95m', '8457738'), + (303, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Pm7ky95m', '8459566'), + (303, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Pm7ky95m', '8459567'), + (303, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Pm7ky95m', '8461032'), + (303, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Pm7ky95m', '8477877'), + (303, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Pm7ky95m', '8485688'), + (303, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Pm7ky95m', '8490587'), + (303, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Pm7ky95m', '8493552'), + (303, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Pm7ky95m', '8493553'), + (303, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Pm7ky95m', '8493554'), + (303, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Pm7ky95m', '8493555'), + (303, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Pm7ky95m', '8493556'), + (303, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Pm7ky95m', '8493557'), + (303, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Pm7ky95m', '8493558'), + (303, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Pm7ky95m', '8493559'), + (303, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Pm7ky95m', '8493560'), + (303, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Pm7ky95m', '8493561'), + (303, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Pm7ky95m', '8493572'), + (303, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Pm7ky95m', '8540725'), + (303, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Pm7ky95m', '8555421'), + (304, 2066, 'not_attending', '2023-06-09 18:33:39', '2025-12-17 19:47:04', 'dKZwYbN4', '6101361'), + (304, 2098, 'attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dKZwYbN4', '6139831'), + (304, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dKZwYbN4', '6150864'), + (304, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKZwYbN4', '6155491'), + (304, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKZwYbN4', '6164417'), + (304, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKZwYbN4', '6166388'), + (304, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKZwYbN4', '6176439'), + (304, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKZwYbN4', '6182410'), + (304, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKZwYbN4', '6185812'), + (304, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKZwYbN4', '6187651'), + (304, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKZwYbN4', '6187963'), + (304, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKZwYbN4', '6187964'), + (304, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKZwYbN4', '6187966'), + (304, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKZwYbN4', '6187967'), + (304, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKZwYbN4', '6187969'), + (304, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKZwYbN4', '6334878'), + (304, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dKZwYbN4', '6337236'), + (304, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKZwYbN4', '6337970'), + (304, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dKZwYbN4', '6338308'), + (304, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dKZwYbN4', '6340845'), + (304, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dKZwYbN4', '6341710'), + (304, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKZwYbN4', '6342044'), + (304, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKZwYbN4', '6342298'), + (304, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dKZwYbN4', '6343294'), + (304, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKZwYbN4', '6347034'), + (304, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKZwYbN4', '6347056'), + (304, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKZwYbN4', '6353830'), + (304, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKZwYbN4', '6353831'), + (304, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKZwYbN4', '6357867'), + (304, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKZwYbN4', '6358652'), + (304, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKZwYbN4', '6361709'), + (304, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKZwYbN4', '6361710'), + (304, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKZwYbN4', '6361711'), + (304, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dKZwYbN4', '6361712'), + (304, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKZwYbN4', '6361713'), + (304, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKZwYbN4', '6382573'), + (304, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dKZwYbN4', '6388604'), + (304, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKZwYbN4', '6394629'), + (304, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKZwYbN4', '6394631'), + (304, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKZwYbN4', '6440863'), + (304, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKZwYbN4', '6445440'), + (304, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKZwYbN4', '6453951'), + (304, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKZwYbN4', '6461696'), + (304, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKZwYbN4', '6462129'), + (304, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKZwYbN4', '6463218'), + (304, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dKZwYbN4', '6472181'), + (304, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZwYbN4', '6482693'), + (304, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZwYbN4', '6484200'), + (304, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKZwYbN4', '6484680'), + (304, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZwYbN4', '6507741'), + (304, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZwYbN4', '6514659'), + (304, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZwYbN4', '6514660'), + (304, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZwYbN4', '6519103'), + (304, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZwYbN4', '6535681'), + (304, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZwYbN4', '6584747'), + (304, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZwYbN4', '6587097'), + (304, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZwYbN4', '6609022'), + (304, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZwYbN4', '6632757'), + (304, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZwYbN4', '6644187'), + (304, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZwYbN4', '6648951'), + (304, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZwYbN4', '6648952'), + (304, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZwYbN4', '6655401'), + (304, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZwYbN4', '6661585'), + (304, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZwYbN4', '6661588'), + (304, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZwYbN4', '6661589'), + (304, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZwYbN4', '6699906'), + (304, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZwYbN4', '6701109'), + (304, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZwYbN4', '6705219'), + (304, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZwYbN4', '6710153'), + (304, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZwYbN4', '6711552'), + (304, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZwYbN4', '6711553'), + (305, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dwYPBJaA', '4356801'), + (305, 991, 'attending', '2021-09-11 19:18:30', '2025-12-17 19:47:43', 'dwYPBJaA', '4420738'), + (305, 992, 'not_attending', '2021-09-18 20:53:26', '2025-12-17 19:47:34', 'dwYPBJaA', '4420739'), + (305, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dwYPBJaA', '4420741'), + (305, 994, 'not_attending', '2021-10-01 20:54:46', '2025-12-17 19:47:34', 'dwYPBJaA', '4420742'), + (305, 995, 'maybe', '2021-10-01 20:55:08', '2025-12-17 19:47:34', 'dwYPBJaA', '4420744'), + (305, 996, 'not_attending', '2021-10-01 20:55:17', '2025-12-17 19:47:35', 'dwYPBJaA', '4420747'), + (305, 1003, 'attending', '2021-09-03 16:51:49', '2025-12-17 19:47:43', 'dwYPBJaA', '4438802'), + (305, 1019, 'not_attending', '2021-09-15 22:17:55', '2025-12-17 19:47:43', 'dwYPBJaA', '4450515'), + (305, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dwYPBJaA', '4461883'), + (305, 1066, 'not_attending', '2021-09-25 18:06:43', '2025-12-17 19:47:34', 'dwYPBJaA', '4506039'), + (305, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dwYPBJaA', '4508342'), + (305, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dwYPBJaA', '4568602'), + (305, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dwYPBJaA', '6045684'), + (306, 1242, 'not_attending', '2022-04-01 15:01:50', '2025-12-17 19:47:25', 'dx632oDA', '5052241'), + (306, 1274, 'maybe', '2022-03-31 22:50:02', '2025-12-17 19:47:26', 'dx632oDA', '5186585'), + (306, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dx632oDA', '5195095'), + (306, 1288, 'not_attending', '2022-04-01 15:01:36', '2025-12-17 19:47:25', 'dx632oDA', '5199460'), + (306, 1306, 'attending', '2022-04-04 17:53:14', '2025-12-17 19:47:26', 'dx632oDA', '5223682'), + (306, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dx632oDA', '5223686'), + (306, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dx632oDA', '5227432'), + (306, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dx632oDA', '5247467'), + (306, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dx632oDA', '5260800'), + (306, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dx632oDA', '5269930'), + (306, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dx632oDA', '5271448'), + (306, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dx632oDA', '5271449'), + (306, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dx632oDA', '5276469'), + (306, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx632oDA', '5278159'), + (306, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx632oDA', '6045684'), + (307, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '54ko9aX4', '3517815'), + (307, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '54ko9aX4', '3523941'), + (307, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54ko9aX4', '3533850'), + (307, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '54ko9aX4', '3536632'), + (307, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '54ko9aX4', '3536656'), + (307, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '54ko9aX4', '3539916'), + (307, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '54ko9aX4', '3539917'), + (307, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '54ko9aX4', '3539918'), + (307, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '54ko9aX4', '3539919'), + (307, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54ko9aX4', '3539920'), + (307, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54ko9aX4', '3539921'), + (307, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54ko9aX4', '3539922'), + (307, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '54ko9aX4', '3539923'), + (307, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54ko9aX4', '6045684'), + (308, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbqMKNPd', '6045684'), + (309, 69, 'attending', '2020-07-02 16:43:17', '2025-12-17 19:47:55', '6AXveo6d', '2977138'), + (309, 133, 'attending', '2020-06-24 20:19:57', '2025-12-17 19:47:58', '6AXveo6d', '3034321'), + (309, 139, 'attending', '2020-06-18 01:59:01', '2025-12-17 19:47:58', '6AXveo6d', '3046190'), + (309, 173, 'not_attending', '2020-06-19 15:59:39', '2025-12-17 19:47:58', '6AXveo6d', '3067093'), + (309, 179, 'maybe', '2020-06-18 02:00:00', '2025-12-17 19:47:58', '6AXveo6d', '3073687'), + (309, 181, 'attending', '2020-06-19 01:37:41', '2025-12-17 19:47:58', '6AXveo6d', '3074513'), + (309, 182, 'attending', '2020-06-24 14:27:11', '2025-12-17 19:47:55', '6AXveo6d', '3074514'), + (309, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '6AXveo6d', '3083791'), + (309, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '6AXveo6d', '3085151'), + (309, 190, 'attending', '2020-07-04 23:04:20', '2025-12-17 19:47:55', '6AXveo6d', '3087258'), + (309, 191, 'attending', '2020-07-03 02:44:26', '2025-12-17 19:47:55', '6AXveo6d', '3087259'), + (309, 192, 'attending', '2020-07-14 17:33:08', '2025-12-17 19:47:55', '6AXveo6d', '3087260'), + (309, 193, 'attending', '2020-07-24 12:53:47', '2025-12-17 19:47:55', '6AXveo6d', '3087261'), + (309, 194, 'attending', '2020-07-26 17:25:18', '2025-12-17 19:47:55', '6AXveo6d', '3087262'), + (309, 195, 'attending', '2020-08-02 23:31:54', '2025-12-17 19:47:56', '6AXveo6d', '3087264'), + (309, 196, 'attending', '2020-08-09 02:53:15', '2025-12-17 19:47:56', '6AXveo6d', '3087265'), + (309, 197, 'attending', '2020-08-16 17:29:41', '2025-12-17 19:47:56', '6AXveo6d', '3087266'), + (309, 198, 'attending', '2020-08-24 15:31:58', '2025-12-17 19:47:56', '6AXveo6d', '3087267'), + (309, 199, 'attending', '2020-09-01 15:07:52', '2025-12-17 19:47:56', '6AXveo6d', '3087268'), + (309, 201, 'attending', '2020-06-25 18:59:08', '2025-12-17 19:47:55', '6AXveo6d', '3088653'), + (309, 204, 'attending', '2020-06-26 16:05:54', '2025-12-17 19:47:55', '6AXveo6d', '3102758'), + (309, 205, 'maybe', '2020-07-08 12:28:52', '2025-12-17 19:47:55', '6AXveo6d', '3104804'), + (309, 209, 'maybe', '2020-06-29 12:18:55', '2025-12-17 19:47:55', '6AXveo6d', '3106813'), + (309, 210, 'maybe', '2020-07-02 16:54:48', '2025-12-17 19:47:55', '6AXveo6d', '3108972'), + (309, 214, 'not_attending', '2020-07-08 21:27:53', '2025-12-17 19:47:55', '6AXveo6d', '3124139'), + (309, 216, 'attending', '2020-07-09 19:49:57', '2025-12-17 19:47:55', '6AXveo6d', '3126500'), + (309, 217, 'maybe', '2020-07-08 17:37:11', '2025-12-17 19:47:55', '6AXveo6d', '3126684'), + (309, 223, 'attending', '2020-09-08 23:06:19', '2025-12-17 19:47:56', '6AXveo6d', '3129980'), + (309, 224, 'attending', '2020-07-19 18:25:30', '2025-12-17 19:47:55', '6AXveo6d', '3130712'), + (309, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '6AXveo6d', '3132817'), + (309, 227, 'maybe', '2020-07-15 20:17:49', '2025-12-17 19:47:55', '6AXveo6d', '3132820'), + (309, 229, 'attending', '2020-07-15 20:17:28', '2025-12-17 19:47:55', '6AXveo6d', '3134135'), + (309, 230, 'attending', '2020-07-26 21:12:36', '2025-12-17 19:47:55', '6AXveo6d', '3139232'), + (309, 231, 'maybe', '2020-07-19 20:28:29', '2025-12-17 19:47:55', '6AXveo6d', '3139762'), + (309, 232, 'not_attending', '2020-07-20 22:43:10', '2025-12-17 19:47:55', '6AXveo6d', '3139770'), + (309, 233, 'attending', '2020-07-22 12:21:17', '2025-12-17 19:47:55', '6AXveo6d', '3139773'), + (309, 265, 'attending', '2020-07-28 01:42:01', '2025-12-17 19:47:55', '6AXveo6d', '3150806'), + (309, 269, 'attending', '2020-07-29 00:37:59', '2025-12-17 19:47:55', '6AXveo6d', '3153076'), + (309, 270, 'maybe', '2020-08-11 17:04:20', '2025-12-17 19:47:56', '6AXveo6d', '3154457'), + (309, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '6AXveo6d', '3155321'), + (309, 273, 'attending', '2020-08-02 23:31:40', '2025-12-17 19:47:56', '6AXveo6d', '3162006'), + (309, 275, 'attending', '2020-08-03 20:04:55', '2025-12-17 19:47:56', '6AXveo6d', '3163405'), + (309, 277, 'not_attending', '2020-08-03 23:57:12', '2025-12-17 19:47:56', '6AXveo6d', '3163442'), + (309, 281, 'attending', '2020-08-09 20:06:42', '2025-12-17 19:47:56', '6AXveo6d', '3166945'), + (309, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '6AXveo6d', '3169555'), + (309, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', '6AXveo6d', '3169556'), + (309, 288, 'attending', '2020-08-28 17:54:42', '2025-12-17 19:47:56', '6AXveo6d', '3170249'), + (309, 293, 'attending', '2020-08-19 23:11:03', '2025-12-17 19:47:56', '6AXveo6d', '3172832'), + (309, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '6AXveo6d', '3172833'), + (309, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '6AXveo6d', '3172834'), + (309, 296, 'attending', '2020-09-08 23:06:08', '2025-12-17 19:47:56', '6AXveo6d', '3172876'), + (309, 297, 'attending', '2020-08-11 17:03:38', '2025-12-17 19:47:56', '6AXveo6d', '3173937'), + (309, 300, 'attending', '2020-08-12 22:42:33', '2025-12-17 19:47:56', '6AXveo6d', '3177986'), + (309, 301, 'attending', '2020-08-18 00:12:23', '2025-12-17 19:47:56', '6AXveo6d', '3178027'), + (309, 302, 'attending', '2020-08-18 00:12:18', '2025-12-17 19:47:56', '6AXveo6d', '3178028'), + (309, 304, 'maybe', '2020-09-07 19:36:19', '2025-12-17 19:47:56', '6AXveo6d', '3178916'), + (309, 306, 'attending', '2020-08-21 22:45:53', '2025-12-17 19:47:56', '6AXveo6d', '3179777'), + (309, 311, 'attending', '2020-09-11 01:07:58', '2025-12-17 19:47:56', '6AXveo6d', '3186057'), + (309, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '6AXveo6d', '3191735'), + (309, 318, 'attending', '2020-08-29 01:40:20', '2025-12-17 19:47:56', '6AXveo6d', '3193885'), + (309, 320, 'attending', '2020-08-30 02:59:50', '2025-12-17 19:47:56', '6AXveo6d', '3195552'), + (309, 331, 'attending', '2020-09-01 14:57:46', '2025-12-17 19:47:56', '6AXveo6d', '3198871'), + (309, 335, 'not_attending', '2020-09-05 00:16:36', '2025-12-17 19:47:56', '6AXveo6d', '3200209'), + (309, 336, 'attending', '2020-09-11 22:33:38', '2025-12-17 19:47:56', '6AXveo6d', '3200495'), + (309, 340, 'attending', '2020-09-18 23:12:34', '2025-12-17 19:47:56', '6AXveo6d', '3204470'), + (309, 343, 'maybe', '2020-09-22 22:45:57', '2025-12-17 19:47:56', '6AXveo6d', '3206759'), + (309, 346, 'not_attending', '2020-09-13 21:43:22', '2025-12-17 19:47:56', '6AXveo6d', '3207515'), + (309, 347, 'attending', '2020-09-24 12:58:33', '2025-12-17 19:47:51', '6AXveo6d', '3207930'), + (309, 358, 'attending', '2020-09-13 21:46:19', '2025-12-17 19:47:56', '6AXveo6d', '3212579'), + (309, 359, 'not_attending', '2020-09-20 19:51:49', '2025-12-17 19:47:56', '6AXveo6d', '3212624'), + (309, 362, 'attending', '2020-09-24 12:58:15', '2025-12-17 19:47:52', '6AXveo6d', '3214207'), + (309, 363, 'maybe', '2020-09-17 22:22:47', '2025-12-17 19:47:52', '6AXveo6d', '3217037'), + (309, 365, 'not_attending', '2020-09-18 17:37:24', '2025-12-17 19:47:51', '6AXveo6d', '3218510'), + (309, 368, 'attending', '2020-09-29 23:34:16', '2025-12-17 19:47:52', '6AXveo6d', '3221403'), + (309, 376, 'attending', '2020-10-12 23:22:24', '2025-12-17 19:47:52', '6AXveo6d', '3222827'), + (309, 385, 'attending', '2020-09-29 01:57:02', '2025-12-17 19:47:52', '6AXveo6d', '3228698'), + (309, 386, 'attending', '2020-09-29 01:56:58', '2025-12-17 19:47:52', '6AXveo6d', '3228699'), + (309, 387, 'attending', '2020-09-29 01:56:55', '2025-12-17 19:47:52', '6AXveo6d', '3228700'), + (309, 388, 'attending', '2020-09-29 01:56:47', '2025-12-17 19:47:52', '6AXveo6d', '3228701'), + (309, 424, 'maybe', '2020-10-12 01:10:08', '2025-12-17 19:47:52', '6AXveo6d', '3245751'), + (309, 426, 'not_attending', '2020-10-14 23:04:42', '2025-12-17 19:47:52', '6AXveo6d', '3250232'), + (309, 429, 'attending', '2020-12-06 19:41:55', '2025-12-17 19:47:54', '6AXveo6d', '3250523'), + (309, 436, 'maybe', '2020-10-18 18:45:24', '2025-12-17 19:47:52', '6AXveo6d', '3256119'), + (309, 438, 'not_attending', '2020-10-18 18:45:44', '2025-12-17 19:47:53', '6AXveo6d', '3256163'), + (309, 440, 'attending', '2020-10-18 18:45:11', '2025-12-17 19:47:53', '6AXveo6d', '3256168'), + (309, 441, 'attending', '2020-11-07 20:08:16', '2025-12-17 19:47:54', '6AXveo6d', '3256169'), + (309, 443, 'not_attending', '2020-10-24 00:23:01', '2025-12-17 19:47:53', '6AXveo6d', '3263578'), + (309, 456, 'maybe', '2020-11-06 00:51:00', '2025-12-17 19:47:54', '6AXveo6d', '3276428'), + (309, 459, 'maybe', '2020-11-08 21:04:43', '2025-12-17 19:47:54', '6AXveo6d', '3281467'), + (309, 462, 'not_attending', '2020-11-08 21:04:37', '2025-12-17 19:47:54', '6AXveo6d', '3281470'), + (309, 463, 'maybe', '2020-11-13 20:37:40', '2025-12-17 19:47:54', '6AXveo6d', '3281553'), + (309, 466, 'maybe', '2020-11-08 21:04:33', '2025-12-17 19:47:54', '6AXveo6d', '3281829'), + (309, 468, 'attending', '2020-11-21 18:46:01', '2025-12-17 19:47:54', '6AXveo6d', '3285413'), + (309, 469, 'attending', '2020-11-10 23:07:26', '2025-12-17 19:47:54', '6AXveo6d', '3285414'), + (309, 477, 'not_attending', '2020-12-04 23:47:47', '2025-12-17 19:47:54', '6AXveo6d', '3289559'), + (309, 479, 'attending', '2020-11-18 19:51:17', '2025-12-17 19:47:54', '6AXveo6d', '3295306'), + (309, 481, 'maybe', '2020-11-19 23:30:23', '2025-12-17 19:47:54', '6AXveo6d', '3297764'), + (309, 484, 'not_attending', '2020-11-21 00:49:16', '2025-12-17 19:47:54', '6AXveo6d', '3297792'), + (309, 493, 'attending', '2020-12-02 17:43:17', '2025-12-17 19:47:54', '6AXveo6d', '3313856'), + (309, 499, 'attending', '2020-12-12 00:30:56', '2025-12-17 19:47:55', '6AXveo6d', '3314909'), + (309, 500, 'maybe', '2020-12-11 16:50:02', '2025-12-17 19:47:55', '6AXveo6d', '3314964'), + (309, 502, 'attending', '2020-12-11 16:49:51', '2025-12-17 19:47:55', '6AXveo6d', '3323365'), + (309, 513, 'attending', '2020-12-12 00:34:20', '2025-12-17 19:47:55', '6AXveo6d', '3329383'), + (309, 517, 'maybe', '2020-12-15 01:34:41', '2025-12-17 19:47:48', '6AXveo6d', '3337137'), + (309, 526, 'attending', '2020-12-24 01:23:26', '2025-12-17 19:47:48', '6AXveo6d', '3351539'), + (309, 529, 'maybe', '2021-01-02 00:06:31', '2025-12-17 19:47:48', '6AXveo6d', '3364568'), + (309, 536, 'attending', '2021-01-07 16:52:10', '2025-12-17 19:47:48', '6AXveo6d', '3386848'), + (309, 540, 'attending', '2021-01-07 16:50:32', '2025-12-17 19:47:48', '6AXveo6d', '3389527'), + (309, 542, 'attending', '2021-01-12 00:54:01', '2025-12-17 19:47:48', '6AXveo6d', '3395013'), + (309, 543, 'attending', '2021-01-12 00:53:18', '2025-12-17 19:47:48', '6AXveo6d', '3396499'), + (309, 548, 'attending', '2021-01-12 00:52:49', '2025-12-17 19:47:48', '6AXveo6d', '3403650'), + (309, 549, 'maybe', '2021-01-16 20:51:59', '2025-12-17 19:47:49', '6AXveo6d', '3406988'), + (309, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', '6AXveo6d', '3408338'), + (309, 555, 'attending', '2021-01-19 19:53:14', '2025-12-17 19:47:49', '6AXveo6d', '3416576'), + (309, 568, 'attending', '2021-01-26 01:56:05', '2025-12-17 19:47:50', '6AXveo6d', '3430267'), + (309, 571, 'attending', '2021-02-10 00:34:35', '2025-12-17 19:47:50', '6AXveo6d', '3435539'), + (309, 579, 'attending', '2021-01-30 17:58:00', '2025-12-17 19:47:50', '6AXveo6d', '3440978'), + (309, 602, 'attending', '2021-02-10 00:33:48', '2025-12-17 19:47:50', '6AXveo6d', '3470303'), + (309, 603, 'attending', '2021-02-13 00:44:49', '2025-12-17 19:47:50', '6AXveo6d', '3470304'), + (309, 604, 'attending', '2021-02-27 23:03:54', '2025-12-17 19:47:50', '6AXveo6d', '3470305'), + (309, 605, 'maybe', '2021-02-07 21:57:40', '2025-12-17 19:47:50', '6AXveo6d', '3470991'), + (309, 612, 'attending', '2021-02-17 01:27:22', '2025-12-17 19:47:50', '6AXveo6d', '3490040'), + (309, 613, 'attending', '2021-02-18 19:52:43', '2025-12-17 19:47:50', '6AXveo6d', '3490041'), + (309, 614, 'attending', '2021-03-03 00:47:25', '2025-12-17 19:47:51', '6AXveo6d', '3490042'), + (309, 621, 'attending', '2021-03-03 00:47:18', '2025-12-17 19:47:51', '6AXveo6d', '3517815'), + (309, 622, 'attending', '2021-03-06 03:53:50', '2025-12-17 19:47:51', '6AXveo6d', '3517816'), + (309, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '6AXveo6d', '3523941'), + (309, 631, 'not_attending', '2021-03-03 00:46:40', '2025-12-17 19:47:51', '6AXveo6d', '3533850'), + (309, 634, 'attending', '2021-03-31 17:09:15', '2025-12-17 19:47:44', '6AXveo6d', '3534718'), + (309, 638, 'not_attending', '2021-03-03 00:45:43', '2025-12-17 19:47:44', '6AXveo6d', '3536632'), + (309, 639, 'not_attending', '2021-03-03 00:44:57', '2025-12-17 19:47:51', '6AXveo6d', '3536656'), + (309, 641, 'attending', '2021-03-31 17:09:08', '2025-12-17 19:47:44', '6AXveo6d', '3539916'), + (309, 642, 'attending', '2021-04-06 19:21:28', '2025-12-17 19:47:44', '6AXveo6d', '3539917'), + (309, 643, 'attending', '2021-04-13 23:28:40', '2025-12-17 19:47:45', '6AXveo6d', '3539918'), + (309, 644, 'attending', '2021-04-21 23:26:25', '2025-12-17 19:47:45', '6AXveo6d', '3539919'), + (309, 645, 'maybe', '2021-05-07 22:43:47', '2025-12-17 19:47:46', '6AXveo6d', '3539920'), + (309, 646, 'attending', '2021-05-11 13:17:31', '2025-12-17 19:47:46', '6AXveo6d', '3539921'), + (309, 647, 'attending', '2021-05-22 15:39:22', '2025-12-17 19:47:46', '6AXveo6d', '3539922'), + (309, 648, 'attending', '2021-05-29 19:20:41', '2025-12-17 19:47:47', '6AXveo6d', '3539923'), + (309, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '6AXveo6d', '3539927'), + (309, 650, 'attending', '2021-03-27 18:14:08', '2025-12-17 19:47:44', '6AXveo6d', '3539928'), + (309, 652, 'attending', '2021-03-07 21:12:39', '2025-12-17 19:47:51', '6AXveo6d', '3544466'), + (309, 680, 'attending', '2021-03-10 23:39:45', '2025-12-17 19:47:51', '6AXveo6d', '3547700'), + (309, 683, 'attending', '2021-03-10 01:38:54', '2025-12-17 19:47:51', '6AXveo6d', '3548818'), + (309, 684, 'maybe', '2021-03-12 23:18:14', '2025-12-17 19:47:51', '6AXveo6d', '3549257'), + (309, 705, 'attending', '2021-03-27 18:14:15', '2025-12-17 19:47:44', '6AXveo6d', '3581895'), + (309, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '6AXveo6d', '3582734'), + (309, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '6AXveo6d', '3583262'), + (309, 711, 'attending', '2021-03-31 17:09:34', '2025-12-17 19:47:44', '6AXveo6d', '3588075'), + (309, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXveo6d', '3619523'), + (309, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '6AXveo6d', '3661369'), + (309, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXveo6d', '3674262'), + (309, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXveo6d', '3677402'), + (309, 744, 'attending', '2021-06-04 21:05:16', '2025-12-17 19:47:47', '6AXveo6d', '3680624'), + (309, 752, 'attending', '2021-04-15 23:03:47', '2025-12-17 19:47:44', '6AXveo6d', '3699422'), + (309, 761, 'maybe', '2021-05-14 22:13:57', '2025-12-17 19:47:46', '6AXveo6d', '3716041'), + (309, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXveo6d', '3730212'), + (309, 788, 'attending', '2021-05-07 22:43:19', '2025-12-17 19:47:46', '6AXveo6d', '3781975'), + (309, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXveo6d', '3793156'), + (309, 822, 'not_attending', '2021-06-03 01:52:12', '2025-12-17 19:47:47', '6AXveo6d', '3969986'), + (309, 823, 'attending', '2021-06-19 14:45:05', '2025-12-17 19:47:48', '6AXveo6d', '3974109'), + (309, 827, 'attending', '2021-06-04 21:05:23', '2025-12-17 19:47:47', '6AXveo6d', '3975311'), + (309, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXveo6d', '3975312'), + (309, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXveo6d', '3994992'), + (309, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXveo6d', '4014338'), + (309, 867, 'attending', '2021-06-26 01:20:49', '2025-12-17 19:47:38', '6AXveo6d', '4021848'), + (309, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXveo6d', '4136744'), + (309, 870, 'attending', '2021-07-01 01:18:19', '2025-12-17 19:47:39', '6AXveo6d', '4136937'), + (309, 871, 'attending', '2021-07-03 00:09:14', '2025-12-17 19:47:39', '6AXveo6d', '4136938'), + (309, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXveo6d', '4136947'), + (309, 884, 'attending', '2021-07-21 20:37:46', '2025-12-17 19:47:42', '6AXveo6d', '4210314'), + (309, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXveo6d', '4225444'), + (309, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXveo6d', '4239259'), + (309, 900, 'attending', '2021-07-21 20:38:08', '2025-12-17 19:47:40', '6AXveo6d', '4240316'), + (309, 901, 'not_attending', '2021-07-21 20:38:16', '2025-12-17 19:47:40', '6AXveo6d', '4240317'), + (309, 902, 'attending', '2021-07-21 20:38:26', '2025-12-17 19:47:41', '6AXveo6d', '4240318'), + (309, 903, 'attending', '2021-08-03 22:41:42', '2025-12-17 19:47:42', '6AXveo6d', '4240320'), + (309, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXveo6d', '4250163'), + (309, 906, 'not_attending', '2021-07-05 05:49:09', '2025-12-17 19:47:39', '6AXveo6d', '4253431'), + (309, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXveo6d', '4275957'), + (309, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXveo6d', '4277819'), + (309, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXveo6d', '4301723'), + (309, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXveo6d', '4302093'), + (309, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXveo6d', '4304151'), + (309, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXveo6d', '4356801'), + (309, 973, 'attending', '2021-08-15 21:28:38', '2025-12-17 19:47:42', '6AXveo6d', '4366186'), + (309, 974, 'attending', '2021-08-15 21:27:59', '2025-12-17 19:47:42', '6AXveo6d', '4366187'), + (309, 979, 'attending', '2021-08-21 19:19:26', '2025-12-17 19:47:42', '6AXveo6d', '4379085'), + (309, 980, 'attending', '2021-08-18 22:30:57', '2025-12-17 19:47:42', '6AXveo6d', '4380358'), + (309, 990, 'attending', '2021-08-28 22:26:56', '2025-12-17 19:47:43', '6AXveo6d', '4420735'), + (309, 991, 'attending', '2021-08-28 22:27:12', '2025-12-17 19:47:43', '6AXveo6d', '4420738'), + (309, 992, 'attending', '2021-08-28 22:27:33', '2025-12-17 19:47:33', '6AXveo6d', '4420739'), + (309, 993, 'attending', '2021-08-28 22:27:44', '2025-12-17 19:47:34', '6AXveo6d', '4420741'), + (309, 995, 'attending', '2021-08-28 22:28:16', '2025-12-17 19:47:34', '6AXveo6d', '4420744'), + (309, 996, 'attending', '2021-08-28 22:28:20', '2025-12-17 19:47:35', '6AXveo6d', '4420747'), + (309, 997, 'maybe', '2021-10-19 23:50:34', '2025-12-17 19:47:35', '6AXveo6d', '4420748'), + (309, 998, 'attending', '2021-08-28 22:28:31', '2025-12-17 19:47:36', '6AXveo6d', '4420749'), + (309, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXveo6d', '4461883'), + (309, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXveo6d', '4508342'), + (309, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXveo6d', '4568602'), + (309, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AXveo6d', '4572153'), + (309, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AXveo6d', '4585962'), + (309, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '6AXveo6d', '4596356'), + (309, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AXveo6d', '4598860'), + (309, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AXveo6d', '4598861'), + (309, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '6AXveo6d', '4602797'), + (309, 1102, 'attending', '2021-11-07 23:01:10', '2025-12-17 19:47:37', '6AXveo6d', '4612098'), + (309, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '6AXveo6d', '4637896'), + (309, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AXveo6d', '4642994'), + (309, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AXveo6d', '4642995'), + (309, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AXveo6d', '4642996'), + (309, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AXveo6d', '4642997'), + (309, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '6AXveo6d', '4645687'), + (309, 1127, 'attending', '2021-11-20 18:27:31', '2025-12-17 19:47:38', '6AXveo6d', '4645698'), + (309, 1128, 'attending', '2021-11-20 18:26:54', '2025-12-17 19:47:37', '6AXveo6d', '4645704'), + (309, 1129, 'attending', '2021-11-20 18:27:01', '2025-12-17 19:47:37', '6AXveo6d', '4645705'), + (309, 1130, 'attending', '2021-11-20 18:27:06', '2025-12-17 19:47:37', '6AXveo6d', '4658824'), + (309, 1134, 'maybe', '2021-11-26 20:50:57', '2025-12-17 19:47:37', '6AXveo6d', '4668385'), + (309, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '6AXveo6d', '4694407'), + (309, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXveo6d', '6045684'), + (310, 993, 'attending', '2021-09-25 21:18:56', '2025-12-17 19:47:34', 'dlO8V9Y4', '4420741'), + (310, 995, 'maybe', '2021-10-04 00:20:03', '2025-12-17 19:47:34', 'dlO8V9Y4', '4420744'), + (310, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dlO8V9Y4', '4420747'), + (310, 1005, 'attending', '2021-09-23 21:52:32', '2025-12-17 19:47:34', 'dlO8V9Y4', '4438807'), + (310, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlO8V9Y4', '4508342'), + (310, 1072, 'maybe', '2021-10-04 00:19:35', '2025-12-17 19:47:34', 'dlO8V9Y4', '4516287'), + (310, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dlO8V9Y4', '4568602'), + (310, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dlO8V9Y4', '4572153'), + (310, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dlO8V9Y4', '4585962'), + (310, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dlO8V9Y4', '4596356'), + (310, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dlO8V9Y4', '4598860'), + (310, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dlO8V9Y4', '4598861'), + (310, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dlO8V9Y4', '4602797'), + (310, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dlO8V9Y4', '4637896'), + (310, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dlO8V9Y4', '4642994'), + (310, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dlO8V9Y4', '4642995'), + (310, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dlO8V9Y4', '4642996'), + (310, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dlO8V9Y4', '4642997'), + (310, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dlO8V9Y4', '4645687'), + (310, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dlO8V9Y4', '4645698'), + (310, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dlO8V9Y4', '4645704'), + (310, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dlO8V9Y4', '4645705'), + (310, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dlO8V9Y4', '4668385'), + (310, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dlO8V9Y4', '4694407'), + (310, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dlO8V9Y4', '4736497'), + (310, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dlO8V9Y4', '4736499'), + (310, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dlO8V9Y4', '4736500'), + (310, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dlO8V9Y4', '4736503'), + (310, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dlO8V9Y4', '4736504'), + (310, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dlO8V9Y4', '4746789'), + (310, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dlO8V9Y4', '4753929'), + (310, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dlO8V9Y4', '5038850'), + (310, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dlO8V9Y4', '5045826'), + (310, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dlO8V9Y4', '5132533'), + (310, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dlO8V9Y4', '5186582'), + (310, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dlO8V9Y4', '5186583'), + (310, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dlO8V9Y4', '5186585'), + (310, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dlO8V9Y4', '5190437'), + (310, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dlO8V9Y4', '5215989'), + (310, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlO8V9Y4', '6045684'), + (311, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', '8mRE5nEd', '3539920'), + (311, 790, 'attending', '2021-05-08 18:09:09', '2025-12-17 19:47:46', '8mRE5nEd', '3789923'), + (311, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8mRE5nEd', '3793156'), + (311, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRE5nEd', '6045684'), + (312, 2993, 'not_attending', '2025-03-15 21:19:36', '2025-12-17 19:46:19', 'bdz5OMl4', '7842904'), + (312, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'bdz5OMl4', '7869188'), + (312, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'bdz5OMl4', '7877465'), + (312, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'bdz5OMl4', '7880977'), + (312, 3038, 'attending', '2025-03-14 20:56:38', '2025-12-17 19:46:19', 'bdz5OMl4', '7881989'), + (312, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'bdz5OMl4', '7888250'), + (312, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'bdz5OMl4', '7904777'), + (312, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'bdz5OMl4', '8349164'), + (312, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'bdz5OMl4', '8349545'), + (312, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'bdz5OMl4', '8353584'), + (312, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'bdz5OMl4', '8368028'), + (312, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'bdz5OMl4', '8368029'), + (312, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'bdz5OMl4', '8388462'), + (312, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'bdz5OMl4', '8400273'), + (312, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'bdz5OMl4', '8400274'), + (312, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'bdz5OMl4', '8400275'), + (312, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'bdz5OMl4', '8400276'), + (312, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'bdz5OMl4', '8404977'), + (312, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'bdz5OMl4', '8430783'), + (312, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'bdz5OMl4', '8430784'), + (312, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'bdz5OMl4', '8430799'), + (312, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'bdz5OMl4', '8430800'), + (312, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'bdz5OMl4', '8430801'), + (312, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'bdz5OMl4', '8438709'), + (312, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'bdz5OMl4', '8457738'), + (312, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'bdz5OMl4', '8459566'), + (312, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'bdz5OMl4', '8459567'), + (312, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'bdz5OMl4', '8461032'), + (312, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'bdz5OMl4', '8477877'), + (312, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'bdz5OMl4', '8485688'), + (313, 1511, 'attending', '2023-07-07 03:14:19', '2025-12-17 19:47:19', 'dKbaEGZ4', '5437733'), + (313, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dKbaEGZ4', '6044839'), + (313, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dKbaEGZ4', '6053198'), + (313, 2011, 'not_attending', '2023-04-10 18:04:05', '2025-12-17 19:46:59', 'dKbaEGZ4', '6056916'), + (313, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dKbaEGZ4', '6059290'), + (313, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dKbaEGZ4', '6060328'), + (313, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dKbaEGZ4', '6061037'), + (313, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dKbaEGZ4', '6061039'), + (313, 2021, 'maybe', '2023-04-17 15:09:09', '2025-12-17 19:47:00', 'dKbaEGZ4', '6066316'), + (313, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dKbaEGZ4', '6067245'), + (313, 2025, 'not_attending', '2023-04-23 16:59:15', '2025-12-17 19:47:00', 'dKbaEGZ4', '6067457'), + (313, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dKbaEGZ4', '6068094'), + (313, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dKbaEGZ4', '6068252'), + (313, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dKbaEGZ4', '6068253'), + (313, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dKbaEGZ4', '6068254'), + (313, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dKbaEGZ4', '6068280'), + (313, 2032, 'attending', '2023-06-02 19:40:21', '2025-12-17 19:47:04', 'dKbaEGZ4', '6068281'), + (313, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dKbaEGZ4', '6069093'), + (313, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dKbaEGZ4', '6072528'), + (313, 2047, 'not_attending', '2023-05-07 17:46:30', '2025-12-17 19:47:02', 'dKbaEGZ4', '6076027'), + (313, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dKbaEGZ4', '6079840'), + (313, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dKbaEGZ4', '6083398'), + (313, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dKbaEGZ4', '6093504'), + (313, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dKbaEGZ4', '6097414'), + (313, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dKbaEGZ4', '6097442'), + (313, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dKbaEGZ4', '6097684'), + (313, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dKbaEGZ4', '6098762'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (313, 2064, 'attending', '2023-06-24 13:06:52', '2025-12-17 19:46:50', 'dKbaEGZ4', '6099988'), + (313, 2065, 'attending', '2023-06-17 00:14:40', '2025-12-17 19:46:49', 'dKbaEGZ4', '6101169'), + (313, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dKbaEGZ4', '6101361'), + (313, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dKbaEGZ4', '6101362'), + (313, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dKbaEGZ4', '6103752'), + (313, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dKbaEGZ4', '6107314'), + (313, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dKbaEGZ4', '6120034'), + (313, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dKbaEGZ4', '6136733'), + (313, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dKbaEGZ4', '6137989'), + (313, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dKbaEGZ4', '6150864'), + (313, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKbaEGZ4', '6155491'), + (313, 2111, 'attending', '2023-06-21 22:26:32', '2025-12-17 19:46:50', 'dKbaEGZ4', '6156121'), + (313, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKbaEGZ4', '6164417'), + (313, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKbaEGZ4', '6166388'), + (313, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKbaEGZ4', '6176439'), + (313, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKbaEGZ4', '6182410'), + (313, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKbaEGZ4', '6185812'), + (313, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKbaEGZ4', '6187651'), + (313, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKbaEGZ4', '6187963'), + (313, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKbaEGZ4', '6187964'), + (313, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKbaEGZ4', '6187966'), + (313, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKbaEGZ4', '6187967'), + (313, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKbaEGZ4', '6187969'), + (313, 2143, 'attending', '2023-08-02 15:57:46', '2025-12-17 19:46:51', 'dKbaEGZ4', '6334348'), + (313, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKbaEGZ4', '6334878'), + (313, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dKbaEGZ4', '6337236'), + (313, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKbaEGZ4', '6337970'), + (313, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dKbaEGZ4', '6338308'), + (313, 2159, 'attending', '2023-07-20 19:03:43', '2025-12-17 19:46:53', 'dKbaEGZ4', '6338355'), + (313, 2160, 'attending', '2023-07-27 13:12:01', '2025-12-17 19:46:54', 'dKbaEGZ4', '6338358'), + (313, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dKbaEGZ4', '6340845'), + (313, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dKbaEGZ4', '6341710'), + (313, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKbaEGZ4', '6342044'), + (313, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKbaEGZ4', '6342298'), + (313, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dKbaEGZ4', '6343294'), + (313, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKbaEGZ4', '6347034'), + (313, 2177, 'attending', '2023-08-02 15:57:56', '2025-12-17 19:46:55', 'dKbaEGZ4', '6347053'), + (313, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKbaEGZ4', '6347056'), + (313, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKbaEGZ4', '6353830'), + (313, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKbaEGZ4', '6353831'), + (313, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKbaEGZ4', '6357867'), + (313, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKbaEGZ4', '6358652'), + (313, 2200, 'not_attending', '2023-08-10 23:16:58', '2025-12-17 19:46:55', 'dKbaEGZ4', '6359850'), + (313, 2202, 'attending', '2023-08-06 20:48:37', '2025-12-17 19:46:54', 'dKbaEGZ4', '6360509'), + (313, 2204, 'attending', '2023-08-19 06:24:49', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361542'), + (313, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKbaEGZ4', '6361709'), + (313, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361710'), + (313, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361711'), + (313, 2211, 'attending', '2023-08-15 23:41:46', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361712'), + (313, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKbaEGZ4', '6361713'), + (313, 2228, 'attending', '2023-08-19 20:05:35', '2025-12-17 19:46:55', 'dKbaEGZ4', '6372777'), + (313, 2232, 'not_attending', '2023-08-22 13:24:25', '2025-12-17 19:46:55', 'dKbaEGZ4', '6374818'), + (313, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKbaEGZ4', '6382573'), + (313, 2239, 'attending', '2023-08-31 18:00:24', '2025-12-17 19:46:56', 'dKbaEGZ4', '6387592'), + (313, 2240, 'attending', '2023-09-09 16:38:40', '2025-12-17 19:46:56', 'dKbaEGZ4', '6388603'), + (313, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dKbaEGZ4', '6388604'), + (313, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKbaEGZ4', '6394629'), + (313, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKbaEGZ4', '6394631'), + (313, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKbaEGZ4', '6440863'), + (313, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKbaEGZ4', '6445440'), + (313, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKbaEGZ4', '6453951'), + (313, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKbaEGZ4', '6461696'), + (313, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKbaEGZ4', '6462129'), + (313, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKbaEGZ4', '6463218'), + (313, 2299, 'not_attending', '2023-10-21 00:40:33', '2025-12-17 19:46:46', 'dKbaEGZ4', '6472181'), + (313, 2303, 'attending', '2023-10-28 16:35:40', '2025-12-17 19:46:47', 'dKbaEGZ4', '6482691'), + (313, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKbaEGZ4', '6482693'), + (313, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dKbaEGZ4', '6484200'), + (313, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKbaEGZ4', '6484680'), + (313, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKbaEGZ4', '6507741'), + (313, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKbaEGZ4', '6514659'), + (313, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKbaEGZ4', '6514660'), + (313, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKbaEGZ4', '6519103'), + (313, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKbaEGZ4', '6535681'), + (313, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKbaEGZ4', '6584747'), + (313, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKbaEGZ4', '6587097'), + (313, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKbaEGZ4', '6609022'), + (313, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKbaEGZ4', '6632757'), + (313, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKbaEGZ4', '6644187'), + (313, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKbaEGZ4', '6648951'), + (313, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKbaEGZ4', '6648952'), + (313, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKbaEGZ4', '6655401'), + (313, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKbaEGZ4', '6661585'), + (313, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKbaEGZ4', '6661588'), + (313, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKbaEGZ4', '6661589'), + (313, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKbaEGZ4', '6699906'), + (313, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dKbaEGZ4', '6699913'), + (313, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKbaEGZ4', '6701109'), + (313, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKbaEGZ4', '6705219'), + (313, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKbaEGZ4', '6710153'), + (313, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKbaEGZ4', '6711552'), + (313, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKbaEGZ4', '6711553'), + (313, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKbaEGZ4', '6722688'), + (313, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKbaEGZ4', '6730620'), + (313, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKbaEGZ4', '6730642'), + (313, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKbaEGZ4', '6740364'), + (313, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKbaEGZ4', '6743829'), + (313, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKbaEGZ4', '7030380'), + (313, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKbaEGZ4', '7033677'), + (313, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKbaEGZ4', '7035415'), + (313, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKbaEGZ4', '7044715'), + (313, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKbaEGZ4', '7050318'), + (313, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKbaEGZ4', '7050319'), + (313, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKbaEGZ4', '7050322'), + (313, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKbaEGZ4', '7057804'), + (313, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dKbaEGZ4', '7059866'), + (313, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKbaEGZ4', '7072824'), + (313, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dKbaEGZ4', '7074348'), + (313, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKbaEGZ4', '7089267'), + (313, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKbaEGZ4', '7098747'), + (313, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dKbaEGZ4', '7113468'), + (313, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKbaEGZ4', '7114856'), + (313, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKbaEGZ4', '7114951'), + (313, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKbaEGZ4', '7114955'), + (313, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKbaEGZ4', '7114956'), + (313, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKbaEGZ4', '7153615'), + (313, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKbaEGZ4', '7159484'), + (313, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKbaEGZ4', '7178446'), + (314, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dJrj7qwd', '5630960'), + (314, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dJrj7qwd', '5630961'), + (314, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dJrj7qwd', '5630962'), + (314, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dJrj7qwd', '5630966'), + (314, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', 'dJrj7qwd', '5638765'), + (314, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dJrj7qwd', '5640097'), + (314, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dJrj7qwd', '5652395'), + (314, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dJrj7qwd', '5671637'), + (314, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dJrj7qwd', '5672329'), + (314, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dJrj7qwd', '5674057'), + (314, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dJrj7qwd', '5674060'), + (314, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dJrj7qwd', '5677461'), + (314, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dJrj7qwd', '5698046'), + (314, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dJrj7qwd', '5699760'), + (314, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJrj7qwd', '6045684'), + (315, 1863, 'attending', '2023-01-25 00:08:58', '2025-12-17 19:47:06', 'd31kM2OA', '5877255'), + (315, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'd31kM2OA', '5880940'), + (315, 1868, 'maybe', '2023-02-20 01:54:07', '2025-12-17 19:47:07', 'd31kM2OA', '5880942'), + (315, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd31kM2OA', '5880943'), + (315, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'd31kM2OA', '5899826'), + (315, 1885, 'not_attending', '2023-02-21 14:24:36', '2025-12-17 19:47:08', 'd31kM2OA', '5899928'), + (315, 1886, 'not_attending', '2023-03-08 20:15:43', '2025-12-17 19:47:09', 'd31kM2OA', '5899930'), + (315, 1888, 'maybe', '2023-02-16 04:19:00', '2025-12-17 19:47:07', 'd31kM2OA', '5900197'), + (315, 1889, 'attending', '2023-02-03 17:52:13', '2025-12-17 19:47:07', 'd31kM2OA', '5900199'), + (315, 1890, 'attending', '2023-02-18 15:12:39', '2025-12-17 19:47:08', 'd31kM2OA', '5900200'), + (315, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd31kM2OA', '5900202'), + (315, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd31kM2OA', '5900203'), + (315, 1895, 'attending', '2023-01-31 22:26:47', '2025-12-17 19:47:06', 'd31kM2OA', '5901108'), + (315, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd31kM2OA', '5901126'), + (315, 1897, 'attending', '2023-02-06 14:15:45', '2025-12-17 19:47:07', 'd31kM2OA', '5901128'), + (315, 1898, 'attending', '2023-02-01 00:28:17', '2025-12-17 19:47:06', 'd31kM2OA', '5901263'), + (315, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'd31kM2OA', '5909655'), + (315, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'd31kM2OA', '5910522'), + (315, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'd31kM2OA', '5910526'), + (315, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'd31kM2OA', '5910528'), + (315, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd31kM2OA', '5916219'), + (315, 1925, 'maybe', '2023-02-18 15:13:20', '2025-12-17 19:47:08', 'd31kM2OA', '5932619'), + (315, 1926, 'attending', '2023-02-20 01:54:51', '2025-12-17 19:47:08', 'd31kM2OA', '5932620'), + (315, 1928, 'attending', '2023-02-18 15:12:07', '2025-12-17 19:47:07', 'd31kM2OA', '5932627'), + (315, 1929, 'not_attending', '2023-02-18 15:11:30', '2025-12-17 19:47:07', 'd31kM2OA', '5932628'), + (315, 1933, 'attending', '2023-02-21 14:24:45', '2025-12-17 19:47:08', 'd31kM2OA', '5936234'), + (315, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd31kM2OA', '5958351'), + (315, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd31kM2OA', '5959751'), + (315, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd31kM2OA', '5959755'), + (315, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd31kM2OA', '5960055'), + (315, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd31kM2OA', '5961684'), + (315, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd31kM2OA', '5962132'), + (315, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'd31kM2OA', '5962133'), + (315, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd31kM2OA', '5962134'), + (315, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd31kM2OA', '5962317'), + (315, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd31kM2OA', '5962318'), + (315, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'd31kM2OA', '5965933'), + (315, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd31kM2OA', '5967014'), + (315, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd31kM2OA', '5972815'), + (315, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd31kM2OA', '5974016'), + (315, 1965, 'maybe', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd31kM2OA', '5981515'), + (315, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd31kM2OA', '5993516'), + (315, 1970, 'not_attending', '2023-03-22 23:47:22', '2025-12-17 19:46:56', 'd31kM2OA', '5993758'), + (315, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd31kM2OA', '5998939'), + (315, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd31kM2OA', '6028191'), + (315, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd31kM2OA', '6040066'), + (315, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd31kM2OA', '6042717'), + (315, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd31kM2OA', '6044838'), + (315, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd31kM2OA', '6044839'), + (315, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd31kM2OA', '6045684'), + (315, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd31kM2OA', '6050104'), + (315, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd31kM2OA', '6053195'), + (315, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd31kM2OA', '6053198'), + (315, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd31kM2OA', '6056085'), + (315, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd31kM2OA', '6056916'), + (315, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd31kM2OA', '6059290'), + (315, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd31kM2OA', '6060328'), + (315, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd31kM2OA', '6061037'), + (315, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd31kM2OA', '6061039'), + (315, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd31kM2OA', '6067245'), + (315, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd31kM2OA', '6068094'), + (315, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd31kM2OA', '6068252'), + (315, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd31kM2OA', '6068253'), + (315, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd31kM2OA', '6068254'), + (315, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd31kM2OA', '6068280'), + (315, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd31kM2OA', '6069093'), + (315, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd31kM2OA', '6072528'), + (315, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd31kM2OA', '6079840'), + (315, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd31kM2OA', '6083398'), + (315, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd31kM2OA', '6093504'), + (315, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd31kM2OA', '6097414'), + (315, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd31kM2OA', '6097442'), + (315, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd31kM2OA', '6097684'), + (315, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd31kM2OA', '6098762'), + (315, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd31kM2OA', '6101362'), + (315, 2070, 'maybe', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd31kM2OA', '6103752'), + (315, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd31kM2OA', '6107314'), + (316, 901, 'not_attending', '2021-07-31 17:55:48', '2025-12-17 19:47:40', 'd2pDMV5A', '4240317'), + (316, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'd2pDMV5A', '4240318'), + (316, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'd2pDMV5A', '4302093'), + (316, 947, 'attending', '2021-07-31 05:52:32', '2025-12-17 19:47:41', 'd2pDMV5A', '4315713'), + (316, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd2pDMV5A', '6045684'), + (317, 255, 'maybe', '2021-03-23 17:16:17', '2025-12-17 19:47:43', 'QdJ3Q7bm', '3149486'), + (317, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3236465'), + (317, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3539916'), + (317, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'QdJ3Q7bm', '3539918'), + (317, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3539919'), + (317, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3539920'), + (317, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3539921'), + (317, 689, 'maybe', '2021-03-25 17:03:19', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3555564'), + (317, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3583262'), + (317, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3619523'), + (317, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3661369'), + (317, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3674262'), + (317, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3677402'), + (317, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'QdJ3Q7bm', '3730212'), + (317, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3793156'), + (317, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3803310'), + (317, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3806392'), + (317, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ3Q7bm', '6045684'), + (318, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', 'x4oRgMXA', '4136938'), + (318, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'x4oRgMXA', '4136947'), + (318, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oRgMXA', '4210314'), + (318, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oRgMXA', '4225444'), + (318, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', 'x4oRgMXA', '4229418'), + (318, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'x4oRgMXA', '4229420'), + (318, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'x4oRgMXA', '4229423'), + (318, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'x4oRgMXA', '4240316'), + (318, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oRgMXA', '4240317'), + (318, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'x4oRgMXA', '4240318'), + (318, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oRgMXA', '4275957'), + (318, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oRgMXA', '4277819'), + (318, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'x4oRgMXA', '4292773'), + (318, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oRgMXA', '4301723'), + (318, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'x4oRgMXA', '4302093'), + (318, 940, 'not_attending', '2021-07-30 16:29:47', '2025-12-17 19:47:40', 'x4oRgMXA', '4309049'), + (318, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'x4oRgMXA', '4315713'), + (318, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oRgMXA', '6045684'), + (319, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'LmpJzb24', '3149489'), + (319, 395, 'not_attending', '2021-06-01 01:19:42', '2025-12-17 19:47:47', 'LmpJzb24', '3236450'), + (319, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'LmpJzb24', '3236452'), + (319, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'LmpJzb24', '3539923'), + (319, 743, 'not_attending', '2021-06-12 22:04:39', '2025-12-17 19:47:38', 'LmpJzb24', '3680623'), + (319, 744, 'not_attending', '2021-05-30 01:33:21', '2025-12-17 19:47:47', 'LmpJzb24', '3680624'), + (319, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'LmpJzb24', '3963335'), + (319, 823, 'not_attending', '2021-06-16 00:05:12', '2025-12-17 19:47:48', 'LmpJzb24', '3974109'), + (319, 824, 'not_attending', '2021-06-03 21:57:23', '2025-12-17 19:47:47', 'LmpJzb24', '3974112'), + (319, 825, 'attending', '2021-06-08 23:15:48', '2025-12-17 19:47:47', 'LmpJzb24', '3975283'), + (319, 827, 'attending', '2021-06-04 14:38:16', '2025-12-17 19:47:47', 'LmpJzb24', '3975311'), + (319, 828, 'not_attending', '2021-06-04 14:19:38', '2025-12-17 19:47:47', 'LmpJzb24', '3975312'), + (319, 829, 'attending', '2021-05-31 02:52:09', '2025-12-17 19:47:47', 'LmpJzb24', '3976202'), + (319, 834, 'maybe', '2021-06-07 14:53:14', '2025-12-17 19:47:47', 'LmpJzb24', '3990439'), + (319, 838, 'not_attending', '2021-06-07 23:01:20', '2025-12-17 19:47:47', 'LmpJzb24', '3994992'), + (319, 843, 'attending', '2021-06-09 22:28:45', '2025-12-17 19:47:47', 'LmpJzb24', '4011909'), + (319, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpJzb24', '4014338'), + (319, 867, 'attending', '2021-06-24 00:03:30', '2025-12-17 19:47:38', 'LmpJzb24', '4021848'), + (319, 869, 'not_attending', '2021-06-30 22:17:35', '2025-12-17 19:47:38', 'LmpJzb24', '4136744'), + (319, 870, 'attending', '2021-06-30 15:27:38', '2025-12-17 19:47:39', 'LmpJzb24', '4136937'), + (319, 871, 'not_attending', '2021-07-10 15:47:08', '2025-12-17 19:47:39', 'LmpJzb24', '4136938'), + (319, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJzb24', '4136947'), + (319, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpJzb24', '4210314'), + (319, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpJzb24', '4225444'), + (319, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpJzb24', '4239259'), + (319, 900, 'not_attending', '2021-07-21 16:38:34', '2025-12-17 19:47:40', 'LmpJzb24', '4240316'), + (319, 901, 'attending', '2021-07-31 13:56:55', '2025-12-17 19:47:40', 'LmpJzb24', '4240317'), + (319, 902, 'not_attending', '2021-08-07 19:04:32', '2025-12-17 19:47:41', 'LmpJzb24', '4240318'), + (319, 903, 'attending', '2021-08-12 15:30:23', '2025-12-17 19:47:42', 'LmpJzb24', '4240320'), + (319, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpJzb24', '4250163'), + (319, 916, 'maybe', '2021-07-17 15:20:45', '2025-12-17 19:47:40', 'LmpJzb24', '4273772'), + (319, 917, 'attending', '2021-07-14 14:00:27', '2025-12-17 19:47:39', 'LmpJzb24', '4274481'), + (319, 919, 'not_attending', '2021-07-16 18:43:00', '2025-12-17 19:47:39', 'LmpJzb24', '4275957'), + (319, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpJzb24', '4277819'), + (319, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpJzb24', '4301723'), + (319, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpJzb24', '4302093'), + (319, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpJzb24', '4304151'), + (319, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'LmpJzb24', '4345519'), + (319, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'LmpJzb24', '4356801'), + (319, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpJzb24', '4358025'), + (319, 973, 'not_attending', '2021-08-18 15:03:25', '2025-12-17 19:47:42', 'LmpJzb24', '4366186'), + (319, 974, 'not_attending', '2021-08-28 18:27:22', '2025-12-17 19:47:43', 'LmpJzb24', '4366187'), + (319, 988, 'not_attending', '2021-08-27 23:52:35', '2025-12-17 19:47:42', 'LmpJzb24', '4402823'), + (319, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'LmpJzb24', '4420735'), + (319, 991, 'not_attending', '2021-09-10 17:51:07', '2025-12-17 19:47:43', 'LmpJzb24', '4420738'), + (319, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'LmpJzb24', '4420739'), + (319, 993, 'not_attending', '2021-10-08 18:56:15', '2025-12-17 19:47:34', 'LmpJzb24', '4420741'), + (319, 995, 'not_attending', '2021-10-08 18:56:22', '2025-12-17 19:47:34', 'LmpJzb24', '4420744'), + (319, 996, 'attending', '2021-10-15 23:37:41', '2025-12-17 19:47:35', 'LmpJzb24', '4420747'), + (319, 997, 'not_attending', '2021-10-20 20:50:34', '2025-12-17 19:47:35', 'LmpJzb24', '4420748'), + (319, 998, 'not_attending', '2021-10-20 20:50:44', '2025-12-17 19:47:36', 'LmpJzb24', '4420749'), + (319, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'LmpJzb24', '4461883'), + (319, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpJzb24', '4508342'), + (319, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpJzb24', '4568602'), + (319, 1087, 'attending', '2021-10-15 23:37:37', '2025-12-17 19:47:35', 'LmpJzb24', '4572153'), + (319, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpJzb24', '4585962'), + (319, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'LmpJzb24', '4596356'), + (319, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpJzb24', '4598860'), + (319, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpJzb24', '4598861'), + (319, 1099, 'not_attending', '2021-11-06 02:00:57', '2025-12-17 19:47:36', 'LmpJzb24', '4602797'), + (319, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'LmpJzb24', '4637896'), + (319, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpJzb24', '4642994'), + (319, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'LmpJzb24', '4642995'), + (319, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpJzb24', '4642996'), + (319, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpJzb24', '4642997'), + (319, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'LmpJzb24', '4645687'), + (319, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpJzb24', '4645698'), + (319, 1128, 'not_attending', '2021-11-20 19:12:10', '2025-12-17 19:47:37', 'LmpJzb24', '4645704'), + (319, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'LmpJzb24', '4645705'), + (319, 1130, 'not_attending', '2021-12-04 23:52:07', '2025-12-17 19:47:37', 'LmpJzb24', '4658824'), + (319, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpJzb24', '4668385'), + (319, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpJzb24', '4694407'), + (319, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'LmpJzb24', '4736497'), + (319, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpJzb24', '4736499'), + (319, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'LmpJzb24', '4736500'), + (319, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'LmpJzb24', '4736503'), + (319, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpJzb24', '4736504'), + (319, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpJzb24', '4746789'), + (319, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'LmpJzb24', '4753929'), + (319, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpJzb24', '5038850'), + (319, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpJzb24', '5045826'), + (319, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpJzb24', '5132533'), + (319, 1272, 'not_attending', '2022-03-19 19:41:02', '2025-12-17 19:47:25', 'LmpJzb24', '5186582'), + (319, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpJzb24', '5186583'), + (319, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'LmpJzb24', '5186585'), + (319, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpJzb24', '5190437'), + (319, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'LmpJzb24', '5195095'), + (319, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpJzb24', '5215989'), + (319, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'LmpJzb24', '5223686'), + (319, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'LmpJzb24', '5227432'), + (319, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'LmpJzb24', '5247467'), + (319, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'LmpJzb24', '5260800'), + (319, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'LmpJzb24', '5269930'), + (319, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'LmpJzb24', '5271448'), + (319, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'LmpJzb24', '5271449'), + (319, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'LmpJzb24', '5276469'), + (319, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'LmpJzb24', '5278159'), + (319, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'LmpJzb24', '5363695'), + (319, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'LmpJzb24', '5365960'), + (319, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'LmpJzb24', '5368973'), + (319, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'LmpJzb24', '5378247'), + (319, 1431, 'not_attending', '2022-06-11 17:36:20', '2025-12-17 19:47:31', 'LmpJzb24', '5389605'), + (319, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'LmpJzb24', '5397265'), + (319, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'LmpJzb24', '5403967'), + (319, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'LmpJzb24', '5404786'), + (319, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'LmpJzb24', '5405203'), + (319, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'LmpJzb24', '5408794'), + (319, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'LmpJzb24', '5411699'), + (319, 1482, 'not_attending', '2022-06-24 19:41:44', '2025-12-17 19:47:19', 'LmpJzb24', '5412550'), + (319, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'LmpJzb24', '5415046'), + (319, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'LmpJzb24', '5422086'), + (319, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'LmpJzb24', '5422406'), + (319, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'LmpJzb24', '5424565'), + (319, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'LmpJzb24', '5426882'), + (319, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'LmpJzb24', '5427083'), + (319, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'LmpJzb24', '5441125'), + (319, 1514, 'attending', '2022-07-20 21:35:16', '2025-12-17 19:47:20', 'LmpJzb24', '5441126'), + (319, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'LmpJzb24', '5441128'), + (319, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'LmpJzb24', '5441131'), + (319, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'LmpJzb24', '5441132'), + (319, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'LmpJzb24', '5446643'), + (319, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'LmpJzb24', '5453325'), + (319, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'LmpJzb24', '5454516'), + (319, 1545, 'maybe', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'LmpJzb24', '5454605'), + (319, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'LmpJzb24', '5455037'), + (319, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'LmpJzb24', '5461278'), + (319, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'LmpJzb24', '5469480'), + (319, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'LmpJzb24', '5471073'), + (319, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'LmpJzb24', '5474663'), + (319, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'LmpJzb24', '5482022'), + (319, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'LmpJzb24', '5482793'), + (319, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'LmpJzb24', '5488912'), + (319, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'LmpJzb24', '5492192'), + (319, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'LmpJzb24', '5493139'), + (319, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'LmpJzb24', '5493200'), + (319, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'LmpJzb24', '5502188'), + (319, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'LmpJzb24', '5505059'), + (319, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'LmpJzb24', '5509055'), + (319, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'LmpJzb24', '5512862'), + (319, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'LmpJzb24', '5513985'), + (319, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'LmpJzb24', '5519981'), + (319, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'LmpJzb24', '5522550'), + (319, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'LmpJzb24', '5534683'), + (319, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'LmpJzb24', '5537735'), + (319, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'LmpJzb24', '5540859'), + (319, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'LmpJzb24', '5546619'), + (319, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'LmpJzb24', '5555245'), + (319, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'LmpJzb24', '5557747'), + (319, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'LmpJzb24', '5560255'), + (319, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'LmpJzb24', '5562906'), + (319, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'LmpJzb24', '5600604'), + (319, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'LmpJzb24', '5605544'), + (319, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'LmpJzb24', '5606737'), + (319, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'LmpJzb24', '5630960'), + (319, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'LmpJzb24', '5630961'), + (319, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'LmpJzb24', '5630962'), + (319, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'LmpJzb24', '5630966'), + (319, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'LmpJzb24', '5630967'), + (319, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'LmpJzb24', '5630968'), + (319, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'LmpJzb24', '5635406'), + (319, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'LmpJzb24', '5638765'), + (319, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'LmpJzb24', '5640097'), + (319, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'LmpJzb24', '5640843'), + (319, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'LmpJzb24', '5641521'), + (319, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'LmpJzb24', '5642818'), + (319, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'LmpJzb24', '5652395'), + (319, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'LmpJzb24', '5670445'), + (319, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'LmpJzb24', '5671637'), + (319, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'LmpJzb24', '5672329'), + (319, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'LmpJzb24', '5674057'), + (319, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'LmpJzb24', '5674060'), + (319, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'LmpJzb24', '5677461'), + (319, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'LmpJzb24', '5698046'), + (319, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'LmpJzb24', '5699760'), + (319, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'LmpJzb24', '5741601'), + (319, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'LmpJzb24', '5763458'), + (319, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'LmpJzb24', '5774172'), + (319, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'LmpJzb24', '5818247'), + (319, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'LmpJzb24', '5819471'), + (319, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'LmpJzb24', '5827739'), + (319, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'LmpJzb24', '5844306'), + (319, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'LmpJzb24', '5850159'), + (319, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'LmpJzb24', '5858999'), + (319, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'LmpJzb24', '5871984'), + (319, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'LmpJzb24', '5876354'), + (319, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'LmpJzb24', '5880939'), + (319, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'LmpJzb24', '5887890'), + (319, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'LmpJzb24', '5888598'), + (319, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'LmpJzb24', '5893260'), + (319, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'LmpJzb24', '5900202'), + (319, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'LmpJzb24', '5962317'), + (319, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'LmpJzb24', '5962318'), + (319, 1951, 'not_attending', '2023-03-21 00:52:15', '2025-12-17 19:46:57', 'LmpJzb24', '5965933'), + (319, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'LmpJzb24', '6028191'), + (319, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'LmpJzb24', '6040066'), + (319, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'LmpJzb24', '6042717'), + (319, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'LmpJzb24', '6044838'), + (319, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'LmpJzb24', '6044839'), + (319, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJzb24', '6045684'), + (319, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'LmpJzb24', '6050104'), + (319, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'LmpJzb24', '6053195'), + (319, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'LmpJzb24', '6053198'), + (319, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'LmpJzb24', '6056085'), + (319, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'LmpJzb24', '6056916'), + (319, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'LmpJzb24', '6059290'), + (319, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'LmpJzb24', '6060328'), + (319, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'LmpJzb24', '6061037'), + (319, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'LmpJzb24', '6061039'), + (319, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'LmpJzb24', '6067245'), + (319, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'LmpJzb24', '6068094'), + (319, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'LmpJzb24', '6068252'), + (319, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'LmpJzb24', '6068253'), + (319, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'LmpJzb24', '6068254'), + (319, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'LmpJzb24', '6068280'), + (319, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'LmpJzb24', '6069093'), + (319, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'LmpJzb24', '6072528'), + (319, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'LmpJzb24', '6079840'), + (319, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'LmpJzb24', '6083398'), + (319, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'LmpJzb24', '6093504'), + (319, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'LmpJzb24', '6097414'), + (319, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'LmpJzb24', '6097442'), + (319, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'LmpJzb24', '6097684'), + (319, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'LmpJzb24', '6098762'), + (319, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'LmpJzb24', '6101361'), + (319, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'LmpJzb24', '6101362'), + (319, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'LmpJzb24', '6103752'), + (319, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'LmpJzb24', '6107314'), + (319, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'LmpJzb24', '6120034'), + (319, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'LmpJzb24', '6136733'), + (319, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'LmpJzb24', '6137989'), + (319, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'LmpJzb24', '6150864'), + (319, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'LmpJzb24', '6155491'), + (319, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'LmpJzb24', '6164417'), + (319, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'LmpJzb24', '6166388'), + (319, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'LmpJzb24', '6176439'), + (319, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'LmpJzb24', '6182410'), + (319, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'LmpJzb24', '6185812'), + (319, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'LmpJzb24', '6187651'), + (319, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'LmpJzb24', '6187963'), + (319, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'LmpJzb24', '6187964'), + (319, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'LmpJzb24', '6187966'), + (319, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'LmpJzb24', '6187967'), + (319, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'LmpJzb24', '6187969'), + (319, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'LmpJzb24', '6334878'), + (319, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'LmpJzb24', '6337236'), + (319, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'LmpJzb24', '6337970'), + (319, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'LmpJzb24', '6338308'), + (319, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'LmpJzb24', '6340845'), + (319, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'LmpJzb24', '6341710'), + (319, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'LmpJzb24', '6342044'), + (319, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'LmpJzb24', '6342298'), + (319, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'LmpJzb24', '6343294'), + (319, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'LmpJzb24', '6347034'), + (319, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'LmpJzb24', '6347056'), + (319, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'LmpJzb24', '6353830'), + (319, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'LmpJzb24', '6353831'), + (319, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'LmpJzb24', '6357867'), + (319, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'LmpJzb24', '6358652'), + (319, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'LmpJzb24', '6361709'), + (319, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'LmpJzb24', '6361710'), + (319, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'LmpJzb24', '6361711'), + (319, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'LmpJzb24', '6361712'), + (319, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'LmpJzb24', '6361713'), + (319, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'LmpJzb24', '6382573'), + (319, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'LmpJzb24', '6388604'), + (319, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'LmpJzb24', '6394629'), + (319, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'LmpJzb24', '6394631'), + (319, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'LmpJzb24', '6440863'), + (319, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'LmpJzb24', '6445440'), + (319, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'LmpJzb24', '6453951'), + (319, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'LmpJzb24', '6461696'), + (319, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'LmpJzb24', '6462129'), + (319, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'LmpJzb24', '6463218'), + (319, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'LmpJzb24', '6472181'), + (319, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'LmpJzb24', '6482693'), + (319, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'LmpJzb24', '6484200'), + (319, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'LmpJzb24', '6484680'), + (319, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'LmpJzb24', '6507741'), + (319, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'LmpJzb24', '6514659'), + (319, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'LmpJzb24', '6514660'), + (319, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'LmpJzb24', '6519103'), + (319, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'LmpJzb24', '6535681'), + (319, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'LmpJzb24', '6584747'), + (319, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'LmpJzb24', '6587097'), + (319, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'LmpJzb24', '6609022'), + (319, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'LmpJzb24', '6632757'), + (319, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'LmpJzb24', '6644187'), + (319, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'LmpJzb24', '6648951'), + (319, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'LmpJzb24', '6648952'), + (319, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'LmpJzb24', '6655401'), + (319, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'LmpJzb24', '6661585'), + (319, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'LmpJzb24', '6661588'), + (319, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'LmpJzb24', '6661589'), + (319, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'LmpJzb24', '6699906'), + (319, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'LmpJzb24', '6701109'), + (319, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'LmpJzb24', '6705219'), + (319, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'LmpJzb24', '6710153'), + (319, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'LmpJzb24', '6711552'), + (319, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'LmpJzb24', '6711553'), + (320, 1626, 'not_attending', '2022-09-29 15:34:15', '2025-12-17 19:47:12', 'mjY2ggad', '5519981'), + (320, 1629, 'not_attending', '2022-09-16 07:38:52', '2025-12-17 19:47:11', 'mjY2ggad', '5522550'), + (320, 1635, 'not_attending', '2022-09-16 07:37:09', '2025-12-17 19:47:11', 'mjY2ggad', '5537735'), + (320, 1655, 'attending', '2022-09-17 11:55:17', '2025-12-17 19:47:11', 'mjY2ggad', '5554482'), + (320, 1669, 'maybe', '2022-09-16 03:14:04', '2025-12-17 19:47:10', 'mjY2ggad', '5564033'), + (320, 1676, 'attending', '2022-09-21 09:05:39', '2025-12-17 19:47:11', 'mjY2ggad', '5596181'), + (320, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mjY2ggad', '5600604'), + (320, 1679, 'attending', '2022-09-29 15:36:24', '2025-12-17 19:47:12', 'mjY2ggad', '5601099'), + (320, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mjY2ggad', '5605544'), + (320, 1698, 'attending', '2022-09-26 09:23:54', '2025-12-17 19:47:11', 'mjY2ggad', '5606366'), + (320, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mjY2ggad', '5630960'), + (320, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mjY2ggad', '5630961'), + (320, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mjY2ggad', '5630962'), + (320, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mjY2ggad', '5630966'), + (320, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mjY2ggad', '5630967'), + (320, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mjY2ggad', '5630968'), + (320, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mjY2ggad', '5635406'), + (320, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mjY2ggad', '5638765'), + (320, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mjY2ggad', '5640097'), + (320, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mjY2ggad', '5640843'), + (320, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mjY2ggad', '5641521'), + (320, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mjY2ggad', '5652395'), + (320, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mjY2ggad', '5671637'), + (320, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mjY2ggad', '5672329'), + (320, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mjY2ggad', '5674057'), + (320, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mjY2ggad', '5674060'), + (320, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mjY2ggad', '5677461'), + (320, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mjY2ggad', '5698046'), + (320, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mjY2ggad', '5699760'), + (320, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mjY2ggad', '5741601'), + (320, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mjY2ggad', '5763458'), + (320, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjY2ggad', '6045684'), + (321, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ArQLP9Xm', '5271448'), + (321, 1379, 'attending', '2022-05-06 20:08:23', '2025-12-17 19:47:29', 'ArQLP9Xm', '5271449'), + (321, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ArQLP9Xm', '5276469'), + (321, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ArQLP9Xm', '5278159'), + (321, 1388, 'not_attending', '2022-05-06 20:46:21', '2025-12-17 19:47:28', 'ArQLP9Xm', '5278201'), + (321, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ArQLP9Xm', '5363695'), + (321, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQLP9Xm', '5365960'), + (321, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQLP9Xm', '5368973'), + (321, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ArQLP9Xm', '5378247'), + (321, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ArQLP9Xm', '5389605'), + (321, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ArQLP9Xm', '5397265'), + (321, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQLP9Xm', '6045684'), + (322, 7, 'attending', '2020-03-22 16:57:51', '2025-12-17 19:47:58', 'Qd58nkE4', '2958049'), + (322, 8, 'attending', '2020-03-22 16:57:46', '2025-12-17 19:47:58', 'Qd58nkE4', '2958050'), + (322, 10, 'attending', '2020-03-28 18:27:31', '2025-12-17 19:47:56', 'Qd58nkE4', '2958053'), + (322, 11, 'attending', '2020-04-04 12:19:53', '2025-12-17 19:47:57', 'Qd58nkE4', '2958055'), + (322, 12, 'attending', '2020-03-22 17:11:12', '2025-12-17 19:47:56', 'Qd58nkE4', '2958056'), + (322, 13, 'not_attending', '2020-04-06 19:15:13', '2025-12-17 19:47:57', 'Qd58nkE4', '2958057'), + (322, 14, 'not_attending', '2020-04-06 19:15:16', '2025-12-17 19:47:57', 'Qd58nkE4', '2958058'), + (322, 15, 'not_attending', '2020-03-22 17:12:10', '2025-12-17 19:47:57', 'Qd58nkE4', '2958059'), + (322, 16, 'attending', '2020-03-24 21:50:20', '2025-12-17 19:47:56', 'Qd58nkE4', '2958060'), + (322, 18, 'not_attending', '2020-04-04 22:15:52', '2025-12-17 19:47:57', 'Qd58nkE4', '2958062'), + (322, 23, 'maybe', '2020-06-07 20:26:18', '2025-12-17 19:47:58', 'Qd58nkE4', '2958067'), + (322, 24, 'maybe', '2020-06-24 18:13:53', '2025-12-17 19:47:55', 'Qd58nkE4', '2958068'), + (322, 25, 'maybe', '2020-07-09 11:31:39', '2025-12-17 19:47:55', 'Qd58nkE4', '2958069'), + (322, 26, 'not_attending', '2020-04-01 22:50:13', '2025-12-17 19:47:57', 'Qd58nkE4', '2958082'), + (322, 28, 'attending', '2020-03-27 09:30:32', '2025-12-17 19:47:56', 'Qd58nkE4', '2960421'), + (322, 29, 'attending', '2020-03-25 15:04:39', '2025-12-17 19:47:56', 'Qd58nkE4', '2961309'), + (322, 30, 'attending', '2020-03-23 20:57:36', '2025-12-17 19:47:57', 'Qd58nkE4', '2961895'), + (322, 31, 'not_attending', '2020-03-24 21:51:10', '2025-12-17 19:47:58', 'Qd58nkE4', '2963118'), + (322, 32, 'attending', '2020-03-25 15:04:33', '2025-12-17 19:47:56', 'Qd58nkE4', '2963931'), + (322, 36, 'attending', '2020-03-29 01:56:20', '2025-12-17 19:47:57', 'Qd58nkE4', '2969208'), + (322, 37, 'attending', '2020-03-29 16:36:50', '2025-12-17 19:47:56', 'Qd58nkE4', '2969680'), + (322, 38, 'attending', '2020-03-30 13:58:45', '2025-12-17 19:47:56', 'Qd58nkE4', '2969751'), + (322, 39, 'attending', '2020-03-31 21:00:04', '2025-12-17 19:47:56', 'Qd58nkE4', '2970637'), + (322, 40, 'maybe', '2020-04-10 21:47:22', '2025-12-17 19:47:57', 'Qd58nkE4', '2970718'), + (322, 41, 'attending', '2020-04-13 01:01:39', '2025-12-17 19:47:57', 'Qd58nkE4', '2971546'), + (322, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'Qd58nkE4', '2974534'), + (322, 45, 'not_attending', '2020-04-06 19:15:19', '2025-12-17 19:47:57', 'Qd58nkE4', '2974760'), + (322, 46, 'attending', '2020-04-10 21:00:34', '2025-12-17 19:47:57', 'Qd58nkE4', '2974955'), + (322, 49, 'not_attending', '2020-06-02 19:43:36', '2025-12-17 19:47:58', 'Qd58nkE4', '2975274'), + (322, 50, 'maybe', '2020-07-25 22:26:57', '2025-12-17 19:47:55', 'Qd58nkE4', '2975275'), + (322, 55, 'attending', '2020-04-06 21:44:25', '2025-12-17 19:47:57', 'Qd58nkE4', '2975384'), + (322, 56, 'attending', '2020-04-12 21:58:19', '2025-12-17 19:47:57', 'Qd58nkE4', '2975385'), + (322, 57, 'attending', '2020-04-26 21:46:30', '2025-12-17 19:47:57', 'Qd58nkE4', '2976575'), + (322, 58, 'attending', '2020-04-14 01:30:06', '2025-12-17 19:47:57', 'Qd58nkE4', '2977127'), + (322, 59, 'attending', '2020-05-05 20:45:03', '2025-12-17 19:47:57', 'Qd58nkE4', '2977128'), + (322, 60, 'attending', '2020-04-26 21:52:20', '2025-12-17 19:47:57', 'Qd58nkE4', '2977129'), + (322, 61, 'attending', '2020-04-13 00:22:05', '2025-12-17 19:47:57', 'Qd58nkE4', '2977130'), + (322, 62, 'not_attending', '2020-05-12 22:50:24', '2025-12-17 19:47:57', 'Qd58nkE4', '2977131'), + (322, 63, 'attending', '2020-05-19 22:27:53', '2025-12-17 19:47:57', 'Qd58nkE4', '2977132'), + (322, 66, 'maybe', '2020-06-08 11:41:57', '2025-12-17 19:47:58', 'Qd58nkE4', '2977135'), + (322, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'Qd58nkE4', '2977343'), + (322, 71, 'attending', '2020-04-10 21:00:33', '2025-12-17 19:47:57', 'Qd58nkE4', '2977526'), + (322, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'Qd58nkE4', '2977812'), + (322, 73, 'attending', '2020-04-13 00:21:34', '2025-12-17 19:47:57', 'Qd58nkE4', '2977931'), + (322, 74, 'attending', '2020-04-16 16:11:17', '2025-12-17 19:47:57', 'Qd58nkE4', '2978244'), + (322, 75, 'attending', '2020-04-25 14:02:32', '2025-12-17 19:47:57', 'Qd58nkE4', '2978245'), + (322, 76, 'attending', '2020-04-26 21:52:44', '2025-12-17 19:47:57', 'Qd58nkE4', '2978246'), + (322, 77, 'attending', '2020-05-09 19:09:05', '2025-12-17 19:47:57', 'Qd58nkE4', '2978247'), + (322, 78, 'attending', '2020-05-22 03:12:31', '2025-12-17 19:47:57', 'Qd58nkE4', '2978249'), + (322, 79, 'maybe', '2020-05-30 16:31:50', '2025-12-17 19:47:57', 'Qd58nkE4', '2978250'), + (322, 80, 'attending', '2020-05-23 21:48:01', '2025-12-17 19:47:58', 'Qd58nkE4', '2978251'), + (322, 81, 'not_attending', '2020-06-13 19:12:25', '2025-12-17 19:47:58', 'Qd58nkE4', '2978252'), + (322, 82, 'maybe', '2020-04-24 22:56:39', '2025-12-17 19:47:57', 'Qd58nkE4', '2978433'), + (322, 83, 'maybe', '2020-05-07 22:58:45', '2025-12-17 19:47:57', 'Qd58nkE4', '2978438'), + (322, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'Qd58nkE4', '2980871'), + (322, 85, 'attending', '2020-04-13 00:20:14', '2025-12-17 19:47:57', 'Qd58nkE4', '2980872'), + (322, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'Qd58nkE4', '2981388'), + (322, 87, 'attending', '2020-04-22 11:12:04', '2025-12-17 19:47:57', 'Qd58nkE4', '2982602'), + (322, 88, 'attending', '2020-04-16 11:34:56', '2025-12-17 19:47:57', 'Qd58nkE4', '2982603'), + (322, 89, 'attending', '2020-04-26 21:52:41', '2025-12-17 19:47:57', 'Qd58nkE4', '2982604'), + (322, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'Qd58nkE4', '2986743'), + (322, 96, 'attending', '2020-04-21 23:28:33', '2025-12-17 19:47:57', 'Qd58nkE4', '2987453'), + (322, 97, 'attending', '2020-04-21 23:28:37', '2025-12-17 19:47:57', 'Qd58nkE4', '2987454'), + (322, 100, 'maybe', '2020-04-21 04:45:20', '2025-12-17 19:47:57', 'Qd58nkE4', '2989142'), + (322, 103, 'not_attending', '2020-05-04 11:47:37', '2025-12-17 19:47:57', 'Qd58nkE4', '2991407'), + (322, 104, 'attending', '2020-04-26 01:57:44', '2025-12-17 19:47:57', 'Qd58nkE4', '2991471'), + (322, 106, 'maybe', '2020-04-27 02:47:34', '2025-12-17 19:47:57', 'Qd58nkE4', '2993501'), + (322, 108, 'not_attending', '2020-05-17 16:48:44', '2025-12-17 19:47:57', 'Qd58nkE4', '2993504'), + (322, 109, 'maybe', '2020-05-12 23:08:38', '2025-12-17 19:47:57', 'Qd58nkE4', '2994480'), + (322, 110, 'attending', '2020-05-03 03:48:14', '2025-12-17 19:47:57', 'Qd58nkE4', '2994906'), + (322, 111, 'attending', '2020-06-07 11:28:02', '2025-12-17 19:47:58', 'Qd58nkE4', '2994907'), + (322, 112, 'attending', '2020-07-04 14:35:50', '2025-12-17 19:47:55', 'Qd58nkE4', '2994908'), + (322, 113, 'attending', '2020-08-01 03:13:34', '2025-12-17 19:47:56', 'Qd58nkE4', '2994909'), + (322, 114, 'not_attending', '2020-04-29 00:32:12', '2025-12-17 19:47:57', 'Qd58nkE4', '2994911'), + (322, 115, 'attending', '2020-05-16 22:23:26', '2025-12-17 19:47:57', 'Qd58nkE4', '3001217'), + (322, 119, 'attending', '2020-05-09 16:07:11', '2025-12-17 19:47:57', 'Qd58nkE4', '3015486'), + (322, 120, 'maybe', '2020-05-11 12:44:54', '2025-12-17 19:47:57', 'Qd58nkE4', '3018282'), + (322, 121, 'attending', '2020-05-16 11:59:06', '2025-12-17 19:47:57', 'Qd58nkE4', '3023063'), + (322, 122, 'attending', '2020-05-15 19:23:34', '2025-12-17 19:47:57', 'Qd58nkE4', '3023491'), + (322, 125, 'maybe', '2020-05-22 16:47:58', '2025-12-17 19:47:57', 'Qd58nkE4', '3023987'), + (322, 127, 'not_attending', '2020-05-19 17:50:50', '2025-12-17 19:47:57', 'Qd58nkE4', '3025623'), + (322, 129, 'attending', '2020-05-28 12:42:39', '2025-12-17 19:47:58', 'Qd58nkE4', '3028743'), + (322, 133, 'attending', '2020-06-19 12:42:57', '2025-12-17 19:47:58', 'Qd58nkE4', '3034321'), + (322, 135, 'maybe', '2020-05-24 21:19:06', '2025-12-17 19:47:57', 'Qd58nkE4', '3034368'), + (322, 136, 'attending', '2020-05-24 21:18:28', '2025-12-17 19:47:57', 'Qd58nkE4', '3035881'), + (322, 137, 'attending', '2020-05-28 01:19:03', '2025-12-17 19:47:58', 'Qd58nkE4', '3042188'), + (322, 138, 'attending', '2020-06-14 13:05:17', '2025-12-17 19:47:58', 'Qd58nkE4', '3042932'), + (322, 139, 'not_attending', '2020-06-16 11:57:44', '2025-12-17 19:47:58', 'Qd58nkE4', '3046190'), + (322, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'Qd58nkE4', '3049983'), + (322, 146, 'maybe', '2020-06-27 16:11:12', '2025-12-17 19:47:55', 'Qd58nkE4', '3058683'), + (322, 147, 'attending', '2020-08-17 03:48:59', '2025-12-17 19:47:56', 'Qd58nkE4', '3058684'), + (322, 148, 'attending', '2020-07-11 19:51:50', '2025-12-17 19:47:55', 'Qd58nkE4', '3058685'), + (322, 150, 'attending', '2020-07-25 20:32:59', '2025-12-17 19:47:55', 'Qd58nkE4', '3058687'), + (322, 151, 'attending', '2020-08-18 16:46:02', '2025-12-17 19:47:56', 'Qd58nkE4', '3058688'), + (322, 153, 'attending', '2020-07-29 18:13:30', '2025-12-17 19:47:55', 'Qd58nkE4', '3058690'), + (322, 166, 'not_attending', '2020-11-21 23:48:58', '2025-12-17 19:47:54', 'Qd58nkE4', '3058704'), + (322, 172, 'maybe', '2020-06-07 11:29:01', '2025-12-17 19:47:58', 'Qd58nkE4', '3058959'), + (322, 173, 'attending', '2020-06-19 12:42:37', '2025-12-17 19:47:58', 'Qd58nkE4', '3067093'), + (322, 181, 'not_attending', '2020-06-20 21:15:24', '2025-12-17 19:47:58', 'Qd58nkE4', '3074513'), + (322, 182, 'maybe', '2020-06-24 16:56:32', '2025-12-17 19:47:55', 'Qd58nkE4', '3074514'), + (322, 183, 'not_attending', '2020-06-22 17:14:34', '2025-12-17 19:47:58', 'Qd58nkE4', '3075228'), + (322, 185, 'attending', '2020-06-20 00:43:44', '2025-12-17 19:47:58', 'Qd58nkE4', '3075456'), + (322, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'Qd58nkE4', '3083791'), + (322, 187, 'attending', '2020-06-28 17:57:20', '2025-12-17 19:47:55', 'Qd58nkE4', '3085151'), + (322, 190, 'maybe', '2020-06-29 10:34:18', '2025-12-17 19:47:55', 'Qd58nkE4', '3087258'), + (322, 191, 'attending', '2020-07-07 17:13:57', '2025-12-17 19:47:55', 'Qd58nkE4', '3087259'), + (322, 192, 'not_attending', '2020-07-15 18:24:13', '2025-12-17 19:47:55', 'Qd58nkE4', '3087260'), + (322, 193, 'attending', '2020-07-25 20:32:57', '2025-12-17 19:47:55', 'Qd58nkE4', '3087261'), + (322, 194, 'attending', '2020-07-28 12:24:34', '2025-12-17 19:47:56', 'Qd58nkE4', '3087262'), + (322, 195, 'attending', '2020-08-04 22:39:24', '2025-12-17 19:47:56', 'Qd58nkE4', '3087264'), + (322, 196, 'not_attending', '2020-08-03 17:09:55', '2025-12-17 19:47:56', 'Qd58nkE4', '3087265'), + (322, 197, 'attending', '2020-08-20 21:33:30', '2025-12-17 19:47:56', 'Qd58nkE4', '3087266'), + (322, 198, 'not_attending', '2020-08-29 22:38:57', '2025-12-17 19:47:56', 'Qd58nkE4', '3087267'), + (322, 199, 'attending', '2020-09-04 03:53:26', '2025-12-17 19:47:56', 'Qd58nkE4', '3087268'), + (322, 200, 'attending', '2020-08-24 13:37:47', '2025-12-17 19:47:56', 'Qd58nkE4', '3087269'), + (322, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'Qd58nkE4', '3088653'), + (322, 202, 'attending', '2020-06-21 18:56:57', '2025-12-17 19:47:55', 'Qd58nkE4', '3090353'), + (322, 203, 'maybe', '2020-06-22 17:14:29', '2025-12-17 19:47:58', 'Qd58nkE4', '3091624'), + (322, 206, 'maybe', '2020-07-14 00:13:15', '2025-12-17 19:47:55', 'Qd58nkE4', '3104806'), + (322, 207, 'not_attending', '2020-07-24 13:52:17', '2025-12-17 19:47:55', 'Qd58nkE4', '3104807'), + (322, 208, 'maybe', '2020-08-07 00:00:54', '2025-12-17 19:47:56', 'Qd58nkE4', '3104808'), + (322, 209, 'not_attending', '2020-06-29 17:02:30', '2025-12-17 19:47:55', 'Qd58nkE4', '3106813'), + (322, 213, 'not_attending', '2020-07-07 17:14:05', '2025-12-17 19:47:55', 'Qd58nkE4', '3121083'), + (322, 216, 'maybe', '2020-07-09 11:31:31', '2025-12-17 19:47:55', 'Qd58nkE4', '3126500'), + (322, 217, 'maybe', '2020-07-08 00:55:48', '2025-12-17 19:47:55', 'Qd58nkE4', '3126684'), + (322, 223, 'attending', '2020-08-26 17:54:16', '2025-12-17 19:47:56', 'Qd58nkE4', '3129980'), + (322, 225, 'attending', '2020-07-13 18:41:17', '2025-12-17 19:47:55', 'Qd58nkE4', '3132378'), + (322, 226, 'maybe', '2020-07-14 11:08:47', '2025-12-17 19:47:55', 'Qd58nkE4', '3132817'), + (322, 227, 'maybe', '2020-07-16 15:44:16', '2025-12-17 19:47:55', 'Qd58nkE4', '3132820'), + (322, 229, 'attending', '2020-07-15 18:09:10', '2025-12-17 19:47:55', 'Qd58nkE4', '3134135'), + (322, 233, 'attending', '2020-07-19 21:34:37', '2025-12-17 19:47:55', 'Qd58nkE4', '3139773'), + (322, 234, 'not_attending', '2020-07-29 16:59:13', '2025-12-17 19:47:55', 'Qd58nkE4', '3140456'), + (322, 254, 'attending', '2021-03-08 18:33:49', '2025-12-17 19:47:51', 'Qd58nkE4', '3149485'), + (322, 255, 'not_attending', '2021-03-22 12:16:46', '2025-12-17 19:47:43', 'Qd58nkE4', '3149486'), + (322, 264, 'maybe', '2020-08-05 16:48:39', '2025-12-17 19:47:56', 'Qd58nkE4', '3150735'), + (322, 265, 'maybe', '2020-07-27 12:18:18', '2025-12-17 19:47:55', 'Qd58nkE4', '3150806'), + (322, 267, 'maybe', '2020-07-28 18:20:28', '2025-12-17 19:47:55', 'Qd58nkE4', '3152781'), + (322, 269, 'attending', '2020-07-29 10:59:25', '2025-12-17 19:47:55', 'Qd58nkE4', '3153076'), + (322, 270, 'attending', '2020-07-29 15:58:26', '2025-12-17 19:47:56', 'Qd58nkE4', '3154457'), + (322, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'Qd58nkE4', '3155321'), + (322, 273, 'not_attending', '2020-08-07 00:00:44', '2025-12-17 19:47:56', 'Qd58nkE4', '3162006'), + (322, 276, 'maybe', '2020-08-04 13:49:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3163408'), + (322, 277, 'not_attending', '2020-08-06 23:42:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3163442'), + (322, 278, 'maybe', '2020-08-06 12:25:19', '2025-12-17 19:47:56', 'Qd58nkE4', '3165192'), + (322, 279, 'not_attending', '2020-08-06 11:37:39', '2025-12-17 19:47:56', 'Qd58nkE4', '3165202'), + (322, 281, 'maybe', '2020-08-09 17:41:00', '2025-12-17 19:47:56', 'Qd58nkE4', '3166945'), + (322, 285, 'maybe', '2020-08-14 16:27:17', '2025-12-17 19:47:56', 'Qd58nkE4', '3170245'), + (322, 286, 'not_attending', '2020-08-26 13:00:20', '2025-12-17 19:47:56', 'Qd58nkE4', '3170246'), + (322, 288, 'not_attending', '2020-09-02 23:15:34', '2025-12-17 19:47:56', 'Qd58nkE4', '3170249'), + (322, 289, 'not_attending', '2020-09-02 23:15:50', '2025-12-17 19:47:56', 'Qd58nkE4', '3170250'), + (322, 293, 'not_attending', '2020-08-18 13:24:05', '2025-12-17 19:47:56', 'Qd58nkE4', '3172832'), + (322, 294, 'not_attending', '2020-08-18 13:23:51', '2025-12-17 19:47:56', 'Qd58nkE4', '3172833'), + (322, 295, 'not_attending', '2020-08-24 13:37:32', '2025-12-17 19:47:56', 'Qd58nkE4', '3172834'), + (322, 296, 'attending', '2020-09-11 23:10:30', '2025-12-17 19:47:56', 'Qd58nkE4', '3172876'), + (322, 298, 'maybe', '2020-08-27 14:01:25', '2025-12-17 19:47:56', 'Qd58nkE4', '3174556'), + (322, 299, 'maybe', '2020-08-17 16:24:24', '2025-12-17 19:47:56', 'Qd58nkE4', '3176591'), + (322, 301, 'not_attending', '2020-08-25 23:37:14', '2025-12-17 19:47:56', 'Qd58nkE4', '3178027'), + (322, 302, 'not_attending', '2020-08-25 23:37:09', '2025-12-17 19:47:56', 'Qd58nkE4', '3178028'), + (322, 304, 'attending', '2020-08-14 01:09:19', '2025-12-17 19:47:56', 'Qd58nkE4', '3178916'), + (322, 307, 'not_attending', '2020-08-20 09:41:40', '2025-12-17 19:47:56', 'Qd58nkE4', '3182590'), + (322, 308, 'maybe', '2020-09-01 11:34:20', '2025-12-17 19:47:56', 'Qd58nkE4', '3183341'), + (322, 311, 'maybe', '2020-09-19 21:32:07', '2025-12-17 19:47:56', 'Qd58nkE4', '3186057'), + (322, 315, 'maybe', '2020-09-04 03:56:21', '2025-12-17 19:47:56', 'Qd58nkE4', '3189085'), + (322, 317, 'maybe', '2020-08-27 14:01:28', '2025-12-17 19:47:56', 'Qd58nkE4', '3191735'), + (322, 318, 'attending', '2020-09-01 23:41:50', '2025-12-17 19:47:56', 'Qd58nkE4', '3193885'), + (322, 319, 'attending', '2020-08-31 22:19:17', '2025-12-17 19:47:56', 'Qd58nkE4', '3194179'), + (322, 320, 'attending', '2020-08-30 13:17:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3195552'), + (322, 321, 'not_attending', '2020-09-06 21:50:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3197077'), + (322, 322, 'not_attending', '2020-09-09 01:53:17', '2025-12-17 19:47:56', 'Qd58nkE4', '3197080'), + (322, 323, 'not_attending', '2020-09-09 01:53:21', '2025-12-17 19:47:56', 'Qd58nkE4', '3197081'), + (322, 324, 'maybe', '2020-09-02 00:06:02', '2025-12-17 19:47:56', 'Qd58nkE4', '3197082'), + (322, 325, 'maybe', '2020-09-02 00:06:05', '2025-12-17 19:47:51', 'Qd58nkE4', '3197083'), + (322, 326, 'maybe', '2020-09-02 00:06:09', '2025-12-17 19:47:52', 'Qd58nkE4', '3197084'), + (322, 328, 'maybe', '2020-09-02 15:38:15', '2025-12-17 19:47:52', 'Qd58nkE4', '3197086'), + (322, 330, 'attending', '2020-09-04 03:38:12', '2025-12-17 19:47:56', 'Qd58nkE4', '3197322'), + (322, 331, 'not_attending', '2020-09-03 16:09:20', '2025-12-17 19:47:56', 'Qd58nkE4', '3198871'), + (322, 332, 'not_attending', '2020-09-02 23:15:38', '2025-12-17 19:47:56', 'Qd58nkE4', '3198873'), + (322, 335, 'not_attending', '2020-09-02 23:15:56', '2025-12-17 19:47:56', 'Qd58nkE4', '3200209'), + (322, 344, 'not_attending', '2020-11-01 12:14:15', '2025-12-17 19:47:53', 'Qd58nkE4', '3206906'), + (322, 348, 'attending', '2020-09-12 11:00:33', '2025-12-17 19:47:52', 'Qd58nkE4', '3209159'), + (322, 353, 'attending', '2020-09-13 15:13:18', '2025-12-17 19:47:56', 'Qd58nkE4', '3210789'), + (322, 354, 'not_attending', '2020-09-20 18:54:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3212570'), + (322, 357, 'not_attending', '2020-09-30 10:32:30', '2025-12-17 19:47:52', 'Qd58nkE4', '3212573'), + (322, 359, 'attending', '2020-09-13 22:18:14', '2025-12-17 19:47:56', 'Qd58nkE4', '3212624'), + (322, 362, 'maybe', '2020-09-26 21:18:42', '2025-12-17 19:47:52', 'Qd58nkE4', '3214207'), + (322, 363, 'maybe', '2020-09-27 13:44:32', '2025-12-17 19:47:52', 'Qd58nkE4', '3217037'), + (322, 365, 'not_attending', '2020-09-23 22:27:24', '2025-12-17 19:47:52', 'Qd58nkE4', '3218510'), + (322, 379, 'attending', '2020-10-04 19:44:21', '2025-12-17 19:47:52', 'Qd58nkE4', '3226266'), + (322, 382, 'attending', '2020-09-28 03:26:44', '2025-12-17 19:47:52', 'Qd58nkE4', '3226873'), + (322, 385, 'maybe', '2020-09-29 01:58:01', '2025-12-17 19:47:52', 'Qd58nkE4', '3228698'), + (322, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'Qd58nkE4', '3228699'), + (322, 387, 'attending', '2020-10-16 20:42:03', '2025-12-17 19:47:52', 'Qd58nkE4', '3228700'), + (322, 388, 'attending', '2020-10-24 18:45:29', '2025-12-17 19:47:52', 'Qd58nkE4', '3228701'), + (322, 390, 'attending', '2020-10-01 18:07:52', '2025-12-17 19:47:52', 'Qd58nkE4', '3231510'), + (322, 404, 'not_attending', '2021-03-15 09:51:02', '2025-12-17 19:47:51', 'Qd58nkE4', '3236460'), + (322, 406, 'attending', '2021-03-29 16:10:13', '2025-12-17 19:47:44', 'Qd58nkE4', '3236464'), + (322, 414, 'not_attending', '2020-10-18 21:35:36', '2025-12-17 19:47:52', 'Qd58nkE4', '3237277'), + (322, 416, 'attending', '2020-10-06 23:36:14', '2025-12-17 19:47:52', 'Qd58nkE4', '3238073'), + (322, 424, 'maybe', '2020-10-19 21:21:21', '2025-12-17 19:47:52', 'Qd58nkE4', '3245751'), + (322, 426, 'attending', '2020-10-14 13:41:01', '2025-12-17 19:47:52', 'Qd58nkE4', '3250232'), + (322, 427, 'attending', '2020-11-01 12:14:03', '2025-12-17 19:47:53', 'Qd58nkE4', '3250233'), + (322, 429, 'attending', '2020-11-07 01:19:29', '2025-12-17 19:47:54', 'Qd58nkE4', '3250523'), + (322, 440, 'attending', '2020-11-07 23:53:19', '2025-12-17 19:47:53', 'Qd58nkE4', '3256168'), + (322, 441, 'attending', '2020-11-14 16:21:12', '2025-12-17 19:47:54', 'Qd58nkE4', '3256169'), + (322, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'Qd58nkE4', '3263578'), + (322, 445, 'attending', '2020-11-13 00:41:26', '2025-12-17 19:47:54', 'Qd58nkE4', '3266138'), + (322, 449, 'not_attending', '2020-11-08 18:06:45', '2025-12-17 19:47:53', 'Qd58nkE4', '3272055'), + (322, 452, 'attending', '2020-11-29 18:13:53', '2025-12-17 19:47:54', 'Qd58nkE4', '3272981'), + (322, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'Qd58nkE4', '3276428'), + (322, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'Qd58nkE4', '3281467'), + (322, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Qd58nkE4', '3281470'), + (322, 466, 'attending', '2020-11-23 15:01:31', '2025-12-17 19:47:54', 'Qd58nkE4', '3281829'), + (322, 467, 'not_attending', '2020-11-15 14:58:59', '2025-12-17 19:47:54', 'Qd58nkE4', '3282756'), + (322, 468, 'not_attending', '2020-11-21 23:49:05', '2025-12-17 19:47:54', 'Qd58nkE4', '3285413'), + (322, 469, 'attending', '2020-11-29 00:48:41', '2025-12-17 19:47:54', 'Qd58nkE4', '3285414'), + (322, 475, 'not_attending', '2020-11-21 18:47:54', '2025-12-17 19:47:54', 'Qd58nkE4', '3286760'), + (322, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Qd58nkE4', '3297764'), + (322, 485, 'attending', '2020-11-26 21:41:25', '2025-12-17 19:47:54', 'Qd58nkE4', '3299698'), + (322, 486, 'not_attending', '2020-11-25 00:34:28', '2025-12-17 19:47:54', 'Qd58nkE4', '3300281'), + (322, 489, 'attending', '2020-11-27 02:12:12', '2025-12-17 19:47:54', 'Qd58nkE4', '3313022'), + (322, 490, 'not_attending', '2020-12-08 23:15:38', '2025-12-17 19:47:54', 'Qd58nkE4', '3313532'), + (322, 491, 'not_attending', '2020-12-08 23:15:46', '2025-12-17 19:47:55', 'Qd58nkE4', '3313533'), + (322, 493, 'not_attending', '2020-12-05 22:23:33', '2025-12-17 19:47:54', 'Qd58nkE4', '3313856'), + (322, 498, 'attending', '2020-12-05 19:07:14', '2025-12-17 19:47:54', 'Qd58nkE4', '3314302'), + (322, 499, 'attending', '2020-11-30 04:45:36', '2025-12-17 19:47:55', 'Qd58nkE4', '3314909'), + (322, 500, 'not_attending', '2020-12-18 18:05:32', '2025-12-17 19:47:55', 'Qd58nkE4', '3314964'), + (322, 502, 'attending', '2020-12-12 19:50:02', '2025-12-17 19:47:55', 'Qd58nkE4', '3323365'), + (322, 503, 'not_attending', '2020-12-08 23:16:27', '2025-12-17 19:47:55', 'Qd58nkE4', '3323366'), + (322, 506, 'attending', '2020-12-06 21:07:55', '2025-12-17 19:47:55', 'Qd58nkE4', '3323375'), + (322, 512, 'maybe', '2020-12-08 19:21:06', '2025-12-17 19:47:55', 'Qd58nkE4', '3325336'), + (322, 513, 'attending', '2020-12-12 14:26:00', '2025-12-17 19:47:55', 'Qd58nkE4', '3329383'), + (322, 517, 'maybe', '2021-01-07 21:46:48', '2025-12-17 19:47:48', 'Qd58nkE4', '3337137'), + (322, 520, 'attending', '2020-12-19 20:15:39', '2025-12-17 19:47:55', 'Qd58nkE4', '3337453'), + (322, 521, 'not_attending', '2021-01-02 00:50:36', '2025-12-17 19:47:48', 'Qd58nkE4', '3337454'), + (322, 526, 'attending', '2020-12-21 03:18:39', '2025-12-17 19:47:48', 'Qd58nkE4', '3351539'), + (322, 528, 'attending', '2020-12-30 13:24:59', '2025-12-17 19:47:48', 'Qd58nkE4', '3363022'), + (322, 529, 'attending', '2020-12-29 20:36:22', '2025-12-17 19:47:48', 'Qd58nkE4', '3364568'), + (322, 536, 'attending', '2021-01-07 00:13:54', '2025-12-17 19:47:48', 'Qd58nkE4', '3386848'), + (322, 538, 'attending', '2021-01-06 15:30:03', '2025-12-17 19:47:48', 'Qd58nkE4', '3388151'), + (322, 540, 'attending', '2021-01-10 23:50:56', '2025-12-17 19:47:48', 'Qd58nkE4', '3389527'), + (322, 543, 'attending', '2021-01-10 23:48:25', '2025-12-17 19:47:48', 'Qd58nkE4', '3396499'), + (322, 548, 'attending', '2021-01-13 05:46:02', '2025-12-17 19:47:48', 'Qd58nkE4', '3403650'), + (322, 549, 'not_attending', '2021-01-19 01:57:09', '2025-12-17 19:47:49', 'Qd58nkE4', '3406988'), + (322, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Qd58nkE4', '3416576'), + (322, 556, 'not_attending', '2021-01-27 00:55:44', '2025-12-17 19:47:49', 'Qd58nkE4', '3417170'), + (322, 559, 'not_attending', '2021-01-27 12:44:58', '2025-12-17 19:47:49', 'Qd58nkE4', '3421439'), + (322, 568, 'not_attending', '2021-01-30 22:57:17', '2025-12-17 19:47:50', 'Qd58nkE4', '3430267'), + (322, 579, 'not_attending', '2021-02-02 17:39:13', '2025-12-17 19:47:50', 'Qd58nkE4', '3440978'), + (322, 583, 'maybe', '2021-02-07 01:25:30', '2025-12-17 19:47:50', 'Qd58nkE4', '3449144'), + (322, 595, 'attending', '2021-03-04 01:24:34', '2025-12-17 19:47:51', 'Qd58nkE4', '3467761'), + (322, 596, 'attending', '2021-03-04 01:24:40', '2025-12-17 19:47:51', 'Qd58nkE4', '3467762'), + (322, 597, 'attending', '2021-03-04 01:24:41', '2025-12-17 19:47:51', 'Qd58nkE4', '3467764'), + (322, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'Qd58nkE4', '3468125'), + (322, 602, 'not_attending', '2021-02-10 00:49:13', '2025-12-17 19:47:50', 'Qd58nkE4', '3470303'), + (322, 604, 'not_attending', '2021-02-23 03:14:09', '2025-12-17 19:47:50', 'Qd58nkE4', '3470305'), + (322, 605, 'attending', '2021-02-14 18:31:42', '2025-12-17 19:47:50', 'Qd58nkE4', '3470991'), + (322, 621, 'not_attending', '2021-03-01 00:59:11', '2025-12-17 19:47:51', 'Qd58nkE4', '3517815'), + (322, 622, 'attending', '2021-03-12 15:59:55', '2025-12-17 19:47:51', 'Qd58nkE4', '3517816'), + (322, 623, 'not_attending', '2021-02-27 21:45:25', '2025-12-17 19:47:51', 'Qd58nkE4', '3523941'), + (322, 631, 'attending', '2021-03-07 23:37:20', '2025-12-17 19:47:51', 'Qd58nkE4', '3533850'), + (322, 633, 'not_attending', '2021-03-26 21:41:22', '2025-12-17 19:47:44', 'Qd58nkE4', '3534717'), + (322, 637, 'attending', '2021-03-01 17:38:28', '2025-12-17 19:47:51', 'Qd58nkE4', '3536411'), + (322, 638, 'not_attending', '2021-04-04 13:42:27', '2025-12-17 19:47:44', 'Qd58nkE4', '3536632'), + (322, 639, 'attending', '2021-03-20 02:58:33', '2025-12-17 19:47:51', 'Qd58nkE4', '3536656'), + (322, 641, 'not_attending', '2021-04-03 23:25:42', '2025-12-17 19:47:44', 'Qd58nkE4', '3539916'), + (322, 642, 'attending', '2021-04-09 12:43:03', '2025-12-17 19:47:44', 'Qd58nkE4', '3539917'), + (322, 643, 'not_attending', '2021-04-16 15:56:32', '2025-12-17 19:47:45', 'Qd58nkE4', '3539918'), + (322, 644, 'attending', '2021-04-21 14:56:52', '2025-12-17 19:47:45', 'Qd58nkE4', '3539919'), + (322, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Qd58nkE4', '3539920'), + (322, 646, 'not_attending', '2021-05-06 17:39:50', '2025-12-17 19:47:46', 'Qd58nkE4', '3539921'), + (322, 647, 'attending', '2021-05-22 19:57:15', '2025-12-17 19:47:46', 'Qd58nkE4', '3539922'), + (322, 648, 'attending', '2021-05-24 17:30:31', '2025-12-17 19:47:47', 'Qd58nkE4', '3539923'), + (322, 649, 'attending', '2021-03-14 05:10:35', '2025-12-17 19:47:51', 'Qd58nkE4', '3539927'), + (322, 650, 'attending', '2021-03-08 13:33:39', '2025-12-17 19:47:44', 'Qd58nkE4', '3539928'), + (322, 652, 'not_attending', '2021-03-05 20:05:12', '2025-12-17 19:47:51', 'Qd58nkE4', '3544466'), + (322, 655, 'maybe', '2021-03-13 23:29:51', '2025-12-17 19:47:51', 'Qd58nkE4', '3547129'), + (322, 678, 'not_attending', '2021-03-11 13:41:38', '2025-12-17 19:47:51', 'Qd58nkE4', '3547158'), + (322, 679, 'attending', '2021-04-04 19:50:40', '2025-12-17 19:47:44', 'Qd58nkE4', '3547168'), + (322, 688, 'attending', '2021-03-14 05:37:49', '2025-12-17 19:47:51', 'Qd58nkE4', '3553729'), + (322, 689, 'not_attending', '2021-03-25 22:43:44', '2025-12-17 19:47:44', 'Qd58nkE4', '3555564'), + (322, 691, 'not_attending', '2021-04-16 15:56:37', '2025-12-17 19:47:45', 'Qd58nkE4', '3561928'), + (322, 695, 'not_attending', '2021-03-15 00:05:24', '2025-12-17 19:47:51', 'Qd58nkE4', '3567535'), + (322, 696, 'not_attending', '2021-03-15 00:05:29', '2025-12-17 19:47:51', 'Qd58nkE4', '3567536'), + (322, 697, 'not_attending', '2021-03-29 11:37:37', '2025-12-17 19:47:44', 'Qd58nkE4', '3567537'), + (322, 698, 'attending', '2021-03-15 18:27:39', '2025-12-17 19:47:44', 'Qd58nkE4', '3571867'), + (322, 699, 'attending', '2021-03-19 13:16:21', '2025-12-17 19:47:44', 'Qd58nkE4', '3572241'), + (322, 700, 'not_attending', '2021-03-29 16:10:09', '2025-12-17 19:47:44', 'Qd58nkE4', '3575725'), + (322, 701, 'attending', '2021-03-18 21:10:04', '2025-12-17 19:47:51', 'Qd58nkE4', '3577180'), + (322, 702, 'attending', '2021-03-19 00:07:33', '2025-12-17 19:47:51', 'Qd58nkE4', '3577181'), + (322, 703, 'attending', '2021-03-19 15:03:12', '2025-12-17 19:47:44', 'Qd58nkE4', '3578388'), + (322, 704, 'not_attending', '2021-03-29 21:49:40', '2025-12-17 19:47:44', 'Qd58nkE4', '3581429'), + (322, 705, 'attending', '2021-03-21 13:26:23', '2025-12-17 19:47:44', 'Qd58nkE4', '3581895'), + (322, 706, 'not_attending', '2021-03-22 10:40:39', '2025-12-17 19:47:45', 'Qd58nkE4', '3582734'), + (322, 707, 'attending', '2021-04-25 19:14:17', '2025-12-17 19:47:46', 'Qd58nkE4', '3583262'), + (322, 709, 'attending', '2021-03-22 10:40:11', '2025-12-17 19:47:44', 'Qd58nkE4', '3587852'), + (322, 710, 'attending', '2021-03-22 10:40:16', '2025-12-17 19:47:44', 'Qd58nkE4', '3587853'), + (322, 716, 'not_attending', '2021-04-02 20:52:49', '2025-12-17 19:47:44', 'Qd58nkE4', '3618353'), + (322, 717, 'not_attending', '2021-03-28 10:55:31', '2025-12-17 19:47:44', 'Qd58nkE4', '3619523'), + (322, 721, 'not_attending', '2021-04-03 17:49:02', '2025-12-17 19:47:44', 'Qd58nkE4', '3643622'), + (322, 723, 'not_attending', '2021-04-05 22:42:45', '2025-12-17 19:47:44', 'Qd58nkE4', '3649179'), + (322, 724, 'not_attending', '2021-05-09 21:07:20', '2025-12-17 19:47:46', 'Qd58nkE4', '3661369'), + (322, 731, 'not_attending', '2021-04-04 02:04:56', '2025-12-17 19:47:44', 'Qd58nkE4', '3674262'), + (322, 732, 'attending', '2021-04-04 02:08:47', '2025-12-17 19:47:45', 'Qd58nkE4', '3674268'), + (322, 735, 'attending', '2021-04-05 00:20:56', '2025-12-17 19:47:46', 'Qd58nkE4', '3677402'), + (322, 754, 'not_attending', '2021-04-21 16:20:32', '2025-12-17 19:47:45', 'Qd58nkE4', '3701863'), + (322, 761, 'not_attending', '2021-04-28 10:00:14', '2025-12-17 19:47:46', 'Qd58nkE4', '3716041'), + (322, 763, 'not_attending', '2021-04-26 00:19:27', '2025-12-17 19:47:46', 'Qd58nkE4', '3719122'), + (322, 774, 'not_attending', '2021-04-21 16:21:13', '2025-12-17 19:47:45', 'Qd58nkE4', '3730212'), + (322, 777, 'attending', '2021-05-01 19:08:00', '2025-12-17 19:47:46', 'Qd58nkE4', '3746248'), + (322, 780, 'not_attending', '2021-05-09 21:07:09', '2025-12-17 19:47:46', 'Qd58nkE4', '3757175'), + (322, 783, 'not_attending', '2021-05-03 17:19:01', '2025-12-17 19:47:46', 'Qd58nkE4', '3767471'), + (322, 784, 'attending', '2021-05-01 15:10:07', '2025-12-17 19:47:46', 'Qd58nkE4', '3768775'), + (322, 785, 'not_attending', '2021-05-16 12:20:59', '2025-12-17 19:47:46', 'Qd58nkE4', '3779779'), + (322, 786, 'not_attending', '2021-05-10 16:42:33', '2025-12-17 19:47:46', 'Qd58nkE4', '3780093'), + (322, 788, 'maybe', '2021-05-05 12:02:01', '2025-12-17 19:47:46', 'Qd58nkE4', '3781975'), + (322, 791, 'attending', '2021-05-07 15:41:15', '2025-12-17 19:47:46', 'Qd58nkE4', '3792735'), + (322, 792, 'attending', '2021-05-09 02:09:02', '2025-12-17 19:47:46', 'Qd58nkE4', '3793156'), + (322, 793, 'not_attending', '2021-05-29 11:25:50', '2025-12-17 19:47:47', 'Qd58nkE4', '3793537'), + (322, 794, 'attending', '2021-05-20 16:17:44', '2025-12-17 19:47:47', 'Qd58nkE4', '3793538'), + (322, 795, 'not_attending', '2021-05-29 11:25:56', '2025-12-17 19:47:47', 'Qd58nkE4', '3793539'), + (322, 797, 'not_attending', '2021-05-23 21:19:39', '2025-12-17 19:47:47', 'Qd58nkE4', '3796195'), + (322, 822, 'not_attending', '2021-06-04 00:29:10', '2025-12-17 19:47:47', 'Qd58nkE4', '3969986'), + (322, 823, 'attending', '2021-06-01 22:22:40', '2025-12-17 19:47:48', 'Qd58nkE4', '3974109'), + (322, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Qd58nkE4', '3975311'), + (322, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Qd58nkE4', '3975312'), + (322, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Qd58nkE4', '3994992'), + (322, 844, 'attending', '2021-06-23 19:32:23', '2025-12-17 19:47:38', 'Qd58nkE4', '4014338'), + (322, 867, 'attending', '2021-06-21 13:40:24', '2025-12-17 19:47:38', 'Qd58nkE4', '4021848'), + (322, 869, 'not_attending', '2021-06-30 12:23:22', '2025-12-17 19:47:38', 'Qd58nkE4', '4136744'), + (322, 870, 'not_attending', '2021-07-03 22:44:08', '2025-12-17 19:47:39', 'Qd58nkE4', '4136937'), + (322, 871, 'attending', '2021-07-05 14:16:55', '2025-12-17 19:47:39', 'Qd58nkE4', '4136938'), + (322, 872, 'attending', '2021-07-21 12:49:01', '2025-12-17 19:47:40', 'Qd58nkE4', '4136947'), + (322, 884, 'attending', '2021-08-15 19:00:11', '2025-12-17 19:47:42', 'Qd58nkE4', '4210314'), + (322, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Qd58nkE4', '4225444'), + (322, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Qd58nkE4', '4239259'), + (322, 900, 'attending', '2021-07-14 12:05:07', '2025-12-17 19:47:40', 'Qd58nkE4', '4240316'), + (322, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Qd58nkE4', '4240317'), + (322, 902, 'maybe', '2021-08-02 11:20:16', '2025-12-17 19:47:41', 'Qd58nkE4', '4240318'), + (322, 903, 'attending', '2021-08-07 11:53:37', '2025-12-17 19:47:42', 'Qd58nkE4', '4240320'), + (322, 905, 'maybe', '2021-07-07 18:01:50', '2025-12-17 19:47:39', 'Qd58nkE4', '4250163'), + (322, 906, 'attending', '2021-07-11 02:26:08', '2025-12-17 19:47:39', 'Qd58nkE4', '4253431'), + (322, 915, 'maybe', '2021-07-14 12:06:30', '2025-12-17 19:47:39', 'Qd58nkE4', '4273770'), + (322, 919, 'maybe', '2021-07-14 12:04:32', '2025-12-17 19:47:39', 'Qd58nkE4', '4275957'), + (322, 920, 'not_attending', '2021-07-25 21:38:25', '2025-12-17 19:47:40', 'Qd58nkE4', '4277819'), + (322, 932, 'not_attending', '2021-08-16 10:00:29', '2025-12-17 19:47:42', 'Qd58nkE4', '4301664'), + (322, 933, 'not_attending', '2021-07-28 22:53:31', '2025-12-17 19:47:40', 'Qd58nkE4', '4301723'), + (322, 934, 'not_attending', '2021-08-03 11:34:30', '2025-12-17 19:47:41', 'Qd58nkE4', '4302093'), + (322, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Qd58nkE4', '4304151'), + (322, 940, 'attending', '2021-07-30 17:09:55', '2025-12-17 19:47:40', 'Qd58nkE4', '4309049'), + (322, 962, 'attending', '2021-08-12 01:27:54', '2025-12-17 19:47:41', 'Qd58nkE4', '4346305'), + (322, 965, 'not_attending', '2021-08-19 14:00:46', '2025-12-17 19:47:42', 'Qd58nkE4', '4353703'), + (322, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Qd58nkE4', '4356801'), + (322, 973, 'not_attending', '2021-08-21 18:31:46', '2025-12-17 19:47:42', 'Qd58nkE4', '4366186'), + (322, 974, 'attending', '2021-08-27 21:08:52', '2025-12-17 19:47:42', 'Qd58nkE4', '4366187'), + (322, 987, 'attending', '2021-08-25 00:46:12', '2025-12-17 19:47:43', 'Qd58nkE4', '4402634'), + (322, 988, 'attending', '2021-08-24 09:12:05', '2025-12-17 19:47:42', 'Qd58nkE4', '4402823'), + (322, 990, 'not_attending', '2021-09-01 13:16:09', '2025-12-17 19:47:43', 'Qd58nkE4', '4420735'), + (322, 991, 'attending', '2021-09-10 13:40:18', '2025-12-17 19:47:43', 'Qd58nkE4', '4420738'), + (322, 992, 'not_attending', '2021-09-18 19:57:28', '2025-12-17 19:47:34', 'Qd58nkE4', '4420739'), + (322, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Qd58nkE4', '4420741'), + (322, 995, 'not_attending', '2021-10-09 22:06:37', '2025-12-17 19:47:34', 'Qd58nkE4', '4420744'), + (322, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Qd58nkE4', '4420747'), + (322, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Qd58nkE4', '4420748'), + (322, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Qd58nkE4', '4420749'), + (322, 1022, 'attending', '2021-09-10 11:46:32', '2025-12-17 19:47:43', 'Qd58nkE4', '4458628'), + (322, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Qd58nkE4', '4461883'), + (322, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Qd58nkE4', '4508342'), + (322, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Qd58nkE4', '4568602'), + (322, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Qd58nkE4', '4572153'), + (322, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Qd58nkE4', '4585962'), + (322, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Qd58nkE4', '4596356'), + (322, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Qd58nkE4', '4598860'), + (322, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Qd58nkE4', '4598861'), + (322, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Qd58nkE4', '4602797'), + (322, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Qd58nkE4', '4637896'), + (322, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Qd58nkE4', '4642994'), + (322, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Qd58nkE4', '4642995'), + (322, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Qd58nkE4', '4642996'), + (322, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Qd58nkE4', '4642997'), + (322, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Qd58nkE4', '4645687'), + (322, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Qd58nkE4', '4645698'), + (322, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Qd58nkE4', '4645704'), + (322, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Qd58nkE4', '4645705'), + (322, 1131, 'attending', '2021-12-18 21:14:29', '2025-12-17 19:47:31', 'Qd58nkE4', '4658825'), + (322, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Qd58nkE4', '4668385'), + (322, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Qd58nkE4', '4694407'), + (322, 1374, 'attending', '2022-05-02 16:07:39', '2025-12-17 19:47:28', 'Qd58nkE4', '5269930'), + (322, 1378, 'attending', '2022-05-14 22:31:54', '2025-12-17 19:47:29', 'Qd58nkE4', '5271448'), + (322, 1379, 'attending', '2022-05-06 20:54:53', '2025-12-17 19:47:29', 'Qd58nkE4', '5271449'), + (322, 1380, 'not_attending', '2022-05-24 23:10:48', '2025-12-17 19:47:30', 'Qd58nkE4', '5271450'), + (322, 1383, 'not_attending', '2022-05-12 23:07:42', '2025-12-17 19:47:28', 'Qd58nkE4', '5276469'), + (322, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Qd58nkE4', '5278159'), + (322, 1407, 'attending', '2022-05-15 21:16:53', '2025-12-17 19:47:30', 'Qd58nkE4', '5363695'), + (322, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Qd58nkE4', '5365960'), + (322, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'Qd58nkE4', '5368973'), + (322, 1419, 'attending', '2022-05-22 13:43:39', '2025-12-17 19:47:30', 'Qd58nkE4', '5373081'), + (322, 1427, 'not_attending', '2022-05-25 22:56:22', '2025-12-17 19:47:30', 'Qd58nkE4', '5376074'), + (322, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Qd58nkE4', '5378247'), + (322, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Qd58nkE4', '5389605'), + (322, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Qd58nkE4', '5397265'), + (322, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'Qd58nkE4', '5403967'), + (322, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Qd58nkE4', '5404786'), + (322, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Qd58nkE4', '5405203'), + (322, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'Qd58nkE4', '5408794'), + (322, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'Qd58nkE4', '5411699'), + (322, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Qd58nkE4', '5412550'), + (322, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Qd58nkE4', '5415046'), + (322, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Qd58nkE4', '5422086'), + (322, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Qd58nkE4', '5422406'), + (322, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Qd58nkE4', '5424565'), + (322, 1504, 'maybe', '2022-07-12 10:43:15', '2025-12-17 19:47:19', 'Qd58nkE4', '5426882'), + (322, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'Qd58nkE4', '5427083'), + (322, 1513, 'attending', '2022-07-12 10:43:05', '2025-12-17 19:47:19', 'Qd58nkE4', '5441125'), + (322, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Qd58nkE4', '5441126'), + (322, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Qd58nkE4', '5441128'), + (322, 1516, 'not_attending', '2022-08-12 02:32:35', '2025-12-17 19:47:23', 'Qd58nkE4', '5441129'), + (322, 1518, 'maybe', '2022-08-26 07:39:33', '2025-12-17 19:47:24', 'Qd58nkE4', '5441131'), + (322, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Qd58nkE4', '5441132'), + (322, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'Qd58nkE4', '5446643'), + (322, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Qd58nkE4', '5453325'), + (322, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Qd58nkE4', '5454516'), + (322, 1544, 'maybe', '2022-09-12 09:34:54', '2025-12-17 19:47:11', 'Qd58nkE4', '5454517'), + (322, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Qd58nkE4', '5454605'), + (322, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Qd58nkE4', '5455037'), + (322, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Qd58nkE4', '5461278'), + (322, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Qd58nkE4', '5469480'), + (322, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'Qd58nkE4', '5471073'), + (322, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Qd58nkE4', '5474663'), + (322, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Qd58nkE4', '5482022'), + (322, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'Qd58nkE4', '5482793'), + (322, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Qd58nkE4', '5488912'), + (322, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Qd58nkE4', '5492192'), + (322, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Qd58nkE4', '5493139'), + (322, 1589, 'maybe', '2022-08-18 19:12:51', '2025-12-17 19:47:23', 'Qd58nkE4', '5493159'), + (322, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Qd58nkE4', '5493200'), + (322, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Qd58nkE4', '5502188'), + (322, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Qd58nkE4', '5505059'), + (322, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Qd58nkE4', '5509055'), + (322, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Qd58nkE4', '5512862'), + (322, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Qd58nkE4', '5513985'), + (322, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'Qd58nkE4', '5519981'), + (322, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Qd58nkE4', '5522550'), + (322, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Qd58nkE4', '5534683'), + (322, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Qd58nkE4', '5537735'), + (322, 1636, 'attending', '2022-08-29 20:08:15', '2025-12-17 19:47:24', 'Qd58nkE4', '5538454'), + (322, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Qd58nkE4', '5540859'), + (322, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Qd58nkE4', '5546619'), + (322, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'Qd58nkE4', '5555245'), + (322, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Qd58nkE4', '5557747'), + (322, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Qd58nkE4', '5560255'), + (322, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Qd58nkE4', '5562906'), + (322, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Qd58nkE4', '5600604'), + (322, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Qd58nkE4', '5605544'), + (322, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'Qd58nkE4', '5606737'), + (322, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Qd58nkE4', '5630960'), + (322, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Qd58nkE4', '5630961'), + (322, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Qd58nkE4', '5630962'), + (322, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Qd58nkE4', '5630966'), + (322, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Qd58nkE4', '5630967'), + (322, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Qd58nkE4', '5630968'), + (322, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Qd58nkE4', '5635406'), + (322, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Qd58nkE4', '5638765'), + (322, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Qd58nkE4', '5640097'), + (322, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Qd58nkE4', '5640843'), + (322, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Qd58nkE4', '5641521'), + (322, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Qd58nkE4', '5642818'), + (322, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Qd58nkE4', '5652395'), + (322, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Qd58nkE4', '5670445'), + (322, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Qd58nkE4', '5671637'), + (322, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Qd58nkE4', '5672329'), + (322, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Qd58nkE4', '5674057'), + (322, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Qd58nkE4', '5674060'), + (322, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'Qd58nkE4', '5677461'), + (322, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Qd58nkE4', '5698046'), + (322, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Qd58nkE4', '5699760'), + (322, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Qd58nkE4', '5741601'), + (322, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Qd58nkE4', '5763458'), + (322, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Qd58nkE4', '5774172'), + (322, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'Qd58nkE4', '5818247'), + (322, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Qd58nkE4', '5819471'), + (322, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'Qd58nkE4', '5827739'), + (322, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Qd58nkE4', '5844306'), + (322, 1847, 'maybe', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Qd58nkE4', '5850159'), + (322, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Qd58nkE4', '5858999'), + (322, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Qd58nkE4', '5871984'), + (322, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Qd58nkE4', '5876354'), + (322, 1864, 'attending', '2023-01-21 06:19:59', '2025-12-17 19:47:05', 'Qd58nkE4', '5879675'), + (322, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Qd58nkE4', '5880939'), + (322, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Qd58nkE4', '5887890'), + (322, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Qd58nkE4', '5888598'), + (322, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Qd58nkE4', '5893260'), + (322, 1946, 'not_attending', '2023-03-12 18:35:36', '2025-12-17 19:46:56', 'Qd58nkE4', '5962134'), + (322, 1978, 'attending', '2023-04-01 22:15:45', '2025-12-17 19:46:58', 'Qd58nkE4', '6028191'), + (322, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd58nkE4', '6045684'), + (322, 2013, 'maybe', '2023-04-14 21:38:12', '2025-12-17 19:46:59', 'Qd58nkE4', '6060328'), + (322, 2031, 'attending', '2023-05-23 07:23:47', '2025-12-17 19:47:03', 'Qd58nkE4', '6068280'), + (322, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Qd58nkE4', '6164417'), + (322, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Qd58nkE4', '6166388'), + (322, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Qd58nkE4', '6176439'), + (322, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Qd58nkE4', '6182410'), + (322, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Qd58nkE4', '6185812'), + (322, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Qd58nkE4', '6187651'), + (322, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Qd58nkE4', '6187963'), + (322, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Qd58nkE4', '6187964'), + (322, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Qd58nkE4', '6187966'), + (322, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Qd58nkE4', '6187967'), + (322, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Qd58nkE4', '6187969'), + (322, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Qd58nkE4', '6334878'), + (322, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Qd58nkE4', '6337236'), + (322, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Qd58nkE4', '6337970'), + (322, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Qd58nkE4', '6338308'), + (322, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Qd58nkE4', '6341710'), + (322, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Qd58nkE4', '6342044'), + (322, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Qd58nkE4', '6342298'), + (322, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Qd58nkE4', '6343294'), + (322, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Qd58nkE4', '6347034'), + (322, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Qd58nkE4', '6347056'), + (322, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Qd58nkE4', '6353830'), + (322, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Qd58nkE4', '6353831'), + (322, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Qd58nkE4', '6357867'), + (322, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Qd58nkE4', '6358652'), + (322, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Qd58nkE4', '6361709'), + (322, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Qd58nkE4', '6361710'), + (322, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Qd58nkE4', '6361711'), + (322, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Qd58nkE4', '6361712'), + (322, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Qd58nkE4', '6361713'), + (322, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'Qd58nkE4', '6382573'), + (322, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Qd58nkE4', '6388604'), + (322, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Qd58nkE4', '6394629'), + (322, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Qd58nkE4', '6394631'), + (322, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Qd58nkE4', '6440863'), + (322, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Qd58nkE4', '6445440'), + (322, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Qd58nkE4', '6453951'), + (322, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Qd58nkE4', '6461696'), + (322, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Qd58nkE4', '6462129'), + (322, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Qd58nkE4', '6463218'), + (322, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Qd58nkE4', '6472181'), + (322, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Qd58nkE4', '6482693'), + (322, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Qd58nkE4', '6484200'), + (322, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Qd58nkE4', '6484680'), + (322, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Qd58nkE4', '6507741'), + (322, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Qd58nkE4', '6514659'), + (322, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Qd58nkE4', '6514660'), + (322, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Qd58nkE4', '6519103'), + (322, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Qd58nkE4', '6535681'), + (322, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Qd58nkE4', '6584747'), + (322, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Qd58nkE4', '6587097'), + (322, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Qd58nkE4', '6609022'), + (322, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'Qd58nkE4', '6632757'), + (322, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Qd58nkE4', '6644187'), + (322, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Qd58nkE4', '6648951'), + (322, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Qd58nkE4', '6648952'), + (322, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Qd58nkE4', '6655401'), + (322, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Qd58nkE4', '6661585'), + (322, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Qd58nkE4', '6661588'), + (322, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Qd58nkE4', '6661589'), + (322, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Qd58nkE4', '6699906'), + (322, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Qd58nkE4', '6699913'), + (322, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Qd58nkE4', '6701109'), + (322, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Qd58nkE4', '6705219'), + (322, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Qd58nkE4', '6710153'), + (322, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Qd58nkE4', '6711552'), + (322, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'Qd58nkE4', '6711553'), + (322, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Qd58nkE4', '6722688'), + (322, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Qd58nkE4', '6730620'), + (322, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Qd58nkE4', '6740364'), + (322, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Qd58nkE4', '6743829'), + (322, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Qd58nkE4', '7030380'), + (322, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'Qd58nkE4', '7033677'), + (322, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Qd58nkE4', '7044715'), + (322, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Qd58nkE4', '7050318'), + (322, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Qd58nkE4', '7050319'), + (322, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Qd58nkE4', '7050322'), + (322, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Qd58nkE4', '7057804'), + (322, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Qd58nkE4', '7072824'), + (322, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Qd58nkE4', '7074348'), + (322, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Qd58nkE4', '7074364'), + (322, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Qd58nkE4', '7089267'), + (322, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Qd58nkE4', '7098747'), + (322, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Qd58nkE4', '7113468'), + (322, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Qd58nkE4', '7114856'), + (322, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Qd58nkE4', '7114951'), + (322, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Qd58nkE4', '7114955'), + (322, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Qd58nkE4', '7114956'), + (322, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Qd58nkE4', '7114957'), + (322, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Qd58nkE4', '7159484'), + (322, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Qd58nkE4', '7178446'), + (322, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'Qd58nkE4', '7220467'), + (322, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Qd58nkE4', '7240354'), + (322, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Qd58nkE4', '7251633'), + (322, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Qd58nkE4', '7324073'), + (322, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Qd58nkE4', '7324074'), + (322, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Qd58nkE4', '7324075'), + (322, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Qd58nkE4', '7324078'), + (322, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Qd58nkE4', '7324082'), + (322, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Qd58nkE4', '7331457'), + (322, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Qd58nkE4', '7363643'), + (322, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Qd58nkE4', '7368606'), + (322, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Qd58nkE4', '7397462'), + (322, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Qd58nkE4', '7424275'), + (322, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Qd58nkE4', '7432751'), + (322, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Qd58nkE4', '7432752'), + (322, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Qd58nkE4', '7432753'), + (322, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Qd58nkE4', '7432754'), + (322, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Qd58nkE4', '7432755'), + (322, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Qd58nkE4', '7432756'), + (322, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Qd58nkE4', '7432758'), + (322, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Qd58nkE4', '7432759'), + (322, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Qd58nkE4', '7433834'), + (322, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'Qd58nkE4', '7470197'), + (322, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Qd58nkE4', '7685613'), + (322, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Qd58nkE4', '7688194'), + (322, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Qd58nkE4', '7688196'), + (322, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Qd58nkE4', '7688289'), + (322, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Qd58nkE4', '7692763'), + (322, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Qd58nkE4', '7697552'), + (322, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Qd58nkE4', '7699878'), + (322, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'Qd58nkE4', '7704043'), + (322, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Qd58nkE4', '7712467'), + (322, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Qd58nkE4', '7713585'), + (322, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Qd58nkE4', '7713586'), + (322, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Qd58nkE4', '7738518'), + (322, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Qd58nkE4', '7750636'), + (322, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Qd58nkE4', '7796540'), + (322, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Qd58nkE4', '7796541'), + (322, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Qd58nkE4', '7796542'), + (322, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Qd58nkE4', '7825913'), + (322, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Qd58nkE4', '7826209'), + (322, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Qd58nkE4', '7834742'), + (322, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Qd58nkE4', '7842108'), + (322, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Qd58nkE4', '7842902'), + (322, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Qd58nkE4', '7842903'), + (322, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Qd58nkE4', '7842904'), + (322, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Qd58nkE4', '7842905'), + (322, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Qd58nkE4', '7855719'), + (322, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Qd58nkE4', '7860683'), + (322, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Qd58nkE4', '7860684'), + (322, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Qd58nkE4', '7866095'), + (322, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Qd58nkE4', '7869170'), + (322, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Qd58nkE4', '7869188'), + (322, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Qd58nkE4', '7869201'), + (322, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Qd58nkE4', '7877465'), + (322, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Qd58nkE4', '7888250'), + (322, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Qd58nkE4', '7904777'), + (322, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Qd58nkE4', '8349164'), + (322, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Qd58nkE4', '8349545'), + (322, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Qd58nkE4', '8368028'), + (322, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Qd58nkE4', '8368029'), + (322, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Qd58nkE4', '8388462'), + (322, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Qd58nkE4', '8400273'), + (322, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Qd58nkE4', '8400275'), + (322, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'Qd58nkE4', '8400276'), + (322, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Qd58nkE4', '8404977'), + (322, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Qd58nkE4', '8430783'), + (322, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Qd58nkE4', '8430784'), + (322, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Qd58nkE4', '8430799'), + (322, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Qd58nkE4', '8430800'), + (322, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Qd58nkE4', '8430801'), + (322, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Qd58nkE4', '8438709'), + (322, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Qd58nkE4', '8457738'), + (322, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Qd58nkE4', '8459566'), + (322, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Qd58nkE4', '8459567'), + (322, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Qd58nkE4', '8461032'), + (322, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Qd58nkE4', '8477877'), + (322, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Qd58nkE4', '8485688'), + (322, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Qd58nkE4', '8490587'), + (322, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Qd58nkE4', '8493552'), + (322, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Qd58nkE4', '8493553'), + (322, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Qd58nkE4', '8493554'), + (322, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Qd58nkE4', '8493555'), + (322, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Qd58nkE4', '8493556'), + (322, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Qd58nkE4', '8493557'), + (322, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Qd58nkE4', '8493558'), + (322, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Qd58nkE4', '8493559'), + (322, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Qd58nkE4', '8493560'), + (322, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'Qd58nkE4', '8493561'), + (322, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Qd58nkE4', '8493572'), + (322, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Qd58nkE4', '8540725'), + (322, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Qd58nkE4', '8555421'), + (323, 1868, 'maybe', '2023-02-21 17:24:22', '2025-12-17 19:47:07', '0mqrMqXA', '5880942'), + (323, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '0mqrMqXA', '5880943'), + (323, 1885, 'attending', '2023-02-24 08:52:44', '2025-12-17 19:47:08', '0mqrMqXA', '5899928'), + (323, 1888, 'attending', '2023-02-17 04:51:18', '2025-12-17 19:47:07', '0mqrMqXA', '5900197'), + (323, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '0mqrMqXA', '5900200'), + (323, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '0mqrMqXA', '5900202'), + (323, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '0mqrMqXA', '5900203'), + (323, 1908, 'attending', '2023-02-16 04:15:28', '2025-12-17 19:47:07', '0mqrMqXA', '5905018'), + (323, 1912, 'not_attending', '2023-02-16 04:16:30', '2025-12-17 19:47:07', '0mqrMqXA', '5909808'), + (323, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '0mqrMqXA', '5910526'), + (323, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '0mqrMqXA', '5910528'), + (323, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '0mqrMqXA', '5916219'), + (323, 1924, 'maybe', '2023-02-18 00:22:29', '2025-12-17 19:47:07', '0mqrMqXA', '5931095'), + (323, 1925, 'attending', '2023-02-23 07:49:21', '2025-12-17 19:47:08', '0mqrMqXA', '5932619'), + (323, 1926, 'maybe', '2023-03-02 09:03:40', '2025-12-17 19:47:08', '0mqrMqXA', '5932620'), + (323, 1928, 'maybe', '2023-02-18 00:22:33', '2025-12-17 19:47:07', '0mqrMqXA', '5932627'), + (323, 1930, 'attending', '2023-02-22 07:02:40', '2025-12-17 19:47:08', '0mqrMqXA', '5933462'), + (323, 1931, 'attending', '2023-02-22 07:02:42', '2025-12-17 19:47:08', '0mqrMqXA', '5933464'), + (323, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '0mqrMqXA', '5936234'), + (323, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '0mqrMqXA', '5958351'), + (323, 1936, 'attending', '2023-02-23 18:10:03', '2025-12-17 19:47:08', '0mqrMqXA', '5959397'), + (323, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '0mqrMqXA', '5959751'), + (323, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '0mqrMqXA', '5959755'), + (323, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '0mqrMqXA', '5960055'), + (323, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '0mqrMqXA', '5961684'), + (323, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '0mqrMqXA', '5962132'), + (323, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '0mqrMqXA', '5962133'), + (323, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '0mqrMqXA', '5962134'), + (323, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '0mqrMqXA', '5962317'), + (323, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '0mqrMqXA', '5962318'), + (323, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '0mqrMqXA', '5965933'), + (323, 1952, 'maybe', '2023-03-02 09:03:35', '2025-12-17 19:47:08', '0mqrMqXA', '5965937'), + (323, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '0mqrMqXA', '5967014'), + (323, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '0mqrMqXA', '5972815'), + (323, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '0mqrMqXA', '5974016'), + (323, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '0mqrMqXA', '5981515'), + (323, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '0mqrMqXA', '5993516'), + (323, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '0mqrMqXA', '5998939'), + (323, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '0mqrMqXA', '6028191'), + (323, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '0mqrMqXA', '6040066'), + (323, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '0mqrMqXA', '6042717'), + (323, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '0mqrMqXA', '6044838'), + (323, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '0mqrMqXA', '6044839'), + (323, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqrMqXA', '6045684'), + (323, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '0mqrMqXA', '6050104'), + (323, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '0mqrMqXA', '6053195'), + (323, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '0mqrMqXA', '6053198'), + (323, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '0mqrMqXA', '6056085'), + (323, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '0mqrMqXA', '6056916'), + (323, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '0mqrMqXA', '6059290'), + (323, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '0mqrMqXA', '6060328'), + (323, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '0mqrMqXA', '6061037'), + (323, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '0mqrMqXA', '6061039'), + (323, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '0mqrMqXA', '6067245'), + (323, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '0mqrMqXA', '6068094'), + (323, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '0mqrMqXA', '6068252'), + (323, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '0mqrMqXA', '6068253'), + (323, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '0mqrMqXA', '6068254'), + (323, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '0mqrMqXA', '6068280'), + (323, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '0mqrMqXA', '6069093'), + (323, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '0mqrMqXA', '6072528'), + (323, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '0mqrMqXA', '6079840'), + (323, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '0mqrMqXA', '6083398'), + (323, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '0mqrMqXA', '6093504'), + (323, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '0mqrMqXA', '6097414'), + (323, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '0mqrMqXA', '6097442'), + (323, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '0mqrMqXA', '6097684'), + (323, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '0mqrMqXA', '6098762'), + (323, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '0mqrMqXA', '6101361'), + (323, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '0mqrMqXA', '6101362'), + (323, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '0mqrMqXA', '6103752'), + (323, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '0mqrMqXA', '6107314'), + (323, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '0mqrMqXA', '6120034'), + (323, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '0mqrMqXA', '6136733'), + (323, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '0mqrMqXA', '6137989'), + (323, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '0mqrMqXA', '6150864'), + (323, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '0mqrMqXA', '6155491'), + (323, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '0mqrMqXA', '6164417'), + (323, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '0mqrMqXA', '6166388'), + (323, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '0mqrMqXA', '6176439'), + (323, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '0mqrMqXA', '6182410'), + (323, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '0mqrMqXA', '6185812'), + (323, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '0mqrMqXA', '6187651'), + (323, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '0mqrMqXA', '6187963'), + (323, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '0mqrMqXA', '6187964'), + (323, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '0mqrMqXA', '6187966'), + (323, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '0mqrMqXA', '6187967'), + (323, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '0mqrMqXA', '6187969'), + (323, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '0mqrMqXA', '6334878'), + (323, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '0mqrMqXA', '6337236'), + (323, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '0mqrMqXA', '6337970'), + (323, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '0mqrMqXA', '6338308'), + (323, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '0mqrMqXA', '6340845'), + (323, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '0mqrMqXA', '6341710'), + (323, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '0mqrMqXA', '6342044'), + (323, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '0mqrMqXA', '6342298'), + (323, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '0mqrMqXA', '6343294'), + (323, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '0mqrMqXA', '6347034'), + (323, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '0mqrMqXA', '6347056'), + (323, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '0mqrMqXA', '6353830'), + (323, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '0mqrMqXA', '6353831'), + (323, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '0mqrMqXA', '6357867'), + (323, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '0mqrMqXA', '6358652'), + (323, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '0mqrMqXA', '6361709'), + (323, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '0mqrMqXA', '6361710'), + (323, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '0mqrMqXA', '6361711'), + (323, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '0mqrMqXA', '6361712'), + (323, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '0mqrMqXA', '6361713'), + (323, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '0mqrMqXA', '6382573'), + (323, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '0mqrMqXA', '6388604'), + (323, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '0mqrMqXA', '6394629'), + (323, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '0mqrMqXA', '6394631'), + (323, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '0mqrMqXA', '6440863'), + (323, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '0mqrMqXA', '6445440'), + (323, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '0mqrMqXA', '6453951'), + (323, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '0mqrMqXA', '6461696'), + (323, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '0mqrMqXA', '6462129'), + (323, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '0mqrMqXA', '6463218'), + (323, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '0mqrMqXA', '6472181'), + (323, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '0mqrMqXA', '6482693'), + (323, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '0mqrMqXA', '6484200'), + (323, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '0mqrMqXA', '6484680'), + (323, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '0mqrMqXA', '6507741'), + (323, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '0mqrMqXA', '6514659'), + (323, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '0mqrMqXA', '6514660'), + (323, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '0mqrMqXA', '6519103'), + (323, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '0mqrMqXA', '6535681'), + (323, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '0mqrMqXA', '6584747'), + (323, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '0mqrMqXA', '6587097'), + (323, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '0mqrMqXA', '6609022'), + (323, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '0mqrMqXA', '6632757'), + (323, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '0mqrMqXA', '6644187'), + (323, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '0mqrMqXA', '6648951'), + (323, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '0mqrMqXA', '6648952'), + (323, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '0mqrMqXA', '6655401'), + (323, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '0mqrMqXA', '6661585'), + (323, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '0mqrMqXA', '6661588'), + (323, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '0mqrMqXA', '6661589'), + (323, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '0mqrMqXA', '6699906'), + (323, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '0mqrMqXA', '6699913'), + (323, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '0mqrMqXA', '6701109'), + (323, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '0mqrMqXA', '6705219'), + (323, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '0mqrMqXA', '6710153'), + (323, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '0mqrMqXA', '6711552'), + (323, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '0mqrMqXA', '6711553'), + (323, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '0mqrMqXA', '6722688'), + (323, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '0mqrMqXA', '6730620'), + (323, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '0mqrMqXA', '6740364'), + (323, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '0mqrMqXA', '6743829'), + (323, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '0mqrMqXA', '7030380'), + (323, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '0mqrMqXA', '7033677'), + (323, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '0mqrMqXA', '7044715'), + (323, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '0mqrMqXA', '7050318'), + (323, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '0mqrMqXA', '7050319'), + (323, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '0mqrMqXA', '7050322'), + (323, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '0mqrMqXA', '7057804'), + (323, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '0mqrMqXA', '7072824'), + (323, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '0mqrMqXA', '7074348'), + (323, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '0mqrMqXA', '7074364'), + (323, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '0mqrMqXA', '7089267'), + (323, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '0mqrMqXA', '7098747'), + (323, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '0mqrMqXA', '7113468'), + (323, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '0mqrMqXA', '7114856'), + (323, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '0mqrMqXA', '7114951'), + (323, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '0mqrMqXA', '7114955'), + (323, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '0mqrMqXA', '7114956'), + (323, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '0mqrMqXA', '7114957'), + (323, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '0mqrMqXA', '7159484'), + (323, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '0mqrMqXA', '7178446'), + (323, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '0mqrMqXA', '7220467'), + (323, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '0mqrMqXA', '7240354'), + (323, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '0mqrMqXA', '7251633'), + (323, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '0mqrMqXA', '7324073'), + (323, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '0mqrMqXA', '7324074'), + (323, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '0mqrMqXA', '7324075'), + (323, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '0mqrMqXA', '7324078'), + (323, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '0mqrMqXA', '7324082'), + (323, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '0mqrMqXA', '7331457'), + (323, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '0mqrMqXA', '7363643'), + (323, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '0mqrMqXA', '7368606'), + (323, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '0mqrMqXA', '7397462'), + (323, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '0mqrMqXA', '7424275'), + (323, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '0mqrMqXA', '7432751'), + (323, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '0mqrMqXA', '7432752'), + (323, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '0mqrMqXA', '7432753'), + (323, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '0mqrMqXA', '7432754'), + (323, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '0mqrMqXA', '7432755'), + (323, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '0mqrMqXA', '7432756'), + (323, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '0mqrMqXA', '7432758'), + (323, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '0mqrMqXA', '7432759'), + (323, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '0mqrMqXA', '7433834'), + (323, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '0mqrMqXA', '7470197'), + (323, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '0mqrMqXA', '7685613'), + (323, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '0mqrMqXA', '7688194'), + (323, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '0mqrMqXA', '7688196'), + (323, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '0mqrMqXA', '7688289'), + (323, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '0mqrMqXA', '7692763'), + (323, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '0mqrMqXA', '7697552'), + (323, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '0mqrMqXA', '7699878'), + (323, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '0mqrMqXA', '7704043'), + (323, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '0mqrMqXA', '7712467'), + (323, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '0mqrMqXA', '7713585'), + (323, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '0mqrMqXA', '7713586'), + (323, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '0mqrMqXA', '7738518'), + (323, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '0mqrMqXA', '7750636'), + (323, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '0mqrMqXA', '7796540'), + (323, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '0mqrMqXA', '7796541'), + (323, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '0mqrMqXA', '7796542'), + (323, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '0mqrMqXA', '7825913'), + (323, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '0mqrMqXA', '7826209'), + (323, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '0mqrMqXA', '7834742'), + (323, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '0mqrMqXA', '7842108'), + (323, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '0mqrMqXA', '7842902'), + (323, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '0mqrMqXA', '7842903'), + (323, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '0mqrMqXA', '7842904'), + (323, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '0mqrMqXA', '7842905'), + (323, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '0mqrMqXA', '7855719'), + (323, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '0mqrMqXA', '7860683'), + (323, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '0mqrMqXA', '7860684'), + (323, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '0mqrMqXA', '7866095'), + (323, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '0mqrMqXA', '7869170'), + (323, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '0mqrMqXA', '7869188'), + (323, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '0mqrMqXA', '7869201'), + (323, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '0mqrMqXA', '7877465'), + (323, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '0mqrMqXA', '7888250'), + (323, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '0mqrMqXA', '7904777'), + (323, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '0mqrMqXA', '8349164'), + (323, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '0mqrMqXA', '8349545'), + (323, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '0mqrMqXA', '8368028'), + (323, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '0mqrMqXA', '8368029'), + (323, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '0mqrMqXA', '8388462'), + (323, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '0mqrMqXA', '8400273'), + (323, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '0mqrMqXA', '8400275'), + (323, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '0mqrMqXA', '8400276'), + (323, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '0mqrMqXA', '8404977'), + (323, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '0mqrMqXA', '8430783'), + (323, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '0mqrMqXA', '8430784'), + (323, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '0mqrMqXA', '8430799'), + (323, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '0mqrMqXA', '8430800'), + (323, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '0mqrMqXA', '8430801'), + (323, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '0mqrMqXA', '8438709'), + (323, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '0mqrMqXA', '8457738'), + (323, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '0mqrMqXA', '8459566'), + (323, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '0mqrMqXA', '8459567'), + (323, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '0mqrMqXA', '8461032'), + (323, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '0mqrMqXA', '8477877'), + (323, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '0mqrMqXA', '8485688'), + (323, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '0mqrMqXA', '8490587'), + (323, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '0mqrMqXA', '8493552'), + (323, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '0mqrMqXA', '8493553'), + (323, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '0mqrMqXA', '8493554'), + (323, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '0mqrMqXA', '8493555'), + (323, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '0mqrMqXA', '8493556'), + (323, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '0mqrMqXA', '8493557'), + (323, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '0mqrMqXA', '8493558'), + (323, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '0mqrMqXA', '8493559'), + (323, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '0mqrMqXA', '8493560'), + (323, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '0mqrMqXA', '8493561'), + (323, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '0mqrMqXA', '8493572'), + (323, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '0mqrMqXA', '8540725'), + (323, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '0mqrMqXA', '8555421'), + (324, 409, 'attending', '2020-12-10 00:40:35', '2025-12-17 19:47:54', 'v4DgwbLA', '3236467'), + (324, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'v4DgwbLA', '3314964'), + (324, 502, 'attending', '2020-12-13 00:55:54', '2025-12-17 19:47:55', 'v4DgwbLA', '3323365'), + (324, 503, 'attending', '2020-12-15 21:18:04', '2025-12-17 19:47:55', 'v4DgwbLA', '3323366'), + (324, 504, 'attending', '2020-12-15 21:18:36', '2025-12-17 19:47:55', 'v4DgwbLA', '3323368'), + (324, 505, 'attending', '2020-12-15 21:18:56', '2025-12-17 19:47:55', 'v4DgwbLA', '3323369'), + (324, 506, 'maybe', '2020-12-13 18:55:58', '2025-12-17 19:47:55', 'v4DgwbLA', '3323375'), + (324, 513, 'not_attending', '2020-12-19 23:26:35', '2025-12-17 19:47:55', 'v4DgwbLA', '3329383'), + (324, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'v4DgwbLA', '3351539'), + (324, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'v4DgwbLA', '3386848'), + (324, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'v4DgwbLA', '3389527'), + (324, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'v4DgwbLA', '3396499'), + (324, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'v4DgwbLA', '3403650'), + (324, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'v4DgwbLA', '3406988'), + (324, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'v4DgwbLA', '3416576'), + (324, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DgwbLA', '6045684'), + (325, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dN6vOP0d', '5900202'), + (325, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dN6vOP0d', '5962317'), + (325, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dN6vOP0d', '5962318'), + (325, 1951, 'not_attending', '2023-03-22 18:17:21', '2025-12-17 19:46:57', 'dN6vOP0d', '5965933'), + (325, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'dN6vOP0d', '6028191'), + (325, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dN6vOP0d', '6040066'), + (325, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dN6vOP0d', '6042717'), + (325, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dN6vOP0d', '6044838'), + (325, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dN6vOP0d', '6044839'), + (325, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN6vOP0d', '6045684'), + (325, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'dN6vOP0d', '6048955'), + (325, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dN6vOP0d', '6050104'), + (325, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dN6vOP0d', '6053195'), + (325, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dN6vOP0d', '6053198'), + (325, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dN6vOP0d', '6056085'), + (325, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dN6vOP0d', '6056916'), + (325, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dN6vOP0d', '6059290'), + (325, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dN6vOP0d', '6060328'), + (325, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dN6vOP0d', '6061037'), + (325, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dN6vOP0d', '6061039'), + (325, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dN6vOP0d', '6067245'), + (325, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dN6vOP0d', '6068094'), + (325, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dN6vOP0d', '6068252'), + (325, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dN6vOP0d', '6068253'), + (325, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dN6vOP0d', '6068254'), + (325, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dN6vOP0d', '6068280'), + (325, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dN6vOP0d', '6069093'), + (325, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dN6vOP0d', '6072528'), + (325, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dN6vOP0d', '6079840'), + (325, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dN6vOP0d', '6083398'), + (325, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dN6vOP0d', '6093504'), + (325, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dN6vOP0d', '6097414'), + (325, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dN6vOP0d', '6097442'), + (325, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dN6vOP0d', '6097684'), + (325, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dN6vOP0d', '6098762'), + (325, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dN6vOP0d', '6101362'), + (325, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dN6vOP0d', '6107314'), + (325, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dN6vOP0d', '6120034'), + (326, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'AgZWOzRm', '7281768'), + (326, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'AgZWOzRm', '7291219'), + (327, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndlRoKwA', '5900202'), + (327, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndlRoKwA', '5900203'), + (327, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'ndlRoKwA', '5910528'), + (327, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'ndlRoKwA', '5962317'), + (327, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'ndlRoKwA', '5962318'), + (327, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndlRoKwA', '5965933'), + (327, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndlRoKwA', '5972815'), + (327, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndlRoKwA', '5981515'), + (327, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndlRoKwA', '5993516'), + (327, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndlRoKwA', '5998939'), + (327, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndlRoKwA', '6028191'), + (327, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndlRoKwA', '6040066'), + (327, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndlRoKwA', '6042717'), + (327, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndlRoKwA', '6044838'), + (327, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndlRoKwA', '6044839'), + (327, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ndlRoKwA', '6045684'), + (327, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'ndlRoKwA', '6048955'), + (327, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndlRoKwA', '6050104'), + (327, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndlRoKwA', '6053195'), + (327, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndlRoKwA', '6053198'), + (327, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndlRoKwA', '6056085'), + (327, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndlRoKwA', '6056916'), + (327, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndlRoKwA', '6059290'), + (327, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndlRoKwA', '6060328'), + (327, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndlRoKwA', '6061037'), + (327, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndlRoKwA', '6061039'), + (327, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndlRoKwA', '6067245'), + (327, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndlRoKwA', '6068094'), + (327, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndlRoKwA', '6068252'), + (327, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndlRoKwA', '6068253'), + (327, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndlRoKwA', '6068254'), + (327, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndlRoKwA', '6068280'), + (327, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndlRoKwA', '6069093'), + (327, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'ndlRoKwA', '6072528'), + (327, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndlRoKwA', '6079840'), + (327, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndlRoKwA', '6083398'), + (327, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'ndlRoKwA', '6093504'), + (327, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndlRoKwA', '6097414'), + (327, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndlRoKwA', '6097442'), + (327, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndlRoKwA', '6097684'), + (327, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndlRoKwA', '6098762'), + (327, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndlRoKwA', '6101362'), + (327, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndlRoKwA', '6107314'), + (327, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndlRoKwA', '6120034'), + (328, 2285, 'attending', '2023-10-24 15:00:23', '2025-12-17 19:46:47', '4orR2VVA', '6460929'), + (328, 2296, 'attending', '2023-10-24 14:59:26', '2025-12-17 19:46:47', '4orR2VVA', '6468393'), + (328, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4orR2VVA', '6472181'), + (328, 2300, 'not_attending', '2023-10-24 15:00:55', '2025-12-17 19:46:47', '4orR2VVA', '6472185'), + (328, 2301, 'maybe', '2023-10-24 10:32:08', '2025-12-17 19:46:46', '4orR2VVA', '6474276'), + (328, 2303, 'attending', '2023-10-22 02:58:15', '2025-12-17 19:46:47', '4orR2VVA', '6482691'), + (328, 2304, 'maybe', '2023-10-22 02:56:27', '2025-12-17 19:46:47', '4orR2VVA', '6482693'), + (328, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4orR2VVA', '6484200'), + (328, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4orR2VVA', '6484680'), + (328, 2309, 'maybe', '2023-10-23 23:03:35', '2025-12-17 19:46:46', '4orR2VVA', '6486100'), + (328, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4orR2VVA', '6507741'), + (328, 2321, 'attending', '2023-10-30 21:42:31', '2025-12-17 19:46:47', '4orR2VVA', '6512075'), + (328, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4orR2VVA', '6514659'), + (328, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4orR2VVA', '6514660'), + (328, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4orR2VVA', '6519103'), + (328, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4orR2VVA', '6535681'), + (328, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4orR2VVA', '6584747'), + (328, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4orR2VVA', '6587097'), + (328, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4orR2VVA', '6609022'), + (328, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4orR2VVA', '6632757'), + (328, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4orR2VVA', '6644187'), + (328, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4orR2VVA', '6648951'), + (328, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4orR2VVA', '6648952'), + (328, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4orR2VVA', '6655401'), + (328, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4orR2VVA', '6661585'), + (328, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4orR2VVA', '6661588'), + (328, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4orR2VVA', '6661589'), + (328, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4orR2VVA', '6699906'), + (328, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4orR2VVA', '6699913'), + (328, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4orR2VVA', '6701109'), + (328, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '4orR2VVA', '6704561'), + (328, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4orR2VVA', '6705219'), + (328, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '4orR2VVA', '6708410'), + (328, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4orR2VVA', '6710153'), + (328, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4orR2VVA', '6711552'), + (328, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4orR2VVA', '6711553'), + (328, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4orR2VVA', '6722688'), + (328, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4orR2VVA', '6730620'), + (328, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4orR2VVA', '6730642'), + (328, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4orR2VVA', '6740364'), + (328, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4orR2VVA', '6743829'), + (328, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4orR2VVA', '7030380'), + (328, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4orR2VVA', '7033677'), + (328, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4orR2VVA', '7035415'), + (328, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4orR2VVA', '7044715'), + (328, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4orR2VVA', '7050318'), + (328, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4orR2VVA', '7050319'), + (328, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4orR2VVA', '7050322'), + (328, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4orR2VVA', '7057804'), + (328, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4orR2VVA', '7072824'), + (328, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4orR2VVA', '7074348'), + (328, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4orR2VVA', '7089267'), + (328, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4orR2VVA', '7098747'), + (328, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4orR2VVA', '7113468'), + (328, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4orR2VVA', '7114856'), + (328, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4orR2VVA', '7114951'), + (328, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4orR2VVA', '7114955'), + (328, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4orR2VVA', '7114956'), + (328, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4orR2VVA', '7153615'), + (328, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4orR2VVA', '7159484'), + (329, 254, 'attending', '2021-03-28 02:02:57', '2025-12-17 19:47:51', '6AXW3xRm', '3149485'), + (329, 638, 'maybe', '2021-04-02 16:45:35', '2025-12-17 19:47:44', '6AXW3xRm', '3536632'), + (329, 641, 'attending', '2021-03-31 14:29:50', '2025-12-17 19:47:44', '6AXW3xRm', '3539916'), + (329, 642, 'attending', '2021-04-05 15:37:11', '2025-12-17 19:47:44', '6AXW3xRm', '3539917'), + (329, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '6AXW3xRm', '3539918'), + (329, 644, 'attending', '2021-04-19 22:54:05', '2025-12-17 19:47:45', '6AXW3xRm', '3539919'), + (329, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '6AXW3xRm', '3539920'), + (329, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '6AXW3xRm', '3539921'), + (329, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '6AXW3xRm', '3539922'), + (329, 648, 'maybe', '2021-05-29 15:11:20', '2025-12-17 19:47:47', '6AXW3xRm', '3539923'), + (329, 700, 'attending', '2021-03-28 17:05:34', '2025-12-17 19:47:44', '6AXW3xRm', '3575725'), + (329, 704, 'attending', '2021-03-31 17:28:26', '2025-12-17 19:47:44', '6AXW3xRm', '3581429'), + (329, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '6AXW3xRm', '3583262'), + (329, 709, 'attending', '2021-04-06 15:25:18', '2025-12-17 19:47:44', '6AXW3xRm', '3587852'), + (329, 710, 'maybe', '2021-04-07 20:36:23', '2025-12-17 19:47:44', '6AXW3xRm', '3587853'), + (329, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '6AXW3xRm', '3661369'), + (329, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXW3xRm', '3674262'), + (329, 735, 'maybe', '2021-05-02 13:33:37', '2025-12-17 19:47:46', '6AXW3xRm', '3677402'), + (329, 748, 'attending', '2021-04-08 15:51:50', '2025-12-17 19:47:44', '6AXW3xRm', '3685353'), + (329, 750, 'attending', '2021-04-13 22:45:01', '2025-12-17 19:47:44', '6AXW3xRm', '3689962'), + (329, 768, 'attending', '2021-04-25 02:17:59', '2025-12-17 19:47:46', '6AXW3xRm', '3724124'), + (329, 769, 'attending', '2021-04-26 14:17:10', '2025-12-17 19:47:46', '6AXW3xRm', '3724127'), + (329, 770, 'attending', '2021-04-28 01:43:05', '2025-12-17 19:47:46', '6AXW3xRm', '3724559'), + (329, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXW3xRm', '3730212'), + (329, 777, 'attending', '2021-04-30 12:43:53', '2025-12-17 19:47:46', '6AXW3xRm', '3746248'), + (329, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXW3xRm', '3793156'), + (329, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXW3xRm', '3974109'), + (329, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXW3xRm', '3975311'), + (329, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXW3xRm', '3975312'), + (329, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXW3xRm', '3994992'), + (329, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXW3xRm', '4014338'), + (329, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXW3xRm', '4021848'), + (329, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXW3xRm', '4136744'), + (329, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXW3xRm', '4136937'), + (329, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXW3xRm', '4136938'), + (329, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXW3xRm', '4136947'), + (329, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXW3xRm', '4210314'), + (329, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXW3xRm', '4225444'), + (329, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXW3xRm', '4239259'), + (329, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXW3xRm', '4240316'), + (329, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXW3xRm', '4240317'), + (329, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXW3xRm', '4240318'), + (329, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXW3xRm', '4240320'), + (329, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXW3xRm', '4250163'), + (329, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXW3xRm', '4275957'), + (329, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXW3xRm', '4277819'), + (329, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXW3xRm', '4301723'), + (329, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '6AXW3xRm', '4302093'), + (329, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXW3xRm', '4304151'), + (329, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXW3xRm', '4356801'), + (329, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXW3xRm', '4366186'), + (329, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXW3xRm', '4366187'), + (329, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AXW3xRm', '4420735'), + (329, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AXW3xRm', '4420738'), + (329, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AXW3xRm', '4420739'), + (329, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AXW3xRm', '4420741'), + (329, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXW3xRm', '4420744'), + (329, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXW3xRm', '4420747'), + (329, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AXW3xRm', '4420748'), + (329, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXW3xRm', '4420749'), + (329, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXW3xRm', '4461883'), + (329, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXW3xRm', '4508342'), + (329, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXW3xRm', '6045684'), + (330, 1891, 'attending', '2023-03-21 20:04:22', '2025-12-17 19:46:56', 'AQ1VD73A', '5900202'), + (330, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AQ1VD73A', '5900203'), + (330, 1917, 'not_attending', '2023-03-13 15:07:54', '2025-12-17 19:47:10', 'AQ1VD73A', '5910528'), + (330, 1927, 'not_attending', '2023-03-14 13:12:50', '2025-12-17 19:47:10', 'AQ1VD73A', '5932621'), + (330, 1943, 'attending', '2023-03-14 00:48:46', '2025-12-17 19:47:10', 'AQ1VD73A', '5962091'), + (330, 1946, 'maybe', '2023-03-14 13:13:19', '2025-12-17 19:46:56', 'AQ1VD73A', '5962134'), + (330, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'AQ1VD73A', '5962317'), + (330, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'AQ1VD73A', '5962318'), + (330, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'AQ1VD73A', '5965933'), + (330, 1955, 'not_attending', '2023-03-28 14:04:21', '2025-12-17 19:46:57', 'AQ1VD73A', '5972529'), + (330, 1971, 'attending', '2023-03-15 15:11:19', '2025-12-17 19:46:56', 'AQ1VD73A', '5993765'), + (330, 1974, 'not_attending', '2023-03-25 04:57:45', '2025-12-17 19:46:57', 'AQ1VD73A', '5993778'), + (330, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AQ1VD73A', '5998939'), + (330, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AQ1VD73A', '6028191'), + (330, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AQ1VD73A', '6040066'), + (330, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AQ1VD73A', '6042717'), + (330, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AQ1VD73A', '6044838'), + (330, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AQ1VD73A', '6044839'), + (330, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ1VD73A', '6045684'), + (330, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'AQ1VD73A', '6050104'), + (330, 2002, 'not_attending', '2023-04-23 03:50:18', '2025-12-17 19:47:01', 'AQ1VD73A', '6052605'), + (330, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AQ1VD73A', '6053195'), + (330, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AQ1VD73A', '6053198'), + (330, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AQ1VD73A', '6056085'), + (330, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AQ1VD73A', '6056916'), + (330, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AQ1VD73A', '6059290'), + (330, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AQ1VD73A', '6060328'), + (330, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AQ1VD73A', '6061037'), + (330, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AQ1VD73A', '6061039'), + (330, 2019, 'attending', '2023-04-16 07:23:44', '2025-12-17 19:47:00', 'AQ1VD73A', '6062934'), + (330, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AQ1VD73A', '6067245'), + (330, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AQ1VD73A', '6068094'), + (330, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AQ1VD73A', '6068252'), + (330, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AQ1VD73A', '6068253'), + (330, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AQ1VD73A', '6068254'), + (330, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AQ1VD73A', '6068280'), + (330, 2032, 'attending', '2023-06-03 16:44:16', '2025-12-17 19:47:04', 'AQ1VD73A', '6068281'), + (330, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AQ1VD73A', '6069093'), + (330, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'AQ1VD73A', '6072528'), + (330, 2047, 'not_attending', '2023-05-02 12:42:42', '2025-12-17 19:47:02', 'AQ1VD73A', '6076027'), + (330, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AQ1VD73A', '6079840'), + (330, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AQ1VD73A', '6083398'), + (330, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AQ1VD73A', '6093504'), + (330, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AQ1VD73A', '6097414'), + (330, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AQ1VD73A', '6097442'), + (330, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AQ1VD73A', '6097684'), + (330, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AQ1VD73A', '6098762'), + (330, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AQ1VD73A', '6101361'), + (330, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AQ1VD73A', '6101362'), + (330, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AQ1VD73A', '6103752'), + (330, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AQ1VD73A', '6107314'), + (330, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'AQ1VD73A', '6120034'), + (330, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AQ1VD73A', '6136733'), + (330, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AQ1VD73A', '6137989'), + (330, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AQ1VD73A', '6150864'), + (330, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'AQ1VD73A', '6155491'), + (330, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AQ1VD73A', '6164417'), + (330, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AQ1VD73A', '6166388'), + (330, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'AQ1VD73A', '6176439'), + (330, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'AQ1VD73A', '6182410'), + (330, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AQ1VD73A', '6185812'), + (330, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AQ1VD73A', '6187651'), + (330, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AQ1VD73A', '6187963'), + (330, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AQ1VD73A', '6187964'), + (330, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AQ1VD73A', '6187966'), + (330, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AQ1VD73A', '6187967'), + (330, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AQ1VD73A', '6187969'), + (330, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AQ1VD73A', '6334878'), + (330, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AQ1VD73A', '6337236'), + (330, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AQ1VD73A', '6337970'), + (330, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AQ1VD73A', '6338308'), + (330, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'AQ1VD73A', '6340845'), + (330, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AQ1VD73A', '6341710'), + (330, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AQ1VD73A', '6342044'), + (330, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AQ1VD73A', '6342298'), + (330, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AQ1VD73A', '6343294'), + (330, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AQ1VD73A', '6347034'), + (330, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AQ1VD73A', '6347056'), + (330, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AQ1VD73A', '6353830'), + (330, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AQ1VD73A', '6353831'), + (330, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AQ1VD73A', '6357867'), + (330, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AQ1VD73A', '6358652'), + (330, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AQ1VD73A', '6361709'), + (330, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AQ1VD73A', '6361710'), + (330, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AQ1VD73A', '6361711'), + (330, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AQ1VD73A', '6361712'), + (330, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AQ1VD73A', '6361713'), + (330, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AQ1VD73A', '6382573'), + (330, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AQ1VD73A', '6388604'), + (330, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AQ1VD73A', '6394629'), + (330, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AQ1VD73A', '6394631'), + (330, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AQ1VD73A', '6440863'), + (330, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AQ1VD73A', '6445440'), + (330, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AQ1VD73A', '6453951'), + (330, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AQ1VD73A', '6461696'), + (330, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AQ1VD73A', '6462129'), + (330, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AQ1VD73A', '6463218'), + (330, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AQ1VD73A', '6472181'), + (330, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AQ1VD73A', '6482693'), + (330, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'AQ1VD73A', '6484200'), + (330, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AQ1VD73A', '6484680'), + (330, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AQ1VD73A', '6507741'), + (330, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AQ1VD73A', '6514659'), + (330, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AQ1VD73A', '6514660'), + (330, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AQ1VD73A', '6519103'), + (330, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AQ1VD73A', '6535681'), + (330, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AQ1VD73A', '6584747'), + (330, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AQ1VD73A', '6587097'), + (330, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AQ1VD73A', '6609022'), + (330, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AQ1VD73A', '6632757'), + (330, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AQ1VD73A', '6644187'), + (330, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AQ1VD73A', '6648951'), + (330, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AQ1VD73A', '6648952'), + (330, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AQ1VD73A', '6655401'), + (330, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AQ1VD73A', '6661585'), + (330, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AQ1VD73A', '6661588'), + (330, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AQ1VD73A', '6661589'), + (330, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AQ1VD73A', '6699906'), + (330, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AQ1VD73A', '6701109'), + (330, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AQ1VD73A', '6705219'), + (330, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AQ1VD73A', '6710153'), + (330, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AQ1VD73A', '6711552'), + (330, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AQ1VD73A', '6711553'), + (331, 311, 'not_attending', '2020-09-18 14:56:29', '2025-12-17 19:47:56', 'nm6LVPq4', '3186057'), + (331, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'nm6LVPq4', '3217037'), + (331, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'nm6LVPq4', '3218510'), + (331, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6LVPq4', '6045684'), + (332, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'mG2OY3Xd', '4210314'), + (332, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'mG2OY3Xd', '4240318'), + (332, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'mG2OY3Xd', '4240320'), + (332, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'mG2OY3Xd', '4304151'), + (332, 947, 'not_attending', '2021-08-04 05:12:06', '2025-12-17 19:47:41', 'mG2OY3Xd', '4315713'), + (332, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'mG2OY3Xd', '4315714'), + (332, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'mG2OY3Xd', '4315726'), + (332, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'mG2OY3Xd', '4356801'), + (332, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'mG2OY3Xd', '4366186'), + (332, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'mG2OY3Xd', '4366187'), + (332, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'mG2OY3Xd', '4420735'), + (332, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'mG2OY3Xd', '4420738'), + (332, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'mG2OY3Xd', '4420739'), + (332, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'mG2OY3Xd', '4420741'), + (332, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'mG2OY3Xd', '4420744'), + (332, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'mG2OY3Xd', '4420747'), + (332, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'mG2OY3Xd', '4420748'), + (332, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'mG2OY3Xd', '4420749'), + (332, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mG2OY3Xd', '6045684'), + (333, 993, 'attending', '2021-09-23 22:53:03', '2025-12-17 19:47:34', '41orQxRm', '4420741'), + (333, 994, 'attending', '2021-10-02 22:46:03', '2025-12-17 19:47:34', '41orQxRm', '4420742'), + (333, 995, 'attending', '2021-10-04 14:23:09', '2025-12-17 19:47:34', '41orQxRm', '4420744'), + (333, 996, 'attending', '2021-10-30 19:05:42', '2025-12-17 19:47:35', '41orQxRm', '4420747'), + (333, 997, 'attending', '2021-10-23 21:31:39', '2025-12-17 19:47:35', '41orQxRm', '4420748'), + (333, 998, 'attending', '2021-10-30 19:06:35', '2025-12-17 19:47:36', '41orQxRm', '4420749'), + (333, 1069, 'attending', '2021-09-24 15:43:33', '2025-12-17 19:47:34', '41orQxRm', '4512090'), + (333, 1070, 'attending', '2021-10-01 21:31:20', '2025-12-17 19:47:34', '41orQxRm', '4512562'), + (333, 1072, 'attending', '2021-10-09 21:04:19', '2025-12-17 19:47:34', '41orQxRm', '4516287'), + (333, 1074, 'attending', '2021-09-29 21:50:02', '2025-12-17 19:47:34', '41orQxRm', '4528953'), + (333, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '41orQxRm', '4568602'), + (333, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '41orQxRm', '4572153'), + (333, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '41orQxRm', '4585962'), + (333, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '41orQxRm', '4596356'), + (333, 1097, 'not_attending', '2021-11-03 22:52:31', '2025-12-17 19:47:36', '41orQxRm', '4598860'), + (333, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '41orQxRm', '4598861'), + (333, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '41orQxRm', '4602797'), + (333, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '41orQxRm', '4637896'), + (333, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '41orQxRm', '4642994'), + (333, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '41orQxRm', '4642995'), + (333, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '41orQxRm', '4642996'), + (333, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '41orQxRm', '4642997'), + (333, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '41orQxRm', '4645687'), + (333, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '41orQxRm', '4645698'), + (333, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '41orQxRm', '4645704'), + (333, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '41orQxRm', '4645705'), + (333, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '41orQxRm', '4668385'), + (333, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '41orQxRm', '4694407'), + (333, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '41orQxRm', '4736497'), + (333, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '41orQxRm', '4736499'), + (333, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '41orQxRm', '4736500'), + (333, 1181, 'attending', '2022-03-02 23:44:37', '2025-12-17 19:47:33', '41orQxRm', '4736503'), + (333, 1182, 'not_attending', '2022-03-12 23:57:10', '2025-12-17 19:47:33', '41orQxRm', '4736504'), + (333, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '41orQxRm', '4746789'), + (333, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '41orQxRm', '4753929'), + (333, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '41orQxRm', '5038850'), + (333, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '41orQxRm', '5045826'), + (333, 1249, 'not_attending', '2022-03-10 00:04:37', '2025-12-17 19:47:33', '41orQxRm', '5068530'), + (333, 1252, 'not_attending', '2022-03-03 18:08:19', '2025-12-17 19:47:33', '41orQxRm', '5129121'), + (333, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '41orQxRm', '5132533'), + (333, 1272, 'not_attending', '2022-03-19 22:08:12', '2025-12-17 19:47:25', '41orQxRm', '5186582'), + (333, 1273, 'attending', '2022-03-26 15:19:18', '2025-12-17 19:47:25', '41orQxRm', '5186583'), + (333, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '41orQxRm', '5186585'), + (333, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '41orQxRm', '5190437'), + (333, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '41orQxRm', '5195095'), + (333, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', '41orQxRm', '5215989'), + (333, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41orQxRm', '5223686'), + (333, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41orQxRm', '5227432'), + (333, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '41orQxRm', '5247467'), + (333, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '41orQxRm', '5260800'), + (333, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '41orQxRm', '5269930'), + (333, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41orQxRm', '5271448'), + (333, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '41orQxRm', '5271449'), + (333, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '41orQxRm', '5276469'), + (333, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41orQxRm', '5278159'), + (333, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41orQxRm', '5363695'), + (333, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41orQxRm', '5365960'), + (333, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '41orQxRm', '5368973'), + (333, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41orQxRm', '5378247'), + (333, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '41orQxRm', '5389605'), + (333, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41orQxRm', '5397265'), + (333, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41orQxRm', '5403967'), + (333, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41orQxRm', '5404786'), + (333, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41orQxRm', '5405203'), + (333, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '41orQxRm', '5408794'), + (333, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41orQxRm', '5411699'), + (333, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41orQxRm', '5412550'), + (333, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41orQxRm', '5415046'), + (333, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41orQxRm', '5422086'), + (333, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41orQxRm', '5422406'), + (333, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41orQxRm', '5424565'), + (333, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41orQxRm', '5426882'), + (333, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41orQxRm', '5427083'), + (333, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41orQxRm', '5441125'), + (333, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41orQxRm', '5441126'), + (333, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41orQxRm', '5441128'), + (333, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41orQxRm', '5446643'), + (333, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41orQxRm', '5453325'), + (333, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41orQxRm', '5454516'), + (333, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41orQxRm', '5454605'), + (333, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41orQxRm', '5455037'), + (333, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41orQxRm', '5461278'), + (333, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41orQxRm', '5469480'), + (333, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41orQxRm', '5471073'), + (333, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41orQxRm', '5474663'), + (333, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41orQxRm', '5482022'), + (333, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41orQxRm', '5482793'), + (333, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41orQxRm', '5488912'), + (333, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41orQxRm', '5492192'), + (333, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41orQxRm', '5493139'), + (333, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41orQxRm', '5493200'), + (333, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41orQxRm', '5502188'), + (333, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41orQxRm', '5512862'), + (333, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41orQxRm', '5513985'), + (333, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41orQxRm', '6045684'), + (334, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'amGzQpKd', '3149489'), + (334, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'amGzQpKd', '3236450'), + (334, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'amGzQpKd', '3236452'), + (334, 648, 'attending', '2021-05-28 22:24:26', '2025-12-17 19:47:47', 'amGzQpKd', '3539923'), + (334, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'amGzQpKd', '3963335'), + (334, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGzQpKd', '3975311'), + (334, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amGzQpKd', '3994992'), + (334, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGzQpKd', '4014338'), + (334, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGzQpKd', '6045684'), + (335, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6jpBVRm', '5630960'), + (335, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6jpBVRm', '5630961'), + (335, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6jpBVRm', '5630962'), + (335, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6jpBVRm', '5635406'), + (335, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6jpBVRm', '5638765'), + (335, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6jpBVRm', '5640097'), + (335, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm6jpBVRm', '5640843'), + (335, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6jpBVRm', '5641521'), + (335, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6jpBVRm', '5652395'), + (335, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6jpBVRm', '5671637'), + (335, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6jpBVRm', '5672329'), + (335, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6jpBVRm', '5674057'), + (335, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6jpBVRm', '5674060'), + (335, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6jpBVRm', '5677461'), + (335, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6jpBVRm', '6045684'), + (336, 951, 'attending', '2021-08-27 00:10:22', '2025-12-17 19:47:43', 'd9nXgXJm', '4315731'), + (336, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd9nXgXJm', '4356801'), + (336, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'd9nXgXJm', '4366187'), + (336, 990, 'attending', '2021-09-01 22:52:56', '2025-12-17 19:47:43', 'd9nXgXJm', '4420735'), + (336, 991, 'attending', '2021-09-11 20:05:35', '2025-12-17 19:47:43', 'd9nXgXJm', '4420738'), + (336, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'd9nXgXJm', '4420739'), + (336, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'd9nXgXJm', '4420741'), + (336, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'd9nXgXJm', '4420744'), + (336, 996, 'attending', '2021-10-11 19:26:22', '2025-12-17 19:47:35', 'd9nXgXJm', '4420747'), + (336, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'd9nXgXJm', '4420748'), + (336, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'd9nXgXJm', '4420749'), + (336, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'd9nXgXJm', '4461883'), + (336, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'd9nXgXJm', '4508342'), + (336, 1077, 'attending', '2021-10-11 19:26:36', '2025-12-17 19:47:34', 'd9nXgXJm', '4540903'), + (336, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd9nXgXJm', '4568602'), + (336, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd9nXgXJm', '6045684'), + (337, 1116, 'maybe', '2021-11-30 03:06:24', '2025-12-17 19:47:37', 'mjn99L0m', '4642994'), + (337, 1117, 'attending', '2021-12-09 00:36:14', '2025-12-17 19:47:37', 'mjn99L0m', '4642995'), + (337, 1118, 'attending', '2021-12-16 00:36:07', '2025-12-17 19:47:38', 'mjn99L0m', '4642996'), + (337, 1119, 'not_attending', '2021-12-23 00:54:56', '2025-12-17 19:47:31', 'mjn99L0m', '4642997'), + (337, 1122, 'not_attending', '2021-11-29 16:35:05', '2025-12-17 19:47:37', 'mjn99L0m', '4644023'), + (337, 1126, 'attending', '2021-12-11 21:39:53', '2025-12-17 19:47:38', 'mjn99L0m', '4645687'), + (337, 1130, 'attending', '2021-12-03 14:39:50', '2025-12-17 19:47:37', 'mjn99L0m', '4658824'), + (337, 1131, 'not_attending', '2021-12-23 00:53:49', '2025-12-17 19:47:31', 'mjn99L0m', '4658825'), + (337, 1138, 'attending', '2021-11-29 16:35:09', '2025-12-17 19:47:37', 'mjn99L0m', '4675407'), + (337, 1139, 'attending', '2021-11-30 15:44:28', '2025-12-17 19:47:37', 'mjn99L0m', '4675604'), + (337, 1140, 'attending', '2021-11-30 04:32:07', '2025-12-17 19:47:37', 'mjn99L0m', '4679701'), + (337, 1142, 'attending', '2021-12-05 04:30:37', '2025-12-17 19:47:37', 'mjn99L0m', '4681923'), + (337, 1143, 'attending', '2021-12-02 00:52:19', '2025-12-17 19:47:37', 'mjn99L0m', '4683667'), + (337, 1144, 'not_attending', '2021-12-07 23:13:29', '2025-12-17 19:47:37', 'mjn99L0m', '4687090'), + (337, 1145, 'attending', '2021-12-06 14:27:03', '2025-12-17 19:47:38', 'mjn99L0m', '4691157'), + (337, 1146, 'attending', '2021-12-07 03:01:09', '2025-12-17 19:47:38', 'mjn99L0m', '4692841'), + (337, 1147, 'attending', '2021-12-12 18:21:25', '2025-12-17 19:47:38', 'mjn99L0m', '4692842'), + (337, 1148, 'attending', '2021-12-09 04:11:36', '2025-12-17 19:47:31', 'mjn99L0m', '4692843'), + (337, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mjn99L0m', '4694407'), + (337, 1151, 'not_attending', '2022-01-05 22:12:19', '2025-12-17 19:47:31', 'mjn99L0m', '4708704'), + (337, 1152, 'maybe', '2022-01-02 13:13:26', '2025-12-17 19:47:31', 'mjn99L0m', '4708705'), + (337, 1153, 'attending', '2022-01-19 23:56:12', '2025-12-17 19:47:32', 'mjn99L0m', '4708707'), + (337, 1154, 'maybe', '2022-01-02 13:13:48', '2025-12-17 19:47:32', 'mjn99L0m', '4708708'), + (337, 1158, 'attending', '2021-12-20 03:17:07', '2025-12-17 19:47:31', 'mjn99L0m', '4715311'), + (337, 1159, 'not_attending', '2022-01-05 01:06:53', '2025-12-17 19:47:31', 'mjn99L0m', '4717532'), + (337, 1162, 'not_attending', '2022-01-07 01:38:27', '2025-12-17 19:47:31', 'mjn99L0m', '4718771'), + (337, 1164, 'attending', '2021-12-29 12:47:27', '2025-12-17 19:47:31', 'mjn99L0m', '4724208'), + (337, 1165, 'attending', '2021-12-29 12:47:29', '2025-12-17 19:47:31', 'mjn99L0m', '4724210'), + (337, 1166, 'not_attending', '2022-01-04 16:31:55', '2025-12-17 19:47:31', 'mjn99L0m', '4725109'), + (337, 1170, 'not_attending', '2022-01-10 00:37:56', '2025-12-17 19:47:31', 'mjn99L0m', '4731045'), + (337, 1172, 'maybe', '2022-01-04 16:32:01', '2025-12-17 19:47:32', 'mjn99L0m', '4735348'), + (337, 1173, 'not_attending', '2022-01-08 01:59:08', '2025-12-17 19:47:31', 'mjn99L0m', '4736495'), + (337, 1174, 'not_attending', '2022-01-16 01:25:04', '2025-12-17 19:47:31', 'mjn99L0m', '4736496'), + (337, 1175, 'maybe', '2022-01-04 16:32:08', '2025-12-17 19:47:32', 'mjn99L0m', '4736497'), + (337, 1176, 'maybe', '2022-01-04 16:32:22', '2025-12-17 19:47:32', 'mjn99L0m', '4736498'), + (337, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mjn99L0m', '4736499'), + (337, 1178, 'maybe', '2022-01-04 16:32:16', '2025-12-17 19:47:32', 'mjn99L0m', '4736500'), + (337, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mjn99L0m', '4736503'), + (337, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mjn99L0m', '4736504'), + (337, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mjn99L0m', '4746789'), + (337, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mjn99L0m', '4753929'), + (337, 1192, 'attending', '2022-01-20 04:56:04', '2025-12-17 19:47:32', 'mjn99L0m', '4758745'), + (337, 1193, 'attending', '2022-01-20 04:59:51', '2025-12-17 19:47:32', 'mjn99L0m', '4759563'), + (337, 1198, 'not_attending', '2022-01-25 00:02:15', '2025-12-17 19:47:32', 'mjn99L0m', '4766801'), + (337, 1199, 'not_attending', '2022-01-25 00:02:17', '2025-12-17 19:47:32', 'mjn99L0m', '4766802'), + (337, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mjn99L0m', '5038850'), + (337, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mjn99L0m', '5045826'), + (337, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mjn99L0m', '5132533'), + (337, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mjn99L0m', '5186582'), + (337, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mjn99L0m', '5186583'), + (337, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mjn99L0m', '5186585'), + (337, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mjn99L0m', '5190437'), + (337, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mjn99L0m', '5215989'), + (337, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjn99L0m', '6045684'), + (338, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Ar08bpXd', '5630960'), + (338, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Ar08bpXd', '5630961'), + (338, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Ar08bpXd', '5630962'), + (338, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Ar08bpXd', '5630966'), + (338, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Ar08bpXd', '5635406'), + (338, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Ar08bpXd', '5638765'), + (338, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Ar08bpXd', '5640097'), + (338, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'Ar08bpXd', '5640843'), + (338, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Ar08bpXd', '5641521'), + (338, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Ar08bpXd', '5652395'), + (338, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Ar08bpXd', '5671637'), + (338, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Ar08bpXd', '5672329'), + (338, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Ar08bpXd', '5674057'), + (338, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Ar08bpXd', '5674060'), + (338, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Ar08bpXd', '5677461'), + (338, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Ar08bpXd', '5698046'), + (338, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Ar08bpXd', '5699760'), + (338, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ar08bpXd', '6045684'), + (339, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'Md3M5qZA', '3034321'), + (339, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'Md3M5qZA', '3067093'), + (339, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'Md3M5qZA', '3075228'), + (339, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'Md3M5qZA', '3075456'), + (339, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'Md3M5qZA', '3083791'), + (339, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'Md3M5qZA', '3085151'), + (339, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'Md3M5qZA', '3087265'), + (339, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', 'Md3M5qZA', '3087266'), + (339, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'Md3M5qZA', '3087267'), + (339, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'Md3M5qZA', '3087268'), + (339, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'Md3M5qZA', '3088653'), + (339, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'Md3M5qZA', '3106813'), + (339, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'Md3M5qZA', '3129980'), + (339, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'Md3M5qZA', '3132817'), + (339, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'Md3M5qZA', '3132820'), + (339, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'Md3M5qZA', '3155321'), + (339, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'Md3M5qZA', '3162006'), + (339, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'Md3M5qZA', '3163442'), + (339, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'Md3M5qZA', '3172832'), + (339, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'Md3M5qZA', '3172833'), + (339, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'Md3M5qZA', '3172834'), + (339, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'Md3M5qZA', '3172876'), + (339, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'Md3M5qZA', '3186057'), + (339, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'Md3M5qZA', '3191735'), + (339, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'Md3M5qZA', '3200209'), + (339, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', 'Md3M5qZA', '3214207'), + (339, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'Md3M5qZA', '3217037'), + (339, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'Md3M5qZA', '3218510'), + (339, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'Md3M5qZA', '3228698'), + (339, 386, 'attending', '2020-10-10 22:35:12', '2025-12-17 19:47:52', 'Md3M5qZA', '3228699'), + (339, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'Md3M5qZA', '3228700'), + (339, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'Md3M5qZA', '3228701'), + (339, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'Md3M5qZA', '3245751'), + (339, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'Md3M5qZA', '3250232'), + (339, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'Md3M5qZA', '3256168'), + (339, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'Md3M5qZA', '3263578'), + (339, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'Md3M5qZA', '3276428'), + (339, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Md3M5qZA', '3281470'), + (339, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'Md3M5qZA', '3281829'), + (339, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'Md3M5qZA', '3285413'), + (339, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Md3M5qZA', '3285414'), + (339, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Md3M5qZA', '3297764'), + (339, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Md3M5qZA', '3313856'), + (339, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Md3M5qZA', '3314909'), + (339, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Md3M5qZA', '3314964'), + (339, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'Md3M5qZA', '3323365'), + (339, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Md3M5qZA', '3329383'), + (339, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Md3M5qZA', '3351539'), + (339, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Md3M5qZA', '3386848'), + (339, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Md3M5qZA', '3389527'), + (339, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Md3M5qZA', '3396499'), + (339, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Md3M5qZA', '3403650'), + (339, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Md3M5qZA', '3406988'), + (339, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Md3M5qZA', '3416576'), + (339, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'Md3M5qZA', '3430267'), + (339, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'Md3M5qZA', '3470305'), + (339, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Md3M5qZA', '3470991'), + (339, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'Md3M5qZA', '3517815'), + (339, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'Md3M5qZA', '3517816'), + (339, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'Md3M5qZA', '3523941'), + (339, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Md3M5qZA', '3533850'), + (339, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Md3M5qZA', '3536632'), + (339, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Md3M5qZA', '3536656'), + (339, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Md3M5qZA', '3539916'), + (339, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Md3M5qZA', '3539917'), + (339, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Md3M5qZA', '3539918'), + (339, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'Md3M5qZA', '3539919'), + (339, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Md3M5qZA', '3539920'), + (339, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Md3M5qZA', '3539921'), + (339, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Md3M5qZA', '3539922'), + (339, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Md3M5qZA', '3539923'), + (339, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Md3M5qZA', '3539927'), + (339, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Md3M5qZA', '3582734'), + (339, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Md3M5qZA', '3583262'), + (339, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Md3M5qZA', '3619523'), + (339, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Md3M5qZA', '3661369'), + (339, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Md3M5qZA', '3674262'), + (339, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Md3M5qZA', '3677402'), + (339, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Md3M5qZA', '3730212'), + (339, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Md3M5qZA', '3793156'), + (339, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Md3M5qZA', '3974109'), + (339, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Md3M5qZA', '3975311'), + (339, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Md3M5qZA', '3975312'), + (339, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Md3M5qZA', '3994992'), + (339, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Md3M5qZA', '4014338'), + (339, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'Md3M5qZA', '4021848'), + (339, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Md3M5qZA', '4136744'), + (339, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Md3M5qZA', '4136937'), + (339, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Md3M5qZA', '4136938'), + (339, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Md3M5qZA', '4136947'), + (339, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Md3M5qZA', '4210314'), + (339, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Md3M5qZA', '4225444'), + (339, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Md3M5qZA', '4239259'), + (339, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Md3M5qZA', '4240316'), + (339, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Md3M5qZA', '4240317'), + (339, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Md3M5qZA', '4240318'), + (339, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Md3M5qZA', '4240320'), + (339, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Md3M5qZA', '4250163'), + (339, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Md3M5qZA', '4275957'), + (339, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Md3M5qZA', '4277819'), + (339, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Md3M5qZA', '4301723'), + (339, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Md3M5qZA', '4302093'), + (339, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Md3M5qZA', '4304151'), + (339, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Md3M5qZA', '4356801'), + (339, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Md3M5qZA', '4366186'), + (339, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Md3M5qZA', '4366187'), + (339, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Md3M5qZA', '4420735'), + (339, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Md3M5qZA', '4420738'), + (339, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Md3M5qZA', '4420739'), + (339, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Md3M5qZA', '4420741'), + (339, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Md3M5qZA', '4420744'), + (339, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Md3M5qZA', '4420747'), + (339, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Md3M5qZA', '4420748'), + (339, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Md3M5qZA', '4420749'), + (339, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Md3M5qZA', '4461883'), + (339, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Md3M5qZA', '4508342'), + (339, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Md3M5qZA', '4568602'), + (339, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Md3M5qZA', '4572153'), + (339, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Md3M5qZA', '4585962'), + (339, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Md3M5qZA', '4596356'), + (339, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Md3M5qZA', '4598860'), + (339, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Md3M5qZA', '4598861'), + (339, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Md3M5qZA', '4602797'), + (339, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Md3M5qZA', '4637896'), + (339, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Md3M5qZA', '4642994'), + (339, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Md3M5qZA', '4642995'), + (339, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Md3M5qZA', '4642996'), + (339, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Md3M5qZA', '4642997'), + (339, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Md3M5qZA', '4645687'), + (339, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Md3M5qZA', '4645698'), + (339, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Md3M5qZA', '4645704'), + (339, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Md3M5qZA', '4645705'), + (339, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Md3M5qZA', '4668385'), + (339, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Md3M5qZA', '4694407'), + (339, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Md3M5qZA', '4736497'), + (339, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Md3M5qZA', '4736499'), + (339, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Md3M5qZA', '4736500'), + (339, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Md3M5qZA', '4736503'), + (339, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Md3M5qZA', '4736504'), + (339, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Md3M5qZA', '4746789'), + (339, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'Md3M5qZA', '4753929'), + (339, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Md3M5qZA', '5038850'), + (339, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Md3M5qZA', '5045826'), + (339, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Md3M5qZA', '5132533'), + (339, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Md3M5qZA', '5186582'), + (339, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Md3M5qZA', '5186583'), + (339, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Md3M5qZA', '5186585'), + (339, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Md3M5qZA', '5190437'), + (339, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Md3M5qZA', '5195095'), + (339, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Md3M5qZA', '5215989'), + (339, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Md3M5qZA', '5223686'), + (339, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Md3M5qZA', '5247467'), + (339, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Md3M5qZA', '5260800'), + (339, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Md3M5qZA', '5269930'), + (339, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Md3M5qZA', '5271448'), + (339, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'Md3M5qZA', '5271449'), + (339, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Md3M5qZA', '5278159'), + (339, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Md3M5qZA', '5363695'), + (339, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Md3M5qZA', '5365960'), + (339, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Md3M5qZA', '5378247'), + (339, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Md3M5qZA', '5389605'), + (339, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Md3M5qZA', '5397265'), + (339, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Md3M5qZA', '5404786'), + (339, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Md3M5qZA', '5405203'), + (339, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Md3M5qZA', '5412550'), + (339, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Md3M5qZA', '5415046'), + (339, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Md3M5qZA', '5422086'), + (339, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Md3M5qZA', '5422406'), + (339, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Md3M5qZA', '5424565'), + (339, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Md3M5qZA', '5426882'), + (339, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Md3M5qZA', '5441125'), + (339, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Md3M5qZA', '5441126'), + (339, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Md3M5qZA', '5441128'), + (339, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Md3M5qZA', '5441131'), + (339, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Md3M5qZA', '5441132'), + (339, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Md3M5qZA', '5453325'), + (339, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Md3M5qZA', '5454516'), + (339, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Md3M5qZA', '5454605'), + (339, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Md3M5qZA', '5455037'), + (339, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Md3M5qZA', '5461278'), + (339, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Md3M5qZA', '5469480'), + (339, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Md3M5qZA', '5474663'), + (339, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Md3M5qZA', '5482022'), + (339, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Md3M5qZA', '5488912'), + (339, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Md3M5qZA', '5492192'), + (339, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Md3M5qZA', '5493139'), + (339, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Md3M5qZA', '5493200'), + (339, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Md3M5qZA', '5502188'), + (339, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Md3M5qZA', '5505059'), + (339, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Md3M5qZA', '5509055'), + (339, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Md3M5qZA', '5512862'), + (339, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Md3M5qZA', '5513985'), + (339, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'Md3M5qZA', '5519981'), + (339, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Md3M5qZA', '5522550'), + (339, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Md3M5qZA', '5534683'), + (339, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Md3M5qZA', '5537735'), + (339, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Md3M5qZA', '5540859'), + (339, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Md3M5qZA', '5546619'), + (339, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Md3M5qZA', '5557747'), + (339, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Md3M5qZA', '5560255'), + (339, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Md3M5qZA', '5562906'), + (339, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Md3M5qZA', '5600604'), + (339, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Md3M5qZA', '5605544'), + (339, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Md3M5qZA', '5630960'), + (339, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Md3M5qZA', '5630961'), + (339, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Md3M5qZA', '5630962'), + (339, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Md3M5qZA', '5630966'), + (339, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Md3M5qZA', '5630967'), + (339, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Md3M5qZA', '5630968'), + (339, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Md3M5qZA', '5635406'), + (339, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Md3M5qZA', '5638765'), + (339, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Md3M5qZA', '5640097'), + (339, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Md3M5qZA', '5640843'), + (339, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Md3M5qZA', '5641521'), + (339, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Md3M5qZA', '5642818'), + (339, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Md3M5qZA', '5652395'), + (339, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Md3M5qZA', '5670445'), + (339, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Md3M5qZA', '5671637'), + (339, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Md3M5qZA', '5672329'), + (339, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Md3M5qZA', '5674057'), + (339, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Md3M5qZA', '5674060'), + (339, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Md3M5qZA', '5677461'), + (339, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Md3M5qZA', '5698046'), + (339, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Md3M5qZA', '5699760'), + (339, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Md3M5qZA', '5741601'), + (339, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Md3M5qZA', '5763458'), + (339, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Md3M5qZA', '5774172'), + (339, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'Md3M5qZA', '5818247'), + (339, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Md3M5qZA', '5819471'), + (339, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'Md3M5qZA', '5827739'), + (339, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Md3M5qZA', '5844306'), + (339, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Md3M5qZA', '5850159'), + (339, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Md3M5qZA', '5858999'), + (339, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Md3M5qZA', '5871984'), + (339, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Md3M5qZA', '5876354'), + (339, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Md3M5qZA', '5880939'), + (339, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Md3M5qZA', '5880940'), + (339, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Md3M5qZA', '5880942'), + (339, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Md3M5qZA', '5880943'), + (339, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Md3M5qZA', '5887890'), + (339, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Md3M5qZA', '5888598'), + (339, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Md3M5qZA', '5893260'), + (339, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Md3M5qZA', '5899826'), + (339, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Md3M5qZA', '5900199'), + (339, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Md3M5qZA', '5900200'), + (339, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Md3M5qZA', '5900202'), + (339, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Md3M5qZA', '5900203'), + (339, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Md3M5qZA', '5901108'), + (339, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Md3M5qZA', '5901126'), + (339, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Md3M5qZA', '5909655'), + (339, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Md3M5qZA', '5910522'), + (339, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Md3M5qZA', '5910526'), + (339, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Md3M5qZA', '5910528'), + (339, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Md3M5qZA', '5916219'), + (339, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Md3M5qZA', '5936234'), + (339, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Md3M5qZA', '5958351'), + (339, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Md3M5qZA', '5959751'), + (339, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Md3M5qZA', '5959755'), + (339, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Md3M5qZA', '5960055'), + (339, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Md3M5qZA', '5961684'), + (339, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Md3M5qZA', '5962132'), + (339, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Md3M5qZA', '5962133'), + (339, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Md3M5qZA', '5962134'), + (339, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Md3M5qZA', '5962317'), + (339, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Md3M5qZA', '5962318'), + (339, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Md3M5qZA', '5965933'), + (339, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Md3M5qZA', '5967014'), + (339, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Md3M5qZA', '5972815'), + (339, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Md3M5qZA', '5974016'), + (339, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Md3M5qZA', '5981515'), + (339, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Md3M5qZA', '5993516'), + (339, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Md3M5qZA', '5998939'), + (339, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Md3M5qZA', '6028191'), + (339, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Md3M5qZA', '6040066'), + (339, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Md3M5qZA', '6042717'), + (339, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Md3M5qZA', '6044838'), + (339, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Md3M5qZA', '6044839'), + (339, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Md3M5qZA', '6045684'), + (339, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Md3M5qZA', '6050104'), + (339, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Md3M5qZA', '6053195'), + (339, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Md3M5qZA', '6053198'), + (339, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Md3M5qZA', '6056085'), + (339, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Md3M5qZA', '6056916'), + (339, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Md3M5qZA', '6059290'), + (339, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Md3M5qZA', '6060328'), + (339, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Md3M5qZA', '6061037'), + (339, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Md3M5qZA', '6061039'), + (339, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Md3M5qZA', '6067245'), + (339, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Md3M5qZA', '6068094'), + (339, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Md3M5qZA', '6068252'), + (339, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Md3M5qZA', '6068253'), + (339, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Md3M5qZA', '6068254'), + (339, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Md3M5qZA', '6068280'), + (339, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Md3M5qZA', '6069093'), + (339, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Md3M5qZA', '6072528'), + (339, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Md3M5qZA', '6079840'), + (339, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Md3M5qZA', '6083398'), + (339, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Md3M5qZA', '6093504'), + (339, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Md3M5qZA', '6097414'), + (339, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Md3M5qZA', '6097442'), + (339, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Md3M5qZA', '6097684'), + (339, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Md3M5qZA', '6098762'), + (339, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Md3M5qZA', '6101361'), + (339, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Md3M5qZA', '6101362'), + (339, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Md3M5qZA', '6107314'), + (339, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Md3M5qZA', '6120034'), + (339, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'Md3M5qZA', '6136733'), + (339, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Md3M5qZA', '6137989'), + (339, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Md3M5qZA', '6150864'), + (339, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Md3M5qZA', '6155491'), + (339, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Md3M5qZA', '6164417'), + (339, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Md3M5qZA', '6166388'), + (339, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Md3M5qZA', '6176439'), + (339, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Md3M5qZA', '6182410'), + (339, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Md3M5qZA', '6185812'), + (339, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Md3M5qZA', '6187651'), + (339, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Md3M5qZA', '6187963'), + (339, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Md3M5qZA', '6187964'), + (339, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Md3M5qZA', '6187966'), + (339, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Md3M5qZA', '6187967'), + (339, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Md3M5qZA', '6187969'), + (339, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Md3M5qZA', '6334878'), + (339, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Md3M5qZA', '6337236'), + (339, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Md3M5qZA', '6337970'), + (339, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Md3M5qZA', '6338308'), + (339, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Md3M5qZA', '6341710'), + (339, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Md3M5qZA', '6342044'), + (339, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Md3M5qZA', '6342298'), + (339, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Md3M5qZA', '6343294'), + (339, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Md3M5qZA', '6347034'), + (339, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Md3M5qZA', '6347056'), + (339, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Md3M5qZA', '6353830'), + (339, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Md3M5qZA', '6353831'), + (339, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Md3M5qZA', '6357867'), + (339, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Md3M5qZA', '6358652'), + (339, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Md3M5qZA', '6361709'), + (339, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Md3M5qZA', '6361710'), + (339, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Md3M5qZA', '6361711'), + (339, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Md3M5qZA', '6361712'), + (339, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Md3M5qZA', '6361713'), + (339, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'Md3M5qZA', '6382573'), + (339, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Md3M5qZA', '6388604'), + (339, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Md3M5qZA', '6394629'), + (339, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Md3M5qZA', '6394631'), + (339, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Md3M5qZA', '6440863'), + (339, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Md3M5qZA', '6445440'), + (339, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Md3M5qZA', '6453951'), + (339, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Md3M5qZA', '6461696'), + (339, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Md3M5qZA', '6462129'), + (339, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Md3M5qZA', '6463218'), + (339, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Md3M5qZA', '6472181'), + (339, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Md3M5qZA', '6482693'), + (339, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Md3M5qZA', '6484200'), + (339, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Md3M5qZA', '6484680'), + (339, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Md3M5qZA', '6507741'), + (339, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Md3M5qZA', '6514659'), + (339, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Md3M5qZA', '6514660'), + (339, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Md3M5qZA', '6519103'), + (339, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Md3M5qZA', '6535681'), + (339, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Md3M5qZA', '6584747'), + (339, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Md3M5qZA', '6587097'), + (339, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Md3M5qZA', '6609022'), + (339, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'Md3M5qZA', '6632757'), + (339, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Md3M5qZA', '6644187'), + (339, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Md3M5qZA', '6648951'), + (339, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Md3M5qZA', '6648952'), + (339, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Md3M5qZA', '6655401'), + (339, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Md3M5qZA', '6661585'), + (339, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Md3M5qZA', '6661588'), + (339, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Md3M5qZA', '6661589'), + (339, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Md3M5qZA', '6699906'), + (339, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Md3M5qZA', '6699913'), + (339, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Md3M5qZA', '6701109'), + (339, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Md3M5qZA', '6705219'), + (339, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Md3M5qZA', '6710153'), + (339, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Md3M5qZA', '6711552'), + (339, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'Md3M5qZA', '6711553'), + (339, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Md3M5qZA', '6722688'), + (339, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Md3M5qZA', '6730620'), + (339, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Md3M5qZA', '6740364'), + (339, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Md3M5qZA', '6743829'), + (339, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Md3M5qZA', '7030380'), + (339, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'Md3M5qZA', '7033677'), + (339, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Md3M5qZA', '7044715'), + (339, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Md3M5qZA', '7050318'), + (339, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Md3M5qZA', '7050319'), + (339, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Md3M5qZA', '7050322'), + (339, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Md3M5qZA', '7057804'), + (339, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Md3M5qZA', '7072824'), + (339, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Md3M5qZA', '7074348'), + (339, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Md3M5qZA', '7074364'), + (339, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Md3M5qZA', '7089267'), + (339, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Md3M5qZA', '7098747'), + (339, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Md3M5qZA', '7113468'), + (339, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Md3M5qZA', '7114856'), + (339, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Md3M5qZA', '7114951'), + (339, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Md3M5qZA', '7114955'), + (339, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Md3M5qZA', '7114956'), + (339, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Md3M5qZA', '7114957'), + (339, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Md3M5qZA', '7159484'), + (339, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Md3M5qZA', '7178446'), + (339, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'Md3M5qZA', '7220467'), + (339, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Md3M5qZA', '7240354'), + (339, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Md3M5qZA', '7251633'), + (339, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Md3M5qZA', '7324073'), + (339, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Md3M5qZA', '7324074'), + (339, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Md3M5qZA', '7324075'), + (339, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Md3M5qZA', '7324078'), + (339, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Md3M5qZA', '7324082'), + (339, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Md3M5qZA', '7331457'), + (339, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Md3M5qZA', '7363643'), + (339, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Md3M5qZA', '7368606'), + (339, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Md3M5qZA', '7397462'), + (339, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Md3M5qZA', '7424275'), + (339, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Md3M5qZA', '7432751'), + (339, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Md3M5qZA', '7432752'), + (339, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Md3M5qZA', '7432753'), + (339, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Md3M5qZA', '7432754'), + (339, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Md3M5qZA', '7432755'), + (339, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Md3M5qZA', '7432756'), + (339, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Md3M5qZA', '7432758'), + (339, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Md3M5qZA', '7432759'), + (339, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Md3M5qZA', '7433834'), + (339, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'Md3M5qZA', '7470197'), + (339, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Md3M5qZA', '7685613'), + (339, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Md3M5qZA', '7688194'), + (339, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Md3M5qZA', '7688196'), + (339, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Md3M5qZA', '7688289'), + (339, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Md3M5qZA', '7692763'), + (339, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Md3M5qZA', '7697552'), + (339, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Md3M5qZA', '7699878'), + (339, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Md3M5qZA', '7704043'), + (339, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Md3M5qZA', '7712467'), + (339, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Md3M5qZA', '7713585'), + (339, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Md3M5qZA', '7713586'), + (339, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Md3M5qZA', '7738518'), + (339, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Md3M5qZA', '7750636'), + (339, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Md3M5qZA', '7796540'), + (339, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Md3M5qZA', '7796541'), + (339, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Md3M5qZA', '7796542'), + (339, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Md3M5qZA', '7825913'), + (339, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Md3M5qZA', '7826209'), + (339, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Md3M5qZA', '7834742'), + (339, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Md3M5qZA', '7842108'), + (339, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Md3M5qZA', '7842902'), + (339, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Md3M5qZA', '7842903'), + (339, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Md3M5qZA', '7842904'), + (339, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Md3M5qZA', '7842905'), + (339, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Md3M5qZA', '7855719'), + (339, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Md3M5qZA', '7860683'), + (339, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Md3M5qZA', '7860684'), + (339, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Md3M5qZA', '7866095'), + (339, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Md3M5qZA', '7869170'), + (339, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Md3M5qZA', '7869188'), + (339, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Md3M5qZA', '7869201'), + (339, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Md3M5qZA', '7877465'), + (339, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Md3M5qZA', '7888250'), + (339, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Md3M5qZA', '7904777'), + (339, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Md3M5qZA', '8349164'), + (339, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Md3M5qZA', '8349545'), + (339, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Md3M5qZA', '8368028'), + (339, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Md3M5qZA', '8368029'), + (339, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Md3M5qZA', '8388462'), + (339, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Md3M5qZA', '8400273'), + (339, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Md3M5qZA', '8400275'), + (339, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'Md3M5qZA', '8400276'), + (339, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Md3M5qZA', '8404977'), + (339, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Md3M5qZA', '8430783'), + (339, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Md3M5qZA', '8430784'), + (339, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Md3M5qZA', '8430799'), + (339, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Md3M5qZA', '8430800'), + (339, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Md3M5qZA', '8430801'), + (339, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Md3M5qZA', '8438709'), + (339, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Md3M5qZA', '8457738'), + (339, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Md3M5qZA', '8459566'), + (339, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Md3M5qZA', '8459567'), + (339, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Md3M5qZA', '8461032'), + (339, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Md3M5qZA', '8477877'), + (339, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Md3M5qZA', '8485688'), + (339, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Md3M5qZA', '8490587'), + (339, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Md3M5qZA', '8493552'), + (339, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Md3M5qZA', '8493553'), + (339, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Md3M5qZA', '8493554'), + (339, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Md3M5qZA', '8493555'), + (339, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Md3M5qZA', '8493556'), + (339, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Md3M5qZA', '8493557'), + (339, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Md3M5qZA', '8493558'), + (339, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Md3M5qZA', '8493559'), + (339, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Md3M5qZA', '8493560'), + (339, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Md3M5qZA', '8493561'), + (339, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Md3M5qZA', '8493572'), + (339, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Md3M5qZA', '8540725'), + (339, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Md3M5qZA', '8555421'), + (340, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dVZgwN5d', '8438709'), + (340, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVZgwN5d', '8457738'), + (340, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVZgwN5d', '8459566'), + (340, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVZgwN5d', '8459567'), + (340, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVZgwN5d', '8461032'), + (340, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVZgwN5d', '8477877'), + (340, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dVZgwN5d', '8485688'), + (340, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dVZgwN5d', '8490587'), + (340, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVZgwN5d', '8493552'), + (340, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dVZgwN5d', '8493553'), + (340, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVZgwN5d', '8493554'), + (340, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVZgwN5d', '8493555'), + (340, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVZgwN5d', '8493556'), + (340, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVZgwN5d', '8493557'), + (340, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVZgwN5d', '8493558'), + (340, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVZgwN5d', '8493559'), + (340, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVZgwN5d', '8493560'), + (340, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dVZgwN5d', '8493561'), + (340, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVZgwN5d', '8493572'), + (340, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'dVZgwN5d', '8529058'), + (341, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dxDpDg2d', '4210314'), + (341, 893, 'not_attending', '2021-07-25 03:12:15', '2025-12-17 19:47:40', 'dxDpDg2d', '4229420'), + (341, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'dxDpDg2d', '4240317'), + (341, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'dxDpDg2d', '4240318'), + (341, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'dxDpDg2d', '4240320'), + (341, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'dxDpDg2d', '4277819'), + (341, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'dxDpDg2d', '4301723'), + (341, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'dxDpDg2d', '4302093'), + (341, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dxDpDg2d', '4304151'), + (341, 940, 'not_attending', '2021-07-30 16:29:40', '2025-12-17 19:47:40', 'dxDpDg2d', '4309049'), + (341, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'dxDpDg2d', '4315713'), + (341, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'dxDpDg2d', '4315714'), + (341, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'dxDpDg2d', '4315726'), + (341, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dxDpDg2d', '4356801'), + (341, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dxDpDg2d', '4366186'), + (341, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dxDpDg2d', '4366187'), + (341, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dxDpDg2d', '4420735'), + (341, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dxDpDg2d', '4420738'), + (341, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dxDpDg2d', '4420739'), + (341, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dxDpDg2d', '4420741'), + (341, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dxDpDg2d', '4420744'), + (341, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dxDpDg2d', '4420747'), + (341, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dxDpDg2d', '4420748'), + (341, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dxDpDg2d', '4420749'), + (341, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dxDpDg2d', '4461883'), + (341, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dxDpDg2d', '4508342'), + (341, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dxDpDg2d', '4568602'), + (341, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dxDpDg2d', '4572153'), + (341, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dxDpDg2d', '4585962'), + (341, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dxDpDg2d', '4596356'), + (341, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dxDpDg2d', '4598860'), + (341, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dxDpDg2d', '4598861'), + (341, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dxDpDg2d', '4602797'), + (341, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dxDpDg2d', '4637896'), + (341, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dxDpDg2d', '4642994'), + (341, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dxDpDg2d', '4642995'), + (341, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dxDpDg2d', '4642996'), + (341, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dxDpDg2d', '4642997'), + (341, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dxDpDg2d', '4645687'), + (341, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dxDpDg2d', '4645698'), + (341, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dxDpDg2d', '4645704'), + (341, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dxDpDg2d', '4645705'), + (341, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dxDpDg2d', '4668385'), + (341, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dxDpDg2d', '6045684'), + (342, 2133, 'not_attending', '2023-07-08 22:22:33', '2025-12-17 19:46:51', '4olZMeZd', '6187651'), + (342, 2134, 'attending', '2023-07-07 22:58:05', '2025-12-17 19:46:52', '4olZMeZd', '6187963'), + (342, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4olZMeZd', '6334878'), + (342, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', '4olZMeZd', '6334903'), + (342, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4olZMeZd', '6337236'), + (342, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4olZMeZd', '6337970'), + (342, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4olZMeZd', '6338308'), + (342, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4olZMeZd', '6341710'), + (342, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4olZMeZd', '6342044'), + (342, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4olZMeZd', '6342298'), + (342, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', '4olZMeZd', '6342591'), + (342, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4olZMeZd', '6343294'), + (342, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4olZMeZd', '6347034'), + (342, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4olZMeZd', '6347056'), + (342, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4olZMeZd', '6353830'), + (342, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4olZMeZd', '6353831'), + (342, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4olZMeZd', '6357867'), + (342, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4olZMeZd', '6358652'), + (342, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4olZMeZd', '6361709'), + (342, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4olZMeZd', '6361710'), + (342, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4olZMeZd', '6361711'), + (342, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4olZMeZd', '6361712'), + (342, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4olZMeZd', '6361713'), + (342, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4olZMeZd', '6382573'), + (342, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4olZMeZd', '6388604'), + (342, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4olZMeZd', '6394629'), + (342, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4olZMeZd', '6394631'), + (342, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4olZMeZd', '6431478'), + (343, 1668, 'not_attending', '2022-10-01 18:02:02', '2025-12-17 19:47:12', 'dwpXRp0m', '5563222'), + (343, 1730, 'attending', '2022-10-07 15:33:12', '2025-12-17 19:47:12', 'dwpXRp0m', '5634666'), + (343, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dwpXRp0m', '5635406'), + (343, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dwpXRp0m', '5638765'), + (343, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dwpXRp0m', '5640843'), + (343, 1742, 'attending', '2022-10-12 21:00:22', '2025-12-17 19:47:13', 'dwpXRp0m', '5641245'), + (343, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dwpXRp0m', '5641521'), + (343, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dwpXRp0m', '5652395'), + (343, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dwpXRp0m', '6045684'), + (344, 1379, 'not_attending', '2022-05-19 23:42:22', '2025-12-17 19:47:30', 'dl3z7pl4', '5271449'), + (344, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dl3z7pl4', '5365960'), + (344, 1409, 'not_attending', '2022-05-21 22:24:17', '2025-12-17 19:47:30', 'dl3z7pl4', '5367032'), + (344, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dl3z7pl4', '5368973'), + (344, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dl3z7pl4', '5378247'), + (344, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dl3z7pl4', '5389605'), + (344, 1432, 'attending', '2022-05-30 22:32:23', '2025-12-17 19:47:30', 'dl3z7pl4', '5391566'), + (344, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dl3z7pl4', '5397265'), + (344, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dl3z7pl4', '5403967'), + (344, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dl3z7pl4', '5404786'), + (344, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dl3z7pl4', '5405203'), + (344, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dl3z7pl4', '5408794'), + (344, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dl3z7pl4', '5411699'), + (344, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dl3z7pl4', '5412550'), + (344, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dl3z7pl4', '5415046'), + (344, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dl3z7pl4', '5422086'), + (344, 1498, 'attending', '2022-07-02 21:45:31', '2025-12-17 19:47:19', 'dl3z7pl4', '5422406'), + (344, 1502, 'not_attending', '2022-07-01 21:04:57', '2025-12-17 19:47:19', 'dl3z7pl4', '5424565'), + (344, 1504, 'attending', '2022-07-10 05:27:44', '2025-12-17 19:47:19', 'dl3z7pl4', '5426882'), + (344, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dl3z7pl4', '5427083'), + (344, 1511, 'attending', '2022-07-09 21:14:34', '2025-12-17 19:47:19', 'dl3z7pl4', '5437733'), + (344, 1513, 'not_attending', '2022-07-13 07:27:49', '2025-12-17 19:47:20', 'dl3z7pl4', '5441125'), + (344, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dl3z7pl4', '5441126'), + (344, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dl3z7pl4', '5441128'), + (344, 1517, 'attending', '2022-08-26 21:38:01', '2025-12-17 19:47:23', 'dl3z7pl4', '5441130'), + (344, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dl3z7pl4', '5441131'), + (344, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dl3z7pl4', '5441132'), + (344, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dl3z7pl4', '5446643'), + (344, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dl3z7pl4', '5453325'), + (344, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dl3z7pl4', '5454516'), + (344, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dl3z7pl4', '5454605'), + (344, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dl3z7pl4', '5455037'), + (344, 1556, 'attending', '2022-07-22 00:38:56', '2025-12-17 19:47:20', 'dl3z7pl4', '5457734'), + (344, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dl3z7pl4', '5461278'), + (344, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dl3z7pl4', '5469480'), + (344, 1564, 'maybe', '2022-07-25 19:02:21', '2025-12-17 19:47:21', 'dl3z7pl4', '5469890'), + (344, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dl3z7pl4', '5471073'), + (344, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dl3z7pl4', '5474663'), + (344, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dl3z7pl4', '5482022'), + (344, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dl3z7pl4', '5482793'), + (344, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dl3z7pl4', '5488912'), + (344, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dl3z7pl4', '5492192'), + (344, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dl3z7pl4', '5493139'), + (344, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dl3z7pl4', '5493200'), + (344, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dl3z7pl4', '5502188'), + (344, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dl3z7pl4', '5505059'), + (344, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dl3z7pl4', '5509055'), + (344, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dl3z7pl4', '5512862'), + (344, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dl3z7pl4', '5513985'), + (344, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dl3z7pl4', '5519981'), + (344, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dl3z7pl4', '5522550'), + (344, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dl3z7pl4', '5534683'), + (344, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dl3z7pl4', '5537735'), + (344, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dl3z7pl4', '5540859'), + (344, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dl3z7pl4', '5546619'), + (344, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dl3z7pl4', '5555245'), + (344, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dl3z7pl4', '5557747'), + (344, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dl3z7pl4', '5560255'), + (344, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dl3z7pl4', '5562906'), + (344, 1667, 'attending', '2022-09-20 01:08:56', '2025-12-17 19:47:11', 'dl3z7pl4', '5563221'), + (344, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dl3z7pl4', '5600604'), + (344, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dl3z7pl4', '5605544'), + (344, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'dl3z7pl4', '5606737'), + (344, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dl3z7pl4', '5630960'), + (344, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dl3z7pl4', '5630961'), + (344, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dl3z7pl4', '5630962'), + (344, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dl3z7pl4', '5630966'), + (344, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dl3z7pl4', '5630967'), + (344, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dl3z7pl4', '5630968'), + (344, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dl3z7pl4', '5635406'), + (344, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dl3z7pl4', '5638765'), + (344, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dl3z7pl4', '5640097'), + (344, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dl3z7pl4', '5640843'), + (344, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dl3z7pl4', '5641521'), + (344, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dl3z7pl4', '5642818'), + (344, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dl3z7pl4', '5652395'), + (344, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dl3z7pl4', '5670445'), + (344, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dl3z7pl4', '5671637'), + (344, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dl3z7pl4', '5672329'), + (344, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dl3z7pl4', '5674057'), + (344, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dl3z7pl4', '5674060'), + (344, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dl3z7pl4', '5677461'), + (344, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dl3z7pl4', '5698046'), + (344, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dl3z7pl4', '5699760'), + (344, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dl3z7pl4', '5741601'), + (344, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dl3z7pl4', '5763458'), + (344, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dl3z7pl4', '5774172'), + (344, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dl3z7pl4', '5818247'), + (344, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dl3z7pl4', '5819471'), + (344, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dl3z7pl4', '5827739'), + (344, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dl3z7pl4', '5844306'), + (344, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dl3z7pl4', '5850159'), + (344, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dl3z7pl4', '5858999'), + (344, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dl3z7pl4', '5871984'), + (344, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dl3z7pl4', '5876354'), + (344, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dl3z7pl4', '5880939'), + (344, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dl3z7pl4', '5887890'), + (344, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dl3z7pl4', '5888598'), + (344, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dl3z7pl4', '5893260'), + (344, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dl3z7pl4', '6045684'), + (345, 258, 'not_attending', '2021-05-30 13:09:41', '2025-12-17 19:47:47', 'VdxEKg5m', '3149489'), + (345, 397, 'maybe', '2021-05-21 22:42:11', '2025-12-17 19:47:47', 'VdxEKg5m', '3236452'), + (345, 647, 'maybe', '2021-05-22 21:07:51', '2025-12-17 19:47:47', 'VdxEKg5m', '3539922'), + (345, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'VdxEKg5m', '3539923'), + (345, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'VdxEKg5m', '3963335'), + (345, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'VdxEKg5m', '3974109'), + (345, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VdxEKg5m', '3975311'), + (345, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VdxEKg5m', '3975312'), + (345, 829, 'attending', '2021-05-31 01:52:38', '2025-12-17 19:47:47', 'VdxEKg5m', '3976202'), + (345, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VdxEKg5m', '3994992'), + (345, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VdxEKg5m', '4014338'), + (345, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'VdxEKg5m', '4021848'), + (345, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VdxEKg5m', '4136744'), + (345, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'VdxEKg5m', '4136937'), + (345, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'VdxEKg5m', '4136938'), + (345, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VdxEKg5m', '4136947'), + (345, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'VdxEKg5m', '4210314'), + (345, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VdxEKg5m', '4225444'), + (345, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VdxEKg5m', '4239259'), + (345, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'VdxEKg5m', '4240316'), + (345, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'VdxEKg5m', '4240317'), + (345, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'VdxEKg5m', '4240318'), + (345, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'VdxEKg5m', '4240320'), + (345, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VdxEKg5m', '4250163'), + (345, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'VdxEKg5m', '4275957'), + (345, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'VdxEKg5m', '4277819'), + (345, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'VdxEKg5m', '4301723'), + (345, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VdxEKg5m', '4302093'), + (345, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VdxEKg5m', '4304151'), + (345, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'VdxEKg5m', '4345519'), + (345, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VdxEKg5m', '4356801'), + (345, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'VdxEKg5m', '4358025'), + (345, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'VdxEKg5m', '4366186'), + (345, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'VdxEKg5m', '4366187'), + (345, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'VdxEKg5m', '4402823'), + (345, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'VdxEKg5m', '4420735'), + (345, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'VdxEKg5m', '4420738'), + (345, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'VdxEKg5m', '4420739'), + (345, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'VdxEKg5m', '4420741'), + (345, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'VdxEKg5m', '4420744'), + (345, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'VdxEKg5m', '4420747'), + (345, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'VdxEKg5m', '4420748'), + (345, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'VdxEKg5m', '4420749'), + (345, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VdxEKg5m', '4461883'), + (345, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'VdxEKg5m', '4508342'), + (345, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'VdxEKg5m', '4568602'), + (345, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'VdxEKg5m', '4572153'), + (345, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VdxEKg5m', '4585962'), + (345, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VdxEKg5m', '4596356'), + (345, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VdxEKg5m', '4598860'), + (345, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'VdxEKg5m', '4598861'), + (345, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'VdxEKg5m', '4602797'), + (345, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'VdxEKg5m', '4637896'), + (345, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'VdxEKg5m', '4642994'), + (345, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'VdxEKg5m', '4642995'), + (345, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'VdxEKg5m', '4642996'), + (345, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'VdxEKg5m', '4642997'), + (345, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'VdxEKg5m', '4645687'), + (345, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'VdxEKg5m', '4645698'), + (345, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'VdxEKg5m', '4645704'), + (345, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'VdxEKg5m', '4645705'), + (345, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VdxEKg5m', '4668385'), + (345, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VdxEKg5m', '4694407'), + (345, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'VdxEKg5m', '4736497'), + (345, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'VdxEKg5m', '4736499'), + (345, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'VdxEKg5m', '4736500'), + (345, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'VdxEKg5m', '4736503'), + (345, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'VdxEKg5m', '4736504'), + (345, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VdxEKg5m', '4746789'), + (345, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'VdxEKg5m', '4753929'), + (345, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VdxEKg5m', '5038850'), + (345, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VdxEKg5m', '5045826'), + (345, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VdxEKg5m', '5132533'), + (345, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'VdxEKg5m', '5186582'), + (345, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'VdxEKg5m', '5186583'), + (345, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'VdxEKg5m', '5186585'), + (345, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'VdxEKg5m', '5190437'), + (345, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'VdxEKg5m', '5215989'), + (345, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxEKg5m', '6045684'), + (346, 258, 'attending', '2021-06-27 19:08:03', '2025-12-17 19:47:47', 'LmpkKKkd', '3149489'), + (346, 262, 'attending', '2021-06-27 22:27:27', '2025-12-17 19:47:38', 'LmpkKKkd', '3149493'), + (346, 869, 'maybe', '2021-06-30 09:56:05', '2025-12-17 19:47:38', 'LmpkKKkd', '4136744'), + (346, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'LmpkKKkd', '4136937'), + (346, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'LmpkKKkd', '4136938'), + (346, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'LmpkKKkd', '4136947'), + (346, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpkKKkd', '4210314'), + (346, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpkKKkd', '4225444'), + (346, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpkKKkd', '4239259'), + (346, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'LmpkKKkd', '4240316'), + (346, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpkKKkd', '4250163'), + (346, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'LmpkKKkd', '4275957'), + (346, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpkKKkd', '6045684'), + (347, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Md3Q1OLA', '7113468'), + (347, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Md3Q1OLA', '7114856'), + (347, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'Md3Q1OLA', '7114951'), + (347, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'Md3Q1OLA', '7153615'), + (347, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Md3Q1OLA', '7159484'), + (347, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Md3Q1OLA', '7178446'), + (348, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dNMo8z74', '4356801'), + (348, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'dNMo8z74', '4366187'), + (348, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dNMo8z74', '4420735'), + (348, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dNMo8z74', '4420738'), + (348, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dNMo8z74', '4420739'), + (348, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dNMo8z74', '4420741'), + (348, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dNMo8z74', '4420744'), + (348, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dNMo8z74', '4420747'), + (348, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dNMo8z74', '4420748'), + (348, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dNMo8z74', '4420749'), + (348, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dNMo8z74', '4461883'), + (348, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dNMo8z74', '4508342'), + (348, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dNMo8z74', '4568602'), + (348, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dNMo8z74', '4572153'), + (348, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dNMo8z74', '4585962'), + (348, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dNMo8z74', '4596356'), + (348, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dNMo8z74', '4598860'), + (348, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dNMo8z74', '4598861'), + (348, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dNMo8z74', '4602797'), + (348, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dNMo8z74', '4637896'), + (348, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dNMo8z74', '4642994'), + (348, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dNMo8z74', '4642995'), + (348, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dNMo8z74', '4642996'), + (348, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dNMo8z74', '4642997'), + (348, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dNMo8z74', '4645687'), + (348, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dNMo8z74', '4645698'), + (348, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dNMo8z74', '4645704'), + (348, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dNMo8z74', '4645705'), + (348, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dNMo8z74', '4668385'), + (348, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dNMo8z74', '6045684'), + (349, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4210314'), + (349, 902, 'maybe', '2021-08-04 23:06:48', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4240318'), + (349, 903, 'attending', '2021-08-14 01:09:50', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4240320'), + (349, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'm6Y3XJ5d', '4302093'), + (349, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4304151'), + (349, 947, 'attending', '2021-08-03 16:55:37', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4315713'), + (349, 958, 'maybe', '2021-08-11 02:13:16', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4342996'), + (349, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4345519'), + (349, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4356801'), + (349, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4358025'), + (349, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4366186'), + (349, 974, 'not_attending', '2021-08-28 23:09:11', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4366187'), + (349, 978, 'attending', '2021-08-18 16:25:51', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4378509'), + (349, 988, 'not_attending', '2021-08-27 20:31:37', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4402823'), + (349, 990, 'not_attending', '2021-09-03 20:27:05', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4420735'), + (349, 991, 'not_attending', '2021-09-09 00:05:21', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4420738'), + (349, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4420739'), + (349, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4420741'), + (349, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4420744'), + (349, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4420747'), + (349, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4420748'), + (349, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4420749'), + (349, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4461883'), + (349, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4508342'), + (349, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4568602'), + (349, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4572153'), + (349, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4585962'), + (349, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4596356'), + (349, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4598860'), + (349, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4598861'), + (349, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4602797'), + (349, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4637896'), + (349, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4642994'), + (349, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4642995'), + (349, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4642996'), + (349, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm6Y3XJ5d', '4642997'), + (349, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4645687'), + (349, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4645698'), + (349, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4645704'), + (349, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4645705'), + (349, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4668385'), + (349, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4694407'), + (349, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4736497'), + (349, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4736499'), + (349, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4736500'), + (349, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm6Y3XJ5d', '4736503'), + (349, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm6Y3XJ5d', '4736504'), + (349, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm6Y3XJ5d', '4746789'), + (349, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4753929'), + (349, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm6Y3XJ5d', '5038850'), + (349, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm6Y3XJ5d', '5045826'), + (349, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6Y3XJ5d', '5132533'), + (349, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm6Y3XJ5d', '5186582'), + (349, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6Y3XJ5d', '5186583'), + (349, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6Y3XJ5d', '5186585'), + (349, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6Y3XJ5d', '5190437'), + (349, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6Y3XJ5d', '5215989'), + (349, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6Y3XJ5d', '6045684'), + (350, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841kKg7m', '6045684'), + (351, 2135, 'attending', '2023-07-18 17:05:00', '2025-12-17 19:46:52', 'dVD3MvrA', '6187964'), + (351, 2145, 'attending', '2023-07-13 00:19:14', '2025-12-17 19:46:52', 'dVD3MvrA', '6334903'), + (351, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVD3MvrA', '6337236'), + (351, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVD3MvrA', '6337970'), + (351, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'dVD3MvrA', '6338308'), + (351, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVD3MvrA', '6340845'), + (351, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVD3MvrA', '6341710'), + (351, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVD3MvrA', '6342044'), + (351, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVD3MvrA', '6342298'), + (351, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dVD3MvrA', '6343294'), + (351, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVD3MvrA', '6347034'), + (351, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVD3MvrA', '6347056'), + (351, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVD3MvrA', '6353830'), + (351, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVD3MvrA', '6353831'), + (351, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVD3MvrA', '6357867'), + (351, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVD3MvrA', '6358652'), + (351, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVD3MvrA', '6361709'), + (351, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVD3MvrA', '6361710'), + (351, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVD3MvrA', '6361711'), + (351, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVD3MvrA', '6361712'), + (351, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVD3MvrA', '6361713'), + (351, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVD3MvrA', '6382573'), + (351, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dVD3MvrA', '6388604'), + (351, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVD3MvrA', '6394629'), + (351, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVD3MvrA', '6394631'), + (351, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVD3MvrA', '6440863'), + (351, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVD3MvrA', '6445440'), + (351, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVD3MvrA', '6453951'), + (351, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVD3MvrA', '6461696'), + (351, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVD3MvrA', '6462129'), + (351, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVD3MvrA', '6463218'), + (351, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVD3MvrA', '6472181'), + (351, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVD3MvrA', '6482693'), + (351, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVD3MvrA', '6484200'), + (351, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVD3MvrA', '6484680'), + (351, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVD3MvrA', '6507741'), + (351, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVD3MvrA', '6514659'), + (351, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVD3MvrA', '6514660'), + (351, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVD3MvrA', '6519103'), + (351, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVD3MvrA', '6535681'), + (351, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVD3MvrA', '6584747'), + (351, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVD3MvrA', '6587097'), + (351, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVD3MvrA', '6609022'), + (351, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVD3MvrA', '6632757'), + (351, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVD3MvrA', '6644187'), + (351, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVD3MvrA', '6648951'), + (351, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVD3MvrA', '6648952'), + (351, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVD3MvrA', '6655401'), + (351, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVD3MvrA', '6661585'), + (351, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVD3MvrA', '6661588'), + (351, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVD3MvrA', '6661589'), + (351, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVD3MvrA', '6699906'), + (351, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVD3MvrA', '6701109'), + (351, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVD3MvrA', '6705219'), + (351, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVD3MvrA', '6710153'), + (351, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVD3MvrA', '6711552'), + (351, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVD3MvrA', '6711553'), + (351, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVD3MvrA', '6722688'), + (351, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVD3MvrA', '6730620'), + (351, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVD3MvrA', '6730642'), + (352, 853, 'maybe', '2021-08-11 22:58:54', '2025-12-17 19:47:41', 'dlO2elB4', '4015725'), + (352, 884, 'maybe', '2021-08-15 03:33:50', '2025-12-17 19:47:42', 'dlO2elB4', '4210314'), + (352, 891, 'attending', '2021-07-30 14:25:47', '2025-12-17 19:47:38', 'dlO2elB4', '4229417'), + (352, 901, 'attending', '2021-07-30 23:16:46', '2025-12-17 19:47:40', 'dlO2elB4', '4240317'), + (352, 902, 'attending', '2021-08-02 03:13:34', '2025-12-17 19:47:41', 'dlO2elB4', '4240318'), + (352, 903, 'attending', '2021-08-08 03:15:33', '2025-12-17 19:47:42', 'dlO2elB4', '4240320'), + (352, 926, 'attending', '2021-08-17 22:35:35', '2025-12-17 19:47:42', 'dlO2elB4', '4297211'), + (352, 934, 'attending', '2021-08-04 01:53:32', '2025-12-17 19:47:40', 'dlO2elB4', '4302093'), + (352, 935, 'attending', '2021-08-11 22:29:50', '2025-12-17 19:47:41', 'dlO2elB4', '4304151'), + (352, 939, 'not_attending', '2021-08-01 04:42:28', '2025-12-17 19:47:40', 'dlO2elB4', '4308354'), + (352, 940, 'not_attending', '2021-07-30 16:28:50', '2025-12-17 19:47:40', 'dlO2elB4', '4309049'), + (352, 943, 'maybe', '2021-08-08 03:14:01', '2025-12-17 19:47:41', 'dlO2elB4', '4310979'), + (352, 944, 'attending', '2021-08-08 19:38:39', '2025-12-17 19:47:41', 'dlO2elB4', '4310980'), + (352, 946, 'attending', '2021-07-31 03:44:32', '2025-12-17 19:47:40', 'dlO2elB4', '4314835'), + (352, 947, 'maybe', '2021-08-02 03:13:12', '2025-12-17 19:47:41', 'dlO2elB4', '4315713'), + (352, 952, 'attending', '2021-07-31 03:45:18', '2025-12-17 19:47:41', 'dlO2elB4', '4318286'), + (352, 953, 'attending', '2021-07-30 20:34:30', '2025-12-17 19:47:40', 'dlO2elB4', '4324152'), + (352, 955, 'attending', '2021-08-08 03:14:23', '2025-12-17 19:47:41', 'dlO2elB4', '4331588'), + (352, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dlO2elB4', '4345519'), + (352, 963, 'maybe', '2021-08-22 22:51:55', '2025-12-17 19:47:42', 'dlO2elB4', '4353159'), + (352, 964, 'maybe', '2021-08-15 03:34:48', '2025-12-17 19:47:42', 'dlO2elB4', '4353160'), + (352, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dlO2elB4', '4356801'), + (352, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'dlO2elB4', '4358025'), + (352, 973, 'attending', '2021-08-16 22:59:29', '2025-12-17 19:47:42', 'dlO2elB4', '4366186'), + (352, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dlO2elB4', '4366187'), + (352, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'dlO2elB4', '4402823'), + (352, 990, 'not_attending', '2021-09-04 23:01:53', '2025-12-17 19:47:43', 'dlO2elB4', '4420735'), + (352, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dlO2elB4', '4420738'), + (352, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dlO2elB4', '4420739'), + (352, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dlO2elB4', '4420741'), + (352, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dlO2elB4', '4420744'), + (352, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dlO2elB4', '4420747'), + (352, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dlO2elB4', '4420748'), + (352, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dlO2elB4', '4420749'), + (352, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dlO2elB4', '4461883'), + (352, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlO2elB4', '4508342'), + (352, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dlO2elB4', '4568602'), + (352, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dlO2elB4', '6045684'), + (353, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'mpOg17ld', '5534683'), + (353, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'mpOg17ld', '5537735'), + (353, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mpOg17ld', '5540859'), + (353, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpOg17ld', '5560255'), + (353, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mpOg17ld', '5562906'), + (353, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mpOg17ld', '5600604'), + (353, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpOg17ld', '5605544'), + (353, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpOg17ld', '5635406'), + (353, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpOg17ld', '5638765'), + (353, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mpOg17ld', '5640843'), + (353, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpOg17ld', '6045684'), + (354, 1515, 'maybe', '2022-08-06 08:20:36', '2025-12-17 19:47:21', 'pmbOPkXA', '5441128'), + (354, 1516, 'not_attending', '2022-08-20 20:36:26', '2025-12-17 19:47:23', 'pmbOPkXA', '5441129'), + (354, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'pmbOPkXA', '5461278'), + (354, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'pmbOPkXA', '5469480'), + (354, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'pmbOPkXA', '5471073'), + (354, 1567, 'attending', '2022-07-31 20:25:22', '2025-12-17 19:47:21', 'pmbOPkXA', '5477629'), + (354, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'pmbOPkXA', '5482022'), + (354, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'pmbOPkXA', '5482793'), + (354, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'pmbOPkXA', '5488912'), + (354, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'pmbOPkXA', '5492192'), + (354, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'pmbOPkXA', '5493139'), + (354, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'pmbOPkXA', '5493200'), + (354, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'pmbOPkXA', '5502188'), + (354, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'pmbOPkXA', '5512862'), + (354, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'pmbOPkXA', '5513985'), + (354, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'pmbOPkXA', '6045684'), + (354, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'pmbOPkXA', '7904777'), + (354, 3133, 'attending', '2025-05-25 02:41:36', '2025-12-17 19:46:14', 'pmbOPkXA', '8368030'), + (354, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'pmbOPkXA', '8388462'), + (354, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'pmbOPkXA', '8400273'), + (354, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'pmbOPkXA', '8400275'), + (354, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'pmbOPkXA', '8400276'), + (354, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'pmbOPkXA', '8404977'), + (354, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'pmbOPkXA', '8430783'), + (354, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'pmbOPkXA', '8430784'), + (354, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'pmbOPkXA', '8430799'), + (354, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'pmbOPkXA', '8430800'), + (354, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'pmbOPkXA', '8430801'), + (354, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'pmbOPkXA', '8438709'), + (354, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'pmbOPkXA', '8457738'), + (354, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'pmbOPkXA', '8459566'), + (354, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'pmbOPkXA', '8459567'), + (354, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'pmbOPkXA', '8461032'), + (354, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'pmbOPkXA', '8477877'), + (354, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'pmbOPkXA', '8485688'), + (354, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'pmbOPkXA', '8490587'), + (354, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'pmbOPkXA', '8493552'), + (354, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'pmbOPkXA', '8493553'), + (354, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'pmbOPkXA', '8493554'), + (354, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'pmbOPkXA', '8493555'), + (354, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'pmbOPkXA', '8493556'), + (354, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'pmbOPkXA', '8493557'), + (354, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'pmbOPkXA', '8493558'), + (354, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'pmbOPkXA', '8493559'), + (354, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'pmbOPkXA', '8493560'), + (354, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'pmbOPkXA', '8493561'), + (354, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'pmbOPkXA', '8493572'), + (354, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'pmbOPkXA', '8540725'), + (354, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'pmbOPkXA', '8555421'), + (355, 2410, 'not_attending', '2024-02-09 16:18:07', '2025-12-17 19:46:41', 'd5j5YLqm', '6699911'), + (355, 2411, 'maybe', '2024-02-09 16:18:15', '2025-12-17 19:46:42', 'd5j5YLqm', '6699913'), + (355, 2413, 'maybe', '2024-02-09 16:18:24', '2025-12-17 19:46:42', 'd5j5YLqm', '6700719'), + (355, 2444, 'not_attending', '2024-02-09 16:17:52', '2025-12-17 19:46:41', 'd5j5YLqm', '6734367'), + (355, 2445, 'maybe', '2024-02-09 16:18:14', '2025-12-17 19:46:41', 'd5j5YLqm', '6734368'), + (355, 2450, 'not_attending', '2024-02-09 16:18:10', '2025-12-17 19:46:41', 'd5j5YLqm', '6738807'), + (355, 2452, 'not_attending', '2024-02-09 16:18:11', '2025-12-17 19:46:41', 'd5j5YLqm', '6740361'), + (355, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd5j5YLqm', '6740364'), + (355, 2456, 'not_attending', '2024-02-09 16:17:48', '2025-12-17 19:46:41', 'd5j5YLqm', '6742202'), + (355, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd5j5YLqm', '6743829'), + (355, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd5j5YLqm', '7030380'), + (355, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd5j5YLqm', '7033677'), + (355, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd5j5YLqm', '7035415'), + (355, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd5j5YLqm', '7044715'), + (355, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd5j5YLqm', '7050318'), + (355, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd5j5YLqm', '7050319'), + (355, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd5j5YLqm', '7050322'), + (355, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd5j5YLqm', '7057804'), + (355, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd5j5YLqm', '7072824'), + (355, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd5j5YLqm', '7074348'), + (355, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd5j5YLqm', '7089267'), + (355, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd5j5YLqm', '7098747'), + (355, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd5j5YLqm', '7113468'), + (355, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd5j5YLqm', '7114856'), + (355, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd5j5YLqm', '7114951'), + (355, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd5j5YLqm', '7114955'), + (355, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd5j5YLqm', '7114956'), + (355, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd5j5YLqm', '7153615'), + (355, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd5j5YLqm', '7159484'), + (355, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd5j5YLqm', '7178446'), + (356, 1274, 'not_attending', '2022-03-30 12:31:48', '2025-12-17 19:47:26', 'QdJXvVnA', '5186585'), + (356, 1281, 'not_attending', '2022-04-09 22:15:36', '2025-12-17 19:47:27', 'QdJXvVnA', '5190437'), + (356, 1284, 'not_attending', '2022-04-21 18:08:36', '2025-12-17 19:47:27', 'QdJXvVnA', '5195095'), + (356, 1289, 'attending', '2022-03-31 22:14:37', '2025-12-17 19:47:25', 'QdJXvVnA', '5200190'), + (356, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'QdJXvVnA', '5215989'), + (356, 1307, 'not_attending', '2022-04-05 16:11:33', '2025-12-17 19:47:27', 'QdJXvVnA', '5223686'), + (356, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'QdJXvVnA', '5227432'), + (356, 1346, 'not_attending', '2022-04-21 17:58:17', '2025-12-17 19:47:27', 'QdJXvVnA', '5247467'), + (356, 1354, 'not_attending', '2022-04-21 17:58:10', '2025-12-17 19:47:27', 'QdJXvVnA', '5252569'), + (356, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'QdJXvVnA', '5260800'), + (356, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'QdJXvVnA', '5269930'), + (356, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'QdJXvVnA', '5271448'), + (356, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'QdJXvVnA', '5271449'), + (356, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'QdJXvVnA', '5276469'), + (356, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'QdJXvVnA', '5277078'), + (356, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'QdJXvVnA', '5278159'), + (356, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'QdJXvVnA', '5363695'), + (356, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'QdJXvVnA', '5365960'), + (356, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'QdJXvVnA', '5368973'), + (356, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'QdJXvVnA', '5378247'), + (356, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'QdJXvVnA', '5389605'), + (356, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'QdJXvVnA', '5397265'), + (356, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'QdJXvVnA', '5403967'), + (356, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'QdJXvVnA', '5404786'), + (356, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'QdJXvVnA', '5405203'), + (356, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'QdJXvVnA', '5411699'), + (356, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'QdJXvVnA', '5412550'), + (356, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'QdJXvVnA', '5415046'), + (356, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'QdJXvVnA', '5422086'), + (356, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'QdJXvVnA', '5422406'), + (356, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'QdJXvVnA', '5424565'), + (356, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'QdJXvVnA', '5426882'), + (356, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'QdJXvVnA', '5427083'), + (356, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'QdJXvVnA', '5441125'), + (356, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'QdJXvVnA', '5441126'), + (356, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'QdJXvVnA', '5441128'), + (356, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'QdJXvVnA', '5441131'), + (356, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'QdJXvVnA', '5441132'), + (356, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'QdJXvVnA', '5446643'), + (356, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'QdJXvVnA', '5453325'), + (356, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'QdJXvVnA', '5454516'), + (356, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'QdJXvVnA', '5454605'), + (356, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'QdJXvVnA', '5455037'), + (356, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'QdJXvVnA', '5461278'), + (356, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'QdJXvVnA', '5469480'), + (356, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'QdJXvVnA', '5471073'), + (356, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'QdJXvVnA', '5474663'), + (356, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'QdJXvVnA', '5482022'), + (356, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'QdJXvVnA', '5482793'), + (356, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'QdJXvVnA', '5488912'), + (356, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'QdJXvVnA', '5492192'), + (356, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'QdJXvVnA', '5493139'), + (356, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'QdJXvVnA', '5493200'), + (356, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'QdJXvVnA', '5502188'), + (356, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'QdJXvVnA', '5505059'), + (356, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'QdJXvVnA', '5509055'), + (356, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'QdJXvVnA', '5512862'), + (356, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'QdJXvVnA', '5513985'), + (356, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'QdJXvVnA', '5519981'), + (356, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'QdJXvVnA', '5522550'), + (356, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'QdJXvVnA', '5534683'), + (356, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'QdJXvVnA', '5537735'), + (356, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'QdJXvVnA', '5540859'), + (356, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'QdJXvVnA', '5546619'), + (356, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'QdJXvVnA', '5555245'), + (356, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'QdJXvVnA', '5557747'), + (356, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'QdJXvVnA', '5560255'), + (356, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'QdJXvVnA', '5562906'), + (356, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'QdJXvVnA', '5600604'), + (356, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'QdJXvVnA', '5605544'), + (356, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'QdJXvVnA', '5606737'), + (356, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'QdJXvVnA', '5635406'), + (356, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'QdJXvVnA', '5638765'), + (356, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'QdJXvVnA', '5640843'), + (356, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'QdJXvVnA', '5641521'), + (356, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJXvVnA', '6045684'), + (357, 1086, 'not_attending', '2021-10-14 01:39:47', '2025-12-17 19:47:35', 'AXB8j9vd', '4568602'), + (357, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'AXB8j9vd', '4572153'), + (357, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'AXB8j9vd', '4585962'), + (357, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'AXB8j9vd', '4596356'), + (357, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AXB8j9vd', '4598860'), + (357, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AXB8j9vd', '4598861'), + (357, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'AXB8j9vd', '4602797'), + (357, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AXB8j9vd', '4637896'), + (357, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AXB8j9vd', '4642994'), + (357, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AXB8j9vd', '4642995'), + (357, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AXB8j9vd', '4642996'), + (357, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AXB8j9vd', '4642997'), + (357, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AXB8j9vd', '4645687'), + (357, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AXB8j9vd', '4645698'), + (357, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AXB8j9vd', '4645704'), + (357, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AXB8j9vd', '4645705'), + (357, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AXB8j9vd', '4668385'), + (357, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'AXB8j9vd', '4694407'), + (357, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'AXB8j9vd', '4736497'), + (357, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'AXB8j9vd', '4736499'), + (357, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'AXB8j9vd', '4736500'), + (357, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'AXB8j9vd', '4736503'), + (357, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'AXB8j9vd', '4736504'), + (357, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AXB8j9vd', '4746789'), + (357, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AXB8j9vd', '4753929'), + (357, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'AXB8j9vd', '5038850'), + (357, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AXB8j9vd', '5045826'), + (357, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'AXB8j9vd', '5132533'), + (357, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'AXB8j9vd', '5186582'), + (357, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'AXB8j9vd', '5186583'), + (357, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'AXB8j9vd', '5186585'), + (357, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'AXB8j9vd', '5190437'), + (357, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AXB8j9vd', '5195095'), + (357, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AXB8j9vd', '5215989'), + (357, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AXB8j9vd', '5223686'), + (357, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AXB8j9vd', '5247467'), + (357, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AXB8j9vd', '5260800'), + (357, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AXB8j9vd', '5269930'), + (357, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AXB8j9vd', '5271448'), + (357, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'AXB8j9vd', '5271449'), + (357, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AXB8j9vd', '5278159'), + (357, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AXB8j9vd', '5363695'), + (357, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AXB8j9vd', '5365960'), + (357, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AXB8j9vd', '5378247'), + (357, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AXB8j9vd', '5389605'), + (357, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AXB8j9vd', '5397265'), + (357, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AXB8j9vd', '5404786'), + (357, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AXB8j9vd', '5405203'), + (357, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AXB8j9vd', '5412550'), + (357, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AXB8j9vd', '5415046'), + (357, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AXB8j9vd', '5422086'), + (357, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AXB8j9vd', '5422406'), + (357, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AXB8j9vd', '5424565'), + (357, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AXB8j9vd', '5426882'), + (357, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AXB8j9vd', '5441125'), + (357, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AXB8j9vd', '5441126'), + (357, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AXB8j9vd', '5441128'), + (357, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AXB8j9vd', '5441131'), + (357, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AXB8j9vd', '5441132'), + (357, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AXB8j9vd', '5453325'), + (357, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AXB8j9vd', '5454516'), + (357, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AXB8j9vd', '5454605'), + (357, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AXB8j9vd', '5455037'), + (357, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AXB8j9vd', '5461278'), + (357, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AXB8j9vd', '5469480'), + (357, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AXB8j9vd', '5474663'), + (357, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AXB8j9vd', '5482022'), + (357, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AXB8j9vd', '5488912'), + (357, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AXB8j9vd', '5492192'), + (357, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AXB8j9vd', '5493139'), + (357, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AXB8j9vd', '5493200'), + (357, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AXB8j9vd', '5502188'), + (357, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AXB8j9vd', '5505059'), + (357, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AXB8j9vd', '5509055'), + (357, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AXB8j9vd', '5512862'), + (357, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AXB8j9vd', '5513985'), + (357, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'AXB8j9vd', '5519981'), + (357, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AXB8j9vd', '5522550'), + (357, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AXB8j9vd', '5534683'), + (357, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AXB8j9vd', '5537735'), + (357, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AXB8j9vd', '5540859'), + (357, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AXB8j9vd', '5546619'), + (357, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AXB8j9vd', '5557747'), + (357, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AXB8j9vd', '5560255'), + (357, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AXB8j9vd', '5562906'), + (357, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AXB8j9vd', '5600604'), + (357, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AXB8j9vd', '5605544'), + (357, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'AXB8j9vd', '5606737'), + (357, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AXB8j9vd', '5630960'), + (357, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AXB8j9vd', '5630961'), + (357, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AXB8j9vd', '5630962'), + (357, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AXB8j9vd', '5630966'), + (357, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AXB8j9vd', '5630967'), + (357, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AXB8j9vd', '5630968'), + (357, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AXB8j9vd', '5635406'), + (357, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AXB8j9vd', '5638765'), + (357, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AXB8j9vd', '5640097'), + (357, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AXB8j9vd', '5640843'), + (357, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AXB8j9vd', '5641521'), + (357, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AXB8j9vd', '5642818'), + (357, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AXB8j9vd', '5652395'), + (357, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AXB8j9vd', '5670445'), + (357, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AXB8j9vd', '5671637'), + (357, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AXB8j9vd', '5672329'), + (357, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AXB8j9vd', '5674057'), + (357, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AXB8j9vd', '5674060'), + (357, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AXB8j9vd', '5677461'), + (357, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AXB8j9vd', '5698046'), + (357, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AXB8j9vd', '5699760'), + (357, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AXB8j9vd', '5741601'), + (357, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AXB8j9vd', '5763458'), + (357, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AXB8j9vd', '5774172'), + (357, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'AXB8j9vd', '5818247'), + (357, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AXB8j9vd', '5819471'), + (357, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AXB8j9vd', '5827739'), + (357, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AXB8j9vd', '5844306'), + (357, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AXB8j9vd', '5850159'), + (357, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AXB8j9vd', '5858999'), + (357, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AXB8j9vd', '5871984'), + (357, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AXB8j9vd', '5876354'), + (357, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'AXB8j9vd', '5880939'), + (357, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AXB8j9vd', '5880940'), + (357, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AXB8j9vd', '5880942'), + (357, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AXB8j9vd', '5880943'), + (357, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AXB8j9vd', '5887890'), + (357, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AXB8j9vd', '5888598'), + (357, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AXB8j9vd', '5893260'), + (357, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AXB8j9vd', '5899826'), + (357, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AXB8j9vd', '5900199'), + (357, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AXB8j9vd', '5900200'), + (357, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AXB8j9vd', '5900202'), + (357, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AXB8j9vd', '5900203'), + (357, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AXB8j9vd', '5901108'), + (357, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AXB8j9vd', '5901126'), + (357, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AXB8j9vd', '5909655'), + (357, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AXB8j9vd', '5910522'), + (357, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AXB8j9vd', '5910526'), + (357, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AXB8j9vd', '5910528'), + (357, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AXB8j9vd', '5916219'), + (357, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AXB8j9vd', '5936234'), + (357, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AXB8j9vd', '5958351'), + (357, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AXB8j9vd', '5959751'), + (357, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AXB8j9vd', '5959755'), + (357, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AXB8j9vd', '5960055'), + (357, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AXB8j9vd', '5961684'), + (357, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'AXB8j9vd', '5962132'), + (357, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AXB8j9vd', '5962133'), + (357, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AXB8j9vd', '5962134'), + (357, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AXB8j9vd', '5962317'), + (357, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AXB8j9vd', '5962318'), + (357, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AXB8j9vd', '5965933'), + (357, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AXB8j9vd', '5967014'), + (357, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AXB8j9vd', '5972815'), + (357, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AXB8j9vd', '5974016'), + (357, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AXB8j9vd', '5981515'), + (357, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AXB8j9vd', '5993516'), + (357, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AXB8j9vd', '5998939'), + (357, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AXB8j9vd', '6028191'), + (357, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AXB8j9vd', '6040066'), + (357, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AXB8j9vd', '6042717'), + (357, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AXB8j9vd', '6044838'), + (357, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AXB8j9vd', '6044839'), + (357, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXB8j9vd', '6045684'), + (357, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AXB8j9vd', '6050104'), + (357, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AXB8j9vd', '6053195'), + (357, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AXB8j9vd', '6053198'), + (357, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AXB8j9vd', '6056085'), + (357, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AXB8j9vd', '6056916'), + (357, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AXB8j9vd', '6059290'), + (357, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AXB8j9vd', '6060328'), + (357, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AXB8j9vd', '6061037'), + (357, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AXB8j9vd', '6061039'), + (357, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AXB8j9vd', '6067245'), + (357, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AXB8j9vd', '6068094'), + (357, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AXB8j9vd', '6068252'), + (357, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AXB8j9vd', '6068253'), + (357, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AXB8j9vd', '6068254'), + (357, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'AXB8j9vd', '6068280'), + (357, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AXB8j9vd', '6069093'), + (357, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'AXB8j9vd', '6072528'), + (357, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AXB8j9vd', '6079840'), + (357, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AXB8j9vd', '6083398'), + (357, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'AXB8j9vd', '6093504'), + (357, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AXB8j9vd', '6097414'), + (357, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AXB8j9vd', '6097442'), + (357, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AXB8j9vd', '6097684'), + (357, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AXB8j9vd', '6098762'), + (357, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AXB8j9vd', '6101361'), + (357, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AXB8j9vd', '6101362'), + (357, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AXB8j9vd', '6107314'), + (357, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'AXB8j9vd', '6120034'), + (357, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AXB8j9vd', '6136733'), + (357, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AXB8j9vd', '6137989'), + (357, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AXB8j9vd', '6150864'), + (357, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'AXB8j9vd', '6155491'), + (357, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AXB8j9vd', '6164417'), + (357, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AXB8j9vd', '6166388'), + (357, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'AXB8j9vd', '6176439'), + (357, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AXB8j9vd', '6182410'), + (357, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AXB8j9vd', '6185812'), + (357, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AXB8j9vd', '6187651'), + (357, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AXB8j9vd', '6187963'), + (357, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AXB8j9vd', '6187964'), + (357, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AXB8j9vd', '6187966'), + (357, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AXB8j9vd', '6187967'), + (357, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AXB8j9vd', '6187969'), + (357, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AXB8j9vd', '6334878'), + (357, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AXB8j9vd', '6337236'), + (357, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AXB8j9vd', '6337970'), + (357, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AXB8j9vd', '6338308'), + (357, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AXB8j9vd', '6341710'), + (357, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AXB8j9vd', '6342044'), + (357, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AXB8j9vd', '6342298'), + (357, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AXB8j9vd', '6343294'), + (357, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AXB8j9vd', '6347034'), + (357, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AXB8j9vd', '6347056'), + (357, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AXB8j9vd', '6353830'), + (357, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AXB8j9vd', '6353831'), + (357, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AXB8j9vd', '6357867'), + (357, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AXB8j9vd', '6358652'), + (357, 2196, 'maybe', '2023-09-07 03:09:17', '2025-12-17 19:46:56', 'AXB8j9vd', '6359398'), + (357, 2197, 'attending', '2023-09-15 22:16:48', '2025-12-17 19:46:44', 'AXB8j9vd', '6359399'), + (357, 2198, 'attending', '2023-09-22 22:46:46', '2025-12-17 19:46:45', 'AXB8j9vd', '6359400'), + (357, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AXB8j9vd', '6361709'), + (357, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AXB8j9vd', '6361710'), + (357, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AXB8j9vd', '6361711'), + (357, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AXB8j9vd', '6361712'), + (357, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AXB8j9vd', '6361713'), + (357, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AXB8j9vd', '6382573'), + (357, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AXB8j9vd', '6388604'), + (357, 2247, 'attending', '2023-09-06 20:36:31', '2025-12-17 19:46:56', 'AXB8j9vd', '6394628'), + (357, 2248, 'attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AXB8j9vd', '6394629'), + (357, 2249, 'attending', '2023-09-20 21:51:25', '2025-12-17 19:46:45', 'AXB8j9vd', '6394630'), + (357, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AXB8j9vd', '6394631'), + (357, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AXB8j9vd', '6440863'), + (357, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AXB8j9vd', '6445440'), + (357, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AXB8j9vd', '6453951'), + (357, 2284, 'maybe', '2023-10-13 01:33:29', '2025-12-17 19:46:46', 'AXB8j9vd', '6460928'), + (357, 2285, 'attending', '2023-10-27 21:57:00', '2025-12-17 19:46:47', 'AXB8j9vd', '6460929'), + (357, 2286, 'attending', '2023-12-01 03:11:57', '2025-12-17 19:46:48', 'AXB8j9vd', '6460930'), + (357, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AXB8j9vd', '6461696'), + (357, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AXB8j9vd', '6462129'), + (357, 2290, 'maybe', '2023-10-18 22:37:44', '2025-12-17 19:46:46', 'AXB8j9vd', '6462214'), + (357, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AXB8j9vd', '6463218'), + (357, 2299, 'maybe', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AXB8j9vd', '6472181'), + (357, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AXB8j9vd', '6482693'), + (357, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'AXB8j9vd', '6484200'), + (357, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AXB8j9vd', '6484680'), + (357, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AXB8j9vd', '6507741'), + (357, 2322, 'not_attending', '2023-11-14 00:05:00', '2025-12-17 19:46:48', 'AXB8j9vd', '6514659'), + (357, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AXB8j9vd', '6514660'), + (357, 2324, 'attending', '2023-12-09 23:08:46', '2025-12-17 19:46:49', 'AXB8j9vd', '6514662'), + (357, 2327, 'maybe', '2023-11-02 23:27:38', '2025-12-17 19:46:47', 'AXB8j9vd', '6515494'), + (357, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AXB8j9vd', '6519103'), + (357, 2335, 'attending', '2023-11-10 23:38:00', '2025-12-17 19:46:47', 'AXB8j9vd', '6534890'), + (357, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AXB8j9vd', '6535681'), + (357, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AXB8j9vd', '6584747'), + (357, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AXB8j9vd', '6587097'), + (357, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AXB8j9vd', '6609022'), + (357, 2364, 'attending', '2023-12-08 23:21:05', '2025-12-17 19:46:49', 'AXB8j9vd', '6613011'), + (357, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AXB8j9vd', '6632757'), + (357, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AXB8j9vd', '6644187'), + (357, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AXB8j9vd', '6648951'), + (357, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AXB8j9vd', '6648952'), + (357, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AXB8j9vd', '6655401'), + (357, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AXB8j9vd', '6661585'), + (357, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AXB8j9vd', '6661588'), + (357, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AXB8j9vd', '6661589'), + (357, 2406, 'attending', '2024-01-19 23:24:10', '2025-12-17 19:46:40', 'AXB8j9vd', '6692344'), + (357, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AXB8j9vd', '6699906'), + (357, 2409, 'attending', '2024-02-04 00:50:11', '2025-12-17 19:46:41', 'AXB8j9vd', '6699909'), + (357, 2410, 'attending', '2024-02-11 00:48:42', '2025-12-17 19:46:41', 'AXB8j9vd', '6699911'), + (357, 2411, 'maybe', '2024-02-11 03:17:54', '2025-12-17 19:46:42', 'AXB8j9vd', '6699913'), + (357, 2412, 'not_attending', '2024-02-11 03:18:05', '2025-12-17 19:46:43', 'AXB8j9vd', '6700717'), + (357, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AXB8j9vd', '6701109'), + (357, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AXB8j9vd', '6705219'), + (357, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AXB8j9vd', '6710153'), + (357, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AXB8j9vd', '6711552'), + (357, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AXB8j9vd', '6711553'), + (357, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AXB8j9vd', '6722688'), + (357, 2438, 'attending', '2024-02-08 00:47:55', '2025-12-17 19:46:41', 'AXB8j9vd', '6730201'), + (357, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AXB8j9vd', '6730620'), + (357, 2444, 'attending', '2024-02-09 21:32:31', '2025-12-17 19:46:41', 'AXB8j9vd', '6734367'), + (357, 2446, 'maybe', '2024-03-02 00:05:10', '2025-12-17 19:46:43', 'AXB8j9vd', '6734369'), + (357, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AXB8j9vd', '6740364'), + (357, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AXB8j9vd', '6743829'), + (357, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AXB8j9vd', '7030380'), + (357, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AXB8j9vd', '7033677'), + (357, 2474, 'maybe', '2024-02-24 23:51:00', '2025-12-17 19:46:43', 'AXB8j9vd', '7035415'), + (357, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AXB8j9vd', '7044715'), + (357, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AXB8j9vd', '7050318'), + (357, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AXB8j9vd', '7050319'), + (357, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AXB8j9vd', '7050322'), + (357, 2498, 'maybe', '2024-03-20 22:00:15', '2025-12-17 19:46:33', 'AXB8j9vd', '7057662'), + (357, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AXB8j9vd', '7057804'), + (357, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AXB8j9vd', '7072824'), + (357, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AXB8j9vd', '7074348'), + (357, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AXB8j9vd', '7074364'), + (357, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AXB8j9vd', '7089267'), + (357, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AXB8j9vd', '7098747'), + (357, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AXB8j9vd', '7113468'), + (357, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AXB8j9vd', '7114856'), + (357, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AXB8j9vd', '7114951'), + (357, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AXB8j9vd', '7114955'), + (357, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AXB8j9vd', '7114956'), + (357, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AXB8j9vd', '7114957'), + (357, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AXB8j9vd', '7159484'), + (357, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AXB8j9vd', '7178446'), + (357, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AXB8j9vd', '7220467'), + (357, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AXB8j9vd', '7240354'), + (357, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AXB8j9vd', '7251633'), + (357, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AXB8j9vd', '7324073'), + (357, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AXB8j9vd', '7324074'), + (357, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AXB8j9vd', '7324075'), + (357, 2691, 'maybe', '2024-07-19 01:53:19', '2025-12-17 19:46:30', 'AXB8j9vd', '7324076'), + (357, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AXB8j9vd', '7324078'), + (357, 2696, 'attending', '2024-08-24 22:55:53', '2025-12-17 19:46:32', 'AXB8j9vd', '7324081'), + (357, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AXB8j9vd', '7324082'), + (357, 2700, 'maybe', '2024-06-14 22:00:08', '2025-12-17 19:46:28', 'AXB8j9vd', '7324388'), + (357, 2706, 'attending', '2024-06-19 22:53:28', '2025-12-17 19:46:28', 'AXB8j9vd', '7324947'), + (357, 2712, 'maybe', '2024-08-02 22:13:08', '2025-12-17 19:46:31', 'AXB8j9vd', '7326525'), + (357, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AXB8j9vd', '7331457'), + (357, 2724, 'attending', '2024-06-26 21:58:24', '2025-12-17 19:46:29', 'AXB8j9vd', '7332562'), + (357, 2737, 'maybe', '2024-07-02 22:06:09', '2025-12-17 19:46:29', 'AXB8j9vd', '7344070'), + (357, 2742, 'maybe', '2024-07-03 22:55:15', '2025-12-17 19:46:29', 'AXB8j9vd', '7345167'), + (357, 2747, 'attending', '2024-07-17 22:39:19', '2025-12-17 19:46:30', 'AXB8j9vd', '7353587'), + (357, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'AXB8j9vd', '7363643'), + (357, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AXB8j9vd', '7368606'), + (357, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AXB8j9vd', '7397462'), + (357, 2806, 'maybe', '2024-09-18 21:35:50', '2025-12-17 19:46:25', 'AXB8j9vd', '7404888'), + (357, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AXB8j9vd', '7424275'), + (357, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AXB8j9vd', '7432751'), + (357, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AXB8j9vd', '7432752'), + (357, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AXB8j9vd', '7432753'), + (357, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AXB8j9vd', '7432754'), + (357, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AXB8j9vd', '7432755'), + (357, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AXB8j9vd', '7432756'), + (357, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AXB8j9vd', '7432758'), + (357, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AXB8j9vd', '7432759'), + (357, 2832, 'maybe', '2024-09-09 21:59:56', '2025-12-17 19:46:24', 'AXB8j9vd', '7433324'), + (357, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AXB8j9vd', '7433834'), + (357, 2838, 'maybe', '2024-09-27 21:49:31', '2025-12-17 19:46:25', 'AXB8j9vd', '7439182'), + (357, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AXB8j9vd', '7470197'), + (357, 2865, 'maybe', '2024-11-01 21:57:33', '2025-12-17 19:46:26', 'AXB8j9vd', '7471200'), + (357, 2876, 'maybe', '2024-10-08 22:48:25', '2025-12-17 19:46:26', 'AXB8j9vd', '7490980'), + (357, 2881, 'maybe', '2024-11-06 23:24:56', '2025-12-17 19:46:26', 'AXB8j9vd', '7644047'), + (357, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AXB8j9vd', '7685613'), + (357, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AXB8j9vd', '7688194'), + (357, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AXB8j9vd', '7688196'), + (357, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AXB8j9vd', '7688289'), + (357, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AXB8j9vd', '7692763'), + (357, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AXB8j9vd', '7697552'), + (357, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AXB8j9vd', '7699878'), + (357, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AXB8j9vd', '7704043'), + (357, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AXB8j9vd', '7712467'), + (357, 2925, 'maybe', '2024-12-09 23:11:15', '2025-12-17 19:46:21', 'AXB8j9vd', '7713584'), + (357, 2926, 'maybe', '2024-12-05 23:55:00', '2025-12-17 19:46:21', 'AXB8j9vd', '7713585'), + (357, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AXB8j9vd', '7713586'), + (357, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AXB8j9vd', '7738518'), + (357, 2963, 'maybe', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AXB8j9vd', '7750636'), + (357, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AXB8j9vd', '7796540'), + (357, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AXB8j9vd', '7796541'), + (357, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AXB8j9vd', '7796542'), + (357, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AXB8j9vd', '7825913'), + (357, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AXB8j9vd', '7826209'), + (357, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AXB8j9vd', '7834742'), + (357, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AXB8j9vd', '7842108'), + (357, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AXB8j9vd', '7842902'), + (357, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AXB8j9vd', '7842903'), + (357, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AXB8j9vd', '7842904'), + (357, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AXB8j9vd', '7842905'), + (357, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AXB8j9vd', '7855719'), + (357, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AXB8j9vd', '7860683'), + (357, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AXB8j9vd', '7860684'), + (357, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AXB8j9vd', '7866095'), + (357, 3013, 'maybe', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AXB8j9vd', '7869170'), + (357, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AXB8j9vd', '7869188'), + (357, 3029, 'attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AXB8j9vd', '7869201'), + (357, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AXB8j9vd', '7877465'), + (357, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AXB8j9vd', '7888250'), + (357, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AXB8j9vd', '7904777'), + (357, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AXB8j9vd', '8349164'), + (357, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AXB8j9vd', '8349545'), + (357, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AXB8j9vd', '8368028'), + (357, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AXB8j9vd', '8368029'), + (357, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AXB8j9vd', '8388462'), + (357, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AXB8j9vd', '8400273'), + (357, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AXB8j9vd', '8400275'), + (357, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'AXB8j9vd', '8400276'), + (357, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AXB8j9vd', '8404977'), + (357, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AXB8j9vd', '8430783'), + (357, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AXB8j9vd', '8430784'), + (357, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AXB8j9vd', '8430799'), + (357, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AXB8j9vd', '8430800'), + (357, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AXB8j9vd', '8430801'), + (357, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AXB8j9vd', '8438709'), + (357, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AXB8j9vd', '8457738'), + (357, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AXB8j9vd', '8459566'), + (357, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AXB8j9vd', '8459567'), + (357, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AXB8j9vd', '8461032'), + (357, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AXB8j9vd', '8477877'), + (357, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AXB8j9vd', '8485688'), + (357, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AXB8j9vd', '8490587'), + (357, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AXB8j9vd', '8493552'), + (357, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AXB8j9vd', '8493553'), + (357, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AXB8j9vd', '8493554'), + (357, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AXB8j9vd', '8493555'), + (357, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AXB8j9vd', '8493556'), + (357, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AXB8j9vd', '8493557'), + (357, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AXB8j9vd', '8493558'), + (357, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AXB8j9vd', '8493559'), + (357, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AXB8j9vd', '8493560'), + (357, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AXB8j9vd', '8493561'), + (357, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AXB8j9vd', '8493572'), + (357, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AXB8j9vd', '8540725'), + (357, 3289, 'maybe', '2025-10-24 23:59:35', '2025-12-17 19:46:14', 'AXB8j9vd', '8542939'), + (357, 3307, 'attending', '2025-12-18 01:32:41', '2025-12-18 01:33:22', NULL, NULL), + (357, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AXB8j9vd', '8555421'), + (358, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxEB7wm', '6045684'), + (359, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'dKwqnXRd', '7114951'), + (359, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dKwqnXRd', '7114956'), + (359, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dKwqnXRd', '7114957'), + (359, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKwqnXRd', '7153615'), + (359, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKwqnXRd', '7159484'), + (359, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKwqnXRd', '7178446'), + (359, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dKwqnXRd', '7220467'), + (359, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dKwqnXRd', '7240354'), + (359, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dKwqnXRd', '7251633'), + (359, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'dKwqnXRd', '7265589'), + (360, 1353, 'attending', '2022-04-24 02:54:43', '2025-12-17 19:47:27', 'dVbMP86d', '5251777'), + (360, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dVbMP86d', '5260800'), + (360, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dVbMP86d', '5269930'), + (360, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dVbMP86d', '5271448'), + (360, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dVbMP86d', '5271449'), + (360, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dVbMP86d', '5276469'), + (360, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVbMP86d', '5278159'), + (360, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dVbMP86d', '5363695'), + (360, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVbMP86d', '5365960'), + (360, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dVbMP86d', '5368973'), + (360, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVbMP86d', '5378247'), + (360, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dVbMP86d', '5389605'), + (360, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dVbMP86d', '5397265'), + (360, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbMP86d', '6045684'), + (361, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mLLZ0VQm', '6164417'), + (361, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mLLZ0VQm', '6166388'), + (361, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mLLZ0VQm', '6176439'), + (361, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'mLLZ0VQm', '6177485'), + (361, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mLLZ0VQm', '6182410'), + (361, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mLLZ0VQm', '6185812'), + (361, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mLLZ0VQm', '6187651'), + (361, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mLLZ0VQm', '6187963'), + (361, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mLLZ0VQm', '6187964'), + (361, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mLLZ0VQm', '6187966'), + (361, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mLLZ0VQm', '6187967'), + (361, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mLLZ0VQm', '6187969'), + (361, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mLLZ0VQm', '6334878'), + (361, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', 'mLLZ0VQm', '6334903'), + (361, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mLLZ0VQm', '6337236'), + (361, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mLLZ0VQm', '6337970'), + (361, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mLLZ0VQm', '6338308'), + (361, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mLLZ0VQm', '6341710'), + (361, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mLLZ0VQm', '6342044'), + (361, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mLLZ0VQm', '6342298'), + (361, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'mLLZ0VQm', '6342591'), + (361, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mLLZ0VQm', '6343294'), + (361, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mLLZ0VQm', '6347034'), + (361, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mLLZ0VQm', '6347056'), + (361, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mLLZ0VQm', '6353830'), + (361, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mLLZ0VQm', '6353831'), + (361, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mLLZ0VQm', '6357867'), + (361, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mLLZ0VQm', '6358652'), + (361, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mLLZ0VQm', '6361709'), + (361, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mLLZ0VQm', '6361710'), + (361, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mLLZ0VQm', '6361711'), + (361, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mLLZ0VQm', '6361712'), + (361, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mLLZ0VQm', '6361713'), + (361, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mLLZ0VQm', '6382573'), + (361, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mLLZ0VQm', '6388604'), + (361, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mLLZ0VQm', '6394629'), + (361, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mLLZ0VQm', '6394631'), + (361, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mLLZ0VQm', '6431478'), + (362, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2VKpZod', '6045684'), + (363, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WPkqONd', '6045684'), + (364, 1117, 'attending', '2021-12-08 20:37:03', '2025-12-17 19:47:37', 'dxDx6GEd', '4642995'), + (364, 1122, 'maybe', '2021-12-03 00:25:43', '2025-12-17 19:47:37', 'dxDx6GEd', '4644023'), + (364, 1130, 'attending', '2021-12-04 20:38:14', '2025-12-17 19:47:37', 'dxDx6GEd', '4658824'), + (364, 1139, 'attending', '2021-12-03 06:42:28', '2025-12-17 19:47:37', 'dxDx6GEd', '4675604'), + (364, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dxDx6GEd', '4694407'), + (364, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dxDx6GEd', '4736497'), + (364, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dxDx6GEd', '4736499'), + (364, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dxDx6GEd', '4736500'), + (364, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dxDx6GEd', '4736503'), + (364, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dxDx6GEd', '4736504'), + (364, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dxDx6GEd', '4746789'), + (364, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dxDx6GEd', '4753929'), + (364, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dxDx6GEd', '5038850'), + (364, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dxDx6GEd', '5045826'), + (364, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dxDx6GEd', '5132533'), + (364, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dxDx6GEd', '5186582'), + (364, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dxDx6GEd', '5186583'), + (364, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dxDx6GEd', '5186585'), + (364, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dxDx6GEd', '5190437'), + (364, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dxDx6GEd', '5215989'), + (364, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dxDx6GEd', '6045684'), + (365, 2022, 'not_attending', '2023-05-26 12:22:04', '2025-12-17 19:47:03', 'dlkOgEY4', '6067245'), + (365, 2031, 'attending', '2023-05-27 15:15:43', '2025-12-17 19:47:03', 'dlkOgEY4', '6068280'), + (365, 2032, 'attending', '2023-06-03 12:41:08', '2025-12-17 19:47:04', 'dlkOgEY4', '6068281'), + (365, 2060, 'not_attending', '2023-05-20 16:25:56', '2025-12-17 19:47:03', 'dlkOgEY4', '6097414'), + (365, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dlkOgEY4', '6101361'), + (365, 2067, 'not_attending', '2023-05-16 00:10:01', '2025-12-17 19:47:03', 'dlkOgEY4', '6101362'), + (365, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dlkOgEY4', '6107314'), + (365, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dlkOgEY4', '6120034'), + (365, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dlkOgEY4', '6136733'), + (365, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dlkOgEY4', '6137989'), + (365, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dlkOgEY4', '6150864'), + (365, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dlkOgEY4', '6155491'), + (365, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dlkOgEY4', '6164417'), + (365, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dlkOgEY4', '6166388'), + (365, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dlkOgEY4', '6176439'), + (365, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dlkOgEY4', '6182410'), + (365, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dlkOgEY4', '6185812'), + (365, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dlkOgEY4', '6187651'), + (365, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dlkOgEY4', '6187963'), + (365, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dlkOgEY4', '6187964'), + (365, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dlkOgEY4', '6187966'), + (365, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dlkOgEY4', '6187967'), + (365, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dlkOgEY4', '6187969'), + (365, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dlkOgEY4', '6334878'), + (365, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dlkOgEY4', '6337236'), + (365, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dlkOgEY4', '6337970'), + (365, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dlkOgEY4', '6338308'), + (365, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dlkOgEY4', '6340845'), + (365, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dlkOgEY4', '6341710'), + (365, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dlkOgEY4', '6342044'), + (365, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dlkOgEY4', '6342298'), + (365, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dlkOgEY4', '6343294'), + (365, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dlkOgEY4', '6347034'), + (365, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dlkOgEY4', '6347056'), + (365, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dlkOgEY4', '6353830'), + (365, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dlkOgEY4', '6353831'), + (365, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dlkOgEY4', '6357867'), + (365, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dlkOgEY4', '6358652'), + (365, 2196, 'attending', '2023-09-05 18:25:06', '2025-12-17 19:46:56', 'dlkOgEY4', '6359398'), + (365, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dlkOgEY4', '6361709'), + (365, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dlkOgEY4', '6361710'), + (365, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dlkOgEY4', '6361711'), + (365, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dlkOgEY4', '6361712'), + (365, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dlkOgEY4', '6361713'), + (365, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dlkOgEY4', '6382573'), + (365, 2239, 'attending', '2023-09-01 15:23:39', '2025-12-17 19:46:56', 'dlkOgEY4', '6387592'), + (365, 2240, 'attending', '2023-09-09 19:07:55', '2025-12-17 19:46:56', 'dlkOgEY4', '6388603'), + (365, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dlkOgEY4', '6388604'), + (365, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dlkOgEY4', '6394629'), + (365, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dlkOgEY4', '6394631'), + (365, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dlkOgEY4', '6440863'), + (365, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dlkOgEY4', '6445440'), + (365, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dlkOgEY4', '6453951'), + (365, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dlkOgEY4', '6461696'), + (365, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dlkOgEY4', '6462129'), + (365, 2290, 'attending', '2023-10-16 14:57:18', '2025-12-17 19:46:46', 'dlkOgEY4', '6462214'), + (365, 2292, 'not_attending', '2023-10-23 17:18:00', '2025-12-17 19:46:47', 'dlkOgEY4', '6462216'), + (365, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dlkOgEY4', '6463218'), + (365, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dlkOgEY4', '6472181'), + (365, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dlkOgEY4', '6482693'), + (365, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dlkOgEY4', '6484200'), + (365, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dlkOgEY4', '6484680'), + (365, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dlkOgEY4', '6507741'), + (365, 2322, 'maybe', '2023-11-10 01:03:19', '2025-12-17 19:46:48', 'dlkOgEY4', '6514659'), + (365, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dlkOgEY4', '6514660'), + (365, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dlkOgEY4', '6519103'), + (365, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dlkOgEY4', '6535681'), + (365, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlkOgEY4', '6584747'), + (365, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlkOgEY4', '6587097'), + (365, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlkOgEY4', '6609022'), + (365, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlkOgEY4', '6632757'), + (365, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlkOgEY4', '6644187'), + (365, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlkOgEY4', '6648951'), + (365, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlkOgEY4', '6648952'), + (365, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dlkOgEY4', '6655401'), + (365, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlkOgEY4', '6661585'), + (365, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlkOgEY4', '6661588'), + (365, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlkOgEY4', '6661589'), + (365, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlkOgEY4', '6699906'), + (365, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dlkOgEY4', '6699913'), + (365, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlkOgEY4', '6701109'), + (365, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlkOgEY4', '6705219'), + (365, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlkOgEY4', '6710153'), + (365, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlkOgEY4', '6711552'), + (365, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dlkOgEY4', '6711553'), + (365, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlkOgEY4', '6722688'), + (365, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlkOgEY4', '6730620'), + (365, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlkOgEY4', '6730642'), + (365, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlkOgEY4', '6740364'), + (365, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlkOgEY4', '6743829'), + (365, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlkOgEY4', '7030380'), + (365, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlkOgEY4', '7033677'), + (365, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlkOgEY4', '7035415'), + (365, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlkOgEY4', '7044715'), + (365, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlkOgEY4', '7050318'), + (365, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlkOgEY4', '7050319'), + (365, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlkOgEY4', '7050322'), + (365, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlkOgEY4', '7057804'), + (365, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dlkOgEY4', '7059866'), + (365, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlkOgEY4', '7072824'), + (365, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlkOgEY4', '7074348'), + (365, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlkOgEY4', '7089267'), + (365, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlkOgEY4', '7098747'), + (365, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dlkOgEY4', '7113468'), + (365, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlkOgEY4', '7114856'), + (365, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlkOgEY4', '7114951'), + (365, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlkOgEY4', '7114955'), + (365, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlkOgEY4', '7114956'), + (365, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlkOgEY4', '7153615'), + (365, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dlkOgEY4', '7159484'), + (365, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dlkOgEY4', '7178446'), + (366, 2303, 'attending', '2023-10-28 21:32:34', '2025-12-17 19:46:47', '4kqBGbRm', '6482691'), + (366, 2304, 'attending', '2023-10-29 02:17:01', '2025-12-17 19:46:47', '4kqBGbRm', '6482693'), + (366, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4kqBGbRm', '6484200'), + (366, 2310, 'maybe', '2023-11-09 21:17:57', '2025-12-17 19:46:47', '4kqBGbRm', '6487709'), + (366, 2315, 'attending', '2023-10-30 22:17:21', '2025-12-17 19:46:47', '4kqBGbRm', '6493666'), + (366, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4kqBGbRm', '6507741'), + (366, 2321, 'not_attending', '2023-10-30 22:21:04', '2025-12-17 19:46:47', '4kqBGbRm', '6512075'), + (366, 2322, 'attending', '2023-11-15 02:53:38', '2025-12-17 19:46:48', '4kqBGbRm', '6514659'), + (366, 2323, 'maybe', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4kqBGbRm', '6514660'), + (366, 2324, 'attending', '2023-12-09 20:54:30', '2025-12-17 19:46:49', '4kqBGbRm', '6514662'), + (366, 2325, 'not_attending', '2023-12-15 20:53:10', '2025-12-17 19:46:36', '4kqBGbRm', '6514663'), + (366, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4kqBGbRm', '6519103'), + (366, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4kqBGbRm', '6535681'), + (366, 2338, 'attending', '2023-11-19 06:00:39', '2025-12-17 19:46:48', '4kqBGbRm', '6538868'), + (366, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4kqBGbRm', '6584747'), + (366, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4kqBGbRm', '6587097'), + (366, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4kqBGbRm', '6609022'), + (366, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4kqBGbRm', '6632757'), + (366, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4kqBGbRm', '6644187'), + (366, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4kqBGbRm', '6648951'), + (366, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4kqBGbRm', '6648952'), + (366, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4kqBGbRm', '6655401'), + (366, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4kqBGbRm', '6661585'), + (366, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4kqBGbRm', '6661588'), + (366, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4kqBGbRm', '6661589'), + (366, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4kqBGbRm', '6699906'), + (366, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4kqBGbRm', '6699913'), + (366, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4kqBGbRm', '6701109'), + (366, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4kqBGbRm', '6705219'), + (366, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4kqBGbRm', '6710153'), + (366, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4kqBGbRm', '6711552'), + (366, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4kqBGbRm', '6711553'), + (366, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4kqBGbRm', '6722688'), + (366, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4kqBGbRm', '6730620'), + (366, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4kqBGbRm', '6730642'), + (366, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4kqBGbRm', '6740364'), + (366, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4kqBGbRm', '6743829'), + (366, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4kqBGbRm', '7030380'), + (366, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4kqBGbRm', '7033677'), + (366, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4kqBGbRm', '7035415'), + (366, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4kqBGbRm', '7044715'), + (366, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4kqBGbRm', '7050318'), + (366, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4kqBGbRm', '7050319'), + (366, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4kqBGbRm', '7050322'), + (366, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4kqBGbRm', '7057804'), + (366, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', '4kqBGbRm', '7059866'), + (366, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4kqBGbRm', '7072824'), + (366, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4kqBGbRm', '7074348'), + (366, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4kqBGbRm', '7089267'), + (366, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4kqBGbRm', '7098747'), + (366, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4kqBGbRm', '7113468'), + (366, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4kqBGbRm', '7114856'), + (366, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4kqBGbRm', '7114951'), + (366, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4kqBGbRm', '7114955'), + (366, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4kqBGbRm', '7114956'), + (366, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4kqBGbRm', '7114957'), + (366, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4kqBGbRm', '7153615'), + (366, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4kqBGbRm', '7159484'), + (366, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4kqBGbRm', '7178446'), + (366, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4kqBGbRm', '7220467'), + (366, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4kqBGbRm', '7240354'), + (366, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4kqBGbRm', '7251633'), + (366, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4kqBGbRm', '7263048'), + (366, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4kqBGbRm', '7302674'), + (367, 872, 'not_attending', '2021-07-20 02:29:51', '2025-12-17 19:47:40', 'AXBNLjzd', '4136947'), + (367, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'AXBNLjzd', '4210314'), + (367, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'AXBNLjzd', '4229420'), + (367, 894, 'not_attending', '2021-07-20 22:49:03', '2025-12-17 19:47:40', 'AXBNLjzd', '4229423'), + (367, 900, 'not_attending', '2021-07-20 02:31:01', '2025-12-17 19:47:40', 'AXBNLjzd', '4240316'), + (367, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'AXBNLjzd', '4240317'), + (367, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'AXBNLjzd', '4240318'), + (367, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'AXBNLjzd', '4240320'), + (367, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'AXBNLjzd', '4277819'), + (367, 923, 'not_attending', '2021-07-20 02:30:14', '2025-12-17 19:47:40', 'AXBNLjzd', '4292773'), + (367, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'AXBNLjzd', '4301723'), + (367, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'AXBNLjzd', '4302093'), + (367, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'AXBNLjzd', '4304151'), + (367, 940, 'not_attending', '2021-07-30 16:29:42', '2025-12-17 19:47:40', 'AXBNLjzd', '4309049'), + (367, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'AXBNLjzd', '4315713'), + (367, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'AXBNLjzd', '4315714'), + (367, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'AXBNLjzd', '4315726'), + (367, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'AXBNLjzd', '4356801'), + (367, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'AXBNLjzd', '4366186'), + (367, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'AXBNLjzd', '4366187'), + (367, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'AXBNLjzd', '4420735'), + (367, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'AXBNLjzd', '4420738'), + (367, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'AXBNLjzd', '4420739'), + (367, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'AXBNLjzd', '4420741'), + (367, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'AXBNLjzd', '4420744'), + (367, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'AXBNLjzd', '4420747'), + (367, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'AXBNLjzd', '4420748'), + (367, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'AXBNLjzd', '4420749'), + (367, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AXBNLjzd', '4461883'), + (367, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AXBNLjzd', '4508342'), + (367, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AXBNLjzd', '4568602'), + (367, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'AXBNLjzd', '4572153'), + (367, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'AXBNLjzd', '4585962'), + (367, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'AXBNLjzd', '4596356'), + (367, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AXBNLjzd', '4598860'), + (367, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AXBNLjzd', '4598861'), + (367, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'AXBNLjzd', '4602797'), + (367, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AXBNLjzd', '4637896'), + (367, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AXBNLjzd', '4642994'), + (367, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AXBNLjzd', '4642995'), + (367, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AXBNLjzd', '4642996'), + (367, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AXBNLjzd', '4642997'), + (367, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AXBNLjzd', '4645687'), + (367, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AXBNLjzd', '4645698'), + (367, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AXBNLjzd', '4645704'), + (367, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AXBNLjzd', '4645705'), + (367, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AXBNLjzd', '4668385'), + (367, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AXBNLjzd', '6045684'), + (368, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mjEvk15d', '7074364'), + (368, 2689, 'attending', '2024-07-06 22:50:51', '2025-12-17 19:46:29', 'mjEvk15d', '7324074'), + (368, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mjEvk15d', '7324075'), + (368, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mjEvk15d', '7324078'), + (368, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mjEvk15d', '7324082'), + (368, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mjEvk15d', '7331457'), + (368, 2739, 'attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'mjEvk15d', '7344575'), + (368, 2744, 'not_attending', '2024-07-02 14:34:26', '2025-12-17 19:46:29', 'mjEvk15d', '7347764'), + (368, 2749, 'attending', '2024-07-07 18:42:30', '2025-12-17 19:46:29', 'mjEvk15d', '7355496'), + (368, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mjEvk15d', '7356752'), + (368, 2757, 'attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'mjEvk15d', '7358733'), + (368, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'mjEvk15d', '7363595'), + (368, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mjEvk15d', '7363643'), + (368, 2768, 'attending', '2024-07-18 00:38:14', '2025-12-17 19:46:30', 'mjEvk15d', '7366031'), + (368, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mjEvk15d', '7368606'), + (368, 2776, 'attending', '2024-07-24 19:06:24', '2025-12-17 19:46:30', 'mjEvk15d', '7370690'), + (368, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mjEvk15d', '7397462'), + (368, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mjEvk15d', '7424275'), + (368, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mjEvk15d', '7424276'), + (368, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mjEvk15d', '7432751'), + (368, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mjEvk15d', '7432752'), + (368, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mjEvk15d', '7432753'), + (368, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mjEvk15d', '7432754'), + (368, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mjEvk15d', '7432755'), + (368, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mjEvk15d', '7432756'), + (368, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mjEvk15d', '7432758'), + (368, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mjEvk15d', '7432759'), + (368, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mjEvk15d', '7433834'), + (368, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mjEvk15d', '7470197'), + (368, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mjEvk15d', '7685613'), + (368, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mjEvk15d', '7688194'), + (368, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mjEvk15d', '7688196'), + (368, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mjEvk15d', '7688289'), + (368, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mjEvk15d', '7692763'), + (368, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mjEvk15d', '7697552'), + (368, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mjEvk15d', '7699878'), + (368, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mjEvk15d', '7704043'), + (368, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mjEvk15d', '7712467'), + (368, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mjEvk15d', '7713585'), + (368, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mjEvk15d', '7713586'), + (368, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mjEvk15d', '7738518'), + (368, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mjEvk15d', '7750636'), + (368, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mjEvk15d', '7796540'), + (368, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mjEvk15d', '7796541'), + (368, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mjEvk15d', '7796542'), + (369, 2306, 'maybe', '2023-11-16 00:37:34', '2025-12-17 19:46:48', 'dlkgN5V4', '6484200'), + (369, 2322, 'attending', '2023-11-17 03:58:33', '2025-12-17 19:46:48', 'dlkgN5V4', '6514659'), + (369, 2323, 'attending', '2023-11-21 13:56:03', '2025-12-17 19:46:48', 'dlkgN5V4', '6514660'), + (369, 2324, 'attending', '2023-11-21 13:56:18', '2025-12-17 19:46:49', 'dlkgN5V4', '6514662'), + (369, 2325, 'attending', '2023-11-21 13:56:23', '2025-12-17 19:46:36', 'dlkgN5V4', '6514663'), + (369, 2337, 'attending', '2023-11-17 22:26:49', '2025-12-17 19:46:48', 'dlkgN5V4', '6535681'), + (369, 2338, 'attending', '2023-11-21 13:55:42', '2025-12-17 19:46:48', 'dlkgN5V4', '6538868'), + (369, 2340, 'attending', '2023-11-21 13:53:09', '2025-12-17 19:46:48', 'dlkgN5V4', '6540279'), + (369, 2341, 'not_attending', '2023-11-20 01:19:50', '2025-12-17 19:46:48', 'dlkgN5V4', '6543263'), + (369, 2343, 'attending', '2023-11-21 01:15:00', '2025-12-17 19:46:48', 'dlkgN5V4', '6574728'), + (369, 2344, 'attending', '2023-11-19 17:07:32', '2025-12-17 19:46:48', 'dlkgN5V4', '6581040'), + (369, 2348, 'attending', '2023-11-19 17:08:12', '2025-12-17 19:46:48', 'dlkgN5V4', '6583064'), + (369, 2349, 'not_attending', '2023-11-19 17:07:10', '2025-12-17 19:46:48', 'dlkgN5V4', '6583065'), + (369, 2350, 'not_attending', '2023-11-22 14:36:56', '2025-12-17 19:46:48', 'dlkgN5V4', '6584352'), + (369, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlkgN5V4', '6584747'), + (369, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlkgN5V4', '6587097'), + (369, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlkgN5V4', '6609022'), + (369, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlkgN5V4', '6632757'), + (369, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlkgN5V4', '6644187'), + (369, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlkgN5V4', '6648951'), + (369, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlkgN5V4', '6648952'), + (369, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dlkgN5V4', '6655401'), + (369, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlkgN5V4', '6661585'), + (369, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlkgN5V4', '6661588'), + (369, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlkgN5V4', '6661589'), + (369, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlkgN5V4', '6699906'), + (369, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dlkgN5V4', '6699913'), + (369, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlkgN5V4', '6701109'), + (369, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dlkgN5V4', '6704561'), + (369, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlkgN5V4', '6705219'), + (369, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dlkgN5V4', '6708410'), + (369, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlkgN5V4', '6710153'), + (369, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlkgN5V4', '6711552'), + (369, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dlkgN5V4', '6711553'), + (369, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlkgN5V4', '6722688'), + (369, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlkgN5V4', '6730620'), + (369, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlkgN5V4', '6730642'), + (369, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlkgN5V4', '6740364'), + (369, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlkgN5V4', '6743829'), + (369, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlkgN5V4', '7030380'), + (369, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlkgN5V4', '7033677'), + (369, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlkgN5V4', '7035415'), + (369, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlkgN5V4', '7044715'), + (369, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlkgN5V4', '7050318'), + (369, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlkgN5V4', '7050319'), + (369, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlkgN5V4', '7050322'), + (369, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlkgN5V4', '7057804'), + (369, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlkgN5V4', '7072824'), + (369, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlkgN5V4', '7074348'), + (369, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlkgN5V4', '7089267'), + (369, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlkgN5V4', '7098747'), + (369, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dlkgN5V4', '7113468'), + (369, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlkgN5V4', '7114856'), + (369, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlkgN5V4', '7114951'), + (369, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlkgN5V4', '7114955'), + (369, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlkgN5V4', '7114956'), + (369, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlkgN5V4', '7153615'), + (369, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dlkgN5V4', '7159484'), + (370, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Ar6VnZXA', '7324078'), + (370, 2722, 'not_attending', '2024-07-12 22:43:28', '2025-12-17 19:46:30', 'Ar6VnZXA', '7331457'), + (370, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Ar6VnZXA', '7363643'), + (370, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Ar6VnZXA', '7368606'), + (371, 1559, 'attending', '2022-09-28 22:59:39', '2025-12-17 19:47:11', 'd2VRGKJd', '5458731'), + (371, 1655, 'attending', '2022-09-19 02:26:13', '2025-12-17 19:47:11', 'd2VRGKJd', '5554482'), + (371, 1659, 'attending', '2022-09-23 00:44:31', '2025-12-17 19:47:11', 'd2VRGKJd', '5557747'), + (371, 1666, 'attending', '2022-09-27 21:40:18', '2025-12-17 19:47:11', 'd2VRGKJd', '5563208'), + (371, 1667, 'attending', '2022-09-24 19:18:36', '2025-12-17 19:47:11', 'd2VRGKJd', '5563221'), + (371, 1668, 'attending', '2022-10-01 22:48:26', '2025-12-17 19:47:12', 'd2VRGKJd', '5563222'), + (371, 1673, 'attending', '2022-09-29 22:29:28', '2025-12-17 19:47:11', 'd2VRGKJd', '5592454'), + (371, 1675, 'maybe', '2022-09-18 19:00:49', '2025-12-17 19:47:11', 'd2VRGKJd', '5593342'), + (371, 1676, 'attending', '2022-09-20 21:59:06', '2025-12-17 19:47:11', 'd2VRGKJd', '5596181'), + (371, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd2VRGKJd', '5600604'), + (371, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd2VRGKJd', '5605544'), + (371, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'd2VRGKJd', '5606737'), + (371, 1719, 'attending', '2022-10-08 18:14:33', '2025-12-17 19:47:12', 'd2VRGKJd', '5630958'), + (371, 1720, 'attending', '2022-10-15 22:52:16', '2025-12-17 19:47:12', 'd2VRGKJd', '5630959'), + (371, 1721, 'attending', '2022-10-20 00:06:36', '2025-12-17 19:47:13', 'd2VRGKJd', '5630960'), + (371, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd2VRGKJd', '5630961'), + (371, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd2VRGKJd', '5630962'), + (371, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd2VRGKJd', '5630966'), + (371, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd2VRGKJd', '5630967'), + (371, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd2VRGKJd', '5630968'), + (371, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd2VRGKJd', '5635406'), + (371, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd2VRGKJd', '5638765'), + (371, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd2VRGKJd', '5640097'), + (371, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'd2VRGKJd', '5640843'), + (371, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd2VRGKJd', '5641521'), + (371, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd2VRGKJd', '5642818'), + (371, 1746, 'maybe', '2022-10-14 23:00:08', '2025-12-17 19:47:12', 'd2VRGKJd', '5647518'), + (371, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd2VRGKJd', '5652395'), + (371, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd2VRGKJd', '5670445'), + (371, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd2VRGKJd', '5671637'), + (371, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd2VRGKJd', '5672329'), + (371, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd2VRGKJd', '5674057'), + (371, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd2VRGKJd', '5674060'), + (371, 1770, 'not_attending', '2022-10-28 18:57:57', '2025-12-17 19:47:14', 'd2VRGKJd', '5676936'), + (371, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd2VRGKJd', '5677461'), + (371, 1776, 'attending', '2022-11-10 00:51:36', '2025-12-17 19:47:15', 'd2VRGKJd', '5691067'), + (371, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd2VRGKJd', '5698046'), + (371, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd2VRGKJd', '5699760'), + (371, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd2VRGKJd', '5741601'), + (371, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd2VRGKJd', '5763458'), + (371, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd2VRGKJd', '5774172'), + (371, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd2VRGKJd', '5818247'), + (371, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd2VRGKJd', '5819471'), + (371, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd2VRGKJd', '5827739'), + (371, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd2VRGKJd', '5844306'), + (371, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd2VRGKJd', '5850159'), + (371, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd2VRGKJd', '5858999'), + (371, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd2VRGKJd', '5871984'), + (371, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd2VRGKJd', '5876354'), + (371, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd2VRGKJd', '5880939'), + (371, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd2VRGKJd', '5887890'), + (371, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd2VRGKJd', '5888598'), + (371, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd2VRGKJd', '5893260'), + (371, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2VRGKJd', '6045684'), + (372, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dODBVy3m', '6045684'), + (373, 6, 'not_attending', '2020-03-22 22:23:54', '2025-12-17 19:47:58', 'O4Z5J8lA', '2958048'), + (373, 8, 'attending', '2020-03-25 22:35:26', '2025-12-17 19:47:58', 'O4Z5J8lA', '2958050'), + (373, 10, 'attending', '2020-03-28 20:15:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '2958053'), + (373, 14, 'attending', '2020-04-09 23:08:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2958058'), + (373, 16, 'attending', '2020-03-27 06:43:07', '2025-12-17 19:47:56', 'O4Z5J8lA', '2958060'), + (373, 17, 'attending', '2020-03-22 17:41:49', '2025-12-17 19:47:58', 'O4Z5J8lA', '2958061'), + (373, 25, 'attending', '2020-07-09 21:56:30', '2025-12-17 19:47:55', 'O4Z5J8lA', '2958069'), + (373, 28, 'not_attending', '2020-04-02 20:44:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '2960421'), + (373, 29, 'attending', '2020-03-30 23:23:35', '2025-12-17 19:47:56', 'O4Z5J8lA', '2961309'), + (373, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'O4Z5J8lA', '2961895'), + (373, 31, 'not_attending', '2020-03-25 22:32:59', '2025-12-17 19:47:58', 'O4Z5J8lA', '2963118'), + (373, 32, 'attending', '2020-03-31 22:50:44', '2025-12-17 19:47:56', 'O4Z5J8lA', '2963931'), + (373, 35, 'not_attending', '2020-03-29 22:59:42', '2025-12-17 19:47:56', 'O4Z5J8lA', '2969206'), + (373, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'O4Z5J8lA', '2969208'), + (373, 37, 'attending', '2020-03-30 23:33:44', '2025-12-17 19:47:56', 'O4Z5J8lA', '2969680'), + (373, 38, 'attending', '2020-04-03 23:01:11', '2025-12-17 19:47:56', 'O4Z5J8lA', '2969751'), + (373, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'O4Z5J8lA', '2971546'), + (373, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'O4Z5J8lA', '2974534'), + (373, 46, 'attending', '2020-04-11 21:41:53', '2025-12-17 19:47:57', 'O4Z5J8lA', '2974955'), + (373, 51, 'maybe', '2020-06-30 16:41:07', '2025-12-17 19:47:55', 'O4Z5J8lA', '2975276'), + (373, 55, 'attending', '2020-04-06 21:55:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2975384'), + (373, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'O4Z5J8lA', '2975385'), + (373, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'O4Z5J8lA', '2976575'), + (373, 66, 'attending', '2020-06-09 19:08:06', '2025-12-17 19:47:58', 'O4Z5J8lA', '2977135'), + (373, 67, 'attending', '2020-06-16 02:24:51', '2025-12-17 19:47:58', 'O4Z5J8lA', '2977136'), + (373, 68, 'attending', '2020-06-23 03:04:57', '2025-12-17 19:47:58', 'O4Z5J8lA', '2977137'), + (373, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'O4Z5J8lA', '2977343'), + (373, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2977812'), + (373, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'O4Z5J8lA', '2977931'), + (373, 74, 'attending', '2020-04-18 19:23:30', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978244'), + (373, 75, 'attending', '2020-04-22 18:34:55', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978245'), + (373, 76, 'attending', '2020-05-02 20:05:10', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978246'), + (373, 77, 'attending', '2020-05-08 07:55:11', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978247'), + (373, 78, 'attending', '2020-05-23 20:33:41', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978249'), + (373, 79, 'attending', '2020-05-28 22:27:38', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978250'), + (373, 80, 'attending', '2020-06-04 17:01:14', '2025-12-17 19:47:58', 'O4Z5J8lA', '2978251'), + (373, 81, 'attending', '2020-06-11 17:47:07', '2025-12-17 19:47:58', 'O4Z5J8lA', '2978252'), + (373, 82, 'attending', '2020-04-22 18:34:18', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978433'), + (373, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978438'), + (373, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'O4Z5J8lA', '2980871'), + (373, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'O4Z5J8lA', '2981388'), + (373, 91, 'attending', '2020-05-01 20:50:28', '2025-12-17 19:47:57', 'O4Z5J8lA', '2985130'), + (373, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2986743'), + (373, 98, 'attending', '2020-05-21 19:55:06', '2025-12-17 19:47:57', 'O4Z5J8lA', '2987455'), + (373, 104, 'not_attending', '2020-04-24 14:20:07', '2025-12-17 19:47:57', 'O4Z5J8lA', '2991471'), + (373, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'O4Z5J8lA', '2993501'), + (373, 109, 'maybe', '2020-05-13 21:50:50', '2025-12-17 19:47:57', 'O4Z5J8lA', '2994480'), + (373, 115, 'attending', '2020-05-14 21:47:16', '2025-12-17 19:47:57', 'O4Z5J8lA', '3001217'), + (373, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'O4Z5J8lA', '3015486'), + (373, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'O4Z5J8lA', '3023063'), + (373, 124, 'maybe', '2020-05-28 16:43:05', '2025-12-17 19:47:57', 'O4Z5J8lA', '3023809'), + (373, 126, 'attending', '2020-05-24 16:34:28', '2025-12-17 19:47:57', 'O4Z5J8lA', '3024022'), + (373, 129, 'attending', '2020-06-05 20:04:39', '2025-12-17 19:47:58', 'O4Z5J8lA', '3028743'), + (373, 130, 'maybe', '2020-05-28 16:43:11', '2025-12-17 19:47:57', 'O4Z5J8lA', '3028781'), + (373, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'O4Z5J8lA', '3034321'), + (373, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'O4Z5J8lA', '3035881'), + (373, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'O4Z5J8lA', '3049983'), + (373, 146, 'attending', '2020-06-27 02:27:04', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058683'), + (373, 147, 'attending', '2020-08-19 03:47:08', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058684'), + (373, 148, 'attending', '2020-07-09 23:26:25', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058685'), + (373, 149, 'attending', '2020-07-18 19:58:00', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058686'), + (373, 150, 'attending', '2020-07-24 03:12:05', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058687'), + (373, 151, 'not_attending', '2020-08-27 16:33:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058688'), + (373, 152, 'attending', '2020-09-04 18:10:31', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058689'), + (373, 154, 'attending', '2020-08-08 18:20:49', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058691'), + (373, 155, 'attending', '2020-08-14 19:28:10', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058692'), + (373, 156, 'not_attending', '2020-09-12 19:32:17', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058693'), + (373, 157, 'not_attending', '2020-09-19 18:54:18', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058694'), + (373, 158, 'attending', '2020-09-26 18:33:51', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058695'), + (373, 159, 'not_attending', '2020-10-02 01:53:04', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058696'), + (373, 161, 'attending', '2020-10-07 21:42:22', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058698'), + (373, 162, 'attending', '2020-10-16 06:08:29', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058699'), + (373, 168, 'attending', '2020-06-17 21:31:11', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058740'), + (373, 170, 'attending', '2020-06-07 18:55:20', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058742'), + (373, 171, 'attending', '2020-06-11 17:47:28', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058743'), + (373, 172, 'not_attending', '2020-06-13 02:32:20', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058959'), + (373, 173, 'attending', '2020-06-16 04:06:50', '2025-12-17 19:47:58', 'O4Z5J8lA', '3067093'), + (373, 176, 'attending', '2020-06-18 15:53:00', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073192'), + (373, 177, 'attending', '2020-06-17 21:31:32', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073193'), + (373, 178, 'attending', '2020-06-16 00:37:45', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073195'), + (373, 179, 'not_attending', '2020-06-20 17:01:47', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073687'), + (373, 181, 'attending', '2020-06-20 20:14:30', '2025-12-17 19:47:58', 'O4Z5J8lA', '3074513'), + (373, 182, 'attending', '2020-06-27 04:26:45', '2025-12-17 19:47:55', 'O4Z5J8lA', '3074514'), + (373, 183, 'attending', '2020-06-22 21:05:36', '2025-12-17 19:47:58', 'O4Z5J8lA', '3075228'), + (373, 185, 'not_attending', '2020-06-21 20:27:39', '2025-12-17 19:47:58', 'O4Z5J8lA', '3075456'), + (373, 186, 'maybe', '2020-06-25 17:42:43', '2025-12-17 19:47:55', 'O4Z5J8lA', '3083791'), + (373, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'O4Z5J8lA', '3085151'), + (373, 191, 'attending', '2020-07-07 21:44:24', '2025-12-17 19:47:55', 'O4Z5J8lA', '3087259'), + (373, 192, 'attending', '2020-07-15 21:02:06', '2025-12-17 19:47:55', 'O4Z5J8lA', '3087260'), + (373, 193, 'attending', '2020-07-24 03:12:02', '2025-12-17 19:47:55', 'O4Z5J8lA', '3087261'), + (373, 195, 'attending', '2020-08-08 18:20:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087264'), + (373, 196, 'attending', '2020-08-14 19:28:12', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087265'), + (373, 197, 'attending', '2020-08-19 03:47:37', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087266'), + (373, 198, 'not_attending', '2020-08-27 16:33:12', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087267'), + (373, 199, 'attending', '2020-09-04 18:10:38', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087268'), + (373, 201, 'maybe', '2020-06-25 22:48:10', '2025-12-17 19:47:55', 'O4Z5J8lA', '3088653'), + (373, 202, 'attending', '2020-07-06 22:45:41', '2025-12-17 19:47:55', 'O4Z5J8lA', '3090353'), + (373, 203, 'attending', '2020-06-22 17:29:44', '2025-12-17 19:47:58', 'O4Z5J8lA', '3091624'), + (373, 204, 'attending', '2020-06-28 20:43:04', '2025-12-17 19:47:55', 'O4Z5J8lA', '3102758'), + (373, 206, 'attending', '2020-07-17 21:12:16', '2025-12-17 19:47:55', 'O4Z5J8lA', '3104806'), + (373, 207, 'attending', '2020-07-24 02:48:32', '2025-12-17 19:47:55', 'O4Z5J8lA', '3104807'), + (373, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'O4Z5J8lA', '3106813'), + (373, 218, 'attending', '2020-07-19 02:08:40', '2025-12-17 19:47:55', 'O4Z5J8lA', '3129262'), + (373, 221, 'not_attending', '2020-09-17 02:12:08', '2025-12-17 19:47:56', 'O4Z5J8lA', '3129265'), + (373, 223, 'not_attending', '2020-09-12 19:32:21', '2025-12-17 19:47:56', 'O4Z5J8lA', '3129980'), + (373, 224, 'attending', '2020-07-17 03:55:31', '2025-12-17 19:47:55', 'O4Z5J8lA', '3130712'), + (373, 226, 'attending', '2020-07-15 21:02:19', '2025-12-17 19:47:55', 'O4Z5J8lA', '3132817'), + (373, 227, 'not_attending', '2020-07-16 21:10:19', '2025-12-17 19:47:55', 'O4Z5J8lA', '3132820'), + (373, 228, 'attending', '2020-07-15 23:54:47', '2025-12-17 19:47:55', 'O4Z5J8lA', '3132821'), + (373, 232, 'attending', '2020-07-19 21:45:46', '2025-12-17 19:47:55', 'O4Z5J8lA', '3139770'), + (373, 233, 'attending', '2020-07-19 21:45:21', '2025-12-17 19:47:55', 'O4Z5J8lA', '3139773'), + (373, 236, 'attending', '2020-07-21 22:42:36', '2025-12-17 19:47:55', 'O4Z5J8lA', '3140873'), + (373, 239, 'attending', '2020-08-22 04:18:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '3149470'), + (373, 240, 'not_attending', '2020-09-07 18:40:56', '2025-12-17 19:47:56', 'O4Z5J8lA', '3149471'), + (373, 264, 'attending', '2020-08-05 20:54:37', '2025-12-17 19:47:56', 'O4Z5J8lA', '3150735'), + (373, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '3155321'), + (373, 273, 'attending', '2020-08-07 00:14:54', '2025-12-17 19:47:56', 'O4Z5J8lA', '3162006'), + (373, 274, 'not_attending', '2020-08-06 21:13:39', '2025-12-17 19:47:56', 'O4Z5J8lA', '3163404'), + (373, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'O4Z5J8lA', '3163442'), + (373, 280, 'attending', '2020-08-12 20:42:48', '2025-12-17 19:47:56', 'O4Z5J8lA', '3166942'), + (373, 293, 'attending', '2020-08-19 23:31:29', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172832'), + (373, 294, 'not_attending', '2020-08-26 22:26:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172833'), + (373, 295, 'maybe', '2020-08-19 23:30:16', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172834'), + (373, 296, 'not_attending', '2020-09-11 22:17:40', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172876'), + (373, 299, 'not_attending', '2020-08-17 21:36:09', '2025-12-17 19:47:56', 'O4Z5J8lA', '3176591'), + (373, 303, 'not_attending', '2020-08-16 16:26:27', '2025-12-17 19:47:56', 'O4Z5J8lA', '3178444'), + (373, 305, 'attending', '2020-08-17 21:35:59', '2025-12-17 19:47:56', 'O4Z5J8lA', '3179555'), + (373, 309, 'attending', '2020-08-21 02:41:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '3185332'), + (373, 310, 'attending', '2020-08-23 17:52:05', '2025-12-17 19:47:56', 'O4Z5J8lA', '3186005'), + (373, 311, 'maybe', '2020-09-07 18:41:19', '2025-12-17 19:47:56', 'O4Z5J8lA', '3186057'), + (373, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'O4Z5J8lA', '3191735'), + (373, 319, 'maybe', '2020-08-30 22:19:52', '2025-12-17 19:47:56', 'O4Z5J8lA', '3194179'), + (373, 324, 'maybe', '2020-09-23 23:49:46', '2025-12-17 19:47:56', 'O4Z5J8lA', '3197082'), + (373, 325, 'attending', '2020-09-23 19:30:48', '2025-12-17 19:47:51', 'O4Z5J8lA', '3197083'), + (373, 335, 'not_attending', '2020-09-04 21:52:09', '2025-12-17 19:47:56', 'O4Z5J8lA', '3200209'), + (373, 339, 'not_attending', '2020-09-07 18:40:14', '2025-12-17 19:47:56', 'O4Z5J8lA', '3204469'), + (373, 340, 'attending', '2020-09-17 02:12:42', '2025-12-17 19:47:56', 'O4Z5J8lA', '3204470'), + (373, 341, 'maybe', '2020-09-25 22:07:02', '2025-12-17 19:47:52', 'O4Z5J8lA', '3204471'), + (373, 342, 'maybe', '2020-10-02 01:52:47', '2025-12-17 19:47:52', 'O4Z5J8lA', '3204472'), + (373, 355, 'not_attending', '2020-09-17 02:11:38', '2025-12-17 19:47:56', 'O4Z5J8lA', '3212571'), + (373, 356, 'not_attending', '2020-09-23 23:50:06', '2025-12-17 19:47:51', 'O4Z5J8lA', '3212572'), + (373, 362, 'attending', '2020-09-26 18:33:58', '2025-12-17 19:47:52', 'O4Z5J8lA', '3214207'), + (373, 363, 'not_attending', '2020-09-27 18:35:44', '2025-12-17 19:47:52', 'O4Z5J8lA', '3217037'), + (373, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'O4Z5J8lA', '3218510'), + (373, 375, 'not_attending', '2020-10-08 21:53:10', '2025-12-17 19:47:52', 'O4Z5J8lA', '3222825'), + (373, 384, 'not_attending', '2020-09-29 23:25:16', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228696'), + (373, 385, 'not_attending', '2020-10-02 01:53:11', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228698'), + (373, 386, 'attending', '2020-10-07 21:42:26', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228699'), + (373, 387, 'attending', '2020-10-16 06:08:30', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228700'), + (373, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228701'), + (373, 416, 'not_attending', '2020-10-09 20:08:33', '2025-12-17 19:47:52', 'O4Z5J8lA', '3238073'), + (373, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'O4Z5J8lA', '3245751'), + (373, 425, 'not_attending', '2020-10-16 05:58:53', '2025-12-17 19:47:52', 'O4Z5J8lA', '3250097'), + (373, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'O4Z5J8lA', '3250232'), + (373, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'O4Z5J8lA', '3256168'), + (373, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'O4Z5J8lA', '3263578'), + (373, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'O4Z5J8lA', '3276428'), + (373, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'O4Z5J8lA', '3281467'), + (373, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'O4Z5J8lA', '3281470'), + (373, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'O4Z5J8lA', '3281829'), + (373, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'O4Z5J8lA', '3285413'), + (373, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'O4Z5J8lA', '3285414'), + (373, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'O4Z5J8lA', '3297764'), + (373, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'O4Z5J8lA', '3313856'), + (373, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'O4Z5J8lA', '3314909'), + (373, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'O4Z5J8lA', '3314964'), + (373, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'O4Z5J8lA', '3323365'), + (373, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'O4Z5J8lA', '3329383'), + (373, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'O4Z5J8lA', '3351539'), + (373, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'O4Z5J8lA', '3386848'), + (373, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'O4Z5J8lA', '3389527'), + (373, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'O4Z5J8lA', '3396499'), + (373, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'O4Z5J8lA', '3403650'), + (373, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'O4Z5J8lA', '3406988'), + (373, 555, 'not_attending', '2021-01-23 23:08:06', '2025-12-17 19:47:49', 'O4Z5J8lA', '3416576'), + (373, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'O4Z5J8lA', '3418925'), + (373, 568, 'not_attending', '2021-01-31 00:01:22', '2025-12-17 19:47:50', 'O4Z5J8lA', '3430267'), + (373, 569, 'not_attending', '2021-01-25 06:51:04', '2025-12-17 19:47:49', 'O4Z5J8lA', '3432673'), + (373, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'O4Z5J8lA', '3468125'), + (373, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'O4Z5J8lA', '3470303'), + (373, 604, 'not_attending', '2021-02-25 17:31:08', '2025-12-17 19:47:50', 'O4Z5J8lA', '3470305'), + (373, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'O4Z5J8lA', '3470991'), + (373, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'O4Z5J8lA', '3517815'), + (373, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'O4Z5J8lA', '3517816'), + (373, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'O4Z5J8lA', '3523941'), + (373, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'O4Z5J8lA', '3533850'), + (373, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'O4Z5J8lA', '3536632'), + (373, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'O4Z5J8lA', '3536656'), + (373, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'O4Z5J8lA', '3539916'), + (373, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'O4Z5J8lA', '3539917'), + (373, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'O4Z5J8lA', '3539918'), + (373, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539919'), + (373, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539920'), + (373, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539921'), + (373, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539922'), + (373, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'O4Z5J8lA', '3539923'), + (373, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'O4Z5J8lA', '3539927'), + (373, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'O4Z5J8lA', '3582734'), + (373, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'O4Z5J8lA', '3583262'), + (373, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'O4Z5J8lA', '3619523'), + (373, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'O4Z5J8lA', '3661369'), + (373, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'O4Z5J8lA', '3674262'), + (373, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'O4Z5J8lA', '3677402'), + (373, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'O4Z5J8lA', '3730212'), + (373, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'O4Z5J8lA', '3793156'), + (373, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'O4Z5J8lA', '3974109'), + (373, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'O4Z5J8lA', '3975311'), + (373, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'O4Z5J8lA', '3975312'), + (373, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'O4Z5J8lA', '3994992'), + (373, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'O4Z5J8lA', '4014338'), + (373, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'O4Z5J8lA', '4021848'), + (373, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'O4Z5J8lA', '4136744'), + (373, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'O4Z5J8lA', '4136937'), + (373, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'O4Z5J8lA', '4136938'), + (373, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'O4Z5J8lA', '4136947'), + (373, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'O4Z5J8lA', '4210314'), + (373, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'O4Z5J8lA', '4225444'), + (373, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'O4Z5J8lA', '4239259'), + (373, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'O4Z5J8lA', '4240316'), + (373, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'O4Z5J8lA', '4250163'), + (373, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'O4Z5J8lA', '4275957'), + (373, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4Z5J8lA', '6045684'), + (374, 871, 'not_attending', '2021-07-06 03:20:54', '2025-12-17 19:47:39', 'GmjzxPam', '4136938'), + (374, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'GmjzxPam', '4136947'), + (374, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjzxPam', '4210314'), + (374, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjzxPam', '4225444'), + (374, 892, 'maybe', '2021-07-06 00:41:35', '2025-12-17 19:47:39', 'GmjzxPam', '4229418'), + (374, 895, 'maybe', '2021-07-10 00:51:17', '2025-12-17 19:47:39', 'GmjzxPam', '4229424'), + (374, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GmjzxPam', '4240316'), + (374, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GmjzxPam', '4240317'), + (374, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GmjzxPam', '4240318'), + (374, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GmjzxPam', '4240320'), + (374, 916, 'maybe', '2021-07-12 02:53:39', '2025-12-17 19:47:40', 'GmjzxPam', '4273772'), + (374, 917, 'maybe', '2021-07-12 03:16:00', '2025-12-17 19:47:39', 'GmjzxPam', '4274481'), + (374, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjzxPam', '4275957'), + (374, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjzxPam', '4277819'), + (374, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjzxPam', '4301723'), + (374, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GmjzxPam', '4302093'), + (374, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjzxPam', '4304151'), + (374, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'GmjzxPam', '4345519'), + (374, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjzxPam', '4356801'), + (374, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'GmjzxPam', '4358025'), + (374, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GmjzxPam', '4366186'), + (374, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GmjzxPam', '4366187'), + (374, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'GmjzxPam', '4402823'), + (374, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GmjzxPam', '4420735'), + (374, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GmjzxPam', '4420738'), + (374, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GmjzxPam', '4420739'), + (374, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjzxPam', '4420741'), + (374, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GmjzxPam', '4420744'), + (374, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GmjzxPam', '4420747'), + (374, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GmjzxPam', '4420748'), + (374, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjzxPam', '4420749'), + (374, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GmjzxPam', '4461883'), + (374, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GmjzxPam', '4508342'), + (374, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GmjzxPam', '4568602'), + (374, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjzxPam', '6045684'), + (375, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxKz7n24', '6699913'), + (375, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxKz7n24', '7030380'), + (375, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxKz7n24', '7033677'), + (375, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxKz7n24', '7035415'), + (375, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxKz7n24', '7044715'), + (375, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxKz7n24', '7050318'), + (375, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxKz7n24', '7050319'), + (375, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxKz7n24', '7050322'), + (375, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxKz7n24', '7057804'), + (375, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxKz7n24', '7072824'), + (375, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxKz7n24', '7074348'), + (375, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxKz7n24', '7089267'), + (375, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxKz7n24', '7098747'), + (375, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxKz7n24', '7113468'), + (375, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxKz7n24', '7114856'), + (375, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxKz7n24', '7114951'), + (375, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxKz7n24', '7114955'), + (375, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxKz7n24', '7114956'), + (375, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxKz7n24', '7153615'), + (375, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxKz7n24', '7159484'), + (375, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxKz7n24', '7178446'), + (376, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dw8Wbv0m', '6514659'), + (376, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dw8Wbv0m', '6514660'), + (376, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dw8Wbv0m', '6584747'), + (376, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dw8Wbv0m', '6587097'), + (376, 2359, 'attending', '2023-11-30 05:14:09', '2025-12-17 19:46:48', 'dw8Wbv0m', '6596617'), + (376, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dw8Wbv0m', '6609022'), + (376, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dw8Wbv0m', '6632757'), + (376, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dw8Wbv0m', '6644187'), + (376, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dw8Wbv0m', '6648951'), + (376, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dw8Wbv0m', '6648952'), + (376, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dw8Wbv0m', '6651141'), + (376, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dw8Wbv0m', '6655401'), + (376, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dw8Wbv0m', '6661585'), + (376, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dw8Wbv0m', '6661588'), + (376, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dw8Wbv0m', '6661589'), + (376, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dw8Wbv0m', '6699906'), + (376, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dw8Wbv0m', '6699913'), + (376, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dw8Wbv0m', '6701109'), + (376, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dw8Wbv0m', '6705219'), + (376, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dw8Wbv0m', '6710153'), + (376, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dw8Wbv0m', '6711552'), + (376, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dw8Wbv0m', '6711553'), + (376, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dw8Wbv0m', '6722688'), + (376, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dw8Wbv0m', '6730620'), + (376, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dw8Wbv0m', '6730642'), + (376, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dw8Wbv0m', '6740364'), + (376, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dw8Wbv0m', '6743829'), + (376, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dw8Wbv0m', '7030380'), + (376, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dw8Wbv0m', '7033677'), + (376, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dw8Wbv0m', '7035415'), + (376, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dw8Wbv0m', '7044715'), + (376, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dw8Wbv0m', '7050318'), + (376, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dw8Wbv0m', '7050319'), + (376, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dw8Wbv0m', '7050322'), + (376, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dw8Wbv0m', '7057804'), + (376, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dw8Wbv0m', '7072824'), + (376, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dw8Wbv0m', '7074348'), + (376, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dw8Wbv0m', '7074364'), + (376, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dw8Wbv0m', '7089267'), + (376, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dw8Wbv0m', '7098747'), + (376, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dw8Wbv0m', '7113468'), + (376, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dw8Wbv0m', '7114856'), + (376, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dw8Wbv0m', '7114951'), + (376, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dw8Wbv0m', '7114955'), + (376, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dw8Wbv0m', '7114956'), + (376, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dw8Wbv0m', '7114957'), + (376, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dw8Wbv0m', '7153615'), + (376, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dw8Wbv0m', '7159484'), + (376, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dw8Wbv0m', '7178446'), + (376, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dw8Wbv0m', '7220467'), + (376, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dw8Wbv0m', '7240354'), + (376, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dw8Wbv0m', '7251633'), + (376, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dw8Wbv0m', '7324073'), + (376, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dw8Wbv0m', '7324074'), + (376, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dw8Wbv0m', '7324075'), + (376, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dw8Wbv0m', '7324078'), + (376, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dw8Wbv0m', '7324082'), + (376, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dw8Wbv0m', '7331457'), + (376, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dw8Wbv0m', '7363643'), + (376, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dw8Wbv0m', '7368606'), + (376, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dw8Wbv0m', '7397462'), + (376, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dw8Wbv0m', '7424275'), + (376, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dw8Wbv0m', '7432751'), + (376, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dw8Wbv0m', '7432752'), + (376, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dw8Wbv0m', '7432753'), + (376, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432754'), + (376, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432755'), + (376, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432756'), + (376, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432758'), + (376, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432759'), + (376, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dw8Wbv0m', '7433834'), + (376, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dw8Wbv0m', '7470197'), + (376, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dw8Wbv0m', '7685613'), + (376, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dw8Wbv0m', '7688194'), + (376, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dw8Wbv0m', '7688196'), + (376, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dw8Wbv0m', '7688289'), + (376, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dw8Wbv0m', '7692763'), + (376, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dw8Wbv0m', '7697552'), + (376, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dw8Wbv0m', '7699878'), + (376, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dw8Wbv0m', '7704043'), + (376, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dw8Wbv0m', '7712467'), + (376, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dw8Wbv0m', '7713585'), + (376, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dw8Wbv0m', '7713586'), + (376, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dw8Wbv0m', '7738518'), + (376, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dw8Wbv0m', '7750636'), + (376, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dw8Wbv0m', '7796540'), + (376, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dw8Wbv0m', '7796541'), + (376, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dw8Wbv0m', '7796542'), + (376, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dw8Wbv0m', '7825913'), + (376, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dw8Wbv0m', '7826209'), + (376, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dw8Wbv0m', '7834742'), + (376, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dw8Wbv0m', '7842108'), + (376, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dw8Wbv0m', '7842902'), + (376, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dw8Wbv0m', '7842903'), + (376, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dw8Wbv0m', '7842904'), + (376, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dw8Wbv0m', '7842905'), + (376, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dw8Wbv0m', '7855719'), + (376, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dw8Wbv0m', '7860683'), + (376, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dw8Wbv0m', '7860684'), + (376, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dw8Wbv0m', '7866095'), + (376, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dw8Wbv0m', '7869170'), + (376, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dw8Wbv0m', '7869188'), + (376, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dw8Wbv0m', '7869201'), + (376, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dw8Wbv0m', '7877465'), + (376, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dw8Wbv0m', '7888250'), + (376, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dw8Wbv0m', '7904777'), + (376, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dw8Wbv0m', '8349164'), + (376, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dw8Wbv0m', '8349545'), + (376, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dw8Wbv0m', '8368028'), + (376, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dw8Wbv0m', '8368029'), + (376, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dw8Wbv0m', '8388462'), + (376, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dw8Wbv0m', '8400273'), + (376, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dw8Wbv0m', '8400275'), + (376, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dw8Wbv0m', '8400276'), + (376, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dw8Wbv0m', '8404977'), + (376, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dw8Wbv0m', '8430783'), + (376, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dw8Wbv0m', '8430784'), + (376, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dw8Wbv0m', '8430799'), + (376, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dw8Wbv0m', '8430800'), + (376, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dw8Wbv0m', '8430801'), + (376, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dw8Wbv0m', '8438709'), + (376, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dw8Wbv0m', '8457738'), + (376, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dw8Wbv0m', '8459566'), + (376, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dw8Wbv0m', '8459567'), + (376, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dw8Wbv0m', '8461032'), + (376, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dw8Wbv0m', '8477877'), + (376, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dw8Wbv0m', '8485688'), + (376, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dw8Wbv0m', '8490587'), + (376, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dw8Wbv0m', '8493552'), + (376, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dw8Wbv0m', '8493553'), + (376, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dw8Wbv0m', '8493554'), + (376, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dw8Wbv0m', '8493555'), + (376, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dw8Wbv0m', '8493556'), + (376, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dw8Wbv0m', '8493557'), + (376, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dw8Wbv0m', '8493558'), + (376, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dw8Wbv0m', '8493559'), + (376, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dw8Wbv0m', '8493560'), + (376, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dw8Wbv0m', '8493561'), + (376, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dw8Wbv0m', '8493572'), + (376, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dw8Wbv0m', '8540725'), + (376, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dw8Wbv0m', '8555421'), + (377, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40kNGKEA', '6045684'), + (378, 1431, 'attending', '2022-06-11 00:16:07', '2025-12-17 19:47:30', '41WDLg7m', '5389605'), + (378, 1442, 'attending', '2022-06-18 22:02:14', '2025-12-17 19:47:17', '41WDLg7m', '5397265'), + (378, 1450, 'attending', '2022-06-10 20:03:41', '2025-12-17 19:47:30', '41WDLg7m', '5403421'), + (378, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WDLg7m', '5403967'), + (378, 1456, 'attending', '2022-06-16 22:16:45', '2025-12-17 19:47:17', '41WDLg7m', '5404779'), + (378, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WDLg7m', '5404786'), + (378, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WDLg7m', '5405203'), + (378, 1463, 'maybe', '2022-06-14 17:36:29', '2025-12-17 19:47:31', '41WDLg7m', '5405208'), + (378, 1466, 'not_attending', '2022-06-16 22:50:57', '2025-12-17 19:47:17', '41WDLg7m', '5406427'), + (378, 1473, 'attending', '2022-06-14 17:36:54', '2025-12-17 19:47:31', '41WDLg7m', '5407267'), + (378, 1476, 'not_attending', '2022-06-19 20:51:16', '2025-12-17 19:47:17', '41WDLg7m', '5408130'), + (378, 1478, 'not_attending', '2022-06-24 21:58:32', '2025-12-17 19:47:19', '41WDLg7m', '5408794'), + (378, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WDLg7m', '5411699'), + (378, 1481, 'not_attending', '2022-06-20 02:04:39', '2025-12-17 19:47:17', '41WDLg7m', '5412237'), + (378, 1482, 'attending', '2022-06-20 01:56:51', '2025-12-17 19:47:19', '41WDLg7m', '5412550'), + (378, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WDLg7m', '5415046'), + (378, 1488, 'attending', '2022-06-26 01:04:24', '2025-12-17 19:47:19', '41WDLg7m', '5420154'), + (378, 1490, 'not_attending', '2022-06-26 01:02:13', '2025-12-17 19:47:19', '41WDLg7m', '5420156'), + (378, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WDLg7m', '5422086'), + (378, 1496, 'attending', '2022-06-26 17:10:25', '2025-12-17 19:47:19', '41WDLg7m', '5422404'), + (378, 1497, 'attending', '2022-06-26 17:10:44', '2025-12-17 19:47:19', '41WDLg7m', '5422405'), + (378, 1498, 'maybe', '2022-07-01 19:26:33', '2025-12-17 19:47:19', '41WDLg7m', '5422406'), + (378, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WDLg7m', '5424565'), + (378, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WDLg7m', '5426882'), + (378, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WDLg7m', '5427083'), + (378, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41WDLg7m', '5441125'), + (378, 1514, 'not_attending', '2022-07-21 03:01:38', '2025-12-17 19:47:20', '41WDLg7m', '5441126'), + (378, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WDLg7m', '5441128'), + (378, 1516, 'not_attending', '2022-08-20 14:45:20', '2025-12-17 19:47:23', '41WDLg7m', '5441129'), + (378, 1517, 'attending', '2022-08-27 15:10:28', '2025-12-17 19:47:23', '41WDLg7m', '5441130'), + (378, 1518, 'attending', '2022-08-31 10:18:17', '2025-12-17 19:47:24', '41WDLg7m', '5441131'), + (378, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41WDLg7m', '5441132'), + (378, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WDLg7m', '5446643'), + (378, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WDLg7m', '5453325'), + (378, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WDLg7m', '5454516'), + (378, 1544, 'maybe', '2022-09-11 03:36:00', '2025-12-17 19:47:11', '41WDLg7m', '5454517'), + (378, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WDLg7m', '5454605'), + (378, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WDLg7m', '5455037'), + (378, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WDLg7m', '5461278'), + (378, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WDLg7m', '5469480'), + (378, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WDLg7m', '5471073'), + (378, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '41WDLg7m', '5474663'), + (378, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WDLg7m', '5482022'), + (378, 1575, 'attending', '2022-08-26 22:48:44', '2025-12-17 19:47:23', '41WDLg7m', '5482250'), + (378, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WDLg7m', '5482793'), + (378, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WDLg7m', '5488912'), + (378, 1584, 'maybe', '2022-08-27 15:00:13', '2025-12-17 19:47:23', '41WDLg7m', '5492004'), + (378, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WDLg7m', '5492192'), + (378, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WDLg7m', '5493139'), + (378, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WDLg7m', '5493200'), + (378, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WDLg7m', '5502188'), + (378, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41WDLg7m', '5505059'), + (378, 1609, 'maybe', '2022-08-28 15:54:05', '2025-12-17 19:47:23', '41WDLg7m', '5506590'), + (378, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41WDLg7m', '5509055'), + (378, 1618, 'maybe', '2022-08-28 18:46:04', '2025-12-17 19:47:23', '41WDLg7m', '5512005'), + (378, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WDLg7m', '5512862'), + (378, 1621, 'not_attending', '2022-08-23 00:12:56', '2025-12-17 19:47:23', '41WDLg7m', '5513531'), + (378, 1623, 'attending', '2022-08-23 14:41:35', '2025-12-17 19:47:23', '41WDLg7m', '5513678'), + (378, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WDLg7m', '5513985'), + (378, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '41WDLg7m', '5519981'), + (378, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41WDLg7m', '5522550'), + (378, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41WDLg7m', '5534683'), + (378, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '41WDLg7m', '5537735'), + (378, 1636, 'attending', '2022-09-04 18:38:53', '2025-12-17 19:47:24', '41WDLg7m', '5538454'), + (378, 1637, 'attending', '2022-08-30 22:20:23', '2025-12-17 19:47:24', '41WDLg7m', '5539591'), + (378, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41WDLg7m', '5540859'), + (378, 1641, 'attending', '2022-08-31 22:41:10', '2025-12-17 19:47:24', '41WDLg7m', '5544226'), + (378, 1642, 'attending', '2022-08-31 22:41:39', '2025-12-17 19:47:24', '41WDLg7m', '5544227'), + (378, 1644, 'maybe', '2022-09-11 03:36:15', '2025-12-17 19:47:11', '41WDLg7m', '5545857'), + (378, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41WDLg7m', '5546619'), + (378, 1653, 'maybe', '2022-09-05 23:27:52', '2025-12-17 19:47:11', '41WDLg7m', '5554400'), + (378, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41WDLg7m', '5555245'), + (378, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41WDLg7m', '5557747'), + (378, 1661, 'maybe', '2022-09-09 00:41:49', '2025-12-17 19:47:24', '41WDLg7m', '5560254'), + (378, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41WDLg7m', '5560255'), + (378, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41WDLg7m', '5562906'), + (378, 1668, 'maybe', '2022-09-13 20:47:03', '2025-12-17 19:47:12', '41WDLg7m', '5563222'), + (378, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41WDLg7m', '5600604'), + (378, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41WDLg7m', '5605544'), + (378, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', '41WDLg7m', '5606737'), + (378, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41WDLg7m', '5630960'), + (378, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41WDLg7m', '5630961'), + (378, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41WDLg7m', '5630962'), + (378, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41WDLg7m', '5630966'), + (378, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41WDLg7m', '5630967'), + (378, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41WDLg7m', '5630968'), + (378, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41WDLg7m', '5635406'), + (378, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41WDLg7m', '5638765'), + (378, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41WDLg7m', '5640097'), + (378, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41WDLg7m', '5640843'), + (378, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41WDLg7m', '5641521'), + (378, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41WDLg7m', '5642818'), + (378, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41WDLg7m', '5652395'), + (378, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41WDLg7m', '5670445'), + (378, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41WDLg7m', '5671637'), + (378, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41WDLg7m', '5672329'), + (378, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41WDLg7m', '5674057'), + (378, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41WDLg7m', '5674060'), + (378, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41WDLg7m', '5677461'), + (378, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41WDLg7m', '5698046'), + (378, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41WDLg7m', '5699760'), + (378, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41WDLg7m', '5741601'), + (378, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41WDLg7m', '5763458'), + (378, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41WDLg7m', '5774172'), + (378, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '41WDLg7m', '5818247'), + (378, 1835, 'maybe', '2023-01-05 01:57:12', '2025-12-17 19:47:05', '41WDLg7m', '5819471'), + (378, 1840, 'maybe', '2022-12-08 01:09:54', '2025-12-17 19:47:17', '41WDLg7m', '5822288'), + (378, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41WDLg7m', '5827739'), + (378, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41WDLg7m', '5844306'), + (378, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41WDLg7m', '5850159'), + (378, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41WDLg7m', '5858999'), + (378, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41WDLg7m', '5871984'), + (378, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41WDLg7m', '5876354'), + (378, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41WDLg7m', '5880939'), + (378, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '41WDLg7m', '5880942'), + (378, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '41WDLg7m', '5880943'), + (378, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41WDLg7m', '5887890'), + (378, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41WDLg7m', '5888598'), + (378, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41WDLg7m', '5893260'), + (378, 1888, 'maybe', '2023-02-17 21:46:33', '2025-12-17 19:47:07', '41WDLg7m', '5900197'), + (378, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '41WDLg7m', '5900200'), + (378, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '41WDLg7m', '5900202'), + (378, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '41WDLg7m', '5900203'), + (378, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '41WDLg7m', '5910526'), + (378, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '41WDLg7m', '5910528'), + (378, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '41WDLg7m', '5936234'), + (378, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '41WDLg7m', '5958351'), + (378, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '41WDLg7m', '5959751'), + (378, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '41WDLg7m', '5959755'), + (378, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '41WDLg7m', '5960055'), + (378, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '41WDLg7m', '5961684'), + (378, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '41WDLg7m', '5962132'), + (378, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '41WDLg7m', '5962133'), + (378, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '41WDLg7m', '5962134'), + (378, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '41WDLg7m', '5962317'), + (378, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '41WDLg7m', '5962318'), + (378, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '41WDLg7m', '5965933'), + (378, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '41WDLg7m', '5967014'), + (378, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '41WDLg7m', '5972815'), + (378, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '41WDLg7m', '5974016'), + (378, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '41WDLg7m', '5981515'), + (378, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '41WDLg7m', '5993516'), + (378, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '41WDLg7m', '5998939'), + (378, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '41WDLg7m', '6028191'), + (378, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '41WDLg7m', '6040066'), + (378, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '41WDLg7m', '6042717'), + (378, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '41WDLg7m', '6044838'), + (378, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '41WDLg7m', '6044839'), + (378, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WDLg7m', '6045684'), + (378, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '41WDLg7m', '6050104'), + (378, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '41WDLg7m', '6053195'), + (378, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '41WDLg7m', '6053198'), + (378, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '41WDLg7m', '6056085'), + (378, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '41WDLg7m', '6056916'), + (378, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '41WDLg7m', '6059290'), + (378, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '41WDLg7m', '6060328'), + (378, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '41WDLg7m', '6061037'), + (378, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '41WDLg7m', '6061039'), + (378, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '41WDLg7m', '6067245'), + (378, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '41WDLg7m', '6068094'), + (378, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '41WDLg7m', '6068252'), + (378, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '41WDLg7m', '6068253'), + (378, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '41WDLg7m', '6068254'), + (378, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '41WDLg7m', '6068280'), + (378, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '41WDLg7m', '6069093'), + (378, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '41WDLg7m', '6072528'), + (378, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '41WDLg7m', '6079840'), + (378, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '41WDLg7m', '6083398'), + (378, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '41WDLg7m', '6093504'), + (378, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '41WDLg7m', '6097414'), + (378, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '41WDLg7m', '6097442'), + (378, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '41WDLg7m', '6097684'), + (378, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '41WDLg7m', '6098762'), + (378, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '41WDLg7m', '6101361'), + (378, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '41WDLg7m', '6101362'), + (378, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '41WDLg7m', '6107314'), + (378, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '41WDLg7m', '6120034'), + (378, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '41WDLg7m', '6136733'), + (378, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '41WDLg7m', '6137989'), + (378, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '41WDLg7m', '6150864'), + (378, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '41WDLg7m', '6155491'), + (378, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '41WDLg7m', '6164417'), + (378, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '41WDLg7m', '6166388'), + (378, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '41WDLg7m', '6176439'), + (378, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '41WDLg7m', '6182410'), + (378, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '41WDLg7m', '6185812'), + (378, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '41WDLg7m', '6187651'), + (378, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '41WDLg7m', '6187963'), + (378, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '41WDLg7m', '6187964'), + (378, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '41WDLg7m', '6187966'), + (378, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '41WDLg7m', '6187967'), + (378, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '41WDLg7m', '6187969'), + (378, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '41WDLg7m', '6334878'), + (378, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '41WDLg7m', '6337236'), + (378, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '41WDLg7m', '6337970'), + (378, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '41WDLg7m', '6338308'), + (378, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '41WDLg7m', '6341710'), + (378, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '41WDLg7m', '6342044'), + (378, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '41WDLg7m', '6342298'), + (378, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '41WDLg7m', '6343294'), + (378, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '41WDLg7m', '6347034'), + (378, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '41WDLg7m', '6347056'), + (378, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '41WDLg7m', '6353830'), + (378, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '41WDLg7m', '6353831'), + (378, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '41WDLg7m', '6357867'), + (378, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '41WDLg7m', '6358652'), + (378, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '41WDLg7m', '6361709'), + (378, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '41WDLg7m', '6361710'), + (378, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '41WDLg7m', '6361711'), + (378, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '41WDLg7m', '6361712'), + (378, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '41WDLg7m', '6361713'), + (378, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '41WDLg7m', '6382573'), + (378, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '41WDLg7m', '6388604'), + (378, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '41WDLg7m', '6394629'), + (378, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '41WDLg7m', '6394631'), + (378, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '41WDLg7m', '6440863'), + (378, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '41WDLg7m', '6445440'), + (378, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '41WDLg7m', '6453951'), + (378, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '41WDLg7m', '6461696'), + (378, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '41WDLg7m', '6462129'), + (378, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '41WDLg7m', '6463218'), + (378, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '41WDLg7m', '6472181'), + (378, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41WDLg7m', '6482693'), + (378, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '41WDLg7m', '6484200'), + (378, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '41WDLg7m', '6484680'), + (378, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41WDLg7m', '6507741'), + (378, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41WDLg7m', '6514659'), + (378, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41WDLg7m', '6514660'), + (378, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41WDLg7m', '6519103'), + (378, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41WDLg7m', '6535681'), + (378, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41WDLg7m', '6584747'), + (378, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41WDLg7m', '6587097'), + (378, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41WDLg7m', '6609022'), + (378, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41WDLg7m', '6632757'), + (378, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41WDLg7m', '6644187'), + (378, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41WDLg7m', '6648951'), + (378, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41WDLg7m', '6648952'), + (378, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41WDLg7m', '6655401'), + (378, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41WDLg7m', '6661585'), + (378, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41WDLg7m', '6661588'), + (378, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41WDLg7m', '6661589'), + (378, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41WDLg7m', '6699906'), + (378, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41WDLg7m', '6699913'), + (378, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41WDLg7m', '6701109'), + (378, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41WDLg7m', '6705219'), + (378, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41WDLg7m', '6710153'), + (378, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41WDLg7m', '6711552'), + (378, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '41WDLg7m', '6711553'), + (378, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41WDLg7m', '6722688'), + (378, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41WDLg7m', '6730620'), + (378, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41WDLg7m', '6740364'), + (378, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41WDLg7m', '6743829'), + (378, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41WDLg7m', '7030380'), + (378, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41WDLg7m', '7033677'), + (378, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '41WDLg7m', '7044715'), + (378, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '41WDLg7m', '7050318'), + (378, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '41WDLg7m', '7050319'), + (378, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '41WDLg7m', '7050322'), + (378, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '41WDLg7m', '7057804'), + (378, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '41WDLg7m', '7072824'), + (378, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '41WDLg7m', '7074348'), + (378, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '41WDLg7m', '7074364'), + (378, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '41WDLg7m', '7089267'), + (378, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '41WDLg7m', '7098747'), + (378, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '41WDLg7m', '7113468'), + (378, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '41WDLg7m', '7114856'), + (378, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '41WDLg7m', '7114951'), + (378, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '41WDLg7m', '7114955'), + (378, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '41WDLg7m', '7114956'), + (378, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '41WDLg7m', '7114957'), + (378, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '41WDLg7m', '7159484'), + (378, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '41WDLg7m', '7178446'), + (378, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '41WDLg7m', '7220467'), + (378, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '41WDLg7m', '7240354'), + (378, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '41WDLg7m', '7251633'), + (378, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '41WDLg7m', '7324073'), + (378, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '41WDLg7m', '7324074'), + (378, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '41WDLg7m', '7324075'), + (378, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '41WDLg7m', '7324078'), + (378, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '41WDLg7m', '7324082'), + (378, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '41WDLg7m', '7331457'), + (378, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '41WDLg7m', '7363643'), + (378, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '41WDLg7m', '7368606'), + (378, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '41WDLg7m', '7397462'), + (378, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '41WDLg7m', '7424275'), + (378, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '41WDLg7m', '7432751'), + (378, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '41WDLg7m', '7432752'), + (378, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '41WDLg7m', '7432753'), + (378, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '41WDLg7m', '7432754'), + (378, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '41WDLg7m', '7432755'), + (378, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '41WDLg7m', '7432756'), + (378, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '41WDLg7m', '7432758'), + (378, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '41WDLg7m', '7432759'), + (378, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '41WDLg7m', '7433834'), + (378, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '41WDLg7m', '7470197'), + (378, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '41WDLg7m', '7685613'), + (378, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '41WDLg7m', '7688194'), + (378, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '41WDLg7m', '7688196'), + (378, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '41WDLg7m', '7688289'), + (378, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '41WDLg7m', '7692763'), + (378, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '41WDLg7m', '7697552'), + (378, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '41WDLg7m', '7699878'), + (378, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '41WDLg7m', '7704043'), + (378, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '41WDLg7m', '7712467'), + (378, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '41WDLg7m', '7713585'), + (378, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '41WDLg7m', '7713586'), + (378, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '41WDLg7m', '7738518'), + (378, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '41WDLg7m', '7750636'), + (378, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '41WDLg7m', '7796540'), + (378, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '41WDLg7m', '7796541'), + (378, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '41WDLg7m', '7796542'), + (378, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '41WDLg7m', '7825913'), + (378, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '41WDLg7m', '7826209'), + (378, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '41WDLg7m', '7834742'), + (378, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '41WDLg7m', '7842108'), + (378, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '41WDLg7m', '7842902'), + (378, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '41WDLg7m', '7842903'), + (378, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '41WDLg7m', '7842904'), + (378, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '41WDLg7m', '7842905'), + (378, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '41WDLg7m', '7855719'), + (378, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '41WDLg7m', '7860683'), + (378, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '41WDLg7m', '7860684'), + (378, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '41WDLg7m', '7866095'), + (378, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '41WDLg7m', '7869170'), + (378, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '41WDLg7m', '7869188'), + (378, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '41WDLg7m', '7869201'), + (378, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '41WDLg7m', '7877465'), + (378, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '41WDLg7m', '7888250'), + (378, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '41WDLg7m', '7904777'), + (378, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '41WDLg7m', '8349164'), + (378, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '41WDLg7m', '8349545'), + (378, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '41WDLg7m', '8368028'), + (378, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '41WDLg7m', '8368029'), + (378, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '41WDLg7m', '8388462'), + (378, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '41WDLg7m', '8400273'), + (378, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '41WDLg7m', '8400275'), + (378, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '41WDLg7m', '8400276'), + (378, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '41WDLg7m', '8404977'), + (378, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '41WDLg7m', '8430783'), + (378, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '41WDLg7m', '8430784'), + (378, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '41WDLg7m', '8430799'), + (378, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '41WDLg7m', '8430800'), + (378, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '41WDLg7m', '8430801'), + (378, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '41WDLg7m', '8438709'), + (378, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '41WDLg7m', '8457738'), + (378, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '41WDLg7m', '8459566'), + (378, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '41WDLg7m', '8459567'), + (378, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '41WDLg7m', '8461032'), + (378, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '41WDLg7m', '8477877'), + (378, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '41WDLg7m', '8485688'), + (378, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '41WDLg7m', '8490587'), + (378, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '41WDLg7m', '8493552'), + (378, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '41WDLg7m', '8493553'), + (378, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '41WDLg7m', '8493554'), + (378, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '41WDLg7m', '8493555'), + (378, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '41WDLg7m', '8493556'), + (378, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '41WDLg7m', '8493557'), + (378, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '41WDLg7m', '8493558'), + (378, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '41WDLg7m', '8493559'), + (378, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '41WDLg7m', '8493560'), + (378, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '41WDLg7m', '8493561'), + (378, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '41WDLg7m', '8493572'), + (378, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '41WDLg7m', '8540725'), + (378, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '41WDLg7m', '8555421'), + (379, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mj6QGq5m', '5195095'), + (379, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mj6QGq5m', '5247467'), + (379, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mj6QGq5m', '5260800'), + (379, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mj6QGq5m', '5269930'), + (379, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mj6QGq5m', '5271448'), + (379, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mj6QGq5m', '5271449'), + (379, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mj6QGq5m', '5276469'), + (379, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mj6QGq5m', '5278159'), + (379, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mj6QGq5m', '5363695'), + (379, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mj6QGq5m', '5365960'), + (379, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mj6QGq5m', '5368973'), + (379, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mj6QGq5m', '5378247'), + (379, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mj6QGq5m', '5389605'), + (379, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mj6QGq5m', '5397265'), + (379, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj6QGq5m', '6045684'), + (380, 823, 'attending', '2021-06-19 15:05:10', '2025-12-17 19:47:48', 'ZdNYvEy4', '3974109'), + (380, 824, 'attending', '2021-06-03 22:07:07', '2025-12-17 19:47:47', 'ZdNYvEy4', '3974112'), + (380, 827, 'attending', '2021-06-02 04:28:40', '2025-12-17 19:47:47', 'ZdNYvEy4', '3975311'), + (380, 828, 'attending', '2021-06-12 22:21:28', '2025-12-17 19:47:47', 'ZdNYvEy4', '3975312'), + (380, 833, 'attending', '2021-06-07 22:31:01', '2025-12-17 19:47:47', 'ZdNYvEy4', '3990438'), + (380, 838, 'maybe', '2021-06-06 21:06:38', '2025-12-17 19:47:47', 'ZdNYvEy4', '3994992'), + (380, 844, 'attending', '2021-06-10 12:30:06', '2025-12-17 19:47:38', 'ZdNYvEy4', '4014338'), + (380, 859, 'attending', '2021-06-10 20:21:52', '2025-12-17 19:47:48', 'ZdNYvEy4', '4015993'), + (380, 867, 'attending', '2021-06-26 17:03:02', '2025-12-17 19:47:38', 'ZdNYvEy4', '4021848'), + (380, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNYvEy4', '4136744'), + (380, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ZdNYvEy4', '4136937'), + (380, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ZdNYvEy4', '4136938'), + (380, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNYvEy4', '4136947'), + (380, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNYvEy4', '4210314'), + (380, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ZdNYvEy4', '4225444'), + (380, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNYvEy4', '4239259'), + (380, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ZdNYvEy4', '4240316'), + (380, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ZdNYvEy4', '4240317'), + (380, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNYvEy4', '4250163'), + (380, 917, 'not_attending', '2021-07-15 00:59:01', '2025-12-17 19:47:39', 'ZdNYvEy4', '4274481'), + (380, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ZdNYvEy4', '4275957'), + (380, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNYvEy4', '4277819'), + (380, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNYvEy4', '4301723'), + (380, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNYvEy4', '6045684'), + (381, 996, 'attending', '2021-10-15 22:17:45', '2025-12-17 19:47:35', 'dNMjqYW4', '4420747'), + (381, 997, 'attending', '2021-10-23 18:19:03', '2025-12-17 19:47:35', 'dNMjqYW4', '4420748'), + (381, 998, 'attending', '2021-10-29 21:21:40', '2025-12-17 19:47:36', 'dNMjqYW4', '4420749'), + (381, 1086, 'attending', '2021-10-13 09:15:57', '2025-12-17 19:47:34', 'dNMjqYW4', '4568602'), + (381, 1087, 'maybe', '2021-10-15 19:49:09', '2025-12-17 19:47:35', 'dNMjqYW4', '4572153'), + (381, 1089, 'not_attending', '2021-10-18 19:52:59', '2025-12-17 19:47:35', 'dNMjqYW4', '4574712'), + (381, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dNMjqYW4', '4585962'), + (381, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dNMjqYW4', '4596356'), + (381, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dNMjqYW4', '4598860'), + (381, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dNMjqYW4', '4598861'), + (381, 1099, 'attending', '2021-11-06 15:28:42', '2025-12-17 19:47:36', 'dNMjqYW4', '4602797'), + (381, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dNMjqYW4', '4637896'), + (381, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dNMjqYW4', '4642994'), + (381, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dNMjqYW4', '4642995'), + (381, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dNMjqYW4', '4642996'), + (381, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dNMjqYW4', '4642997'), + (381, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dNMjqYW4', '4645687'), + (381, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dNMjqYW4', '4645698'), + (381, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dNMjqYW4', '4645704'), + (381, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dNMjqYW4', '4645705'), + (381, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dNMjqYW4', '4668385'), + (381, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dNMjqYW4', '6045684'), + (382, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VmMzYEkA', '3517815'), + (382, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VmMzYEkA', '3517816'), + (382, 625, 'attending', '2021-03-02 21:06:04', '2025-12-17 19:47:51', 'VmMzYEkA', '3533296'), + (382, 630, 'attending', '2021-03-02 21:06:16', '2025-12-17 19:47:51', 'VmMzYEkA', '3533425'), + (382, 639, 'not_attending', '2021-03-07 04:16:32', '2025-12-17 19:47:51', 'VmMzYEkA', '3536656'), + (382, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VmMzYEkA', '3539916'), + (382, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VmMzYEkA', '3539917'), + (382, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VmMzYEkA', '3539918'), + (382, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VmMzYEkA', '3539919'), + (382, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VmMzYEkA', '3539920'), + (382, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VmMzYEkA', '3539921'), + (382, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VmMzYEkA', '3539922'), + (382, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VmMzYEkA', '3539923'), + (382, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VmMzYEkA', '3539927'), + (382, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VmMzYEkA', '3582734'), + (382, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VmMzYEkA', '3619523'), + (382, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VmMzYEkA', '3674262'), + (382, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VmMzYEkA', '3677402'), + (382, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMzYEkA', '6045684'), + (383, 2697, 'not_attending', '2024-08-31 19:03:16', '2025-12-17 19:46:32', '4E92NPn4', '7324082'), + (383, 2698, 'not_attending', '2024-08-31 19:05:13', '2025-12-17 19:46:24', '4E92NPn4', '7324083'), + (383, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4E92NPn4', '7424275'), + (383, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4E92NPn4', '7424276'), + (383, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4E92NPn4', '7432751'), + (383, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4E92NPn4', '7432752'), + (383, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4E92NPn4', '7432753'), + (383, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4E92NPn4', '7432754'), + (383, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4E92NPn4', '7432755'), + (383, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4E92NPn4', '7432756'), + (383, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4E92NPn4', '7432758'), + (383, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4E92NPn4', '7432759'), + (383, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4E92NPn4', '7433834'), + (383, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4E92NPn4', '7470197'), + (383, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', '4E92NPn4', '7682072'), + (383, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4E92NPn4', '7685613'), + (383, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4E92NPn4', '7688194'), + (383, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4E92NPn4', '7688196'), + (383, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4E92NPn4', '7688289'), + (383, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4E92NPn4', '7692763'), + (383, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4E92NPn4', '7697552'), + (383, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4E92NPn4', '7699878'), + (383, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4E92NPn4', '7704043'), + (383, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4E92NPn4', '7712467'), + (383, 2925, 'maybe', '2024-12-14 13:17:06', '2025-12-17 19:46:21', '4E92NPn4', '7713584'), + (383, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4E92NPn4', '7713585'), + (383, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4E92NPn4', '7713586'), + (383, 2947, 'attending', '2024-12-09 03:09:24', '2025-12-17 19:46:21', '4E92NPn4', '7727445'), + (383, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4E92NPn4', '7738518'), + (383, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4E92NPn4', '7750636'), + (383, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4E92NPn4', '7796540'), + (383, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4E92NPn4', '7796541'), + (383, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4E92NPn4', '7796542'), + (383, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4E92NPn4', '7825913'), + (383, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4E92NPn4', '7826209'), + (383, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4E92NPn4', '7834742'), + (383, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4E92NPn4', '7842108'), + (383, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4E92NPn4', '7842902'), + (383, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4E92NPn4', '7842903'), + (383, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4E92NPn4', '7842904'), + (383, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4E92NPn4', '7842905'), + (383, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4E92NPn4', '7855719'), + (383, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4E92NPn4', '7860683'), + (383, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4E92NPn4', '7860684'), + (383, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4E92NPn4', '7866095'), + (383, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4E92NPn4', '7869170'), + (383, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4E92NPn4', '7869188'), + (383, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4E92NPn4', '7869201'), + (383, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4E92NPn4', '7877465'), + (383, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4E92NPn4', '7878570'), + (383, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4E92NPn4', '7888250'), + (383, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4E92NPn4', '8349164'), + (383, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4E92NPn4', '8349545'), + (383, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4E92NPn4', '8353584'), + (384, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgLGQj4', '6045684'), + (385, 993, 'not_attending', '2021-09-24 16:12:14', '2025-12-17 19:47:34', '40k0QWYA', '4420741'), + (385, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', '40k0QWYA', '4420744'), + (385, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', '40k0QWYA', '4420747'), + (385, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '40k0QWYA', '4568602'), + (385, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '40k0QWYA', '4572153'), + (385, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '40k0QWYA', '4585962'), + (385, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '40k0QWYA', '4596356'), + (385, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '40k0QWYA', '4598860'), + (385, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '40k0QWYA', '4598861'), + (385, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '40k0QWYA', '4602797'), + (385, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '40k0QWYA', '4637896'), + (385, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '40k0QWYA', '4642994'), + (385, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '40k0QWYA', '4642995'), + (385, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '40k0QWYA', '4642996'), + (385, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '40k0QWYA', '4642997'), + (385, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '40k0QWYA', '4645687'), + (385, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '40k0QWYA', '4645698'), + (385, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '40k0QWYA', '4645704'), + (385, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '40k0QWYA', '4645705'), + (385, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '40k0QWYA', '4668385'), + (385, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '40k0QWYA', '4694407'), + (385, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '40k0QWYA', '4736497'), + (385, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '40k0QWYA', '4736499'), + (385, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '40k0QWYA', '4736500'), + (385, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '40k0QWYA', '4736503'), + (385, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '40k0QWYA', '4736504'), + (385, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '40k0QWYA', '4746789'), + (385, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '40k0QWYA', '4753929'), + (385, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '40k0QWYA', '5038850'), + (385, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '40k0QWYA', '5045826'), + (385, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '40k0QWYA', '5132533'), + (385, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '40k0QWYA', '5186582'), + (385, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '40k0QWYA', '5186583'), + (385, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '40k0QWYA', '5186585'), + (385, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '40k0QWYA', '5190437'), + (385, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '40k0QWYA', '5215989'), + (385, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40k0QWYA', '6045684'), + (386, 1486, 'attending', '2022-07-06 00:16:22', '2025-12-17 19:47:19', 'daJeNzlm', '5416339'), + (386, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'daJeNzlm', '5424565'), + (386, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'daJeNzlm', '5426882'), + (386, 1505, 'not_attending', '2022-07-06 01:20:19', '2025-12-17 19:47:19', 'daJeNzlm', '5427083'), + (386, 1507, 'maybe', '2022-07-06 20:27:54', '2025-12-17 19:47:19', 'daJeNzlm', '5433100'), + (386, 1511, 'maybe', '2022-07-09 01:01:55', '2025-12-17 19:47:19', 'daJeNzlm', '5437733'), + (386, 1512, 'attending', '2022-07-12 14:03:19', '2025-12-17 19:47:19', 'daJeNzlm', '5441112'), + (386, 1513, 'maybe', '2022-07-09 14:34:45', '2025-12-17 19:47:20', 'daJeNzlm', '5441125'), + (386, 1514, 'maybe', '2022-07-16 18:20:35', '2025-12-17 19:47:20', 'daJeNzlm', '5441126'), + (386, 1515, 'maybe', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'daJeNzlm', '5441128'), + (386, 1520, 'maybe', '2022-07-12 14:03:04', '2025-12-17 19:47:19', 'daJeNzlm', '5441645'), + (386, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'daJeNzlm', '5446643'), + (386, 1530, 'attending', '2022-07-16 18:21:01', '2025-12-17 19:47:20', 'daJeNzlm', '5448612'), + (386, 1536, 'maybe', '2022-07-16 18:20:11', '2025-12-17 19:47:20', 'daJeNzlm', '5449068'), + (386, 1539, 'maybe', '2022-07-28 11:36:26', '2025-12-17 19:47:21', 'daJeNzlm', '5449671'), + (386, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'daJeNzlm', '5453325'), + (386, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'daJeNzlm', '5454516'), + (386, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'daJeNzlm', '5454605'), + (386, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'daJeNzlm', '5455037'), + (386, 1552, 'attending', '2022-07-28 11:35:48', '2025-12-17 19:47:20', 'daJeNzlm', '5455149'), + (386, 1557, 'maybe', '2022-08-03 12:24:40', '2025-12-17 19:47:21', 'daJeNzlm', '5458729'), + (386, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'daJeNzlm', '5461278'), + (386, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'daJeNzlm', '5469480'), + (386, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'daJeNzlm', '5471073'), + (386, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'daJeNzlm', '5474663'), + (386, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'daJeNzlm', '5482022'), + (386, 1576, 'not_attending', '2022-08-02 12:09:02', '2025-12-17 19:47:21', 'daJeNzlm', '5482623'), + (386, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'daJeNzlm', '5482793'), + (386, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'daJeNzlm', '5488912'), + (386, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'daJeNzlm', '5492192'), + (386, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'daJeNzlm', '5493139'), + (386, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'daJeNzlm', '5493200'), + (386, 1591, 'maybe', '2022-08-09 18:32:01', '2025-12-17 19:47:22', 'daJeNzlm', '5493764'), + (386, 1592, 'maybe', '2022-08-09 18:31:16', '2025-12-17 19:47:22', 'daJeNzlm', '5494031'), + (386, 1595, 'maybe', '2022-08-09 18:31:48', '2025-12-17 19:47:22', 'daJeNzlm', '5495736'), + (386, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'daJeNzlm', '5502188'), + (386, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'daJeNzlm', '5512862'), + (386, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'daJeNzlm', '5513985'), + (386, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daJeNzlm', '6045684'), + (387, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '41qEGjR4', '7869188'), + (387, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', '41qEGjR4', '7880977'), + (387, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '41qEGjR4', '7888250'), + (387, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', '41qEGjR4', '7897784'), + (387, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', '41qEGjR4', '7903856'), + (387, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', '41qEGjR4', '8347770'), + (387, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '41qEGjR4', '8349164'), + (387, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '41qEGjR4', '8349545'), + (387, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '41qEGjR4', '8353584'), + (388, 254, 'attending', '2021-03-07 21:03:33', '2025-12-17 19:47:51', 'v4Dgx36A', '3149485'), + (388, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'v4Dgx36A', '3426074'), + (388, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'v4Dgx36A', '3430267'), + (388, 621, 'not_attending', '2021-03-06 08:08:40', '2025-12-17 19:47:51', 'v4Dgx36A', '3517815'), + (388, 622, 'maybe', '2021-03-16 22:50:56', '2025-12-17 19:47:51', 'v4Dgx36A', '3517816'), + (388, 639, 'attending', '2021-03-07 09:13:24', '2025-12-17 19:47:51', 'v4Dgx36A', '3536656'), + (388, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4Dgx36A', '3539927'), + (388, 688, 'attending', '2021-03-10 01:17:45', '2025-12-17 19:47:51', 'v4Dgx36A', '3553729'), + (388, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4Dgx36A', '3582734'), + (388, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4Dgx36A', '3619523'), + (388, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4Dgx36A', '6045684'), + (389, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'd8qWLL8m', '7903856'), + (389, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd8qWLL8m', '7904777'), + (389, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'd8qWLL8m', '8347770'), + (389, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd8qWLL8m', '8349164'), + (389, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd8qWLL8m', '8349545'), + (389, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd8qWLL8m', '8353584'), + (389, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd8qWLL8m', '8368028'), + (389, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd8qWLL8m', '8368029'), + (389, 3140, 'not_attending', '2025-05-21 04:07:31', '2025-12-17 19:46:21', 'd8qWLL8m', '8380399'), + (389, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', 'd8qWLL8m', '8387505'), + (389, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd8qWLL8m', '8388462'), + (389, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd8qWLL8m', '8400273'), + (389, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd8qWLL8m', '8400274'), + (389, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd8qWLL8m', '8400275'), + (389, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'd8qWLL8m', '8400276'), + (389, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd8qWLL8m', '8404977'), + (389, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'd8qWLL8m', '8430783'), + (389, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd8qWLL8m', '8430784'), + (389, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd8qWLL8m', '8430799'), + (389, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd8qWLL8m', '8430800'), + (389, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd8qWLL8m', '8430801'), + (389, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd8qWLL8m', '8438709'), + (389, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd8qWLL8m', '8457738'), + (389, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd8qWLL8m', '8459566'), + (389, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd8qWLL8m', '8459567'), + (389, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd8qWLL8m', '8461032'), + (389, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd8qWLL8m', '8477877'), + (389, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd8qWLL8m', '8485688'), + (389, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd8qWLL8m', '8490587'), + (389, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd8qWLL8m', '8493552'), + (389, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'd8qWLL8m', '8493553'), + (389, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd8qWLL8m', '8493554'), + (389, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd8qWLL8m', '8493555'), + (389, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd8qWLL8m', '8493556'), + (389, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd8qWLL8m', '8493557'), + (389, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd8qWLL8m', '8493558'), + (389, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd8qWLL8m', '8493559'), + (389, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd8qWLL8m', '8493560'), + (389, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'd8qWLL8m', '8493561'), + (389, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd8qWLL8m', '8493572'), + (389, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'd8qWLL8m', '8529058'), + (390, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXNVpNRd', '6045684'), + (391, 262, 'attending', '2021-06-25 04:41:03', '2025-12-17 19:47:38', '54kyQKzm', '3149493'), + (391, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '54kyQKzm', '4021848'), + (391, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '54kyQKzm', '4136937'), + (391, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '54kyQKzm', '4136938'), + (391, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', '54kyQKzm', '4136947'), + (391, 879, 'not_attending', '2021-06-25 04:41:07', '2025-12-17 19:47:38', '54kyQKzm', '4147806'), + (391, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54kyQKzm', '4210314'), + (391, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54kyQKzm', '4225444'), + (391, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '54kyQKzm', '4229417'), + (391, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '54kyQKzm', '4229418'), + (391, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', '54kyQKzm', '4229420'), + (391, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', '54kyQKzm', '4229423'), + (391, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54kyQKzm', '4239259'), + (391, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '54kyQKzm', '4240316'), + (391, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '54kyQKzm', '4240317'), + (391, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '54kyQKzm', '4240318'), + (391, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '54kyQKzm', '4240320'), + (391, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '54kyQKzm', '4250163'), + (391, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54kyQKzm', '4275957'), + (391, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54kyQKzm', '4277819'), + (391, 923, 'not_attending', '2021-07-20 02:30:40', '2025-12-17 19:47:40', '54kyQKzm', '4292773'), + (391, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54kyQKzm', '4301723'), + (391, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '54kyQKzm', '4302093'), + (391, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '54kyQKzm', '4304151'), + (391, 940, 'not_attending', '2021-07-30 16:29:32', '2025-12-17 19:47:40', '54kyQKzm', '4309049'), + (391, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', '54kyQKzm', '4315713'), + (391, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', '54kyQKzm', '4315714'), + (391, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', '54kyQKzm', '4315726'), + (391, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54kyQKzm', '4356801'), + (391, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '54kyQKzm', '4366186'), + (391, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '54kyQKzm', '4366187'), + (391, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '54kyQKzm', '4420735'), + (391, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '54kyQKzm', '4420738'), + (391, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '54kyQKzm', '4420739'), + (391, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '54kyQKzm', '4420741'), + (391, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '54kyQKzm', '4420744'), + (391, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '54kyQKzm', '4420747'), + (391, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '54kyQKzm', '4420748'), + (391, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '54kyQKzm', '4420749'), + (391, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kyQKzm', '6045684'), + (415, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4E2kMeXd', '5900202'), + (415, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '4E2kMeXd', '5962317'), + (415, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4E2kMeXd', '5962318'), + (415, 1951, 'not_attending', '2023-03-21 00:52:15', '2025-12-17 19:46:57', '4E2kMeXd', '5965933'), + (415, 1971, 'attending', '2023-03-20 19:42:34', '2025-12-17 19:46:56', '4E2kMeXd', '5993765'), + (415, 1973, 'not_attending', '2023-03-19 20:38:35', '2025-12-17 19:46:56', '4E2kMeXd', '5993777'), + (415, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', '4E2kMeXd', '6028191'), + (415, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4E2kMeXd', '6040066'), + (415, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4E2kMeXd', '6042717'), + (415, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4E2kMeXd', '6044838'), + (415, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4E2kMeXd', '6044839'), + (415, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E2kMeXd', '6045684'), + (415, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4E2kMeXd', '6050104'), + (415, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4E2kMeXd', '6053195'), + (415, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4E2kMeXd', '6053198'), + (415, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4E2kMeXd', '6056085'), + (415, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4E2kMeXd', '6056916'), + (415, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4E2kMeXd', '6059290'), + (415, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4E2kMeXd', '6060328'), + (415, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4E2kMeXd', '6061037'), + (415, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4E2kMeXd', '6061039'), + (415, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4E2kMeXd', '6067245'), + (415, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4E2kMeXd', '6068094'), + (415, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4E2kMeXd', '6068252'), + (415, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4E2kMeXd', '6068253'), + (415, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4E2kMeXd', '6068254'), + (415, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '4E2kMeXd', '6068280'), + (415, 2032, 'attending', '2023-06-02 18:51:43', '2025-12-17 19:47:04', '4E2kMeXd', '6068281'), + (415, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4E2kMeXd', '6069093'), + (415, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4E2kMeXd', '6072528'), + (415, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4E2kMeXd', '6079840'), + (415, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4E2kMeXd', '6083398'), + (415, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4E2kMeXd', '6093504'), + (415, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4E2kMeXd', '6097414'), + (415, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4E2kMeXd', '6097442'), + (415, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4E2kMeXd', '6097684'), + (415, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4E2kMeXd', '6098762'), + (415, 2064, 'not_attending', '2023-06-24 17:44:36', '2025-12-17 19:46:50', '4E2kMeXd', '6099988'), + (415, 2065, 'attending', '2023-06-15 21:04:37', '2025-12-17 19:46:49', '4E2kMeXd', '6101169'), + (415, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4E2kMeXd', '6101361'), + (415, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4E2kMeXd', '6101362'), + (415, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4E2kMeXd', '6103752'), + (415, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4E2kMeXd', '6107314'), + (415, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4E2kMeXd', '6120034'), + (415, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '4E2kMeXd', '6136733'), + (415, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4E2kMeXd', '6137989'), + (415, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4E2kMeXd', '6150864'), + (415, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4E2kMeXd', '6155491'), + (415, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4E2kMeXd', '6164417'), + (415, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4E2kMeXd', '6166388'), + (415, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4E2kMeXd', '6176439'), + (415, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4E2kMeXd', '6182410'), + (415, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4E2kMeXd', '6185812'), + (415, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4E2kMeXd', '6187651'), + (415, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4E2kMeXd', '6187963'), + (415, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4E2kMeXd', '6187964'), + (415, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4E2kMeXd', '6187966'), + (415, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4E2kMeXd', '6187967'), + (415, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4E2kMeXd', '6187969'), + (415, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4E2kMeXd', '6334878'), + (415, 2152, 'attending', '2023-07-14 22:32:24', '2025-12-17 19:46:52', '4E2kMeXd', '6337021'), + (415, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4E2kMeXd', '6337236'), + (415, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4E2kMeXd', '6337970'), + (415, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4E2kMeXd', '6338308'), + (415, 2160, 'attending', '2023-07-22 18:09:42', '2025-12-17 19:46:54', '4E2kMeXd', '6338358'), + (415, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4E2kMeXd', '6340845'), + (415, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4E2kMeXd', '6341710'), + (415, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4E2kMeXd', '6342044'), + (415, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4E2kMeXd', '6342298'), + (415, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4E2kMeXd', '6343294'), + (415, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4E2kMeXd', '6347034'), + (415, 2177, 'not_attending', '2023-08-12 17:53:35', '2025-12-17 19:46:55', '4E2kMeXd', '6347053'), + (415, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4E2kMeXd', '6347056'), + (415, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4E2kMeXd', '6353830'), + (415, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4E2kMeXd', '6353831'), + (415, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4E2kMeXd', '6357867'), + (415, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4E2kMeXd', '6358652'), + (415, 2202, 'not_attending', '2023-08-06 18:27:53', '2025-12-17 19:46:54', '4E2kMeXd', '6360509'), + (415, 2204, 'attending', '2023-08-18 11:12:26', '2025-12-17 19:46:55', '4E2kMeXd', '6361542'), + (415, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4E2kMeXd', '6361709'), + (415, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4E2kMeXd', '6361710'), + (415, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4E2kMeXd', '6361711'), + (415, 2211, 'maybe', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4E2kMeXd', '6361712'), + (415, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4E2kMeXd', '6361713'), + (415, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4E2kMeXd', '6382573'), + (415, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4E2kMeXd', '6388604'), + (415, 2242, 'not_attending', '2023-09-23 22:45:10', '2025-12-17 19:46:45', '4E2kMeXd', '6388606'), + (415, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4E2kMeXd', '6394629'), + (415, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4E2kMeXd', '6394631'), + (415, 2253, 'not_attending', '2023-09-30 19:53:55', '2025-12-17 19:46:45', '4E2kMeXd', '6401811'), + (415, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4E2kMeXd', '6440863'), + (415, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4E2kMeXd', '6445440'), + (415, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4E2kMeXd', '6453951'), + (415, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4E2kMeXd', '6461696'), + (415, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4E2kMeXd', '6462129'), + (415, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4E2kMeXd', '6463218'), + (415, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4E2kMeXd', '6472181'), + (415, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4E2kMeXd', '6482693'), + (415, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4E2kMeXd', '6484200'), + (415, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4E2kMeXd', '6484680'), + (415, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4E2kMeXd', '6507741'), + (415, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4E2kMeXd', '6514659'), + (415, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4E2kMeXd', '6514660'), + (415, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4E2kMeXd', '6519103'), + (415, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4E2kMeXd', '6535681'), + (415, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4E2kMeXd', '6584747'), + (415, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4E2kMeXd', '6587097'), + (415, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4E2kMeXd', '6609022'), + (415, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4E2kMeXd', '6632757'), + (415, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4E2kMeXd', '6644187'), + (415, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4E2kMeXd', '6648951'), + (415, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4E2kMeXd', '6648952'), + (415, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4E2kMeXd', '6655401'), + (415, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4E2kMeXd', '6661585'), + (415, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4E2kMeXd', '6661588'), + (415, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4E2kMeXd', '6661589'), + (415, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4E2kMeXd', '6699906'), + (415, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4E2kMeXd', '6701109'), + (415, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4E2kMeXd', '6705219'), + (415, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4E2kMeXd', '6710153'), + (415, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4E2kMeXd', '6711552'), + (415, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4E2kMeXd', '6711553'), + (416, 1819, 'not_attending', '2023-03-31 02:16:30', '2025-12-17 19:46:58', 'd8V6poOA', '5764689'), + (416, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd8V6poOA', '5900202'), + (416, 1948, 'attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'd8V6poOA', '5962317'), + (416, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'd8V6poOA', '5962318'), + (416, 1951, 'not_attending', '2023-03-21 00:52:15', '2025-12-17 19:46:57', 'd8V6poOA', '5965933'), + (416, 1955, 'attending', '2023-03-27 19:18:18', '2025-12-17 19:46:57', 'd8V6poOA', '5972529'), + (416, 1959, 'not_attending', '2023-03-31 02:16:29', '2025-12-17 19:46:57', 'd8V6poOA', '5972829'), + (416, 1971, 'attending', '2023-03-20 17:22:14', '2025-12-17 19:46:56', 'd8V6poOA', '5993765'), + (416, 1974, 'attending', '2023-03-27 19:18:25', '2025-12-17 19:46:57', 'd8V6poOA', '5993778'), + (416, 1978, 'attending', '2023-03-27 19:16:08', '2025-12-17 19:46:58', 'd8V6poOA', '6028191'), + (416, 1982, 'attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd8V6poOA', '6040066'), + (416, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd8V6poOA', '6042717'), + (416, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd8V6poOA', '6044838'), + (416, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd8V6poOA', '6044839'), + (416, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8V6poOA', '6045684'), + (416, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd8V6poOA', '6050104'), + (416, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd8V6poOA', '6053195'), + (416, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd8V6poOA', '6053198'), + (416, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd8V6poOA', '6056085'), + (416, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd8V6poOA', '6056916'), + (416, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd8V6poOA', '6059290'), + (416, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd8V6poOA', '6060328'), + (416, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd8V6poOA', '6061037'), + (416, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd8V6poOA', '6061039'), + (416, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd8V6poOA', '6067245'), + (416, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd8V6poOA', '6068094'), + (416, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd8V6poOA', '6068252'), + (416, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd8V6poOA', '6068253'), + (416, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd8V6poOA', '6068254'), + (416, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd8V6poOA', '6068280'), + (416, 2032, 'attending', '2023-06-02 23:05:15', '2025-12-17 19:47:04', 'd8V6poOA', '6068281'), + (416, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd8V6poOA', '6069093'), + (416, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd8V6poOA', '6072528'), + (416, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd8V6poOA', '6079840'), + (416, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd8V6poOA', '6083398'), + (416, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd8V6poOA', '6093504'), + (416, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd8V6poOA', '6097414'), + (416, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd8V6poOA', '6097442'), + (416, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd8V6poOA', '6097684'), + (416, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd8V6poOA', '6098762'), + (416, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'd8V6poOA', '6101361'), + (416, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd8V6poOA', '6101362'), + (416, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd8V6poOA', '6103752'), + (416, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd8V6poOA', '6107314'), + (416, 2078, 'attending', '2023-05-21 23:58:41', '2025-12-17 19:47:03', 'd8V6poOA', '6114163'), + (416, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd8V6poOA', '6120034'), + (416, 2090, 'not_attending', '2023-06-02 21:30:33', '2025-12-17 19:47:04', 'd8V6poOA', '6127961'), + (416, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'd8V6poOA', '6136733'), + (416, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'd8V6poOA', '6137989'), + (416, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'd8V6poOA', '6150864'), + (416, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'd8V6poOA', '6155491'), + (416, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd8V6poOA', '6164417'), + (416, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd8V6poOA', '6166388'), + (416, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd8V6poOA', '6176439'), + (416, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'd8V6poOA', '6182410'), + (416, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd8V6poOA', '6185812'), + (416, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd8V6poOA', '6187651'), + (416, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd8V6poOA', '6187963'), + (416, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd8V6poOA', '6187964'), + (416, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd8V6poOA', '6187966'), + (416, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd8V6poOA', '6187967'), + (416, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd8V6poOA', '6187969'), + (416, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd8V6poOA', '6334878'), + (416, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd8V6poOA', '6337236'), + (416, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd8V6poOA', '6337970'), + (416, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd8V6poOA', '6338308'), + (416, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'd8V6poOA', '6340845'), + (416, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd8V6poOA', '6341710'), + (416, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd8V6poOA', '6342044'), + (416, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd8V6poOA', '6342298'), + (416, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd8V6poOA', '6343294'), + (416, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd8V6poOA', '6347034'), + (416, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd8V6poOA', '6347056'), + (416, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd8V6poOA', '6353830'), + (416, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd8V6poOA', '6353831'), + (416, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd8V6poOA', '6357867'), + (416, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd8V6poOA', '6358652'), + (416, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd8V6poOA', '6361709'), + (416, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd8V6poOA', '6361710'), + (416, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd8V6poOA', '6361711'), + (416, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd8V6poOA', '6361712'), + (416, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd8V6poOA', '6361713'), + (416, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd8V6poOA', '6382573'), + (416, 2239, 'not_attending', '2023-08-31 18:01:25', '2025-12-17 19:46:56', 'd8V6poOA', '6387592'), + (416, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd8V6poOA', '6388604'), + (416, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd8V6poOA', '6394629'), + (416, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd8V6poOA', '6394631'), + (416, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd8V6poOA', '6440863'), + (416, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd8V6poOA', '6445440'), + (416, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd8V6poOA', '6453951'), + (416, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd8V6poOA', '6461696'), + (416, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd8V6poOA', '6462129'), + (416, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd8V6poOA', '6463218'), + (416, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd8V6poOA', '6472181'), + (416, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd8V6poOA', '6482693'), + (416, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd8V6poOA', '6484200'), + (416, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd8V6poOA', '6484680'), + (416, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd8V6poOA', '6507741'), + (416, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd8V6poOA', '6514659'), + (416, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd8V6poOA', '6514660'), + (416, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd8V6poOA', '6519103'), + (416, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd8V6poOA', '6535681'), + (416, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd8V6poOA', '6584747'), + (416, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd8V6poOA', '6587097'), + (416, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd8V6poOA', '6609022'), + (416, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd8V6poOA', '6632757'), + (416, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd8V6poOA', '6644187'), + (416, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd8V6poOA', '6648951'), + (416, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd8V6poOA', '6648952'), + (416, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd8V6poOA', '6655401'), + (416, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd8V6poOA', '6661585'), + (416, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd8V6poOA', '6661588'), + (416, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd8V6poOA', '6661589'), + (416, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd8V6poOA', '6699906'), + (416, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd8V6poOA', '6701109'), + (416, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd8V6poOA', '6705219'), + (416, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd8V6poOA', '6710153'), + (416, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd8V6poOA', '6711552'), + (416, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd8V6poOA', '6711553'), + (417, 2135, 'attending', '2023-07-14 16:48:14', '2025-12-17 19:46:52', 'd56Bq3Vm', '6187964'), + (417, 2136, 'maybe', '2023-07-24 12:56:42', '2025-12-17 19:46:53', 'd56Bq3Vm', '6187966'), + (417, 2145, 'attending', '2023-07-13 00:19:35', '2025-12-17 19:46:52', 'd56Bq3Vm', '6334903'), + (417, 2152, 'attending', '2023-07-14 17:12:00', '2025-12-17 19:46:52', 'd56Bq3Vm', '6337021'), + (417, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd56Bq3Vm', '6337236'), + (417, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd56Bq3Vm', '6337970'), + (417, 2156, 'attending', '2023-07-14 16:48:28', '2025-12-17 19:46:52', 'd56Bq3Vm', '6338308'), + (417, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'd56Bq3Vm', '6340845'), + (417, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd56Bq3Vm', '6341710'), + (417, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd56Bq3Vm', '6342044'), + (417, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd56Bq3Vm', '6342298'), + (417, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd56Bq3Vm', '6343294'), + (417, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd56Bq3Vm', '6347034'), + (417, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd56Bq3Vm', '6347056'), + (417, 2185, 'maybe', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd56Bq3Vm', '6353830'), + (417, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd56Bq3Vm', '6353831'), + (417, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd56Bq3Vm', '6357867'), + (417, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd56Bq3Vm', '6358652'), + (417, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd56Bq3Vm', '6361709'), + (417, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd56Bq3Vm', '6361710'), + (417, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd56Bq3Vm', '6361711'), + (417, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd56Bq3Vm', '6361712'), + (417, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd56Bq3Vm', '6361713'), + (417, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd56Bq3Vm', '6382573'), + (417, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd56Bq3Vm', '6388604'), + (417, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd56Bq3Vm', '6394629'), + (417, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd56Bq3Vm', '6394631'), + (417, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd56Bq3Vm', '6440863'), + (417, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd56Bq3Vm', '6445440'), + (417, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd56Bq3Vm', '6453951'), + (417, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd56Bq3Vm', '6461696'), + (417, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd56Bq3Vm', '6462129'), + (417, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd56Bq3Vm', '6463218'), + (417, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd56Bq3Vm', '6472181'), + (417, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd56Bq3Vm', '6482693'), + (417, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd56Bq3Vm', '6484200'), + (417, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd56Bq3Vm', '6484680'), + (417, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd56Bq3Vm', '6507741'), + (417, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd56Bq3Vm', '6514659'), + (417, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd56Bq3Vm', '6514660'), + (417, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd56Bq3Vm', '6519103'), + (417, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd56Bq3Vm', '6535681'), + (417, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd56Bq3Vm', '6584747'), + (417, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd56Bq3Vm', '6587097'), + (417, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd56Bq3Vm', '6609022'), + (417, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd56Bq3Vm', '6632757'), + (417, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd56Bq3Vm', '6644187'), + (417, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd56Bq3Vm', '6648951'), + (417, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd56Bq3Vm', '6648952'), + (417, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd56Bq3Vm', '6655401'), + (417, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd56Bq3Vm', '6661585'), + (417, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd56Bq3Vm', '6661588'), + (417, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd56Bq3Vm', '6661589'), + (417, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd56Bq3Vm', '6699906'), + (417, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd56Bq3Vm', '6701109'), + (417, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd56Bq3Vm', '6705219'), + (417, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd56Bq3Vm', '6710153'), + (417, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd56Bq3Vm', '6711552'), + (417, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd56Bq3Vm', '6711553'), + (418, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361709'), + (418, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361710'), + (418, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361711'), + (418, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361712'), + (418, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mM6Pq3EA', '6361713'), + (418, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mM6Pq3EA', '6382573'), + (418, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mM6Pq3EA', '6388604'), + (418, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mM6Pq3EA', '6394629'), + (418, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mM6Pq3EA', '6394631'), + (418, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mM6Pq3EA', '6431478'), + (419, 500, 'not_attending', '2020-12-17 22:13:39', '2025-12-17 19:47:55', 'kdKM7rYA', '3314964'), + (419, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'kdKM7rYA', '3351539'), + (419, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'kdKM7rYA', '3386848'), + (419, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdKM7rYA', '3389527'), + (419, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdKM7rYA', '3396499'), + (419, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'kdKM7rYA', '3403650'), + (419, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdKM7rYA', '3406988'), + (419, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'kdKM7rYA', '3416576'), + (419, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'kdKM7rYA', '3430267'), + (419, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKM7rYA', '6045684'), + (420, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dzk319ym', '5195095'), + (420, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dzk319ym', '5223686'), + (420, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dzk319ym', '5227432'), + (420, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dzk319ym', '5247467'), + (420, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dzk319ym', '5260800'), + (420, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dzk319ym', '5269930'), + (420, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dzk319ym', '5271448'), + (420, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dzk319ym', '5271449'), + (420, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dzk319ym', '5276469'), + (420, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dzk319ym', '5278159'), + (420, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dzk319ym', '5363695'), + (420, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dzk319ym', '5365960'), + (420, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dzk319ym', '5368973'), + (420, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dzk319ym', '5378247'), + (420, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dzk319ym', '5389605'), + (420, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dzk319ym', '5397265'), + (420, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzk319ym', '6045684'), + (421, 2966, 'maybe', '2025-01-25 02:52:02', '2025-12-17 19:46:22', 'dNrYQgkd', '7796542'), + (421, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dNrYQgkd', '7825913'), + (421, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dNrYQgkd', '7826209'), + (421, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dNrYQgkd', '7834742'), + (421, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dNrYQgkd', '7842108'), + (421, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dNrYQgkd', '7842902'), + (421, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dNrYQgkd', '7842903'), + (421, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dNrYQgkd', '7842904'), + (421, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dNrYQgkd', '7842905'), + (421, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dNrYQgkd', '7855719'), + (421, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dNrYQgkd', '7860683'), + (421, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dNrYQgkd', '7860684'), + (421, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dNrYQgkd', '7866095'), + (421, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dNrYQgkd', '7869170'), + (421, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dNrYQgkd', '7869188'), + (421, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dNrYQgkd', '7869201'), + (421, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dNrYQgkd', '7877465'), + (421, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dNrYQgkd', '7878570'), + (421, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dNrYQgkd', '7888250'), + (421, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dNrYQgkd', '8349164'), + (421, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dNrYQgkd', '8349545'), + (421, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dNrYQgkd', '8353584'), + (422, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4WB0aXNA', '5195095'), + (422, 1306, 'maybe', '2022-04-04 17:35:51', '2025-12-17 19:47:26', '4WB0aXNA', '5223682'), + (422, 1307, 'attending', '2022-04-04 17:34:30', '2025-12-17 19:47:26', '4WB0aXNA', '5223686'), + (422, 1309, 'attending', '2022-04-06 03:59:43', '2025-12-17 19:47:26', '4WB0aXNA', '5227432'), + (422, 1314, 'maybe', '2022-04-11 00:05:51', '2025-12-17 19:47:27', '4WB0aXNA', '5233137'), + (422, 1329, 'maybe', '2022-04-14 20:23:46', '2025-12-17 19:47:27', '4WB0aXNA', '5240135'), + (422, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4WB0aXNA', '5247467'), + (422, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WB0aXNA', '6045684'), + (423, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Md32Pb24', '3236465'), + (423, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Md32Pb24', '3539918'), + (423, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Md32Pb24', '3539919'), + (423, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Md32Pb24', '3539920'), + (423, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Md32Pb24', '3539921'), + (423, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Md32Pb24', '3583262'), + (423, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Md32Pb24', '3661369'), + (423, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Md32Pb24', '3730212'), + (423, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Md32Pb24', '3793156'), + (423, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Md32Pb24', '3803310'), + (423, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Md32Pb24', '3806392'), + (423, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Md32Pb24', '6045684'), + (424, 648, 'maybe', '2021-05-29 16:36:20', '2025-12-17 19:47:47', 'ndlVJqOA', '3539923'), + (424, 823, 'not_attending', '2021-06-17 03:37:39', '2025-12-17 19:47:48', 'ndlVJqOA', '3974109'), + (424, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ndlVJqOA', '3975311'), + (424, 828, 'not_attending', '2021-06-16 14:39:36', '2025-12-17 19:47:47', 'ndlVJqOA', '3975312'), + (424, 838, 'not_attending', '2021-06-07 17:29:16', '2025-12-17 19:47:47', 'ndlVJqOA', '3994992'), + (424, 844, 'maybe', '2021-06-16 14:39:29', '2025-12-17 19:47:38', 'ndlVJqOA', '4014338'), + (424, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ndlVJqOA', '4021848'), + (424, 868, 'maybe', '2021-06-16 14:46:47', '2025-12-17 19:47:48', 'ndlVJqOA', '4022012'), + (424, 869, 'maybe', '2021-06-16 14:38:58', '2025-12-17 19:47:38', 'ndlVJqOA', '4136744'), + (424, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ndlVJqOA', '4136937'), + (424, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ndlVJqOA', '4136938'), + (424, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndlVJqOA', '4136947'), + (424, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndlVJqOA', '4210314'), + (424, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndlVJqOA', '4225444'), + (424, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndlVJqOA', '4239259'), + (424, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ndlVJqOA', '4240316'), + (424, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ndlVJqOA', '4240317'), + (424, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndlVJqOA', '4240318'), + (424, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ndlVJqOA', '4240320'), + (424, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndlVJqOA', '4250163'), + (424, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndlVJqOA', '4275957'), + (424, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndlVJqOA', '4277819'), + (424, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndlVJqOA', '4301723'), + (424, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ndlVJqOA', '4302093'), + (424, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndlVJqOA', '4304151'), + (424, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndlVJqOA', '4345519'), + (424, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndlVJqOA', '4358025'), + (424, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ndlVJqOA', '4366186'), + (424, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndlVJqOA', '4366187'), + (424, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlVJqOA', '6045684'), + (425, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'x4oEO8Xm', '3236465'), + (425, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'x4oEO8Xm', '3539918'), + (425, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'x4oEO8Xm', '3539919'), + (425, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'x4oEO8Xm', '3539920'), + (425, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'x4oEO8Xm', '3539921'), + (425, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'x4oEO8Xm', '3583262'), + (425, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'x4oEO8Xm', '3661369'), + (425, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'x4oEO8Xm', '3730212'), + (425, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'x4oEO8Xm', '3793156'), + (425, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'x4oEO8Xm', '3803310'), + (425, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'x4oEO8Xm', '3806392'), + (425, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oEO8Xm', '6045684'), + (426, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dKOgPzNd', '7897784'), + (426, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dKOgPzNd', '7903856'), + (426, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dKOgPzNd', '8347770'), + (426, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dKOgPzNd', '8349164'), + (426, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dKOgPzNd', '8349545'), + (426, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dKOgPzNd', '8353584'), + (427, 2407, 'attending', '2024-01-20 19:12:17', '2025-12-17 19:46:40', 'bdzMnq14', '6699906'), + (427, 2408, 'attending', '2024-01-27 13:30:00', '2025-12-17 19:46:40', 'bdzMnq14', '6699907'), + (427, 2409, 'attending', '2024-02-03 17:15:14', '2025-12-17 19:46:41', 'bdzMnq14', '6699909'), + (427, 2410, 'not_attending', '2024-02-10 20:06:27', '2025-12-17 19:46:41', 'bdzMnq14', '6699911'), + (427, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'bdzMnq14', '6699913'), + (427, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'bdzMnq14', '6705219'), + (427, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'bdzMnq14', '6710153'), + (427, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'bdzMnq14', '6711552'), + (427, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'bdzMnq14', '6711553'), + (427, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'bdzMnq14', '6722688'), + (427, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'bdzMnq14', '6730620'), + (427, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'bdzMnq14', '6730642'), + (427, 2448, 'attending', '2024-03-18 23:02:50', '2025-12-17 19:46:33', 'bdzMnq14', '6734371'), + (427, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'bdzMnq14', '6740364'), + (427, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'bdzMnq14', '6743829'), + (427, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'bdzMnq14', '7030380'), + (427, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'bdzMnq14', '7033677'), + (427, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'bdzMnq14', '7035415'), + (427, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'bdzMnq14', '7044715'), + (427, 2487, 'not_attending', '2024-03-18 23:02:52', '2025-12-17 19:46:33', 'bdzMnq14', '7049279'), + (427, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'bdzMnq14', '7050318'), + (427, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'bdzMnq14', '7050319'), + (427, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'bdzMnq14', '7050322'), + (427, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'bdzMnq14', '7057804'), + (427, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'bdzMnq14', '7059866'), + (427, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'bdzMnq14', '7072824'), + (427, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'bdzMnq14', '7074348'), + (427, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'bdzMnq14', '7074364'), + (427, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'bdzMnq14', '7089267'), + (427, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'bdzMnq14', '7098747'), + (427, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'bdzMnq14', '7113468'), + (427, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'bdzMnq14', '7114856'), + (427, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'bdzMnq14', '7114951'), + (427, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'bdzMnq14', '7114955'), + (427, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'bdzMnq14', '7114956'), + (427, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'bdzMnq14', '7114957'), + (427, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'bdzMnq14', '7153615'), + (427, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'bdzMnq14', '7159484'), + (427, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'bdzMnq14', '7178446'), + (427, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'bdzMnq14', '7220467'), + (427, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'bdzMnq14', '7240354'), + (427, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'bdzMnq14', '7251633'), + (427, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'bdzMnq14', '7263048'), + (427, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'bdzMnq14', '7302674'), + (427, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'bdzMnq14', '7324073'), + (427, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'bdzMnq14', '7324074'), + (427, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'bdzMnq14', '7324075'), + (427, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'bdzMnq14', '7324078'), + (427, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'bdzMnq14', '7324082'), + (427, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'bdzMnq14', '7331457'), + (427, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'bdzMnq14', '7356752'), + (427, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'bdzMnq14', '7363643'), + (427, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'bdzMnq14', '7368606'), + (427, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'bdzMnq14', '7397462'), + (427, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'bdzMnq14', '7432751'), + (427, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'bdzMnq14', '7432752'), + (427, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'bdzMnq14', '7432753'), + (427, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'bdzMnq14', '7432754'), + (427, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'bdzMnq14', '7432755'), + (427, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'bdzMnq14', '7432756'), + (427, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'bdzMnq14', '7432758'), + (427, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'bdzMnq14', '7432759'), + (427, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'bdzMnq14', '7433834'), + (428, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4036lZVA', '6699913'), + (428, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4036lZVA', '6722688'), + (428, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4036lZVA', '6730620'), + (428, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4036lZVA', '6730642'), + (428, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4036lZVA', '6740364'), + (428, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4036lZVA', '6743829'), + (428, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4036lZVA', '7030380'), + (428, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4036lZVA', '7033677'), + (428, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4036lZVA', '7035415'), + (428, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4036lZVA', '7044715'), + (428, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4036lZVA', '7050318'), + (428, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4036lZVA', '7050319'), + (428, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4036lZVA', '7050322'), + (428, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4036lZVA', '7057804'), + (428, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4036lZVA', '7072824'), + (428, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4036lZVA', '7074348'), + (428, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4036lZVA', '7089267'), + (428, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4036lZVA', '7098747'), + (428, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4036lZVA', '7113468'), + (428, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4036lZVA', '7114856'), + (428, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4036lZVA', '7114951'), + (428, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4036lZVA', '7114955'), + (428, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4036lZVA', '7114956'), + (428, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4036lZVA', '7153615'), + (428, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4036lZVA', '7159484'), + (428, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4036lZVA', '7178446'), + (429, 258, 'attending', '2021-05-30 13:10:25', '2025-12-17 19:47:47', 'N4ErKoDd', '3149489'), + (429, 397, 'maybe', '2021-05-27 13:21:43', '2025-12-17 19:47:47', 'N4ErKoDd', '3236452'), + (429, 648, 'attending', '2021-05-29 21:37:24', '2025-12-17 19:47:47', 'N4ErKoDd', '3539923'), + (429, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'N4ErKoDd', '3963335'), + (429, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'N4ErKoDd', '3974109'), + (429, 827, 'attending', '2021-06-05 22:14:05', '2025-12-17 19:47:47', 'N4ErKoDd', '3975311'), + (429, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'N4ErKoDd', '3975312'), + (429, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'N4ErKoDd', '3994992'), + (429, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'N4ErKoDd', '4014338'), + (429, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'N4ErKoDd', '4021848'), + (429, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'N4ErKoDd', '4136744'), + (429, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'N4ErKoDd', '4136937'), + (429, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'N4ErKoDd', '4136938'), + (429, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'N4ErKoDd', '4136947'), + (429, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'N4ErKoDd', '4210314'), + (429, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'N4ErKoDd', '4225444'), + (429, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'N4ErKoDd', '4239259'), + (429, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'N4ErKoDd', '4240316'), + (429, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'N4ErKoDd', '4240317'), + (429, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'N4ErKoDd', '4240318'), + (429, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'N4ErKoDd', '4240320'), + (429, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'N4ErKoDd', '4250163'), + (429, 919, 'attending', '2021-07-17 22:51:27', '2025-12-17 19:47:39', 'N4ErKoDd', '4275957'), + (429, 920, 'attending', '2021-07-25 17:51:15', '2025-12-17 19:47:40', 'N4ErKoDd', '4277819'), + (429, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'N4ErKoDd', '4301723'), + (429, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'N4ErKoDd', '4302093'), + (429, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'N4ErKoDd', '4304151'), + (429, 937, 'attending', '2021-07-25 17:34:12', '2025-12-17 19:47:40', 'N4ErKoDd', '4306596'), + (429, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'N4ErKoDd', '4345519'), + (429, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'N4ErKoDd', '4356801'), + (429, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'N4ErKoDd', '4358025'), + (429, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'N4ErKoDd', '4366186'), + (429, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'N4ErKoDd', '4366187'), + (429, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'N4ErKoDd', '4402823'), + (429, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'N4ErKoDd', '4420735'), + (429, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'N4ErKoDd', '4420738'), + (429, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'N4ErKoDd', '4420739'), + (429, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'N4ErKoDd', '4420741'), + (429, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'N4ErKoDd', '4420744'), + (429, 996, 'attending', '2021-10-16 12:22:45', '2025-12-17 19:47:35', 'N4ErKoDd', '4420747'), + (429, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'N4ErKoDd', '4420748'), + (429, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'N4ErKoDd', '4420749'), + (429, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'N4ErKoDd', '4461883'), + (429, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'N4ErKoDd', '4508342'), + (429, 1079, 'attending', '2021-10-20 22:11:05', '2025-12-17 19:47:35', 'N4ErKoDd', '4563823'), + (429, 1082, 'attending', '2021-10-15 22:54:01', '2025-12-17 19:47:35', 'N4ErKoDd', '4566762'), + (429, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'N4ErKoDd', '4568602'), + (429, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'N4ErKoDd', '4572153'), + (429, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'N4ErKoDd', '4585962'), + (429, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'N4ErKoDd', '4596356'), + (429, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'N4ErKoDd', '4598860'), + (429, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'N4ErKoDd', '4598861'), + (429, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'N4ErKoDd', '4602797'), + (429, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'N4ErKoDd', '4637896'), + (429, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'N4ErKoDd', '4642994'), + (429, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'N4ErKoDd', '4642995'), + (429, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'N4ErKoDd', '4642996'), + (429, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'N4ErKoDd', '4642997'), + (429, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'N4ErKoDd', '4645687'), + (429, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'N4ErKoDd', '4645698'), + (429, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'N4ErKoDd', '4645704'), + (429, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'N4ErKoDd', '4645705'), + (429, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'N4ErKoDd', '4668385'), + (429, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'N4ErKoDd', '4694407'), + (429, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'N4ErKoDd', '4736497'), + (429, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'N4ErKoDd', '4736499'), + (429, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'N4ErKoDd', '4736500'), + (429, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'N4ErKoDd', '4736503'), + (429, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'N4ErKoDd', '4736504'), + (429, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'N4ErKoDd', '4746789'), + (429, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'N4ErKoDd', '4753929'), + (429, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'N4ErKoDd', '5038850'), + (429, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'N4ErKoDd', '5045826'), + (429, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'N4ErKoDd', '5132533'), + (429, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'N4ErKoDd', '5186582'), + (429, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'N4ErKoDd', '5186583'), + (429, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'N4ErKoDd', '5186585'), + (429, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'N4ErKoDd', '5190437'), + (429, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'N4ErKoDd', '5215989'), + (429, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4ErKoDd', '6045684'), + (430, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dzvMjKld', '5630968'), + (430, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dzvMjKld', '5642818'), + (430, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dzvMjKld', '5670445'), + (430, 1795, 'attending', '2022-11-18 01:07:45', '2025-12-17 19:47:16', 'dzvMjKld', '5754366'), + (430, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dzvMjKld', '5763458'), + (430, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dzvMjKld', '5774172'), + (430, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dzvMjKld', '5818247'), + (430, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dzvMjKld', '5819471'), + (430, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dzvMjKld', '5827739'), + (430, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dzvMjKld', '5844306'), + (430, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dzvMjKld', '5850159'), + (430, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dzvMjKld', '5858999'), + (430, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dzvMjKld', '5871984'), + (430, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dzvMjKld', '5876354'), + (430, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzvMjKld', '6045684'), + (431, 2304, 'not_attending', '2023-11-04 02:24:08', '2025-12-17 19:46:47', 'd2wE9B8m', '6482693'), + (431, 2306, 'maybe', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd2wE9B8m', '6484200'), + (431, 2310, 'attending', '2023-11-11 17:20:26', '2025-12-17 19:46:47', 'd2wE9B8m', '6487709'), + (431, 2322, 'attending', '2023-11-11 22:19:07', '2025-12-17 19:46:48', 'd2wE9B8m', '6514659'), + (431, 2323, 'attending', '2023-11-20 20:27:22', '2025-12-17 19:46:48', 'd2wE9B8m', '6514660'), + (431, 2324, 'attending', '2023-11-20 20:27:27', '2025-12-17 19:46:49', 'd2wE9B8m', '6514662'), + (431, 2325, 'attending', '2023-11-20 20:27:34', '2025-12-17 19:46:36', 'd2wE9B8m', '6514663'), + (431, 2328, 'attending', '2023-11-03 16:27:13', '2025-12-17 19:46:47', 'd2wE9B8m', '6515504'), + (431, 2332, 'attending', '2023-11-05 17:16:08', '2025-12-17 19:46:47', 'd2wE9B8m', '6518655'), + (431, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd2wE9B8m', '6519103'), + (431, 2336, 'maybe', '2023-11-08 00:08:28', '2025-12-17 19:46:47', 'd2wE9B8m', '6535500'), + (431, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd2wE9B8m', '6535681'), + (431, 2341, 'attending', '2023-11-21 01:19:25', '2025-12-17 19:46:48', 'd2wE9B8m', '6543263'), + (431, 2347, 'not_attending', '2023-11-19 16:43:52', '2025-12-17 19:46:48', 'd2wE9B8m', '6583053'), + (431, 2348, 'not_attending', '2023-11-19 17:06:13', '2025-12-17 19:46:48', 'd2wE9B8m', '6583064'), + (431, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd2wE9B8m', '6584747'), + (431, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd2wE9B8m', '6587097'), + (431, 2357, 'maybe', '2023-12-18 00:23:24', '2025-12-17 19:46:36', 'd2wE9B8m', '6593341'), + (431, 2358, 'attending', '2023-11-29 19:04:13', '2025-12-17 19:46:48', 'd2wE9B8m', '6595321'), + (431, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd2wE9B8m', '6609022'), + (431, 2368, 'attending', '2023-12-11 04:37:38', '2025-12-17 19:46:36', 'd2wE9B8m', '6621445'), + (431, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd2wE9B8m', '6632757'), + (431, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd2wE9B8m', '6644187'), + (431, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd2wE9B8m', '6648951'), + (431, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd2wE9B8m', '6648952'), + (431, 2388, 'attending', '2024-01-05 19:27:04', '2025-12-17 19:46:37', 'd2wE9B8m', '6649244'), + (431, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd2wE9B8m', '6655401'), + (431, 2399, 'attending', '2024-01-10 22:29:20', '2025-12-17 19:46:38', 'd2wE9B8m', '6657583'), + (431, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd2wE9B8m', '6661585'), + (431, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd2wE9B8m', '6661588'), + (431, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd2wE9B8m', '6661589'), + (431, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd2wE9B8m', '6699906'), + (431, 2408, 'attending', '2024-01-18 18:46:24', '2025-12-17 19:46:40', 'd2wE9B8m', '6699907'), + (431, 2409, 'not_attending', '2024-01-24 15:02:57', '2025-12-17 19:46:41', 'd2wE9B8m', '6699909'), + (431, 2410, 'not_attending', '2024-01-24 15:02:59', '2025-12-17 19:46:41', 'd2wE9B8m', '6699911'), + (431, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd2wE9B8m', '6699913'), + (431, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd2wE9B8m', '6701109'), + (431, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'd2wE9B8m', '6704561'), + (431, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd2wE9B8m', '6705219'), + (431, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'd2wE9B8m', '6708410'), + (431, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd2wE9B8m', '6710153'), + (431, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd2wE9B8m', '6711552'), + (431, 2430, 'maybe', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'd2wE9B8m', '6711553'), + (431, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd2wE9B8m', '6722688'), + (431, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd2wE9B8m', '6730620'), + (431, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd2wE9B8m', '6730642'), + (431, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd2wE9B8m', '6740364'), + (431, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd2wE9B8m', '6743829'), + (431, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd2wE9B8m', '7030380'), + (431, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd2wE9B8m', '7033677'), + (431, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd2wE9B8m', '7035415'), + (431, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd2wE9B8m', '7044715'), + (431, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd2wE9B8m', '7050318'), + (431, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd2wE9B8m', '7050319'), + (431, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd2wE9B8m', '7050322'), + (431, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd2wE9B8m', '7057804'), + (431, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd2wE9B8m', '7072824'), + (431, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd2wE9B8m', '7074348'), + (431, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd2wE9B8m', '7089267'), + (431, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd2wE9B8m', '7098747'), + (431, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd2wE9B8m', '7113468'), + (431, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd2wE9B8m', '7114856'), + (431, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd2wE9B8m', '7114951'), + (431, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd2wE9B8m', '7114955'), + (431, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd2wE9B8m', '7114956'), + (431, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd2wE9B8m', '7114957'), + (431, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd2wE9B8m', '7153615'), + (431, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd2wE9B8m', '7159484'), + (431, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd2wE9B8m', '7178446'), + (431, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd2wE9B8m', '7220467'), + (431, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd2wE9B8m', '7240354'), + (431, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd2wE9B8m', '7251633'), + (431, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd2wE9B8m', '7302674'), + (432, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '8d8lBL0d', '6061039'), + (432, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8d8lBL0d', '6067245'), + (432, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '8d8lBL0d', '6079840'), + (432, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '8d8lBL0d', '6083398'), + (432, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '8d8lBL0d', '6093504'), + (432, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '8d8lBL0d', '6097414'), + (432, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '8d8lBL0d', '6097442'), + (432, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '8d8lBL0d', '6097684'), + (432, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '8d8lBL0d', '6098762'), + (432, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8d8lBL0d', '6101362'), + (432, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8d8lBL0d', '6107314'), + (432, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '8d8lBL0d', '6120034'), + (433, 2145, 'not_attending', '2023-07-13 20:59:41', '2025-12-17 19:46:52', 'mpqn6vkA', '6334903'), + (433, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mpqn6vkA', '6337236'), + (433, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mpqn6vkA', '6337970'), + (433, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mpqn6vkA', '6338308'), + (433, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mpqn6vkA', '6341710'), + (433, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mpqn6vkA', '6342044'), + (433, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mpqn6vkA', '6342298'), + (433, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'mpqn6vkA', '6342591'), + (433, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mpqn6vkA', '6343294'), + (433, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mpqn6vkA', '6347034'), + (433, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mpqn6vkA', '6347056'), + (433, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mpqn6vkA', '6353830'), + (433, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mpqn6vkA', '6353831'), + (433, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mpqn6vkA', '6357867'), + (433, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mpqn6vkA', '6358652'), + (433, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mpqn6vkA', '6361709'), + (433, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mpqn6vkA', '6361710'), + (433, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mpqn6vkA', '6361711'), + (433, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mpqn6vkA', '6361712'), + (433, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mpqn6vkA', '6361713'), + (433, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mpqn6vkA', '6382573'), + (433, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mpqn6vkA', '6388604'), + (433, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mpqn6vkA', '6394629'), + (433, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mpqn6vkA', '6394631'), + (433, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mpqn6vkA', '6431478'), + (434, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4P107gwd', '6484200'), + (434, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4P107gwd', '6514659'), + (434, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4P107gwd', '6514660'), + (434, 2324, 'attending', '2023-12-08 07:27:17', '2025-12-17 19:46:49', '4P107gwd', '6514662'), + (434, 2325, 'attending', '2023-12-08 23:10:37', '2025-12-17 19:46:36', '4P107gwd', '6514663'), + (434, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4P107gwd', '6584747'), + (434, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4P107gwd', '6587097'), + (434, 2359, 'attending', '2023-11-30 22:52:20', '2025-12-17 19:46:48', '4P107gwd', '6596617'), + (434, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4P107gwd', '6609022'), + (434, 2371, 'attending', '2023-12-15 21:55:23', '2025-12-17 19:46:36', '4P107gwd', '6624495'), + (434, 2374, 'attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4P107gwd', '6632757'), + (434, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4P107gwd', '6644187'), + (434, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4P107gwd', '6648951'), + (434, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4P107gwd', '6648952'), + (434, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4P107gwd', '6655401'), + (434, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4P107gwd', '6661585'), + (434, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4P107gwd', '6661588'), + (434, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4P107gwd', '6661589'), + (434, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4P107gwd', '6699906'), + (434, 2409, 'attending', '2024-02-03 22:11:16', '2025-12-17 19:46:41', '4P107gwd', '6699909'), + (434, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4P107gwd', '6699913'), + (434, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4P107gwd', '6701109'), + (434, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4P107gwd', '6705219'), + (434, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4P107gwd', '6710153'), + (434, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4P107gwd', '6711552'), + (434, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4P107gwd', '6711553'), + (434, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4P107gwd', '6722688'), + (434, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4P107gwd', '6730620'), + (434, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4P107gwd', '6730642'), + (434, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4P107gwd', '6740364'), + (434, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4P107gwd', '6743829'), + (434, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4P107gwd', '7030380'), + (434, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4P107gwd', '7033677'), + (434, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4P107gwd', '7035415'), + (434, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4P107gwd', '7044715'), + (434, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4P107gwd', '7050318'), + (434, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4P107gwd', '7050319'), + (434, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4P107gwd', '7050322'), + (434, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4P107gwd', '7057804'), + (434, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '4P107gwd', '7059866'), + (434, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4P107gwd', '7072824'), + (434, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4P107gwd', '7074348'), + (434, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4P107gwd', '7089267'), + (434, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4P107gwd', '7098747'), + (434, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4P107gwd', '7113468'), + (434, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4P107gwd', '7114856'), + (434, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4P107gwd', '7114951'), + (434, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4P107gwd', '7114955'), + (434, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4P107gwd', '7114956'), + (434, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4P107gwd', '7114957'), + (434, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4P107gwd', '7153615'), + (434, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4P107gwd', '7159484'), + (434, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4P107gwd', '7178446'), + (434, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4P107gwd', '7220467'), + (434, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4P107gwd', '7240354'), + (434, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4P107gwd', '7251633'), + (434, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4P107gwd', '7263048'), + (434, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4P107gwd', '7302674'), + (435, 1515, 'attending', '2022-08-02 13:32:52', '2025-12-17 19:47:21', '40Da6Lx4', '5441128'), + (435, 1516, 'attending', '2022-08-19 22:57:53', '2025-12-17 19:47:23', '40Da6Lx4', '5441129'), + (435, 1517, 'attending', '2022-08-27 16:46:27', '2025-12-17 19:47:23', '40Da6Lx4', '5441130'), + (435, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '40Da6Lx4', '5441131'), + (435, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '40Da6Lx4', '5441132'), + (435, 1538, 'not_attending', '2022-08-21 22:27:24', '2025-12-17 19:47:21', '40Da6Lx4', '5449565'), + (435, 1557, 'maybe', '2022-08-03 16:49:01', '2025-12-17 19:47:21', '40Da6Lx4', '5458729'), + (435, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '40Da6Lx4', '5461278'), + (435, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '40Da6Lx4', '5469480'), + (435, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', '40Da6Lx4', '5471073'), + (435, 1567, 'attending', '2022-08-01 21:40:44', '2025-12-17 19:47:21', '40Da6Lx4', '5477629'), + (435, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '40Da6Lx4', '5482022'), + (435, 1576, 'attending', '2022-08-01 23:07:20', '2025-12-17 19:47:21', '40Da6Lx4', '5482623'), + (435, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '40Da6Lx4', '5482793'), + (435, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '40Da6Lx4', '5488912'), + (435, 1584, 'attending', '2022-08-26 16:44:06', '2025-12-17 19:47:23', '40Da6Lx4', '5492004'), + (435, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '40Da6Lx4', '5492192'), + (435, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '40Da6Lx4', '5493139'), + (435, 1589, 'attending', '2022-08-21 19:56:48', '2025-12-17 19:47:23', '40Da6Lx4', '5493159'), + (435, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '40Da6Lx4', '5493200'), + (435, 1603, 'attending', '2022-08-19 21:41:58', '2025-12-17 19:47:23', '40Da6Lx4', '5497895'), + (435, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '40Da6Lx4', '5502188'), + (435, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '40Da6Lx4', '5505059'), + (435, 1611, 'attending', '2022-09-05 18:28:56', '2025-12-17 19:47:24', '40Da6Lx4', '5507652'), + (435, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '40Da6Lx4', '5509055'), + (435, 1618, 'attending', '2022-08-26 16:45:55', '2025-12-17 19:47:23', '40Da6Lx4', '5512005'), + (435, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '40Da6Lx4', '5512862'), + (435, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '40Da6Lx4', '5513985'), + (435, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '40Da6Lx4', '5519981'), + (435, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '40Da6Lx4', '5522550'), + (435, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '40Da6Lx4', '5534683'), + (435, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '40Da6Lx4', '5537735'), + (435, 1636, 'attending', '2022-09-04 03:34:08', '2025-12-17 19:47:24', '40Da6Lx4', '5538454'), + (435, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '40Da6Lx4', '5540859'), + (435, 1641, 'not_attending', '2022-09-03 14:28:06', '2025-12-17 19:47:24', '40Da6Lx4', '5544226'), + (435, 1642, 'attending', '2022-09-03 07:38:40', '2025-12-17 19:47:24', '40Da6Lx4', '5544227'), + (435, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '40Da6Lx4', '5546619'), + (435, 1650, 'attending', '2022-09-04 04:18:30', '2025-12-17 19:47:24', '40Da6Lx4', '5549611'), + (435, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '40Da6Lx4', '5555245'), + (435, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '40Da6Lx4', '5557747'), + (435, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '40Da6Lx4', '5560255'), + (435, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '40Da6Lx4', '5562906'), + (435, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '40Da6Lx4', '5600604'), + (435, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '40Da6Lx4', '5605544'), + (435, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', '40Da6Lx4', '5606737'), + (435, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '40Da6Lx4', '5630960'), + (435, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '40Da6Lx4', '5630961'), + (435, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '40Da6Lx4', '5630962'), + (435, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '40Da6Lx4', '5630966'), + (435, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '40Da6Lx4', '5630967'), + (435, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '40Da6Lx4', '5630968'), + (435, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '40Da6Lx4', '5635406'), + (435, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '40Da6Lx4', '5638765'), + (435, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '40Da6Lx4', '5640097'), + (435, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '40Da6Lx4', '5640843'), + (435, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '40Da6Lx4', '5641521'), + (435, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '40Da6Lx4', '5642818'), + (435, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '40Da6Lx4', '5652395'), + (435, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '40Da6Lx4', '5670445'), + (435, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '40Da6Lx4', '5671637'), + (435, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '40Da6Lx4', '5672329'), + (435, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '40Da6Lx4', '5674057'), + (435, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '40Da6Lx4', '5674060'), + (435, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '40Da6Lx4', '5677461'), + (435, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '40Da6Lx4', '5698046'), + (435, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '40Da6Lx4', '5699760'), + (435, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '40Da6Lx4', '5741601'), + (435, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '40Da6Lx4', '5763458'), + (435, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '40Da6Lx4', '5774172'), + (435, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '40Da6Lx4', '5818247'), + (435, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '40Da6Lx4', '5819471'), + (435, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '40Da6Lx4', '5827739'), + (435, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '40Da6Lx4', '5844306'), + (435, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '40Da6Lx4', '5850159'), + (435, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '40Da6Lx4', '5858999'), + (435, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '40Da6Lx4', '5871984'), + (435, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '40Da6Lx4', '5876354'), + (435, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '40Da6Lx4', '5880939'), + (435, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '40Da6Lx4', '5880940'), + (435, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '40Da6Lx4', '5880942'), + (435, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '40Da6Lx4', '5880943'), + (435, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '40Da6Lx4', '5887890'), + (435, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '40Da6Lx4', '5888598'), + (435, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '40Da6Lx4', '5893260'), + (435, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '40Da6Lx4', '5899826'), + (435, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '40Da6Lx4', '5900199'), + (435, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '40Da6Lx4', '5900200'), + (435, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '40Da6Lx4', '5900202'), + (435, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '40Da6Lx4', '5900203'), + (435, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '40Da6Lx4', '5901108'), + (435, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '40Da6Lx4', '5901126'), + (435, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '40Da6Lx4', '5909655'), + (435, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '40Da6Lx4', '5910522'), + (435, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '40Da6Lx4', '5910526'), + (435, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '40Da6Lx4', '5910528'), + (435, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '40Da6Lx4', '5916219'), + (435, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '40Da6Lx4', '5936234'), + (435, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '40Da6Lx4', '5958351'), + (435, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '40Da6Lx4', '5959751'), + (435, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '40Da6Lx4', '5959755'), + (435, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '40Da6Lx4', '5960055'), + (435, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '40Da6Lx4', '5961684'), + (435, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '40Da6Lx4', '5962132'), + (435, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '40Da6Lx4', '5962133'), + (435, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '40Da6Lx4', '5962134'), + (435, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '40Da6Lx4', '5962317'), + (435, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '40Da6Lx4', '5962318'), + (435, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '40Da6Lx4', '5965933'), + (435, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '40Da6Lx4', '5967014'), + (435, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '40Da6Lx4', '5972815'), + (435, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '40Da6Lx4', '5974016'), + (435, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '40Da6Lx4', '5981515'), + (435, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '40Da6Lx4', '5993516'), + (435, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '40Da6Lx4', '5998939'), + (435, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '40Da6Lx4', '6028191'), + (435, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '40Da6Lx4', '6040066'), + (435, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '40Da6Lx4', '6042717'), + (435, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '40Da6Lx4', '6044838'), + (435, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '40Da6Lx4', '6044839'), + (435, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40Da6Lx4', '6045684'), + (435, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '40Da6Lx4', '6050104'), + (435, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '40Da6Lx4', '6053195'), + (435, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '40Da6Lx4', '6053198'), + (435, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '40Da6Lx4', '6056085'), + (435, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '40Da6Lx4', '6056916'), + (435, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '40Da6Lx4', '6059290'), + (435, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '40Da6Lx4', '6060328'), + (435, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '40Da6Lx4', '6061037'), + (435, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '40Da6Lx4', '6061039'), + (435, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '40Da6Lx4', '6067245'), + (435, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '40Da6Lx4', '6068094'), + (435, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '40Da6Lx4', '6068252'), + (435, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '40Da6Lx4', '6068253'), + (435, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '40Da6Lx4', '6068254'), + (435, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '40Da6Lx4', '6068280'), + (435, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '40Da6Lx4', '6069093'), + (435, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '40Da6Lx4', '6072528'), + (435, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '40Da6Lx4', '6079840'), + (435, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '40Da6Lx4', '6083398'), + (435, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '40Da6Lx4', '6093504'), + (435, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '40Da6Lx4', '6097414'), + (435, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '40Da6Lx4', '6097442'), + (435, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '40Da6Lx4', '6097684'), + (435, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '40Da6Lx4', '6098762'), + (435, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '40Da6Lx4', '6101362'), + (435, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '40Da6Lx4', '6103752'), + (435, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '40Da6Lx4', '6107314'), + (436, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8GMXNV4', '6045684'), + (437, 49, 'attending', '2020-06-01 23:39:26', '2025-12-17 19:47:58', 'v4DOV8qA', '2975274'), + (437, 66, 'attending', '2020-06-03 03:21:07', '2025-12-17 19:47:58', 'v4DOV8qA', '2977135'), + (437, 68, 'maybe', '2020-06-22 19:55:48', '2025-12-17 19:47:58', 'v4DOV8qA', '2977137'), + (437, 69, 'attending', '2020-06-29 17:16:29', '2025-12-17 19:47:55', 'v4DOV8qA', '2977138'), + (437, 80, 'attending', '2020-06-05 18:19:22', '2025-12-17 19:47:58', 'v4DOV8qA', '2978251'), + (437, 81, 'attending', '2020-06-07 18:15:32', '2025-12-17 19:47:58', 'v4DOV8qA', '2978252'), + (437, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'v4DOV8qA', '3034321'), + (437, 143, 'attending', '2020-06-03 03:29:27', '2025-12-17 19:47:58', 'v4DOV8qA', '3049983'), + (437, 169, 'attending', '2020-06-14 19:14:07', '2025-12-17 19:47:58', 'v4DOV8qA', '3058741'), + (437, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'v4DOV8qA', '3058959'), + (437, 173, 'not_attending', '2020-06-14 18:59:14', '2025-12-17 19:47:58', 'v4DOV8qA', '3067093'), + (437, 175, 'attending', '2020-06-16 02:51:50', '2025-12-17 19:47:58', 'v4DOV8qA', '3068305'), + (437, 180, 'maybe', '2020-06-15 21:00:29', '2025-12-17 19:47:58', 'v4DOV8qA', '3074048'), + (437, 182, 'attending', '2020-06-17 04:11:30', '2025-12-17 19:47:55', 'v4DOV8qA', '3074514'), + (437, 183, 'attending', '2020-06-16 00:28:15', '2025-12-17 19:47:58', 'v4DOV8qA', '3075228'), + (437, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'v4DOV8qA', '3075456'), + (437, 186, 'not_attending', '2020-06-23 00:43:11', '2025-12-17 19:47:55', 'v4DOV8qA', '3083791'), + (437, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'v4DOV8qA', '3085151'), + (437, 188, 'maybe', '2020-06-21 03:57:00', '2025-12-17 19:47:58', 'v4DOV8qA', '3086646'), + (437, 190, 'attending', '2020-06-30 02:19:54', '2025-12-17 19:47:55', 'v4DOV8qA', '3087258'), + (437, 191, 'maybe', '2020-07-07 19:05:53', '2025-12-17 19:47:55', 'v4DOV8qA', '3087259'), + (437, 192, 'maybe', '2020-07-15 13:32:48', '2025-12-17 19:47:55', 'v4DOV8qA', '3087260'), + (437, 193, 'not_attending', '2020-07-21 16:04:32', '2025-12-17 19:47:55', 'v4DOV8qA', '3087261'), + (437, 194, 'maybe', '2020-07-28 04:22:10', '2025-12-17 19:47:56', 'v4DOV8qA', '3087262'), + (437, 195, 'attending', '2020-07-21 21:09:21', '2025-12-17 19:47:56', 'v4DOV8qA', '3087264'), + (437, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'v4DOV8qA', '3087265'), + (437, 197, 'attending', '2020-08-22 01:07:44', '2025-12-17 19:47:56', 'v4DOV8qA', '3087266'), + (437, 198, 'attending', '2020-08-27 03:18:42', '2025-12-17 19:47:56', 'v4DOV8qA', '3087267'), + (437, 199, 'attending', '2020-09-01 03:32:13', '2025-12-17 19:47:56', 'v4DOV8qA', '3087268'), + (437, 201, 'attending', '2020-06-21 15:23:14', '2025-12-17 19:47:55', 'v4DOV8qA', '3088653'), + (437, 202, 'not_attending', '2020-06-28 03:21:30', '2025-12-17 19:47:55', 'v4DOV8qA', '3090353'), + (437, 203, 'attending', '2020-06-22 19:55:52', '2025-12-17 19:47:58', 'v4DOV8qA', '3091624'), + (437, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'v4DOV8qA', '3106813'), + (437, 212, 'attending', '2020-07-05 03:13:50', '2025-12-17 19:47:55', 'v4DOV8qA', '3118517'), + (437, 214, 'maybe', '2020-07-07 19:04:46', '2025-12-17 19:47:55', 'v4DOV8qA', '3124139'), + (437, 215, 'attending', '2020-07-07 01:23:54', '2025-12-17 19:47:55', 'v4DOV8qA', '3124987'), + (437, 217, 'maybe', '2020-07-12 03:47:30', '2025-12-17 19:47:55', 'v4DOV8qA', '3126684'), + (437, 223, 'attending', '2020-09-10 14:58:12', '2025-12-17 19:47:56', 'v4DOV8qA', '3129980'), + (437, 224, 'attending', '2020-07-12 03:47:57', '2025-12-17 19:47:55', 'v4DOV8qA', '3130712'), + (437, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'v4DOV8qA', '3132817'), + (437, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'v4DOV8qA', '3132820'), + (437, 230, 'maybe', '2020-07-21 21:07:26', '2025-12-17 19:47:55', 'v4DOV8qA', '3139232'), + (437, 232, 'attending', '2020-07-19 22:10:53', '2025-12-17 19:47:55', 'v4DOV8qA', '3139770'), + (437, 233, 'attending', '2020-07-20 04:41:31', '2025-12-17 19:47:55', 'v4DOV8qA', '3139773'), + (437, 269, 'maybe', '2020-07-29 05:10:08', '2025-12-17 19:47:55', 'v4DOV8qA', '3153076'), + (437, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'v4DOV8qA', '3155321'), + (437, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'v4DOV8qA', '3162006'), + (437, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'v4DOV8qA', '3163442'), + (437, 280, 'attending', '2020-08-06 05:15:09', '2025-12-17 19:47:56', 'v4DOV8qA', '3166942'), + (437, 281, 'attending', '2020-08-06 05:15:45', '2025-12-17 19:47:56', 'v4DOV8qA', '3166945'), + (437, 293, 'not_attending', '2020-08-19 23:16:28', '2025-12-17 19:47:56', 'v4DOV8qA', '3172832'), + (437, 294, 'maybe', '2020-08-21 05:12:02', '2025-12-17 19:47:56', 'v4DOV8qA', '3172833'), + (437, 295, 'attending', '2020-08-30 05:21:51', '2025-12-17 19:47:56', 'v4DOV8qA', '3172834'), + (437, 296, 'not_attending', '2020-08-23 04:49:48', '2025-12-17 19:47:56', 'v4DOV8qA', '3172876'), + (437, 297, 'maybe', '2020-08-11 00:16:37', '2025-12-17 19:47:56', 'v4DOV8qA', '3173937'), + (437, 298, 'maybe', '2020-08-28 02:50:59', '2025-12-17 19:47:56', 'v4DOV8qA', '3174556'), + (437, 299, 'not_attending', '2020-08-18 19:04:51', '2025-12-17 19:47:56', 'v4DOV8qA', '3176591'), + (437, 301, 'maybe', '2020-08-26 03:04:38', '2025-12-17 19:47:56', 'v4DOV8qA', '3178027'), + (437, 302, 'maybe', '2020-08-14 01:29:08', '2025-12-17 19:47:56', 'v4DOV8qA', '3178028'), + (437, 303, 'attending', '2020-08-14 01:21:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3178444'), + (437, 306, 'not_attending', '2020-08-16 03:51:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3179777'), + (437, 307, 'not_attending', '2020-08-18 04:17:10', '2025-12-17 19:47:56', 'v4DOV8qA', '3182590'), + (437, 310, 'not_attending', '2020-08-23 17:56:35', '2025-12-17 19:47:56', 'v4DOV8qA', '3186005'), + (437, 311, 'not_attending', '2020-08-29 17:54:40', '2025-12-17 19:47:56', 'v4DOV8qA', '3186057'), + (437, 312, 'attending', '2020-08-22 01:17:20', '2025-12-17 19:47:56', 'v4DOV8qA', '3187795'), + (437, 314, 'maybe', '2020-08-25 21:48:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3188480'), + (437, 315, 'maybe', '2020-08-26 03:09:37', '2025-12-17 19:47:56', 'v4DOV8qA', '3189085'), + (437, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'v4DOV8qA', '3191735'), + (437, 319, 'attending', '2020-08-30 05:21:44', '2025-12-17 19:47:56', 'v4DOV8qA', '3194179'), + (437, 330, 'maybe', '2020-09-01 03:29:35', '2025-12-17 19:47:56', 'v4DOV8qA', '3197322'), + (437, 333, 'maybe', '2020-10-06 19:26:47', '2025-12-17 19:47:52', 'v4DOV8qA', '3199782'), + (437, 334, 'not_attending', '2020-10-07 14:59:11', '2025-12-17 19:47:52', 'v4DOV8qA', '3199784'), + (437, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'v4DOV8qA', '3200209'), + (437, 339, 'attending', '2020-09-06 04:22:36', '2025-12-17 19:47:56', 'v4DOV8qA', '3204469'), + (437, 340, 'maybe', '2020-09-14 23:44:31', '2025-12-17 19:47:56', 'v4DOV8qA', '3204470'), + (437, 341, 'maybe', '2020-09-17 21:44:59', '2025-12-17 19:47:52', 'v4DOV8qA', '3204471'), + (437, 342, 'maybe', '2020-09-29 02:36:03', '2025-12-17 19:47:52', 'v4DOV8qA', '3204472'), + (437, 344, 'attending', '2020-10-13 04:16:38', '2025-12-17 19:47:53', 'v4DOV8qA', '3206906'), + (437, 348, 'not_attending', '2020-09-29 22:52:33', '2025-12-17 19:47:52', 'v4DOV8qA', '3209159'), + (437, 351, 'maybe', '2020-09-12 21:16:45', '2025-12-17 19:47:56', 'v4DOV8qA', '3209257'), + (437, 354, 'attending', '2020-09-13 21:51:49', '2025-12-17 19:47:56', 'v4DOV8qA', '3212570'), + (437, 355, 'attending', '2020-09-14 23:43:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3212571'), + (437, 356, 'maybe', '2020-09-23 22:29:37', '2025-12-17 19:47:51', 'v4DOV8qA', '3212572'), + (437, 357, 'maybe', '2020-09-30 23:27:33', '2025-12-17 19:47:52', 'v4DOV8qA', '3212573'), + (437, 359, 'maybe', '2020-09-14 13:22:30', '2025-12-17 19:47:56', 'v4DOV8qA', '3212624'), + (437, 362, 'maybe', '2020-09-16 19:44:53', '2025-12-17 19:47:52', 'v4DOV8qA', '3214207'), + (437, 363, 'not_attending', '2020-09-16 22:40:20', '2025-12-17 19:47:52', 'v4DOV8qA', '3217037'), + (437, 364, 'attending', '2020-09-19 00:36:53', '2025-12-17 19:47:56', 'v4DOV8qA', '3217106'), + (437, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'v4DOV8qA', '3218510'), + (437, 368, 'maybe', '2020-09-30 01:57:34', '2025-12-17 19:47:52', 'v4DOV8qA', '3221403'), + (437, 375, 'maybe', '2020-10-07 14:59:18', '2025-12-17 19:47:52', 'v4DOV8qA', '3222825'), + (437, 378, 'not_attending', '2020-09-26 03:38:28', '2025-12-17 19:47:52', 'v4DOV8qA', '3223725'), + (437, 382, 'maybe', '2020-09-29 06:57:25', '2025-12-17 19:47:52', 'v4DOV8qA', '3226873'), + (437, 384, 'attending', '2020-09-29 02:35:09', '2025-12-17 19:47:52', 'v4DOV8qA', '3228696'), + (437, 385, 'maybe', '2020-09-29 01:44:43', '2025-12-17 19:47:52', 'v4DOV8qA', '3228698'), + (437, 386, 'maybe', '2020-09-29 01:44:53', '2025-12-17 19:47:52', 'v4DOV8qA', '3228699'), + (437, 387, 'maybe', '2020-10-17 22:25:51', '2025-12-17 19:47:52', 'v4DOV8qA', '3228700'), + (437, 388, 'attending', '2020-10-19 17:34:58', '2025-12-17 19:47:52', 'v4DOV8qA', '3228701'), + (437, 389, 'maybe', '2020-10-01 13:46:56', '2025-12-17 19:47:52', 'v4DOV8qA', '3231284'), + (437, 390, 'not_attending', '2020-10-04 14:57:30', '2025-12-17 19:47:52', 'v4DOV8qA', '3231510'), + (437, 411, 'maybe', '2020-10-09 00:21:20', '2025-12-17 19:47:52', 'v4DOV8qA', '3236596'), + (437, 415, 'attending', '2020-10-09 00:21:05', '2025-12-17 19:47:52', 'v4DOV8qA', '3238044'), + (437, 420, 'not_attending', '2020-10-15 14:59:57', '2025-12-17 19:47:52', 'v4DOV8qA', '3245293'), + (437, 421, 'not_attending', '2020-10-20 20:46:41', '2025-12-17 19:47:52', 'v4DOV8qA', '3245294'), + (437, 422, 'maybe', '2020-10-19 17:34:00', '2025-12-17 19:47:53', 'v4DOV8qA', '3245295'), + (437, 424, 'maybe', '2020-10-12 19:44:19', '2025-12-17 19:47:52', 'v4DOV8qA', '3245751'), + (437, 425, 'maybe', '2020-10-15 15:00:09', '2025-12-17 19:47:52', 'v4DOV8qA', '3250097'), + (437, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'v4DOV8qA', '3250232'), + (437, 429, 'attending', '2020-11-25 20:33:04', '2025-12-17 19:47:54', 'v4DOV8qA', '3250523'), + (437, 435, 'not_attending', '2020-10-24 18:52:21', '2025-12-17 19:47:52', 'v4DOV8qA', '3254790'), + (437, 438, 'maybe', '2020-10-22 05:30:57', '2025-12-17 19:47:53', 'v4DOV8qA', '3256163'), + (437, 439, 'maybe', '2020-10-27 00:43:51', '2025-12-17 19:47:53', 'v4DOV8qA', '3256164'), + (437, 440, 'attending', '2020-11-05 05:50:24', '2025-12-17 19:47:53', 'v4DOV8qA', '3256168'), + (437, 441, 'attending', '2020-11-12 06:35:19', '2025-12-17 19:47:54', 'v4DOV8qA', '3256169'), + (437, 442, 'attending', '2020-10-20 23:16:30', '2025-12-17 19:47:52', 'v4DOV8qA', '3260345'), + (437, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'v4DOV8qA', '3263578'), + (437, 444, 'not_attending', '2020-10-27 19:58:13', '2025-12-17 19:47:53', 'v4DOV8qA', '3263745'), + (437, 445, 'attending', '2020-11-03 21:17:02', '2025-12-17 19:47:54', 'v4DOV8qA', '3266138'), + (437, 449, 'maybe', '2020-11-03 21:16:39', '2025-12-17 19:47:53', 'v4DOV8qA', '3272055'), + (437, 451, 'maybe', '2020-11-02 22:26:22', '2025-12-17 19:47:53', 'v4DOV8qA', '3272186'), + (437, 452, 'attending', '2020-11-07 19:50:22', '2025-12-17 19:47:54', 'v4DOV8qA', '3272981'), + (437, 456, 'attending', '2020-11-15 22:40:01', '2025-12-17 19:47:54', 'v4DOV8qA', '3276428'), + (437, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'v4DOV8qA', '3281467'), + (437, 460, 'not_attending', '2020-11-19 23:35:13', '2025-12-17 19:47:54', 'v4DOV8qA', '3281468'), + (437, 461, 'maybe', '2020-11-08 06:14:09', '2025-12-17 19:47:53', 'v4DOV8qA', '3281469'), + (437, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'v4DOV8qA', '3281470'), + (437, 464, 'not_attending', '2020-11-21 01:45:25', '2025-12-17 19:47:54', 'v4DOV8qA', '3281554'), + (437, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'v4DOV8qA', '3281829'), + (437, 468, 'attending', '2020-11-17 19:27:32', '2025-12-17 19:47:54', 'v4DOV8qA', '3285413'), + (437, 469, 'attending', '2020-11-22 04:54:31', '2025-12-17 19:47:54', 'v4DOV8qA', '3285414'), + (437, 472, 'attending', '2020-11-12 23:06:14', '2025-12-17 19:47:54', 'v4DOV8qA', '3286541'), + (437, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'v4DOV8qA', '3297764'), + (437, 484, 'attending', '2020-11-21 00:59:53', '2025-12-17 19:47:54', 'v4DOV8qA', '3297792'), + (437, 490, 'maybe', '2020-11-28 00:01:14', '2025-12-17 19:47:54', 'v4DOV8qA', '3313532'), + (437, 491, 'not_attending', '2020-12-09 21:12:09', '2025-12-17 19:47:55', 'v4DOV8qA', '3313533'), + (437, 492, 'maybe', '2020-12-04 00:59:52', '2025-12-17 19:47:54', 'v4DOV8qA', '3313731'), + (437, 493, 'maybe', '2020-11-29 05:28:02', '2025-12-17 19:47:54', 'v4DOV8qA', '3313856'), + (437, 496, 'maybe', '2020-12-09 21:12:15', '2025-12-17 19:47:54', 'v4DOV8qA', '3314269'), + (437, 497, 'maybe', '2020-12-14 01:38:54', '2025-12-17 19:47:55', 'v4DOV8qA', '3314270'), + (437, 499, 'maybe', '2020-11-30 05:50:12', '2025-12-17 19:47:55', 'v4DOV8qA', '3314909'), + (437, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'v4DOV8qA', '3314964'), + (437, 501, 'maybe', '2020-12-02 04:17:37', '2025-12-17 19:47:54', 'v4DOV8qA', '3317834'), + (437, 502, 'maybe', '2020-12-08 06:33:27', '2025-12-17 19:47:55', 'v4DOV8qA', '3323365'), + (437, 513, 'maybe', '2020-12-17 05:20:27', '2025-12-17 19:47:55', 'v4DOV8qA', '3329383'), + (437, 517, 'maybe', '2021-01-07 04:19:07', '2025-12-17 19:47:48', 'v4DOV8qA', '3337137'), + (437, 518, 'maybe', '2021-01-06 06:18:31', '2025-12-17 19:47:48', 'v4DOV8qA', '3337138'), + (437, 525, 'maybe', '2020-12-22 06:11:17', '2025-12-17 19:47:48', 'v4DOV8qA', '3350467'), + (437, 526, 'not_attending', '2020-12-27 23:27:51', '2025-12-17 19:47:48', 'v4DOV8qA', '3351539'), + (437, 532, 'not_attending', '2021-01-08 03:26:55', '2025-12-17 19:47:48', 'v4DOV8qA', '3381412'), + (437, 536, 'attending', '2021-01-06 02:22:03', '2025-12-17 19:47:48', 'v4DOV8qA', '3386848'), + (437, 539, 'maybe', '2021-01-08 03:26:41', '2025-12-17 19:47:48', 'v4DOV8qA', '3389158'), + (437, 540, 'maybe', '2021-01-07 01:27:04', '2025-12-17 19:47:48', 'v4DOV8qA', '3389527'), + (437, 542, 'maybe', '2021-01-11 03:26:13', '2025-12-17 19:47:48', 'v4DOV8qA', '3395013'), + (437, 543, 'maybe', '2021-01-12 01:33:50', '2025-12-17 19:47:48', 'v4DOV8qA', '3396499'), + (437, 544, 'maybe', '2021-01-11 02:19:53', '2025-12-17 19:47:48', 'v4DOV8qA', '3396500'), + (437, 548, 'attending', '2021-01-13 05:48:24', '2025-12-17 19:47:48', 'v4DOV8qA', '3403650'), + (437, 549, 'maybe', '2021-01-16 04:16:43', '2025-12-17 19:47:48', 'v4DOV8qA', '3406988'), + (437, 555, 'attending', '2021-01-18 03:29:50', '2025-12-17 19:47:49', 'v4DOV8qA', '3416576'), + (437, 556, 'maybe', '2021-01-19 04:55:39', '2025-12-17 19:47:49', 'v4DOV8qA', '3417170'), + (437, 557, 'attending', '2021-01-20 02:12:28', '2025-12-17 19:47:49', 'v4DOV8qA', '3418748'), + (437, 558, 'maybe', '2021-01-19 04:55:27', '2025-12-17 19:47:49', 'v4DOV8qA', '3418925'), + (437, 560, 'attending', '2021-01-20 02:11:37', '2025-12-17 19:47:49', 'v4DOV8qA', '3421715'), + (437, 563, 'maybe', '2021-01-25 18:49:11', '2025-12-17 19:47:49', 'v4DOV8qA', '3425913'), + (437, 567, 'attending', '2021-01-24 03:59:22', '2025-12-17 19:47:50', 'v4DOV8qA', '3428895'), + (437, 568, 'attending', '2021-01-25 18:50:34', '2025-12-17 19:47:50', 'v4DOV8qA', '3430267'), + (437, 569, 'maybe', '2021-01-25 18:47:27', '2025-12-17 19:47:49', 'v4DOV8qA', '3432673'), + (437, 570, 'maybe', '2021-01-29 23:03:35', '2025-12-17 19:47:50', 'v4DOV8qA', '3435538'), + (437, 571, 'attending', '2021-02-12 02:39:42', '2025-12-17 19:47:50', 'v4DOV8qA', '3435539'), + (437, 576, 'maybe', '2021-01-29 23:03:15', '2025-12-17 19:47:50', 'v4DOV8qA', '3438748'), + (437, 578, 'maybe', '2021-01-29 23:03:27', '2025-12-17 19:47:50', 'v4DOV8qA', '3440043'), + (437, 579, 'maybe', '2021-01-29 01:28:37', '2025-12-17 19:47:50', 'v4DOV8qA', '3440978'), + (437, 580, 'not_attending', '2021-01-31 05:29:35', '2025-12-17 19:47:50', 'v4DOV8qA', '3444240'), + (437, 582, 'maybe', '2021-01-30 18:47:17', '2025-12-17 19:47:50', 'v4DOV8qA', '3445769'), + (437, 583, 'maybe', '2021-02-05 22:34:16', '2025-12-17 19:47:50', 'v4DOV8qA', '3449144'), + (437, 585, 'maybe', '2021-02-01 01:15:22', '2025-12-17 19:47:50', 'v4DOV8qA', '3449468'), + (437, 591, 'maybe', '2021-02-05 06:55:01', '2025-12-17 19:47:50', 'v4DOV8qA', '3465880'), + (437, 594, 'maybe', '2021-03-01 03:52:11', '2025-12-17 19:47:51', 'v4DOV8qA', '3467759'), + (437, 598, 'maybe', '2021-02-07 18:08:25', '2025-12-17 19:47:50', 'v4DOV8qA', '3468003'), + (437, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'v4DOV8qA', '3468125'), + (437, 602, 'attending', '2021-02-07 07:06:34', '2025-12-17 19:47:50', 'v4DOV8qA', '3470303'), + (437, 603, 'attending', '2021-02-19 04:10:47', '2025-12-17 19:47:50', 'v4DOV8qA', '3470304'), + (437, 604, 'attending', '2021-02-23 21:19:35', '2025-12-17 19:47:50', 'v4DOV8qA', '3470305'), + (437, 605, 'attending', '2021-02-07 22:45:34', '2025-12-17 19:47:50', 'v4DOV8qA', '3470991'), + (437, 607, 'maybe', '2021-02-14 05:59:10', '2025-12-17 19:47:50', 'v4DOV8qA', '3471882'), + (437, 612, 'maybe', '2021-02-14 17:56:14', '2025-12-17 19:47:50', 'v4DOV8qA', '3490040'), + (437, 613, 'attending', '2021-02-17 06:03:31', '2025-12-17 19:47:50', 'v4DOV8qA', '3490041'), + (437, 614, 'maybe', '2021-02-28 18:11:13', '2025-12-17 19:47:51', 'v4DOV8qA', '3490042'), + (437, 621, 'attending', '2021-03-01 00:02:32', '2025-12-17 19:47:51', 'v4DOV8qA', '3517815'), + (437, 622, 'attending', '2021-03-01 00:04:32', '2025-12-17 19:47:51', 'v4DOV8qA', '3517816'), + (437, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'v4DOV8qA', '3523941'), + (437, 631, 'maybe', '2021-03-02 05:10:03', '2025-12-17 19:47:51', 'v4DOV8qA', '3533850'), + (437, 632, 'maybe', '2021-03-02 05:11:04', '2025-12-17 19:47:51', 'v4DOV8qA', '3533853'), + (437, 637, 'maybe', '2021-03-02 05:10:48', '2025-12-17 19:47:51', 'v4DOV8qA', '3536411'), + (437, 638, 'maybe', '2021-03-02 01:30:58', '2025-12-17 19:47:44', 'v4DOV8qA', '3536632'), + (437, 639, 'maybe', '2021-03-02 01:30:28', '2025-12-17 19:47:51', 'v4DOV8qA', '3536656'), + (437, 641, 'attending', '2021-04-03 04:37:29', '2025-12-17 19:47:44', 'v4DOV8qA', '3539916'), + (437, 642, 'attending', '2021-03-31 03:36:02', '2025-12-17 19:47:44', 'v4DOV8qA', '3539917'), + (437, 643, 'attending', '2021-04-15 05:35:29', '2025-12-17 19:47:45', 'v4DOV8qA', '3539918'), + (437, 644, 'attending', '2021-04-18 15:49:10', '2025-12-17 19:47:45', 'v4DOV8qA', '3539919'), + (437, 645, 'maybe', '2021-05-06 02:42:46', '2025-12-17 19:47:46', 'v4DOV8qA', '3539920'), + (437, 646, 'attending', '2021-05-12 03:46:50', '2025-12-17 19:47:46', 'v4DOV8qA', '3539921'), + (437, 647, 'not_attending', '2021-05-07 05:45:58', '2025-12-17 19:47:46', 'v4DOV8qA', '3539922'), + (437, 648, 'maybe', '2021-05-07 05:46:22', '2025-12-17 19:47:47', 'v4DOV8qA', '3539923'), + (437, 649, 'attending', '2021-03-09 06:43:43', '2025-12-17 19:47:51', 'v4DOV8qA', '3539927'), + (437, 650, 'maybe', '2021-03-03 17:39:29', '2025-12-17 19:47:44', 'v4DOV8qA', '3539928'), + (437, 652, 'maybe', '2021-03-07 05:54:14', '2025-12-17 19:47:51', 'v4DOV8qA', '3544466'), + (437, 679, 'attending', '2021-03-09 07:38:05', '2025-12-17 19:47:44', 'v4DOV8qA', '3547168'), + (437, 680, 'attending', '2021-03-07 05:08:06', '2025-12-17 19:47:51', 'v4DOV8qA', '3547700'), + (437, 684, 'maybe', '2021-03-10 00:53:09', '2025-12-17 19:47:51', 'v4DOV8qA', '3549257'), + (437, 687, 'maybe', '2021-03-11 15:57:55', '2025-12-17 19:47:51', 'v4DOV8qA', '3553405'), + (437, 696, 'maybe', '2021-03-17 01:31:22', '2025-12-17 19:47:51', 'v4DOV8qA', '3567536'), + (437, 697, 'maybe', '2021-03-18 05:19:36', '2025-12-17 19:47:44', 'v4DOV8qA', '3567537'), + (437, 701, 'maybe', '2021-03-18 04:32:20', '2025-12-17 19:47:51', 'v4DOV8qA', '3577180'), + (437, 705, 'maybe', '2021-03-27 07:01:36', '2025-12-17 19:47:44', 'v4DOV8qA', '3581895'), + (437, 706, 'maybe', '2021-03-19 18:37:24', '2025-12-17 19:47:45', 'v4DOV8qA', '3582734'), + (437, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'v4DOV8qA', '3583262'), + (437, 711, 'attending', '2021-03-22 16:21:29', '2025-12-17 19:47:44', 'v4DOV8qA', '3588075'), + (437, 712, 'maybe', '2021-03-27 07:02:11', '2025-12-17 19:47:44', 'v4DOV8qA', '3604056'), + (437, 715, 'maybe', '2021-03-31 18:56:06', '2025-12-17 19:47:44', 'v4DOV8qA', '3604146'), + (437, 717, 'not_attending', '2021-03-27 07:01:09', '2025-12-17 19:47:44', 'v4DOV8qA', '3619523'), + (437, 719, 'maybe', '2021-04-06 03:04:06', '2025-12-17 19:47:44', 'v4DOV8qA', '3635405'), + (437, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'v4DOV8qA', '3661369'), + (437, 731, 'maybe', '2021-04-05 04:25:00', '2025-12-17 19:47:44', 'v4DOV8qA', '3674262'), + (437, 734, 'attending', '2021-04-06 02:46:34', '2025-12-17 19:47:44', 'v4DOV8qA', '3676806'), + (437, 735, 'maybe', '2021-04-15 05:40:04', '2025-12-17 19:47:46', 'v4DOV8qA', '3677402'), + (437, 736, 'maybe', '2021-04-06 03:04:13', '2025-12-17 19:47:44', 'v4DOV8qA', '3677701'), + (437, 737, 'not_attending', '2021-04-06 04:01:47', '2025-12-17 19:47:44', 'v4DOV8qA', '3679349'), + (437, 747, 'maybe', '2021-04-07 00:28:45', '2025-12-17 19:47:45', 'v4DOV8qA', '3684754'), + (437, 751, 'maybe', '2021-04-15 05:38:40', '2025-12-17 19:47:45', 'v4DOV8qA', '3691364'), + (437, 752, 'maybe', '2021-04-15 05:37:35', '2025-12-17 19:47:44', 'v4DOV8qA', '3699422'), + (437, 758, 'maybe', '2021-04-17 17:40:05', '2025-12-17 19:47:45', 'v4DOV8qA', '3713700'), + (437, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'v4DOV8qA', '3730212'), + (437, 777, 'attending', '2021-04-27 03:05:09', '2025-12-17 19:47:46', 'v4DOV8qA', '3746248'), + (437, 783, 'attending', '2021-05-01 04:24:04', '2025-12-17 19:47:46', 'v4DOV8qA', '3767471'), + (437, 786, 'maybe', '2021-05-04 21:26:12', '2025-12-17 19:47:46', 'v4DOV8qA', '3780093'), + (437, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'v4DOV8qA', '3793156'), + (437, 800, 'maybe', '2021-05-11 02:56:33', '2025-12-17 19:47:46', 'v4DOV8qA', '3800908'), + (437, 808, 'maybe', '2021-05-13 13:12:52', '2025-12-17 19:47:46', 'v4DOV8qA', '3807358'), + (437, 816, 'maybe', '2021-05-20 12:54:06', '2025-12-17 19:47:46', 'v4DOV8qA', '3826524'), + (437, 821, 'maybe', '2021-05-30 06:00:23', '2025-12-17 19:47:47', 'v4DOV8qA', '3963965'), + (437, 822, 'maybe', '2021-06-03 01:50:41', '2025-12-17 19:47:47', 'v4DOV8qA', '3969986'), + (437, 823, 'attending', '2021-05-30 06:02:09', '2025-12-17 19:47:48', 'v4DOV8qA', '3974109'), + (437, 825, 'maybe', '2021-06-07 05:02:17', '2025-12-17 19:47:47', 'v4DOV8qA', '3975283'), + (437, 826, 'maybe', '2021-06-07 16:54:14', '2025-12-17 19:47:48', 'v4DOV8qA', '3975310'), + (437, 827, 'maybe', '2021-05-30 17:19:26', '2025-12-17 19:47:47', 'v4DOV8qA', '3975311'), + (437, 828, 'not_attending', '2021-06-12 14:37:59', '2025-12-17 19:47:47', 'v4DOV8qA', '3975312'), + (437, 833, 'not_attending', '2021-06-07 04:59:49', '2025-12-17 19:47:47', 'v4DOV8qA', '3990438'), + (437, 838, 'maybe', '2021-06-07 05:01:53', '2025-12-17 19:47:47', 'v4DOV8qA', '3994992'), + (437, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4DOV8qA', '4014338'), + (437, 867, 'maybe', '2021-06-22 06:15:29', '2025-12-17 19:47:38', 'v4DOV8qA', '4021848'), + (437, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4DOV8qA', '4136744'), + (437, 870, 'maybe', '2021-06-30 04:42:11', '2025-12-17 19:47:39', 'v4DOV8qA', '4136937'), + (437, 871, 'not_attending', '2021-07-07 03:39:58', '2025-12-17 19:47:39', 'v4DOV8qA', '4136938'), + (437, 872, 'not_attending', '2021-07-20 02:29:53', '2025-12-17 19:47:40', 'v4DOV8qA', '4136947'), + (437, 884, 'maybe', '2021-08-11 05:34:31', '2025-12-17 19:47:42', 'v4DOV8qA', '4210314'), + (437, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4DOV8qA', '4225444'), + (437, 897, 'not_attending', '2021-06-28 00:38:49', '2025-12-17 19:47:38', 'v4DOV8qA', '4232132'), + (437, 899, 'not_attending', '2021-07-03 22:40:34', '2025-12-17 19:47:39', 'v4DOV8qA', '4239259'), + (437, 900, 'maybe', '2021-07-19 02:17:11', '2025-12-17 19:47:40', 'v4DOV8qA', '4240316'), + (437, 901, 'not_attending', '2021-07-31 16:26:03', '2025-12-17 19:47:40', 'v4DOV8qA', '4240317'), + (437, 902, 'maybe', '2021-08-04 05:11:38', '2025-12-17 19:47:41', 'v4DOV8qA', '4240318'), + (437, 903, 'maybe', '2021-08-11 05:26:34', '2025-12-17 19:47:42', 'v4DOV8qA', '4240320'), + (437, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4DOV8qA', '4250163'), + (437, 906, 'maybe', '2021-07-05 05:47:45', '2025-12-17 19:47:39', 'v4DOV8qA', '4253431'), + (437, 919, 'not_attending', '2021-07-17 04:16:34', '2025-12-17 19:47:39', 'v4DOV8qA', '4275957'), + (437, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'v4DOV8qA', '4277819'), + (437, 933, 'not_attending', '2021-07-25 03:13:45', '2025-12-17 19:47:40', 'v4DOV8qA', '4301723'), + (437, 934, 'not_attending', '2021-08-04 05:11:26', '2025-12-17 19:47:41', 'v4DOV8qA', '4302093'), + (437, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'v4DOV8qA', '4304151'), + (437, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'v4DOV8qA', '4356801'), + (437, 973, 'attending', '2021-08-16 06:53:27', '2025-12-17 19:47:42', 'v4DOV8qA', '4366186'), + (437, 974, 'maybe', '2021-08-18 00:31:16', '2025-12-17 19:47:42', 'v4DOV8qA', '4366187'), + (437, 990, 'maybe', '2021-08-30 03:25:28', '2025-12-17 19:47:43', 'v4DOV8qA', '4420735'), + (437, 991, 'not_attending', '2021-09-07 17:07:30', '2025-12-17 19:47:43', 'v4DOV8qA', '4420738'), + (437, 992, 'maybe', '2021-09-13 06:11:59', '2025-12-17 19:47:34', 'v4DOV8qA', '4420739'), + (437, 993, 'maybe', '2021-09-20 15:17:00', '2025-12-17 19:47:34', 'v4DOV8qA', '4420741'), + (437, 995, 'not_attending', '2021-10-04 13:58:00', '2025-12-17 19:47:34', 'v4DOV8qA', '4420744'), + (437, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'v4DOV8qA', '4420747'), + (437, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'v4DOV8qA', '4420748'), + (437, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'v4DOV8qA', '4420749'), + (437, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'v4DOV8qA', '4461883'), + (437, 1064, 'not_attending', '2021-09-20 15:16:36', '2025-12-17 19:47:34', 'v4DOV8qA', '4499526'), + (437, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'v4DOV8qA', '4508342'), + (437, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'v4DOV8qA', '4568602'), + (437, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'v4DOV8qA', '4572153'), + (437, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'v4DOV8qA', '4585962'), + (437, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'v4DOV8qA', '4596356'), + (437, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'v4DOV8qA', '4598860'), + (437, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'v4DOV8qA', '4598861'), + (437, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'v4DOV8qA', '4602797'), + (437, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'v4DOV8qA', '4637896'), + (437, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'v4DOV8qA', '4642994'), + (437, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'v4DOV8qA', '4642995'), + (437, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'v4DOV8qA', '4642996'), + (437, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'v4DOV8qA', '4642997'), + (437, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'v4DOV8qA', '4645687'), + (437, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'v4DOV8qA', '4645698'), + (437, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'v4DOV8qA', '4645704'), + (437, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'v4DOV8qA', '4645705'), + (437, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'v4DOV8qA', '4668385'), + (437, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'v4DOV8qA', '4694407'), + (437, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'v4DOV8qA', '4736497'), + (437, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'v4DOV8qA', '4736499'), + (437, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'v4DOV8qA', '4736500'), + (437, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'v4DOV8qA', '4736503'), + (437, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'v4DOV8qA', '4736504'), + (437, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'v4DOV8qA', '4746789'), + (437, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'v4DOV8qA', '4753929'), + (437, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4DOV8qA', '5038850'), + (437, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4DOV8qA', '5045826'), + (437, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4DOV8qA', '5132533'), + (437, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'v4DOV8qA', '5186582'), + (437, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'v4DOV8qA', '5186583'), + (437, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'v4DOV8qA', '5186585'), + (437, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4DOV8qA', '5190437'), + (437, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4DOV8qA', '5215989'), + (437, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DOV8qA', '6045684'), + (438, 395, 'attending', '2021-06-09 12:36:36', '2025-12-17 19:47:47', 'LmpJ3j94', '3236450'), + (438, 823, 'attending', '2021-06-14 15:28:18', '2025-12-17 19:47:48', 'LmpJ3j94', '3974109'), + (438, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpJ3j94', '3975312'), + (438, 844, 'attending', '2021-06-10 18:43:58', '2025-12-17 19:47:38', 'LmpJ3j94', '4014338'), + (438, 846, 'not_attending', '2021-07-07 20:49:09', '2025-12-17 19:47:39', 'LmpJ3j94', '4015718'), + (438, 867, 'attending', '2021-06-15 11:47:33', '2025-12-17 19:47:38', 'LmpJ3j94', '4021848'), + (438, 869, 'attending', '2021-06-24 03:49:06', '2025-12-17 19:47:38', 'LmpJ3j94', '4136744'), + (438, 870, 'attending', '2021-06-27 08:18:11', '2025-12-17 19:47:38', 'LmpJ3j94', '4136937'), + (438, 871, 'maybe', '2021-07-10 20:49:10', '2025-12-17 19:47:39', 'LmpJ3j94', '4136938'), + (438, 872, 'not_attending', '2021-07-21 21:27:56', '2025-12-17 19:47:40', 'LmpJ3j94', '4136947'), + (438, 873, 'attending', '2021-06-19 14:11:40', '2025-12-17 19:47:48', 'LmpJ3j94', '4138297'), + (438, 876, 'attending', '2021-06-15 11:47:10', '2025-12-17 19:47:38', 'LmpJ3j94', '4139926'), + (438, 880, 'attending', '2021-06-19 21:44:54', '2025-12-17 19:47:48', 'LmpJ3j94', '4205383'), + (438, 884, 'attending', '2021-07-17 14:03:47', '2025-12-17 19:47:42', 'LmpJ3j94', '4210314'), + (438, 887, 'maybe', '2021-07-13 17:58:24', '2025-12-17 19:47:39', 'LmpJ3j94', '4225444'), + (438, 899, 'maybe', '2021-07-03 18:13:35', '2025-12-17 19:47:39', 'LmpJ3j94', '4239259'), + (438, 900, 'attending', '2021-07-17 14:12:10', '2025-12-17 19:47:40', 'LmpJ3j94', '4240316'), + (438, 901, 'attending', '2021-07-17 14:12:30', '2025-12-17 19:47:40', 'LmpJ3j94', '4240317'), + (438, 902, 'maybe', '2021-08-07 15:39:05', '2025-12-17 19:47:41', 'LmpJ3j94', '4240318'), + (438, 903, 'attending', '2021-08-04 22:34:37', '2025-12-17 19:47:42', 'LmpJ3j94', '4240320'), + (438, 905, 'not_attending', '2021-07-07 22:06:36', '2025-12-17 19:47:39', 'LmpJ3j94', '4250163'), + (438, 911, 'attending', '2021-07-13 17:51:03', '2025-12-17 19:47:39', 'LmpJ3j94', '4264465'), + (438, 916, 'maybe', '2021-07-17 14:11:55', '2025-12-17 19:47:40', 'LmpJ3j94', '4273772'), + (438, 917, 'attending', '2021-07-12 00:49:18', '2025-12-17 19:47:39', 'LmpJ3j94', '4274481'), + (438, 919, 'maybe', '2021-07-17 14:07:17', '2025-12-17 19:47:39', 'LmpJ3j94', '4275957'), + (438, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpJ3j94', '4277819'), + (438, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpJ3j94', '4301723'), + (438, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpJ3j94', '4302093'), + (438, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpJ3j94', '4304151'), + (438, 946, 'maybe', '2021-08-02 07:02:51', '2025-12-17 19:47:40', 'LmpJ3j94', '4314835'), + (438, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'LmpJ3j94', '4345519'), + (438, 971, 'not_attending', '2021-09-08 20:44:00', '2025-12-17 19:47:43', 'LmpJ3j94', '4356801'), + (438, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpJ3j94', '4358025'), + (438, 973, 'not_attending', '2021-08-21 21:22:03', '2025-12-17 19:47:42', 'LmpJ3j94', '4366186'), + (438, 974, 'attending', '2021-08-21 21:21:58', '2025-12-17 19:47:42', 'LmpJ3j94', '4366187'), + (438, 988, 'not_attending', '2021-08-27 20:59:30', '2025-12-17 19:47:42', 'LmpJ3j94', '4402823'), + (438, 989, 'attending', '2021-08-29 21:50:49', '2025-12-17 19:47:43', 'LmpJ3j94', '4414282'), + (438, 990, 'not_attending', '2021-09-04 16:09:39', '2025-12-17 19:47:43', 'LmpJ3j94', '4420735'), + (438, 991, 'attending', '2021-08-28 22:45:16', '2025-12-17 19:47:43', 'LmpJ3j94', '4420738'), + (438, 992, 'attending', '2021-08-28 22:45:01', '2025-12-17 19:47:33', 'LmpJ3j94', '4420739'), + (438, 993, 'not_attending', '2021-09-16 00:25:54', '2025-12-17 19:47:34', 'LmpJ3j94', '4420741'), + (438, 994, 'attending', '2021-09-29 19:27:00', '2025-12-17 19:47:34', 'LmpJ3j94', '4420742'), + (438, 995, 'attending', '2021-08-28 22:45:11', '2025-12-17 19:47:34', 'LmpJ3j94', '4420744'), + (438, 996, 'maybe', '2021-10-10 03:19:10', '2025-12-17 19:47:35', 'LmpJ3j94', '4420747'), + (438, 997, 'maybe', '2021-10-23 16:05:37', '2025-12-17 19:47:35', 'LmpJ3j94', '4420748'), + (438, 998, 'attending', '2021-10-30 21:55:49', '2025-12-17 19:47:36', 'LmpJ3j94', '4420749'), + (438, 1010, 'attending', '2021-10-31 01:50:48', '2025-12-17 19:47:36', 'LmpJ3j94', '4438812'), + (438, 1019, 'attending', '2021-09-06 15:51:23', '2025-12-17 19:47:43', 'LmpJ3j94', '4450515'), + (438, 1020, 'attending', '2021-09-06 15:51:13', '2025-12-17 19:47:43', 'LmpJ3j94', '4451787'), + (438, 1021, 'attending', '2021-09-06 15:52:06', '2025-12-17 19:47:34', 'LmpJ3j94', '4451803'), + (438, 1023, 'maybe', '2021-09-10 01:51:02', '2025-12-17 19:47:43', 'LmpJ3j94', '4461883'), + (438, 1031, 'not_attending', '2021-09-22 22:41:51', '2025-12-17 19:47:34', 'LmpJ3j94', '4473789'), + (438, 1033, 'attending', '2021-09-18 21:52:24', '2025-12-17 19:47:43', 'LmpJ3j94', '4486006'), + (438, 1036, 'not_attending', '2021-09-21 20:39:58', '2025-12-17 19:47:34', 'LmpJ3j94', '4493166'), + (438, 1037, 'maybe', '2021-09-23 21:09:28', '2025-12-17 19:47:34', 'LmpJ3j94', '4493233'), + (438, 1038, 'not_attending', '2021-09-22 20:13:06', '2025-12-17 19:47:34', 'LmpJ3j94', '4496603'), + (438, 1040, 'maybe', '2021-12-10 01:43:55', '2025-12-17 19:47:38', 'LmpJ3j94', '4496605'), + (438, 1042, 'not_attending', '2021-11-27 23:01:59', '2025-12-17 19:47:37', 'LmpJ3j94', '4496607'), + (438, 1043, 'maybe', '2021-10-23 16:05:39', '2025-12-17 19:47:35', 'LmpJ3j94', '4496608'), + (438, 1047, 'attending', '2021-10-09 16:44:58', '2025-12-17 19:47:34', 'LmpJ3j94', '4496612'), + (438, 1058, 'not_attending', '2022-02-26 23:00:46', '2025-12-17 19:47:33', 'LmpJ3j94', '4496625'), + (438, 1062, 'not_attending', '2022-03-05 23:01:23', '2025-12-17 19:47:33', 'LmpJ3j94', '4496629'), + (438, 1065, 'not_attending', '2021-09-21 20:52:44', '2025-12-17 19:47:34', 'LmpJ3j94', '4505800'), + (438, 1067, 'not_attending', '2021-09-23 03:35:53', '2025-12-17 19:47:34', 'LmpJ3j94', '4508342'), + (438, 1068, 'maybe', '2021-09-30 22:09:53', '2025-12-17 19:47:34', 'LmpJ3j94', '4511471'), + (438, 1070, 'maybe', '2021-09-30 18:07:21', '2025-12-17 19:47:34', 'LmpJ3j94', '4512562'), + (438, 1082, 'maybe', '2021-10-13 23:29:40', '2025-12-17 19:47:35', 'LmpJ3j94', '4566762'), + (438, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpJ3j94', '4568602'), + (438, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'LmpJ3j94', '4572153'), + (438, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpJ3j94', '4585962'), + (438, 1094, 'maybe', '2021-10-31 22:45:23', '2025-12-17 19:47:36', 'LmpJ3j94', '4587337'), + (438, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'LmpJ3j94', '4596356'), + (438, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpJ3j94', '4598860'), + (438, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpJ3j94', '4598861'), + (438, 1099, 'attending', '2021-10-31 01:49:49', '2025-12-17 19:47:36', 'LmpJ3j94', '4602797'), + (438, 1114, 'not_attending', '2021-11-13 23:26:37', '2025-12-17 19:47:36', 'LmpJ3j94', '4637896'), + (438, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpJ3j94', '4642994'), + (438, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'LmpJ3j94', '4642995'), + (438, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpJ3j94', '4642996'), + (438, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpJ3j94', '4642997'), + (438, 1126, 'maybe', '2021-12-10 01:43:43', '2025-12-17 19:47:38', 'LmpJ3j94', '4645687'), + (438, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpJ3j94', '4645698'), + (438, 1128, 'not_attending', '2021-11-20 21:40:06', '2025-12-17 19:47:37', 'LmpJ3j94', '4645704'), + (438, 1129, 'not_attending', '2021-11-27 23:01:43', '2025-12-17 19:47:37', 'LmpJ3j94', '4645705'), + (438, 1130, 'not_attending', '2021-12-05 00:40:54', '2025-12-17 19:47:37', 'LmpJ3j94', '4658824'), + (438, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpJ3j94', '4668385'), + (438, 1146, 'maybe', '2021-12-10 01:43:25', '2025-12-17 19:47:38', 'LmpJ3j94', '4692841'), + (438, 1147, 'attending', '2021-12-10 01:44:20', '2025-12-17 19:47:38', 'LmpJ3j94', '4692842'), + (438, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpJ3j94', '4694407'), + (438, 1174, 'not_attending', '2022-01-15 23:01:18', '2025-12-17 19:47:31', 'LmpJ3j94', '4736496'), + (438, 1175, 'not_attending', '2022-01-23 00:31:05', '2025-12-17 19:47:32', 'LmpJ3j94', '4736497'), + (438, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpJ3j94', '4736499'), + (438, 1178, 'maybe', '2022-01-29 17:05:37', '2025-12-17 19:47:32', 'LmpJ3j94', '4736500'), + (438, 1180, 'not_attending', '2022-02-26 23:00:42', '2025-12-17 19:47:33', 'LmpJ3j94', '4736502'), + (438, 1181, 'not_attending', '2022-03-05 23:01:27', '2025-12-17 19:47:33', 'LmpJ3j94', '4736503'), + (438, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpJ3j94', '4736504'), + (438, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpJ3j94', '4746789'), + (438, 1188, 'maybe', '2022-01-18 00:45:48', '2025-12-17 19:47:32', 'LmpJ3j94', '4753929'), + (438, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpJ3j94', '5038850'), + (438, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpJ3j94', '5045826'), + (438, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpJ3j94', '5132533'), + (438, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'LmpJ3j94', '5186582'), + (438, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpJ3j94', '5186583'), + (438, 1274, 'not_attending', '2022-04-02 22:30:21', '2025-12-17 19:47:26', 'LmpJ3j94', '5186585'), + (438, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpJ3j94', '5190437'), + (438, 1284, 'not_attending', '2022-04-13 19:48:54', '2025-12-17 19:47:27', 'LmpJ3j94', '5195095'), + (438, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpJ3j94', '5215989'), + (438, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'LmpJ3j94', '5223686'), + (438, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'LmpJ3j94', '5227432'), + (438, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'LmpJ3j94', '5231461'), + (438, 1315, 'maybe', '2022-04-22 18:10:45', '2025-12-17 19:47:27', 'LmpJ3j94', '5237522'), + (438, 1319, 'maybe', '2022-04-13 19:48:33', '2025-12-17 19:47:27', 'LmpJ3j94', '5238353'), + (438, 1330, 'maybe', '2022-04-18 23:47:35', '2025-12-17 19:47:27', 'LmpJ3j94', '5242155'), + (438, 1331, 'maybe', '2022-04-21 20:01:31', '2025-12-17 19:47:27', 'LmpJ3j94', '5242156'), + (438, 1344, 'maybe', '2022-04-30 21:26:59', '2025-12-17 19:47:28', 'LmpJ3j94', '5247465'), + (438, 1345, 'maybe', '2022-04-21 16:48:26', '2025-12-17 19:47:27', 'LmpJ3j94', '5247466'), + (438, 1346, 'maybe', '2022-04-20 15:22:00', '2025-12-17 19:47:27', 'LmpJ3j94', '5247467'), + (438, 1362, 'maybe', '2022-04-30 21:27:02', '2025-12-17 19:47:28', 'LmpJ3j94', '5260800'), + (438, 1374, 'not_attending', '2022-05-07 22:09:27', '2025-12-17 19:47:28', 'LmpJ3j94', '5269930'), + (438, 1378, 'not_attending', '2022-05-14 21:00:46', '2025-12-17 19:47:29', 'LmpJ3j94', '5271448'), + (438, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'LmpJ3j94', '5271449'), + (438, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'LmpJ3j94', '5276469'), + (438, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'LmpJ3j94', '5278159'), + (438, 1407, 'not_attending', '2022-06-04 20:52:57', '2025-12-17 19:47:30', 'LmpJ3j94', '5363695'), + (438, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'LmpJ3j94', '5365960'), + (438, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'LmpJ3j94', '5368973'), + (438, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'LmpJ3j94', '5378247'), + (438, 1431, 'not_attending', '2022-06-11 21:21:20', '2025-12-17 19:47:31', 'LmpJ3j94', '5389605'), + (438, 1442, 'attending', '2022-06-18 16:07:46', '2025-12-17 19:47:17', 'LmpJ3j94', '5397265'), + (438, 1444, 'not_attending', '2022-06-11 21:21:10', '2025-12-17 19:47:30', 'LmpJ3j94', '5397614'), + (438, 1445, 'attending', '2022-06-18 17:36:38', '2025-12-17 19:47:17', 'LmpJ3j94', '5397615'), + (438, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'LmpJ3j94', '5403967'), + (438, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'LmpJ3j94', '5404786'), + (438, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'LmpJ3j94', '5405203'), + (438, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'LmpJ3j94', '5408794'), + (438, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'LmpJ3j94', '5411699'), + (438, 1482, 'attending', '2022-06-21 18:01:31', '2025-12-17 19:47:19', 'LmpJ3j94', '5412550'), + (438, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'LmpJ3j94', '5415046'), + (438, 1495, 'maybe', '2022-06-26 13:49:25', '2025-12-17 19:47:19', 'LmpJ3j94', '5422086'), + (438, 1498, 'not_attending', '2022-07-02 15:24:57', '2025-12-17 19:47:19', 'LmpJ3j94', '5422406'), + (438, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'LmpJ3j94', '5424565'), + (438, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'LmpJ3j94', '5426882'), + (438, 1505, 'maybe', '2022-07-05 20:11:21', '2025-12-17 19:47:19', 'LmpJ3j94', '5427083'), + (438, 1511, 'not_attending', '2022-07-09 20:16:29', '2025-12-17 19:47:19', 'LmpJ3j94', '5437733'), + (438, 1513, 'not_attending', '2022-07-13 15:21:16', '2025-12-17 19:47:20', 'LmpJ3j94', '5441125'), + (438, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'LmpJ3j94', '5441126'), + (438, 1515, 'not_attending', '2022-08-06 19:42:50', '2025-12-17 19:47:21', 'LmpJ3j94', '5441128'), + (438, 1517, 'not_attending', '2022-08-27 21:00:19', '2025-12-17 19:47:23', 'LmpJ3j94', '5441130'), + (438, 1518, 'not_attending', '2022-09-01 16:48:09', '2025-12-17 19:47:24', 'LmpJ3j94', '5441131'), + (438, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'LmpJ3j94', '5441132'), + (438, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'LmpJ3j94', '5446643'), + (438, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'LmpJ3j94', '5453325'), + (438, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'LmpJ3j94', '5454516'), + (438, 1544, 'not_attending', '2022-09-17 22:30:20', '2025-12-17 19:47:11', 'LmpJ3j94', '5454517'), + (438, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'LmpJ3j94', '5454605'), + (438, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'LmpJ3j94', '5455037'), + (438, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'LmpJ3j94', '5461278'), + (438, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'LmpJ3j94', '5469480'), + (438, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'LmpJ3j94', '5471073'), + (438, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'LmpJ3j94', '5474663'), + (438, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'LmpJ3j94', '5482022'), + (438, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'LmpJ3j94', '5482793'), + (438, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'LmpJ3j94', '5488912'), + (438, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'LmpJ3j94', '5492192'), + (438, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'LmpJ3j94', '5493139'), + (438, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'LmpJ3j94', '5493200'), + (438, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'LmpJ3j94', '5502188'), + (438, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'LmpJ3j94', '5505059'), + (438, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'LmpJ3j94', '5509055'), + (438, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'LmpJ3j94', '5512862'), + (438, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'LmpJ3j94', '5513985'), + (438, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'LmpJ3j94', '5519981'), + (438, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'LmpJ3j94', '5522550'), + (438, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'LmpJ3j94', '5534683'), + (438, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'LmpJ3j94', '5537735'), + (438, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'LmpJ3j94', '5540859'), + (438, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'LmpJ3j94', '5546619'), + (438, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'LmpJ3j94', '5557747'), + (438, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'LmpJ3j94', '5560255'), + (438, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'LmpJ3j94', '5562906'), + (438, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'LmpJ3j94', '5600604'), + (438, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'LmpJ3j94', '5605544'), + (438, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'LmpJ3j94', '5630960'), + (438, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'LmpJ3j94', '5630961'), + (438, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'LmpJ3j94', '5630962'), + (438, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'LmpJ3j94', '5630966'), + (438, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'LmpJ3j94', '5630967'), + (438, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'LmpJ3j94', '5630968'), + (438, 1727, 'not_attending', '2022-12-03 23:05:21', '2025-12-17 19:47:16', 'LmpJ3j94', '5630969'), + (438, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'LmpJ3j94', '5635406'), + (438, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'LmpJ3j94', '5638765'), + (438, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'LmpJ3j94', '5640097'), + (438, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'LmpJ3j94', '5640843'), + (438, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'LmpJ3j94', '5641521'), + (438, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'LmpJ3j94', '5642818'), + (438, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'LmpJ3j94', '5652395'), + (438, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'LmpJ3j94', '5670445'), + (438, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'LmpJ3j94', '5671637'), + (438, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'LmpJ3j94', '5672329'), + (438, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'LmpJ3j94', '5674057'), + (438, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'LmpJ3j94', '5674060'), + (438, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'LmpJ3j94', '5677461'), + (438, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'LmpJ3j94', '5698046'), + (438, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'LmpJ3j94', '5699760'), + (438, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'LmpJ3j94', '5741601'), + (438, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'LmpJ3j94', '5763458'), + (438, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'LmpJ3j94', '5774172'), + (438, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'LmpJ3j94', '5818247'), + (438, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'LmpJ3j94', '5819471'), + (438, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'LmpJ3j94', '5827739'), + (438, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'LmpJ3j94', '5844306'), + (438, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'LmpJ3j94', '5850159'), + (438, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'LmpJ3j94', '5858999'), + (438, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'LmpJ3j94', '5871984'), + (438, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'LmpJ3j94', '5876354'), + (438, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'LmpJ3j94', '5880939'), + (438, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'LmpJ3j94', '5880940'), + (438, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'LmpJ3j94', '5880942'), + (438, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'LmpJ3j94', '5880943'), + (438, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'LmpJ3j94', '5887890'), + (438, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'LmpJ3j94', '5888598'), + (438, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'LmpJ3j94', '5893260'), + (438, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'LmpJ3j94', '5899826'), + (438, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'LmpJ3j94', '5900199'), + (438, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'LmpJ3j94', '5900200'), + (438, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'LmpJ3j94', '5900202'), + (438, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'LmpJ3j94', '5900203'), + (438, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'LmpJ3j94', '5901108'), + (438, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'LmpJ3j94', '5901126'), + (438, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'LmpJ3j94', '5909655'), + (438, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'LmpJ3j94', '5910522'), + (438, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'LmpJ3j94', '5910526'), + (438, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'LmpJ3j94', '5910528'), + (438, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'LmpJ3j94', '5916219'), + (438, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'LmpJ3j94', '5936234'), + (438, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'LmpJ3j94', '5958351'), + (438, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'LmpJ3j94', '5959751'), + (438, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'LmpJ3j94', '5959755'), + (438, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'LmpJ3j94', '5960055'), + (438, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'LmpJ3j94', '5961684'), + (438, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'LmpJ3j94', '5962132'), + (438, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'LmpJ3j94', '5962133'), + (438, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'LmpJ3j94', '5962134'), + (438, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'LmpJ3j94', '5962317'), + (438, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'LmpJ3j94', '5962318'), + (438, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'LmpJ3j94', '5965933'), + (438, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'LmpJ3j94', '5967014'), + (438, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'LmpJ3j94', '5972815'), + (438, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'LmpJ3j94', '5974016'), + (438, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'LmpJ3j94', '5981515'), + (438, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'LmpJ3j94', '5993516'), + (438, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'LmpJ3j94', '5998939'), + (438, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'LmpJ3j94', '6028191'), + (438, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'LmpJ3j94', '6040066'), + (438, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'LmpJ3j94', '6042717'), + (438, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'LmpJ3j94', '6044838'), + (438, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'LmpJ3j94', '6044839'), + (438, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJ3j94', '6045684'), + (438, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'LmpJ3j94', '6050104'), + (438, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'LmpJ3j94', '6053195'), + (438, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'LmpJ3j94', '6053198'), + (438, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'LmpJ3j94', '6056085'), + (438, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'LmpJ3j94', '6056916'), + (438, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'LmpJ3j94', '6059290'), + (438, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'LmpJ3j94', '6060328'), + (438, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'LmpJ3j94', '6061037'), + (438, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'LmpJ3j94', '6061039'), + (438, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'LmpJ3j94', '6067245'), + (438, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'LmpJ3j94', '6068094'), + (438, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'LmpJ3j94', '6068252'), + (438, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'LmpJ3j94', '6068253'), + (438, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'LmpJ3j94', '6068254'), + (438, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'LmpJ3j94', '6068280'), + (438, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'LmpJ3j94', '6069093'), + (438, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'LmpJ3j94', '6072528'), + (438, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'LmpJ3j94', '6079840'), + (438, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'LmpJ3j94', '6083398'), + (438, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'LmpJ3j94', '6093504'), + (438, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'LmpJ3j94', '6097414'), + (438, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'LmpJ3j94', '6097442'), + (438, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'LmpJ3j94', '6097684'), + (438, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'LmpJ3j94', '6098762'), + (438, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'LmpJ3j94', '6101361'), + (438, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'LmpJ3j94', '6101362'), + (438, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'LmpJ3j94', '6107314'), + (438, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'LmpJ3j94', '6120034'), + (438, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'LmpJ3j94', '6136733'), + (438, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'LmpJ3j94', '6137989'), + (438, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'LmpJ3j94', '6150864'), + (438, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'LmpJ3j94', '6155491'), + (438, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'LmpJ3j94', '6164417'), + (438, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'LmpJ3j94', '6166388'), + (438, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'LmpJ3j94', '6176439'), + (438, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'LmpJ3j94', '6182410'), + (438, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'LmpJ3j94', '6185812'), + (438, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'LmpJ3j94', '6187651'), + (438, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'LmpJ3j94', '6187963'), + (438, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'LmpJ3j94', '6187964'), + (438, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'LmpJ3j94', '6187966'), + (438, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'LmpJ3j94', '6187967'), + (438, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'LmpJ3j94', '6187969'), + (438, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'LmpJ3j94', '6334878'), + (438, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'LmpJ3j94', '6337236'), + (438, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'LmpJ3j94', '6337970'), + (438, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'LmpJ3j94', '6338308'), + (438, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'LmpJ3j94', '6341710'), + (438, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'LmpJ3j94', '6342044'), + (438, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'LmpJ3j94', '6342298'), + (438, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'LmpJ3j94', '6343294'), + (438, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'LmpJ3j94', '6347034'), + (438, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'LmpJ3j94', '6347056'), + (438, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'LmpJ3j94', '6353830'), + (438, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'LmpJ3j94', '6353831'), + (438, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'LmpJ3j94', '6357867'), + (438, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'LmpJ3j94', '6358652'), + (438, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'LmpJ3j94', '6361709'), + (438, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'LmpJ3j94', '6361710'), + (438, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'LmpJ3j94', '6361711'), + (438, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'LmpJ3j94', '6361712'), + (438, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'LmpJ3j94', '6361713'), + (438, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'LmpJ3j94', '6382573'), + (438, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'LmpJ3j94', '6388604'), + (438, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'LmpJ3j94', '6394629'), + (438, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'LmpJ3j94', '6394631'), + (438, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'LmpJ3j94', '6440863'), + (438, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'LmpJ3j94', '6445440'), + (438, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'LmpJ3j94', '6453951'), + (438, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'LmpJ3j94', '6461696'), + (438, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'LmpJ3j94', '6462129'), + (438, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'LmpJ3j94', '6463218'), + (438, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'LmpJ3j94', '6472181'), + (438, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'LmpJ3j94', '6482693'), + (438, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'LmpJ3j94', '6484200'), + (438, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'LmpJ3j94', '6484680'), + (438, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'LmpJ3j94', '6507741'), + (438, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'LmpJ3j94', '6514659'), + (438, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'LmpJ3j94', '6514660'), + (438, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'LmpJ3j94', '6519103'), + (438, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'LmpJ3j94', '6535681'), + (438, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'LmpJ3j94', '6584747'), + (438, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'LmpJ3j94', '6587097'), + (438, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'LmpJ3j94', '6609022'), + (438, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'LmpJ3j94', '6632757'), + (438, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'LmpJ3j94', '6644187'), + (438, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'LmpJ3j94', '6648951'), + (438, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'LmpJ3j94', '6648952'), + (438, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'LmpJ3j94', '6655401'), + (438, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'LmpJ3j94', '6661585'), + (438, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'LmpJ3j94', '6661588'), + (438, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'LmpJ3j94', '6661589'), + (438, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'LmpJ3j94', '6699906'), + (438, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'LmpJ3j94', '6699913'), + (438, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'LmpJ3j94', '6701109'), + (438, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'LmpJ3j94', '6705219'), + (438, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'LmpJ3j94', '6710153'), + (438, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'LmpJ3j94', '6711552'), + (438, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'LmpJ3j94', '6711553'), + (438, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'LmpJ3j94', '6722688'), + (438, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'LmpJ3j94', '6730620'), + (438, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'LmpJ3j94', '6740364'), + (438, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'LmpJ3j94', '6743829'), + (438, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'LmpJ3j94', '7030380'), + (438, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'LmpJ3j94', '7033677'), + (438, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'LmpJ3j94', '7044715'), + (438, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'LmpJ3j94', '7050318'), + (438, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'LmpJ3j94', '7050319'), + (438, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'LmpJ3j94', '7050322'), + (438, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'LmpJ3j94', '7057804'), + (438, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'LmpJ3j94', '7072824'), + (438, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'LmpJ3j94', '7074348'), + (438, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'LmpJ3j94', '7074364'), + (438, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'LmpJ3j94', '7089267'), + (438, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'LmpJ3j94', '7098747'), + (438, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'LmpJ3j94', '7113468'), + (438, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'LmpJ3j94', '7114856'), + (438, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'LmpJ3j94', '7114951'), + (438, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'LmpJ3j94', '7114955'), + (438, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'LmpJ3j94', '7114956'), + (438, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'LmpJ3j94', '7114957'), + (438, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'LmpJ3j94', '7159484'), + (438, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'LmpJ3j94', '7178446'), + (438, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'LmpJ3j94', '7220467'), + (438, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'LmpJ3j94', '7240354'), + (438, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'LmpJ3j94', '7251633'), + (438, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'LmpJ3j94', '7324073'), + (438, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'LmpJ3j94', '7324074'), + (438, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'LmpJ3j94', '7324075'), + (438, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'LmpJ3j94', '7324078'), + (438, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'LmpJ3j94', '7324082'), + (438, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'LmpJ3j94', '7331457'), + (438, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'LmpJ3j94', '7363643'), + (438, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'LmpJ3j94', '7368606'), + (438, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'LmpJ3j94', '7397462'), + (438, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'LmpJ3j94', '7424275'), + (438, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'LmpJ3j94', '7432751'), + (438, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'LmpJ3j94', '7432752'), + (438, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'LmpJ3j94', '7432753'), + (438, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'LmpJ3j94', '7432754'), + (438, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'LmpJ3j94', '7432755'), + (438, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'LmpJ3j94', '7432756'), + (438, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'LmpJ3j94', '7432758'), + (438, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'LmpJ3j94', '7432759'), + (438, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'LmpJ3j94', '7433834'), + (438, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'LmpJ3j94', '7470197'), + (438, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'LmpJ3j94', '7685613'), + (438, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'LmpJ3j94', '7688194'), + (438, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'LmpJ3j94', '7688196'), + (438, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'LmpJ3j94', '7688289'), + (438, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'LmpJ3j94', '7692763'), + (438, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'LmpJ3j94', '7697552'), + (438, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'LmpJ3j94', '7699878'), + (438, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'LmpJ3j94', '7704043'), + (438, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'LmpJ3j94', '7712467'), + (438, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'LmpJ3j94', '7713585'), + (438, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'LmpJ3j94', '7713586'), + (438, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'LmpJ3j94', '7738518'), + (438, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'LmpJ3j94', '7750636'), + (438, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'LmpJ3j94', '7796540'), + (438, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'LmpJ3j94', '7796541'), + (438, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'LmpJ3j94', '7796542'), + (438, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'LmpJ3j94', '7825913'), + (438, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'LmpJ3j94', '7826209'), + (438, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'LmpJ3j94', '7834742'), + (438, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'LmpJ3j94', '7842108'), + (438, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'LmpJ3j94', '7842902'), + (438, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'LmpJ3j94', '7842903'), + (438, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'LmpJ3j94', '7842904'), + (438, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'LmpJ3j94', '7842905'), + (438, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'LmpJ3j94', '7855719'), + (438, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'LmpJ3j94', '7860683'), + (438, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'LmpJ3j94', '7860684'), + (438, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'LmpJ3j94', '7866095'), + (438, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'LmpJ3j94', '7869170'), + (438, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'LmpJ3j94', '7869188'), + (438, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'LmpJ3j94', '7869201'), + (438, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'LmpJ3j94', '7877465'), + (438, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'LmpJ3j94', '7888250'), + (438, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'LmpJ3j94', '7904777'), + (438, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'LmpJ3j94', '8349164'), + (438, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'LmpJ3j94', '8349545'), + (438, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'LmpJ3j94', '8368028'), + (438, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'LmpJ3j94', '8368029'), + (438, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'LmpJ3j94', '8388462'), + (438, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'LmpJ3j94', '8400273'), + (438, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'LmpJ3j94', '8400275'), + (438, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'LmpJ3j94', '8400276'), + (438, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'LmpJ3j94', '8404977'), + (438, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'LmpJ3j94', '8430783'), + (438, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'LmpJ3j94', '8430784'), + (438, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'LmpJ3j94', '8430799'), + (438, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'LmpJ3j94', '8430800'), + (438, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'LmpJ3j94', '8430801'), + (438, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'LmpJ3j94', '8438709'), + (438, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'LmpJ3j94', '8457738'), + (438, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'LmpJ3j94', '8459566'), + (438, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'LmpJ3j94', '8459567'), + (438, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'LmpJ3j94', '8461032'), + (438, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'LmpJ3j94', '8477877'), + (438, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'LmpJ3j94', '8485688'), + (438, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'LmpJ3j94', '8490587'), + (438, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'LmpJ3j94', '8493552'), + (438, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'LmpJ3j94', '8493553'), + (438, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'LmpJ3j94', '8493554'), + (438, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'LmpJ3j94', '8493555'), + (438, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'LmpJ3j94', '8493556'), + (438, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'LmpJ3j94', '8493557'), + (438, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'LmpJ3j94', '8493558'), + (438, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'LmpJ3j94', '8493559'), + (438, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'LmpJ3j94', '8493560'), + (438, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'LmpJ3j94', '8493561'), + (438, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'LmpJ3j94', '8493572'), + (438, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'LmpJ3j94', '8540725'), + (438, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'LmpJ3j94', '8555421'), + (439, 1242, 'attending', '2022-03-30 22:45:22', '2025-12-17 19:47:25', 'd9ovY5pA', '5052241'), + (439, 1274, 'maybe', '2022-03-30 13:25:07', '2025-12-17 19:47:26', 'd9ovY5pA', '5186585'), + (439, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'd9ovY5pA', '5195095'), + (439, 1288, 'attending', '2022-03-23 23:37:11', '2025-12-17 19:47:25', 'd9ovY5pA', '5199460'), + (439, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9ovY5pA', '5215989'), + (439, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd9ovY5pA', '5223686'), + (439, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd9ovY5pA', '5227432'), + (439, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'd9ovY5pA', '5247467'), + (439, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd9ovY5pA', '5260800'), + (439, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd9ovY5pA', '5269930'), + (439, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd9ovY5pA', '5271448'), + (439, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'd9ovY5pA', '5271449'), + (439, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd9ovY5pA', '5276469'), + (439, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd9ovY5pA', '5278159'), + (439, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd9ovY5pA', '5363695'), + (439, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd9ovY5pA', '5365960'), + (439, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd9ovY5pA', '5368973'), + (439, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd9ovY5pA', '5378247'), + (439, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd9ovY5pA', '5389605'), + (439, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd9ovY5pA', '5397265'), + (439, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd9ovY5pA', '5403967'), + (439, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd9ovY5pA', '5404786'), + (439, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd9ovY5pA', '5405203'), + (439, 1478, 'not_attending', '2022-06-15 01:11:29', '2025-12-17 19:47:19', 'd9ovY5pA', '5408794'), + (439, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd9ovY5pA', '5411699'), + (439, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd9ovY5pA', '5412550'), + (439, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd9ovY5pA', '5415046'), + (439, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd9ovY5pA', '5422086'), + (439, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd9ovY5pA', '5422406'), + (439, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd9ovY5pA', '5424565'), + (439, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd9ovY5pA', '5426882'), + (439, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd9ovY5pA', '5427083'), + (439, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd9ovY5pA', '5441125'), + (439, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd9ovY5pA', '5441126'), + (439, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd9ovY5pA', '5441128'), + (439, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd9ovY5pA', '5446643'), + (439, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd9ovY5pA', '5453325'), + (439, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd9ovY5pA', '5454516'), + (439, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd9ovY5pA', '5454605'), + (439, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd9ovY5pA', '5455037'), + (439, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd9ovY5pA', '5461278'), + (439, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd9ovY5pA', '5469480'), + (439, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd9ovY5pA', '5471073'), + (439, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd9ovY5pA', '5474663'), + (439, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd9ovY5pA', '5482022'), + (439, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd9ovY5pA', '5482793'), + (439, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd9ovY5pA', '5488912'), + (439, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd9ovY5pA', '5492192'), + (439, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd9ovY5pA', '5493139'), + (439, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd9ovY5pA', '5493200'), + (439, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd9ovY5pA', '5502188'), + (439, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd9ovY5pA', '5512862'), + (439, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd9ovY5pA', '5513985'), + (439, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9ovY5pA', '6045684'), + (440, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzva1L9d', '6045684'), + (441, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4kqkE0Lm', '6342044'), + (441, 2172, 'attending', '2023-07-20 15:42:56', '2025-12-17 19:46:53', '4kqkE0Lm', '6342591'), + (441, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '4kqkE0Lm', '6343294'), + (441, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4kqkE0Lm', '6347034'), + (441, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4kqkE0Lm', '6347056'), + (441, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4kqkE0Lm', '6353830'), + (441, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4kqkE0Lm', '6353831'), + (441, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4kqkE0Lm', '6357867'), + (441, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4kqkE0Lm', '6358652'), + (441, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', '4kqkE0Lm', '6361709'), + (441, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4kqkE0Lm', '6361710'), + (441, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4kqkE0Lm', '6361711'), + (441, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4kqkE0Lm', '6361712'), + (441, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4kqkE0Lm', '6361713'), + (441, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4kqkE0Lm', '6382573'), + (441, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4kqkE0Lm', '6388604'), + (441, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4kqkE0Lm', '6394629'), + (441, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4kqkE0Lm', '6394631'), + (441, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4kqkE0Lm', '6431478'), + (442, 1856, 'not_attending', '2023-01-17 23:45:31', '2025-12-17 19:47:05', '41xa1GEA', '5873970'), + (442, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41xa1GEA', '5876354'), + (442, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '41xa1GEA', '5880939'), + (442, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '41xa1GEA', '5880940'), + (442, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '41xa1GEA', '5880942'), + (442, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41xa1GEA', '5887890'), + (442, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41xa1GEA', '5888598'), + (442, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41xa1GEA', '5893260'), + (442, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '41xa1GEA', '5899826'), + (442, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '41xa1GEA', '5900199'), + (442, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '41xa1GEA', '5900200'), + (442, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', '41xa1GEA', '5901055'), + (442, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '41xa1GEA', '5901108'), + (442, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '41xa1GEA', '5901126'), + (442, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '41xa1GEA', '5901606'), + (442, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '41xa1GEA', '5909655'), + (442, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '41xa1GEA', '5910522'), + (442, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '41xa1GEA', '5910526'), + (442, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '41xa1GEA', '5910528'), + (442, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '41xa1GEA', '5916219'), + (442, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '41xa1GEA', '5936234'), + (442, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '41xa1GEA', '5936691'), + (442, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '41xa1GEA', '5958351'), + (442, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '41xa1GEA', '5959751'), + (442, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '41xa1GEA', '5959755'), + (442, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '41xa1GEA', '5960055'), + (442, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '41xa1GEA', '5961684'), + (442, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '41xa1GEA', '5962132'), + (442, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '41xa1GEA', '5962133'), + (442, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '41xa1GEA', '5962134'), + (442, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '41xa1GEA', '5962317'), + (442, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '41xa1GEA', '5962318'), + (442, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41xa1GEA', '6045684'), + (443, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dK3lXY5d', '4645687'), + (443, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dK3lXY5d', '4645698'), + (443, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dK3lXY5d', '4645704'), + (443, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dK3lXY5d', '4645705'), + (443, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dK3lXY5d', '4668385'), + (443, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dK3lXY5d', '4694407'), + (443, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dK3lXY5d', '4746789'), + (443, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dK3lXY5d', '4753929'), + (443, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dK3lXY5d', '6045684'), + (444, 857, 'not_attending', '2021-11-22 22:31:16', '2025-12-17 19:47:37', 'ndlboPlA', '4015731'), + (444, 994, 'not_attending', '2021-09-30 22:26:06', '2025-12-17 19:47:34', 'ndlboPlA', '4420742'), + (444, 995, 'not_attending', '2021-10-04 16:17:47', '2025-12-17 19:47:34', 'ndlboPlA', '4420744'), + (444, 996, 'not_attending', '2021-10-11 05:23:06', '2025-12-17 19:47:35', 'ndlboPlA', '4420747'), + (444, 1006, 'not_attending', '2021-09-30 22:25:55', '2025-12-17 19:47:34', 'ndlboPlA', '4438808'), + (444, 1007, 'not_attending', '2021-09-30 22:26:10', '2025-12-17 19:47:34', 'ndlboPlA', '4438809'), + (444, 1009, 'attending', '2021-10-02 03:29:11', '2025-12-17 19:47:34', 'ndlboPlA', '4438811'), + (444, 1039, 'not_attending', '2021-09-30 22:26:06', '2025-12-17 19:47:34', 'ndlboPlA', '4496604'), + (444, 1049, 'attending', '2021-12-31 16:15:20', '2025-12-17 19:47:32', 'ndlboPlA', '4496614'), + (444, 1068, 'attending', '2021-09-30 22:43:47', '2025-12-17 19:47:34', 'ndlboPlA', '4511471'), + (444, 1070, 'not_attending', '2021-09-30 22:25:56', '2025-12-17 19:47:34', 'ndlboPlA', '4512562'), + (444, 1071, 'not_attending', '2021-09-30 22:38:19', '2025-12-17 19:47:34', 'ndlboPlA', '4516078'), + (444, 1072, 'attending', '2021-09-30 22:42:34', '2025-12-17 19:47:34', 'ndlboPlA', '4516287'), + (444, 1073, 'not_attending', '2021-09-30 22:25:50', '2025-12-17 19:47:34', 'ndlboPlA', '4518993'), + (444, 1077, 'attending', '2021-10-09 16:14:57', '2025-12-17 19:47:34', 'ndlboPlA', '4540903'), + (444, 1079, 'attending', '2021-10-11 05:23:14', '2025-12-17 19:47:35', 'ndlboPlA', '4563823'), + (444, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndlboPlA', '4568602'), + (444, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndlboPlA', '4572153'), + (444, 1092, 'attending', '2021-10-20 19:50:26', '2025-12-17 19:47:35', 'ndlboPlA', '4582837'), + (444, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'ndlboPlA', '4585962'), + (444, 1095, 'not_attending', '2021-10-27 22:22:54', '2025-12-17 19:47:36', 'ndlboPlA', '4596356'), + (444, 1097, 'attending', '2021-10-29 01:50:40', '2025-12-17 19:47:36', 'ndlboPlA', '4598860'), + (444, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ndlboPlA', '4598861'), + (444, 1099, 'not_attending', '2021-10-31 02:32:35', '2025-12-17 19:47:36', 'ndlboPlA', '4602797'), + (444, 1103, 'attending', '2021-11-07 04:02:39', '2025-12-17 19:47:36', 'ndlboPlA', '4616350'), + (444, 1107, 'attending', '2021-11-16 05:32:44', '2025-12-17 19:47:37', 'ndlboPlA', '4620697'), + (444, 1114, 'not_attending', '2021-11-12 03:36:25', '2025-12-17 19:47:36', 'ndlboPlA', '4637896'), + (444, 1115, 'not_attending', '2021-11-16 05:32:42', '2025-12-17 19:47:37', 'ndlboPlA', '4638673'), + (444, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndlboPlA', '4642994'), + (444, 1117, 'not_attending', '2021-12-09 14:35:23', '2025-12-17 19:47:38', 'ndlboPlA', '4642995'), + (444, 1118, 'attending', '2021-12-04 20:10:23', '2025-12-17 19:47:38', 'ndlboPlA', '4642996'), + (444, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ndlboPlA', '4642997'), + (444, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ndlboPlA', '4645687'), + (444, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ndlboPlA', '4645698'), + (444, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndlboPlA', '4645704'), + (444, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ndlboPlA', '4645705'), + (444, 1130, 'maybe', '2021-11-29 03:47:07', '2025-12-17 19:47:37', 'ndlboPlA', '4658824'), + (444, 1134, 'not_attending', '2021-11-24 18:15:37', '2025-12-17 19:47:37', 'ndlboPlA', '4668385'), + (444, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndlboPlA', '4694407'), + (444, 1153, 'attending', '2021-12-31 16:15:16', '2025-12-17 19:47:32', 'ndlboPlA', '4708707'), + (444, 1154, 'attending', '2022-01-23 16:54:54', '2025-12-17 19:47:32', 'ndlboPlA', '4708708'), + (444, 1167, 'not_attending', '2022-01-06 20:58:22', '2025-12-17 19:47:31', 'ndlboPlA', '4731015'), + (444, 1168, 'not_attending', '2022-01-06 20:58:25', '2025-12-17 19:47:31', 'ndlboPlA', '4731043'), + (444, 1175, 'attending', '2022-01-16 06:30:04', '2025-12-17 19:47:32', 'ndlboPlA', '4736497'), + (444, 1177, 'not_attending', '2022-02-07 16:53:40', '2025-12-17 19:47:32', 'ndlboPlA', '4736499'), + (444, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndlboPlA', '4736500'), + (444, 1181, 'attending', '2022-03-04 20:35:48', '2025-12-17 19:47:33', 'ndlboPlA', '4736503'), + (444, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ndlboPlA', '4736504'), + (444, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndlboPlA', '4746789'), + (444, 1188, 'not_attending', '2022-01-16 06:29:43', '2025-12-17 19:47:32', 'ndlboPlA', '4753929'), + (444, 1192, 'not_attending', '2022-01-19 22:22:39', '2025-12-17 19:47:32', 'ndlboPlA', '4758745'), + (444, 1193, 'attending', '2022-01-16 06:30:00', '2025-12-17 19:47:32', 'ndlboPlA', '4759563'), + (444, 1196, 'not_attending', '2022-01-19 22:22:28', '2025-12-17 19:47:32', 'ndlboPlA', '4765583'), + (444, 1202, 'not_attending', '2022-01-27 23:38:41', '2025-12-17 19:47:32', 'ndlboPlA', '4769423'), + (444, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndlboPlA', '5038850'), + (444, 1236, 'attending', '2022-02-14 19:04:01', '2025-12-17 19:47:32', 'ndlboPlA', '5045826'), + (444, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndlboPlA', '5132533'), + (444, 1265, 'not_attending', '2022-03-07 08:13:32', '2025-12-17 19:47:33', 'ndlboPlA', '5160862'), + (444, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ndlboPlA', '5186582'), + (444, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ndlboPlA', '5186583'), + (444, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ndlboPlA', '5186585'), + (444, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ndlboPlA', '5190437'), + (444, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ndlboPlA', '5195095'), + (444, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndlboPlA', '5215989'), + (444, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ndlboPlA', '5223686'), + (444, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ndlboPlA', '5227432'), + (444, 1322, 'attending', '2022-04-11 17:10:36', '2025-12-17 19:47:27', 'ndlboPlA', '5238356'), + (444, 1323, 'not_attending', '2022-04-27 00:15:45', '2025-12-17 19:47:27', 'ndlboPlA', '5238357'), + (444, 1330, 'not_attending', '2022-04-20 00:06:17', '2025-12-17 19:47:27', 'ndlboPlA', '5242155'), + (444, 1335, 'not_attending', '2022-04-15 18:28:33', '2025-12-17 19:47:27', 'ndlboPlA', '5244906'), + (444, 1336, 'not_attending', '2022-04-20 00:06:28', '2025-12-17 19:47:27', 'ndlboPlA', '5244915'), + (444, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ndlboPlA', '5247467'), + (444, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ndlboPlA', '5260800'), + (444, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ndlboPlA', '5269930'), + (444, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ndlboPlA', '5271448'), + (444, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'ndlboPlA', '5271449'), + (444, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ndlboPlA', '5276469'), + (444, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ndlboPlA', '5278159'), + (444, 1401, 'attending', '2022-05-15 15:32:14', '2025-12-17 19:47:29', 'ndlboPlA', '5286295'), + (444, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ndlboPlA', '5363695'), + (444, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ndlboPlA', '5365960'), + (444, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ndlboPlA', '5368973'), + (444, 1419, 'attending', '2022-06-06 16:41:48', '2025-12-17 19:47:30', 'ndlboPlA', '5373081'), + (444, 1423, 'maybe', '2022-06-10 14:45:36', '2025-12-17 19:47:17', 'ndlboPlA', '5375727'), + (444, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ndlboPlA', '5378247'), + (444, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ndlboPlA', '5389605'), + (444, 1438, 'not_attending', '2022-06-01 18:46:30', '2025-12-17 19:47:30', 'ndlboPlA', '5395032'), + (444, 1440, 'attending', '2022-06-06 16:41:33', '2025-12-17 19:47:30', 'ndlboPlA', '5396080'), + (444, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ndlboPlA', '5397265'), + (444, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ndlboPlA', '5403967'), + (444, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ndlboPlA', '5404786'), + (444, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ndlboPlA', '5405203'), + (444, 1463, 'attending', '2022-06-11 03:07:55', '2025-12-17 19:47:31', 'ndlboPlA', '5405208'), + (444, 1471, 'not_attending', '2022-06-21 19:23:54', '2025-12-17 19:47:17', 'ndlboPlA', '5407063'), + (444, 1473, 'attending', '2022-06-14 21:40:59', '2025-12-17 19:47:31', 'ndlboPlA', '5407267'), + (444, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'ndlboPlA', '5408794'), + (444, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ndlboPlA', '5411699'), + (444, 1481, 'attending', '2022-06-21 09:53:55', '2025-12-17 19:47:17', 'ndlboPlA', '5412237'), + (444, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ndlboPlA', '5412550'), + (444, 1484, 'attending', '2022-06-22 18:14:05', '2025-12-17 19:47:17', 'ndlboPlA', '5415046'), + (444, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ndlboPlA', '5422086'), + (444, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ndlboPlA', '5422406'), + (444, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ndlboPlA', '5424565'), + (444, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ndlboPlA', '5426882'), + (444, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ndlboPlA', '5427083'), + (444, 1508, 'attending', '2022-07-11 15:06:17', '2025-12-17 19:47:19', 'ndlboPlA', '5433453'), + (444, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ndlboPlA', '5441125'), + (444, 1514, 'attending', '2022-07-19 22:51:53', '2025-12-17 19:47:20', 'ndlboPlA', '5441126'), + (444, 1515, 'attending', '2022-08-02 05:18:05', '2025-12-17 19:47:21', 'ndlboPlA', '5441128'), + (444, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ndlboPlA', '5441131'), + (444, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'ndlboPlA', '5441132'), + (444, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ndlboPlA', '5446643'), + (444, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ndlboPlA', '5453325'), + (444, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ndlboPlA', '5454516'), + (444, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ndlboPlA', '5454605'), + (444, 1546, 'not_attending', '2022-07-24 03:24:40', '2025-12-17 19:47:20', 'ndlboPlA', '5454607'), + (444, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ndlboPlA', '5455037'), + (444, 1558, 'attending', '2022-09-01 16:58:25', '2025-12-17 19:47:10', 'ndlboPlA', '5458730'), + (444, 1559, 'not_attending', '2022-09-01 16:58:37', '2025-12-17 19:47:11', 'ndlboPlA', '5458731'), + (444, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ndlboPlA', '5461278'), + (444, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ndlboPlA', '5469480'), + (444, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ndlboPlA', '5471073'), + (444, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ndlboPlA', '5474663'), + (444, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ndlboPlA', '5482022'), + (444, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ndlboPlA', '5482793'), + (444, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ndlboPlA', '5488912'), + (444, 1582, 'attending', '2022-08-18 01:56:04', '2025-12-17 19:47:23', 'ndlboPlA', '5492001'), + (444, 1584, 'not_attending', '2022-08-18 01:56:14', '2025-12-17 19:47:23', 'ndlboPlA', '5492004'), + (444, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ndlboPlA', '5492192'), + (444, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ndlboPlA', '5493139'), + (444, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ndlboPlA', '5493200'), + (444, 1598, 'attending', '2022-08-14 22:29:37', '2025-12-17 19:47:22', 'ndlboPlA', '5496567'), + (444, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ndlboPlA', '5502188'), + (444, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndlboPlA', '5505059'), + (444, 1610, 'attending', '2022-08-24 21:40:20', '2025-12-17 19:47:23', 'ndlboPlA', '5506595'), + (444, 1611, 'attending', '2022-09-03 10:27:59', '2025-12-17 19:47:24', 'ndlboPlA', '5507652'), + (444, 1615, 'attending', '2022-08-24 21:40:14', '2025-12-17 19:47:23', 'ndlboPlA', '5509055'), + (444, 1617, 'not_attending', '2022-09-05 04:50:41', '2025-12-17 19:47:24', 'ndlboPlA', '5512003'), + (444, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndlboPlA', '5512862'), + (444, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndlboPlA', '5513985'), + (444, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'ndlboPlA', '5519981'), + (444, 1627, 'attending', '2022-09-01 16:56:22', '2025-12-17 19:47:24', 'ndlboPlA', '5521552'), + (444, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndlboPlA', '5522550'), + (444, 1630, 'attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndlboPlA', '5534683'), + (444, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'ndlboPlA', '5537735'), + (444, 1636, 'maybe', '2022-09-03 10:27:49', '2025-12-17 19:47:24', 'ndlboPlA', '5538454'), + (444, 1637, 'not_attending', '2022-09-05 04:50:31', '2025-12-17 19:47:24', 'ndlboPlA', '5539591'), + (444, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndlboPlA', '5540859'), + (444, 1642, 'attending', '2022-09-01 03:04:33', '2025-12-17 19:47:24', 'ndlboPlA', '5544227'), + (444, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndlboPlA', '5546619'), + (444, 1648, 'attending', '2022-09-05 04:50:34', '2025-12-17 19:47:24', 'ndlboPlA', '5548974'), + (444, 1650, 'attending', '2022-09-04 03:47:53', '2025-12-17 19:47:24', 'ndlboPlA', '5549611'), + (444, 1651, 'not_attending', '2022-09-05 04:50:23', '2025-12-17 19:47:24', 'ndlboPlA', '5551425'), + (444, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ndlboPlA', '5555245'), + (444, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndlboPlA', '5557747'), + (444, 1661, 'attending', '2022-09-09 18:49:50', '2025-12-17 19:47:24', 'ndlboPlA', '5560254'), + (444, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndlboPlA', '5560255'), + (444, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndlboPlA', '5562906'), + (444, 1667, 'attending', '2022-09-11 15:05:25', '2025-12-17 19:47:11', 'ndlboPlA', '5563221'), + (444, 1668, 'attending', '2022-09-21 15:15:41', '2025-12-17 19:47:12', 'ndlboPlA', '5563222'), + (444, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndlboPlA', '5600604'), + (444, 1679, 'attending', '2022-10-02 18:56:18', '2025-12-17 19:47:12', 'ndlboPlA', '5601099'), + (444, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndlboPlA', '5605544'), + (444, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'ndlboPlA', '5606737'), + (444, 1702, 'not_attending', '2022-10-07 15:17:03', '2025-12-17 19:47:12', 'ndlboPlA', '5609173'), + (444, 1708, 'attending', '2022-10-02 18:56:29', '2025-12-17 19:47:12', 'ndlboPlA', '5617648'), + (444, 1710, 'not_attending', '2022-10-02 18:56:14', '2025-12-17 19:47:12', 'ndlboPlA', '5621822'), + (444, 1716, 'not_attending', '2022-10-05 01:12:24', '2025-12-17 19:47:12', 'ndlboPlA', '5622429'), + (444, 1718, 'not_attending', '2022-10-05 01:12:39', '2025-12-17 19:47:12', 'ndlboPlA', '5630907'), + (444, 1721, 'attending', '2022-10-11 20:31:37', '2025-12-17 19:47:13', 'ndlboPlA', '5630960'), + (444, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndlboPlA', '5630961'), + (444, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndlboPlA', '5630962'), + (444, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndlboPlA', '5630966'), + (444, 1725, 'attending', '2022-11-13 04:36:39', '2025-12-17 19:47:16', 'ndlboPlA', '5630967'), + (444, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndlboPlA', '5630968'), + (444, 1727, 'not_attending', '2022-11-21 01:34:41', '2025-12-17 19:47:16', 'ndlboPlA', '5630969'), + (444, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndlboPlA', '5635406'), + (444, 1733, 'not_attending', '2022-10-07 15:17:19', '2025-12-17 19:47:12', 'ndlboPlA', '5635411'), + (444, 1736, 'attending', '2022-10-25 03:07:42', '2025-12-17 19:47:15', 'ndlboPlA', '5638456'), + (444, 1737, 'attending', '2022-11-07 03:23:26', '2025-12-17 19:47:16', 'ndlboPlA', '5638457'), + (444, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndlboPlA', '5638765'), + (444, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndlboPlA', '5640097'), + (444, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'ndlboPlA', '5640843'), + (444, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndlboPlA', '5641521'), + (444, 1744, 'not_attending', '2022-11-07 03:23:24', '2025-12-17 19:47:16', 'ndlboPlA', '5642818'), + (444, 1747, 'not_attending', '2022-10-15 21:17:29', '2025-12-17 19:47:14', 'ndlboPlA', '5648009'), + (444, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndlboPlA', '5652395'), + (444, 1757, 'not_attending', '2022-11-01 04:20:31', '2025-12-17 19:47:15', 'ndlboPlA', '5668974'), + (444, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ndlboPlA', '5670445'), + (444, 1764, 'attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndlboPlA', '5671637'), + (444, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndlboPlA', '5672329'), + (444, 1766, 'attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndlboPlA', '5674057'), + (444, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndlboPlA', '5674060'), + (444, 1768, 'not_attending', '2022-11-07 03:23:11', '2025-12-17 19:47:16', 'ndlboPlA', '5674062'), + (444, 1772, 'attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndlboPlA', '5677461'), + (444, 1774, 'not_attending', '2022-11-01 04:20:25', '2025-12-17 19:47:15', 'ndlboPlA', '5677843'), + (444, 1776, 'attending', '2022-11-02 01:28:01', '2025-12-17 19:47:15', 'ndlboPlA', '5691067'), + (444, 1777, 'attending', '2022-11-02 01:27:53', '2025-12-17 19:47:15', 'ndlboPlA', '5693021'), + (444, 1781, 'attending', '2022-11-02 01:44:26', '2025-12-17 19:47:15', 'ndlboPlA', '5696178'), + (444, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndlboPlA', '5698046'), + (444, 1784, 'not_attending', '2022-11-07 03:23:22', '2025-12-17 19:47:15', 'ndlboPlA', '5699760'), + (444, 1785, 'not_attending', '2022-11-07 03:23:18', '2025-12-17 19:47:15', 'ndlboPlA', '5702414'), + (444, 1791, 'attending', '2022-11-07 18:48:03', '2025-12-17 19:47:15', 'ndlboPlA', '5728511'), + (444, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndlboPlA', '5741601'), + (444, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndlboPlA', '5763458'), + (444, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndlboPlA', '5774172'), + (444, 1827, 'attending', '2022-11-29 17:49:59', '2025-12-17 19:47:16', 'ndlboPlA', '5776786'), + (444, 1831, 'not_attending', '2022-12-05 19:04:34', '2025-12-17 19:47:16', 'ndlboPlA', '5813239'), + (444, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'ndlboPlA', '5818247'), + (444, 1833, 'attending', '2022-12-05 19:04:17', '2025-12-17 19:47:16', 'ndlboPlA', '5819465'), + (444, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndlboPlA', '5819471'), + (444, 1837, 'attending', '2022-12-05 19:04:22', '2025-12-17 19:47:16', 'ndlboPlA', '5820146'), + (444, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndlboPlA', '5827739'), + (444, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndlboPlA', '5844306'), + (444, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndlboPlA', '5850159'), + (444, 1848, 'attending', '2022-12-30 17:23:40', '2025-12-17 19:47:05', 'ndlboPlA', '5852466'), + (444, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndlboPlA', '5858999'), + (444, 1852, 'attending', '2023-01-10 19:11:37', '2025-12-17 19:47:05', 'ndlboPlA', '5869898'), + (444, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndlboPlA', '5871984'), + (444, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndlboPlA', '5876354'), + (444, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndlboPlA', '5880939'), + (444, 1867, 'attending', '2023-01-27 05:19:56', '2025-12-17 19:47:07', 'ndlboPlA', '5880940'), + (444, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndlboPlA', '5880942'), + (444, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndlboPlA', '5880943'), + (444, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndlboPlA', '5887890'), + (444, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndlboPlA', '5888598'), + (444, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndlboPlA', '5893260'), + (444, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndlboPlA', '5899826'), + (444, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndlboPlA', '5900199'), + (444, 1890, 'attending', '2023-02-21 17:27:10', '2025-12-17 19:47:08', 'ndlboPlA', '5900200'), + (444, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndlboPlA', '5900202'), + (444, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndlboPlA', '5900203'), + (444, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndlboPlA', '5901108'), + (444, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndlboPlA', '5901126'), + (444, 1898, 'not_attending', '2023-02-01 19:31:20', '2025-12-17 19:47:06', 'ndlboPlA', '5901263'), + (444, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndlboPlA', '5909655'), + (444, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndlboPlA', '5910522'), + (444, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndlboPlA', '5910526'), + (444, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndlboPlA', '5910528'), + (444, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ndlboPlA', '5916219'), + (444, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndlboPlA', '5936234'), + (444, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndlboPlA', '5958351'), + (444, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndlboPlA', '5959751'), + (444, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndlboPlA', '5959755'), + (444, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndlboPlA', '5960055'), + (444, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndlboPlA', '5961684'), + (444, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndlboPlA', '5962132'), + (444, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ndlboPlA', '5962133'), + (444, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndlboPlA', '5962134'), + (444, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndlboPlA', '5962317'), + (444, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndlboPlA', '5962318'), + (444, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndlboPlA', '5965933'), + (444, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndlboPlA', '5967014'), + (444, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndlboPlA', '5972815'), + (444, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndlboPlA', '5974016'), + (444, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndlboPlA', '5981515'), + (444, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndlboPlA', '5993516'), + (444, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndlboPlA', '5998939'), + (444, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndlboPlA', '6028191'), + (444, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndlboPlA', '6040066'), + (444, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndlboPlA', '6042717'), + (444, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndlboPlA', '6044838'), + (444, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndlboPlA', '6044839'), + (444, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ndlboPlA', '6045684'), + (444, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndlboPlA', '6050104'), + (444, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndlboPlA', '6053195'), + (444, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndlboPlA', '6053198'), + (444, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndlboPlA', '6056085'), + (444, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndlboPlA', '6056916'), + (444, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndlboPlA', '6059290'), + (444, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndlboPlA', '6060328'), + (444, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndlboPlA', '6061037'), + (444, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndlboPlA', '6061039'), + (444, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndlboPlA', '6067245'), + (444, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndlboPlA', '6068094'), + (444, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndlboPlA', '6068252'), + (444, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndlboPlA', '6068253'), + (444, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndlboPlA', '6068254'), + (444, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndlboPlA', '6068280'), + (444, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndlboPlA', '6069093'), + (444, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndlboPlA', '6072528'), + (444, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndlboPlA', '6079840'), + (444, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndlboPlA', '6083398'), + (444, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndlboPlA', '6093504'), + (444, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndlboPlA', '6097414'), + (444, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndlboPlA', '6097442'), + (444, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndlboPlA', '6097684'), + (444, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndlboPlA', '6098762'), + (444, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ndlboPlA', '6101361'), + (444, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndlboPlA', '6101362'), + (444, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'ndlboPlA', '6103752'), + (444, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndlboPlA', '6107314'), + (444, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndlboPlA', '6120034'), + (444, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ndlboPlA', '6136733'), + (444, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndlboPlA', '6137989'), + (444, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndlboPlA', '6150864'), + (444, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndlboPlA', '6155491'), + (444, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndlboPlA', '6164417'), + (444, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndlboPlA', '6166388'), + (444, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndlboPlA', '6176439'), + (444, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndlboPlA', '6182410'), + (444, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndlboPlA', '6185812'), + (444, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndlboPlA', '6187651'), + (444, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndlboPlA', '6187963'), + (444, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndlboPlA', '6187964'), + (444, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndlboPlA', '6187966'), + (444, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndlboPlA', '6187967'), + (444, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndlboPlA', '6187969'), + (444, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndlboPlA', '6334878'), + (444, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndlboPlA', '6337236'), + (444, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndlboPlA', '6337970'), + (444, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndlboPlA', '6338308'), + (444, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'ndlboPlA', '6340845'), + (444, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndlboPlA', '6341710'), + (444, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndlboPlA', '6342044'), + (444, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndlboPlA', '6342298'), + (444, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndlboPlA', '6343294'), + (444, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndlboPlA', '6347034'), + (444, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndlboPlA', '6347056'), + (444, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndlboPlA', '6353830'), + (444, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndlboPlA', '6353831'), + (444, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndlboPlA', '6357867'), + (444, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndlboPlA', '6358652'), + (444, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndlboPlA', '6361709'), + (444, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndlboPlA', '6361710'), + (444, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndlboPlA', '6361711'), + (444, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndlboPlA', '6361712'), + (444, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndlboPlA', '6361713'), + (444, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndlboPlA', '6382573'), + (444, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'ndlboPlA', '6388604'), + (444, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndlboPlA', '6394629'), + (444, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndlboPlA', '6394631'), + (444, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndlboPlA', '6440863'), + (444, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndlboPlA', '6445440'), + (444, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndlboPlA', '6453951'), + (444, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndlboPlA', '6461696'), + (444, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndlboPlA', '6462129'), + (444, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndlboPlA', '6463218'), + (444, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ndlboPlA', '6472181'), + (444, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndlboPlA', '6482693'), + (444, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'ndlboPlA', '6484200'), + (444, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndlboPlA', '6484680'), + (444, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndlboPlA', '6507741'), + (444, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndlboPlA', '6514659'), + (444, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndlboPlA', '6514660'), + (444, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndlboPlA', '6519103'), + (444, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndlboPlA', '6535681'), + (444, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndlboPlA', '6584747'), + (444, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndlboPlA', '6587097'), + (444, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndlboPlA', '6609022'), + (444, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndlboPlA', '6632757'), + (444, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndlboPlA', '6644187'), + (444, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndlboPlA', '6648951'), + (444, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndlboPlA', '6648952'), + (444, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndlboPlA', '6655401'), + (444, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndlboPlA', '6661585'), + (444, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndlboPlA', '6661588'), + (444, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndlboPlA', '6661589'), + (444, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndlboPlA', '6699906'), + (444, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndlboPlA', '6701109'), + (444, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndlboPlA', '6705219'), + (444, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndlboPlA', '6710153'), + (444, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndlboPlA', '6711552'), + (444, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'ndlboPlA', '6711553'), + (445, 344, 'attending', '2020-11-02 00:46:01', '2025-12-17 19:47:53', 'ydw70y5d', '3206906'), + (445, 392, 'attending', '2020-10-29 23:51:25', '2025-12-17 19:47:53', 'ydw70y5d', '3236447'), + (445, 422, 'maybe', '2020-10-29 22:54:29', '2025-12-17 19:47:53', 'ydw70y5d', '3245295'), + (445, 423, 'maybe', '2020-11-03 23:17:30', '2025-12-17 19:47:53', 'ydw70y5d', '3245296'), + (445, 429, 'maybe', '2020-12-05 21:22:56', '2025-12-17 19:47:54', 'ydw70y5d', '3250523'), + (445, 438, 'attending', '2020-10-30 02:28:06', '2025-12-17 19:47:53', 'ydw70y5d', '3256163'), + (445, 440, 'not_attending', '2020-11-03 23:17:43', '2025-12-17 19:47:53', 'ydw70y5d', '3256168'), + (445, 441, 'attending', '2020-11-12 03:21:25', '2025-12-17 19:47:54', 'ydw70y5d', '3256169'), + (445, 444, 'attending', '2020-10-30 14:59:51', '2025-12-17 19:47:53', 'ydw70y5d', '3263745'), + (445, 445, 'attending', '2020-11-13 00:30:23', '2025-12-17 19:47:54', 'ydw70y5d', '3266138'), + (445, 448, 'not_attending', '2020-10-31 00:33:46', '2025-12-17 19:47:53', 'ydw70y5d', '3271831'), + (445, 452, 'maybe', '2020-11-29 21:43:02', '2025-12-17 19:47:54', 'ydw70y5d', '3272981'), + (445, 456, 'attending', '2020-11-15 23:22:41', '2025-12-17 19:47:54', 'ydw70y5d', '3276428'), + (445, 459, 'attending', '2020-11-15 23:22:53', '2025-12-17 19:47:54', 'ydw70y5d', '3281467'), + (445, 460, 'maybe', '2020-11-19 22:01:04', '2025-12-17 19:47:54', 'ydw70y5d', '3281468'), + (445, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:54', 'ydw70y5d', '3281470'), + (445, 466, 'attending', '2020-11-23 23:57:10', '2025-12-17 19:47:54', 'ydw70y5d', '3281829'), + (445, 467, 'attending', '2020-11-17 21:37:19', '2025-12-17 19:47:54', 'ydw70y5d', '3282756'), + (445, 468, 'attending', '2020-11-19 22:02:27', '2025-12-17 19:47:54', 'ydw70y5d', '3285413'), + (445, 469, 'attending', '2020-11-26 22:58:00', '2025-12-17 19:47:54', 'ydw70y5d', '3285414'), + (445, 475, 'maybe', '2020-11-24 19:45:02', '2025-12-17 19:47:54', 'ydw70y5d', '3286760'), + (445, 476, 'attending', '2020-11-18 04:33:10', '2025-12-17 19:47:54', 'ydw70y5d', '3286982'), + (445, 479, 'not_attending', '2020-11-19 22:02:12', '2025-12-17 19:47:54', 'ydw70y5d', '3295306'), + (445, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ydw70y5d', '3297764'), + (445, 482, 'not_attending', '2020-11-24 19:44:46', '2025-12-17 19:47:54', 'ydw70y5d', '3297769'), + (445, 486, 'attending', '2020-11-24 23:47:58', '2025-12-17 19:47:54', 'ydw70y5d', '3300281'), + (445, 487, 'not_attending', '2020-11-28 17:23:51', '2025-12-17 19:47:54', 'ydw70y5d', '3311122'), + (445, 488, 'maybe', '2020-11-30 18:33:40', '2025-12-17 19:47:54', 'ydw70y5d', '3312757'), + (445, 489, 'maybe', '2020-11-27 20:34:50', '2025-12-17 19:47:54', 'ydw70y5d', '3313022'), + (445, 493, 'attending', '2020-11-30 00:40:18', '2025-12-17 19:47:54', 'ydw70y5d', '3313856'), + (445, 494, 'attending', '2020-11-29 19:32:52', '2025-12-17 19:47:54', 'ydw70y5d', '3313866'), + (445, 496, 'maybe', '2020-12-07 17:29:54', '2025-12-17 19:47:54', 'ydw70y5d', '3314269'), + (445, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ydw70y5d', '3314909'), + (445, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ydw70y5d', '3314964'), + (445, 501, 'maybe', '2020-12-05 21:23:14', '2025-12-17 19:47:54', 'ydw70y5d', '3317834'), + (445, 502, 'not_attending', '2020-12-12 21:22:20', '2025-12-17 19:47:55', 'ydw70y5d', '3323365'), + (445, 513, 'attending', '2020-12-19 00:21:10', '2025-12-17 19:47:55', 'ydw70y5d', '3329383'), + (445, 526, 'not_attending', '2021-01-02 22:24:03', '2025-12-17 19:47:48', 'ydw70y5d', '3351539'), + (445, 536, 'not_attending', '2021-01-09 23:56:02', '2025-12-17 19:47:48', 'ydw70y5d', '3386848'), + (445, 540, 'attending', '2021-01-07 06:58:15', '2025-12-17 19:47:48', 'ydw70y5d', '3389527'), + (445, 543, 'attending', '2021-01-15 23:37:25', '2025-12-17 19:47:48', 'ydw70y5d', '3396499'), + (445, 548, 'attending', '2021-01-16 20:53:36', '2025-12-17 19:47:48', 'ydw70y5d', '3403650'), + (445, 549, 'maybe', '2021-01-18 18:27:43', '2025-12-17 19:47:49', 'ydw70y5d', '3406988'), + (445, 550, 'maybe', '2021-01-17 20:58:32', '2025-12-17 19:47:48', 'ydw70y5d', '3407018'), + (445, 555, 'attending', '2021-01-23 19:50:18', '2025-12-17 19:47:49', 'ydw70y5d', '3416576'), + (445, 556, 'attending', '2021-01-26 23:27:40', '2025-12-17 19:47:49', 'ydw70y5d', '3417170'), + (445, 557, 'attending', '2021-01-21 00:43:23', '2025-12-17 19:47:49', 'ydw70y5d', '3418748'), + (445, 558, 'attending', '2021-01-22 21:56:02', '2025-12-17 19:47:49', 'ydw70y5d', '3418925'), + (445, 559, 'not_attending', '2021-01-27 17:11:42', '2025-12-17 19:47:49', 'ydw70y5d', '3421439'), + (445, 560, 'not_attending', '2021-01-21 17:45:46', '2025-12-17 19:47:49', 'ydw70y5d', '3421715'), + (445, 567, 'attending', '2021-01-27 00:14:54', '2025-12-17 19:47:50', 'ydw70y5d', '3428895'), + (445, 568, 'attending', '2021-01-27 00:15:02', '2025-12-17 19:47:50', 'ydw70y5d', '3430267'), + (445, 569, 'attending', '2021-01-27 22:11:15', '2025-12-17 19:47:49', 'ydw70y5d', '3432673'), + (445, 570, 'attending', '2021-02-06 00:49:15', '2025-12-17 19:47:50', 'ydw70y5d', '3435538'), + (445, 571, 'maybe', '2021-02-09 21:23:00', '2025-12-17 19:47:50', 'ydw70y5d', '3435539'), + (445, 576, 'attending', '2021-02-02 21:26:26', '2025-12-17 19:47:50', 'ydw70y5d', '3438748'), + (445, 577, 'maybe', '2021-01-29 19:16:32', '2025-12-17 19:47:49', 'ydw70y5d', '3439167'), + (445, 579, 'attending', '2021-02-05 05:04:29', '2025-12-17 19:47:50', 'ydw70y5d', '3440978'), + (445, 598, 'maybe', '2021-02-09 21:21:56', '2025-12-17 19:47:50', 'ydw70y5d', '3468003'), + (445, 599, 'maybe', '2021-02-16 20:40:27', '2025-12-17 19:47:50', 'ydw70y5d', '3468117'), + (445, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'ydw70y5d', '3468125'), + (445, 602, 'attending', '2021-02-13 02:07:34', '2025-12-17 19:47:50', 'ydw70y5d', '3470303'), + (445, 603, 'attending', '2021-02-19 13:13:21', '2025-12-17 19:47:50', 'ydw70y5d', '3470304'), + (445, 604, 'attending', '2021-02-27 13:57:49', '2025-12-17 19:47:50', 'ydw70y5d', '3470305'), + (445, 605, 'attending', '2021-02-14 17:06:24', '2025-12-17 19:47:50', 'ydw70y5d', '3470991'), + (445, 606, 'maybe', '2021-02-11 17:11:41', '2025-12-17 19:47:50', 'ydw70y5d', '3470998'), + (445, 607, 'maybe', '2021-02-19 13:13:27', '2025-12-17 19:47:50', 'ydw70y5d', '3471882'), + (445, 621, 'attending', '2021-03-05 00:53:03', '2025-12-17 19:47:51', 'ydw70y5d', '3517815'), + (445, 622, 'not_attending', '2021-03-13 22:39:53', '2025-12-17 19:47:51', 'ydw70y5d', '3517816'), + (445, 623, 'attending', '2021-02-27 13:57:40', '2025-12-17 19:47:50', 'ydw70y5d', '3523941'), + (445, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ydw70y5d', '3533850'), + (445, 636, 'not_attending', '2021-04-16 02:43:33', '2025-12-17 19:47:45', 'ydw70y5d', '3534720'), + (445, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ydw70y5d', '3536632'), + (445, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ydw70y5d', '3536656'), + (445, 641, 'not_attending', '2021-03-31 22:41:19', '2025-12-17 19:47:44', 'ydw70y5d', '3539916'), + (445, 642, 'not_attending', '2021-04-09 14:34:39', '2025-12-17 19:47:44', 'ydw70y5d', '3539917'), + (445, 643, 'not_attending', '2021-04-16 02:43:41', '2025-12-17 19:47:45', 'ydw70y5d', '3539918'), + (445, 644, 'not_attending', '2021-04-16 02:44:08', '2025-12-17 19:47:46', 'ydw70y5d', '3539919'), + (445, 645, 'not_attending', '2021-05-04 00:19:40', '2025-12-17 19:47:46', 'ydw70y5d', '3539920'), + (445, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ydw70y5d', '3539921'), + (445, 647, 'not_attending', '2021-05-22 21:17:36', '2025-12-17 19:47:47', 'ydw70y5d', '3539922'), + (445, 648, 'not_attending', '2021-05-22 21:18:11', '2025-12-17 19:47:47', 'ydw70y5d', '3539923'), + (445, 649, 'not_attending', '2021-03-20 15:20:09', '2025-12-17 19:47:51', 'ydw70y5d', '3539927'), + (445, 650, 'not_attending', '2021-03-27 17:05:21', '2025-12-17 19:47:44', 'ydw70y5d', '3539928'), + (445, 684, 'not_attending', '2021-03-12 23:15:39', '2025-12-17 19:47:51', 'ydw70y5d', '3549257'), + (445, 687, 'not_attending', '2021-03-11 22:03:15', '2025-12-17 19:47:51', 'ydw70y5d', '3553405'), + (445, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ydw70y5d', '3582734'), + (445, 707, 'not_attending', '2021-04-22 19:03:26', '2025-12-17 19:47:46', 'ydw70y5d', '3583262'), + (445, 715, 'not_attending', '2021-03-31 22:40:52', '2025-12-17 19:47:44', 'ydw70y5d', '3604146'), + (445, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydw70y5d', '3619523'), + (445, 722, 'not_attending', '2021-03-31 22:41:10', '2025-12-17 19:47:44', 'ydw70y5d', '3646347'), + (445, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydw70y5d', '3661369'), + (445, 725, 'not_attending', '2021-05-22 21:17:44', '2025-12-17 19:47:47', 'ydw70y5d', '3661372'), + (445, 729, 'not_attending', '2021-04-22 19:03:46', '2025-12-17 19:47:46', 'ydw70y5d', '3668075'), + (445, 730, 'not_attending', '2021-05-04 00:19:21', '2025-12-17 19:47:46', 'ydw70y5d', '3668076'), + (445, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydw70y5d', '3674262'), + (445, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydw70y5d', '3677402'), + (445, 736, 'not_attending', '2021-04-09 14:34:33', '2025-12-17 19:47:44', 'ydw70y5d', '3677701'), + (445, 739, 'not_attending', '2021-05-04 00:19:34', '2025-12-17 19:47:46', 'ydw70y5d', '3680616'), + (445, 740, 'not_attending', '2021-04-22 19:03:53', '2025-12-17 19:47:46', 'ydw70y5d', '3680617'), + (445, 745, 'not_attending', '2021-06-26 22:39:47', '2025-12-17 19:47:38', 'ydw70y5d', '3680625'), + (445, 746, 'not_attending', '2021-07-03 20:23:58', '2025-12-17 19:47:39', 'ydw70y5d', '3680626'), + (445, 764, 'not_attending', '2021-04-22 19:03:14', '2025-12-17 19:47:45', 'ydw70y5d', '3720507'), + (445, 765, 'not_attending', '2021-04-22 19:03:20', '2025-12-17 19:47:45', 'ydw70y5d', '3720508'), + (445, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydw70y5d', '3730212'), + (445, 781, 'not_attending', '2021-05-04 00:19:26', '2025-12-17 19:47:46', 'ydw70y5d', '3760130'), + (445, 782, 'not_attending', '2021-05-04 00:19:15', '2025-12-17 19:47:46', 'ydw70y5d', '3761843'), + (445, 784, 'not_attending', '2021-05-04 00:19:30', '2025-12-17 19:47:46', 'ydw70y5d', '3768775'), + (445, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydw70y5d', '3793156'), + (445, 794, 'not_attending', '2021-05-22 21:17:58', '2025-12-17 19:47:47', 'ydw70y5d', '3793538'), + (445, 797, 'not_attending', '2021-05-22 21:17:53', '2025-12-17 19:47:47', 'ydw70y5d', '3796195'), + (445, 815, 'not_attending', '2021-05-22 21:18:06', '2025-12-17 19:47:47', 'ydw70y5d', '3818136'), + (445, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ydw70y5d', '3974109'), + (445, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydw70y5d', '3975311'), + (445, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydw70y5d', '3975312'), + (445, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydw70y5d', '3994992'), + (445, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ydw70y5d', '4014338'), + (445, 845, 'not_attending', '2021-06-26 22:39:32', '2025-12-17 19:47:38', 'ydw70y5d', '4015717'), + (445, 846, 'not_attending', '2021-07-03 20:23:48', '2025-12-17 19:47:39', 'ydw70y5d', '4015718'), + (445, 848, 'not_attending', '2021-07-17 19:52:06', '2025-12-17 19:47:40', 'ydw70y5d', '4015720'), + (445, 850, 'not_attending', '2021-08-21 17:28:48', '2025-12-17 19:47:42', 'ydw70y5d', '4015722'), + (445, 851, 'not_attending', '2021-08-14 19:44:37', '2025-12-17 19:47:42', 'ydw70y5d', '4015723'), + (445, 854, 'not_attending', '2021-09-03 20:31:01', '2025-12-17 19:47:43', 'ydw70y5d', '4015726'), + (445, 855, 'not_attending', '2021-07-31 13:57:59', '2025-12-17 19:47:41', 'ydw70y5d', '4015729'), + (445, 860, 'not_attending', '2021-07-17 19:51:53', '2025-12-17 19:47:40', 'ydw70y5d', '4015994'), + (445, 861, 'not_attending', '2021-08-14 19:44:15', '2025-12-17 19:47:42', 'ydw70y5d', '4015995'), + (445, 863, 'not_attending', '2021-10-08 21:28:22', '2025-12-17 19:47:35', 'ydw70y5d', '4015997'), + (445, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ydw70y5d', '4021848'), + (445, 869, 'not_attending', '2021-06-26 22:39:28', '2025-12-17 19:47:38', 'ydw70y5d', '4136744'), + (445, 870, 'not_attending', '2021-06-26 22:39:52', '2025-12-17 19:47:39', 'ydw70y5d', '4136937'), + (445, 871, 'not_attending', '2021-07-03 20:23:31', '2025-12-17 19:47:39', 'ydw70y5d', '4136938'), + (445, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydw70y5d', '4136947'), + (445, 875, 'not_attending', '2021-06-26 22:39:41', '2025-12-17 19:47:38', 'ydw70y5d', '4139816'), + (445, 879, 'not_attending', '2021-06-26 22:39:20', '2025-12-17 19:47:38', 'ydw70y5d', '4147806'), + (445, 884, 'not_attending', '2021-08-14 19:44:07', '2025-12-17 19:47:42', 'ydw70y5d', '4210314'), + (445, 885, 'not_attending', '2021-06-26 22:39:13', '2025-12-17 19:47:38', 'ydw70y5d', '4222370'), + (445, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydw70y5d', '4225444'), + (445, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydw70y5d', '4239259'), + (445, 900, 'not_attending', '2021-07-17 19:52:17', '2025-12-17 19:47:40', 'ydw70y5d', '4240316'), + (445, 901, 'not_attending', '2021-07-31 13:57:36', '2025-12-17 19:47:40', 'ydw70y5d', '4240317'), + (445, 902, 'not_attending', '2021-07-31 13:58:14', '2025-12-17 19:47:41', 'ydw70y5d', '4240318'), + (445, 903, 'not_attending', '2021-08-14 19:43:58', '2025-12-17 19:47:42', 'ydw70y5d', '4240320'), + (445, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ydw70y5d', '4250163'), + (445, 915, 'not_attending', '2021-07-17 19:51:46', '2025-12-17 19:47:39', 'ydw70y5d', '4273770'), + (445, 919, 'not_attending', '2021-07-17 19:51:36', '2025-12-17 19:47:39', 'ydw70y5d', '4275957'), + (445, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydw70y5d', '4277819'), + (445, 926, 'not_attending', '2021-08-14 19:44:44', '2025-12-17 19:47:42', 'ydw70y5d', '4297211'), + (445, 929, 'not_attending', '2021-07-31 13:58:07', '2025-12-17 19:47:41', 'ydw70y5d', '4297223'), + (445, 930, 'not_attending', '2021-07-31 13:57:44', '2025-12-17 19:47:41', 'ydw70y5d', '4300787'), + (445, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydw70y5d', '4301723'), + (445, 934, 'not_attending', '2021-07-31 13:57:56', '2025-12-17 19:47:40', 'ydw70y5d', '4302093'), + (445, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydw70y5d', '4304151'), + (445, 946, 'not_attending', '2021-07-31 13:57:49', '2025-12-17 19:47:40', 'ydw70y5d', '4314835'), + (445, 952, 'not_attending', '2021-07-31 13:58:04', '2025-12-17 19:47:41', 'ydw70y5d', '4318286'), + (445, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'ydw70y5d', '4345519'), + (445, 963, 'not_attending', '2021-08-14 19:44:26', '2025-12-17 19:47:42', 'ydw70y5d', '4353159'), + (445, 964, 'not_attending', '2021-08-14 19:45:17', '2025-12-17 19:47:42', 'ydw70y5d', '4353160'), + (445, 967, 'not_attending', '2021-08-14 19:44:51', '2025-12-17 19:47:42', 'ydw70y5d', '4356164'), + (445, 971, 'not_attending', '2021-09-03 20:31:04', '2025-12-17 19:47:43', 'ydw70y5d', '4356801'), + (445, 972, 'not_attending', '2021-08-14 19:45:01', '2025-12-17 19:47:42', 'ydw70y5d', '4358025'), + (445, 973, 'not_attending', '2021-08-21 17:28:22', '2025-12-17 19:47:42', 'ydw70y5d', '4366186'), + (445, 974, 'not_attending', '2021-08-21 17:28:58', '2025-12-17 19:47:42', 'ydw70y5d', '4366187'), + (445, 985, 'not_attending', '2021-08-21 17:28:31', '2025-12-17 19:47:42', 'ydw70y5d', '4391748'), + (445, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ydw70y5d', '4402823'), + (445, 989, 'not_attending', '2021-09-03 20:31:16', '2025-12-17 19:47:43', 'ydw70y5d', '4414282'), + (445, 990, 'not_attending', '2021-09-03 20:30:41', '2025-12-17 19:47:43', 'ydw70y5d', '4420735'), + (445, 991, 'not_attending', '2021-09-03 20:31:23', '2025-12-17 19:47:43', 'ydw70y5d', '4420738'), + (445, 992, 'not_attending', '2021-09-17 20:23:31', '2025-12-17 19:47:34', 'ydw70y5d', '4420739'), + (445, 993, 'not_attending', '2021-09-17 20:24:12', '2025-12-17 19:47:34', 'ydw70y5d', '4420741'), + (445, 995, 'not_attending', '2021-10-08 21:27:54', '2025-12-17 19:47:34', 'ydw70y5d', '4420744'), + (445, 996, 'not_attending', '2021-10-08 21:28:27', '2025-12-17 19:47:35', 'ydw70y5d', '4420747'), + (445, 997, 'not_attending', '2021-10-22 23:46:34', '2025-12-17 19:47:35', 'ydw70y5d', '4420748'), + (445, 998, 'not_attending', '2021-10-22 23:46:47', '2025-12-17 19:47:36', 'ydw70y5d', '4420749'), + (445, 1001, 'not_attending', '2021-09-03 20:30:25', '2025-12-17 19:47:43', 'ydw70y5d', '4424687'), + (445, 1013, 'not_attending', '2021-09-03 20:30:56', '2025-12-17 19:47:43', 'ydw70y5d', '4438817'), + (445, 1014, 'not_attending', '2021-09-03 20:30:48', '2025-12-17 19:47:43', 'ydw70y5d', '4439233'), + (445, 1016, 'not_attending', '2021-09-03 20:31:10', '2025-12-17 19:47:43', 'ydw70y5d', '4441271'), + (445, 1017, 'not_attending', '2021-09-03 20:30:51', '2025-12-17 19:47:43', 'ydw70y5d', '4441822'), + (445, 1021, 'not_attending', '2021-09-17 20:23:48', '2025-12-17 19:47:34', 'ydw70y5d', '4451803'), + (445, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ydw70y5d', '4461883'), + (445, 1029, 'not_attending', '2021-09-17 20:23:17', '2025-12-17 19:47:43', 'ydw70y5d', '4473063'), + (445, 1030, 'not_attending', '2021-09-17 20:23:42', '2025-12-17 19:47:34', 'ydw70y5d', '4473064'), + (445, 1031, 'not_attending', '2021-09-17 20:24:00', '2025-12-17 19:47:34', 'ydw70y5d', '4473789'), + (445, 1034, 'not_attending', '2021-09-17 20:23:24', '2025-12-17 19:47:43', 'ydw70y5d', '4486265'), + (445, 1063, 'not_attending', '2021-09-24 22:09:21', '2025-12-17 19:47:34', 'ydw70y5d', '4496630'), + (445, 1066, 'not_attending', '2021-09-24 22:09:16', '2025-12-17 19:47:34', 'ydw70y5d', '4506039'), + (445, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ydw70y5d', '4508342'), + (445, 1077, 'not_attending', '2021-10-08 21:28:14', '2025-12-17 19:47:34', 'ydw70y5d', '4540903'), + (445, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ydw70y5d', '4568602'), + (445, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ydw70y5d', '4572153'), + (445, 1093, 'not_attending', '2021-10-22 23:46:23', '2025-12-17 19:47:35', 'ydw70y5d', '4585962'), + (445, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'ydw70y5d', '4596356'), + (445, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ydw70y5d', '4598860'), + (445, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ydw70y5d', '4598861'), + (445, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ydw70y5d', '4602797'), + (445, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ydw70y5d', '4637896'), + (445, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ydw70y5d', '4642994'), + (445, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'ydw70y5d', '4642995'), + (445, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ydw70y5d', '4642996'), + (445, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ydw70y5d', '4642997'), + (445, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ydw70y5d', '4645687'), + (445, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ydw70y5d', '4645698'), + (445, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ydw70y5d', '4645704'), + (445, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ydw70y5d', '4645705'), + (445, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ydw70y5d', '4668385'), + (445, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ydw70y5d', '4694407'), + (445, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ydw70y5d', '4736497'), + (445, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ydw70y5d', '4736499'), + (445, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ydw70y5d', '4736500'), + (445, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ydw70y5d', '4736503'), + (445, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ydw70y5d', '4736504'), + (445, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ydw70y5d', '4746789'), + (445, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'ydw70y5d', '4753929'), + (445, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ydw70y5d', '5038850'), + (445, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ydw70y5d', '5045826'), + (445, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ydw70y5d', '5132533'), + (445, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ydw70y5d', '5186582'), + (445, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ydw70y5d', '5186583'), + (445, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ydw70y5d', '5186585'), + (445, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ydw70y5d', '5190437'), + (445, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ydw70y5d', '5215989'), + (445, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydw70y5d', '6045684'), + (446, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVkr9Epm', '5630960'), + (446, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVkr9Epm', '5630961'), + (446, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVkr9Epm', '5630962'), + (446, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVkr9Epm', '5630966'), + (446, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVkr9Epm', '5630967'), + (446, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVkr9Epm', '5630968'), + (446, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'dVkr9Epm', '5638765'), + (446, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVkr9Epm', '5640097'), + (446, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVkr9Epm', '5642818'), + (446, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVkr9Epm', '5671637'), + (446, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVkr9Epm', '5672329'), + (446, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVkr9Epm', '5674057'), + (446, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVkr9Epm', '5674060'), + (446, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVkr9Epm', '5677461'), + (446, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVkr9Epm', '5698046'), + (446, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dVkr9Epm', '5699760'), + (446, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVkr9Epm', '5741601'), + (446, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVkr9Epm', '5763458'), + (446, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVkr9Epm', '5774172'), + (446, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVkr9Epm', '6045684'), + (447, 403, 'attending', '2021-02-26 12:41:34', '2025-12-17 19:47:51', 'v4D3kbyA', '3236458'), + (447, 574, 'maybe', '2021-03-05 04:14:36', '2025-12-17 19:47:51', 'v4D3kbyA', '3435543'), + (447, 621, 'attending', '2021-03-03 11:04:21', '2025-12-17 19:47:51', 'v4D3kbyA', '3517815'), + (447, 622, 'attending', '2021-03-11 12:23:29', '2025-12-17 19:47:51', 'v4D3kbyA', '3517816'), + (447, 623, 'maybe', '2021-02-26 11:26:37', '2025-12-17 19:47:51', 'v4D3kbyA', '3523941'), + (447, 630, 'maybe', '2021-03-02 03:12:23', '2025-12-17 19:47:51', 'v4D3kbyA', '3533425'), + (447, 631, 'attending', '2021-03-03 11:04:13', '2025-12-17 19:47:51', 'v4D3kbyA', '3533850'), + (447, 638, 'maybe', '2021-03-03 11:08:14', '2025-12-17 19:47:44', 'v4D3kbyA', '3536632'), + (447, 639, 'attending', '2021-03-21 21:14:45', '2025-12-17 19:47:51', 'v4D3kbyA', '3536656'), + (447, 641, 'maybe', '2021-04-02 21:56:14', '2025-12-17 19:47:44', 'v4D3kbyA', '3539916'), + (447, 642, 'attending', '2021-04-10 22:27:28', '2025-12-17 19:47:44', 'v4D3kbyA', '3539917'), + (447, 643, 'maybe', '2021-04-17 20:51:29', '2025-12-17 19:47:45', 'v4D3kbyA', '3539918'), + (447, 644, 'maybe', '2021-04-24 19:30:17', '2025-12-17 19:47:46', 'v4D3kbyA', '3539919'), + (447, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'v4D3kbyA', '3539920'), + (447, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'v4D3kbyA', '3539921'), + (447, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'v4D3kbyA', '3539922'), + (447, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'v4D3kbyA', '3539923'), + (447, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4D3kbyA', '3539927'), + (447, 679, 'maybe', '2021-04-02 21:57:12', '2025-12-17 19:47:44', 'v4D3kbyA', '3547168'), + (447, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4D3kbyA', '3582734'), + (447, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'v4D3kbyA', '3583262'), + (447, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4D3kbyA', '3619523'), + (447, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'v4D3kbyA', '3661369'), + (447, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'v4D3kbyA', '3674262'), + (447, 735, 'maybe', '2021-04-10 19:17:06', '2025-12-17 19:47:46', 'v4D3kbyA', '3677402'), + (447, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'v4D3kbyA', '3730212'), + (447, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'v4D3kbyA', '3793156'), + (447, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'v4D3kbyA', '3974109'), + (447, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'v4D3kbyA', '3975311'), + (447, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'v4D3kbyA', '3975312'), + (447, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'v4D3kbyA', '3994992'), + (447, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4D3kbyA', '4014338'), + (447, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'v4D3kbyA', '4021848'), + (447, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4D3kbyA', '4136744'), + (447, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'v4D3kbyA', '4136937'), + (447, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'v4D3kbyA', '4136938'), + (447, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'v4D3kbyA', '4136947'), + (447, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'v4D3kbyA', '4210314'), + (447, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4D3kbyA', '4225444'), + (447, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'v4D3kbyA', '4239259'), + (447, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'v4D3kbyA', '4240316'), + (447, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'v4D3kbyA', '4240317'), + (447, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'v4D3kbyA', '4240318'), + (447, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'v4D3kbyA', '4240320'), + (447, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4D3kbyA', '4250163'), + (447, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'v4D3kbyA', '4275957'), + (447, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'v4D3kbyA', '4277819'), + (447, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'v4D3kbyA', '4301723'), + (447, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'v4D3kbyA', '4302093'), + (447, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'v4D3kbyA', '4304151'), + (447, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'v4D3kbyA', '4345519'), + (447, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'v4D3kbyA', '4356801'), + (447, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'v4D3kbyA', '4358025'), + (447, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'v4D3kbyA', '4366186'), + (447, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'v4D3kbyA', '4366187'), + (447, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'v4D3kbyA', '4402823'), + (447, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'v4D3kbyA', '4420735'), + (447, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'v4D3kbyA', '4420738'), + (447, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'v4D3kbyA', '4420739'), + (447, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'v4D3kbyA', '4420741'), + (447, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'v4D3kbyA', '4420744'), + (447, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'v4D3kbyA', '4420747'), + (447, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'v4D3kbyA', '4420748'), + (447, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'v4D3kbyA', '4420749'), + (447, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'v4D3kbyA', '4461883'), + (447, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'v4D3kbyA', '4508342'), + (447, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'v4D3kbyA', '4568602'), + (447, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'v4D3kbyA', '4572153'), + (447, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'v4D3kbyA', '4585962'), + (447, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'v4D3kbyA', '4596356'), + (447, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'v4D3kbyA', '4598860'), + (447, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'v4D3kbyA', '4598861'), + (447, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'v4D3kbyA', '4602797'), + (447, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'v4D3kbyA', '4637896'), + (447, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'v4D3kbyA', '4642994'), + (447, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'v4D3kbyA', '4642995'), + (447, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'v4D3kbyA', '4642996'), + (447, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'v4D3kbyA', '4642997'), + (447, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'v4D3kbyA', '4645687'), + (447, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'v4D3kbyA', '4645698'), + (447, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'v4D3kbyA', '4645704'), + (447, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'v4D3kbyA', '4645705'), + (447, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'v4D3kbyA', '4668385'), + (447, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'v4D3kbyA', '4694407'), + (447, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'v4D3kbyA', '4736497'), + (447, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'v4D3kbyA', '4736499'), + (447, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'v4D3kbyA', '4736500'), + (447, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'v4D3kbyA', '4736503'), + (447, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'v4D3kbyA', '4736504'), + (447, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'v4D3kbyA', '4746789'), + (447, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'v4D3kbyA', '4753929'), + (447, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4D3kbyA', '5038850'), + (447, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4D3kbyA', '5045826'), + (447, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4D3kbyA', '5132533'), + (447, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'v4D3kbyA', '5186582'), + (447, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'v4D3kbyA', '5186583'), + (447, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'v4D3kbyA', '5186585'), + (447, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4D3kbyA', '5190437'), + (447, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4D3kbyA', '5215989'), + (447, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4D3kbyA', '6045684'), + (448, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd8L1qKVd', '7074364'), + (448, 2604, 'maybe', '2024-05-29 03:15:47', '2025-12-17 19:46:36', 'd8L1qKVd', '7225670'), + (448, 2646, 'maybe', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'd8L1qKVd', '7281768'), + (448, 2654, 'attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'd8L1qKVd', '7291219'), + (448, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd8L1qKVd', '7302674'), + (448, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd8L1qKVd', '7324073'), + (448, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd8L1qKVd', '7324074'), + (448, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd8L1qKVd', '7324075'), + (448, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd8L1qKVd', '7324078'), + (448, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd8L1qKVd', '7324082'), + (448, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd8L1qKVd', '7331457'), + (448, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd8L1qKVd', '7363643'), + (448, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd8L1qKVd', '7368606'), + (448, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd8L1qKVd', '7397462'), + (448, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd8L1qKVd', '7424275'), + (448, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd8L1qKVd', '7424276'), + (448, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd8L1qKVd', '7432751'), + (448, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd8L1qKVd', '7432752'), + (448, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd8L1qKVd', '7432753'), + (448, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd8L1qKVd', '7432754'), + (448, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd8L1qKVd', '7432755'), + (448, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd8L1qKVd', '7432756'), + (448, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd8L1qKVd', '7432758'), + (448, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd8L1qKVd', '7432759'), + (448, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd8L1qKVd', '7433834'), + (448, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd8L1qKVd', '7470197'), + (448, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd8L1qKVd', '7685613'), + (448, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd8L1qKVd', '7688194'), + (448, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd8L1qKVd', '7688196'), + (448, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd8L1qKVd', '7688289'), + (449, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '40YY7OVd', '7424275'), + (449, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', '40YY7OVd', '7432753'), + (449, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', '40YY7OVd', '7432756'), + (449, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', '40YY7OVd', '7432758'), + (449, 2843, 'maybe', '2024-09-26 21:36:11', '2025-12-17 19:46:25', '40YY7OVd', '7450219'), + (449, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '40YY7OVd', '7470197'), + (449, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', '40YY7OVd', '7682072'), + (449, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '40YY7OVd', '7685613'), + (449, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '40YY7OVd', '7688194'), + (449, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '40YY7OVd', '7688196'), + (449, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '40YY7OVd', '7688289'), + (450, 258, 'maybe', '2021-06-01 22:09:23', '2025-12-17 19:47:47', 'Md3a2MGA', '3149489'), + (450, 260, 'not_attending', '2021-06-12 12:07:52', '2025-12-17 19:47:48', 'Md3a2MGA', '3149491'), + (450, 393, 'not_attending', '2021-06-24 14:35:24', '2025-12-17 19:47:38', 'Md3a2MGA', '3236448'), + (450, 395, 'not_attending', '2021-06-09 15:39:25', '2025-12-17 19:47:47', 'Md3a2MGA', '3236450'), + (450, 658, 'not_attending', '2021-06-09 15:40:02', '2025-12-17 19:47:47', 'Md3a2MGA', '3547134'), + (450, 670, 'not_attending', '2021-06-16 20:24:51', '2025-12-17 19:47:48', 'Md3a2MGA', '3547148'), + (450, 727, 'not_attending', '2021-06-20 21:10:06', '2025-12-17 19:47:38', 'Md3a2MGA', '3661377'), + (450, 742, 'not_attending', '2021-06-16 20:24:12', '2025-12-17 19:47:48', 'Md3a2MGA', '3680622'), + (450, 744, 'not_attending', '2021-06-09 15:40:09', '2025-12-17 19:47:47', 'Md3a2MGA', '3680624'), + (450, 793, 'attending', '2021-06-02 23:22:53', '2025-12-17 19:47:47', 'Md3a2MGA', '3793537'), + (450, 795, 'not_attending', '2021-06-06 19:13:28', '2025-12-17 19:47:47', 'Md3a2MGA', '3793539'), + (450, 805, 'not_attending', '2021-06-12 12:07:25', '2025-12-17 19:47:47', 'Md3a2MGA', '3804777'), + (450, 818, 'not_attending', '2021-06-01 22:09:27', '2025-12-17 19:47:47', 'Md3a2MGA', '3833015'), + (450, 822, 'not_attending', '2021-06-06 16:01:12', '2025-12-17 19:47:47', 'Md3a2MGA', '3969986'), + (450, 823, 'not_attending', '2021-06-18 16:10:04', '2025-12-17 19:47:48', 'Md3a2MGA', '3974109'), + (450, 824, 'attending', '2021-06-03 12:46:50', '2025-12-17 19:47:47', 'Md3a2MGA', '3974112'), + (450, 825, 'attending', '2021-06-08 20:33:18', '2025-12-17 19:47:47', 'Md3a2MGA', '3975283'), + (450, 826, 'maybe', '2021-06-12 12:08:21', '2025-12-17 19:47:48', 'Md3a2MGA', '3975310'), + (450, 827, 'attending', '2021-06-02 03:50:44', '2025-12-17 19:47:47', 'Md3a2MGA', '3975311'), + (450, 828, 'attending', '2021-06-12 22:36:25', '2025-12-17 19:47:47', 'Md3a2MGA', '3975312'), + (450, 830, 'not_attending', '2021-06-02 19:21:26', '2025-12-17 19:47:47', 'Md3a2MGA', '3976648'), + (450, 831, 'not_attending', '2021-06-02 19:21:40', '2025-12-17 19:47:47', 'Md3a2MGA', '3976649'), + (450, 832, 'not_attending', '2021-06-02 19:21:46', '2025-12-17 19:47:47', 'Md3a2MGA', '3976650'), + (450, 833, 'attending', '2021-06-07 21:34:56', '2025-12-17 19:47:47', 'Md3a2MGA', '3990438'), + (450, 834, 'maybe', '2021-06-07 15:32:56', '2025-12-17 19:47:47', 'Md3a2MGA', '3990439'), + (450, 835, 'not_attending', '2021-06-06 22:47:13', '2025-12-17 19:47:47', 'Md3a2MGA', '3992486'), + (450, 837, 'attending', '2021-06-04 16:11:07', '2025-12-17 19:47:48', 'Md3a2MGA', '3992545'), + (450, 838, 'maybe', '2021-06-06 18:47:14', '2025-12-17 19:47:47', 'Md3a2MGA', '3994992'), + (450, 839, 'not_attending', '2021-06-07 15:05:20', '2025-12-17 19:47:47', 'Md3a2MGA', '4002121'), + (450, 840, 'attending', '2021-06-08 00:57:12', '2025-12-17 19:47:47', 'Md3a2MGA', '4007283'), + (450, 841, 'maybe', '2021-06-12 12:07:38', '2025-12-17 19:47:48', 'Md3a2MGA', '4007434'), + (450, 843, 'not_attending', '2021-06-11 22:48:02', '2025-12-17 19:47:47', 'Md3a2MGA', '4011909'), + (450, 844, 'not_attending', '2021-06-23 21:20:29', '2025-12-17 19:47:38', 'Md3a2MGA', '4014338'), + (450, 866, 'not_attending', '2021-06-18 23:45:28', '2025-12-17 19:47:38', 'Md3a2MGA', '4020424'), + (450, 867, 'not_attending', '2021-06-26 01:52:55', '2025-12-17 19:47:38', 'Md3a2MGA', '4021848'), + (450, 868, 'not_attending', '2021-06-16 20:23:11', '2025-12-17 19:47:48', 'Md3a2MGA', '4022012'), + (450, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Md3a2MGA', '4136744'), + (450, 870, 'not_attending', '2021-06-30 15:26:25', '2025-12-17 19:47:39', 'Md3a2MGA', '4136937'), + (450, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Md3a2MGA', '4136938'), + (450, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Md3a2MGA', '4136947'), + (450, 873, 'not_attending', '2021-06-16 20:24:56', '2025-12-17 19:47:48', 'Md3a2MGA', '4138297'), + (450, 874, 'not_attending', '2021-06-24 14:35:29', '2025-12-17 19:47:38', 'Md3a2MGA', '4139815'), + (450, 876, 'not_attending', '2021-06-22 14:42:05', '2025-12-17 19:47:38', 'Md3a2MGA', '4139926'), + (450, 877, 'not_attending', '2021-06-16 20:22:31', '2025-12-17 19:47:48', 'Md3a2MGA', '4140575'), + (450, 878, 'not_attending', '2021-06-20 21:10:15', '2025-12-17 19:47:38', 'Md3a2MGA', '4143331'), + (450, 880, 'not_attending', '2021-06-18 16:09:58', '2025-12-17 19:47:48', 'Md3a2MGA', '4205383'), + (450, 881, 'not_attending', '2021-06-20 21:10:19', '2025-12-17 19:47:38', 'Md3a2MGA', '4205662'), + (450, 883, 'not_attending', '2021-06-22 14:42:08', '2025-12-17 19:47:38', 'Md3a2MGA', '4209121'), + (450, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Md3a2MGA', '4210314'), + (450, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Md3a2MGA', '4225444'), + (450, 899, 'not_attending', '2021-07-02 13:55:40', '2025-12-17 19:47:39', 'Md3a2MGA', '4239259'), + (450, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Md3a2MGA', '4240316'), + (450, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Md3a2MGA', '4240317'), + (450, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Md3a2MGA', '4240318'), + (450, 905, 'not_attending', '2021-07-04 16:02:09', '2025-12-17 19:47:39', 'Md3a2MGA', '4250163'), + (450, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Md3a2MGA', '4275957'), + (450, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Md3a2MGA', '4277819'), + (450, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Md3a2MGA', '4301723'), + (450, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Md3a2MGA', '4302093'), + (450, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Md3a2MGA', '6045684'), + (451, 2304, 'not_attending', '2023-11-04 02:24:08', '2025-12-17 19:46:47', 'mRrE1lom', '6482693'), + (451, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mRrE1lom', '6484200'), + (451, 2310, 'maybe', '2023-11-11 21:44:53', '2025-12-17 19:46:47', 'mRrE1lom', '6487709'), + (451, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mRrE1lom', '6514659'), + (451, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mRrE1lom', '6514660'), + (451, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mRrE1lom', '6519103'), + (451, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mRrE1lom', '6535681'), + (451, 2342, 'maybe', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mRrE1lom', '6545076'), + (451, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mRrE1lom', '6584747'), + (451, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mRrE1lom', '6587097'), + (451, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mRrE1lom', '6609022'), + (451, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mRrE1lom', '6632757'), + (451, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mRrE1lom', '6644187'), + (451, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mRrE1lom', '6648951'), + (451, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mRrE1lom', '6648952'), + (451, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mRrE1lom', '6655401'), + (451, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mRrE1lom', '6661585'), + (451, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mRrE1lom', '6661588'), + (451, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mRrE1lom', '6661589'), + (451, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mRrE1lom', '6699906'), + (451, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mRrE1lom', '6699913'), + (451, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mRrE1lom', '6701109'), + (451, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mRrE1lom', '6705219'), + (451, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mRrE1lom', '6710153'), + (451, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mRrE1lom', '6711552'), + (451, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mRrE1lom', '6711553'), + (451, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mRrE1lom', '6722688'), + (451, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mRrE1lom', '6730620'), + (451, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mRrE1lom', '6730642'), + (451, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mRrE1lom', '6740364'), + (451, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mRrE1lom', '6743829'), + (451, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mRrE1lom', '7030380'), + (451, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mRrE1lom', '7033677'), + (451, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mRrE1lom', '7035415'), + (451, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mRrE1lom', '7044715'), + (451, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mRrE1lom', '7050318'), + (451, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mRrE1lom', '7050319'), + (451, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mRrE1lom', '7050322'), + (451, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mRrE1lom', '7057804'), + (451, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'mRrE1lom', '7059866'), + (451, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mRrE1lom', '7072824'), + (451, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mRrE1lom', '7074348'), + (451, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mRrE1lom', '7089267'), + (451, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mRrE1lom', '7098747'), + (451, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mRrE1lom', '7113468'), + (451, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mRrE1lom', '7114856'), + (451, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mRrE1lom', '7114951'), + (451, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mRrE1lom', '7114955'), + (451, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mRrE1lom', '7114956'), + (451, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mRrE1lom', '7153615'), + (451, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mRrE1lom', '7159484'), + (451, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mRrE1lom', '7178446'), + (452, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mR1NrPYd', '7324078'), + (452, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mR1NrPYd', '7324082'), + (452, 2722, 'not_attending', '2024-07-12 22:43:28', '2025-12-17 19:46:30', 'mR1NrPYd', '7331457'), + (452, 2757, 'attending', '2024-07-14 01:57:01', '2025-12-17 19:46:30', 'mR1NrPYd', '7358733'), + (452, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mR1NrPYd', '7363643'), + (452, 2769, 'not_attending', '2024-07-19 20:02:06', '2025-12-17 19:46:30', 'mR1NrPYd', '7366803'), + (452, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mR1NrPYd', '7368606'), + (452, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mR1NrPYd', '7397462'), + (452, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mR1NrPYd', '7424275'), + (452, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mR1NrPYd', '7432751'), + (452, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mR1NrPYd', '7432752'), + (452, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mR1NrPYd', '7432753'), + (452, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mR1NrPYd', '7432754'), + (452, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mR1NrPYd', '7432755'), + (452, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mR1NrPYd', '7432756'), + (452, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mR1NrPYd', '7432758'), + (452, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mR1NrPYd', '7432759'), + (452, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mR1NrPYd', '7433834'), + (452, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mR1NrPYd', '7470197'), + (452, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mR1NrPYd', '7685613'), + (452, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mR1NrPYd', '7688194'), + (452, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mR1NrPYd', '7688196'), + (452, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mR1NrPYd', '7688289'), + (453, 250, 'attending', '2021-02-07 20:20:42', '2025-12-17 19:47:50', '54kMebXm', '3149481'), + (453, 251, 'maybe', '2021-01-23 22:53:45', '2025-12-17 19:47:49', '54kMebXm', '3149482'), + (453, 252, 'attending', '2021-02-07 20:23:02', '2025-12-17 19:47:50', '54kMebXm', '3149483'), + (453, 254, 'maybe', '2021-03-10 00:37:07', '2025-12-17 19:47:51', '54kMebXm', '3149485'), + (453, 400, 'attending', '2021-02-03 20:38:20', '2025-12-17 19:47:50', '54kMebXm', '3236455'), + (453, 403, 'attending', '2021-02-07 20:23:37', '2025-12-17 19:47:51', '54kMebXm', '3236458'), + (453, 408, 'attending', '2021-02-07 20:22:46', '2025-12-17 19:47:50', '54kMebXm', '3236466'), + (453, 509, 'maybe', '2021-01-16 04:25:16', '2025-12-17 19:47:49', '54kMebXm', '3324232'), + (453, 510, 'maybe', '2021-01-23 22:54:09', '2025-12-17 19:47:49', '54kMebXm', '3324233'), + (453, 536, 'attending', '2021-01-09 23:36:53', '2025-12-17 19:47:48', '54kMebXm', '3386848'), + (453, 540, 'maybe', '2021-01-10 16:36:51', '2025-12-17 19:47:48', '54kMebXm', '3389527'), + (453, 542, 'attending', '2021-01-11 21:25:48', '2025-12-17 19:47:48', '54kMebXm', '3395013'), + (453, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '54kMebXm', '3396499'), + (453, 545, 'maybe', '2021-01-16 04:24:50', '2025-12-17 19:47:49', '54kMebXm', '3396502'), + (453, 546, 'attending', '2021-01-22 01:20:20', '2025-12-17 19:47:49', '54kMebXm', '3396503'), + (453, 547, 'maybe', '2021-01-16 04:25:34', '2025-12-17 19:47:49', '54kMebXm', '3396504'), + (453, 548, 'attending', '2021-01-17 00:26:19', '2025-12-17 19:47:48', '54kMebXm', '3403650'), + (453, 549, 'maybe', '2021-01-16 04:24:38', '2025-12-17 19:47:49', '54kMebXm', '3406988'), + (453, 550, 'maybe', '2021-01-16 04:24:30', '2025-12-17 19:47:48', '54kMebXm', '3407018'), + (453, 551, 'attending', '2021-01-16 04:24:47', '2025-12-17 19:47:49', '54kMebXm', '3407219'), + (453, 555, 'attending', '2021-01-19 19:34:22', '2025-12-17 19:47:49', '54kMebXm', '3416576'), + (453, 556, 'attending', '2021-01-26 19:01:13', '2025-12-17 19:47:49', '54kMebXm', '3417170'), + (453, 558, 'not_attending', '2021-01-22 21:03:24', '2025-12-17 19:47:49', '54kMebXm', '3418925'), + (453, 559, 'not_attending', '2021-01-24 05:46:28', '2025-12-17 19:47:49', '54kMebXm', '3421439'), + (453, 561, 'not_attending', '2021-01-23 22:53:21', '2025-12-17 19:47:49', '54kMebXm', '3421916'), + (453, 562, 'not_attending', '2021-01-23 22:53:25', '2025-12-17 19:47:49', '54kMebXm', '3424911'), + (453, 563, 'attending', '2021-01-25 15:40:40', '2025-12-17 19:47:49', '54kMebXm', '3425913'), + (453, 564, 'maybe', '2021-01-23 22:36:43', '2025-12-17 19:47:49', '54kMebXm', '3426074'), + (453, 565, 'maybe', '2021-01-23 22:53:55', '2025-12-17 19:47:49', '54kMebXm', '3426083'), + (453, 566, 'maybe', '2021-01-23 22:53:59', '2025-12-17 19:47:49', '54kMebXm', '3427928'), + (453, 568, 'attending', '2021-01-28 03:30:44', '2025-12-17 19:47:50', '54kMebXm', '3430267'), + (453, 569, 'not_attending', '2021-01-26 19:01:20', '2025-12-17 19:47:49', '54kMebXm', '3432673'), + (453, 570, 'maybe', '2021-01-30 18:41:03', '2025-12-17 19:47:50', '54kMebXm', '3435538'), + (453, 571, 'not_attending', '2021-02-13 00:11:46', '2025-12-17 19:47:50', '54kMebXm', '3435539'), + (453, 572, 'maybe', '2021-01-30 18:41:06', '2025-12-17 19:47:50', '54kMebXm', '3435540'), + (453, 573, 'attending', '2021-02-07 20:23:25', '2025-12-17 19:47:50', '54kMebXm', '3435542'), + (453, 576, 'maybe', '2021-01-30 18:40:28', '2025-12-17 19:47:50', '54kMebXm', '3438748'), + (453, 577, 'attending', '2021-01-28 20:20:07', '2025-12-17 19:47:49', '54kMebXm', '3439167'), + (453, 578, 'maybe', '2021-02-03 22:17:08', '2025-12-17 19:47:50', '54kMebXm', '3440043'), + (453, 579, 'attending', '2021-01-30 18:41:09', '2025-12-17 19:47:50', '54kMebXm', '3440978'), + (453, 580, 'attending', '2021-01-31 19:14:16', '2025-12-17 19:47:50', '54kMebXm', '3444240'), + (453, 582, 'maybe', '2021-01-30 18:40:23', '2025-12-17 19:47:50', '54kMebXm', '3445769'), + (453, 583, 'attending', '2021-02-03 16:44:33', '2025-12-17 19:47:50', '54kMebXm', '3449144'), + (453, 585, 'attending', '2021-02-07 20:20:35', '2025-12-17 19:47:50', '54kMebXm', '3449468'), + (453, 586, 'maybe', '2021-02-07 20:20:54', '2025-12-17 19:47:50', '54kMebXm', '3449469'), + (453, 587, 'attending', '2021-02-07 20:22:25', '2025-12-17 19:47:50', '54kMebXm', '3449470'), + (453, 588, 'attending', '2021-02-07 20:22:37', '2025-12-17 19:47:50', '54kMebXm', '3449471'), + (453, 589, 'maybe', '2021-02-07 20:22:55', '2025-12-17 19:47:50', '54kMebXm', '3449473'), + (453, 590, 'maybe', '2021-02-11 21:28:48', '2025-12-17 19:47:50', '54kMebXm', '3459150'), + (453, 591, 'maybe', '2021-02-07 20:20:33', '2025-12-17 19:47:50', '54kMebXm', '3465880'), + (453, 592, 'maybe', '2021-02-07 20:23:16', '2025-12-17 19:47:50', '54kMebXm', '3467757'), + (453, 593, 'maybe', '2021-02-07 20:23:07', '2025-12-17 19:47:50', '54kMebXm', '3467758'), + (453, 594, 'not_attending', '2021-03-02 00:56:57', '2025-12-17 19:47:51', '54kMebXm', '3467759'), + (453, 598, 'maybe', '2021-02-07 20:20:47', '2025-12-17 19:47:50', '54kMebXm', '3468003'), + (453, 599, 'maybe', '2021-02-07 20:22:33', '2025-12-17 19:47:50', '54kMebXm', '3468117'), + (453, 600, 'maybe', '2021-02-07 20:22:59', '2025-12-17 19:47:50', '54kMebXm', '3468125'), + (453, 601, 'maybe', '2021-02-07 20:22:49', '2025-12-17 19:47:50', '54kMebXm', '3468131'), + (453, 602, 'attending', '2021-02-07 20:22:11', '2025-12-17 19:47:50', '54kMebXm', '3470303'), + (453, 603, 'not_attending', '2021-02-20 22:21:04', '2025-12-17 19:47:50', '54kMebXm', '3470304'), + (453, 604, 'attending', '2021-02-07 20:22:16', '2025-12-17 19:47:50', '54kMebXm', '3470305'), + (453, 605, 'maybe', '2021-02-07 20:19:59', '2025-12-17 19:47:50', '54kMebXm', '3470991'), + (453, 608, 'attending', '2021-02-10 21:45:13', '2025-12-17 19:47:50', '54kMebXm', '3475332'), + (453, 609, 'attending', '2021-02-13 23:06:47', '2025-12-17 19:47:50', '54kMebXm', '3480916'), + (453, 611, 'attending', '2021-02-22 21:27:08', '2025-12-17 19:47:50', '54kMebXm', '3482659'), + (453, 618, 'maybe', '2021-02-19 23:06:22', '2025-12-17 19:47:50', '54kMebXm', '3503991'), + (453, 621, 'not_attending', '2021-03-06 20:50:41', '2025-12-17 19:47:51', '54kMebXm', '3517815'), + (453, 622, 'attending', '2021-03-01 17:22:35', '2025-12-17 19:47:51', '54kMebXm', '3517816'), + (453, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '54kMebXm', '3523941'), + (453, 624, 'maybe', '2021-02-27 18:46:18', '2025-12-17 19:47:50', '54kMebXm', '3528556'), + (453, 627, 'attending', '2021-03-01 17:22:22', '2025-12-17 19:47:51', '54kMebXm', '3533303'), + (453, 628, 'attending', '2021-03-03 01:36:01', '2025-12-17 19:47:51', '54kMebXm', '3533305'), + (453, 630, 'maybe', '2021-03-02 19:46:45', '2025-12-17 19:47:51', '54kMebXm', '3533425'), + (453, 631, 'maybe', '2021-03-01 17:23:17', '2025-12-17 19:47:51', '54kMebXm', '3533850'), + (453, 632, 'maybe', '2021-03-09 01:25:03', '2025-12-17 19:47:51', '54kMebXm', '3533853'), + (453, 637, 'maybe', '2021-03-01 19:28:36', '2025-12-17 19:47:51', '54kMebXm', '3536411'), + (453, 638, 'maybe', '2021-03-01 19:28:27', '2025-12-17 19:47:44', '54kMebXm', '3536632'), + (453, 639, 'maybe', '2021-03-01 19:28:33', '2025-12-17 19:47:51', '54kMebXm', '3536656'), + (453, 640, 'maybe', '2021-03-03 16:10:40', '2025-12-17 19:47:51', '54kMebXm', '3538866'), + (453, 641, 'attending', '2021-03-03 15:24:23', '2025-12-17 19:47:44', '54kMebXm', '3539916'), + (453, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '54kMebXm', '3539917'), + (453, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '54kMebXm', '3539918'), + (453, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '54kMebXm', '3539919'), + (453, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54kMebXm', '3539920'), + (453, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54kMebXm', '3539921'), + (453, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54kMebXm', '3539922'), + (453, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '54kMebXm', '3539923'), + (453, 649, 'attending', '2021-03-03 15:24:16', '2025-12-17 19:47:51', '54kMebXm', '3539927'), + (453, 650, 'attending', '2021-03-03 15:24:18', '2025-12-17 19:47:44', '54kMebXm', '3539928'), + (453, 651, 'attending', '2021-03-10 23:27:16', '2025-12-17 19:47:51', '54kMebXm', '3541045'), + (453, 652, 'attending', '2021-03-07 14:01:39', '2025-12-17 19:47:51', '54kMebXm', '3544466'), + (453, 680, 'attending', '2021-03-10 04:14:48', '2025-12-17 19:47:51', '54kMebXm', '3547700'), + (453, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kMebXm', '6045684'), + (454, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', '0mqjLozA', '3149489'), + (454, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '0mqjLozA', '3149491'), + (454, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', '0mqjLozA', '3149493'), + (454, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', '0mqjLozA', '3236448'), + (454, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '0mqjLozA', '3236450'), + (454, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', '0mqjLozA', '3236452'), + (454, 648, 'not_attending', '2021-05-26 01:43:55', '2025-12-17 19:47:47', '0mqjLozA', '3539923'), + (454, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', '0mqjLozA', '3963335'), + (454, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '0mqjLozA', '3974109'), + (454, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '0mqjLozA', '3975311'), + (454, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '0mqjLozA', '3975312'), + (454, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '0mqjLozA', '3994992'), + (454, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '0mqjLozA', '4014338'), + (454, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '0mqjLozA', '4021848'), + (454, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '0mqjLozA', '4136744'), + (454, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '0mqjLozA', '4136937'), + (454, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '0mqjLozA', '4136938'), + (454, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '0mqjLozA', '4136947'), + (454, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '0mqjLozA', '4225444'), + (454, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '0mqjLozA', '4229417'), + (454, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '0mqjLozA', '4229418'), + (454, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '0mqjLozA', '4239259'), + (454, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '0mqjLozA', '4250163'), + (454, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqjLozA', '6045684'), + (455, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3Rl0OY4', '6045684'), + (456, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dlno03XA', '7869188'), + (456, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dlno03XA', '7877465'), + (456, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dlno03XA', '7878570'), + (456, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'dlno03XA', '7880977'), + (456, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dlno03XA', '7888250'), + (456, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dlno03XA', '7897784'), + (456, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dlno03XA', '7903856'), + (456, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dlno03XA', '8347770'), + (456, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dlno03XA', '8349164'), + (456, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dlno03XA', '8349545'), + (456, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dlno03XA', '8353584'), + (457, 857, 'not_attending', '2021-11-24 02:19:17', '2025-12-17 19:47:37', 'mjnDNL3m', '4015731'), + (457, 993, 'not_attending', '2021-09-24 16:12:14', '2025-12-17 19:47:34', 'mjnDNL3m', '4420741'), + (457, 994, 'maybe', '2021-10-02 03:28:17', '2025-12-17 19:47:34', 'mjnDNL3m', '4420742'), + (457, 995, 'attending', '2021-10-01 15:49:45', '2025-12-17 19:47:34', 'mjnDNL3m', '4420744'), + (457, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mjnDNL3m', '4420747'), + (457, 997, 'not_attending', '2021-10-12 22:18:20', '2025-12-17 19:47:35', 'mjnDNL3m', '4420748'), + (457, 1006, 'attending', '2021-09-22 12:30:45', '2025-12-17 19:47:34', 'mjnDNL3m', '4438808'), + (457, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'mjnDNL3m', '4508342'), + (457, 1071, 'not_attending', '2021-10-02 03:29:06', '2025-12-17 19:47:34', 'mjnDNL3m', '4516078'), + (457, 1072, 'attending', '2021-10-02 03:28:56', '2025-12-17 19:47:34', 'mjnDNL3m', '4516287'), + (457, 1077, 'attending', '2021-10-11 12:59:07', '2025-12-17 19:47:34', 'mjnDNL3m', '4540903'), + (457, 1078, 'attending', '2021-10-05 14:55:28', '2025-12-17 19:47:34', 'mjnDNL3m', '4541281'), + (457, 1079, 'not_attending', '2021-10-19 15:15:40', '2025-12-17 19:47:35', 'mjnDNL3m', '4563823'), + (457, 1082, 'attending', '2021-10-11 22:54:05', '2025-12-17 19:47:35', 'mjnDNL3m', '4566762'), + (457, 1083, 'not_attending', '2021-10-13 18:32:01', '2025-12-17 19:47:34', 'mjnDNL3m', '4566768'), + (457, 1084, 'not_attending', '2021-10-13 18:32:07', '2025-12-17 19:47:35', 'mjnDNL3m', '4566769'), + (457, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mjnDNL3m', '4568602'), + (457, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mjnDNL3m', '4572153'), + (457, 1089, 'not_attending', '2021-10-18 19:46:52', '2025-12-17 19:47:35', 'mjnDNL3m', '4574712'), + (457, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mjnDNL3m', '4585962'), + (457, 1094, 'maybe', '2021-10-31 20:42:23', '2025-12-17 19:47:36', 'mjnDNL3m', '4587337'), + (457, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mjnDNL3m', '4596356'), + (457, 1096, 'attending', '2021-10-28 14:22:38', '2025-12-17 19:47:36', 'mjnDNL3m', '4596453'), + (457, 1097, 'attending', '2021-10-28 14:22:30', '2025-12-17 19:47:36', 'mjnDNL3m', '4598860'), + (457, 1098, 'not_attending', '2021-11-07 21:07:33', '2025-12-17 19:47:36', 'mjnDNL3m', '4598861'), + (457, 1099, 'attending', '2021-10-31 17:14:12', '2025-12-17 19:47:36', 'mjnDNL3m', '4602797'), + (457, 1100, 'not_attending', '2021-11-09 00:18:03', '2025-12-17 19:47:36', 'mjnDNL3m', '4607305'), + (457, 1101, 'not_attending', '2021-11-11 15:53:25', '2025-12-17 19:47:36', 'mjnDNL3m', '4607339'), + (457, 1103, 'not_attending', '2021-11-12 23:38:01', '2025-12-17 19:47:36', 'mjnDNL3m', '4616350'), + (457, 1106, 'not_attending', '2021-11-12 21:05:45', '2025-12-17 19:47:36', 'mjnDNL3m', '4620452'), + (457, 1114, 'not_attending', '2021-11-12 02:52:44', '2025-12-17 19:47:36', 'mjnDNL3m', '4637896'), + (457, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mjnDNL3m', '4642994'), + (457, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mjnDNL3m', '4642995'), + (457, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mjnDNL3m', '4642996'), + (457, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mjnDNL3m', '4642997'), + (457, 1126, 'maybe', '2021-11-15 17:44:10', '2025-12-17 19:47:38', 'mjnDNL3m', '4645687'), + (457, 1127, 'maybe', '2021-11-15 17:44:06', '2025-12-17 19:47:38', 'mjnDNL3m', '4645698'), + (457, 1128, 'not_attending', '2021-11-15 17:44:00', '2025-12-17 19:47:37', 'mjnDNL3m', '4645704'), + (457, 1129, 'maybe', '2021-11-15 17:43:54', '2025-12-17 19:47:37', 'mjnDNL3m', '4645705'), + (457, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mjnDNL3m', '4668385'), + (457, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mjnDNL3m', '4694407'), + (457, 1151, 'not_attending', '2022-01-03 16:41:20', '2025-12-17 19:47:31', 'mjnDNL3m', '4708704'), + (457, 1165, 'not_attending', '2022-01-03 17:06:41', '2025-12-17 19:47:31', 'mjnDNL3m', '4724210'), + (457, 1173, 'attending', '2022-01-03 16:41:18', '2025-12-17 19:47:31', 'mjnDNL3m', '4736495'), + (457, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mjnDNL3m', '4736497'), + (457, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mjnDNL3m', '4736499'), + (457, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mjnDNL3m', '4736500'), + (457, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mjnDNL3m', '4736503'), + (457, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mjnDNL3m', '4736504'), + (457, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mjnDNL3m', '4746789'), + (457, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mjnDNL3m', '4753929'), + (457, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mjnDNL3m', '5038850'), + (457, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mjnDNL3m', '5045826'), + (457, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mjnDNL3m', '5132533'), + (457, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mjnDNL3m', '5186582'), + (457, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mjnDNL3m', '5186583'), + (457, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mjnDNL3m', '5186585'), + (457, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mjnDNL3m', '5190437'), + (457, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mjnDNL3m', '5195095'), + (457, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'mjnDNL3m', '5215989'), + (457, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mjnDNL3m', '5223686'), + (457, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mjnDNL3m', '5247467'), + (457, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mjnDNL3m', '5260800'), + (457, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mjnDNL3m', '5269930'), + (457, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mjnDNL3m', '5271448'), + (457, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'mjnDNL3m', '5271449'), + (457, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mjnDNL3m', '5278159'), + (457, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mjnDNL3m', '5363695'), + (457, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mjnDNL3m', '5365960'), + (457, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mjnDNL3m', '5378247'), + (457, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'mjnDNL3m', '5389605'), + (457, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mjnDNL3m', '5397265'), + (457, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mjnDNL3m', '5404786'), + (457, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mjnDNL3m', '5405203'), + (457, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mjnDNL3m', '5412550'), + (457, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mjnDNL3m', '5415046'), + (457, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mjnDNL3m', '5422086'), + (457, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mjnDNL3m', '5422406'), + (457, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mjnDNL3m', '5424565'), + (457, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mjnDNL3m', '5426882'), + (457, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mjnDNL3m', '5441125'), + (457, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mjnDNL3m', '5441126'), + (457, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mjnDNL3m', '5441128'), + (457, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mjnDNL3m', '5441131'), + (457, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mjnDNL3m', '5441132'), + (457, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mjnDNL3m', '5453325'), + (457, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mjnDNL3m', '5454516'), + (457, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mjnDNL3m', '5454605'), + (457, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mjnDNL3m', '5455037'), + (457, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mjnDNL3m', '5461278'), + (457, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mjnDNL3m', '5469480'), + (457, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mjnDNL3m', '5474663'), + (457, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mjnDNL3m', '5482022'), + (457, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mjnDNL3m', '5488912'), + (457, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mjnDNL3m', '5492192'), + (457, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mjnDNL3m', '5493139'), + (457, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mjnDNL3m', '5493200'), + (457, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mjnDNL3m', '5502188'), + (457, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mjnDNL3m', '5505059'), + (457, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mjnDNL3m', '5509055'), + (457, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mjnDNL3m', '5512862'), + (457, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mjnDNL3m', '5513985'), + (457, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'mjnDNL3m', '5519981'), + (457, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mjnDNL3m', '5522550'), + (457, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mjnDNL3m', '5534683'), + (457, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'mjnDNL3m', '5537735'), + (457, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mjnDNL3m', '5540859'), + (457, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mjnDNL3m', '5546619'), + (457, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mjnDNL3m', '5557747'), + (457, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mjnDNL3m', '5560255'), + (457, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mjnDNL3m', '5562906'), + (457, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mjnDNL3m', '5600604'), + (457, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mjnDNL3m', '5605544'), + (457, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'mjnDNL3m', '5606737'), + (457, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mjnDNL3m', '5630960'), + (457, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mjnDNL3m', '5630961'), + (457, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mjnDNL3m', '5630962'), + (457, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mjnDNL3m', '5630966'), + (457, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mjnDNL3m', '5630967'), + (457, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mjnDNL3m', '5630968'), + (457, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mjnDNL3m', '5635406'), + (457, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mjnDNL3m', '5638765'), + (457, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mjnDNL3m', '5640097'), + (457, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mjnDNL3m', '5640843'), + (457, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mjnDNL3m', '5641521'), + (457, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mjnDNL3m', '5642818'), + (457, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mjnDNL3m', '5652395'), + (457, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mjnDNL3m', '5670445'), + (457, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mjnDNL3m', '5671637'), + (457, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mjnDNL3m', '5672329'), + (457, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mjnDNL3m', '5674057'), + (457, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mjnDNL3m', '5674060'), + (457, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mjnDNL3m', '5677461'), + (457, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mjnDNL3m', '5698046'), + (457, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mjnDNL3m', '5699760'), + (457, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mjnDNL3m', '5741601'), + (457, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mjnDNL3m', '5763458'), + (457, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mjnDNL3m', '5774172'), + (457, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'mjnDNL3m', '5818247'), + (457, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mjnDNL3m', '5819471'), + (457, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mjnDNL3m', '5827739'), + (457, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mjnDNL3m', '5844306'), + (457, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mjnDNL3m', '5850159'), + (457, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mjnDNL3m', '5858999'), + (457, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mjnDNL3m', '5871984'), + (457, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mjnDNL3m', '5876354'), + (457, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mjnDNL3m', '5880939'), + (457, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mjnDNL3m', '5880940'), + (457, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mjnDNL3m', '5880942'), + (457, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mjnDNL3m', '5880943'), + (457, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mjnDNL3m', '5887890'), + (457, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mjnDNL3m', '5888598'), + (457, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mjnDNL3m', '5893260'), + (457, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mjnDNL3m', '5899826'), + (457, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mjnDNL3m', '5900199'), + (457, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mjnDNL3m', '5900200'), + (457, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mjnDNL3m', '5900202'), + (457, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mjnDNL3m', '5900203'), + (457, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mjnDNL3m', '5901108'), + (457, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mjnDNL3m', '5901126'), + (457, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'mjnDNL3m', '5901606'), + (457, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mjnDNL3m', '5909655'), + (457, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mjnDNL3m', '5910522'), + (457, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mjnDNL3m', '5910526'), + (457, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mjnDNL3m', '5910528'), + (457, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mjnDNL3m', '5916219'), + (457, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mjnDNL3m', '5936234'), + (457, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mjnDNL3m', '5958351'), + (457, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mjnDNL3m', '5959751'), + (457, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mjnDNL3m', '5959755'), + (457, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mjnDNL3m', '5960055'), + (457, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mjnDNL3m', '5961684'), + (457, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mjnDNL3m', '5962132'), + (457, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mjnDNL3m', '5962133'), + (457, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mjnDNL3m', '5962134'), + (457, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mjnDNL3m', '5962317'), + (457, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mjnDNL3m', '5962318'), + (457, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mjnDNL3m', '5965933'), + (457, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mjnDNL3m', '5967014'), + (457, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mjnDNL3m', '5972815'), + (457, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mjnDNL3m', '5974016'), + (457, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mjnDNL3m', '5981515'), + (457, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mjnDNL3m', '5993516'), + (457, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mjnDNL3m', '5998939'), + (457, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mjnDNL3m', '6028191'), + (457, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mjnDNL3m', '6040066'), + (457, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mjnDNL3m', '6042717'), + (457, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mjnDNL3m', '6044838'), + (457, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mjnDNL3m', '6044839'), + (457, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjnDNL3m', '6045684'), + (457, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mjnDNL3m', '6050104'), + (457, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mjnDNL3m', '6053195'), + (457, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mjnDNL3m', '6053198'), + (457, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mjnDNL3m', '6056085'), + (457, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mjnDNL3m', '6056916'), + (457, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mjnDNL3m', '6059290'), + (457, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mjnDNL3m', '6060328'), + (457, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mjnDNL3m', '6061037'), + (457, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mjnDNL3m', '6061039'), + (457, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mjnDNL3m', '6067245'), + (457, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mjnDNL3m', '6068094'), + (457, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mjnDNL3m', '6068252'), + (457, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mjnDNL3m', '6068253'), + (457, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mjnDNL3m', '6068254'), + (457, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mjnDNL3m', '6068280'), + (457, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mjnDNL3m', '6069093'), + (457, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mjnDNL3m', '6072528'), + (457, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mjnDNL3m', '6079840'), + (457, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mjnDNL3m', '6083398'), + (457, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mjnDNL3m', '6093504'), + (457, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mjnDNL3m', '6097414'), + (457, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mjnDNL3m', '6097442'), + (457, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mjnDNL3m', '6097684'), + (457, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mjnDNL3m', '6098762'), + (457, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mjnDNL3m', '6101361'), + (457, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mjnDNL3m', '6101362'), + (457, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mjnDNL3m', '6107314'), + (457, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mjnDNL3m', '6120034'), + (457, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mjnDNL3m', '6136733'), + (457, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mjnDNL3m', '6137989'), + (457, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mjnDNL3m', '6150864'), + (457, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mjnDNL3m', '6155491'), + (457, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mjnDNL3m', '6164417'), + (457, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mjnDNL3m', '6166388'), + (457, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mjnDNL3m', '6176439'), + (457, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mjnDNL3m', '6182410'), + (457, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mjnDNL3m', '6185812'), + (457, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mjnDNL3m', '6187651'), + (457, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mjnDNL3m', '6187963'), + (457, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mjnDNL3m', '6187964'), + (457, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mjnDNL3m', '6187966'), + (457, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mjnDNL3m', '6187967'), + (457, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mjnDNL3m', '6187969'), + (457, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mjnDNL3m', '6334878'), + (457, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mjnDNL3m', '6337236'), + (457, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mjnDNL3m', '6337970'), + (457, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mjnDNL3m', '6338308'), + (457, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mjnDNL3m', '6341710'), + (457, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mjnDNL3m', '6342044'), + (457, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mjnDNL3m', '6342298'), + (457, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mjnDNL3m', '6343294'), + (457, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mjnDNL3m', '6347034'), + (457, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mjnDNL3m', '6347056'), + (457, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mjnDNL3m', '6353830'), + (457, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mjnDNL3m', '6353831'), + (457, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mjnDNL3m', '6357867'), + (457, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mjnDNL3m', '6358652'), + (457, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mjnDNL3m', '6361709'), + (457, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mjnDNL3m', '6361710'), + (457, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mjnDNL3m', '6361711'), + (457, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mjnDNL3m', '6361712'), + (457, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mjnDNL3m', '6361713'), + (457, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mjnDNL3m', '6382573'), + (457, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mjnDNL3m', '6388604'), + (457, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mjnDNL3m', '6394629'), + (457, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mjnDNL3m', '6394631'), + (457, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mjnDNL3m', '6440863'), + (457, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mjnDNL3m', '6445440'), + (457, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mjnDNL3m', '6453951'), + (457, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mjnDNL3m', '6461696'), + (457, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mjnDNL3m', '6462129'), + (457, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mjnDNL3m', '6463218'), + (457, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mjnDNL3m', '6472181'), + (457, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mjnDNL3m', '6482693'), + (457, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mjnDNL3m', '6484200'), + (457, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mjnDNL3m', '6484680'), + (457, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mjnDNL3m', '6507741'), + (457, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mjnDNL3m', '6514659'), + (457, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mjnDNL3m', '6514660'), + (457, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mjnDNL3m', '6519103'), + (457, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mjnDNL3m', '6535681'), + (457, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mjnDNL3m', '6584747'), + (457, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mjnDNL3m', '6587097'), + (457, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mjnDNL3m', '6609022'), + (457, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mjnDNL3m', '6632757'), + (457, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mjnDNL3m', '6644187'), + (457, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mjnDNL3m', '6648951'), + (457, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mjnDNL3m', '6648952'), + (457, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mjnDNL3m', '6655401'), + (457, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mjnDNL3m', '6661585'), + (457, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mjnDNL3m', '6661588'), + (457, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mjnDNL3m', '6661589'), + (457, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mjnDNL3m', '6699906'), + (457, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mjnDNL3m', '6699913'), + (457, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mjnDNL3m', '6701109'), + (457, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mjnDNL3m', '6705219'), + (457, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mjnDNL3m', '6710153'), + (457, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mjnDNL3m', '6711552'), + (457, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mjnDNL3m', '6711553'), + (457, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mjnDNL3m', '6722688'), + (457, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mjnDNL3m', '6730620'), + (457, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mjnDNL3m', '6740364'), + (457, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mjnDNL3m', '6743829'), + (457, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mjnDNL3m', '7030380'), + (457, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mjnDNL3m', '7033677'), + (457, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mjnDNL3m', '7044715'), + (457, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mjnDNL3m', '7050318'), + (457, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mjnDNL3m', '7050319'), + (457, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mjnDNL3m', '7050322'), + (457, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mjnDNL3m', '7057804'), + (457, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mjnDNL3m', '7072824'), + (457, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mjnDNL3m', '7074348'), + (457, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mjnDNL3m', '7074364'), + (457, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mjnDNL3m', '7089267'), + (457, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mjnDNL3m', '7098747'), + (457, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mjnDNL3m', '7113468'), + (457, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mjnDNL3m', '7114856'), + (457, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mjnDNL3m', '7114951'), + (457, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mjnDNL3m', '7114955'), + (457, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mjnDNL3m', '7114956'), + (457, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mjnDNL3m', '7114957'), + (457, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mjnDNL3m', '7159484'), + (457, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mjnDNL3m', '7178446'), + (457, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mjnDNL3m', '7220467'), + (457, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mjnDNL3m', '7240354'), + (457, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mjnDNL3m', '7251633'), + (457, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mjnDNL3m', '7324073'), + (457, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mjnDNL3m', '7324074'), + (457, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mjnDNL3m', '7324075'), + (457, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mjnDNL3m', '7324078'), + (457, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mjnDNL3m', '7324082'), + (457, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mjnDNL3m', '7331457'), + (457, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mjnDNL3m', '7363643'), + (457, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mjnDNL3m', '7368606'), + (457, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mjnDNL3m', '7397462'), + (457, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mjnDNL3m', '7424275'), + (457, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mjnDNL3m', '7432751'), + (457, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mjnDNL3m', '7432752'), + (457, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mjnDNL3m', '7432753'), + (457, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mjnDNL3m', '7432754'), + (457, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mjnDNL3m', '7432755'), + (457, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mjnDNL3m', '7432756'), + (457, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mjnDNL3m', '7432758'), + (457, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mjnDNL3m', '7432759'), + (457, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mjnDNL3m', '7433834'), + (457, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mjnDNL3m', '7470197'), + (457, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mjnDNL3m', '7685613'), + (457, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mjnDNL3m', '7688194'), + (457, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mjnDNL3m', '7688196'), + (457, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mjnDNL3m', '7688289'), + (457, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mjnDNL3m', '7692763'), + (457, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mjnDNL3m', '7697552'), + (457, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mjnDNL3m', '7699878'), + (457, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mjnDNL3m', '7704043'), + (457, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mjnDNL3m', '7712467'), + (457, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mjnDNL3m', '7713585'), + (457, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mjnDNL3m', '7713586'), + (457, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mjnDNL3m', '7738518'), + (457, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mjnDNL3m', '7750636'), + (457, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mjnDNL3m', '7796540'), + (457, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mjnDNL3m', '7796541'), + (457, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mjnDNL3m', '7796542'), + (457, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mjnDNL3m', '7825913'), + (457, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mjnDNL3m', '7826209'), + (457, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mjnDNL3m', '7834742'), + (457, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mjnDNL3m', '7842108'), + (457, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mjnDNL3m', '7842902'), + (457, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mjnDNL3m', '7842903'), + (457, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mjnDNL3m', '7842904'), + (457, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mjnDNL3m', '7842905'), + (457, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mjnDNL3m', '7855719'), + (457, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mjnDNL3m', '7860683'), + (457, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mjnDNL3m', '7860684'), + (457, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mjnDNL3m', '7866095'), + (457, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mjnDNL3m', '7869170'), + (457, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mjnDNL3m', '7869188'), + (457, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mjnDNL3m', '7869201'), + (457, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mjnDNL3m', '7877465'), + (457, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mjnDNL3m', '7888250'), + (457, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mjnDNL3m', '7904777'), + (457, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjnDNL3m', '8349164'), + (457, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjnDNL3m', '8349545'), + (457, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjnDNL3m', '8368028'), + (457, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjnDNL3m', '8368029'), + (457, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjnDNL3m', '8388462'), + (457, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjnDNL3m', '8400273'), + (457, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjnDNL3m', '8400275'), + (457, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mjnDNL3m', '8400276'), + (457, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjnDNL3m', '8404977'), + (457, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mjnDNL3m', '8430783'), + (457, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjnDNL3m', '8430784'), + (457, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjnDNL3m', '8430799'), + (457, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjnDNL3m', '8430800'), + (457, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjnDNL3m', '8430801'), + (457, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mjnDNL3m', '8438709'), + (457, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjnDNL3m', '8457738'), + (457, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjnDNL3m', '8459566'), + (457, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjnDNL3m', '8459567'), + (457, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjnDNL3m', '8461032'), + (457, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjnDNL3m', '8477877'), + (457, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mjnDNL3m', '8485688'), + (457, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mjnDNL3m', '8490587'), + (457, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mjnDNL3m', '8493552'), + (457, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mjnDNL3m', '8493553'), + (457, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mjnDNL3m', '8493554'), + (457, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mjnDNL3m', '8493555'), + (457, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mjnDNL3m', '8493556'), + (457, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mjnDNL3m', '8493557'), + (457, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mjnDNL3m', '8493558'), + (457, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mjnDNL3m', '8493559'), + (457, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mjnDNL3m', '8493560'), + (457, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mjnDNL3m', '8493561'), + (457, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mjnDNL3m', '8493572'), + (457, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mjnDNL3m', '8540725'), + (457, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mjnDNL3m', '8555421'), + (458, 1727, 'attending', '2022-12-03 03:54:50', '2025-12-17 19:47:16', 'mGOpGLZm', '5630969'), + (458, 1737, 'attending', '2022-12-01 00:08:37', '2025-12-17 19:47:16', 'mGOpGLZm', '5638457'), + (458, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mGOpGLZm', '5670445'), + (458, 1796, 'attending', '2022-12-01 22:05:24', '2025-12-17 19:47:16', 'mGOpGLZm', '5756755'), + (458, 1824, 'not_attending', '2022-12-01 18:39:21', '2025-12-17 19:47:04', 'mGOpGLZm', '5774172'), + (458, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'mGOpGLZm', '5818247'), + (458, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mGOpGLZm', '5819471'), + (458, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'mGOpGLZm', '5827739'), + (458, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mGOpGLZm', '5844306'), + (458, 1846, 'not_attending', '2022-12-18 18:54:24', '2025-12-17 19:47:04', 'mGOpGLZm', '5845237'), + (458, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mGOpGLZm', '5850159'), + (458, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mGOpGLZm', '5858999'), + (458, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mGOpGLZm', '5871984'), + (458, 1856, 'attending', '2023-01-15 03:38:14', '2025-12-17 19:47:05', 'mGOpGLZm', '5873970'), + (458, 1859, 'attending', '2023-01-19 04:43:49', '2025-12-17 19:47:05', 'mGOpGLZm', '5876234'), + (458, 1861, 'attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mGOpGLZm', '5876354'), + (458, 1864, 'attending', '2023-01-19 04:36:58', '2025-12-17 19:47:05', 'mGOpGLZm', '5879675'), + (458, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mGOpGLZm', '5880939'), + (458, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mGOpGLZm', '5880940'), + (458, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mGOpGLZm', '5880942'), + (458, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mGOpGLZm', '5880943'), + (458, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mGOpGLZm', '5887890'), + (458, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mGOpGLZm', '5888598'), + (458, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mGOpGLZm', '5893260'), + (458, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mGOpGLZm', '5899826'), + (458, 1885, 'attending', '2023-02-24 23:25:33', '2025-12-17 19:47:08', 'mGOpGLZm', '5899928'), + (458, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mGOpGLZm', '5900199'), + (458, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mGOpGLZm', '5900200'), + (458, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mGOpGLZm', '5900202'), + (458, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mGOpGLZm', '5900203'), + (458, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mGOpGLZm', '5901108'), + (458, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mGOpGLZm', '5901126'), + (458, 1900, 'attending', '2023-02-03 21:29:29', '2025-12-17 19:47:06', 'mGOpGLZm', '5901331'), + (458, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mGOpGLZm', '5909655'), + (458, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mGOpGLZm', '5910522'), + (458, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mGOpGLZm', '5910526'), + (458, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mGOpGLZm', '5910528'), + (458, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mGOpGLZm', '5916219'), + (458, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mGOpGLZm', '5936234'), + (458, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mGOpGLZm', '5958351'), + (458, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mGOpGLZm', '5959751'), + (458, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mGOpGLZm', '5959755'), + (458, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mGOpGLZm', '5960055'), + (458, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mGOpGLZm', '5961684'), + (458, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mGOpGLZm', '5962132'), + (458, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mGOpGLZm', '5962133'), + (458, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mGOpGLZm', '5962134'), + (458, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mGOpGLZm', '5962317'), + (458, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mGOpGLZm', '5962318'), + (458, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mGOpGLZm', '5965933'), + (458, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mGOpGLZm', '5967014'), + (458, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mGOpGLZm', '5972815'), + (458, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mGOpGLZm', '5974016'), + (458, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mGOpGLZm', '5981515'), + (458, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mGOpGLZm', '5993516'), + (458, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mGOpGLZm', '5998939'), + (458, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mGOpGLZm', '6028191'), + (458, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mGOpGLZm', '6040066'), + (458, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mGOpGLZm', '6042717'), + (458, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mGOpGLZm', '6044838'), + (458, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mGOpGLZm', '6044839'), + (458, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mGOpGLZm', '6045684'), + (458, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mGOpGLZm', '6050104'), + (458, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mGOpGLZm', '6053195'), + (458, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mGOpGLZm', '6053198'), + (458, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mGOpGLZm', '6056085'), + (458, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mGOpGLZm', '6056916'), + (458, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mGOpGLZm', '6059290'), + (458, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mGOpGLZm', '6060328'), + (458, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mGOpGLZm', '6061037'), + (458, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mGOpGLZm', '6061039'), + (458, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mGOpGLZm', '6067245'), + (458, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mGOpGLZm', '6068094'), + (458, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mGOpGLZm', '6068252'), + (458, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mGOpGLZm', '6068253'), + (458, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mGOpGLZm', '6068254'), + (458, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mGOpGLZm', '6068280'), + (458, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mGOpGLZm', '6069093'), + (458, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mGOpGLZm', '6072528'), + (458, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mGOpGLZm', '6079840'), + (458, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mGOpGLZm', '6083398'), + (458, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mGOpGLZm', '6093504'), + (458, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mGOpGLZm', '6097414'), + (458, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mGOpGLZm', '6097442'), + (458, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mGOpGLZm', '6097684'), + (458, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mGOpGLZm', '6098762'), + (458, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mGOpGLZm', '6101361'), + (458, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mGOpGLZm', '6101362'), + (458, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mGOpGLZm', '6103752'), + (458, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mGOpGLZm', '6107314'), + (458, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mGOpGLZm', '6120034'), + (458, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mGOpGLZm', '6136733'), + (458, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mGOpGLZm', '6137989'), + (458, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mGOpGLZm', '6150864'), + (458, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mGOpGLZm', '6155491'), + (458, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mGOpGLZm', '6164417'), + (458, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mGOpGLZm', '6166388'), + (458, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mGOpGLZm', '6176439'), + (459, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AQ0675xm', '6342044'), + (459, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AQ0675xm', '6343294'), + (459, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AQ0675xm', '6347034'), + (459, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AQ0675xm', '6347056'), + (459, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AQ0675xm', '6353830'), + (459, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AQ0675xm', '6353831'), + (459, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AQ0675xm', '6357867'), + (459, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AQ0675xm', '6358652'), + (459, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'AQ0675xm', '6361709'), + (459, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AQ0675xm', '6361710'), + (459, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AQ0675xm', '6361711'), + (459, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AQ0675xm', '6361712'), + (459, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AQ0675xm', '6361713'), + (459, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AQ0675xm', '6382573'), + (459, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'AQ0675xm', '6388604'), + (459, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AQ0675xm', '6394629'), + (459, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AQ0675xm', '6394631'), + (459, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'AQ0675xm', '6431478'), + (460, 991, 'maybe', '2021-09-11 20:07:53', '2025-12-17 19:47:43', 'dwYlB71A', '4420738'), + (460, 992, 'not_attending', '2021-09-18 23:08:55', '2025-12-17 19:47:34', 'dwYlB71A', '4420739'), + (460, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dwYlB71A', '4420741'), + (460, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dwYlB71A', '4420744'), + (460, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dwYlB71A', '4420747'), + (460, 1015, 'attending', '2021-09-12 19:19:21', '2025-12-17 19:47:43', 'dwYlB71A', '4440800'), + (460, 1023, 'maybe', '2021-09-13 20:19:29', '2025-12-17 19:47:43', 'dwYlB71A', '4461883'), + (460, 1025, 'maybe', '2021-09-14 16:29:30', '2025-12-17 19:47:43', 'dwYlB71A', '4462052'), + (460, 1026, 'not_attending', '2021-09-30 02:53:42', '2025-12-17 19:47:43', 'dwYlB71A', '4472951'), + (460, 1027, 'attending', '2021-09-19 04:13:35', '2025-12-17 19:47:34', 'dwYlB71A', '4472982'), + (460, 1028, 'attending', '2021-09-19 04:13:39', '2025-12-17 19:47:34', 'dwYlB71A', '4472983'), + (460, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dwYlB71A', '4508342'), + (460, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dwYlB71A', '4568602'), + (460, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dwYlB71A', '6045684'), + (461, 1257, 'attending', '2022-03-13 16:27:57', '2025-12-17 19:47:33', 'mj68Y3bm', '5129274'), + (461, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'mj68Y3bm', '5132533'), + (461, 1265, 'maybe', '2022-03-12 00:33:42', '2025-12-17 19:47:33', 'mj68Y3bm', '5160862'), + (461, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj68Y3bm', '6045684'), + (462, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxMkLv1m', '6342044'), + (462, 2174, 'not_attending', '2023-07-26 20:15:40', '2025-12-17 19:46:54', 'dxMkLv1m', '6343294'), + (462, 2176, 'not_attending', '2023-07-27 17:23:49', '2025-12-17 19:46:54', 'dxMkLv1m', '6347034'), + (462, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxMkLv1m', '6353830'), + (462, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxMkLv1m', '6353831'), + (462, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxMkLv1m', '6357867'), + (462, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxMkLv1m', '6358652'), + (462, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'dxMkLv1m', '6361709'), + (462, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxMkLv1m', '6361710'), + (462, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxMkLv1m', '6361711'), + (462, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxMkLv1m', '6361712'), + (462, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxMkLv1m', '6361713'), + (462, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxMkLv1m', '6382573'), + (462, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dxMkLv1m', '6388604'), + (462, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxMkLv1m', '6394629'), + (462, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxMkLv1m', '6394631'), + (462, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxMkLv1m', '6431478'), + (463, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjYq0MVd', '6045684'), + (464, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dJrGrkbd', '5670445'), + (464, 1824, 'maybe', '2022-11-30 14:58:07', '2025-12-17 19:47:04', 'dJrGrkbd', '5774172'), + (464, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dJrGrkbd', '5818247'), + (464, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dJrGrkbd', '5819471'), + (464, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dJrGrkbd', '5827739'), + (464, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dJrGrkbd', '5844306'), + (464, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dJrGrkbd', '5850159'), + (464, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dJrGrkbd', '5858999'), + (464, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dJrGrkbd', '5871984'), + (464, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dJrGrkbd', '5876354'), + (464, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dJrGrkbd', '6045684'), + (465, 2075, 'maybe', '2023-06-30 10:59:50', '2025-12-17 19:46:50', 'mGGwaMrm', '6107314'), + (465, 2116, 'attending', '2023-07-07 11:09:05', '2025-12-17 19:46:51', 'mGGwaMrm', '6163389'), + (465, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mGGwaMrm', '6176439'), + (465, 2125, 'attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'mGGwaMrm', '6177485'), + (465, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mGGwaMrm', '6182410'), + (465, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mGGwaMrm', '6185812'), + (465, 2132, 'attending', '2023-07-09 11:47:57', '2025-12-17 19:46:52', 'mGGwaMrm', '6187015'), + (465, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mGGwaMrm', '6187651'), + (465, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mGGwaMrm', '6187963'), + (465, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mGGwaMrm', '6187964'), + (465, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mGGwaMrm', '6187966'), + (465, 2137, 'attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mGGwaMrm', '6187967'), + (465, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mGGwaMrm', '6187969'), + (465, 2139, 'not_attending', '2023-07-09 20:13:10', '2025-12-17 19:46:52', 'mGGwaMrm', '6188027'), + (465, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mGGwaMrm', '6334878'), + (465, 2148, 'attending', '2023-07-09 20:17:30', '2025-12-17 19:46:53', 'mGGwaMrm', '6335667'), + (465, 2149, 'attending', '2023-07-11 19:09:52', '2025-12-17 19:46:53', 'mGGwaMrm', '6335682'), + (465, 2152, 'attending', '2023-07-11 09:07:43', '2025-12-17 19:46:52', 'mGGwaMrm', '6337021'), + (465, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mGGwaMrm', '6337236'), + (465, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mGGwaMrm', '6337970'), + (465, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mGGwaMrm', '6338308'), + (465, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mGGwaMrm', '6340845'), + (465, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mGGwaMrm', '6341710'), + (465, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mGGwaMrm', '6342044'), + (465, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mGGwaMrm', '6342298'), + (465, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mGGwaMrm', '6343294'), + (465, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mGGwaMrm', '6347034'), + (465, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mGGwaMrm', '6347056'), + (465, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mGGwaMrm', '6353830'), + (465, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mGGwaMrm', '6353831'), + (465, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mGGwaMrm', '6357867'), + (465, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mGGwaMrm', '6358652'), + (465, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mGGwaMrm', '6361709'), + (465, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mGGwaMrm', '6361710'), + (465, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mGGwaMrm', '6361711'), + (465, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mGGwaMrm', '6361712'), + (465, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mGGwaMrm', '6361713'), + (465, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mGGwaMrm', '6382573'), + (465, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mGGwaMrm', '6388604'), + (465, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mGGwaMrm', '6394629'), + (465, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mGGwaMrm', '6394631'), + (465, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mGGwaMrm', '6440863'), + (465, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mGGwaMrm', '6445440'), + (465, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mGGwaMrm', '6453951'), + (465, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mGGwaMrm', '6461696'), + (465, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mGGwaMrm', '6462129'), + (465, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mGGwaMrm', '6463218'), + (465, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mGGwaMrm', '6472181'), + (465, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mGGwaMrm', '6482693'), + (465, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mGGwaMrm', '6484200'), + (465, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mGGwaMrm', '6484680'), + (465, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mGGwaMrm', '6507741'), + (465, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mGGwaMrm', '6514659'), + (465, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mGGwaMrm', '6514660'), + (465, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mGGwaMrm', '6519103'), + (465, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mGGwaMrm', '6535681'), + (465, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mGGwaMrm', '6584747'), + (465, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mGGwaMrm', '6587097'), + (465, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mGGwaMrm', '6609022'), + (465, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mGGwaMrm', '6632757'), + (465, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mGGwaMrm', '6644187'), + (465, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mGGwaMrm', '6648951'), + (465, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mGGwaMrm', '6648952'), + (465, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mGGwaMrm', '6655401'), + (465, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mGGwaMrm', '6661585'), + (465, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mGGwaMrm', '6661588'), + (465, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mGGwaMrm', '6661589'), + (465, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mGGwaMrm', '6699906'), + (465, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mGGwaMrm', '6701109'), + (465, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mGGwaMrm', '6705219'), + (465, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mGGwaMrm', '6710153'), + (465, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mGGwaMrm', '6711552'), + (465, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mGGwaMrm', '6711553'), + (466, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41YVG154', '5630960'), + (466, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41YVG154', '5630961'), + (466, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41YVG154', '5630962'), + (466, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41YVG154', '5630966'), + (466, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41YVG154', '5630967'), + (466, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41YVG154', '5630968'), + (466, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', '41YVG154', '5638765'), + (466, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41YVG154', '5640097'), + (466, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41YVG154', '5640843'), + (466, 1741, 'attending', '2022-10-10 13:15:27', '2025-12-17 19:47:12', '41YVG154', '5641132'), + (466, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41YVG154', '5641521'), + (466, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41YVG154', '5642818'), + (466, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41YVG154', '5652395'), + (466, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41YVG154', '5670445'), + (466, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41YVG154', '5671637'), + (466, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41YVG154', '5672329'), + (466, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41YVG154', '5674057'), + (466, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41YVG154', '5674060'), + (466, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41YVG154', '5677461'), + (466, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41YVG154', '5698046'), + (466, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', '41YVG154', '5699760'), + (466, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41YVG154', '5741601'), + (466, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41YVG154', '5763458'), + (466, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41YVG154', '5774172'), + (466, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '41YVG154', '5818247'), + (466, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41YVG154', '5819471'), + (466, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41YVG154', '5827739'), + (466, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41YVG154', '5844306'), + (466, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41YVG154', '5850159'), + (466, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41YVG154', '5858999'), + (466, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41YVG154', '5871984'), + (466, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41YVG154', '5876354'), + (466, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41YVG154', '5880939'), + (466, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41YVG154', '5887890'), + (466, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41YVG154', '5888598'), + (466, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41YVG154', '5893260'), + (466, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41YVG154', '6045684'), + (467, 707, 'not_attending', '2021-04-14 12:59:50', '2025-12-17 19:47:46', '0mq8bX5d', '3583262'), + (467, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mq8bX5d', '6045684'), + (468, 1, 'attending', '2020-03-19 03:08:17', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958042'), + (468, 2, 'attending', '2020-03-19 03:08:33', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958044'), + (468, 4, 'attending', '2020-03-19 03:08:35', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958046'), + (468, 5, 'attending', '2020-03-19 03:08:39', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958047'), + (468, 7, 'maybe', '2020-03-19 16:57:01', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958049'), + (468, 8, 'attending', '2020-03-19 03:08:47', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958050'), + (468, 10, 'attending', '2020-03-28 22:00:34', '2025-12-17 19:47:56', 'NmLXw9Nm', '2958053'), + (468, 11, 'attending', '2020-03-19 16:57:46', '2025-12-17 19:47:57', 'NmLXw9Nm', '2958055'), + (468, 12, 'attending', '2020-03-19 16:57:30', '2025-12-17 19:47:56', 'NmLXw9Nm', '2958056'), + (468, 13, 'attending', '2020-03-23 03:14:08', '2025-12-17 19:47:57', 'NmLXw9Nm', '2958057'), + (468, 15, 'attending', '2020-04-03 05:12:23', '2025-12-17 19:47:57', 'NmLXw9Nm', '2958059'), + (468, 16, 'not_attending', '2020-03-26 23:06:41', '2025-12-17 19:47:56', 'NmLXw9Nm', '2958060'), + (468, 17, 'attending', '2020-03-19 16:56:11', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958061'), + (468, 23, 'attending', '2020-06-11 23:41:41', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958067'), + (468, 28, 'attending', '2020-03-28 17:11:20', '2025-12-17 19:47:56', 'NmLXw9Nm', '2960421'), + (468, 29, 'attending', '2020-03-30 20:18:17', '2025-12-17 19:47:56', 'NmLXw9Nm', '2961309'), + (468, 30, 'not_attending', '2020-04-02 16:56:30', '2025-12-17 19:47:57', 'NmLXw9Nm', '2961895'), + (468, 32, 'attending', '2020-03-31 21:05:42', '2025-12-17 19:47:56', 'NmLXw9Nm', '2963931'), + (468, 33, 'attending', '2020-04-04 17:45:58', '2025-12-17 19:47:57', 'NmLXw9Nm', '2963932'), + (468, 34, 'not_attending', '2020-03-26 23:06:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '2966259'), + (468, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'NmLXw9Nm', '2969208'), + (468, 39, 'attending', '2020-04-04 17:44:43', '2025-12-17 19:47:57', 'NmLXw9Nm', '2970637'), + (468, 41, 'attending', '2020-04-03 05:12:26', '2025-12-17 19:47:57', 'NmLXw9Nm', '2971546'), + (468, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'NmLXw9Nm', '2974534'), + (468, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'NmLXw9Nm', '2974955'), + (468, 51, 'attending', '2020-06-30 01:58:35', '2025-12-17 19:47:55', 'NmLXw9Nm', '2975276'), + (468, 55, 'not_attending', '2020-04-06 16:10:23', '2025-12-17 19:47:57', 'NmLXw9Nm', '2975384'), + (468, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'NmLXw9Nm', '2975385'), + (468, 57, 'attending', '2020-04-27 22:38:47', '2025-12-17 19:47:57', 'NmLXw9Nm', '2976575'), + (468, 58, 'maybe', '2020-04-19 07:25:09', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977127'), + (468, 60, 'maybe', '2020-04-28 16:08:01', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977129'), + (468, 61, 'attending', '2020-04-14 16:31:14', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977130'), + (468, 62, 'not_attending', '2020-05-08 18:31:10', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977131'), + (468, 65, 'attending', '2020-05-24 17:54:38', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977134'), + (468, 66, 'attending', '2020-06-09 20:24:49', '2025-12-17 19:47:58', 'NmLXw9Nm', '2977135'), + (468, 68, 'attending', '2020-06-19 02:00:12', '2025-12-17 19:47:58', 'NmLXw9Nm', '2977137'), + (468, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977343'), + (468, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977812'), + (468, 73, 'attending', '2020-04-14 05:39:07', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977931'), + (468, 74, 'attending', '2020-04-10 19:42:54', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978244'), + (468, 75, 'attending', '2020-04-24 01:23:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978245'), + (468, 76, 'not_attending', '2020-05-02 20:07:21', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978246'), + (468, 77, 'not_attending', '2020-05-09 07:13:26', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978247'), + (468, 78, 'attending', '2020-05-23 21:50:30', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978249'), + (468, 79, 'attending', '2020-05-30 21:01:35', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978250'), + (468, 80, 'attending', '2020-06-06 02:50:27', '2025-12-17 19:47:58', 'NmLXw9Nm', '2978251'), + (468, 82, 'maybe', '2020-04-19 07:25:16', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978433'), + (468, 83, 'not_attending', '2020-05-08 22:49:39', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978438'), + (468, 84, 'maybe', '2020-04-19 07:25:04', '2025-12-17 19:47:57', 'NmLXw9Nm', '2980871'), + (468, 85, 'attending', '2020-04-22 22:18:28', '2025-12-17 19:47:57', 'NmLXw9Nm', '2980872'), + (468, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'NmLXw9Nm', '2981388'), + (468, 87, 'attending', '2020-04-24 01:23:38', '2025-12-17 19:47:57', 'NmLXw9Nm', '2982602'), + (468, 88, 'attending', '2020-04-14 18:04:00', '2025-12-17 19:47:57', 'NmLXw9Nm', '2982603'), + (468, 89, 'not_attending', '2020-05-02 20:07:18', '2025-12-17 19:47:57', 'NmLXw9Nm', '2982604'), + (468, 91, 'attending', '2020-04-17 20:03:40', '2025-12-17 19:47:57', 'NmLXw9Nm', '2985130'), + (468, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2986743'), + (468, 96, 'attending', '2020-04-19 23:53:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2987453'), + (468, 100, 'attending', '2020-04-24 00:45:20', '2025-12-17 19:47:57', 'NmLXw9Nm', '2989142'), + (468, 101, 'attending', '2020-04-21 21:44:21', '2025-12-17 19:47:57', 'NmLXw9Nm', '2989975'), + (468, 104, 'attending', '2020-04-24 15:50:55', '2025-12-17 19:47:57', 'NmLXw9Nm', '2991471'), + (468, 106, 'attending', '2020-04-26 22:34:22', '2025-12-17 19:47:57', 'NmLXw9Nm', '2993501'), + (468, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'NmLXw9Nm', '2994480'), + (468, 110, 'attending', '2020-05-03 18:39:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2994906'), + (468, 111, 'attending', '2020-06-06 02:50:21', '2025-12-17 19:47:58', 'NmLXw9Nm', '2994907'), + (468, 112, 'maybe', '2020-07-05 16:55:51', '2025-12-17 19:47:55', 'NmLXw9Nm', '2994908'), + (468, 113, 'attending', '2020-07-16 18:52:18', '2025-12-17 19:47:56', 'NmLXw9Nm', '2994909'), + (468, 115, 'not_attending', '2020-05-16 17:32:08', '2025-12-17 19:47:57', 'NmLXw9Nm', '3001217'), + (468, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'NmLXw9Nm', '3015486'), + (468, 121, 'not_attending', '2020-05-27 15:46:44', '2025-12-17 19:47:57', 'NmLXw9Nm', '3023063'), + (468, 123, 'attending', '2020-05-15 03:39:21', '2025-12-17 19:47:57', 'NmLXw9Nm', '3023729'), + (468, 124, 'attending', '2020-05-15 03:39:19', '2025-12-17 19:47:57', 'NmLXw9Nm', '3023809'), + (468, 128, 'attending', '2020-05-23 21:50:32', '2025-12-17 19:47:57', 'NmLXw9Nm', '3027185'), + (468, 133, 'attending', '2020-05-23 21:50:24', '2025-12-17 19:47:58', 'NmLXw9Nm', '3034321'), + (468, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'NmLXw9Nm', '3035881'), + (468, 139, 'not_attending', '2020-06-14 23:07:58', '2025-12-17 19:47:58', 'NmLXw9Nm', '3046190'), + (468, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'NmLXw9Nm', '3049983'), + (468, 146, 'attending', '2020-06-27 18:25:24', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058683'), + (468, 147, 'attending', '2020-08-05 18:44:19', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058684'), + (468, 148, 'attending', '2020-07-04 02:25:22', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058685'), + (468, 149, 'attending', '2020-07-06 00:45:03', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058686'), + (468, 150, 'attending', '2020-07-06 00:44:46', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058687'), + (468, 151, 'maybe', '2020-08-05 18:44:23', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058688'), + (468, 152, 'attending', '2020-08-31 00:05:00', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058689'), + (468, 153, 'not_attending', '2020-07-30 05:18:10', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058690'), + (468, 154, 'attending', '2020-07-06 00:44:56', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058691'), + (468, 155, 'attending', '2020-08-15 18:06:43', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058692'), + (468, 156, 'attending', '2020-09-11 17:20:31', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058693'), + (468, 157, 'attending', '2020-09-08 01:39:43', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058694'), + (468, 158, 'attending', '2020-09-23 22:04:19', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058695'), + (468, 159, 'attending', '2020-09-27 17:14:10', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058696'), + (468, 160, 'attending', '2020-10-24 15:07:49', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058697'), + (468, 161, 'attending', '2020-10-09 17:54:24', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058698'), + (468, 164, 'attending', '2020-11-13 21:04:30', '2025-12-17 19:47:54', 'NmLXw9Nm', '3058701'), + (468, 165, 'attending', '2020-11-07 23:48:11', '2025-12-17 19:47:53', 'NmLXw9Nm', '3058702'), + (468, 166, 'attending', '2020-11-14 23:23:23', '2025-12-17 19:47:54', 'NmLXw9Nm', '3058704'), + (468, 167, 'attending', '2020-11-14 23:23:24', '2025-12-17 19:47:54', 'NmLXw9Nm', '3058705'), + (468, 171, 'attending', '2020-06-11 20:54:40', '2025-12-17 19:47:58', 'NmLXw9Nm', '3058743'), + (468, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'NmLXw9Nm', '3058959'), + (468, 173, 'attending', '2020-06-19 22:39:31', '2025-12-17 19:47:58', 'NmLXw9Nm', '3067093'), + (468, 175, 'attending', '2020-06-08 22:27:19', '2025-12-17 19:47:58', 'NmLXw9Nm', '3068305'), + (468, 181, 'attending', '2020-06-18 19:19:48', '2025-12-17 19:47:58', 'NmLXw9Nm', '3074513'), + (468, 182, 'attending', '2020-06-27 18:25:37', '2025-12-17 19:47:55', 'NmLXw9Nm', '3074514'), + (468, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'NmLXw9Nm', '3075228'), + (468, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'NmLXw9Nm', '3075456'), + (468, 186, 'attending', '2020-06-18 19:20:12', '2025-12-17 19:47:55', 'NmLXw9Nm', '3083791'), + (468, 187, 'attending', '2020-06-18 22:37:32', '2025-12-17 19:47:55', 'NmLXw9Nm', '3085151'), + (468, 189, 'attending', '2020-06-20 02:18:34', '2025-12-17 19:47:58', 'NmLXw9Nm', '3087016'), + (468, 190, 'not_attending', '2020-07-04 02:25:05', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087258'), + (468, 191, 'attending', '2020-07-04 02:25:23', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087259'), + (468, 192, 'not_attending', '2020-07-18 20:56:53', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087260'), + (468, 193, 'attending', '2020-07-06 00:44:45', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087261'), + (468, 194, 'not_attending', '2020-07-30 05:18:05', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087262'), + (468, 195, 'attending', '2020-07-06 00:44:54', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087264'), + (468, 196, 'not_attending', '2020-08-15 18:06:38', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087265'), + (468, 197, 'attending', '2020-08-05 18:44:26', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087266'), + (468, 198, 'not_attending', '2020-08-27 18:53:39', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087267'), + (468, 199, 'attending', '2020-08-31 00:04:58', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087268'), + (468, 200, 'attending', '2020-09-01 17:34:54', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087269'), + (468, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'NmLXw9Nm', '3088653'), + (468, 203, 'attending', '2020-06-22 06:42:35', '2025-12-17 19:47:58', 'NmLXw9Nm', '3091624'), + (468, 207, 'maybe', '2020-07-24 18:56:45', '2025-12-17 19:47:55', 'NmLXw9Nm', '3104807'), + (468, 208, 'attending', '2020-08-07 20:28:06', '2025-12-17 19:47:56', 'NmLXw9Nm', '3104808'), + (468, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'NmLXw9Nm', '3106813'), + (468, 210, 'attending', '2020-06-30 01:58:01', '2025-12-17 19:47:55', 'NmLXw9Nm', '3108972'), + (468, 211, 'attending', '2020-07-01 21:53:48', '2025-12-17 19:47:55', 'NmLXw9Nm', '3113785'), + (468, 213, 'attending', '2020-07-05 16:55:07', '2025-12-17 19:47:55', 'NmLXw9Nm', '3121083'), + (468, 219, 'not_attending', '2020-08-18 15:14:58', '2025-12-17 19:47:56', 'NmLXw9Nm', '3129263'), + (468, 223, 'attending', '2020-09-11 17:20:33', '2025-12-17 19:47:56', 'NmLXw9Nm', '3129980'), + (468, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'NmLXw9Nm', '3132817'), + (468, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'NmLXw9Nm', '3132820'), + (468, 229, 'attending', '2020-07-15 18:05:58', '2025-12-17 19:47:55', 'NmLXw9Nm', '3134135'), + (468, 230, 'attending', '2020-07-19 02:43:46', '2025-12-17 19:47:55', 'NmLXw9Nm', '3139232'), + (468, 232, 'attending', '2020-07-19 20:39:32', '2025-12-17 19:47:55', 'NmLXw9Nm', '3139770'), + (468, 233, 'attending', '2020-07-19 21:06:19', '2025-12-17 19:47:55', 'NmLXw9Nm', '3139773'), + (468, 235, 'not_attending', '2020-07-24 18:56:38', '2025-12-17 19:47:55', 'NmLXw9Nm', '3140861'), + (468, 236, 'attending', '2020-07-20 20:32:54', '2025-12-17 19:47:55', 'NmLXw9Nm', '3140873'), + (468, 241, 'attending', '2020-10-06 20:51:38', '2025-12-17 19:47:52', 'NmLXw9Nm', '3149472'), + (468, 242, 'not_attending', '2020-09-22 01:57:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3149473'), + (468, 263, 'attending', '2020-07-26 22:31:04', '2025-12-17 19:47:55', 'NmLXw9Nm', '3149671'), + (468, 267, 'maybe', '2020-07-29 22:34:19', '2025-12-17 19:47:55', 'NmLXw9Nm', '3152781'), + (468, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3155321'), + (468, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'NmLXw9Nm', '3162006'), + (468, 274, 'attending', '2020-08-03 20:07:05', '2025-12-17 19:47:56', 'NmLXw9Nm', '3163404'), + (468, 276, 'attending', '2020-08-04 22:52:20', '2025-12-17 19:47:56', 'NmLXw9Nm', '3163408'), + (468, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3163442'), + (468, 278, 'not_attending', '2020-08-08 03:11:21', '2025-12-17 19:47:56', 'NmLXw9Nm', '3165192'), + (468, 279, 'not_attending', '2020-08-08 03:11:32', '2025-12-17 19:47:56', 'NmLXw9Nm', '3165202'), + (468, 281, 'attending', '2020-08-05 18:43:54', '2025-12-17 19:47:56', 'NmLXw9Nm', '3166945'), + (468, 282, 'attending', '2020-08-06 21:17:00', '2025-12-17 19:47:56', 'NmLXw9Nm', '3169070'), + (468, 283, 'attending', '2020-08-08 02:55:22', '2025-12-17 19:47:56', 'NmLXw9Nm', '3169555'), + (468, 286, 'not_attending', '2020-08-19 06:19:52', '2025-12-17 19:47:56', 'NmLXw9Nm', '3170246'), + (468, 288, 'not_attending', '2020-08-19 06:19:47', '2025-12-17 19:47:56', 'NmLXw9Nm', '3170249'), + (468, 289, 'not_attending', '2020-08-28 20:53:23', '2025-12-17 19:47:56', 'NmLXw9Nm', '3170250'), + (468, 293, 'not_attending', '2020-08-13 21:01:26', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172832'), + (468, 294, 'not_attending', '2020-08-14 18:07:12', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172833'), + (468, 295, 'not_attending', '2020-08-19 06:19:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172834'), + (468, 296, 'not_attending', '2020-09-11 19:34:50', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172876'), + (468, 299, 'not_attending', '2020-08-17 21:18:31', '2025-12-17 19:47:56', 'NmLXw9Nm', '3176591'), + (468, 303, 'not_attending', '2020-08-14 18:06:35', '2025-12-17 19:47:56', 'NmLXw9Nm', '3178444'), + (468, 305, 'attending', '2020-08-17 21:11:24', '2025-12-17 19:47:56', 'NmLXw9Nm', '3179555'), + (468, 306, 'not_attending', '2020-08-21 22:05:19', '2025-12-17 19:47:56', 'NmLXw9Nm', '3179777'), + (468, 307, 'attending', '2020-08-17 15:04:46', '2025-12-17 19:47:56', 'NmLXw9Nm', '3182590'), + (468, 309, 'not_attending', '2020-08-21 22:05:15', '2025-12-17 19:47:56', 'NmLXw9Nm', '3185332'), + (468, 311, 'attending', '2020-09-08 01:39:41', '2025-12-17 19:47:56', 'NmLXw9Nm', '3186057'), + (468, 314, 'not_attending', '2020-08-25 19:03:15', '2025-12-17 19:47:56', 'NmLXw9Nm', '3188480'), + (468, 315, 'attending', '2020-08-23 16:49:50', '2025-12-17 19:47:56', 'NmLXw9Nm', '3189085'), + (468, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'NmLXw9Nm', '3191735'), + (468, 318, 'attending', '2020-09-01 14:59:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3193885'), + (468, 322, 'not_attending', '2020-09-12 20:46:25', '2025-12-17 19:47:56', 'NmLXw9Nm', '3197080'), + (468, 323, 'not_attending', '2020-09-15 18:31:03', '2025-12-17 19:47:56', 'NmLXw9Nm', '3197081'), + (468, 325, 'not_attending', '2020-09-22 01:57:54', '2025-12-17 19:47:51', 'NmLXw9Nm', '3197083'), + (468, 326, 'not_attending', '2020-09-22 01:58:13', '2025-12-17 19:47:52', 'NmLXw9Nm', '3197084'), + (468, 330, 'attending', '2020-09-01 17:34:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3197322'), + (468, 333, 'not_attending', '2020-10-06 18:45:59', '2025-12-17 19:47:52', 'NmLXw9Nm', '3199782'), + (468, 334, 'not_attending', '2020-10-08 15:58:55', '2025-12-17 19:47:52', 'NmLXw9Nm', '3199784'), + (468, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'NmLXw9Nm', '3200209'), + (468, 336, 'not_attending', '2020-09-12 20:46:27', '2025-12-17 19:47:56', 'NmLXw9Nm', '3200495'), + (468, 338, 'attending', '2020-09-04 23:09:52', '2025-12-17 19:47:56', 'NmLXw9Nm', '3203106'), + (468, 339, 'not_attending', '2020-09-10 00:04:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3204469'), + (468, 340, 'not_attending', '2020-09-12 20:46:23', '2025-12-17 19:47:56', 'NmLXw9Nm', '3204470'), + (468, 341, 'not_attending', '2020-09-22 01:58:15', '2025-12-17 19:47:52', 'NmLXw9Nm', '3204471'), + (468, 342, 'attending', '2020-10-01 22:38:52', '2025-12-17 19:47:52', 'NmLXw9Nm', '3204472'), + (468, 343, 'not_attending', '2020-09-22 01:57:50', '2025-12-17 19:47:56', 'NmLXw9Nm', '3206759'), + (468, 346, 'attending', '2020-09-10 00:54:41', '2025-12-17 19:47:56', 'NmLXw9Nm', '3207515'), + (468, 347, 'not_attending', '2020-09-22 01:58:09', '2025-12-17 19:47:51', 'NmLXw9Nm', '3207930'), + (468, 349, 'attending', '2020-09-11 21:27:06', '2025-12-17 19:47:56', 'NmLXw9Nm', '3209194'), + (468, 352, 'not_attending', '2020-09-12 20:46:32', '2025-12-17 19:47:56', 'NmLXw9Nm', '3210514'), + (468, 353, 'attending', '2020-09-13 05:35:51', '2025-12-17 19:47:56', 'NmLXw9Nm', '3210789'), + (468, 354, 'attending', '2020-09-13 20:52:32', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212570'), + (468, 355, 'not_attending', '2020-09-15 18:30:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212571'), + (468, 356, 'not_attending', '2020-09-22 01:57:55', '2025-12-17 19:47:51', 'NmLXw9Nm', '3212572'), + (468, 358, 'not_attending', '2020-09-15 18:31:11', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212579'), + (468, 359, 'attending', '2020-09-13 21:48:17', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212624'), + (468, 360, 'attending', '2020-09-14 01:30:13', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212671'), + (468, 361, 'attending', '2020-09-14 18:41:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3213323'), + (468, 362, 'attending', '2020-09-26 02:25:39', '2025-12-17 19:47:52', 'NmLXw9Nm', '3214207'), + (468, 363, 'not_attending', '2020-09-16 22:05:30', '2025-12-17 19:47:52', 'NmLXw9Nm', '3217037'), + (468, 364, 'attending', '2020-09-21 22:19:00', '2025-12-17 19:47:56', 'NmLXw9Nm', '3217106'), + (468, 365, 'not_attending', '2020-09-22 01:58:01', '2025-12-17 19:47:52', 'NmLXw9Nm', '3218510'), + (468, 366, 'not_attending', '2020-09-22 01:57:46', '2025-12-17 19:47:56', 'NmLXw9Nm', '3219750'), + (468, 367, 'not_attending', '2020-09-22 01:58:04', '2025-12-17 19:47:51', 'NmLXw9Nm', '3219751'), + (468, 375, 'not_attending', '2020-10-06 18:45:52', '2025-12-17 19:47:52', 'NmLXw9Nm', '3222825'), + (468, 378, 'not_attending', '2020-09-23 22:04:05', '2025-12-17 19:47:52', 'NmLXw9Nm', '3223725'), + (468, 379, 'attending', '2020-09-28 23:11:58', '2025-12-17 19:47:52', 'NmLXw9Nm', '3226266'), + (468, 381, 'attending', '2020-09-26 18:51:03', '2025-12-17 19:47:52', 'NmLXw9Nm', '3226871'), + (468, 384, 'attending', '2020-09-28 23:11:23', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228696'), + (468, 385, 'attending', '2020-09-28 23:14:30', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228698'), + (468, 386, 'attending', '2020-10-09 23:59:25', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228699'), + (468, 387, 'attending', '2020-09-28 23:16:37', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228700'), + (468, 388, 'attending', '2020-10-19 19:42:15', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228701'), + (468, 389, 'attending', '2020-10-01 21:36:56', '2025-12-17 19:47:52', 'NmLXw9Nm', '3231284'), + (468, 394, 'not_attending', '2021-01-04 09:31:17', '2025-12-17 19:47:48', 'NmLXw9Nm', '3236449'), + (468, 397, 'not_attending', '2021-05-25 23:48:35', '2025-12-17 19:47:47', 'NmLXw9Nm', '3236452'), + (468, 399, 'attending', '2020-11-13 00:17:37', '2025-12-17 19:47:54', 'NmLXw9Nm', '3236454'), + (468, 400, 'not_attending', '2021-02-04 01:04:27', '2025-12-17 19:47:50', 'NmLXw9Nm', '3236455'), + (468, 408, 'not_attending', '2021-02-18 03:21:38', '2025-12-17 19:47:50', 'NmLXw9Nm', '3236466'), + (468, 412, 'not_attending', '2020-10-06 18:45:55', '2025-12-17 19:47:52', 'NmLXw9Nm', '3236636'), + (468, 415, 'attending', '2020-10-06 18:45:45', '2025-12-17 19:47:52', 'NmLXw9Nm', '3238044'), + (468, 416, 'not_attending', '2020-10-06 23:07:18', '2025-12-17 19:47:52', 'NmLXw9Nm', '3238073'), + (468, 420, 'attending', '2020-10-11 22:35:21', '2025-12-17 19:47:52', 'NmLXw9Nm', '3245293'), + (468, 421, 'attending', '2020-10-11 22:35:18', '2025-12-17 19:47:52', 'NmLXw9Nm', '3245294'), + (468, 422, 'attending', '2020-10-11 22:35:10', '2025-12-17 19:47:53', 'NmLXw9Nm', '3245295'), + (468, 423, 'attending', '2020-10-11 22:35:16', '2025-12-17 19:47:53', 'NmLXw9Nm', '3245296'), + (468, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLXw9Nm', '3245751'), + (468, 426, 'attending', '2020-10-17 04:45:50', '2025-12-17 19:47:52', 'NmLXw9Nm', '3250232'), + (468, 427, 'attending', '2020-10-14 14:37:36', '2025-12-17 19:47:53', 'NmLXw9Nm', '3250233'), + (468, 428, 'attending', '2020-10-16 20:05:29', '2025-12-17 19:47:53', 'NmLXw9Nm', '3250332'), + (468, 429, 'attending', '2020-11-02 01:49:21', '2025-12-17 19:47:54', 'NmLXw9Nm', '3250523'), + (468, 438, 'attending', '2020-10-28 22:58:15', '2025-12-17 19:47:53', 'NmLXw9Nm', '3256163'), + (468, 439, 'not_attending', '2020-10-28 21:05:39', '2025-12-17 19:47:53', 'NmLXw9Nm', '3256164'), + (468, 440, 'attending', '2020-10-18 16:07:14', '2025-12-17 19:47:53', 'NmLXw9Nm', '3256168'), + (468, 441, 'attending', '2020-10-18 16:11:00', '2025-12-17 19:47:54', 'NmLXw9Nm', '3256169'), + (468, 442, 'attending', '2020-10-22 00:40:01', '2025-12-17 19:47:52', 'NmLXw9Nm', '3260345'), + (468, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLXw9Nm', '3263578'), + (468, 444, 'attending', '2020-10-30 21:39:45', '2025-12-17 19:47:53', 'NmLXw9Nm', '3263745'), + (468, 445, 'not_attending', '2020-11-12 23:47:01', '2025-12-17 19:47:54', 'NmLXw9Nm', '3266138'), + (468, 446, 'attending', '2020-10-27 01:08:00', '2025-12-17 19:47:53', 'NmLXw9Nm', '3267163'), + (468, 451, 'not_attending', '2020-11-02 19:03:02', '2025-12-17 19:47:53', 'NmLXw9Nm', '3272186'), + (468, 455, 'not_attending', '2020-11-07 03:45:46', '2025-12-17 19:47:53', 'NmLXw9Nm', '3276391'), + (468, 456, 'attending', '2020-11-05 05:33:26', '2025-12-17 19:47:54', 'NmLXw9Nm', '3276428'), + (468, 458, 'not_attending', '2020-11-10 18:44:51', '2025-12-17 19:47:53', 'NmLXw9Nm', '3279233'), + (468, 459, 'attending', '2020-11-08 04:59:17', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281467'), + (468, 460, 'not_attending', '2020-11-19 22:33:30', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281468'), + (468, 461, 'attending', '2020-11-08 05:13:03', '2025-12-17 19:47:53', 'NmLXw9Nm', '3281469'), + (468, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'NmLXw9Nm', '3281470'), + (468, 464, 'not_attending', '2020-11-14 23:23:19', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281554'), + (468, 466, 'not_attending', '2020-11-14 23:23:08', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281829'), + (468, 467, 'attending', '2020-11-09 00:14:41', '2025-12-17 19:47:54', 'NmLXw9Nm', '3282756'), + (468, 468, 'attending', '2020-11-10 22:36:41', '2025-12-17 19:47:54', 'NmLXw9Nm', '3285413'), + (468, 469, 'attending', '2020-11-10 22:37:10', '2025-12-17 19:47:54', 'NmLXw9Nm', '3285414'), + (468, 471, 'not_attending', '2020-11-14 23:23:12', '2025-12-17 19:47:54', 'NmLXw9Nm', '3285445'), + (468, 474, 'attending', '2020-11-11 23:24:04', '2025-12-17 19:47:54', 'NmLXw9Nm', '3286570'), + (468, 476, 'not_attending', '2020-11-14 23:23:10', '2025-12-17 19:47:54', 'NmLXw9Nm', '3286982'), + (468, 477, 'maybe', '2020-12-04 23:46:19', '2025-12-17 19:47:54', 'NmLXw9Nm', '3289559'), + (468, 479, 'attending', '2020-11-18 21:19:25', '2025-12-17 19:47:54', 'NmLXw9Nm', '3295306'), + (468, 481, 'not_attending', '2020-11-19 23:03:00', '2025-12-17 19:47:54', 'NmLXw9Nm', '3297764'), + (468, 483, 'attending', '2020-11-20 00:05:40', '2025-12-17 19:47:54', 'NmLXw9Nm', '3297791'), + (468, 484, 'not_attending', '2020-11-20 23:32:15', '2025-12-17 19:47:54', 'NmLXw9Nm', '3297792'), + (468, 487, 'attending', '2020-11-27 21:14:34', '2025-12-17 19:47:54', 'NmLXw9Nm', '3311122'), + (468, 488, 'attending', '2020-11-26 18:06:01', '2025-12-17 19:47:54', 'NmLXw9Nm', '3312757'), + (468, 493, 'attending', '2020-11-29 04:42:28', '2025-12-17 19:47:54', 'NmLXw9Nm', '3313856'), + (468, 496, 'attending', '2020-11-29 21:44:27', '2025-12-17 19:47:54', 'NmLXw9Nm', '3314269'), + (468, 497, 'attending', '2020-11-29 21:44:28', '2025-12-17 19:47:55', 'NmLXw9Nm', '3314270'), + (468, 498, 'attending', '2020-11-29 22:08:39', '2025-12-17 19:47:54', 'NmLXw9Nm', '3314302'), + (468, 499, 'attending', '2020-11-30 05:05:07', '2025-12-17 19:47:55', 'NmLXw9Nm', '3314909'), + (468, 500, 'maybe', '2020-12-14 20:47:15', '2025-12-17 19:47:55', 'NmLXw9Nm', '3314964'), + (468, 501, 'attending', '2020-12-02 03:26:07', '2025-12-17 19:47:54', 'NmLXw9Nm', '3317834'), + (468, 502, 'not_attending', '2020-12-11 23:52:10', '2025-12-17 19:47:55', 'NmLXw9Nm', '3323365'), + (468, 507, 'attending', '2020-12-07 20:47:28', '2025-12-17 19:47:48', 'NmLXw9Nm', '3324148'), + (468, 510, 'not_attending', '2021-01-27 07:06:18', '2025-12-17 19:47:49', 'NmLXw9Nm', '3324233'), + (468, 513, 'not_attending', '2020-12-20 00:13:43', '2025-12-17 19:47:55', 'NmLXw9Nm', '3329383'), + (468, 514, 'attending', '2020-12-10 19:14:50', '2025-12-17 19:47:55', 'NmLXw9Nm', '3329400'), + (468, 517, 'attending', '2020-12-14 20:50:28', '2025-12-17 19:47:48', 'NmLXw9Nm', '3337137'), + (468, 518, 'attending', '2020-12-14 20:50:27', '2025-12-17 19:47:48', 'NmLXw9Nm', '3337138'), + (468, 526, 'maybe', '2020-12-29 20:38:29', '2025-12-17 19:47:48', 'NmLXw9Nm', '3351539'), + (468, 528, 'attending', '2021-01-03 06:15:39', '2025-12-17 19:47:48', 'NmLXw9Nm', '3363022'), + (468, 529, 'not_attending', '2021-01-04 09:31:05', '2025-12-17 19:47:48', 'NmLXw9Nm', '3364568'), + (468, 530, 'not_attending', '2021-01-04 09:31:02', '2025-12-17 19:47:48', 'NmLXw9Nm', '3373923'), + (468, 531, 'not_attending', '2021-01-02 05:22:13', '2025-12-17 19:47:48', 'NmLXw9Nm', '3378210'), + (468, 532, 'not_attending', '2021-01-04 07:06:44', '2025-12-17 19:47:48', 'NmLXw9Nm', '3381412'), + (468, 533, 'not_attending', '2021-01-04 09:31:12', '2025-12-17 19:47:48', 'NmLXw9Nm', '3382812'), + (468, 535, 'not_attending', '2021-01-07 03:25:23', '2025-12-17 19:47:48', 'NmLXw9Nm', '3384729'), + (468, 536, 'attending', '2021-01-06 02:20:41', '2025-12-17 19:47:48', 'NmLXw9Nm', '3386848'), + (468, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'NmLXw9Nm', '3389527'), + (468, 541, 'attending', '2021-01-09 08:42:05', '2025-12-17 19:47:48', 'NmLXw9Nm', '3391683'), + (468, 542, 'attending', '2021-01-10 07:38:15', '2025-12-17 19:47:48', 'NmLXw9Nm', '3395013'), + (468, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'NmLXw9Nm', '3396499'), + (468, 545, 'attending', '2021-01-19 03:30:00', '2025-12-17 19:47:49', 'NmLXw9Nm', '3396502'), + (468, 546, 'not_attending', '2021-01-20 02:00:10', '2025-12-17 19:47:49', 'NmLXw9Nm', '3396503'), + (468, 547, 'maybe', '2021-01-20 05:08:07', '2025-12-17 19:47:49', 'NmLXw9Nm', '3396504'), + (468, 548, 'maybe', '2021-01-14 22:43:19', '2025-12-17 19:47:48', 'NmLXw9Nm', '3403650'), + (468, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'NmLXw9Nm', '3406988'), + (468, 550, 'not_attending', '2021-01-17 05:46:41', '2025-12-17 19:47:48', 'NmLXw9Nm', '3407018'), + (468, 553, 'maybe', '2021-01-14 22:43:17', '2025-12-17 19:47:48', 'NmLXw9Nm', '3407248'), + (468, 555, 'not_attending', '2021-01-23 22:22:05', '2025-12-17 19:47:49', 'NmLXw9Nm', '3416576'), + (468, 557, 'attending', '2021-01-21 00:59:00', '2025-12-17 19:47:49', 'NmLXw9Nm', '3418748'), + (468, 558, 'not_attending', '2021-01-22 23:54:23', '2025-12-17 19:47:49', 'NmLXw9Nm', '3418925'), + (468, 559, 'not_attending', '2021-01-27 07:06:12', '2025-12-17 19:47:49', 'NmLXw9Nm', '3421439'), + (468, 560, 'attending', '2021-01-21 21:03:57', '2025-12-17 19:47:49', 'NmLXw9Nm', '3421715'), + (468, 561, 'not_attending', '2021-01-23 22:22:03', '2025-12-17 19:47:49', 'NmLXw9Nm', '3421916'), + (468, 565, 'not_attending', '2021-01-27 07:05:58', '2025-12-17 19:47:49', 'NmLXw9Nm', '3426083'), + (468, 567, 'maybe', '2021-01-30 21:25:29', '2025-12-17 19:47:50', 'NmLXw9Nm', '3428895'), + (468, 568, 'attending', '2021-01-28 05:40:12', '2025-12-17 19:47:50', 'NmLXw9Nm', '3430267'), + (468, 569, 'not_attending', '2021-01-27 07:06:01', '2025-12-17 19:47:49', 'NmLXw9Nm', '3432673'), + (468, 570, 'attending', '2021-01-26 04:25:13', '2025-12-17 19:47:50', 'NmLXw9Nm', '3435538'), + (468, 571, 'not_attending', '2021-02-11 20:36:37', '2025-12-17 19:47:50', 'NmLXw9Nm', '3435539'), + (468, 573, 'not_attending', '2021-02-26 16:26:36', '2025-12-17 19:47:50', 'NmLXw9Nm', '3435542'), + (468, 575, 'attending', '2021-01-28 05:40:11', '2025-12-17 19:47:50', 'NmLXw9Nm', '3437492'), + (468, 576, 'not_attending', '2021-01-28 05:38:51', '2025-12-17 19:47:50', 'NmLXw9Nm', '3438748'), + (468, 577, 'not_attending', '2021-01-28 21:28:55', '2025-12-17 19:47:49', 'NmLXw9Nm', '3439167'), + (468, 578, 'not_attending', '2021-01-28 19:59:04', '2025-12-17 19:47:50', 'NmLXw9Nm', '3440043'), + (468, 579, 'not_attending', '2021-02-04 01:04:44', '2025-12-17 19:47:50', 'NmLXw9Nm', '3440978'), + (468, 581, 'attending', '2021-01-30 03:48:17', '2025-12-17 19:47:50', 'NmLXw9Nm', '3445029'), + (468, 582, 'attending', '2021-02-02 01:04:59', '2025-12-17 19:47:50', 'NmLXw9Nm', '3445769'), + (468, 583, 'attending', '2021-02-01 21:50:03', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449144'), + (468, 584, 'not_attending', '2021-02-04 01:04:24', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449466'), + (468, 588, 'not_attending', '2021-02-12 21:36:07', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449471'), + (468, 589, 'attending', '2021-02-20 04:03:44', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449473'), + (468, 591, 'attending', '2021-02-04 19:45:01', '2025-12-17 19:47:50', 'NmLXw9Nm', '3465880'), + (468, 592, 'not_attending', '2021-02-23 03:46:29', '2025-12-17 19:47:50', 'NmLXw9Nm', '3467757'), + (468, 597, 'not_attending', '2021-03-11 20:06:58', '2025-12-17 19:47:51', 'NmLXw9Nm', '3467764'), + (468, 599, 'not_attending', '2021-02-15 23:35:56', '2025-12-17 19:47:50', 'NmLXw9Nm', '3468117'), + (468, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'NmLXw9Nm', '3468125'), + (468, 602, 'not_attending', '2021-02-11 04:05:06', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470303'), + (468, 603, 'attending', '2021-02-14 05:31:36', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470304'), + (468, 604, 'attending', '2021-02-27 21:22:56', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470305'), + (468, 605, 'attending', '2021-02-15 00:38:32', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470991'), + (468, 607, 'not_attending', '2021-02-17 22:39:40', '2025-12-17 19:47:50', 'NmLXw9Nm', '3471882'), + (468, 608, 'attending', '2021-02-09 03:27:01', '2025-12-17 19:47:50', 'NmLXw9Nm', '3475332'), + (468, 609, 'not_attending', '2021-02-11 20:36:23', '2025-12-17 19:47:50', 'NmLXw9Nm', '3480916'), + (468, 610, 'attending', '2021-02-11 04:11:36', '2025-12-17 19:47:50', 'NmLXw9Nm', '3482159'), + (468, 611, 'attending', '2021-02-11 04:01:14', '2025-12-17 19:47:50', 'NmLXw9Nm', '3482659'), + (468, 612, 'attending', '2021-02-14 04:31:33', '2025-12-17 19:47:50', 'NmLXw9Nm', '3490040'), + (468, 613, 'attending', '2021-02-14 04:31:35', '2025-12-17 19:47:50', 'NmLXw9Nm', '3490041'), + (468, 614, 'attending', '2021-02-14 04:34:08', '2025-12-17 19:47:51', 'NmLXw9Nm', '3490042'), + (468, 615, 'not_attending', '2021-02-20 22:32:35', '2025-12-17 19:47:50', 'NmLXw9Nm', '3490045'), + (468, 616, 'attending', '2021-02-21 20:01:12', '2025-12-17 19:47:50', 'NmLXw9Nm', '3493478'), + (468, 618, 'attending', '2021-02-19 20:19:08', '2025-12-17 19:47:50', 'NmLXw9Nm', '3503991'), + (468, 619, 'attending', '2021-02-20 22:53:43', '2025-12-17 19:47:50', 'NmLXw9Nm', '3506310'), + (468, 621, 'attending', '2021-03-01 20:30:21', '2025-12-17 19:47:51', 'NmLXw9Nm', '3517815'), + (468, 622, 'attending', '2021-03-10 20:38:59', '2025-12-17 19:47:51', 'NmLXw9Nm', '3517816'), + (468, 623, 'not_attending', '2021-02-28 21:45:43', '2025-12-17 19:47:51', 'NmLXw9Nm', '3523941'), + (468, 624, 'attending', '2021-02-27 21:22:52', '2025-12-17 19:47:50', 'NmLXw9Nm', '3528556'), + (468, 625, 'attending', '2021-02-28 21:05:50', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533296'), + (468, 626, 'attending', '2021-02-28 21:05:49', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533298'), + (468, 627, 'attending', '2021-02-28 21:16:03', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533303'), + (468, 628, 'attending', '2021-02-28 21:17:19', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533305'), + (468, 629, 'attending', '2021-02-28 22:42:48', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533307'), + (468, 631, 'maybe', '2021-03-06 22:46:36', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533850'), + (468, 637, 'attending', '2021-03-01 18:27:35', '2025-12-17 19:47:51', 'NmLXw9Nm', '3536411'), + (468, 638, 'attending', '2021-03-01 18:41:29', '2025-12-17 19:47:44', 'NmLXw9Nm', '3536632'), + (468, 639, 'maybe', '2021-03-21 06:03:30', '2025-12-17 19:47:51', 'NmLXw9Nm', '3536656'), + (468, 641, 'attending', '2021-03-21 22:58:08', '2025-12-17 19:47:44', 'NmLXw9Nm', '3539916'), + (468, 642, 'attending', '2021-04-09 20:10:06', '2025-12-17 19:47:44', 'NmLXw9Nm', '3539917'), + (468, 643, 'attending', '2021-04-15 23:09:26', '2025-12-17 19:47:45', 'NmLXw9Nm', '3539918'), + (468, 644, 'attending', '2021-04-21 21:59:32', '2025-12-17 19:47:45', 'NmLXw9Nm', '3539919'), + (468, 645, 'attending', '2021-05-06 20:44:31', '2025-12-17 19:47:46', 'NmLXw9Nm', '3539920'), + (468, 646, 'attending', '2021-05-06 20:44:39', '2025-12-17 19:47:46', 'NmLXw9Nm', '3539921'), + (468, 647, 'not_attending', '2021-05-20 21:34:35', '2025-12-17 19:47:46', 'NmLXw9Nm', '3539922'), + (468, 648, 'attending', '2021-05-29 16:06:58', '2025-12-17 19:47:47', 'NmLXw9Nm', '3539923'), + (468, 649, 'attending', '2021-03-11 20:07:04', '2025-12-17 19:47:51', 'NmLXw9Nm', '3539927'), + (468, 650, 'not_attending', '2021-03-27 21:32:12', '2025-12-17 19:47:44', 'NmLXw9Nm', '3539928'), + (468, 651, 'attending', '2021-03-10 20:39:29', '2025-12-17 19:47:51', 'NmLXw9Nm', '3541045'), + (468, 652, 'attending', '2021-03-05 20:05:26', '2025-12-17 19:47:51', 'NmLXw9Nm', '3544466'), + (468, 653, 'attending', '2021-03-06 23:38:13', '2025-12-17 19:47:51', 'NmLXw9Nm', '3546917'), + (468, 655, 'attending', '2021-03-11 20:07:08', '2025-12-17 19:47:51', 'NmLXw9Nm', '3547129'), + (468, 656, 'attending', '2021-03-11 20:07:06', '2025-12-17 19:47:51', 'NmLXw9Nm', '3547130'), + (468, 657, 'attending', '2021-04-17 18:16:04', '2025-12-17 19:47:45', 'NmLXw9Nm', '3547132'), + (468, 659, 'attending', '2021-04-10 21:41:30', '2025-12-17 19:47:44', 'NmLXw9Nm', '3547135'), + (468, 661, 'attending', '2021-03-21 22:58:17', '2025-12-17 19:47:44', 'NmLXw9Nm', '3547137'), + (468, 662, 'maybe', '2021-04-24 21:56:10', '2025-12-17 19:47:45', 'NmLXw9Nm', '3547138'), + (468, 664, 'attending', '2021-09-11 00:49:47', '2025-12-17 19:47:43', 'NmLXw9Nm', '3547142'), + (468, 665, 'attending', '2021-08-29 22:35:59', '2025-12-17 19:47:43', 'NmLXw9Nm', '3547143'), + (468, 667, 'maybe', '2021-08-27 17:24:30', '2025-12-17 19:47:42', 'NmLXw9Nm', '3547145'), + (468, 668, 'not_attending', '2021-05-15 18:02:24', '2025-12-17 19:47:46', 'NmLXw9Nm', '3547146'), + (468, 669, 'attending', '2021-06-26 18:01:04', '2025-12-17 19:47:38', 'NmLXw9Nm', '3547147'), + (468, 670, 'attending', '2021-06-15 20:10:11', '2025-12-17 19:47:48', 'NmLXw9Nm', '3547148'), + (468, 672, 'not_attending', '2021-05-21 02:06:28', '2025-12-17 19:47:46', 'NmLXw9Nm', '3547150'), + (468, 677, 'attending', '2021-05-29 21:19:28', '2025-12-17 19:47:47', 'NmLXw9Nm', '3547155'), + (468, 679, 'attending', '2021-03-12 02:14:41', '2025-12-17 19:47:44', 'NmLXw9Nm', '3547168'), + (468, 680, 'attending', '2021-03-07 05:19:04', '2025-12-17 19:47:51', 'NmLXw9Nm', '3547700'), + (468, 683, 'not_attending', '2021-03-11 07:37:23', '2025-12-17 19:47:51', 'NmLXw9Nm', '3548818'), + (468, 684, 'not_attending', '2021-03-11 20:06:56', '2025-12-17 19:47:51', 'NmLXw9Nm', '3549257'), + (468, 686, 'attending', '2021-03-09 19:54:24', '2025-12-17 19:47:51', 'NmLXw9Nm', '3553333'), + (468, 687, 'not_attending', '2021-03-09 21:52:26', '2025-12-17 19:47:51', 'NmLXw9Nm', '3553405'), + (468, 690, 'not_attending', '2021-03-15 18:04:09', '2025-12-17 19:47:44', 'NmLXw9Nm', '3559954'), + (468, 692, 'attending', '2021-03-13 22:34:22', '2025-12-17 19:47:51', 'NmLXw9Nm', '3561995'), + (468, 695, 'attending', '2021-03-14 05:34:10', '2025-12-17 19:47:51', 'NmLXw9Nm', '3567535'), + (468, 696, 'attending', '2021-03-14 05:37:37', '2025-12-17 19:47:51', 'NmLXw9Nm', '3567536'), + (468, 697, 'attending', '2021-03-14 05:48:48', '2025-12-17 19:47:44', 'NmLXw9Nm', '3567537'), + (468, 705, 'attending', '2021-03-19 17:01:14', '2025-12-17 19:47:44', 'NmLXw9Nm', '3581895'), + (468, 706, 'not_attending', '2021-04-18 16:38:44', '2025-12-17 19:47:45', 'NmLXw9Nm', '3582734'), + (468, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLXw9Nm', '3583262'), + (468, 711, 'attending', '2021-03-22 05:29:15', '2025-12-17 19:47:44', 'NmLXw9Nm', '3588075'), + (468, 716, 'attending', '2021-03-25 06:25:50', '2025-12-17 19:47:44', 'NmLXw9Nm', '3618353'), + (468, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLXw9Nm', '3619523'), + (468, 720, 'attending', '2021-03-29 01:26:44', '2025-12-17 19:47:44', 'NmLXw9Nm', '3643450'), + (468, 721, 'attending', '2021-03-29 03:56:15', '2025-12-17 19:47:44', 'NmLXw9Nm', '3643622'), + (468, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLXw9Nm', '3661369'), + (468, 728, 'not_attending', '2021-04-14 21:50:02', '2025-12-17 19:47:44', 'NmLXw9Nm', '3668073'), + (468, 730, 'not_attending', '2021-05-03 03:47:51', '2025-12-17 19:47:46', 'NmLXw9Nm', '3668076'), + (468, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLXw9Nm', '3674262'), + (468, 734, 'attending', '2021-04-04 20:34:44', '2025-12-17 19:47:44', 'NmLXw9Nm', '3676806'), + (468, 735, 'not_attending', '2021-05-02 18:36:10', '2025-12-17 19:47:46', 'NmLXw9Nm', '3677402'), + (468, 740, 'not_attending', '2021-04-13 18:40:01', '2025-12-17 19:47:46', 'NmLXw9Nm', '3680617'), + (468, 750, 'attending', '2021-04-09 20:32:25', '2025-12-17 19:47:44', 'NmLXw9Nm', '3689962'), + (468, 752, 'not_attending', '2021-04-15 23:09:07', '2025-12-17 19:47:44', 'NmLXw9Nm', '3699422'), + (468, 753, 'not_attending', '2021-04-17 17:09:25', '2025-12-17 19:47:45', 'NmLXw9Nm', '3701861'), + (468, 754, 'attending', '2021-04-12 04:39:41', '2025-12-17 19:47:45', 'NmLXw9Nm', '3701863'), + (468, 755, 'not_attending', '2021-04-17 18:24:26', '2025-12-17 19:47:45', 'NmLXw9Nm', '3701864'), + (468, 762, 'attending', '2021-04-17 18:23:40', '2025-12-17 19:47:45', 'NmLXw9Nm', '3719118'), + (468, 763, 'attending', '2021-04-17 18:25:07', '2025-12-17 19:47:46', 'NmLXw9Nm', '3719122'), + (468, 766, 'attending', '2021-05-12 21:53:31', '2025-12-17 19:47:46', 'NmLXw9Nm', '3721383'), + (468, 771, 'attending', '2021-04-19 21:21:53', '2025-12-17 19:47:46', 'NmLXw9Nm', '3726420'), + (468, 772, 'attending', '2021-04-19 21:23:12', '2025-12-17 19:47:46', 'NmLXw9Nm', '3726421'), + (468, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLXw9Nm', '3730212'), + (468, 777, 'attending', '2021-04-26 20:29:48', '2025-12-17 19:47:46', 'NmLXw9Nm', '3746248'), + (468, 779, 'attending', '2021-04-28 02:32:14', '2025-12-17 19:47:46', 'NmLXw9Nm', '3757118'), + (468, 780, 'attending', '2021-04-28 02:34:16', '2025-12-17 19:47:46', 'NmLXw9Nm', '3757175'), + (468, 783, 'attending', '2021-05-01 00:36:06', '2025-12-17 19:47:46', 'NmLXw9Nm', '3767471'), + (468, 785, 'attending', '2021-05-04 19:10:53', '2025-12-17 19:47:46', 'NmLXw9Nm', '3779779'), + (468, 786, 'attending', '2021-05-04 20:59:49', '2025-12-17 19:47:46', 'NmLXw9Nm', '3780093'), + (468, 788, 'maybe', '2021-05-05 20:22:19', '2025-12-17 19:47:46', 'NmLXw9Nm', '3781975'), + (468, 790, 'not_attending', '2021-05-07 21:40:56', '2025-12-17 19:47:46', 'NmLXw9Nm', '3789923'), + (468, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLXw9Nm', '3793156'), + (468, 794, 'not_attending', '2021-05-25 23:48:30', '2025-12-17 19:47:47', 'NmLXw9Nm', '3793538'), + (468, 797, 'not_attending', '2021-05-25 23:48:27', '2025-12-17 19:47:47', 'NmLXw9Nm', '3796195'), + (468, 813, 'not_attending', '2021-05-15 18:02:21', '2025-12-17 19:47:46', 'NmLXw9Nm', '3810231'), + (468, 815, 'not_attending', '2021-05-25 23:48:24', '2025-12-17 19:47:47', 'NmLXw9Nm', '3818136'), + (468, 816, 'not_attending', '2021-05-18 20:25:59', '2025-12-17 19:47:46', 'NmLXw9Nm', '3826524'), + (468, 818, 'attending', '2021-05-21 02:12:38', '2025-12-17 19:47:47', 'NmLXw9Nm', '3833015'), + (468, 819, 'attending', '2021-05-25 03:26:07', '2025-12-17 19:47:47', 'NmLXw9Nm', '3833017'), + (468, 822, 'attending', '2021-06-03 03:59:40', '2025-12-17 19:47:47', 'NmLXw9Nm', '3969986'), + (468, 823, 'attending', '2021-06-15 20:10:14', '2025-12-17 19:47:48', 'NmLXw9Nm', '3974109'), + (468, 826, 'attending', '2021-06-06 02:51:34', '2025-12-17 19:47:48', 'NmLXw9Nm', '3975310'), + (468, 827, 'attending', '2021-06-01 20:31:19', '2025-12-17 19:47:47', 'NmLXw9Nm', '3975311'), + (468, 828, 'maybe', '2021-06-12 18:53:03', '2025-12-17 19:47:47', 'NmLXw9Nm', '3975312'), + (468, 834, 'not_attending', '2021-06-09 18:02:51', '2025-12-17 19:47:47', 'NmLXw9Nm', '3990439'), + (468, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLXw9Nm', '3994992'), + (468, 839, 'attending', '2021-06-06 19:03:54', '2025-12-17 19:47:47', 'NmLXw9Nm', '4002121'), + (468, 841, 'attending', '2021-06-08 02:13:17', '2025-12-17 19:47:48', 'NmLXw9Nm', '4007434'), + (468, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLXw9Nm', '4014338'), + (468, 867, 'attending', '2021-06-21 18:48:10', '2025-12-17 19:47:38', 'NmLXw9Nm', '4021848'), + (468, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLXw9Nm', '4136744'), + (468, 870, 'attending', '2021-07-03 20:43:20', '2025-12-17 19:47:39', 'NmLXw9Nm', '4136937'), + (468, 871, 'attending', '2021-07-05 22:46:43', '2025-12-17 19:47:39', 'NmLXw9Nm', '4136938'), + (468, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'NmLXw9Nm', '4136947'), + (468, 879, 'not_attending', '2021-06-28 01:06:41', '2025-12-17 19:47:38', 'NmLXw9Nm', '4147806'), + (468, 880, 'not_attending', '2021-06-19 19:15:27', '2025-12-17 19:47:48', 'NmLXw9Nm', '4205383'), + (468, 881, 'attending', '2021-06-18 18:40:54', '2025-12-17 19:47:38', 'NmLXw9Nm', '4205662'), + (468, 882, 'attending', '2021-06-19 19:19:18', '2025-12-17 19:47:38', 'NmLXw9Nm', '4207630'), + (468, 884, 'attending', '2021-08-05 22:26:11', '2025-12-17 19:47:42', 'NmLXw9Nm', '4210314'), + (468, 885, 'attending', '2021-06-25 01:29:43', '2025-12-17 19:47:38', 'NmLXw9Nm', '4222370'), + (468, 886, 'attending', '2021-06-25 01:30:51', '2025-12-17 19:47:38', 'NmLXw9Nm', '4222371'), + (468, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLXw9Nm', '4225444'), + (468, 897, 'attending', '2021-06-28 01:06:00', '2025-12-17 19:47:38', 'NmLXw9Nm', '4232132'), + (468, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLXw9Nm', '4239259'), + (468, 900, 'attending', '2021-07-24 21:16:55', '2025-12-17 19:47:40', 'NmLXw9Nm', '4240316'), + (468, 901, 'attending', '2021-07-31 21:51:28', '2025-12-17 19:47:40', 'NmLXw9Nm', '4240317'), + (468, 902, 'attending', '2021-08-04 07:07:53', '2025-12-17 19:47:41', 'NmLXw9Nm', '4240318'), + (468, 903, 'attending', '2021-08-11 19:31:05', '2025-12-17 19:47:42', 'NmLXw9Nm', '4240320'), + (468, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmLXw9Nm', '4250163'), + (468, 906, 'attending', '2021-07-05 17:29:50', '2025-12-17 19:47:39', 'NmLXw9Nm', '4253431'), + (468, 913, 'attending', '2021-07-11 21:06:27', '2025-12-17 19:47:39', 'NmLXw9Nm', '4273765'), + (468, 914, 'attending', '2021-07-14 02:19:38', '2025-12-17 19:47:39', 'NmLXw9Nm', '4273767'), + (468, 915, 'attending', '2021-07-11 21:08:41', '2025-12-17 19:47:39', 'NmLXw9Nm', '4273770'), + (468, 916, 'attending', '2021-07-11 21:09:24', '2025-12-17 19:47:40', 'NmLXw9Nm', '4273772'), + (468, 917, 'attending', '2021-07-11 23:23:41', '2025-12-17 19:47:39', 'NmLXw9Nm', '4274481'), + (468, 919, 'attending', '2021-07-17 17:43:20', '2025-12-17 19:47:39', 'NmLXw9Nm', '4275957'), + (468, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'NmLXw9Nm', '4277819'), + (468, 927, 'attending', '2021-07-29 18:45:02', '2025-12-17 19:47:40', 'NmLXw9Nm', '4297216'), + (468, 929, 'attending', '2021-07-30 04:55:34', '2025-12-17 19:47:41', 'NmLXw9Nm', '4297223'), + (468, 932, 'attending', '2021-07-22 22:55:17', '2025-12-17 19:47:42', 'NmLXw9Nm', '4301664'), + (468, 933, 'maybe', '2021-07-27 03:53:43', '2025-12-17 19:47:40', 'NmLXw9Nm', '4301723'), + (468, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmLXw9Nm', '4302093'), + (468, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLXw9Nm', '4304151'), + (468, 936, 'attending', '2021-07-24 21:22:41', '2025-12-17 19:47:40', 'NmLXw9Nm', '4305951'), + (468, 937, 'attending', '2021-07-24 01:00:07', '2025-12-17 19:47:40', 'NmLXw9Nm', '4306596'), + (468, 938, 'attending', '2021-07-24 01:00:37', '2025-12-17 19:47:40', 'NmLXw9Nm', '4306597'), + (468, 940, 'not_attending', '2021-07-30 05:51:15', '2025-12-17 19:47:40', 'NmLXw9Nm', '4309049'), + (468, 942, 'attending', '2021-07-25 22:41:21', '2025-12-17 19:47:40', 'NmLXw9Nm', '4310297'), + (468, 957, 'attending', '2021-08-04 20:54:49', '2025-12-17 19:47:41', 'NmLXw9Nm', '4338834'), + (468, 961, 'attending', '2021-08-13 18:27:01', '2025-12-17 19:47:41', 'NmLXw9Nm', '4345519'), + (468, 962, 'attending', '2021-08-12 22:46:44', '2025-12-17 19:47:41', 'NmLXw9Nm', '4346305'), + (468, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLXw9Nm', '4356801'), + (468, 972, 'attending', '2021-08-12 17:10:36', '2025-12-17 19:47:42', 'NmLXw9Nm', '4358025'), + (468, 973, 'attending', '2021-08-16 20:41:46', '2025-12-17 19:47:42', 'NmLXw9Nm', '4366186'), + (468, 974, 'maybe', '2021-08-27 17:24:25', '2025-12-17 19:47:43', 'NmLXw9Nm', '4366187'), + (468, 976, 'not_attending', '2021-08-19 21:55:54', '2025-12-17 19:47:42', 'NmLXw9Nm', '4373933'), + (468, 979, 'attending', '2021-08-21 17:26:40', '2025-12-17 19:47:42', 'NmLXw9Nm', '4379085'), + (468, 982, 'not_attending', '2021-08-27 17:24:28', '2025-12-17 19:47:42', 'NmLXw9Nm', '4389739'), + (468, 986, 'attending', '2021-08-21 17:24:40', '2025-12-17 19:47:42', 'NmLXw9Nm', '4394209'), + (468, 988, 'not_attending', '2021-08-24 16:32:16', '2025-12-17 19:47:42', 'NmLXw9Nm', '4402823'), + (468, 990, 'attending', '2021-08-28 22:26:44', '2025-12-17 19:47:43', 'NmLXw9Nm', '4420735'), + (468, 991, 'attending', '2021-08-28 22:26:59', '2025-12-17 19:47:43', 'NmLXw9Nm', '4420738'), + (468, 992, 'attending', '2021-08-28 22:27:26', '2025-12-17 19:47:33', 'NmLXw9Nm', '4420739'), + (468, 993, 'maybe', '2021-09-22 23:14:29', '2025-12-17 19:47:34', 'NmLXw9Nm', '4420741'), + (468, 994, 'attending', '2021-10-02 02:30:03', '2025-12-17 19:47:34', 'NmLXw9Nm', '4420742'), + (468, 995, 'not_attending', '2021-10-09 16:56:06', '2025-12-17 19:47:34', 'NmLXw9Nm', '4420744'), + (468, 996, 'attending', '2021-08-28 22:27:56', '2025-12-17 19:47:35', 'NmLXw9Nm', '4420747'), + (468, 997, 'attending', '2021-08-28 22:28:03', '2025-12-17 19:47:35', 'NmLXw9Nm', '4420748'), + (468, 998, 'not_attending', '2021-10-30 20:05:49', '2025-12-17 19:47:36', 'NmLXw9Nm', '4420749'), + (468, 999, 'attending', '2021-08-31 19:44:32', '2025-12-17 19:47:43', 'NmLXw9Nm', '4421150'), + (468, 1009, 'attending', '2021-10-11 22:16:37', '2025-12-17 19:47:34', 'NmLXw9Nm', '4438811'), + (468, 1016, 'attending', '2021-09-03 15:11:38', '2025-12-17 19:47:43', 'NmLXw9Nm', '4441271'), + (468, 1020, 'not_attending', '2021-09-13 15:56:45', '2025-12-17 19:47:43', 'NmLXw9Nm', '4451787'), + (468, 1022, 'attending', '2021-09-15 22:59:36', '2025-12-17 19:47:43', 'NmLXw9Nm', '4458628'), + (468, 1023, 'not_attending', '2021-09-09 19:53:26', '2025-12-17 19:47:43', 'NmLXw9Nm', '4461883'), + (468, 1025, 'attending', '2021-09-10 04:40:29', '2025-12-17 19:47:43', 'NmLXw9Nm', '4462052'), + (468, 1029, 'attending', '2021-09-12 17:45:20', '2025-12-17 19:47:43', 'NmLXw9Nm', '4473063'), + (468, 1030, 'attending', '2021-09-12 17:45:57', '2025-12-17 19:47:34', 'NmLXw9Nm', '4473064'), + (468, 1035, 'attending', '2021-09-19 18:20:10', '2025-12-17 19:47:34', 'NmLXw9Nm', '4492184'), + (468, 1040, 'attending', '2021-12-08 07:16:38', '2025-12-17 19:47:38', 'NmLXw9Nm', '4496605'), + (468, 1041, 'maybe', '2021-12-04 03:56:18', '2025-12-17 19:47:37', 'NmLXw9Nm', '4496606'), + (468, 1043, 'attending', '2021-10-23 20:13:30', '2025-12-17 19:47:35', 'NmLXw9Nm', '4496608'), + (468, 1044, 'maybe', '2021-11-06 21:18:36', '2025-12-17 19:47:36', 'NmLXw9Nm', '4496609'), + (468, 1051, 'attending', '2022-02-02 20:19:53', '2025-12-17 19:47:32', 'NmLXw9Nm', '4496616'), + (468, 1052, 'attending', '2022-01-11 01:01:34', '2025-12-17 19:47:31', 'NmLXw9Nm', '4496617'), + (468, 1053, 'attending', '2022-02-19 19:22:07', '2025-12-17 19:47:32', 'NmLXw9Nm', '4496618'), + (468, 1054, 'not_attending', '2022-03-19 04:45:33', '2025-12-17 19:47:25', 'NmLXw9Nm', '4496619'), + (468, 1055, 'attending', '2021-12-18 21:32:44', '2025-12-17 19:47:31', 'NmLXw9Nm', '4496621'), + (468, 1056, 'attending', '2022-01-08 23:36:27', '2025-12-17 19:47:31', 'NmLXw9Nm', '4496622'), + (468, 1059, 'attending', '2022-03-12 00:26:23', '2025-12-17 19:47:33', 'NmLXw9Nm', '4496626'), + (468, 1061, 'attending', '2022-02-09 20:16:40', '2025-12-17 19:47:32', 'NmLXw9Nm', '4496628'), + (468, 1062, 'attending', '2022-03-05 21:07:25', '2025-12-17 19:47:33', 'NmLXw9Nm', '4496629'), + (468, 1063, 'maybe', '2021-09-20 17:26:59', '2025-12-17 19:47:34', 'NmLXw9Nm', '4496630'), + (468, 1064, 'attending', '2021-09-21 21:59:14', '2025-12-17 19:47:34', 'NmLXw9Nm', '4499526'), + (468, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLXw9Nm', '4508342'), + (468, 1070, 'attending', '2021-09-24 23:12:49', '2025-12-17 19:47:34', 'NmLXw9Nm', '4512562'), + (468, 1072, 'maybe', '2021-10-06 22:42:03', '2025-12-17 19:47:34', 'NmLXw9Nm', '4516287'), + (468, 1077, 'maybe', '2021-10-13 00:21:16', '2025-12-17 19:47:34', 'NmLXw9Nm', '4540903'), + (468, 1085, 'attending', '2021-12-23 21:37:38', '2025-12-17 19:47:31', 'NmLXw9Nm', '4568542'), + (468, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLXw9Nm', '4568602'), + (468, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLXw9Nm', '4572153'), + (468, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmLXw9Nm', '4585962'), + (468, 1094, 'maybe', '2021-10-28 22:26:09', '2025-12-17 19:47:36', 'NmLXw9Nm', '4587337'), + (468, 1095, 'maybe', '2021-10-27 21:58:37', '2025-12-17 19:47:36', 'NmLXw9Nm', '4596356'), + (468, 1097, 'attending', '2021-11-03 20:56:31', '2025-12-17 19:47:36', 'NmLXw9Nm', '4598860'), + (468, 1098, 'maybe', '2021-10-28 02:52:01', '2025-12-17 19:47:36', 'NmLXw9Nm', '4598861'), + (468, 1099, 'attending', '2021-11-01 19:08:19', '2025-12-17 19:47:36', 'NmLXw9Nm', '4602797'), + (468, 1102, 'attending', '2021-11-04 03:59:16', '2025-12-17 19:47:37', 'NmLXw9Nm', '4612098'), + (468, 1107, 'attending', '2021-11-09 22:37:12', '2025-12-17 19:47:37', 'NmLXw9Nm', '4620697'), + (468, 1114, 'maybe', '2021-11-13 09:24:06', '2025-12-17 19:47:36', 'NmLXw9Nm', '4637896'), + (468, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLXw9Nm', '4642994'), + (468, 1117, 'maybe', '2021-12-08 07:16:28', '2025-12-17 19:47:38', 'NmLXw9Nm', '4642995'), + (468, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLXw9Nm', '4642996'), + (468, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLXw9Nm', '4642997'), + (468, 1126, 'attending', '2021-12-11 23:55:34', '2025-12-17 19:47:38', 'NmLXw9Nm', '4645687'), + (468, 1127, 'not_attending', '2021-12-12 20:50:16', '2025-12-17 19:47:38', 'NmLXw9Nm', '4645698'), + (468, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLXw9Nm', '4645704'), + (468, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLXw9Nm', '4645705'), + (468, 1130, 'not_attending', '2021-12-04 20:23:44', '2025-12-17 19:47:37', 'NmLXw9Nm', '4658824'), + (468, 1131, 'maybe', '2021-12-18 21:32:47', '2025-12-17 19:47:31', 'NmLXw9Nm', '4658825'), + (468, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLXw9Nm', '4668385'), + (468, 1144, 'attending', '2021-12-05 02:36:19', '2025-12-17 19:47:37', 'NmLXw9Nm', '4687090'), + (468, 1145, 'not_attending', '2021-12-08 07:16:22', '2025-12-17 19:47:38', 'NmLXw9Nm', '4691157'), + (468, 1146, 'not_attending', '2021-12-08 07:16:34', '2025-12-17 19:47:38', 'NmLXw9Nm', '4692841'), + (468, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLXw9Nm', '4694407'), + (468, 1156, 'not_attending', '2021-12-21 23:38:38', '2025-12-17 19:47:31', 'NmLXw9Nm', '4715207'), + (468, 1167, 'attending', '2021-12-31 23:56:01', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731015'), + (468, 1168, 'attending', '2021-12-31 23:57:05', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731043'), + (468, 1169, 'attending', '2021-12-31 23:57:53', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731044'), + (468, 1170, 'attending', '2021-12-31 23:59:34', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731045'), + (468, 1173, 'attending', '2022-01-08 23:36:30', '2025-12-17 19:47:31', 'NmLXw9Nm', '4736495'), + (468, 1174, 'attending', '2022-01-11 01:01:33', '2025-12-17 19:47:31', 'NmLXw9Nm', '4736496'), + (468, 1175, 'attending', '2022-01-11 01:01:41', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736497'), + (468, 1176, 'attending', '2022-02-02 20:19:54', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736498'), + (468, 1177, 'attending', '2022-02-09 20:16:44', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736499'), + (468, 1178, 'attending', '2022-01-27 20:07:01', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736500'), + (468, 1179, 'attending', '2022-02-19 19:22:04', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736501'), + (468, 1181, 'attending', '2022-03-05 23:51:57', '2025-12-17 19:47:33', 'NmLXw9Nm', '4736503'), + (468, 1182, 'maybe', '2022-03-12 23:29:22', '2025-12-17 19:47:33', 'NmLXw9Nm', '4736504'), + (468, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLXw9Nm', '4746789'), + (468, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmLXw9Nm', '4753929'), + (468, 1193, 'attending', '2022-01-13 03:02:16', '2025-12-17 19:47:32', 'NmLXw9Nm', '4759563'), + (468, 1201, 'attending', '2022-01-19 00:46:21', '2025-12-17 19:47:32', 'NmLXw9Nm', '4766841'), + (468, 1203, 'attending', '2022-01-21 23:23:39', '2025-12-17 19:47:32', 'NmLXw9Nm', '4773535'), + (468, 1204, 'attending', '2022-02-07 03:38:25', '2025-12-17 19:47:32', 'NmLXw9Nm', '4773576'), + (468, 1205, 'attending', '2022-03-12 00:01:38', '2025-12-17 19:47:33', 'NmLXw9Nm', '4773577'), + (468, 1206, 'attending', '2022-03-27 22:32:18', '2025-12-17 19:47:27', 'NmLXw9Nm', '4773578'), + (468, 1207, 'attending', '2022-04-27 17:50:44', '2025-12-17 19:47:28', 'NmLXw9Nm', '4773579'), + (468, 1219, 'maybe', '2022-02-03 00:34:43', '2025-12-17 19:47:32', 'NmLXw9Nm', '4788466'), + (468, 1220, 'attending', '2022-01-27 23:48:08', '2025-12-17 19:47:32', 'NmLXw9Nm', '4790257'), + (468, 1222, 'maybe', '2022-02-16 20:09:59', '2025-12-17 19:47:32', 'NmLXw9Nm', '5015628'), + (468, 1229, 'attending', '2022-02-06 22:43:44', '2025-12-17 19:47:32', 'NmLXw9Nm', '5034963'), + (468, 1232, 'not_attending', '2022-02-09 20:16:20', '2025-12-17 19:47:32', 'NmLXw9Nm', '5038850'), + (468, 1236, 'not_attending', '2022-02-17 19:19:11', '2025-12-17 19:47:32', 'NmLXw9Nm', '5045826'), + (468, 1252, 'attending', '2022-02-27 20:15:38', '2025-12-17 19:47:33', 'NmLXw9Nm', '5129121'), + (468, 1253, 'attending', '2022-02-27 20:17:24', '2025-12-17 19:47:33', 'NmLXw9Nm', '5129122'), + (468, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLXw9Nm', '5132533'), + (468, 1265, 'attending', '2022-03-11 00:06:58', '2025-12-17 19:47:33', 'NmLXw9Nm', '5160862'), + (468, 1267, 'not_attending', '2022-03-14 01:39:18', '2025-12-17 19:47:25', 'NmLXw9Nm', '5169578'), + (468, 1268, 'not_attending', '2022-03-14 01:39:04', '2025-12-17 19:47:33', 'NmLXw9Nm', '5176296'), + (468, 1269, 'attending', '2022-03-13 21:41:44', '2025-12-17 19:47:25', 'NmLXw9Nm', '5179439'), + (468, 1272, 'maybe', '2022-03-19 21:09:45', '2025-12-17 19:47:25', 'NmLXw9Nm', '5186582'), + (468, 1273, 'attending', '2022-03-26 17:04:46', '2025-12-17 19:47:25', 'NmLXw9Nm', '5186583'), + (468, 1274, 'attending', '2022-03-30 06:25:21', '2025-12-17 19:47:26', 'NmLXw9Nm', '5186585'), + (468, 1275, 'attending', '2022-03-30 06:25:27', '2025-12-17 19:47:26', 'NmLXw9Nm', '5186587'), + (468, 1278, 'not_attending', '2022-03-16 02:33:49', '2025-12-17 19:47:33', 'NmLXw9Nm', '5186920'), + (468, 1279, 'not_attending', '2022-03-16 02:33:54', '2025-12-17 19:47:25', 'NmLXw9Nm', '5187212'), + (468, 1280, 'not_attending', '2022-03-17 19:21:52', '2025-12-17 19:47:25', 'NmLXw9Nm', '5189749'), + (468, 1281, 'attending', '2022-04-09 20:58:33', '2025-12-17 19:47:27', 'NmLXw9Nm', '5190437'), + (468, 1282, 'not_attending', '2022-03-20 20:13:58', '2025-12-17 19:47:25', 'NmLXw9Nm', '5191241'), + (468, 1284, 'attending', '2022-04-06 19:03:24', '2025-12-17 19:47:27', 'NmLXw9Nm', '5195095'), + (468, 1287, 'attending', '2022-03-23 00:42:27', '2025-12-17 19:47:25', 'NmLXw9Nm', '5199425'), + (468, 1291, 'not_attending', '2022-03-24 02:37:44', '2025-12-17 19:47:25', 'NmLXw9Nm', '5200458'), + (468, 1293, 'attending', '2022-03-27 22:32:24', '2025-12-17 19:47:27', 'NmLXw9Nm', '5214641'), + (468, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'NmLXw9Nm', '5215989'), + (468, 1298, 'attending', '2022-03-29 07:13:49', '2025-12-17 19:47:25', 'NmLXw9Nm', '5216645'), + (468, 1300, 'attending', '2022-03-30 06:27:06', '2025-12-17 19:47:25', 'NmLXw9Nm', '5217936'), + (468, 1301, 'attending', '2022-04-01 22:49:57', '2025-12-17 19:47:26', 'NmLXw9Nm', '5218175'), + (468, 1303, 'attending', '2022-04-08 19:55:34', '2025-12-17 19:47:27', 'NmLXw9Nm', '5222531'), + (468, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLXw9Nm', '5223686'), + (468, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLXw9Nm', '5227432'), + (468, 1312, 'maybe', '2022-04-15 18:44:40', '2025-12-17 19:47:27', 'NmLXw9Nm', '5231459'), + (468, 1313, 'not_attending', '2022-04-08 03:38:52', '2025-12-17 19:47:27', 'NmLXw9Nm', '5231461'), + (468, 1314, 'attending', '2022-04-11 18:38:17', '2025-12-17 19:47:27', 'NmLXw9Nm', '5233137'), + (468, 1316, 'attending', '2022-04-10 21:42:30', '2025-12-17 19:47:27', 'NmLXw9Nm', '5237536'), + (468, 1319, 'not_attending', '2022-04-22 19:39:49', '2025-12-17 19:47:27', 'NmLXw9Nm', '5238353'), + (468, 1322, 'not_attending', '2022-04-26 03:20:42', '2025-12-17 19:47:27', 'NmLXw9Nm', '5238356'), + (468, 1328, 'attending', '2022-04-12 16:38:34', '2025-12-17 19:47:27', 'NmLXw9Nm', '5238759'), + (468, 1329, 'attending', '2022-04-12 16:38:29', '2025-12-17 19:47:27', 'NmLXw9Nm', '5240135'), + (468, 1330, 'not_attending', '2022-04-18 19:02:44', '2025-12-17 19:47:27', 'NmLXw9Nm', '5242155'), + (468, 1332, 'not_attending', '2022-04-15 18:44:31', '2025-12-17 19:47:27', 'NmLXw9Nm', '5243274'), + (468, 1333, 'not_attending', '2022-04-13 22:48:39', '2025-12-17 19:47:27', 'NmLXw9Nm', '5243711'), + (468, 1335, 'not_attending', '2022-04-14 22:36:46', '2025-12-17 19:47:27', 'NmLXw9Nm', '5244906'), + (468, 1336, 'attending', '2022-04-14 22:59:21', '2025-12-17 19:47:27', 'NmLXw9Nm', '5244915'), + (468, 1337, 'attending', '2022-04-20 16:09:37', '2025-12-17 19:47:27', 'NmLXw9Nm', '5245036'), + (468, 1340, 'attending', '2022-04-15 18:47:54', '2025-12-17 19:47:27', 'NmLXw9Nm', '5245754'), + (468, 1341, 'attending', '2022-04-15 18:49:13', '2025-12-17 19:47:28', 'NmLXw9Nm', '5245755'), + (468, 1345, 'attending', '2022-04-18 00:58:25', '2025-12-17 19:47:27', 'NmLXw9Nm', '5247466'), + (468, 1346, 'attending', '2022-04-22 19:39:28', '2025-12-17 19:47:27', 'NmLXw9Nm', '5247467'), + (468, 1349, 'attending', '2022-04-20 16:10:27', '2025-12-17 19:47:27', 'NmLXw9Nm', '5249631'), + (468, 1351, 'not_attending', '2022-05-02 01:48:32', '2025-12-17 19:47:28', 'NmLXw9Nm', '5251561'), + (468, 1352, 'not_attending', '2022-05-02 01:48:37', '2025-12-17 19:47:28', 'NmLXw9Nm', '5251618'), + (468, 1354, 'not_attending', '2022-04-23 20:49:40', '2025-12-17 19:47:27', 'NmLXw9Nm', '5252569'), + (468, 1355, 'attending', '2022-04-21 18:02:51', '2025-12-17 19:47:27', 'NmLXw9Nm', '5252573'), + (468, 1358, 'not_attending', '2022-04-26 03:20:36', '2025-12-17 19:47:27', 'NmLXw9Nm', '5258022'), + (468, 1359, 'not_attending', '2022-05-02 01:48:41', '2025-12-17 19:47:28', 'NmLXw9Nm', '5258360'), + (468, 1360, 'not_attending', '2022-04-26 03:20:29', '2025-12-17 19:47:27', 'NmLXw9Nm', '5260197'), + (468, 1362, 'attending', '2022-04-26 03:49:49', '2025-12-17 19:47:28', 'NmLXw9Nm', '5260800'), + (468, 1364, 'attending', '2022-04-26 03:41:44', '2025-12-17 19:47:28', 'NmLXw9Nm', '5261598'), + (468, 1365, 'attending', '2022-04-26 03:45:33', '2025-12-17 19:47:28', 'NmLXw9Nm', '5261600'), + (468, 1366, 'not_attending', '2022-04-26 21:17:54', '2025-12-17 19:47:27', 'NmLXw9Nm', '5262344'), + (468, 1367, 'not_attending', '2022-04-27 17:09:36', '2025-12-17 19:47:28', 'NmLXw9Nm', '5262345'), + (468, 1368, 'attending', '2022-04-26 20:35:41', '2025-12-17 19:47:28', 'NmLXw9Nm', '5262783'), + (468, 1369, 'attending', '2022-04-26 21:06:40', '2025-12-17 19:47:28', 'NmLXw9Nm', '5262809'), + (468, 1370, 'attending', '2022-04-27 16:56:20', '2025-12-17 19:47:28', 'NmLXw9Nm', '5263775'), + (468, 1371, 'attending', '2022-04-27 17:23:29', '2025-12-17 19:47:27', 'NmLXw9Nm', '5263784'), + (468, 1372, 'not_attending', '2022-05-02 01:48:43', '2025-12-17 19:47:28', 'NmLXw9Nm', '5264352'), + (468, 1374, 'attending', '2022-05-05 21:50:23', '2025-12-17 19:47:28', 'NmLXw9Nm', '5269930'), + (468, 1376, 'attending', '2022-05-02 01:56:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271446'), + (468, 1377, 'attending', '2022-05-02 01:57:41', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271447'), + (468, 1378, 'attending', '2022-05-02 02:08:53', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271448'), + (468, 1379, 'attending', '2022-05-21 22:18:42', '2025-12-17 19:47:29', 'NmLXw9Nm', '5271449'), + (468, 1380, 'attending', '2022-05-02 02:08:42', '2025-12-17 19:47:30', 'NmLXw9Nm', '5271450'), + (468, 1381, 'not_attending', '2022-05-02 02:28:49', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271453'), + (468, 1382, 'not_attending', '2022-05-07 16:29:30', '2025-12-17 19:47:28', 'NmLXw9Nm', '5276350'), + (468, 1383, 'not_attending', '2022-05-06 22:42:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5276469'), + (468, 1385, 'not_attending', '2022-05-11 21:43:43', '2025-12-17 19:47:28', 'NmLXw9Nm', '5277822'), + (468, 1386, 'not_attending', '2022-05-06 20:39:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5278159'), + (468, 1387, 'not_attending', '2022-05-11 20:02:15', '2025-12-17 19:47:28', 'NmLXw9Nm', '5278173'), + (468, 1389, 'not_attending', '2022-05-07 16:29:25', '2025-12-17 19:47:28', 'NmLXw9Nm', '5278202'), + (468, 1391, 'not_attending', '2022-05-08 17:55:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5279531'), + (468, 1394, 'attending', '2022-05-07 01:44:29', '2025-12-17 19:47:30', 'NmLXw9Nm', '5280667'), + (468, 1395, 'attending', '2022-05-07 16:29:05', '2025-12-17 19:47:28', 'NmLXw9Nm', '5281102'), + (468, 1396, 'attending', '2022-05-14 17:36:28', '2025-12-17 19:47:28', 'NmLXw9Nm', '5281103'), + (468, 1397, 'attending', '2022-05-18 19:51:31', '2025-12-17 19:47:29', 'NmLXw9Nm', '5281104'), + (468, 1400, 'not_attending', '2022-05-14 06:22:35', '2025-12-17 19:47:29', 'NmLXw9Nm', '5284864'), + (468, 1401, 'not_attending', '2022-05-18 19:26:46', '2025-12-17 19:47:29', 'NmLXw9Nm', '5286295'), + (468, 1404, 'maybe', '2022-05-13 22:10:10', '2025-12-17 19:47:29', 'NmLXw9Nm', '5288114'), + (468, 1405, 'maybe', '2022-05-13 22:10:05', '2025-12-17 19:47:29', 'NmLXw9Nm', '5288115'), + (468, 1406, 'attending', '2022-05-13 22:10:19', '2025-12-17 19:47:29', 'NmLXw9Nm', '5288619'), + (468, 1407, 'attending', '2022-06-03 22:59:44', '2025-12-17 19:47:30', 'NmLXw9Nm', '5363695'), + (468, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLXw9Nm', '5365960'), + (468, 1414, 'not_attending', '2022-05-18 19:51:26', '2025-12-17 19:47:29', 'NmLXw9Nm', '5368445'), + (468, 1415, 'not_attending', '2022-05-19 16:17:09', '2025-12-17 19:47:30', 'NmLXw9Nm', '5368973'), + (468, 1416, 'attending', '2022-05-19 17:31:47', '2025-12-17 19:47:30', 'NmLXw9Nm', '5369628'), + (468, 1418, 'attending', '2022-05-23 01:51:52', '2025-12-17 19:47:30', 'NmLXw9Nm', '5372162'), + (468, 1419, 'maybe', '2022-06-08 03:48:40', '2025-12-17 19:47:30', 'NmLXw9Nm', '5373081'), + (468, 1424, 'not_attending', '2022-05-26 19:26:41', '2025-12-17 19:47:30', 'NmLXw9Nm', '5375772'), + (468, 1426, 'attending', '2022-05-24 04:57:58', '2025-12-17 19:47:30', 'NmLXw9Nm', '5375873'), + (468, 1427, 'maybe', '2022-05-25 18:32:04', '2025-12-17 19:47:30', 'NmLXw9Nm', '5376074'), + (468, 1428, 'attending', '2022-05-26 18:52:42', '2025-12-17 19:47:30', 'NmLXw9Nm', '5378247'), + (468, 1431, 'attending', '2022-05-30 04:55:29', '2025-12-17 19:47:30', 'NmLXw9Nm', '5389605'), + (468, 1437, 'attending', '2022-06-01 03:20:24', '2025-12-17 19:47:30', 'NmLXw9Nm', '5394493'), + (468, 1438, 'not_attending', '2022-06-01 18:38:53', '2025-12-17 19:47:30', 'NmLXw9Nm', '5395032'), + (468, 1439, 'attending', '2022-06-01 19:35:42', '2025-12-17 19:47:30', 'NmLXw9Nm', '5396072'), + (468, 1440, 'attending', '2022-06-01 20:19:01', '2025-12-17 19:47:30', 'NmLXw9Nm', '5396080'), + (468, 1442, 'maybe', '2022-06-12 16:53:49', '2025-12-17 19:47:17', 'NmLXw9Nm', '5397265'), + (468, 1444, 'attending', '2022-06-08 19:33:13', '2025-12-17 19:47:30', 'NmLXw9Nm', '5397614'), + (468, 1449, 'not_attending', '2022-06-14 21:50:27', '2025-12-17 19:47:31', 'NmLXw9Nm', '5403335'), + (468, 1451, 'not_attending', '2022-06-14 05:24:19', '2025-12-17 19:47:17', 'NmLXw9Nm', '5403967'), + (468, 1456, 'attending', '2022-06-09 23:00:08', '2025-12-17 19:47:17', 'NmLXw9Nm', '5404779'), + (468, 1457, 'attending', '2022-06-09 23:18:44', '2025-12-17 19:47:31', 'NmLXw9Nm', '5404780'), + (468, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLXw9Nm', '5404786'), + (468, 1460, 'not_attending', '2022-06-12 16:54:12', '2025-12-17 19:47:31', 'NmLXw9Nm', '5404817'), + (468, 1462, 'maybe', '2022-06-10 17:55:06', '2025-12-17 19:47:17', 'NmLXw9Nm', '5405203'), + (468, 1463, 'not_attending', '2022-06-14 21:50:30', '2025-12-17 19:47:31', 'NmLXw9Nm', '5405208'), + (468, 1465, 'maybe', '2022-06-12 03:50:30', '2025-12-17 19:47:31', 'NmLXw9Nm', '5406355'), + (468, 1466, 'not_attending', '2022-06-16 22:53:56', '2025-12-17 19:47:17', 'NmLXw9Nm', '5406427'), + (468, 1471, 'not_attending', '2022-06-21 17:38:09', '2025-12-17 19:47:17', 'NmLXw9Nm', '5407063'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (468, 1473, 'not_attending', '2022-06-14 21:50:22', '2025-12-17 19:47:31', 'NmLXw9Nm', '5407267'), + (468, 1475, 'not_attending', '2022-06-14 21:50:38', '2025-12-17 19:47:17', 'NmLXw9Nm', '5408108'), + (468, 1477, 'maybe', '2022-06-21 17:38:13', '2025-12-17 19:47:17', 'NmLXw9Nm', '5408766'), + (468, 1478, 'maybe', '2022-06-15 15:54:35', '2025-12-17 19:47:19', 'NmLXw9Nm', '5408794'), + (468, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLXw9Nm', '5411699'), + (468, 1482, 'attending', '2022-06-20 02:55:01', '2025-12-17 19:47:19', 'NmLXw9Nm', '5412550'), + (468, 1483, 'attending', '2022-06-20 02:28:55', '2025-12-17 19:47:17', 'NmLXw9Nm', '5414556'), + (468, 1484, 'attending', '2022-06-20 20:40:27', '2025-12-17 19:47:17', 'NmLXw9Nm', '5415046'), + (468, 1485, 'attending', '2022-06-24 03:45:01', '2025-12-17 19:47:17', 'NmLXw9Nm', '5416276'), + (468, 1486, 'attending', '2022-06-21 20:51:49', '2025-12-17 19:47:19', 'NmLXw9Nm', '5416339'), + (468, 1488, 'attending', '2022-06-24 17:56:31', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420154'), + (468, 1489, 'attending', '2022-06-24 17:56:29', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420155'), + (468, 1490, 'attending', '2022-06-24 17:57:13', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420156'), + (468, 1491, 'attending', '2022-06-24 17:59:52', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420158'), + (468, 1492, 'attending', '2022-06-24 18:07:34', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420175'), + (468, 1493, 'attending', '2022-06-25 21:28:18', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420218'), + (468, 1494, 'attending', '2022-06-25 19:48:12', '2025-12-17 19:47:19', 'NmLXw9Nm', '5421626'), + (468, 1495, 'maybe', '2022-06-26 04:06:43', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422086'), + (468, 1497, 'not_attending', '2022-06-30 00:57:12', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422405'), + (468, 1498, 'not_attending', '2022-06-26 16:59:22', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422406'), + (468, 1499, 'not_attending', '2022-06-27 20:23:06', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422407'), + (468, 1501, 'not_attending', '2022-06-29 22:49:28', '2025-12-17 19:47:19', 'NmLXw9Nm', '5424546'), + (468, 1502, 'not_attending', '2022-07-08 03:31:28', '2025-12-17 19:47:19', 'NmLXw9Nm', '5424565'), + (468, 1504, 'not_attending', '2022-07-13 15:45:17', '2025-12-17 19:47:19', 'NmLXw9Nm', '5426882'), + (468, 1505, 'not_attending', '2022-07-05 00:12:13', '2025-12-17 19:47:19', 'NmLXw9Nm', '5427083'), + (468, 1507, 'not_attending', '2022-07-08 04:51:34', '2025-12-17 19:47:19', 'NmLXw9Nm', '5433100'), + (468, 1508, 'attending', '2022-07-13 22:58:57', '2025-12-17 19:47:19', 'NmLXw9Nm', '5433453'), + (468, 1511, 'attending', '2022-07-07 01:55:50', '2025-12-17 19:47:19', 'NmLXw9Nm', '5437733'), + (468, 1513, 'attending', '2022-07-13 00:18:52', '2025-12-17 19:47:19', 'NmLXw9Nm', '5441125'), + (468, 1514, 'attending', '2022-07-09 17:51:19', '2025-12-17 19:47:20', 'NmLXw9Nm', '5441126'), + (468, 1515, 'attending', '2022-07-31 16:39:55', '2025-12-17 19:47:21', 'NmLXw9Nm', '5441128'), + (468, 1516, 'attending', '2022-08-08 18:42:41', '2025-12-17 19:47:23', 'NmLXw9Nm', '5441129'), + (468, 1517, 'attending', '2022-08-25 02:10:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5441130'), + (468, 1518, 'attending', '2022-09-01 15:27:36', '2025-12-17 19:47:24', 'NmLXw9Nm', '5441131'), + (468, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLXw9Nm', '5441132'), + (468, 1521, 'attending', '2022-07-10 04:04:06', '2025-12-17 19:47:19', 'NmLXw9Nm', '5442180'), + (468, 1526, 'attending', '2022-07-12 23:26:02', '2025-12-17 19:47:20', 'NmLXw9Nm', '5445059'), + (468, 1527, 'attending', '2022-07-13 13:18:44', '2025-12-17 19:47:20', 'NmLXw9Nm', '5446425'), + (468, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLXw9Nm', '5446643'), + (468, 1532, 'attending', '2022-07-23 21:33:51', '2025-12-17 19:47:20', 'NmLXw9Nm', '5448757'), + (468, 1535, 'attending', '2022-07-16 01:00:55', '2025-12-17 19:47:20', 'NmLXw9Nm', '5448830'), + (468, 1540, 'maybe', '2022-07-22 03:57:57', '2025-12-17 19:47:20', 'NmLXw9Nm', '5453325'), + (468, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLXw9Nm', '5454516'), + (468, 1544, 'attending', '2022-09-14 23:51:25', '2025-12-17 19:47:11', 'NmLXw9Nm', '5454517'), + (468, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLXw9Nm', '5454605'), + (468, 1546, 'maybe', '2022-07-25 02:30:31', '2025-12-17 19:47:20', 'NmLXw9Nm', '5454607'), + (468, 1549, 'attending', '2022-07-19 18:50:57', '2025-12-17 19:47:20', 'NmLXw9Nm', '5454789'), + (468, 1551, 'attending', '2022-07-19 22:22:42', '2025-12-17 19:47:20', 'NmLXw9Nm', '5455037'), + (468, 1554, 'not_attending', '2022-07-20 04:05:45', '2025-12-17 19:47:20', 'NmLXw9Nm', '5455230'), + (468, 1557, 'maybe', '2022-08-03 07:03:11', '2025-12-17 19:47:21', 'NmLXw9Nm', '5458729'), + (468, 1558, 'not_attending', '2022-09-14 16:39:37', '2025-12-17 19:47:10', 'NmLXw9Nm', '5458730'), + (468, 1559, 'not_attending', '2022-09-25 16:06:45', '2025-12-17 19:47:11', 'NmLXw9Nm', '5458731'), + (468, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLXw9Nm', '5461278'), + (468, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLXw9Nm', '5469480'), + (468, 1565, 'attending', '2022-07-26 01:48:06', '2025-12-17 19:47:21', 'NmLXw9Nm', '5471073'), + (468, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'NmLXw9Nm', '5474663'), + (468, 1571, 'attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLXw9Nm', '5482022'), + (468, 1573, 'not_attending', '2022-08-01 20:15:30', '2025-12-17 19:47:22', 'NmLXw9Nm', '5482152'), + (468, 1574, 'not_attending', '2022-08-01 20:17:36', '2025-12-17 19:47:22', 'NmLXw9Nm', '5482153'), + (468, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLXw9Nm', '5482793'), + (468, 1578, 'attending', '2022-08-03 01:27:46', '2025-12-17 19:47:21', 'NmLXw9Nm', '5483073'), + (468, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLXw9Nm', '5488912'), + (468, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLXw9Nm', '5492192'), + (468, 1588, 'not_attending', '2022-08-08 18:42:38', '2025-12-17 19:47:22', 'NmLXw9Nm', '5493139'), + (468, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLXw9Nm', '5493200'), + (468, 1593, 'attending', '2022-08-09 17:49:26', '2025-12-17 19:47:22', 'NmLXw9Nm', '5494043'), + (468, 1597, 'attending', '2022-08-12 22:12:12', '2025-12-17 19:47:22', 'NmLXw9Nm', '5496566'), + (468, 1598, 'attending', '2022-08-12 22:12:13', '2025-12-17 19:47:22', 'NmLXw9Nm', '5496567'), + (468, 1599, 'attending', '2022-08-10 20:36:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5496568'), + (468, 1600, 'not_attending', '2022-08-10 20:37:53', '2025-12-17 19:47:24', 'NmLXw9Nm', '5496569'), + (468, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLXw9Nm', '5502188'), + (468, 1606, 'attending', '2022-08-16 19:22:56', '2025-12-17 19:47:23', 'NmLXw9Nm', '5504585'), + (468, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLXw9Nm', '5505059'), + (468, 1610, 'not_attending', '2022-08-30 22:57:19', '2025-12-17 19:47:23', 'NmLXw9Nm', '5506595'), + (468, 1614, 'not_attending', '2022-08-22 16:02:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5508371'), + (468, 1615, 'maybe', '2022-08-31 04:06:21', '2025-12-17 19:47:23', 'NmLXw9Nm', '5509055'), + (468, 1619, 'not_attending', '2022-08-22 16:57:20', '2025-12-17 19:47:23', 'NmLXw9Nm', '5512862'), + (468, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLXw9Nm', '5513985'), + (468, 1626, 'attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'NmLXw9Nm', '5519981'), + (468, 1627, 'attending', '2022-08-26 20:23:43', '2025-12-17 19:47:24', 'NmLXw9Nm', '5521552'), + (468, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLXw9Nm', '5522550'), + (468, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLXw9Nm', '5534683'), + (468, 1631, 'attending', '2022-08-27 18:44:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5534684'), + (468, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLXw9Nm', '5537735'), + (468, 1636, 'maybe', '2022-09-04 23:23:03', '2025-12-17 19:47:24', 'NmLXw9Nm', '5538454'), + (468, 1638, 'attending', '2022-08-30 23:33:08', '2025-12-17 19:47:24', 'NmLXw9Nm', '5540402'), + (468, 1639, 'attending', '2022-08-30 23:33:04', '2025-12-17 19:47:24', 'NmLXw9Nm', '5540403'), + (468, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLXw9Nm', '5540859'), + (468, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLXw9Nm', '5546619'), + (468, 1653, 'not_attending', '2022-09-22 17:19:26', '2025-12-17 19:47:11', 'NmLXw9Nm', '5554400'), + (468, 1655, 'not_attending', '2022-09-24 05:37:24', '2025-12-17 19:47:11', 'NmLXw9Nm', '5554482'), + (468, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLXw9Nm', '5555245'), + (468, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLXw9Nm', '5557747'), + (468, 1661, 'attending', '2022-09-09 00:18:50', '2025-12-17 19:47:24', 'NmLXw9Nm', '5560254'), + (468, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLXw9Nm', '5560255'), + (468, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLXw9Nm', '5562906'), + (468, 1667, 'not_attending', '2022-09-24 16:55:20', '2025-12-17 19:47:11', 'NmLXw9Nm', '5563221'), + (468, 1668, 'attending', '2022-09-25 03:18:39', '2025-12-17 19:47:12', 'NmLXw9Nm', '5563222'), + (468, 1676, 'not_attending', '2022-09-20 23:20:28', '2025-12-17 19:47:11', 'NmLXw9Nm', '5596181'), + (468, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLXw9Nm', '5600604'), + (468, 1678, 'not_attending', '2022-09-21 20:35:39', '2025-12-17 19:47:11', 'NmLXw9Nm', '5600731'), + (468, 1680, 'attending', '2022-09-21 20:35:00', '2025-12-17 19:47:11', 'NmLXw9Nm', '5601577'), + (468, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLXw9Nm', '5605544'), + (468, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'NmLXw9Nm', '5606737'), + (468, 1702, 'not_attending', '2022-09-27 23:08:48', '2025-12-17 19:47:12', 'NmLXw9Nm', '5609173'), + (468, 1708, 'attending', '2022-10-05 22:42:03', '2025-12-17 19:47:12', 'NmLXw9Nm', '5617648'), + (468, 1711, 'not_attending', '2022-10-04 00:51:07', '2025-12-17 19:47:12', 'NmLXw9Nm', '5621883'), + (468, 1712, 'not_attending', '2022-10-12 22:29:37', '2025-12-17 19:47:12', 'NmLXw9Nm', '5622073'), + (468, 1719, 'attending', '2022-10-05 03:18:42', '2025-12-17 19:47:12', 'NmLXw9Nm', '5630958'), + (468, 1720, 'attending', '2022-10-09 16:36:45', '2025-12-17 19:47:12', 'NmLXw9Nm', '5630959'), + (468, 1721, 'attending', '2022-10-17 06:53:55', '2025-12-17 19:47:13', 'NmLXw9Nm', '5630960'), + (468, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLXw9Nm', '5630961'), + (468, 1723, 'not_attending', '2022-10-29 06:39:10', '2025-12-17 19:47:15', 'NmLXw9Nm', '5630962'), + (468, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLXw9Nm', '5630966'), + (468, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLXw9Nm', '5630967'), + (468, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLXw9Nm', '5630968'), + (468, 1727, 'attending', '2022-11-27 06:35:33', '2025-12-17 19:47:16', 'NmLXw9Nm', '5630969'), + (468, 1731, 'not_attending', '2022-10-07 23:42:56', '2025-12-17 19:47:12', 'NmLXw9Nm', '5635226'), + (468, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLXw9Nm', '5635406'), + (468, 1736, 'not_attending', '2022-10-29 19:59:33', '2025-12-17 19:47:15', 'NmLXw9Nm', '5638456'), + (468, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLXw9Nm', '5638765'), + (468, 1739, 'attending', '2022-10-09 18:26:35', '2025-12-17 19:47:14', 'NmLXw9Nm', '5640097'), + (468, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'NmLXw9Nm', '5640843'), + (468, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLXw9Nm', '5641521'), + (468, 1744, 'not_attending', '2022-11-23 06:08:02', '2025-12-17 19:47:16', 'NmLXw9Nm', '5642818'), + (468, 1746, 'attending', '2022-10-12 18:14:31', '2025-12-17 19:47:12', 'NmLXw9Nm', '5647518'), + (468, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLXw9Nm', '5652395'), + (468, 1752, 'not_attending', '2022-10-14 17:50:29', '2025-12-17 19:47:12', 'NmLXw9Nm', '5653503'), + (468, 1753, 'attending', '2022-10-22 19:28:26', '2025-12-17 19:47:13', 'NmLXw9Nm', '5656228'), + (468, 1757, 'not_attending', '2022-11-03 00:51:15', '2025-12-17 19:47:15', 'NmLXw9Nm', '5668974'), + (468, 1758, 'not_attending', '2022-10-22 01:26:40', '2025-12-17 19:47:13', 'NmLXw9Nm', '5668976'), + (468, 1759, 'attending', '2022-10-22 01:26:36', '2025-12-17 19:47:13', 'NmLXw9Nm', '5669097'), + (468, 1760, 'not_attending', '2022-10-22 01:26:33', '2025-12-17 19:47:13', 'NmLXw9Nm', '5669463'), + (468, 1762, 'maybe', '2022-11-24 22:06:47', '2025-12-17 19:47:16', 'NmLXw9Nm', '5670445'), + (468, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLXw9Nm', '5671637'), + (468, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLXw9Nm', '5672329'), + (468, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLXw9Nm', '5674057'), + (468, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLXw9Nm', '5674060'), + (468, 1769, 'not_attending', '2022-11-04 22:53:43', '2025-12-17 19:47:15', 'NmLXw9Nm', '5676351'), + (468, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'NmLXw9Nm', '5677461'), + (468, 1774, 'not_attending', '2022-10-31 22:26:39', '2025-12-17 19:47:15', 'NmLXw9Nm', '5677843'), + (468, 1779, 'attending', '2022-10-31 22:26:01', '2025-12-17 19:47:15', 'NmLXw9Nm', '5694252'), + (468, 1780, 'not_attending', '2022-11-10 18:51:09', '2025-12-17 19:47:15', 'NmLXw9Nm', '5696082'), + (468, 1782, 'attending', '2022-11-03 04:30:38', '2025-12-17 19:47:15', 'NmLXw9Nm', '5698046'), + (468, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLXw9Nm', '5699760'), + (468, 1790, 'attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'NmLXw9Nm', '5727424'), + (468, 1793, 'maybe', '2022-11-24 19:56:11', '2025-12-17 19:47:16', 'NmLXw9Nm', '5736365'), + (468, 1794, 'attending', '2022-11-14 18:55:48', '2025-12-17 19:47:16', 'NmLXw9Nm', '5741601'), + (468, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLXw9Nm', '5763458'), + (468, 1806, 'attending', '2023-01-16 22:51:46', '2025-12-17 19:47:05', 'NmLXw9Nm', '5764676'), + (468, 1820, 'maybe', '2023-04-05 04:13:19', '2025-12-17 19:46:58', 'NmLXw9Nm', '5764690'), + (468, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLXw9Nm', '5774172'), + (468, 1826, 'not_attending', '2022-12-06 03:38:59', '2025-12-17 19:47:04', 'NmLXw9Nm', '5776768'), + (468, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'NmLXw9Nm', '5818247'), + (468, 1835, 'maybe', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLXw9Nm', '5819471'), + (468, 1841, 'attending', '2023-01-04 07:39:07', '2025-12-17 19:47:05', 'NmLXw9Nm', '5827665'), + (468, 1842, 'attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLXw9Nm', '5827739'), + (468, 1843, 'attending', '2022-12-17 19:12:01', '2025-12-17 19:47:04', 'NmLXw9Nm', '5844304'), + (468, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLXw9Nm', '5844306'), + (468, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLXw9Nm', '5850159'), + (468, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLXw9Nm', '5858999'), + (468, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLXw9Nm', '5871984'), + (468, 1859, 'maybe', '2023-01-20 21:46:38', '2025-12-17 19:47:05', 'NmLXw9Nm', '5876234'), + (468, 1860, 'maybe', '2023-01-13 05:52:31', '2025-12-17 19:47:05', 'NmLXw9Nm', '5876309'), + (468, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLXw9Nm', '5876354'), + (468, 1864, 'attending', '2023-01-16 22:51:47', '2025-12-17 19:47:05', 'NmLXw9Nm', '5879675'), + (468, 1865, 'maybe', '2023-01-27 23:49:06', '2025-12-17 19:47:06', 'NmLXw9Nm', '5879676'), + (468, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLXw9Nm', '5880939'), + (468, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLXw9Nm', '5880940'), + (468, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLXw9Nm', '5880942'), + (468, 1869, 'not_attending', '2023-03-07 00:50:32', '2025-12-17 19:47:09', 'NmLXw9Nm', '5880943'), + (468, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLXw9Nm', '5887890'), + (468, 1875, 'not_attending', '2023-01-28 00:01:03', '2025-12-17 19:47:06', 'NmLXw9Nm', '5887908'), + (468, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLXw9Nm', '5888598'), + (468, 1880, 'attending', '2023-01-24 20:36:42', '2025-12-17 19:47:06', 'NmLXw9Nm', '5893260'), + (468, 1881, 'attending', '2023-02-03 21:36:05', '2025-12-17 19:47:07', 'NmLXw9Nm', '5894218'), + (468, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLXw9Nm', '5899826'), + (468, 1885, 'maybe', '2023-02-24 05:47:42', '2025-12-17 19:47:08', 'NmLXw9Nm', '5899928'), + (468, 1886, 'maybe', '2023-03-07 00:50:26', '2025-12-17 19:47:09', 'NmLXw9Nm', '5899930'), + (468, 1888, 'maybe', '2023-02-17 19:54:20', '2025-12-17 19:47:07', 'NmLXw9Nm', '5900197'), + (468, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLXw9Nm', '5900199'), + (468, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLXw9Nm', '5900200'), + (468, 1891, 'attending', '2023-03-20 03:13:00', '2025-12-17 19:46:56', 'NmLXw9Nm', '5900202'), + (468, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLXw9Nm', '5900203'), + (468, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLXw9Nm', '5901108'), + (468, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLXw9Nm', '5901126'), + (468, 1897, 'attending', '2023-02-06 00:47:17', '2025-12-17 19:47:07', 'NmLXw9Nm', '5901128'), + (468, 1898, 'maybe', '2023-02-02 00:02:59', '2025-12-17 19:47:06', 'NmLXw9Nm', '5901263'), + (468, 1902, 'attending', '2023-02-01 23:21:00', '2025-12-17 19:47:06', 'NmLXw9Nm', '5902254'), + (468, 1907, 'not_attending', '2023-02-03 21:36:42', '2025-12-17 19:47:07', 'NmLXw9Nm', '5904716'), + (468, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLXw9Nm', '5909655'), + (468, 1912, 'not_attending', '2023-02-17 20:35:57', '2025-12-17 19:47:07', 'NmLXw9Nm', '5909808'), + (468, 1913, 'attending', '2023-02-07 17:25:52', '2025-12-17 19:47:07', 'NmLXw9Nm', '5910300'), + (468, 1914, 'attending', '2023-02-07 19:40:41', '2025-12-17 19:47:07', 'NmLXw9Nm', '5910302'), + (468, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLXw9Nm', '5910522'), + (468, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLXw9Nm', '5910526'), + (468, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLXw9Nm', '5910528'), + (468, 1920, 'not_attending', '2023-02-14 00:26:13', '2025-12-17 19:47:07', 'NmLXw9Nm', '5914091'), + (468, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLXw9Nm', '5916219'), + (468, 1923, 'attending', '2023-02-17 20:44:40', '2025-12-17 19:47:07', 'NmLXw9Nm', '5930436'), + (468, 1925, 'attending', '2023-02-17 21:12:52', '2025-12-17 19:47:08', 'NmLXw9Nm', '5932619'), + (468, 1926, 'attending', '2023-02-17 21:12:49', '2025-12-17 19:47:08', 'NmLXw9Nm', '5932620'), + (468, 1927, 'not_attending', '2023-03-16 22:56:20', '2025-12-17 19:47:10', 'NmLXw9Nm', '5932621'), + (468, 1929, 'attending', '2023-02-17 21:55:49', '2025-12-17 19:47:07', 'NmLXw9Nm', '5932628'), + (468, 1933, 'attending', '2023-02-20 19:51:13', '2025-12-17 19:47:08', 'NmLXw9Nm', '5936234'), + (468, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLXw9Nm', '5958351'), + (468, 1938, 'attending', '2023-02-24 04:19:02', '2025-12-17 19:47:08', 'NmLXw9Nm', '5959751'), + (468, 1939, 'attending', '2023-02-24 04:29:24', '2025-12-17 19:47:08', 'NmLXw9Nm', '5959755'), + (468, 1940, 'not_attending', '2023-02-24 06:17:36', '2025-12-17 19:47:09', 'NmLXw9Nm', '5960055'), + (468, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLXw9Nm', '5961684'), + (468, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'NmLXw9Nm', '5962132'), + (468, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'NmLXw9Nm', '5962133'), + (468, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLXw9Nm', '5962134'), + (468, 1947, 'attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'NmLXw9Nm', '5962233'), + (468, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLXw9Nm', '5962317'), + (468, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLXw9Nm', '5962318'), + (468, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'NmLXw9Nm', '5965933'), + (468, 1953, 'attending', '2023-03-01 20:41:11', '2025-12-17 19:47:09', 'NmLXw9Nm', '5966307'), + (468, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLXw9Nm', '5967014'), + (468, 1955, 'not_attending', '2023-03-25 01:45:18', '2025-12-17 19:46:57', 'NmLXw9Nm', '5972529'), + (468, 1956, 'maybe', '2023-03-06 04:33:14', '2025-12-17 19:47:09', 'NmLXw9Nm', '5972763'), + (468, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLXw9Nm', '5972815'), + (468, 1959, 'not_attending', '2023-03-25 01:45:23', '2025-12-17 19:46:57', 'NmLXw9Nm', '5972829'), + (468, 1961, 'not_attending', '2023-03-07 00:55:23', '2025-12-17 19:47:10', 'NmLXw9Nm', '5974016'), + (468, 1963, 'not_attending', '2023-03-08 02:14:11', '2025-12-17 19:47:10', 'NmLXw9Nm', '5975054'), + (468, 1964, 'attending', '2023-03-08 23:50:12', '2025-12-17 19:47:09', 'NmLXw9Nm', '5977129'), + (468, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLXw9Nm', '5981515'), + (468, 1968, 'attending', '2023-03-12 23:05:42', '2025-12-17 19:47:10', 'NmLXw9Nm', '5993515'), + (468, 1969, 'attending', '2023-03-12 23:06:38', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993516'), + (468, 1970, 'attending', '2023-03-13 03:01:53', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993758'), + (468, 1972, 'maybe', '2023-03-13 04:56:46', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993776'), + (468, 1973, 'not_attending', '2023-03-13 04:56:28', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993777'), + (468, 1974, 'not_attending', '2023-03-21 01:30:48', '2025-12-17 19:46:57', 'NmLXw9Nm', '5993778'), + (468, 1977, 'not_attending', '2023-03-16 04:48:57', '2025-12-17 19:46:56', 'NmLXw9Nm', '5998939'), + (468, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLXw9Nm', '6028191'), + (468, 1980, 'attending', '2023-03-21 03:31:20', '2025-12-17 19:46:57', 'NmLXw9Nm', '6036032'), + (468, 1982, 'attending', '2023-03-23 23:33:52', '2025-12-17 19:46:57', 'NmLXw9Nm', '6040066'), + (468, 1984, 'attending', '2023-03-25 20:54:37', '2025-12-17 19:46:57', 'NmLXw9Nm', '6042717'), + (468, 1985, 'not_attending', '2023-03-26 20:03:22', '2025-12-17 19:46:57', 'NmLXw9Nm', '6043041'), + (468, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLXw9Nm', '6044838'), + (468, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLXw9Nm', '6044839'), + (468, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'NmLXw9Nm', '6045684'), + (468, 1991, 'attending', '2023-03-30 23:15:34', '2025-12-17 19:46:58', 'NmLXw9Nm', '6047354'), + (468, 1992, 'not_attending', '2023-04-01 06:46:39', '2025-12-17 19:46:58', 'NmLXw9Nm', '6048742'), + (468, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLXw9Nm', '6050104'), + (468, 1995, 'maybe', '2023-04-05 04:12:59', '2025-12-17 19:46:58', 'NmLXw9Nm', '6050663'), + (468, 1996, 'not_attending', '2023-04-03 16:34:12', '2025-12-17 19:46:58', 'NmLXw9Nm', '6050667'), + (468, 1997, 'not_attending', '2023-04-05 04:12:34', '2025-12-17 19:46:58', 'NmLXw9Nm', '6051604'), + (468, 1999, 'not_attending', '2023-04-06 21:21:45', '2025-12-17 19:47:00', 'NmLXw9Nm', '6052057'), + (468, 2000, 'attending', '2023-04-05 04:12:41', '2025-12-17 19:46:58', 'NmLXw9Nm', '6052107'), + (468, 2001, 'maybe', '2023-04-05 04:12:26', '2025-12-17 19:46:58', 'NmLXw9Nm', '6052569'), + (468, 2002, 'not_attending', '2023-04-24 21:28:29', '2025-12-17 19:47:01', 'NmLXw9Nm', '6052605'), + (468, 2003, 'not_attending', '2023-05-19 22:51:18', '2025-12-17 19:47:03', 'NmLXw9Nm', '6052606'), + (468, 2004, 'not_attending', '2023-05-29 06:18:29', '2025-12-17 19:47:04', 'NmLXw9Nm', '6052607'), + (468, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLXw9Nm', '6053195'), + (468, 2006, 'maybe', '2023-04-09 18:36:29', '2025-12-17 19:46:59', 'NmLXw9Nm', '6053198'), + (468, 2008, 'not_attending', '2023-04-07 17:07:48', '2025-12-17 19:46:58', 'NmLXw9Nm', '6055808'), + (468, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'NmLXw9Nm', '6056085'), + (468, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLXw9Nm', '6056916'), + (468, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLXw9Nm', '6059290'), + (468, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLXw9Nm', '6060328'), + (468, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLXw9Nm', '6061037'), + (468, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLXw9Nm', '6061039'), + (468, 2017, 'not_attending', '2023-04-11 23:36:28', '2025-12-17 19:46:59', 'NmLXw9Nm', '6061099'), + (468, 2019, 'attending', '2023-04-12 22:32:45', '2025-12-17 19:47:00', 'NmLXw9Nm', '6062934'), + (468, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLXw9Nm', '6067245'), + (468, 2025, 'not_attending', '2023-04-22 18:49:15', '2025-12-17 19:47:00', 'NmLXw9Nm', '6067457'), + (468, 2026, 'not_attending', '2023-04-19 00:46:32', '2025-12-17 19:47:01', 'NmLXw9Nm', '6068078'), + (468, 2027, 'maybe', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLXw9Nm', '6068094'), + (468, 2028, 'attending', '2023-04-18 00:48:03', '2025-12-17 19:47:00', 'NmLXw9Nm', '6068252'), + (468, 2029, 'attending', '2023-04-18 00:49:41', '2025-12-17 19:47:01', 'NmLXw9Nm', '6068253'), + (468, 2030, 'attending', '2023-04-18 00:49:45', '2025-12-17 19:47:02', 'NmLXw9Nm', '6068254'), + (468, 2031, 'attending', '2023-04-18 00:53:06', '2025-12-17 19:47:03', 'NmLXw9Nm', '6068280'), + (468, 2032, 'attending', '2023-04-18 00:53:29', '2025-12-17 19:47:04', 'NmLXw9Nm', '6068281'), + (468, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLXw9Nm', '6069093'), + (468, 2037, 'not_attending', '2023-04-24 21:28:14', '2025-12-17 19:47:01', 'NmLXw9Nm', '6071943'), + (468, 2038, 'not_attending', '2023-04-24 21:28:31', '2025-12-17 19:47:01', 'NmLXw9Nm', '6071944'), + (468, 2039, 'maybe', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072398'), + (468, 2040, 'not_attending', '2023-04-23 23:50:32', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072453'), + (468, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072528'), + (468, 2042, 'not_attending', '2023-04-24 21:28:19', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072941'), + (468, 2043, 'maybe', '2023-04-25 22:17:12', '2025-12-17 19:47:01', 'NmLXw9Nm', '6073023'), + (468, 2044, 'attending', '2023-04-26 00:29:17', '2025-12-17 19:47:03', 'NmLXw9Nm', '6073678'), + (468, 2045, 'maybe', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'NmLXw9Nm', '6075556'), + (468, 2046, 'maybe', '2023-04-28 17:42:17', '2025-12-17 19:47:02', 'NmLXw9Nm', '6076020'), + (468, 2047, 'not_attending', '2023-05-01 21:46:10', '2025-12-17 19:47:02', 'NmLXw9Nm', '6076027'), + (468, 2048, 'attending', '2023-05-05 20:24:13', '2025-12-17 19:47:03', 'NmLXw9Nm', '6076415'), + (468, 2049, 'attending', '2023-04-29 17:38:50', '2025-12-17 19:47:01', 'NmLXw9Nm', '6079840'), + (468, 2050, 'not_attending', '2023-05-01 21:46:14', '2025-12-17 19:47:02', 'NmLXw9Nm', '6080489'), + (468, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLXw9Nm', '6083398'), + (468, 2052, 'not_attending', '2023-05-04 22:41:58', '2025-12-17 19:47:02', 'NmLXw9Nm', '6088220'), + (468, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'NmLXw9Nm', '6093504'), + (468, 2059, 'not_attending', '2023-05-08 21:35:14', '2025-12-17 19:47:02', 'NmLXw9Nm', '6097361'), + (468, 2060, 'attending', '2023-05-13 23:02:47', '2025-12-17 19:47:03', 'NmLXw9Nm', '6097414'), + (468, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLXw9Nm', '6097442'), + (468, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLXw9Nm', '6097684'), + (468, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLXw9Nm', '6098762'), + (468, 2064, 'attending', '2023-06-08 04:18:04', '2025-12-17 19:46:50', 'NmLXw9Nm', '6099988'), + (468, 2065, 'not_attending', '2023-06-08 04:18:09', '2025-12-17 19:46:49', 'NmLXw9Nm', '6101169'), + (468, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'NmLXw9Nm', '6101361'), + (468, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLXw9Nm', '6101362'), + (468, 2068, 'attending', '2023-05-13 17:55:39', '2025-12-17 19:47:03', 'NmLXw9Nm', '6102837'), + (468, 2069, 'not_attending', '2023-05-17 23:08:29', '2025-12-17 19:47:03', 'NmLXw9Nm', '6103750'), + (468, 2070, 'attending', '2023-05-15 01:19:48', '2025-12-17 19:47:03', 'NmLXw9Nm', '6103752'), + (468, 2074, 'not_attending', '2023-05-17 22:37:45', '2025-12-17 19:47:03', 'NmLXw9Nm', '6107312'), + (468, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLXw9Nm', '6107314'), + (468, 2076, 'attending', '2023-05-19 06:40:13', '2025-12-17 19:47:03', 'NmLXw9Nm', '6108350'), + (468, 2078, 'not_attending', '2023-05-22 22:46:16', '2025-12-17 19:47:03', 'NmLXw9Nm', '6114163'), + (468, 2079, 'not_attending', '2023-05-25 17:01:42', '2025-12-17 19:47:03', 'NmLXw9Nm', '6114521'), + (468, 2080, 'attending', '2023-05-22 04:17:32', '2025-12-17 19:47:04', 'NmLXw9Nm', '6114677'), + (468, 2081, 'not_attending', '2023-05-22 22:45:33', '2025-12-17 19:47:03', 'NmLXw9Nm', '6115611'), + (468, 2083, 'not_attending', '2023-05-22 22:46:06', '2025-12-17 19:47:04', 'NmLXw9Nm', '6115629'), + (468, 2084, 'not_attending', '2023-05-27 16:35:41', '2025-12-17 19:47:04', 'NmLXw9Nm', '6117127'), + (468, 2086, 'not_attending', '2023-05-29 06:18:16', '2025-12-17 19:47:04', 'NmLXw9Nm', '6119877'), + (468, 2087, 'not_attending', '2023-05-28 03:11:16', '2025-12-17 19:47:04', 'NmLXw9Nm', '6120034'), + (468, 2089, 'not_attending', '2023-05-29 06:18:23', '2025-12-17 19:47:04', 'NmLXw9Nm', '6125227'), + (468, 2090, 'attending', '2023-05-31 18:54:53', '2025-12-17 19:47:04', 'NmLXw9Nm', '6127961'), + (468, 2093, 'not_attending', '2023-06-04 02:40:41', '2025-12-17 19:47:04', 'NmLXw9Nm', '6132598'), + (468, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'NmLXw9Nm', '6135924'), + (468, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'NmLXw9Nm', '6136733'), + (468, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'NmLXw9Nm', '6137989'), + (468, 2098, 'not_attending', '2023-06-09 06:40:59', '2025-12-17 19:47:04', 'NmLXw9Nm', '6139831'), + (468, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'NmLXw9Nm', '6150864'), + (468, 2109, 'not_attending', '2023-06-23 16:20:31', '2025-12-17 19:46:50', 'NmLXw9Nm', '6152821'), + (468, 2110, 'not_attending', '2023-06-19 19:24:50', '2025-12-17 19:46:50', 'NmLXw9Nm', '6155491'), + (468, 2111, 'attending', '2023-06-19 19:21:36', '2025-12-17 19:46:50', 'NmLXw9Nm', '6156121'), + (468, 2112, 'not_attending', '2023-06-21 15:55:22', '2025-12-17 19:46:50', 'NmLXw9Nm', '6156213'), + (468, 2113, 'attending', '2023-06-19 19:47:06', '2025-12-17 19:46:50', 'NmLXw9Nm', '6156215'), + (468, 2114, 'not_attending', '2023-06-23 16:20:33', '2025-12-17 19:46:50', 'NmLXw9Nm', '6158648'), + (468, 2115, 'not_attending', '2023-06-23 16:20:22', '2025-12-17 19:46:50', 'NmLXw9Nm', '6161437'), + (468, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'NmLXw9Nm', '6164417'), + (468, 2119, 'not_attending', '2023-06-27 17:55:50', '2025-12-17 19:46:50', 'NmLXw9Nm', '6165461'), + (468, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'NmLXw9Nm', '6166388'), + (468, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'NmLXw9Nm', '6176439'), + (468, 2122, 'not_attending', '2023-07-06 23:42:56', '2025-12-17 19:46:51', 'NmLXw9Nm', '6176476'), + (468, 2126, 'not_attending', '2023-06-29 23:46:26', '2025-12-17 19:46:51', 'NmLXw9Nm', '6177548'), + (468, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'NmLXw9Nm', '6182410'), + (468, 2130, 'not_attending', '2023-07-06 01:58:11', '2025-12-17 19:46:51', 'NmLXw9Nm', '6183891'), + (468, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'NmLXw9Nm', '6185812'), + (468, 2132, 'not_attending', '2023-07-07 00:26:30', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187015'), + (468, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'NmLXw9Nm', '6187651'), + (468, 2134, 'attending', '2023-07-06 21:11:05', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187963'), + (468, 2135, 'attending', '2023-07-06 21:12:14', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187964'), + (468, 2136, 'attending', '2023-07-06 21:12:34', '2025-12-17 19:46:53', 'NmLXw9Nm', '6187966'), + (468, 2137, 'not_attending', '2023-07-06 21:13:16', '2025-12-17 19:46:54', 'NmLXw9Nm', '6187967'), + (468, 2138, 'attending', '2023-07-06 21:20:54', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187969'), + (468, 2139, 'not_attending', '2023-07-07 00:01:10', '2025-12-17 19:46:52', 'NmLXw9Nm', '6188027'), + (468, 2140, 'not_attending', '2023-07-07 02:55:50', '2025-12-17 19:46:52', 'NmLXw9Nm', '6188074'), + (468, 2141, 'not_attending', '2023-07-11 21:15:40', '2025-12-17 19:46:52', 'NmLXw9Nm', '6188819'), + (468, 2142, 'attending', '2023-07-07 20:57:44', '2025-12-17 19:46:52', 'NmLXw9Nm', '6333850'), + (468, 2143, 'not_attending', '2023-07-08 19:55:18', '2025-12-17 19:46:51', 'NmLXw9Nm', '6334348'), + (468, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'NmLXw9Nm', '6334878'), + (468, 2145, 'not_attending', '2023-07-13 05:38:35', '2025-12-17 19:46:52', 'NmLXw9Nm', '6334903'), + (468, 2146, 'maybe', '2023-07-21 22:02:06', '2025-12-17 19:46:53', 'NmLXw9Nm', '6335638'), + (468, 2148, 'not_attending', '2023-07-21 22:24:31', '2025-12-17 19:46:53', 'NmLXw9Nm', '6335667'), + (468, 2149, 'not_attending', '2023-07-11 02:46:52', '2025-12-17 19:46:53', 'NmLXw9Nm', '6335682'), + (468, 2150, 'not_attending', '2023-07-09 21:55:38', '2025-12-17 19:46:52', 'NmLXw9Nm', '6335687'), + (468, 2153, 'attending', '2023-07-17 02:03:21', '2025-12-17 19:46:52', 'NmLXw9Nm', '6337236'), + (468, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'NmLXw9Nm', '6337970'), + (468, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'NmLXw9Nm', '6338308'), + (468, 2158, 'maybe', '2023-07-17 18:58:00', '2025-12-17 19:46:53', 'NmLXw9Nm', '6338353'), + (468, 2159, 'attending', '2023-07-17 18:49:25', '2025-12-17 19:46:53', 'NmLXw9Nm', '6338355'), + (468, 2160, 'attending', '2023-07-17 18:49:50', '2025-12-17 19:46:54', 'NmLXw9Nm', '6338358'), + (468, 2162, 'not_attending', '2023-07-20 20:45:39', '2025-12-17 19:46:53', 'NmLXw9Nm', '6340845'), + (468, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'NmLXw9Nm', '6341710'), + (468, 2165, 'not_attending', '2023-08-01 05:12:35', '2025-12-17 19:46:54', 'NmLXw9Nm', '6342044'), + (468, 2166, 'not_attending', '2023-07-21 05:56:44', '2025-12-17 19:46:54', 'NmLXw9Nm', '6342115'), + (468, 2167, 'attending', '2023-07-17 19:05:50', '2025-12-17 19:46:53', 'NmLXw9Nm', '6342298'), + (468, 2169, 'not_attending', '2023-07-21 22:24:33', '2025-12-17 19:46:53', 'NmLXw9Nm', '6342306'), + (468, 2173, 'not_attending', '2023-07-20 20:45:42', '2025-12-17 19:46:53', 'NmLXw9Nm', '6342769'), + (468, 2174, 'not_attending', '2023-07-21 05:56:06', '2025-12-17 19:46:53', 'NmLXw9Nm', '6343294'), + (468, 2175, 'maybe', '2023-07-22 21:08:05', '2025-12-17 19:46:53', 'NmLXw9Nm', '6346982'), + (468, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'NmLXw9Nm', '6347034'), + (468, 2177, 'maybe', '2023-08-10 01:09:55', '2025-12-17 19:46:55', 'NmLXw9Nm', '6347053'), + (468, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'NmLXw9Nm', '6347056'), + (468, 2179, 'not_attending', '2023-08-01 05:12:30', '2025-12-17 19:46:54', 'NmLXw9Nm', '6347591'), + (468, 2183, 'attending', '2023-07-29 05:05:33', '2025-12-17 19:46:54', 'NmLXw9Nm', '6353008'), + (468, 2185, 'attending', '2023-07-29 19:45:44', '2025-12-17 19:46:54', 'NmLXw9Nm', '6353830'), + (468, 2186, 'attending', '2023-07-29 19:46:48', '2025-12-17 19:46:54', 'NmLXw9Nm', '6353831'), + (468, 2188, 'attending', '2023-08-02 07:04:58', '2025-12-17 19:46:54', 'NmLXw9Nm', '6357710'), + (468, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'NmLXw9Nm', '6357867'), + (468, 2190, 'not_attending', '2023-08-02 17:11:25', '2025-12-17 19:46:55', 'NmLXw9Nm', '6357892'), + (468, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358652'), + (468, 2192, 'attending', '2023-08-03 21:45:27', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358666'), + (468, 2193, 'not_attending', '2023-08-03 22:05:49', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358668'), + (468, 2194, 'not_attending', '2023-08-03 22:05:53', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358669'), + (468, 2195, 'not_attending', '2023-08-07 03:50:12', '2025-12-17 19:46:55', 'NmLXw9Nm', '6359397'), + (468, 2196, 'not_attending', '2023-09-05 20:28:47', '2025-12-17 19:46:56', 'NmLXw9Nm', '6359398'), + (468, 2199, 'maybe', '2023-08-14 19:22:54', '2025-12-17 19:46:55', 'NmLXw9Nm', '6359849'), + (468, 2200, 'not_attending', '2023-08-10 01:09:42', '2025-12-17 19:46:55', 'NmLXw9Nm', '6359850'), + (468, 2202, 'not_attending', '2023-08-06 21:52:30', '2025-12-17 19:46:54', 'NmLXw9Nm', '6360509'), + (468, 2203, 'attending', '2023-08-07 20:53:17', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361524'), + (468, 2204, 'attending', '2023-08-19 20:41:30', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361542'), + (468, 2206, 'not_attending', '2023-08-08 04:33:50', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361659'), + (468, 2208, 'maybe', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'NmLXw9Nm', '6361709'), + (468, 2209, 'not_attending', '2023-08-20 21:55:08', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361710'), + (468, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361711'), + (468, 2211, 'maybe', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361712'), + (468, 2212, 'maybe', '2023-09-23 16:18:41', '2025-12-17 19:46:45', 'NmLXw9Nm', '6361713'), + (468, 2213, 'not_attending', '2023-08-14 19:13:57', '2025-12-17 19:46:55', 'NmLXw9Nm', '6362935'), + (468, 2215, 'not_attending', '2023-08-10 06:11:33', '2025-12-17 19:46:55', 'NmLXw9Nm', '6363479'), + (468, 2216, 'attending', '2023-08-14 19:23:06', '2025-12-17 19:46:55', 'NmLXw9Nm', '6364123'), + (468, 2217, 'maybe', '2023-08-14 19:14:09', '2025-12-17 19:46:55', 'NmLXw9Nm', '6364333'), + (468, 2218, 'not_attending', '2023-08-15 06:09:08', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367308'), + (468, 2221, 'not_attending', '2023-08-15 06:09:49', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367357'), + (468, 2222, 'not_attending', '2023-08-15 06:09:54', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367358'), + (468, 2223, 'attending', '2023-08-15 06:09:15', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367439'), + (468, 2224, 'attending', '2023-08-15 18:44:16', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367635'), + (468, 2225, 'not_attending', '2023-08-29 16:25:09', '2025-12-17 19:46:55', 'NmLXw9Nm', '6368434'), + (468, 2226, 'not_attending', '2023-08-17 21:36:47', '2025-12-17 19:46:55', 'NmLXw9Nm', '6370006'), + (468, 2227, 'not_attending', '2023-08-19 03:05:37', '2025-12-17 19:46:55', 'NmLXw9Nm', '6370581'), + (468, 2229, 'attending', '2023-08-20 20:52:14', '2025-12-17 19:46:55', 'NmLXw9Nm', '6373787'), + (468, 2232, 'maybe', '2023-08-23 00:14:27', '2025-12-17 19:46:55', 'NmLXw9Nm', '6374818'), + (468, 2233, 'attending', '2023-08-22 23:22:30', '2025-12-17 19:46:55', 'NmLXw9Nm', '6377590'), + (468, 2234, 'attending', '2023-08-27 04:18:41', '2025-12-17 19:46:56', 'NmLXw9Nm', '6382559'), + (468, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'NmLXw9Nm', '6382573'), + (468, 2238, 'not_attending', '2023-08-31 19:23:11', '2025-12-17 19:46:56', 'NmLXw9Nm', '6387266'), + (468, 2239, 'attending', '2023-09-02 18:22:59', '2025-12-17 19:46:56', 'NmLXw9Nm', '6387592'), + (468, 2240, 'attending', '2023-09-09 21:21:20', '2025-12-17 19:46:56', 'NmLXw9Nm', '6388603'), + (468, 2241, 'maybe', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'NmLXw9Nm', '6388604'), + (468, 2242, 'attending', '2023-09-23 16:18:08', '2025-12-17 19:46:45', 'NmLXw9Nm', '6388606'), + (468, 2243, 'maybe', '2023-09-07 03:09:32', '2025-12-17 19:46:56', 'NmLXw9Nm', '6393686'), + (468, 2244, 'not_attending', '2023-09-07 18:17:22', '2025-12-17 19:46:44', 'NmLXw9Nm', '6393700'), + (468, 2245, 'attending', '2023-09-18 02:09:42', '2025-12-17 19:46:45', 'NmLXw9Nm', '6393703'), + (468, 2247, 'maybe', '2023-09-05 20:28:56', '2025-12-17 19:46:56', 'NmLXw9Nm', '6394628'), + (468, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'NmLXw9Nm', '6394629'), + (468, 2249, 'maybe', '2023-09-20 21:53:32', '2025-12-17 19:46:45', 'NmLXw9Nm', '6394630'), + (468, 2250, 'maybe', '2023-09-23 16:18:38', '2025-12-17 19:46:45', 'NmLXw9Nm', '6394631'), + (468, 2251, 'not_attending', '2023-09-05 20:26:26', '2025-12-17 19:46:56', 'NmLXw9Nm', '6395182'), + (468, 2252, 'not_attending', '2023-09-18 02:09:46', '2025-12-17 19:46:45', 'NmLXw9Nm', '6396837'), + (468, 2253, 'maybe', '2023-09-23 16:18:44', '2025-12-17 19:46:45', 'NmLXw9Nm', '6401811'), + (468, 2254, 'attending', '2023-09-10 18:13:56', '2025-12-17 19:46:44', 'NmLXw9Nm', '6401889'), + (468, 2255, 'attending', '2023-09-12 20:46:16', '2025-12-17 19:46:45', 'NmLXw9Nm', '6403562'), + (468, 2258, 'not_attending', '2023-09-23 16:18:21', '2025-12-17 19:46:45', 'NmLXw9Nm', '6419492'), + (468, 2263, 'attending', '2023-09-25 22:16:04', '2025-12-17 19:46:45', 'NmLXw9Nm', '6429351'), + (468, 2265, 'maybe', '2023-09-29 16:23:57', '2025-12-17 19:46:45', 'NmLXw9Nm', '6439625'), + (468, 2266, 'attending', '2023-10-08 03:26:05', '2025-12-17 19:46:45', 'NmLXw9Nm', '6439635'), + (468, 2267, 'not_attending', '2023-10-06 01:52:51', '2025-12-17 19:46:45', 'NmLXw9Nm', '6440034'), + (468, 2268, 'attending', '2023-10-01 00:10:19', '2025-12-17 19:46:45', 'NmLXw9Nm', '6440863'), + (468, 2269, 'not_attending', '2023-10-03 01:35:16', '2025-12-17 19:46:45', 'NmLXw9Nm', '6442978'), + (468, 2270, 'attending', '2023-10-05 01:06:45', '2025-12-17 19:46:46', 'NmLXw9Nm', '6443067'), + (468, 2271, 'maybe', '2023-10-03 01:35:04', '2025-12-17 19:46:45', 'NmLXw9Nm', '6445375'), + (468, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLXw9Nm', '6445440'), + (468, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLXw9Nm', '6453951'), + (468, 2277, 'not_attending', '2023-10-08 19:53:42', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455211'), + (468, 2279, 'not_attending', '2023-10-11 23:22:03', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455460'), + (468, 2280, 'not_attending', '2023-10-08 19:53:18', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455470'), + (468, 2283, 'not_attending', '2023-10-08 21:20:39', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455503'), + (468, 2284, 'maybe', '2023-10-11 23:22:17', '2025-12-17 19:46:46', 'NmLXw9Nm', '6460928'), + (468, 2287, 'attending', '2023-10-10 23:21:49', '2025-12-17 19:46:46', 'NmLXw9Nm', '6461696'), + (468, 2289, 'attending', '2023-10-11 05:27:44', '2025-12-17 19:46:46', 'NmLXw9Nm', '6462129'), + (468, 2290, 'attending', '2023-10-14 04:16:35', '2025-12-17 19:46:46', 'NmLXw9Nm', '6462214'), + (468, 2291, 'maybe', '2023-10-15 20:51:23', '2025-12-17 19:46:46', 'NmLXw9Nm', '6462215'), + (468, 2292, 'maybe', '2023-10-29 18:16:43', '2025-12-17 19:46:47', 'NmLXw9Nm', '6462216'), + (468, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLXw9Nm', '6463218'), + (468, 2294, 'not_attending', '2023-10-15 20:50:46', '2025-12-17 19:46:46', 'NmLXw9Nm', '6465907'), + (468, 2295, 'not_attending', '2023-10-22 03:50:25', '2025-12-17 19:46:46', 'NmLXw9Nm', '6467832'), + (468, 2299, 'attending', '2023-10-20 17:14:29', '2025-12-17 19:46:46', 'NmLXw9Nm', '6472181'), + (468, 2300, 'not_attending', '2023-10-15 20:50:34', '2025-12-17 19:46:47', 'NmLXw9Nm', '6472185'), + (468, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', 'NmLXw9Nm', '6474276'), + (468, 2303, 'attending', '2023-10-25 00:38:01', '2025-12-17 19:46:47', 'NmLXw9Nm', '6482691'), + (468, 2304, 'attending', '2023-10-29 05:35:40', '2025-12-17 19:46:47', 'NmLXw9Nm', '6482693'), + (468, 2306, 'maybe', '2023-11-01 17:39:05', '2025-12-17 19:46:47', 'NmLXw9Nm', '6484200'), + (468, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'NmLXw9Nm', '6484680'), + (468, 2310, 'attending', '2023-11-01 17:38:00', '2025-12-17 19:46:47', 'NmLXw9Nm', '6487709'), + (468, 2311, 'not_attending', '2023-11-01 17:38:30', '2025-12-17 19:46:47', 'NmLXw9Nm', '6487725'), + (468, 2315, 'not_attending', '2023-10-29 20:24:20', '2025-12-17 19:46:47', 'NmLXw9Nm', '6493666'), + (468, 2316, 'not_attending', '2023-11-01 17:39:08', '2025-12-17 19:46:48', 'NmLXw9Nm', '6493668'), + (468, 2317, 'attending', '2023-10-29 20:18:28', '2025-12-17 19:46:47', 'NmLXw9Nm', '6507741'), + (468, 2320, 'maybe', '2023-11-01 17:38:33', '2025-12-17 19:46:47', 'NmLXw9Nm', '6508647'), + (468, 2321, 'not_attending', '2023-11-01 17:38:16', '2025-12-17 19:46:47', 'NmLXw9Nm', '6512075'), + (468, 2322, 'not_attending', '2023-11-01 17:37:57', '2025-12-17 19:46:48', 'NmLXw9Nm', '6514659'), + (468, 2323, 'not_attending', '2023-11-07 22:08:14', '2025-12-17 19:46:49', 'NmLXw9Nm', '6514660'), + (468, 2324, 'not_attending', '2023-11-07 22:08:19', '2025-12-17 19:46:49', 'NmLXw9Nm', '6514662'), + (468, 2325, 'not_attending', '2023-11-07 22:08:25', '2025-12-17 19:46:36', 'NmLXw9Nm', '6514663'), + (468, 2326, 'not_attending', '2023-11-12 20:47:19', '2025-12-17 19:46:48', 'NmLXw9Nm', '6514805'), + (468, 2328, 'attending', '2023-11-01 22:01:02', '2025-12-17 19:46:47', 'NmLXw9Nm', '6515504'), + (468, 2329, 'not_attending', '2023-11-02 19:02:05', '2025-12-17 19:46:47', 'NmLXw9Nm', '6517138'), + (468, 2331, 'attending', '2023-11-07 21:37:41', '2025-12-17 19:46:47', 'NmLXw9Nm', '6518640'), + (468, 2332, 'not_attending', '2023-11-03 21:01:19', '2025-12-17 19:46:47', 'NmLXw9Nm', '6518655'), + (468, 2333, 'maybe', '2023-11-07 21:59:13', '2025-12-17 19:46:47', 'NmLXw9Nm', '6519103'), + (468, 2334, 'not_attending', '2023-11-08 04:09:55', '2025-12-17 19:46:48', 'NmLXw9Nm', '6529252'), + (468, 2335, 'not_attending', '2023-11-10 20:45:46', '2025-12-17 19:46:47', 'NmLXw9Nm', '6534890'), + (468, 2336, 'attending', '2023-11-07 21:56:10', '2025-12-17 19:46:47', 'NmLXw9Nm', '6535500'), + (468, 2337, 'not_attending', '2023-11-08 01:07:54', '2025-12-17 19:46:48', 'NmLXw9Nm', '6535681'), + (468, 2338, 'maybe', '2023-11-25 21:09:10', '2025-12-17 19:46:48', 'NmLXw9Nm', '6538868'), + (468, 2339, 'not_attending', '2023-11-09 22:42:02', '2025-12-17 19:46:47', 'NmLXw9Nm', '6539128'), + (468, 2340, 'not_attending', '2023-11-16 21:51:58', '2025-12-17 19:46:48', 'NmLXw9Nm', '6540279'), + (468, 2341, 'attending', '2023-11-12 20:14:12', '2025-12-17 19:46:48', 'NmLXw9Nm', '6543263'), + (468, 2343, 'not_attending', '2023-11-15 02:33:53', '2025-12-17 19:46:48', 'NmLXw9Nm', '6574728'), + (468, 2345, 'maybe', '2023-11-24 22:22:30', '2025-12-17 19:46:48', 'NmLXw9Nm', '6582414'), + (468, 2347, 'not_attending', '2023-11-20 22:09:00', '2025-12-17 19:46:48', 'NmLXw9Nm', '6583053'), + (468, 2348, 'not_attending', '2023-11-20 22:09:08', '2025-12-17 19:46:48', 'NmLXw9Nm', '6583064'), + (468, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLXw9Nm', '6584747'), + (468, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLXw9Nm', '6587097'), + (468, 2353, 'not_attending', '2023-11-30 20:43:08', '2025-12-17 19:46:48', 'NmLXw9Nm', '6588894'), + (468, 2355, 'not_attending', '2023-11-30 20:43:22', '2025-12-17 19:46:49', 'NmLXw9Nm', '6593339'), + (468, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLXw9Nm', '6609022'), + (468, 2366, 'not_attending', '2023-12-08 04:31:32', '2025-12-17 19:46:36', 'NmLXw9Nm', '6615304'), + (468, 2373, 'attending', '2024-01-07 05:21:49', '2025-12-17 19:46:38', 'NmLXw9Nm', '6632678'), + (468, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'NmLXw9Nm', '6632757'), + (468, 2377, 'not_attending', '2024-01-07 05:19:41', '2025-12-17 19:46:37', 'NmLXw9Nm', '6643448'), + (468, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLXw9Nm', '6644187'), + (468, 2385, 'not_attending', '2024-01-07 05:19:44', '2025-12-17 19:46:37', 'NmLXw9Nm', '6648943'), + (468, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLXw9Nm', '6648951'), + (468, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'NmLXw9Nm', '6648952'), + (468, 2389, 'not_attending', '2024-01-07 05:21:45', '2025-12-17 19:46:40', 'NmLXw9Nm', '6651094'), + (468, 2391, 'maybe', '2024-01-07 05:21:10', '2025-12-17 19:46:37', 'NmLXw9Nm', '6654138'), + (468, 2392, 'attending', '2024-01-07 05:19:50', '2025-12-17 19:46:37', 'NmLXw9Nm', '6654412'), + (468, 2393, 'maybe', '2024-01-07 05:21:29', '2025-12-17 19:46:38', 'NmLXw9Nm', '6654468'), + (468, 2394, 'not_attending', '2024-01-07 05:21:40', '2025-12-17 19:46:38', 'NmLXw9Nm', '6654470'), + (468, 2395, 'not_attending', '2024-01-14 20:04:37', '2025-12-17 19:46:38', 'NmLXw9Nm', '6654471'), + (468, 2396, 'not_attending', '2024-01-14 20:04:42', '2025-12-17 19:46:38', 'NmLXw9Nm', '6655401'), + (468, 2397, 'not_attending', '2024-01-07 05:19:33', '2025-12-17 19:46:37', 'NmLXw9Nm', '6657379'), + (468, 2399, 'attending', '2024-01-12 21:15:08', '2025-12-17 19:46:38', 'NmLXw9Nm', '6657583'), + (468, 2401, 'attending', '2024-01-09 19:03:06', '2025-12-17 19:46:37', 'NmLXw9Nm', '6661585'), + (468, 2402, 'attending', '2024-01-09 19:05:04', '2025-12-17 19:46:38', 'NmLXw9Nm', '6661588'), + (468, 2403, 'attending', '2024-01-09 19:06:36', '2025-12-17 19:46:40', 'NmLXw9Nm', '6661589'), + (468, 2404, 'not_attending', '2024-01-14 20:04:29', '2025-12-17 19:46:38', 'NmLXw9Nm', '6666858'), + (468, 2405, 'not_attending', '2024-01-15 04:18:20', '2025-12-17 19:46:38', 'NmLXw9Nm', '6667332'), + (468, 2406, 'maybe', '2024-01-15 04:18:53', '2025-12-17 19:46:40', 'NmLXw9Nm', '6692344'), + (468, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLXw9Nm', '6699906'), + (468, 2408, 'attending', '2024-01-25 19:13:48', '2025-12-17 19:46:40', 'NmLXw9Nm', '6699907'), + (468, 2410, 'attending', '2024-02-10 23:29:09', '2025-12-17 19:46:41', 'NmLXw9Nm', '6699911'), + (468, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'NmLXw9Nm', '6699913'), + (468, 2413, 'maybe', '2024-02-10 23:29:20', '2025-12-17 19:46:42', 'NmLXw9Nm', '6700719'), + (468, 2416, 'attending', '2024-01-16 06:21:30', '2025-12-17 19:46:40', 'NmLXw9Nm', '6701109'), + (468, 2424, 'maybe', '2024-01-20 00:50:37', '2025-12-17 19:46:40', 'NmLXw9Nm', '6705143'), + (468, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLXw9Nm', '6705219'), + (468, 2426, 'not_attending', '2024-01-23 00:32:39', '2025-12-17 19:46:40', 'NmLXw9Nm', '6705569'), + (468, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLXw9Nm', '6710153'), + (468, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLXw9Nm', '6711552'), + (468, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'NmLXw9Nm', '6711553'), + (468, 2436, 'not_attending', '2024-01-27 21:30:21', '2025-12-17 19:46:40', 'NmLXw9Nm', '6722687'), + (468, 2437, 'attending', '2024-01-27 19:34:39', '2025-12-17 19:46:41', 'NmLXw9Nm', '6722688'), + (468, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'NmLXw9Nm', '6730620'), + (468, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'NmLXw9Nm', '6730642'), + (468, 2448, 'not_attending', '2024-03-29 18:31:10', '2025-12-17 19:46:33', 'NmLXw9Nm', '6734371'), + (468, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'NmLXw9Nm', '6740364'), + (468, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'NmLXw9Nm', '6743829'), + (468, 2462, 'not_attending', '2024-02-10 23:29:27', '2025-12-17 19:46:41', 'NmLXw9Nm', '6744701'), + (468, 2467, 'attending', '2024-02-24 20:53:28', '2025-12-17 19:46:43', 'NmLXw9Nm', '7029987'), + (468, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'NmLXw9Nm', '7030380'), + (468, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'NmLXw9Nm', '7033677'), + (468, 2473, 'not_attending', '2024-02-26 22:01:11', '2025-12-17 19:46:43', 'NmLXw9Nm', '7033724'), + (468, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'NmLXw9Nm', '7035415'), + (468, 2475, 'not_attending', '2024-02-27 23:12:06', '2025-12-17 19:46:43', 'NmLXw9Nm', '7035643'), + (468, 2476, 'not_attending', '2024-02-26 22:01:07', '2025-12-17 19:46:43', 'NmLXw9Nm', '7035691'), + (468, 2480, 'maybe', '2024-02-24 20:53:31', '2025-12-17 19:46:43', 'NmLXw9Nm', '7042160'), + (468, 2481, 'attending', '2024-02-24 21:02:21', '2025-12-17 19:46:43', 'NmLXw9Nm', '7044715'), + (468, 2482, 'attending', '2024-02-24 21:06:35', '2025-12-17 19:46:44', 'NmLXw9Nm', '7044719'), + (468, 2483, 'not_attending', '2024-02-24 21:09:04', '2025-12-17 19:46:32', 'NmLXw9Nm', '7044720'), + (468, 2484, 'not_attending', '2024-02-29 20:42:38', '2025-12-17 19:46:43', 'NmLXw9Nm', '7046836'), + (468, 2485, 'not_attending', '2024-02-29 20:40:39', '2025-12-17 19:46:43', 'NmLXw9Nm', '7048111'), + (468, 2486, 'not_attending', '2024-02-29 20:42:50', '2025-12-17 19:46:43', 'NmLXw9Nm', '7048277'), + (468, 2487, 'not_attending', '2024-03-17 18:36:01', '2025-12-17 19:46:33', 'NmLXw9Nm', '7049279'), + (468, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'NmLXw9Nm', '7050318'), + (468, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'NmLXw9Nm', '7050319'), + (468, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'NmLXw9Nm', '7050322'), + (468, 2493, 'not_attending', '2024-03-02 20:32:26', '2025-12-17 19:46:32', 'NmLXw9Nm', '7052471'), + (468, 2494, 'not_attending', '2024-03-02 20:32:29', '2025-12-17 19:46:32', 'NmLXw9Nm', '7052472'), + (468, 2495, 'not_attending', '2024-03-01 04:29:23', '2025-12-17 19:46:32', 'NmLXw9Nm', '7052982'), + (468, 2498, 'not_attending', '2024-03-17 18:35:38', '2025-12-17 19:46:33', 'NmLXw9Nm', '7057662'), + (468, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'NmLXw9Nm', '7057804'), + (468, 2502, 'not_attending', '2024-03-17 18:35:42', '2025-12-17 19:46:33', 'NmLXw9Nm', '7061202'), + (468, 2503, 'not_attending', '2024-03-09 16:51:36', '2025-12-17 19:46:32', 'NmLXw9Nm', '7062500'), + (468, 2504, 'not_attending', '2024-03-17 18:35:58', '2025-12-17 19:46:33', 'NmLXw9Nm', '7063296'), + (468, 2505, 'not_attending', '2024-03-17 18:35:53', '2025-12-17 19:46:33', 'NmLXw9Nm', '7069163'), + (468, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'NmLXw9Nm', '7072824'), + (468, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'NmLXw9Nm', '7074348'), + (468, 2510, 'not_attending', '2024-03-17 18:35:56', '2025-12-17 19:46:33', 'NmLXw9Nm', '7074350'), + (468, 2511, 'not_attending', '2024-04-07 07:30:37', '2025-12-17 19:46:33', 'NmLXw9Nm', '7074351'), + (468, 2512, 'not_attending', '2024-04-04 18:53:19', '2025-12-17 19:46:33', 'NmLXw9Nm', '7074352'), + (468, 2513, 'not_attending', '2024-04-15 18:05:49', '2025-12-17 19:46:34', 'NmLXw9Nm', '7074353'), + (468, 2518, 'not_attending', '2024-07-20 22:40:59', '2025-12-17 19:46:30', 'NmLXw9Nm', '7074358'), + (468, 2519, 'not_attending', '2024-05-24 23:40:45', '2025-12-17 19:46:36', 'NmLXw9Nm', '7074359'), + (468, 2520, 'not_attending', '2024-05-14 18:09:15', '2025-12-17 19:46:35', 'NmLXw9Nm', '7074360'), + (468, 2521, 'not_attending', '2024-06-19 20:29:06', '2025-12-17 19:46:29', 'NmLXw9Nm', '7074361'), + (468, 2522, 'not_attending', '2024-07-11 21:19:58', '2025-12-17 19:46:30', 'NmLXw9Nm', '7074362'), + (468, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'NmLXw9Nm', '7074364'), + (468, 2525, 'maybe', '2024-06-12 04:07:43', '2025-12-17 19:46:28', 'NmLXw9Nm', '7074365'), + (468, 2527, 'not_attending', '2024-06-23 21:45:13', '2025-12-17 19:46:29', 'NmLXw9Nm', '7074367'), + (468, 2528, 'maybe', '2024-08-07 17:05:17', '2025-12-17 19:46:31', 'NmLXw9Nm', '7074368'), + (468, 2530, 'maybe', '2024-08-15 21:55:14', '2025-12-17 19:46:31', 'NmLXw9Nm', '7074373'), + (468, 2532, 'not_attending', '2024-09-01 22:44:20', '2025-12-17 19:46:32', 'NmLXw9Nm', '7074383'), + (468, 2535, 'attending', '2024-03-13 19:11:02', '2025-12-17 19:46:32', 'NmLXw9Nm', '7076879'), + (468, 2536, 'not_attending', '2024-03-17 18:32:56', '2025-12-17 19:46:33', 'NmLXw9Nm', '7077689'), + (468, 2537, 'attending', '2024-03-22 19:40:43', '2025-12-17 19:46:33', 'NmLXw9Nm', '7085484'), + (468, 2539, 'not_attending', '2024-04-01 16:01:57', '2025-12-17 19:46:33', 'NmLXw9Nm', '7085486'), + (468, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'NmLXw9Nm', '7089267'), + (468, 2541, 'not_attending', '2024-03-17 18:35:45', '2025-12-17 19:46:33', 'NmLXw9Nm', '7089404'), + (468, 2542, 'not_attending', '2024-03-27 04:00:20', '2025-12-17 19:46:33', 'NmLXw9Nm', '7090025'), + (468, 2543, 'maybe', '2024-03-29 18:31:40', '2025-12-17 19:46:33', 'NmLXw9Nm', '7091456'), + (468, 2544, 'attending', '2024-03-21 21:22:34', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096941'), + (468, 2545, 'attending', '2024-03-21 21:26:30', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096942'), + (468, 2546, 'attending', '2024-03-21 21:28:16', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096944'), + (468, 2547, 'attending', '2024-03-21 21:38:35', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096945'), + (468, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'NmLXw9Nm', '7098747'), + (468, 2549, 'attending', '2024-03-24 20:20:34', '2025-12-17 19:46:33', 'NmLXw9Nm', '7099657'), + (468, 2551, 'not_attending', '2024-03-29 18:31:22', '2025-12-17 19:46:33', 'NmLXw9Nm', '7109912'), + (468, 2552, 'not_attending', '2024-03-27 22:18:12', '2025-12-17 19:46:33', 'NmLXw9Nm', '7111123'), + (468, 2553, 'maybe', '2024-03-29 18:31:29', '2025-12-17 19:46:33', 'NmLXw9Nm', '7113468'), + (468, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'NmLXw9Nm', '7114856'), + (468, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'NmLXw9Nm', '7114951'), + (468, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'NmLXw9Nm', '7114955'), + (468, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'NmLXw9Nm', '7114956'), + (468, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'NmLXw9Nm', '7114957'), + (468, 2560, 'not_attending', '2024-04-07 07:30:33', '2025-12-17 19:46:33', 'NmLXw9Nm', '7130086'), + (468, 2563, 'not_attending', '2024-04-07 07:30:41', '2025-12-17 19:46:33', 'NmLXw9Nm', '7134734'), + (468, 2564, 'not_attending', '2024-04-07 07:29:07', '2025-12-17 19:46:33', 'NmLXw9Nm', '7134735'), + (468, 2566, 'not_attending', '2024-04-07 07:29:02', '2025-12-17 19:46:34', 'NmLXw9Nm', '7140664'), + (468, 2567, 'not_attending', '2024-04-04 18:53:00', '2025-12-17 19:46:33', 'NmLXw9Nm', '7144962'), + (468, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'NmLXw9Nm', '7153615'), + (468, 2569, 'not_attending', '2024-04-07 19:06:10', '2025-12-17 19:46:33', 'NmLXw9Nm', '7154056'), + (468, 2570, 'not_attending', '2024-04-07 18:51:32', '2025-12-17 19:46:33', 'NmLXw9Nm', '7159187'), + (468, 2571, 'not_attending', '2024-04-08 01:53:12', '2025-12-17 19:46:33', 'NmLXw9Nm', '7159484'), + (468, 2572, 'not_attending', '2024-04-08 01:53:30', '2025-12-17 19:46:33', 'NmLXw9Nm', '7159522'), + (468, 2573, 'not_attending', '2024-04-09 06:19:12', '2025-12-17 19:46:34', 'NmLXw9Nm', '7160612'), + (468, 2574, 'not_attending', '2024-04-12 21:31:50', '2025-12-17 19:46:33', 'NmLXw9Nm', '7163825'), + (468, 2575, 'not_attending', '2024-04-10 19:44:18', '2025-12-17 19:46:33', 'NmLXw9Nm', '7164534'), + (468, 2576, 'not_attending', '2024-04-21 23:54:29', '2025-12-17 19:46:34', 'NmLXw9Nm', '7164538'), + (468, 2577, 'not_attending', '2024-04-11 06:04:09', '2025-12-17 19:46:33', 'NmLXw9Nm', '7166293'), + (468, 2578, 'not_attending', '2024-04-11 18:55:31', '2025-12-17 19:46:34', 'NmLXw9Nm', '7167016'), + (468, 2579, 'not_attending', '2024-04-11 19:36:27', '2025-12-17 19:46:33', 'NmLXw9Nm', '7167020'), + (468, 2580, 'attending', '2024-04-11 18:55:27', '2025-12-17 19:46:34', 'NmLXw9Nm', '7167272'), + (468, 2581, 'not_attending', '2024-04-21 23:56:47', '2025-12-17 19:46:34', 'NmLXw9Nm', '7169048'), + (468, 2582, 'not_attending', '2024-04-15 18:05:46', '2025-12-17 19:46:34', 'NmLXw9Nm', '7169765'), + (468, 2583, 'not_attending', '2024-04-15 18:05:39', '2025-12-17 19:46:34', 'NmLXw9Nm', '7172946'), + (468, 2584, 'not_attending', '2024-04-16 17:38:55', '2025-12-17 19:46:34', 'NmLXw9Nm', '7175057'), + (468, 2588, 'not_attending', '2024-04-16 17:38:51', '2025-12-17 19:46:34', 'NmLXw9Nm', '7177233'), + (468, 2589, 'not_attending', '2024-04-16 17:38:48', '2025-12-17 19:46:34', 'NmLXw9Nm', '7177235'), + (468, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'NmLXw9Nm', '7178446'), + (468, 2594, 'not_attending', '2024-04-21 23:56:43', '2025-12-17 19:46:34', 'NmLXw9Nm', '7182117'), + (468, 2595, 'not_attending', '2024-04-21 23:57:07', '2025-12-17 19:46:34', 'NmLXw9Nm', '7182252'), + (468, 2597, 'not_attending', '2024-04-21 23:54:24', '2025-12-17 19:46:34', 'NmLXw9Nm', '7186726'), + (468, 2598, 'not_attending', '2024-04-21 23:56:58', '2025-12-17 19:46:34', 'NmLXw9Nm', '7186731'), + (468, 2600, 'not_attending', '2024-04-30 17:37:45', '2025-12-17 19:46:35', 'NmLXw9Nm', '7196794'), + (468, 2602, 'attending', '2024-04-26 04:43:37', '2025-12-17 19:46:34', 'NmLXw9Nm', '7220467'), + (468, 2603, 'not_attending', '2024-05-14 18:08:59', '2025-12-17 19:46:35', 'NmLXw9Nm', '7225669'), + (468, 2604, 'not_attending', '2024-05-24 23:40:42', '2025-12-17 19:46:36', 'NmLXw9Nm', '7225670'), + (468, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'NmLXw9Nm', '7240354'), + (468, 2613, 'not_attending', '2024-05-09 16:56:02', '2025-12-17 19:46:35', 'NmLXw9Nm', '7247644'), + (468, 2614, 'not_attending', '2024-05-10 04:34:08', '2025-12-17 19:46:35', 'NmLXw9Nm', '7247645'), + (468, 2616, 'not_attending', '2024-05-09 16:55:58', '2025-12-17 19:46:35', 'NmLXw9Nm', '7250296'), + (468, 2617, 'attending', '2024-05-03 19:12:40', '2025-12-17 19:46:35', 'NmLXw9Nm', '7251633'), + (468, 2619, 'not_attending', '2024-05-10 04:34:05', '2025-12-17 19:46:35', 'NmLXw9Nm', '7252965'), + (468, 2620, 'not_attending', '2024-05-14 18:09:18', '2025-12-17 19:46:35', 'NmLXw9Nm', '7258097'), + (468, 2622, 'not_attending', '2024-05-10 04:34:00', '2025-12-17 19:46:35', 'NmLXw9Nm', '7262064'), + (468, 2623, 'maybe', '2024-05-10 21:25:28', '2025-12-17 19:46:35', 'NmLXw9Nm', '7263048'), + (468, 2624, 'attending', '2024-05-10 21:44:19', '2025-12-17 19:46:35', 'NmLXw9Nm', '7263301'), + (468, 2625, 'attending', '2024-05-10 21:46:14', '2025-12-17 19:46:35', 'NmLXw9Nm', '7263302'), + (468, 2626, 'attending', '2024-05-14 18:08:27', '2025-12-17 19:46:35', 'NmLXw9Nm', '7264723'), + (468, 2627, 'attending', '2024-05-24 23:40:17', '2025-12-17 19:46:35', 'NmLXw9Nm', '7264724'), + (468, 2628, 'maybe', '2024-05-24 23:40:57', '2025-12-17 19:46:36', 'NmLXw9Nm', '7264725'), + (468, 2629, 'attending', '2024-05-24 23:40:59', '2025-12-17 19:46:28', 'NmLXw9Nm', '7264726'), + (468, 2630, 'not_attending', '2024-05-14 18:09:05', '2025-12-17 19:46:35', 'NmLXw9Nm', '7264801'), + (468, 2632, 'not_attending', '2024-05-14 18:09:02', '2025-12-17 19:46:35', 'NmLXw9Nm', '7269123'), + (468, 2633, 'not_attending', '2024-05-14 18:09:21', '2025-12-17 19:46:35', 'NmLXw9Nm', '7270095'), + (468, 2636, 'not_attending', '2024-05-24 23:40:28', '2025-12-17 19:46:35', 'NmLXw9Nm', '7270323'), + (468, 2637, 'not_attending', '2024-05-24 23:40:32', '2025-12-17 19:46:35', 'NmLXw9Nm', '7270324'), + (468, 2641, 'not_attending', '2024-05-18 07:18:47', '2025-12-17 19:46:35', 'NmLXw9Nm', '7276107'), + (468, 2642, 'not_attending', '2024-05-18 07:18:54', '2025-12-17 19:46:35', 'NmLXw9Nm', '7276108'), + (468, 2643, 'attending', '2024-05-18 18:01:31', '2025-12-17 19:46:35', 'NmLXw9Nm', '7276587'), + (468, 2647, 'attending', '2024-06-09 19:02:37', '2025-12-17 19:46:28', 'NmLXw9Nm', '7282057'), + (468, 2649, 'not_attending', '2024-05-24 23:40:26', '2025-12-17 19:46:35', 'NmLXw9Nm', '7282950'), + (468, 2650, 'not_attending', '2024-05-24 23:40:38', '2025-12-17 19:46:36', 'NmLXw9Nm', '7288199'), + (468, 2651, 'maybe', '2024-05-24 22:04:56', '2025-12-17 19:46:35', 'NmLXw9Nm', '7288200'), + (468, 2652, 'not_attending', '2024-05-24 23:40:48', '2025-12-17 19:46:36', 'NmLXw9Nm', '7288339'), + (468, 2654, 'not_attending', '2024-05-26 21:19:46', '2025-12-17 19:46:36', 'NmLXw9Nm', '7291219'), + (468, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'NmLXw9Nm', '7302674'), + (468, 2671, 'attending', '2024-06-09 21:19:37', '2025-12-17 19:46:28', 'NmLXw9Nm', '7318256'), + (468, 2673, 'maybe', '2024-06-09 21:19:32', '2025-12-17 19:46:28', 'NmLXw9Nm', '7319473'), + (468, 2674, 'not_attending', '2024-06-30 23:55:41', '2025-12-17 19:46:29', 'NmLXw9Nm', '7319480'), + (468, 2675, 'maybe', '2024-08-04 01:49:27', '2025-12-17 19:46:31', 'NmLXw9Nm', '7319481'), + (468, 2678, 'maybe', '2024-06-12 04:07:52', '2025-12-17 19:46:28', 'NmLXw9Nm', '7319489'), + (468, 2679, 'maybe', '2024-06-12 04:07:49', '2025-12-17 19:46:29', 'NmLXw9Nm', '7319490'), + (468, 2683, 'not_attending', '2024-06-12 04:07:39', '2025-12-17 19:46:28', 'NmLXw9Nm', '7321978'), + (468, 2686, 'maybe', '2024-06-19 20:29:34', '2025-12-17 19:46:29', 'NmLXw9Nm', '7323802'), + (468, 2687, 'attending', '2024-06-11 19:38:46', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324019'), + (468, 2688, 'not_attending', '2024-06-20 22:43:08', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324073'), + (468, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324074'), + (468, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'NmLXw9Nm', '7324075'), + (468, 2691, 'attending', '2024-07-17 05:10:49', '2025-12-17 19:46:30', 'NmLXw9Nm', '7324076'), + (468, 2692, 'attending', '2024-07-27 04:14:14', '2025-12-17 19:46:30', 'NmLXw9Nm', '7324077'), + (468, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'NmLXw9Nm', '7324078'), + (468, 2694, 'attending', '2024-08-10 08:05:14', '2025-12-17 19:46:31', 'NmLXw9Nm', '7324079'), + (468, 2695, 'attending', '2024-08-16 03:14:05', '2025-12-17 19:46:31', 'NmLXw9Nm', '7324080'), + (468, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'NmLXw9Nm', '7324082'), + (468, 2698, 'not_attending', '2024-09-01 22:44:25', '2025-12-17 19:46:24', 'NmLXw9Nm', '7324083'), + (468, 2699, 'maybe', '2024-06-12 17:29:05', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324385'), + (468, 2700, 'not_attending', '2024-06-14 04:07:39', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324388'), + (468, 2701, 'not_attending', '2024-06-23 21:45:15', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324391'), + (468, 2705, 'maybe', '2024-06-23 21:45:22', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324944'), + (468, 2706, 'not_attending', '2024-06-17 07:29:15', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324947'), + (468, 2707, 'not_attending', '2024-06-17 07:29:11', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324952'), + (468, 2710, 'not_attending', '2024-06-19 20:29:19', '2025-12-17 19:46:29', 'NmLXw9Nm', '7325108'), + (468, 2711, 'not_attending', '2024-07-17 23:17:58', '2025-12-17 19:46:30', 'NmLXw9Nm', '7326524'), + (468, 2716, 'maybe', '2024-06-16 21:03:37', '2025-12-17 19:46:29', 'NmLXw9Nm', '7329096'), + (468, 2717, 'not_attending', '2024-06-23 21:45:09', '2025-12-17 19:46:29', 'NmLXw9Nm', '7329149'), + (468, 2720, 'not_attending', '2024-06-18 22:49:08', '2025-12-17 19:46:28', 'NmLXw9Nm', '7331436'), + (468, 2721, 'not_attending', '2024-06-23 21:45:00', '2025-12-17 19:46:29', 'NmLXw9Nm', '7331456'), + (468, 2722, 'not_attending', '2024-07-08 18:11:01', '2025-12-17 19:46:29', 'NmLXw9Nm', '7331457'), + (468, 2723, 'not_attending', '2024-06-19 20:29:37', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332389'), + (468, 2724, 'not_attending', '2024-06-23 21:45:05', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332562'), + (468, 2725, 'not_attending', '2024-06-19 20:29:11', '2025-12-17 19:46:28', 'NmLXw9Nm', '7332564'), + (468, 2726, 'maybe', '2024-06-19 20:29:23', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332853'), + (468, 2727, 'not_attending', '2024-06-20 22:41:46', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332865'), + (468, 2728, 'not_attending', '2024-06-20 22:42:03', '2025-12-17 19:46:29', 'NmLXw9Nm', '7334124'), + (468, 2729, 'attending', '2024-06-21 21:28:13', '2025-12-17 19:46:29', 'NmLXw9Nm', '7335092'), + (468, 2730, 'not_attending', '2024-06-22 06:29:46', '2025-12-17 19:46:29', 'NmLXw9Nm', '7335193'), + (468, 2731, 'not_attending', '2024-06-23 21:45:03', '2025-12-17 19:46:29', 'NmLXw9Nm', '7335303'), + (468, 2732, 'not_attending', '2024-06-24 02:07:23', '2025-12-17 19:46:29', 'NmLXw9Nm', '7337207'), + (468, 2734, 'not_attending', '2024-06-30 23:29:04', '2025-12-17 19:46:29', 'NmLXw9Nm', '7339440'), + (468, 2738, 'not_attending', '2024-06-30 23:54:48', '2025-12-17 19:46:29', 'NmLXw9Nm', '7344085'), + (468, 2740, 'not_attending', '2024-06-30 23:53:36', '2025-12-17 19:46:29', 'NmLXw9Nm', '7344576'), + (468, 2741, 'not_attending', '2024-06-30 23:33:33', '2025-12-17 19:46:30', 'NmLXw9Nm', '7344592'), + (468, 2742, 'not_attending', '2024-07-03 04:31:00', '2025-12-17 19:46:29', 'NmLXw9Nm', '7345167'), + (468, 2744, 'not_attending', '2024-07-03 15:22:09', '2025-12-17 19:46:29', 'NmLXw9Nm', '7347764'), + (468, 2746, 'not_attending', '2024-07-03 04:30:23', '2025-12-17 19:46:29', 'NmLXw9Nm', '7348713'), + (468, 2747, 'not_attending', '2024-07-17 01:16:17', '2025-12-17 19:46:30', 'NmLXw9Nm', '7353587'), + (468, 2751, 'not_attending', '2024-07-08 18:18:42', '2025-12-17 19:46:29', 'NmLXw9Nm', '7355530'), + (468, 2752, 'not_attending', '2024-07-08 18:18:47', '2025-12-17 19:46:29', 'NmLXw9Nm', '7355531'), + (468, 2756, 'not_attending', '2024-07-09 23:06:29', '2025-12-17 19:46:29', 'NmLXw9Nm', '7358329'), + (468, 2757, 'attending', '2024-07-11 21:08:03', '2025-12-17 19:46:30', 'NmLXw9Nm', '7358733'), + (468, 2758, 'attending', '2024-07-11 22:15:23', '2025-12-17 19:46:30', 'NmLXw9Nm', '7358837'), + (468, 2759, 'not_attending', '2024-07-12 18:49:36', '2025-12-17 19:46:30', 'NmLXw9Nm', '7359624'), + (468, 2760, 'not_attending', '2024-07-12 23:38:12', '2025-12-17 19:46:30', 'NmLXw9Nm', '7359871'), + (468, 2761, 'not_attending', '2024-07-17 23:17:51', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363412'), + (468, 2762, 'not_attending', '2024-07-14 17:55:39', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363413'), + (468, 2763, 'not_attending', '2024-07-17 23:18:02', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363594'), + (468, 2764, 'maybe', '2024-07-28 03:03:16', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363595'), + (468, 2765, 'not_attending', '2024-07-16 00:11:47', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363604'), + (468, 2766, 'maybe', '2024-07-27 02:52:55', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363643'), + (468, 2767, 'not_attending', '2024-07-17 23:18:06', '2025-12-17 19:46:30', 'NmLXw9Nm', '7364726'), + (468, 2768, 'maybe', '2024-07-18 00:48:06', '2025-12-17 19:46:30', 'NmLXw9Nm', '7366031'), + (468, 2769, 'not_attending', '2024-07-19 22:58:29', '2025-12-17 19:46:30', 'NmLXw9Nm', '7366803'), + (468, 2771, 'attending', '2024-07-20 22:40:48', '2025-12-17 19:46:30', 'NmLXw9Nm', '7368263'), + (468, 2772, 'attending', '2024-07-20 22:40:56', '2025-12-17 19:46:30', 'NmLXw9Nm', '7368267'), + (468, 2774, 'not_attending', '2024-07-21 18:46:16', '2025-12-17 19:46:30', 'NmLXw9Nm', '7368606'), + (468, 2781, 'attending', '2024-07-25 21:25:53', '2025-12-17 19:46:30', 'NmLXw9Nm', '7373194'), + (468, 2782, 'not_attending', '2024-07-27 02:52:51', '2025-12-17 19:46:30', 'NmLXw9Nm', '7376725'), + (468, 2784, 'maybe', '2024-07-31 00:40:40', '2025-12-17 19:46:31', 'NmLXw9Nm', '7380872'), + (468, 2785, 'maybe', '2024-08-02 02:14:35', '2025-12-17 19:46:31', 'NmLXw9Nm', '7380988'), + (468, 2786, 'not_attending', '2024-08-04 02:58:33', '2025-12-17 19:46:31', 'NmLXw9Nm', '7381403'), + (468, 2787, 'not_attending', '2024-08-02 02:14:47', '2025-12-17 19:46:32', 'NmLXw9Nm', '7381568'), + (468, 2788, 'maybe', '2024-08-04 22:22:39', '2025-12-17 19:46:31', 'NmLXw9Nm', '7384036'), + (468, 2789, 'not_attending', '2024-08-03 02:02:03', '2025-12-17 19:46:31', 'NmLXw9Nm', '7384047'), + (468, 2790, 'not_attending', '2024-08-04 22:22:49', '2025-12-17 19:46:31', 'NmLXw9Nm', '7384857'), + (468, 2791, 'attending', '2024-08-06 23:21:35', '2025-12-17 19:46:31', 'NmLXw9Nm', '7390760'), + (468, 2792, 'maybe', '2024-08-07 22:15:18', '2025-12-17 19:46:31', 'NmLXw9Nm', '7390763'), + (468, 2793, 'not_attending', '2024-08-07 22:18:40', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391135'), + (468, 2794, 'attending', '2024-08-08 01:50:51', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391173'), + (468, 2795, 'not_attending', '2024-08-08 17:24:27', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391265'), + (468, 2796, 'not_attending', '2024-08-15 22:05:47', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391451'), + (468, 2797, 'not_attending', '2024-08-12 22:21:29', '2025-12-17 19:46:31', 'NmLXw9Nm', '7392641'), + (468, 2799, 'attending', '2024-08-11 20:22:10', '2025-12-17 19:46:31', 'NmLXw9Nm', '7395922'), + (468, 2800, 'not_attending', '2024-08-15 22:05:45', '2025-12-17 19:46:31', 'NmLXw9Nm', '7397405'), + (468, 2801, 'maybe', '2024-08-14 18:01:09', '2025-12-17 19:46:32', 'NmLXw9Nm', '7397462'), + (468, 2802, 'not_attending', '2024-09-01 22:44:18', '2025-12-17 19:46:32', 'NmLXw9Nm', '7397463'), + (468, 2803, 'maybe', '2024-08-14 18:01:16', '2025-12-17 19:46:32', 'NmLXw9Nm', '7397869'), + (468, 2806, 'not_attending', '2024-09-18 17:49:01', '2025-12-17 19:46:25', 'NmLXw9Nm', '7404888'), + (468, 2814, 'attending', '2024-09-08 18:32:53', '2025-12-17 19:46:24', 'NmLXw9Nm', '7424267'), + (468, 2815, 'maybe', '2024-09-09 23:06:39', '2025-12-17 19:46:25', 'NmLXw9Nm', '7424268'), + (468, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'NmLXw9Nm', '7424275'), + (468, 2822, 'attending', '2024-11-02 02:27:55', '2025-12-17 19:46:26', 'NmLXw9Nm', '7424276'), + (468, 2824, 'attending', '2024-09-08 02:56:26', '2025-12-17 19:46:25', 'NmLXw9Nm', '7432751'), + (468, 2825, 'attending', '2024-09-08 02:56:56', '2025-12-17 19:46:25', 'NmLXw9Nm', '7432752'), + (468, 2826, 'attending', '2024-09-08 02:57:38', '2025-12-17 19:46:25', 'NmLXw9Nm', '7432753'), + (468, 2827, 'attending', '2024-09-08 02:57:59', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432754'), + (468, 2828, 'attending', '2024-09-08 02:58:31', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432755'), + (468, 2829, 'attending', '2024-09-08 02:58:58', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432756'), + (468, 2830, 'attending', '2024-09-08 02:59:30', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432758'), + (468, 2831, 'attending', '2024-09-08 02:59:55', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432759'), + (468, 2832, 'not_attending', '2024-09-09 23:06:27', '2025-12-17 19:46:24', 'NmLXw9Nm', '7433324'), + (468, 2833, 'attending', '2024-09-10 18:57:25', '2025-12-17 19:46:24', 'NmLXw9Nm', '7433834'), + (468, 2834, 'not_attending', '2024-09-13 19:12:33', '2025-12-17 19:46:25', 'NmLXw9Nm', '7433852'), + (468, 2835, 'not_attending', '2024-09-12 17:56:53', '2025-12-17 19:46:24', 'NmLXw9Nm', '7437354'), + (468, 2836, 'maybe', '2024-09-13 19:12:37', '2025-12-17 19:46:25', 'NmLXw9Nm', '7438708'), + (468, 2837, 'not_attending', '2024-09-12 18:57:43', '2025-12-17 19:46:25', 'NmLXw9Nm', '7438711'), + (468, 2838, 'not_attending', '2024-09-27 17:15:00', '2025-12-17 19:46:25', 'NmLXw9Nm', '7439182'), + (468, 2840, 'not_attending', '2024-09-15 21:46:47', '2025-12-17 19:46:25', 'NmLXw9Nm', '7444429'), + (468, 2841, 'not_attending', '2024-09-16 21:18:01', '2025-12-17 19:46:25', 'NmLXw9Nm', '7444444'), + (468, 2844, 'not_attending', '2024-09-19 22:55:59', '2025-12-17 19:46:25', 'NmLXw9Nm', '7450233'), + (468, 2845, 'maybe', '2024-09-21 19:15:10', '2025-12-17 19:46:25', 'NmLXw9Nm', '7452129'), + (468, 2847, 'not_attending', '2024-09-22 02:31:42', '2025-12-17 19:46:25', 'NmLXw9Nm', '7452299'), + (468, 2849, 'attending', '2024-09-28 06:05:24', '2025-12-17 19:46:25', 'NmLXw9Nm', '7457114'), + (468, 2850, 'not_attending', '2024-09-28 06:05:43', '2025-12-17 19:46:25', 'NmLXw9Nm', '7457153'), + (468, 2853, 'maybe', '2024-11-09 20:11:40', '2025-12-17 19:46:26', 'NmLXw9Nm', '7465683'), + (468, 2854, 'attending', '2024-10-02 00:27:58', '2025-12-17 19:46:26', 'NmLXw9Nm', '7465684'), + (468, 2861, 'maybe', '2024-10-01 16:31:29', '2025-12-17 19:46:26', 'NmLXw9Nm', '7469826'), + (468, 2862, 'maybe', '2024-10-01 16:31:44', '2025-12-17 19:46:25', 'NmLXw9Nm', '7470197'), + (468, 2863, 'not_attending', '2024-10-02 00:27:40', '2025-12-17 19:46:26', 'NmLXw9Nm', '7470275'), + (468, 2866, 'not_attending', '2024-11-18 04:40:57', '2025-12-17 19:46:27', 'NmLXw9Nm', '7471201'), + (468, 2870, 'attending', '2024-10-05 21:16:51', '2025-12-17 19:46:26', 'NmLXw9Nm', '7475068'), + (468, 2883, 'attending', '2024-10-23 17:32:03', '2025-12-17 19:46:26', 'NmLXw9Nm', '7649157'), + (468, 2892, 'maybe', '2024-10-28 03:44:31', '2025-12-17 19:46:26', 'NmLXw9Nm', '7672064'), + (468, 2896, 'not_attending', '2024-11-10 21:54:47', '2025-12-17 19:46:27', 'NmLXw9Nm', '7683647'), + (468, 2898, 'maybe', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'NmLXw9Nm', '7685613'), + (468, 2899, 'maybe', '2024-11-10 21:55:16', '2025-12-17 19:46:27', 'NmLXw9Nm', '7685616'), + (468, 2900, 'maybe', '2024-11-10 21:55:01', '2025-12-17 19:46:26', 'NmLXw9Nm', '7686090'), + (468, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'NmLXw9Nm', '7688194'), + (468, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'NmLXw9Nm', '7688196'), + (468, 2905, 'attending', '2024-11-09 04:30:14', '2025-12-17 19:46:27', 'NmLXw9Nm', '7688289'), + (468, 2909, 'attending', '2024-11-10 21:20:29', '2025-12-17 19:46:27', 'NmLXw9Nm', '7689771'), + (468, 2911, 'not_attending', '2024-11-11 05:28:33', '2025-12-17 19:46:27', 'NmLXw9Nm', '7689876'), + (468, 2912, 'maybe', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'NmLXw9Nm', '7692763'), + (468, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'NmLXw9Nm', '7697552'), + (468, 2915, 'not_attending', '2024-11-18 04:40:52', '2025-12-17 19:46:27', 'NmLXw9Nm', '7698151'), + (468, 2916, 'maybe', '2024-11-18 04:40:35', '2025-12-17 19:46:27', 'NmLXw9Nm', '7699006'), + (468, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'NmLXw9Nm', '7699878'), + (468, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'NmLXw9Nm', '7704043'), + (468, 2920, 'not_attending', '2024-11-24 19:35:31', '2025-12-17 19:46:28', 'NmLXw9Nm', '7708406'), + (468, 2921, 'attending', '2024-11-24 01:01:41', '2025-12-17 19:46:28', 'NmLXw9Nm', '7708460'), + (468, 2922, 'not_attending', '2024-11-25 22:53:16', '2025-12-17 19:46:21', 'NmLXw9Nm', '7710890'), + (468, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'NmLXw9Nm', '7712467'), + (468, 2925, 'not_attending', '2024-12-08 04:13:19', '2025-12-17 19:46:21', 'NmLXw9Nm', '7713584'), + (468, 2926, 'maybe', '2024-12-03 04:23:30', '2025-12-17 19:46:21', 'NmLXw9Nm', '7713585'), + (468, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'NmLXw9Nm', '7713586'), + (468, 2945, 'maybe', '2025-03-14 02:17:05', '2025-12-17 19:46:19', 'NmLXw9Nm', '7725964'), + (468, 2951, 'attending', '2024-12-11 01:08:52', '2025-12-17 19:46:21', 'NmLXw9Nm', '7729509'), + (468, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'NmLXw9Nm', '7738518'), + (468, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'NmLXw9Nm', '7750632'), + (468, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'NmLXw9Nm', '7750636'), + (468, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'NmLXw9Nm', '7796540'), + (468, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'NmLXw9Nm', '7796541'), + (468, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'NmLXw9Nm', '7796542'), + (468, 2968, 'not_attending', '2025-01-08 21:07:01', '2025-12-17 19:46:22', 'NmLXw9Nm', '7797967'), + (468, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'NmLXw9Nm', '7825913'), + (468, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', 'NmLXw9Nm', '7825920'), + (468, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'NmLXw9Nm', '7826209'), + (468, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'NmLXw9Nm', '7834742'), + (468, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'NmLXw9Nm', '7842108'), + (468, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'NmLXw9Nm', '7842902'), + (468, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'NmLXw9Nm', '7842903'), + (468, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'NmLXw9Nm', '7842904'), + (468, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'NmLXw9Nm', '7842905'), + (468, 3000, 'not_attending', '2025-02-18 02:47:19', '2025-12-17 19:46:24', 'NmLXw9Nm', '7852541'), + (468, 3003, 'not_attending', '2025-02-19 01:31:26', '2025-12-17 19:46:24', 'NmLXw9Nm', '7854589'), + (468, 3004, 'attending', '2025-02-19 00:06:30', '2025-12-17 19:46:24', 'NmLXw9Nm', '7854599'), + (468, 3005, 'not_attending', '2025-02-19 01:07:48', '2025-12-17 19:46:24', 'NmLXw9Nm', '7854604'), + (468, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'NmLXw9Nm', '7855719'), + (468, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'NmLXw9Nm', '7860683'), + (468, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'NmLXw9Nm', '7860684'), + (468, 3012, 'attending', '2025-03-02 04:04:39', '2025-12-17 19:46:19', 'NmLXw9Nm', '7866095'), + (468, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'NmLXw9Nm', '7869170'), + (468, 3014, 'maybe', '2025-04-05 05:49:29', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869185'), + (468, 3015, 'attending', '2025-04-24 01:05:21', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869186'), + (468, 3016, 'attending', '2025-04-19 22:49:34', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869187'), + (468, 3017, 'attending', '2025-03-25 01:01:00', '2025-12-17 19:46:19', 'NmLXw9Nm', '7869188'), + (468, 3018, 'attending', '2025-04-08 01:56:08', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869189'), + (468, 3019, 'attending', '2025-04-05 05:49:32', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869190'), + (468, 3020, 'attending', '2025-04-19 22:49:40', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869191'), + (468, 3022, 'attending', '2025-04-24 01:05:18', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869193'), + (468, 3028, 'attending', '2025-04-19 22:49:50', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869199'), + (468, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'NmLXw9Nm', '7869201'), + (468, 3033, 'maybe', '2025-03-11 02:34:22', '2025-12-17 19:46:19', 'NmLXw9Nm', '7877465'), + (468, 3034, 'maybe', '2025-03-11 22:38:12', '2025-12-17 19:46:19', 'NmLXw9Nm', '7878570'), + (468, 3037, 'not_attending', '2025-03-14 03:33:13', '2025-12-17 19:46:19', 'NmLXw9Nm', '7880977'), + (468, 3038, 'not_attending', '2025-03-14 03:32:59', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881989'), + (468, 3039, 'attending', '2025-03-14 03:00:20', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881992'), + (468, 3040, 'attending', '2025-03-14 03:05:41', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881994'), + (468, 3041, 'attending', '2025-03-14 03:08:18', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881995'), + (468, 3045, 'maybe', '2025-04-05 05:49:24', '2025-12-17 19:46:19', 'NmLXw9Nm', '7882691'), + (468, 3046, 'maybe', '2025-04-12 04:08:57', '2025-12-17 19:46:20', 'NmLXw9Nm', '7882692'), + (468, 3049, 'not_attending', '2025-03-17 00:15:29', '2025-12-17 19:46:19', 'NmLXw9Nm', '7883215'), + (468, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'NmLXw9Nm', '7888250'), + (468, 3058, 'not_attending', '2025-03-27 00:32:43', '2025-12-17 19:46:19', 'NmLXw9Nm', '7891460'), + (468, 3060, 'maybe', '2025-03-30 23:39:08', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892589'), + (468, 3061, 'not_attending', '2025-03-30 23:38:40', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892590'), + (468, 3062, 'not_attending', '2025-03-30 04:06:51', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892738'), + (468, 3063, 'maybe', '2025-03-27 22:00:24', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892801'), + (468, 3065, 'not_attending', '2025-04-03 22:07:42', '2025-12-17 19:46:19', 'NmLXw9Nm', '7893676'), + (468, 3066, 'attending', '2025-03-30 02:46:51', '2025-12-17 19:46:20', 'NmLXw9Nm', '7894207'), + (468, 3068, 'attending', '2025-03-30 22:46:54', '2025-12-17 19:46:19', 'NmLXw9Nm', '7894823'), + (468, 3069, 'attending', '2025-03-30 23:31:22', '2025-12-17 19:46:19', 'NmLXw9Nm', '7894828'), + (468, 3070, 'attending', '2025-03-30 23:33:31', '2025-12-17 19:46:20', 'NmLXw9Nm', '7894829'), + (468, 3071, 'attending', '2025-03-31 20:39:20', '2025-12-17 19:46:19', 'NmLXw9Nm', '7895429'), + (468, 3075, 'maybe', '2025-04-14 02:34:46', '2025-12-17 19:46:20', 'NmLXw9Nm', '7898896'), + (468, 3076, 'attending', '2025-04-05 05:50:42', '2025-12-17 19:46:20', 'NmLXw9Nm', '7899007'), + (468, 3081, 'not_attending', '2025-04-07 22:38:15', '2025-12-17 19:46:20', 'NmLXw9Nm', '7902801'), + (468, 3083, 'not_attending', '2025-04-09 19:23:23', '2025-12-17 19:46:20', 'NmLXw9Nm', '7903308'), + (468, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'NmLXw9Nm', '7903852'), + (468, 3088, 'attending', '2025-06-13 21:53:47', '2025-12-17 19:46:15', 'NmLXw9Nm', '7904777'), + (468, 3089, 'attending', '2025-04-13 17:13:49', '2025-12-17 19:46:20', 'NmLXw9Nm', '7911208'), + (468, 3093, 'not_attending', '2025-04-19 22:49:45', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342248'), + (468, 3094, 'maybe', '2025-05-02 04:20:52', '2025-12-17 19:46:21', 'NmLXw9Nm', '8342292'), + (468, 3095, 'attending', '2025-05-03 22:46:51', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342293'), + (468, 3096, 'not_attending', '2025-04-21 03:30:16', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342987'), + (468, 3097, 'attending', '2025-04-21 05:24:26', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342993'), + (468, 3098, 'not_attending', '2025-04-22 03:23:00', '2025-12-17 19:46:20', 'NmLXw9Nm', '8343504'), + (468, 3099, 'not_attending', '2025-04-21 23:07:17', '2025-12-17 19:46:20', 'NmLXw9Nm', '8343522'), + (468, 3100, 'not_attending', '2025-04-22 03:22:56', '2025-12-17 19:46:20', 'NmLXw9Nm', '8343977'), + (468, 3101, 'attending', '2025-04-24 00:08:24', '2025-12-17 19:46:20', 'NmLXw9Nm', '8345032'), + (468, 3102, 'not_attending', '2025-04-27 20:55:25', '2025-12-17 19:46:20', 'NmLXw9Nm', '8346008'), + (468, 3104, 'attending', '2025-04-26 23:29:49', '2025-12-17 19:46:15', 'NmLXw9Nm', '8349164'), + (468, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'NmLXw9Nm', '8349545'), + (468, 3107, 'maybe', '2025-04-27 22:47:23', '2025-12-17 19:46:20', 'NmLXw9Nm', '8350107'), + (468, 3109, 'attending', '2025-04-29 02:42:47', '2025-12-17 19:46:21', 'NmLXw9Nm', '8352001'), + (468, 3110, 'not_attending', '2025-05-02 04:20:35', '2025-12-17 19:46:20', 'NmLXw9Nm', '8353484'), + (468, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'NmLXw9Nm', '8353584'), + (468, 3114, 'not_attending', '2025-05-06 04:47:24', '2025-12-17 19:46:20', 'NmLXw9Nm', '8357180'), + (468, 3115, 'not_attending', '2025-05-03 05:49:20', '2025-12-17 19:46:20', 'NmLXw9Nm', '8357635'), + (468, 3119, 'not_attending', '2025-05-05 20:53:22', '2025-12-17 19:46:21', 'NmLXw9Nm', '8360035'), + (468, 3120, 'attending', '2025-05-06 00:47:39', '2025-12-17 19:46:21', 'NmLXw9Nm', '8360736'), + (468, 3121, 'maybe', '2025-05-11 02:41:23', '2025-12-17 19:46:21', 'NmLXw9Nm', '8362730'), + (468, 3122, 'not_attending', '2025-05-07 22:35:05', '2025-12-17 19:46:21', 'NmLXw9Nm', '8362978'), + (468, 3124, 'attending', '2025-05-11 02:39:30', '2025-12-17 19:46:21', 'NmLXw9Nm', '8363566'), + (468, 3125, 'attending', '2025-05-11 02:41:19', '2025-12-17 19:46:21', 'NmLXw9Nm', '8364293'), + (468, 3126, 'maybe', '2025-05-13 21:55:12', '2025-12-17 19:46:21', 'NmLXw9Nm', '8365614'), + (468, 3127, 'not_attending', '2025-05-11 03:58:21', '2025-12-17 19:46:21', 'NmLXw9Nm', '8365615'), + (468, 3128, 'maybe', '2025-05-11 18:33:51', '2025-12-17 19:46:21', 'NmLXw9Nm', '8366077'), + (468, 3129, 'not_attending', '2025-05-12 20:02:16', '2025-12-17 19:46:21', 'NmLXw9Nm', '8366441'), + (468, 3130, 'maybe', '2025-05-27 04:22:45', '2025-12-17 19:46:21', 'NmLXw9Nm', '8367403'), + (468, 3131, 'attending', '2025-05-13 00:28:23', '2025-12-17 19:46:21', 'NmLXw9Nm', '8368028'), + (468, 3132, 'not_attending', '2025-05-13 21:54:33', '2025-12-17 19:46:21', 'NmLXw9Nm', '8368029'), + (468, 3133, 'attending', '2025-05-16 19:09:20', '2025-12-17 19:46:14', 'NmLXw9Nm', '8368030'), + (468, 3134, 'maybe', '2025-05-13 00:28:29', '2025-12-17 19:46:21', 'NmLXw9Nm', '8368031'), + (468, 3135, 'attending', '2025-05-17 04:01:40', '2025-12-17 19:46:21', 'NmLXw9Nm', '8373126'), + (468, 3138, 'not_attending', '2025-05-27 04:22:34', '2025-12-17 19:46:21', 'NmLXw9Nm', '8376037'), + (468, 3142, 'not_attending', '2025-05-27 21:54:17', '2025-12-17 19:46:21', 'NmLXw9Nm', '8387505'), + (468, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'NmLXw9Nm', '8388462'), + (468, 3144, 'attending', '2025-05-30 20:24:52', '2025-12-17 19:46:14', 'NmLXw9Nm', '8393073'), + (468, 3145, 'attending', '2025-05-31 19:53:21', '2025-12-17 19:46:14', 'NmLXw9Nm', '8393168'), + (468, 3146, 'attending', '2025-06-04 04:51:47', '2025-12-17 19:46:15', 'NmLXw9Nm', '8393169'), + (468, 3150, 'maybe', '2025-06-04 04:51:49', '2025-12-17 19:46:15', 'NmLXw9Nm', '8393174'), + (468, 3153, 'maybe', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'NmLXw9Nm', '8400273'), + (468, 3154, 'attending', '2025-06-04 04:51:56', '2025-12-17 19:46:15', 'NmLXw9Nm', '8400274'), + (468, 3155, 'not_attending', '2025-06-04 04:51:57', '2025-12-17 19:46:16', 'NmLXw9Nm', '8400275'), + (468, 3156, 'not_attending', '2025-06-04 04:51:59', '2025-12-17 19:46:16', 'NmLXw9Nm', '8400276'), + (468, 3157, 'attending', '2025-06-04 04:28:53', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401407'), + (468, 3158, 'attending', '2025-06-04 04:30:10', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401408'), + (468, 3159, 'attending', '2025-06-04 04:32:58', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401410'), + (468, 3160, 'attending', '2025-06-04 04:36:10', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401411'), + (468, 3161, 'attending', '2025-06-04 04:38:06', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401412'), + (468, 3162, 'not_attending', '2025-06-05 19:30:15', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401599'), + (468, 3163, 'not_attending', '2025-06-06 23:08:00', '2025-12-17 19:46:15', 'NmLXw9Nm', '8402899'), + (468, 3164, 'attending', '2025-06-06 00:51:05', '2025-12-17 19:46:15', 'NmLXw9Nm', '8403121'), + (468, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'NmLXw9Nm', '8404977'), + (468, 3172, 'maybe', '2025-06-18 01:16:04', '2025-12-17 19:46:15', 'NmLXw9Nm', '8410181'), + (468, 3176, 'attending', '2025-06-20 01:01:56', '2025-12-17 19:46:15', 'NmLXw9Nm', '8416741'), + (468, 3179, 'attending', '2025-06-24 03:27:13', '2025-12-17 19:46:15', 'NmLXw9Nm', '8421850'), + (468, 3180, 'not_attending', '2025-06-25 20:52:03', '2025-12-17 19:46:15', 'NmLXw9Nm', '8422682'), + (468, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'NmLXw9Nm', '8430783'), + (468, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'NmLXw9Nm', '8430784'), + (468, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'NmLXw9Nm', '8430799'), + (468, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'NmLXw9Nm', '8430800'), + (468, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'NmLXw9Nm', '8430801'), + (468, 3186, 'not_attending', '2025-07-02 01:56:39', '2025-12-17 19:46:16', 'NmLXw9Nm', '8431527'), + (468, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'NmLXw9Nm', '8438709'), + (468, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'NmLXw9Nm', '8457738'), + (468, 3197, 'attending', '2025-07-18 02:28:13', '2025-12-17 19:46:17', 'NmLXw9Nm', '8458825'), + (468, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'NmLXw9Nm', '8459566'), + (468, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'NmLXw9Nm', '8459567'), + (468, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'NmLXw9Nm', '8459568'), + (468, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'NmLXw9Nm', '8461032'), + (468, 3213, 'attending', '2025-08-08 22:23:42', '2025-12-17 19:46:17', 'NmLXw9Nm', '8477876'), + (468, 3214, 'attending', '2025-08-05 06:25:51', '2025-12-17 19:46:17', 'NmLXw9Nm', '8477877'), + (468, 3215, 'attending', '2025-08-16 21:51:06', '2025-12-17 19:46:18', 'NmLXw9Nm', '8477880'), + (468, 3220, 'not_attending', '2025-08-16 21:50:29', '2025-12-17 19:46:18', 'NmLXw9Nm', '8485675'), + (468, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'NmLXw9Nm', '8485688'), + (468, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'NmLXw9Nm', '8490587'), + (468, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'NmLXw9Nm', '8493552'), + (468, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'NmLXw9Nm', '8493553'), + (468, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'NmLXw9Nm', '8493554'), + (468, 3239, 'maybe', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'NmLXw9Nm', '8493555'), + (468, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'NmLXw9Nm', '8493556'), + (468, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493557'), + (468, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493558'), + (468, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493559'), + (468, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493560'), + (468, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'NmLXw9Nm', '8493561'), + (468, 3246, 'maybe', '2025-09-24 20:50:59', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493562'), + (468, 3247, 'attending', '2025-10-04 05:54:24', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493563'), + (468, 3248, 'attending', '2025-10-04 05:54:15', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493564'), + (468, 3249, 'attending', '2025-10-04 05:54:19', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493565'), + (468, 3250, 'attending', '2025-10-04 05:54:28', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493566'), + (468, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493572'), + (468, 3271, 'not_attending', '2025-09-16 01:49:12', '2025-12-17 19:46:12', 'NmLXw9Nm', '8521430'), + (468, 3272, 'not_attending', '2025-09-22 01:55:04', '2025-12-17 19:46:12', 'NmLXw9Nm', '8524068'), + (468, 3274, 'not_attending', '2025-09-20 21:23:39', '2025-12-17 19:46:12', 'NmLXw9Nm', '8527784'), + (468, 3279, 'not_attending', '2025-10-02 22:48:24', '2025-12-17 19:46:13', 'NmLXw9Nm', '8535685'), + (468, 3281, 'not_attending', '2025-10-12 22:59:46', '2025-12-17 19:46:14', 'NmLXw9Nm', '8535687'), + (468, 3282, 'attending', '2025-10-04 20:21:37', '2025-12-17 19:46:13', 'NmLXw9Nm', '8537571'), + (468, 3283, 'not_attending', '2025-10-07 04:03:46', '2025-12-17 19:46:14', 'NmLXw9Nm', '8538077'), + (468, 3284, 'attending', '2025-10-08 18:55:04', '2025-12-17 19:46:13', 'NmLXw9Nm', '8540725'), + (468, 3285, 'attending', '2025-10-08 18:56:13', '2025-12-17 19:46:13', 'NmLXw9Nm', '8540726'), + (468, 3286, 'attending', '2025-10-08 18:58:12', '2025-12-17 19:46:14', 'NmLXw9Nm', '8540728'), + (468, 3287, 'attending', '2025-10-08 18:59:25', '2025-12-17 19:46:14', 'NmLXw9Nm', '8540729'), + (468, 3289, 'attending', '2025-10-20 18:07:43', '2025-12-17 19:46:14', 'NmLXw9Nm', '8542939'), + (468, 3290, 'not_attending', '2025-10-12 23:02:51', '2025-12-17 19:46:13', 'NmLXw9Nm', '8542943'), + (468, 3292, 'attending', '2025-10-15 05:53:16', '2025-12-17 19:46:14', 'NmLXw9Nm', '8543835'), + (468, 3293, 'attending', '2025-10-15 05:54:19', '2025-12-17 19:46:14', 'NmLXw9Nm', '8543836'), + (468, 3297, 'attending', '2025-10-21 03:10:20', '2025-12-17 19:46:14', 'NmLXw9Nm', '8548090'), + (468, 3313, 'not_attending', '2025-10-30 02:35:07', '2025-12-17 19:46:14', 'NmLXw9Nm', '8550896'), + (468, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'NmLXw9Nm', '8555421'), + (469, 1857, 'attending', '2023-01-24 00:28:09', '2025-12-17 19:47:05', 'dJ9OElB4', '5873973'), + (469, 1864, 'attending', '2023-01-21 19:52:38', '2025-12-17 19:47:05', 'dJ9OElB4', '5879675'), + (469, 1865, 'attending', '2023-01-29 00:28:55', '2025-12-17 19:47:06', 'dJ9OElB4', '5879676'), + (469, 1866, 'attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dJ9OElB4', '5880939'), + (469, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dJ9OElB4', '5880940'), + (469, 1868, 'attending', '2023-02-21 21:50:20', '2025-12-17 19:47:07', 'dJ9OElB4', '5880942'), + (469, 1869, 'attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dJ9OElB4', '5880943'), + (469, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dJ9OElB4', '5887890'), + (469, 1875, 'attending', '2023-01-28 00:01:45', '2025-12-17 19:47:06', 'dJ9OElB4', '5887908'), + (469, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dJ9OElB4', '5888598'), + (469, 1878, 'attending', '2023-01-29 00:29:22', '2025-12-17 19:47:07', 'dJ9OElB4', '5893000'), + (469, 1879, 'maybe', '2023-01-29 22:49:55', '2025-12-17 19:47:06', 'dJ9OElB4', '5893001'), + (469, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dJ9OElB4', '5893260'), + (469, 1882, 'attending', '2023-01-31 23:33:44', '2025-12-17 19:47:06', 'dJ9OElB4', '5898447'), + (469, 1883, 'maybe', '2023-01-29 19:34:31', '2025-12-17 19:47:06', 'dJ9OElB4', '5898762'), + (469, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dJ9OElB4', '5899826'), + (469, 1885, 'maybe', '2023-02-03 18:29:08', '2025-12-17 19:47:08', 'dJ9OElB4', '5899928'), + (469, 1886, 'attending', '2023-03-07 21:33:02', '2025-12-17 19:47:09', 'dJ9OElB4', '5899930'), + (469, 1888, 'attending', '2023-02-17 16:39:39', '2025-12-17 19:47:07', 'dJ9OElB4', '5900197'), + (469, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dJ9OElB4', '5900199'), + (469, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dJ9OElB4', '5900200'), + (469, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dJ9OElB4', '5900202'), + (469, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dJ9OElB4', '5900203'), + (469, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dJ9OElB4', '5901108'), + (469, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dJ9OElB4', '5901126'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (469, 1897, 'attending', '2023-02-11 23:52:14', '2025-12-17 19:47:07', 'dJ9OElB4', '5901128'), + (469, 1898, 'attending', '2023-02-01 23:57:10', '2025-12-17 19:47:06', 'dJ9OElB4', '5901263'), + (469, 1899, 'attending', '2023-02-11 00:23:07', '2025-12-17 19:47:07', 'dJ9OElB4', '5901323'), + (469, 1902, 'not_attending', '2023-02-04 20:57:08', '2025-12-17 19:47:06', 'dJ9OElB4', '5902254'), + (469, 1905, 'attending', '2023-02-05 20:47:30', '2025-12-17 19:47:06', 'dJ9OElB4', '5904479'), + (469, 1907, 'attending', '2023-02-05 21:03:39', '2025-12-17 19:47:07', 'dJ9OElB4', '5904716'), + (469, 1908, 'attending', '2023-02-07 01:41:00', '2025-12-17 19:47:07', 'dJ9OElB4', '5905018'), + (469, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dJ9OElB4', '5909655'), + (469, 1912, 'attending', '2023-02-17 16:45:45', '2025-12-17 19:47:07', 'dJ9OElB4', '5909808'), + (469, 1914, 'attending', '2023-02-12 07:02:02', '2025-12-17 19:47:07', 'dJ9OElB4', '5910302'), + (469, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dJ9OElB4', '5910522'), + (469, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dJ9OElB4', '5910526'), + (469, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dJ9OElB4', '5910528'), + (469, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dJ9OElB4', '5916219'), + (469, 1925, 'attending', '2023-02-23 19:07:17', '2025-12-17 19:47:08', 'dJ9OElB4', '5932619'), + (469, 1928, 'attending', '2023-02-18 05:46:25', '2025-12-17 19:47:07', 'dJ9OElB4', '5932627'), + (469, 1930, 'attending', '2023-02-26 22:02:23', '2025-12-17 19:47:08', 'dJ9OElB4', '5933462'), + (469, 1931, 'attending', '2023-02-26 23:28:28', '2025-12-17 19:47:08', 'dJ9OElB4', '5933464'), + (469, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dJ9OElB4', '5936234'), + (469, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dJ9OElB4', '5958351'), + (469, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dJ9OElB4', '5959751'), + (469, 1939, 'attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dJ9OElB4', '5959755'), + (469, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dJ9OElB4', '5960055'), + (469, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dJ9OElB4', '5961684'), + (469, 1942, 'attending', '2023-02-27 18:54:00', '2025-12-17 19:47:08', 'dJ9OElB4', '5962085'), + (469, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dJ9OElB4', '5962132'), + (469, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dJ9OElB4', '5962133'), + (469, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dJ9OElB4', '5962134'), + (469, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dJ9OElB4', '5962317'), + (469, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dJ9OElB4', '5962318'), + (469, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dJ9OElB4', '5965933'), + (469, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dJ9OElB4', '5967014'), + (469, 1955, 'attending', '2023-03-29 20:12:29', '2025-12-17 19:46:57', 'dJ9OElB4', '5972529'), + (469, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dJ9OElB4', '5972815'), + (469, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dJ9OElB4', '5974016'), + (469, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dJ9OElB4', '5981515'), + (469, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dJ9OElB4', '5993516'), + (469, 1970, 'attending', '2023-03-23 20:03:18', '2025-12-17 19:46:56', 'dJ9OElB4', '5993758'), + (469, 1974, 'maybe', '2023-03-30 21:42:52', '2025-12-17 19:46:57', 'dJ9OElB4', '5993778'), + (469, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dJ9OElB4', '5998939'), + (469, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dJ9OElB4', '6028191'), + (469, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dJ9OElB4', '6040066'), + (469, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dJ9OElB4', '6042717'), + (469, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dJ9OElB4', '6044838'), + (469, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dJ9OElB4', '6044839'), + (469, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJ9OElB4', '6045684'), + (469, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dJ9OElB4', '6050104'), + (469, 2002, 'attending', '2023-04-28 20:27:27', '2025-12-17 19:47:01', 'dJ9OElB4', '6052605'), + (469, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dJ9OElB4', '6053195'), + (469, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dJ9OElB4', '6053198'), + (469, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dJ9OElB4', '6056085'), + (469, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dJ9OElB4', '6056916'), + (469, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dJ9OElB4', '6059290'), + (469, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dJ9OElB4', '6060328'), + (469, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dJ9OElB4', '6061037'), + (469, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dJ9OElB4', '6061039'), + (469, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dJ9OElB4', '6067245'), + (469, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dJ9OElB4', '6068094'), + (469, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dJ9OElB4', '6068252'), + (469, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dJ9OElB4', '6068253'), + (469, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dJ9OElB4', '6068254'), + (469, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dJ9OElB4', '6068280'), + (469, 2032, 'attending', '2023-06-03 16:47:43', '2025-12-17 19:47:04', 'dJ9OElB4', '6068281'), + (469, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dJ9OElB4', '6069093'), + (469, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dJ9OElB4', '6072528'), + (469, 2043, 'attending', '2023-04-26 22:34:28', '2025-12-17 19:47:01', 'dJ9OElB4', '6073023'), + (469, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dJ9OElB4', '6079840'), + (469, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dJ9OElB4', '6083398'), + (469, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dJ9OElB4', '6093504'), + (469, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dJ9OElB4', '6097414'), + (469, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dJ9OElB4', '6097442'), + (469, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dJ9OElB4', '6097684'), + (469, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dJ9OElB4', '6098762'), + (469, 2065, 'attending', '2023-06-17 19:29:23', '2025-12-17 19:46:49', 'dJ9OElB4', '6101169'), + (469, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dJ9OElB4', '6101361'), + (469, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dJ9OElB4', '6101362'), + (469, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dJ9OElB4', '6103752'), + (469, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dJ9OElB4', '6107314'), + (469, 2083, 'attending', '2023-05-27 21:33:32', '2025-12-17 19:47:04', 'dJ9OElB4', '6115629'), + (469, 2086, 'attending', '2023-06-01 22:41:45', '2025-12-17 19:47:04', 'dJ9OElB4', '6119877'), + (469, 2087, 'attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dJ9OElB4', '6120034'), + (469, 2089, 'attending', '2023-06-03 16:48:34', '2025-12-17 19:47:04', 'dJ9OElB4', '6125227'), + (469, 2091, 'attending', '2023-06-03 16:48:05', '2025-12-17 19:47:04', 'dJ9OElB4', '6130657'), + (469, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dJ9OElB4', '6136733'), + (469, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dJ9OElB4', '6137989'), + (469, 2104, 'attending', '2023-06-22 20:08:41', '2025-12-17 19:46:50', 'dJ9OElB4', '6149499'), + (469, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dJ9OElB4', '6150864'), + (469, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dJ9OElB4', '6155491'), + (469, 2116, 'attending', '2023-07-03 23:12:42', '2025-12-17 19:46:51', 'dJ9OElB4', '6163389'), + (469, 2118, 'attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dJ9OElB4', '6164417'), + (469, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dJ9OElB4', '6166388'), + (469, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dJ9OElB4', '6176439'), + (469, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dJ9OElB4', '6182410'), + (469, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dJ9OElB4', '6185812'), + (469, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dJ9OElB4', '6187651'), + (469, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dJ9OElB4', '6187963'), + (469, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dJ9OElB4', '6187964'), + (469, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dJ9OElB4', '6187966'), + (469, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dJ9OElB4', '6187967'), + (469, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dJ9OElB4', '6187969'), + (469, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dJ9OElB4', '6334878'), + (469, 2152, 'attending', '2023-07-14 21:51:09', '2025-12-17 19:46:52', 'dJ9OElB4', '6337021'), + (469, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dJ9OElB4', '6337236'), + (469, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dJ9OElB4', '6337970'), + (469, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dJ9OElB4', '6338308'), + (469, 2159, 'attending', '2023-07-19 19:59:42', '2025-12-17 19:46:53', 'dJ9OElB4', '6338355'), + (469, 2160, 'attending', '2023-07-27 22:38:50', '2025-12-17 19:46:54', 'dJ9OElB4', '6338358'), + (469, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dJ9OElB4', '6340845'), + (469, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dJ9OElB4', '6341710'), + (469, 2165, 'attending', '2023-08-02 19:51:48', '2025-12-17 19:46:54', 'dJ9OElB4', '6342044'), + (469, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dJ9OElB4', '6342298'), + (469, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dJ9OElB4', '6343294'), + (469, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dJ9OElB4', '6347034'), + (469, 2177, 'attending', '2023-08-12 20:22:00', '2025-12-17 19:46:55', 'dJ9OElB4', '6347053'), + (469, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dJ9OElB4', '6347056'), + (469, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dJ9OElB4', '6353830'), + (469, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dJ9OElB4', '6353831'), + (469, 2189, 'maybe', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dJ9OElB4', '6357867'), + (469, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dJ9OElB4', '6358652'), + (469, 2195, 'attending', '2023-08-25 22:37:44', '2025-12-17 19:46:55', 'dJ9OElB4', '6359397'), + (469, 2196, 'attending', '2023-09-08 21:04:22', '2025-12-17 19:46:56', 'dJ9OElB4', '6359398'), + (469, 2199, 'attending', '2023-08-16 21:29:20', '2025-12-17 19:46:55', 'dJ9OElB4', '6359849'), + (469, 2200, 'attending', '2023-08-10 20:10:01', '2025-12-17 19:46:55', 'dJ9OElB4', '6359850'), + (469, 2202, 'attending', '2023-08-06 19:43:06', '2025-12-17 19:46:54', 'dJ9OElB4', '6360509'), + (469, 2204, 'attending', '2023-08-19 20:44:38', '2025-12-17 19:46:55', 'dJ9OElB4', '6361542'), + (469, 2208, 'attending', '2023-08-09 05:15:23', '2025-12-17 19:46:54', 'dJ9OElB4', '6361709'), + (469, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dJ9OElB4', '6361710'), + (469, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dJ9OElB4', '6361711'), + (469, 2211, 'attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dJ9OElB4', '6361712'), + (469, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dJ9OElB4', '6361713'), + (469, 2213, 'maybe', '2023-08-14 20:59:37', '2025-12-17 19:46:55', 'dJ9OElB4', '6362935'), + (469, 2217, 'maybe', '2023-08-14 21:00:12', '2025-12-17 19:46:55', 'dJ9OElB4', '6364333'), + (469, 2221, 'not_attending', '2023-08-16 21:29:52', '2025-12-17 19:46:55', 'dJ9OElB4', '6367357'), + (469, 2222, 'maybe', '2023-08-25 22:38:47', '2025-12-17 19:46:55', 'dJ9OElB4', '6367358'), + (469, 2232, 'maybe', '2023-08-26 22:09:05', '2025-12-17 19:46:55', 'dJ9OElB4', '6374818'), + (469, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dJ9OElB4', '6382573'), + (469, 2236, 'attending', '2023-08-31 21:58:11', '2025-12-17 19:46:55', 'dJ9OElB4', '6382618'), + (469, 2239, 'attending', '2023-09-02 20:48:48', '2025-12-17 19:46:56', 'dJ9OElB4', '6387592'), + (469, 2240, 'attending', '2023-09-09 19:26:57', '2025-12-17 19:46:56', 'dJ9OElB4', '6388603'), + (469, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dJ9OElB4', '6388604'), + (469, 2242, 'attending', '2023-09-23 19:08:21', '2025-12-17 19:46:45', 'dJ9OElB4', '6388606'), + (469, 2247, 'attending', '2023-09-06 16:32:25', '2025-12-17 19:46:56', 'dJ9OElB4', '6394628'), + (469, 2248, 'attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dJ9OElB4', '6394629'), + (469, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dJ9OElB4', '6394631'), + (469, 2253, 'attending', '2023-09-30 19:21:24', '2025-12-17 19:46:45', 'dJ9OElB4', '6401811'), + (469, 2258, 'maybe', '2023-09-23 19:08:55', '2025-12-17 19:46:45', 'dJ9OElB4', '6419492'), + (469, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dJ9OElB4', '6440863'), + (469, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dJ9OElB4', '6445440'), + (469, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dJ9OElB4', '6453951'), + (469, 2285, 'attending', '2023-10-25 22:36:21', '2025-12-17 19:46:47', 'dJ9OElB4', '6460929'), + (469, 2286, 'attending', '2023-12-02 00:23:00', '2025-12-17 19:46:48', 'dJ9OElB4', '6460930'), + (469, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dJ9OElB4', '6461696'), + (469, 2288, 'maybe', '2023-10-11 03:41:12', '2025-12-17 19:46:46', 'dJ9OElB4', '6462068'), + (469, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dJ9OElB4', '6462129'), + (469, 2290, 'attending', '2023-10-18 21:15:07', '2025-12-17 19:46:46', 'dJ9OElB4', '6462214'), + (469, 2291, 'attending', '2023-10-19 02:04:42', '2025-12-17 19:46:46', 'dJ9OElB4', '6462215'), + (469, 2293, 'attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dJ9OElB4', '6463218'), + (469, 2296, 'attending', '2023-10-25 22:36:04', '2025-12-17 19:46:47', 'dJ9OElB4', '6468393'), + (469, 2299, 'maybe', '2023-10-19 02:05:05', '2025-12-17 19:46:46', 'dJ9OElB4', '6472181'), + (469, 2303, 'attending', '2023-10-28 19:44:45', '2025-12-17 19:46:47', 'dJ9OElB4', '6482691'), + (469, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dJ9OElB4', '6482693'), + (469, 2306, 'attending', '2023-11-14 21:28:42', '2025-12-17 19:46:47', 'dJ9OElB4', '6484200'), + (469, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dJ9OElB4', '6484680'), + (469, 2310, 'attending', '2023-11-09 21:18:44', '2025-12-17 19:46:47', 'dJ9OElB4', '6487709'), + (469, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dJ9OElB4', '6507741'), + (469, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dJ9OElB4', '6514659'), + (469, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dJ9OElB4', '6514660'), + (469, 2324, 'attending', '2023-12-09 04:11:03', '2025-12-17 19:46:49', 'dJ9OElB4', '6514662'), + (469, 2325, 'attending', '2023-12-16 21:12:46', '2025-12-17 19:46:36', 'dJ9OElB4', '6514663'), + (469, 2328, 'maybe', '2023-11-03 18:50:11', '2025-12-17 19:46:47', 'dJ9OElB4', '6515504'), + (469, 2330, 'attending', '2023-11-11 00:40:54', '2025-12-17 19:46:47', 'dJ9OElB4', '6517941'), + (469, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dJ9OElB4', '6519103'), + (469, 2335, 'attending', '2023-11-09 21:19:01', '2025-12-17 19:46:47', 'dJ9OElB4', '6534890'), + (469, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dJ9OElB4', '6535681'), + (469, 2345, 'attending', '2023-11-29 20:22:15', '2025-12-17 19:46:48', 'dJ9OElB4', '6582414'), + (469, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dJ9OElB4', '6584747'), + (469, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dJ9OElB4', '6587097'), + (469, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dJ9OElB4', '6609022'), + (469, 2364, 'attending', '2023-12-09 00:10:03', '2025-12-17 19:46:49', 'dJ9OElB4', '6613011'), + (469, 2370, 'attending', '2023-12-13 21:36:20', '2025-12-17 19:46:36', 'dJ9OElB4', '6623765'), + (469, 2371, 'attending', '2023-12-15 02:11:51', '2025-12-17 19:46:36', 'dJ9OElB4', '6624495'), + (469, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dJ9OElB4', '6632757'), + (469, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dJ9OElB4', '6644187'), + (469, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dJ9OElB4', '6648951'), + (469, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dJ9OElB4', '6648952'), + (469, 2391, 'maybe', '2024-01-13 00:52:20', '2025-12-17 19:46:37', 'dJ9OElB4', '6654138'), + (469, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dJ9OElB4', '6655401'), + (469, 2399, 'attending', '2024-01-13 21:34:42', '2025-12-17 19:46:38', 'dJ9OElB4', '6657583'), + (469, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dJ9OElB4', '6661585'), + (469, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dJ9OElB4', '6661588'), + (469, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dJ9OElB4', '6661589'), + (469, 2406, 'attending', '2024-01-19 23:30:48', '2025-12-17 19:46:40', 'dJ9OElB4', '6692344'), + (469, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dJ9OElB4', '6699906'), + (469, 2408, 'attending', '2024-01-27 20:54:36', '2025-12-17 19:46:40', 'dJ9OElB4', '6699907'), + (469, 2409, 'attending', '2024-02-03 23:50:06', '2025-12-17 19:46:41', 'dJ9OElB4', '6699909'), + (469, 2410, 'attending', '2024-02-10 23:50:33', '2025-12-17 19:46:41', 'dJ9OElB4', '6699911'), + (469, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'dJ9OElB4', '6699913'), + (469, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dJ9OElB4', '6701109'), + (469, 2421, 'attending', '2024-01-26 23:29:38', '2025-12-17 19:46:40', 'dJ9OElB4', '6704598'), + (469, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dJ9OElB4', '6705219'), + (469, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dJ9OElB4', '6710153'), + (469, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dJ9OElB4', '6711552'), + (469, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dJ9OElB4', '6711553'), + (469, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dJ9OElB4', '6722688'), + (469, 2438, 'attending', '2024-02-08 00:47:45', '2025-12-17 19:46:41', 'dJ9OElB4', '6730201'), + (469, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dJ9OElB4', '6730620'), + (469, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dJ9OElB4', '6730642'), + (469, 2445, 'attending', '2024-02-16 23:47:22', '2025-12-17 19:46:41', 'dJ9OElB4', '6734368'), + (469, 2446, 'attending', '2024-03-01 19:14:44', '2025-12-17 19:46:43', 'dJ9OElB4', '6734369'), + (469, 2447, 'attending', '2024-03-15 21:43:13', '2025-12-17 19:46:32', 'dJ9OElB4', '6734370'), + (469, 2448, 'maybe', '2024-03-29 22:35:47', '2025-12-17 19:46:33', 'dJ9OElB4', '6734371'), + (469, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dJ9OElB4', '6740364'), + (469, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dJ9OElB4', '6743829'), + (469, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dJ9OElB4', '7030380'), + (469, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dJ9OElB4', '7033677'), + (469, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dJ9OElB4', '7035415'), + (469, 2476, 'attending', '2024-02-26 00:57:26', '2025-12-17 19:46:43', 'dJ9OElB4', '7035691'), + (469, 2480, 'maybe', '2024-02-24 23:42:39', '2025-12-17 19:46:43', 'dJ9OElB4', '7042160'), + (469, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dJ9OElB4', '7044715'), + (469, 2487, 'not_attending', '2024-03-22 22:25:33', '2025-12-17 19:46:33', 'dJ9OElB4', '7049279'), + (469, 2489, 'attending', '2024-02-28 23:17:22', '2025-12-17 19:46:43', 'dJ9OElB4', '7050161'), + (469, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dJ9OElB4', '7050318'), + (469, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dJ9OElB4', '7050319'), + (469, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dJ9OElB4', '7050322'), + (469, 2498, 'attending', '2024-03-20 20:24:41', '2025-12-17 19:46:33', 'dJ9OElB4', '7057662'), + (469, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dJ9OElB4', '7057804'), + (469, 2500, 'attending', '2024-03-07 00:16:09', '2025-12-17 19:46:43', 'dJ9OElB4', '7058603'), + (469, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dJ9OElB4', '7059866'), + (469, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dJ9OElB4', '7072824'), + (469, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dJ9OElB4', '7074348'), + (469, 2510, 'attending', '2024-03-21 21:37:36', '2025-12-17 19:46:33', 'dJ9OElB4', '7074350'), + (469, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJ9OElB4', '7074364'), + (469, 2534, 'attending', '2024-03-13 19:54:04', '2025-12-17 19:46:32', 'dJ9OElB4', '7076875'), + (469, 2539, 'attending', '2024-04-03 21:43:30', '2025-12-17 19:46:33', 'dJ9OElB4', '7085486'), + (469, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dJ9OElB4', '7089267'), + (469, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dJ9OElB4', '7098747'), + (469, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dJ9OElB4', '7113468'), + (469, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dJ9OElB4', '7114856'), + (469, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'dJ9OElB4', '7114951'), + (469, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dJ9OElB4', '7114955'), + (469, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dJ9OElB4', '7114956'), + (469, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dJ9OElB4', '7114957'), + (469, 2562, 'maybe', '2024-04-03 21:38:45', '2025-12-17 19:46:33', 'dJ9OElB4', '7134552'), + (469, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dJ9OElB4', '7153615'), + (469, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dJ9OElB4', '7159484'), + (469, 2575, 'attending', '2024-04-12 22:14:01', '2025-12-17 19:46:33', 'dJ9OElB4', '7164534'), + (469, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dJ9OElB4', '7178446'), + (469, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dJ9OElB4', '7220467'), + (469, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dJ9OElB4', '7240354'), + (469, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dJ9OElB4', '7251633'), + (469, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dJ9OElB4', '7263048'), + (469, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dJ9OElB4', '7302674'), + (469, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dJ9OElB4', '7324073'), + (469, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJ9OElB4', '7324074'), + (469, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJ9OElB4', '7324075'), + (469, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJ9OElB4', '7324078'), + (469, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dJ9OElB4', '7324082'), + (469, 2706, 'attending', '2024-06-18 00:01:10', '2025-12-17 19:46:28', 'dJ9OElB4', '7324947'), + (469, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dJ9OElB4', '7331457'), + (469, 2723, 'attending', '2024-06-19 17:35:42', '2025-12-17 19:46:29', 'dJ9OElB4', '7332389'), + (469, 2724, 'attending', '2024-06-26 22:13:03', '2025-12-17 19:46:29', 'dJ9OElB4', '7332562'), + (469, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJ9OElB4', '7356752'), + (469, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dJ9OElB4', '7363643'), + (469, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJ9OElB4', '7368606'), + (469, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJ9OElB4', '7397462'), + (469, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJ9OElB4', '7432751'), + (469, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJ9OElB4', '7432752'), + (469, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJ9OElB4', '7432753'), + (469, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJ9OElB4', '7432754'), + (469, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJ9OElB4', '7432755'), + (469, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJ9OElB4', '7432756'), + (469, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJ9OElB4', '7432758'), + (469, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJ9OElB4', '7432759'), + (469, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dJ9OElB4', '7433834'), + (469, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJ9OElB4', '7470197'), + (470, 2066, 'not_attending', '2023-06-09 18:33:39', '2025-12-17 19:47:04', 'Anal0wJm', '6101361'), + (470, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Anal0wJm', '6150864'), + (470, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Anal0wJm', '6155491'), + (470, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Anal0wJm', '6164417'), + (470, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Anal0wJm', '6166388'), + (470, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Anal0wJm', '6176439'), + (470, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'Anal0wJm', '6177485'), + (470, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'Anal0wJm', '6182410'), + (470, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Anal0wJm', '6185812'), + (470, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Anal0wJm', '6187651'), + (470, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Anal0wJm', '6187963'), + (470, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Anal0wJm', '6187964'), + (470, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Anal0wJm', '6187966'), + (470, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Anal0wJm', '6187967'), + (470, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Anal0wJm', '6187969'), + (470, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Anal0wJm', '6334878'), + (471, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'rdO7KaPd', '3149493'), + (471, 393, 'attending', '2021-06-18 13:59:05', '2025-12-17 19:47:38', 'rdO7KaPd', '3236448'), + (471, 823, 'maybe', '2021-06-19 01:17:55', '2025-12-17 19:47:48', 'rdO7KaPd', '3974109'), + (471, 844, 'not_attending', '2021-06-21 14:59:45', '2025-12-17 19:47:38', 'rdO7KaPd', '4014338'), + (471, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'rdO7KaPd', '4021848'), + (471, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'rdO7KaPd', '4136937'), + (471, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'rdO7KaPd', '4136938'), + (471, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'rdO7KaPd', '4136947'), + (471, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdO7KaPd', '4210314'), + (471, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'rdO7KaPd', '4225444'), + (471, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'rdO7KaPd', '4229417'), + (471, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'rdO7KaPd', '4229418'), + (471, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'rdO7KaPd', '4229420'), + (471, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'rdO7KaPd', '4229423'), + (471, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdO7KaPd', '4239259'), + (471, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'rdO7KaPd', '4240316'), + (471, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'rdO7KaPd', '4240317'), + (471, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdO7KaPd', '4240318'), + (471, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'rdO7KaPd', '4240320'), + (471, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdO7KaPd', '4250163'), + (471, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'rdO7KaPd', '4275957'), + (471, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdO7KaPd', '4277819'), + (471, 923, 'not_attending', '2021-07-20 02:30:40', '2025-12-17 19:47:40', 'rdO7KaPd', '4292773'), + (471, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdO7KaPd', '4301723'), + (471, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'rdO7KaPd', '4302093'), + (471, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdO7KaPd', '4304151'), + (471, 940, 'not_attending', '2021-07-30 16:29:34', '2025-12-17 19:47:40', 'rdO7KaPd', '4309049'), + (471, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'rdO7KaPd', '4315713'), + (471, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'rdO7KaPd', '4315714'), + (471, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'rdO7KaPd', '4315726'), + (471, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdO7KaPd', '4356801'), + (471, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'rdO7KaPd', '4366186'), + (471, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdO7KaPd', '4366187'), + (471, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'rdO7KaPd', '4420735'), + (471, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'rdO7KaPd', '4420738'), + (471, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'rdO7KaPd', '4420739'), + (471, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'rdO7KaPd', '4420741'), + (471, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'rdO7KaPd', '4420744'), + (471, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'rdO7KaPd', '4420747'), + (471, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'rdO7KaPd', '4420748'), + (471, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'rdO7KaPd', '4420749'), + (471, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdO7KaPd', '6045684'), + (472, 244, 'not_attending', '2020-10-19 18:13:55', '2025-12-17 19:47:52', '0mqqyG1m', '3149475'), + (472, 344, 'maybe', '2020-10-17 20:58:47', '2025-12-17 19:47:53', '0mqqyG1m', '3206906'), + (472, 370, 'not_attending', '2020-10-14 02:00:09', '2025-12-17 19:47:52', '0mqqyG1m', '3221405'), + (472, 371, 'not_attending', '2020-10-14 01:59:29', '2025-12-17 19:47:52', '0mqqyG1m', '3221406'), + (472, 372, 'not_attending', '2020-10-20 19:07:40', '2025-12-17 19:47:52', '0mqqyG1m', '3221407'), + (472, 373, 'not_attending', '2020-10-24 17:48:18', '2025-12-17 19:47:52', '0mqqyG1m', '3221413'), + (472, 376, 'not_attending', '2020-10-14 01:59:40', '2025-12-17 19:47:52', '0mqqyG1m', '3222827'), + (472, 382, 'not_attending', '2020-10-14 02:00:16', '2025-12-17 19:47:52', '0mqqyG1m', '3226873'), + (472, 387, 'attending', '2020-10-14 01:59:19', '2025-12-17 19:47:52', '0mqqyG1m', '3228700'), + (472, 388, 'attending', '2020-10-19 18:14:39', '2025-12-17 19:47:52', '0mqqyG1m', '3228701'), + (472, 391, 'not_attending', '2020-10-13 03:21:23', '2025-12-17 19:47:52', '0mqqyG1m', '3236446'), + (472, 414, 'not_attending', '2020-10-18 18:48:19', '2025-12-17 19:47:52', '0mqqyG1m', '3237277'), + (472, 415, 'not_attending', '2020-10-13 03:21:29', '2025-12-17 19:47:52', '0mqqyG1m', '3238044'), + (472, 417, 'not_attending', '2020-10-14 02:00:05', '2025-12-17 19:47:52', '0mqqyG1m', '3238779'), + (472, 418, 'attending', '2020-10-14 22:29:20', '2025-12-17 19:47:52', '0mqqyG1m', '3241728'), + (472, 419, 'not_attending', '2020-10-14 02:00:15', '2025-12-17 19:47:52', '0mqqyG1m', '3242234'), + (472, 420, 'attending', '2020-10-15 18:48:42', '2025-12-17 19:47:52', '0mqqyG1m', '3245293'), + (472, 421, 'attending', '2020-10-16 08:09:18', '2025-12-17 19:47:52', '0mqqyG1m', '3245294'), + (472, 422, 'maybe', '2020-10-28 21:06:03', '2025-12-17 19:47:53', '0mqqyG1m', '3245295'), + (472, 423, 'maybe', '2020-11-05 19:20:30', '2025-12-17 19:47:53', '0mqqyG1m', '3245296'), + (472, 424, 'attending', '2020-10-19 01:16:57', '2025-12-17 19:47:52', '0mqqyG1m', '3245751'), + (472, 426, 'not_attending', '2020-10-18 18:48:38', '2025-12-17 19:47:52', '0mqqyG1m', '3250232'), + (472, 428, 'attending', '2020-10-26 23:06:10', '2025-12-17 19:47:53', '0mqqyG1m', '3250332'), + (472, 430, 'attending', '2020-10-21 17:15:47', '2025-12-17 19:47:52', '0mqqyG1m', '3253094'), + (472, 431, 'maybe', '2020-10-27 22:33:29', '2025-12-17 19:47:53', '0mqqyG1m', '3253225'), + (472, 432, 'maybe', '2020-10-17 20:58:53', '2025-12-17 19:47:53', '0mqqyG1m', '3254416'), + (472, 433, 'maybe', '2020-10-17 20:58:57', '2025-12-17 19:47:53', '0mqqyG1m', '3254417'), + (472, 434, 'maybe', '2020-11-02 02:45:40', '2025-12-17 19:47:53', '0mqqyG1m', '3254418'), + (472, 435, 'attending', '2020-10-24 18:04:51', '2025-12-17 19:47:52', '0mqqyG1m', '3254790'), + (472, 437, 'not_attending', '2020-10-28 21:04:55', '2025-12-17 19:47:53', '0mqqyG1m', '3256160'), + (472, 438, 'not_attending', '2020-10-27 01:35:57', '2025-12-17 19:47:53', '0mqqyG1m', '3256163'), + (472, 439, 'not_attending', '2020-10-28 21:04:53', '2025-12-17 19:47:53', '0mqqyG1m', '3256164'), + (472, 440, 'maybe', '2020-11-07 23:55:04', '2025-12-17 19:47:53', '0mqqyG1m', '3256168'), + (472, 441, 'not_attending', '2020-11-15 00:46:49', '2025-12-17 19:47:54', '0mqqyG1m', '3256169'), + (472, 443, 'maybe', '2020-10-26 23:06:05', '2025-12-17 19:47:53', '0mqqyG1m', '3263578'), + (472, 444, 'not_attending', '2020-10-25 17:12:01', '2025-12-17 19:47:53', '0mqqyG1m', '3263745'), + (472, 445, 'maybe', '2020-11-02 02:45:50', '2025-12-17 19:47:54', '0mqqyG1m', '3266138'), + (472, 446, 'not_attending', '2020-10-27 22:33:20', '2025-12-17 19:47:53', '0mqqyG1m', '3267163'), + (472, 447, 'maybe', '2020-10-28 17:50:03', '2025-12-17 19:47:53', '0mqqyG1m', '3267895'), + (472, 449, 'maybe', '2020-11-02 02:45:34', '2025-12-17 19:47:53', '0mqqyG1m', '3272055'), + (472, 456, 'maybe', '2020-11-05 19:20:21', '2025-12-17 19:47:54', '0mqqyG1m', '3276428'), + (472, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '0mqqyG1m', '3281467'), + (472, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '0mqqyG1m', '3281470'), + (472, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '0mqqyG1m', '3281829'), + (472, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '0mqqyG1m', '3285413'), + (472, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '0mqqyG1m', '3285414'), + (472, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '0mqqyG1m', '3297764'), + (472, 483, 'maybe', '2020-11-21 00:02:58', '2025-12-17 19:47:54', '0mqqyG1m', '3297791'), + (472, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '0mqqyG1m', '3313856'), + (472, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '0mqqyG1m', '3314909'), + (472, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '0mqqyG1m', '3314964'), + (472, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '0mqqyG1m', '3323365'), + (472, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '0mqqyG1m', '3329383'), + (472, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '0mqqyG1m', '3351539'), + (472, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '0mqqyG1m', '3386848'), + (472, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '0mqqyG1m', '3389527'), + (472, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '0mqqyG1m', '3396499'), + (472, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '0mqqyG1m', '3403650'), + (472, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '0mqqyG1m', '3406988'), + (472, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '0mqqyG1m', '3416576'), + (472, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '0mqqyG1m', '3418925'), + (472, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqqyG1m', '6045684'), + (473, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6YMMDQd', '6045684'), + (474, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Agv90Kym', '6482693'), + (474, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Agv90Kym', '6484200'), + (474, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Agv90Kym', '6507741'), + (474, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Agv90Kym', '6514659'), + (474, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Agv90Kym', '6514660'), + (474, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Agv90Kym', '6519103'), + (474, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Agv90Kym', '6535681'), + (474, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Agv90Kym', '6584747'), + (474, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Agv90Kym', '6587097'), + (474, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Agv90Kym', '6609022'), + (474, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Agv90Kym', '6632757'), + (474, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Agv90Kym', '6644187'), + (474, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Agv90Kym', '6648951'), + (474, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Agv90Kym', '6648952'), + (474, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'Agv90Kym', '6651141'), + (474, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Agv90Kym', '6655401'), + (474, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Agv90Kym', '6661585'), + (474, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Agv90Kym', '6661588'), + (474, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Agv90Kym', '6661589'), + (474, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Agv90Kym', '6699906'), + (474, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Agv90Kym', '6699913'), + (474, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Agv90Kym', '6701109'), + (474, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Agv90Kym', '6705219'), + (474, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Agv90Kym', '6710153'), + (474, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Agv90Kym', '6711552'), + (474, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'Agv90Kym', '6711553'), + (474, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Agv90Kym', '6722688'), + (474, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Agv90Kym', '6730620'), + (474, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'Agv90Kym', '6730642'), + (474, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Agv90Kym', '6740364'), + (474, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Agv90Kym', '6743829'), + (474, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Agv90Kym', '7030380'), + (474, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Agv90Kym', '7033677'), + (474, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'Agv90Kym', '7035415'), + (474, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Agv90Kym', '7044715'), + (474, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Agv90Kym', '7050318'), + (474, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Agv90Kym', '7050319'), + (474, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Agv90Kym', '7050322'), + (474, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Agv90Kym', '7057804'), + (474, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Agv90Kym', '7072824'), + (474, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Agv90Kym', '7074348'), + (474, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'Agv90Kym', '7089267'), + (474, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Agv90Kym', '7098747'), + (474, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Agv90Kym', '7113468'), + (474, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Agv90Kym', '7114856'), + (474, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Agv90Kym', '7114951'), + (474, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Agv90Kym', '7114955'), + (474, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Agv90Kym', '7114956'), + (474, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'Agv90Kym', '7153615'), + (474, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Agv90Kym', '7159484'), + (474, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Agv90Kym', '7178446'), + (475, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgkMV1jA', '6045684'), + (476, 7, 'attending', '2020-03-23 23:47:28', '2025-12-17 19:47:58', 'kdKXWGNm', '2958049'), + (476, 8, 'attending', '2020-03-23 23:47:21', '2025-12-17 19:47:58', 'kdKXWGNm', '2958050'), + (476, 10, 'attending', '2020-03-23 23:47:44', '2025-12-17 19:47:56', 'kdKXWGNm', '2958053'), + (476, 13, 'attending', '2020-04-08 23:29:54', '2025-12-17 19:47:57', 'kdKXWGNm', '2958057'), + (476, 29, 'maybe', '2020-03-23 23:47:09', '2025-12-17 19:47:56', 'kdKXWGNm', '2961309'), + (476, 30, 'maybe', '2020-03-23 23:46:27', '2025-12-17 19:47:57', 'kdKXWGNm', '2961895'), + (476, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'kdKXWGNm', '2969208'), + (476, 37, 'maybe', '2020-03-31 00:24:17', '2025-12-17 19:47:56', 'kdKXWGNm', '2969680'), + (476, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'kdKXWGNm', '2971546'), + (476, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'kdKXWGNm', '2974534'), + (476, 46, 'maybe', '2020-04-11 11:40:49', '2025-12-17 19:47:57', 'kdKXWGNm', '2974955'), + (476, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'kdKXWGNm', '2975384'), + (476, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'kdKXWGNm', '2975385'), + (476, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'kdKXWGNm', '2976575'), + (476, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'kdKXWGNm', '2977343'), + (476, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'kdKXWGNm', '2977812'), + (476, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'kdKXWGNm', '2977931'), + (476, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', 'kdKXWGNm', '2978244'), + (476, 75, 'attending', '2020-04-25 11:49:13', '2025-12-17 19:47:57', 'kdKXWGNm', '2978245'), + (476, 76, 'attending', '2020-05-01 18:04:50', '2025-12-17 19:47:57', 'kdKXWGNm', '2978246'), + (476, 77, 'attending', '2020-05-05 22:50:39', '2025-12-17 19:47:57', 'kdKXWGNm', '2978247'), + (476, 78, 'attending', '2020-05-20 07:54:33', '2025-12-17 19:47:57', 'kdKXWGNm', '2978249'), + (476, 79, 'attending', '2020-05-28 22:24:47', '2025-12-17 19:47:57', 'kdKXWGNm', '2978250'), + (476, 81, 'attending', '2020-06-13 00:42:12', '2025-12-17 19:47:58', 'kdKXWGNm', '2978252'), + (476, 82, 'attending', '2020-04-24 03:53:31', '2025-12-17 19:47:57', 'kdKXWGNm', '2978433'), + (476, 83, 'attending', '2020-05-08 01:01:45', '2025-12-17 19:47:57', 'kdKXWGNm', '2978438'), + (476, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'kdKXWGNm', '2980871'), + (476, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'kdKXWGNm', '2981388'), + (476, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'kdKXWGNm', '2986743'), + (476, 101, 'attending', '2020-04-21 21:44:55', '2025-12-17 19:47:57', 'kdKXWGNm', '2989975'), + (476, 103, 'attending', '2020-05-04 23:11:02', '2025-12-17 19:47:57', 'kdKXWGNm', '2991407'), + (476, 104, 'attending', '2020-04-25 17:08:40', '2025-12-17 19:47:57', 'kdKXWGNm', '2991471'), + (476, 106, 'attending', '2020-04-28 13:10:21', '2025-12-17 19:47:57', 'kdKXWGNm', '2993501'), + (476, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'kdKXWGNm', '2994480'), + (476, 114, 'attending', '2020-04-28 16:30:08', '2025-12-17 19:47:57', 'kdKXWGNm', '2994911'), + (476, 115, 'attending', '2020-05-14 05:53:39', '2025-12-17 19:47:57', 'kdKXWGNm', '3001217'), + (476, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'kdKXWGNm', '3023063'), + (476, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'kdKXWGNm', '3034321'), + (476, 134, 'attending', '2020-05-25 01:05:21', '2025-12-17 19:47:57', 'kdKXWGNm', '3034367'), + (476, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'kdKXWGNm', '3035881'), + (476, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'kdKXWGNm', '3049983'), + (476, 147, 'attending', '2020-08-20 22:21:57', '2025-12-17 19:47:56', 'kdKXWGNm', '3058684'), + (476, 169, 'attending', '2020-06-15 18:41:00', '2025-12-17 19:47:58', 'kdKXWGNm', '3058741'), + (476, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'kdKXWGNm', '3058959'), + (476, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'kdKXWGNm', '3067093'), + (476, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'kdKXWGNm', '3075228'), + (476, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'kdKXWGNm', '3075456'), + (476, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'kdKXWGNm', '3083791'), + (476, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'kdKXWGNm', '3085151'), + (476, 191, 'attending', '2020-07-08 00:23:25', '2025-12-17 19:47:55', 'kdKXWGNm', '3087259'), + (476, 192, 'maybe', '2020-07-16 02:01:50', '2025-12-17 19:47:55', 'kdKXWGNm', '3087260'), + (476, 193, 'attending', '2020-07-24 14:16:33', '2025-12-17 19:47:55', 'kdKXWGNm', '3087261'), + (476, 194, 'attending', '2020-08-01 21:02:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3087262'), + (476, 195, 'attending', '2020-08-08 15:41:06', '2025-12-17 19:47:56', 'kdKXWGNm', '3087264'), + (476, 196, 'not_attending', '2020-08-15 18:52:39', '2025-12-17 19:47:56', 'kdKXWGNm', '3087265'), + (476, 197, 'attending', '2020-08-20 22:21:53', '2025-12-17 19:47:56', 'kdKXWGNm', '3087266'), + (476, 198, 'attending', '2020-08-29 16:41:09', '2025-12-17 19:47:56', 'kdKXWGNm', '3087267'), + (476, 199, 'attending', '2020-09-04 16:38:16', '2025-12-17 19:47:56', 'kdKXWGNm', '3087268'), + (476, 200, 'attending', '2020-09-06 16:58:54', '2025-12-17 19:47:56', 'kdKXWGNm', '3087269'), + (476, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'kdKXWGNm', '3088653'), + (476, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'kdKXWGNm', '3106813'), + (476, 223, 'attending', '2020-09-10 11:44:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3129980'), + (476, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'kdKXWGNm', '3132817'), + (476, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'kdKXWGNm', '3132820'), + (476, 231, 'attending', '2020-07-19 19:49:01', '2025-12-17 19:47:55', 'kdKXWGNm', '3139762'), + (476, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'kdKXWGNm', '3155321'), + (476, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'kdKXWGNm', '3162006'), + (476, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'kdKXWGNm', '3163442'), + (476, 281, 'attending', '2020-08-09 19:32:28', '2025-12-17 19:47:56', 'kdKXWGNm', '3166945'), + (476, 293, 'attending', '2020-08-19 23:59:23', '2025-12-17 19:47:56', 'kdKXWGNm', '3172832'), + (476, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3172833'), + (476, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'kdKXWGNm', '3172834'), + (476, 296, 'not_attending', '2020-09-11 01:23:45', '2025-12-17 19:47:56', 'kdKXWGNm', '3172876'), + (476, 301, 'not_attending', '2020-08-26 00:07:31', '2025-12-17 19:47:56', 'kdKXWGNm', '3178027'), + (476, 304, 'attending', '2020-09-07 14:25:42', '2025-12-17 19:47:56', 'kdKXWGNm', '3178916'), + (476, 307, 'attending', '2020-08-17 15:09:21', '2025-12-17 19:47:56', 'kdKXWGNm', '3182590'), + (476, 308, 'attending', '2020-09-04 01:10:00', '2025-12-17 19:47:56', 'kdKXWGNm', '3183341'), + (476, 311, 'attending', '2020-09-19 21:21:03', '2025-12-17 19:47:56', 'kdKXWGNm', '3186057'), + (476, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3191735'), + (476, 318, 'attending', '2020-09-01 21:07:08', '2025-12-17 19:47:56', 'kdKXWGNm', '3193885'), + (476, 319, 'attending', '2020-08-31 23:35:28', '2025-12-17 19:47:56', 'kdKXWGNm', '3194179'), + (476, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'kdKXWGNm', '3200209'), + (476, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', 'kdKXWGNm', '3200495'), + (476, 343, 'attending', '2020-09-22 22:54:04', '2025-12-17 19:47:56', 'kdKXWGNm', '3206759'), + (476, 360, 'attending', '2020-09-17 00:16:11', '2025-12-17 19:47:56', 'kdKXWGNm', '3212671'), + (476, 361, 'not_attending', '2020-09-14 18:42:39', '2025-12-17 19:47:56', 'kdKXWGNm', '3213323'), + (476, 362, 'not_attending', '2020-09-25 15:07:44', '2025-12-17 19:47:52', 'kdKXWGNm', '3214207'), + (476, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'kdKXWGNm', '3217037'), + (476, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'kdKXWGNm', '3218510'), + (476, 368, 'not_attending', '2020-10-01 23:56:52', '2025-12-17 19:47:52', 'kdKXWGNm', '3221403'), + (476, 385, 'attending', '2020-10-01 19:21:10', '2025-12-17 19:47:52', 'kdKXWGNm', '3228698'), + (476, 386, 'attending', '2020-10-10 14:30:07', '2025-12-17 19:47:52', 'kdKXWGNm', '3228699'), + (476, 387, 'attending', '2020-10-17 14:24:30', '2025-12-17 19:47:52', 'kdKXWGNm', '3228700'), + (476, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'kdKXWGNm', '3228701'), + (476, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'kdKXWGNm', '3245751'), + (476, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'kdKXWGNm', '3250232'), + (476, 429, 'attending', '2020-12-06 20:29:50', '2025-12-17 19:47:54', 'kdKXWGNm', '3250523'), + (476, 440, 'attending', '2020-11-07 15:17:19', '2025-12-17 19:47:53', 'kdKXWGNm', '3256168'), + (476, 441, 'attending', '2020-11-14 23:03:32', '2025-12-17 19:47:54', 'kdKXWGNm', '3256169'), + (476, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'kdKXWGNm', '3263578'), + (476, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'kdKXWGNm', '3276428'), + (476, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'kdKXWGNm', '3281467'), + (476, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'kdKXWGNm', '3281470'), + (476, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'kdKXWGNm', '3281829'), + (476, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'kdKXWGNm', '3285413'), + (476, 469, 'attending', '2020-11-28 02:20:50', '2025-12-17 19:47:54', 'kdKXWGNm', '3285414'), + (476, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'kdKXWGNm', '3297764'), + (476, 492, 'attending', '2020-12-01 01:33:37', '2025-12-17 19:47:54', 'kdKXWGNm', '3313731'), + (476, 493, 'attending', '2020-12-05 03:47:55', '2025-12-17 19:47:54', 'kdKXWGNm', '3313856'), + (476, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'kdKXWGNm', '3314909'), + (476, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'kdKXWGNm', '3314964'), + (476, 502, 'attending', '2020-12-13 00:52:57', '2025-12-17 19:47:55', 'kdKXWGNm', '3323365'), + (476, 513, 'attending', '2020-12-20 00:27:02', '2025-12-17 19:47:55', 'kdKXWGNm', '3329383'), + (476, 526, 'attending', '2020-12-30 03:17:10', '2025-12-17 19:47:48', 'kdKXWGNm', '3351539'), + (476, 528, 'attending', '2021-01-02 00:51:45', '2025-12-17 19:47:48', 'kdKXWGNm', '3363022'), + (476, 530, 'attending', '2021-01-04 16:20:17', '2025-12-17 19:47:48', 'kdKXWGNm', '3373923'), + (476, 532, 'attending', '2021-01-04 16:14:41', '2025-12-17 19:47:48', 'kdKXWGNm', '3381412'), + (476, 536, 'attending', '2021-01-06 17:04:57', '2025-12-17 19:47:48', 'kdKXWGNm', '3386848'), + (476, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdKXWGNm', '3389527'), + (476, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdKXWGNm', '3396499'), + (476, 548, 'attending', '2021-01-16 00:36:59', '2025-12-17 19:47:48', 'kdKXWGNm', '3403650'), + (476, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdKXWGNm', '3406988'), + (476, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'kdKXWGNm', '3408338'), + (476, 555, 'attending', '2021-01-19 05:47:53', '2025-12-17 19:47:49', 'kdKXWGNm', '3416576'), + (476, 568, 'attending', '2021-01-30 02:11:13', '2025-12-17 19:47:50', 'kdKXWGNm', '3430267'), + (476, 579, 'attending', '2021-02-06 18:08:52', '2025-12-17 19:47:50', 'kdKXWGNm', '3440978'), + (476, 602, 'attending', '2021-02-13 17:20:07', '2025-12-17 19:47:50', 'kdKXWGNm', '3470303'), + (476, 603, 'attending', '2021-02-20 04:21:08', '2025-12-17 19:47:50', 'kdKXWGNm', '3470304'), + (476, 604, 'attending', '2021-02-27 02:00:28', '2025-12-17 19:47:50', 'kdKXWGNm', '3470305'), + (476, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdKXWGNm', '3470991'), + (476, 621, 'attending', '2021-03-05 01:05:46', '2025-12-17 19:47:51', 'kdKXWGNm', '3517815'), + (476, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdKXWGNm', '3517816'), + (476, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKXWGNm', '3523941'), + (476, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKXWGNm', '3533850'), + (476, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKXWGNm', '3536632'), + (476, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKXWGNm', '3536656'), + (476, 641, 'not_attending', '2021-04-02 03:10:41', '2025-12-17 19:47:44', 'kdKXWGNm', '3539916'), + (476, 642, 'not_attending', '2021-04-09 19:05:18', '2025-12-17 19:47:44', 'kdKXWGNm', '3539917'), + (476, 643, 'attending', '2021-04-17 19:40:11', '2025-12-17 19:47:45', 'kdKXWGNm', '3539918'), + (476, 644, 'not_attending', '2021-04-24 21:36:07', '2025-12-17 19:47:46', 'kdKXWGNm', '3539919'), + (476, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKXWGNm', '3539920'), + (476, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKXWGNm', '3539921'), + (476, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKXWGNm', '3539922'), + (476, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKXWGNm', '3539923'), + (476, 649, 'not_attending', '2021-03-20 15:14:30', '2025-12-17 19:47:51', 'kdKXWGNm', '3539927'), + (476, 650, 'not_attending', '2021-03-27 17:13:50', '2025-12-17 19:47:44', 'kdKXWGNm', '3539928'), + (476, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKXWGNm', '3582734'), + (476, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKXWGNm', '3583262'), + (476, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKXWGNm', '3619523'), + (476, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKXWGNm', '3661369'), + (476, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKXWGNm', '3674262'), + (476, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKXWGNm', '3677402'), + (476, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdKXWGNm', '3730212'), + (476, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdKXWGNm', '3793156'), + (476, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'kdKXWGNm', '3974109'), + (476, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdKXWGNm', '3975311'), + (476, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKXWGNm', '3975312'), + (476, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKXWGNm', '3994992'), + (476, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKXWGNm', '4014338'), + (476, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdKXWGNm', '4021848'), + (476, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKXWGNm', '4136744'), + (476, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdKXWGNm', '4136937'), + (476, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdKXWGNm', '4136938'), + (476, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdKXWGNm', '4136947'), + (476, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdKXWGNm', '4210314'), + (476, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdKXWGNm', '4225444'), + (476, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdKXWGNm', '4239259'), + (476, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdKXWGNm', '4240316'), + (476, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdKXWGNm', '4240317'), + (476, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdKXWGNm', '4240318'), + (476, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdKXWGNm', '4240320'), + (476, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdKXWGNm', '4250163'), + (476, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdKXWGNm', '4275957'), + (476, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdKXWGNm', '4277819'), + (476, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdKXWGNm', '4301723'), + (476, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdKXWGNm', '4302093'), + (476, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdKXWGNm', '4304151'), + (476, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdKXWGNm', '4356801'), + (476, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdKXWGNm', '4366186'), + (476, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdKXWGNm', '4366187'), + (476, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdKXWGNm', '4420735'), + (476, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdKXWGNm', '4420738'), + (476, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdKXWGNm', '4420739'), + (476, 993, 'attending', '2021-09-25 21:15:53', '2025-12-17 19:47:34', 'kdKXWGNm', '4420741'), + (476, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdKXWGNm', '4420744'), + (476, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdKXWGNm', '4420747'), + (476, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdKXWGNm', '4420748'), + (476, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdKXWGNm', '4420749'), + (476, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKXWGNm', '4461883'), + (476, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKXWGNm', '4508342'), + (476, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKXWGNm', '4568602'), + (476, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKXWGNm', '4572153'), + (476, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdKXWGNm', '4585962'), + (476, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdKXWGNm', '4596356'), + (476, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKXWGNm', '4598860'), + (476, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKXWGNm', '4598861'), + (476, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKXWGNm', '4602797'), + (476, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKXWGNm', '4637896'), + (476, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKXWGNm', '4642994'), + (476, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdKXWGNm', '4642995'), + (476, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKXWGNm', '4642996'), + (476, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKXWGNm', '4642997'), + (476, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKXWGNm', '4645687'), + (476, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKXWGNm', '4645698'), + (476, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdKXWGNm', '4645704'), + (476, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKXWGNm', '4645705'), + (476, 1130, 'attending', '2021-12-04 23:58:07', '2025-12-17 19:47:37', 'kdKXWGNm', '4658824'), + (476, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKXWGNm', '4668385'), + (476, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKXWGNm', '4694407'), + (476, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKXWGNm', '4736497'), + (476, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKXWGNm', '4736499'), + (476, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKXWGNm', '4736500'), + (476, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKXWGNm', '4736503'), + (476, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKXWGNm', '4736504'), + (476, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKXWGNm', '4746789'), + (476, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdKXWGNm', '4753929'), + (476, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKXWGNm', '5038850'), + (476, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKXWGNm', '5045826'), + (476, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKXWGNm', '5132533'), + (476, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKXWGNm', '6045684'), + (477, 500, 'not_attending', '2020-12-17 22:13:39', '2025-12-17 19:47:55', 'rdOPZ8em', '3314964'), + (477, 507, 'attending', '2020-12-22 19:23:41', '2025-12-17 19:47:48', 'rdOPZ8em', '3324148'), + (477, 522, 'attending', '2020-12-16 23:28:10', '2025-12-17 19:47:55', 'rdOPZ8em', '3342836'), + (477, 526, 'attending', '2020-12-28 20:02:51', '2025-12-17 19:47:48', 'rdOPZ8em', '3351539'), + (477, 532, 'not_attending', '2021-01-09 00:04:44', '2025-12-17 19:47:48', 'rdOPZ8em', '3381412'), + (477, 534, 'attending', '2021-01-06 01:37:48', '2025-12-17 19:47:48', 'rdOPZ8em', '3384157'), + (477, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'rdOPZ8em', '3386848'), + (477, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'rdOPZ8em', '3389527'), + (477, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'rdOPZ8em', '3396499'), + (477, 548, 'maybe', '2021-01-16 23:54:04', '2025-12-17 19:47:48', 'rdOPZ8em', '3403650'), + (477, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'rdOPZ8em', '3406988'), + (477, 555, 'attending', '2021-01-22 00:04:06', '2025-12-17 19:47:49', 'rdOPZ8em', '3416576'), + (477, 558, 'attending', '2021-01-22 00:03:51', '2025-12-17 19:47:49', 'rdOPZ8em', '3418925'), + (477, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'rdOPZ8em', '3426074'), + (477, 568, 'attending', '2021-01-30 14:46:21', '2025-12-17 19:47:50', 'rdOPZ8em', '3430267'), + (477, 581, 'attending', '2021-02-01 03:32:46', '2025-12-17 19:47:50', 'rdOPZ8em', '3445029'), + (477, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'rdOPZ8em', '3468125'), + (477, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'rdOPZ8em', '3470303'), + (477, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'rdOPZ8em', '3470305'), + (477, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOPZ8em', '3470991'), + (477, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'rdOPZ8em', '3517815'), + (477, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'rdOPZ8em', '3517816'), + (477, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'rdOPZ8em', '3523941'), + (477, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOPZ8em', '3533850'), + (477, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOPZ8em', '3536632'), + (477, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'rdOPZ8em', '3536656'), + (477, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'rdOPZ8em', '3539916'), + (477, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'rdOPZ8em', '3539917'), + (477, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOPZ8em', '3539918'), + (477, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'rdOPZ8em', '3539919'), + (477, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'rdOPZ8em', '3539920'), + (477, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'rdOPZ8em', '3539921'), + (477, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'rdOPZ8em', '3539922'), + (477, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'rdOPZ8em', '3539923'), + (477, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOPZ8em', '3539927'), + (477, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOPZ8em', '3582734'), + (477, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'rdOPZ8em', '3583262'), + (477, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOPZ8em', '3619523'), + (477, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'rdOPZ8em', '3661369'), + (477, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'rdOPZ8em', '3674262'), + (477, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'rdOPZ8em', '3677402'), + (477, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOPZ8em', '3730212'), + (477, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOPZ8em', '6045684'), + (478, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dlj52DXA', '7074364'), + (478, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dlj52DXA', '7324073'), + (478, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dlj52DXA', '7324074'), + (478, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dlj52DXA', '7324075'), + (478, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dlj52DXA', '7324078'), + (478, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dlj52DXA', '7331457'), + (478, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'dlj52DXA', '7344575'), + (478, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'dlj52DXA', '7359624'), + (478, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dlj52DXA', '7363643'), + (478, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dlj52DXA', '7368606'), + (479, 408, 'attending', '2021-02-16 03:38:35', '2025-12-17 19:47:50', 'Pm7kELXm', '3236466'), + (479, 603, 'not_attending', '2021-02-21 00:42:59', '2025-12-17 19:47:50', 'Pm7kELXm', '3470304'), + (479, 604, 'attending', '2021-02-27 18:23:23', '2025-12-17 19:47:50', 'Pm7kELXm', '3470305'), + (479, 621, 'attending', '2021-03-05 19:50:44', '2025-12-17 19:47:51', 'Pm7kELXm', '3517815'), + (479, 622, 'not_attending', '2021-03-13 23:38:53', '2025-12-17 19:47:51', 'Pm7kELXm', '3517816'), + (479, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'Pm7kELXm', '3523941'), + (479, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Pm7kELXm', '3533850'), + (479, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Pm7kELXm', '3536632'), + (479, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Pm7kELXm', '3536656'), + (479, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Pm7kELXm', '3539916'), + (479, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Pm7kELXm', '3539917'), + (479, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Pm7kELXm', '3539918'), + (479, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'Pm7kELXm', '3539919'), + (479, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Pm7kELXm', '3539920'), + (479, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Pm7kELXm', '3539921'), + (479, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Pm7kELXm', '3539922'), + (479, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Pm7kELXm', '3539923'), + (479, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Pm7kELXm', '3539927'), + (479, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Pm7kELXm', '3582734'), + (479, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm7kELXm', '3583262'), + (479, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Pm7kELXm', '3619523'), + (479, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7kELXm', '3661369'), + (479, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7kELXm', '3674262'), + (479, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm7kELXm', '3677402'), + (479, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7kELXm', '6045684'), + (480, 1122, 'not_attending', '2021-11-29 16:57:08', '2025-12-17 19:47:37', 'mRB3oJYm', '4644023'), + (480, 1123, 'not_attending', '2021-12-10 23:19:35', '2025-12-17 19:47:38', 'mRB3oJYm', '4644024'), + (480, 1126, 'not_attending', '2021-12-11 07:50:21', '2025-12-17 19:47:38', 'mRB3oJYm', '4645687'), + (480, 1127, 'maybe', '2021-12-12 10:04:38', '2025-12-17 19:47:38', 'mRB3oJYm', '4645698'), + (480, 1130, 'attending', '2021-12-04 20:37:18', '2025-12-17 19:47:37', 'mRB3oJYm', '4658824'), + (480, 1131, 'attending', '2021-12-18 18:20:09', '2025-12-17 19:47:31', 'mRB3oJYm', '4658825'), + (480, 1138, 'attending', '2021-11-29 16:57:03', '2025-12-17 19:47:37', 'mRB3oJYm', '4675407'), + (480, 1139, 'not_attending', '2021-12-04 03:59:17', '2025-12-17 19:47:37', 'mRB3oJYm', '4675604'), + (480, 1140, 'not_attending', '2021-12-04 02:15:41', '2025-12-17 19:47:37', 'mRB3oJYm', '4679701'), + (480, 1142, 'attending', '2021-12-05 17:35:03', '2025-12-17 19:47:37', 'mRB3oJYm', '4681923'), + (480, 1146, 'not_attending', '2021-12-10 23:19:31', '2025-12-17 19:47:38', 'mRB3oJYm', '4692841'), + (480, 1149, 'not_attending', '2021-12-10 23:19:46', '2025-12-17 19:47:38', 'mRB3oJYm', '4694407'), + (480, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'mRB3oJYm', '4706262'), + (480, 1153, 'not_attending', '2022-01-20 00:59:15', '2025-12-17 19:47:32', 'mRB3oJYm', '4708707'), + (480, 1162, 'attending', '2021-12-29 17:41:24', '2025-12-17 19:47:31', 'mRB3oJYm', '4718771'), + (480, 1173, 'attending', '2022-01-06 22:21:12', '2025-12-17 19:47:31', 'mRB3oJYm', '4736495'), + (480, 1174, 'attending', '2022-01-14 05:30:37', '2025-12-17 19:47:31', 'mRB3oJYm', '4736496'), + (480, 1175, 'not_attending', '2022-01-21 17:29:53', '2025-12-17 19:47:32', 'mRB3oJYm', '4736497'), + (480, 1176, 'attending', '2022-02-05 14:45:05', '2025-12-17 19:47:32', 'mRB3oJYm', '4736498'), + (480, 1177, 'not_attending', '2022-02-13 00:08:49', '2025-12-17 19:47:32', 'mRB3oJYm', '4736499'), + (480, 1178, 'not_attending', '2022-01-30 01:15:40', '2025-12-17 19:47:32', 'mRB3oJYm', '4736500'), + (480, 1179, 'attending', '2022-02-14 23:51:18', '2025-12-17 19:47:32', 'mRB3oJYm', '4736501'), + (480, 1180, 'not_attending', '2022-02-26 23:17:44', '2025-12-17 19:47:33', 'mRB3oJYm', '4736502'), + (480, 1181, 'not_attending', '2022-03-06 00:24:08', '2025-12-17 19:47:33', 'mRB3oJYm', '4736503'), + (480, 1182, 'not_attending', '2022-03-12 23:50:50', '2025-12-17 19:47:33', 'mRB3oJYm', '4736504'), + (480, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mRB3oJYm', '4746789'), + (480, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mRB3oJYm', '4753929'), + (480, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mRB3oJYm', '5038850'), + (480, 1236, 'not_attending', '2022-02-18 04:16:11', '2025-12-17 19:47:32', 'mRB3oJYm', '5045826'), + (480, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mRB3oJYm', '5132533'), + (480, 1272, 'not_attending', '2022-03-19 15:47:32', '2025-12-17 19:47:25', 'mRB3oJYm', '5186582'), + (480, 1273, 'attending', '2022-03-23 15:41:43', '2025-12-17 19:47:25', 'mRB3oJYm', '5186583'), + (480, 1274, 'not_attending', '2022-04-03 02:46:11', '2025-12-17 19:47:26', 'mRB3oJYm', '5186585'), + (480, 1281, 'not_attending', '2022-04-09 22:54:51', '2025-12-17 19:47:27', 'mRB3oJYm', '5190437'), + (480, 1284, 'not_attending', '2022-04-30 19:56:31', '2025-12-17 19:47:27', 'mRB3oJYm', '5195095'), + (480, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mRB3oJYm', '5215989'), + (480, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mRB3oJYm', '5223686'), + (480, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mRB3oJYm', '5227432'), + (480, 1346, 'not_attending', '2022-04-30 19:56:27', '2025-12-17 19:47:27', 'mRB3oJYm', '5247467'), + (480, 1362, 'attending', '2022-04-30 19:56:18', '2025-12-17 19:47:28', 'mRB3oJYm', '5260800'), + (480, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mRB3oJYm', '5269930'), + (480, 1378, 'attending', '2022-05-14 13:51:08', '2025-12-17 19:47:29', 'mRB3oJYm', '5271448'), + (480, 1379, 'attending', '2022-05-21 22:50:27', '2025-12-17 19:47:29', 'mRB3oJYm', '5271449'), + (480, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mRB3oJYm', '5276469'), + (480, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mRB3oJYm', '5278159'), + (480, 1407, 'not_attending', '2022-06-04 21:56:33', '2025-12-17 19:47:30', 'mRB3oJYm', '5363695'), + (480, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mRB3oJYm', '5365960'), + (480, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mRB3oJYm', '5368973'), + (480, 1428, 'not_attending', '2022-05-28 23:20:17', '2025-12-17 19:47:30', 'mRB3oJYm', '5378247'), + (480, 1431, 'not_attending', '2022-06-12 00:05:08', '2025-12-17 19:47:31', 'mRB3oJYm', '5389605'), + (480, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mRB3oJYm', '5397265'), + (480, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mRB3oJYm', '5403967'), + (480, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mRB3oJYm', '5404786'), + (480, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mRB3oJYm', '5405203'), + (480, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mRB3oJYm', '5411699'), + (480, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mRB3oJYm', '5412550'), + (480, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mRB3oJYm', '5415046'), + (480, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mRB3oJYm', '5422086'), + (480, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mRB3oJYm', '5422406'), + (480, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mRB3oJYm', '5424565'), + (480, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mRB3oJYm', '5426882'), + (480, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mRB3oJYm', '5427083'), + (480, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mRB3oJYm', '5441125'), + (480, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mRB3oJYm', '5441126'), + (480, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mRB3oJYm', '5441128'), + (480, 1517, 'attending', '2022-08-27 15:44:45', '2025-12-17 19:47:23', 'mRB3oJYm', '5441130'), + (480, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mRB3oJYm', '5441131'), + (480, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mRB3oJYm', '5441132'), + (480, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mRB3oJYm', '5446643'), + (480, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mRB3oJYm', '5453325'), + (480, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mRB3oJYm', '5454516'), + (480, 1544, 'attending', '2022-09-17 15:58:19', '2025-12-17 19:47:11', 'mRB3oJYm', '5454517'), + (480, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mRB3oJYm', '5454605'), + (480, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mRB3oJYm', '5455037'), + (480, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mRB3oJYm', '5461278'), + (480, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mRB3oJYm', '5469480'), + (480, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mRB3oJYm', '5471073'), + (480, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mRB3oJYm', '5474663'), + (480, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mRB3oJYm', '5482022'), + (480, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mRB3oJYm', '5482793'), + (480, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mRB3oJYm', '5488912'), + (480, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mRB3oJYm', '5492192'), + (480, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mRB3oJYm', '5493139'), + (480, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mRB3oJYm', '5493200'), + (480, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mRB3oJYm', '5502188'), + (480, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mRB3oJYm', '5505059'), + (480, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mRB3oJYm', '5509055'), + (480, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mRB3oJYm', '5512862'), + (480, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mRB3oJYm', '5513985'), + (480, 1626, 'attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'mRB3oJYm', '5519981'), + (480, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mRB3oJYm', '5522550'), + (480, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mRB3oJYm', '5534683'), + (480, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mRB3oJYm', '5537735'), + (480, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mRB3oJYm', '5540859'), + (480, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mRB3oJYm', '5546619'), + (480, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mRB3oJYm', '5555245'), + (480, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mRB3oJYm', '5557747'), + (480, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mRB3oJYm', '5560255'), + (480, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mRB3oJYm', '5562906'), + (480, 1668, 'not_attending', '2022-10-01 15:11:47', '2025-12-17 19:47:12', 'mRB3oJYm', '5563222'), + (480, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mRB3oJYm', '5600604'), + (480, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mRB3oJYm', '5605544'), + (480, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'mRB3oJYm', '5606737'), + (480, 1719, 'attending', '2022-10-08 20:58:50', '2025-12-17 19:47:12', 'mRB3oJYm', '5630958'), + (480, 1720, 'not_attending', '2022-10-15 20:52:42', '2025-12-17 19:47:12', 'mRB3oJYm', '5630959'), + (480, 1721, 'maybe', '2022-10-21 16:17:27', '2025-12-17 19:47:13', 'mRB3oJYm', '5630960'), + (480, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mRB3oJYm', '5630961'), + (480, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mRB3oJYm', '5630962'), + (480, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mRB3oJYm', '5630966'), + (480, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mRB3oJYm', '5630967'), + (480, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mRB3oJYm', '5630968'), + (480, 1727, 'not_attending', '2022-12-04 01:14:46', '2025-12-17 19:47:16', 'mRB3oJYm', '5630969'), + (480, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mRB3oJYm', '5635406'), + (480, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mRB3oJYm', '5638765'), + (480, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mRB3oJYm', '5640097'), + (480, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mRB3oJYm', '5640843'), + (480, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mRB3oJYm', '5641521'), + (480, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mRB3oJYm', '5642818'), + (480, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mRB3oJYm', '5652395'), + (480, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mRB3oJYm', '5670445'), + (480, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mRB3oJYm', '5671637'), + (480, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mRB3oJYm', '5672329'), + (480, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mRB3oJYm', '5674057'), + (480, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mRB3oJYm', '5674060'), + (480, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mRB3oJYm', '5677461'), + (480, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mRB3oJYm', '5698046'), + (480, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mRB3oJYm', '5699760'), + (480, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mRB3oJYm', '5741601'), + (480, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mRB3oJYm', '5763458'), + (480, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mRB3oJYm', '5774172'), + (480, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mRB3oJYm', '5818247'), + (480, 1834, 'not_attending', '2022-12-09 22:38:19', '2025-12-17 19:47:17', 'mRB3oJYm', '5819470'), + (480, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mRB3oJYm', '5819471'), + (480, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mRB3oJYm', '5827739'), + (480, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mRB3oJYm', '5844306'), + (480, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mRB3oJYm', '5850159'), + (480, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mRB3oJYm', '5858999'), + (480, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mRB3oJYm', '5871984'), + (480, 1860, 'maybe', '2023-01-17 17:05:57', '2025-12-17 19:47:05', 'mRB3oJYm', '5876309'), + (480, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mRB3oJYm', '5876354'), + (480, 1864, 'attending', '2023-01-17 17:06:12', '2025-12-17 19:47:05', 'mRB3oJYm', '5879675'), + (480, 1865, 'attending', '2023-01-23 18:47:24', '2025-12-17 19:47:06', 'mRB3oJYm', '5879676'), + (480, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mRB3oJYm', '5880939'), + (480, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mRB3oJYm', '5880940'), + (480, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mRB3oJYm', '5880942'), + (480, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mRB3oJYm', '5880943'), + (480, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mRB3oJYm', '5887890'), + (480, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mRB3oJYm', '5888598'), + (480, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mRB3oJYm', '5893260'), + (480, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mRB3oJYm', '5899826'), + (480, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mRB3oJYm', '5900199'), + (480, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mRB3oJYm', '5900200'), + (480, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mRB3oJYm', '5900202'), + (480, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mRB3oJYm', '5900203'), + (480, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mRB3oJYm', '5901108'), + (480, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mRB3oJYm', '5901126'), + (480, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mRB3oJYm', '5909655'), + (480, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mRB3oJYm', '5910522'), + (480, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mRB3oJYm', '5910526'), + (480, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mRB3oJYm', '5910528'), + (480, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mRB3oJYm', '5916219'), + (480, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mRB3oJYm', '5936234'), + (480, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mRB3oJYm', '5958351'), + (480, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mRB3oJYm', '5959751'), + (480, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mRB3oJYm', '5959755'), + (480, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mRB3oJYm', '5960055'), + (480, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mRB3oJYm', '5961684'), + (480, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mRB3oJYm', '5962132'), + (480, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mRB3oJYm', '5962133'), + (480, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mRB3oJYm', '5962134'), + (480, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mRB3oJYm', '5962317'), + (480, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mRB3oJYm', '5962318'), + (480, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mRB3oJYm', '5965933'), + (480, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mRB3oJYm', '5967014'), + (480, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mRB3oJYm', '5972815'), + (480, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mRB3oJYm', '5974016'), + (480, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'mRB3oJYm', '5975052'), + (480, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'mRB3oJYm', '5975054'), + (480, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mRB3oJYm', '5981515'), + (480, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mRB3oJYm', '5993516'), + (480, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mRB3oJYm', '5998939'), + (480, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mRB3oJYm', '6028191'), + (480, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mRB3oJYm', '6040066'), + (480, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mRB3oJYm', '6042717'), + (480, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mRB3oJYm', '6044838'), + (480, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mRB3oJYm', '6044839'), + (480, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRB3oJYm', '6045684'), + (480, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mRB3oJYm', '6050104'), + (480, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mRB3oJYm', '6053195'), + (480, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mRB3oJYm', '6053198'), + (480, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mRB3oJYm', '6056085'), + (480, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mRB3oJYm', '6056916'), + (480, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mRB3oJYm', '6059290'), + (480, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mRB3oJYm', '6060328'), + (480, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mRB3oJYm', '6061037'), + (480, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mRB3oJYm', '6061039'), + (480, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mRB3oJYm', '6067245'), + (480, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mRB3oJYm', '6068094'), + (480, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mRB3oJYm', '6068252'), + (480, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mRB3oJYm', '6068253'), + (480, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mRB3oJYm', '6068254'), + (480, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mRB3oJYm', '6068280'), + (480, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mRB3oJYm', '6069093'), + (480, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mRB3oJYm', '6072528'), + (480, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'mRB3oJYm', '6075556'), + (480, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mRB3oJYm', '6079840'), + (480, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mRB3oJYm', '6083398'), + (480, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mRB3oJYm', '6093504'), + (480, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mRB3oJYm', '6097414'), + (480, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mRB3oJYm', '6097442'), + (480, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mRB3oJYm', '6097684'), + (480, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mRB3oJYm', '6098762'), + (480, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mRB3oJYm', '6101362'), + (480, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mRB3oJYm', '6107314'), + (481, 574, 'not_attending', '2021-03-01 02:34:59', '2025-12-17 19:47:51', 'o4PKBRlA', '3435543'), + (481, 592, 'maybe', '2021-02-21 07:49:29', '2025-12-17 19:47:50', 'o4PKBRlA', '3467757'), + (481, 596, 'not_attending', '2021-02-22 16:27:02', '2025-12-17 19:47:51', 'o4PKBRlA', '3467762'), + (481, 603, 'attending', '2021-02-16 05:53:42', '2025-12-17 19:47:50', 'o4PKBRlA', '3470304'), + (481, 604, 'attending', '2021-02-21 08:13:05', '2025-12-17 19:47:50', 'o4PKBRlA', '3470305'), + (481, 605, 'not_attending', '2021-02-14 08:39:07', '2025-12-17 19:47:50', 'o4PKBRlA', '3470991'), + (481, 610, 'attending', '2021-02-14 08:40:43', '2025-12-17 19:47:50', 'o4PKBRlA', '3482159'), + (481, 612, 'maybe', '2021-02-16 11:32:53', '2025-12-17 19:47:50', 'o4PKBRlA', '3490040'), + (481, 618, 'attending', '2021-02-19 21:04:37', '2025-12-17 19:47:50', 'o4PKBRlA', '3503991'), + (481, 621, 'attending', '2021-02-28 17:05:43', '2025-12-17 19:47:51', 'o4PKBRlA', '3517815'), + (481, 622, 'attending', '2021-02-25 17:05:06', '2025-12-17 19:47:51', 'o4PKBRlA', '3517816'), + (481, 623, 'not_attending', '2021-02-27 19:20:53', '2025-12-17 19:47:51', 'o4PKBRlA', '3523941'), + (481, 627, 'attending', '2021-03-07 20:26:19', '2025-12-17 19:47:51', 'o4PKBRlA', '3533303'), + (481, 628, 'attending', '2021-03-02 23:48:22', '2025-12-17 19:47:51', 'o4PKBRlA', '3533305'), + (481, 629, 'not_attending', '2021-03-17 20:58:03', '2025-12-17 19:47:51', 'o4PKBRlA', '3533307'), + (481, 631, 'not_attending', '2021-03-01 07:24:06', '2025-12-17 19:47:51', 'o4PKBRlA', '3533850'), + (481, 632, 'attending', '2021-03-01 02:35:31', '2025-12-17 19:47:51', 'o4PKBRlA', '3533853'), + (481, 638, 'not_attending', '2021-03-05 08:17:06', '2025-12-17 19:47:44', 'o4PKBRlA', '3536632'), + (481, 639, 'not_attending', '2021-03-19 20:16:05', '2025-12-17 19:47:51', 'o4PKBRlA', '3536656'), + (481, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'o4PKBRlA', '3539916'), + (481, 642, 'attending', '2021-04-10 20:59:08', '2025-12-17 19:47:44', 'o4PKBRlA', '3539917'), + (481, 643, 'not_attending', '2021-04-16 10:06:47', '2025-12-17 19:47:45', 'o4PKBRlA', '3539918'), + (481, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'o4PKBRlA', '3539919'), + (481, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'o4PKBRlA', '3539920'), + (481, 646, 'attending', '2021-05-15 21:32:50', '2025-12-17 19:47:46', 'o4PKBRlA', '3539921'), + (481, 647, 'attending', '2021-05-21 17:05:32', '2025-12-17 19:47:46', 'o4PKBRlA', '3539922'), + (481, 648, 'not_attending', '2021-05-29 16:05:27', '2025-12-17 19:47:47', 'o4PKBRlA', '3539923'), + (481, 649, 'attending', '2021-03-14 04:29:02', '2025-12-17 19:47:51', 'o4PKBRlA', '3539927'), + (481, 663, 'not_attending', '2021-05-02 05:48:21', '2025-12-17 19:47:46', 'o4PKBRlA', '3547140'), + (481, 685, 'not_attending', '2021-04-03 01:13:10', '2025-12-17 19:47:44', 'o4PKBRlA', '3551564'), + (481, 687, 'maybe', '2021-03-11 17:48:09', '2025-12-17 19:47:51', 'o4PKBRlA', '3553405'), + (481, 690, 'not_attending', '2021-03-23 22:50:18', '2025-12-17 19:47:44', 'o4PKBRlA', '3559954'), + (481, 695, 'not_attending', '2021-03-18 15:57:07', '2025-12-17 19:47:51', 'o4PKBRlA', '3567535'), + (481, 696, 'not_attending', '2021-03-17 07:57:40', '2025-12-17 19:47:51', 'o4PKBRlA', '3567536'), + (481, 697, 'maybe', '2021-03-26 15:47:52', '2025-12-17 19:47:44', 'o4PKBRlA', '3567537'), + (481, 705, 'not_attending', '2021-03-27 18:13:26', '2025-12-17 19:47:44', 'o4PKBRlA', '3581895'), + (481, 706, 'not_attending', '2021-04-14 16:14:20', '2025-12-17 19:47:45', 'o4PKBRlA', '3582734'), + (481, 707, 'attending', '2021-03-31 00:14:34', '2025-12-17 19:47:46', 'o4PKBRlA', '3583262'), + (481, 708, 'maybe', '2021-03-25 20:59:50', '2025-12-17 19:47:44', 'o4PKBRlA', '3587850'), + (481, 711, 'attending', '2021-03-22 21:18:47', '2025-12-17 19:47:44', 'o4PKBRlA', '3588075'), + (481, 714, 'not_attending', '2021-04-03 01:12:39', '2025-12-17 19:47:44', 'o4PKBRlA', '3604063'), + (481, 716, 'attending', '2021-03-25 15:12:48', '2025-12-17 19:47:44', 'o4PKBRlA', '3618353'), + (481, 717, 'not_attending', '2021-03-27 05:27:01', '2025-12-17 19:47:44', 'o4PKBRlA', '3619523'), + (481, 719, 'maybe', '2021-04-01 10:32:01', '2025-12-17 19:47:44', 'o4PKBRlA', '3635405'), + (481, 721, 'attending', '2021-03-29 08:24:38', '2025-12-17 19:47:44', 'o4PKBRlA', '3643622'), + (481, 722, 'maybe', '2021-03-31 00:12:27', '2025-12-17 19:47:44', 'o4PKBRlA', '3646347'), + (481, 724, 'attending', '2021-04-26 00:15:26', '2025-12-17 19:47:46', 'o4PKBRlA', '3661369'), + (481, 725, 'attending', '2021-05-22 21:16:24', '2025-12-17 19:47:47', 'o4PKBRlA', '3661372'), + (481, 727, 'not_attending', '2021-06-19 16:46:55', '2025-12-17 19:47:38', 'o4PKBRlA', '3661377'), + (481, 728, 'not_attending', '2021-04-14 16:14:11', '2025-12-17 19:47:44', 'o4PKBRlA', '3668073'), + (481, 730, 'attending', '2021-05-01 01:13:30', '2025-12-17 19:47:46', 'o4PKBRlA', '3668076'), + (481, 731, 'not_attending', '2021-04-06 02:46:29', '2025-12-17 19:47:44', 'o4PKBRlA', '3674262'), + (481, 735, 'not_attending', '2021-04-20 05:48:21', '2025-12-17 19:47:46', 'o4PKBRlA', '3677402'), + (481, 752, 'maybe', '2021-04-15 15:55:19', '2025-12-17 19:47:44', 'o4PKBRlA', '3699422'), + (481, 754, 'attending', '2021-04-20 02:42:16', '2025-12-17 19:47:45', 'o4PKBRlA', '3701863'), + (481, 763, 'attending', '2021-04-21 15:55:02', '2025-12-17 19:47:46', 'o4PKBRlA', '3719122'), + (481, 766, 'maybe', '2021-05-07 10:51:51', '2025-12-17 19:47:46', 'o4PKBRlA', '3721383'), + (481, 772, 'maybe', '2021-04-27 12:37:11', '2025-12-17 19:47:46', 'o4PKBRlA', '3726421'), + (481, 774, 'not_attending', '2021-04-21 06:49:55', '2025-12-17 19:47:45', 'o4PKBRlA', '3730212'), + (481, 777, 'attending', '2021-04-26 19:40:20', '2025-12-17 19:47:46', 'o4PKBRlA', '3746248'), + (481, 779, 'maybe', '2021-04-29 11:50:19', '2025-12-17 19:47:46', 'o4PKBRlA', '3757118'), + (481, 782, 'maybe', '2021-05-04 21:52:37', '2025-12-17 19:47:46', 'o4PKBRlA', '3761843'), + (481, 792, 'not_attending', '2021-05-17 18:36:00', '2025-12-17 19:47:46', 'o4PKBRlA', '3793156'), + (481, 796, 'maybe', '2021-05-17 18:36:28', '2025-12-17 19:47:46', 'o4PKBRlA', '3793862'), + (481, 803, 'not_attending', '2021-05-19 21:53:03', '2025-12-17 19:47:46', 'o4PKBRlA', '3804665'), + (481, 805, 'attending', '2021-06-12 16:23:13', '2025-12-17 19:47:47', 'o4PKBRlA', '3804777'), + (481, 809, 'maybe', '2021-05-18 06:48:47', '2025-12-17 19:47:46', 'o4PKBRlA', '3807964'), + (481, 823, 'attending', '2021-06-19 22:08:53', '2025-12-17 19:47:48', 'o4PKBRlA', '3974109'), + (481, 824, 'attending', '2021-06-01 15:21:30', '2025-12-17 19:47:47', 'o4PKBRlA', '3974112'), + (481, 827, 'attending', '2021-06-05 19:45:32', '2025-12-17 19:47:47', 'o4PKBRlA', '3975311'), + (481, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'o4PKBRlA', '3975312'), + (481, 832, 'not_attending', '2021-06-05 19:45:25', '2025-12-17 19:47:47', 'o4PKBRlA', '3976650'), + (481, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'o4PKBRlA', '3994992'), + (481, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'o4PKBRlA', '4014338'), + (481, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'o4PKBRlA', '4021848'), + (481, 869, 'not_attending', '2021-06-27 06:23:22', '2025-12-17 19:47:38', 'o4PKBRlA', '4136744'), + (481, 870, 'attending', '2021-07-03 19:05:10', '2025-12-17 19:47:39', 'o4PKBRlA', '4136937'), + (481, 871, 'not_attending', '2021-07-10 22:45:17', '2025-12-17 19:47:39', 'o4PKBRlA', '4136938'), + (481, 872, 'not_attending', '2021-07-03 19:04:37', '2025-12-17 19:47:40', 'o4PKBRlA', '4136947'), + (481, 874, 'not_attending', '2021-06-24 21:08:01', '2025-12-17 19:47:38', 'o4PKBRlA', '4139815'), + (481, 879, 'maybe', '2021-06-27 06:23:03', '2025-12-17 19:47:38', 'o4PKBRlA', '4147806'), + (481, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'o4PKBRlA', '4210314'), + (481, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'o4PKBRlA', '4225444'), + (481, 899, 'not_attending', '2021-07-03 19:04:23', '2025-12-17 19:47:39', 'o4PKBRlA', '4239259'), + (481, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'o4PKBRlA', '4240316'), + (481, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'o4PKBRlA', '4240317'), + (481, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'o4PKBRlA', '4240318'), + (481, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'o4PKBRlA', '4240320'), + (481, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'o4PKBRlA', '4250163'), + (481, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'o4PKBRlA', '4275957'), + (481, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'o4PKBRlA', '4277819'), + (481, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'o4PKBRlA', '4301723'), + (481, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'o4PKBRlA', '4302093'), + (481, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'o4PKBRlA', '4304151'), + (481, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'o4PKBRlA', '4345519'), + (481, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'o4PKBRlA', '4356801'), + (481, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'o4PKBRlA', '4358025'), + (481, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'o4PKBRlA', '4366186'), + (481, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'o4PKBRlA', '4366187'), + (481, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'o4PKBRlA', '4402823'), + (481, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'o4PKBRlA', '4420735'), + (481, 991, 'not_attending', '2021-09-11 22:40:20', '2025-12-17 19:47:43', 'o4PKBRlA', '4420738'), + (481, 992, 'attending', '2021-09-18 21:12:50', '2025-12-17 19:47:33', 'o4PKBRlA', '4420739'), + (481, 993, 'not_attending', '2021-09-25 18:11:16', '2025-12-17 19:47:34', 'o4PKBRlA', '4420741'), + (481, 994, 'attending', '2021-10-02 21:38:47', '2025-12-17 19:47:34', 'o4PKBRlA', '4420742'), + (481, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'o4PKBRlA', '4420744'), + (481, 996, 'not_attending', '2021-10-02 16:16:32', '2025-12-17 19:47:35', 'o4PKBRlA', '4420747'), + (481, 997, 'not_attending', '2021-10-02 16:16:37', '2025-12-17 19:47:35', 'o4PKBRlA', '4420748'), + (481, 998, 'not_attending', '2021-10-02 16:16:40', '2025-12-17 19:47:36', 'o4PKBRlA', '4420749'), + (481, 1016, 'maybe', '2021-09-05 22:37:17', '2025-12-17 19:47:43', 'o4PKBRlA', '4441271'), + (481, 1019, 'maybe', '2021-09-09 08:47:29', '2025-12-17 19:47:43', 'o4PKBRlA', '4450515'), + (481, 1023, 'not_attending', '2021-09-11 22:40:17', '2025-12-17 19:47:43', 'o4PKBRlA', '4461883'), + (481, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'o4PKBRlA', '4508342'), + (481, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'o4PKBRlA', '4568602'), + (481, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'o4PKBRlA', '4572153'), + (481, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'o4PKBRlA', '4585962'), + (481, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'o4PKBRlA', '4596356'), + (481, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'o4PKBRlA', '4598860'), + (481, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'o4PKBRlA', '4598861'), + (481, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'o4PKBRlA', '4602797'), + (481, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'o4PKBRlA', '4637896'), + (481, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'o4PKBRlA', '4642994'), + (481, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'o4PKBRlA', '4642995'), + (481, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'o4PKBRlA', '4642996'), + (481, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'o4PKBRlA', '4642997'), + (481, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'o4PKBRlA', '4645687'), + (481, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'o4PKBRlA', '4645698'), + (481, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'o4PKBRlA', '4645704'), + (481, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'o4PKBRlA', '4645705'), + (481, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'o4PKBRlA', '4668385'), + (481, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'o4PKBRlA', '4694407'), + (481, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'o4PKBRlA', '4736497'), + (481, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'o4PKBRlA', '4736499'), + (481, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'o4PKBRlA', '4736500'), + (481, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'o4PKBRlA', '4736503'), + (481, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'o4PKBRlA', '4736504'), + (481, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'o4PKBRlA', '4746789'), + (481, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'o4PKBRlA', '4753929'), + (481, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'o4PKBRlA', '5038850'), + (481, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'o4PKBRlA', '5045826'), + (481, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'o4PKBRlA', '5132533'), + (481, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'o4PKBRlA', '5186582'), + (481, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'o4PKBRlA', '5186583'), + (481, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'o4PKBRlA', '5186585'), + (481, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'o4PKBRlA', '5190437'), + (481, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'o4PKBRlA', '5215989'), + (481, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PKBRlA', '6045684'), + (482, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mb268pXm', '6045684'), + (483, 23, 'attending', '2020-06-08 01:16:42', '2025-12-17 19:47:58', 'NmLpqJam', '2958067'), + (483, 67, 'attending', '2020-06-13 23:06:40', '2025-12-17 19:47:58', 'NmLpqJam', '2977136'), + (483, 69, 'attending', '2020-07-02 22:40:43', '2025-12-17 19:47:55', 'NmLpqJam', '2977138'), + (483, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'NmLpqJam', '3034321'), + (483, 164, 'attending', '2020-11-14 23:43:34', '2025-12-17 19:47:54', 'NmLpqJam', '3058701'), + (483, 166, 'attending', '2020-11-21 16:16:43', '2025-12-17 19:47:54', 'NmLpqJam', '3058704'), + (483, 169, 'maybe', '2020-06-14 17:35:37', '2025-12-17 19:47:58', 'NmLpqJam', '3058741'), + (483, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'NmLpqJam', '3067093'), + (483, 179, 'attending', '2020-06-20 16:49:54', '2025-12-17 19:47:58', 'NmLpqJam', '3073687'), + (483, 180, 'maybe', '2020-06-18 12:05:59', '2025-12-17 19:47:58', 'NmLpqJam', '3074048'), + (483, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'NmLpqJam', '3075228'), + (483, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'NmLpqJam', '3075456'), + (483, 186, 'attending', '2020-06-26 22:37:33', '2025-12-17 19:47:55', 'NmLpqJam', '3083791'), + (483, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'NmLpqJam', '3085151'), + (483, 191, 'attending', '2020-07-11 18:28:48', '2025-12-17 19:47:55', 'NmLpqJam', '3087259'), + (483, 192, 'attending', '2020-07-18 19:47:56', '2025-12-17 19:47:55', 'NmLpqJam', '3087260'), + (483, 193, 'attending', '2020-07-19 02:12:53', '2025-12-17 19:47:55', 'NmLpqJam', '3087261'), + (483, 194, 'maybe', '2020-08-08 17:13:39', '2025-12-17 19:47:56', 'NmLpqJam', '3087262'), + (483, 195, 'attending', '2020-08-06 21:41:26', '2025-12-17 19:47:56', 'NmLpqJam', '3087264'), + (483, 196, 'attending', '2020-08-11 00:40:28', '2025-12-17 19:47:56', 'NmLpqJam', '3087265'), + (483, 197, 'attending', '2020-08-22 19:11:14', '2025-12-17 19:47:56', 'NmLpqJam', '3087266'), + (483, 198, 'not_attending', '2020-08-29 00:57:01', '2025-12-17 19:47:56', 'NmLpqJam', '3087267'), + (483, 199, 'attending', '2020-09-05 16:59:35', '2025-12-17 19:47:56', 'NmLpqJam', '3087268'), + (483, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'NmLpqJam', '3088653'), + (483, 205, 'attending', '2020-07-10 22:50:43', '2025-12-17 19:47:55', 'NmLpqJam', '3104804'), + (483, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'NmLpqJam', '3106813'), + (483, 212, 'attending', '2020-07-13 11:59:21', '2025-12-17 19:47:55', 'NmLpqJam', '3118517'), + (483, 215, 'attending', '2020-07-07 21:47:03', '2025-12-17 19:47:55', 'NmLpqJam', '3124987'), + (483, 223, 'attending', '2020-09-12 22:23:48', '2025-12-17 19:47:56', 'NmLpqJam', '3129980'), + (483, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'NmLpqJam', '3132817'), + (483, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'NmLpqJam', '3132820'), + (483, 229, 'attending', '2020-07-16 20:19:29', '2025-12-17 19:47:55', 'NmLpqJam', '3134135'), + (483, 233, 'attending', '2020-07-19 20:50:55', '2025-12-17 19:47:55', 'NmLpqJam', '3139773'), + (483, 237, 'attending', '2020-07-27 19:05:23', '2025-12-17 19:47:55', 'NmLpqJam', '3142085'), + (483, 260, 'attending', '2021-06-15 22:37:57', '2025-12-17 19:47:47', 'NmLpqJam', '3149491'), + (483, 264, 'attending', '2020-08-05 19:33:05', '2025-12-17 19:47:56', 'NmLpqJam', '3150735'), + (483, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'NmLpqJam', '3155321'), + (483, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'NmLpqJam', '3162006'), + (483, 276, 'attending', '2020-08-04 22:55:20', '2025-12-17 19:47:56', 'NmLpqJam', '3163408'), + (483, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'NmLpqJam', '3163442'), + (483, 280, 'attending', '2020-08-11 00:40:00', '2025-12-17 19:47:56', 'NmLpqJam', '3166942'), + (483, 292, 'attending', '2020-08-10 22:36:03', '2025-12-17 19:47:56', 'NmLpqJam', '3170480'), + (483, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'NmLpqJam', '3172832'), + (483, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'NmLpqJam', '3172833'), + (483, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'NmLpqJam', '3172834'), + (483, 296, 'attending', '2020-09-11 23:09:42', '2025-12-17 19:47:56', 'NmLpqJam', '3172876'), + (483, 297, 'attending', '2020-08-11 22:37:27', '2025-12-17 19:47:56', 'NmLpqJam', '3173937'), + (483, 304, 'attending', '2020-09-06 21:54:56', '2025-12-17 19:47:56', 'NmLpqJam', '3178916'), + (483, 308, 'attending', '2020-09-03 22:53:49', '2025-12-17 19:47:56', 'NmLpqJam', '3183341'), + (483, 311, 'not_attending', '2020-09-18 03:13:52', '2025-12-17 19:47:56', 'NmLpqJam', '3186057'), + (483, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'NmLpqJam', '3191735'), + (483, 319, 'attending', '2020-08-30 14:29:18', '2025-12-17 19:47:56', 'NmLpqJam', '3194179'), + (483, 333, 'attending', '2020-10-02 19:33:09', '2025-12-17 19:47:52', 'NmLpqJam', '3199782'), + (483, 334, 'attending', '2020-10-02 19:33:26', '2025-12-17 19:47:52', 'NmLpqJam', '3199784'), + (483, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'NmLpqJam', '3200209'), + (483, 339, 'attending', '2020-09-09 23:11:00', '2025-12-17 19:47:56', 'NmLpqJam', '3204469'), + (483, 340, 'attending', '2020-09-18 23:56:57', '2025-12-17 19:47:56', 'NmLpqJam', '3204470'), + (483, 341, 'attending', '2020-09-25 23:27:06', '2025-12-17 19:47:52', 'NmLpqJam', '3204471'), + (483, 342, 'not_attending', '2020-10-02 21:24:34', '2025-12-17 19:47:52', 'NmLpqJam', '3204472'), + (483, 345, 'attending', '2020-09-13 22:43:19', '2025-12-17 19:47:56', 'NmLpqJam', '3207423'), + (483, 346, 'attending', '2020-09-15 02:14:29', '2025-12-17 19:47:56', 'NmLpqJam', '3207515'), + (483, 347, 'attending', '2020-09-24 22:52:00', '2025-12-17 19:47:51', 'NmLpqJam', '3207930'), + (483, 348, 'attending', '2020-09-28 19:22:02', '2025-12-17 19:47:52', 'NmLpqJam', '3209159'), + (483, 351, 'maybe', '2020-09-17 16:12:21', '2025-12-17 19:47:56', 'NmLpqJam', '3209257'), + (483, 362, 'attending', '2020-09-26 15:53:21', '2025-12-17 19:47:52', 'NmLpqJam', '3214207'), + (483, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'NmLpqJam', '3217037'), + (483, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'NmLpqJam', '3218510'), + (483, 366, 'attending', '2020-09-22 21:26:25', '2025-12-17 19:47:56', 'NmLpqJam', '3219750'), + (483, 367, 'attending', '2020-09-24 21:13:30', '2025-12-17 19:47:51', 'NmLpqJam', '3219751'), + (483, 368, 'attending', '2020-10-01 19:10:03', '2025-12-17 19:47:52', 'NmLpqJam', '3221403'), + (483, 369, 'not_attending', '2020-10-12 23:18:07', '2025-12-17 19:47:52', 'NmLpqJam', '3221404'), + (483, 370, 'attending', '2020-10-02 19:40:54', '2025-12-17 19:47:52', 'NmLpqJam', '3221405'), + (483, 371, 'attending', '2020-10-02 19:40:57', '2025-12-17 19:47:52', 'NmLpqJam', '3221406'), + (483, 374, 'attending', '2020-10-22 14:06:02', '2025-12-17 19:47:53', 'NmLpqJam', '3221415'), + (483, 385, 'attending', '2020-10-03 21:18:16', '2025-12-17 19:47:52', 'NmLpqJam', '3228698'), + (483, 386, 'attending', '2020-10-06 16:20:13', '2025-12-17 19:47:52', 'NmLpqJam', '3228699'), + (483, 387, 'attending', '2020-10-17 14:31:47', '2025-12-17 19:47:52', 'NmLpqJam', '3228700'), + (483, 388, 'attending', '2020-10-24 00:23:57', '2025-12-17 19:47:52', 'NmLpqJam', '3228701'), + (483, 413, 'attending', '2020-10-21 13:36:07', '2025-12-17 19:47:52', 'NmLpqJam', '3236670'), + (483, 416, 'attending', '2020-10-09 22:27:30', '2025-12-17 19:47:52', 'NmLpqJam', '3238073'), + (483, 418, 'attending', '2020-10-12 18:58:57', '2025-12-17 19:47:52', 'NmLpqJam', '3241728'), + (483, 420, 'attending', '2020-10-15 22:40:48', '2025-12-17 19:47:52', 'NmLpqJam', '3245293'), + (483, 422, 'not_attending', '2020-10-29 22:42:42', '2025-12-17 19:47:53', 'NmLpqJam', '3245295'), + (483, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLpqJam', '3245751'), + (483, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'NmLpqJam', '3250232'), + (483, 427, 'attending', '2020-11-02 00:44:00', '2025-12-17 19:47:53', 'NmLpqJam', '3250233'), + (483, 431, 'attending', '2020-10-22 14:06:17', '2025-12-17 19:47:53', 'NmLpqJam', '3253225'), + (483, 435, 'attending', '2020-10-21 13:34:59', '2025-12-17 19:47:52', 'NmLpqJam', '3254790'), + (483, 438, 'not_attending', '2020-10-22 14:06:47', '2025-12-17 19:47:53', 'NmLpqJam', '3256163'), + (483, 440, 'attending', '2020-10-19 13:31:15', '2025-12-17 19:47:53', 'NmLpqJam', '3256168'), + (483, 441, 'attending', '2020-11-14 15:05:26', '2025-12-17 19:47:54', 'NmLpqJam', '3256169'), + (483, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLpqJam', '3263578'), + (483, 444, 'attending', '2020-10-30 02:31:33', '2025-12-17 19:47:53', 'NmLpqJam', '3263745'), + (483, 445, 'attending', '2020-11-13 00:54:32', '2025-12-17 19:47:54', 'NmLpqJam', '3266138'), + (483, 446, 'attending', '2020-10-27 22:41:29', '2025-12-17 19:47:53', 'NmLpqJam', '3267163'), + (483, 448, 'attending', '2020-10-30 23:46:06', '2025-12-17 19:47:53', 'NmLpqJam', '3271831'), + (483, 455, 'attending', '2020-11-05 13:07:01', '2025-12-17 19:47:53', 'NmLpqJam', '3276391'), + (483, 456, 'not_attending', '2020-11-17 00:03:11', '2025-12-17 19:47:54', 'NmLpqJam', '3276428'), + (483, 458, 'not_attending', '2020-11-09 23:24:49', '2025-12-17 19:47:53', 'NmLpqJam', '3279233'), + (483, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'NmLpqJam', '3281467'), + (483, 461, 'maybe', '2020-11-09 23:24:00', '2025-12-17 19:47:53', 'NmLpqJam', '3281469'), + (483, 462, 'attending', '2020-11-08 20:39:00', '2025-12-17 19:47:53', 'NmLpqJam', '3281470'), + (483, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'NmLpqJam', '3281829'), + (483, 468, 'attending', '2020-11-21 16:16:49', '2025-12-17 19:47:54', 'NmLpqJam', '3285413'), + (483, 469, 'not_attending', '2020-11-10 23:29:26', '2025-12-17 19:47:54', 'NmLpqJam', '3285414'), + (483, 476, 'attending', '2020-11-17 17:15:05', '2025-12-17 19:47:54', 'NmLpqJam', '3286982'), + (483, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'NmLpqJam', '3297764'), + (483, 484, 'attending', '2020-11-20 13:26:11', '2025-12-17 19:47:54', 'NmLpqJam', '3297792'), + (483, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'NmLpqJam', '3313856'), + (483, 496, 'maybe', '2020-12-10 19:45:48', '2025-12-17 19:47:54', 'NmLpqJam', '3314269'), + (483, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'NmLpqJam', '3314909'), + (483, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'NmLpqJam', '3314964'), + (483, 502, 'attending', '2020-12-10 03:28:18', '2025-12-17 19:47:55', 'NmLpqJam', '3323365'), + (483, 513, 'attending', '2020-12-19 21:05:48', '2025-12-17 19:47:55', 'NmLpqJam', '3329383'), + (483, 517, 'attending', '2021-01-04 00:48:58', '2025-12-17 19:47:48', 'NmLpqJam', '3337137'), + (483, 525, 'attending', '2020-12-20 03:21:49', '2025-12-17 19:47:48', 'NmLpqJam', '3350467'), + (483, 526, 'maybe', '2020-12-29 16:52:36', '2025-12-17 19:47:48', 'NmLpqJam', '3351539'), + (483, 529, 'attending', '2021-01-04 00:50:08', '2025-12-17 19:47:48', 'NmLpqJam', '3364568'), + (483, 530, 'attending', '2021-01-04 00:47:53', '2025-12-17 19:47:48', 'NmLpqJam', '3373923'), + (483, 531, 'not_attending', '2021-01-02 05:22:18', '2025-12-17 19:47:48', 'NmLpqJam', '3378210'), + (483, 532, 'attending', '2021-01-04 00:48:41', '2025-12-17 19:47:48', 'NmLpqJam', '3381412'), + (483, 535, 'attending', '2021-01-05 14:50:43', '2025-12-17 19:47:48', 'NmLpqJam', '3384729'), + (483, 536, 'attending', '2021-01-07 14:38:47', '2025-12-17 19:47:48', 'NmLpqJam', '3386848'), + (483, 539, 'attending', '2021-01-12 17:51:57', '2025-12-17 19:47:48', 'NmLpqJam', '3389158'), + (483, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'NmLpqJam', '3389527'), + (483, 541, 'attending', '2021-01-08 13:48:05', '2025-12-17 19:47:48', 'NmLpqJam', '3391683'), + (483, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'NmLpqJam', '3396499'), + (483, 548, 'attending', '2021-01-13 12:56:32', '2025-12-17 19:47:48', 'NmLpqJam', '3403650'), + (483, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'NmLpqJam', '3406988'), + (483, 553, 'attending', '2021-01-13 12:56:26', '2025-12-17 19:47:48', 'NmLpqJam', '3407248'), + (483, 555, 'attending', '2021-01-19 13:06:37', '2025-12-17 19:47:49', 'NmLpqJam', '3416576'), + (483, 557, 'attending', '2021-01-19 15:36:53', '2025-12-17 19:47:49', 'NmLpqJam', '3418748'), + (483, 558, 'attending', '2021-01-19 13:06:33', '2025-12-17 19:47:49', 'NmLpqJam', '3418925'), + (483, 560, 'attending', '2021-01-20 01:56:34', '2025-12-17 19:47:49', 'NmLpqJam', '3421715'), + (483, 561, 'attending', '2021-01-23 20:27:16', '2025-12-17 19:47:49', 'NmLpqJam', '3421916'), + (483, 568, 'attending', '2021-01-30 15:36:38', '2025-12-17 19:47:50', 'NmLpqJam', '3430267'), + (483, 569, 'attending', '2021-01-27 23:03:13', '2025-12-17 19:47:49', 'NmLpqJam', '3432673'), + (483, 571, 'attending', '2021-02-10 21:01:44', '2025-12-17 19:47:50', 'NmLpqJam', '3435539'), + (483, 575, 'attending', '2021-01-30 15:36:44', '2025-12-17 19:47:50', 'NmLpqJam', '3437492'), + (483, 576, 'not_attending', '2021-02-03 00:12:08', '2025-12-17 19:47:50', 'NmLpqJam', '3438748'), + (483, 578, 'attending', '2021-01-28 14:47:28', '2025-12-17 19:47:50', 'NmLpqJam', '3440043'), + (483, 579, 'attending', '2021-02-06 14:06:00', '2025-12-17 19:47:50', 'NmLpqJam', '3440978'), + (483, 598, 'attending', '2021-02-08 16:01:48', '2025-12-17 19:47:50', 'NmLpqJam', '3468003'), + (483, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'NmLpqJam', '3468125'), + (483, 602, 'attending', '2021-02-09 17:14:53', '2025-12-17 19:47:50', 'NmLpqJam', '3470303'), + (483, 603, 'attending', '2021-02-18 15:20:11', '2025-12-17 19:47:50', 'NmLpqJam', '3470304'), + (483, 604, 'attending', '2021-02-23 13:52:17', '2025-12-17 19:47:50', 'NmLpqJam', '3470305'), + (483, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'NmLpqJam', '3470991'), + (483, 607, 'attending', '2021-02-19 23:42:52', '2025-12-17 19:47:50', 'NmLpqJam', '3471882'), + (483, 609, 'attending', '2021-02-13 14:45:48', '2025-12-17 19:47:50', 'NmLpqJam', '3480916'), + (483, 612, 'attending', '2021-02-14 14:56:00', '2025-12-17 19:47:50', 'NmLpqJam', '3490040'), + (483, 613, 'not_attending', '2021-02-26 01:35:50', '2025-12-17 19:47:50', 'NmLpqJam', '3490041'), + (483, 614, 'not_attending', '2021-03-03 23:18:43', '2025-12-17 19:47:51', 'NmLpqJam', '3490042'), + (483, 616, 'attending', '2021-02-15 20:44:13', '2025-12-17 19:47:50', 'NmLpqJam', '3493478'), + (483, 618, 'attending', '2021-02-19 20:23:16', '2025-12-17 19:47:50', 'NmLpqJam', '3503991'), + (483, 619, 'attending', '2021-02-20 20:00:10', '2025-12-17 19:47:50', 'NmLpqJam', '3506310'), + (483, 621, 'not_attending', '2021-03-06 01:18:22', '2025-12-17 19:47:51', 'NmLpqJam', '3517815'), + (483, 622, 'maybe', '2021-03-13 23:02:59', '2025-12-17 19:47:51', 'NmLpqJam', '3517816'), + (483, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'NmLpqJam', '3523941'), + (483, 624, 'attending', '2021-02-27 01:21:07', '2025-12-17 19:47:50', 'NmLpqJam', '3528556'), + (483, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'NmLpqJam', '3533850'), + (483, 632, 'attending', '2021-03-09 00:57:21', '2025-12-17 19:47:51', 'NmLpqJam', '3533853'), + (483, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'NmLpqJam', '3536632'), + (483, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'NmLpqJam', '3536656'), + (483, 641, 'attending', '2021-04-02 14:55:56', '2025-12-17 19:47:44', 'NmLpqJam', '3539916'), + (483, 642, 'attending', '2021-04-06 02:45:46', '2025-12-17 19:47:44', 'NmLpqJam', '3539917'), + (483, 643, 'not_attending', '2021-04-16 12:33:17', '2025-12-17 19:47:45', 'NmLpqJam', '3539918'), + (483, 644, 'attending', '2021-04-24 12:21:29', '2025-12-17 19:47:45', 'NmLpqJam', '3539919'), + (483, 645, 'attending', '2021-05-06 22:37:18', '2025-12-17 19:47:46', 'NmLpqJam', '3539920'), + (483, 646, 'attending', '2021-05-12 14:47:19', '2025-12-17 19:47:46', 'NmLpqJam', '3539921'), + (483, 647, 'attending', '2021-05-22 17:03:16', '2025-12-17 19:47:46', 'NmLpqJam', '3539922'), + (483, 648, 'attending', '2021-05-28 15:50:24', '2025-12-17 19:47:47', 'NmLpqJam', '3539923'), + (483, 649, 'attending', '2021-03-18 21:35:45', '2025-12-17 19:47:51', 'NmLpqJam', '3539927'), + (483, 650, 'attending', '2021-03-26 12:30:51', '2025-12-17 19:47:44', 'NmLpqJam', '3539928'), + (483, 651, 'not_attending', '2021-03-10 22:56:21', '2025-12-17 19:47:51', 'NmLpqJam', '3541045'), + (483, 655, 'maybe', '2021-03-13 23:03:03', '2025-12-17 19:47:51', 'NmLpqJam', '3547129'), + (483, 656, 'attending', '2021-03-18 21:35:39', '2025-12-17 19:47:51', 'NmLpqJam', '3547130'), + (483, 657, 'not_attending', '2021-04-16 12:33:11', '2025-12-17 19:47:45', 'NmLpqJam', '3547132'), + (483, 658, 'attending', '2021-06-12 17:55:19', '2025-12-17 19:47:47', 'NmLpqJam', '3547134'), + (483, 659, 'attending', '2021-04-06 02:45:44', '2025-12-17 19:47:44', 'NmLpqJam', '3547135'), + (483, 660, 'attending', '2021-07-10 15:05:05', '2025-12-17 19:47:39', 'NmLpqJam', '3547136'), + (483, 661, 'attending', '2021-04-02 14:55:59', '2025-12-17 19:47:44', 'NmLpqJam', '3547137'), + (483, 662, 'attending', '2021-04-24 12:21:26', '2025-12-17 19:47:45', 'NmLpqJam', '3547138'), + (483, 663, 'attending', '2021-05-06 22:37:16', '2025-12-17 19:47:46', 'NmLpqJam', '3547140'), + (483, 664, 'attending', '2021-09-08 21:36:20', '2025-12-17 19:47:43', 'NmLpqJam', '3547142'), + (483, 665, 'attending', '2021-09-03 21:19:13', '2025-12-17 19:47:43', 'NmLpqJam', '3547143'), + (483, 666, 'attending', '2021-08-11 21:47:45', '2025-12-17 19:47:42', 'NmLpqJam', '3547144'), + (483, 667, 'attending', '2021-08-24 22:05:00', '2025-12-17 19:47:42', 'NmLpqJam', '3547145'), + (483, 668, 'attending', '2021-05-12 14:47:17', '2025-12-17 19:47:46', 'NmLpqJam', '3547146'), + (483, 669, 'attending', '2021-06-25 18:08:47', '2025-12-17 19:47:38', 'NmLpqJam', '3547147'), + (483, 670, 'attending', '2021-06-18 18:30:07', '2025-12-17 19:47:48', 'NmLpqJam', '3547148'), + (483, 672, 'attending', '2021-05-22 17:03:09', '2025-12-17 19:47:46', 'NmLpqJam', '3547150'), + (483, 673, 'attending', '2021-06-30 11:42:57', '2025-12-17 19:47:38', 'NmLpqJam', '3547151'), + (483, 674, 'attending', '2021-08-06 16:59:54', '2025-12-17 19:47:41', 'NmLpqJam', '3547152'), + (483, 675, 'attending', '2021-07-30 12:16:16', '2025-12-17 19:47:40', 'NmLpqJam', '3547153'), + (483, 676, 'attending', '2021-07-22 01:31:45', '2025-12-17 19:47:40', 'NmLpqJam', '3547154'), + (483, 677, 'attending', '2021-05-28 16:27:27', '2025-12-17 19:47:47', 'NmLpqJam', '3547155'), + (483, 684, 'not_attending', '2021-03-12 22:43:02', '2025-12-17 19:47:51', 'NmLpqJam', '3549257'), + (483, 685, 'attending', '2021-04-02 18:56:40', '2025-12-17 19:47:44', 'NmLpqJam', '3551564'), + (483, 686, 'attending', '2021-03-09 21:00:28', '2025-12-17 19:47:51', 'NmLpqJam', '3553333'), + (483, 687, 'attending', '2021-03-10 17:23:44', '2025-12-17 19:47:51', 'NmLpqJam', '3553405'), + (483, 698, 'attending', '2021-03-15 19:03:05', '2025-12-17 19:47:44', 'NmLpqJam', '3571867'), + (483, 699, 'attending', '2021-03-25 20:58:32', '2025-12-17 19:47:44', 'NmLpqJam', '3572241'), + (483, 705, 'attending', '2021-03-22 23:42:01', '2025-12-17 19:47:44', 'NmLpqJam', '3581895'), + (483, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'NmLpqJam', '3582734'), + (483, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLpqJam', '3583262'), + (483, 708, 'attending', '2021-03-25 02:51:28', '2025-12-17 19:47:44', 'NmLpqJam', '3587850'), + (483, 709, 'attending', '2021-03-30 12:01:29', '2025-12-17 19:47:44', 'NmLpqJam', '3587852'), + (483, 710, 'attending', '2021-03-30 12:01:38', '2025-12-17 19:47:44', 'NmLpqJam', '3587853'), + (483, 715, 'attending', '2021-03-26 12:36:57', '2025-12-17 19:47:44', 'NmLpqJam', '3604146'), + (483, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLpqJam', '3619523'), + (483, 718, 'attending', '2021-03-26 12:30:45', '2025-12-17 19:47:44', 'NmLpqJam', '3626844'), + (483, 719, 'attending', '2021-03-27 15:59:11', '2025-12-17 19:47:44', 'NmLpqJam', '3635405'), + (483, 720, 'attending', '2021-03-29 16:33:33', '2025-12-17 19:47:44', 'NmLpqJam', '3643450'), + (483, 722, 'attending', '2021-03-29 16:04:55', '2025-12-17 19:47:44', 'NmLpqJam', '3646347'), + (483, 723, 'maybe', '2021-04-05 20:08:53', '2025-12-17 19:47:44', 'NmLpqJam', '3649179'), + (483, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLpqJam', '3661369'), + (483, 728, 'attending', '2021-04-02 18:44:03', '2025-12-17 19:47:44', 'NmLpqJam', '3668073'), + (483, 729, 'attending', '2021-04-02 18:44:07', '2025-12-17 19:47:46', 'NmLpqJam', '3668075'), + (483, 730, 'attending', '2021-04-02 18:44:09', '2025-12-17 19:47:46', 'NmLpqJam', '3668076'), + (483, 731, 'maybe', '2021-04-04 13:09:15', '2025-12-17 19:47:44', 'NmLpqJam', '3674262'), + (483, 734, 'attending', '2021-04-06 02:44:24', '2025-12-17 19:47:44', 'NmLpqJam', '3676806'), + (483, 735, 'maybe', '2021-05-02 16:49:04', '2025-12-17 19:47:46', 'NmLpqJam', '3677402'), + (483, 736, 'not_attending', '2021-04-09 16:14:39', '2025-12-17 19:47:44', 'NmLpqJam', '3677701'), + (483, 737, 'attending', '2021-04-06 02:46:02', '2025-12-17 19:47:44', 'NmLpqJam', '3679349'), + (483, 761, 'attending', '2021-05-14 21:34:09', '2025-12-17 19:47:46', 'NmLpqJam', '3716041'), + (483, 764, 'attending', '2021-04-23 22:06:38', '2025-12-17 19:47:45', 'NmLpqJam', '3720507'), + (483, 766, 'attending', '2021-05-04 02:59:20', '2025-12-17 19:47:46', 'NmLpqJam', '3721383'), + (483, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLpqJam', '3730212'), + (483, 777, 'attending', '2021-04-29 02:14:18', '2025-12-17 19:47:46', 'NmLpqJam', '3746248'), + (483, 781, 'attending', '2021-04-29 02:16:18', '2025-12-17 19:47:46', 'NmLpqJam', '3760130'), + (483, 788, 'attending', '2021-05-07 22:17:10', '2025-12-17 19:47:46', 'NmLpqJam', '3781975'), + (483, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLpqJam', '3793156'), + (483, 815, 'attending', '2021-05-16 12:03:45', '2025-12-17 19:47:47', 'NmLpqJam', '3818136'), + (483, 816, 'attending', '2021-05-19 22:02:17', '2025-12-17 19:47:46', 'NmLpqJam', '3826524'), + (483, 823, 'attending', '2021-06-18 18:30:10', '2025-12-17 19:47:48', 'NmLpqJam', '3974109'), + (483, 824, 'attending', '2021-05-30 02:42:50', '2025-12-17 19:47:47', 'NmLpqJam', '3974112'), + (483, 825, 'attending', '2021-06-03 21:44:43', '2025-12-17 19:47:47', 'NmLpqJam', '3975283'), + (483, 827, 'attending', '2021-06-04 20:40:58', '2025-12-17 19:47:47', 'NmLpqJam', '3975311'), + (483, 828, 'attending', '2021-06-12 17:55:22', '2025-12-17 19:47:47', 'NmLpqJam', '3975312'), + (483, 837, 'attending', '2021-06-04 01:58:25', '2025-12-17 19:47:48', 'NmLpqJam', '3992545'), + (483, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLpqJam', '3994992'), + (483, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLpqJam', '4014338'), + (483, 846, 'not_attending', '2021-07-07 21:36:16', '2025-12-17 19:47:39', 'NmLpqJam', '4015718'), + (483, 857, 'not_attending', '2021-11-24 02:32:51', '2025-12-17 19:47:37', 'NmLpqJam', '4015731'), + (483, 867, 'attending', '2021-06-25 18:08:34', '2025-12-17 19:47:38', 'NmLpqJam', '4021848'), + (483, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLpqJam', '4136744'), + (483, 870, 'attending', '2021-06-30 11:42:51', '2025-12-17 19:47:39', 'NmLpqJam', '4136937'), + (483, 871, 'attending', '2021-07-10 15:05:08', '2025-12-17 19:47:39', 'NmLpqJam', '4136938'), + (483, 872, 'not_attending', '2021-07-22 01:31:30', '2025-12-17 19:47:40', 'NmLpqJam', '4136947'), + (483, 874, 'attending', '2021-06-23 19:58:55', '2025-12-17 19:47:38', 'NmLpqJam', '4139815'), + (483, 876, 'attending', '2021-06-18 18:29:16', '2025-12-17 19:47:38', 'NmLpqJam', '4139926'), + (483, 884, 'attending', '2021-07-17 12:16:47', '2025-12-17 19:47:42', 'NmLpqJam', '4210314'), + (483, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLpqJam', '4225444'), + (483, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLpqJam', '4239259'), + (483, 900, 'attending', '2021-07-22 01:31:43', '2025-12-17 19:47:40', 'NmLpqJam', '4240316'), + (483, 901, 'attending', '2021-07-30 12:16:19', '2025-12-17 19:47:40', 'NmLpqJam', '4240317'), + (483, 902, 'attending', '2021-08-06 16:59:57', '2025-12-17 19:47:41', 'NmLpqJam', '4240318'), + (483, 903, 'attending', '2021-08-11 21:47:32', '2025-12-17 19:47:42', 'NmLpqJam', '4240320'), + (483, 905, 'attending', '2021-07-07 21:36:07', '2025-12-17 19:47:39', 'NmLpqJam', '4250163'), + (483, 911, 'attending', '2021-07-09 12:37:35', '2025-12-17 19:47:39', 'NmLpqJam', '4264465'), + (483, 919, 'attending', '2021-07-16 17:33:20', '2025-12-17 19:47:39', 'NmLpqJam', '4275957'), + (483, 920, 'not_attending', '2021-07-25 12:57:59', '2025-12-17 19:47:40', 'NmLpqJam', '4277819'), + (483, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'NmLpqJam', '4301723'), + (483, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmLpqJam', '4302093'), + (483, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLpqJam', '4304151'), + (483, 940, 'not_attending', '2021-07-30 12:13:39', '2025-12-17 19:47:40', 'NmLpqJam', '4309049'), + (483, 946, 'attending', '2021-07-28 21:55:00', '2025-12-17 19:47:40', 'NmLpqJam', '4314835'), + (483, 952, 'not_attending', '2021-08-05 21:45:08', '2025-12-17 19:47:41', 'NmLpqJam', '4318286'), + (483, 955, 'attending', '2021-08-03 01:36:31', '2025-12-17 19:47:41', 'NmLpqJam', '4331588'), + (483, 960, 'attending', '2021-08-08 14:52:12', '2025-12-17 19:47:41', 'NmLpqJam', '4344519'), + (483, 961, 'attending', '2021-08-08 14:51:49', '2025-12-17 19:47:41', 'NmLpqJam', '4345519'), + (483, 963, 'attending', '2021-08-15 21:30:26', '2025-12-17 19:47:42', 'NmLpqJam', '4353159'), + (483, 964, 'attending', '2021-08-19 21:46:43', '2025-12-17 19:47:42', 'NmLpqJam', '4353160'), + (483, 970, 'attending', '2021-08-12 01:29:44', '2025-12-17 19:47:42', 'NmLpqJam', '4356798'), + (483, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLpqJam', '4356801'), + (483, 972, 'attending', '2021-08-20 17:50:24', '2025-12-17 19:47:42', 'NmLpqJam', '4358025'), + (483, 973, 'attending', '2021-08-15 21:28:11', '2025-12-17 19:47:42', 'NmLpqJam', '4366186'), + (483, 974, 'attending', '2021-08-15 21:28:39', '2025-12-17 19:47:42', 'NmLpqJam', '4366187'), + (483, 988, 'attending', '2021-08-24 02:56:10', '2025-12-17 19:47:42', 'NmLpqJam', '4402823'), + (483, 990, 'attending', '2021-09-03 21:19:02', '2025-12-17 19:47:43', 'NmLpqJam', '4420735'), + (483, 991, 'attending', '2021-09-08 21:36:22', '2025-12-17 19:47:43', 'NmLpqJam', '4420738'), + (483, 992, 'attending', '2021-09-18 13:14:25', '2025-12-17 19:47:33', 'NmLpqJam', '4420739'), + (483, 993, 'attending', '2021-09-24 13:03:55', '2025-12-17 19:47:34', 'NmLpqJam', '4420741'), + (483, 994, 'attending', '2021-10-02 12:59:57', '2025-12-17 19:47:34', 'NmLpqJam', '4420742'), + (483, 995, 'attending', '2021-10-08 23:57:17', '2025-12-17 19:47:34', 'NmLpqJam', '4420744'), + (483, 996, 'attending', '2021-10-16 18:54:41', '2025-12-17 19:47:35', 'NmLpqJam', '4420747'), + (483, 997, 'attending', '2021-10-23 19:57:19', '2025-12-17 19:47:35', 'NmLpqJam', '4420748'), + (483, 998, 'attending', '2021-10-29 12:06:50', '2025-12-17 19:47:36', 'NmLpqJam', '4420749'), + (483, 999, 'attending', '2021-08-29 15:05:16', '2025-12-17 19:47:43', 'NmLpqJam', '4421150'), + (483, 1018, 'attending', '2021-09-05 17:14:31', '2025-12-17 19:47:43', 'NmLpqJam', '4448883'), + (483, 1019, 'attending', '2021-09-06 02:44:37', '2025-12-17 19:47:43', 'NmLpqJam', '4450515'), + (483, 1020, 'attending', '2021-09-06 15:35:25', '2025-12-17 19:47:43', 'NmLpqJam', '4451787'), + (483, 1021, 'attending', '2021-09-06 15:26:55', '2025-12-17 19:47:34', 'NmLpqJam', '4451803'), + (483, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'NmLpqJam', '4461883'), + (483, 1033, 'attending', '2021-09-18 13:14:21', '2025-12-17 19:47:43', 'NmLpqJam', '4486006'), + (483, 1037, 'attending', '2021-09-18 18:49:03', '2025-12-17 19:47:34', 'NmLpqJam', '4493233'), + (483, 1038, 'attending', '2021-09-24 13:03:53', '2025-12-17 19:47:34', 'NmLpqJam', '4496603'), + (483, 1039, 'attending', '2021-10-02 13:00:28', '2025-12-17 19:47:34', 'NmLpqJam', '4496604'), + (483, 1041, 'attending', '2021-12-04 19:37:38', '2025-12-17 19:47:37', 'NmLpqJam', '4496606'), + (483, 1042, 'not_attending', '2021-11-24 02:32:19', '2025-12-17 19:47:37', 'NmLpqJam', '4496607'), + (483, 1043, 'attending', '2021-10-23 19:57:16', '2025-12-17 19:47:35', 'NmLpqJam', '4496608'), + (483, 1045, 'attending', '2021-10-29 12:06:44', '2025-12-17 19:47:36', 'NmLpqJam', '4496610'), + (483, 1046, 'attending', '2021-10-16 18:54:39', '2025-12-17 19:47:35', 'NmLpqJam', '4496611'), + (483, 1047, 'attending', '2021-10-08 23:57:15', '2025-12-17 19:47:34', 'NmLpqJam', '4496612'), + (483, 1048, 'attending', '2021-11-12 01:39:15', '2025-12-17 19:47:36', 'NmLpqJam', '4496613'), + (483, 1049, 'attending', '2022-01-22 19:39:49', '2025-12-17 19:47:32', 'NmLpqJam', '4496614'), + (483, 1050, 'attending', '2022-01-29 19:05:19', '2025-12-17 19:47:32', 'NmLpqJam', '4496615'), + (483, 1051, 'attending', '2022-02-05 18:13:47', '2025-12-17 19:47:32', 'NmLpqJam', '4496616'), + (483, 1052, 'attending', '2022-01-14 04:26:15', '2025-12-17 19:47:31', 'NmLpqJam', '4496617'), + (483, 1053, 'attending', '2022-02-19 19:50:22', '2025-12-17 19:47:32', 'NmLpqJam', '4496618'), + (483, 1054, 'attending', '2022-03-13 22:57:00', '2025-12-17 19:47:25', 'NmLpqJam', '4496619'), + (483, 1055, 'attending', '2021-12-18 18:12:41', '2025-12-17 19:47:31', 'NmLpqJam', '4496621'), + (483, 1056, 'attending', '2022-01-05 22:31:01', '2025-12-17 19:47:31', 'NmLpqJam', '4496622'), + (483, 1057, 'attending', '2021-11-20 17:04:59', '2025-12-17 19:47:37', 'NmLpqJam', '4496624'), + (483, 1058, 'attending', '2022-02-23 12:58:53', '2025-12-17 19:47:33', 'NmLpqJam', '4496625'), + (483, 1059, 'attending', '2022-03-12 22:23:30', '2025-12-17 19:47:33', 'NmLpqJam', '4496626'), + (483, 1060, 'attending', '2022-03-26 20:15:41', '2025-12-17 19:47:25', 'NmLpqJam', '4496627'), + (483, 1061, 'attending', '2022-02-11 16:47:39', '2025-12-17 19:47:32', 'NmLpqJam', '4496628'), + (483, 1062, 'attending', '2022-03-04 02:08:52', '2025-12-17 19:47:33', 'NmLpqJam', '4496629'), + (483, 1063, 'attending', '2021-09-20 16:50:24', '2025-12-17 19:47:34', 'NmLpqJam', '4496630'), + (483, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLpqJam', '4508342'), + (483, 1068, 'attending', '2021-09-24 20:50:41', '2025-12-17 19:47:34', 'NmLpqJam', '4511471'), + (483, 1078, 'attending', '2021-10-04 21:48:11', '2025-12-17 19:47:34', 'NmLpqJam', '4541281'), + (483, 1082, 'attending', '2021-10-11 22:45:13', '2025-12-17 19:47:35', 'NmLpqJam', '4566762'), + (483, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLpqJam', '4568602'), + (483, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLpqJam', '4572153'), + (483, 1092, 'attending', '2021-10-19 21:30:44', '2025-12-17 19:47:35', 'NmLpqJam', '4582837'), + (483, 1093, 'not_attending', '2021-10-22 13:10:46', '2025-12-17 19:47:35', 'NmLpqJam', '4585962'), + (483, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'NmLpqJam', '4596356'), + (483, 1096, 'attending', '2021-10-27 01:01:54', '2025-12-17 19:47:36', 'NmLpqJam', '4596453'), + (483, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLpqJam', '4598860'), + (483, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLpqJam', '4598861'), + (483, 1099, 'attending', '2021-11-02 18:03:11', '2025-12-17 19:47:36', 'NmLpqJam', '4602797'), + (483, 1104, 'attending', '2021-11-12 01:39:30', '2025-12-17 19:47:36', 'NmLpqJam', '4618310'), + (483, 1106, 'attending', '2021-11-09 03:27:12', '2025-12-17 19:47:36', 'NmLpqJam', '4620452'), + (483, 1114, 'attending', '2021-11-12 01:36:50', '2025-12-17 19:47:36', 'NmLpqJam', '4637896'), + (483, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLpqJam', '4642994'), + (483, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmLpqJam', '4642995'), + (483, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLpqJam', '4642996'), + (483, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLpqJam', '4642997'), + (483, 1126, 'attending', '2021-12-12 00:00:40', '2025-12-17 19:47:38', 'NmLpqJam', '4645687'), + (483, 1127, 'attending', '2021-12-11 20:40:23', '2025-12-17 19:47:38', 'NmLpqJam', '4645698'), + (483, 1128, 'attending', '2021-11-20 17:04:51', '2025-12-17 19:47:37', 'NmLpqJam', '4645704'), + (483, 1129, 'not_attending', '2021-11-24 02:32:25', '2025-12-17 19:47:37', 'NmLpqJam', '4645705'), + (483, 1130, 'attending', '2021-12-04 19:37:47', '2025-12-17 19:47:37', 'NmLpqJam', '4658824'), + (483, 1131, 'attending', '2021-12-18 18:12:44', '2025-12-17 19:47:31', 'NmLpqJam', '4658825'), + (483, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLpqJam', '4668385'), + (483, 1139, 'attending', '2021-11-29 00:05:16', '2025-12-17 19:47:37', 'NmLpqJam', '4675604'), + (483, 1145, 'attending', '2021-12-06 22:38:00', '2025-12-17 19:47:38', 'NmLpqJam', '4691157'), + (483, 1146, 'attending', '2021-12-07 00:03:22', '2025-12-17 19:47:38', 'NmLpqJam', '4692841'), + (483, 1147, 'attending', '2021-12-07 00:03:26', '2025-12-17 19:47:38', 'NmLpqJam', '4692842'), + (483, 1148, 'attending', '2021-12-07 00:03:28', '2025-12-17 19:47:31', 'NmLpqJam', '4692843'), + (483, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLpqJam', '4694407'), + (483, 1155, 'attending', '2021-12-18 16:56:57', '2025-12-17 19:47:31', 'NmLpqJam', '4715119'), + (483, 1163, 'attending', '2021-12-27 22:33:45', '2025-12-17 19:47:31', 'NmLpqJam', '4724206'), + (483, 1164, 'attending', '2021-12-27 23:04:54', '2025-12-17 19:47:31', 'NmLpqJam', '4724208'), + (483, 1165, 'not_attending', '2022-01-04 02:25:11', '2025-12-17 19:47:31', 'NmLpqJam', '4724210'), + (483, 1173, 'attending', '2022-01-05 22:31:04', '2025-12-17 19:47:31', 'NmLpqJam', '4736495'), + (483, 1174, 'attending', '2022-01-14 04:26:17', '2025-12-17 19:47:31', 'NmLpqJam', '4736496'), + (483, 1175, 'attending', '2022-01-22 19:39:53', '2025-12-17 19:47:32', 'NmLpqJam', '4736497'), + (483, 1176, 'attending', '2022-02-05 18:13:40', '2025-12-17 19:47:32', 'NmLpqJam', '4736498'), + (483, 1177, 'attending', '2022-02-11 16:47:42', '2025-12-17 19:47:32', 'NmLpqJam', '4736499'), + (483, 1178, 'attending', '2022-01-29 19:05:20', '2025-12-17 19:47:32', 'NmLpqJam', '4736500'), + (483, 1179, 'attending', '2022-02-19 19:50:25', '2025-12-17 19:47:32', 'NmLpqJam', '4736501'), + (483, 1180, 'attending', '2022-02-23 12:58:50', '2025-12-17 19:47:33', 'NmLpqJam', '4736502'), + (483, 1181, 'attending', '2022-03-04 02:08:54', '2025-12-17 19:47:33', 'NmLpqJam', '4736503'), + (483, 1182, 'attending', '2022-03-12 22:23:22', '2025-12-17 19:47:33', 'NmLpqJam', '4736504'), + (483, 1183, 'attending', '2022-01-05 23:38:27', '2025-12-17 19:47:31', 'NmLpqJam', '4742171'), + (483, 1185, 'not_attending', '2022-01-14 04:25:55', '2025-12-17 19:47:31', 'NmLpqJam', '4746789'), + (483, 1188, 'attending', '2022-01-11 22:42:26', '2025-12-17 19:47:31', 'NmLpqJam', '4753929'), + (483, 1190, 'attending', '2022-01-11 22:52:12', '2025-12-17 19:47:31', 'NmLpqJam', '4757377'), + (483, 1201, 'attending', '2022-01-17 22:38:02', '2025-12-17 19:47:32', 'NmLpqJam', '4766841'), + (483, 1202, 'attending', '2022-01-21 13:00:43', '2025-12-17 19:47:32', 'NmLpqJam', '4769423'), + (483, 1211, 'attending', '2022-01-24 23:25:58', '2025-12-17 19:47:32', 'NmLpqJam', '4780754'), + (483, 1212, 'attending', '2022-01-24 23:26:16', '2025-12-17 19:47:32', 'NmLpqJam', '4780759'), + (483, 1213, 'not_attending', '2022-02-08 23:23:36', '2025-12-17 19:47:32', 'NmLpqJam', '4780760'), + (483, 1214, 'attending', '2022-01-24 23:31:43', '2025-12-17 19:47:32', 'NmLpqJam', '4780761'), + (483, 1215, 'attending', '2022-01-24 23:31:45', '2025-12-17 19:47:33', 'NmLpqJam', '4780763'), + (483, 1217, 'not_attending', '2022-01-30 18:52:26', '2025-12-17 19:47:32', 'NmLpqJam', '4781139'), + (483, 1228, 'attending', '2022-02-05 18:16:36', '2025-12-17 19:47:32', 'NmLpqJam', '5028238'), + (483, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmLpqJam', '5038850'), + (483, 1234, 'attending', '2022-02-11 00:34:24', '2025-12-17 19:47:32', 'NmLpqJam', '5042197'), + (483, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmLpqJam', '5045826'), + (483, 1243, 'attending', '2022-02-23 13:13:14', '2025-12-17 19:47:33', 'NmLpqJam', '5058336'), + (483, 1245, 'attending', '2022-02-22 00:07:04', '2025-12-17 19:47:33', 'NmLpqJam', '5061301'), + (483, 1246, 'attending', '2022-02-23 12:49:44', '2025-12-17 19:47:33', 'NmLpqJam', '5064727'), + (483, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLpqJam', '5132533'), + (483, 1261, 'attending', '2022-03-03 23:10:36', '2025-12-17 19:47:33', 'NmLpqJam', '5154274'), + (483, 1267, 'attending', '2022-03-09 21:33:41', '2025-12-17 19:47:25', 'NmLpqJam', '5169578'), + (483, 1270, 'maybe', '2022-03-20 15:23:54', '2025-12-17 19:47:25', 'NmLpqJam', '5181277'), + (483, 1272, 'attending', '2022-03-19 20:15:21', '2025-12-17 19:47:25', 'NmLpqJam', '5186582'), + (483, 1273, 'attending', '2022-03-26 20:15:43', '2025-12-17 19:47:25', 'NmLpqJam', '5186583'), + (483, 1274, 'attending', '2022-04-02 13:09:53', '2025-12-17 19:47:26', 'NmLpqJam', '5186585'), + (483, 1275, 'attending', '2022-04-02 13:09:50', '2025-12-17 19:47:26', 'NmLpqJam', '5186587'), + (483, 1281, 'not_attending', '2022-04-05 23:18:44', '2025-12-17 19:47:27', 'NmLpqJam', '5190437'), + (483, 1284, 'not_attending', '2022-04-16 17:43:18', '2025-12-17 19:47:27', 'NmLpqJam', '5195095'), + (483, 1285, 'attending', '2022-03-21 14:38:51', '2025-12-17 19:47:25', 'NmLpqJam', '5196763'), + (483, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmLpqJam', '5215989'), + (483, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLpqJam', '5223686'), + (483, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLpqJam', '5227432'), + (483, 1313, 'not_attending', '2022-04-08 03:23:46', '2025-12-17 19:47:27', 'NmLpqJam', '5231461'), + (483, 1330, 'attending', '2022-04-12 23:39:19', '2025-12-17 19:47:27', 'NmLpqJam', '5242155'), + (483, 1331, 'attending', '2022-04-12 23:42:58', '2025-12-17 19:47:27', 'NmLpqJam', '5242156'), + (483, 1344, 'attending', '2022-04-29 15:29:36', '2025-12-17 19:47:28', 'NmLpqJam', '5247465'), + (483, 1345, 'attending', '2022-04-21 18:02:41', '2025-12-17 19:47:27', 'NmLpqJam', '5247466'), + (483, 1346, 'attending', '2022-04-21 18:02:39', '2025-12-17 19:47:27', 'NmLpqJam', '5247467'), + (483, 1362, 'attending', '2022-04-29 15:29:38', '2025-12-17 19:47:28', 'NmLpqJam', '5260800'), + (483, 1372, 'not_attending', '2022-05-04 22:37:10', '2025-12-17 19:47:28', 'NmLpqJam', '5264352'), + (483, 1374, 'attending', '2022-05-07 18:16:42', '2025-12-17 19:47:28', 'NmLpqJam', '5269930'), + (483, 1378, 'attending', '2022-05-14 17:57:35', '2025-12-17 19:47:29', 'NmLpqJam', '5271448'), + (483, 1379, 'attending', '2022-05-17 00:00:19', '2025-12-17 19:47:29', 'NmLpqJam', '5271449'), + (483, 1382, 'attending', '2022-05-03 22:44:13', '2025-12-17 19:47:28', 'NmLpqJam', '5276350'), + (483, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmLpqJam', '5276469'), + (483, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmLpqJam', '5278159'), + (483, 1395, 'attending', '2022-05-07 18:16:50', '2025-12-17 19:47:28', 'NmLpqJam', '5281102'), + (483, 1396, 'attending', '2022-05-14 17:57:31', '2025-12-17 19:47:28', 'NmLpqJam', '5281103'), + (483, 1397, 'attending', '2022-05-17 00:00:23', '2025-12-17 19:47:29', 'NmLpqJam', '5281104'), + (483, 1407, 'attending', '2022-06-04 02:22:41', '2025-12-17 19:47:30', 'NmLpqJam', '5363695'), + (483, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLpqJam', '5365960'), + (483, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmLpqJam', '5368973'), + (483, 1419, 'attending', '2022-06-08 22:28:20', '2025-12-17 19:47:30', 'NmLpqJam', '5373081'), + (483, 1427, 'attending', '2022-05-25 21:06:01', '2025-12-17 19:47:30', 'NmLpqJam', '5376074'), + (483, 1428, 'attending', '2022-06-09 22:20:08', '2025-12-17 19:47:30', 'NmLpqJam', '5378247'), + (483, 1431, 'attending', '2022-06-06 01:01:31', '2025-12-17 19:47:30', 'NmLpqJam', '5389605'), + (483, 1436, 'attending', '2022-06-01 02:43:53', '2025-12-17 19:47:30', 'NmLpqJam', '5394292'), + (483, 1442, 'attending', '2022-06-14 00:38:16', '2025-12-17 19:47:17', 'NmLpqJam', '5397265'), + (483, 1443, 'attending', '2022-06-04 02:22:39', '2025-12-17 19:47:30', 'NmLpqJam', '5397613'), + (483, 1444, 'attending', '2022-06-06 01:01:28', '2025-12-17 19:47:30', 'NmLpqJam', '5397614'), + (483, 1445, 'attending', '2022-06-14 00:38:14', '2025-12-17 19:47:17', 'NmLpqJam', '5397615'), + (483, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmLpqJam', '5403967'), + (483, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLpqJam', '5404786'), + (483, 1460, 'attending', '2022-06-10 12:05:41', '2025-12-17 19:47:31', 'NmLpqJam', '5404817'), + (483, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmLpqJam', '5405203'), + (483, 1477, 'attending', '2022-06-15 00:49:10', '2025-12-17 19:47:17', 'NmLpqJam', '5408766'), + (483, 1478, 'attending', '2022-06-15 01:08:31', '2025-12-17 19:47:17', 'NmLpqJam', '5408794'), + (483, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLpqJam', '5411699'), + (483, 1482, 'attending', '2022-06-21 22:19:41', '2025-12-17 19:47:19', 'NmLpqJam', '5412550'), + (483, 1483, 'attending', '2022-06-21 22:21:36', '2025-12-17 19:47:17', 'NmLpqJam', '5414556'), + (483, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmLpqJam', '5415046'), + (483, 1493, 'attending', '2022-06-25 17:34:00', '2025-12-17 19:47:19', 'NmLpqJam', '5420218'), + (483, 1495, 'attending', '2022-06-26 13:54:05', '2025-12-17 19:47:19', 'NmLpqJam', '5422086'), + (483, 1496, 'attending', '2022-06-26 13:58:40', '2025-12-17 19:47:19', 'NmLpqJam', '5422404'), + (483, 1497, 'attending', '2022-06-26 14:13:26', '2025-12-17 19:47:19', 'NmLpqJam', '5422405'), + (483, 1498, 'attending', '2022-06-26 14:16:11', '2025-12-17 19:47:19', 'NmLpqJam', '5422406'), + (483, 1499, 'attending', '2022-06-26 14:21:05', '2025-12-17 19:47:19', 'NmLpqJam', '5422407'), + (483, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLpqJam', '5424565'), + (483, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLpqJam', '5426882'), + (483, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmLpqJam', '5427083'), + (483, 1508, 'maybe', '2022-07-13 21:35:41', '2025-12-17 19:47:19', 'NmLpqJam', '5433453'), + (483, 1511, 'attending', '2022-07-08 01:15:49', '2025-12-17 19:47:19', 'NmLpqJam', '5437733'), + (483, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLpqJam', '5441125'), + (483, 1514, 'attending', '2022-07-19 22:52:15', '2025-12-17 19:47:20', 'NmLpqJam', '5441126'), + (483, 1515, 'attending', '2022-08-05 01:58:39', '2025-12-17 19:47:21', 'NmLpqJam', '5441128'), + (483, 1516, 'attending', '2022-08-17 22:54:13', '2025-12-17 19:47:23', 'NmLpqJam', '5441129'), + (483, 1517, 'attending', '2022-08-25 20:24:54', '2025-12-17 19:47:23', 'NmLpqJam', '5441130'), + (483, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'NmLpqJam', '5441131'), + (483, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLpqJam', '5441132'), + (483, 1524, 'attending', '2022-07-11 15:38:02', '2025-12-17 19:47:19', 'NmLpqJam', '5443300'), + (483, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLpqJam', '5446643'), + (483, 1532, 'attending', '2022-07-19 22:52:19', '2025-12-17 19:47:20', 'NmLpqJam', '5448757'), + (483, 1533, 'attending', '2022-07-19 22:52:17', '2025-12-17 19:47:21', 'NmLpqJam', '5448758'), + (483, 1534, 'attending', '2022-08-05 01:58:42', '2025-12-17 19:47:21', 'NmLpqJam', '5448759'), + (483, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLpqJam', '5453325'), + (483, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLpqJam', '5454516'), + (483, 1544, 'attending', '2022-09-17 20:44:16', '2025-12-17 19:47:11', 'NmLpqJam', '5454517'), + (483, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLpqJam', '5454605'), + (483, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLpqJam', '5455037'), + (483, 1553, 'attending', '2022-07-19 23:01:45', '2025-12-17 19:47:20', 'NmLpqJam', '5455164'), + (483, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLpqJam', '5461278'), + (483, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLpqJam', '5469480'), + (483, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLpqJam', '5471073'), + (483, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'NmLpqJam', '5474663'), + (483, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLpqJam', '5482022'), + (483, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLpqJam', '5482793'), + (483, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLpqJam', '5488912'), + (483, 1582, 'attending', '2022-08-07 21:12:22', '2025-12-17 19:47:23', 'NmLpqJam', '5492001'), + (483, 1583, 'attending', '2022-08-07 21:12:14', '2025-12-17 19:47:22', 'NmLpqJam', '5492002'), + (483, 1584, 'attending', '2022-08-07 21:12:20', '2025-12-17 19:47:23', 'NmLpqJam', '5492004'), + (483, 1585, 'attending', '2022-08-07 21:15:41', '2025-12-17 19:47:22', 'NmLpqJam', '5492013'), + (483, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLpqJam', '5492192'), + (483, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLpqJam', '5493139'), + (483, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLpqJam', '5493200'), + (483, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLpqJam', '5502188'), + (483, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLpqJam', '5505059'), + (483, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'NmLpqJam', '5509055'), + (483, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLpqJam', '5512862'), + (483, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLpqJam', '5513985'), + (483, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'NmLpqJam', '5519981'), + (483, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLpqJam', '5522550'), + (483, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLpqJam', '5534683'), + (483, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLpqJam', '5537735'), + (483, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLpqJam', '5540859'), + (483, 1641, 'attending', '2022-08-31 21:36:53', '2025-12-17 19:47:24', 'NmLpqJam', '5544226'), + (483, 1642, 'attending', '2022-08-31 21:36:51', '2025-12-17 19:47:24', 'NmLpqJam', '5544227'), + (483, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLpqJam', '5546619'), + (483, 1649, 'attending', '2022-09-03 15:16:42', '2025-12-17 19:47:24', 'NmLpqJam', '5549346'), + (483, 1652, 'attending', '2022-09-10 18:35:04', '2025-12-17 19:47:24', 'NmLpqJam', '5552671'), + (483, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLpqJam', '5555245'), + (483, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLpqJam', '5557747'), + (483, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLpqJam', '5560255'), + (483, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLpqJam', '5562906'), + (483, 1667, 'attending', '2022-09-24 21:51:56', '2025-12-17 19:47:11', 'NmLpqJam', '5563221'), + (483, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLpqJam', '5600604'), + (483, 1682, 'attending', '2022-09-24 21:51:51', '2025-12-17 19:47:11', 'NmLpqJam', '5605317'), + (483, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLpqJam', '5605544'), + (483, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'NmLpqJam', '5606737'), + (483, 1711, 'attending', '2022-10-02 19:06:27', '2025-12-17 19:47:12', 'NmLpqJam', '5621883'), + (483, 1712, 'attending', '2022-10-02 19:06:31', '2025-12-17 19:47:12', 'NmLpqJam', '5622073'), + (483, 1713, 'attending', '2022-10-02 19:06:33', '2025-12-17 19:47:13', 'NmLpqJam', '5622108'), + (483, 1714, 'attending', '2022-10-02 23:03:14', '2025-12-17 19:47:14', 'NmLpqJam', '5622347'), + (483, 1716, 'attending', '2022-10-02 23:03:01', '2025-12-17 19:47:12', 'NmLpqJam', '5622429'), + (483, 1719, 'attending', '2022-10-05 22:07:53', '2025-12-17 19:47:12', 'NmLpqJam', '5630958'), + (483, 1720, 'attending', '2022-10-13 22:21:02', '2025-12-17 19:47:12', 'NmLpqJam', '5630959'), + (483, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLpqJam', '5630960'), + (483, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLpqJam', '5630961'), + (483, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLpqJam', '5630962'), + (483, 1724, 'maybe', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLpqJam', '5630966'), + (483, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLpqJam', '5630967'), + (483, 1726, 'not_attending', '2022-11-14 21:35:03', '2025-12-17 19:47:16', 'NmLpqJam', '5630968'), + (483, 1727, 'attending', '2022-12-03 21:13:10', '2025-12-17 19:47:16', 'NmLpqJam', '5630969'), + (483, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLpqJam', '5635406'), + (483, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLpqJam', '5638765'), + (483, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLpqJam', '5640097'), + (483, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLpqJam', '5640843'), + (483, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLpqJam', '5641521'), + (483, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLpqJam', '5642818'), + (483, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLpqJam', '5652395'), + (483, 1753, 'attending', '2022-10-18 23:08:03', '2025-12-17 19:47:13', 'NmLpqJam', '5656228'), + (483, 1759, 'attending', '2022-10-22 16:36:59', '2025-12-17 19:47:13', 'NmLpqJam', '5669097'), + (483, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLpqJam', '5670445'), + (483, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLpqJam', '5671637'), + (483, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLpqJam', '5672329'), + (483, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLpqJam', '5674057'), + (483, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLpqJam', '5674060'), + (483, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLpqJam', '5677461'), + (483, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLpqJam', '5698046'), + (483, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLpqJam', '5699760'), + (483, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLpqJam', '5741601'), + (483, 1796, 'attending', '2022-11-17 22:07:09', '2025-12-17 19:47:16', 'NmLpqJam', '5756755'), + (483, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLpqJam', '5763458'), + (483, 1800, 'attending', '2022-11-19 23:59:07', '2025-12-17 19:47:16', 'NmLpqJam', '5764667'), + (483, 1801, 'attending', '2022-12-03 21:13:12', '2025-12-17 19:47:16', 'NmLpqJam', '5764668'), + (483, 1805, 'attending', '2023-02-03 19:17:14', '2025-12-17 19:47:06', 'NmLpqJam', '5764675'), + (483, 1806, 'attending', '2023-01-20 14:16:49', '2025-12-17 19:47:05', 'NmLpqJam', '5764676'), + (483, 1807, 'attending', '2023-01-12 22:03:49', '2025-12-17 19:47:05', 'NmLpqJam', '5764677'), + (483, 1808, 'attending', '2023-03-02 14:20:48', '2025-12-17 19:47:08', 'NmLpqJam', '5764678'), + (483, 1809, 'attending', '2023-04-13 21:58:59', '2025-12-17 19:46:59', 'NmLpqJam', '5764679'), + (483, 1811, 'attending', '2023-05-06 14:46:06', '2025-12-17 19:47:02', 'NmLpqJam', '5764681'), + (483, 1812, 'attending', '2023-03-09 23:40:35', '2025-12-17 19:47:09', 'NmLpqJam', '5764682'), + (483, 1814, 'attending', '2023-02-24 19:37:44', '2025-12-17 19:47:08', 'NmLpqJam', '5764684'), + (483, 1816, 'attending', '2023-05-20 02:25:00', '2025-12-17 19:47:03', 'NmLpqJam', '5764686'), + (483, 1818, 'attending', '2023-02-09 23:49:42', '2025-12-17 19:47:07', 'NmLpqJam', '5764688'), + (483, 1819, 'attending', '2023-03-31 22:56:18', '2025-12-17 19:46:58', 'NmLpqJam', '5764689'), + (483, 1820, 'attending', '2023-04-05 21:17:04', '2025-12-17 19:46:58', 'NmLpqJam', '5764690'), + (483, 1821, 'attending', '2023-03-18 13:25:39', '2025-12-17 19:46:56', 'NmLpqJam', '5764691'), + (483, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLpqJam', '5774172'), + (483, 1831, 'attending', '2022-12-02 03:15:06', '2025-12-17 19:47:16', 'NmLpqJam', '5813239'), + (483, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'NmLpqJam', '5818247'), + (483, 1834, 'attending', '2022-12-10 21:02:38', '2025-12-17 19:47:17', 'NmLpqJam', '5819470'), + (483, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLpqJam', '5819471'), + (483, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'NmLpqJam', '5827739'), + (483, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLpqJam', '5844306'), + (483, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLpqJam', '5850159'), + (483, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLpqJam', '5858999'), + (483, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLpqJam', '5871984'), + (483, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLpqJam', '5876354'), + (483, 1864, 'attending', '2023-01-20 14:16:45', '2025-12-17 19:47:05', 'NmLpqJam', '5879675'), + (483, 1865, 'attending', '2023-01-22 15:58:02', '2025-12-17 19:47:06', 'NmLpqJam', '5879676'), + (483, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLpqJam', '5880939'), + (483, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLpqJam', '5880940'), + (483, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLpqJam', '5880942'), + (483, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'NmLpqJam', '5880943'), + (483, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLpqJam', '5887890'), + (483, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLpqJam', '5888598'), + (483, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLpqJam', '5893260'), + (483, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLpqJam', '5899826'), + (483, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLpqJam', '5900199'), + (483, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLpqJam', '5900200'), + (483, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'NmLpqJam', '5900202'), + (483, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLpqJam', '5900203'), + (483, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLpqJam', '5901108'), + (483, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLpqJam', '5901126'), + (483, 1897, 'attending', '2023-02-09 23:49:40', '2025-12-17 19:47:07', 'NmLpqJam', '5901128'), + (483, 1902, 'attending', '2023-02-04 18:43:34', '2025-12-17 19:47:06', 'NmLpqJam', '5902254'), + (483, 1903, 'attending', '2023-02-02 02:02:19', '2025-12-17 19:47:06', 'NmLpqJam', '5902612'), + (483, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLpqJam', '5909655'), + (483, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLpqJam', '5910522'), + (483, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLpqJam', '5910526'), + (483, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLpqJam', '5910528'), + (483, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLpqJam', '5916219'), + (483, 1925, 'attending', '2023-02-17 21:03:04', '2025-12-17 19:47:08', 'NmLpqJam', '5932619'), + (483, 1926, 'attending', '2023-02-17 21:05:11', '2025-12-17 19:47:08', 'NmLpqJam', '5932620'), + (483, 1927, 'attending', '2023-02-18 00:54:04', '2025-12-17 19:47:10', 'NmLpqJam', '5932621'), + (483, 1928, 'attending', '2023-02-18 00:53:51', '2025-12-17 19:47:07', 'NmLpqJam', '5932627'), + (483, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'NmLpqJam', '5936234'), + (483, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLpqJam', '5958351'), + (483, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'NmLpqJam', '5959751'), + (483, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'NmLpqJam', '5959755'), + (483, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'NmLpqJam', '5960055'), + (483, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLpqJam', '5961684'), + (483, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'NmLpqJam', '5962132'), + (483, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'NmLpqJam', '5962133'), + (483, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLpqJam', '5962134'), + (483, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLpqJam', '5962317'), + (483, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLpqJam', '5962318'), + (483, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'NmLpqJam', '5965933'), + (483, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLpqJam', '5967014'), + (483, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'NmLpqJam', '5972763'), + (483, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLpqJam', '5972815'), + (483, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'NmLpqJam', '5974016'), + (483, 1964, 'attending', '2023-03-09 23:36:16', '2025-12-17 19:47:09', 'NmLpqJam', '5977129'), + (483, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLpqJam', '5981515'), + (483, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'NmLpqJam', '5993516'), + (483, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'NmLpqJam', '5998939'), + (483, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLpqJam', '6028191'), + (483, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'NmLpqJam', '6040066'), + (483, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'NmLpqJam', '6042717'), + (483, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLpqJam', '6044838'), + (483, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLpqJam', '6044839'), + (483, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLpqJam', '6045684'), + (483, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLpqJam', '6050104'), + (483, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLpqJam', '6053195'), + (483, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'NmLpqJam', '6053198'), + (483, 2008, 'maybe', '2023-04-07 22:00:31', '2025-12-17 19:46:58', 'NmLpqJam', '6055808'), + (483, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'NmLpqJam', '6056085'), + (483, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLpqJam', '6056916'), + (483, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLpqJam', '6059290'), + (483, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLpqJam', '6060328'), + (483, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLpqJam', '6061037'), + (483, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLpqJam', '6061039'), + (483, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'NmLpqJam', '6061099'), + (483, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLpqJam', '6067245'), + (483, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLpqJam', '6068094'), + (483, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'NmLpqJam', '6068252'), + (483, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'NmLpqJam', '6068253'), + (483, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'NmLpqJam', '6068254'), + (483, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'NmLpqJam', '6068280'), + (483, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLpqJam', '6069093'), + (483, 2035, 'attending', '2023-04-20 16:50:57', '2025-12-17 19:47:02', 'NmLpqJam', '6070142'), + (483, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'NmLpqJam', '6072528'), + (483, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'NmLpqJam', '6079840'), + (483, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLpqJam', '6083398'), + (483, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'NmLpqJam', '6093504'), + (483, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'NmLpqJam', '6097414'), + (483, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLpqJam', '6097442'), + (483, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLpqJam', '6097684'), + (483, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLpqJam', '6098762'), + (483, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLpqJam', '6101362'), + (483, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'NmLpqJam', '6103752'), + (483, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLpqJam', '6107314'), + (483, 2253, 'attending', '2023-09-30 15:10:15', '2025-12-17 19:46:45', 'NmLpqJam', '6401811'), + (483, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'NmLpqJam', '6440863'), + (483, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLpqJam', '6445440'), + (483, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLpqJam', '6453951'), + (483, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'NmLpqJam', '6461696'), + (483, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'NmLpqJam', '6462129'), + (483, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLpqJam', '6463218'), + (483, 2296, 'attending', '2023-10-13 16:06:01', '2025-12-17 19:46:47', 'NmLpqJam', '6468393'), + (483, 2299, 'not_attending', '2023-10-16 22:00:18', '2025-12-17 19:46:46', 'NmLpqJam', '6472181'), + (483, 2301, 'attending', '2023-10-16 13:29:36', '2025-12-17 19:46:46', 'NmLpqJam', '6474276'), + (483, 2303, 'not_attending', '2023-10-28 13:25:40', '2025-12-17 19:46:47', 'NmLpqJam', '6482691'), + (483, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'NmLpqJam', '6482693'), + (483, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'NmLpqJam', '6484200'), + (483, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'NmLpqJam', '6484680'), + (483, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'NmLpqJam', '6507741'), + (483, 2322, 'attending', '2023-11-17 20:44:45', '2025-12-17 19:46:48', 'NmLpqJam', '6514659'), + (483, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'NmLpqJam', '6514660'), + (483, 2324, 'attending', '2023-12-09 01:01:25', '2025-12-17 19:46:49', 'NmLpqJam', '6514662'), + (483, 2325, 'attending', '2023-12-14 14:42:02', '2025-12-17 19:46:36', 'NmLpqJam', '6514663'), + (483, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'NmLpqJam', '6519103'), + (483, 2337, 'attending', '2023-11-08 01:06:40', '2025-12-17 19:46:48', 'NmLpqJam', '6535681'), + (483, 2343, 'not_attending', '2023-11-15 22:54:47', '2025-12-17 19:46:48', 'NmLpqJam', '6574728'), + (483, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLpqJam', '6584747'), + (483, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLpqJam', '6587097'), + (483, 2362, 'attending', '2023-12-04 00:03:06', '2025-12-17 19:46:49', 'NmLpqJam', '6605708'), + (483, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLpqJam', '6609022'), + (483, 2373, 'attending', '2024-01-14 00:15:15', '2025-12-17 19:46:38', 'NmLpqJam', '6632678'), + (483, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'NmLpqJam', '6632757'), + (483, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLpqJam', '6644187'), + (483, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLpqJam', '6648951'), + (483, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'NmLpqJam', '6648952'), + (483, 2388, 'attending', '2024-01-07 00:16:08', '2025-12-17 19:46:37', 'NmLpqJam', '6649244'), + (483, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'NmLpqJam', '6655401'), + (483, 2399, 'attending', '2024-01-11 03:00:33', '2025-12-17 19:46:38', 'NmLpqJam', '6657583'), + (483, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'NmLpqJam', '6661585'), + (483, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'NmLpqJam', '6661588'), + (483, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'NmLpqJam', '6661589'), + (483, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLpqJam', '6699906'), + (483, 2408, 'attending', '2024-01-23 23:21:20', '2025-12-17 19:46:40', 'NmLpqJam', '6699907'), + (483, 2409, 'attending', '2024-02-02 15:20:41', '2025-12-17 19:46:41', 'NmLpqJam', '6699909'), + (483, 2410, 'attending', '2024-02-09 00:02:06', '2025-12-17 19:46:41', 'NmLpqJam', '6699911'), + (483, 2411, 'not_attending', '2024-02-09 00:02:49', '2025-12-17 19:46:42', 'NmLpqJam', '6699913'), + (483, 2414, 'attending', '2024-01-17 22:40:03', '2025-12-17 19:46:40', 'NmLpqJam', '6701000'), + (483, 2415, 'attending', '2024-01-17 22:40:10', '2025-12-17 19:46:40', 'NmLpqJam', '6701001'), + (483, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'NmLpqJam', '6701109'), + (483, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLpqJam', '6705219'), + (483, 2426, 'attending', '2024-01-19 20:03:59', '2025-12-17 19:46:40', 'NmLpqJam', '6705569'), + (483, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLpqJam', '6710153'), + (483, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLpqJam', '6711552'), + (483, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'NmLpqJam', '6711553'), + (483, 2431, 'attending', '2024-01-23 23:22:14', '2025-12-17 19:46:41', 'NmLpqJam', '6712394'), + (483, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'NmLpqJam', '6722688'), + (483, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'NmLpqJam', '6730620'), + (483, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'NmLpqJam', '6730642'), + (483, 2443, 'attending', '2024-02-03 18:31:38', '2025-12-17 19:46:41', 'NmLpqJam', '6733775'), + (483, 2450, 'not_attending', '2024-02-11 14:27:31', '2025-12-17 19:46:41', 'NmLpqJam', '6738807'), + (483, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'NmLpqJam', '6740364'), + (483, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'NmLpqJam', '6743829'), + (483, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'NmLpqJam', '7030380'), + (483, 2471, 'attending', '2024-02-21 02:12:11', '2025-12-17 19:46:42', 'NmLpqJam', '7032425'), + (483, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'NmLpqJam', '7033677'), + (483, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'NmLpqJam', '7035415'), + (483, 2477, 'attending', '2024-02-21 02:06:12', '2025-12-17 19:46:42', 'NmLpqJam', '7035692'), + (483, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'NmLpqJam', '7044715'), + (483, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'NmLpqJam', '7050318'), + (483, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'NmLpqJam', '7050319'), + (483, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'NmLpqJam', '7050322'), + (483, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'NmLpqJam', '7057804'), + (483, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'NmLpqJam', '7072824'), + (483, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'NmLpqJam', '7074348'), + (483, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'NmLpqJam', '7074364'), + (483, 2537, 'attending', '2024-03-23 00:03:52', '2025-12-17 19:46:33', 'NmLpqJam', '7085484'), + (483, 2539, 'not_attending', '2024-04-06 21:38:18', '2025-12-17 19:46:33', 'NmLpqJam', '7085486'), + (483, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'NmLpqJam', '7089267'), + (483, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'NmLpqJam', '7098747'), + (483, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'NmLpqJam', '7113468'), + (483, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'NmLpqJam', '7114856'), + (483, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'NmLpqJam', '7114951'), + (483, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'NmLpqJam', '7114955'), + (483, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'NmLpqJam', '7114956'), + (483, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'NmLpqJam', '7114957'), + (483, 2563, 'attending', '2024-04-11 19:35:55', '2025-12-17 19:46:33', 'NmLpqJam', '7134734'), + (483, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'NmLpqJam', '7153615'), + (483, 2569, 'attending', '2024-04-07 17:43:23', '2025-12-17 19:46:33', 'NmLpqJam', '7154056'), + (483, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'NmLpqJam', '7159484'), + (483, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'NmLpqJam', '7178446'), + (483, 2595, 'attending', '2024-04-19 22:59:01', '2025-12-17 19:46:34', 'NmLpqJam', '7182252'), + (483, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'NmLpqJam', '7220467'), + (483, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'NmLpqJam', '7240354'), + (483, 2611, 'attending', '2024-05-02 16:32:52', '2025-12-17 19:46:35', 'NmLpqJam', '7247642'), + (483, 2612, 'attending', '2024-05-02 16:32:55', '2025-12-17 19:46:35', 'NmLpqJam', '7247643'), + (483, 2613, 'attending', '2024-05-02 16:32:44', '2025-12-17 19:46:35', 'NmLpqJam', '7247644'), + (483, 2614, 'attending', '2024-05-02 16:32:15', '2025-12-17 19:46:35', 'NmLpqJam', '7247645'), + (483, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'NmLpqJam', '7251633'), + (483, 2626, 'attending', '2024-05-16 01:25:28', '2025-12-17 19:46:35', 'NmLpqJam', '7264723'), + (483, 2627, 'attending', '2024-05-22 21:47:03', '2025-12-17 19:46:35', 'NmLpqJam', '7264724'), + (483, 2628, 'attending', '2024-06-01 22:02:09', '2025-12-17 19:46:36', 'NmLpqJam', '7264725'), + (483, 2629, 'attending', '2024-06-08 13:20:10', '2025-12-17 19:46:28', 'NmLpqJam', '7264726'), + (483, 2647, 'attending', '2024-06-06 20:03:58', '2025-12-17 19:46:28', 'NmLpqJam', '7282057'), + (483, 2652, 'attending', '2024-05-24 20:50:53', '2025-12-17 19:46:36', 'NmLpqJam', '7288339'), + (483, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'NmLpqJam', '7302674'), + (483, 2673, 'attending', '2024-06-09 22:44:12', '2025-12-17 19:46:28', 'NmLpqJam', '7319473'), + (483, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'NmLpqJam', '7324073'), + (483, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'NmLpqJam', '7324074'), + (483, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'NmLpqJam', '7324075'), + (483, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'NmLpqJam', '7324078'), + (483, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'NmLpqJam', '7324082'), + (483, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'NmLpqJam', '7331457'), + (483, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'NmLpqJam', '7363643'), + (483, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'NmLpqJam', '7368606'), + (483, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'NmLpqJam', '7397462'), + (483, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'NmLpqJam', '7424275'), + (483, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'NmLpqJam', '7432751'), + (483, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'NmLpqJam', '7432752'), + (483, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'NmLpqJam', '7432753'), + (483, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'NmLpqJam', '7432754'), + (483, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'NmLpqJam', '7432755'), + (483, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'NmLpqJam', '7432756'), + (483, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'NmLpqJam', '7432758'), + (483, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'NmLpqJam', '7432759'), + (483, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'NmLpqJam', '7433834'), + (483, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'NmLpqJam', '7470197'), + (484, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'ZdNBGWwd', '3539922'), + (484, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'ZdNBGWwd', '3539923'), + (484, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNBGWwd', '6045684'), + (485, 10, 'attending', '2020-03-28 22:33:15', '2025-12-17 19:47:56', 'ZdNXQDGA', '2958053'), + (485, 30, 'not_attending', '2020-04-06 15:55:53', '2025-12-17 19:47:57', 'ZdNXQDGA', '2961895'), + (485, 36, 'not_attending', '2020-04-04 20:46:04', '2025-12-17 19:47:57', 'ZdNXQDGA', '2969208'), + (485, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'ZdNXQDGA', '2971546'), + (485, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'ZdNXQDGA', '2974534'), + (485, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'ZdNXQDGA', '2974955'), + (485, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'ZdNXQDGA', '2975384'), + (485, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'ZdNXQDGA', '2975385'), + (485, 57, 'attending', '2020-04-27 22:40:24', '2025-12-17 19:47:57', 'ZdNXQDGA', '2976575'), + (485, 66, 'maybe', '2020-06-09 20:21:10', '2025-12-17 19:47:58', 'ZdNXQDGA', '2977135'), + (485, 67, 'maybe', '2020-06-16 11:17:21', '2025-12-17 19:47:58', 'ZdNXQDGA', '2977136'), + (485, 69, 'attending', '2020-07-02 16:59:32', '2025-12-17 19:47:55', 'ZdNXQDGA', '2977138'), + (485, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'ZdNXQDGA', '2977343'), + (485, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'ZdNXQDGA', '2977812'), + (485, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'ZdNXQDGA', '2977931'), + (485, 74, 'attending', '2020-04-18 14:55:10', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978244'), + (485, 75, 'maybe', '2020-04-25 15:40:41', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978245'), + (485, 76, 'attending', '2020-05-02 22:00:54', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978246'), + (485, 77, 'attending', '2020-05-07 16:14:29', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978247'), + (485, 78, 'not_attending', '2020-05-23 03:09:15', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978249'), + (485, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978250'), + (485, 80, 'attending', '2020-06-06 13:28:36', '2025-12-17 19:47:58', 'ZdNXQDGA', '2978251'), + (485, 81, 'attending', '2020-06-13 12:19:41', '2025-12-17 19:47:58', 'ZdNXQDGA', '2978252'), + (485, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978433'), + (485, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978438'), + (485, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'ZdNXQDGA', '2980871'), + (485, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'ZdNXQDGA', '2981388'), + (485, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'ZdNXQDGA', '2986743'), + (485, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', 'ZdNXQDGA', '2991471'), + (485, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'ZdNXQDGA', '2993501'), + (485, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'ZdNXQDGA', '2994480'), + (485, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', 'ZdNXQDGA', '3001217'), + (485, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'ZdNXQDGA', '3023063'), + (485, 133, 'attending', '2020-06-24 23:13:47', '2025-12-17 19:47:58', 'ZdNXQDGA', '3034321'), + (485, 136, 'not_attending', '2020-05-26 21:18:05', '2025-12-17 19:47:57', 'ZdNXQDGA', '3035881'), + (485, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'ZdNXQDGA', '3049983'), + (485, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'ZdNXQDGA', '3058959'), + (485, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'ZdNXQDGA', '3067093'), + (485, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'ZdNXQDGA', '3075228'), + (485, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'ZdNXQDGA', '3075456'), + (485, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'ZdNXQDGA', '3083791'), + (485, 187, 'attending', '2020-06-28 18:33:54', '2025-12-17 19:47:55', 'ZdNXQDGA', '3085151'), + (485, 191, 'attending', '2020-07-08 16:25:35', '2025-12-17 19:47:55', 'ZdNXQDGA', '3087259'), + (485, 192, 'attending', '2020-07-17 22:29:11', '2025-12-17 19:47:55', 'ZdNXQDGA', '3087260'), + (485, 193, 'attending', '2020-07-19 19:05:40', '2025-12-17 19:47:55', 'ZdNXQDGA', '3087261'), + (485, 194, 'not_attending', '2020-07-31 12:19:21', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087262'), + (485, 195, 'attending', '2020-08-06 13:24:00', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087264'), + (485, 196, 'not_attending', '2020-08-10 11:20:52', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087265'), + (485, 197, 'maybe', '2020-08-19 19:17:17', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087266'), + (485, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087267'), + (485, 199, 'attending', '2020-09-05 12:18:29', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087268'), + (485, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'ZdNXQDGA', '3088653'), + (485, 202, 'attending', '2020-07-06 22:35:25', '2025-12-17 19:47:55', 'ZdNXQDGA', '3090353'), + (485, 206, 'attending', '2020-07-24 22:19:14', '2025-12-17 19:47:55', 'ZdNXQDGA', '3104806'), + (485, 208, 'maybe', '2020-08-07 11:48:00', '2025-12-17 19:47:56', 'ZdNXQDGA', '3104808'), + (485, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'ZdNXQDGA', '3106813'), + (485, 210, 'attending', '2020-07-03 18:33:39', '2025-12-17 19:47:55', 'ZdNXQDGA', '3108972'), + (485, 214, 'not_attending', '2020-07-08 20:41:31', '2025-12-17 19:47:55', 'ZdNXQDGA', '3124139'), + (485, 223, 'attending', '2020-09-12 21:49:01', '2025-12-17 19:47:56', 'ZdNXQDGA', '3129980'), + (485, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'ZdNXQDGA', '3132817'), + (485, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'ZdNXQDGA', '3132820'), + (485, 233, 'maybe', '2020-07-20 19:56:40', '2025-12-17 19:47:55', 'ZdNXQDGA', '3139773'), + (485, 253, 'not_attending', '2021-04-06 17:15:01', '2025-12-17 19:47:44', 'ZdNXQDGA', '3149484'), + (485, 264, 'attending', '2020-08-05 14:21:31', '2025-12-17 19:47:56', 'ZdNXQDGA', '3150735'), + (485, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'ZdNXQDGA', '3155321'), + (485, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'ZdNXQDGA', '3162006'), + (485, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'ZdNXQDGA', '3163442'), + (485, 281, 'maybe', '2020-08-08 17:30:52', '2025-12-17 19:47:56', 'ZdNXQDGA', '3166945'), + (485, 292, 'maybe', '2020-08-10 12:03:54', '2025-12-17 19:47:56', 'ZdNXQDGA', '3170480'), + (485, 293, 'maybe', '2020-08-10 11:22:51', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172832'), + (485, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172833'), + (485, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172834'), + (485, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172876'), + (485, 297, 'not_attending', '2020-08-11 12:49:45', '2025-12-17 19:47:56', 'ZdNXQDGA', '3173937'), + (485, 311, 'maybe', '2020-09-14 20:32:18', '2025-12-17 19:47:56', 'ZdNXQDGA', '3186057'), + (485, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'ZdNXQDGA', '3191735'), + (485, 322, 'maybe', '2020-09-16 20:25:23', '2025-12-17 19:47:56', 'ZdNXQDGA', '3197080'), + (485, 333, 'maybe', '2020-09-25 22:18:19', '2025-12-17 19:47:52', 'ZdNXQDGA', '3199782'), + (485, 334, 'maybe', '2020-09-25 22:18:23', '2025-12-17 19:47:52', 'ZdNXQDGA', '3199784'), + (485, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'ZdNXQDGA', '3200209'), + (485, 344, 'attending', '2020-11-01 03:38:24', '2025-12-17 19:47:53', 'ZdNXQDGA', '3206906'), + (485, 346, 'not_attending', '2020-09-15 22:32:44', '2025-12-17 19:47:56', 'ZdNXQDGA', '3207515'), + (485, 349, 'attending', '2020-09-16 20:51:39', '2025-12-17 19:47:56', 'ZdNXQDGA', '3209194'), + (485, 352, 'not_attending', '2020-09-14 19:20:30', '2025-12-17 19:47:56', 'ZdNXQDGA', '3210514'), + (485, 354, 'attending', '2020-09-16 20:55:48', '2025-12-17 19:47:56', 'ZdNXQDGA', '3212570'), + (485, 355, 'not_attending', '2020-09-16 23:37:29', '2025-12-17 19:47:56', 'ZdNXQDGA', '3212571'), + (485, 360, 'maybe', '2020-09-15 22:33:28', '2025-12-17 19:47:56', 'ZdNXQDGA', '3212671'), + (485, 362, 'maybe', '2020-09-25 22:18:30', '2025-12-17 19:47:52', 'ZdNXQDGA', '3214207'), + (485, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'ZdNXQDGA', '3217037'), + (485, 364, 'not_attending', '2020-09-21 21:47:43', '2025-12-17 19:47:56', 'ZdNXQDGA', '3217106'), + (485, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'ZdNXQDGA', '3218510'), + (485, 368, 'maybe', '2020-09-25 22:17:54', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221403'), + (485, 369, 'maybe', '2020-10-04 22:47:56', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221404'), + (485, 370, 'maybe', '2020-10-04 22:48:04', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221405'), + (485, 371, 'maybe', '2020-10-04 22:48:13', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221406'), + (485, 372, 'maybe', '2020-10-04 22:48:17', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221407'), + (485, 373, 'maybe', '2020-10-14 02:01:04', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221413'), + (485, 374, 'maybe', '2020-10-04 22:48:33', '2025-12-17 19:47:53', 'ZdNXQDGA', '3221415'), + (485, 376, 'maybe', '2020-10-04 22:48:09', '2025-12-17 19:47:52', 'ZdNXQDGA', '3222827'), + (485, 377, 'maybe', '2020-10-04 22:48:37', '2025-12-17 19:47:53', 'ZdNXQDGA', '3222828'), + (485, 384, 'maybe', '2020-09-29 21:18:20', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228696'), + (485, 385, 'attending', '2020-10-03 22:40:19', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228698'), + (485, 386, 'maybe', '2020-10-04 22:47:18', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228699'), + (485, 387, 'attending', '2020-10-17 13:23:33', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228700'), + (485, 388, 'maybe', '2020-10-04 22:48:30', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228701'), + (485, 389, 'attending', '2020-10-01 00:52:14', '2025-12-17 19:47:52', 'ZdNXQDGA', '3231284'), + (485, 390, 'attending', '2020-10-04 22:20:16', '2025-12-17 19:47:52', 'ZdNXQDGA', '3231510'), + (485, 398, 'not_attending', '2021-01-21 15:33:35', '2025-12-17 19:47:49', 'ZdNXQDGA', '3236453'), + (485, 409, 'not_attending', '2020-12-08 18:31:24', '2025-12-17 19:47:54', 'ZdNXQDGA', '3236467'), + (485, 412, 'maybe', '2020-10-06 23:36:30', '2025-12-17 19:47:52', 'ZdNXQDGA', '3236636'), + (485, 413, 'maybe', '2020-10-14 02:00:57', '2025-12-17 19:47:52', 'ZdNXQDGA', '3236670'), + (485, 414, 'attending', '2020-10-18 22:04:35', '2025-12-17 19:47:52', 'ZdNXQDGA', '3237277'), + (485, 424, 'attending', '2020-10-19 22:40:19', '2025-12-17 19:47:52', 'ZdNXQDGA', '3245751'), + (485, 426, 'maybe', '2020-10-14 16:06:46', '2025-12-17 19:47:52', 'ZdNXQDGA', '3250232'), + (485, 432, 'not_attending', '2020-11-06 02:56:48', '2025-12-17 19:47:53', 'ZdNXQDGA', '3254416'), + (485, 433, 'not_attending', '2020-11-06 02:56:16', '2025-12-17 19:47:53', 'ZdNXQDGA', '3254417'), + (485, 434, 'not_attending', '2020-11-06 02:56:24', '2025-12-17 19:47:53', 'ZdNXQDGA', '3254418'), + (485, 436, 'maybe', '2020-10-21 16:09:09', '2025-12-17 19:47:52', 'ZdNXQDGA', '3256119'), + (485, 438, 'attending', '2020-10-31 22:03:03', '2025-12-17 19:47:53', 'ZdNXQDGA', '3256163'), + (485, 440, 'maybe', '2020-11-06 02:56:11', '2025-12-17 19:47:53', 'ZdNXQDGA', '3256168'), + (485, 441, 'maybe', '2020-11-06 02:56:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3256169'), + (485, 442, 'attending', '2020-10-21 11:39:17', '2025-12-17 19:47:52', 'ZdNXQDGA', '3260345'), + (485, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'ZdNXQDGA', '3263578'), + (485, 451, 'maybe', '2020-11-02 18:29:40', '2025-12-17 19:47:53', 'ZdNXQDGA', '3272186'), + (485, 452, 'attending', '2020-11-30 00:41:55', '2025-12-17 19:47:54', 'ZdNXQDGA', '3272981'), + (485, 453, 'not_attending', '2020-11-06 02:56:20', '2025-12-17 19:47:54', 'ZdNXQDGA', '3274032'), + (485, 456, 'maybe', '2020-11-06 02:56:39', '2025-12-17 19:47:54', 'ZdNXQDGA', '3276428'), + (485, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281467'), + (485, 460, 'maybe', '2020-11-11 00:12:59', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281468'), + (485, 462, 'not_attending', '2020-11-11 22:51:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281470'), + (485, 463, 'maybe', '2020-11-11 00:12:49', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281553'), + (485, 464, 'maybe', '2020-11-11 00:13:06', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281554'), + (485, 465, 'maybe', '2020-11-18 03:49:57', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281555'), + (485, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281829'), + (485, 468, 'maybe', '2020-11-11 00:13:14', '2025-12-17 19:47:54', 'ZdNXQDGA', '3285413'), + (485, 469, 'attending', '2020-11-28 16:16:09', '2025-12-17 19:47:54', 'ZdNXQDGA', '3285414'), + (485, 471, 'maybe', '2020-11-18 03:49:46', '2025-12-17 19:47:54', 'ZdNXQDGA', '3285445'), + (485, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3297764'), + (485, 490, 'maybe', '2020-12-08 18:31:14', '2025-12-17 19:47:54', 'ZdNXQDGA', '3313532'), + (485, 491, 'maybe', '2020-12-08 18:31:31', '2025-12-17 19:47:55', 'ZdNXQDGA', '3313533'), + (485, 493, 'not_attending', '2020-12-05 22:48:35', '2025-12-17 19:47:54', 'ZdNXQDGA', '3313856'), + (485, 496, 'not_attending', '2020-12-08 18:31:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3314269'), + (485, 499, 'not_attending', '2020-12-08 18:30:51', '2025-12-17 19:47:55', 'ZdNXQDGA', '3314909'), + (485, 500, 'attending', '2020-12-08 18:30:56', '2025-12-17 19:47:55', 'ZdNXQDGA', '3314964'), + (485, 501, 'not_attending', '2020-12-08 18:31:09', '2025-12-17 19:47:54', 'ZdNXQDGA', '3317834'), + (485, 502, 'maybe', '2020-12-08 18:31:47', '2025-12-17 19:47:55', 'ZdNXQDGA', '3323365'), + (485, 513, 'not_attending', '2020-12-17 01:58:18', '2025-12-17 19:47:55', 'ZdNXQDGA', '3329383'), + (485, 517, 'not_attending', '2021-01-08 00:25:49', '2025-12-17 19:47:48', 'ZdNXQDGA', '3337137'), + (485, 526, 'attending', '2021-01-02 22:35:26', '2025-12-17 19:47:48', 'ZdNXQDGA', '3351539'), + (485, 529, 'attending', '2021-01-06 00:37:14', '2025-12-17 19:47:48', 'ZdNXQDGA', '3364568'), + (485, 531, 'attending', '2021-01-02 22:35:29', '2025-12-17 19:47:48', 'ZdNXQDGA', '3378210'), + (485, 536, 'attending', '2021-01-07 16:05:07', '2025-12-17 19:47:48', 'ZdNXQDGA', '3386848'), + (485, 538, 'not_attending', '2021-01-10 19:27:26', '2025-12-17 19:47:48', 'ZdNXQDGA', '3388151'), + (485, 539, 'not_attending', '2021-01-10 19:27:20', '2025-12-17 19:47:48', 'ZdNXQDGA', '3389158'), + (485, 540, 'attending', '2021-01-07 01:21:12', '2025-12-17 19:47:48', 'ZdNXQDGA', '3389527'), + (485, 542, 'maybe', '2021-01-10 19:26:41', '2025-12-17 19:47:48', 'ZdNXQDGA', '3395013'), + (485, 543, 'attending', '2021-01-13 01:58:25', '2025-12-17 19:47:48', 'ZdNXQDGA', '3396499'), + (485, 548, 'attending', '2021-01-16 03:18:00', '2025-12-17 19:47:48', 'ZdNXQDGA', '3403650'), + (485, 549, 'attending', '2021-01-16 16:27:36', '2025-12-17 19:47:48', 'ZdNXQDGA', '3406988'), + (485, 553, 'maybe', '2021-01-16 16:26:19', '2025-12-17 19:47:48', 'ZdNXQDGA', '3407248'), + (485, 555, 'not_attending', '2021-01-23 23:08:09', '2025-12-17 19:47:49', 'ZdNXQDGA', '3416576'), + (485, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'ZdNXQDGA', '3418925'), + (485, 560, 'maybe', '2021-01-28 12:53:53', '2025-12-17 19:47:49', 'ZdNXQDGA', '3421715'), + (485, 568, 'attending', '2021-01-30 20:53:54', '2025-12-17 19:47:50', 'ZdNXQDGA', '3430267'), + (485, 569, 'not_attending', '2021-01-25 06:51:06', '2025-12-17 19:47:49', 'ZdNXQDGA', '3432673'), + (485, 580, 'attending', '2021-01-31 17:11:02', '2025-12-17 19:47:50', 'ZdNXQDGA', '3444240'), + (485, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'ZdNXQDGA', '3468125'), + (485, 602, 'attending', '2021-02-13 21:14:38', '2025-12-17 19:47:50', 'ZdNXQDGA', '3470303'), + (485, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'ZdNXQDGA', '3470305'), + (485, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'ZdNXQDGA', '3470991'), + (485, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ZdNXQDGA', '3517815'), + (485, 622, 'attending', '2021-03-11 22:35:51', '2025-12-17 19:47:51', 'ZdNXQDGA', '3517816'), + (485, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ZdNXQDGA', '3523941'), + (485, 624, 'not_attending', '2021-02-27 01:06:20', '2025-12-17 19:47:50', 'ZdNXQDGA', '3528556'), + (485, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ZdNXQDGA', '3533850'), + (485, 638, 'maybe', '2021-04-04 01:52:00', '2025-12-17 19:47:44', 'ZdNXQDGA', '3536632'), + (485, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ZdNXQDGA', '3536656'), + (485, 641, 'attending', '2021-04-02 15:00:41', '2025-12-17 19:47:44', 'ZdNXQDGA', '3539916'), + (485, 642, 'not_attending', '2021-04-10 16:40:56', '2025-12-17 19:47:44', 'ZdNXQDGA', '3539917'), + (485, 643, 'not_attending', '2021-04-02 15:20:50', '2025-12-17 19:47:45', 'ZdNXQDGA', '3539918'), + (485, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539919'), + (485, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539920'), + (485, 646, 'attending', '2021-05-14 14:15:45', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539921'), + (485, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539922'), + (485, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ZdNXQDGA', '3539923'), + (485, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ZdNXQDGA', '3539927'), + (485, 657, 'not_attending', '2021-04-02 15:20:53', '2025-12-17 19:47:45', 'ZdNXQDGA', '3547132'), + (485, 679, 'maybe', '2021-04-04 19:06:32', '2025-12-17 19:47:44', 'ZdNXQDGA', '3547168'), + (485, 706, 'attending', '2021-04-18 18:59:11', '2025-12-17 19:47:45', 'ZdNXQDGA', '3582734'), + (485, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ZdNXQDGA', '3583262'), + (485, 709, 'not_attending', '2021-04-06 17:15:04', '2025-12-17 19:47:44', 'ZdNXQDGA', '3587852'), + (485, 711, 'attending', '2021-03-31 23:19:53', '2025-12-17 19:47:44', 'ZdNXQDGA', '3588075'), + (485, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ZdNXQDGA', '3619523'), + (485, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ZdNXQDGA', '3661369'), + (485, 731, 'attending', '2021-04-04 01:48:55', '2025-12-17 19:47:44', 'ZdNXQDGA', '3674262'), + (485, 734, 'attending', '2021-04-05 00:49:23', '2025-12-17 19:47:44', 'ZdNXQDGA', '3676806'), + (485, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ZdNXQDGA', '3677402'), + (485, 737, 'not_attending', '2021-04-06 17:14:58', '2025-12-17 19:47:44', 'ZdNXQDGA', '3679349'), + (485, 757, 'not_attending', '2021-04-14 15:27:59', '2025-12-17 19:47:45', 'ZdNXQDGA', '3708109'), + (485, 761, 'attending', '2021-05-14 21:00:20', '2025-12-17 19:47:46', 'ZdNXQDGA', '3716041'), + (485, 771, 'maybe', '2021-04-29 13:13:49', '2025-12-17 19:47:46', 'ZdNXQDGA', '3726420'), + (485, 774, 'attending', '2021-04-20 23:23:55', '2025-12-17 19:47:45', 'ZdNXQDGA', '3730212'), + (485, 792, 'maybe', '2021-05-19 21:21:29', '2025-12-17 19:47:46', 'ZdNXQDGA', '3793156'), + (485, 793, 'attending', '2021-06-02 22:41:50', '2025-12-17 19:47:47', 'ZdNXQDGA', '3793537'), + (485, 823, 'attending', '2021-06-19 12:58:22', '2025-12-17 19:47:48', 'ZdNXQDGA', '3974109'), + (485, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ZdNXQDGA', '3975311'), + (485, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ZdNXQDGA', '3975312'), + (485, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ZdNXQDGA', '3994992'), + (485, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ZdNXQDGA', '4014338'), + (485, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ZdNXQDGA', '4021848'), + (485, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNXQDGA', '4136744'), + (485, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ZdNXQDGA', '4136937'), + (485, 871, 'attending', '2021-07-10 14:18:00', '2025-12-17 19:47:39', 'ZdNXQDGA', '4136938'), + (485, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNXQDGA', '4136947'), + (485, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNXQDGA', '4210314'), + (485, 887, 'attending', '2021-07-14 22:45:36', '2025-12-17 19:47:39', 'ZdNXQDGA', '4225444'), + (485, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNXQDGA', '4239259'), + (485, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ZdNXQDGA', '4240316'), + (485, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ZdNXQDGA', '4240317'), + (485, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ZdNXQDGA', '4240318'), + (485, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ZdNXQDGA', '4240320'), + (485, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNXQDGA', '4250163'), + (485, 919, 'attending', '2021-07-17 22:19:18', '2025-12-17 19:47:39', 'ZdNXQDGA', '4275957'), + (485, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNXQDGA', '4277819'), + (485, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNXQDGA', '4301723'), + (485, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ZdNXQDGA', '4302093'), + (485, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ZdNXQDGA', '4304151'), + (485, 940, 'maybe', '2021-07-30 19:58:13', '2025-12-17 19:47:40', 'ZdNXQDGA', '4309049'), + (485, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ZdNXQDGA', '4345519'), + (485, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ZdNXQDGA', '4356801'), + (485, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ZdNXQDGA', '4358025'), + (485, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ZdNXQDGA', '4366186'), + (485, 974, 'not_attending', '2021-08-28 12:26:03', '2025-12-17 19:47:43', 'ZdNXQDGA', '4366187'), + (485, 988, 'not_attending', '2021-08-27 21:19:04', '2025-12-17 19:47:42', 'ZdNXQDGA', '4402823'), + (485, 990, 'attending', '2021-09-04 18:49:50', '2025-12-17 19:47:43', 'ZdNXQDGA', '4420735'), + (485, 991, 'attending', '2021-09-11 19:47:54', '2025-12-17 19:47:43', 'ZdNXQDGA', '4420738'), + (485, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ZdNXQDGA', '4420739'), + (485, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ZdNXQDGA', '4420741'), + (485, 995, 'attending', '2021-10-09 21:38:14', '2025-12-17 19:47:34', 'ZdNXQDGA', '4420744'), + (485, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ZdNXQDGA', '4420747'), + (485, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ZdNXQDGA', '4420748'), + (485, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ZdNXQDGA', '4420749'), + (485, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ZdNXQDGA', '4461883'), + (485, 1036, 'maybe', '2021-09-22 20:28:22', '2025-12-17 19:47:34', 'ZdNXQDGA', '4493166'), + (485, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ZdNXQDGA', '4508342'), + (485, 1079, 'maybe', '2021-10-20 18:40:45', '2025-12-17 19:47:35', 'ZdNXQDGA', '4563823'), + (485, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ZdNXQDGA', '4568602'), + (485, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ZdNXQDGA', '4572153'), + (485, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'ZdNXQDGA', '4585962'), + (485, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ZdNXQDGA', '4596356'), + (485, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ZdNXQDGA', '4598860'), + (485, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ZdNXQDGA', '4598861'), + (485, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ZdNXQDGA', '4602797'), + (485, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ZdNXQDGA', '4637896'), + (485, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ZdNXQDGA', '4642994'), + (485, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'ZdNXQDGA', '4642995'), + (485, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ZdNXQDGA', '4642996'), + (485, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ZdNXQDGA', '4642997'), + (485, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ZdNXQDGA', '4645687'), + (485, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ZdNXQDGA', '4645698'), + (485, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ZdNXQDGA', '4645704'), + (485, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ZdNXQDGA', '4645705'), + (485, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ZdNXQDGA', '4668385'), + (485, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ZdNXQDGA', '4694407'), + (485, 1151, 'attending', '2022-01-06 00:38:42', '2025-12-17 19:47:31', 'ZdNXQDGA', '4708704'), + (485, 1162, 'maybe', '2022-01-07 15:12:28', '2025-12-17 19:47:31', 'ZdNXQDGA', '4718771'), + (485, 1164, 'attending', '2022-01-04 00:32:52', '2025-12-17 19:47:31', 'ZdNXQDGA', '4724208'), + (485, 1165, 'attending', '2022-01-04 00:32:54', '2025-12-17 19:47:31', 'ZdNXQDGA', '4724210'), + (485, 1174, 'attending', '2022-01-15 23:14:08', '2025-12-17 19:47:31', 'ZdNXQDGA', '4736496'), + (485, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ZdNXQDGA', '4736497'), + (485, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ZdNXQDGA', '4736499'), + (485, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ZdNXQDGA', '4736500'), + (485, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ZdNXQDGA', '4736503'), + (485, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ZdNXQDGA', '4736504'), + (485, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ZdNXQDGA', '4746789'), + (485, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ZdNXQDGA', '4753929'), + (485, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ZdNXQDGA', '5038850'), + (485, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ZdNXQDGA', '5045826'), + (485, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ZdNXQDGA', '5132533'), + (485, 1260, 'attending', '2022-03-01 18:18:54', '2025-12-17 19:47:33', 'ZdNXQDGA', '5142082'), + (485, 1272, 'maybe', '2022-03-19 17:13:06', '2025-12-17 19:47:25', 'ZdNXQDGA', '5186582'), + (485, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ZdNXQDGA', '5186583'), + (485, 1274, 'attending', '2022-04-02 19:28:00', '2025-12-17 19:47:26', 'ZdNXQDGA', '5186585'), + (485, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ZdNXQDGA', '5190437'), + (485, 1284, 'attending', '2022-04-16 22:39:33', '2025-12-17 19:47:27', 'ZdNXQDGA', '5195095'), + (485, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ZdNXQDGA', '5215989'), + (485, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ZdNXQDGA', '5223686'), + (485, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ZdNXQDGA', '5227432'), + (485, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ZdNXQDGA', '5247467'), + (485, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ZdNXQDGA', '5260800'), + (485, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ZdNXQDGA', '5269930'), + (485, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ZdNXQDGA', '5271448'), + (485, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'ZdNXQDGA', '5271449'), + (485, 1381, 'not_attending', '2022-05-06 20:27:50', '2025-12-17 19:47:28', 'ZdNXQDGA', '5271453'), + (485, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ZdNXQDGA', '5276469'), + (485, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ZdNXQDGA', '5278159'), + (485, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ZdNXQDGA', '5363695'), + (485, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ZdNXQDGA', '5365960'), + (485, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ZdNXQDGA', '5368973'), + (485, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ZdNXQDGA', '5378247'), + (485, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ZdNXQDGA', '5389605'), + (485, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ZdNXQDGA', '5397265'), + (485, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ZdNXQDGA', '5403967'), + (485, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ZdNXQDGA', '5404786'), + (485, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ZdNXQDGA', '5405203'), + (485, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'ZdNXQDGA', '5408794'), + (485, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ZdNXQDGA', '5411699'), + (485, 1481, 'not_attending', '2022-06-21 21:36:57', '2025-12-17 19:47:17', 'ZdNXQDGA', '5412237'), + (485, 1482, 'attending', '2022-06-25 11:13:00', '2025-12-17 19:47:19', 'ZdNXQDGA', '5412550'), + (485, 1483, 'maybe', '2022-06-23 21:38:58', '2025-12-17 19:47:17', 'ZdNXQDGA', '5414556'), + (485, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ZdNXQDGA', '5415046'), + (485, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ZdNXQDGA', '5422086'), + (485, 1498, 'attending', '2022-07-02 01:33:16', '2025-12-17 19:47:19', 'ZdNXQDGA', '5422406'), + (485, 1499, 'attending', '2022-07-02 01:33:12', '2025-12-17 19:47:19', 'ZdNXQDGA', '5422407'), + (485, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ZdNXQDGA', '5424565'), + (485, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ZdNXQDGA', '5426882'), + (485, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ZdNXQDGA', '5427083'), + (485, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ZdNXQDGA', '5441125'), + (485, 1514, 'not_attending', '2022-07-21 19:43:01', '2025-12-17 19:47:20', 'ZdNXQDGA', '5441126'), + (485, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ZdNXQDGA', '5441128'), + (485, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ZdNXQDGA', '5441131'), + (485, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ZdNXQDGA', '5441132'), + (485, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ZdNXQDGA', '5446643'), + (485, 1531, 'attending', '2022-07-16 19:13:55', '2025-12-17 19:47:19', 'ZdNXQDGA', '5448756'), + (485, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ZdNXQDGA', '5453325'), + (485, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ZdNXQDGA', '5454516'), + (485, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ZdNXQDGA', '5454605'), + (485, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ZdNXQDGA', '5455037'), + (485, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ZdNXQDGA', '5461278'), + (485, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ZdNXQDGA', '5469480'), + (485, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ZdNXQDGA', '5471073'), + (485, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ZdNXQDGA', '5474663'), + (485, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ZdNXQDGA', '5482022'), + (485, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ZdNXQDGA', '5482793'), + (485, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ZdNXQDGA', '5488912'), + (485, 1581, 'maybe', '2022-08-12 00:02:36', '2025-12-17 19:47:22', 'ZdNXQDGA', '5490302'), + (485, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ZdNXQDGA', '5492192'), + (485, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ZdNXQDGA', '5493139'), + (485, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ZdNXQDGA', '5493200'), + (485, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ZdNXQDGA', '5502188'), + (485, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ZdNXQDGA', '5505059'), + (485, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ZdNXQDGA', '5509055'), + (485, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ZdNXQDGA', '5512862'), + (485, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ZdNXQDGA', '5513985'), + (485, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ZdNXQDGA', '5519981'), + (485, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ZdNXQDGA', '5522550'), + (485, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ZdNXQDGA', '5534683'), + (485, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ZdNXQDGA', '5537735'), + (485, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ZdNXQDGA', '5540859'), + (485, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ZdNXQDGA', '5546619'), + (485, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ZdNXQDGA', '5557747'), + (485, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ZdNXQDGA', '5560255'), + (485, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ZdNXQDGA', '5562906'), + (485, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ZdNXQDGA', '5600604'), + (485, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ZdNXQDGA', '5605544'), + (485, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ZdNXQDGA', '5630960'), + (485, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ZdNXQDGA', '5630961'), + (485, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ZdNXQDGA', '5630962'), + (485, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ZdNXQDGA', '5630966'), + (485, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ZdNXQDGA', '5630967'), + (485, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ZdNXQDGA', '5630968'), + (485, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ZdNXQDGA', '5635406'), + (485, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ZdNXQDGA', '5638765'), + (485, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ZdNXQDGA', '5640097'), + (485, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ZdNXQDGA', '5640843'), + (485, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ZdNXQDGA', '5641521'), + (485, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ZdNXQDGA', '5642818'), + (485, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ZdNXQDGA', '5652395'), + (485, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ZdNXQDGA', '5670445'), + (485, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ZdNXQDGA', '5671637'), + (485, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ZdNXQDGA', '5672329'), + (485, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ZdNXQDGA', '5674057'), + (485, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ZdNXQDGA', '5674060'), + (485, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ZdNXQDGA', '5677461'), + (485, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ZdNXQDGA', '5698046'), + (485, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ZdNXQDGA', '5699760'), + (485, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ZdNXQDGA', '5741601'), + (485, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ZdNXQDGA', '5763458'), + (485, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ZdNXQDGA', '5774172'), + (485, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ZdNXQDGA', '5818247'), + (485, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ZdNXQDGA', '5819471'), + (485, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'ZdNXQDGA', '5827739'), + (485, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ZdNXQDGA', '5844306'), + (485, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ZdNXQDGA', '5850159'), + (485, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ZdNXQDGA', '5858999'), + (485, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ZdNXQDGA', '5871984'), + (485, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ZdNXQDGA', '5876354'), + (485, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ZdNXQDGA', '5880939'), + (485, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ZdNXQDGA', '5880940'), + (485, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ZdNXQDGA', '5880942'), + (485, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ZdNXQDGA', '5880943'), + (485, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ZdNXQDGA', '5887890'), + (485, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ZdNXQDGA', '5888598'), + (485, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ZdNXQDGA', '5893260'), + (485, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ZdNXQDGA', '5899826'), + (485, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ZdNXQDGA', '5900199'), + (485, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ZdNXQDGA', '5900200'), + (485, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ZdNXQDGA', '5900202'), + (485, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ZdNXQDGA', '5900203'), + (485, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ZdNXQDGA', '5901108'), + (485, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ZdNXQDGA', '5901126'), + (485, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ZdNXQDGA', '5909655'), + (485, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ZdNXQDGA', '5910522'), + (485, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ZdNXQDGA', '5910526'), + (485, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ZdNXQDGA', '5910528'), + (485, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ZdNXQDGA', '5916219'), + (485, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ZdNXQDGA', '5936234'), + (485, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ZdNXQDGA', '5958351'), + (485, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ZdNXQDGA', '5959751'), + (485, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ZdNXQDGA', '5959755'), + (485, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ZdNXQDGA', '5960055'), + (485, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ZdNXQDGA', '5961684'), + (485, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ZdNXQDGA', '5962132'), + (485, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ZdNXQDGA', '5962133'), + (485, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ZdNXQDGA', '5962134'), + (485, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ZdNXQDGA', '5962317'), + (485, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ZdNXQDGA', '5962318'), + (485, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ZdNXQDGA', '5965933'), + (485, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ZdNXQDGA', '5967014'), + (485, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ZdNXQDGA', '5972815'), + (485, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ZdNXQDGA', '5974016'), + (485, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ZdNXQDGA', '5981515'), + (485, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ZdNXQDGA', '5993516'), + (485, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ZdNXQDGA', '5998939'), + (485, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ZdNXQDGA', '6028191'), + (485, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ZdNXQDGA', '6040066'), + (485, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ZdNXQDGA', '6042717'), + (485, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ZdNXQDGA', '6044838'), + (485, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ZdNXQDGA', '6044839'), + (485, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNXQDGA', '6045684'), + (485, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ZdNXQDGA', '6050104'), + (485, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ZdNXQDGA', '6053195'), + (485, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ZdNXQDGA', '6053198'), + (485, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ZdNXQDGA', '6056085'), + (485, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ZdNXQDGA', '6056916'), + (485, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ZdNXQDGA', '6059290'), + (485, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ZdNXQDGA', '6060328'), + (485, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ZdNXQDGA', '6061037'), + (485, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ZdNXQDGA', '6061039'), + (485, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ZdNXQDGA', '6067245'), + (485, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ZdNXQDGA', '6068094'), + (485, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ZdNXQDGA', '6068252'), + (485, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ZdNXQDGA', '6068253'), + (485, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ZdNXQDGA', '6068254'), + (485, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'ZdNXQDGA', '6068280'), + (485, 2032, 'attending', '2023-06-01 01:34:42', '2025-12-17 19:47:04', 'ZdNXQDGA', '6068281'), + (485, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ZdNXQDGA', '6069093'), + (485, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ZdNXQDGA', '6072528'), + (485, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ZdNXQDGA', '6079840'), + (485, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ZdNXQDGA', '6083398'), + (485, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ZdNXQDGA', '6093504'), + (485, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ZdNXQDGA', '6097414'), + (485, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ZdNXQDGA', '6097442'), + (485, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ZdNXQDGA', '6097684'), + (485, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ZdNXQDGA', '6098762'), + (485, 2064, 'attending', '2023-06-24 02:39:59', '2025-12-17 19:46:50', 'ZdNXQDGA', '6099988'), + (485, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ZdNXQDGA', '6101361'), + (485, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ZdNXQDGA', '6101362'), + (485, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'ZdNXQDGA', '6103752'), + (485, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ZdNXQDGA', '6107314'), + (485, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ZdNXQDGA', '6120034'), + (485, 2089, 'attending', '2023-06-04 21:23:09', '2025-12-17 19:47:04', 'ZdNXQDGA', '6125227'), + (485, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'ZdNXQDGA', '6136733'), + (485, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ZdNXQDGA', '6137989'), + (485, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ZdNXQDGA', '6150864'), + (485, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ZdNXQDGA', '6155491'), + (485, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ZdNXQDGA', '6164417'), + (485, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ZdNXQDGA', '6166388'), + (485, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ZdNXQDGA', '6176439'), + (485, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ZdNXQDGA', '6182410'), + (485, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ZdNXQDGA', '6185812'), + (485, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ZdNXQDGA', '6187651'), + (485, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ZdNXQDGA', '6187963'), + (485, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ZdNXQDGA', '6187964'), + (485, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ZdNXQDGA', '6187966'), + (485, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ZdNXQDGA', '6187967'), + (485, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ZdNXQDGA', '6187969'), + (485, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ZdNXQDGA', '6334878'), + (485, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ZdNXQDGA', '6337236'), + (485, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ZdNXQDGA', '6337970'), + (485, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ZdNXQDGA', '6338308'), + (485, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'ZdNXQDGA', '6338342'), + (485, 2159, 'maybe', '2023-07-18 18:34:51', '2025-12-17 19:46:53', 'ZdNXQDGA', '6338355'), + (485, 2160, 'not_attending', '2023-07-23 02:19:23', '2025-12-17 19:46:54', 'ZdNXQDGA', '6338358'), + (485, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ZdNXQDGA', '6341710'), + (485, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ZdNXQDGA', '6342044'), + (485, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ZdNXQDGA', '6342298'), + (485, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ZdNXQDGA', '6343294'), + (485, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ZdNXQDGA', '6347034'), + (485, 2177, 'not_attending', '2023-08-07 02:51:40', '2025-12-17 19:46:55', 'ZdNXQDGA', '6347053'), + (485, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ZdNXQDGA', '6347056'), + (485, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ZdNXQDGA', '6353830'), + (485, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ZdNXQDGA', '6353831'), + (485, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ZdNXQDGA', '6357867'), + (485, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ZdNXQDGA', '6358652'), + (485, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'ZdNXQDGA', '6358668'), + (485, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'ZdNXQDGA', '6358669'), + (485, 2204, 'maybe', '2023-08-16 02:43:26', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361542'), + (485, 2206, 'attending', '2023-08-10 01:58:20', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361659'), + (485, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ZdNXQDGA', '6361709'), + (485, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361710'), + (485, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361711'), + (485, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361712'), + (485, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ZdNXQDGA', '6361713'), + (485, 2219, 'maybe', '2023-08-28 18:40:50', '2025-12-17 19:46:55', 'ZdNXQDGA', '6367309'), + (485, 2232, 'not_attending', '2023-08-23 12:32:57', '2025-12-17 19:46:55', 'ZdNXQDGA', '6374818'), + (485, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ZdNXQDGA', '6382573'), + (485, 2239, 'maybe', '2023-09-01 13:37:52', '2025-12-17 19:46:56', 'ZdNXQDGA', '6387592'), + (485, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ZdNXQDGA', '6388604'), + (485, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ZdNXQDGA', '6394629'), + (485, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ZdNXQDGA', '6394631'), + (485, 2253, 'not_attending', '2023-09-30 03:09:50', '2025-12-17 19:46:45', 'ZdNXQDGA', '6401811'), + (485, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ZdNXQDGA', '6440863'), + (485, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ZdNXQDGA', '6445440'), + (485, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ZdNXQDGA', '6453951'), + (485, 2284, 'maybe', '2023-10-13 17:03:09', '2025-12-17 19:46:46', 'ZdNXQDGA', '6460928'), + (485, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ZdNXQDGA', '6461696'), + (485, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ZdNXQDGA', '6462129'), + (485, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ZdNXQDGA', '6463218'), + (485, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ZdNXQDGA', '6472181'), + (485, 2302, 'maybe', '2023-10-24 11:45:38', '2025-12-17 19:46:46', 'ZdNXQDGA', '6482535'), + (485, 2303, 'not_attending', '2023-10-27 11:58:53', '2025-12-17 19:46:47', 'ZdNXQDGA', '6482691'), + (485, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ZdNXQDGA', '6482693'), + (485, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ZdNXQDGA', '6484200'), + (485, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ZdNXQDGA', '6484680'), + (485, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ZdNXQDGA', '6507741'), + (485, 2322, 'attending', '2023-11-17 20:44:54', '2025-12-17 19:46:48', 'ZdNXQDGA', '6514659'), + (485, 2323, 'maybe', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ZdNXQDGA', '6514660'), + (485, 2324, 'attending', '2023-12-08 16:38:36', '2025-12-17 19:46:49', 'ZdNXQDGA', '6514662'), + (485, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ZdNXQDGA', '6519103'), + (485, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ZdNXQDGA', '6535681'), + (485, 2338, 'maybe', '2023-11-23 03:44:42', '2025-12-17 19:46:48', 'ZdNXQDGA', '6538868'), + (485, 2340, 'attending', '2023-11-21 03:42:43', '2025-12-17 19:46:48', 'ZdNXQDGA', '6540279'), + (485, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ZdNXQDGA', '6584747'), + (485, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ZdNXQDGA', '6587097'), + (485, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ZdNXQDGA', '6609022'), + (485, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'ZdNXQDGA', '6632757'), + (485, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ZdNXQDGA', '6644187'), + (485, 2385, 'maybe', '2024-01-08 06:22:44', '2025-12-17 19:46:37', 'ZdNXQDGA', '6648943'), + (485, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ZdNXQDGA', '6648951'), + (485, 2387, 'maybe', '2024-01-04 14:28:16', '2025-12-17 19:46:37', 'ZdNXQDGA', '6648952'), + (485, 2391, 'not_attending', '2024-01-08 06:22:31', '2025-12-17 19:46:37', 'ZdNXQDGA', '6654138'), + (485, 2394, 'maybe', '2024-01-10 14:10:12', '2025-12-17 19:46:38', 'ZdNXQDGA', '6654470'), + (485, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ZdNXQDGA', '6655401'), + (485, 2397, 'attending', '2024-01-08 06:22:48', '2025-12-17 19:46:37', 'ZdNXQDGA', '6657379'), + (485, 2399, 'attending', '2024-01-08 06:22:23', '2025-12-17 19:46:37', 'ZdNXQDGA', '6657583'), + (485, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ZdNXQDGA', '6661585'), + (485, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ZdNXQDGA', '6661588'), + (485, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ZdNXQDGA', '6661589'), + (485, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ZdNXQDGA', '6699906'), + (485, 2408, 'attending', '2024-01-26 03:41:14', '2025-12-17 19:46:40', 'ZdNXQDGA', '6699907'), + (485, 2409, 'not_attending', '2024-01-30 20:38:24', '2025-12-17 19:46:41', 'ZdNXQDGA', '6699909'), + (485, 2410, 'attending', '2024-02-03 16:13:32', '2025-12-17 19:46:41', 'ZdNXQDGA', '6699911'), + (485, 2411, 'attending', '2024-02-15 03:43:43', '2025-12-17 19:46:41', 'ZdNXQDGA', '6699913'), + (485, 2412, 'not_attending', '2024-02-17 21:53:23', '2025-12-17 19:46:43', 'ZdNXQDGA', '6700717'), + (485, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ZdNXQDGA', '6701109'), + (485, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ZdNXQDGA', '6705219'), + (485, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ZdNXQDGA', '6710153'), + (485, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ZdNXQDGA', '6711552'), + (485, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ZdNXQDGA', '6711553'), + (485, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ZdNXQDGA', '6722688'), + (485, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ZdNXQDGA', '6730620'), + (485, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'ZdNXQDGA', '6730642'), + (485, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ZdNXQDGA', '6740364'), + (485, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ZdNXQDGA', '6743829'), + (485, 2461, 'attending', '2024-02-10 22:22:43', '2025-12-17 19:46:41', 'ZdNXQDGA', '6744245'), + (485, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ZdNXQDGA', '7030380'), + (485, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'ZdNXQDGA', '7033677'), + (485, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ZdNXQDGA', '7044715'), + (485, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ZdNXQDGA', '7050318'), + (485, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ZdNXQDGA', '7050319'), + (485, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ZdNXQDGA', '7050322'), + (485, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ZdNXQDGA', '7057804'), + (485, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ZdNXQDGA', '7072824'), + (485, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ZdNXQDGA', '7074348'), + (485, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ZdNXQDGA', '7074364'), + (485, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ZdNXQDGA', '7089267'), + (485, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ZdNXQDGA', '7098747'), + (485, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ZdNXQDGA', '7113468'), + (485, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ZdNXQDGA', '7114856'), + (485, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ZdNXQDGA', '7114951'), + (485, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ZdNXQDGA', '7114955'), + (485, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ZdNXQDGA', '7114956'), + (485, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ZdNXQDGA', '7114957'), + (485, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ZdNXQDGA', '7159484'), + (485, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ZdNXQDGA', '7178446'), + (485, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ZdNXQDGA', '7220467'), + (485, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ZdNXQDGA', '7240354'), + (485, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ZdNXQDGA', '7251633'), + (485, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ZdNXQDGA', '7324073'), + (485, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ZdNXQDGA', '7324074'), + (485, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ZdNXQDGA', '7324075'), + (485, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ZdNXQDGA', '7324078'), + (485, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ZdNXQDGA', '7324082'), + (485, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ZdNXQDGA', '7331457'), + (485, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ZdNXQDGA', '7363643'), + (485, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ZdNXQDGA', '7368606'), + (485, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ZdNXQDGA', '7397462'), + (485, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ZdNXQDGA', '7424275'), + (485, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ZdNXQDGA', '7432751'), + (485, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ZdNXQDGA', '7432752'), + (485, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ZdNXQDGA', '7432753'), + (485, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432754'), + (485, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432755'), + (485, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432756'), + (485, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432758'), + (485, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432759'), + (485, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ZdNXQDGA', '7433834'), + (485, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'ZdNXQDGA', '7470197'), + (485, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ZdNXQDGA', '7685613'), + (485, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ZdNXQDGA', '7688194'), + (485, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ZdNXQDGA', '7688196'), + (485, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ZdNXQDGA', '7688289'), + (485, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ZdNXQDGA', '7692763'), + (485, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ZdNXQDGA', '7697552'), + (485, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ZdNXQDGA', '7699878'), + (485, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'ZdNXQDGA', '7704043'), + (485, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ZdNXQDGA', '7712467'), + (485, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ZdNXQDGA', '7713585'), + (485, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ZdNXQDGA', '7713586'), + (485, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ZdNXQDGA', '7738518'), + (485, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ZdNXQDGA', '7750636'), + (485, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ZdNXQDGA', '7796540'), + (485, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ZdNXQDGA', '7796541'), + (485, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ZdNXQDGA', '7796542'), + (485, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ZdNXQDGA', '7825913'), + (485, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ZdNXQDGA', '7826209'), + (485, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ZdNXQDGA', '7834742'), + (485, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ZdNXQDGA', '7842108'), + (485, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ZdNXQDGA', '7842902'), + (485, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ZdNXQDGA', '7842903'), + (485, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ZdNXQDGA', '7842904'), + (485, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ZdNXQDGA', '7842905'), + (485, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ZdNXQDGA', '7855719'), + (485, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ZdNXQDGA', '7860683'), + (485, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ZdNXQDGA', '7860684'), + (485, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ZdNXQDGA', '7866095'), + (485, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ZdNXQDGA', '7869170'), + (485, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ZdNXQDGA', '7869188'), + (485, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ZdNXQDGA', '7869201'), + (485, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ZdNXQDGA', '7877465'), + (485, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ZdNXQDGA', '7888250'), + (485, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ZdNXQDGA', '7904777'), + (485, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ZdNXQDGA', '8349164'), + (485, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ZdNXQDGA', '8349545'), + (485, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ZdNXQDGA', '8368028'), + (485, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ZdNXQDGA', '8368029'), + (485, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ZdNXQDGA', '8388462'), + (485, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ZdNXQDGA', '8400273'), + (485, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ZdNXQDGA', '8400275'), + (485, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ZdNXQDGA', '8400276'), + (485, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ZdNXQDGA', '8404977'), + (485, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ZdNXQDGA', '8430783'), + (485, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ZdNXQDGA', '8430784'), + (485, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ZdNXQDGA', '8430799'), + (485, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ZdNXQDGA', '8430800'), + (485, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ZdNXQDGA', '8430801'), + (485, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ZdNXQDGA', '8438709'), + (485, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ZdNXQDGA', '8457738'), + (485, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ZdNXQDGA', '8459566'), + (485, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ZdNXQDGA', '8459567'), + (485, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ZdNXQDGA', '8461032'), + (485, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ZdNXQDGA', '8477877'), + (485, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ZdNXQDGA', '8485688'), + (485, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ZdNXQDGA', '8490587'), + (485, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ZdNXQDGA', '8493552'), + (485, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ZdNXQDGA', '8493553'), + (485, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ZdNXQDGA', '8493554'), + (485, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ZdNXQDGA', '8493555'), + (485, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ZdNXQDGA', '8493556'), + (485, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ZdNXQDGA', '8493557'), + (485, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ZdNXQDGA', '8493558'), + (485, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ZdNXQDGA', '8493559'), + (485, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ZdNXQDGA', '8493560'), + (485, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'ZdNXQDGA', '8493561'), + (485, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ZdNXQDGA', '8493572'), + (485, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ZdNXQDGA', '8540725'), + (485, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ZdNXQDGA', '8555421'), + (486, 259, 'attending', '2021-05-18 21:55:30', '2025-12-17 19:47:46', 'x4oaR1Gm', '3149490'), + (486, 646, 'not_attending', '2021-05-14 05:34:22', '2025-12-17 19:47:46', 'x4oaR1Gm', '3539921'), + (486, 647, 'attending', '2021-05-22 21:42:01', '2025-12-17 19:47:46', 'x4oaR1Gm', '3539922'), + (486, 648, 'not_attending', '2021-05-29 16:15:50', '2025-12-17 19:47:47', 'x4oaR1Gm', '3539923'), + (486, 785, 'maybe', '2021-05-16 05:54:26', '2025-12-17 19:47:46', 'x4oaR1Gm', '3779779'), + (486, 792, 'maybe', '2021-05-16 03:08:24', '2025-12-17 19:47:46', 'x4oaR1Gm', '3793156'), + (486, 806, 'not_attending', '2021-05-14 05:31:46', '2025-12-17 19:47:46', 'x4oaR1Gm', '3806392'), + (486, 815, 'maybe', '2021-05-19 02:37:07', '2025-12-17 19:47:47', 'x4oaR1Gm', '3818136'), + (486, 823, 'maybe', '2021-06-12 17:26:49', '2025-12-17 19:47:48', 'x4oaR1Gm', '3974109'), + (486, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'x4oaR1Gm', '3975311'), + (486, 828, 'attending', '2021-06-12 22:38:30', '2025-12-17 19:47:47', 'x4oaR1Gm', '3975312'), + (486, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'x4oaR1Gm', '3994992'), + (486, 844, 'maybe', '2021-06-12 05:36:32', '2025-12-17 19:47:38', 'x4oaR1Gm', '4014338'), + (486, 857, 'maybe', '2021-11-24 06:18:14', '2025-12-17 19:47:37', 'x4oaR1Gm', '4015731'), + (486, 867, 'attending', '2021-06-26 21:41:40', '2025-12-17 19:47:38', 'x4oaR1Gm', '4021848'), + (486, 869, 'maybe', '2021-06-16 21:15:03', '2025-12-17 19:47:38', 'x4oaR1Gm', '4136744'), + (486, 870, 'attending', '2021-07-03 20:17:17', '2025-12-17 19:47:39', 'x4oaR1Gm', '4136937'), + (486, 871, 'attending', '2021-07-10 20:09:11', '2025-12-17 19:47:39', 'x4oaR1Gm', '4136938'), + (486, 872, 'maybe', '2021-06-29 02:03:21', '2025-12-17 19:47:40', 'x4oaR1Gm', '4136947'), + (486, 884, 'not_attending', '2021-08-15 01:55:40', '2025-12-17 19:47:42', 'x4oaR1Gm', '4210314'), + (486, 885, 'attending', '2021-06-27 22:48:03', '2025-12-17 19:47:38', 'x4oaR1Gm', '4222370'), + (486, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oaR1Gm', '4225444'), + (486, 898, 'attending', '2021-07-01 18:51:30', '2025-12-17 19:47:38', 'x4oaR1Gm', '4236746'), + (486, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'x4oaR1Gm', '4239259'), + (486, 900, 'not_attending', '2021-07-21 20:00:13', '2025-12-17 19:47:40', 'x4oaR1Gm', '4240316'), + (486, 901, 'maybe', '2021-07-27 00:55:58', '2025-12-17 19:47:40', 'x4oaR1Gm', '4240317'), + (486, 902, 'attending', '2021-08-07 20:56:42', '2025-12-17 19:47:41', 'x4oaR1Gm', '4240318'), + (486, 903, 'attending', '2021-08-14 13:34:48', '2025-12-17 19:47:42', 'x4oaR1Gm', '4240320'), + (486, 905, 'maybe', '2021-07-05 14:53:51', '2025-12-17 19:47:39', 'x4oaR1Gm', '4250163'), + (486, 908, 'not_attending', '2021-07-13 17:17:10', '2025-12-17 19:47:39', 'x4oaR1Gm', '4257613'), + (486, 911, 'maybe', '2021-07-11 03:20:16', '2025-12-17 19:47:39', 'x4oaR1Gm', '4264465'), + (486, 917, 'attending', '2021-07-14 03:26:36', '2025-12-17 19:47:39', 'x4oaR1Gm', '4274481'), + (486, 919, 'maybe', '2021-07-15 02:14:33', '2025-12-17 19:47:39', 'x4oaR1Gm', '4275957'), + (486, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oaR1Gm', '4277819'), + (486, 927, 'maybe', '2021-07-27 19:53:09', '2025-12-17 19:47:40', 'x4oaR1Gm', '4297216'), + (486, 931, 'maybe', '2021-07-27 19:51:10', '2025-12-17 19:47:40', 'x4oaR1Gm', '4301535'), + (486, 933, 'attending', '2021-07-28 21:49:21', '2025-12-17 19:47:40', 'x4oaR1Gm', '4301723'), + (486, 934, 'not_attending', '2021-08-04 22:45:32', '2025-12-17 19:47:41', 'x4oaR1Gm', '4302093'), + (486, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oaR1Gm', '4304151'), + (486, 946, 'maybe', '2021-08-02 05:16:47', '2025-12-17 19:47:40', 'x4oaR1Gm', '4314835'), + (486, 952, 'maybe', '2021-08-02 02:31:14', '2025-12-17 19:47:41', 'x4oaR1Gm', '4318286'), + (486, 961, 'not_attending', '2021-08-08 23:29:39', '2025-12-17 19:47:42', 'x4oaR1Gm', '4345519'), + (486, 964, 'maybe', '2021-08-23 20:29:23', '2025-12-17 19:47:42', 'x4oaR1Gm', '4353160'), + (486, 971, 'maybe', '2021-08-29 04:06:35', '2025-12-17 19:47:43', 'x4oaR1Gm', '4356801'), + (486, 972, 'maybe', '2021-08-14 14:10:39', '2025-12-17 19:47:42', 'x4oaR1Gm', '4358025'), + (486, 973, 'maybe', '2021-08-17 19:51:37', '2025-12-17 19:47:42', 'x4oaR1Gm', '4366186'), + (486, 974, 'not_attending', '2021-08-28 16:11:48', '2025-12-17 19:47:43', 'x4oaR1Gm', '4366187'), + (486, 987, 'maybe', '2021-09-01 14:17:01', '2025-12-17 19:47:43', 'x4oaR1Gm', '4402634'), + (486, 988, 'not_attending', '2021-08-27 20:10:50', '2025-12-17 19:47:42', 'x4oaR1Gm', '4402823'), + (486, 990, 'attending', '2021-08-29 04:04:12', '2025-12-17 19:47:43', 'x4oaR1Gm', '4420735'), + (486, 991, 'attending', '2021-09-11 17:48:29', '2025-12-17 19:47:43', 'x4oaR1Gm', '4420738'), + (486, 992, 'attending', '2021-09-18 18:13:20', '2025-12-17 19:47:33', 'x4oaR1Gm', '4420739'), + (486, 993, 'not_attending', '2021-09-25 17:52:25', '2025-12-17 19:47:34', 'x4oaR1Gm', '4420741'), + (486, 995, 'not_attending', '2021-10-09 05:34:46', '2025-12-17 19:47:34', 'x4oaR1Gm', '4420744'), + (486, 996, 'attending', '2021-10-16 20:28:31', '2025-12-17 19:47:35', 'x4oaR1Gm', '4420747'), + (486, 997, 'attending', '2021-10-23 21:03:32', '2025-12-17 19:47:35', 'x4oaR1Gm', '4420748'), + (486, 998, 'not_attending', '2021-10-25 07:21:51', '2025-12-17 19:47:36', 'x4oaR1Gm', '4420749'), + (486, 1016, 'maybe', '2021-09-08 04:05:58', '2025-12-17 19:47:43', 'x4oaR1Gm', '4441271'), + (486, 1019, 'maybe', '2021-09-06 15:35:07', '2025-12-17 19:47:43', 'x4oaR1Gm', '4450515'), + (486, 1020, 'attending', '2021-09-13 22:43:24', '2025-12-17 19:47:43', 'x4oaR1Gm', '4451787'), + (486, 1021, 'maybe', '2021-09-17 00:59:24', '2025-12-17 19:47:34', 'x4oaR1Gm', '4451803'), + (486, 1022, 'maybe', '2021-09-13 21:35:21', '2025-12-17 19:47:43', 'x4oaR1Gm', '4458628'), + (486, 1023, 'not_attending', '2021-09-11 17:48:50', '2025-12-17 19:47:43', 'x4oaR1Gm', '4461883'), + (486, 1025, 'attending', '2021-09-14 22:23:42', '2025-12-17 19:47:43', 'x4oaR1Gm', '4462052'), + (486, 1029, 'maybe', '2021-09-17 00:59:48', '2025-12-17 19:47:43', 'x4oaR1Gm', '4473063'), + (486, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'x4oaR1Gm', '4508342'), + (486, 1068, 'maybe', '2021-09-30 15:31:20', '2025-12-17 19:47:34', 'x4oaR1Gm', '4511471'), + (486, 1070, 'maybe', '2021-09-30 17:04:44', '2025-12-17 19:47:34', 'x4oaR1Gm', '4512562'), + (486, 1072, 'maybe', '2021-10-05 06:22:13', '2025-12-17 19:47:34', 'x4oaR1Gm', '4516287'), + (486, 1077, 'maybe', '2021-10-12 21:38:04', '2025-12-17 19:47:34', 'x4oaR1Gm', '4540903'), + (486, 1078, 'maybe', '2021-10-04 21:30:42', '2025-12-17 19:47:34', 'x4oaR1Gm', '4541281'), + (486, 1079, 'maybe', '2021-10-14 19:05:57', '2025-12-17 19:47:35', 'x4oaR1Gm', '4563823'), + (486, 1082, 'maybe', '2021-10-14 07:34:21', '2025-12-17 19:47:35', 'x4oaR1Gm', '4566762'), + (486, 1086, 'not_attending', '2021-10-13 06:27:44', '2025-12-17 19:47:35', 'x4oaR1Gm', '4568602'), + (486, 1087, 'not_attending', '2021-10-16 19:17:42', '2025-12-17 19:47:35', 'x4oaR1Gm', '4572153'), + (486, 1089, 'maybe', '2021-10-16 14:44:54', '2025-12-17 19:47:35', 'x4oaR1Gm', '4574712'), + (486, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'x4oaR1Gm', '4585962'), + (486, 1094, 'attending', '2021-10-31 20:56:30', '2025-12-17 19:47:36', 'x4oaR1Gm', '4587337'), + (486, 1095, 'maybe', '2021-10-27 05:56:52', '2025-12-17 19:47:35', 'x4oaR1Gm', '4596356'), + (486, 1097, 'maybe', '2021-10-28 14:01:28', '2025-12-17 19:47:36', 'x4oaR1Gm', '4598860'), + (486, 1098, 'maybe', '2021-10-28 14:12:08', '2025-12-17 19:47:36', 'x4oaR1Gm', '4598861'), + (486, 1099, 'maybe', '2021-10-31 14:14:56', '2025-12-17 19:47:36', 'x4oaR1Gm', '4602797'), + (486, 1108, 'maybe', '2021-11-12 01:19:23', '2025-12-17 19:47:37', 'x4oaR1Gm', '4632276'), + (486, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'x4oaR1Gm', '4637896'), + (486, 1116, 'maybe', '2021-11-14 02:21:37', '2025-12-17 19:47:37', 'x4oaR1Gm', '4642994'), + (486, 1117, 'not_attending', '2021-12-08 20:43:25', '2025-12-17 19:47:38', 'x4oaR1Gm', '4642995'), + (486, 1118, 'not_attending', '2021-12-15 05:46:53', '2025-12-17 19:47:38', 'x4oaR1Gm', '4642996'), + (486, 1119, 'not_attending', '2021-12-22 23:14:34', '2025-12-17 19:47:31', 'x4oaR1Gm', '4642997'), + (486, 1126, 'not_attending', '2021-12-11 23:21:09', '2025-12-17 19:47:38', 'x4oaR1Gm', '4645687'), + (486, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'x4oaR1Gm', '4645698'), + (486, 1128, 'maybe', '2021-11-14 22:31:38', '2025-12-17 19:47:37', 'x4oaR1Gm', '4645704'), + (486, 1129, 'attending', '2021-11-27 23:44:41', '2025-12-17 19:47:37', 'x4oaR1Gm', '4645705'), + (486, 1130, 'maybe', '2021-11-28 20:20:04', '2025-12-17 19:47:37', 'x4oaR1Gm', '4658824'), + (486, 1131, 'maybe', '2021-11-30 02:42:43', '2025-12-17 19:47:31', 'x4oaR1Gm', '4658825'), + (486, 1132, 'attending', '2021-11-21 08:53:38', '2025-12-17 19:47:37', 'x4oaR1Gm', '4660657'), + (486, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'x4oaR1Gm', '4668385'), + (486, 1143, 'maybe', '2021-12-01 21:48:37', '2025-12-17 19:47:37', 'x4oaR1Gm', '4683667'), + (486, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'x4oaR1Gm', '4694407'), + (486, 1152, 'not_attending', '2022-01-12 22:30:15', '2025-12-17 19:47:31', 'x4oaR1Gm', '4708705'), + (486, 1164, 'maybe', '2021-12-29 01:44:33', '2025-12-17 19:47:31', 'x4oaR1Gm', '4724208'), + (486, 1174, 'attending', '2022-01-16 00:01:01', '2025-12-17 19:47:31', 'x4oaR1Gm', '4736496'), + (486, 1175, 'attending', '2022-01-23 02:41:08', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736497'), + (486, 1176, 'not_attending', '2022-02-05 23:05:25', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736498'), + (486, 1177, 'not_attending', '2022-02-12 23:24:31', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736499'), + (486, 1178, 'attending', '2022-01-29 00:26:56', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736500'), + (486, 1179, 'attending', '2022-02-19 23:03:56', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736501'), + (486, 1181, 'attending', '2022-03-05 23:27:37', '2025-12-17 19:47:33', 'x4oaR1Gm', '4736503'), + (486, 1182, 'attending', '2022-03-12 23:00:21', '2025-12-17 19:47:33', 'x4oaR1Gm', '4736504'), + (486, 1185, 'not_attending', '2022-01-12 03:59:10', '2025-12-17 19:47:31', 'x4oaR1Gm', '4746789'), + (486, 1188, 'maybe', '2022-01-12 03:57:38', '2025-12-17 19:47:32', 'x4oaR1Gm', '4753929'), + (486, 1228, 'not_attending', '2022-02-11 22:06:15', '2025-12-17 19:47:32', 'x4oaR1Gm', '5028238'), + (486, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'x4oaR1Gm', '5038850'), + (486, 1236, 'maybe', '2022-02-15 05:13:02', '2025-12-17 19:47:32', 'x4oaR1Gm', '5045826'), + (486, 1238, 'maybe', '2022-03-03 00:25:07', '2025-12-17 19:47:33', 'x4oaR1Gm', '5052236'), + (486, 1239, 'attending', '2022-03-03 00:25:13', '2025-12-17 19:47:33', 'x4oaR1Gm', '5052238'), + (486, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'x4oaR1Gm', '5132533'), + (486, 1272, 'not_attending', '2022-03-19 15:50:45', '2025-12-17 19:47:25', 'x4oaR1Gm', '5186582'), + (486, 1273, 'attending', '2022-03-26 19:30:15', '2025-12-17 19:47:25', 'x4oaR1Gm', '5186583'), + (486, 1274, 'not_attending', '2022-03-16 07:53:32', '2025-12-17 19:47:26', 'x4oaR1Gm', '5186585'), + (486, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'x4oaR1Gm', '5190437'), + (486, 1284, 'maybe', '2022-04-16 01:54:07', '2025-12-17 19:47:27', 'x4oaR1Gm', '5195095'), + (486, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'x4oaR1Gm', '5215989'), + (486, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'x4oaR1Gm', '5223686'), + (486, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'x4oaR1Gm', '5227432'), + (486, 1319, 'maybe', '2022-04-14 04:30:38', '2025-12-17 19:47:27', 'x4oaR1Gm', '5238353'), + (486, 1332, 'maybe', '2022-04-15 03:22:22', '2025-12-17 19:47:27', 'x4oaR1Gm', '5243274'), + (486, 1346, 'not_attending', '2022-04-21 19:08:40', '2025-12-17 19:47:27', 'x4oaR1Gm', '5247467'), + (486, 1362, 'attending', '2022-04-30 21:28:33', '2025-12-17 19:47:28', 'x4oaR1Gm', '5260800'), + (486, 1374, 'maybe', '2022-05-01 17:47:20', '2025-12-17 19:47:28', 'x4oaR1Gm', '5269930'), + (486, 1378, 'maybe', '2022-05-06 17:52:57', '2025-12-17 19:47:29', 'x4oaR1Gm', '5271448'), + (486, 1379, 'attending', '2022-05-20 13:37:39', '2025-12-17 19:47:29', 'x4oaR1Gm', '5271449'), + (486, 1380, 'not_attending', '2022-05-26 21:45:27', '2025-12-17 19:47:30', 'x4oaR1Gm', '5271450'), + (486, 1383, 'not_attending', '2022-05-07 19:44:18', '2025-12-17 19:47:28', 'x4oaR1Gm', '5276469'), + (486, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'x4oaR1Gm', '5278159'), + (486, 1407, 'not_attending', '2022-05-30 02:53:26', '2025-12-17 19:47:30', 'x4oaR1Gm', '5363695'), + (486, 1408, 'not_attending', '2022-05-20 13:38:14', '2025-12-17 19:47:29', 'x4oaR1Gm', '5365960'), + (486, 1414, 'maybe', '2022-05-19 02:14:54', '2025-12-17 19:47:29', 'x4oaR1Gm', '5368445'), + (486, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'x4oaR1Gm', '5368973'), + (486, 1419, 'not_attending', '2022-06-07 23:34:25', '2025-12-17 19:47:30', 'x4oaR1Gm', '5373081'), + (486, 1427, 'not_attending', '2022-05-25 21:16:00', '2025-12-17 19:47:30', 'x4oaR1Gm', '5376074'), + (486, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'x4oaR1Gm', '5378247'), + (486, 1431, 'maybe', '2022-06-03 22:08:16', '2025-12-17 19:47:31', 'x4oaR1Gm', '5389605'), + (486, 1442, 'not_attending', '2022-06-03 22:08:03', '2025-12-17 19:47:17', 'x4oaR1Gm', '5397265'), + (486, 1451, 'maybe', '2022-06-14 23:06:31', '2025-12-17 19:47:17', 'x4oaR1Gm', '5403967'), + (486, 1456, 'maybe', '2022-06-15 15:08:02', '2025-12-17 19:47:17', 'x4oaR1Gm', '5404779'), + (486, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'x4oaR1Gm', '5404786'), + (486, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'x4oaR1Gm', '5405203'), + (486, 1478, 'not_attending', '2022-06-15 15:07:36', '2025-12-17 19:47:19', 'x4oaR1Gm', '5408794'), + (486, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'x4oaR1Gm', '5411699'), + (486, 1482, 'maybe', '2022-06-25 16:51:06', '2025-12-17 19:47:19', 'x4oaR1Gm', '5412550'), + (486, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'x4oaR1Gm', '5415046'), + (486, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'x4oaR1Gm', '5422086'), + (486, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'x4oaR1Gm', '5422406'), + (486, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'x4oaR1Gm', '5424565'), + (486, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'x4oaR1Gm', '5426882'), + (486, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'x4oaR1Gm', '5427083'), + (486, 1513, 'not_attending', '2022-07-11 05:01:28', '2025-12-17 19:47:20', 'x4oaR1Gm', '5441125'), + (486, 1514, 'not_attending', '2022-07-19 02:54:14', '2025-12-17 19:47:20', 'x4oaR1Gm', '5441126'), + (486, 1515, 'not_attending', '2022-08-06 20:34:44', '2025-12-17 19:47:21', 'x4oaR1Gm', '5441128'), + (486, 1516, 'maybe', '2022-08-20 16:55:17', '2025-12-17 19:47:23', 'x4oaR1Gm', '5441129'), + (486, 1517, 'not_attending', '2022-08-25 00:35:20', '2025-12-17 19:47:23', 'x4oaR1Gm', '5441130'), + (486, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'x4oaR1Gm', '5441131'), + (486, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'x4oaR1Gm', '5441132'), + (486, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'x4oaR1Gm', '5446643'), + (486, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'x4oaR1Gm', '5453325'), + (486, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'x4oaR1Gm', '5454516'), + (486, 1544, 'attending', '2022-09-15 20:14:37', '2025-12-17 19:47:11', 'x4oaR1Gm', '5454517'), + (486, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'x4oaR1Gm', '5454605'), + (486, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'x4oaR1Gm', '5455037'), + (486, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'x4oaR1Gm', '5461278'), + (486, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'x4oaR1Gm', '5469480'), + (486, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'x4oaR1Gm', '5471073'), + (486, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'x4oaR1Gm', '5474663'), + (486, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'x4oaR1Gm', '5482022'), + (486, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'x4oaR1Gm', '5482793'), + (486, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'x4oaR1Gm', '5488912'), + (486, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'x4oaR1Gm', '5492192'), + (486, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'x4oaR1Gm', '5493139'), + (486, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'x4oaR1Gm', '5493200'), + (486, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'x4oaR1Gm', '5502188'), + (486, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'x4oaR1Gm', '5505059'), + (486, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'x4oaR1Gm', '5509055'), + (486, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'x4oaR1Gm', '5512862'), + (486, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'x4oaR1Gm', '5513985'), + (486, 1626, 'attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'x4oaR1Gm', '5519981'), + (486, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'x4oaR1Gm', '5522550'), + (486, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'x4oaR1Gm', '5534683'), + (486, 1635, 'maybe', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'x4oaR1Gm', '5537735'), + (486, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'x4oaR1Gm', '5540859'), + (486, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'x4oaR1Gm', '5546619'), + (486, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'x4oaR1Gm', '5555245'), + (486, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'x4oaR1Gm', '5557747'), + (486, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'x4oaR1Gm', '5560255'), + (486, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'x4oaR1Gm', '5562906'), + (486, 1667, 'not_attending', '2022-09-24 21:44:41', '2025-12-17 19:47:11', 'x4oaR1Gm', '5563221'), + (486, 1668, 'not_attending', '2022-10-01 17:41:03', '2025-12-17 19:47:12', 'x4oaR1Gm', '5563222'), + (486, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'x4oaR1Gm', '5600604'), + (486, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'x4oaR1Gm', '5605544'), + (486, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'x4oaR1Gm', '5606737'), + (486, 1719, 'attending', '2022-10-06 00:04:16', '2025-12-17 19:47:12', 'x4oaR1Gm', '5630958'), + (486, 1720, 'not_attending', '2022-10-09 02:34:14', '2025-12-17 19:47:12', 'x4oaR1Gm', '5630959'), + (486, 1721, 'not_attending', '2022-10-21 17:48:48', '2025-12-17 19:47:13', 'x4oaR1Gm', '5630960'), + (486, 1722, 'not_attending', '2022-10-24 19:39:06', '2025-12-17 19:47:14', 'x4oaR1Gm', '5630961'), + (486, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'x4oaR1Gm', '5630962'), + (486, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'x4oaR1Gm', '5630966'), + (486, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'x4oaR1Gm', '5630967'), + (486, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'x4oaR1Gm', '5630968'), + (486, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'x4oaR1Gm', '5635406'), + (486, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'x4oaR1Gm', '5638765'), + (486, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'x4oaR1Gm', '5640097'), + (486, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'x4oaR1Gm', '5640843'), + (486, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'x4oaR1Gm', '5641521'), + (486, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'x4oaR1Gm', '5642818'), + (486, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'x4oaR1Gm', '5652395'), + (486, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'x4oaR1Gm', '5670445'), + (486, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'x4oaR1Gm', '5671637'), + (486, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'x4oaR1Gm', '5672329'), + (486, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'x4oaR1Gm', '5674057'), + (486, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'x4oaR1Gm', '5674060'), + (486, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'x4oaR1Gm', '5677461'), + (486, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'x4oaR1Gm', '5698046'), + (486, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'x4oaR1Gm', '5699760'), + (486, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'x4oaR1Gm', '5741601'), + (486, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'x4oaR1Gm', '5763458'), + (486, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'x4oaR1Gm', '5774172'), + (486, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'x4oaR1Gm', '5818247'), + (486, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'x4oaR1Gm', '5819471'), + (486, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'x4oaR1Gm', '5827739'), + (486, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'x4oaR1Gm', '5844306'), + (486, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'x4oaR1Gm', '5850159'), + (486, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'x4oaR1Gm', '5858999'), + (486, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'x4oaR1Gm', '5871984'), + (486, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'x4oaR1Gm', '5876354'), + (486, 1865, 'not_attending', '2023-01-23 23:17:13', '2025-12-17 19:47:06', 'x4oaR1Gm', '5879676'), + (486, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'x4oaR1Gm', '5880939'), + (486, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'x4oaR1Gm', '5880940'), + (486, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'x4oaR1Gm', '5880942'), + (486, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'x4oaR1Gm', '5880943'), + (486, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'x4oaR1Gm', '5887890'), + (486, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'x4oaR1Gm', '5888598'), + (486, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'x4oaR1Gm', '5893260'), + (486, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'x4oaR1Gm', '5899826'), + (486, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'x4oaR1Gm', '5900199'), + (486, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'x4oaR1Gm', '5900200'), + (486, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'x4oaR1Gm', '5900202'), + (486, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'x4oaR1Gm', '5900203'), + (486, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'x4oaR1Gm', '5901108'), + (486, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'x4oaR1Gm', '5901126'), + (486, 1897, 'not_attending', '2023-02-10 18:29:31', '2025-12-17 19:47:07', 'x4oaR1Gm', '5901128'), + (486, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'x4oaR1Gm', '5909655'), + (486, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'x4oaR1Gm', '5910522'), + (486, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'x4oaR1Gm', '5910526'), + (486, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'x4oaR1Gm', '5910528'), + (486, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'x4oaR1Gm', '5916219'), + (486, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'x4oaR1Gm', '5936234'), + (486, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'x4oaR1Gm', '5958351'), + (486, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'x4oaR1Gm', '5959751'), + (486, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'x4oaR1Gm', '5959755'), + (486, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'x4oaR1Gm', '5960055'), + (486, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'x4oaR1Gm', '5961684'), + (486, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'x4oaR1Gm', '5962132'), + (486, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'x4oaR1Gm', '5962133'), + (486, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'x4oaR1Gm', '5962134'), + (486, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'x4oaR1Gm', '5962317'), + (486, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'x4oaR1Gm', '5962318'), + (486, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'x4oaR1Gm', '5965933'), + (486, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'x4oaR1Gm', '5967014'), + (486, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'x4oaR1Gm', '5972815'), + (486, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'x4oaR1Gm', '5974016'), + (486, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'x4oaR1Gm', '5981515'), + (486, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'x4oaR1Gm', '5993516'), + (486, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'x4oaR1Gm', '5998939'), + (486, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'x4oaR1Gm', '6028191'), + (486, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'x4oaR1Gm', '6040066'), + (486, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'x4oaR1Gm', '6042717'), + (486, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'x4oaR1Gm', '6044838'), + (486, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'x4oaR1Gm', '6044839'), + (486, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oaR1Gm', '6045684'), + (486, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'x4oaR1Gm', '6050104'), + (486, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'x4oaR1Gm', '6053195'), + (486, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'x4oaR1Gm', '6053198'), + (486, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'x4oaR1Gm', '6056085'), + (486, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'x4oaR1Gm', '6056916'), + (486, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'x4oaR1Gm', '6059290'), + (486, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'x4oaR1Gm', '6060328'), + (486, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'x4oaR1Gm', '6061037'), + (486, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'x4oaR1Gm', '6061039'), + (486, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'x4oaR1Gm', '6067245'), + (486, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'x4oaR1Gm', '6068094'), + (486, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'x4oaR1Gm', '6068252'), + (486, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'x4oaR1Gm', '6068253'), + (486, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'x4oaR1Gm', '6068254'), + (486, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'x4oaR1Gm', '6068280'), + (486, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'x4oaR1Gm', '6069093'), + (486, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'x4oaR1Gm', '6072528'), + (486, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'x4oaR1Gm', '6079840'), + (486, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'x4oaR1Gm', '6083398'), + (486, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'x4oaR1Gm', '6093504'), + (486, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'x4oaR1Gm', '6097414'), + (486, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'x4oaR1Gm', '6097442'), + (486, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'x4oaR1Gm', '6097684'), + (486, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'x4oaR1Gm', '6098762'), + (486, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'x4oaR1Gm', '6101362'), + (486, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'x4oaR1Gm', '6103752'), + (486, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'x4oaR1Gm', '6107314'), + (487, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'mb1neeEd', '6632757'), + (487, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mb1neeEd', '6644187'), + (487, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mb1neeEd', '6648951'), + (487, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mb1neeEd', '6648952'), + (487, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mb1neeEd', '6651141'), + (487, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mb1neeEd', '6655401'), + (487, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mb1neeEd', '6661585'), + (487, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mb1neeEd', '6661588'), + (487, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mb1neeEd', '6661589'), + (487, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mb1neeEd', '6699906'), + (487, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mb1neeEd', '6699913'), + (487, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mb1neeEd', '6701109'), + (487, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mb1neeEd', '6705219'), + (487, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mb1neeEd', '6710153'), + (487, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mb1neeEd', '6711552'), + (487, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mb1neeEd', '6711553'), + (487, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mb1neeEd', '6722688'), + (487, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mb1neeEd', '6730620'), + (487, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mb1neeEd', '6730642'), + (487, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mb1neeEd', '6740364'), + (487, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mb1neeEd', '6743829'), + (487, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mb1neeEd', '7030380'), + (487, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mb1neeEd', '7033677'), + (487, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mb1neeEd', '7035415'), + (487, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mb1neeEd', '7044715'), + (487, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mb1neeEd', '7050318'), + (487, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mb1neeEd', '7050319'), + (487, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mb1neeEd', '7050322'), + (487, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mb1neeEd', '7057804'), + (487, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mb1neeEd', '7072824'), + (487, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mb1neeEd', '7074348'), + (487, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mb1neeEd', '7089267'), + (487, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mb1neeEd', '7098747'), + (487, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mb1neeEd', '7113468'), + (487, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mb1neeEd', '7114856'), + (487, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mb1neeEd', '7114951'), + (487, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mb1neeEd', '7114955'), + (487, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mb1neeEd', '7114956'), + (487, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mb1neeEd', '7153615'), + (487, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mb1neeEd', '7159484'), + (487, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mb1neeEd', '7178446'), + (488, 246, 'attending', '2020-12-14 22:28:44', '2025-12-17 19:47:55', 'ZdNRzxkd', '3149477'), + (488, 247, 'not_attending', '2020-12-21 04:00:20', '2025-12-17 19:47:48', 'ZdNRzxkd', '3149478'), + (488, 248, 'not_attending', '2021-01-08 06:22:31', '2025-12-17 19:47:48', 'ZdNRzxkd', '3149479'), + (488, 394, 'attending', '2021-01-08 00:27:15', '2025-12-17 19:47:48', 'ZdNRzxkd', '3236449'), + (488, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ZdNRzxkd', '3314964'), + (488, 502, 'not_attending', '2020-12-12 21:31:27', '2025-12-17 19:47:55', 'ZdNRzxkd', '3323365'), + (488, 513, 'not_attending', '2020-12-16 04:09:19', '2025-12-17 19:47:55', 'ZdNRzxkd', '3329383'), + (488, 519, 'not_attending', '2020-12-16 17:15:12', '2025-12-17 19:47:55', 'ZdNRzxkd', '3337448'), + (488, 526, 'not_attending', '2020-12-28 23:49:51', '2025-12-17 19:47:48', 'ZdNRzxkd', '3351539'), + (488, 532, 'not_attending', '2021-01-08 22:44:36', '2025-12-17 19:47:48', 'ZdNRzxkd', '3381412'), + (488, 534, 'not_attending', '2021-01-09 18:07:02', '2025-12-17 19:47:48', 'ZdNRzxkd', '3384157'), + (488, 535, 'not_attending', '2021-01-10 04:16:14', '2025-12-17 19:47:48', 'ZdNRzxkd', '3384729'), + (488, 536, 'not_attending', '2021-01-08 21:07:14', '2025-12-17 19:47:48', 'ZdNRzxkd', '3386848'), + (488, 538, 'not_attending', '2021-01-10 04:16:50', '2025-12-17 19:47:48', 'ZdNRzxkd', '3388151'), + (488, 539, 'not_attending', '2021-01-10 04:16:44', '2025-12-17 19:47:48', 'ZdNRzxkd', '3389158'), + (488, 540, 'not_attending', '2021-01-10 04:16:40', '2025-12-17 19:47:48', 'ZdNRzxkd', '3389527'), + (488, 542, 'attending', '2021-01-11 21:16:03', '2025-12-17 19:47:48', 'ZdNRzxkd', '3395013'), + (488, 543, 'not_attending', '2021-01-12 03:03:50', '2025-12-17 19:47:48', 'ZdNRzxkd', '3396499'), + (488, 548, 'not_attending', '2021-01-13 20:28:27', '2025-12-17 19:47:48', 'ZdNRzxkd', '3403650'), + (488, 549, 'attending', '2021-01-19 00:35:26', '2025-12-17 19:47:48', 'ZdNRzxkd', '3406988'), + (488, 550, 'attending', '2021-01-18 00:22:05', '2025-12-17 19:47:48', 'ZdNRzxkd', '3407018'), + (488, 551, 'attending', '2021-01-20 00:13:22', '2025-12-17 19:47:49', 'ZdNRzxkd', '3407219'), + (488, 555, 'not_attending', '2021-01-23 19:00:57', '2025-12-17 19:47:49', 'ZdNRzxkd', '3416576'), + (488, 556, 'not_attending', '2021-01-18 18:40:15', '2025-12-17 19:47:49', 'ZdNRzxkd', '3417170'), + (488, 558, 'attending', '2021-01-22 20:01:59', '2025-12-17 19:47:49', 'ZdNRzxkd', '3418925'), + (488, 562, 'attending', '2021-01-23 19:26:52', '2025-12-17 19:47:49', 'ZdNRzxkd', '3424911'), + (488, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'ZdNRzxkd', '3426074'), + (488, 567, 'not_attending', '2021-01-26 16:23:55', '2025-12-17 19:47:50', 'ZdNRzxkd', '3428895'), + (488, 568, 'not_attending', '2021-01-27 21:54:48', '2025-12-17 19:47:50', 'ZdNRzxkd', '3430267'), + (488, 569, 'attending', '2021-01-27 23:53:46', '2025-12-17 19:47:49', 'ZdNRzxkd', '3432673'), + (488, 570, 'not_attending', '2021-02-04 15:56:02', '2025-12-17 19:47:50', 'ZdNRzxkd', '3435538'), + (488, 576, 'attending', '2021-02-03 00:30:47', '2025-12-17 19:47:50', 'ZdNRzxkd', '3438748'), + (488, 577, 'attending', '2021-01-29 23:31:26', '2025-12-17 19:47:49', 'ZdNRzxkd', '3439167'), + (488, 578, 'not_attending', '2021-02-01 20:29:51', '2025-12-17 19:47:50', 'ZdNRzxkd', '3440043'), + (488, 579, 'not_attending', '2021-02-01 20:30:00', '2025-12-17 19:47:50', 'ZdNRzxkd', '3440978'), + (488, 580, 'not_attending', '2021-01-31 16:23:43', '2025-12-17 19:47:50', 'ZdNRzxkd', '3444240'), + (488, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'ZdNRzxkd', '3468125'), + (488, 602, 'not_attending', '2021-02-13 16:41:16', '2025-12-17 19:47:50', 'ZdNRzxkd', '3470303'), + (488, 604, 'maybe', '2021-02-15 00:24:33', '2025-12-17 19:47:50', 'ZdNRzxkd', '3470305'), + (488, 605, 'attending', '2021-02-14 23:00:00', '2025-12-17 19:47:50', 'ZdNRzxkd', '3470991'), + (488, 607, 'not_attending', '2021-02-15 00:24:19', '2025-12-17 19:47:50', 'ZdNRzxkd', '3471882'), + (488, 612, 'not_attending', '2021-02-17 04:56:39', '2025-12-17 19:47:50', 'ZdNRzxkd', '3490040'), + (488, 613, 'not_attending', '2021-02-26 02:21:59', '2025-12-17 19:47:50', 'ZdNRzxkd', '3490041'), + (488, 614, 'maybe', '2021-02-15 00:25:36', '2025-12-17 19:47:51', 'ZdNRzxkd', '3490042'), + (488, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ZdNRzxkd', '3517815'), + (488, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ZdNRzxkd', '3517816'), + (488, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ZdNRzxkd', '3523941'), + (488, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ZdNRzxkd', '3533850'), + (488, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ZdNRzxkd', '3536632'), + (488, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ZdNRzxkd', '3536656'), + (488, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ZdNRzxkd', '3539916'), + (488, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ZdNRzxkd', '3539917'), + (488, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ZdNRzxkd', '3539918'), + (488, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539919'), + (488, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539920'), + (488, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539921'), + (488, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539922'), + (488, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ZdNRzxkd', '3539923'), + (488, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ZdNRzxkd', '3539927'), + (488, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ZdNRzxkd', '3582734'), + (488, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ZdNRzxkd', '3583262'), + (488, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ZdNRzxkd', '3619523'), + (488, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ZdNRzxkd', '3661369'), + (488, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ZdNRzxkd', '3674262'), + (488, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ZdNRzxkd', '3677402'), + (488, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ZdNRzxkd', '3730212'), + (488, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ZdNRzxkd', '3793156'), + (488, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ZdNRzxkd', '3974109'), + (488, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ZdNRzxkd', '3975311'), + (488, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ZdNRzxkd', '3975312'), + (488, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ZdNRzxkd', '3994992'), + (488, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ZdNRzxkd', '4014338'), + (488, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ZdNRzxkd', '4021848'), + (488, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNRzxkd', '4136744'), + (488, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ZdNRzxkd', '4136937'), + (488, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ZdNRzxkd', '4136938'), + (488, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNRzxkd', '4136947'), + (488, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNRzxkd', '4210314'), + (488, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ZdNRzxkd', '4225444'), + (488, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNRzxkd', '4239259'), + (488, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ZdNRzxkd', '4240316'), + (488, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ZdNRzxkd', '4240317'), + (488, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ZdNRzxkd', '4240318'), + (488, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ZdNRzxkd', '4240320'), + (488, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNRzxkd', '4250163'), + (488, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ZdNRzxkd', '4275957'), + (488, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNRzxkd', '4277819'), + (488, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNRzxkd', '4301723'), + (488, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ZdNRzxkd', '4302093'), + (488, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ZdNRzxkd', '4304151'), + (488, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ZdNRzxkd', '4356801'), + (488, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ZdNRzxkd', '4366186'), + (488, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ZdNRzxkd', '4366187'), + (488, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ZdNRzxkd', '4420735'), + (488, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ZdNRzxkd', '4420738'), + (488, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ZdNRzxkd', '4420739'), + (488, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ZdNRzxkd', '4420741'), + (488, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ZdNRzxkd', '4420744'), + (488, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ZdNRzxkd', '4420747'), + (488, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ZdNRzxkd', '4420748'), + (488, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ZdNRzxkd', '4420749'), + (488, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ZdNRzxkd', '4461883'), + (488, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ZdNRzxkd', '4508342'), + (488, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ZdNRzxkd', '4568602'), + (488, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ZdNRzxkd', '4572153'), + (488, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ZdNRzxkd', '4585962'), + (488, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'ZdNRzxkd', '4596356'), + (488, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ZdNRzxkd', '4598860'), + (488, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ZdNRzxkd', '4598861'), + (488, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ZdNRzxkd', '4602797'), + (488, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ZdNRzxkd', '4637896'), + (488, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ZdNRzxkd', '4642994'), + (488, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ZdNRzxkd', '4642995'), + (488, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ZdNRzxkd', '4642996'), + (488, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ZdNRzxkd', '4642997'), + (488, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ZdNRzxkd', '4645687'), + (488, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ZdNRzxkd', '4645698'), + (488, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ZdNRzxkd', '4645704'), + (488, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ZdNRzxkd', '4645705'), + (488, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ZdNRzxkd', '4668385'), + (488, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ZdNRzxkd', '4694407'), + (488, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ZdNRzxkd', '4736497'), + (488, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ZdNRzxkd', '4736499'), + (488, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ZdNRzxkd', '4736500'), + (488, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ZdNRzxkd', '4736503'), + (488, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ZdNRzxkd', '4736504'), + (488, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ZdNRzxkd', '4746789'), + (488, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ZdNRzxkd', '4753929'), + (488, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ZdNRzxkd', '5038850'), + (488, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ZdNRzxkd', '5045826'), + (488, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ZdNRzxkd', '5132533'), + (488, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ZdNRzxkd', '5186582'), + (488, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ZdNRzxkd', '5186583'), + (488, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ZdNRzxkd', '5186585'), + (488, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ZdNRzxkd', '5190437'), + (488, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ZdNRzxkd', '5195095'), + (488, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ZdNRzxkd', '5215989'), + (488, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ZdNRzxkd', '5223686'), + (488, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ZdNRzxkd', '5247467'), + (488, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ZdNRzxkd', '5260800'), + (488, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ZdNRzxkd', '5269930'), + (488, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ZdNRzxkd', '5271448'), + (488, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'ZdNRzxkd', '5271449'), + (488, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ZdNRzxkd', '5278159'), + (488, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ZdNRzxkd', '5363695'), + (488, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ZdNRzxkd', '5365960'), + (488, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ZdNRzxkd', '5378247'), + (488, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'ZdNRzxkd', '5389605'), + (488, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ZdNRzxkd', '5397265'), + (488, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ZdNRzxkd', '5404786'), + (488, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ZdNRzxkd', '5405203'), + (488, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ZdNRzxkd', '5412550'), + (488, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ZdNRzxkd', '5415046'), + (488, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ZdNRzxkd', '5422086'), + (488, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ZdNRzxkd', '5422406'), + (488, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ZdNRzxkd', '5424565'), + (488, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ZdNRzxkd', '5426882'), + (488, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ZdNRzxkd', '5441125'), + (488, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ZdNRzxkd', '5441126'), + (488, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ZdNRzxkd', '5441128'), + (488, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ZdNRzxkd', '5441131'), + (488, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ZdNRzxkd', '5441132'), + (488, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ZdNRzxkd', '5453325'), + (488, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ZdNRzxkd', '5454516'), + (488, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ZdNRzxkd', '5454605'), + (488, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ZdNRzxkd', '5455037'), + (488, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ZdNRzxkd', '5461278'), + (488, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ZdNRzxkd', '5469480'), + (488, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ZdNRzxkd', '5474663'), + (488, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ZdNRzxkd', '5482022'), + (488, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ZdNRzxkd', '5488912'), + (488, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ZdNRzxkd', '5492192'), + (488, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ZdNRzxkd', '5493139'), + (488, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ZdNRzxkd', '5493200'), + (488, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ZdNRzxkd', '5502188'), + (488, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ZdNRzxkd', '5505059'), + (488, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ZdNRzxkd', '5509055'), + (488, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ZdNRzxkd', '5512862'), + (488, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ZdNRzxkd', '5513985'), + (488, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ZdNRzxkd', '5519981'), + (488, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ZdNRzxkd', '5522550'), + (488, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ZdNRzxkd', '5534683'), + (488, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ZdNRzxkd', '5537735'), + (488, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ZdNRzxkd', '5540859'), + (488, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ZdNRzxkd', '5546619'), + (488, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ZdNRzxkd', '5557747'), + (488, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ZdNRzxkd', '5560255'), + (488, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ZdNRzxkd', '5562906'), + (488, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ZdNRzxkd', '5600604'), + (488, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ZdNRzxkd', '5605544'), + (488, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ZdNRzxkd', '5630960'), + (488, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ZdNRzxkd', '5630961'), + (488, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ZdNRzxkd', '5630962'), + (488, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ZdNRzxkd', '5630966'), + (488, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ZdNRzxkd', '5630967'), + (488, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ZdNRzxkd', '5630968'), + (488, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ZdNRzxkd', '5635406'), + (488, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ZdNRzxkd', '5638765'), + (488, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ZdNRzxkd', '5640097'), + (488, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ZdNRzxkd', '5640843'), + (488, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ZdNRzxkd', '5641521'), + (488, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ZdNRzxkd', '5642818'), + (488, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ZdNRzxkd', '5652395'), + (488, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ZdNRzxkd', '5670445'), + (488, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ZdNRzxkd', '5671637'), + (488, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ZdNRzxkd', '5672329'), + (488, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ZdNRzxkd', '5674057'), + (488, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ZdNRzxkd', '5674060'), + (488, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ZdNRzxkd', '5677461'), + (488, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ZdNRzxkd', '5698046'), + (488, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ZdNRzxkd', '5699760'), + (488, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ZdNRzxkd', '5741601'), + (488, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ZdNRzxkd', '5763458'), + (488, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ZdNRzxkd', '5774172'), + (488, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'ZdNRzxkd', '5818247'), + (488, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ZdNRzxkd', '5819471'), + (488, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ZdNRzxkd', '5827739'), + (488, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ZdNRzxkd', '5844306'), + (488, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ZdNRzxkd', '5850159'), + (488, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ZdNRzxkd', '5858999'), + (488, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ZdNRzxkd', '5871984'), + (488, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ZdNRzxkd', '5876354'), + (488, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ZdNRzxkd', '5880939'), + (488, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ZdNRzxkd', '5880940'), + (488, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ZdNRzxkd', '5880942'), + (488, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ZdNRzxkd', '5880943'), + (488, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ZdNRzxkd', '5887890'), + (488, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ZdNRzxkd', '5888598'), + (488, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ZdNRzxkd', '5893260'), + (488, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ZdNRzxkd', '5899826'), + (488, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ZdNRzxkd', '5900199'), + (488, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ZdNRzxkd', '5900200'), + (488, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ZdNRzxkd', '5900202'), + (488, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ZdNRzxkd', '5900203'), + (488, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ZdNRzxkd', '5901108'), + (488, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ZdNRzxkd', '5901126'), + (488, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ZdNRzxkd', '5909655'), + (488, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ZdNRzxkd', '5910522'), + (488, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ZdNRzxkd', '5910526'), + (488, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ZdNRzxkd', '5910528'), + (488, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ZdNRzxkd', '5916219'), + (488, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ZdNRzxkd', '5936234'), + (488, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ZdNRzxkd', '5958351'), + (488, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ZdNRzxkd', '5959751'), + (488, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ZdNRzxkd', '5959755'), + (488, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ZdNRzxkd', '5960055'), + (488, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ZdNRzxkd', '5961684'), + (488, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ZdNRzxkd', '5962132'), + (488, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ZdNRzxkd', '5962133'), + (488, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ZdNRzxkd', '5962134'), + (488, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ZdNRzxkd', '5962317'), + (488, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ZdNRzxkd', '5962318'), + (488, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ZdNRzxkd', '5965933'), + (488, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ZdNRzxkd', '5967014'), + (488, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ZdNRzxkd', '5972815'), + (488, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ZdNRzxkd', '5974016'), + (488, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ZdNRzxkd', '5981515'), + (488, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ZdNRzxkd', '5993516'), + (488, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ZdNRzxkd', '5998939'), + (488, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ZdNRzxkd', '6028191'), + (488, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ZdNRzxkd', '6040066'), + (488, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ZdNRzxkd', '6042717'), + (488, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ZdNRzxkd', '6044838'), + (488, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ZdNRzxkd', '6044839'), + (488, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNRzxkd', '6045684'), + (488, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ZdNRzxkd', '6050104'), + (488, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ZdNRzxkd', '6053195'), + (488, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ZdNRzxkd', '6053198'), + (488, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ZdNRzxkd', '6056085'), + (488, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ZdNRzxkd', '6056916'), + (488, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ZdNRzxkd', '6059290'), + (488, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ZdNRzxkd', '6060328'), + (488, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ZdNRzxkd', '6061037'), + (488, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ZdNRzxkd', '6061039'), + (488, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ZdNRzxkd', '6067245'), + (488, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ZdNRzxkd', '6068094'), + (488, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ZdNRzxkd', '6068252'), + (488, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ZdNRzxkd', '6068253'), + (488, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ZdNRzxkd', '6068254'), + (488, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ZdNRzxkd', '6068280'), + (488, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ZdNRzxkd', '6069093'), + (488, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ZdNRzxkd', '6072528'), + (488, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ZdNRzxkd', '6079840'), + (488, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ZdNRzxkd', '6083398'), + (488, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ZdNRzxkd', '6093504'), + (488, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ZdNRzxkd', '6097414'), + (488, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ZdNRzxkd', '6097442'), + (488, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ZdNRzxkd', '6097684'), + (488, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ZdNRzxkd', '6098762'), + (488, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ZdNRzxkd', '6101361'), + (488, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ZdNRzxkd', '6101362'), + (488, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ZdNRzxkd', '6107314'), + (488, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ZdNRzxkd', '6120034'), + (488, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ZdNRzxkd', '6136733'), + (488, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ZdNRzxkd', '6137989'), + (488, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ZdNRzxkd', '6150864'), + (488, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ZdNRzxkd', '6155491'), + (488, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ZdNRzxkd', '6164417'), + (488, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ZdNRzxkd', '6166388'), + (488, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ZdNRzxkd', '6176439'), + (488, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ZdNRzxkd', '6182410'), + (488, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ZdNRzxkd', '6185812'), + (488, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ZdNRzxkd', '6187651'), + (488, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ZdNRzxkd', '6187963'), + (488, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ZdNRzxkd', '6187964'), + (488, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ZdNRzxkd', '6187966'), + (488, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ZdNRzxkd', '6187967'), + (488, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ZdNRzxkd', '6187969'), + (488, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ZdNRzxkd', '6334878'), + (488, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ZdNRzxkd', '6337236'), + (488, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ZdNRzxkd', '6337970'), + (488, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ZdNRzxkd', '6338308'), + (488, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ZdNRzxkd', '6341710'), + (488, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ZdNRzxkd', '6342044'), + (488, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ZdNRzxkd', '6342298'), + (488, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ZdNRzxkd', '6343294'), + (488, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ZdNRzxkd', '6347034'), + (488, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ZdNRzxkd', '6347056'), + (488, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ZdNRzxkd', '6353830'), + (488, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ZdNRzxkd', '6353831'), + (488, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ZdNRzxkd', '6357867'), + (488, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ZdNRzxkd', '6358652'), + (488, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ZdNRzxkd', '6361709'), + (488, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ZdNRzxkd', '6361710'), + (488, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ZdNRzxkd', '6361711'), + (488, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ZdNRzxkd', '6361712'), + (488, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ZdNRzxkd', '6361713'), + (488, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ZdNRzxkd', '6382573'), + (488, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ZdNRzxkd', '6388604'), + (488, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ZdNRzxkd', '6394629'), + (488, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ZdNRzxkd', '6394631'), + (488, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ZdNRzxkd', '6440863'), + (488, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ZdNRzxkd', '6445440'), + (488, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ZdNRzxkd', '6453951'), + (488, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ZdNRzxkd', '6461696'), + (488, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ZdNRzxkd', '6462129'), + (488, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ZdNRzxkd', '6463218'), + (488, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ZdNRzxkd', '6472181'), + (488, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ZdNRzxkd', '6482693'), + (488, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ZdNRzxkd', '6484200'), + (488, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ZdNRzxkd', '6484680'), + (488, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ZdNRzxkd', '6507741'), + (488, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ZdNRzxkd', '6514659'), + (488, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ZdNRzxkd', '6514660'), + (488, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ZdNRzxkd', '6519103'), + (488, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ZdNRzxkd', '6535681'), + (488, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ZdNRzxkd', '6584747'), + (488, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ZdNRzxkd', '6587097'), + (488, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ZdNRzxkd', '6609022'), + (488, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ZdNRzxkd', '6632757'), + (488, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ZdNRzxkd', '6644187'), + (488, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ZdNRzxkd', '6648951'), + (488, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ZdNRzxkd', '6648952'), + (488, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ZdNRzxkd', '6655401'), + (488, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ZdNRzxkd', '6661585'), + (488, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ZdNRzxkd', '6661588'), + (488, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ZdNRzxkd', '6661589'), + (488, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ZdNRzxkd', '6699906'), + (488, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ZdNRzxkd', '6699913'), + (488, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ZdNRzxkd', '6701109'), + (488, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ZdNRzxkd', '6705219'), + (488, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ZdNRzxkd', '6710153'), + (488, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ZdNRzxkd', '6711552'), + (488, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ZdNRzxkd', '6711553'), + (488, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ZdNRzxkd', '6722688'), + (488, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ZdNRzxkd', '6730620'), + (488, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ZdNRzxkd', '6740364'), + (488, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ZdNRzxkd', '6743829'), + (488, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ZdNRzxkd', '7030380'), + (488, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ZdNRzxkd', '7033677'), + (488, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ZdNRzxkd', '7044715'), + (488, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ZdNRzxkd', '7050318'), + (488, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ZdNRzxkd', '7050319'), + (488, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ZdNRzxkd', '7050322'), + (488, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ZdNRzxkd', '7057804'), + (488, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ZdNRzxkd', '7072824'), + (488, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ZdNRzxkd', '7074348'), + (488, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ZdNRzxkd', '7074364'), + (488, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ZdNRzxkd', '7089267'), + (488, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ZdNRzxkd', '7098747'), + (488, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ZdNRzxkd', '7113468'), + (488, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ZdNRzxkd', '7114856'), + (488, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ZdNRzxkd', '7114951'), + (488, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ZdNRzxkd', '7114955'), + (488, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ZdNRzxkd', '7114956'), + (488, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ZdNRzxkd', '7114957'), + (488, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ZdNRzxkd', '7159484'), + (488, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ZdNRzxkd', '7178446'), + (488, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ZdNRzxkd', '7220467'), + (488, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ZdNRzxkd', '7240354'), + (488, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ZdNRzxkd', '7251633'), + (488, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ZdNRzxkd', '7324073'), + (488, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ZdNRzxkd', '7324074'), + (488, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ZdNRzxkd', '7324075'), + (488, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ZdNRzxkd', '7324078'), + (488, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ZdNRzxkd', '7324082'), + (488, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ZdNRzxkd', '7331457'), + (488, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ZdNRzxkd', '7363643'), + (488, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ZdNRzxkd', '7368606'), + (488, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ZdNRzxkd', '7397462'), + (488, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ZdNRzxkd', '7424275'), + (488, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ZdNRzxkd', '7432751'), + (488, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ZdNRzxkd', '7432752'), + (488, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ZdNRzxkd', '7432753'), + (488, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432754'), + (488, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432755'), + (488, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432756'), + (488, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432758'), + (488, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432759'), + (488, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ZdNRzxkd', '7433834'), + (488, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ZdNRzxkd', '7470197'), + (488, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ZdNRzxkd', '7685613'), + (488, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ZdNRzxkd', '7688194'), + (488, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ZdNRzxkd', '7688196'), + (488, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ZdNRzxkd', '7688289'), + (488, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ZdNRzxkd', '7692763'), + (488, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ZdNRzxkd', '7697552'), + (488, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ZdNRzxkd', '7699878'), + (488, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ZdNRzxkd', '7704043'), + (488, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ZdNRzxkd', '7712467'), + (488, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ZdNRzxkd', '7713585'), + (488, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ZdNRzxkd', '7713586'), + (488, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ZdNRzxkd', '7738518'), + (488, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ZdNRzxkd', '7750636'), + (488, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ZdNRzxkd', '7796540'), + (488, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ZdNRzxkd', '7796541'), + (488, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ZdNRzxkd', '7796542'), + (488, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ZdNRzxkd', '7825913'), + (488, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ZdNRzxkd', '7826209'), + (488, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ZdNRzxkd', '7834742'), + (488, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ZdNRzxkd', '7842108'), + (488, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ZdNRzxkd', '7842902'), + (488, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ZdNRzxkd', '7842903'), + (488, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ZdNRzxkd', '7842904'), + (488, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ZdNRzxkd', '7842905'), + (488, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ZdNRzxkd', '7855719'), + (488, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ZdNRzxkd', '7860683'), + (488, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ZdNRzxkd', '7860684'), + (488, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ZdNRzxkd', '7866095'), + (488, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ZdNRzxkd', '7869170'), + (488, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ZdNRzxkd', '7869188'), + (488, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ZdNRzxkd', '7869201'), + (488, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ZdNRzxkd', '7877465'), + (488, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ZdNRzxkd', '7888250'), + (488, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ZdNRzxkd', '7904777'), + (488, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ZdNRzxkd', '8349164'), + (488, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ZdNRzxkd', '8349545'), + (488, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ZdNRzxkd', '8368028'), + (488, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ZdNRzxkd', '8368029'), + (488, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ZdNRzxkd', '8388462'), + (488, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ZdNRzxkd', '8400273'), + (488, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ZdNRzxkd', '8400275'), + (488, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ZdNRzxkd', '8400276'), + (488, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ZdNRzxkd', '8404977'), + (488, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ZdNRzxkd', '8430783'), + (488, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ZdNRzxkd', '8430784'), + (488, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ZdNRzxkd', '8430799'), + (488, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ZdNRzxkd', '8430800'), + (488, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ZdNRzxkd', '8430801'), + (488, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ZdNRzxkd', '8438709'), + (488, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ZdNRzxkd', '8457738'), + (488, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ZdNRzxkd', '8459566'), + (488, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ZdNRzxkd', '8459567'), + (488, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ZdNRzxkd', '8461032'), + (488, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ZdNRzxkd', '8477877'), + (488, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ZdNRzxkd', '8485688'), + (488, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ZdNRzxkd', '8490587'), + (488, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ZdNRzxkd', '8493552'), + (488, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ZdNRzxkd', '8493553'), + (488, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ZdNRzxkd', '8493554'), + (488, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ZdNRzxkd', '8493555'), + (488, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ZdNRzxkd', '8493556'), + (488, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ZdNRzxkd', '8493557'), + (488, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ZdNRzxkd', '8493558'), + (488, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ZdNRzxkd', '8493559'), + (488, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ZdNRzxkd', '8493560'), + (488, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ZdNRzxkd', '8493561'), + (488, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ZdNRzxkd', '8493572'), + (488, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ZdNRzxkd', '8540725'), + (488, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ZdNRzxkd', '8555421'), + (489, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4oj73eoA', '7074364'), + (489, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', '4oj73eoA', '7302674'), + (489, 2678, 'attending', '2024-06-15 14:49:27', '2025-12-17 19:46:28', '4oj73eoA', '7319489'), + (489, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4oj73eoA', '7324073'), + (489, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4oj73eoA', '7324074'), + (489, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4oj73eoA', '7324075'), + (489, 2713, 'attending', '2024-06-15 14:49:29', '2025-12-17 19:46:28', '4oj73eoA', '7326593'), + (489, 2714, 'attending', '2024-06-15 14:49:19', '2025-12-17 19:46:28', '4oj73eoA', '7326981'), + (489, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '4oj73eoA', '7331457'), + (490, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'w4WDkpjd', '3149489'), + (490, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'w4WDkpjd', '3149491'), + (490, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'w4WDkpjd', '3236450'), + (490, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'w4WDkpjd', '3236452'), + (490, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'w4WDkpjd', '3539920'), + (490, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'w4WDkpjd', '3539921'), + (490, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'w4WDkpjd', '3539922'), + (490, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'w4WDkpjd', '3539923'), + (490, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'w4WDkpjd', '3793156'), + (490, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'w4WDkpjd', '3806392'), + (490, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'w4WDkpjd', '3963335'), + (490, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'w4WDkpjd', '3975311'), + (490, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4WDkpjd', '3975312'), + (490, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4WDkpjd', '3994992'), + (490, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4WDkpjd', '4014338'), + (490, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4WDkpjd', '4136744'), + (490, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WDkpjd', '6045684'), + (491, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4EQ0NkD4', '6045684'), + (492, 2064, 'attending', '2023-06-12 20:49:52', '2025-12-17 19:46:50', 'dOOOlzWd', '6099988'), + (492, 2065, 'attending', '2023-06-12 20:49:47', '2025-12-17 19:46:49', 'dOOOlzWd', '6101169'), + (492, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOOOlzWd', '6101361'), + (492, 2075, 'attending', '2023-06-29 20:17:44', '2025-12-17 19:46:50', 'dOOOlzWd', '6107314'), + (492, 2093, 'attending', '2023-06-12 20:49:30', '2025-12-17 19:47:04', 'dOOOlzWd', '6132598'), + (492, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dOOOlzWd', '6136733'), + (492, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOOOlzWd', '6137989'), + (492, 2097, 'attending', '2023-06-12 00:43:58', '2025-12-17 19:47:04', 'dOOOlzWd', '6139059'), + (492, 2098, 'attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dOOOlzWd', '6139831'), + (492, 2099, 'maybe', '2023-06-12 20:49:39', '2025-12-17 19:46:49', 'dOOOlzWd', '6143012'), + (492, 2103, 'attending', '2023-06-18 13:44:10', '2025-12-17 19:46:50', 'dOOOlzWd', '6149451'), + (492, 2104, 'attending', '2023-06-18 13:44:29', '2025-12-17 19:46:50', 'dOOOlzWd', '6149499'), + (492, 2105, 'attending', '2023-06-18 16:43:25', '2025-12-17 19:46:50', 'dOOOlzWd', '6149551'), + (492, 2106, 'attending', '2023-06-18 13:44:14', '2025-12-17 19:46:50', 'dOOOlzWd', '6150479'), + (492, 2107, 'attending', '2023-06-18 13:44:19', '2025-12-17 19:46:50', 'dOOOlzWd', '6150480'), + (492, 2108, 'attending', '2023-06-18 16:43:33', '2025-12-17 19:46:50', 'dOOOlzWd', '6150864'), + (492, 2110, 'attending', '2023-06-19 23:13:41', '2025-12-17 19:46:50', 'dOOOlzWd', '6155491'), + (492, 2112, 'maybe', '2023-06-19 23:13:36', '2025-12-17 19:46:50', 'dOOOlzWd', '6156213'), + (492, 2113, 'attending', '2023-06-19 23:13:32', '2025-12-17 19:46:50', 'dOOOlzWd', '6156215'), + (492, 2114, 'attending', '2023-06-19 23:13:10', '2025-12-17 19:46:50', 'dOOOlzWd', '6158648'), + (492, 2115, 'maybe', '2023-06-30 16:51:12', '2025-12-17 19:46:50', 'dOOOlzWd', '6161437'), + (492, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOOOlzWd', '6164417'), + (492, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOOOlzWd', '6166388'), + (492, 2121, 'maybe', '2023-06-28 16:33:51', '2025-12-17 19:46:50', 'dOOOlzWd', '6176439'), + (492, 2122, 'attending', '2023-07-05 19:34:10', '2025-12-17 19:46:51', 'dOOOlzWd', '6176476'), + (492, 2123, 'attending', '2023-06-28 16:33:59', '2025-12-17 19:46:50', 'dOOOlzWd', '6176502'), + (492, 2124, 'attending', '2023-06-29 20:18:23', '2025-12-17 19:46:51', 'dOOOlzWd', '6176988'), + (492, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOOOlzWd', '6182410'), + (492, 2129, 'attending', '2023-07-05 19:33:04', '2025-12-17 19:46:51', 'dOOOlzWd', '6182825'), + (492, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOOOlzWd', '6185812'), + (492, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOOOlzWd', '6187651'), + (492, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOOOlzWd', '6187963'), + (492, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOOOlzWd', '6187964'), + (492, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOOOlzWd', '6187966'), + (492, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOOOlzWd', '6187967'), + (492, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOOOlzWd', '6187969'), + (492, 2141, 'attending', '2023-07-08 14:29:38', '2025-12-17 19:46:52', 'dOOOlzWd', '6188819'), + (492, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOOOlzWd', '6334878'), + (492, 2146, 'attending', '2023-07-16 22:32:43', '2025-12-17 19:46:53', 'dOOOlzWd', '6335638'), + (492, 2148, 'attending', '2023-07-16 22:34:05', '2025-12-17 19:46:53', 'dOOOlzWd', '6335667'), + (492, 2150, 'attending', '2023-07-10 00:09:57', '2025-12-17 19:46:52', 'dOOOlzWd', '6335687'), + (492, 2152, 'attending', '2023-07-13 19:15:15', '2025-12-17 19:46:52', 'dOOOlzWd', '6337021'), + (492, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOOOlzWd', '6337236'), + (492, 2155, 'attending', '2023-07-12 22:48:14', '2025-12-17 19:46:53', 'dOOOlzWd', '6337970'), + (492, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOOOlzWd', '6338308'), + (492, 2157, 'not_attending', '2023-07-12 21:54:01', '2025-12-17 19:46:52', 'dOOOlzWd', '6338342'), + (492, 2159, 'attending', '2023-07-14 13:41:27', '2025-12-17 19:46:53', 'dOOOlzWd', '6338355'), + (492, 2160, 'not_attending', '2023-07-14 13:41:29', '2025-12-17 19:46:54', 'dOOOlzWd', '6338358'), + (492, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOOOlzWd', '6341710'), + (492, 2164, 'maybe', '2023-07-17 20:52:04', '2025-12-17 19:46:54', 'dOOOlzWd', '6341797'), + (492, 2165, 'attending', '2023-07-31 18:30:40', '2025-12-17 19:46:54', 'dOOOlzWd', '6342044'), + (492, 2166, 'attending', '2023-07-17 20:52:11', '2025-12-17 19:46:54', 'dOOOlzWd', '6342115'), + (492, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOOOlzWd', '6342298'), + (492, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOOOlzWd', '6343294'), + (492, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOOOlzWd', '6347034'), + (492, 2177, 'attending', '2023-08-06 12:11:37', '2025-12-17 19:46:55', 'dOOOlzWd', '6347053'), + (492, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOOOlzWd', '6347056'), + (492, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOOOlzWd', '6353830'), + (492, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOOOlzWd', '6353831'), + (492, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOOOlzWd', '6357867'), + (492, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOOOlzWd', '6358652'), + (492, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dOOOlzWd', '6358668'), + (492, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dOOOlzWd', '6358669'), + (492, 2195, 'attending', '2023-08-21 14:52:00', '2025-12-17 19:46:55', 'dOOOlzWd', '6359397'), + (492, 2197, 'attending', '2023-09-15 22:41:18', '2025-12-17 19:46:44', 'dOOOlzWd', '6359399'), + (492, 2198, 'attending', '2023-09-17 19:11:59', '2025-12-17 19:46:45', 'dOOOlzWd', '6359400'), + (492, 2199, 'attending', '2023-08-16 14:41:03', '2025-12-17 19:46:55', 'dOOOlzWd', '6359849'), + (492, 2200, 'attending', '2023-08-09 13:02:30', '2025-12-17 19:46:55', 'dOOOlzWd', '6359850'), + (492, 2202, 'maybe', '2023-08-06 18:26:00', '2025-12-17 19:46:54', 'dOOOlzWd', '6360509'), + (492, 2204, 'attending', '2023-08-19 17:01:55', '2025-12-17 19:46:55', 'dOOOlzWd', '6361542'), + (492, 2208, 'attending', '2023-08-09 13:01:52', '2025-12-17 19:46:54', 'dOOOlzWd', '6361709'), + (492, 2209, 'maybe', '2023-08-23 13:58:05', '2025-12-17 19:46:55', 'dOOOlzWd', '6361710'), + (492, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOOOlzWd', '6361711'), + (492, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOOOlzWd', '6361712'), + (492, 2212, 'attending', '2023-09-27 12:05:15', '2025-12-17 19:46:45', 'dOOOlzWd', '6361713'), + (492, 2214, 'attending', '2023-08-13 12:59:12', '2025-12-17 19:46:55', 'dOOOlzWd', '6363218'), + (492, 2215, 'attending', '2023-08-11 19:44:10', '2025-12-17 19:46:55', 'dOOOlzWd', '6363479'), + (492, 2225, 'attending', '2023-08-29 18:06:56', '2025-12-17 19:46:55', 'dOOOlzWd', '6368434'), + (492, 2232, 'attending', '2023-08-21 14:51:44', '2025-12-17 19:46:55', 'dOOOlzWd', '6374818'), + (492, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOOOlzWd', '6382573'), + (492, 2239, 'attending', '2023-09-01 16:37:01', '2025-12-17 19:46:56', 'dOOOlzWd', '6387592'), + (492, 2240, 'attending', '2023-09-06 12:05:06', '2025-12-17 19:46:56', 'dOOOlzWd', '6388603'), + (492, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOOOlzWd', '6388604'), + (492, 2242, 'not_attending', '2023-09-17 19:11:52', '2025-12-17 19:46:45', 'dOOOlzWd', '6388606'), + (492, 2245, 'attending', '2023-09-22 20:45:11', '2025-12-17 19:46:45', 'dOOOlzWd', '6393703'), + (492, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOOOlzWd', '6394629'), + (492, 2249, 'attending', '2023-09-20 16:11:56', '2025-12-17 19:46:45', 'dOOOlzWd', '6394630'), + (492, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOOOlzWd', '6394631'), + (492, 2252, 'attending', '2023-09-22 20:45:18', '2025-12-17 19:46:45', 'dOOOlzWd', '6396837'), + (492, 2253, 'maybe', '2023-09-25 19:42:12', '2025-12-17 19:46:45', 'dOOOlzWd', '6401811'), + (492, 2258, 'attending', '2023-09-22 20:45:47', '2025-12-17 19:46:45', 'dOOOlzWd', '6419492'), + (492, 2259, 'not_attending', '2023-09-22 20:38:11', '2025-12-17 19:46:45', 'dOOOlzWd', '6421257'), + (492, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOOOlzWd', '6440863'), + (492, 2270, 'attending', '2023-10-04 22:18:19', '2025-12-17 19:46:46', 'dOOOlzWd', '6443067'), + (492, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOOOlzWd', '6445440'), + (492, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOOOlzWd', '6453951'), + (492, 2284, 'maybe', '2023-10-10 18:19:53', '2025-12-17 19:46:46', 'dOOOlzWd', '6460928'), + (492, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOOOlzWd', '6461696'), + (492, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOOOlzWd', '6462129'), + (492, 2290, 'attending', '2023-10-18 18:26:50', '2025-12-17 19:46:46', 'dOOOlzWd', '6462214'), + (492, 2291, 'attending', '2023-10-18 18:26:58', '2025-12-17 19:46:46', 'dOOOlzWd', '6462215'), + (492, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOOOlzWd', '6463218'), + (492, 2299, 'attending', '2023-10-18 18:27:04', '2025-12-17 19:46:46', 'dOOOlzWd', '6472181'), + (492, 2302, 'attending', '2023-10-23 21:26:01', '2025-12-17 19:46:46', 'dOOOlzWd', '6482535'), + (492, 2303, 'attending', '2023-10-25 16:16:37', '2025-12-17 19:46:47', 'dOOOlzWd', '6482691'), + (492, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOOOlzWd', '6482693'), + (492, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dOOOlzWd', '6484200'), + (492, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOOOlzWd', '6484680'), + (492, 2317, 'attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOOOlzWd', '6507741'), + (492, 2318, 'not_attending', '2023-10-30 23:06:29', '2025-12-17 19:46:47', 'dOOOlzWd', '6508566'), + (492, 2322, 'attending', '2023-11-14 20:27:05', '2025-12-17 19:46:48', 'dOOOlzWd', '6514659'), + (492, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOOOlzWd', '6514660'), + (492, 2324, 'attending', '2023-12-09 17:48:39', '2025-12-17 19:46:49', 'dOOOlzWd', '6514662'), + (492, 2325, 'not_attending', '2023-12-13 22:37:17', '2025-12-17 19:46:36', 'dOOOlzWd', '6514663'), + (492, 2327, 'maybe', '2023-11-02 19:42:41', '2025-12-17 19:46:47', 'dOOOlzWd', '6515494'), + (492, 2331, 'attending', '2023-11-14 20:26:12', '2025-12-17 19:46:47', 'dOOOlzWd', '6518640'), + (492, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOOOlzWd', '6519103'), + (492, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOOOlzWd', '6535681'), + (492, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOOOlzWd', '6584747'), + (492, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOOOlzWd', '6587097'), + (492, 2356, 'attending', '2023-12-10 19:12:59', '2025-12-17 19:46:36', 'dOOOlzWd', '6593340'), + (492, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOOOlzWd', '6609022'), + (492, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOOOlzWd', '6632757'), + (492, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOOOlzWd', '6644187'), + (492, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOOOlzWd', '6648951'), + (492, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOOOlzWd', '6648952'), + (492, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOOOlzWd', '6655401'), + (492, 2399, 'attending', '2024-01-07 18:51:02', '2025-12-17 19:46:37', 'dOOOlzWd', '6657583'), + (492, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOOOlzWd', '6661585'), + (492, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOOOlzWd', '6661588'), + (492, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOOOlzWd', '6661589'), + (492, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOOOlzWd', '6699906'), + (492, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOOOlzWd', '6699913'), + (492, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOOOlzWd', '6701109'), + (492, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOOOlzWd', '6705219'), + (492, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOOOlzWd', '6710153'), + (492, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOOOlzWd', '6711552'), + (492, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOOOlzWd', '6711553'), + (492, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOOOlzWd', '6722688'), + (492, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOOOlzWd', '6730620'), + (492, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOOOlzWd', '6730642'), + (492, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOOOlzWd', '6740364'), + (492, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOOOlzWd', '6743829'), + (492, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOOOlzWd', '7030380'), + (492, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOOOlzWd', '7033677'), + (492, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOOOlzWd', '7035415'), + (492, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOOOlzWd', '7044715'), + (492, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOOOlzWd', '7050318'), + (492, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOOOlzWd', '7050319'), + (492, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOOOlzWd', '7050322'), + (492, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOOOlzWd', '7057804'), + (492, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dOOOlzWd', '7059866'), + (492, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOOOlzWd', '7072824'), + (492, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOOOlzWd', '7074348'), + (492, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOOOlzWd', '7089267'), + (492, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOOOlzWd', '7098747'), + (492, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOOOlzWd', '7113468'), + (492, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOOOlzWd', '7114856'), + (492, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOOOlzWd', '7114951'), + (492, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOOOlzWd', '7114955'), + (492, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOOOlzWd', '7114956'), + (492, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dOOOlzWd', '7114957'), + (492, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOOOlzWd', '7153615'), + (492, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOOOlzWd', '7159484'), + (492, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOOOlzWd', '7178446'), + (492, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOOOlzWd', '7220467'), + (492, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dOOOlzWd', '7240354'), + (492, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOOOlzWd', '7251633'), + (492, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dOOOlzWd', '7263048'), + (492, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOOOlzWd', '7302674'), + (493, 1518, 'attending', '2022-09-01 17:26:52', '2025-12-17 19:47:24', 'dJPNk9nA', '5441131'), + (493, 1519, 'attending', '2022-08-29 20:13:18', '2025-12-17 19:47:24', 'dJPNk9nA', '5441132'), + (493, 1544, 'maybe', '2022-09-13 22:53:37', '2025-12-17 19:47:11', 'dJPNk9nA', '5454517'), + (493, 1558, 'attending', '2022-09-12 15:08:05', '2025-12-17 19:47:10', 'dJPNk9nA', '5458730'), + (493, 1559, 'attending', '2022-09-26 12:45:00', '2025-12-17 19:47:11', 'dJPNk9nA', '5458731'), + (493, 1584, 'not_attending', '2022-08-29 20:13:50', '2025-12-17 19:47:23', 'dJPNk9nA', '5492004'), + (493, 1600, 'not_attending', '2022-08-29 21:31:04', '2025-12-17 19:47:24', 'dJPNk9nA', '5496569'), + (493, 1606, 'maybe', '2022-08-29 21:29:39', '2025-12-17 19:47:23', 'dJPNk9nA', '5504585'), + (493, 1608, 'attending', '2022-08-29 20:13:38', '2025-12-17 19:47:24', 'dJPNk9nA', '5505059'), + (493, 1609, 'attending', '2022-08-29 20:09:08', '2025-12-17 19:47:23', 'dJPNk9nA', '5506590'), + (493, 1610, 'not_attending', '2022-08-29 21:29:36', '2025-12-17 19:47:23', 'dJPNk9nA', '5506595'), + (493, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dJPNk9nA', '5509055'), + (493, 1617, 'not_attending', '2022-08-29 20:12:44', '2025-12-17 19:47:24', 'dJPNk9nA', '5512003'), + (493, 1618, 'not_attending', '2022-08-29 20:13:55', '2025-12-17 19:47:23', 'dJPNk9nA', '5512005'), + (493, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'dJPNk9nA', '5513985'), + (493, 1626, 'attending', '2022-09-20 00:10:17', '2025-12-17 19:47:11', 'dJPNk9nA', '5519981'), + (493, 1629, 'attending', '2022-09-19 16:59:00', '2025-12-17 19:47:11', 'dJPNk9nA', '5522550'), + (493, 1630, 'attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'dJPNk9nA', '5534683'), + (493, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dJPNk9nA', '5537735'), + (493, 1636, 'attending', '2022-09-04 17:53:04', '2025-12-17 19:47:24', 'dJPNk9nA', '5538454'), + (493, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dJPNk9nA', '5540859'), + (493, 1641, 'attending', '2022-09-03 01:55:28', '2025-12-17 19:47:24', 'dJPNk9nA', '5544226'), + (493, 1643, 'maybe', '2022-09-26 16:03:11', '2025-12-17 19:47:11', 'dJPNk9nA', '5545856'), + (493, 1644, 'attending', '2022-09-20 00:09:51', '2025-12-17 19:47:11', 'dJPNk9nA', '5545857'), + (493, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dJPNk9nA', '5546619'), + (493, 1655, 'not_attending', '2022-09-26 16:03:13', '2025-12-17 19:47:11', 'dJPNk9nA', '5554482'), + (493, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dJPNk9nA', '5555245'), + (493, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dJPNk9nA', '5557747'), + (493, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dJPNk9nA', '5560255'), + (493, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dJPNk9nA', '5562906'), + (493, 1666, 'attending', '2022-09-26 16:02:16', '2025-12-17 19:47:11', 'dJPNk9nA', '5563208'), + (493, 1667, 'attending', '2022-09-23 19:15:45', '2025-12-17 19:47:11', 'dJPNk9nA', '5563221'), + (493, 1668, 'attending', '2022-09-20 00:10:21', '2025-12-17 19:47:12', 'dJPNk9nA', '5563222'), + (493, 1673, 'not_attending', '2022-09-26 16:04:53', '2025-12-17 19:47:11', 'dJPNk9nA', '5592454'), + (493, 1674, 'maybe', '2022-09-26 16:04:58', '2025-12-17 19:47:12', 'dJPNk9nA', '5593112'), + (493, 1677, 'attending', '2022-09-22 01:32:27', '2025-12-17 19:47:11', 'dJPNk9nA', '5600604'), + (493, 1680, 'not_attending', '2022-09-26 16:03:20', '2025-12-17 19:47:11', 'dJPNk9nA', '5601577'), + (493, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dJPNk9nA', '5605544'), + (493, 1698, 'attending', '2022-09-26 16:03:23', '2025-12-17 19:47:11', 'dJPNk9nA', '5606366'), + (493, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'dJPNk9nA', '5606737'), + (493, 1701, 'not_attending', '2022-09-27 17:46:08', '2025-12-17 19:47:11', 'dJPNk9nA', '5607857'), + (493, 1708, 'attending', '2022-10-05 20:02:35', '2025-12-17 19:47:12', 'dJPNk9nA', '5617648'), + (493, 1711, 'maybe', '2022-10-06 10:17:30', '2025-12-17 19:47:12', 'dJPNk9nA', '5621883'), + (493, 1712, 'attending', '2022-10-12 13:26:25', '2025-12-17 19:47:12', 'dJPNk9nA', '5622073'), + (493, 1713, 'maybe', '2022-10-18 18:30:52', '2025-12-17 19:47:13', 'dJPNk9nA', '5622108'), + (493, 1714, 'attending', '2022-10-16 02:36:58', '2025-12-17 19:47:14', 'dJPNk9nA', '5622347'), + (493, 1717, 'not_attending', '2022-10-17 13:49:53', '2025-12-17 19:47:13', 'dJPNk9nA', '5622842'), + (493, 1718, 'maybe', '2022-10-05 02:41:19', '2025-12-17 19:47:12', 'dJPNk9nA', '5630907'), + (493, 1719, 'not_attending', '2022-10-05 20:02:53', '2025-12-17 19:47:12', 'dJPNk9nA', '5630958'), + (493, 1720, 'attending', '2022-10-11 18:32:45', '2025-12-17 19:47:12', 'dJPNk9nA', '5630959'), + (493, 1721, 'attending', '2022-10-16 02:36:28', '2025-12-17 19:47:13', 'dJPNk9nA', '5630960'), + (493, 1722, 'attending', '2022-10-24 11:28:43', '2025-12-17 19:47:14', 'dJPNk9nA', '5630961'), + (493, 1723, 'attending', '2022-10-16 02:37:22', '2025-12-17 19:47:15', 'dJPNk9nA', '5630962'), + (493, 1724, 'attending', '2022-10-24 16:30:07', '2025-12-17 19:47:15', 'dJPNk9nA', '5630966'), + (493, 1725, 'maybe', '2022-10-24 16:30:18', '2025-12-17 19:47:16', 'dJPNk9nA', '5630967'), + (493, 1726, 'attending', '2022-10-24 16:30:32', '2025-12-17 19:47:16', 'dJPNk9nA', '5630968'), + (493, 1727, 'not_attending', '2022-10-24 16:30:37', '2025-12-17 19:47:16', 'dJPNk9nA', '5630969'), + (493, 1730, 'maybe', '2022-10-10 15:38:22', '2025-12-17 19:47:12', 'dJPNk9nA', '5634666'), + (493, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dJPNk9nA', '5635406'), + (493, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dJPNk9nA', '5638765'), + (493, 1739, 'attending', '2022-10-24 16:31:13', '2025-12-17 19:47:14', 'dJPNk9nA', '5640097'), + (493, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dJPNk9nA', '5640843'), + (493, 1741, 'maybe', '2022-10-10 15:38:31', '2025-12-17 19:47:12', 'dJPNk9nA', '5641132'), + (493, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dJPNk9nA', '5641521'), + (493, 1744, 'attending', '2022-11-23 13:08:39', '2025-12-17 19:47:16', 'dJPNk9nA', '5642818'), + (493, 1745, 'maybe', '2022-10-12 15:38:58', '2025-12-17 19:47:12', 'dJPNk9nA', '5643088'), + (493, 1747, 'maybe', '2022-10-24 16:29:20', '2025-12-17 19:47:14', 'dJPNk9nA', '5648009'), + (493, 1750, 'attending', '2022-11-01 21:34:46', '2025-12-17 19:47:15', 'dJPNk9nA', '5652365'), + (493, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dJPNk9nA', '5652395'), + (493, 1754, 'attending', '2022-10-18 10:56:56', '2025-12-17 19:47:12', 'dJPNk9nA', '5659773'), + (493, 1756, 'not_attending', '2022-10-24 16:31:09', '2025-12-17 19:47:13', 'dJPNk9nA', '5663338'), + (493, 1757, 'attending', '2022-10-31 16:44:08', '2025-12-17 19:47:15', 'dJPNk9nA', '5668974'), + (493, 1761, 'not_attending', '2022-10-31 11:00:03', '2025-12-17 19:47:16', 'dJPNk9nA', '5670434'), + (493, 1762, 'attending', '2022-11-28 14:00:14', '2025-12-17 19:47:16', 'dJPNk9nA', '5670445'), + (493, 1763, 'attending', '2022-11-11 12:47:04', '2025-12-17 19:47:15', 'dJPNk9nA', '5670803'), + (493, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dJPNk9nA', '5671637'), + (493, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dJPNk9nA', '5672329'), + (493, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dJPNk9nA', '5674057'), + (493, 1767, 'maybe', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dJPNk9nA', '5674060'), + (493, 1768, 'not_attending', '2022-11-07 13:28:40', '2025-12-17 19:47:16', 'dJPNk9nA', '5674062'), + (493, 1772, 'attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dJPNk9nA', '5677461'), + (493, 1773, 'attending', '2022-10-31 18:08:49', '2025-12-17 19:47:14', 'dJPNk9nA', '5677707'), + (493, 1776, 'attending', '2022-11-08 21:58:39', '2025-12-17 19:47:15', 'dJPNk9nA', '5691067'), + (493, 1777, 'attending', '2022-11-07 13:29:13', '2025-12-17 19:47:15', 'dJPNk9nA', '5693021'), + (493, 1780, 'attending', '2022-11-07 20:47:03', '2025-12-17 19:47:15', 'dJPNk9nA', '5696082'), + (493, 1781, 'attending', '2022-11-02 16:38:53', '2025-12-17 19:47:15', 'dJPNk9nA', '5696178'), + (493, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dJPNk9nA', '5698046'), + (493, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dJPNk9nA', '5699760'), + (493, 1789, 'not_attending', '2022-11-10 18:55:18', '2025-12-17 19:47:15', 'dJPNk9nA', '5727274'), + (493, 1792, 'not_attending', '2022-11-10 18:55:16', '2025-12-17 19:47:15', 'dJPNk9nA', '5728512'), + (493, 1793, 'attending', '2022-11-21 12:42:21', '2025-12-17 19:47:16', 'dJPNk9nA', '5736365'), + (493, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dJPNk9nA', '5741601'), + (493, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dJPNk9nA', '5763458'), + (493, 1799, 'attending', '2022-11-21 12:42:23', '2025-12-17 19:47:16', 'dJPNk9nA', '5764666'), + (493, 1803, 'attending', '2023-01-07 23:56:22', '2025-12-17 19:47:05', 'dJPNk9nA', '5764673'), + (493, 1804, 'attending', '2023-01-24 20:33:58', '2025-12-17 19:47:06', 'dJPNk9nA', '5764674'), + (493, 1805, 'attending', '2023-02-03 16:20:05', '2025-12-17 19:47:06', 'dJPNk9nA', '5764675'), + (493, 1806, 'attending', '2023-01-17 14:45:47', '2025-12-17 19:47:05', 'dJPNk9nA', '5764676'), + (493, 1808, 'not_attending', '2023-02-20 00:48:02', '2025-12-17 19:47:08', 'dJPNk9nA', '5764678'), + (493, 1809, 'not_attending', '2023-04-03 11:02:17', '2025-12-17 19:46:59', 'dJPNk9nA', '5764679'), + (493, 1810, 'attending', '2023-04-20 18:29:13', '2025-12-17 19:47:00', 'dJPNk9nA', '5764680'), + (493, 1811, 'attending', '2023-05-06 20:26:45', '2025-12-17 19:47:02', 'dJPNk9nA', '5764681'), + (493, 1812, 'attending', '2023-03-08 00:31:53', '2025-12-17 19:47:09', 'dJPNk9nA', '5764682'), + (493, 1814, 'not_attending', '2023-02-09 00:36:20', '2025-12-17 19:47:08', 'dJPNk9nA', '5764684'), + (493, 1816, 'attending', '2023-05-20 19:55:59', '2025-12-17 19:47:03', 'dJPNk9nA', '5764686'), + (493, 1817, 'attending', '2023-03-25 06:41:40', '2025-12-17 19:46:57', 'dJPNk9nA', '5764687'), + (493, 1818, 'maybe', '2023-02-11 23:42:35', '2025-12-17 19:47:07', 'dJPNk9nA', '5764688'), + (493, 1820, 'attending', '2023-03-25 06:43:45', '2025-12-17 19:46:58', 'dJPNk9nA', '5764690'), + (493, 1821, 'attending', '2023-03-17 11:28:38', '2025-12-17 19:46:56', 'dJPNk9nA', '5764691'), + (493, 1822, 'not_attending', '2023-04-19 09:36:09', '2025-12-17 19:47:02', 'dJPNk9nA', '5764692'), + (493, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dJPNk9nA', '5774172'), + (493, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dJPNk9nA', '5818247'), + (493, 1834, 'attending', '2022-12-10 14:44:09', '2025-12-17 19:47:17', 'dJPNk9nA', '5819470'), + (493, 1835, 'attending', '2022-12-28 01:46:37', '2025-12-17 19:47:05', 'dJPNk9nA', '5819471'), + (493, 1839, 'not_attending', '2022-12-20 20:32:16', '2025-12-17 19:47:04', 'dJPNk9nA', '5821920'), + (493, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dJPNk9nA', '5827739'), + (493, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dJPNk9nA', '5844306'), + (493, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dJPNk9nA', '5850159'), + (493, 1848, 'maybe', '2023-01-03 16:33:11', '2025-12-17 19:47:05', 'dJPNk9nA', '5852466'), + (493, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dJPNk9nA', '5858999'), + (493, 1851, 'not_attending', '2023-01-09 01:46:31', '2025-12-17 19:47:05', 'dJPNk9nA', '5869316'), + (493, 1852, 'attending', '2023-01-11 12:49:38', '2025-12-17 19:47:05', 'dJPNk9nA', '5869898'), + (493, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dJPNk9nA', '5871984'), + (493, 1856, 'not_attending', '2023-01-17 14:17:40', '2025-12-17 19:47:05', 'dJPNk9nA', '5873970'), + (493, 1857, 'not_attending', '2023-01-17 14:18:12', '2025-12-17 19:47:05', 'dJPNk9nA', '5873973'), + (493, 1859, 'maybe', '2023-01-17 14:18:03', '2025-12-17 19:47:05', 'dJPNk9nA', '5876234'), + (493, 1861, 'attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dJPNk9nA', '5876354'), + (493, 1863, 'maybe', '2023-01-17 14:18:24', '2025-12-17 19:47:06', 'dJPNk9nA', '5877255'), + (493, 1864, 'attending', '2023-01-17 14:18:06', '2025-12-17 19:47:05', 'dJPNk9nA', '5879675'), + (493, 1865, 'attending', '2023-01-17 14:18:18', '2025-12-17 19:47:06', 'dJPNk9nA', '5879676'), + (493, 1866, 'attending', '2023-01-17 14:18:15', '2025-12-17 19:47:05', 'dJPNk9nA', '5880939'), + (493, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dJPNk9nA', '5880940'), + (493, 1868, 'maybe', '2023-01-25 04:09:18', '2025-12-17 19:47:07', 'dJPNk9nA', '5880942'), + (493, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dJPNk9nA', '5880943'), + (493, 1870, 'not_attending', '2023-01-20 13:05:05', '2025-12-17 19:47:05', 'dJPNk9nA', '5881740'), + (493, 1873, 'attending', '2023-01-21 18:54:08', '2025-12-17 19:47:05', 'dJPNk9nA', '5885295'), + (493, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dJPNk9nA', '5887890'), + (493, 1875, 'not_attending', '2023-01-23 01:25:24', '2025-12-17 19:47:06', 'dJPNk9nA', '5887908'), + (493, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dJPNk9nA', '5888598'), + (493, 1880, 'attending', '2023-01-24 20:38:47', '2025-12-17 19:47:06', 'dJPNk9nA', '5893260'), + (493, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dJPNk9nA', '5899826'), + (493, 1885, 'not_attending', '2023-02-22 15:03:04', '2025-12-17 19:47:08', 'dJPNk9nA', '5899928'), + (493, 1886, 'not_attending', '2023-03-08 00:31:44', '2025-12-17 19:47:09', 'dJPNk9nA', '5899930'), + (493, 1888, 'not_attending', '2023-02-13 23:06:12', '2025-12-17 19:47:07', 'dJPNk9nA', '5900197'), + (493, 1889, 'attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dJPNk9nA', '5900199'), + (493, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dJPNk9nA', '5900200'), + (493, 1891, 'attending', '2023-03-21 00:46:42', '2025-12-17 19:46:56', 'dJPNk9nA', '5900202'), + (493, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dJPNk9nA', '5900203'), + (493, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dJPNk9nA', '5901108'), + (493, 1896, 'maybe', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dJPNk9nA', '5901126'), + (493, 1897, 'attending', '2023-02-05 19:07:10', '2025-12-17 19:47:07', 'dJPNk9nA', '5901128'), + (493, 1898, 'maybe', '2023-02-01 20:51:30', '2025-12-17 19:47:06', 'dJPNk9nA', '5901263'), + (493, 1899, 'attending', '2023-02-10 23:30:22', '2025-12-17 19:47:07', 'dJPNk9nA', '5901323'), + (493, 1906, 'not_attending', '2023-03-09 22:04:44', '2025-12-17 19:47:09', 'dJPNk9nA', '5904523'), + (493, 1908, 'not_attending', '2023-02-13 23:05:36', '2025-12-17 19:47:07', 'dJPNk9nA', '5905018'), + (493, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dJPNk9nA', '5909655'), + (493, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dJPNk9nA', '5910522'), + (493, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dJPNk9nA', '5910526'), + (493, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dJPNk9nA', '5910528'), + (493, 1920, 'maybe', '2023-02-13 15:55:03', '2025-12-17 19:47:07', 'dJPNk9nA', '5914091'), + (493, 1921, 'maybe', '2023-02-27 18:29:47', '2025-12-17 19:47:08', 'dJPNk9nA', '5914092'), + (493, 1922, 'not_attending', '2023-02-12 02:58:22', '2025-12-17 19:47:07', 'dJPNk9nA', '5916219'), + (493, 1926, 'maybe', '2023-03-02 13:49:08', '2025-12-17 19:47:08', 'dJPNk9nA', '5932620'), + (493, 1929, 'not_attending', '2023-02-20 12:10:21', '2025-12-17 19:47:07', 'dJPNk9nA', '5932628'), + (493, 1930, 'maybe', '2023-02-22 15:03:12', '2025-12-17 19:47:08', 'dJPNk9nA', '5933462'), + (493, 1931, 'maybe', '2023-02-22 15:03:17', '2025-12-17 19:47:08', 'dJPNk9nA', '5933464'), + (493, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dJPNk9nA', '5936234'), + (493, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dJPNk9nA', '5958351'), + (493, 1936, 'attending', '2023-02-27 17:04:28', '2025-12-17 19:47:08', 'dJPNk9nA', '5959397'), + (493, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dJPNk9nA', '5959751'), + (493, 1939, 'maybe', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dJPNk9nA', '5959755'), + (493, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dJPNk9nA', '5960055'), + (493, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dJPNk9nA', '5961684'), + (493, 1943, 'attending', '2023-03-14 16:44:49', '2025-12-17 19:47:10', 'dJPNk9nA', '5962091'), + (493, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dJPNk9nA', '5962132'), + (493, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dJPNk9nA', '5962133'), + (493, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dJPNk9nA', '5962134'), + (493, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dJPNk9nA', '5962317'), + (493, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dJPNk9nA', '5962318'), + (493, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dJPNk9nA', '5965933'), + (493, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dJPNk9nA', '5967014'), + (493, 1955, 'attending', '2023-03-29 21:54:21', '2025-12-17 19:46:57', 'dJPNk9nA', '5972529'), + (493, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dJPNk9nA', '5972763'), + (493, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dJPNk9nA', '5972815'), + (493, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dJPNk9nA', '5974016'), + (493, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dJPNk9nA', '5981515'), + (493, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dJPNk9nA', '5993516'), + (493, 1971, 'attending', '2023-03-20 21:29:33', '2025-12-17 19:46:56', 'dJPNk9nA', '5993765'), + (493, 1972, 'attending', '2023-03-19 02:31:08', '2025-12-17 19:46:56', 'dJPNk9nA', '5993776'), + (493, 1973, 'attending', '2023-03-17 11:28:07', '2025-12-17 19:46:56', 'dJPNk9nA', '5993777'), + (493, 1974, 'maybe', '2023-03-25 06:42:44', '2025-12-17 19:46:57', 'dJPNk9nA', '5993778'), + (493, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dJPNk9nA', '5998939'), + (493, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dJPNk9nA', '6028191'), + (493, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dJPNk9nA', '6040066'), + (493, 1983, 'not_attending', '2023-04-03 11:02:19', '2025-12-17 19:46:59', 'dJPNk9nA', '6040068'), + (493, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dJPNk9nA', '6042717'), + (493, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dJPNk9nA', '6044838'), + (493, 1987, 'not_attending', '2023-04-16 22:23:04', '2025-12-17 19:47:00', 'dJPNk9nA', '6044839'), + (493, 1988, 'attending', '2023-04-03 11:01:56', '2025-12-17 19:47:01', 'dJPNk9nA', '6044840'), + (493, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJPNk9nA', '6045684'), + (493, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dJPNk9nA', '6050104'), + (493, 1996, 'attending', '2023-04-03 22:54:37', '2025-12-17 19:46:58', 'dJPNk9nA', '6050667'), + (493, 1998, 'maybe', '2023-04-09 03:05:25', '2025-12-17 19:46:59', 'dJPNk9nA', '6052056'), + (493, 2002, 'not_attending', '2023-04-26 21:46:52', '2025-12-17 19:47:01', 'dJPNk9nA', '6052605'), + (493, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dJPNk9nA', '6053195'), + (493, 2006, 'not_attending', '2023-04-05 13:59:53', '2025-12-17 19:46:59', 'dJPNk9nA', '6053198'), + (493, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dJPNk9nA', '6056085'), + (493, 2011, 'maybe', '2023-04-09 03:05:29', '2025-12-17 19:46:59', 'dJPNk9nA', '6056916'), + (493, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dJPNk9nA', '6059290'), + (493, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dJPNk9nA', '6060328'), + (493, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dJPNk9nA', '6061037'), + (493, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dJPNk9nA', '6061039'), + (493, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dJPNk9nA', '6067245'), + (493, 2025, 'not_attending', '2023-04-20 18:29:30', '2025-12-17 19:47:00', 'dJPNk9nA', '6067457'), + (493, 2026, 'not_attending', '2023-04-26 21:46:39', '2025-12-17 19:47:01', 'dJPNk9nA', '6068078'), + (493, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dJPNk9nA', '6068094'), + (493, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dJPNk9nA', '6068252'), + (493, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dJPNk9nA', '6068253'), + (493, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dJPNk9nA', '6068254'), + (493, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dJPNk9nA', '6068280'), + (493, 2032, 'not_attending', '2023-05-31 20:29:13', '2025-12-17 19:47:04', 'dJPNk9nA', '6068281'), + (493, 2033, 'maybe', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dJPNk9nA', '6069093'), + (493, 2034, 'not_attending', '2023-04-20 18:29:32', '2025-12-17 19:47:00', 'dJPNk9nA', '6069372'), + (493, 2038, 'not_attending', '2023-04-26 21:46:46', '2025-12-17 19:47:01', 'dJPNk9nA', '6071944'), + (493, 2040, 'not_attending', '2023-04-26 21:46:42', '2025-12-17 19:47:01', 'dJPNk9nA', '6072453'), + (493, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dJPNk9nA', '6072528'), + (493, 2042, 'not_attending', '2023-04-26 21:46:33', '2025-12-17 19:47:01', 'dJPNk9nA', '6072941'), + (493, 2043, 'attending', '2023-04-26 21:46:28', '2025-12-17 19:47:01', 'dJPNk9nA', '6073023'), + (493, 2044, 'not_attending', '2023-05-23 11:34:17', '2025-12-17 19:47:03', 'dJPNk9nA', '6073678'), + (493, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dJPNk9nA', '6079840'), + (493, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dJPNk9nA', '6083398'), + (493, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dJPNk9nA', '6093504'), + (493, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dJPNk9nA', '6097414'), + (493, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dJPNk9nA', '6097442'), + (493, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dJPNk9nA', '6097684'), + (493, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dJPNk9nA', '6098762'), + (493, 2064, 'not_attending', '2023-06-03 20:07:32', '2025-12-17 19:46:50', 'dJPNk9nA', '6099988'), + (493, 2065, 'not_attending', '2023-06-03 20:07:28', '2025-12-17 19:46:49', 'dJPNk9nA', '6101169'), + (493, 2066, 'not_attending', '2023-06-03 20:07:25', '2025-12-17 19:47:04', 'dJPNk9nA', '6101361'), + (493, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dJPNk9nA', '6101362'), + (493, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dJPNk9nA', '6103752'), + (493, 2074, 'attending', '2023-05-24 14:38:24', '2025-12-17 19:47:03', 'dJPNk9nA', '6107312'), + (493, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dJPNk9nA', '6107314'), + (493, 2077, 'not_attending', '2023-06-03 20:07:29', '2025-12-17 19:46:49', 'dJPNk9nA', '6110217'), + (493, 2078, 'not_attending', '2023-05-23 11:34:19', '2025-12-17 19:47:03', 'dJPNk9nA', '6114163'), + (493, 2081, 'not_attending', '2023-05-23 11:34:20', '2025-12-17 19:47:03', 'dJPNk9nA', '6115611'), + (493, 2083, 'maybe', '2023-05-26 14:54:09', '2025-12-17 19:47:04', 'dJPNk9nA', '6115629'), + (493, 2085, 'not_attending', '2023-05-31 20:29:00', '2025-12-17 19:47:04', 'dJPNk9nA', '6118068'), + (493, 2086, 'not_attending', '2023-05-31 20:29:02', '2025-12-17 19:47:04', 'dJPNk9nA', '6119877'), + (493, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dJPNk9nA', '6120034'), + (493, 2089, 'not_attending', '2023-06-03 20:07:21', '2025-12-17 19:47:04', 'dJPNk9nA', '6125227'), + (493, 2090, 'not_attending', '2023-05-31 20:29:04', '2025-12-17 19:47:04', 'dJPNk9nA', '6127961'), + (493, 2091, 'not_attending', '2023-06-03 20:07:20', '2025-12-17 19:47:04', 'dJPNk9nA', '6130657'), + (493, 2093, 'not_attending', '2023-06-05 12:39:28', '2025-12-17 19:47:04', 'dJPNk9nA', '6132598'), + (493, 2094, 'maybe', '2023-06-09 02:30:43', '2025-12-17 19:47:04', 'dJPNk9nA', '6135924'), + (493, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dJPNk9nA', '6136733'), + (493, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dJPNk9nA', '6137989'), + (493, 2097, 'maybe', '2023-06-09 02:30:48', '2025-12-17 19:47:04', 'dJPNk9nA', '6139059'), + (493, 2098, 'maybe', '2023-06-09 02:30:42', '2025-12-17 19:47:04', 'dJPNk9nA', '6139831'), + (493, 2099, 'not_attending', '2023-06-14 22:38:17', '2025-12-17 19:46:49', 'dJPNk9nA', '6143012'), + (493, 2102, 'not_attending', '2023-06-14 22:38:19', '2025-12-17 19:46:50', 'dJPNk9nA', '6146559'), + (493, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dJPNk9nA', '6150864'), + (493, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dJPNk9nA', '6155491'), + (493, 2115, 'not_attending', '2023-06-30 10:28:55', '2025-12-17 19:46:50', 'dJPNk9nA', '6161437'), + (493, 2116, 'not_attending', '2023-06-30 10:29:12', '2025-12-17 19:46:51', 'dJPNk9nA', '6163389'), + (493, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dJPNk9nA', '6164417'), + (493, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dJPNk9nA', '6166388'), + (493, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dJPNk9nA', '6176439'), + (493, 2122, 'not_attending', '2023-06-30 10:28:59', '2025-12-17 19:46:51', 'dJPNk9nA', '6176476'), + (493, 2124, 'not_attending', '2023-06-30 10:29:08', '2025-12-17 19:46:51', 'dJPNk9nA', '6176988'), + (493, 2125, 'not_attending', '2023-06-30 10:29:01', '2025-12-17 19:46:51', 'dJPNk9nA', '6177485'), + (493, 2126, 'not_attending', '2023-06-30 10:28:57', '2025-12-17 19:46:51', 'dJPNk9nA', '6177548'), + (493, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dJPNk9nA', '6182410'), + (493, 2129, 'not_attending', '2023-07-04 20:44:33', '2025-12-17 19:46:51', 'dJPNk9nA', '6182825'), + (493, 2130, 'not_attending', '2023-07-04 20:49:43', '2025-12-17 19:46:51', 'dJPNk9nA', '6183891'), + (493, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dJPNk9nA', '6185812'), + (493, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dJPNk9nA', '6187651'), + (493, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dJPNk9nA', '6187963'), + (493, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dJPNk9nA', '6187964'), + (493, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dJPNk9nA', '6187966'), + (493, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dJPNk9nA', '6187967'), + (493, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dJPNk9nA', '6187969'), + (493, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dJPNk9nA', '6334878'), + (493, 2146, 'maybe', '2023-07-21 11:02:36', '2025-12-17 19:46:53', 'dJPNk9nA', '6335638'), + (493, 2148, 'attending', '2023-07-25 00:04:48', '2025-12-17 19:46:53', 'dJPNk9nA', '6335667'), + (493, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dJPNk9nA', '6337236'), + (493, 2155, 'attending', '2023-07-17 21:10:37', '2025-12-17 19:46:53', 'dJPNk9nA', '6337970'), + (493, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dJPNk9nA', '6338308'), + (493, 2159, 'maybe', '2023-07-16 21:29:27', '2025-12-17 19:46:53', 'dJPNk9nA', '6338355'), + (493, 2160, 'attending', '2023-07-24 01:36:44', '2025-12-17 19:46:54', 'dJPNk9nA', '6338358'), + (493, 2162, 'maybe', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dJPNk9nA', '6340845'), + (493, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dJPNk9nA', '6341710'), + (493, 2164, 'not_attending', '2023-07-24 01:36:46', '2025-12-17 19:46:54', 'dJPNk9nA', '6341797'), + (493, 2165, 'attending', '2023-07-27 15:35:29', '2025-12-17 19:46:54', 'dJPNk9nA', '6342044'), + (493, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dJPNk9nA', '6342298'), + (493, 2171, 'not_attending', '2023-07-24 01:36:59', '2025-12-17 19:46:54', 'dJPNk9nA', '6342328'), + (493, 2173, 'not_attending', '2023-07-20 21:23:43', '2025-12-17 19:46:53', 'dJPNk9nA', '6342769'), + (493, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dJPNk9nA', '6343294'), + (493, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dJPNk9nA', '6347034'), + (493, 2177, 'not_attending', '2023-07-27 15:35:48', '2025-12-17 19:46:55', 'dJPNk9nA', '6347053'), + (493, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dJPNk9nA', '6347056'), + (493, 2179, 'not_attending', '2023-07-30 20:57:02', '2025-12-17 19:46:54', 'dJPNk9nA', '6347591'), + (493, 2180, 'attending', '2023-07-26 20:03:56', '2025-12-17 19:46:54', 'dJPNk9nA', '6348788'), + (493, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dJPNk9nA', '6353830'), + (493, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dJPNk9nA', '6353831'), + (493, 2187, 'not_attending', '2023-08-02 01:36:22', '2025-12-17 19:46:55', 'dJPNk9nA', '6357559'), + (493, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dJPNk9nA', '6357867'), + (493, 2190, 'maybe', '2023-08-02 19:01:58', '2025-12-17 19:46:55', 'dJPNk9nA', '6357892'), + (493, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dJPNk9nA', '6358652'), + (493, 2192, 'not_attending', '2023-08-04 00:10:50', '2025-12-17 19:46:54', 'dJPNk9nA', '6358666'), + (493, 2195, 'not_attending', '2023-08-22 10:51:49', '2025-12-17 19:46:55', 'dJPNk9nA', '6359397'), + (493, 2196, 'maybe', '2023-09-05 18:46:08', '2025-12-17 19:46:56', 'dJPNk9nA', '6359398'), + (493, 2197, 'not_attending', '2023-09-11 15:13:50', '2025-12-17 19:46:44', 'dJPNk9nA', '6359399'), + (493, 2198, 'not_attending', '2023-09-21 11:19:11', '2025-12-17 19:46:45', 'dJPNk9nA', '6359400'), + (493, 2199, 'attending', '2023-08-16 23:03:26', '2025-12-17 19:46:55', 'dJPNk9nA', '6359849'), + (493, 2200, 'attending', '2023-08-10 15:42:02', '2025-12-17 19:46:55', 'dJPNk9nA', '6359850'), + (493, 2204, 'not_attending', '2023-08-19 20:59:10', '2025-12-17 19:46:55', 'dJPNk9nA', '6361542'), + (493, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dJPNk9nA', '6361709'), + (493, 2209, 'attending', '2023-08-20 22:18:43', '2025-12-17 19:46:55', 'dJPNk9nA', '6361710'), + (493, 2210, 'attending', '2023-08-24 17:56:02', '2025-12-17 19:46:55', 'dJPNk9nA', '6361711'), + (493, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dJPNk9nA', '6361712'), + (493, 2212, 'not_attending', '2023-09-22 21:12:34', '2025-12-17 19:46:45', 'dJPNk9nA', '6361713'), + (493, 2214, 'attending', '2023-08-13 16:07:50', '2025-12-17 19:46:55', 'dJPNk9nA', '6363218'), + (493, 2218, 'maybe', '2023-08-22 10:51:07', '2025-12-17 19:46:55', 'dJPNk9nA', '6367308'), + (493, 2222, 'not_attending', '2023-08-24 17:55:42', '2025-12-17 19:46:55', 'dJPNk9nA', '6367358'), + (493, 2225, 'not_attending', '2023-08-24 17:55:56', '2025-12-17 19:46:55', 'dJPNk9nA', '6368434'), + (493, 2231, 'not_attending', '2023-08-24 17:56:53', '2025-12-17 19:46:55', 'dJPNk9nA', '6374748'), + (493, 2232, 'not_attending', '2023-08-22 10:52:08', '2025-12-17 19:46:55', 'dJPNk9nA', '6374818'), + (493, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dJPNk9nA', '6382573'), + (493, 2239, 'maybe', '2023-09-02 19:27:44', '2025-12-17 19:46:56', 'dJPNk9nA', '6387592'), + (493, 2240, 'not_attending', '2023-09-06 15:55:08', '2025-12-17 19:46:56', 'dJPNk9nA', '6388603'), + (493, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dJPNk9nA', '6388604'), + (493, 2242, 'attending', '2023-09-21 11:19:14', '2025-12-17 19:46:45', 'dJPNk9nA', '6388606'), + (493, 2245, 'not_attending', '2023-09-24 12:24:49', '2025-12-17 19:46:45', 'dJPNk9nA', '6393703'), + (493, 2247, 'attending', '2023-09-05 23:13:41', '2025-12-17 19:46:56', 'dJPNk9nA', '6394628'), + (493, 2248, 'attending', '2023-09-05 23:15:54', '2025-12-17 19:46:44', 'dJPNk9nA', '6394629'), + (493, 2249, 'attending', '2023-09-05 23:15:55', '2025-12-17 19:46:45', 'dJPNk9nA', '6394630'), + (493, 2250, 'attending', '2023-09-05 23:15:57', '2025-12-17 19:46:45', 'dJPNk9nA', '6394631'), + (493, 2252, 'maybe', '2023-09-12 12:43:51', '2025-12-17 19:46:45', 'dJPNk9nA', '6396837'), + (493, 2253, 'attending', '2023-09-21 19:37:52', '2025-12-17 19:46:45', 'dJPNk9nA', '6401811'), + (493, 2254, 'not_attending', '2023-09-16 14:56:32', '2025-12-17 19:46:44', 'dJPNk9nA', '6401889'), + (493, 2263, 'maybe', '2023-09-27 11:12:46', '2025-12-17 19:46:45', 'dJPNk9nA', '6429351'), + (493, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dJPNk9nA', '6440863'), + (493, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dJPNk9nA', '6445440'), + (493, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dJPNk9nA', '6453951'), + (493, 2277, 'not_attending', '2023-10-09 21:27:23', '2025-12-17 19:46:46', 'dJPNk9nA', '6455211'), + (493, 2278, 'attending', '2023-10-08 16:37:19', '2025-12-17 19:46:45', 'dJPNk9nA', '6455213'), + (493, 2279, 'attending', '2023-10-09 21:27:18', '2025-12-17 19:46:46', 'dJPNk9nA', '6455460'), + (493, 2284, 'not_attending', '2023-10-12 21:13:11', '2025-12-17 19:46:46', 'dJPNk9nA', '6460928'), + (493, 2285, 'not_attending', '2023-10-16 20:45:50', '2025-12-17 19:46:47', 'dJPNk9nA', '6460929'), + (493, 2286, 'not_attending', '2023-11-20 14:00:45', '2025-12-17 19:46:48', 'dJPNk9nA', '6460930'), + (493, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dJPNk9nA', '6461696'), + (493, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dJPNk9nA', '6462129'), + (493, 2290, 'attending', '2023-10-18 16:30:58', '2025-12-17 19:46:46', 'dJPNk9nA', '6462214'), + (493, 2291, 'not_attending', '2023-10-15 20:33:30', '2025-12-17 19:46:46', 'dJPNk9nA', '6462215'), + (493, 2292, 'attending', '2023-10-31 13:35:46', '2025-12-17 19:46:47', 'dJPNk9nA', '6462216'), + (493, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dJPNk9nA', '6463218'), + (493, 2295, 'not_attending', '2023-10-16 14:16:32', '2025-12-17 19:46:46', 'dJPNk9nA', '6467832'), + (493, 2296, 'not_attending', '2023-10-26 10:59:33', '2025-12-17 19:46:47', 'dJPNk9nA', '6468393'), + (493, 2299, 'not_attending', '2023-10-15 20:33:36', '2025-12-17 19:46:46', 'dJPNk9nA', '6472181'), + (493, 2302, 'not_attending', '2023-10-23 21:57:24', '2025-12-17 19:46:46', 'dJPNk9nA', '6482535'), + (493, 2303, 'not_attending', '2023-10-22 22:47:21', '2025-12-17 19:46:47', 'dJPNk9nA', '6482691'), + (493, 2304, 'not_attending', '2023-10-30 20:03:30', '2025-12-17 19:46:47', 'dJPNk9nA', '6482693'), + (493, 2306, 'attending', '2023-11-13 01:11:38', '2025-12-17 19:46:47', 'dJPNk9nA', '6484200'), + (493, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dJPNk9nA', '6484680'), + (493, 2308, 'not_attending', '2023-10-26 10:59:31', '2025-12-17 19:46:47', 'dJPNk9nA', '6485393'), + (493, 2310, 'attending', '2023-10-30 20:03:52', '2025-12-17 19:46:47', 'dJPNk9nA', '6487709'), + (493, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dJPNk9nA', '6507741'), + (493, 2318, 'attending', '2023-10-30 20:01:40', '2025-12-17 19:46:47', 'dJPNk9nA', '6508566'), + (493, 2320, 'maybe', '2023-11-08 16:03:45', '2025-12-17 19:46:47', 'dJPNk9nA', '6508647'), + (493, 2322, 'attending', '2023-11-13 00:10:28', '2025-12-17 19:46:48', 'dJPNk9nA', '6514659'), + (493, 2323, 'not_attending', '2023-11-20 14:00:47', '2025-12-17 19:46:49', 'dJPNk9nA', '6514660'), + (493, 2324, 'attending', '2023-11-21 14:41:29', '2025-12-17 19:46:49', 'dJPNk9nA', '6514662'), + (493, 2325, 'not_attending', '2023-11-21 14:41:32', '2025-12-17 19:46:36', 'dJPNk9nA', '6514663'), + (493, 2327, 'not_attending', '2023-11-02 22:14:59', '2025-12-17 19:46:47', 'dJPNk9nA', '6515494'), + (493, 2329, 'not_attending', '2023-11-06 22:31:37', '2025-12-17 19:46:47', 'dJPNk9nA', '6517138'), + (493, 2330, 'maybe', '2023-11-13 02:01:41', '2025-12-17 19:46:47', 'dJPNk9nA', '6517941'), + (493, 2331, 'attending', '2023-11-15 01:28:00', '2025-12-17 19:46:47', 'dJPNk9nA', '6518640'), + (493, 2332, 'not_attending', '2023-11-08 16:03:55', '2025-12-17 19:46:47', 'dJPNk9nA', '6518655'), + (493, 2333, 'attending', '2023-11-06 22:31:51', '2025-12-17 19:46:47', 'dJPNk9nA', '6519103'), + (493, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dJPNk9nA', '6535681'), + (493, 2338, 'attending', '2023-11-13 00:10:52', '2025-12-17 19:46:48', 'dJPNk9nA', '6538868'), + (493, 2339, 'maybe', '2023-11-13 00:10:15', '2025-12-17 19:46:47', 'dJPNk9nA', '6539128'), + (493, 2345, 'attending', '2023-11-28 22:43:48', '2025-12-17 19:46:48', 'dJPNk9nA', '6582414'), + (493, 2350, 'attending', '2023-11-21 14:42:49', '2025-12-17 19:46:48', 'dJPNk9nA', '6584352'), + (493, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dJPNk9nA', '6584747'), + (493, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dJPNk9nA', '6587097'), + (493, 2353, 'not_attending', '2023-11-30 14:27:07', '2025-12-17 19:46:48', 'dJPNk9nA', '6588894'), + (493, 2354, 'not_attending', '2023-11-30 14:26:48', '2025-12-17 19:46:48', 'dJPNk9nA', '6591742'), + (493, 2355, 'not_attending', '2023-11-30 14:27:27', '2025-12-17 19:46:49', 'dJPNk9nA', '6593339'), + (493, 2358, 'not_attending', '2023-11-30 14:26:55', '2025-12-17 19:46:48', 'dJPNk9nA', '6595321'), + (493, 2359, 'not_attending', '2023-11-30 14:26:46', '2025-12-17 19:46:48', 'dJPNk9nA', '6596617'), + (493, 2360, 'not_attending', '2023-12-02 23:30:08', '2025-12-17 19:46:49', 'dJPNk9nA', '6599341'), + (493, 2362, 'maybe', '2023-12-07 21:02:35', '2025-12-17 19:46:49', 'dJPNk9nA', '6605708'), + (493, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dJPNk9nA', '6609022'), + (493, 2364, 'not_attending', '2023-12-07 21:24:35', '2025-12-17 19:46:49', 'dJPNk9nA', '6613011'), + (493, 2365, 'attending', '2023-12-10 18:00:29', '2025-12-17 19:46:37', 'dJPNk9nA', '6613093'), + (493, 2370, 'attending', '2023-12-14 00:30:56', '2025-12-17 19:46:36', 'dJPNk9nA', '6623765'), + (493, 2371, 'maybe', '2023-12-15 14:41:12', '2025-12-17 19:46:36', 'dJPNk9nA', '6624495'), + (493, 2373, 'attending', '2024-01-02 13:58:58', '2025-12-17 19:46:38', 'dJPNk9nA', '6632678'), + (493, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dJPNk9nA', '6632757'), + (493, 2375, 'attending', '2023-12-20 22:39:57', '2025-12-17 19:46:36', 'dJPNk9nA', '6634548'), + (493, 2376, 'maybe', '2024-01-15 14:15:59', '2025-12-17 19:46:40', 'dJPNk9nA', '6642900'), + (493, 2377, 'maybe', '2024-01-02 13:58:46', '2025-12-17 19:46:37', 'dJPNk9nA', '6643448'), + (493, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dJPNk9nA', '6644187'), + (493, 2381, 'maybe', '2024-01-02 21:51:19', '2025-12-17 19:46:37', 'dJPNk9nA', '6646398'), + (493, 2382, 'not_attending', '2024-01-02 21:51:43', '2025-12-17 19:46:37', 'dJPNk9nA', '6646401'), + (493, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dJPNk9nA', '6648951'), + (493, 2387, 'attending', '2024-01-03 03:27:53', '2025-12-17 19:46:37', 'dJPNk9nA', '6648952'), + (493, 2388, 'attending', '2024-01-03 03:27:19', '2025-12-17 19:46:37', 'dJPNk9nA', '6649244'), + (493, 2389, 'not_attending', '2024-01-04 23:00:57', '2025-12-17 19:46:40', 'dJPNk9nA', '6651094'), + (493, 2391, 'not_attending', '2024-01-04 23:00:49', '2025-12-17 19:46:37', 'dJPNk9nA', '6654138'), + (493, 2393, 'attending', '2024-01-14 20:46:32', '2025-12-17 19:46:38', 'dJPNk9nA', '6654468'), + (493, 2394, 'maybe', '2024-01-17 01:22:19', '2025-12-17 19:46:38', 'dJPNk9nA', '6654470'), + (493, 2395, 'attending', '2024-01-14 20:47:35', '2025-12-17 19:46:38', 'dJPNk9nA', '6654471'), + (493, 2396, 'maybe', '2024-01-14 20:47:37', '2025-12-17 19:46:38', 'dJPNk9nA', '6655401'), + (493, 2397, 'maybe', '2024-01-09 00:34:43', '2025-12-17 19:46:37', 'dJPNk9nA', '6657379'), + (493, 2399, 'attending', '2024-01-08 13:21:32', '2025-12-17 19:46:37', 'dJPNk9nA', '6657583'), + (493, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dJPNk9nA', '6661585'), + (493, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dJPNk9nA', '6661588'), + (493, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dJPNk9nA', '6661589'), + (493, 2405, 'not_attending', '2024-01-17 01:22:24', '2025-12-17 19:46:38', 'dJPNk9nA', '6667332'), + (493, 2406, 'not_attending', '2024-01-18 20:15:38', '2025-12-17 19:46:40', 'dJPNk9nA', '6692344'), + (493, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dJPNk9nA', '6699906'), + (493, 2408, 'not_attending', '2024-01-15 11:37:32', '2025-12-17 19:46:40', 'dJPNk9nA', '6699907'), + (493, 2409, 'attending', '2024-01-20 16:02:53', '2025-12-17 19:46:41', 'dJPNk9nA', '6699909'), + (493, 2410, 'attending', '2024-01-20 16:02:55', '2025-12-17 19:46:41', 'dJPNk9nA', '6699911'), + (493, 2411, 'attending', '2024-01-20 16:06:56', '2025-12-17 19:46:41', 'dJPNk9nA', '6699913'), + (493, 2412, 'not_attending', '2024-01-20 16:10:42', '2025-12-17 19:46:43', 'dJPNk9nA', '6700717'), + (493, 2414, 'attending', '2024-01-19 12:28:08', '2025-12-17 19:46:40', 'dJPNk9nA', '6701000'), + (493, 2415, 'attending', '2024-01-19 12:28:11', '2025-12-17 19:46:40', 'dJPNk9nA', '6701001'), + (493, 2416, 'maybe', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dJPNk9nA', '6701109'), + (493, 2419, 'not_attending', '2024-01-25 04:22:36', '2025-12-17 19:46:41', 'dJPNk9nA', '6704505'), + (493, 2421, 'maybe', '2024-01-21 15:40:15', '2025-12-17 19:46:40', 'dJPNk9nA', '6704598'), + (493, 2423, 'maybe', '2024-01-21 15:40:12', '2025-12-17 19:46:40', 'dJPNk9nA', '6705141'), + (493, 2424, 'not_attending', '2024-01-19 12:27:41', '2025-12-17 19:46:40', 'dJPNk9nA', '6705143'), + (493, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dJPNk9nA', '6705219'), + (493, 2426, 'maybe', '2024-01-21 15:40:53', '2025-12-17 19:46:40', 'dJPNk9nA', '6705569'), + (493, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dJPNk9nA', '6710153'), + (493, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dJPNk9nA', '6711552'), + (493, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dJPNk9nA', '6711553'), + (493, 2431, 'maybe', '2024-01-31 04:53:23', '2025-12-17 19:46:41', 'dJPNk9nA', '6712394'), + (493, 2433, 'not_attending', '2024-01-25 04:23:31', '2025-12-17 19:46:40', 'dJPNk9nA', '6715688'), + (493, 2435, 'maybe', '2024-01-29 15:14:00', '2025-12-17 19:46:41', 'dJPNk9nA', '6721547'), + (493, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dJPNk9nA', '6722688'), + (493, 2438, 'attending', '2024-02-02 16:56:13', '2025-12-17 19:46:41', 'dJPNk9nA', '6730201'), + (493, 2439, 'maybe', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dJPNk9nA', '6730620'), + (493, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dJPNk9nA', '6730642'), + (493, 2441, 'maybe', '2024-02-01 02:16:13', '2025-12-17 19:46:41', 'dJPNk9nA', '6731263'), + (493, 2443, 'attending', '2024-02-03 15:25:06', '2025-12-17 19:46:41', 'dJPNk9nA', '6733775'), + (493, 2445, 'maybe', '2024-02-11 16:58:57', '2025-12-17 19:46:41', 'dJPNk9nA', '6734368'), + (493, 2447, 'maybe', '2024-03-14 16:16:18', '2025-12-17 19:46:32', 'dJPNk9nA', '6734370'), + (493, 2448, 'not_attending', '2024-03-28 15:37:30', '2025-12-17 19:46:33', 'dJPNk9nA', '6734371'), + (493, 2450, 'not_attending', '2024-02-11 04:46:54', '2025-12-17 19:46:41', 'dJPNk9nA', '6738807'), + (493, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dJPNk9nA', '6740364'), + (493, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dJPNk9nA', '6743829'), + (493, 2461, 'attending', '2024-02-10 15:34:27', '2025-12-17 19:46:41', 'dJPNk9nA', '6744245'), + (493, 2462, 'maybe', '2024-02-13 00:48:08', '2025-12-17 19:46:41', 'dJPNk9nA', '6744701'), + (493, 2465, 'not_attending', '2024-02-22 17:28:42', '2025-12-17 19:46:42', 'dJPNk9nA', '7026725'), + (493, 2466, 'attending', '2024-02-14 01:23:39', '2025-12-17 19:46:41', 'dJPNk9nA', '7026777'), + (493, 2467, 'attending', '2024-02-22 17:29:12', '2025-12-17 19:46:43', 'dJPNk9nA', '7029987'), + (493, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dJPNk9nA', '7030380'), + (493, 2471, 'maybe', '2024-02-22 17:28:46', '2025-12-17 19:46:42', 'dJPNk9nA', '7032425'), + (493, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'dJPNk9nA', '7033677'), + (493, 2473, 'not_attending', '2024-02-22 17:28:37', '2025-12-17 19:46:43', 'dJPNk9nA', '7033724'), + (493, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dJPNk9nA', '7035415'), + (493, 2475, 'not_attending', '2024-02-22 17:28:32', '2025-12-17 19:46:43', 'dJPNk9nA', '7035643'), + (493, 2476, 'attending', '2024-02-22 17:28:35', '2025-12-17 19:46:43', 'dJPNk9nA', '7035691'), + (493, 2477, 'maybe', '2024-02-22 17:28:25', '2025-12-17 19:46:42', 'dJPNk9nA', '7035692'), + (493, 2478, 'attending', '2024-02-22 17:26:21', '2025-12-17 19:46:43', 'dJPNk9nA', '7036478'), + (493, 2479, 'not_attending', '2024-02-22 17:28:39', '2025-12-17 19:46:43', 'dJPNk9nA', '7037009'), + (493, 2480, 'attending', '2024-02-25 18:06:20', '2025-12-17 19:46:43', 'dJPNk9nA', '7042160'), + (493, 2481, 'maybe', '2024-02-26 00:38:39', '2025-12-17 19:46:43', 'dJPNk9nA', '7044715'), + (493, 2482, 'not_attending', '2024-02-26 03:11:31', '2025-12-17 19:46:44', 'dJPNk9nA', '7044719'), + (493, 2484, 'attending', '2024-02-26 03:09:56', '2025-12-17 19:46:43', 'dJPNk9nA', '7046836'), + (493, 2486, 'maybe', '2024-02-27 13:08:50', '2025-12-17 19:46:43', 'dJPNk9nA', '7048277'), + (493, 2487, 'not_attending', '2024-03-05 00:37:57', '2025-12-17 19:46:33', 'dJPNk9nA', '7049279'), + (493, 2489, 'attending', '2024-02-27 23:18:16', '2025-12-17 19:46:43', 'dJPNk9nA', '7050161'), + (493, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dJPNk9nA', '7050318'), + (493, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dJPNk9nA', '7050319'), + (493, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dJPNk9nA', '7050322'), + (493, 2493, 'maybe', '2024-03-05 00:38:20', '2025-12-17 19:46:32', 'dJPNk9nA', '7052471'), + (493, 2495, 'not_attending', '2024-03-05 17:48:03', '2025-12-17 19:46:32', 'dJPNk9nA', '7052982'), + (493, 2496, 'attending', '2024-03-02 21:41:48', '2025-12-17 19:46:43', 'dJPNk9nA', '7055967'), + (493, 2498, 'attending', '2024-03-20 01:30:24', '2025-12-17 19:46:33', 'dJPNk9nA', '7057662'), + (493, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dJPNk9nA', '7057804'), + (493, 2500, 'attending', '2024-03-06 19:50:27', '2025-12-17 19:46:43', 'dJPNk9nA', '7058603'), + (493, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dJPNk9nA', '7059866'), + (493, 2504, 'not_attending', '2024-03-10 17:37:49', '2025-12-17 19:46:33', 'dJPNk9nA', '7063296'), + (493, 2505, 'attending', '2024-03-12 15:15:32', '2025-12-17 19:46:33', 'dJPNk9nA', '7069163'), + (493, 2507, 'attending', '2024-03-12 15:20:25', '2025-12-17 19:46:33', 'dJPNk9nA', '7072824'), + (493, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dJPNk9nA', '7074348'), + (493, 2509, 'attending', '2024-03-28 15:34:53', '2025-12-17 19:46:33', 'dJPNk9nA', '7074349'), + (493, 2512, 'not_attending', '2024-04-04 20:03:58', '2025-12-17 19:46:33', 'dJPNk9nA', '7074352'), + (493, 2513, 'not_attending', '2024-03-31 19:09:41', '2025-12-17 19:46:34', 'dJPNk9nA', '7074353'), + (493, 2514, 'not_attending', '2024-03-31 19:09:45', '2025-12-17 19:46:34', 'dJPNk9nA', '7074354'), + (493, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJPNk9nA', '7074364'), + (493, 2525, 'attending', '2024-06-13 23:37:14', '2025-12-17 19:46:28', 'dJPNk9nA', '7074365'), + (493, 2526, 'not_attending', '2024-07-27 02:35:59', '2025-12-17 19:46:31', 'dJPNk9nA', '7074366'), + (493, 2527, 'not_attending', '2024-06-27 18:34:26', '2025-12-17 19:46:29', 'dJPNk9nA', '7074367'), + (493, 2528, 'not_attending', '2024-07-26 23:47:55', '2025-12-17 19:46:31', 'dJPNk9nA', '7074368'), + (493, 2529, 'maybe', '2024-05-23 21:05:21', '2025-12-17 19:46:35', 'dJPNk9nA', '7074369'), + (493, 2530, 'not_attending', '2024-06-10 11:06:23', '2025-12-17 19:46:31', 'dJPNk9nA', '7074373'), + (493, 2531, 'not_attending', '2024-06-10 11:06:19', '2025-12-17 19:46:32', 'dJPNk9nA', '7074378'), + (493, 2533, 'not_attending', '2024-06-10 11:06:21', '2025-12-17 19:46:32', 'dJPNk9nA', '7074384'), + (493, 2534, 'attending', '2024-03-13 17:45:38', '2025-12-17 19:46:32', 'dJPNk9nA', '7076875'), + (493, 2537, 'attending', '2024-03-17 02:14:27', '2025-12-17 19:46:33', 'dJPNk9nA', '7085484'), + (493, 2538, 'attending', '2024-03-17 02:14:21', '2025-12-17 19:46:33', 'dJPNk9nA', '7085485'), + (493, 2539, 'not_attending', '2024-03-17 02:20:25', '2025-12-17 19:46:33', 'dJPNk9nA', '7085486'), + (493, 2540, 'attending', '2024-03-16 21:39:45', '2025-12-17 19:46:32', 'dJPNk9nA', '7089267'), + (493, 2542, 'attending', '2024-03-26 01:22:24', '2025-12-17 19:46:33', 'dJPNk9nA', '7090025'), + (493, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dJPNk9nA', '7098747'), + (493, 2550, 'attending', '2024-03-26 20:11:38', '2025-12-17 19:46:33', 'dJPNk9nA', '7102333'), + (493, 2552, 'attending', '2024-03-28 01:12:43', '2025-12-17 19:46:33', 'dJPNk9nA', '7111123'), + (493, 2553, 'attending', '2024-03-29 12:41:50', '2025-12-17 19:46:33', 'dJPNk9nA', '7113468'), + (493, 2554, 'attending', '2024-03-30 21:43:25', '2025-12-17 19:46:33', 'dJPNk9nA', '7114856'), + (493, 2555, 'attending', '2024-03-31 19:09:30', '2025-12-17 19:46:33', 'dJPNk9nA', '7114951'), + (493, 2556, 'not_attending', '2024-03-31 19:09:22', '2025-12-17 19:46:34', 'dJPNk9nA', '7114955'), + (493, 2557, 'attending', '2024-03-31 19:08:55', '2025-12-17 19:46:34', 'dJPNk9nA', '7114956'), + (493, 2558, 'not_attending', '2024-04-05 21:29:05', '2025-12-17 19:46:35', 'dJPNk9nA', '7114957'), + (493, 2561, 'attending', '2024-04-01 22:18:29', '2025-12-17 19:46:33', 'dJPNk9nA', '7131267'), + (493, 2563, 'maybe', '2024-04-04 23:38:16', '2025-12-17 19:46:33', 'dJPNk9nA', '7134734'), + (493, 2564, 'attending', '2024-04-09 01:29:57', '2025-12-17 19:46:33', 'dJPNk9nA', '7134735'), + (493, 2566, 'not_attending', '2024-04-07 22:41:08', '2025-12-17 19:46:34', 'dJPNk9nA', '7140664'), + (493, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dJPNk9nA', '7153615'), + (493, 2571, 'attending', '2024-04-07 21:00:15', '2025-12-17 19:46:33', 'dJPNk9nA', '7159484'), + (493, 2572, 'attending', '2024-04-11 01:06:22', '2025-12-17 19:46:33', 'dJPNk9nA', '7159522'), + (493, 2573, 'not_attending', '2024-04-11 18:52:17', '2025-12-17 19:46:34', 'dJPNk9nA', '7160612'), + (493, 2575, 'attending', '2024-04-12 13:29:34', '2025-12-17 19:46:33', 'dJPNk9nA', '7164534'), + (493, 2576, 'not_attending', '2024-04-16 10:32:40', '2025-12-17 19:46:34', 'dJPNk9nA', '7164538'), + (493, 2578, 'not_attending', '2024-04-11 18:52:13', '2025-12-17 19:46:34', 'dJPNk9nA', '7167016'), + (493, 2581, 'not_attending', '2024-04-16 10:32:33', '2025-12-17 19:46:34', 'dJPNk9nA', '7169048'), + (493, 2584, 'not_attending', '2024-04-18 10:33:59', '2025-12-17 19:46:34', 'dJPNk9nA', '7175057'), + (493, 2585, 'not_attending', '2024-04-16 10:32:35', '2025-12-17 19:46:34', 'dJPNk9nA', '7175828'), + (493, 2589, 'not_attending', '2024-04-16 10:32:43', '2025-12-17 19:46:34', 'dJPNk9nA', '7177235'), + (493, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dJPNk9nA', '7178446'), + (493, 2596, 'attending', '2024-04-25 15:36:18', '2025-12-17 19:46:34', 'dJPNk9nA', '7183788'), + (493, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dJPNk9nA', '7220467'), + (493, 2603, 'attending', '2024-05-09 21:44:38', '2025-12-17 19:46:35', 'dJPNk9nA', '7225669'), + (493, 2604, 'attending', '2024-05-16 01:47:49', '2025-12-17 19:46:36', 'dJPNk9nA', '7225670'), + (493, 2605, 'not_attending', '2024-05-02 20:02:16', '2025-12-17 19:46:35', 'dJPNk9nA', '7229243'), + (493, 2609, 'attending', '2024-05-05 09:46:44', '2025-12-17 19:46:35', 'dJPNk9nA', '7240354'), + (493, 2611, 'maybe', '2024-05-06 12:48:20', '2025-12-17 19:46:35', 'dJPNk9nA', '7247642'), + (493, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dJPNk9nA', '7251633'), + (493, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dJPNk9nA', '7263048'), + (493, 2626, 'attending', '2024-05-12 03:39:06', '2025-12-17 19:46:35', 'dJPNk9nA', '7264723'), + (493, 2627, 'not_attending', '2024-05-12 03:39:12', '2025-12-17 19:46:35', 'dJPNk9nA', '7264724'), + (493, 2628, 'attending', '2024-05-12 03:39:13', '2025-12-17 19:46:36', 'dJPNk9nA', '7264725'), + (493, 2629, 'attending', '2024-05-12 03:39:14', '2025-12-17 19:46:28', 'dJPNk9nA', '7264726'), + (493, 2630, 'attending', '2024-05-16 10:52:58', '2025-12-17 19:46:35', 'dJPNk9nA', '7264801'), + (493, 2631, 'attending', '2024-05-12 15:50:03', '2025-12-17 19:46:35', 'dJPNk9nA', '7265589'), + (493, 2632, 'maybe', '2024-05-14 17:32:52', '2025-12-17 19:46:35', 'dJPNk9nA', '7269123'), + (493, 2641, 'maybe', '2024-05-19 23:33:39', '2025-12-17 19:46:35', 'dJPNk9nA', '7276107'), + (493, 2643, 'attending', '2024-05-18 14:52:41', '2025-12-17 19:46:35', 'dJPNk9nA', '7276587'), + (493, 2644, 'attending', '2024-05-19 19:56:44', '2025-12-17 19:46:35', 'dJPNk9nA', '7279039'), + (493, 2646, 'not_attending', '2024-05-20 21:57:41', '2025-12-17 19:46:35', 'dJPNk9nA', '7281768'), + (493, 2647, 'attending', '2024-05-26 12:59:00', '2025-12-17 19:46:28', 'dJPNk9nA', '7282057'), + (493, 2649, 'attending', '2024-05-22 16:09:20', '2025-12-17 19:46:35', 'dJPNk9nA', '7282950'), + (493, 2652, 'attending', '2024-05-26 12:58:32', '2025-12-17 19:46:36', 'dJPNk9nA', '7288339'), + (493, 2656, 'attending', '2024-05-30 22:27:25', '2025-12-17 19:46:36', 'dJPNk9nA', '7291301'), + (493, 2657, 'attending', '2024-05-29 15:55:21', '2025-12-17 19:46:36', 'dJPNk9nA', '7294438'), + (493, 2659, 'attending', '2024-06-01 21:55:01', '2025-12-17 19:46:36', 'dJPNk9nA', '7299599'), + (493, 2660, 'attending', '2024-06-02 06:17:44', '2025-12-17 19:46:36', 'dJPNk9nA', '7301638'), + (493, 2661, 'attending', '2024-06-02 14:03:30', '2025-12-17 19:46:28', 'dJPNk9nA', '7302674'), + (493, 2663, 'attending', '2024-06-03 04:15:27', '2025-12-17 19:46:36', 'dJPNk9nA', '7303913'), + (493, 2665, 'attending', '2024-06-07 20:40:29', '2025-12-17 19:46:36', 'dJPNk9nA', '7306370'), + (493, 2667, 'attending', '2024-06-05 13:18:08', '2025-12-17 19:46:36', 'dJPNk9nA', '7307776'), + (493, 2668, 'attending', '2024-06-05 19:37:57', '2025-12-17 19:46:36', 'dJPNk9nA', '7308821'), + (493, 2669, 'attending', '2024-06-08 14:29:29', '2025-12-17 19:46:36', 'dJPNk9nA', '7318057'), + (493, 2670, 'attending', '2024-06-08 17:56:21', '2025-12-17 19:46:36', 'dJPNk9nA', '7318188'), + (493, 2675, 'not_attending', '2024-07-26 23:48:09', '2025-12-17 19:46:31', 'dJPNk9nA', '7319481'), + (493, 2676, 'maybe', '2024-08-12 19:45:36', '2025-12-17 19:46:32', 'dJPNk9nA', '7319482'), + (493, 2677, 'attending', '2024-10-04 09:54:46', '2025-12-17 19:46:26', 'dJPNk9nA', '7319483'), + (493, 2678, 'attending', '2024-06-10 11:05:54', '2025-12-17 19:46:28', 'dJPNk9nA', '7319489'), + (493, 2679, 'not_attending', '2024-06-09 22:37:49', '2025-12-17 19:46:29', 'dJPNk9nA', '7319490'), + (493, 2682, 'attending', '2024-06-10 12:56:46', '2025-12-17 19:46:28', 'dJPNk9nA', '7321862'), + (493, 2684, 'attending', '2024-06-10 19:30:02', '2025-12-17 19:46:28', 'dJPNk9nA', '7322001'), + (493, 2687, 'attending', '2024-06-11 19:35:30', '2025-12-17 19:46:28', 'dJPNk9nA', '7324019'), + (493, 2688, 'attending', '2024-06-13 10:39:27', '2025-12-17 19:46:29', 'dJPNk9nA', '7324073'), + (493, 2689, 'attending', '2024-06-12 12:49:50', '2025-12-17 19:46:29', 'dJPNk9nA', '7324074'), + (493, 2690, 'attending', '2024-06-12 12:49:53', '2025-12-17 19:46:30', 'dJPNk9nA', '7324075'), + (493, 2691, 'attending', '2024-06-12 12:49:48', '2025-12-17 19:46:30', 'dJPNk9nA', '7324076'), + (493, 2692, 'not_attending', '2024-06-12 12:49:37', '2025-12-17 19:46:30', 'dJPNk9nA', '7324077'), + (493, 2693, 'not_attending', '2024-07-05 21:15:05', '2025-12-17 19:46:31', 'dJPNk9nA', '7324078'), + (493, 2694, 'not_attending', '2024-07-05 21:15:01', '2025-12-17 19:46:31', 'dJPNk9nA', '7324079'), + (493, 2695, 'not_attending', '2024-06-12 12:50:04', '2025-12-17 19:46:31', 'dJPNk9nA', '7324080'), + (493, 2696, 'not_attending', '2024-06-12 12:50:02', '2025-12-17 19:46:32', 'dJPNk9nA', '7324081'), + (493, 2697, 'not_attending', '2024-07-23 14:49:19', '2025-12-17 19:46:32', 'dJPNk9nA', '7324082'), + (493, 2698, 'attending', '2024-07-05 21:15:34', '2025-12-17 19:46:24', 'dJPNk9nA', '7324083'), + (493, 2699, 'attending', '2024-06-12 16:47:36', '2025-12-17 19:46:28', 'dJPNk9nA', '7324385'), + (493, 2700, 'attending', '2024-06-13 16:56:10', '2025-12-17 19:46:28', 'dJPNk9nA', '7324388'), + (493, 2701, 'maybe', '2024-06-28 02:12:33', '2025-12-17 19:46:29', 'dJPNk9nA', '7324391'), + (493, 2702, 'attending', '2024-06-13 10:32:35', '2025-12-17 19:46:28', 'dJPNk9nA', '7324867'), + (493, 2705, 'attending', '2024-06-13 13:16:55', '2025-12-17 19:46:29', 'dJPNk9nA', '7324944'), + (493, 2706, 'attending', '2024-06-16 22:43:58', '2025-12-17 19:46:28', 'dJPNk9nA', '7324947'), + (493, 2711, 'not_attending', '2024-07-15 04:03:52', '2025-12-17 19:46:30', 'dJPNk9nA', '7326524'), + (493, 2712, 'not_attending', '2024-07-27 02:35:48', '2025-12-17 19:46:31', 'dJPNk9nA', '7326525'), + (493, 2716, 'not_attending', '2024-06-16 22:44:14', '2025-12-17 19:46:29', 'dJPNk9nA', '7329096'), + (493, 2722, 'attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dJPNk9nA', '7331457'), + (493, 2724, 'attending', '2024-06-24 20:54:00', '2025-12-17 19:46:29', 'dJPNk9nA', '7332562'), + (493, 2729, 'not_attending', '2024-06-23 15:55:42', '2025-12-17 19:46:29', 'dJPNk9nA', '7335092'), + (493, 2731, 'maybe', '2024-06-24 23:56:53', '2025-12-17 19:46:29', 'dJPNk9nA', '7335303'), + (493, 2736, 'attending', '2024-06-29 19:15:15', '2025-12-17 19:46:29', 'dJPNk9nA', '7342038'), + (493, 2743, 'maybe', '2024-07-05 22:15:28', '2025-12-17 19:46:29', 'dJPNk9nA', '7345688'), + (493, 2745, 'maybe', '2024-07-24 18:26:49', '2025-12-17 19:46:30', 'dJPNk9nA', '7348712'), + (493, 2746, 'maybe', '2024-07-11 22:17:57', '2025-12-17 19:46:29', 'dJPNk9nA', '7348713'), + (493, 2747, 'attending', '2024-07-16 03:26:19', '2025-12-17 19:46:30', 'dJPNk9nA', '7353587'), + (493, 2748, 'attending', '2024-07-06 12:28:23', '2025-12-17 19:46:29', 'dJPNk9nA', '7353759'), + (493, 2749, 'maybe', '2024-07-07 18:42:30', '2025-12-17 19:46:29', 'dJPNk9nA', '7355496'), + (493, 2755, 'attending', '2024-07-09 20:07:19', '2025-12-17 19:46:29', 'dJPNk9nA', '7357808'), + (493, 2757, 'attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dJPNk9nA', '7358733'), + (493, 2758, 'maybe', '2024-07-16 03:26:15', '2025-12-17 19:46:30', 'dJPNk9nA', '7358837'), + (493, 2759, 'attending', '2024-07-12 18:10:59', '2025-12-17 19:46:30', 'dJPNk9nA', '7359624'), + (493, 2764, 'not_attending', '2024-07-14 23:08:11', '2025-12-17 19:46:30', 'dJPNk9nA', '7363595'), + (493, 2766, 'not_attending', '2024-07-23 14:49:02', '2025-12-17 19:46:30', 'dJPNk9nA', '7363643'), + (493, 2767, 'attending', '2024-07-22 21:50:00', '2025-12-17 19:46:30', 'dJPNk9nA', '7364726'), + (493, 2768, 'maybe', '2024-07-18 00:38:14', '2025-12-17 19:46:30', 'dJPNk9nA', '7366031'), + (493, 2769, 'attending', '2024-07-19 20:03:10', '2025-12-17 19:46:30', 'dJPNk9nA', '7366803'), + (493, 2770, 'attending', '2024-07-20 20:40:50', '2025-12-17 19:46:30', 'dJPNk9nA', '7368196'), + (493, 2773, 'not_attending', '2024-07-27 02:35:51', '2025-12-17 19:46:31', 'dJPNk9nA', '7368605'), + (493, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJPNk9nA', '7368606'), + (493, 2776, 'attending', '2024-07-23 13:25:20', '2025-12-17 19:46:30', 'dJPNk9nA', '7370690'), + (493, 2777, 'not_attending', '2024-07-23 21:37:12', '2025-12-17 19:46:30', 'dJPNk9nA', '7370870'), + (493, 2778, 'not_attending', '2024-07-24 12:41:02', '2025-12-17 19:46:31', 'dJPNk9nA', '7371793'), + (493, 2779, 'not_attending', '2024-07-24 15:07:16', '2025-12-17 19:46:30', 'dJPNk9nA', '7371818'), + (493, 2780, 'not_attending', '2024-07-24 20:03:35', '2025-12-17 19:46:30', 'dJPNk9nA', '7371849'), + (493, 2781, 'not_attending', '2024-07-25 21:16:33', '2025-12-17 19:46:30', 'dJPNk9nA', '7373194'), + (493, 2782, 'not_attending', '2024-07-27 02:36:10', '2025-12-17 19:46:30', 'dJPNk9nA', '7376725'), + (493, 2786, 'not_attending', '2024-08-03 13:20:35', '2025-12-17 19:46:31', 'dJPNk9nA', '7381403'), + (493, 2787, 'not_attending', '2024-08-21 02:10:26', '2025-12-17 19:46:32', 'dJPNk9nA', '7381568'), + (493, 2788, 'not_attending', '2024-08-03 13:20:45', '2025-12-17 19:46:31', 'dJPNk9nA', '7384036'), + (493, 2796, 'not_attending', '2024-08-12 19:45:28', '2025-12-17 19:46:31', 'dJPNk9nA', '7391451'), + (493, 2797, 'not_attending', '2024-08-12 19:45:25', '2025-12-17 19:46:31', 'dJPNk9nA', '7392641'), + (493, 2798, 'not_attending', '2024-08-12 19:45:21', '2025-12-17 19:46:31', 'dJPNk9nA', '7395910'), + (493, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJPNk9nA', '7397462'), + (493, 2802, 'attending', '2024-09-01 20:39:10', '2025-12-17 19:46:32', 'dJPNk9nA', '7397463'), + (493, 2806, 'attending', '2024-09-04 20:55:36', '2025-12-17 19:46:25', 'dJPNk9nA', '7404888'), + (493, 2808, 'attending', '2024-09-01 19:46:23', '2025-12-17 19:46:32', 'dJPNk9nA', '7412860'), + (493, 2814, 'attending', '2024-09-08 16:16:28', '2025-12-17 19:46:24', 'dJPNk9nA', '7424267'), + (493, 2815, 'not_attending', '2024-09-09 14:59:08', '2025-12-17 19:46:25', 'dJPNk9nA', '7424268'), + (493, 2816, 'not_attending', '2024-09-09 14:59:16', '2025-12-17 19:46:25', 'dJPNk9nA', '7424269'), + (493, 2817, 'attending', '2024-09-09 14:59:18', '2025-12-17 19:46:25', 'dJPNk9nA', '7424270'), + (493, 2821, 'attending', '2024-09-10 21:30:28', '2025-12-17 19:46:26', 'dJPNk9nA', '7424275'), + (493, 2822, 'attending', '2024-10-11 20:22:27', '2025-12-17 19:46:26', 'dJPNk9nA', '7424276'), + (493, 2823, 'attending', '2024-09-06 13:29:26', '2025-12-17 19:46:24', 'dJPNk9nA', '7430247'), + (493, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJPNk9nA', '7432751'), + (493, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJPNk9nA', '7432752'), + (493, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJPNk9nA', '7432753'), + (493, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJPNk9nA', '7432754'), + (493, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJPNk9nA', '7432755'), + (493, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJPNk9nA', '7432756'), + (493, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJPNk9nA', '7432758'), + (493, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJPNk9nA', '7432759'), + (493, 2832, 'attending', '2024-09-10 12:29:59', '2025-12-17 19:46:24', 'dJPNk9nA', '7433324'), + (493, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dJPNk9nA', '7433834'), + (493, 2834, 'not_attending', '2024-09-11 13:59:52', '2025-12-17 19:46:25', 'dJPNk9nA', '7433852'), + (493, 2835, 'attending', '2024-09-11 13:10:31', '2025-12-17 19:46:24', 'dJPNk9nA', '7437354'), + (493, 2836, 'not_attending', '2024-09-13 11:46:00', '2025-12-17 19:46:25', 'dJPNk9nA', '7438708'), + (493, 2837, 'not_attending', '2024-09-13 11:46:02', '2025-12-17 19:46:25', 'dJPNk9nA', '7438711'), + (493, 2839, 'attending', '2024-09-13 02:53:57', '2025-12-17 19:46:25', 'dJPNk9nA', '7439262'), + (493, 2840, 'attending', '2024-09-15 23:45:05', '2025-12-17 19:46:25', 'dJPNk9nA', '7444429'), + (493, 2844, 'attending', '2024-09-19 22:49:45', '2025-12-17 19:46:25', 'dJPNk9nA', '7450233'), + (493, 2845, 'attending', '2024-09-21 18:26:52', '2025-12-17 19:46:25', 'dJPNk9nA', '7452129'), + (493, 2846, 'attending', '2024-09-21 20:37:29', '2025-12-17 19:46:25', 'dJPNk9nA', '7452148'), + (493, 2847, 'not_attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', 'dJPNk9nA', '7452299'), + (493, 2848, 'attending', '2024-09-24 12:53:59', '2025-12-17 19:46:25', 'dJPNk9nA', '7456145'), + (493, 2849, 'maybe', '2024-09-30 10:47:52', '2025-12-17 19:46:25', 'dJPNk9nA', '7457114'), + (493, 2850, 'maybe', '2024-09-25 13:42:46', '2025-12-17 19:46:25', 'dJPNk9nA', '7457153'), + (493, 2851, 'attending', '2024-09-28 19:54:44', '2025-12-17 19:46:25', 'dJPNk9nA', '7461883'), + (493, 2854, 'not_attending', '2024-10-06 02:27:14', '2025-12-17 19:46:26', 'dJPNk9nA', '7465684'), + (493, 2859, 'not_attending', '2024-10-31 12:52:24', '2025-12-17 19:46:26', 'dJPNk9nA', '7469389'), + (493, 2861, 'not_attending', '2024-10-01 11:20:23', '2025-12-17 19:46:26', 'dJPNk9nA', '7469826'), + (493, 2862, 'maybe', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dJPNk9nA', '7470197'), + (493, 2869, 'not_attending', '2024-10-05 16:50:39', '2025-12-17 19:46:26', 'dJPNk9nA', '7474823'), + (493, 2870, 'attending', '2024-10-04 09:54:21', '2025-12-17 19:46:26', 'dJPNk9nA', '7475068'), + (493, 2871, 'attending', '2024-10-09 13:48:42', '2025-12-17 19:46:26', 'dJPNk9nA', '7480481'), + (493, 2878, 'maybe', '2024-10-15 15:28:31', '2025-12-17 19:46:26', 'dJPNk9nA', '7633857'), + (493, 2880, 'attending', '2024-10-11 12:23:47', '2025-12-17 19:46:26', 'dJPNk9nA', '7636316'), + (493, 2883, 'attending', '2024-10-17 01:11:31', '2025-12-17 19:46:26', 'dJPNk9nA', '7649157'), + (493, 2891, 'attending', '2024-10-25 14:16:15', '2025-12-17 19:46:26', 'dJPNk9nA', '7668163'), + (493, 2892, 'maybe', '2024-10-30 16:00:20', '2025-12-17 19:46:26', 'dJPNk9nA', '7672064'), + (493, 2894, 'attending', '2024-11-02 19:14:22', '2025-12-17 19:46:26', 'dJPNk9nA', '7680059'), + (493, 2895, 'maybe', '2024-11-07 12:35:03', '2025-12-17 19:46:26', 'dJPNk9nA', '7682072'), + (493, 2898, 'attending', '2024-11-07 16:31:30', '2025-12-17 19:46:26', 'dJPNk9nA', '7685613'), + (493, 2899, 'not_attending', '2024-11-11 12:43:09', '2025-12-17 19:46:27', 'dJPNk9nA', '7685616'), + (493, 2902, 'not_attending', '2024-11-11 12:43:26', '2025-12-17 19:46:27', 'dJPNk9nA', '7686381'), + (493, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJPNk9nA', '7688194'), + (493, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJPNk9nA', '7688196'), + (493, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJPNk9nA', '7688289'), + (493, 2906, 'attending', '2024-11-09 21:43:43', '2025-12-17 19:46:26', 'dJPNk9nA', '7689366'), + (493, 2909, 'not_attending', '2024-11-10 21:21:58', '2025-12-17 19:46:27', 'dJPNk9nA', '7689771'), + (493, 2911, 'maybe', '2024-11-12 13:02:10', '2025-12-17 19:46:27', 'dJPNk9nA', '7689876'), + (493, 2912, 'attending', '2024-11-13 19:49:20', '2025-12-17 19:46:27', 'dJPNk9nA', '7692763'), + (493, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dJPNk9nA', '7697552'), + (493, 2915, 'not_attending', '2024-11-21 04:33:40', '2025-12-17 19:46:27', 'dJPNk9nA', '7698151'), + (493, 2917, 'attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dJPNk9nA', '7699878'), + (493, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dJPNk9nA', '7704043'), + (493, 2920, 'attending', '2024-11-23 19:50:44', '2025-12-17 19:46:28', 'dJPNk9nA', '7708406'), + (493, 2921, 'not_attending', '2024-11-26 12:43:14', '2025-12-17 19:46:28', 'dJPNk9nA', '7708460'), + (493, 2924, 'attending', '2024-11-27 18:53:28', '2025-12-17 19:46:28', 'dJPNk9nA', '7712467'), + (493, 2925, 'attending', '2024-11-28 16:27:16', '2025-12-17 19:46:21', 'dJPNk9nA', '7713584'), + (493, 2926, 'not_attending', '2024-11-28 16:27:30', '2025-12-17 19:46:21', 'dJPNk9nA', '7713585'), + (493, 2927, 'attending', '2024-11-28 16:27:18', '2025-12-17 19:46:22', 'dJPNk9nA', '7713586'), + (493, 2934, 'attending', '2024-12-19 18:55:05', '2025-12-17 19:46:22', 'dJPNk9nA', '7725952'), + (493, 2936, 'not_attending', '2024-12-19 18:55:03', '2025-12-17 19:46:22', 'dJPNk9nA', '7725954'), + (493, 2937, 'attending', '2024-12-11 05:03:21', '2025-12-17 19:46:21', 'dJPNk9nA', '7725955'), + (493, 2938, 'attending', '2024-12-19 18:55:07', '2025-12-17 19:46:22', 'dJPNk9nA', '7725956'), + (493, 2939, 'not_attending', '2025-02-10 16:46:05', '2025-12-17 19:46:24', 'dJPNk9nA', '7725957'), + (493, 2940, 'attending', '2025-01-23 13:41:02', '2025-12-17 19:46:22', 'dJPNk9nA', '7725958'), + (493, 2942, 'not_attending', '2025-02-10 16:46:12', '2025-12-17 19:46:24', 'dJPNk9nA', '7725960'), + (493, 2943, 'not_attending', '2025-03-07 19:23:08', '2025-12-17 19:46:18', 'dJPNk9nA', '7725961'), + (493, 2944, 'attending', '2025-02-28 16:22:31', '2025-12-17 19:46:24', 'dJPNk9nA', '7725963'), + (493, 2945, 'not_attending', '2025-03-11 16:32:45', '2025-12-17 19:46:19', 'dJPNk9nA', '7725964'), + (493, 2947, 'maybe', '2024-12-11 05:03:16', '2025-12-17 19:46:21', 'dJPNk9nA', '7727445'), + (493, 2954, 'attending', '2024-12-14 18:07:52', '2025-12-17 19:46:21', 'dJPNk9nA', '7734260'), + (493, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dJPNk9nA', '7738518'), + (493, 2959, 'attending', '2024-12-20 21:04:48', '2025-12-17 19:46:22', 'dJPNk9nA', '7747388'), + (493, 2961, 'attending', '2024-12-21 22:36:35', '2025-12-17 19:46:22', 'dJPNk9nA', '7748626'), + (493, 2962, 'attending', '2024-12-25 04:08:01', '2025-12-17 19:46:22', 'dJPNk9nA', '7750632'), + (493, 2963, 'attending', '2024-12-25 04:08:29', '2025-12-17 19:46:22', 'dJPNk9nA', '7750636'), + (493, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dJPNk9nA', '7796540'), + (493, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dJPNk9nA', '7796541'), + (493, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dJPNk9nA', '7796542'), + (493, 2968, 'attending', '2025-01-08 20:15:51', '2025-12-17 19:46:22', 'dJPNk9nA', '7797967'), + (493, 2969, 'attending', '2025-01-11 21:15:50', '2025-12-17 19:46:22', 'dJPNk9nA', '7800474'), + (493, 2974, 'attending', '2025-01-18 18:30:07', '2025-12-17 19:46:22', 'dJPNk9nA', '7814958'), + (493, 2975, 'attending', '2025-01-25 20:26:15', '2025-12-17 19:46:22', 'dJPNk9nA', '7823615'), + (493, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dJPNk9nA', '7825913'), + (493, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dJPNk9nA', '7826209'), + (493, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dJPNk9nA', '7834742'), + (493, 2986, 'attending', '2025-02-04 18:19:31', '2025-12-17 19:46:23', 'dJPNk9nA', '7835405'), + (493, 2987, 'attending', '2025-02-07 14:30:16', '2025-12-17 19:46:23', 'dJPNk9nA', '7839568'), + (493, 2988, 'attending', '2025-02-07 14:33:50', '2025-12-17 19:46:23', 'dJPNk9nA', '7839569'), + (493, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dJPNk9nA', '7842108'), + (493, 2990, 'attending', '2025-02-15 17:08:21', '2025-12-17 19:46:23', 'dJPNk9nA', '7842898'), + (493, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dJPNk9nA', '7842902'), + (493, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dJPNk9nA', '7842903'), + (493, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dJPNk9nA', '7842904'), + (493, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dJPNk9nA', '7842905'), + (493, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'dJPNk9nA', '7842906'), + (493, 2996, 'attending', '2025-02-11 16:42:41', '2025-12-17 19:46:24', 'dJPNk9nA', '7842907'), + (493, 2997, 'maybe', '2025-02-11 16:42:33', '2025-12-17 19:46:18', 'dJPNk9nA', '7842908'), + (493, 2998, 'attending', '2025-02-11 16:42:35', '2025-12-17 19:46:18', 'dJPNk9nA', '7842909'), + (493, 3000, 'not_attending', '2025-02-21 23:36:19', '2025-12-17 19:46:24', 'dJPNk9nA', '7852541'), + (493, 3002, 'not_attending', '2025-02-21 23:36:16', '2025-12-17 19:46:24', 'dJPNk9nA', '7854212'), + (493, 3003, 'not_attending', '2025-02-20 22:26:28', '2025-12-17 19:46:24', 'dJPNk9nA', '7854589'), + (493, 3004, 'not_attending', '2025-02-20 22:26:25', '2025-12-17 19:46:24', 'dJPNk9nA', '7854599'), + (493, 3005, 'not_attending', '2025-02-19 12:46:47', '2025-12-17 19:46:24', 'dJPNk9nA', '7854604'), + (493, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dJPNk9nA', '7855719'), + (493, 3007, 'maybe', '2025-02-24 18:53:53', '2025-12-17 19:46:24', 'dJPNk9nA', '7860683'), + (493, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dJPNk9nA', '7860684'), + (493, 3010, 'not_attending', '2025-03-07 19:23:07', '2025-12-17 19:46:18', 'dJPNk9nA', '7864879'), + (493, 3011, 'attending', '2025-03-01 20:40:21', '2025-12-17 19:46:24', 'dJPNk9nA', '7865624'), + (493, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dJPNk9nA', '7866095'), + (493, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dJPNk9nA', '7869170'), + (493, 3014, 'attending', '2025-03-10 23:24:22', '2025-12-17 19:46:19', 'dJPNk9nA', '7869185'), + (493, 3015, 'not_attending', '2025-03-31 17:21:39', '2025-12-17 19:46:20', 'dJPNk9nA', '7869186'), + (493, 3016, 'attending', '2025-03-31 17:21:44', '2025-12-17 19:46:20', 'dJPNk9nA', '7869187'), + (493, 3017, 'attending', '2025-03-10 23:24:18', '2025-12-17 19:46:19', 'dJPNk9nA', '7869188'), + (493, 3018, 'not_attending', '2025-03-31 17:21:47', '2025-12-17 19:46:20', 'dJPNk9nA', '7869189'), + (493, 3019, 'attending', '2025-04-05 22:21:48', '2025-12-17 19:46:20', 'dJPNk9nA', '7869190'), + (493, 3021, 'not_attending', '2025-04-07 18:54:20', '2025-12-17 19:46:20', 'dJPNk9nA', '7869192'), + (493, 3022, 'not_attending', '2025-04-07 18:54:36', '2025-12-17 19:46:20', 'dJPNk9nA', '7869193'), + (493, 3023, 'maybe', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'dJPNk9nA', '7869194'), + (493, 3024, 'attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'dJPNk9nA', '7869195'), + (493, 3028, 'maybe', '2025-03-24 18:30:12', '2025-12-17 19:46:20', 'dJPNk9nA', '7869199'), + (493, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dJPNk9nA', '7869201'), + (493, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dJPNk9nA', '7877465'), + (493, 3034, 'attending', '2025-03-11 16:53:30', '2025-12-17 19:46:18', 'dJPNk9nA', '7878570'), + (493, 3036, 'attending', '2025-03-13 19:24:46', '2025-12-17 19:46:19', 'dJPNk9nA', '7880952'), + (493, 3039, 'not_attending', '2025-03-17 16:51:44', '2025-12-17 19:46:19', 'dJPNk9nA', '7881992'), + (493, 3040, 'maybe', '2025-03-17 16:52:29', '2025-12-17 19:46:19', 'dJPNk9nA', '7881994'), + (493, 3042, 'attending', '2025-03-15 12:30:21', '2025-12-17 19:46:19', 'dJPNk9nA', '7882467'), + (493, 3043, 'attending', '2025-03-15 19:10:08', '2025-12-17 19:46:19', 'dJPNk9nA', '7882587'), + (493, 3045, 'attending', '2025-04-01 13:12:46', '2025-12-17 19:46:19', 'dJPNk9nA', '7882691'), + (493, 3046, 'not_attending', '2025-04-01 13:12:50', '2025-12-17 19:46:20', 'dJPNk9nA', '7882692'), + (493, 3047, 'not_attending', '2025-04-01 13:12:54', '2025-12-17 19:46:20', 'dJPNk9nA', '7882693'), + (493, 3048, 'attending', '2025-04-01 13:12:58', '2025-12-17 19:46:20', 'dJPNk9nA', '7882694'), + (493, 3051, 'maybe', '2025-03-17 16:51:28', '2025-12-17 19:46:19', 'dJPNk9nA', '7884023'), + (493, 3052, 'maybe', '2025-03-17 16:51:29', '2025-12-17 19:46:19', 'dJPNk9nA', '7884024'), + (493, 3055, 'maybe', '2025-03-27 15:09:58', '2025-12-17 19:46:19', 'dJPNk9nA', '7888118'), + (493, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dJPNk9nA', '7888250'), + (493, 3068, 'not_attending', '2025-04-03 19:04:39', '2025-12-17 19:46:19', 'dJPNk9nA', '7894823'), + (493, 3072, 'attending', '2025-04-01 00:15:11', '2025-12-17 19:46:19', 'dJPNk9nA', '7895449'), + (493, 3085, 'not_attending', '2025-04-12 13:13:28', '2025-12-17 19:46:20', 'dJPNk9nA', '7903688'), + (493, 3090, 'not_attending', '2025-04-17 11:43:17', '2025-12-17 19:46:20', 'dJPNk9nA', '7914315'), + (493, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dJPNk9nA', '8349164'), + (493, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dJPNk9nA', '8349545'), + (493, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dJPNk9nA', '8353584'), + (494, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZDqkbem', '6045684'), + (495, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dNMllJo4', '6045684'), + (496, 2920, 'attending', '2024-11-24 07:25:27', '2025-12-17 19:46:28', '1ArKK6Y4', '7708406'), + (496, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1ArKK6Y4', '7712467'), + (496, 2926, 'attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1ArKK6Y4', '7713585'), + (496, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1ArKK6Y4', '7713586'), + (496, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', '1ArKK6Y4', '7738518'), + (496, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1ArKK6Y4', '7750636'), + (496, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1ArKK6Y4', '7796540'), + (496, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1ArKK6Y4', '7796541'), + (496, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1ArKK6Y4', '7796542'), + (496, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1ArKK6Y4', '7825913'), + (496, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1ArKK6Y4', '7826209'), + (496, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1ArKK6Y4', '7834742'), + (496, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1ArKK6Y4', '7842108'), + (496, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1ArKK6Y4', '7842902'), + (496, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1ArKK6Y4', '7842903'), + (496, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1ArKK6Y4', '7842904'), + (496, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1ArKK6Y4', '7842905'), + (496, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1ArKK6Y4', '7855719'), + (496, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1ArKK6Y4', '7860683'), + (496, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1ArKK6Y4', '7860684'), + (496, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1ArKK6Y4', '7866095'), + (496, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1ArKK6Y4', '7869170'), + (496, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArKK6Y4', '7869188'), + (496, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1ArKK6Y4', '7869201'), + (496, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1ArKK6Y4', '7877465'), + (496, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '1ArKK6Y4', '7878570'), + (496, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1ArKK6Y4', '7888250'), + (496, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArKK6Y4', '8349164'), + (496, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArKK6Y4', '8349545'), + (496, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '1ArKK6Y4', '8353584'), + (497, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybg6JJA', '7074364'), + (497, 2628, 'attending', '2024-06-01 21:46:02', '2025-12-17 19:46:36', 'mybg6JJA', '7264725'), + (497, 2629, 'attending', '2024-06-08 17:34:33', '2025-12-17 19:46:28', 'mybg6JJA', '7264726'), + (497, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'mybg6JJA', '7301638'), + (497, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'mybg6JJA', '7302674'), + (497, 2663, 'attending', '2024-06-02 23:38:36', '2025-12-17 19:46:36', 'mybg6JJA', '7303913'), + (497, 2678, 'attending', '2024-06-14 19:47:39', '2025-12-17 19:46:28', 'mybg6JJA', '7319489'), + (497, 2679, 'attending', '2024-06-22 18:39:33', '2025-12-17 19:46:29', 'mybg6JJA', '7319490'), + (497, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybg6JJA', '7324073'), + (497, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybg6JJA', '7324074'), + (497, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybg6JJA', '7324075'), + (497, 2691, 'not_attending', '2024-07-20 20:02:24', '2025-12-17 19:46:30', 'mybg6JJA', '7324076'), + (497, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybg6JJA', '7324078'), + (497, 2694, 'maybe', '2024-08-10 17:14:01', '2025-12-17 19:46:31', 'mybg6JJA', '7324079'), + (497, 2695, 'not_attending', '2024-08-17 14:12:55', '2025-12-17 19:46:32', 'mybg6JJA', '7324080'), + (497, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybg6JJA', '7324082'), + (497, 2700, 'attending', '2024-06-14 19:47:44', '2025-12-17 19:46:28', 'mybg6JJA', '7324388'), + (497, 2706, 'attending', '2024-06-19 21:16:35', '2025-12-17 19:46:28', 'mybg6JJA', '7324947'), + (497, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mybg6JJA', '7331457'), + (497, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mybg6JJA', '7356752'), + (497, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mybg6JJA', '7363643'), + (497, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybg6JJA', '7368606'), + (497, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybg6JJA', '7397462'), + (497, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybg6JJA', '7424275'), + (497, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mybg6JJA', '7424276'), + (497, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybg6JJA', '7432751'), + (497, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybg6JJA', '7432752'), + (497, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybg6JJA', '7432753'), + (497, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybg6JJA', '7432754'), + (497, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybg6JJA', '7432755'), + (497, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybg6JJA', '7432756'), + (497, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybg6JJA', '7432758'), + (497, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybg6JJA', '7432759'), + (497, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mybg6JJA', '7433834'), + (497, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybg6JJA', '7470197'), + (497, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybg6JJA', '7685613'), + (497, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybg6JJA', '7688194'), + (497, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybg6JJA', '7688196'), + (497, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybg6JJA', '7688289'), + (498, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', '4vExLzOA', '5186585'), + (498, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4vExLzOA', '5195095'), + (498, 1285, 'not_attending', '2022-03-21 15:41:48', '2025-12-17 19:47:25', '4vExLzOA', '5196763'), + (498, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '4vExLzOA', '5199460'), + (498, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4vExLzOA', '5215989'), + (498, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4vExLzOA', '5223686'), + (498, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4vExLzOA', '5227432'), + (498, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4vExLzOA', '5247467'), + (498, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4vExLzOA', '5260800'), + (498, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4vExLzOA', '5269930'), + (498, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4vExLzOA', '5271448'), + (498, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4vExLzOA', '5271449'), + (498, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4vExLzOA', '5276469'), + (498, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4vExLzOA', '5278159'), + (498, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4vExLzOA', '5363695'), + (498, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4vExLzOA', '5365960'), + (498, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4vExLzOA', '5368973'), + (498, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4vExLzOA', '5378247'), + (498, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4vExLzOA', '5389605'), + (498, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4vExLzOA', '5397265'), + (498, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4vExLzOA', '6045684'), + (499, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ9y71aA', '6045684'), + (500, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4DQBMX6d', '5630960'), + (500, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4DQBMX6d', '5630961'), + (500, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4DQBMX6d', '5630962'), + (500, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4DQBMX6d', '5635406'), + (500, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4DQBMX6d', '5638765'), + (500, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4DQBMX6d', '5640097'), + (500, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4DQBMX6d', '5640843'), + (500, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4DQBMX6d', '5641521'), + (500, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4DQBMX6d', '5652395'), + (500, 1752, 'attending', '2022-10-15 15:52:21', '2025-12-17 19:47:12', '4DQBMX6d', '5653503'), + (500, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4DQBMX6d', '5671637'), + (500, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4DQBMX6d', '5672329'), + (500, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4DQBMX6d', '5674057'), + (500, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4DQBMX6d', '5674060'), + (500, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4DQBMX6d', '5677461'), + (500, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DQBMX6d', '6045684'), + (501, 244, 'attending', '2020-10-16 03:08:02', '2025-12-17 19:47:52', 'xd9V7YEm', '3149475'), + (501, 344, 'attending', '2020-11-02 00:44:58', '2025-12-17 19:47:53', 'xd9V7YEm', '3206906'), + (501, 387, 'not_attending', '2020-10-17 22:36:17', '2025-12-17 19:47:52', 'xd9V7YEm', '3228700'), + (501, 388, 'attending', '2020-10-24 22:26:26', '2025-12-17 19:47:52', 'xd9V7YEm', '3228701'), + (501, 408, 'maybe', '2021-01-08 00:27:05', '2025-12-17 19:47:50', 'xd9V7YEm', '3236466'), + (501, 410, 'not_attending', '2020-11-27 23:49:34', '2025-12-17 19:47:54', 'xd9V7YEm', '3236469'), + (501, 414, 'maybe', '2020-10-18 14:18:57', '2025-12-17 19:47:52', 'xd9V7YEm', '3237277'), + (501, 422, 'maybe', '2020-10-30 03:31:32', '2025-12-17 19:47:53', 'xd9V7YEm', '3245295'), + (501, 423, 'maybe', '2020-11-06 00:08:27', '2025-12-17 19:47:53', 'xd9V7YEm', '3245296'), + (501, 430, 'attending', '2020-10-21 02:09:48', '2025-12-17 19:47:52', 'xd9V7YEm', '3253094'), + (501, 435, 'not_attending', '2020-10-24 19:19:27', '2025-12-17 19:47:52', 'xd9V7YEm', '3254790'), + (501, 440, 'attending', '2020-10-18 16:40:58', '2025-12-17 19:47:53', 'xd9V7YEm', '3256168'), + (501, 441, 'attending', '2020-11-14 17:20:41', '2025-12-17 19:47:54', 'xd9V7YEm', '3256169'), + (501, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'xd9V7YEm', '3263578'), + (501, 445, 'not_attending', '2020-11-13 01:15:54', '2025-12-17 19:47:54', 'xd9V7YEm', '3266138'), + (501, 446, 'attending', '2020-10-26 04:35:15', '2025-12-17 19:47:53', 'xd9V7YEm', '3267163'), + (501, 449, 'attending', '2020-11-08 23:50:26', '2025-12-17 19:47:53', 'xd9V7YEm', '3272055'), + (501, 452, 'maybe', '2020-11-22 17:13:34', '2025-12-17 19:47:54', 'xd9V7YEm', '3272981'), + (501, 454, 'not_attending', '2020-11-14 00:37:08', '2025-12-17 19:47:54', 'xd9V7YEm', '3275665'), + (501, 456, 'attending', '2020-11-17 00:47:58', '2025-12-17 19:47:54', 'xd9V7YEm', '3276428'), + (501, 459, 'attending', '2020-11-16 01:02:54', '2025-12-17 19:47:54', 'xd9V7YEm', '3281467'), + (501, 462, 'attending', '2020-11-12 00:06:15', '2025-12-17 19:47:53', 'xd9V7YEm', '3281470'), + (501, 466, 'maybe', '2020-11-08 16:04:14', '2025-12-17 19:47:54', 'xd9V7YEm', '3281829'), + (501, 467, 'attending', '2020-11-18 00:10:33', '2025-12-17 19:47:54', 'xd9V7YEm', '3282756'), + (501, 468, 'attending', '2020-11-21 23:54:47', '2025-12-17 19:47:54', 'xd9V7YEm', '3285413'), + (501, 469, 'attending', '2020-11-28 23:55:35', '2025-12-17 19:47:54', 'xd9V7YEm', '3285414'), + (501, 476, 'attending', '2020-11-18 00:10:23', '2025-12-17 19:47:54', 'xd9V7YEm', '3286982'), + (501, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'xd9V7YEm', '3297764'), + (501, 482, 'maybe', '2020-11-21 20:02:18', '2025-12-17 19:47:54', 'xd9V7YEm', '3297769'), + (501, 483, 'maybe', '2020-11-21 20:02:06', '2025-12-17 19:47:54', 'xd9V7YEm', '3297791'), + (501, 487, 'attending', '2020-11-26 23:35:23', '2025-12-17 19:47:54', 'xd9V7YEm', '3311122'), + (501, 493, 'attending', '2020-12-05 23:57:45', '2025-12-17 19:47:54', 'xd9V7YEm', '3313856'), + (501, 496, 'maybe', '2020-12-11 00:23:05', '2025-12-17 19:47:54', 'xd9V7YEm', '3314269'), + (501, 497, 'not_attending', '2020-12-18 00:16:17', '2025-12-17 19:47:55', 'xd9V7YEm', '3314270'), + (501, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'xd9V7YEm', '3314909'), + (501, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'xd9V7YEm', '3314964'), + (501, 501, 'attending', '2020-12-09 00:58:00', '2025-12-17 19:47:54', 'xd9V7YEm', '3317834'), + (501, 502, 'not_attending', '2020-12-12 21:44:06', '2025-12-17 19:47:55', 'xd9V7YEm', '3323365'), + (501, 506, 'attending', '2020-12-13 17:21:59', '2025-12-17 19:47:55', 'xd9V7YEm', '3323375'), + (501, 513, 'attending', '2020-12-16 03:24:41', '2025-12-17 19:47:55', 'xd9V7YEm', '3329383'), + (501, 516, 'attending', '2020-12-19 07:29:59', '2025-12-17 19:47:48', 'xd9V7YEm', '3334530'), + (501, 517, 'not_attending', '2021-01-08 00:25:23', '2025-12-17 19:47:48', 'xd9V7YEm', '3337137'), + (501, 518, 'attending', '2020-12-20 22:29:33', '2025-12-17 19:47:48', 'xd9V7YEm', '3337138'), + (501, 526, 'attending', '2020-12-29 20:38:53', '2025-12-17 19:47:48', 'xd9V7YEm', '3351539'), + (501, 530, 'attending', '2021-01-04 23:04:46', '2025-12-17 19:47:48', 'xd9V7YEm', '3373923'), + (501, 531, 'maybe', '2021-01-02 20:57:57', '2025-12-17 19:47:48', 'xd9V7YEm', '3378210'), + (501, 532, 'attending', '2021-01-03 22:18:48', '2025-12-17 19:47:48', 'xd9V7YEm', '3381412'), + (501, 534, 'maybe', '2021-01-09 17:15:54', '2025-12-17 19:47:48', 'xd9V7YEm', '3384157'), + (501, 536, 'attending', '2021-01-09 00:12:47', '2025-12-17 19:47:48', 'xd9V7YEm', '3386848'), + (501, 539, 'maybe', '2021-01-11 22:43:00', '2025-12-17 19:47:48', 'xd9V7YEm', '3389158'), + (501, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'xd9V7YEm', '3389527'), + (501, 541, 'maybe', '2021-01-09 17:15:47', '2025-12-17 19:47:48', 'xd9V7YEm', '3391683'), + (501, 542, 'not_attending', '2021-01-11 22:42:29', '2025-12-17 19:47:48', 'xd9V7YEm', '3395013'), + (501, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'xd9V7YEm', '3396499'), + (501, 548, 'attending', '2021-01-11 22:43:11', '2025-12-17 19:47:48', 'xd9V7YEm', '3403650'), + (501, 549, 'maybe', '2021-01-16 22:36:59', '2025-12-17 19:47:49', 'xd9V7YEm', '3406988'), + (501, 553, 'attending', '2021-01-13 23:10:51', '2025-12-17 19:47:48', 'xd9V7YEm', '3407248'), + (501, 555, 'attending', '2021-01-23 23:00:29', '2025-12-17 19:47:49', 'xd9V7YEm', '3416576'), + (501, 557, 'attending', '2021-01-21 00:00:53', '2025-12-17 19:47:49', 'xd9V7YEm', '3418748'), + (501, 558, 'maybe', '2021-01-19 05:27:55', '2025-12-17 19:47:49', 'xd9V7YEm', '3418925'), + (501, 559, 'not_attending', '2021-01-28 00:13:42', '2025-12-17 19:47:49', 'xd9V7YEm', '3421439'), + (501, 560, 'attending', '2021-01-21 20:33:21', '2025-12-17 19:47:49', 'xd9V7YEm', '3421715'), + (501, 567, 'attending', '2021-01-25 06:43:50', '2025-12-17 19:47:50', 'xd9V7YEm', '3428895'), + (501, 568, 'attending', '2021-01-28 00:12:43', '2025-12-17 19:47:50', 'xd9V7YEm', '3430267'), + (501, 569, 'maybe', '2021-01-27 14:55:54', '2025-12-17 19:47:49', 'xd9V7YEm', '3432673'), + (501, 570, 'attending', '2021-02-06 01:00:05', '2025-12-17 19:47:50', 'xd9V7YEm', '3435538'), + (501, 571, 'attending', '2021-02-13 16:19:44', '2025-12-17 19:47:50', 'xd9V7YEm', '3435539'), + (501, 575, 'attending', '2021-01-28 00:14:05', '2025-12-17 19:47:50', 'xd9V7YEm', '3437492'), + (501, 576, 'maybe', '2021-02-03 00:42:16', '2025-12-17 19:47:50', 'xd9V7YEm', '3438748'), + (501, 577, 'attending', '2021-01-29 18:30:09', '2025-12-17 19:47:49', 'xd9V7YEm', '3439167'), + (501, 578, 'maybe', '2021-02-02 01:45:49', '2025-12-17 19:47:50', 'xd9V7YEm', '3440043'), + (501, 579, 'attending', '2021-02-02 01:45:14', '2025-12-17 19:47:50', 'xd9V7YEm', '3440978'), + (501, 580, 'maybe', '2021-01-30 07:01:34', '2025-12-17 19:47:50', 'xd9V7YEm', '3444240'), + (501, 581, 'attending', '2021-02-02 00:21:32', '2025-12-17 19:47:50', 'xd9V7YEm', '3445029'), + (501, 587, 'maybe', '2021-02-16 00:45:58', '2025-12-17 19:47:50', 'xd9V7YEm', '3449470'), + (501, 588, 'attending', '2021-02-18 00:07:09', '2025-12-17 19:47:50', 'xd9V7YEm', '3449471'), + (501, 589, 'attending', '2021-02-20 00:06:53', '2025-12-17 19:47:50', 'xd9V7YEm', '3449473'), + (501, 592, 'attending', '2021-02-25 02:06:56', '2025-12-17 19:47:50', 'xd9V7YEm', '3467757'), + (501, 594, 'attending', '2021-02-20 18:22:32', '2025-12-17 19:47:51', 'xd9V7YEm', '3467759'), + (501, 598, 'maybe', '2021-02-06 06:37:03', '2025-12-17 19:47:50', 'xd9V7YEm', '3468003'), + (501, 599, 'attending', '2021-02-12 04:38:56', '2025-12-17 19:47:50', 'xd9V7YEm', '3468117'), + (501, 600, 'maybe', '2021-02-06 05:17:03', '2025-12-17 19:47:50', 'xd9V7YEm', '3468125'), + (501, 602, 'attending', '2021-02-09 21:49:26', '2025-12-17 19:47:50', 'xd9V7YEm', '3470303'), + (501, 603, 'attending', '2021-02-20 00:44:36', '2025-12-17 19:47:50', 'xd9V7YEm', '3470304'), + (501, 604, 'attending', '2021-02-24 03:47:50', '2025-12-17 19:47:50', 'xd9V7YEm', '3470305'), + (501, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'xd9V7YEm', '3470991'), + (501, 609, 'attending', '2021-02-13 20:52:45', '2025-12-17 19:47:50', 'xd9V7YEm', '3480916'), + (501, 618, 'attending', '2021-02-20 21:34:18', '2025-12-17 19:47:50', 'xd9V7YEm', '3503991'), + (501, 620, 'not_attending', '2021-02-26 01:10:18', '2025-12-17 19:47:50', 'xd9V7YEm', '3513703'), + (501, 621, 'attending', '2021-03-05 00:12:02', '2025-12-17 19:47:51', 'xd9V7YEm', '3517815'), + (501, 622, 'attending', '2021-03-12 00:54:18', '2025-12-17 19:47:51', 'xd9V7YEm', '3517816'), + (501, 623, 'maybe', '2021-02-25 20:48:29', '2025-12-17 19:47:51', 'xd9V7YEm', '3523941'), + (501, 624, 'attending', '2021-02-27 06:45:00', '2025-12-17 19:47:50', 'xd9V7YEm', '3528556'), + (501, 627, 'maybe', '2021-03-10 00:02:26', '2025-12-17 19:47:51', 'xd9V7YEm', '3533303'), + (501, 631, 'maybe', '2021-03-07 23:45:42', '2025-12-17 19:47:51', 'xd9V7YEm', '3533850'), + (501, 632, 'maybe', '2021-03-02 00:50:51', '2025-12-17 19:47:51', 'xd9V7YEm', '3533853'), + (501, 635, 'maybe', '2021-04-09 04:13:59', '2025-12-17 19:47:44', 'xd9V7YEm', '3534719'), + (501, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'xd9V7YEm', '3536632'), + (501, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'xd9V7YEm', '3536656'), + (501, 641, 'attending', '2021-04-03 22:32:51', '2025-12-17 19:47:44', 'xd9V7YEm', '3539916'), + (501, 642, 'attending', '2021-04-08 02:54:20', '2025-12-17 19:47:44', 'xd9V7YEm', '3539917'), + (501, 643, 'not_attending', '2021-04-12 04:06:10', '2025-12-17 19:47:45', 'xd9V7YEm', '3539918'), + (501, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'xd9V7YEm', '3539919'), + (501, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'xd9V7YEm', '3539920'), + (501, 646, 'maybe', '2021-05-13 02:54:55', '2025-12-17 19:47:46', 'xd9V7YEm', '3539921'), + (501, 647, 'attending', '2021-05-21 23:20:25', '2025-12-17 19:47:46', 'xd9V7YEm', '3539922'), + (501, 648, 'maybe', '2021-05-27 22:31:55', '2025-12-17 19:47:47', 'xd9V7YEm', '3539923'), + (501, 649, 'maybe', '2021-03-19 22:16:28', '2025-12-17 19:47:51', 'xd9V7YEm', '3539927'), + (501, 650, 'maybe', '2021-03-26 14:49:00', '2025-12-17 19:47:44', 'xd9V7YEm', '3539928'), + (501, 656, 'attending', '2021-03-15 22:05:28', '2025-12-17 19:47:51', 'xd9V7YEm', '3547130'), + (501, 659, 'attending', '2021-04-02 20:35:41', '2025-12-17 19:47:44', 'xd9V7YEm', '3547135'), + (501, 661, 'attending', '2021-04-02 20:35:48', '2025-12-17 19:47:44', 'xd9V7YEm', '3547137'), + (501, 665, 'maybe', '2021-09-04 18:57:38', '2025-12-17 19:47:43', 'xd9V7YEm', '3547143'), + (501, 670, 'attending', '2021-06-17 03:29:55', '2025-12-17 19:47:48', 'xd9V7YEm', '3547148'), + (501, 672, 'attending', '2021-05-21 23:20:22', '2025-12-17 19:47:46', 'xd9V7YEm', '3547150'), + (501, 673, 'maybe', '2021-07-03 16:07:53', '2025-12-17 19:47:38', 'xd9V7YEm', '3547151'), + (501, 674, 'attending', '2021-08-06 02:52:16', '2025-12-17 19:47:41', 'xd9V7YEm', '3547152'), + (501, 676, 'attending', '2021-07-23 01:15:40', '2025-12-17 19:47:40', 'xd9V7YEm', '3547154'), + (501, 680, 'attending', '2021-03-07 16:15:20', '2025-12-17 19:47:51', 'xd9V7YEm', '3547700'), + (501, 684, 'attending', '2021-03-10 00:07:00', '2025-12-17 19:47:51', 'xd9V7YEm', '3549257'), + (501, 685, 'maybe', '2021-04-12 04:05:28', '2025-12-17 19:47:44', 'xd9V7YEm', '3551564'), + (501, 687, 'maybe', '2021-03-10 00:07:34', '2025-12-17 19:47:51', 'xd9V7YEm', '3553405'), + (501, 690, 'not_attending', '2021-03-23 22:59:01', '2025-12-17 19:47:44', 'xd9V7YEm', '3559954'), + (501, 696, 'attending', '2021-03-15 22:05:22', '2025-12-17 19:47:51', 'xd9V7YEm', '3567536'), + (501, 699, 'maybe', '2021-03-29 21:48:39', '2025-12-17 19:47:44', 'xd9V7YEm', '3572241'), + (501, 702, 'attending', '2021-03-19 21:59:25', '2025-12-17 19:47:51', 'xd9V7YEm', '3577181'), + (501, 705, 'maybe', '2021-03-28 17:26:34', '2025-12-17 19:47:44', 'xd9V7YEm', '3581895'), + (501, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'xd9V7YEm', '3582734'), + (501, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'xd9V7YEm', '3583262'), + (501, 711, 'attending', '2021-04-01 21:43:20', '2025-12-17 19:47:44', 'xd9V7YEm', '3588075'), + (501, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'xd9V7YEm', '3619523'), + (501, 718, 'maybe', '2021-03-26 14:48:57', '2025-12-17 19:47:44', 'xd9V7YEm', '3626844'), + (501, 722, 'attending', '2021-04-02 20:35:32', '2025-12-17 19:47:44', 'xd9V7YEm', '3646347'), + (501, 723, 'attending', '2021-03-30 04:42:53', '2025-12-17 19:47:44', 'xd9V7YEm', '3649179'), + (501, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'xd9V7YEm', '3661369'), + (501, 730, 'maybe', '2021-05-05 22:09:59', '2025-12-17 19:47:46', 'xd9V7YEm', '3668076'), + (501, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'xd9V7YEm', '3674262'), + (501, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'xd9V7YEm', '3677402'), + (501, 736, 'not_attending', '2021-04-09 04:13:52', '2025-12-17 19:47:44', 'xd9V7YEm', '3677701'), + (501, 747, 'maybe', '2021-04-08 03:34:49', '2025-12-17 19:47:45', 'xd9V7YEm', '3684754'), + (501, 750, 'not_attending', '2021-04-13 22:56:13', '2025-12-17 19:47:44', 'xd9V7YEm', '3689962'), + (501, 752, 'attending', '2021-04-12 04:06:02', '2025-12-17 19:47:44', 'xd9V7YEm', '3699422'), + (501, 761, 'maybe', '2021-05-14 21:47:49', '2025-12-17 19:47:46', 'xd9V7YEm', '3716041'), + (501, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'xd9V7YEm', '3730212'), + (501, 782, 'maybe', '2021-05-04 12:55:24', '2025-12-17 19:47:46', 'xd9V7YEm', '3761843'), + (501, 785, 'maybe', '2021-05-16 21:23:39', '2025-12-17 19:47:46', 'xd9V7YEm', '3779779'), + (501, 788, 'attending', '2021-05-07 22:56:18', '2025-12-17 19:47:46', 'xd9V7YEm', '3781975'), + (501, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'xd9V7YEm', '3793156'), + (501, 808, 'attending', '2021-05-18 20:51:04', '2025-12-17 19:47:46', 'xd9V7YEm', '3807358'), + (501, 816, 'maybe', '2021-05-20 00:56:18', '2025-12-17 19:47:46', 'xd9V7YEm', '3826524'), + (501, 823, 'attending', '2021-06-17 03:29:54', '2025-12-17 19:47:48', 'xd9V7YEm', '3974109'), + (501, 825, 'attending', '2021-06-03 15:52:53', '2025-12-17 19:47:47', 'xd9V7YEm', '3975283'), + (501, 826, 'not_attending', '2021-06-16 22:45:30', '2025-12-17 19:47:48', 'xd9V7YEm', '3975310'), + (501, 827, 'maybe', '2021-06-04 23:21:21', '2025-12-17 19:47:47', 'xd9V7YEm', '3975311'), + (501, 828, 'not_attending', '2021-06-12 14:25:23', '2025-12-17 19:47:47', 'xd9V7YEm', '3975312'), + (501, 829, 'attending', '2021-05-30 20:54:53', '2025-12-17 19:47:47', 'xd9V7YEm', '3976202'), + (501, 838, 'maybe', '2021-06-06 19:09:07', '2025-12-17 19:47:47', 'xd9V7YEm', '3994992'), + (501, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd9V7YEm', '4014338'), + (501, 845, 'not_attending', '2021-06-26 16:10:34', '2025-12-17 19:47:38', 'xd9V7YEm', '4015717'), + (501, 867, 'attending', '2021-06-26 13:30:03', '2025-12-17 19:47:38', 'xd9V7YEm', '4021848'), + (501, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd9V7YEm', '4136744'), + (501, 870, 'attending', '2021-07-03 16:07:48', '2025-12-17 19:47:39', 'xd9V7YEm', '4136937'), + (501, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd9V7YEm', '4136938'), + (501, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd9V7YEm', '4136947'), + (501, 884, 'maybe', '2021-07-17 22:37:48', '2025-12-17 19:47:42', 'xd9V7YEm', '4210314'), + (501, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd9V7YEm', '4225444'), + (501, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd9V7YEm', '4239259'), + (501, 900, 'maybe', '2021-07-24 22:25:09', '2025-12-17 19:47:40', 'xd9V7YEm', '4240316'), + (501, 901, 'not_attending', '2021-07-31 03:58:21', '2025-12-17 19:47:40', 'xd9V7YEm', '4240317'), + (501, 902, 'attending', '2021-08-06 02:52:13', '2025-12-17 19:47:41', 'xd9V7YEm', '4240318'), + (501, 903, 'attending', '2021-08-14 13:31:33', '2025-12-17 19:47:42', 'xd9V7YEm', '4240320'), + (501, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd9V7YEm', '4250163'), + (501, 919, 'attending', '2021-07-16 20:43:32', '2025-12-17 19:47:39', 'xd9V7YEm', '4275957'), + (501, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xd9V7YEm', '4277819'), + (501, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xd9V7YEm', '4301723'), + (501, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xd9V7YEm', '4302093'), + (501, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xd9V7YEm', '4304151'), + (501, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'xd9V7YEm', '4345519'), + (501, 962, 'maybe', '2021-08-12 01:49:02', '2025-12-17 19:47:41', 'xd9V7YEm', '4346305'), + (501, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'xd9V7YEm', '4356801'), + (501, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xd9V7YEm', '4358025'), + (501, 973, 'maybe', '2021-08-21 20:41:14', '2025-12-17 19:47:42', 'xd9V7YEm', '4366186'), + (501, 974, 'attending', '2021-08-28 13:12:12', '2025-12-17 19:47:42', 'xd9V7YEm', '4366187'), + (501, 988, 'attending', '2021-08-24 19:52:45', '2025-12-17 19:47:42', 'xd9V7YEm', '4402823'), + (501, 990, 'attending', '2021-08-29 02:32:55', '2025-12-17 19:47:43', 'xd9V7YEm', '4420735'), + (501, 991, 'attending', '2021-09-11 19:57:51', '2025-12-17 19:47:43', 'xd9V7YEm', '4420738'), + (501, 992, 'not_attending', '2021-09-16 01:15:00', '2025-12-17 19:47:34', 'xd9V7YEm', '4420739'), + (501, 993, 'maybe', '2021-09-25 19:29:11', '2025-12-17 19:47:34', 'xd9V7YEm', '4420741'), + (501, 994, 'maybe', '2021-09-29 02:20:06', '2025-12-17 19:47:34', 'xd9V7YEm', '4420742'), + (501, 995, 'attending', '2021-10-09 22:23:39', '2025-12-17 19:47:34', 'xd9V7YEm', '4420744'), + (501, 996, 'attending', '2021-10-16 02:43:22', '2025-12-17 19:47:35', 'xd9V7YEm', '4420747'), + (501, 997, 'maybe', '2021-10-23 19:19:40', '2025-12-17 19:47:35', 'xd9V7YEm', '4420748'), + (501, 998, 'not_attending', '2021-10-30 20:43:33', '2025-12-17 19:47:36', 'xd9V7YEm', '4420749'), + (501, 999, 'maybe', '2021-08-31 20:26:07', '2025-12-17 19:47:43', 'xd9V7YEm', '4421150'), + (501, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'xd9V7YEm', '4461883'), + (501, 1038, 'maybe', '2021-09-25 19:29:24', '2025-12-17 19:47:34', 'xd9V7YEm', '4496603'), + (501, 1046, 'attending', '2021-10-16 02:43:26', '2025-12-17 19:47:35', 'xd9V7YEm', '4496611'), + (501, 1057, 'maybe', '2021-11-13 15:55:46', '2025-12-17 19:47:37', 'xd9V7YEm', '4496624'), + (501, 1063, 'maybe', '2021-09-25 02:45:31', '2025-12-17 19:47:34', 'xd9V7YEm', '4496630'), + (501, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'xd9V7YEm', '4508342'), + (501, 1086, 'attending', '2021-10-16 00:45:57', '2025-12-17 19:47:34', 'xd9V7YEm', '4568602'), + (501, 1087, 'maybe', '2021-10-16 02:43:51', '2025-12-17 19:47:35', 'xd9V7YEm', '4572153'), + (501, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xd9V7YEm', '4585962'), + (501, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'xd9V7YEm', '4596356'), + (501, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xd9V7YEm', '4598860'), + (501, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xd9V7YEm', '4598861'), + (501, 1099, 'maybe', '2021-11-05 23:42:37', '2025-12-17 19:47:36', 'xd9V7YEm', '4602797'), + (501, 1100, 'maybe', '2021-11-08 00:04:25', '2025-12-17 19:47:36', 'xd9V7YEm', '4607305'), + (501, 1114, 'maybe', '2021-11-13 21:16:59', '2025-12-17 19:47:36', 'xd9V7YEm', '4637896'), + (501, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xd9V7YEm', '4642994'), + (501, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'xd9V7YEm', '4642995'), + (501, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xd9V7YEm', '4642996'), + (501, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'xd9V7YEm', '4642997'), + (501, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'xd9V7YEm', '4645687'), + (501, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xd9V7YEm', '4645698'), + (501, 1128, 'not_attending', '2021-11-21 00:14:57', '2025-12-17 19:47:37', 'xd9V7YEm', '4645704'), + (501, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'xd9V7YEm', '4645705'), + (501, 1130, 'attending', '2021-12-05 00:02:26', '2025-12-17 19:47:37', 'xd9V7YEm', '4658824'), + (501, 1131, 'attending', '2021-12-18 23:24:43', '2025-12-17 19:47:31', 'xd9V7YEm', '4658825'), + (501, 1134, 'not_attending', '2021-12-04 03:34:39', '2025-12-17 19:47:37', 'xd9V7YEm', '4668385'), + (501, 1149, 'maybe', '2021-12-10 03:50:17', '2025-12-17 19:47:38', 'xd9V7YEm', '4694407'), + (501, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'xd9V7YEm', '4706262'), + (501, 1170, 'attending', '2022-01-10 00:07:35', '2025-12-17 19:47:31', 'xd9V7YEm', '4731045'), + (501, 1174, 'attending', '2022-01-15 17:01:27', '2025-12-17 19:47:31', 'xd9V7YEm', '4736496'), + (501, 1175, 'not_attending', '2022-01-17 05:24:04', '2025-12-17 19:47:32', 'xd9V7YEm', '4736497'), + (501, 1176, 'not_attending', '2022-02-05 20:45:26', '2025-12-17 19:47:32', 'xd9V7YEm', '4736498'), + (501, 1177, 'attending', '2022-02-11 05:34:02', '2025-12-17 19:47:32', 'xd9V7YEm', '4736499'), + (501, 1178, 'attending', '2022-01-27 00:02:06', '2025-12-17 19:47:32', 'xd9V7YEm', '4736500'), + (501, 1179, 'attending', '2022-02-19 16:46:20', '2025-12-17 19:47:32', 'xd9V7YEm', '4736501'), + (501, 1180, 'attending', '2022-02-26 01:31:37', '2025-12-17 19:47:33', 'xd9V7YEm', '4736502'), + (501, 1181, 'attending', '2022-03-05 03:43:58', '2025-12-17 19:47:33', 'xd9V7YEm', '4736503'), + (501, 1182, 'attending', '2022-03-12 22:26:54', '2025-12-17 19:47:33', 'xd9V7YEm', '4736504'), + (501, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xd9V7YEm', '4746789'), + (501, 1186, 'not_attending', '2022-01-09 08:31:10', '2025-12-17 19:47:31', 'xd9V7YEm', '4747800'), + (501, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'xd9V7YEm', '4753929'), + (501, 1196, 'not_attending', '2022-01-21 13:46:37', '2025-12-17 19:47:32', 'xd9V7YEm', '4765583'), + (501, 1231, 'maybe', '2022-02-25 01:03:37', '2025-12-17 19:47:33', 'xd9V7YEm', '5037637'), + (501, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xd9V7YEm', '5038850'), + (501, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xd9V7YEm', '5045826'), + (501, 1244, 'attending', '2022-02-21 03:53:09', '2025-12-17 19:47:33', 'xd9V7YEm', '5060490'), + (501, 1245, 'attending', '2022-02-27 19:28:49', '2025-12-17 19:47:33', 'xd9V7YEm', '5061301'), + (501, 1259, 'maybe', '2022-03-02 01:27:44', '2025-12-17 19:47:33', 'xd9V7YEm', '5132533'), + (501, 1272, 'attending', '2022-03-18 00:04:33', '2025-12-17 19:47:25', 'xd9V7YEm', '5186582'), + (501, 1273, 'attending', '2022-03-26 03:10:27', '2025-12-17 19:47:25', 'xd9V7YEm', '5186583'), + (501, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'xd9V7YEm', '5186585'), + (501, 1281, 'attending', '2022-04-09 03:52:27', '2025-12-17 19:47:27', 'xd9V7YEm', '5190437'), + (501, 1284, 'attending', '2022-04-16 22:09:09', '2025-12-17 19:47:27', 'xd9V7YEm', '5195095'), + (501, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xd9V7YEm', '5215989'), + (501, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'xd9V7YEm', '5223686'), + (501, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'xd9V7YEm', '5227432'), + (501, 1311, 'maybe', '2022-04-09 03:53:02', '2025-12-17 19:47:27', 'xd9V7YEm', '5231430'), + (501, 1316, 'not_attending', '2022-04-13 00:49:10', '2025-12-17 19:47:27', 'xd9V7YEm', '5237536'), + (501, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'xd9V7YEm', '5247467'), + (501, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', 'xd9V7YEm', '5249631'), + (501, 1354, 'not_attending', '2022-04-23 20:45:27', '2025-12-17 19:47:27', 'xd9V7YEm', '5252569'), + (501, 1362, 'not_attending', '2022-04-30 22:48:59', '2025-12-17 19:47:28', 'xd9V7YEm', '5260800'), + (501, 1366, 'not_attending', '2022-04-26 17:04:53', '2025-12-17 19:47:27', 'xd9V7YEm', '5262344'), + (501, 1367, 'maybe', '2022-05-01 17:03:21', '2025-12-17 19:47:28', 'xd9V7YEm', '5262345'), + (501, 1374, 'not_attending', '2022-05-06 23:43:40', '2025-12-17 19:47:28', 'xd9V7YEm', '5269930'), + (501, 1378, 'attending', '2022-05-14 15:51:20', '2025-12-17 19:47:29', 'xd9V7YEm', '5271448'), + (501, 1379, 'attending', '2022-05-20 13:49:14', '2025-12-17 19:47:29', 'xd9V7YEm', '5271449'), + (501, 1380, 'attending', '2022-05-27 11:30:29', '2025-12-17 19:47:30', 'xd9V7YEm', '5271450'), + (501, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'xd9V7YEm', '5276469'), + (501, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'xd9V7YEm', '5278159'), + (501, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'xd9V7YEm', '5363695'), + (501, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'xd9V7YEm', '5365960'), + (501, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'xd9V7YEm', '5368973'), + (501, 1422, 'not_attending', '2022-05-27 11:35:14', '2025-12-17 19:47:30', 'xd9V7YEm', '5375603'), + (501, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'xd9V7YEm', '5378247'), + (501, 1431, 'not_attending', '2022-06-11 18:24:34', '2025-12-17 19:47:31', 'xd9V7YEm', '5389605'), + (501, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'xd9V7YEm', '5397265'), + (501, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'xd9V7YEm', '5403967'), + (501, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'xd9V7YEm', '5404786'), + (501, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'xd9V7YEm', '5405203'), + (501, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'xd9V7YEm', '5411699'), + (501, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'xd9V7YEm', '5412550'), + (501, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'xd9V7YEm', '5415046'), + (501, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'xd9V7YEm', '5422086'), + (501, 1498, 'attending', '2022-07-02 16:32:39', '2025-12-17 19:47:19', 'xd9V7YEm', '5422406'), + (501, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'xd9V7YEm', '5424565'), + (501, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'xd9V7YEm', '5426882'), + (501, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'xd9V7YEm', '5427083'), + (501, 1511, 'maybe', '2022-07-09 18:32:51', '2025-12-17 19:47:19', 'xd9V7YEm', '5437733'), + (501, 1513, 'not_attending', '2022-07-14 00:45:02', '2025-12-17 19:47:20', 'xd9V7YEm', '5441125'), + (501, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'xd9V7YEm', '5441126'), + (501, 1515, 'attending', '2022-08-06 16:53:58', '2025-12-17 19:47:21', 'xd9V7YEm', '5441128'), + (501, 1516, 'attending', '2022-08-14 22:39:43', '2025-12-17 19:47:23', 'xd9V7YEm', '5441129'), + (501, 1517, 'attending', '2022-08-26 23:22:03', '2025-12-17 19:47:23', 'xd9V7YEm', '5441130'), + (501, 1518, 'maybe', '2022-08-30 02:05:27', '2025-12-17 19:47:24', 'xd9V7YEm', '5441131'), + (501, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'xd9V7YEm', '5441132'), + (501, 1527, 'not_attending', '2022-07-14 00:44:28', '2025-12-17 19:47:20', 'xd9V7YEm', '5446425'), + (501, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'xd9V7YEm', '5446643'), + (501, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'xd9V7YEm', '5453325'), + (501, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'xd9V7YEm', '5454516'), + (501, 1544, 'attending', '2022-09-15 00:02:38', '2025-12-17 19:47:11', 'xd9V7YEm', '5454517'), + (501, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'xd9V7YEm', '5454605'), + (501, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'xd9V7YEm', '5455037'), + (501, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'xd9V7YEm', '5461278'), + (501, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'xd9V7YEm', '5469480'), + (501, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'xd9V7YEm', '5471073'), + (501, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'xd9V7YEm', '5474663'), + (501, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'xd9V7YEm', '5482022'), + (501, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'xd9V7YEm', '5482793'), + (501, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'xd9V7YEm', '5488912'), + (501, 1582, 'maybe', '2022-08-14 22:39:37', '2025-12-17 19:47:23', 'xd9V7YEm', '5492001'), + (501, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'xd9V7YEm', '5492192'), + (501, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'xd9V7YEm', '5493139'), + (501, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'xd9V7YEm', '5493200'), + (501, 1603, 'maybe', '2022-08-14 22:39:21', '2025-12-17 19:47:23', 'xd9V7YEm', '5497895'), + (501, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'xd9V7YEm', '5502188'), + (501, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'xd9V7YEm', '5505059'), + (501, 1612, 'maybe', '2022-10-01 13:34:03', '2025-12-17 19:47:12', 'xd9V7YEm', '5507653'), + (501, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'xd9V7YEm', '5509055'), + (501, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'xd9V7YEm', '5512862'), + (501, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'xd9V7YEm', '5513985'), + (501, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'xd9V7YEm', '5519981'), + (501, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'xd9V7YEm', '5522550'), + (501, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'xd9V7YEm', '5534683'), + (501, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'xd9V7YEm', '5537735'), + (501, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'xd9V7YEm', '5540859'), + (501, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'xd9V7YEm', '5546619'), + (501, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'xd9V7YEm', '5555245'), + (501, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'xd9V7YEm', '5557747'), + (501, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'xd9V7YEm', '5560255'), + (501, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'xd9V7YEm', '5562906'), + (501, 1667, 'attending', '2022-09-23 23:39:58', '2025-12-17 19:47:11', 'xd9V7YEm', '5563221'), + (501, 1668, 'maybe', '2022-10-01 13:33:43', '2025-12-17 19:47:12', 'xd9V7YEm', '5563222'), + (501, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'xd9V7YEm', '5600604'), + (501, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'xd9V7YEm', '5605544'), + (501, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'xd9V7YEm', '5606737'), + (501, 1703, 'attending', '2022-10-05 16:57:30', '2025-12-17 19:47:12', 'xd9V7YEm', '5609176'), + (501, 1719, 'maybe', '2022-10-08 05:52:28', '2025-12-17 19:47:12', 'xd9V7YEm', '5630958'), + (501, 1720, 'attending', '2022-10-15 16:28:34', '2025-12-17 19:47:12', 'xd9V7YEm', '5630959'), + (501, 1721, 'not_attending', '2022-10-19 11:09:16', '2025-12-17 19:47:13', 'xd9V7YEm', '5630960'), + (501, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'xd9V7YEm', '5630961'), + (501, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'xd9V7YEm', '5630962'), + (501, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'xd9V7YEm', '5630966'), + (501, 1725, 'attending', '2022-11-14 04:02:34', '2025-12-17 19:47:16', 'xd9V7YEm', '5630967'), + (501, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'xd9V7YEm', '5630968'), + (501, 1727, 'attending', '2022-12-03 20:33:06', '2025-12-17 19:47:16', 'xd9V7YEm', '5630969'), + (501, 1728, 'attending', '2022-12-11 06:01:11', '2025-12-17 19:47:17', 'xd9V7YEm', '5630970'), + (501, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'xd9V7YEm', '5635406'), + (501, 1733, 'maybe', '2022-10-09 18:17:32', '2025-12-17 19:47:12', 'xd9V7YEm', '5635411'), + (501, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'xd9V7YEm', '5638765'), + (501, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'xd9V7YEm', '5640097'), + (501, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'xd9V7YEm', '5640843'), + (501, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'xd9V7YEm', '5641521'), + (501, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'xd9V7YEm', '5642818'), + (501, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'xd9V7YEm', '5652395'), + (501, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'xd9V7YEm', '5670445'), + (501, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'xd9V7YEm', '5671637'), + (501, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'xd9V7YEm', '5672329'), + (501, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'xd9V7YEm', '5674057'), + (501, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'xd9V7YEm', '5674060'), + (501, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'xd9V7YEm', '5677461'), + (501, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'xd9V7YEm', '5698046'), + (501, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'xd9V7YEm', '5699760'), + (501, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'xd9V7YEm', '5741601'), + (501, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'xd9V7YEm', '5763458'), + (501, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'xd9V7YEm', '5774172'), + (501, 1825, 'attending', '2022-11-27 04:24:18', '2025-12-17 19:47:16', 'xd9V7YEm', '5776760'), + (501, 1828, 'not_attending', '2022-11-28 21:34:38', '2025-12-17 19:47:16', 'xd9V7YEm', '5778865'), + (501, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'xd9V7YEm', '5818247'), + (501, 1834, 'attending', '2022-12-10 05:22:44', '2025-12-17 19:47:17', 'xd9V7YEm', '5819470'), + (501, 1835, 'maybe', '2022-12-31 18:02:09', '2025-12-17 19:47:05', 'xd9V7YEm', '5819471'), + (501, 1841, 'attending', '2023-01-05 04:42:18', '2025-12-17 19:47:05', 'xd9V7YEm', '5827665'), + (501, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'xd9V7YEm', '5827739'), + (501, 1843, 'attending', '2022-12-17 22:36:30', '2025-12-17 19:47:04', 'xd9V7YEm', '5844304'), + (501, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xd9V7YEm', '5844306'), + (501, 1847, 'attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xd9V7YEm', '5850159'), + (501, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xd9V7YEm', '5858999'), + (501, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xd9V7YEm', '5871984'), + (501, 1858, 'attending', '2023-01-15 23:47:48', '2025-12-17 19:47:05', 'xd9V7YEm', '5875044'), + (501, 1860, 'attending', '2023-01-13 11:41:14', '2025-12-17 19:47:05', 'xd9V7YEm', '5876309'), + (501, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xd9V7YEm', '5876354'), + (501, 1864, 'not_attending', '2023-01-19 01:54:04', '2025-12-17 19:47:05', 'xd9V7YEm', '5879675'), + (501, 1865, 'attending', '2023-01-27 00:02:03', '2025-12-17 19:47:06', 'xd9V7YEm', '5879676'), + (501, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xd9V7YEm', '5880939'), + (501, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xd9V7YEm', '5880940'), + (501, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xd9V7YEm', '5880942'), + (501, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xd9V7YEm', '5880943'), + (501, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xd9V7YEm', '5887890'), + (501, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xd9V7YEm', '5888598'), + (501, 1879, 'maybe', '2023-01-29 22:58:20', '2025-12-17 19:47:06', 'xd9V7YEm', '5893001'), + (501, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xd9V7YEm', '5893260'), + (501, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xd9V7YEm', '5899826'), + (501, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xd9V7YEm', '5900199'), + (501, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xd9V7YEm', '5900200'), + (501, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xd9V7YEm', '5900202'), + (501, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xd9V7YEm', '5900203'), + (501, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xd9V7YEm', '5901108'), + (501, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xd9V7YEm', '5901126'), + (501, 1897, 'maybe', '2023-02-11 01:31:40', '2025-12-17 19:47:07', 'xd9V7YEm', '5901128'), + (501, 1910, 'maybe', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xd9V7YEm', '5909655'), + (501, 1912, 'maybe', '2023-02-16 04:29:15', '2025-12-17 19:47:07', 'xd9V7YEm', '5909808'), + (501, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xd9V7YEm', '5910522'), + (501, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xd9V7YEm', '5910526'), + (501, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xd9V7YEm', '5910528'), + (501, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xd9V7YEm', '5916219'), + (501, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xd9V7YEm', '5936234'), + (501, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xd9V7YEm', '5958351'), + (501, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xd9V7YEm', '5959751'), + (501, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xd9V7YEm', '5959755'), + (501, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xd9V7YEm', '5960055'), + (501, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xd9V7YEm', '5961684'), + (501, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'xd9V7YEm', '5962132'), + (501, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'xd9V7YEm', '5962133'), + (501, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xd9V7YEm', '5962134'), + (501, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xd9V7YEm', '5962317'), + (501, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xd9V7YEm', '5962318'), + (501, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'xd9V7YEm', '5965933'), + (501, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xd9V7YEm', '5967014'), + (501, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xd9V7YEm', '5972815'), + (501, 1959, 'maybe', '2023-03-26 15:25:41', '2025-12-17 19:46:57', 'xd9V7YEm', '5972829'), + (501, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xd9V7YEm', '5974016'), + (501, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'xd9V7YEm', '5975052'), + (501, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'xd9V7YEm', '5975054'), + (501, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xd9V7YEm', '5981515'), + (501, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xd9V7YEm', '5993516'), + (501, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xd9V7YEm', '5998939'), + (501, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xd9V7YEm', '6028191'), + (501, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xd9V7YEm', '6040066'), + (501, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xd9V7YEm', '6042717'), + (501, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xd9V7YEm', '6044838'), + (501, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xd9V7YEm', '6044839'), + (501, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9V7YEm', '6045684'), + (501, 1991, 'attending', '2023-04-02 05:50:40', '2025-12-17 19:46:58', 'xd9V7YEm', '6047354'), + (501, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xd9V7YEm', '6050104'), + (501, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xd9V7YEm', '6053195'), + (501, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xd9V7YEm', '6053198'), + (501, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xd9V7YEm', '6056085'), + (501, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xd9V7YEm', '6056916'), + (501, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xd9V7YEm', '6059290'), + (501, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xd9V7YEm', '6060328'), + (501, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xd9V7YEm', '6061037'), + (501, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xd9V7YEm', '6061039'), + (501, 2019, 'maybe', '2023-04-15 19:57:43', '2025-12-17 19:47:00', 'xd9V7YEm', '6062934'), + (501, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'xd9V7YEm', '6065813'), + (501, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xd9V7YEm', '6067245'), + (501, 2024, 'attending', '2023-04-17 01:36:55', '2025-12-17 19:47:00', 'xd9V7YEm', '6067437'), + (501, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xd9V7YEm', '6068094'), + (501, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xd9V7YEm', '6068252'), + (501, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xd9V7YEm', '6068253'), + (501, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xd9V7YEm', '6068254'), + (501, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'xd9V7YEm', '6068280'), + (501, 2032, 'not_attending', '2023-06-03 14:03:12', '2025-12-17 19:47:04', 'xd9V7YEm', '6068281'), + (501, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xd9V7YEm', '6069093'), + (501, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xd9V7YEm', '6072528'), + (501, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'xd9V7YEm', '6075556'), + (501, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xd9V7YEm', '6079840'), + (501, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xd9V7YEm', '6083398'), + (501, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xd9V7YEm', '6093504'), + (501, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xd9V7YEm', '6097414'), + (501, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xd9V7YEm', '6097442'), + (501, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xd9V7YEm', '6097684'), + (501, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xd9V7YEm', '6098762'), + (501, 2064, 'attending', '2023-06-24 21:48:44', '2025-12-17 19:46:50', 'xd9V7YEm', '6099988'), + (501, 2065, 'not_attending', '2023-06-15 15:53:34', '2025-12-17 19:46:49', 'xd9V7YEm', '6101169'), + (501, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xd9V7YEm', '6101361'), + (501, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xd9V7YEm', '6101362'), + (501, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xd9V7YEm', '6107314'), + (501, 2076, 'attending', '2023-05-19 11:41:10', '2025-12-17 19:47:03', 'xd9V7YEm', '6108350'), + (501, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xd9V7YEm', '6120034'), + (501, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'xd9V7YEm', '6136733'), + (501, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xd9V7YEm', '6137989'), + (501, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xd9V7YEm', '6150864'), + (501, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xd9V7YEm', '6155491'), + (501, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xd9V7YEm', '6164417'), + (501, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xd9V7YEm', '6166388'), + (501, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xd9V7YEm', '6176439'), + (501, 2126, 'attending', '2023-06-29 23:45:48', '2025-12-17 19:46:51', 'xd9V7YEm', '6177548'), + (501, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xd9V7YEm', '6182410'), + (501, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xd9V7YEm', '6185812'), + (501, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xd9V7YEm', '6187651'), + (501, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xd9V7YEm', '6187963'), + (501, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xd9V7YEm', '6187964'), + (501, 2136, 'maybe', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xd9V7YEm', '6187966'), + (501, 2137, 'maybe', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xd9V7YEm', '6187967'), + (501, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xd9V7YEm', '6187969'), + (501, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xd9V7YEm', '6334878'), + (501, 2153, 'maybe', '2023-07-16 17:04:30', '2025-12-17 19:46:52', 'xd9V7YEm', '6337236'), + (501, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xd9V7YEm', '6337970'), + (501, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xd9V7YEm', '6338308'), + (501, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'xd9V7YEm', '6338342'), + (501, 2159, 'attending', '2023-07-17 23:41:24', '2025-12-17 19:46:53', 'xd9V7YEm', '6338355'), + (501, 2160, 'attending', '2023-07-17 23:41:27', '2025-12-17 19:46:54', 'xd9V7YEm', '6338358'), + (501, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xd9V7YEm', '6341710'), + (501, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xd9V7YEm', '6342044'), + (501, 2167, 'maybe', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xd9V7YEm', '6342298'), + (501, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xd9V7YEm', '6343294'), + (501, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xd9V7YEm', '6347034'), + (501, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xd9V7YEm', '6347056'), + (501, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xd9V7YEm', '6353830'), + (501, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xd9V7YEm', '6353831'), + (501, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xd9V7YEm', '6357867'), + (501, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xd9V7YEm', '6358652'), + (501, 2193, 'maybe', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'xd9V7YEm', '6358668'), + (501, 2194, 'maybe', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'xd9V7YEm', '6358669'), + (501, 2204, 'attending', '2023-08-18 10:21:09', '2025-12-17 19:46:55', 'xd9V7YEm', '6361542'), + (501, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xd9V7YEm', '6361709'), + (501, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xd9V7YEm', '6361710'), + (501, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xd9V7YEm', '6361711'), + (501, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xd9V7YEm', '6361712'), + (501, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xd9V7YEm', '6361713'), + (501, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'xd9V7YEm', '6382573'), + (501, 2239, 'attending', '2023-08-31 21:42:34', '2025-12-17 19:46:56', 'xd9V7YEm', '6387592'), + (501, 2240, 'attending', '2023-09-08 03:08:29', '2025-12-17 19:46:56', 'xd9V7YEm', '6388603'), + (501, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'xd9V7YEm', '6388604'), + (501, 2242, 'attending', '2023-09-21 22:13:02', '2025-12-17 19:46:45', 'xd9V7YEm', '6388606'), + (501, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xd9V7YEm', '6394629'), + (501, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xd9V7YEm', '6394631'), + (501, 2256, 'attending', '2023-09-21 22:13:09', '2025-12-17 19:46:45', 'xd9V7YEm', '6404369'), + (501, 2267, 'maybe', '2023-10-04 17:24:31', '2025-12-17 19:46:45', 'xd9V7YEm', '6440034'), + (501, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xd9V7YEm', '6440863'), + (501, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xd9V7YEm', '6445440'), + (501, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xd9V7YEm', '6453951'), + (501, 2277, 'maybe', '2023-10-08 22:57:14', '2025-12-17 19:46:46', 'xd9V7YEm', '6455211'), + (501, 2279, 'not_attending', '2023-10-08 22:57:20', '2025-12-17 19:46:46', 'xd9V7YEm', '6455460'), + (501, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xd9V7YEm', '6461696'), + (501, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xd9V7YEm', '6462129'), + (501, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xd9V7YEm', '6463218'), + (501, 2294, 'not_attending', '2023-10-13 16:18:18', '2025-12-17 19:46:46', 'xd9V7YEm', '6465907'), + (501, 2299, 'attending', '2023-10-19 22:24:07', '2025-12-17 19:46:46', 'xd9V7YEm', '6472181'), + (501, 2303, 'attending', '2023-10-26 01:29:26', '2025-12-17 19:46:47', 'xd9V7YEm', '6482691'), + (501, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'xd9V7YEm', '6482693'), + (501, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'xd9V7YEm', '6484200'), + (501, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xd9V7YEm', '6484680'), + (501, 2310, 'attending', '2023-11-12 00:55:56', '2025-12-17 19:46:47', 'xd9V7YEm', '6487709'), + (501, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xd9V7YEm', '6507741'), + (501, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'xd9V7YEm', '6514659'), + (501, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xd9V7YEm', '6514660'), + (501, 2324, 'attending', '2023-12-08 01:19:46', '2025-12-17 19:46:49', 'xd9V7YEm', '6514662'), + (501, 2325, 'attending', '2023-12-13 02:46:22', '2025-12-17 19:46:36', 'xd9V7YEm', '6514663'), + (501, 2332, 'attending', '2023-11-03 20:51:07', '2025-12-17 19:46:47', 'xd9V7YEm', '6518655'), + (501, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xd9V7YEm', '6519103'), + (501, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xd9V7YEm', '6535681'), + (501, 2338, 'attending', '2023-11-24 06:07:09', '2025-12-17 19:46:48', 'xd9V7YEm', '6538868'), + (501, 2341, 'attending', '2023-11-12 20:14:10', '2025-12-17 19:46:48', 'xd9V7YEm', '6543263'), + (501, 2349, 'not_attending', '2023-11-22 17:02:13', '2025-12-17 19:46:48', 'xd9V7YEm', '6583065'), + (501, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xd9V7YEm', '6584747'), + (501, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xd9V7YEm', '6587097'), + (501, 2358, 'attending', '2023-11-30 01:17:19', '2025-12-17 19:46:48', 'xd9V7YEm', '6595321'), + (501, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xd9V7YEm', '6609022'), + (501, 2373, 'attending', '2024-01-14 17:46:15', '2025-12-17 19:46:38', 'xd9V7YEm', '6632678'), + (501, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xd9V7YEm', '6632757'), + (501, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xd9V7YEm', '6644187'), + (501, 2380, 'attending', '2023-12-31 02:09:35', '2025-12-17 19:46:37', 'xd9V7YEm', '6645105'), + (501, 2384, 'attending', '2024-01-02 04:26:36', '2025-12-17 19:46:37', 'xd9V7YEm', '6648022'), + (501, 2385, 'maybe', '2024-01-03 03:02:39', '2025-12-17 19:46:37', 'xd9V7YEm', '6648943'), + (501, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xd9V7YEm', '6648951'), + (501, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xd9V7YEm', '6648952'), + (501, 2388, 'attending', '2024-01-03 03:05:34', '2025-12-17 19:46:37', 'xd9V7YEm', '6649244'), + (501, 2390, 'maybe', '2024-01-07 05:22:28', '2025-12-17 19:46:37', 'xd9V7YEm', '6651141'), + (501, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xd9V7YEm', '6655401'), + (501, 2399, 'attending', '2024-01-11 02:33:07', '2025-12-17 19:46:38', 'xd9V7YEm', '6657583'), + (501, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xd9V7YEm', '6661585'), + (501, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xd9V7YEm', '6661588'), + (501, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xd9V7YEm', '6661589'), + (501, 2404, 'maybe', '2024-01-13 19:02:03', '2025-12-17 19:46:38', 'xd9V7YEm', '6666858'), + (501, 2405, 'maybe', '2024-01-13 19:01:53', '2025-12-17 19:46:38', 'xd9V7YEm', '6667332'), + (501, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xd9V7YEm', '6699906'), + (501, 2408, 'attending', '2024-01-26 05:26:18', '2025-12-17 19:46:40', 'xd9V7YEm', '6699907'), + (501, 2409, 'attending', '2024-02-02 04:48:52', '2025-12-17 19:46:41', 'xd9V7YEm', '6699909'), + (501, 2410, 'attending', '2024-02-09 18:38:29', '2025-12-17 19:46:41', 'xd9V7YEm', '6699911'), + (501, 2411, 'not_attending', '2024-02-12 18:10:48', '2025-12-17 19:46:42', 'xd9V7YEm', '6699913'), + (501, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xd9V7YEm', '6701109'), + (501, 2419, 'maybe', '2024-02-03 00:32:02', '2025-12-17 19:46:41', 'xd9V7YEm', '6704505'), + (501, 2420, 'maybe', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'xd9V7YEm', '6704561'), + (501, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xd9V7YEm', '6705219'), + (501, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'xd9V7YEm', '6708410'), + (501, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xd9V7YEm', '6710153'), + (501, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xd9V7YEm', '6711552'), + (501, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'xd9V7YEm', '6711553'), + (501, 2431, 'maybe', '2024-01-23 05:26:25', '2025-12-17 19:46:41', 'xd9V7YEm', '6712394'), + (501, 2434, 'attending', '2024-01-27 04:10:39', '2025-12-17 19:46:40', 'xd9V7YEm', '6716605'), + (501, 2435, 'attending', '2024-01-27 02:47:26', '2025-12-17 19:46:41', 'xd9V7YEm', '6721547'), + (501, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xd9V7YEm', '6722688'), + (501, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xd9V7YEm', '6730620'), + (501, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xd9V7YEm', '6730642'), + (501, 2441, 'attending', '2024-02-02 04:50:51', '2025-12-17 19:46:41', 'xd9V7YEm', '6731263'), + (501, 2452, 'maybe', '2024-02-12 18:10:12', '2025-12-17 19:46:41', 'xd9V7YEm', '6740361'), + (501, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xd9V7YEm', '6740364'), + (501, 2456, 'maybe', '2024-02-08 16:40:01', '2025-12-17 19:46:41', 'xd9V7YEm', '6742202'), + (501, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xd9V7YEm', '6743829'), + (501, 2463, 'maybe', '2024-02-12 18:10:29', '2025-12-17 19:46:41', 'xd9V7YEm', '6746394'), + (501, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xd9V7YEm', '7030380'), + (501, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xd9V7YEm', '7033677'), + (501, 2473, 'attending', '2024-02-26 20:16:38', '2025-12-17 19:46:43', 'xd9V7YEm', '7033724'), + (501, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xd9V7YEm', '7035415'), + (501, 2477, 'attending', '2024-02-22 04:21:05', '2025-12-17 19:46:42', 'xd9V7YEm', '7035692'), + (501, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xd9V7YEm', '7044715'), + (501, 2487, 'maybe', '2024-03-22 16:22:13', '2025-12-17 19:46:33', 'xd9V7YEm', '7049279'), + (501, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xd9V7YEm', '7050318'), + (501, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xd9V7YEm', '7050319'), + (501, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xd9V7YEm', '7050322'), + (501, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xd9V7YEm', '7057804'), + (501, 2502, 'not_attending', '2024-03-06 02:24:18', '2025-12-17 19:46:33', 'xd9V7YEm', '7061202'), + (501, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xd9V7YEm', '7072824'), + (501, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xd9V7YEm', '7074348'), + (501, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xd9V7YEm', '7074364'), + (501, 2528, 'not_attending', '2024-08-03 01:28:18', '2025-12-17 19:46:31', 'xd9V7YEm', '7074368'), + (501, 2538, 'attending', '2024-03-24 23:05:47', '2025-12-17 19:46:33', 'xd9V7YEm', '7085485'), + (501, 2539, 'maybe', '2024-04-05 20:21:10', '2025-12-17 19:46:33', 'xd9V7YEm', '7085486'), + (501, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'xd9V7YEm', '7089267'), + (501, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xd9V7YEm', '7098747'), + (501, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xd9V7YEm', '7113468'), + (501, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xd9V7YEm', '7114856'), + (501, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xd9V7YEm', '7114951'), + (501, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xd9V7YEm', '7114955'), + (501, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xd9V7YEm', '7114956'), + (501, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xd9V7YEm', '7114957'), + (501, 2567, 'maybe', '2024-04-04 01:49:18', '2025-12-17 19:46:33', 'xd9V7YEm', '7144962'), + (501, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xd9V7YEm', '7153615'), + (501, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xd9V7YEm', '7159484'), + (501, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xd9V7YEm', '7178446'), + (501, 2594, 'attending', '2024-04-20 15:25:44', '2025-12-17 19:46:34', 'xd9V7YEm', '7182117'), + (501, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'xd9V7YEm', '7220467'), + (501, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xd9V7YEm', '7240354'), + (501, 2617, 'attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xd9V7YEm', '7251633'), + (501, 2623, 'maybe', '2024-05-10 14:21:06', '2025-12-17 19:46:35', 'xd9V7YEm', '7263048'), + (501, 2624, 'not_attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', 'xd9V7YEm', '7263301'), + (501, 2626, 'attending', '2024-05-16 23:24:03', '2025-12-17 19:46:35', 'xd9V7YEm', '7264723'), + (501, 2628, 'attending', '2024-05-31 02:32:14', '2025-12-17 19:46:36', 'xd9V7YEm', '7264725'), + (501, 2629, 'attending', '2024-06-07 22:39:51', '2025-12-17 19:46:28', 'xd9V7YEm', '7264726'), + (501, 2650, 'attending', '2024-05-24 16:28:16', '2025-12-17 19:46:35', 'xd9V7YEm', '7288199'), + (501, 2655, 'maybe', '2024-05-26 23:07:17', '2025-12-17 19:46:35', 'xd9V7YEm', '7291225'), + (501, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'xd9V7YEm', '7302674'), + (501, 2678, 'attending', '2024-06-11 11:17:17', '2025-12-17 19:46:28', 'xd9V7YEm', '7319489'), + (501, 2679, 'not_attending', '2024-06-20 15:22:59', '2025-12-17 19:46:29', 'xd9V7YEm', '7319490'), + (501, 2685, 'maybe', '2024-06-11 11:17:03', '2025-12-17 19:46:28', 'xd9V7YEm', '7322675'), + (501, 2686, 'not_attending', '2024-06-11 11:16:20', '2025-12-17 19:46:29', 'xd9V7YEm', '7323802'), + (501, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xd9V7YEm', '7324073'), + (501, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xd9V7YEm', '7324074'), + (501, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xd9V7YEm', '7324075'), + (501, 2691, 'not_attending', '2024-07-20 00:17:35', '2025-12-17 19:46:30', 'xd9V7YEm', '7324076'), + (501, 2692, 'not_attending', '2024-07-20 00:17:39', '2025-12-17 19:46:30', 'xd9V7YEm', '7324077'), + (501, 2693, 'maybe', '2024-07-31 23:48:50', '2025-12-17 19:46:31', 'xd9V7YEm', '7324078'), + (501, 2694, 'attending', '2024-08-10 22:12:47', '2025-12-17 19:46:31', 'xd9V7YEm', '7324079'), + (501, 2695, 'attending', '2024-08-17 22:18:16', '2025-12-17 19:46:31', 'xd9V7YEm', '7324080'), + (501, 2696, 'maybe', '2024-08-19 13:39:40', '2025-12-17 19:46:32', 'xd9V7YEm', '7324081'), + (501, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xd9V7YEm', '7324082'), + (501, 2709, 'maybe', '2024-06-20 15:23:22', '2025-12-17 19:46:29', 'xd9V7YEm', '7325107'), + (501, 2710, 'maybe', '2024-06-20 15:22:42', '2025-12-17 19:46:29', 'xd9V7YEm', '7325108'), + (501, 2721, 'attending', '2024-06-20 15:23:33', '2025-12-17 19:46:29', 'xd9V7YEm', '7331456'), + (501, 2722, 'attending', '2024-07-08 22:55:30', '2025-12-17 19:46:29', 'xd9V7YEm', '7331457'), + (501, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xd9V7YEm', '7363643'), + (501, 2773, 'attending', '2024-07-21 18:41:54', '2025-12-17 19:46:31', 'xd9V7YEm', '7368605'), + (501, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xd9V7YEm', '7368606'), + (501, 2792, 'maybe', '2024-08-08 14:06:09', '2025-12-17 19:46:31', 'xd9V7YEm', '7390763'), + (501, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xd9V7YEm', '7397462'), + (501, 2807, 'attending', '2024-08-22 22:30:46', '2025-12-17 19:46:32', 'xd9V7YEm', '7406485'), + (501, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xd9V7YEm', '7432751'), + (501, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xd9V7YEm', '7432752'), + (501, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xd9V7YEm', '7432753'), + (501, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xd9V7YEm', '7432754'), + (501, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xd9V7YEm', '7432755'), + (501, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xd9V7YEm', '7432756'), + (501, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xd9V7YEm', '7432758'), + (501, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xd9V7YEm', '7432759'), + (501, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xd9V7YEm', '7433834'), + (502, 245, 'attending', '2020-11-27 18:14:33', '2025-12-17 19:47:54', '64vvYGk4', '3149476'), + (502, 469, 'attending', '2020-11-27 18:10:55', '2025-12-17 19:47:54', '64vvYGk4', '3285414'), + (502, 493, 'not_attending', '2020-12-06 01:13:28', '2025-12-17 19:47:54', '64vvYGk4', '3313856'), + (502, 495, 'attending', '2020-12-02 08:15:16', '2025-12-17 19:47:54', '64vvYGk4', '3314009'), + (502, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '64vvYGk4', '3314909'), + (502, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '64vvYGk4', '3314964'), + (502, 502, 'not_attending', '2020-12-13 01:24:46', '2025-12-17 19:47:55', '64vvYGk4', '3323365'), + (502, 511, 'attending', '2020-12-15 03:37:36', '2025-12-17 19:47:55', '64vvYGk4', '3325335'), + (502, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '64vvYGk4', '3329383'), + (502, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '64vvYGk4', '3351539'), + (502, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '64vvYGk4', '3386848'), + (502, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '64vvYGk4', '3389527'), + (502, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '64vvYGk4', '3396499'), + (502, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '64vvYGk4', '3403650'), + (502, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '64vvYGk4', '3406988'), + (502, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', '64vvYGk4', '3408338'), + (502, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '64vvYGk4', '3416576'), + (502, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64vvYGk4', '6045684'), + (503, 252, 'attending', '2021-02-23 00:35:51', '2025-12-17 19:47:50', '54koopR4', '3149483'), + (503, 573, 'not_attending', '2021-02-25 21:18:14', '2025-12-17 19:47:50', '54koopR4', '3435542'), + (503, 574, 'not_attending', '2021-03-03 23:45:35', '2025-12-17 19:47:51', '54koopR4', '3435543'), + (503, 592, 'attending', '2021-02-24 04:43:39', '2025-12-17 19:47:50', '54koopR4', '3467757'), + (503, 594, 'not_attending', '2021-03-01 23:48:44', '2025-12-17 19:47:51', '54koopR4', '3467759'), + (503, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '54koopR4', '3470305'), + (503, 620, 'attending', '2021-02-24 04:43:44', '2025-12-17 19:47:50', '54koopR4', '3513703'), + (503, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '54koopR4', '3517815'), + (503, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '54koopR4', '3517816'), + (503, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '54koopR4', '3523941'), + (503, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54koopR4', '3533850'), + (503, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '54koopR4', '3536632'), + (503, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '54koopR4', '3536656'), + (503, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '54koopR4', '3539916'), + (503, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '54koopR4', '3539917'), + (503, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '54koopR4', '3539918'), + (503, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '54koopR4', '3539919'), + (503, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54koopR4', '3539920'), + (503, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54koopR4', '3539921'), + (503, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54koopR4', '3539922'), + (503, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '54koopR4', '3539923'), + (503, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '54koopR4', '3539927'), + (503, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54koopR4', '3582734'), + (503, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '54koopR4', '3583262'), + (503, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '54koopR4', '3619523'), + (503, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '54koopR4', '3661369'), + (503, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54koopR4', '3674262'), + (503, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54koopR4', '3677402'), + (503, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54koopR4', '3730212'), + (503, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54koopR4', '6045684'), + (504, 2522, 'not_attending', '2024-07-17 19:54:31', '2025-12-17 19:46:30', '4v0WwbOm', '7074362'), + (504, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4v0WwbOm', '7074364'), + (504, 2529, 'attending', '2024-05-19 02:50:58', '2025-12-17 19:46:35', '4v0WwbOm', '7074369'), + (504, 2626, 'attending', '2024-05-17 02:47:45', '2025-12-17 19:46:35', '4v0WwbOm', '7264723'), + (504, 2627, 'maybe', '2024-05-19 02:51:01', '2025-12-17 19:46:35', '4v0WwbOm', '7264724'), + (504, 2633, 'attending', '2024-05-17 02:43:06', '2025-12-17 19:46:35', '4v0WwbOm', '7270095'), + (504, 2634, 'attending', '2024-05-19 02:50:04', '2025-12-17 19:46:35', '4v0WwbOm', '7270321'), + (504, 2635, 'attending', '2024-05-19 02:50:09', '2025-12-17 19:46:35', '4v0WwbOm', '7270322'), + (504, 2636, 'attending', '2024-05-19 02:51:05', '2025-12-17 19:46:35', '4v0WwbOm', '7270323'), + (504, 2637, 'attending', '2024-05-19 02:51:08', '2025-12-17 19:46:35', '4v0WwbOm', '7270324'), + (504, 2638, 'attending', '2024-05-17 02:47:18', '2025-12-17 19:46:35', '4v0WwbOm', '7273117'), + (504, 2639, 'attending', '2024-05-16 17:02:04', '2025-12-17 19:46:35', '4v0WwbOm', '7273242'), + (504, 2640, 'attending', '2024-05-18 01:43:26', '2025-12-17 19:46:35', '4v0WwbOm', '7275331'), + (504, 2644, 'attending', '2024-05-22 03:19:07', '2025-12-17 19:46:35', '4v0WwbOm', '7279039'), + (504, 2645, 'attending', '2024-05-20 19:54:01', '2025-12-17 19:46:35', '4v0WwbOm', '7279964'), + (504, 2646, 'not_attending', '2024-05-22 03:18:11', '2025-12-17 19:46:35', '4v0WwbOm', '7281768'), + (504, 2648, 'attending', '2024-05-21 19:09:55', '2025-12-17 19:46:35', '4v0WwbOm', '7282283'), + (504, 2650, 'not_attending', '2024-05-24 16:29:06', '2025-12-17 19:46:35', '4v0WwbOm', '7288199'), + (504, 2652, 'attending', '2024-05-31 03:51:14', '2025-12-17 19:46:36', '4v0WwbOm', '7288339'), + (504, 2656, 'attending', '2024-05-30 21:06:15', '2025-12-17 19:46:36', '4v0WwbOm', '7291301'), + (504, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4v0WwbOm', '7302674'), + (504, 2662, 'attending', '2024-06-02 19:06:53', '2025-12-17 19:46:36', '4v0WwbOm', '7302815'), + (504, 2679, 'attending', '2024-06-16 01:46:31', '2025-12-17 19:46:29', '4v0WwbOm', '7319490'), + (504, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4v0WwbOm', '7324073'), + (504, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4v0WwbOm', '7324074'), + (504, 2690, 'attending', '2024-07-07 02:22:54', '2025-12-17 19:46:30', '4v0WwbOm', '7324075'), + (504, 2691, 'attending', '2024-07-20 19:00:12', '2025-12-17 19:46:30', '4v0WwbOm', '7324076'), + (504, 2692, 'attending', '2024-07-07 02:22:42', '2025-12-17 19:46:30', '4v0WwbOm', '7324077'), + (504, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4v0WwbOm', '7324078'), + (504, 2695, 'attending', '2024-08-17 20:53:38', '2025-12-17 19:46:31', '4v0WwbOm', '7324080'), + (504, 2697, 'attending', '2024-08-31 00:56:27', '2025-12-17 19:46:32', '4v0WwbOm', '7324082'), + (504, 2698, 'attending', '2024-09-05 23:38:18', '2025-12-17 19:46:24', '4v0WwbOm', '7324083'), + (504, 2706, 'attending', '2024-06-16 01:46:45', '2025-12-17 19:46:28', '4v0WwbOm', '7324947'), + (504, 2707, 'attending', '2024-06-16 01:45:57', '2025-12-17 19:46:28', '4v0WwbOm', '7324952'), + (504, 2711, 'not_attending', '2024-07-17 19:54:21', '2025-12-17 19:46:30', '4v0WwbOm', '7326524'), + (504, 2719, 'attending', '2024-06-18 18:13:12', '2025-12-17 19:46:29', '4v0WwbOm', '7331305'), + (504, 2720, 'attending', '2024-06-18 20:49:55', '2025-12-17 19:46:28', '4v0WwbOm', '7331436'), + (504, 2721, 'attending', '2024-06-18 22:40:56', '2025-12-17 19:46:29', '4v0WwbOm', '7331456'), + (504, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '4v0WwbOm', '7331457'), + (504, 2724, 'attending', '2024-06-26 17:29:11', '2025-12-17 19:46:29', '4v0WwbOm', '7332562'), + (504, 2729, 'attending', '2024-06-21 21:28:22', '2025-12-17 19:46:29', '4v0WwbOm', '7335092'), + (504, 2734, 'attending', '2024-06-30 01:54:53', '2025-12-17 19:46:29', '4v0WwbOm', '7339440'), + (504, 2741, 'attending', '2024-06-30 23:33:56', '2025-12-17 19:46:30', '4v0WwbOm', '7344592'), + (504, 2747, 'not_attending', '2024-07-17 19:54:02', '2025-12-17 19:46:30', '4v0WwbOm', '7353587'), + (504, 2751, 'attending', '2024-07-08 12:05:05', '2025-12-17 19:46:29', '4v0WwbOm', '7355530'), + (504, 2752, 'attending', '2024-07-08 12:05:16', '2025-12-17 19:46:29', '4v0WwbOm', '7355531'), + (504, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4v0WwbOm', '7356752'), + (504, 2764, 'maybe', '2024-07-17 01:31:10', '2025-12-17 19:46:30', '4v0WwbOm', '7363595'), + (504, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4v0WwbOm', '7363643'), + (504, 2773, 'attending', '2024-07-27 21:26:16', '2025-12-17 19:46:31', '4v0WwbOm', '7368605'), + (504, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4v0WwbOm', '7368606'), + (504, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4v0WwbOm', '7397462'), + (504, 2821, 'attending', '2024-10-12 01:36:44', '2025-12-17 19:46:26', '4v0WwbOm', '7424275'), + (504, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4v0WwbOm', '7424276'), + (504, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4v0WwbOm', '7432751'), + (504, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4v0WwbOm', '7432752'), + (504, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4v0WwbOm', '7432753'), + (504, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4v0WwbOm', '7432754'), + (504, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4v0WwbOm', '7432755'), + (504, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4v0WwbOm', '7432756'), + (504, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4v0WwbOm', '7432758'), + (504, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4v0WwbOm', '7432759'), + (504, 2832, 'attending', '2024-09-09 20:21:45', '2025-12-17 19:46:24', '4v0WwbOm', '7433324'), + (504, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '4v0WwbOm', '7433834'), + (504, 2850, 'maybe', '2024-09-30 17:48:41', '2025-12-17 19:46:25', '4v0WwbOm', '7457153'), + (504, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4v0WwbOm', '7470197'), + (504, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4v0WwbOm', '7685613'), + (504, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4v0WwbOm', '7688194'), + (504, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4v0WwbOm', '7688196'), + (504, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4v0WwbOm', '7688289'), + (504, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4v0WwbOm', '7692763'), + (504, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4v0WwbOm', '7697552'), + (504, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4v0WwbOm', '7699878'), + (504, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4v0WwbOm', '7704043'), + (504, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4v0WwbOm', '7712467'), + (504, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4v0WwbOm', '7713585'), + (504, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4v0WwbOm', '7713586'), + (504, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4v0WwbOm', '7738518'), + (504, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4v0WwbOm', '7750636'), + (504, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4v0WwbOm', '7796540'), + (504, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4v0WwbOm', '7796541'), + (504, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4v0WwbOm', '7796542'), + (504, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4v0WwbOm', '7825913'), + (504, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4v0WwbOm', '7826209'), + (504, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4v0WwbOm', '7834742'), + (504, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4v0WwbOm', '7842108'), + (504, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4v0WwbOm', '7842902'), + (504, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4v0WwbOm', '7842903'), + (504, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4v0WwbOm', '7842904'), + (504, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4v0WwbOm', '7842905'), + (504, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4v0WwbOm', '7855719'), + (504, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4v0WwbOm', '7860683'), + (504, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4v0WwbOm', '7860684'), + (504, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4v0WwbOm', '7866095'), + (504, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4v0WwbOm', '7869170'), + (504, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4v0WwbOm', '7869188'), + (504, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4v0WwbOm', '7869201'), + (504, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4v0WwbOm', '7877465'), + (504, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4v0WwbOm', '7878570'), + (504, 3051, 'attending', '2025-03-18 23:16:55', '2025-12-17 19:46:19', '4v0WwbOm', '7884023'), + (504, 3052, 'attending', '2025-03-18 23:16:56', '2025-12-17 19:46:19', '4v0WwbOm', '7884024'), + (504, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4v0WwbOm', '7888250'), + (504, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4v0WwbOm', '7904777'), + (504, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4v0WwbOm', '8349164'), + (504, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4v0WwbOm', '8349545'), + (504, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4v0WwbOm', '8353584'), + (504, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4v0WwbOm', '8368028'), + (504, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4v0WwbOm', '8368029'), + (504, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4v0WwbOm', '8388462'), + (504, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4v0WwbOm', '8400273'), + (504, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4v0WwbOm', '8400274'), + (504, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4v0WwbOm', '8400275'), + (504, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4v0WwbOm', '8400276'), + (504, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4v0WwbOm', '8404977'), + (504, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4v0WwbOm', '8430783'), + (504, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4v0WwbOm', '8430784'), + (504, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4v0WwbOm', '8430799'), + (504, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4v0WwbOm', '8430800'), + (504, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4v0WwbOm', '8430801'), + (504, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4v0WwbOm', '8438709'), + (504, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4v0WwbOm', '8457738'), + (504, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4v0WwbOm', '8459566'), + (504, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4v0WwbOm', '8459567'), + (504, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4v0WwbOm', '8461032'), + (504, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4v0WwbOm', '8477877'), + (504, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4v0WwbOm', '8485688'), + (505, 639, 'attending', '2021-03-22 00:34:39', '2025-12-17 19:47:51', 'O4Za9geA', '3536656'), + (505, 641, 'not_attending', '2021-03-31 03:35:31', '2025-12-17 19:47:44', 'O4Za9geA', '3539916'), + (505, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'O4Za9geA', '3539918'), + (505, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'O4Za9geA', '3539919'), + (505, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'O4Za9geA', '3539920'), + (505, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'O4Za9geA', '3539927'), + (505, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'O4Za9geA', '3582734'), + (505, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'O4Za9geA', '3583262'), + (505, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'O4Za9geA', '3619523'), + (505, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'O4Za9geA', '3661369'), + (505, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'O4Za9geA', '3674262'), + (505, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'O4Za9geA', '3677402'), + (505, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'O4Za9geA', '3730212'), + (505, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4Za9geA', '6045684'), + (506, 401, 'attending', '2021-05-13 15:36:33', '2025-12-17 19:47:46', 'GmjJa35m', '3236456'), + (506, 646, 'attending', '2021-05-14 14:57:17', '2025-12-17 19:47:46', 'GmjJa35m', '3539921'), + (506, 647, 'attending', '2021-05-19 15:18:12', '2025-12-17 19:47:46', 'GmjJa35m', '3539922'), + (506, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'GmjJa35m', '3539923'), + (506, 761, 'attending', '2021-05-13 15:14:32', '2025-12-17 19:47:46', 'GmjJa35m', '3716041'), + (506, 802, 'not_attending', '2021-05-13 15:36:28', '2025-12-17 19:47:46', 'GmjJa35m', '3803310'), + (506, 813, 'not_attending', '2021-05-15 22:42:42', '2025-12-17 19:47:46', 'GmjJa35m', '3810231'), + (506, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjJa35m', '3974109'), + (506, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjJa35m', '3975311'), + (506, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjJa35m', '3975312'), + (506, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjJa35m', '3994992'), + (506, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjJa35m', '4014338'), + (506, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GmjJa35m', '4021848'), + (506, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjJa35m', '4136744'), + (506, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GmjJa35m', '4136937'), + (506, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GmjJa35m', '4136938'), + (506, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjJa35m', '4136947'), + (506, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjJa35m', '4239259'), + (506, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GmjJa35m', '4250163'), + (506, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjJa35m', '6045684'), + (507, 1153, 'attending', '2022-01-19 21:48:32', '2025-12-17 19:47:32', 'm6YVxaRd', '4708707'), + (507, 1154, 'maybe', '2022-01-26 20:36:37', '2025-12-17 19:47:32', 'm6YVxaRd', '4708708'), + (507, 1175, 'attending', '2022-01-22 19:47:33', '2025-12-17 19:47:32', 'm6YVxaRd', '4736497'), + (507, 1176, 'attending', '2022-01-31 01:27:39', '2025-12-17 19:47:32', 'm6YVxaRd', '4736498'), + (507, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm6YVxaRd', '4736499'), + (507, 1178, 'attending', '2022-01-29 17:12:54', '2025-12-17 19:47:32', 'm6YVxaRd', '4736500'), + (507, 1179, 'attending', '2022-02-20 00:42:12', '2025-12-17 19:47:32', 'm6YVxaRd', '4736501'), + (507, 1180, 'attending', '2022-02-11 19:52:20', '2025-12-17 19:47:33', 'm6YVxaRd', '4736502'), + (507, 1181, 'attending', '2022-03-05 22:46:08', '2025-12-17 19:47:33', 'm6YVxaRd', '4736503'), + (507, 1182, 'maybe', '2022-03-12 23:56:51', '2025-12-17 19:47:33', 'm6YVxaRd', '4736504'), + (507, 1193, 'attending', '2022-01-21 21:50:43', '2025-12-17 19:47:32', 'm6YVxaRd', '4759563'), + (507, 1198, 'not_attending', '2022-01-24 23:34:38', '2025-12-17 19:47:32', 'm6YVxaRd', '4766801'), + (507, 1201, 'attending', '2022-01-18 01:02:38', '2025-12-17 19:47:32', 'm6YVxaRd', '4766841'), + (507, 1210, 'maybe', '2022-01-29 02:42:53', '2025-12-17 19:47:32', 'm6YVxaRd', '4776927'), + (507, 1216, 'attending', '2022-01-29 17:17:54', '2025-12-17 19:47:32', 'm6YVxaRd', '4781137'), + (507, 1217, 'not_attending', '2022-01-30 20:08:24', '2025-12-17 19:47:32', 'm6YVxaRd', '4781139'), + (507, 1218, 'maybe', '2022-01-31 01:25:06', '2025-12-17 19:47:32', 'm6YVxaRd', '4788464'), + (507, 1219, 'maybe', '2022-02-03 00:47:29', '2025-12-17 19:47:32', 'm6YVxaRd', '4788466'), + (507, 1220, 'attending', '2022-01-29 00:28:27', '2025-12-17 19:47:32', 'm6YVxaRd', '4790257'), + (507, 1223, 'attending', '2022-01-31 01:26:26', '2025-12-17 19:47:32', 'm6YVxaRd', '5015635'), + (507, 1224, 'maybe', '2022-01-31 01:27:11', '2025-12-17 19:47:32', 'm6YVxaRd', '5016682'), + (507, 1227, 'maybe', '2022-02-11 19:51:47', '2025-12-17 19:47:32', 'm6YVxaRd', '5027602'), + (507, 1228, 'maybe', '2022-02-11 19:53:03', '2025-12-17 19:47:32', 'm6YVxaRd', '5028238'), + (507, 1229, 'maybe', '2022-02-11 19:52:09', '2025-12-17 19:47:32', 'm6YVxaRd', '5034963'), + (507, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm6YVxaRd', '5038850'), + (507, 1233, 'maybe', '2022-02-10 22:24:11', '2025-12-17 19:47:32', 'm6YVxaRd', '5038910'), + (507, 1234, 'attending', '2022-02-11 19:51:34', '2025-12-17 19:47:32', 'm6YVxaRd', '5042197'), + (507, 1236, 'maybe', '2022-02-14 20:14:13', '2025-12-17 19:47:32', 'm6YVxaRd', '5045826'), + (507, 1247, 'maybe', '2022-02-25 21:48:12', '2025-12-17 19:47:33', 'm6YVxaRd', '5065027'), + (507, 1250, 'attending', '2022-03-04 00:14:01', '2025-12-17 19:47:33', 'm6YVxaRd', '5069735'), + (507, 1252, 'maybe', '2022-03-05 00:27:35', '2025-12-17 19:47:33', 'm6YVxaRd', '5129121'), + (507, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6YVxaRd', '5132533'), + (507, 1271, 'maybe', '2022-03-17 20:57:48', '2025-12-17 19:47:25', 'm6YVxaRd', '5181648'), + (507, 1272, 'maybe', '2022-03-17 20:57:31', '2025-12-17 19:47:25', 'm6YVxaRd', '5186582'), + (507, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6YVxaRd', '5186583'), + (507, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6YVxaRd', '5186585'), + (507, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6YVxaRd', '5190437'), + (507, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'm6YVxaRd', '5195095'), + (507, 1291, 'maybe', '2022-03-25 18:22:12', '2025-12-17 19:47:25', 'm6YVxaRd', '5200458'), + (507, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6YVxaRd', '5215989'), + (507, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'm6YVxaRd', '5223686'), + (507, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'm6YVxaRd', '5227432'), + (507, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'm6YVxaRd', '5247467'), + (507, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'm6YVxaRd', '5260800'), + (507, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6YVxaRd', '5269930'), + (507, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6YVxaRd', '5271448'), + (507, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'm6YVxaRd', '5271449'), + (507, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'm6YVxaRd', '5276469'), + (507, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6YVxaRd', '5278159'), + (507, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'm6YVxaRd', '5363695'), + (507, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'm6YVxaRd', '5365960'), + (507, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'm6YVxaRd', '5368973'), + (507, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'm6YVxaRd', '5378247'), + (507, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'm6YVxaRd', '5389605'), + (507, 1442, 'attending', '2022-06-18 16:38:43', '2025-12-17 19:47:17', 'm6YVxaRd', '5397265'), + (507, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'm6YVxaRd', '5403967'), + (507, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'm6YVxaRd', '5404786'), + (507, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'm6YVxaRd', '5405203'), + (507, 1470, 'maybe', '2022-06-18 16:44:46', '2025-12-17 19:47:17', 'm6YVxaRd', '5407053'), + (507, 1478, 'maybe', '2022-06-18 16:36:45', '2025-12-17 19:47:19', 'm6YVxaRd', '5408794'), + (507, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'm6YVxaRd', '5411699'), + (507, 1482, 'attending', '2022-06-25 19:19:48', '2025-12-17 19:47:19', 'm6YVxaRd', '5412550'), + (507, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6YVxaRd', '5415046'), + (507, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6YVxaRd', '5422086'), + (507, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6YVxaRd', '5422406'), + (507, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6YVxaRd', '5424565'), + (507, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6YVxaRd', '5426882'), + (507, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'm6YVxaRd', '5427083'), + (507, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'm6YVxaRd', '5441125'), + (507, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6YVxaRd', '5441126'), + (507, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'm6YVxaRd', '5441128'), + (507, 1517, 'attending', '2022-08-26 20:06:17', '2025-12-17 19:47:23', 'm6YVxaRd', '5441130'), + (507, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6YVxaRd', '5441131'), + (507, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'm6YVxaRd', '5441132'), + (507, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6YVxaRd', '5446643'), + (507, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6YVxaRd', '5453325'), + (507, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6YVxaRd', '5454516'), + (507, 1544, 'attending', '2022-09-17 16:46:21', '2025-12-17 19:47:11', 'm6YVxaRd', '5454517'), + (507, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6YVxaRd', '5454605'), + (507, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6YVxaRd', '5455037'), + (507, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6YVxaRd', '5461278'), + (507, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6YVxaRd', '5469480'), + (507, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6YVxaRd', '5471073'), + (507, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'm6YVxaRd', '5474663'), + (507, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6YVxaRd', '5482022'), + (507, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6YVxaRd', '5482793'), + (507, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6YVxaRd', '5488912'), + (507, 1584, 'maybe', '2022-08-26 20:06:04', '2025-12-17 19:47:23', 'm6YVxaRd', '5492004'), + (507, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6YVxaRd', '5492192'), + (507, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6YVxaRd', '5493139'), + (507, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6YVxaRd', '5493200'), + (507, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6YVxaRd', '5502188'), + (507, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6YVxaRd', '5505059'), + (507, 1612, 'maybe', '2022-10-03 22:38:05', '2025-12-17 19:47:12', 'm6YVxaRd', '5507653'), + (507, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6YVxaRd', '5509055'), + (507, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6YVxaRd', '5512862'), + (507, 1623, 'not_attending', '2022-08-26 20:07:23', '2025-12-17 19:47:23', 'm6YVxaRd', '5513678'), + (507, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6YVxaRd', '5513985'), + (507, 1626, 'maybe', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'm6YVxaRd', '5519981'), + (507, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6YVxaRd', '5522550'), + (507, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6YVxaRd', '5534683'), + (507, 1632, 'maybe', '2022-08-31 01:09:23', '2025-12-17 19:47:23', 'm6YVxaRd', '5534954'), + (507, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6YVxaRd', '5537735'), + (507, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6YVxaRd', '5540859'), + (507, 1644, 'maybe', '2022-09-19 22:23:56', '2025-12-17 19:47:11', 'm6YVxaRd', '5545857'), + (507, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6YVxaRd', '5546619'), + (507, 1648, 'maybe', '2022-09-09 15:47:10', '2025-12-17 19:47:24', 'm6YVxaRd', '5548974'), + (507, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6YVxaRd', '5555245'), + (507, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6YVxaRd', '5557747'), + (507, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6YVxaRd', '5560255'), + (507, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6YVxaRd', '5562906'), + (507, 1668, 'attending', '2022-10-01 22:23:45', '2025-12-17 19:47:12', 'm6YVxaRd', '5563222'), + (507, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6YVxaRd', '5600604'), + (507, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6YVxaRd', '5605544'), + (507, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'm6YVxaRd', '5606737'), + (507, 1713, 'maybe', '2022-10-19 15:40:22', '2025-12-17 19:47:13', 'm6YVxaRd', '5622108'), + (507, 1720, 'attending', '2022-10-12 18:01:16', '2025-12-17 19:47:12', 'm6YVxaRd', '5630959'), + (507, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6YVxaRd', '5630960'), + (507, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6YVxaRd', '5630961'), + (507, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6YVxaRd', '5630962'), + (507, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6YVxaRd', '5630966'), + (507, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6YVxaRd', '5630967'), + (507, 1726, 'maybe', '2022-11-20 16:08:14', '2025-12-17 19:47:16', 'm6YVxaRd', '5630968'), + (507, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6YVxaRd', '5635406'), + (507, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6YVxaRd', '5638765'), + (507, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6YVxaRd', '5640097'), + (507, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6YVxaRd', '5640843'), + (507, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6YVxaRd', '5641521'), + (507, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6YVxaRd', '5642818'), + (507, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6YVxaRd', '5652395'), + (507, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6YVxaRd', '5670445'), + (507, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6YVxaRd', '5671637'), + (507, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6YVxaRd', '5672329'), + (507, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6YVxaRd', '5674057'), + (507, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6YVxaRd', '5674060'), + (507, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6YVxaRd', '5677461'), + (507, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6YVxaRd', '5698046'), + (507, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6YVxaRd', '5699760'), + (507, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6YVxaRd', '5741601'), + (507, 1798, 'maybe', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6YVxaRd', '5763458'), + (507, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6YVxaRd', '5774172'), + (507, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'm6YVxaRd', '5818247'), + (507, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6YVxaRd', '5819471'), + (507, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6YVxaRd', '5827739'), + (507, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6YVxaRd', '5844306'), + (507, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6YVxaRd', '5850159'), + (507, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6YVxaRd', '5858999'), + (507, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6YVxaRd', '5871984'), + (507, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6YVxaRd', '5876354'), + (507, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm6YVxaRd', '5880939'), + (507, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm6YVxaRd', '5880940'), + (507, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm6YVxaRd', '5880942'), + (507, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm6YVxaRd', '5880943'), + (507, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6YVxaRd', '5887890'), + (507, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6YVxaRd', '5888598'), + (507, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6YVxaRd', '5893260'), + (507, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm6YVxaRd', '5899826'), + (507, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm6YVxaRd', '5900199'), + (507, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm6YVxaRd', '5900200'), + (507, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm6YVxaRd', '5900202'), + (507, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm6YVxaRd', '5900203'), + (507, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm6YVxaRd', '5901108'), + (507, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm6YVxaRd', '5901126'), + (507, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm6YVxaRd', '5909655'), + (507, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm6YVxaRd', '5910522'), + (507, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm6YVxaRd', '5910526'), + (507, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm6YVxaRd', '5910528'), + (507, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm6YVxaRd', '5916219'), + (507, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm6YVxaRd', '5936234'), + (507, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm6YVxaRd', '5958351'), + (507, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm6YVxaRd', '5959751'), + (507, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm6YVxaRd', '5959755'), + (507, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm6YVxaRd', '5960055'), + (507, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm6YVxaRd', '5961684'), + (507, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm6YVxaRd', '5962132'), + (507, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm6YVxaRd', '5962133'), + (507, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm6YVxaRd', '5962134'), + (507, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm6YVxaRd', '5962317'), + (507, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm6YVxaRd', '5962318'), + (507, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm6YVxaRd', '5965933'), + (507, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm6YVxaRd', '5967014'), + (507, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm6YVxaRd', '5972815'), + (507, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm6YVxaRd', '5974016'), + (507, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm6YVxaRd', '5981515'), + (507, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm6YVxaRd', '5993516'), + (507, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm6YVxaRd', '5998939'), + (507, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm6YVxaRd', '6028191'), + (507, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm6YVxaRd', '6040066'), + (507, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm6YVxaRd', '6042717'), + (507, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm6YVxaRd', '6044838'), + (507, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm6YVxaRd', '6044839'), + (507, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6YVxaRd', '6045684'), + (507, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm6YVxaRd', '6050104'), + (507, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm6YVxaRd', '6053195'), + (507, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm6YVxaRd', '6053198'), + (507, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm6YVxaRd', '6056085'), + (507, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm6YVxaRd', '6056916'), + (507, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm6YVxaRd', '6059290'), + (507, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm6YVxaRd', '6060328'), + (507, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm6YVxaRd', '6061037'), + (507, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm6YVxaRd', '6061039'), + (507, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm6YVxaRd', '6067245'), + (507, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm6YVxaRd', '6068094'), + (507, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm6YVxaRd', '6068252'), + (507, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm6YVxaRd', '6068253'), + (507, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm6YVxaRd', '6068254'), + (507, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm6YVxaRd', '6068280'), + (507, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm6YVxaRd', '6069093'), + (507, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'm6YVxaRd', '6072528'), + (507, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm6YVxaRd', '6079840'), + (507, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm6YVxaRd', '6083398'), + (507, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm6YVxaRd', '6093504'), + (507, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm6YVxaRd', '6097414'), + (507, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm6YVxaRd', '6097442'), + (507, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm6YVxaRd', '6097684'), + (507, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm6YVxaRd', '6098762'), + (507, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'm6YVxaRd', '6101361'), + (507, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm6YVxaRd', '6101362'), + (507, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'm6YVxaRd', '6103752'), + (507, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm6YVxaRd', '6107314'), + (507, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'm6YVxaRd', '6120034'), + (507, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'm6YVxaRd', '6136733'), + (507, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'm6YVxaRd', '6137989'), + (507, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'm6YVxaRd', '6150864'), + (507, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'm6YVxaRd', '6155491'), + (507, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'm6YVxaRd', '6164417'), + (507, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'm6YVxaRd', '6166388'), + (507, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'm6YVxaRd', '6176439'), + (507, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'm6YVxaRd', '6182410'), + (507, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'm6YVxaRd', '6185812'), + (507, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'm6YVxaRd', '6187651'), + (507, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'm6YVxaRd', '6187963'), + (507, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'm6YVxaRd', '6187964'), + (507, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'm6YVxaRd', '6187966'), + (507, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'm6YVxaRd', '6187967'), + (507, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'm6YVxaRd', '6187969'), + (507, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'm6YVxaRd', '6334878'), + (507, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'm6YVxaRd', '6337236'), + (507, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'm6YVxaRd', '6337970'), + (507, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'm6YVxaRd', '6338308'), + (507, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'm6YVxaRd', '6340845'), + (507, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'm6YVxaRd', '6341710'), + (507, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'm6YVxaRd', '6342044'), + (507, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'm6YVxaRd', '6342298'), + (507, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'm6YVxaRd', '6343294'), + (507, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'm6YVxaRd', '6347034'), + (507, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'm6YVxaRd', '6347056'), + (507, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'm6YVxaRd', '6353830'), + (507, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'm6YVxaRd', '6353831'), + (507, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'm6YVxaRd', '6357867'), + (507, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'm6YVxaRd', '6358652'), + (507, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'm6YVxaRd', '6361709'), + (507, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'm6YVxaRd', '6361710'), + (507, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'm6YVxaRd', '6361711'), + (507, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'm6YVxaRd', '6361712'), + (507, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm6YVxaRd', '6361713'), + (507, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'm6YVxaRd', '6382573'), + (507, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'm6YVxaRd', '6388604'), + (507, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm6YVxaRd', '6394629'), + (507, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm6YVxaRd', '6394631'), + (507, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'm6YVxaRd', '6440863'), + (507, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'm6YVxaRd', '6445440'), + (507, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'm6YVxaRd', '6453951'), + (507, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'm6YVxaRd', '6461696'), + (507, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'm6YVxaRd', '6462129'), + (507, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'm6YVxaRd', '6463218'), + (507, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'm6YVxaRd', '6472181'), + (507, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'm6YVxaRd', '6482693'), + (507, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'm6YVxaRd', '6484200'), + (507, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'm6YVxaRd', '6484680'), + (507, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'm6YVxaRd', '6507741'), + (507, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'm6YVxaRd', '6514659'), + (507, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'm6YVxaRd', '6514660'), + (507, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'm6YVxaRd', '6519103'), + (507, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'm6YVxaRd', '6535681'), + (507, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'm6YVxaRd', '6584747'), + (507, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'm6YVxaRd', '6587097'), + (507, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'm6YVxaRd', '6609022'), + (507, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'm6YVxaRd', '6632757'), + (507, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'm6YVxaRd', '6644187'), + (507, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'm6YVxaRd', '6648951'), + (507, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'm6YVxaRd', '6648952'), + (507, 2392, 'maybe', '2024-01-11 23:26:28', '2025-12-17 19:46:37', 'm6YVxaRd', '6654412'), + (507, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'm6YVxaRd', '6655401'), + (507, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'm6YVxaRd', '6661585'), + (507, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'm6YVxaRd', '6661588'), + (507, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'm6YVxaRd', '6661589'), + (507, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'm6YVxaRd', '6699906'), + (507, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'm6YVxaRd', '6699913'), + (507, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'm6YVxaRd', '6701109'), + (507, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'm6YVxaRd', '6705219'), + (507, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'm6YVxaRd', '6710153'), + (507, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'm6YVxaRd', '6711552'), + (507, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'm6YVxaRd', '6711553'), + (507, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'm6YVxaRd', '6722688'), + (507, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'm6YVxaRd', '6730620'), + (507, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'm6YVxaRd', '6730642'), + (507, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'm6YVxaRd', '6740364'), + (507, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'm6YVxaRd', '6743829'), + (507, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'm6YVxaRd', '7030380'), + (507, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'm6YVxaRd', '7033677'), + (507, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'm6YVxaRd', '7035415'), + (507, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'm6YVxaRd', '7044715'), + (507, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'm6YVxaRd', '7050318'), + (507, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'm6YVxaRd', '7050319'), + (507, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'm6YVxaRd', '7050322'), + (507, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'm6YVxaRd', '7057804'), + (507, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'm6YVxaRd', '7059866'), + (507, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'm6YVxaRd', '7072824'), + (507, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'm6YVxaRd', '7074348'), + (507, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'm6YVxaRd', '7074364'), + (507, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'm6YVxaRd', '7089267'), + (507, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'm6YVxaRd', '7098747'), + (507, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'm6YVxaRd', '7113468'), + (507, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'm6YVxaRd', '7114856'), + (507, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'm6YVxaRd', '7114951'), + (507, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'm6YVxaRd', '7114955'), + (507, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'm6YVxaRd', '7114956'), + (507, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'm6YVxaRd', '7114957'), + (507, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'm6YVxaRd', '7153615'), + (507, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'm6YVxaRd', '7159484'), + (507, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'm6YVxaRd', '7178446'), + (507, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'm6YVxaRd', '7220467'), + (507, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'm6YVxaRd', '7240354'), + (507, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'm6YVxaRd', '7251633'), + (507, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'm6YVxaRd', '7324073'), + (507, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'm6YVxaRd', '7324074'), + (507, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'm6YVxaRd', '7324075'), + (507, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'm6YVxaRd', '7324078'), + (507, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'm6YVxaRd', '7324082'), + (507, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'm6YVxaRd', '7331457'), + (507, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'm6YVxaRd', '7363643'), + (507, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'm6YVxaRd', '7368606'), + (507, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'm6YVxaRd', '7397462'), + (507, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'm6YVxaRd', '7424275'), + (507, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'm6YVxaRd', '7432751'), + (507, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'm6YVxaRd', '7432752'), + (507, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'm6YVxaRd', '7432753'), + (507, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'm6YVxaRd', '7432754'), + (507, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'm6YVxaRd', '7432755'), + (507, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'm6YVxaRd', '7432756'), + (507, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'm6YVxaRd', '7432758'), + (507, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'm6YVxaRd', '7432759'), + (507, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'm6YVxaRd', '7433834'), + (507, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'm6YVxaRd', '7470197'), + (507, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'm6YVxaRd', '7685613'), + (507, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6YVxaRd', '7688194'), + (507, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6YVxaRd', '7688196'), + (507, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6YVxaRd', '7688289'), + (507, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'm6YVxaRd', '7692763'), + (507, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'm6YVxaRd', '7697552'), + (507, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'm6YVxaRd', '7699878'), + (507, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'm6YVxaRd', '7704043'), + (507, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6YVxaRd', '7712467'), + (507, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6YVxaRd', '7713585'), + (507, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6YVxaRd', '7713586'), + (507, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'm6YVxaRd', '7738518'), + (507, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6YVxaRd', '7750636'), + (507, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6YVxaRd', '7796540'), + (507, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6YVxaRd', '7796541'), + (507, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6YVxaRd', '7796542'), + (507, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6YVxaRd', '7825913'), + (507, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6YVxaRd', '7826209'), + (507, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6YVxaRd', '7834742'), + (507, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6YVxaRd', '7842108'), + (507, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6YVxaRd', '7842902'), + (507, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6YVxaRd', '7842903'), + (507, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6YVxaRd', '7842904'), + (507, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6YVxaRd', '7842905'), + (507, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6YVxaRd', '7855719'), + (507, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6YVxaRd', '7860683'), + (507, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6YVxaRd', '7860684'), + (507, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6YVxaRd', '7866095'), + (507, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6YVxaRd', '7869170'), + (507, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'm6YVxaRd', '7869188'), + (507, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6YVxaRd', '7869201'), + (507, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'm6YVxaRd', '7877465'), + (507, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'm6YVxaRd', '7888250'), + (507, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'm6YVxaRd', '7904777'), + (507, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'm6YVxaRd', '8349164'), + (507, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'm6YVxaRd', '8349545'), + (507, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'm6YVxaRd', '8368028'), + (507, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'm6YVxaRd', '8368029'), + (507, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'm6YVxaRd', '8388462'), + (507, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'm6YVxaRd', '8400273'), + (507, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'm6YVxaRd', '8400275'), + (507, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'm6YVxaRd', '8400276'), + (507, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'm6YVxaRd', '8404977'), + (507, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'm6YVxaRd', '8430783'), + (507, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'm6YVxaRd', '8430784'), + (507, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'm6YVxaRd', '8430799'), + (507, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'm6YVxaRd', '8430800'), + (507, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'm6YVxaRd', '8430801'), + (507, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'm6YVxaRd', '8438709'), + (507, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'm6YVxaRd', '8457738'), + (507, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'm6YVxaRd', '8459566'), + (507, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'm6YVxaRd', '8459567'), + (507, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'm6YVxaRd', '8461032'), + (507, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'm6YVxaRd', '8477877'), + (507, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'm6YVxaRd', '8485688'), + (507, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'm6YVxaRd', '8490587'), + (507, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'm6YVxaRd', '8493552'), + (507, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'm6YVxaRd', '8493553'), + (507, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'm6YVxaRd', '8493554'), + (507, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'm6YVxaRd', '8493555'), + (507, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'm6YVxaRd', '8493556'), + (507, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'm6YVxaRd', '8493557'), + (507, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'm6YVxaRd', '8493558'), + (507, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'm6YVxaRd', '8493559'), + (507, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'm6YVxaRd', '8493560'), + (507, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'm6YVxaRd', '8493561'), + (507, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'm6YVxaRd', '8493572'), + (507, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'm6YVxaRd', '8540725'), + (507, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'm6YVxaRd', '8555421'), + (508, 4, 'attending', '2020-03-21 00:58:58', '2025-12-17 19:47:58', 'bdz9ePb4', '2958046'), + (508, 5, 'attending', '2020-03-21 00:58:59', '2025-12-17 19:47:58', 'bdz9ePb4', '2958047'), + (508, 6, 'not_attending', '2020-03-21 00:59:04', '2025-12-17 19:47:58', 'bdz9ePb4', '2958048'), + (508, 7, 'maybe', '2020-03-21 00:59:06', '2025-12-17 19:47:58', 'bdz9ePb4', '2958049'), + (508, 9, 'not_attending', '2020-03-28 02:15:09', '2025-12-17 19:47:56', 'bdz9ePb4', '2958052'), + (508, 10, 'not_attending', '2020-03-28 02:15:10', '2025-12-17 19:47:56', 'bdz9ePb4', '2958053'), + (508, 13, 'not_attending', '2020-04-05 21:42:25', '2025-12-17 19:47:57', 'bdz9ePb4', '2958057'), + (508, 15, 'not_attending', '2020-04-15 22:57:49', '2025-12-17 19:47:57', 'bdz9ePb4', '2958059'), + (508, 20, 'not_attending', '2020-05-07 00:05:54', '2025-12-17 19:47:57', 'bdz9ePb4', '2958064'), + (508, 21, 'not_attending', '2020-04-26 16:18:03', '2025-12-17 19:47:57', 'bdz9ePb4', '2958065'), + (508, 26, 'not_attending', '2020-04-05 21:42:17', '2025-12-17 19:47:57', 'bdz9ePb4', '2958082'), + (508, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'bdz9ePb4', '2961309'), + (508, 30, 'maybe', '2020-04-05 21:42:21', '2025-12-17 19:47:57', 'bdz9ePb4', '2961895'), + (508, 31, 'attending', '2020-03-23 22:35:15', '2025-12-17 19:47:58', 'bdz9ePb4', '2963118'), + (508, 33, 'maybe', '2020-04-05 21:42:23', '2025-12-17 19:47:57', 'bdz9ePb4', '2963932'), + (508, 36, 'attending', '2020-03-29 01:57:09', '2025-12-17 19:47:57', 'bdz9ePb4', '2969208'), + (508, 41, 'not_attending', '2020-04-16 22:44:12', '2025-12-17 19:47:57', 'bdz9ePb4', '2971546'), + (508, 42, 'not_attending', '2020-04-05 21:42:15', '2025-12-17 19:47:57', 'bdz9ePb4', '2973471'), + (508, 44, 'not_attending', '2020-04-11 22:25:09', '2025-12-17 19:47:57', 'bdz9ePb4', '2974534'), + (508, 46, 'attending', '2020-04-09 02:01:39', '2025-12-17 19:47:57', 'bdz9ePb4', '2974955'), + (508, 48, 'not_attending', '2020-05-13 01:07:22', '2025-12-17 19:47:57', 'bdz9ePb4', '2975273'), + (508, 55, 'not_attending', '2020-04-09 02:01:43', '2025-12-17 19:47:57', 'bdz9ePb4', '2975384'), + (508, 56, 'not_attending', '2020-04-13 04:29:35', '2025-12-17 19:47:57', 'bdz9ePb4', '2975385'), + (508, 57, 'not_attending', '2020-04-13 04:29:32', '2025-12-17 19:47:57', 'bdz9ePb4', '2976575'), + (508, 62, 'maybe', '2020-05-07 00:05:40', '2025-12-17 19:47:57', 'bdz9ePb4', '2977131'), + (508, 63, 'maybe', '2020-05-13 01:07:21', '2025-12-17 19:47:57', 'bdz9ePb4', '2977132'), + (508, 70, 'not_attending', '2020-04-13 04:29:24', '2025-12-17 19:47:57', 'bdz9ePb4', '2977343'), + (508, 71, 'attending', '2020-04-09 21:38:12', '2025-12-17 19:47:57', 'bdz9ePb4', '2977526'), + (508, 72, 'maybe', '2020-05-07 00:05:13', '2025-12-17 19:47:57', 'bdz9ePb4', '2977812'), + (508, 73, 'not_attending', '2020-04-18 21:57:17', '2025-12-17 19:47:57', 'bdz9ePb4', '2977931'), + (508, 74, 'attending', '2020-04-13 04:29:12', '2025-12-17 19:47:57', 'bdz9ePb4', '2978244'), + (508, 75, 'not_attending', '2020-04-19 19:31:11', '2025-12-17 19:47:57', 'bdz9ePb4', '2978245'), + (508, 76, 'attending', '2020-04-29 15:20:19', '2025-12-17 19:47:57', 'bdz9ePb4', '2978246'), + (508, 77, 'attending', '2020-05-07 00:05:25', '2025-12-17 19:47:57', 'bdz9ePb4', '2978247'), + (508, 78, 'maybe', '2020-05-13 01:07:27', '2025-12-17 19:47:57', 'bdz9ePb4', '2978249'), + (508, 79, 'attending', '2020-05-30 22:01:16', '2025-12-17 19:47:57', 'bdz9ePb4', '2978250'), + (508, 80, 'maybe', '2020-06-05 14:17:34', '2025-12-17 19:47:58', 'bdz9ePb4', '2978251'), + (508, 82, 'attending', '2020-04-21 02:16:49', '2025-12-17 19:47:57', 'bdz9ePb4', '2978433'), + (508, 83, 'maybe', '2020-05-07 00:05:22', '2025-12-17 19:47:57', 'bdz9ePb4', '2978438'), + (508, 84, 'not_attending', '2020-04-14 23:32:20', '2025-12-17 19:47:57', 'bdz9ePb4', '2980871'), + (508, 86, 'not_attending', '2020-04-14 23:32:14', '2025-12-17 19:47:57', 'bdz9ePb4', '2981388'), + (508, 88, 'attending', '2020-04-14 23:32:10', '2025-12-17 19:47:57', 'bdz9ePb4', '2982603'), + (508, 89, 'attending', '2020-04-29 15:20:30', '2025-12-17 19:47:57', 'bdz9ePb4', '2982604'), + (508, 91, 'not_attending', '2020-04-26 16:18:29', '2025-12-17 19:47:57', 'bdz9ePb4', '2985130'), + (508, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'bdz9ePb4', '2986743'), + (508, 95, 'not_attending', '2020-04-26 16:19:22', '2025-12-17 19:47:57', 'bdz9ePb4', '2987452'), + (508, 98, 'maybe', '2020-05-07 00:05:53', '2025-12-17 19:47:57', 'bdz9ePb4', '2987455'), + (508, 99, 'not_attending', '2020-04-26 16:18:09', '2025-12-17 19:47:57', 'bdz9ePb4', '2988545'), + (508, 101, 'attending', '2020-04-22 00:48:47', '2025-12-17 19:47:57', 'bdz9ePb4', '2989975'), + (508, 102, 'not_attending', '2020-04-26 16:19:41', '2025-12-17 19:47:57', 'bdz9ePb4', '2990784'), + (508, 104, 'maybe', '2020-04-26 16:17:52', '2025-12-17 19:47:57', 'bdz9ePb4', '2991471'), + (508, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'bdz9ePb4', '2993501'), + (508, 107, 'not_attending', '2020-05-13 01:07:28', '2025-12-17 19:47:57', 'bdz9ePb4', '2993502'), + (508, 108, 'not_attending', '2020-05-13 01:07:19', '2025-12-17 19:47:57', 'bdz9ePb4', '2993504'), + (508, 109, 'not_attending', '2020-05-13 01:07:17', '2025-12-17 19:47:57', 'bdz9ePb4', '2994480'), + (508, 115, 'maybe', '2020-05-13 00:41:08', '2025-12-17 19:47:57', 'bdz9ePb4', '3001217'), + (508, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'bdz9ePb4', '3015486'), + (508, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'bdz9ePb4', '3023063'), + (508, 128, 'attending', '2020-05-19 22:17:43', '2025-12-17 19:47:57', 'bdz9ePb4', '3027185'), + (508, 130, 'attending', '2020-05-19 17:50:31', '2025-12-17 19:47:57', 'bdz9ePb4', '3028781'), + (508, 133, 'not_attending', '2020-07-03 21:55:34', '2025-12-17 19:47:58', 'bdz9ePb4', '3034321'), + (508, 136, 'not_attending', '2020-05-31 08:19:55', '2025-12-17 19:47:57', 'bdz9ePb4', '3035881'), + (508, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'bdz9ePb4', '3049983'), + (508, 146, 'not_attending', '2020-06-27 17:51:08', '2025-12-17 19:47:55', 'bdz9ePb4', '3058683'), + (508, 147, 'attending', '2020-08-18 00:43:15', '2025-12-17 19:47:56', 'bdz9ePb4', '3058684'), + (508, 149, 'maybe', '2020-07-17 15:54:19', '2025-12-17 19:47:55', 'bdz9ePb4', '3058686'), + (508, 150, 'maybe', '2020-07-24 14:09:28', '2025-12-17 19:47:55', 'bdz9ePb4', '3058687'), + (508, 151, 'attending', '2020-08-18 00:43:22', '2025-12-17 19:47:56', 'bdz9ePb4', '3058688'), + (508, 152, 'maybe', '2020-08-18 00:43:31', '2025-12-17 19:47:56', 'bdz9ePb4', '3058689'), + (508, 153, 'attending', '2020-08-01 19:48:58', '2025-12-17 19:47:55', 'bdz9ePb4', '3058690'), + (508, 154, 'maybe', '2020-08-08 18:20:52', '2025-12-17 19:47:56', 'bdz9ePb4', '3058691'), + (508, 155, 'not_attending', '2020-08-12 19:38:28', '2025-12-17 19:47:56', 'bdz9ePb4', '3058692'), + (508, 156, 'attending', '2020-09-12 20:10:51', '2025-12-17 19:47:56', 'bdz9ePb4', '3058693'), + (508, 157, 'not_attending', '2020-09-19 21:04:18', '2025-12-17 19:47:56', 'bdz9ePb4', '3058694'), + (508, 158, 'not_attending', '2020-09-22 22:50:51', '2025-12-17 19:47:52', 'bdz9ePb4', '3058695'), + (508, 159, 'not_attending', '2020-10-03 21:44:35', '2025-12-17 19:47:52', 'bdz9ePb4', '3058696'), + (508, 160, 'attending', '2020-10-23 21:36:05', '2025-12-17 19:47:52', 'bdz9ePb4', '3058697'), + (508, 161, 'maybe', '2020-10-08 23:01:16', '2025-12-17 19:47:52', 'bdz9ePb4', '3058698'), + (508, 162, 'maybe', '2020-10-15 19:50:06', '2025-12-17 19:47:52', 'bdz9ePb4', '3058699'), + (508, 164, 'attending', '2020-11-08 22:29:34', '2025-12-17 19:47:54', 'bdz9ePb4', '3058701'), + (508, 166, 'maybe', '2020-11-21 22:52:17', '2025-12-17 19:47:54', 'bdz9ePb4', '3058704'), + (508, 167, 'attending', '2020-11-29 00:01:14', '2025-12-17 19:47:54', 'bdz9ePb4', '3058705'), + (508, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'bdz9ePb4', '3058959'), + (508, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'bdz9ePb4', '3067093'), + (508, 182, 'not_attending', '2020-06-27 17:50:59', '2025-12-17 19:47:55', 'bdz9ePb4', '3074514'), + (508, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'bdz9ePb4', '3075228'), + (508, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'bdz9ePb4', '3075456'), + (508, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'bdz9ePb4', '3083791'), + (508, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'bdz9ePb4', '3085151'), + (508, 189, 'attending', '2020-06-20 21:45:38', '2025-12-17 19:47:58', 'bdz9ePb4', '3087016'), + (508, 191, 'maybe', '2020-07-07 17:14:05', '2025-12-17 19:47:55', 'bdz9ePb4', '3087259'), + (508, 192, 'maybe', '2020-07-17 15:54:16', '2025-12-17 19:47:55', 'bdz9ePb4', '3087260'), + (508, 193, 'maybe', '2020-07-24 14:09:33', '2025-12-17 19:47:55', 'bdz9ePb4', '3087261'), + (508, 194, 'attending', '2020-08-01 19:48:59', '2025-12-17 19:47:56', 'bdz9ePb4', '3087262'), + (508, 195, 'maybe', '2020-08-06 14:26:25', '2025-12-17 19:47:56', 'bdz9ePb4', '3087264'), + (508, 196, 'not_attending', '2020-08-12 19:38:36', '2025-12-17 19:47:56', 'bdz9ePb4', '3087265'), + (508, 197, 'attending', '2020-08-18 00:43:17', '2025-12-17 19:47:56', 'bdz9ePb4', '3087266'), + (508, 198, 'attending', '2020-08-18 00:43:23', '2025-12-17 19:47:56', 'bdz9ePb4', '3087267'), + (508, 199, 'maybe', '2020-08-18 00:43:35', '2025-12-17 19:47:56', 'bdz9ePb4', '3087268'), + (508, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'bdz9ePb4', '3088653'), + (508, 203, 'attending', '2020-06-23 01:28:50', '2025-12-17 19:47:58', 'bdz9ePb4', '3091624'), + (508, 207, 'not_attending', '2020-07-24 14:09:20', '2025-12-17 19:47:55', 'bdz9ePb4', '3104807'), + (508, 208, 'not_attending', '2020-08-07 03:10:55', '2025-12-17 19:47:56', 'bdz9ePb4', '3104808'), + (508, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'bdz9ePb4', '3106813'), + (508, 223, 'attending', '2020-09-11 17:26:19', '2025-12-17 19:47:56', 'bdz9ePb4', '3129980'), + (508, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'bdz9ePb4', '3132817'), + (508, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'bdz9ePb4', '3132820'), + (508, 267, 'not_attending', '2020-07-31 23:33:50', '2025-12-17 19:47:55', 'bdz9ePb4', '3152781'), + (508, 269, 'attending', '2020-08-01 20:19:16', '2025-12-17 19:47:55', 'bdz9ePb4', '3153076'), + (508, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'bdz9ePb4', '3155321'), + (508, 273, 'not_attending', '2020-08-18 01:04:34', '2025-12-17 19:47:56', 'bdz9ePb4', '3162006'), + (508, 277, 'not_attending', '2020-08-18 01:04:30', '2025-12-17 19:47:56', 'bdz9ePb4', '3163442'), + (508, 280, 'not_attending', '2020-08-12 19:38:48', '2025-12-17 19:47:56', 'bdz9ePb4', '3166942'), + (508, 293, 'not_attending', '2020-08-18 00:42:25', '2025-12-17 19:47:56', 'bdz9ePb4', '3172832'), + (508, 294, 'not_attending', '2020-08-18 00:42:35', '2025-12-17 19:47:56', 'bdz9ePb4', '3172833'), + (508, 295, 'not_attending', '2020-08-18 00:42:48', '2025-12-17 19:47:56', 'bdz9ePb4', '3172834'), + (508, 296, 'not_attending', '2020-09-12 20:10:58', '2025-12-17 19:47:56', 'bdz9ePb4', '3172876'), + (508, 297, 'not_attending', '2020-08-12 19:38:58', '2025-12-17 19:47:56', 'bdz9ePb4', '3173937'), + (508, 298, 'maybe', '2020-08-25 20:59:47', '2025-12-17 19:47:56', 'bdz9ePb4', '3174556'), + (508, 299, 'not_attending', '2020-08-18 00:46:44', '2025-12-17 19:47:56', 'bdz9ePb4', '3176591'), + (508, 305, 'not_attending', '2020-08-18 00:46:50', '2025-12-17 19:47:56', 'bdz9ePb4', '3179555'), + (508, 306, 'attending', '2020-08-21 23:10:13', '2025-12-17 19:47:56', 'bdz9ePb4', '3179777'), + (508, 311, 'not_attending', '2020-09-11 17:26:03', '2025-12-17 19:47:56', 'bdz9ePb4', '3186057'), + (508, 314, 'not_attending', '2020-08-25 20:59:23', '2025-12-17 19:47:56', 'bdz9ePb4', '3188480'), + (508, 317, 'not_attending', '2020-08-31 19:07:32', '2025-12-17 19:47:56', 'bdz9ePb4', '3191735'), + (508, 319, 'maybe', '2020-08-31 19:08:00', '2025-12-17 19:47:56', 'bdz9ePb4', '3194179'), + (508, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'bdz9ePb4', '3200209'), + (508, 340, 'maybe', '2020-09-14 01:05:59', '2025-12-17 19:47:56', 'bdz9ePb4', '3204470'), + (508, 341, 'not_attending', '2020-09-22 22:50:42', '2025-12-17 19:47:52', 'bdz9ePb4', '3204471'), + (508, 342, 'not_attending', '2020-10-03 18:26:59', '2025-12-17 19:47:52', 'bdz9ePb4', '3204472'), + (508, 346, 'maybe', '2020-09-14 01:05:32', '2025-12-17 19:47:56', 'bdz9ePb4', '3207515'), + (508, 352, 'not_attending', '2020-09-14 01:05:27', '2025-12-17 19:47:56', 'bdz9ePb4', '3210514'), + (508, 354, 'maybe', '2020-09-15 23:00:32', '2025-12-17 19:47:56', 'bdz9ePb4', '3212570'), + (508, 355, 'not_attending', '2020-09-16 23:50:59', '2025-12-17 19:47:56', 'bdz9ePb4', '3212571'), + (508, 360, 'not_attending', '2020-09-14 01:04:53', '2025-12-17 19:47:56', 'bdz9ePb4', '3212671'), + (508, 362, 'not_attending', '2020-09-22 22:50:46', '2025-12-17 19:47:52', 'bdz9ePb4', '3214207'), + (508, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'bdz9ePb4', '3217037'), + (508, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'bdz9ePb4', '3218510'), + (508, 375, 'not_attending', '2020-10-08 23:01:03', '2025-12-17 19:47:52', 'bdz9ePb4', '3222825'), + (508, 385, 'maybe', '2020-10-03 21:44:36', '2025-12-17 19:47:52', 'bdz9ePb4', '3228698'), + (508, 386, 'attending', '2020-10-10 20:52:13', '2025-12-17 19:47:52', 'bdz9ePb4', '3228699'), + (508, 387, 'maybe', '2020-10-15 19:50:08', '2025-12-17 19:47:52', 'bdz9ePb4', '3228700'), + (508, 388, 'attending', '2020-10-23 21:36:12', '2025-12-17 19:47:52', 'bdz9ePb4', '3228701'), + (508, 391, 'not_attending', '2020-10-15 19:49:59', '2025-12-17 19:47:52', 'bdz9ePb4', '3236446'), + (508, 411, 'not_attending', '2020-10-08 23:01:31', '2025-12-17 19:47:52', 'bdz9ePb4', '3236596'), + (508, 415, 'not_attending', '2020-10-08 23:01:42', '2025-12-17 19:47:52', 'bdz9ePb4', '3238044'), + (508, 417, 'not_attending', '2020-10-08 23:01:51', '2025-12-17 19:47:52', 'bdz9ePb4', '3238779'), + (508, 420, 'not_attending', '2020-10-15 19:49:56', '2025-12-17 19:47:52', 'bdz9ePb4', '3245293'), + (508, 421, 'not_attending', '2020-10-15 19:50:35', '2025-12-17 19:47:52', 'bdz9ePb4', '3245294'), + (508, 423, 'not_attending', '2020-11-03 01:09:05', '2025-12-17 19:47:53', 'bdz9ePb4', '3245296'), + (508, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'bdz9ePb4', '3245751'), + (508, 425, 'not_attending', '2020-10-15 19:50:04', '2025-12-17 19:47:52', 'bdz9ePb4', '3250097'), + (508, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'bdz9ePb4', '3250232'), + (508, 435, 'not_attending', '2020-10-24 16:43:17', '2025-12-17 19:47:52', 'bdz9ePb4', '3254790'), + (508, 438, 'not_attending', '2020-10-31 22:05:54', '2025-12-17 19:47:53', 'bdz9ePb4', '3256163'), + (508, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'bdz9ePb4', '3256168'), + (508, 441, 'maybe', '2020-11-14 22:38:16', '2025-12-17 19:47:54', 'bdz9ePb4', '3256169'), + (508, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'bdz9ePb4', '3263578'), + (508, 445, 'not_attending', '2020-11-08 22:30:46', '2025-12-17 19:47:54', 'bdz9ePb4', '3266138'), + (508, 456, 'maybe', '2020-11-14 22:04:55', '2025-12-17 19:47:54', 'bdz9ePb4', '3276428'), + (508, 459, 'not_attending', '2020-11-14 22:04:49', '2025-12-17 19:47:54', 'bdz9ePb4', '3281467'), + (508, 462, 'not_attending', '2020-11-08 22:30:35', '2025-12-17 19:47:54', 'bdz9ePb4', '3281470'), + (508, 466, 'not_attending', '2020-11-14 22:04:41', '2025-12-17 19:47:54', 'bdz9ePb4', '3281829'), + (508, 468, 'maybe', '2020-11-14 22:04:37', '2025-12-17 19:47:54', 'bdz9ePb4', '3285413'), + (508, 469, 'attending', '2020-11-29 00:01:12', '2025-12-17 19:47:54', 'bdz9ePb4', '3285414'), + (508, 475, 'not_attending', '2020-11-21 22:52:27', '2025-12-17 19:47:54', 'bdz9ePb4', '3286760'), + (508, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'bdz9ePb4', '3297764'), + (508, 483, 'not_attending', '2020-11-21 22:52:21', '2025-12-17 19:47:54', 'bdz9ePb4', '3297791'), + (508, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'bdz9ePb4', '3313856'), + (508, 499, 'not_attending', '2020-12-12 02:19:49', '2025-12-17 19:47:55', 'bdz9ePb4', '3314909'), + (508, 500, 'maybe', '2020-12-16 02:54:33', '2025-12-17 19:47:55', 'bdz9ePb4', '3314964'), + (508, 502, 'not_attending', '2020-12-10 18:10:15', '2025-12-17 19:47:55', 'bdz9ePb4', '3323365'), + (508, 513, 'not_attending', '2020-12-19 18:13:07', '2025-12-17 19:47:55', 'bdz9ePb4', '3329383'), + (508, 514, 'not_attending', '2020-12-10 18:10:17', '2025-12-17 19:47:55', 'bdz9ePb4', '3329400'), + (508, 526, 'attending', '2021-01-03 00:49:47', '2025-12-17 19:47:48', 'bdz9ePb4', '3351539'), + (508, 530, 'attending', '2021-01-05 02:00:14', '2025-12-17 19:47:48', 'bdz9ePb4', '3373923'), + (508, 531, 'not_attending', '2021-01-02 05:22:13', '2025-12-17 19:47:48', 'bdz9ePb4', '3378210'), + (508, 536, 'attending', '2021-01-09 00:28:55', '2025-12-17 19:47:48', 'bdz9ePb4', '3386848'), + (508, 539, 'maybe', '2021-01-14 01:36:05', '2025-12-17 19:47:48', 'bdz9ePb4', '3389158'), + (508, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'bdz9ePb4', '3389527'), + (508, 541, 'attending', '2021-01-09 00:28:55', '2025-12-17 19:47:48', 'bdz9ePb4', '3391683'), + (508, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'bdz9ePb4', '3396499'), + (508, 548, 'not_attending', '2021-01-16 21:41:14', '2025-12-17 19:47:48', 'bdz9ePb4', '3403650'), + (508, 549, 'not_attending', '2021-01-22 06:06:25', '2025-12-17 19:47:49', 'bdz9ePb4', '3406988'), + (508, 553, 'not_attending', '2021-01-16 21:41:10', '2025-12-17 19:47:48', 'bdz9ePb4', '3407248'), + (508, 555, 'attending', '2021-01-22 06:06:22', '2025-12-17 19:47:49', 'bdz9ePb4', '3416576'), + (508, 558, 'maybe', '2021-01-22 06:06:13', '2025-12-17 19:47:49', 'bdz9ePb4', '3418925'), + (508, 561, 'attending', '2021-01-22 06:06:30', '2025-12-17 19:47:49', 'bdz9ePb4', '3421916'), + (508, 568, 'maybe', '2021-01-27 21:55:20', '2025-12-17 19:47:50', 'bdz9ePb4', '3430267'), + (508, 569, 'not_attending', '2021-01-27 21:55:12', '2025-12-17 19:47:49', 'bdz9ePb4', '3432673'), + (508, 579, 'not_attending', '2021-02-07 00:59:41', '2025-12-17 19:47:50', 'bdz9ePb4', '3440978'), + (508, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'bdz9ePb4', '3468125'), + (508, 602, 'attending', '2021-02-09 19:04:24', '2025-12-17 19:47:50', 'bdz9ePb4', '3470303'), + (508, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'bdz9ePb4', '3470305'), + (508, 605, 'not_attending', '2021-02-09 19:04:35', '2025-12-17 19:47:50', 'bdz9ePb4', '3470991'), + (508, 609, 'attending', '2021-02-14 02:08:09', '2025-12-17 19:47:50', 'bdz9ePb4', '3480916'), + (508, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'bdz9ePb4', '3517815'), + (508, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'bdz9ePb4', '3517816'), + (508, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'bdz9ePb4', '3523941'), + (508, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'bdz9ePb4', '3533850'), + (508, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'bdz9ePb4', '3536632'), + (508, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'bdz9ePb4', '3536656'), + (508, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'bdz9ePb4', '3539916'), + (508, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'bdz9ePb4', '3539917'), + (508, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'bdz9ePb4', '3539918'), + (508, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'bdz9ePb4', '3539919'), + (508, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'bdz9ePb4', '3539920'), + (508, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'bdz9ePb4', '3539921'), + (508, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'bdz9ePb4', '3539922'), + (508, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'bdz9ePb4', '3539923'), + (508, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'bdz9ePb4', '3539927'), + (508, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'bdz9ePb4', '3582734'), + (508, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdz9ePb4', '3583262'), + (508, 709, 'not_attending', '2021-04-06 01:40:07', '2025-12-17 19:47:44', 'bdz9ePb4', '3587852'), + (508, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'bdz9ePb4', '3619523'), + (508, 719, 'not_attending', '2021-04-06 01:40:16', '2025-12-17 19:47:44', 'bdz9ePb4', '3635405'), + (508, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdz9ePb4', '3661369'), + (508, 731, 'not_attending', '2021-04-06 01:40:09', '2025-12-17 19:47:44', 'bdz9ePb4', '3674262'), + (508, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdz9ePb4', '3677402'), + (508, 736, 'not_attending', '2021-04-06 01:40:18', '2025-12-17 19:47:44', 'bdz9ePb4', '3677701'), + (508, 737, 'not_attending', '2021-04-06 01:40:04', '2025-12-17 19:47:44', 'bdz9ePb4', '3679349'), + (508, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz9ePb4', '6045684'), + (509, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dxOW7r24', '6044839'), + (509, 1994, 'not_attending', '2023-04-08 19:25:16', '2025-12-17 19:46:59', 'dxOW7r24', '6050104'), + (509, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dxOW7r24', '6053198'), + (509, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dxOW7r24', '6056085'), + (509, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dxOW7r24', '6056916'), + (509, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dxOW7r24', '6059290'), + (509, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dxOW7r24', '6060328'), + (509, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dxOW7r24', '6061037'), + (509, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dxOW7r24', '6061039'), + (509, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dxOW7r24', '6067245'), + (509, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dxOW7r24', '6068094'), + (509, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dxOW7r24', '6068252'), + (509, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dxOW7r24', '6068253'), + (509, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dxOW7r24', '6068254'), + (509, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dxOW7r24', '6068280'), + (509, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dxOW7r24', '6069093'), + (509, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dxOW7r24', '6072528'), + (509, 2045, 'not_attending', '2023-04-28 22:45:08', '2025-12-17 19:47:01', 'dxOW7r24', '6075556'), + (509, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dxOW7r24', '6079840'), + (509, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dxOW7r24', '6083398'), + (509, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dxOW7r24', '6093504'), + (509, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dxOW7r24', '6097414'), + (509, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dxOW7r24', '6097442'), + (509, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dxOW7r24', '6097684'), + (509, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dxOW7r24', '6098762'), + (509, 2066, 'not_attending', '2023-06-09 18:33:39', '2025-12-17 19:47:04', 'dxOW7r24', '6101361'), + (509, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dxOW7r24', '6101362'), + (509, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dxOW7r24', '6103752'), + (509, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dxOW7r24', '6107314'), + (509, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dxOW7r24', '6136733'), + (509, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dxOW7r24', '6137989'), + (509, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dxOW7r24', '6150864'), + (509, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dxOW7r24', '6155491'), + (509, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dxOW7r24', '6164417'), + (509, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dxOW7r24', '6166388'), + (509, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dxOW7r24', '6176439'), + (509, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dxOW7r24', '6182410'), + (509, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dxOW7r24', '6185812'), + (509, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dxOW7r24', '6187651'), + (509, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dxOW7r24', '6187963'), + (509, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dxOW7r24', '6187964'), + (509, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dxOW7r24', '6187966'), + (509, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dxOW7r24', '6187967'), + (509, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dxOW7r24', '6187969'), + (509, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dxOW7r24', '6334878'), + (509, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxOW7r24', '6337236'), + (509, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxOW7r24', '6337970'), + (509, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dxOW7r24', '6338308'), + (509, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxOW7r24', '6341710'), + (509, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxOW7r24', '6342044'), + (509, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxOW7r24', '6342298'), + (509, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dxOW7r24', '6343294'), + (509, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxOW7r24', '6347034'), + (509, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxOW7r24', '6347056'), + (509, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxOW7r24', '6353830'), + (509, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxOW7r24', '6353831'), + (509, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxOW7r24', '6357867'), + (509, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxOW7r24', '6358652'), + (509, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxOW7r24', '6361709'), + (509, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxOW7r24', '6361710'), + (509, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxOW7r24', '6361711'), + (509, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxOW7r24', '6361712'), + (509, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxOW7r24', '6361713'), + (509, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxOW7r24', '6382573'), + (509, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxOW7r24', '6388604'), + (509, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxOW7r24', '6394629'), + (509, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxOW7r24', '6394631'), + (509, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxOW7r24', '6440863'), + (509, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dxOW7r24', '6445440'), + (509, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dxOW7r24', '6453951'), + (509, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dxOW7r24', '6461696'), + (509, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dxOW7r24', '6462129'), + (509, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dxOW7r24', '6463218'), + (509, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dxOW7r24', '6472181'), + (509, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxOW7r24', '6482693'), + (509, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dxOW7r24', '6484200'), + (509, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dxOW7r24', '6484680'), + (509, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxOW7r24', '6507741'), + (509, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxOW7r24', '6514659'), + (509, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxOW7r24', '6514660'), + (509, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxOW7r24', '6519103'), + (509, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dxOW7r24', '6535681'), + (509, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxOW7r24', '6584747'), + (509, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxOW7r24', '6587097'), + (509, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxOW7r24', '6609022'), + (509, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxOW7r24', '6632757'), + (509, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxOW7r24', '6644187'), + (509, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxOW7r24', '6648951'), + (509, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxOW7r24', '6648952'), + (509, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxOW7r24', '6655401'), + (509, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxOW7r24', '6661585'), + (509, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxOW7r24', '6661588'), + (509, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxOW7r24', '6661589'), + (509, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxOW7r24', '6699906'), + (509, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxOW7r24', '6699913'), + (509, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxOW7r24', '6701109'), + (509, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxOW7r24', '6705219'), + (509, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxOW7r24', '6710153'), + (509, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxOW7r24', '6711552'), + (509, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxOW7r24', '6711553'), + (509, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxOW7r24', '6722688'), + (509, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxOW7r24', '6730620'), + (509, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxOW7r24', '6740364'), + (509, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxOW7r24', '6743829'), + (509, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxOW7r24', '7030380'), + (509, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxOW7r24', '7033677'), + (509, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxOW7r24', '7044715'), + (509, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxOW7r24', '7050318'), + (509, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxOW7r24', '7050319'), + (509, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxOW7r24', '7050322'), + (509, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxOW7r24', '7057804'), + (509, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxOW7r24', '7072824'), + (509, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxOW7r24', '7074348'), + (509, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxOW7r24', '7074364'), + (509, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxOW7r24', '7089267'), + (509, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxOW7r24', '7098747'), + (509, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxOW7r24', '7113468'), + (509, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxOW7r24', '7114856'), + (509, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxOW7r24', '7114951'), + (509, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxOW7r24', '7114955'), + (509, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxOW7r24', '7114956'), + (509, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxOW7r24', '7114957'), + (509, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxOW7r24', '7159484'), + (509, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxOW7r24', '7178446'), + (509, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxOW7r24', '7220467'), + (509, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxOW7r24', '7240354'), + (509, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxOW7r24', '7251633'), + (509, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxOW7r24', '7324073'), + (509, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxOW7r24', '7324074'), + (509, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxOW7r24', '7324075'), + (509, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxOW7r24', '7324078'), + (509, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxOW7r24', '7324082'), + (509, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxOW7r24', '7331457'), + (509, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxOW7r24', '7363643'), + (509, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxOW7r24', '7368606'), + (509, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxOW7r24', '7397462'), + (509, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxOW7r24', '7424275'), + (509, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxOW7r24', '7432751'), + (509, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxOW7r24', '7432752'), + (509, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxOW7r24', '7432753'), + (509, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxOW7r24', '7432754'), + (509, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxOW7r24', '7432755'), + (509, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxOW7r24', '7432756'), + (509, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxOW7r24', '7432758'), + (509, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxOW7r24', '7432759'), + (509, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxOW7r24', '7433834'), + (509, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxOW7r24', '7470197'), + (509, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxOW7r24', '7685613'), + (509, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxOW7r24', '7688194'), + (509, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxOW7r24', '7688196'), + (509, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxOW7r24', '7688289'), + (509, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dxOW7r24', '7692763'), + (509, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxOW7r24', '7697552'), + (509, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxOW7r24', '7699878'), + (509, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxOW7r24', '7704043'), + (509, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxOW7r24', '7712467'), + (509, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxOW7r24', '7713585'), + (509, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxOW7r24', '7713586'), + (509, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxOW7r24', '7738518'), + (509, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxOW7r24', '7750636'), + (509, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxOW7r24', '7796540'), + (509, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxOW7r24', '7796541'), + (509, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxOW7r24', '7796542'), + (509, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxOW7r24', '7825913'), + (509, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxOW7r24', '7826209'), + (509, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxOW7r24', '7834742'), + (509, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dxOW7r24', '7842108'), + (509, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxOW7r24', '7842902'), + (509, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxOW7r24', '7842903'), + (509, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxOW7r24', '7842904'), + (509, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxOW7r24', '7842905'), + (509, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxOW7r24', '7855719'), + (509, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxOW7r24', '7860683'), + (509, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxOW7r24', '7860684'), + (509, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxOW7r24', '7866095'), + (509, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxOW7r24', '7869170'), + (509, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxOW7r24', '7869188'), + (509, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxOW7r24', '7869201'), + (509, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxOW7r24', '7877465'), + (509, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxOW7r24', '7888250'), + (509, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxOW7r24', '7904777'), + (509, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxOW7r24', '8349164'), + (509, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxOW7r24', '8349545'), + (509, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dxOW7r24', '8368028'), + (509, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxOW7r24', '8368029'), + (509, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxOW7r24', '8388462'), + (509, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxOW7r24', '8400273'), + (509, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxOW7r24', '8400275'), + (509, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dxOW7r24', '8400276'), + (509, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxOW7r24', '8404977'), + (509, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxOW7r24', '8430783'), + (509, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxOW7r24', '8430784'), + (509, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxOW7r24', '8430799'), + (509, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxOW7r24', '8430800'), + (509, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxOW7r24', '8430801'), + (509, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxOW7r24', '8438709'), + (509, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxOW7r24', '8457738'), + (509, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxOW7r24', '8459566'), + (509, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxOW7r24', '8459567'), + (509, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxOW7r24', '8461032'), + (509, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxOW7r24', '8477877'), + (509, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxOW7r24', '8485688'), + (509, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxOW7r24', '8490587'), + (509, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxOW7r24', '8493552'), + (509, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxOW7r24', '8493553'), + (509, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxOW7r24', '8493554'), + (509, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxOW7r24', '8493555'), + (509, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxOW7r24', '8493556'), + (509, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxOW7r24', '8493557'), + (509, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxOW7r24', '8493558'), + (509, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxOW7r24', '8493559'), + (509, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxOW7r24', '8493560'), + (509, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxOW7r24', '8493561'), + (509, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxOW7r24', '8493572'), + (509, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxOW7r24', '8540725'), + (509, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxOW7r24', '8555421'), + (510, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'x4o11yMm', '5195095'), + (510, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'x4o11yMm', '5223686'), + (510, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'x4o11yMm', '5227432'), + (510, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'x4o11yMm', '5247467'), + (510, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'x4o11yMm', '5260800'), + (510, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'x4o11yMm', '5269930'), + (510, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'x4o11yMm', '5271448'), + (510, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'x4o11yMm', '5271449'), + (510, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'x4o11yMm', '5276469'), + (510, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'x4o11yMm', '5278159'), + (510, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'x4o11yMm', '6045684'), + (511, 872, 'not_attending', '2021-07-20 02:29:51', '2025-12-17 19:47:40', 'd3RVlrO4', '4136947'), + (511, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'd3RVlrO4', '4210314'), + (511, 893, 'maybe', '2021-07-23 01:59:09', '2025-12-17 19:47:40', 'd3RVlrO4', '4229420'), + (511, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'd3RVlrO4', '4229423'), + (511, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'd3RVlrO4', '4240316'), + (511, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'd3RVlrO4', '4240317'), + (511, 902, 'attending', '2021-08-07 02:50:46', '2025-12-17 19:47:41', 'd3RVlrO4', '4240318'), + (511, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'd3RVlrO4', '4240320'), + (511, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'd3RVlrO4', '4277819'), + (511, 923, 'not_attending', '2021-07-23 01:57:44', '2025-12-17 19:47:40', 'd3RVlrO4', '4292773'), + (511, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'd3RVlrO4', '4301723'), + (511, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'd3RVlrO4', '4302093'), + (511, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'd3RVlrO4', '4304151'), + (511, 940, 'not_attending', '2021-07-30 16:29:25', '2025-12-17 19:47:40', 'd3RVlrO4', '4309049'), + (511, 947, 'attending', '2021-08-05 12:51:15', '2025-12-17 19:47:41', 'd3RVlrO4', '4315713'), + (511, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'd3RVlrO4', '4345519'), + (511, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd3RVlrO4', '4356801'), + (511, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'd3RVlrO4', '4358025'), + (511, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'd3RVlrO4', '4366186'), + (511, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'd3RVlrO4', '4366187'), + (511, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'd3RVlrO4', '4402823'), + (511, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'd3RVlrO4', '4420735'), + (511, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'd3RVlrO4', '4420738'), + (511, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'd3RVlrO4', '4420739'), + (511, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'd3RVlrO4', '4420741'), + (511, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'd3RVlrO4', '4420744'), + (511, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'd3RVlrO4', '4420747'), + (511, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'd3RVlrO4', '4420748'), + (511, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'd3RVlrO4', '4420749'), + (511, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'd3RVlrO4', '4461883'), + (511, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'd3RVlrO4', '4508342'), + (511, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd3RVlrO4', '4568602'), + (511, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3RVlrO4', '6045684'), + (512, 25, 'not_attending', '2020-07-08 05:17:28', '2025-12-17 19:47:55', '6AXMZBY4', '2958069'), + (512, 50, 'not_attending', '2020-07-13 23:21:43', '2025-12-17 19:47:55', '6AXMZBY4', '2975275'), + (512, 54, 'not_attending', '2020-07-13 23:22:37', '2025-12-17 19:47:56', '6AXMZBY4', '2975279'), + (512, 147, 'not_attending', '2020-08-15 13:02:30', '2025-12-17 19:47:56', '6AXMZBY4', '3058684'), + (512, 151, 'not_attending', '2020-08-17 02:42:00', '2025-12-17 19:47:56', '6AXMZBY4', '3058688'), + (512, 152, 'not_attending', '2020-08-17 02:42:25', '2025-12-17 19:47:56', '6AXMZBY4', '3058689'), + (512, 157, 'not_attending', '2020-08-17 02:43:55', '2025-12-17 19:47:56', '6AXMZBY4', '3058694'), + (512, 158, 'not_attending', '2020-08-17 02:44:01', '2025-12-17 19:47:52', '6AXMZBY4', '3058695'), + (512, 159, 'not_attending', '2020-08-17 02:44:08', '2025-12-17 19:47:52', '6AXMZBY4', '3058696'), + (512, 160, 'attending', '2020-10-24 15:18:42', '2025-12-17 19:47:52', '6AXMZBY4', '3058697'), + (512, 161, 'not_attending', '2020-08-17 02:44:15', '2025-12-17 19:47:52', '6AXMZBY4', '3058698'), + (512, 162, 'not_attending', '2020-09-17 02:03:28', '2025-12-17 19:47:52', '6AXMZBY4', '3058699'), + (512, 163, 'not_attending', '2020-10-27 14:04:09', '2025-12-17 19:47:53', '6AXMZBY4', '3058700'), + (512, 164, 'attending', '2020-10-20 21:09:47', '2025-12-17 19:47:54', '6AXMZBY4', '3058701'), + (512, 165, 'attending', '2020-10-20 21:09:38', '2025-12-17 19:47:53', '6AXMZBY4', '3058702'), + (512, 166, 'attending', '2020-11-07 06:48:12', '2025-12-17 19:47:54', '6AXMZBY4', '3058704'), + (512, 167, 'attending', '2020-11-07 06:48:15', '2025-12-17 19:47:54', '6AXMZBY4', '3058705'), + (512, 191, 'attending', '2020-07-08 01:56:06', '2025-12-17 19:47:55', '6AXMZBY4', '3087259'), + (512, 192, 'attending', '2020-07-08 05:18:05', '2025-12-17 19:47:55', '6AXMZBY4', '3087260'), + (512, 193, 'attending', '2020-07-08 05:18:13', '2025-12-17 19:47:55', '6AXMZBY4', '3087261'), + (512, 194, 'attending', '2020-07-13 23:20:38', '2025-12-17 19:47:55', '6AXMZBY4', '3087262'), + (512, 195, 'not_attending', '2020-08-08 12:31:08', '2025-12-17 19:47:56', '6AXMZBY4', '3087264'), + (512, 196, 'attending', '2020-07-13 23:22:42', '2025-12-17 19:47:56', '6AXMZBY4', '3087265'), + (512, 197, 'attending', '2020-07-13 23:22:51', '2025-12-17 19:47:56', '6AXMZBY4', '3087266'), + (512, 198, 'attending', '2020-07-13 23:22:53', '2025-12-17 19:47:56', '6AXMZBY4', '3087267'), + (512, 199, 'not_attending', '2020-09-05 03:39:42', '2025-12-17 19:47:56', '6AXMZBY4', '3087268'), + (512, 205, 'attending', '2020-07-08 02:00:48', '2025-12-17 19:47:55', '6AXMZBY4', '3104804'), + (512, 206, 'attending', '2020-07-13 23:20:29', '2025-12-17 19:47:55', '6AXMZBY4', '3104806'), + (512, 207, 'not_attending', '2020-07-13 23:21:33', '2025-12-17 19:47:55', '6AXMZBY4', '3104807'), + (512, 208, 'not_attending', '2020-07-13 23:21:57', '2025-12-17 19:47:56', '6AXMZBY4', '3104808'), + (512, 212, 'attending', '2020-07-13 23:19:32', '2025-12-17 19:47:55', '6AXMZBY4', '3118517'), + (512, 213, 'attending', '2020-07-07 20:05:47', '2025-12-17 19:47:55', '6AXMZBY4', '3121083'), + (512, 214, 'attending', '2020-07-08 01:59:55', '2025-12-17 19:47:55', '6AXMZBY4', '3124139'), + (512, 216, 'attending', '2020-07-08 05:17:13', '2025-12-17 19:47:55', '6AXMZBY4', '3126500'), + (512, 217, 'attending', '2020-07-13 17:13:09', '2025-12-17 19:47:55', '6AXMZBY4', '3126684'), + (512, 218, 'not_attending', '2020-07-13 23:21:27', '2025-12-17 19:47:55', '6AXMZBY4', '3129262'), + (512, 219, 'not_attending', '2020-07-13 23:22:45', '2025-12-17 19:47:56', '6AXMZBY4', '3129263'), + (512, 220, 'not_attending', '2020-07-13 23:23:23', '2025-12-17 19:47:56', '6AXMZBY4', '3129264'), + (512, 221, 'not_attending', '2020-07-13 23:23:29', '2025-12-17 19:47:56', '6AXMZBY4', '3129265'), + (512, 222, 'not_attending', '2020-07-13 23:22:10', '2025-12-17 19:47:56', '6AXMZBY4', '3129266'), + (512, 223, 'attending', '2020-07-13 23:23:51', '2025-12-17 19:47:56', '6AXMZBY4', '3129980'), + (512, 224, 'not_attending', '2020-07-13 23:20:47', '2025-12-17 19:47:55', '6AXMZBY4', '3130712'), + (512, 225, 'not_attending', '2020-07-13 23:21:12', '2025-12-17 19:47:55', '6AXMZBY4', '3132378'), + (512, 226, 'attending', '2020-07-13 23:19:10', '2025-12-17 19:47:55', '6AXMZBY4', '3132817'), + (512, 227, 'attending', '2020-07-13 23:19:19', '2025-12-17 19:47:55', '6AXMZBY4', '3132820'), + (512, 228, 'not_attending', '2020-07-13 23:20:11', '2025-12-17 19:47:55', '6AXMZBY4', '3132821'), + (512, 230, 'not_attending', '2020-07-19 02:46:32', '2025-12-17 19:47:55', '6AXMZBY4', '3139232'), + (512, 239, 'not_attending', '2020-08-17 02:41:45', '2025-12-17 19:47:56', '6AXMZBY4', '3149470'), + (512, 240, 'not_attending', '2020-08-17 02:42:55', '2025-12-17 19:47:56', '6AXMZBY4', '3149471'), + (512, 241, 'not_attending', '2020-08-17 02:43:44', '2025-12-17 19:47:52', '6AXMZBY4', '3149472'), + (512, 242, 'not_attending', '2020-08-17 02:43:31', '2025-12-17 19:47:56', '6AXMZBY4', '3149473'), + (512, 243, 'not_attending', '2020-09-29 04:42:59', '2025-12-17 19:47:53', '6AXMZBY4', '3149474'), + (512, 244, 'not_attending', '2020-09-17 02:03:01', '2025-12-17 19:47:52', '6AXMZBY4', '3149475'), + (512, 245, 'not_attending', '2020-10-14 14:18:38', '2025-12-17 19:47:54', '6AXMZBY4', '3149476'), + (512, 246, 'not_attending', '2020-11-07 06:48:58', '2025-12-17 19:47:55', '6AXMZBY4', '3149477'), + (512, 247, 'not_attending', '2020-11-07 06:49:06', '2025-12-17 19:47:48', '6AXMZBY4', '3149478'), + (512, 248, 'not_attending', '2021-01-08 18:28:50', '2025-12-17 19:47:48', '6AXMZBY4', '3149479'), + (512, 249, 'not_attending', '2020-10-14 14:18:26', '2025-12-17 19:47:54', '6AXMZBY4', '3149480'), + (512, 250, 'not_attending', '2021-02-01 22:40:16', '2025-12-17 19:47:50', '6AXMZBY4', '3149481'), + (512, 251, 'not_attending', '2021-01-08 18:29:22', '2025-12-17 19:47:49', '6AXMZBY4', '3149482'), + (512, 252, 'not_attending', '2021-02-01 22:41:00', '2025-12-17 19:47:50', '6AXMZBY4', '3149483'), + (512, 253, 'not_attending', '2021-03-01 18:40:41', '2025-12-17 19:47:44', '6AXMZBY4', '3149484'), + (512, 254, 'not_attending', '2021-02-01 22:41:16', '2025-12-17 19:47:51', '6AXMZBY4', '3149485'), + (512, 255, 'not_attending', '2021-03-01 18:40:23', '2025-12-17 19:47:43', '6AXMZBY4', '3149486'), + (512, 256, 'not_attending', '2021-04-05 11:23:03', '2025-12-17 19:47:46', '6AXMZBY4', '3149487'), + (512, 257, 'not_attending', '2021-04-05 11:22:37', '2025-12-17 19:47:45', '6AXMZBY4', '3149488'), + (512, 269, 'attending', '2020-08-01 00:53:33', '2025-12-17 19:47:55', '6AXMZBY4', '3153076'), + (512, 270, 'not_attending', '2020-08-14 13:43:10', '2025-12-17 19:47:56', '6AXMZBY4', '3154457'), + (512, 271, 'attending', '2020-08-02 23:20:33', '2025-12-17 19:47:56', '6AXMZBY4', '3155321'), + (512, 273, 'not_attending', '2020-08-06 17:48:14', '2025-12-17 19:47:56', '6AXMZBY4', '3162006'), + (512, 274, 'not_attending', '2020-08-06 17:48:58', '2025-12-17 19:47:56', '6AXMZBY4', '3163404'), + (512, 277, 'not_attending', '2020-08-06 17:49:11', '2025-12-17 19:47:56', '6AXMZBY4', '3163442'), + (512, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '6AXMZBY4', '3169555'), + (512, 285, 'not_attending', '2020-08-14 13:44:08', '2025-12-17 19:47:56', '6AXMZBY4', '3170245'), + (512, 286, 'not_attending', '2020-08-14 13:44:30', '2025-12-17 19:47:56', '6AXMZBY4', '3170246'), + (512, 287, 'not_attending', '2020-08-14 13:44:42', '2025-12-17 19:47:56', '6AXMZBY4', '3170247'), + (512, 288, 'not_attending', '2020-08-14 13:45:39', '2025-12-17 19:47:56', '6AXMZBY4', '3170249'), + (512, 289, 'not_attending', '2020-08-14 13:45:53', '2025-12-17 19:47:56', '6AXMZBY4', '3170250'), + (512, 290, 'not_attending', '2020-08-17 02:43:05', '2025-12-17 19:47:56', '6AXMZBY4', '3170251'), + (512, 291, 'not_attending', '2020-08-17 02:43:12', '2025-12-17 19:47:56', '6AXMZBY4', '3170252'), + (512, 293, 'not_attending', '2020-08-11 04:31:58', '2025-12-17 19:47:56', '6AXMZBY4', '3172832'), + (512, 294, 'not_attending', '2020-08-26 23:45:53', '2025-12-17 19:47:56', '6AXMZBY4', '3172833'), + (512, 295, 'not_attending', '2020-08-11 04:31:30', '2025-12-17 19:47:56', '6AXMZBY4', '3172834'), + (512, 296, 'attending', '2020-09-12 03:13:29', '2025-12-17 19:47:56', '6AXMZBY4', '3172876'), + (512, 297, 'not_attending', '2020-08-11 17:26:56', '2025-12-17 19:47:56', '6AXMZBY4', '3173937'), + (512, 298, 'not_attending', '2020-08-14 13:44:38', '2025-12-17 19:47:56', '6AXMZBY4', '3174556'), + (512, 299, 'not_attending', '2020-08-14 13:43:28', '2025-12-17 19:47:56', '6AXMZBY4', '3176591'), + (512, 301, 'not_attending', '2020-08-14 13:44:25', '2025-12-17 19:47:56', '6AXMZBY4', '3178027'), + (512, 302, 'not_attending', '2020-08-14 13:44:14', '2025-12-17 19:47:56', '6AXMZBY4', '3178028'), + (512, 303, 'maybe', '2020-08-14 13:44:02', '2025-12-17 19:47:56', '6AXMZBY4', '3178444'), + (512, 304, 'maybe', '2020-08-29 16:42:10', '2025-12-17 19:47:56', '6AXMZBY4', '3178916'), + (512, 305, 'not_attending', '2020-08-15 13:02:15', '2025-12-17 19:47:56', '6AXMZBY4', '3179555'), + (512, 306, 'not_attending', '2020-08-15 13:01:54', '2025-12-17 19:47:56', '6AXMZBY4', '3179777'), + (512, 307, 'not_attending', '2020-08-17 02:41:18', '2025-12-17 19:47:56', '6AXMZBY4', '3182590'), + (512, 308, 'not_attending', '2020-08-22 17:10:17', '2025-12-17 19:47:56', '6AXMZBY4', '3183341'), + (512, 309, 'not_attending', '2020-08-20 00:53:44', '2025-12-17 19:47:56', '6AXMZBY4', '3185332'), + (512, 310, 'maybe', '2020-08-22 15:36:33', '2025-12-17 19:47:56', '6AXMZBY4', '3186005'), + (512, 311, 'attending', '2020-08-23 14:59:20', '2025-12-17 19:47:56', '6AXMZBY4', '3186057'), + (512, 312, 'attending', '2020-09-10 22:43:37', '2025-12-17 19:47:56', '6AXMZBY4', '3187795'), + (512, 313, 'not_attending', '2020-08-23 05:10:25', '2025-12-17 19:47:56', '6AXMZBY4', '3188127'), + (512, 315, 'maybe', '2020-08-29 16:42:31', '2025-12-17 19:47:56', '6AXMZBY4', '3189085'), + (512, 317, 'not_attending', '2020-08-26 15:47:31', '2025-12-17 19:47:56', '6AXMZBY4', '3191735'), + (512, 318, 'not_attending', '2020-08-29 16:40:36', '2025-12-17 19:47:56', '6AXMZBY4', '3193885'), + (512, 319, 'maybe', '2020-08-29 16:43:00', '2025-12-17 19:47:56', '6AXMZBY4', '3194179'), + (512, 322, 'not_attending', '2020-09-16 23:15:25', '2025-12-17 19:47:56', '6AXMZBY4', '3197080'), + (512, 323, 'not_attending', '2020-09-05 03:41:35', '2025-12-17 19:47:56', '6AXMZBY4', '3197081'), + (512, 324, 'not_attending', '2020-09-05 03:41:50', '2025-12-17 19:47:56', '6AXMZBY4', '3197082'), + (512, 325, 'not_attending', '2020-09-05 03:41:55', '2025-12-17 19:47:51', '6AXMZBY4', '3197083'), + (512, 326, 'not_attending', '2020-09-05 03:41:59', '2025-12-17 19:47:52', '6AXMZBY4', '3197084'), + (512, 327, 'not_attending', '2020-09-05 03:42:14', '2025-12-17 19:47:52', '6AXMZBY4', '3197085'), + (512, 328, 'not_attending', '2020-09-05 03:42:18', '2025-12-17 19:47:52', '6AXMZBY4', '3197086'), + (512, 329, 'not_attending', '2020-09-05 03:42:23', '2025-12-17 19:47:52', '6AXMZBY4', '3197087'), + (512, 330, 'maybe', '2020-09-05 03:40:13', '2025-12-17 19:47:56', '6AXMZBY4', '3197322'), + (512, 333, 'not_attending', '2020-09-17 02:02:44', '2025-12-17 19:47:52', '6AXMZBY4', '3199782'), + (512, 334, 'not_attending', '2020-09-17 02:02:51', '2025-12-17 19:47:52', '6AXMZBY4', '3199784'), + (512, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '6AXMZBY4', '3200209'), + (512, 336, 'not_attending', '2020-09-05 03:41:42', '2025-12-17 19:47:56', '6AXMZBY4', '3200495'), + (512, 337, 'maybe', '2020-09-05 03:40:48', '2025-12-17 19:47:56', '6AXMZBY4', '3201771'), + (512, 338, 'maybe', '2020-09-05 03:40:01', '2025-12-17 19:47:56', '6AXMZBY4', '3203106'), + (512, 339, 'maybe', '2020-09-06 19:15:41', '2025-12-17 19:47:56', '6AXMZBY4', '3204469'), + (512, 340, 'attending', '2020-09-18 22:35:05', '2025-12-17 19:47:56', '6AXMZBY4', '3204470'), + (512, 341, 'not_attending', '2020-09-17 02:01:34', '2025-12-17 19:47:52', '6AXMZBY4', '3204471'), + (512, 342, 'not_attending', '2020-09-17 02:02:33', '2025-12-17 19:47:52', '6AXMZBY4', '3204472'), + (512, 343, 'not_attending', '2020-09-17 02:01:17', '2025-12-17 19:47:56', '6AXMZBY4', '3206759'), + (512, 344, 'not_attending', '2020-10-29 15:21:10', '2025-12-17 19:47:53', '6AXMZBY4', '3206906'), + (512, 345, 'maybe', '2020-09-11 18:24:50', '2025-12-17 19:47:56', '6AXMZBY4', '3207423'), + (512, 346, 'attending', '2020-09-15 22:14:51', '2025-12-17 19:47:56', '6AXMZBY4', '3207515'), + (512, 347, 'not_attending', '2020-09-17 02:01:27', '2025-12-17 19:47:51', '6AXMZBY4', '3207930'), + (512, 348, 'not_attending', '2020-09-17 02:02:12', '2025-12-17 19:47:52', '6AXMZBY4', '3209159'), + (512, 349, 'maybe', '2020-09-11 21:47:49', '2025-12-17 19:47:56', '6AXMZBY4', '3209194'), + (512, 352, 'maybe', '2020-09-12 21:22:50', '2025-12-17 19:47:56', '6AXMZBY4', '3210514'), + (512, 354, 'attending', '2020-09-20 22:57:23', '2025-12-17 19:47:56', '6AXMZBY4', '3212570'), + (512, 355, 'attending', '2020-09-15 00:30:29', '2025-12-17 19:47:56', '6AXMZBY4', '3212571'), + (512, 356, 'not_attending', '2020-09-17 02:01:23', '2025-12-17 19:47:51', '6AXMZBY4', '3212572'), + (512, 357, 'not_attending', '2020-09-17 02:02:25', '2025-12-17 19:47:52', '6AXMZBY4', '3212573'), + (512, 358, 'not_attending', '2020-09-17 18:01:48', '2025-12-17 19:47:56', '6AXMZBY4', '3212579'), + (512, 359, 'not_attending', '2020-09-17 18:02:03', '2025-12-17 19:47:56', '6AXMZBY4', '3212624'), + (512, 360, 'not_attending', '2020-09-17 18:00:27', '2025-12-17 19:47:56', '6AXMZBY4', '3212671'), + (512, 361, 'not_attending', '2020-09-17 18:01:35', '2025-12-17 19:47:56', '6AXMZBY4', '3213323'), + (512, 362, 'attending', '2020-09-17 02:01:45', '2025-12-17 19:47:52', '6AXMZBY4', '3214207'), + (512, 363, 'maybe', '2020-09-17 02:01:51', '2025-12-17 19:47:52', '6AXMZBY4', '3217037'), + (512, 364, 'attending', '2020-09-18 23:11:09', '2025-12-17 19:47:56', '6AXMZBY4', '3217106'), + (512, 365, 'not_attending', '2020-09-18 17:41:09', '2025-12-17 19:47:51', '6AXMZBY4', '3218510'), + (512, 366, 'not_attending', '2020-09-22 14:27:24', '2025-12-17 19:47:56', '6AXMZBY4', '3219750'), + (512, 367, 'not_attending', '2020-09-22 14:27:52', '2025-12-17 19:47:51', '6AXMZBY4', '3219751'), + (512, 368, 'not_attending', '2020-09-22 14:28:23', '2025-12-17 19:47:52', '6AXMZBY4', '3221403'), + (512, 369, 'not_attending', '2020-09-28 13:38:07', '2025-12-17 19:47:52', '6AXMZBY4', '3221404'), + (512, 370, 'not_attending', '2020-09-28 13:38:23', '2025-12-17 19:47:52', '6AXMZBY4', '3221405'), + (512, 371, 'not_attending', '2020-09-28 13:38:41', '2025-12-17 19:47:52', '6AXMZBY4', '3221406'), + (512, 372, 'not_attending', '2020-09-29 04:42:32', '2025-12-17 19:47:52', '6AXMZBY4', '3221407'), + (512, 373, 'not_attending', '2020-09-29 04:42:35', '2025-12-17 19:47:52', '6AXMZBY4', '3221413'), + (512, 374, 'not_attending', '2020-09-29 04:42:41', '2025-12-17 19:47:53', '6AXMZBY4', '3221415'), + (512, 375, 'not_attending', '2020-09-28 13:37:49', '2025-12-17 19:47:52', '6AXMZBY4', '3222825'), + (512, 376, 'not_attending', '2020-09-28 13:38:31', '2025-12-17 19:47:52', '6AXMZBY4', '3222827'), + (512, 377, 'not_attending', '2020-09-29 04:42:49', '2025-12-17 19:47:53', '6AXMZBY4', '3222828'), + (512, 378, 'attending', '2020-09-23 17:27:26', '2025-12-17 19:47:52', '6AXMZBY4', '3223725'), + (512, 379, 'not_attending', '2020-09-29 04:42:21', '2025-12-17 19:47:52', '6AXMZBY4', '3226266'), + (512, 380, 'not_attending', '2020-09-28 13:37:24', '2025-12-17 19:47:52', '6AXMZBY4', '3226281'), + (512, 382, 'not_attending', '2020-09-28 13:38:15', '2025-12-17 19:47:52', '6AXMZBY4', '3226873'), + (512, 383, 'not_attending', '2020-09-28 13:37:20', '2025-12-17 19:47:52', '6AXMZBY4', '3227946'), + (512, 384, 'attending', '2020-09-29 21:37:34', '2025-12-17 19:47:52', '6AXMZBY4', '3228696'), + (512, 385, 'attending', '2020-09-29 03:07:29', '2025-12-17 19:47:52', '6AXMZBY4', '3228698'), + (512, 386, 'attending', '2020-09-29 03:07:33', '2025-12-17 19:47:52', '6AXMZBY4', '3228699'), + (512, 387, 'attending', '2020-09-29 03:07:41', '2025-12-17 19:47:52', '6AXMZBY4', '3228700'), + (512, 388, 'attending', '2020-09-29 03:07:43', '2025-12-17 19:47:52', '6AXMZBY4', '3228701'), + (512, 389, 'not_attending', '2020-10-01 00:22:52', '2025-12-17 19:47:52', '6AXMZBY4', '3231284'), + (512, 390, 'attending', '2020-10-04 20:47:16', '2025-12-17 19:47:52', '6AXMZBY4', '3231510'), + (512, 391, 'not_attending', '2020-10-12 21:57:02', '2025-12-17 19:47:52', '6AXMZBY4', '3236446'), + (512, 392, 'not_attending', '2020-10-12 22:37:19', '2025-12-17 19:47:53', '6AXMZBY4', '3236447'), + (512, 394, 'not_attending', '2020-11-07 06:49:09', '2025-12-17 19:47:48', '6AXMZBY4', '3236449'), + (512, 396, 'not_attending', '2021-04-05 11:22:50', '2025-12-17 19:47:46', '6AXMZBY4', '3236451'), + (512, 398, 'not_attending', '2021-01-08 18:29:15', '2025-12-17 19:47:49', '6AXMZBY4', '3236453'), + (512, 399, 'not_attending', '2020-10-14 14:18:20', '2025-12-17 19:47:54', '6AXMZBY4', '3236454'), + (512, 400, 'not_attending', '2021-01-08 18:29:33', '2025-12-17 19:47:50', '6AXMZBY4', '3236455'), + (512, 403, 'not_attending', '2021-02-01 22:41:06', '2025-12-17 19:47:51', '6AXMZBY4', '3236458'), + (512, 404, 'not_attending', '2021-03-01 18:40:10', '2025-12-17 19:47:51', '6AXMZBY4', '3236460'), + (512, 406, 'not_attending', '2021-03-01 18:40:32', '2025-12-17 19:47:44', '6AXMZBY4', '3236464'), + (512, 407, 'not_attending', '2021-04-05 11:21:43', '2025-12-17 19:47:44', '6AXMZBY4', '3236465'), + (512, 408, 'not_attending', '2021-02-01 22:40:38', '2025-12-17 19:47:50', '6AXMZBY4', '3236466'), + (512, 409, 'not_attending', '2020-11-07 06:48:40', '2025-12-17 19:47:54', '6AXMZBY4', '3236467'), + (512, 410, 'not_attending', '2020-10-14 14:18:34', '2025-12-17 19:47:54', '6AXMZBY4', '3236469'), + (512, 411, 'maybe', '2020-10-09 03:41:41', '2025-12-17 19:47:52', '6AXMZBY4', '3236596'), + (512, 413, 'not_attending', '2020-10-12 22:36:43', '2025-12-17 19:47:52', '6AXMZBY4', '3236670'), + (512, 414, 'maybe', '2020-10-12 22:36:19', '2025-12-17 19:47:52', '6AXMZBY4', '3237277'), + (512, 415, 'maybe', '2020-10-12 21:56:00', '2025-12-17 19:47:52', '6AXMZBY4', '3238044'), + (512, 416, 'not_attending', '2020-10-09 03:41:33', '2025-12-17 19:47:52', '6AXMZBY4', '3238073'), + (512, 417, 'not_attending', '2020-10-09 03:41:55', '2025-12-17 19:47:52', '6AXMZBY4', '3238779'), + (512, 418, 'not_attending', '2020-10-12 21:56:45', '2025-12-17 19:47:52', '6AXMZBY4', '3241728'), + (512, 419, 'not_attending', '2020-10-12 21:56:37', '2025-12-17 19:47:52', '6AXMZBY4', '3242234'), + (512, 420, 'not_attending', '2020-10-12 21:56:56', '2025-12-17 19:47:52', '6AXMZBY4', '3245293'), + (512, 421, 'not_attending', '2020-10-12 22:36:49', '2025-12-17 19:47:52', '6AXMZBY4', '3245294'), + (512, 422, 'not_attending', '2020-10-12 22:37:14', '2025-12-17 19:47:53', '6AXMZBY4', '3245295'), + (512, 423, 'maybe', '2020-10-29 15:21:45', '2025-12-17 19:47:53', '6AXMZBY4', '3245296'), + (512, 424, 'not_attending', '2020-10-12 22:36:06', '2025-12-17 19:47:52', '6AXMZBY4', '3245751'), + (512, 425, 'not_attending', '2020-10-14 14:17:35', '2025-12-17 19:47:52', '6AXMZBY4', '3250097'), + (512, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '6AXMZBY4', '3250232'), + (512, 427, 'not_attending', '2020-10-29 15:21:07', '2025-12-17 19:47:53', '6AXMZBY4', '3250233'), + (512, 428, 'not_attending', '2020-10-20 21:08:55', '2025-12-17 19:47:53', '6AXMZBY4', '3250332'), + (512, 429, 'maybe', '2020-11-07 06:48:45', '2025-12-17 19:47:54', '6AXMZBY4', '3250523'), + (512, 430, 'not_attending', '2020-10-20 21:08:37', '2025-12-17 19:47:52', '6AXMZBY4', '3253094'), + (512, 431, 'not_attending', '2020-10-20 21:08:57', '2025-12-17 19:47:53', '6AXMZBY4', '3253225'), + (512, 432, 'not_attending', '2020-10-20 21:09:32', '2025-12-17 19:47:53', '6AXMZBY4', '3254416'), + (512, 433, 'not_attending', '2020-10-20 21:09:36', '2025-12-17 19:47:53', '6AXMZBY4', '3254417'), + (512, 434, 'not_attending', '2020-10-20 21:09:42', '2025-12-17 19:47:53', '6AXMZBY4', '3254418'), + (512, 435, 'not_attending', '2020-10-20 21:08:52', '2025-12-17 19:47:52', '6AXMZBY4', '3254790'), + (512, 436, 'not_attending', '2020-10-20 21:08:43', '2025-12-17 19:47:52', '6AXMZBY4', '3256119'), + (512, 437, 'not_attending', '2020-10-20 21:09:05', '2025-12-17 19:47:53', '6AXMZBY4', '3256160'), + (512, 438, 'not_attending', '2020-10-27 05:16:20', '2025-12-17 19:47:53', '6AXMZBY4', '3256163'), + (512, 439, 'not_attending', '2020-10-20 21:09:03', '2025-12-17 19:47:53', '6AXMZBY4', '3256164'), + (512, 440, 'attending', '2020-10-29 15:21:51', '2025-12-17 19:47:53', '6AXMZBY4', '3256168'), + (512, 441, 'attending', '2020-10-20 21:09:45', '2025-12-17 19:47:54', '6AXMZBY4', '3256169'), + (512, 443, 'attending', '2020-10-26 00:23:37', '2025-12-17 19:47:53', '6AXMZBY4', '3263578'), + (512, 444, 'maybe', '2020-10-30 19:00:13', '2025-12-17 19:47:53', '6AXMZBY4', '3263745'), + (512, 445, 'not_attending', '2020-11-07 06:47:51', '2025-12-17 19:47:54', '6AXMZBY4', '3266138'), + (512, 446, 'not_attending', '2020-10-27 05:15:49', '2025-12-17 19:47:53', '6AXMZBY4', '3267163'), + (512, 447, 'not_attending', '2020-10-27 05:16:01', '2025-12-17 19:47:53', '6AXMZBY4', '3267895'), + (512, 448, 'maybe', '2020-10-30 23:48:33', '2025-12-17 19:47:53', '6AXMZBY4', '3271831'), + (512, 449, 'maybe', '2020-11-02 01:18:06', '2025-12-17 19:47:53', '6AXMZBY4', '3272055'), + (512, 451, 'not_attending', '2020-11-02 01:17:48', '2025-12-17 19:47:53', '6AXMZBY4', '3272186'), + (512, 452, 'attending', '2020-11-30 00:56:25', '2025-12-17 19:47:54', '6AXMZBY4', '3272981'), + (512, 453, 'not_attending', '2020-11-07 06:47:41', '2025-12-17 19:47:54', '6AXMZBY4', '3274032'), + (512, 454, 'maybe', '2020-11-13 21:57:31', '2025-12-17 19:47:54', '6AXMZBY4', '3275665'), + (512, 456, 'not_attending', '2020-11-07 06:48:06', '2025-12-17 19:47:54', '6AXMZBY4', '3276428'), + (512, 457, 'not_attending', '2020-11-08 00:02:41', '2025-12-17 19:47:53', '6AXMZBY4', '3279087'), + (512, 458, 'not_attending', '2020-11-07 06:47:32', '2025-12-17 19:47:53', '6AXMZBY4', '3279233'), + (512, 460, 'not_attending', '2020-11-10 18:13:08', '2025-12-17 19:47:54', '6AXMZBY4', '3281468'), + (512, 461, 'not_attending', '2020-11-10 00:41:46', '2025-12-17 19:47:53', '6AXMZBY4', '3281469'), + (512, 462, 'not_attending', '2020-11-10 18:12:19', '2025-12-17 19:47:54', '6AXMZBY4', '3281470'), + (512, 463, 'not_attending', '2020-11-10 18:12:33', '2025-12-17 19:47:54', '6AXMZBY4', '3281553'), + (512, 464, 'not_attending', '2020-11-10 18:13:11', '2025-12-17 19:47:54', '6AXMZBY4', '3281554'), + (512, 465, 'not_attending', '2020-11-10 18:13:21', '2025-12-17 19:47:54', '6AXMZBY4', '3281555'), + (512, 466, 'not_attending', '2020-11-10 18:13:04', '2025-12-17 19:47:54', '6AXMZBY4', '3281829'), + (512, 467, 'not_attending', '2020-11-10 18:12:58', '2025-12-17 19:47:54', '6AXMZBY4', '3282756'), + (512, 468, 'attending', '2020-11-19 17:08:48', '2025-12-17 19:47:54', '6AXMZBY4', '3285413'), + (512, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '6AXMZBY4', '3285414'), + (512, 471, 'not_attending', '2020-11-17 21:05:15', '2025-12-17 19:47:54', '6AXMZBY4', '3285445'), + (512, 472, 'not_attending', '2020-11-11 23:51:19', '2025-12-17 19:47:54', '6AXMZBY4', '3286541'), + (512, 473, 'not_attending', '2020-11-11 23:51:29', '2025-12-17 19:47:54', '6AXMZBY4', '3286569'), + (512, 474, 'not_attending', '2020-11-11 23:51:12', '2025-12-17 19:47:54', '6AXMZBY4', '3286570'), + (512, 475, 'not_attending', '2020-11-17 21:05:31', '2025-12-17 19:47:54', '6AXMZBY4', '3286760'), + (512, 476, 'not_attending', '2020-11-17 21:05:12', '2025-12-17 19:47:54', '6AXMZBY4', '3286982'), + (512, 477, 'not_attending', '2020-11-26 06:38:34', '2025-12-17 19:47:54', '6AXMZBY4', '3289559'), + (512, 478, 'not_attending', '2020-11-17 21:05:01', '2025-12-17 19:47:54', '6AXMZBY4', '3290899'), + (512, 479, 'not_attending', '2020-11-19 17:09:02', '2025-12-17 19:47:54', '6AXMZBY4', '3295306'), + (512, 480, 'attending', '2020-11-19 17:08:43', '2025-12-17 19:47:54', '6AXMZBY4', '3295313'), + (512, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '6AXMZBY4', '3297764'), + (512, 482, 'not_attending', '2020-11-24 19:45:14', '2025-12-17 19:47:54', '6AXMZBY4', '3297769'), + (512, 484, 'not_attending', '2020-11-21 00:04:03', '2025-12-17 19:47:54', '6AXMZBY4', '3297792'), + (512, 486, 'not_attending', '2020-11-24 19:45:10', '2025-12-17 19:47:54', '6AXMZBY4', '3300281'), + (512, 487, 'not_attending', '2020-11-26 06:38:24', '2025-12-17 19:47:54', '6AXMZBY4', '3311122'), + (512, 488, 'not_attending', '2020-11-29 04:38:59', '2025-12-17 19:47:54', '6AXMZBY4', '3312757'), + (512, 489, 'maybe', '2020-11-27 00:39:52', '2025-12-17 19:47:54', '6AXMZBY4', '3313022'), + (512, 490, 'not_attending', '2020-11-29 04:39:20', '2025-12-17 19:47:54', '6AXMZBY4', '3313532'), + (512, 491, 'not_attending', '2020-11-29 04:39:28', '2025-12-17 19:47:55', '6AXMZBY4', '3313533'), + (512, 492, 'not_attending', '2020-11-29 04:39:07', '2025-12-17 19:47:54', '6AXMZBY4', '3313731'), + (512, 493, 'attending', '2020-11-29 04:10:20', '2025-12-17 19:47:54', '6AXMZBY4', '3313856'), + (512, 494, 'attending', '2020-11-29 17:02:33', '2025-12-17 19:47:54', '6AXMZBY4', '3313866'), + (512, 495, 'not_attending', '2020-12-08 00:58:14', '2025-12-17 19:47:54', '6AXMZBY4', '3314009'), + (512, 496, 'not_attending', '2020-11-29 22:14:23', '2025-12-17 19:47:54', '6AXMZBY4', '3314269'), + (512, 497, 'not_attending', '2020-11-29 22:14:43', '2025-12-17 19:47:55', '6AXMZBY4', '3314270'), + (512, 498, 'attending', '2020-12-08 00:58:16', '2025-12-17 19:47:54', '6AXMZBY4', '3314302'), + (512, 499, 'not_attending', '2020-12-08 16:12:11', '2025-12-17 19:47:55', '6AXMZBY4', '3314909'), + (512, 500, 'not_attending', '2020-12-08 16:13:07', '2025-12-17 19:47:55', '6AXMZBY4', '3314964'), + (512, 501, 'not_attending', '2020-12-08 16:11:51', '2025-12-17 19:47:54', '6AXMZBY4', '3317834'), + (512, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '6AXMZBY4', '3323365'), + (512, 503, 'not_attending', '2020-12-08 16:12:49', '2025-12-17 19:47:55', '6AXMZBY4', '3323366'), + (512, 504, 'not_attending', '2020-12-08 16:13:03', '2025-12-17 19:47:55', '6AXMZBY4', '3323368'), + (512, 505, 'not_attending', '2020-12-08 16:13:12', '2025-12-17 19:47:55', '6AXMZBY4', '3323369'), + (512, 506, 'maybe', '2020-12-08 16:12:26', '2025-12-17 19:47:55', '6AXMZBY4', '3323375'), + (512, 507, 'not_attending', '2020-12-08 16:13:17', '2025-12-17 19:47:48', '6AXMZBY4', '3324148'), + (512, 508, 'not_attending', '2021-01-08 18:29:08', '2025-12-17 19:47:48', '6AXMZBY4', '3324231'), + (512, 509, 'not_attending', '2021-01-08 18:29:19', '2025-12-17 19:47:49', '6AXMZBY4', '3324232'), + (512, 510, 'maybe', '2021-01-24 05:30:12', '2025-12-17 19:47:49', '6AXMZBY4', '3324233'), + (512, 511, 'not_attending', '2020-12-08 16:12:54', '2025-12-17 19:47:55', '6AXMZBY4', '3325335'), + (512, 512, 'not_attending', '2020-12-08 16:12:42', '2025-12-17 19:47:55', '6AXMZBY4', '3325336'), + (512, 513, 'attending', '2020-12-13 22:31:53', '2025-12-17 19:47:55', '6AXMZBY4', '3329383'), + (512, 519, 'not_attending', '2020-12-17 18:11:22', '2025-12-17 19:47:55', '6AXMZBY4', '3337448'), + (512, 522, 'not_attending', '2020-12-17 18:10:47', '2025-12-17 19:47:55', '6AXMZBY4', '3342836'), + (512, 525, 'not_attending', '2020-12-22 05:41:20', '2025-12-17 19:47:48', '6AXMZBY4', '3350467'), + (512, 526, 'attending', '2021-01-01 03:04:26', '2025-12-17 19:47:48', '6AXMZBY4', '3351539'), + (512, 531, 'attending', '2021-01-02 06:09:30', '2025-12-17 19:47:48', '6AXMZBY4', '3378210'), + (512, 535, 'not_attending', '2021-01-08 18:28:08', '2025-12-17 19:47:48', '6AXMZBY4', '3384729'), + (512, 536, 'attending', '2021-01-06 01:02:55', '2025-12-17 19:47:48', '6AXMZBY4', '3386848'), + (512, 537, 'not_attending', '2021-01-08 18:28:13', '2025-12-17 19:47:48', '6AXMZBY4', '3387153'), + (512, 538, 'not_attending', '2021-01-08 18:28:57', '2025-12-17 19:47:48', '6AXMZBY4', '3388151'), + (512, 539, 'attending', '2021-01-09 05:12:53', '2025-12-17 19:47:48', '6AXMZBY4', '3389158'), + (512, 540, 'attending', '2021-01-07 05:30:19', '2025-12-17 19:47:48', '6AXMZBY4', '3389527'), + (512, 541, 'not_attending', '2021-01-08 18:27:50', '2025-12-17 19:47:48', '6AXMZBY4', '3391683'), + (512, 543, 'not_attending', '2021-01-12 18:38:37', '2025-12-17 19:47:48', '6AXMZBY4', '3396499'), + (512, 545, 'not_attending', '2021-01-16 22:12:49', '2025-12-17 19:47:49', '6AXMZBY4', '3396502'), + (512, 546, 'not_attending', '2021-01-16 22:13:02', '2025-12-17 19:47:49', '6AXMZBY4', '3396503'), + (512, 547, 'not_attending', '2021-01-16 22:13:09', '2025-12-17 19:47:49', '6AXMZBY4', '3396504'), + (512, 548, 'attending', '2021-01-12 18:38:22', '2025-12-17 19:47:48', '6AXMZBY4', '3403650'), + (512, 549, 'not_attending', '2021-01-16 22:12:39', '2025-12-17 19:47:49', '6AXMZBY4', '3406988'), + (512, 550, 'maybe', '2021-01-16 22:13:17', '2025-12-17 19:47:48', '6AXMZBY4', '3407018'), + (512, 551, 'not_attending', '2021-01-16 22:12:44', '2025-12-17 19:47:49', '6AXMZBY4', '3407219'), + (512, 553, 'attending', '2021-01-13 05:32:22', '2025-12-17 19:47:48', '6AXMZBY4', '3407248'), + (512, 554, 'not_attending', '2021-01-16 22:12:52', '2025-12-17 19:47:49', '6AXMZBY4', '3408338'), + (512, 555, 'attending', '2021-01-23 18:45:02', '2025-12-17 19:47:49', '6AXMZBY4', '3416576'), + (512, 556, 'attending', '2021-01-25 19:49:35', '2025-12-17 19:47:49', '6AXMZBY4', '3417170'), + (512, 557, 'not_attending', '2021-01-19 17:00:55', '2025-12-17 19:47:49', '6AXMZBY4', '3418748'), + (512, 558, 'not_attending', '2021-01-22 23:25:47', '2025-12-17 19:47:49', '6AXMZBY4', '3418925'), + (512, 559, 'not_attending', '2021-01-21 16:44:17', '2025-12-17 19:47:49', '6AXMZBY4', '3421439'), + (512, 560, 'not_attending', '2021-01-21 16:43:41', '2025-12-17 19:47:49', '6AXMZBY4', '3421715'), + (512, 561, 'attending', '2021-01-23 18:44:58', '2025-12-17 19:47:49', '6AXMZBY4', '3421916'), + (512, 563, 'attending', '2021-01-25 19:23:31', '2025-12-17 19:47:49', '6AXMZBY4', '3425913'), + (512, 564, 'attending', '2021-01-25 01:41:11', '2025-12-17 19:47:49', '6AXMZBY4', '3426074'), + (512, 565, 'not_attending', '2021-01-24 05:29:50', '2025-12-17 19:47:49', '6AXMZBY4', '3426083'), + (512, 566, 'not_attending', '2021-01-24 05:30:17', '2025-12-17 19:47:49', '6AXMZBY4', '3427928'), + (512, 567, 'not_attending', '2021-01-27 23:46:57', '2025-12-17 19:47:50', '6AXMZBY4', '3428895'), + (512, 568, 'attending', '2021-01-24 22:39:18', '2025-12-17 19:47:50', '6AXMZBY4', '3430267'), + (512, 569, 'attending', '2021-01-25 19:49:29', '2025-12-17 19:47:49', '6AXMZBY4', '3432673'), + (512, 570, 'not_attending', '2021-01-27 21:11:36', '2025-12-17 19:47:50', '6AXMZBY4', '3435538'), + (512, 571, 'not_attending', '2021-02-01 22:40:24', '2025-12-17 19:47:50', '6AXMZBY4', '3435539'), + (512, 572, 'not_attending', '2021-01-26 05:23:15', '2025-12-17 19:47:50', '6AXMZBY4', '3435540'), + (512, 573, 'not_attending', '2021-02-01 22:41:03', '2025-12-17 19:47:50', '6AXMZBY4', '3435542'), + (512, 574, 'not_attending', '2021-02-01 22:41:09', '2025-12-17 19:47:51', '6AXMZBY4', '3435543'), + (512, 575, 'attending', '2021-01-27 23:45:28', '2025-12-17 19:47:50', '6AXMZBY4', '3437492'), + (512, 576, 'attending', '2021-01-27 22:34:39', '2025-12-17 19:47:50', '6AXMZBY4', '3438748'), + (512, 578, 'maybe', '2021-01-28 20:57:37', '2025-12-17 19:47:50', '6AXMZBY4', '3440043'), + (512, 579, 'attending', '2021-01-28 20:57:46', '2025-12-17 19:47:50', '6AXMZBY4', '3440978'), + (512, 580, 'maybe', '2021-01-30 21:12:14', '2025-12-17 19:47:50', '6AXMZBY4', '3444240'), + (512, 581, 'not_attending', '2021-02-01 00:01:13', '2025-12-17 19:47:50', '6AXMZBY4', '3445029'), + (512, 582, 'maybe', '2021-02-01 00:01:03', '2025-12-17 19:47:50', '6AXMZBY4', '3445769'), + (512, 583, 'not_attending', '2021-02-01 22:41:22', '2025-12-17 19:47:50', '6AXMZBY4', '3449144'), + (512, 584, 'not_attending', '2021-02-01 00:01:32', '2025-12-17 19:47:50', '6AXMZBY4', '3449466'), + (512, 585, 'not_attending', '2021-02-01 22:40:12', '2025-12-17 19:47:50', '6AXMZBY4', '3449468'), + (512, 586, 'not_attending', '2021-02-01 22:40:20', '2025-12-17 19:47:50', '6AXMZBY4', '3449469'), + (512, 587, 'not_attending', '2021-02-01 22:40:28', '2025-12-17 19:47:50', '6AXMZBY4', '3449470'), + (512, 588, 'not_attending', '2021-02-01 22:40:31', '2025-12-17 19:47:50', '6AXMZBY4', '3449471'), + (512, 589, 'not_attending', '2021-02-01 22:40:33', '2025-12-17 19:47:50', '6AXMZBY4', '3449473'), + (512, 590, 'not_attending', '2021-02-03 00:05:19', '2025-12-17 19:47:50', '6AXMZBY4', '3459150'), + (512, 591, 'not_attending', '2021-02-06 00:35:09', '2025-12-17 19:47:50', '6AXMZBY4', '3465880'), + (512, 592, 'not_attending', '2021-02-08 18:37:17', '2025-12-17 19:47:50', '6AXMZBY4', '3467757'), + (512, 593, 'not_attending', '2021-02-08 18:37:11', '2025-12-17 19:47:50', '6AXMZBY4', '3467758'), + (512, 594, 'not_attending', '2021-02-08 18:37:26', '2025-12-17 19:47:51', '6AXMZBY4', '3467759'), + (512, 595, 'not_attending', '2021-02-08 18:37:45', '2025-12-17 19:47:51', '6AXMZBY4', '3467761'), + (512, 596, 'not_attending', '2021-02-08 18:37:50', '2025-12-17 19:47:51', '6AXMZBY4', '3467762'), + (512, 597, 'not_attending', '2021-02-08 18:37:54', '2025-12-17 19:47:51', '6AXMZBY4', '3467764'), + (512, 598, 'not_attending', '2021-02-06 04:46:45', '2025-12-17 19:47:50', '6AXMZBY4', '3468003'), + (512, 599, 'not_attending', '2021-02-08 18:36:15', '2025-12-17 19:47:50', '6AXMZBY4', '3468117'), + (512, 600, 'not_attending', '2021-02-21 17:27:40', '2025-12-17 19:47:50', '6AXMZBY4', '3468125'), + (512, 601, 'not_attending', '2021-02-08 18:36:23', '2025-12-17 19:47:50', '6AXMZBY4', '3468131'), + (512, 602, 'attending', '2021-02-08 18:36:02', '2025-12-17 19:47:50', '6AXMZBY4', '3470303'), + (512, 603, 'attending', '2021-02-08 18:36:34', '2025-12-17 19:47:50', '6AXMZBY4', '3470304'), + (512, 604, 'attending', '2021-02-08 18:36:36', '2025-12-17 19:47:50', '6AXMZBY4', '3470305'), + (512, 605, 'attending', '2021-02-10 18:20:20', '2025-12-17 19:47:50', '6AXMZBY4', '3470991'), + (512, 606, 'not_attending', '2021-02-08 18:35:54', '2025-12-17 19:47:50', '6AXMZBY4', '3470998'), + (512, 607, 'maybe', '2021-02-20 00:41:21', '2025-12-17 19:47:50', '6AXMZBY4', '3471882'), + (512, 608, 'not_attending', '2021-02-10 05:33:36', '2025-12-17 19:47:50', '6AXMZBY4', '3475332'), + (512, 609, 'attending', '2021-02-10 18:20:10', '2025-12-17 19:47:50', '6AXMZBY4', '3480916'), + (512, 610, 'not_attending', '2021-02-11 05:30:48', '2025-12-17 19:47:50', '6AXMZBY4', '3482159'), + (512, 611, 'not_attending', '2021-02-13 02:41:09', '2025-12-17 19:47:50', '6AXMZBY4', '3482659'), + (512, 612, 'not_attending', '2021-02-15 05:27:56', '2025-12-17 19:47:50', '6AXMZBY4', '3490040'), + (512, 613, 'not_attending', '2021-02-15 05:28:39', '2025-12-17 19:47:50', '6AXMZBY4', '3490041'), + (512, 614, 'not_attending', '2021-02-15 05:28:50', '2025-12-17 19:47:51', '6AXMZBY4', '3490042'), + (512, 615, 'not_attending', '2021-02-15 05:28:06', '2025-12-17 19:47:50', '6AXMZBY4', '3490045'), + (512, 616, 'attending', '2021-02-18 05:15:34', '2025-12-17 19:47:50', '6AXMZBY4', '3493478'), + (512, 617, 'not_attending', '2021-02-21 17:28:28', '2025-12-17 19:47:50', '6AXMZBY4', '3499119'), + (512, 618, 'maybe', '2021-02-19 23:56:53', '2025-12-17 19:47:50', '6AXMZBY4', '3503991'), + (512, 620, 'not_attending', '2021-02-23 20:27:29', '2025-12-17 19:47:50', '6AXMZBY4', '3513703'), + (512, 621, 'attending', '2021-02-28 05:02:59', '2025-12-17 19:47:51', '6AXMZBY4', '3517815'), + (512, 622, 'attending', '2021-02-28 05:03:00', '2025-12-17 19:47:51', '6AXMZBY4', '3517816'), + (512, 623, 'not_attending', '2021-02-27 01:04:17', '2025-12-17 19:47:51', '6AXMZBY4', '3523941'), + (512, 624, 'not_attending', '2021-02-27 05:05:16', '2025-12-17 19:47:50', '6AXMZBY4', '3528556'), + (512, 625, 'not_attending', '2021-03-01 03:22:04', '2025-12-17 19:47:51', '6AXMZBY4', '3533296'), + (512, 626, 'not_attending', '2021-03-01 03:21:51', '2025-12-17 19:47:51', '6AXMZBY4', '3533298'), + (512, 627, 'not_attending', '2021-03-06 01:38:34', '2025-12-17 19:47:51', '6AXMZBY4', '3533303'), + (512, 628, 'not_attending', '2021-03-01 18:40:00', '2025-12-17 19:47:51', '6AXMZBY4', '3533305'), + (512, 629, 'maybe', '2021-03-06 01:38:58', '2025-12-17 19:47:51', '6AXMZBY4', '3533307'), + (512, 630, 'not_attending', '2021-03-01 03:22:06', '2025-12-17 19:47:51', '6AXMZBY4', '3533425'), + (512, 631, 'maybe', '2021-03-01 03:21:29', '2025-12-17 19:47:51', '6AXMZBY4', '3533850'), + (512, 632, 'not_attending', '2021-03-07 08:33:30', '2025-12-17 19:47:51', '6AXMZBY4', '3533853'), + (512, 633, 'not_attending', '2021-03-01 18:40:27', '2025-12-17 19:47:44', '6AXMZBY4', '3534717'), + (512, 634, 'not_attending', '2021-03-01 18:40:35', '2025-12-17 19:47:44', '6AXMZBY4', '3534718'), + (512, 635, 'not_attending', '2021-03-01 18:40:45', '2025-12-17 19:47:44', '6AXMZBY4', '3534719'), + (512, 636, 'not_attending', '2021-04-05 11:21:50', '2025-12-17 19:47:45', '6AXMZBY4', '3534720'), + (512, 637, 'not_attending', '2021-03-01 18:37:29', '2025-12-17 19:47:51', '6AXMZBY4', '3536411'), + (512, 638, 'maybe', '2021-03-03 04:18:20', '2025-12-17 19:47:44', '6AXMZBY4', '3536632'), + (512, 639, 'maybe', '2021-03-03 04:18:01', '2025-12-17 19:47:51', '6AXMZBY4', '3536656'), + (512, 640, 'not_attending', '2021-03-03 04:18:52', '2025-12-17 19:47:51', '6AXMZBY4', '3538866'), + (512, 641, 'attending', '2021-04-02 12:19:46', '2025-12-17 19:47:44', '6AXMZBY4', '3539916'), + (512, 642, 'attending', '2021-04-05 11:21:59', '2025-12-17 19:47:44', '6AXMZBY4', '3539917'), + (512, 643, 'attending', '2021-04-05 11:21:58', '2025-12-17 19:47:45', '6AXMZBY4', '3539918'), + (512, 644, 'attending', '2021-04-05 11:22:02', '2025-12-17 19:47:45', '6AXMZBY4', '3539919'), + (512, 645, 'attending', '2021-04-05 11:22:57', '2025-12-17 19:47:46', '6AXMZBY4', '3539920'), + (512, 646, 'attending', '2021-05-14 14:03:56', '2025-12-17 19:47:46', '6AXMZBY4', '3539921'), + (512, 647, 'maybe', '2021-05-21 12:35:10', '2025-12-17 19:47:46', '6AXMZBY4', '3539922'), + (512, 648, 'attending', '2021-05-29 16:14:37', '2025-12-17 19:47:47', '6AXMZBY4', '3539923'), + (512, 649, 'attending', '2021-03-03 16:32:52', '2025-12-17 19:47:51', '6AXMZBY4', '3539927'), + (512, 650, 'maybe', '2021-03-27 14:57:20', '2025-12-17 19:47:44', '6AXMZBY4', '3539928'), + (512, 651, 'not_attending', '2021-03-07 08:33:42', '2025-12-17 19:47:51', '6AXMZBY4', '3541045'), + (512, 652, 'not_attending', '2021-03-06 01:38:52', '2025-12-17 19:47:51', '6AXMZBY4', '3544466'), + (512, 654, 'not_attending', '2021-03-07 08:33:24', '2025-12-17 19:47:51', '6AXMZBY4', '3546990'), + (512, 655, 'attending', '2021-03-07 08:34:05', '2025-12-17 19:47:51', '6AXMZBY4', '3547129'), + (512, 656, 'not_attending', '2021-03-07 08:34:10', '2025-12-17 19:47:51', '6AXMZBY4', '3547130'), + (512, 657, 'attending', '2021-04-13 09:09:13', '2025-12-17 19:47:45', '6AXMZBY4', '3547132'), + (512, 658, 'attending', '2021-06-07 09:52:37', '2025-12-17 19:47:47', '6AXMZBY4', '3547134'), + (512, 659, 'attending', '2021-04-05 11:21:55', '2025-12-17 19:47:44', '6AXMZBY4', '3547135'), + (512, 661, 'attending', '2021-04-03 20:33:00', '2025-12-17 19:47:44', '6AXMZBY4', '3547137'), + (512, 662, 'attending', '2021-04-05 11:22:03', '2025-12-17 19:47:45', '6AXMZBY4', '3547138'), + (512, 663, 'attending', '2021-04-05 11:22:55', '2025-12-17 19:47:46', '6AXMZBY4', '3547140'), + (512, 668, 'attending', '2021-05-12 03:43:15', '2025-12-17 19:47:46', '6AXMZBY4', '3547146'), + (512, 669, 'attending', '2021-06-22 10:48:57', '2025-12-17 19:47:38', '6AXMZBY4', '3547147'), + (512, 670, 'attending', '2021-06-07 09:53:06', '2025-12-17 19:47:48', '6AXMZBY4', '3547148'), + (512, 672, 'not_attending', '2021-05-21 12:35:04', '2025-12-17 19:47:46', '6AXMZBY4', '3547150'), + (512, 673, 'attending', '2021-06-30 09:52:59', '2025-12-17 19:47:38', '6AXMZBY4', '3547151'), + (512, 676, 'maybe', '2021-07-24 15:01:06', '2025-12-17 19:47:40', '6AXMZBY4', '3547154'), + (512, 677, 'attending', '2021-05-12 03:44:28', '2025-12-17 19:47:47', '6AXMZBY4', '3547155'), + (512, 678, 'not_attending', '2021-03-07 08:33:51', '2025-12-17 19:47:51', '6AXMZBY4', '3547158'), + (512, 680, 'maybe', '2021-03-07 08:33:08', '2025-12-17 19:47:51', '6AXMZBY4', '3547700'), + (512, 683, 'not_attending', '2021-03-12 11:49:58', '2025-12-17 19:47:51', '6AXMZBY4', '3548818'), + (512, 684, 'maybe', '2021-03-08 13:45:21', '2025-12-17 19:47:51', '6AXMZBY4', '3549257'), + (512, 685, 'maybe', '2021-04-05 11:21:33', '2025-12-17 19:47:44', '6AXMZBY4', '3551564'), + (512, 686, 'maybe', '2021-03-12 13:39:57', '2025-12-17 19:47:51', '6AXMZBY4', '3553333'), + (512, 688, 'not_attending', '2021-03-15 05:24:09', '2025-12-17 19:47:51', '6AXMZBY4', '3553729'), + (512, 689, 'not_attending', '2021-03-15 05:25:38', '2025-12-17 19:47:44', '6AXMZBY4', '3555564'), + (512, 690, 'maybe', '2021-03-15 05:25:33', '2025-12-17 19:47:43', '6AXMZBY4', '3559954'), + (512, 691, 'maybe', '2021-03-20 00:11:20', '2025-12-17 19:47:45', '6AXMZBY4', '3561928'), + (512, 693, 'maybe', '2021-03-15 05:23:54', '2025-12-17 19:47:51', '6AXMZBY4', '3565907'), + (512, 695, 'maybe', '2021-03-18 09:56:31', '2025-12-17 19:47:51', '6AXMZBY4', '3567535'), + (512, 696, 'not_attending', '2021-03-15 05:24:46', '2025-12-17 19:47:51', '6AXMZBY4', '3567536'), + (512, 698, 'not_attending', '2021-03-15 15:37:41', '2025-12-17 19:47:44', '6AXMZBY4', '3571867'), + (512, 703, 'attending', '2021-04-11 22:24:44', '2025-12-17 19:47:44', '6AXMZBY4', '3578388'), + (512, 705, 'maybe', '2021-03-28 12:28:32', '2025-12-17 19:47:44', '6AXMZBY4', '3581895'), + (512, 706, 'maybe', '2021-03-20 00:11:05', '2025-12-17 19:47:45', '6AXMZBY4', '3582734'), + (512, 707, 'attending', '2021-03-30 09:59:19', '2025-12-17 19:47:46', '6AXMZBY4', '3583262'), + (512, 715, 'not_attending', '2021-03-31 21:50:50', '2025-12-17 19:47:44', '6AXMZBY4', '3604146'), + (512, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXMZBY4', '3619523'), + (512, 718, 'maybe', '2021-03-27 14:57:16', '2025-12-17 19:47:44', '6AXMZBY4', '3626844'), + (512, 719, 'maybe', '2021-04-08 10:03:26', '2025-12-17 19:47:44', '6AXMZBY4', '3635405'), + (512, 724, 'attending', '2021-05-09 03:54:29', '2025-12-17 19:47:46', '6AXMZBY4', '3661369'), + (512, 725, 'attending', '2021-05-23 01:02:28', '2025-12-17 19:47:47', '6AXMZBY4', '3661372'), + (512, 728, 'maybe', '2021-04-05 11:21:37', '2025-12-17 19:47:44', '6AXMZBY4', '3668073'), + (512, 729, 'maybe', '2021-04-05 11:22:46', '2025-12-17 19:47:46', '6AXMZBY4', '3668075'), + (512, 730, 'maybe', '2021-04-05 11:22:53', '2025-12-17 19:47:46', '6AXMZBY4', '3668076'), + (512, 731, 'maybe', '2021-04-05 11:20:47', '2025-12-17 19:47:44', '6AXMZBY4', '3674262'), + (512, 732, 'maybe', '2021-04-05 11:22:32', '2025-12-17 19:47:45', '6AXMZBY4', '3674268'), + (512, 734, 'maybe', '2021-04-04 20:35:10', '2025-12-17 19:47:44', '6AXMZBY4', '3676806'), + (512, 735, 'maybe', '2021-04-05 09:58:03', '2025-12-17 19:47:46', '6AXMZBY4', '3677402'), + (512, 736, 'maybe', '2021-04-08 10:03:57', '2025-12-17 19:47:44', '6AXMZBY4', '3677701'), + (512, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXMZBY4', '3730212'), + (512, 777, 'attending', '2021-04-29 10:18:35', '2025-12-17 19:47:46', '6AXMZBY4', '3746248'), + (512, 779, 'maybe', '2021-05-03 10:06:41', '2025-12-17 19:47:46', '6AXMZBY4', '3757118'), + (512, 790, 'not_attending', '2021-05-08 09:00:37', '2025-12-17 19:47:46', '6AXMZBY4', '3789923'), + (512, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXMZBY4', '3793156'), + (512, 800, 'not_attending', '2021-05-12 15:36:17', '2025-12-17 19:47:46', '6AXMZBY4', '3800908'), + (512, 805, 'attending', '2021-06-07 09:52:44', '2025-12-17 19:47:47', '6AXMZBY4', '3804777'), + (512, 816, 'maybe', '2021-05-19 00:31:01', '2025-12-17 19:47:46', '6AXMZBY4', '3826524'), + (512, 823, 'maybe', '2021-06-05 06:07:15', '2025-12-17 19:47:48', '6AXMZBY4', '3974109'), + (512, 826, 'maybe', '2021-06-05 06:06:55', '2025-12-17 19:47:48', '6AXMZBY4', '3975310'), + (512, 827, 'attending', '2021-06-05 06:05:34', '2025-12-17 19:47:47', '6AXMZBY4', '3975311'), + (512, 828, 'attending', '2021-06-07 09:52:40', '2025-12-17 19:47:47', '6AXMZBY4', '3975312'), + (512, 834, 'maybe', '2021-06-07 09:52:29', '2025-12-17 19:47:47', '6AXMZBY4', '3990439'), + (512, 837, 'maybe', '2021-06-07 09:53:01', '2025-12-17 19:47:48', '6AXMZBY4', '3992545'), + (512, 838, 'maybe', '2021-06-07 09:52:17', '2025-12-17 19:47:47', '6AXMZBY4', '3994992'), + (512, 844, 'maybe', '2021-06-22 10:48:44', '2025-12-17 19:47:38', '6AXMZBY4', '4014338'), + (512, 866, 'maybe', '2021-06-16 14:43:48', '2025-12-17 19:47:38', '6AXMZBY4', '4020424'), + (512, 867, 'attending', '2021-06-22 10:48:54', '2025-12-17 19:47:38', '6AXMZBY4', '4021848'), + (512, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXMZBY4', '4136744'), + (512, 870, 'attending', '2021-06-30 09:52:54', '2025-12-17 19:47:39', '6AXMZBY4', '4136937'), + (512, 871, 'attending', '2021-07-10 12:35:13', '2025-12-17 19:47:39', '6AXMZBY4', '4136938'), + (512, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXMZBY4', '4136947'), + (512, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXMZBY4', '4210314'), + (512, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXMZBY4', '4225444'), + (512, 890, 'not_attending', '2021-06-27 08:52:56', '2025-12-17 19:47:38', '6AXMZBY4', '4228666'), + (512, 897, 'not_attending', '2021-06-27 23:26:06', '2025-12-17 19:47:38', '6AXMZBY4', '4232132'), + (512, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXMZBY4', '4239259'), + (512, 900, 'attending', '2021-07-22 23:54:25', '2025-12-17 19:47:40', '6AXMZBY4', '4240316'), + (512, 901, 'maybe', '2021-07-31 18:21:05', '2025-12-17 19:47:40', '6AXMZBY4', '4240317'), + (512, 902, 'attending', '2021-08-07 11:16:37', '2025-12-17 19:47:41', '6AXMZBY4', '4240318'), + (512, 903, 'attending', '2021-08-14 18:22:42', '2025-12-17 19:47:42', '6AXMZBY4', '4240320'), + (512, 904, 'attending', '2021-07-12 23:07:05', '2025-12-17 19:47:39', '6AXMZBY4', '4241594'), + (512, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXMZBY4', '4250163'), + (512, 918, 'attending', '2021-07-12 23:07:02', '2025-12-17 19:47:39', '6AXMZBY4', '4274486'), + (512, 919, 'attending', '2021-07-14 09:51:25', '2025-12-17 19:47:39', '6AXMZBY4', '4275957'), + (512, 920, 'attending', '2021-07-16 13:14:55', '2025-12-17 19:47:40', '6AXMZBY4', '4277819'), + (512, 926, 'maybe', '2021-08-14 18:22:19', '2025-12-17 19:47:42', '6AXMZBY4', '4297211'), + (512, 927, 'maybe', '2021-07-29 07:04:17', '2025-12-17 19:47:40', '6AXMZBY4', '4297216'), + (512, 932, 'maybe', '2021-08-02 00:41:38', '2025-12-17 19:47:42', '6AXMZBY4', '4301664'), + (512, 933, 'attending', '2021-07-27 10:07:56', '2025-12-17 19:47:40', '6AXMZBY4', '4301723'), + (512, 934, 'maybe', '2021-08-02 00:41:23', '2025-12-17 19:47:40', '6AXMZBY4', '4302093'), + (512, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXMZBY4', '4304151'), + (512, 940, 'not_attending', '2021-07-27 06:54:31', '2025-12-17 19:47:40', '6AXMZBY4', '4309049'), + (512, 961, 'maybe', '2021-08-08 10:02:47', '2025-12-17 19:47:42', '6AXMZBY4', '4345519'), + (512, 962, 'attending', '2021-08-08 23:59:01', '2025-12-17 19:47:41', '6AXMZBY4', '4346305'), + (512, 971, 'not_attending', '2021-09-08 11:07:18', '2025-12-17 19:47:43', '6AXMZBY4', '4356801'), + (512, 972, 'maybe', '2021-08-14 18:21:53', '2025-12-17 19:47:42', '6AXMZBY4', '4358025'), + (512, 973, 'attending', '2021-08-16 01:01:32', '2025-12-17 19:47:42', '6AXMZBY4', '4366186'), + (512, 974, 'attending', '2021-08-28 22:42:02', '2025-12-17 19:47:42', '6AXMZBY4', '4366187'), + (512, 987, 'maybe', '2021-08-28 00:07:10', '2025-12-17 19:47:43', '6AXMZBY4', '4402634'), + (512, 988, 'not_attending', '2021-08-24 05:42:59', '2025-12-17 19:47:42', '6AXMZBY4', '4402823'), + (512, 990, 'attending', '2021-09-02 10:05:16', '2025-12-17 19:47:43', '6AXMZBY4', '4420735'), + (512, 991, 'attending', '2021-09-11 22:34:24', '2025-12-17 19:47:43', '6AXMZBY4', '4420738'), + (512, 992, 'not_attending', '2021-09-18 21:39:43', '2025-12-17 19:47:34', '6AXMZBY4', '4420739'), + (512, 993, 'attending', '2021-09-25 18:24:09', '2025-12-17 19:47:34', '6AXMZBY4', '4420741'), + (512, 994, 'attending', '2021-10-02 04:33:01', '2025-12-17 19:47:34', '6AXMZBY4', '4420742'), + (512, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXMZBY4', '4420744'), + (512, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXMZBY4', '4420747'), + (512, 997, 'attending', '2021-10-23 12:53:52', '2025-12-17 19:47:35', '6AXMZBY4', '4420748'), + (512, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXMZBY4', '4420749'), + (512, 999, 'not_attending', '2021-08-31 15:57:46', '2025-12-17 19:47:43', '6AXMZBY4', '4421150'), + (512, 1000, 'attending', '2021-08-29 23:02:26', '2025-12-17 19:47:43', '6AXMZBY4', '4424456'), + (512, 1023, 'not_attending', '2021-09-10 15:02:09', '2025-12-17 19:47:43', '6AXMZBY4', '4461883'), + (512, 1064, 'not_attending', '2021-09-21 15:31:04', '2025-12-17 19:47:34', '6AXMZBY4', '4499526'), + (512, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXMZBY4', '4508342'), + (512, 1074, 'maybe', '2021-09-29 01:31:01', '2025-12-17 19:47:34', '6AXMZBY4', '4528953'), + (512, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXMZBY4', '4568602'), + (512, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AXMZBY4', '4572153'), + (512, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AXMZBY4', '4585962'), + (512, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '6AXMZBY4', '4596356'), + (512, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AXMZBY4', '4598860'), + (512, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AXMZBY4', '4598861'), + (512, 1099, 'attending', '2021-10-31 08:45:30', '2025-12-17 19:47:36', '6AXMZBY4', '4602797'), + (512, 1114, 'not_attending', '2021-11-13 10:58:58', '2025-12-17 19:47:36', '6AXMZBY4', '4637896'), + (512, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AXMZBY4', '4642994'), + (512, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AXMZBY4', '4642995'), + (512, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AXMZBY4', '4642996'), + (512, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AXMZBY4', '4642997'), + (512, 1126, 'attending', '2021-12-08 11:13:30', '2025-12-17 19:47:38', '6AXMZBY4', '4645687'), + (512, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '6AXMZBY4', '4645698'), + (512, 1128, 'not_attending', '2021-11-21 00:13:03', '2025-12-17 19:47:37', '6AXMZBY4', '4645704'), + (512, 1129, 'attending', '2021-11-25 10:48:36', '2025-12-17 19:47:37', '6AXMZBY4', '4645705'), + (512, 1130, 'attending', '2021-12-04 21:00:18', '2025-12-17 19:47:37', '6AXMZBY4', '4658824'), + (512, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '6AXMZBY4', '4668385'), + (512, 1143, 'maybe', '2021-12-02 00:23:30', '2025-12-17 19:47:37', '6AXMZBY4', '4683667'), + (512, 1149, 'not_attending', '2021-12-08 11:13:12', '2025-12-17 19:47:38', '6AXMZBY4', '4694407'), + (512, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '6AXMZBY4', '4736497'), + (512, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '6AXMZBY4', '4736499'), + (512, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '6AXMZBY4', '4736500'), + (512, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '6AXMZBY4', '4736503'), + (512, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '6AXMZBY4', '4736504'), + (512, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '6AXMZBY4', '4746789'), + (512, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '6AXMZBY4', '4753929'), + (512, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '6AXMZBY4', '5038850'), + (512, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '6AXMZBY4', '5045826'), + (512, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '6AXMZBY4', '5132533'), + (512, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '6AXMZBY4', '5186582'), + (512, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '6AXMZBY4', '5186583'), + (512, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '6AXMZBY4', '5186585'), + (512, 1281, 'attending', '2022-04-07 14:31:16', '2025-12-17 19:47:27', '6AXMZBY4', '5190437'), + (512, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '6AXMZBY4', '5195095'), + (512, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '6AXMZBY4', '5215989'), + (512, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '6AXMZBY4', '5223686'), + (512, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '6AXMZBY4', '5227432'), + (512, 1319, 'attending', '2022-04-24 21:42:42', '2025-12-17 19:47:27', '6AXMZBY4', '5238353'), + (512, 1320, 'not_attending', '2022-04-24 23:09:43', '2025-12-17 19:47:27', '6AXMZBY4', '5238354'), + (512, 1337, 'maybe', '2022-04-19 22:58:30', '2025-12-17 19:47:27', '6AXMZBY4', '5245036'), + (512, 1346, 'attending', '2022-04-23 21:26:49', '2025-12-17 19:47:27', '6AXMZBY4', '5247467'), + (512, 1354, 'not_attending', '2022-04-23 21:25:40', '2025-12-17 19:47:27', '6AXMZBY4', '5252569'), + (512, 1362, 'attending', '2022-04-30 22:02:01', '2025-12-17 19:47:28', '6AXMZBY4', '5260800'), + (512, 1370, 'not_attending', '2022-04-29 21:41:14', '2025-12-17 19:47:28', '6AXMZBY4', '5263775'), + (512, 1374, 'attending', '2022-05-04 08:48:47', '2025-12-17 19:47:28', '6AXMZBY4', '5269930'), + (512, 1378, 'attending', '2022-05-10 08:57:06', '2025-12-17 19:47:28', '6AXMZBY4', '5271448'), + (512, 1379, 'attending', '2022-05-19 22:39:09', '2025-12-17 19:47:29', '6AXMZBY4', '5271449'), + (512, 1381, 'attending', '2022-05-02 02:31:07', '2025-12-17 19:47:28', '6AXMZBY4', '5271453'), + (512, 1383, 'maybe', '2022-05-04 08:48:03', '2025-12-17 19:47:28', '6AXMZBY4', '5276469'), + (512, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '6AXMZBY4', '5278159'), + (512, 1387, 'maybe', '2022-05-06 09:08:23', '2025-12-17 19:47:28', '6AXMZBY4', '5278173'), + (512, 1392, 'not_attending', '2022-05-10 21:55:49', '2025-12-17 19:47:28', '6AXMZBY4', '5279532'), + (512, 1407, 'attending', '2022-06-04 14:30:03', '2025-12-17 19:47:30', '6AXMZBY4', '5363695'), + (512, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '6AXMZBY4', '5365960'), + (512, 1415, 'maybe', '2022-06-01 19:21:32', '2025-12-17 19:47:30', '6AXMZBY4', '5368973'), + (512, 1419, 'maybe', '2022-06-08 08:53:13', '2025-12-17 19:47:30', '6AXMZBY4', '5373081'), + (512, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '6AXMZBY4', '5378247'), + (512, 1431, 'attending', '2022-06-09 08:50:46', '2025-12-17 19:47:30', '6AXMZBY4', '5389605'), + (512, 1442, 'attending', '2022-06-15 09:13:21', '2025-12-17 19:47:17', '6AXMZBY4', '5397265'), + (512, 1451, 'maybe', '2022-06-10 02:59:50', '2025-12-17 19:47:17', '6AXMZBY4', '5403967'), + (512, 1455, 'maybe', '2022-06-10 02:59:37', '2025-12-17 19:47:31', '6AXMZBY4', '5404772'), + (512, 1458, 'not_attending', '2022-06-14 08:12:45', '2025-12-17 19:47:17', '6AXMZBY4', '5404786'), + (512, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '6AXMZBY4', '5405203'), + (512, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '6AXMZBY4', '5411699'), + (512, 1481, 'attending', '2022-06-18 22:18:32', '2025-12-17 19:47:17', '6AXMZBY4', '5412237'), + (512, 1482, 'not_attending', '2022-06-25 18:36:36', '2025-12-17 19:47:19', '6AXMZBY4', '5412550'), + (512, 1483, 'maybe', '2022-06-23 10:31:11', '2025-12-17 19:47:17', '6AXMZBY4', '5414556'), + (512, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '6AXMZBY4', '5415046'), + (512, 1490, 'attending', '2022-07-01 23:12:19', '2025-12-17 19:47:19', '6AXMZBY4', '5420156'), + (512, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '6AXMZBY4', '5422086'), + (512, 1498, 'attending', '2022-06-28 08:50:56', '2025-12-17 19:47:19', '6AXMZBY4', '5422406'), + (512, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '6AXMZBY4', '5424565'), + (512, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '6AXMZBY4', '5426882'), + (512, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '6AXMZBY4', '5427083'), + (512, 1511, 'attending', '2022-07-07 01:50:28', '2025-12-17 19:47:19', '6AXMZBY4', '5437733'), + (512, 1513, 'attending', '2022-07-14 10:27:53', '2025-12-17 19:47:19', '6AXMZBY4', '5441125'), + (512, 1514, 'attending', '2022-07-14 10:27:48', '2025-12-17 19:47:20', '6AXMZBY4', '5441126'), + (512, 1515, 'attending', '2022-08-05 08:55:20', '2025-12-17 19:47:21', '6AXMZBY4', '5441128'), + (512, 1516, 'not_attending', '2022-08-19 03:17:41', '2025-12-17 19:47:23', '6AXMZBY4', '5441129'), + (512, 1517, 'attending', '2022-08-22 10:14:55', '2025-12-17 19:47:23', '6AXMZBY4', '5441130'), + (512, 1518, 'attending', '2022-08-22 10:14:52', '2025-12-17 19:47:24', '6AXMZBY4', '5441131'), + (512, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '6AXMZBY4', '5441132'), + (512, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '6AXMZBY4', '5446643'), + (512, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '6AXMZBY4', '5453325'), + (512, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '6AXMZBY4', '5454516'), + (512, 1544, 'attending', '2022-09-15 08:03:22', '2025-12-17 19:47:11', '6AXMZBY4', '5454517'), + (512, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '6AXMZBY4', '5454605'), + (512, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '6AXMZBY4', '5455037'), + (512, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '6AXMZBY4', '5461278'), + (512, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '6AXMZBY4', '5469480'), + (512, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '6AXMZBY4', '5471073'), + (512, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '6AXMZBY4', '5474663'), + (512, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '6AXMZBY4', '5482022'), + (512, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '6AXMZBY4', '5482793'), + (512, 1578, 'attending', '2022-08-02 03:17:53', '2025-12-17 19:47:21', '6AXMZBY4', '5483073'), + (512, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '6AXMZBY4', '5488912'), + (512, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '6AXMZBY4', '5492192'), + (512, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '6AXMZBY4', '5493139'), + (512, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '6AXMZBY4', '5493200'), + (512, 1600, 'maybe', '2022-08-22 10:14:37', '2025-12-17 19:47:24', '6AXMZBY4', '5496569'), + (512, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '6AXMZBY4', '5502188'), + (512, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '6AXMZBY4', '5505059'), + (512, 1609, 'not_attending', '2022-08-22 10:14:23', '2025-12-17 19:47:23', '6AXMZBY4', '5506590'), + (512, 1610, 'maybe', '2022-08-22 10:13:49', '2025-12-17 19:47:23', '6AXMZBY4', '5506595'), + (512, 1615, 'maybe', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '6AXMZBY4', '5509055'), + (512, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '6AXMZBY4', '5512862'), + (512, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '6AXMZBY4', '5513985'), + (512, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '6AXMZBY4', '5519981'), + (512, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '6AXMZBY4', '5522550'), + (512, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '6AXMZBY4', '5534683'), + (512, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '6AXMZBY4', '5537735'), + (512, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '6AXMZBY4', '5540859'), + (512, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '6AXMZBY4', '5546619'), + (512, 1647, 'maybe', '2022-09-15 08:03:30', '2025-12-17 19:47:11', '6AXMZBY4', '5548660'), + (512, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '6AXMZBY4', '5555245'), + (512, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '6AXMZBY4', '5557747'), + (512, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '6AXMZBY4', '5560255'), + (512, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '6AXMZBY4', '5562906'), + (512, 1667, 'attending', '2022-09-24 08:54:23', '2025-12-17 19:47:11', '6AXMZBY4', '5563221'), + (512, 1668, 'attending', '2022-10-01 17:39:23', '2025-12-17 19:47:12', '6AXMZBY4', '5563222'), + (512, 1673, 'attending', '2022-09-20 08:55:41', '2025-12-17 19:47:11', '6AXMZBY4', '5592454'), + (512, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '6AXMZBY4', '5600604'), + (512, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '6AXMZBY4', '5605544'), + (512, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '6AXMZBY4', '5606737'), + (512, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', '6AXMZBY4', '5630907'), + (512, 1719, 'attending', '2022-10-05 22:42:07', '2025-12-17 19:47:12', '6AXMZBY4', '5630958'), + (512, 1720, 'attending', '2022-10-12 14:31:21', '2025-12-17 19:47:12', '6AXMZBY4', '5630959'), + (512, 1721, 'not_attending', '2022-10-21 03:01:26', '2025-12-17 19:47:13', '6AXMZBY4', '5630960'), + (512, 1722, 'not_attending', '2022-10-24 09:04:28', '2025-12-17 19:47:14', '6AXMZBY4', '5630961'), + (512, 1723, 'attending', '2022-10-30 16:30:59', '2025-12-17 19:47:15', '6AXMZBY4', '5630962'), + (512, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '6AXMZBY4', '5630966'), + (512, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '6AXMZBY4', '5630967'), + (512, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '6AXMZBY4', '5630968'), + (512, 1727, 'maybe', '2022-12-02 02:42:07', '2025-12-17 19:47:16', '6AXMZBY4', '5630969'), + (512, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '6AXMZBY4', '5635406'), + (512, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '6AXMZBY4', '5638765'), + (512, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '6AXMZBY4', '5640097'), + (512, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '6AXMZBY4', '5640843'), + (512, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '6AXMZBY4', '5641521'), + (512, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '6AXMZBY4', '5642818'), + (512, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '6AXMZBY4', '5652395'), + (512, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '6AXMZBY4', '5670445'), + (512, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '6AXMZBY4', '5671637'), + (512, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '6AXMZBY4', '5672329'), + (512, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '6AXMZBY4', '5674057'), + (512, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '6AXMZBY4', '5674060'), + (512, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '6AXMZBY4', '5677461'), + (512, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '6AXMZBY4', '5698046'), + (512, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '6AXMZBY4', '5699760'), + (512, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '6AXMZBY4', '5741601'), + (512, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '6AXMZBY4', '5763458'), + (512, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '6AXMZBY4', '5774172'), + (512, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '6AXMZBY4', '5818247'), + (512, 1834, 'not_attending', '2022-12-07 11:10:50', '2025-12-17 19:47:17', '6AXMZBY4', '5819470'), + (512, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '6AXMZBY4', '5819471'), + (512, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '6AXMZBY4', '5827739'), + (512, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '6AXMZBY4', '5844306'), + (512, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '6AXMZBY4', '5850159'), + (512, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '6AXMZBY4', '5858999'), + (512, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '6AXMZBY4', '5871984'), + (512, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '6AXMZBY4', '5876354'), + (512, 1864, 'attending', '2023-01-21 19:56:37', '2025-12-17 19:47:05', '6AXMZBY4', '5879675'), + (512, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '6AXMZBY4', '5880939'), + (512, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '6AXMZBY4', '5880940'), + (512, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '6AXMZBY4', '5880942'), + (512, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '6AXMZBY4', '5880943'), + (512, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '6AXMZBY4', '5887890'), + (512, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '6AXMZBY4', '5888598'), + (512, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '6AXMZBY4', '5893260'), + (512, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '6AXMZBY4', '5899826'), + (512, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '6AXMZBY4', '5900199'), + (512, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '6AXMZBY4', '5900200'), + (512, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '6AXMZBY4', '5900202'), + (512, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '6AXMZBY4', '5900203'), + (512, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '6AXMZBY4', '5901108'), + (512, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '6AXMZBY4', '5901126'), + (512, 1897, 'not_attending', '2023-02-05 14:37:08', '2025-12-17 19:47:07', '6AXMZBY4', '5901128'), + (512, 1902, 'attending', '2023-02-01 19:48:44', '2025-12-17 19:47:06', '6AXMZBY4', '5902254'), + (512, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '6AXMZBY4', '5909655'), + (512, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '6AXMZBY4', '5910522'), + (512, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '6AXMZBY4', '5910526'), + (512, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '6AXMZBY4', '5910528'), + (512, 1922, 'maybe', '2023-02-16 23:45:17', '2025-12-17 19:47:07', '6AXMZBY4', '5916219'), + (512, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '6AXMZBY4', '5936234'), + (512, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '6AXMZBY4', '5958351'), + (512, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '6AXMZBY4', '5959751'), + (512, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '6AXMZBY4', '5959755'), + (512, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '6AXMZBY4', '5960055'), + (512, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '6AXMZBY4', '5961684'), + (512, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '6AXMZBY4', '5962132'), + (512, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '6AXMZBY4', '5962133'), + (512, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '6AXMZBY4', '5962134'), + (512, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '6AXMZBY4', '5962317'), + (512, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '6AXMZBY4', '5962318'), + (512, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '6AXMZBY4', '5965933'), + (512, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '6AXMZBY4', '5967014'), + (512, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '6AXMZBY4', '5972815'), + (512, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '6AXMZBY4', '5974016'), + (512, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '6AXMZBY4', '5975052'), + (512, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '6AXMZBY4', '5975054'), + (512, 1964, 'attending', '2023-03-08 23:51:20', '2025-12-17 19:47:09', '6AXMZBY4', '5977129'), + (512, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '6AXMZBY4', '5981515'), + (512, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '6AXMZBY4', '5993516'), + (512, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '6AXMZBY4', '5998939'), + (512, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '6AXMZBY4', '6028191'), + (512, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '6AXMZBY4', '6040066'), + (512, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '6AXMZBY4', '6042717'), + (512, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '6AXMZBY4', '6044838'), + (512, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '6AXMZBY4', '6044839'), + (512, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '6AXMZBY4', '6045684'), + (512, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '6AXMZBY4', '6050104'), + (512, 2002, 'attending', '2023-04-28 21:15:08', '2025-12-17 19:47:01', '6AXMZBY4', '6052605'), + (512, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '6AXMZBY4', '6053195'), + (512, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '6AXMZBY4', '6053198'), + (512, 2008, 'attending', '2023-04-07 21:52:31', '2025-12-17 19:46:58', '6AXMZBY4', '6055808'), + (512, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '6AXMZBY4', '6056085'), + (512, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '6AXMZBY4', '6056916'), + (512, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '6AXMZBY4', '6059290'), + (512, 2013, 'maybe', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '6AXMZBY4', '6060328'), + (512, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '6AXMZBY4', '6061037'), + (512, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '6AXMZBY4', '6061039'), + (512, 2019, 'attending', '2023-04-15 19:52:01', '2025-12-17 19:47:00', '6AXMZBY4', '6062934'), + (512, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', '6AXMZBY4', '6065813'), + (512, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '6AXMZBY4', '6067245'), + (512, 2027, 'maybe', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '6AXMZBY4', '6068094'), + (512, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '6AXMZBY4', '6068252'), + (512, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '6AXMZBY4', '6068253'), + (512, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '6AXMZBY4', '6068254'), + (512, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '6AXMZBY4', '6068280'), + (512, 2032, 'not_attending', '2023-06-02 21:10:25', '2025-12-17 19:47:04', '6AXMZBY4', '6068281'), + (512, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '6AXMZBY4', '6069093'), + (512, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '6AXMZBY4', '6072528'), + (512, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '6AXMZBY4', '6075556'), + (512, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '6AXMZBY4', '6079840'), + (512, 2050, 'maybe', '2023-05-08 20:07:13', '2025-12-17 19:47:02', '6AXMZBY4', '6080489'), + (512, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '6AXMZBY4', '6083398'), + (512, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '6AXMZBY4', '6093504'), + (512, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '6AXMZBY4', '6097414'), + (512, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '6AXMZBY4', '6097442'), + (512, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '6AXMZBY4', '6097684'), + (512, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '6AXMZBY4', '6098762'), + (512, 2064, 'maybe', '2023-06-22 01:04:01', '2025-12-17 19:46:50', '6AXMZBY4', '6099988'), + (512, 2065, 'attending', '2023-06-17 18:06:08', '2025-12-17 19:46:49', '6AXMZBY4', '6101169'), + (512, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '6AXMZBY4', '6101361'), + (512, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '6AXMZBY4', '6101362'), + (512, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '6AXMZBY4', '6107314'), + (512, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '6AXMZBY4', '6120034'), + (512, 2090, 'attending', '2023-06-02 20:09:36', '2025-12-17 19:47:04', '6AXMZBY4', '6127961'), + (512, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '6AXMZBY4', '6136733'), + (512, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '6AXMZBY4', '6137989'), + (512, 2104, 'maybe', '2023-06-22 01:03:54', '2025-12-17 19:46:50', '6AXMZBY4', '6149499'), + (512, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '6AXMZBY4', '6150864'), + (512, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '6AXMZBY4', '6155491'), + (512, 2116, 'attending', '2023-07-07 22:23:13', '2025-12-17 19:46:51', '6AXMZBY4', '6163389'), + (512, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '6AXMZBY4', '6164417'), + (512, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '6AXMZBY4', '6166388'), + (512, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '6AXMZBY4', '6176439'), + (512, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '6AXMZBY4', '6182410'), + (512, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '6AXMZBY4', '6185812'), + (512, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '6AXMZBY4', '6187651'), + (512, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '6AXMZBY4', '6187963'), + (512, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '6AXMZBY4', '6187964'), + (512, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '6AXMZBY4', '6187966'), + (512, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '6AXMZBY4', '6187967'), + (512, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '6AXMZBY4', '6187969'), + (512, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '6AXMZBY4', '6334878'), + (512, 2148, 'maybe', '2023-07-24 21:33:18', '2025-12-17 19:46:53', '6AXMZBY4', '6335667'), + (512, 2152, 'attending', '2023-07-14 20:30:43', '2025-12-17 19:46:52', '6AXMZBY4', '6337021'), + (512, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '6AXMZBY4', '6337236'), + (512, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '6AXMZBY4', '6337970'), + (512, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '6AXMZBY4', '6338308'), + (512, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', '6AXMZBY4', '6338342'), + (512, 2159, 'attending', '2023-07-17 18:51:25', '2025-12-17 19:46:53', '6AXMZBY4', '6338355'), + (512, 2160, 'attending', '2023-07-26 14:53:50', '2025-12-17 19:46:54', '6AXMZBY4', '6338358'), + (512, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '6AXMZBY4', '6341710'), + (512, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '6AXMZBY4', '6342044'), + (512, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '6AXMZBY4', '6342298'), + (512, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '6AXMZBY4', '6343294'), + (512, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '6AXMZBY4', '6347034'), + (512, 2177, 'attending', '2023-08-12 20:09:20', '2025-12-17 19:46:55', '6AXMZBY4', '6347053'), + (512, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '6AXMZBY4', '6347056'), + (512, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '6AXMZBY4', '6353830'), + (512, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '6AXMZBY4', '6353831'), + (512, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '6AXMZBY4', '6357867'), + (512, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '6AXMZBY4', '6358652'), + (512, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '6AXMZBY4', '6358668'), + (512, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '6AXMZBY4', '6358669'), + (512, 2196, 'maybe', '2023-09-08 17:55:41', '2025-12-17 19:46:56', '6AXMZBY4', '6359398'), + (512, 2197, 'maybe', '2023-09-15 19:09:29', '2025-12-17 19:46:44', '6AXMZBY4', '6359399'), + (512, 2204, 'maybe', '2023-08-16 03:36:40', '2025-12-17 19:46:55', '6AXMZBY4', '6361542'), + (512, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '6AXMZBY4', '6361709'), + (512, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '6AXMZBY4', '6361710'), + (512, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '6AXMZBY4', '6361711'), + (512, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '6AXMZBY4', '6361712'), + (512, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '6AXMZBY4', '6361713'), + (512, 2213, 'maybe', '2023-08-15 20:17:01', '2025-12-17 19:46:55', '6AXMZBY4', '6362935'), + (512, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '6AXMZBY4', '6382573'), + (512, 2239, 'attending', '2023-08-31 17:59:21', '2025-12-17 19:46:56', '6AXMZBY4', '6387592'), + (512, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '6AXMZBY4', '6388604'), + (512, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '6AXMZBY4', '6394629'), + (512, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '6AXMZBY4', '6394631'), + (512, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '6AXMZBY4', '6440863'), + (512, 2272, 'maybe', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '6AXMZBY4', '6445440'), + (512, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '6AXMZBY4', '6453951'), + (512, 2286, 'maybe', '2023-12-01 23:02:07', '2025-12-17 19:46:48', '6AXMZBY4', '6460930'), + (512, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '6AXMZBY4', '6461696'), + (512, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '6AXMZBY4', '6462129'), + (512, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '6AXMZBY4', '6463218'), + (512, 2299, 'attending', '2023-10-19 18:08:12', '2025-12-17 19:46:46', '6AXMZBY4', '6472181'), + (512, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '6AXMZBY4', '6482693'), + (512, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '6AXMZBY4', '6484200'), + (512, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '6AXMZBY4', '6484680'), + (512, 2310, 'maybe', '2023-11-10 00:06:20', '2025-12-17 19:46:47', '6AXMZBY4', '6487709'), + (512, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '6AXMZBY4', '6507741'), + (512, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '6AXMZBY4', '6514659'), + (512, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '6AXMZBY4', '6514660'), + (512, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '6AXMZBY4', '6519103'), + (512, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '6AXMZBY4', '6535681'), + (512, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '6AXMZBY4', '6584747'), + (512, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '6AXMZBY4', '6587097'), + (512, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '6AXMZBY4', '6609022'), + (512, 2364, 'maybe', '2023-12-08 23:54:36', '2025-12-17 19:46:49', '6AXMZBY4', '6613011'), + (512, 2371, 'attending', '2023-12-15 21:27:49', '2025-12-17 19:46:36', '6AXMZBY4', '6624495'), + (512, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '6AXMZBY4', '6632757'), + (512, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '6AXMZBY4', '6644187'), + (512, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '6AXMZBY4', '6648951'), + (512, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '6AXMZBY4', '6648952'), + (512, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '6AXMZBY4', '6655401'), + (512, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '6AXMZBY4', '6661585'), + (512, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '6AXMZBY4', '6661588'), + (512, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '6AXMZBY4', '6661589'), + (512, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '6AXMZBY4', '6699906'), + (512, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '6AXMZBY4', '6699913'), + (512, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '6AXMZBY4', '6701109'), + (512, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '6AXMZBY4', '6704561'), + (512, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '6AXMZBY4', '6705219'), + (512, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '6AXMZBY4', '6708410'), + (512, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '6AXMZBY4', '6710153'), + (512, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '6AXMZBY4', '6711552'), + (512, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '6AXMZBY4', '6711553'), + (512, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '6AXMZBY4', '6722688'), + (512, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '6AXMZBY4', '6730620'), + (512, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '6AXMZBY4', '6730642'), + (512, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '6AXMZBY4', '6740364'), + (512, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '6AXMZBY4', '6743829'), + (512, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '6AXMZBY4', '7030380'), + (512, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '6AXMZBY4', '7033677'), + (512, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '6AXMZBY4', '7035415'), + (512, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '6AXMZBY4', '7044715'), + (512, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '6AXMZBY4', '7050318'), + (512, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '6AXMZBY4', '7050319'), + (512, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '6AXMZBY4', '7050322'), + (512, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '6AXMZBY4', '7057804'), + (512, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '6AXMZBY4', '7072824'), + (512, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '6AXMZBY4', '7074348'), + (512, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '6AXMZBY4', '7089267'), + (512, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '6AXMZBY4', '7098747'), + (512, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '6AXMZBY4', '7113468'), + (512, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '6AXMZBY4', '7114856'), + (512, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '6AXMZBY4', '7114951'), + (512, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '6AXMZBY4', '7114955'), + (512, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '6AXMZBY4', '7114956'), + (512, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '6AXMZBY4', '7114957'), + (512, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '6AXMZBY4', '7153615'), + (512, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '6AXMZBY4', '7159484'), + (512, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '6AXMZBY4', '7178446'), + (512, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '6AXMZBY4', '7220467'), + (512, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '6AXMZBY4', '7240354'), + (512, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '6AXMZBY4', '7251633'), + (512, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '6AXMZBY4', '7302674'), + (513, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'm7OVvxMm', '6361709'), + (513, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'm7OVvxMm', '6361710'), + (513, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'm7OVvxMm', '6361711'), + (513, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'm7OVvxMm', '6361712'), + (513, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm7OVvxMm', '6361713'), + (513, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'm7OVvxMm', '6382573'), + (513, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'm7OVvxMm', '6388604'), + (513, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm7OVvxMm', '6394629'), + (513, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm7OVvxMm', '6394631'), + (513, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'm7OVvxMm', '6431478'), + (514, 249, 'attending', '2020-11-17 23:26:09', '2025-12-17 19:47:54', '8mRVk07m', '3149480'), + (514, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRVk07m', '6045684'), + (515, 247, 'attending', '2020-12-30 00:40:42', '2025-12-17 19:47:48', 'ndaRleZm', '3149478'), + (515, 517, 'not_attending', '2021-01-08 00:10:38', '2025-12-17 19:47:48', 'ndaRleZm', '3337137'), + (515, 518, 'attending', '2021-01-03 04:09:52', '2025-12-17 19:47:48', 'ndaRleZm', '3337138'), + (515, 521, 'not_attending', '2021-01-01 12:46:31', '2025-12-17 19:47:48', 'ndaRleZm', '3337454'), + (515, 526, 'attending', '2020-12-28 21:24:24', '2025-12-17 19:47:48', 'ndaRleZm', '3351539'), + (515, 529, 'not_attending', '2021-01-05 19:47:35', '2025-12-17 19:47:48', 'ndaRleZm', '3364568'), + (515, 532, 'attending', '2021-01-03 23:29:39', '2025-12-17 19:47:48', 'ndaRleZm', '3381412'), + (515, 534, 'attending', '2021-01-05 13:57:36', '2025-12-17 19:47:48', 'ndaRleZm', '3384157'), + (515, 535, 'not_attending', '2021-01-09 19:45:42', '2025-12-17 19:47:48', 'ndaRleZm', '3384729'), + (515, 536, 'attending', '2021-01-07 23:34:12', '2025-12-17 19:47:48', 'ndaRleZm', '3386848'), + (515, 540, 'attending', '2021-01-10 20:04:56', '2025-12-17 19:47:48', 'ndaRleZm', '3389527'), + (515, 543, 'not_attending', '2021-01-16 00:28:20', '2025-12-17 19:47:48', 'ndaRleZm', '3396499'), + (515, 548, 'not_attending', '2021-01-16 22:34:20', '2025-12-17 19:47:48', 'ndaRleZm', '3403650'), + (515, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaRleZm', '3406988'), + (515, 555, 'attending', '2021-01-19 15:48:02', '2025-12-17 19:47:49', 'ndaRleZm', '3416576'), + (515, 557, 'not_attending', '2021-01-21 00:46:39', '2025-12-17 19:47:49', 'ndaRleZm', '3418748'), + (515, 558, 'attending', '2021-01-19 15:47:57', '2025-12-17 19:47:49', 'ndaRleZm', '3418925'), + (515, 568, 'attending', '2021-01-29 22:01:44', '2025-12-17 19:47:50', 'ndaRleZm', '3430267'), + (515, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'ndaRleZm', '3432673'), + (515, 570, 'maybe', '2021-02-05 06:37:56', '2025-12-17 19:47:50', 'ndaRleZm', '3435538'), + (515, 593, 'attending', '2021-02-28 04:52:14', '2025-12-17 19:47:50', 'ndaRleZm', '3467758'), + (515, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'ndaRleZm', '3468125'), + (515, 602, 'maybe', '2021-02-10 22:45:01', '2025-12-17 19:47:50', 'ndaRleZm', '3470303'), + (515, 603, 'not_attending', '2021-02-19 20:08:22', '2025-12-17 19:47:50', 'ndaRleZm', '3470304'), + (515, 604, 'attending', '2021-02-19 20:08:53', '2025-12-17 19:47:50', 'ndaRleZm', '3470305'), + (515, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'ndaRleZm', '3470991'), + (515, 621, 'attending', '2021-03-03 07:18:48', '2025-12-17 19:47:51', 'ndaRleZm', '3517815'), + (515, 622, 'attending', '2021-03-14 00:22:56', '2025-12-17 19:47:51', 'ndaRleZm', '3517816'), + (515, 623, 'not_attending', '2021-03-13 23:54:13', '2025-12-17 19:47:51', 'ndaRleZm', '3523941'), + (515, 627, 'attending', '2021-03-03 07:19:32', '2025-12-17 19:47:51', 'ndaRleZm', '3533303'), + (515, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ndaRleZm', '3533850'), + (515, 632, 'attending', '2021-03-03 07:19:15', '2025-12-17 19:47:51', 'ndaRleZm', '3533853'), + (515, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ndaRleZm', '3536632'), + (515, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ndaRleZm', '3536656'), + (515, 641, 'attending', '2021-03-04 01:58:35', '2025-12-17 19:47:44', 'ndaRleZm', '3539916'), + (515, 642, 'attending', '2021-03-04 01:58:38', '2025-12-17 19:47:44', 'ndaRleZm', '3539917'), + (515, 643, 'attending', '2021-03-04 01:58:42', '2025-12-17 19:47:45', 'ndaRleZm', '3539918'), + (515, 644, 'attending', '2021-03-04 01:58:44', '2025-12-17 19:47:45', 'ndaRleZm', '3539919'), + (515, 645, 'attending', '2021-03-04 01:58:46', '2025-12-17 19:47:46', 'ndaRleZm', '3539920'), + (515, 646, 'attending', '2021-03-04 01:58:52', '2025-12-17 19:47:46', 'ndaRleZm', '3539921'), + (515, 647, 'attending', '2021-03-04 01:58:54', '2025-12-17 19:47:46', 'ndaRleZm', '3539922'), + (515, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndaRleZm', '3539923'), + (515, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndaRleZm', '3539927'), + (515, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndaRleZm', '3582734'), + (515, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ndaRleZm', '3583262'), + (515, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndaRleZm', '3619523'), + (515, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ndaRleZm', '3661369'), + (515, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ndaRleZm', '3674262'), + (515, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ndaRleZm', '3677402'), + (515, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndaRleZm', '3730212'), + (515, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ndaRleZm', '3793156'), + (515, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaRleZm', '6045684'), + (516, 50, 'attending', '2020-07-28 20:34:13', '2025-12-17 19:47:55', 'bdzYJ5y4', '2975275'), + (516, 194, 'attending', '2020-07-31 22:12:10', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087262'), + (516, 195, 'attending', '2020-08-07 18:17:11', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087264'), + (516, 196, 'maybe', '2020-08-15 21:29:33', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087265'), + (516, 197, 'attending', '2020-08-21 22:17:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087266'), + (516, 198, 'attending', '2020-08-25 20:21:44', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087267'), + (516, 199, 'attending', '2020-08-30 23:25:36', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087268'), + (516, 223, 'maybe', '2020-09-08 02:57:52', '2025-12-17 19:47:56', 'bdzYJ5y4', '3129980'), + (516, 230, 'maybe', '2020-07-29 21:36:57', '2025-12-17 19:47:55', 'bdzYJ5y4', '3139232'), + (516, 252, 'not_attending', '2021-02-23 05:23:44', '2025-12-17 19:47:50', 'bdzYJ5y4', '3149483'), + (516, 264, 'attending', '2020-08-03 21:44:53', '2025-12-17 19:47:56', 'bdzYJ5y4', '3150735'), + (516, 270, 'maybe', '2020-08-11 22:15:35', '2025-12-17 19:47:56', 'bdzYJ5y4', '3154457'), + (516, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'bdzYJ5y4', '3155321'), + (516, 273, 'maybe', '2020-08-03 18:24:37', '2025-12-17 19:47:56', 'bdzYJ5y4', '3162006'), + (516, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3163442'), + (516, 282, 'maybe', '2020-08-07 18:17:02', '2025-12-17 19:47:56', 'bdzYJ5y4', '3169070'), + (516, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'bdzYJ5y4', '3169555'), + (516, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', 'bdzYJ5y4', '3169556'), + (516, 290, 'not_attending', '2020-09-05 05:45:56', '2025-12-17 19:47:56', 'bdzYJ5y4', '3170251'), + (516, 291, 'not_attending', '2020-09-03 22:22:47', '2025-12-17 19:47:56', 'bdzYJ5y4', '3170252'), + (516, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172832'), + (516, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172833'), + (516, 295, 'maybe', '2020-08-30 23:24:19', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172834'), + (516, 296, 'maybe', '2020-09-03 22:22:54', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172876'), + (516, 297, 'attending', '2020-08-11 22:31:40', '2025-12-17 19:47:56', 'bdzYJ5y4', '3173937'), + (516, 298, 'maybe', '2020-08-25 20:21:27', '2025-12-17 19:47:56', 'bdzYJ5y4', '3174556'), + (516, 304, 'maybe', '2020-09-06 03:53:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3178916'), + (516, 306, 'maybe', '2020-08-19 02:44:25', '2025-12-17 19:47:56', 'bdzYJ5y4', '3179777'), + (516, 308, 'not_attending', '2020-09-03 04:14:11', '2025-12-17 19:47:56', 'bdzYJ5y4', '3183341'), + (516, 311, 'attending', '2020-09-10 19:17:29', '2025-12-17 19:47:56', 'bdzYJ5y4', '3186057'), + (516, 312, 'not_attending', '2020-09-03 22:22:42', '2025-12-17 19:47:56', 'bdzYJ5y4', '3187795'), + (516, 315, 'attending', '2020-09-08 06:52:03', '2025-12-17 19:47:56', 'bdzYJ5y4', '3189085'), + (516, 317, 'attending', '2020-08-26 04:26:01', '2025-12-17 19:47:56', 'bdzYJ5y4', '3191735'), + (516, 318, 'attending', '2020-09-01 23:36:13', '2025-12-17 19:47:56', 'bdzYJ5y4', '3193885'), + (516, 319, 'maybe', '2020-08-30 23:23:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3194179'), + (516, 320, 'attending', '2020-09-03 04:14:38', '2025-12-17 19:47:56', 'bdzYJ5y4', '3195552'), + (516, 322, 'not_attending', '2020-09-13 04:30:37', '2025-12-17 19:47:56', 'bdzYJ5y4', '3197080'), + (516, 323, 'not_attending', '2020-09-13 04:31:03', '2025-12-17 19:47:56', 'bdzYJ5y4', '3197081'), + (516, 328, 'not_attending', '2020-09-29 21:47:34', '2025-12-17 19:47:52', 'bdzYJ5y4', '3197086'), + (516, 330, 'maybe', '2020-09-06 20:54:01', '2025-12-17 19:47:56', 'bdzYJ5y4', '3197322'), + (516, 331, 'maybe', '2020-09-03 22:21:40', '2025-12-17 19:47:56', 'bdzYJ5y4', '3198871'), + (516, 332, 'not_attending', '2020-09-03 22:22:21', '2025-12-17 19:47:56', 'bdzYJ5y4', '3198873'), + (516, 335, 'attending', '2020-09-01 22:30:50', '2025-12-17 19:47:56', 'bdzYJ5y4', '3200209'), + (516, 336, 'not_attending', '2020-09-15 04:13:14', '2025-12-17 19:47:56', 'bdzYJ5y4', '3200495'), + (516, 337, 'maybe', '2020-09-06 08:06:22', '2025-12-17 19:47:56', 'bdzYJ5y4', '3201771'), + (516, 340, 'maybe', '2020-09-13 04:30:43', '2025-12-17 19:47:56', 'bdzYJ5y4', '3204470'), + (516, 341, 'attending', '2020-09-25 23:39:20', '2025-12-17 19:47:52', 'bdzYJ5y4', '3204471'), + (516, 343, 'maybe', '2020-09-21 05:11:41', '2025-12-17 19:47:56', 'bdzYJ5y4', '3206759'), + (516, 344, 'maybe', '2020-10-29 18:34:37', '2025-12-17 19:47:53', 'bdzYJ5y4', '3206906'), + (516, 346, 'not_attending', '2020-09-15 04:13:24', '2025-12-17 19:47:56', 'bdzYJ5y4', '3207515'), + (516, 347, 'not_attending', '2020-09-24 22:46:00', '2025-12-17 19:47:51', 'bdzYJ5y4', '3207930'), + (516, 348, 'maybe', '2020-09-28 23:28:34', '2025-12-17 19:47:52', 'bdzYJ5y4', '3209159'), + (516, 349, 'not_attending', '2020-09-13 04:30:33', '2025-12-17 19:47:56', 'bdzYJ5y4', '3209194'), + (516, 351, 'maybe', '2020-09-13 04:30:56', '2025-12-17 19:47:56', 'bdzYJ5y4', '3209257'), + (516, 352, 'maybe', '2020-09-13 04:30:08', '2025-12-17 19:47:56', 'bdzYJ5y4', '3210514'), + (516, 354, 'maybe', '2020-09-15 04:14:59', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212570'), + (516, 355, 'not_attending', '2020-09-15 04:13:34', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212571'), + (516, 356, 'maybe', '2020-09-23 23:58:08', '2025-12-17 19:47:51', 'bdzYJ5y4', '3212572'), + (516, 357, 'attending', '2020-09-29 21:47:36', '2025-12-17 19:47:52', 'bdzYJ5y4', '3212573'), + (516, 358, 'not_attending', '2020-09-19 08:33:21', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212579'), + (516, 359, 'not_attending', '2020-09-15 04:14:38', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212624'), + (516, 360, 'not_attending', '2020-09-15 04:14:04', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212671'), + (516, 362, 'attending', '2020-09-21 22:14:09', '2025-12-17 19:47:52', 'bdzYJ5y4', '3214207'), + (516, 363, 'attending', '2020-09-18 03:43:33', '2025-12-17 19:47:52', 'bdzYJ5y4', '3217037'), + (516, 364, 'maybe', '2020-09-18 03:37:50', '2025-12-17 19:47:56', 'bdzYJ5y4', '3217106'), + (516, 365, 'attending', '2020-09-18 03:43:07', '2025-12-17 19:47:51', 'bdzYJ5y4', '3218510'), + (516, 366, 'maybe', '2020-09-21 05:11:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3219750'), + (516, 367, 'maybe', '2020-09-21 05:12:00', '2025-12-17 19:47:51', 'bdzYJ5y4', '3219751'), + (516, 368, 'not_attending', '2020-09-30 18:09:28', '2025-12-17 19:47:52', 'bdzYJ5y4', '3221403'), + (516, 370, 'not_attending', '2020-10-13 20:57:48', '2025-12-17 19:47:52', 'bdzYJ5y4', '3221405'), + (516, 371, 'not_attending', '2020-10-13 20:57:51', '2025-12-17 19:47:52', 'bdzYJ5y4', '3221406'), + (516, 374, 'not_attending', '2020-10-26 20:56:59', '2025-12-17 19:47:53', 'bdzYJ5y4', '3221415'), + (516, 376, 'not_attending', '2020-10-13 20:57:42', '2025-12-17 19:47:52', 'bdzYJ5y4', '3222827'), + (516, 377, 'maybe', '2020-10-29 18:33:03', '2025-12-17 19:47:53', 'bdzYJ5y4', '3222828'), + (516, 382, 'not_attending', '2020-10-12 22:13:00', '2025-12-17 19:47:52', 'bdzYJ5y4', '3226873'), + (516, 384, 'not_attending', '2020-09-29 21:47:15', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228696'), + (516, 385, 'attending', '2020-09-29 20:30:21', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228698'), + (516, 386, 'not_attending', '2020-10-10 20:46:39', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228699'), + (516, 387, 'maybe', '2020-10-16 20:39:04', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228700'), + (516, 388, 'attending', '2020-10-24 20:42:52', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228701'), + (516, 390, 'not_attending', '2020-10-01 21:22:23', '2025-12-17 19:47:52', 'bdzYJ5y4', '3231510'), + (516, 404, 'not_attending', '2021-03-15 01:55:26', '2025-12-17 19:47:51', 'bdzYJ5y4', '3236460'), + (516, 412, 'not_attending', '2020-10-07 02:59:05', '2025-12-17 19:47:52', 'bdzYJ5y4', '3236636'), + (516, 414, 'not_attending', '2020-10-13 20:59:00', '2025-12-17 19:47:52', 'bdzYJ5y4', '3237277'), + (516, 415, 'not_attending', '2020-10-12 22:12:30', '2025-12-17 19:47:52', 'bdzYJ5y4', '3238044'), + (516, 416, 'maybe', '2020-10-07 02:59:13', '2025-12-17 19:47:52', 'bdzYJ5y4', '3238073'), + (516, 417, 'not_attending', '2020-10-13 20:57:26', '2025-12-17 19:47:52', 'bdzYJ5y4', '3238779'), + (516, 418, 'not_attending', '2020-10-13 20:57:22', '2025-12-17 19:47:52', 'bdzYJ5y4', '3241728'), + (516, 419, 'not_attending', '2020-10-13 20:57:07', '2025-12-17 19:47:52', 'bdzYJ5y4', '3242234'), + (516, 420, 'not_attending', '2020-10-13 20:57:37', '2025-12-17 19:47:52', 'bdzYJ5y4', '3245293'), + (516, 422, 'not_attending', '2020-10-29 18:32:41', '2025-12-17 19:47:53', 'bdzYJ5y4', '3245295'), + (516, 423, 'not_attending', '2020-11-02 02:00:50', '2025-12-17 19:47:53', 'bdzYJ5y4', '3245296'), + (516, 424, 'not_attending', '2020-10-19 05:04:35', '2025-12-17 19:47:52', 'bdzYJ5y4', '3245751'), + (516, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'bdzYJ5y4', '3250232'), + (516, 428, 'attending', '2020-10-26 20:56:49', '2025-12-17 19:47:53', 'bdzYJ5y4', '3250332'), + (516, 429, 'maybe', '2020-11-28 22:27:52', '2025-12-17 19:47:54', 'bdzYJ5y4', '3250523'), + (516, 431, 'maybe', '2020-10-26 20:57:50', '2025-12-17 19:47:53', 'bdzYJ5y4', '3253225'), + (516, 432, 'not_attending', '2020-11-02 02:00:36', '2025-12-17 19:47:53', 'bdzYJ5y4', '3254416'), + (516, 433, 'not_attending', '2020-11-02 02:00:55', '2025-12-17 19:47:53', 'bdzYJ5y4', '3254417'), + (516, 437, 'not_attending', '2020-10-28 22:10:18', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256160'), + (516, 438, 'not_attending', '2020-10-29 18:34:12', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256163'), + (516, 439, 'not_attending', '2020-10-28 22:10:15', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256164'), + (516, 440, 'not_attending', '2020-11-07 22:59:41', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256168'), + (516, 441, 'attending', '2020-11-11 23:07:31', '2025-12-17 19:47:54', 'bdzYJ5y4', '3256169'), + (516, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'bdzYJ5y4', '3263578'), + (516, 444, 'not_attending', '2020-10-30 21:40:37', '2025-12-17 19:47:53', 'bdzYJ5y4', '3263745'), + (516, 445, 'not_attending', '2020-11-13 00:32:32', '2025-12-17 19:47:54', 'bdzYJ5y4', '3266138'), + (516, 446, 'maybe', '2020-10-26 20:57:18', '2025-12-17 19:47:53', 'bdzYJ5y4', '3267163'), + (516, 447, 'not_attending', '2020-10-26 20:58:02', '2025-12-17 19:47:53', 'bdzYJ5y4', '3267895'), + (516, 449, 'maybe', '2020-11-07 17:27:36', '2025-12-17 19:47:53', 'bdzYJ5y4', '3272055'), + (516, 451, 'not_attending', '2020-11-02 02:00:28', '2025-12-17 19:47:53', 'bdzYJ5y4', '3272186'), + (516, 452, 'maybe', '2020-11-28 00:25:42', '2025-12-17 19:47:54', 'bdzYJ5y4', '3272981'), + (516, 454, 'not_attending', '2020-11-13 00:34:26', '2025-12-17 19:47:54', 'bdzYJ5y4', '3275665'), + (516, 456, 'not_attending', '2020-11-17 00:45:15', '2025-12-17 19:47:54', 'bdzYJ5y4', '3276428'), + (516, 457, 'not_attending', '2020-11-07 14:52:46', '2025-12-17 19:47:53', 'bdzYJ5y4', '3279087'), + (516, 458, 'maybe', '2020-11-09 20:58:36', '2025-12-17 19:47:53', 'bdzYJ5y4', '3279233'), + (516, 459, 'not_attending', '2020-11-15 21:51:24', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281467'), + (516, 460, 'maybe', '2020-11-14 22:01:17', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281468'), + (516, 461, 'not_attending', '2020-11-09 20:58:29', '2025-12-17 19:47:53', 'bdzYJ5y4', '3281469'), + (516, 462, 'not_attending', '2020-11-09 20:58:45', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281470'), + (516, 463, 'maybe', '2020-11-13 00:34:34', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281553'), + (516, 464, 'maybe', '2020-11-21 01:55:45', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281554'), + (516, 465, 'maybe', '2020-11-24 06:41:06', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281555'), + (516, 466, 'not_attending', '2020-11-23 03:25:24', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281829'), + (516, 467, 'not_attending', '2020-11-18 00:21:28', '2025-12-17 19:47:54', 'bdzYJ5y4', '3282756'), + (516, 468, 'attending', '2020-11-22 00:44:24', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285413'), + (516, 469, 'attending', '2020-11-28 00:25:34', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285414'), + (516, 470, 'not_attending', '2020-11-15 21:51:31', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285443'), + (516, 471, 'not_attending', '2020-11-14 22:00:59', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285445'), + (516, 472, 'not_attending', '2020-11-13 00:32:21', '2025-12-17 19:47:54', 'bdzYJ5y4', '3286541'), + (516, 475, 'not_attending', '2020-11-23 03:26:15', '2025-12-17 19:47:54', 'bdzYJ5y4', '3286760'), + (516, 476, 'not_attending', '2020-11-14 22:00:55', '2025-12-17 19:47:54', 'bdzYJ5y4', '3286982'), + (516, 477, 'maybe', '2020-11-28 22:27:31', '2025-12-17 19:47:54', 'bdzYJ5y4', '3289559'), + (516, 478, 'not_attending', '2020-11-16 20:49:28', '2025-12-17 19:47:54', 'bdzYJ5y4', '3290899'), + (516, 481, 'not_attending', '2020-11-23 03:25:33', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297764'), + (516, 482, 'not_attending', '2020-11-24 22:36:19', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297769'), + (516, 483, 'not_attending', '2020-11-23 03:25:29', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297791'), + (516, 484, 'not_attending', '2020-11-21 00:52:22', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297792'), + (516, 486, 'not_attending', '2020-11-23 03:25:59', '2025-12-17 19:47:54', 'bdzYJ5y4', '3300281'), + (516, 487, 'not_attending', '2020-11-28 00:25:47', '2025-12-17 19:47:54', 'bdzYJ5y4', '3311122'), + (516, 488, 'not_attending', '2020-11-28 00:26:07', '2025-12-17 19:47:54', 'bdzYJ5y4', '3312757'), + (516, 490, 'not_attending', '2020-12-07 21:06:30', '2025-12-17 19:47:54', 'bdzYJ5y4', '3313532'), + (516, 491, 'not_attending', '2020-12-10 20:59:18', '2025-12-17 19:47:55', 'bdzYJ5y4', '3313533'), + (516, 492, 'not_attending', '2020-11-28 22:27:38', '2025-12-17 19:47:54', 'bdzYJ5y4', '3313731'), + (516, 493, 'not_attending', '2020-12-05 03:13:59', '2025-12-17 19:47:54', 'bdzYJ5y4', '3313856'), + (516, 495, 'not_attending', '2020-12-07 21:06:13', '2025-12-17 19:47:54', 'bdzYJ5y4', '3314009'), + (516, 496, 'not_attending', '2020-12-10 20:59:15', '2025-12-17 19:47:54', 'bdzYJ5y4', '3314269'), + (516, 497, 'not_attending', '2020-12-16 22:23:16', '2025-12-17 19:47:55', 'bdzYJ5y4', '3314270'), + (516, 498, 'not_attending', '2020-12-07 21:06:04', '2025-12-17 19:47:54', 'bdzYJ5y4', '3314302'), + (516, 499, 'maybe', '2020-12-07 21:07:31', '2025-12-17 19:47:55', 'bdzYJ5y4', '3314909'), + (516, 500, 'maybe', '2020-12-16 22:23:33', '2025-12-17 19:47:55', 'bdzYJ5y4', '3314964'), + (516, 501, 'maybe', '2020-12-07 21:06:22', '2025-12-17 19:47:54', 'bdzYJ5y4', '3317834'), + (516, 502, 'attending', '2020-12-12 23:47:29', '2025-12-17 19:47:55', 'bdzYJ5y4', '3323365'), + (516, 504, 'not_attending', '2020-12-16 22:23:23', '2025-12-17 19:47:55', 'bdzYJ5y4', '3323368'), + (516, 506, 'maybe', '2020-12-07 21:07:51', '2025-12-17 19:47:55', 'bdzYJ5y4', '3323375'), + (516, 511, 'not_attending', '2020-12-10 20:59:37', '2025-12-17 19:47:55', 'bdzYJ5y4', '3325335'), + (516, 512, 'not_attending', '2020-12-10 20:59:31', '2025-12-17 19:47:55', 'bdzYJ5y4', '3325336'), + (516, 513, 'not_attending', '2020-12-16 22:23:40', '2025-12-17 19:47:55', 'bdzYJ5y4', '3329383'), + (516, 516, 'attending', '2020-12-16 23:04:55', '2025-12-17 19:47:48', 'bdzYJ5y4', '3334530'), + (516, 521, 'maybe', '2020-12-28 07:11:52', '2025-12-17 19:47:48', 'bdzYJ5y4', '3337454'), + (516, 525, 'not_attending', '2020-12-22 19:16:57', '2025-12-17 19:47:48', 'bdzYJ5y4', '3350467'), + (516, 526, 'attending', '2021-01-02 04:40:11', '2025-12-17 19:47:48', 'bdzYJ5y4', '3351539'), + (516, 528, 'not_attending', '2021-01-02 04:40:21', '2025-12-17 19:47:48', 'bdzYJ5y4', '3363022'), + (516, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'bdzYJ5y4', '3386848'), + (516, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'bdzYJ5y4', '3389527'), + (516, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'bdzYJ5y4', '3396499'), + (516, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'bdzYJ5y4', '3403650'), + (516, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'bdzYJ5y4', '3406988'), + (516, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'bdzYJ5y4', '3408338'), + (516, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'bdzYJ5y4', '3416576'), + (516, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'bdzYJ5y4', '3430267'), + (516, 573, 'maybe', '2021-02-21 23:39:07', '2025-12-17 19:47:50', 'bdzYJ5y4', '3435542'), + (516, 574, 'attending', '2021-03-06 01:28:01', '2025-12-17 19:47:51', 'bdzYJ5y4', '3435543'), + (516, 592, 'not_attending', '2021-02-21 23:38:52', '2025-12-17 19:47:50', 'bdzYJ5y4', '3467757'), + (516, 593, 'not_attending', '2021-02-21 23:38:17', '2025-12-17 19:47:50', 'bdzYJ5y4', '3467758'), + (516, 594, 'not_attending', '2021-03-01 23:33:13', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467759'), + (516, 595, 'not_attending', '2021-03-07 04:46:08', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467761'), + (516, 596, 'not_attending', '2021-03-07 04:46:04', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467762'), + (516, 597, 'not_attending', '2021-03-11 08:29:24', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467764'), + (516, 600, 'not_attending', '2021-02-20 23:13:26', '2025-12-17 19:47:50', 'bdzYJ5y4', '3468125'), + (516, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470303'), + (516, 603, 'attending', '2021-02-20 11:23:49', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470304'), + (516, 604, 'not_attending', '2021-02-27 05:55:53', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470305'), + (516, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470991'), + (516, 611, 'not_attending', '2021-02-21 23:38:11', '2025-12-17 19:47:50', 'bdzYJ5y4', '3482659'), + (516, 613, 'not_attending', '2021-02-21 23:38:58', '2025-12-17 19:47:50', 'bdzYJ5y4', '3490041'), + (516, 614, 'not_attending', '2021-03-01 23:28:10', '2025-12-17 19:47:51', 'bdzYJ5y4', '3490042'), + (516, 616, 'not_attending', '2021-02-20 23:13:22', '2025-12-17 19:47:50', 'bdzYJ5y4', '3493478'), + (516, 617, 'maybe', '2021-02-21 23:38:32', '2025-12-17 19:47:50', 'bdzYJ5y4', '3499119'), + (516, 621, 'attending', '2021-03-01 23:27:45', '2025-12-17 19:47:51', 'bdzYJ5y4', '3517815'), + (516, 622, 'attending', '2021-03-10 22:08:23', '2025-12-17 19:47:51', 'bdzYJ5y4', '3517816'), + (516, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'bdzYJ5y4', '3523941'), + (516, 625, 'not_attending', '2021-03-03 00:49:55', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533296'), + (516, 626, 'not_attending', '2021-03-03 03:38:11', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533298'), + (516, 627, 'not_attending', '2021-03-07 04:45:59', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533303'), + (516, 628, 'not_attending', '2021-03-11 21:55:20', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533305'), + (516, 629, 'maybe', '2021-03-11 21:55:33', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533307'), + (516, 631, 'maybe', '2021-03-01 23:33:54', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533850'), + (516, 632, 'attending', '2021-03-09 00:50:33', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533853'), + (516, 633, 'maybe', '2021-03-13 02:28:11', '2025-12-17 19:47:44', 'bdzYJ5y4', '3534717'), + (516, 634, 'maybe', '2021-03-30 22:38:53', '2025-12-17 19:47:44', 'bdzYJ5y4', '3534718'), + (516, 635, 'maybe', '2021-04-04 06:55:56', '2025-12-17 19:47:44', 'bdzYJ5y4', '3534719'), + (516, 636, 'not_attending', '2021-04-13 06:16:23', '2025-12-17 19:47:45', 'bdzYJ5y4', '3534720'), + (516, 637, 'not_attending', '2021-03-15 01:56:51', '2025-12-17 19:47:51', 'bdzYJ5y4', '3536411'), + (516, 638, 'not_attending', '2021-04-04 06:55:25', '2025-12-17 19:47:44', 'bdzYJ5y4', '3536632'), + (516, 639, 'maybe', '2021-03-13 02:27:42', '2025-12-17 19:47:51', 'bdzYJ5y4', '3536656'), + (516, 640, 'not_attending', '2021-03-03 19:00:23', '2025-12-17 19:47:51', 'bdzYJ5y4', '3538866'), + (516, 641, 'attending', '2021-03-28 02:11:49', '2025-12-17 19:47:44', 'bdzYJ5y4', '3539916'), + (516, 642, 'attending', '2021-04-10 02:48:13', '2025-12-17 19:47:44', 'bdzYJ5y4', '3539917'), + (516, 643, 'not_attending', '2021-04-13 06:16:29', '2025-12-17 19:47:45', 'bdzYJ5y4', '3539918'), + (516, 644, 'attending', '2021-04-19 05:53:21', '2025-12-17 19:47:45', 'bdzYJ5y4', '3539919'), + (516, 645, 'attending', '2021-05-03 04:04:37', '2025-12-17 19:47:46', 'bdzYJ5y4', '3539920'), + (516, 646, 'attending', '2021-05-10 00:37:27', '2025-12-17 19:47:46', 'bdzYJ5y4', '3539921'), + (516, 647, 'attending', '2021-05-16 07:58:15', '2025-12-17 19:47:46', 'bdzYJ5y4', '3539922'), + (516, 648, 'attending', '2021-05-26 04:37:47', '2025-12-17 19:47:47', 'bdzYJ5y4', '3539923'), + (516, 649, 'maybe', '2021-03-13 02:28:49', '2025-12-17 19:47:51', 'bdzYJ5y4', '3539927'), + (516, 650, 'maybe', '2021-03-23 23:40:33', '2025-12-17 19:47:44', 'bdzYJ5y4', '3539928'), + (516, 651, 'not_attending', '2021-03-10 22:08:00', '2025-12-17 19:47:51', 'bdzYJ5y4', '3541045'), + (516, 652, 'not_attending', '2021-03-07 04:45:34', '2025-12-17 19:47:51', 'bdzYJ5y4', '3544466'), + (516, 664, 'attending', '2021-09-06 23:30:47', '2025-12-17 19:47:43', 'bdzYJ5y4', '3547142'), + (516, 665, 'attending', '2021-08-30 01:15:44', '2025-12-17 19:47:43', 'bdzYJ5y4', '3547143'), + (516, 667, 'attending', '2021-08-27 00:16:51', '2025-12-17 19:47:42', 'bdzYJ5y4', '3547145'), + (516, 669, 'maybe', '2021-06-26 04:07:07', '2025-12-17 19:47:38', 'bdzYJ5y4', '3547147'), + (516, 670, 'not_attending', '2021-06-18 23:07:24', '2025-12-17 19:47:48', 'bdzYJ5y4', '3547148'), + (516, 674, 'not_attending', '2021-07-27 21:52:39', '2025-12-17 19:47:41', 'bdzYJ5y4', '3547152'), + (516, 675, 'not_attending', '2021-07-26 21:23:51', '2025-12-17 19:47:40', 'bdzYJ5y4', '3547153'), + (516, 676, 'maybe', '2021-07-20 00:03:15', '2025-12-17 19:47:40', 'bdzYJ5y4', '3547154'), + (516, 677, 'not_attending', '2021-05-26 04:37:54', '2025-12-17 19:47:47', 'bdzYJ5y4', '3547155'), + (516, 678, 'not_attending', '2021-03-11 08:28:01', '2025-12-17 19:47:51', 'bdzYJ5y4', '3547158'), + (516, 680, 'not_attending', '2021-03-10 22:08:04', '2025-12-17 19:47:51', 'bdzYJ5y4', '3547700'), + (516, 682, 'not_attending', '2021-03-15 01:57:13', '2025-12-17 19:47:51', 'bdzYJ5y4', '3548806'), + (516, 683, 'not_attending', '2021-03-11 08:29:28', '2025-12-17 19:47:51', 'bdzYJ5y4', '3548818'), + (516, 684, 'not_attending', '2021-03-12 21:53:02', '2025-12-17 19:47:51', 'bdzYJ5y4', '3549257'), + (516, 685, 'not_attending', '2021-04-12 05:06:04', '2025-12-17 19:47:44', 'bdzYJ5y4', '3551564'), + (516, 686, 'not_attending', '2021-03-11 21:55:27', '2025-12-17 19:47:51', 'bdzYJ5y4', '3553333'), + (516, 687, 'not_attending', '2021-03-11 08:28:54', '2025-12-17 19:47:51', 'bdzYJ5y4', '3553405'), + (516, 688, 'not_attending', '2021-03-15 01:55:16', '2025-12-17 19:47:51', 'bdzYJ5y4', '3553729'), + (516, 690, 'maybe', '2021-03-13 02:28:00', '2025-12-17 19:47:43', 'bdzYJ5y4', '3559954'), + (516, 692, 'not_attending', '2021-03-12 21:53:09', '2025-12-17 19:47:51', 'bdzYJ5y4', '3561995'), + (516, 693, 'attending', '2021-03-15 01:54:53', '2025-12-17 19:47:51', 'bdzYJ5y4', '3565907'), + (516, 695, 'maybe', '2021-03-15 01:54:40', '2025-12-17 19:47:51', 'bdzYJ5y4', '3567535'), + (516, 696, 'maybe', '2021-03-15 01:55:58', '2025-12-17 19:47:51', 'bdzYJ5y4', '3567536'), + (516, 697, 'not_attending', '2021-03-23 23:40:43', '2025-12-17 19:47:44', 'bdzYJ5y4', '3567537'), + (516, 699, 'maybe', '2021-03-29 21:21:33', '2025-12-17 19:47:44', 'bdzYJ5y4', '3572241'), + (516, 704, 'not_attending', '2021-03-30 22:38:34', '2025-12-17 19:47:44', 'bdzYJ5y4', '3581429'), + (516, 705, 'maybe', '2021-03-26 02:06:43', '2025-12-17 19:47:44', 'bdzYJ5y4', '3581895'), + (516, 706, 'not_attending', '2021-04-12 05:08:26', '2025-12-17 19:47:45', 'bdzYJ5y4', '3582734'), + (516, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdzYJ5y4', '3583262'), + (516, 708, 'maybe', '2021-03-22 01:30:05', '2025-12-17 19:47:44', 'bdzYJ5y4', '3587850'), + (516, 709, 'maybe', '2021-03-30 22:50:24', '2025-12-17 19:47:44', 'bdzYJ5y4', '3587852'), + (516, 710, 'maybe', '2021-04-04 06:55:37', '2025-12-17 19:47:44', 'bdzYJ5y4', '3587853'), + (516, 711, 'maybe', '2021-03-23 01:07:28', '2025-12-17 19:47:44', 'bdzYJ5y4', '3588075'), + (516, 716, 'not_attending', '2021-03-30 22:47:06', '2025-12-17 19:47:44', 'bdzYJ5y4', '3618353'), + (516, 717, 'maybe', '2021-03-26 02:07:29', '2025-12-17 19:47:44', 'bdzYJ5y4', '3619523'), + (516, 719, 'not_attending', '2021-04-04 06:55:44', '2025-12-17 19:47:44', 'bdzYJ5y4', '3635405'), + (516, 722, 'not_attending', '2021-04-01 00:58:20', '2025-12-17 19:47:44', 'bdzYJ5y4', '3646347'), + (516, 723, 'not_attending', '2021-04-05 22:25:25', '2025-12-17 19:47:44', 'bdzYJ5y4', '3649179'), + (516, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdzYJ5y4', '3661369'), + (516, 725, 'not_attending', '2021-05-16 07:58:21', '2025-12-17 19:47:47', 'bdzYJ5y4', '3661372'), + (516, 728, 'not_attending', '2021-04-13 06:16:13', '2025-12-17 19:47:44', 'bdzYJ5y4', '3668073'), + (516, 729, 'not_attending', '2021-04-28 16:08:47', '2025-12-17 19:47:46', 'bdzYJ5y4', '3668075'), + (516, 730, 'not_attending', '2021-05-03 04:04:14', '2025-12-17 19:47:46', 'bdzYJ5y4', '3668076'), + (516, 731, 'not_attending', '2021-04-04 06:55:18', '2025-12-17 19:47:44', 'bdzYJ5y4', '3674262'), + (516, 732, 'maybe', '2021-04-19 05:52:54', '2025-12-17 19:47:45', 'bdzYJ5y4', '3674268'), + (516, 733, 'not_attending', '2021-04-05 22:25:32', '2025-12-17 19:47:44', 'bdzYJ5y4', '3675473'), + (516, 734, 'not_attending', '2021-04-05 22:25:52', '2025-12-17 19:47:44', 'bdzYJ5y4', '3676806'), + (516, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdzYJ5y4', '3677402'), + (516, 737, 'maybe', '2021-04-05 22:25:37', '2025-12-17 19:47:44', 'bdzYJ5y4', '3679349'), + (516, 738, 'maybe', '2021-04-19 05:53:12', '2025-12-17 19:47:45', 'bdzYJ5y4', '3680615'), + (516, 739, 'not_attending', '2021-05-07 22:55:34', '2025-12-17 19:47:46', 'bdzYJ5y4', '3680616'), + (516, 740, 'maybe', '2021-04-28 16:09:04', '2025-12-17 19:47:46', 'bdzYJ5y4', '3680617'), + (516, 741, 'not_attending', '2021-05-21 22:49:45', '2025-12-17 19:47:46', 'bdzYJ5y4', '3680618'), + (516, 743, 'not_attending', '2021-06-25 20:52:43', '2025-12-17 19:47:38', 'bdzYJ5y4', '3680623'), + (516, 744, 'maybe', '2021-06-10 19:19:24', '2025-12-17 19:47:47', 'bdzYJ5y4', '3680624'), + (516, 745, 'not_attending', '2021-06-30 02:24:43', '2025-12-17 19:47:38', 'bdzYJ5y4', '3680625'), + (516, 746, 'not_attending', '2021-07-07 21:01:11', '2025-12-17 19:47:39', 'bdzYJ5y4', '3680626'), + (516, 747, 'maybe', '2021-04-07 01:18:21', '2025-12-17 19:47:45', 'bdzYJ5y4', '3684754'), + (516, 748, 'not_attending', '2021-04-08 22:03:09', '2025-12-17 19:47:44', 'bdzYJ5y4', '3685353'), + (516, 749, 'not_attending', '2021-04-12 05:06:08', '2025-12-17 19:47:44', 'bdzYJ5y4', '3689769'), + (516, 750, 'not_attending', '2021-04-12 05:06:13', '2025-12-17 19:47:44', 'bdzYJ5y4', '3689962'), + (516, 751, 'not_attending', '2021-04-19 05:52:09', '2025-12-17 19:47:45', 'bdzYJ5y4', '3691364'), + (516, 752, 'not_attending', '2021-04-13 06:16:20', '2025-12-17 19:47:44', 'bdzYJ5y4', '3699422'), + (516, 753, 'not_attending', '2021-04-12 05:08:14', '2025-12-17 19:47:45', 'bdzYJ5y4', '3701861'), + (516, 754, 'not_attending', '2021-04-19 05:52:48', '2025-12-17 19:47:45', 'bdzYJ5y4', '3701863'), + (516, 755, 'not_attending', '2021-04-19 05:53:00', '2025-12-17 19:47:45', 'bdzYJ5y4', '3701864'), + (516, 756, 'maybe', '2021-04-26 05:03:36', '2025-12-17 19:47:46', 'bdzYJ5y4', '3704795'), + (516, 758, 'not_attending', '2021-04-19 05:51:49', '2025-12-17 19:47:45', 'bdzYJ5y4', '3713700'), + (516, 760, 'maybe', '2021-05-07 21:45:26', '2025-12-17 19:47:46', 'bdzYJ5y4', '3716035'), + (516, 761, 'not_attending', '2021-05-14 22:37:48', '2025-12-17 19:47:46', 'bdzYJ5y4', '3716041'), + (516, 762, 'not_attending', '2021-04-19 05:51:43', '2025-12-17 19:47:45', 'bdzYJ5y4', '3719118'), + (516, 764, 'not_attending', '2021-04-23 21:16:50', '2025-12-17 19:47:45', 'bdzYJ5y4', '3720507'), + (516, 765, 'maybe', '2021-04-19 05:52:40', '2025-12-17 19:47:45', 'bdzYJ5y4', '3720508'), + (516, 766, 'not_attending', '2021-05-10 00:37:03', '2025-12-17 19:47:46', 'bdzYJ5y4', '3721383'), + (516, 770, 'not_attending', '2021-04-28 16:08:55', '2025-12-17 19:47:46', 'bdzYJ5y4', '3724559'), + (516, 771, 'not_attending', '2021-04-28 16:08:52', '2025-12-17 19:47:46', 'bdzYJ5y4', '3726420'), + (516, 772, 'not_attending', '2021-04-28 23:16:15', '2025-12-17 19:47:46', 'bdzYJ5y4', '3726421'), + (516, 774, 'maybe', '2021-04-21 21:34:14', '2025-12-17 19:47:45', 'bdzYJ5y4', '3730212'), + (516, 777, 'attending', '2021-05-01 21:41:59', '2025-12-17 19:47:46', 'bdzYJ5y4', '3746248'), + (516, 778, 'not_attending', '2021-04-28 23:15:33', '2025-12-17 19:47:46', 'bdzYJ5y4', '3751550'), + (516, 779, 'not_attending', '2021-05-03 04:03:56', '2025-12-17 19:47:46', 'bdzYJ5y4', '3757118'), + (516, 781, 'not_attending', '2021-05-06 22:55:44', '2025-12-17 19:47:46', 'bdzYJ5y4', '3760130'), + (516, 782, 'maybe', '2021-05-03 04:04:08', '2025-12-17 19:47:46', 'bdzYJ5y4', '3761843'), + (516, 783, 'not_attending', '2021-05-03 04:03:48', '2025-12-17 19:47:46', 'bdzYJ5y4', '3767471'), + (516, 784, 'not_attending', '2021-05-06 22:55:40', '2025-12-17 19:47:46', 'bdzYJ5y4', '3768775'), + (516, 785, 'not_attending', '2021-05-11 02:34:58', '2025-12-17 19:47:46', 'bdzYJ5y4', '3779779'), + (516, 787, 'not_attending', '2021-05-10 00:36:36', '2025-12-17 19:47:46', 'bdzYJ5y4', '3780558'), + (516, 789, 'not_attending', '2021-05-25 03:26:19', '2025-12-17 19:47:47', 'bdzYJ5y4', '3785818'), + (516, 791, 'maybe', '2021-05-10 00:36:45', '2025-12-17 19:47:46', 'bdzYJ5y4', '3792735'), + (516, 792, 'maybe', '2021-05-11 02:35:15', '2025-12-17 19:47:46', 'bdzYJ5y4', '3793156'), + (516, 793, 'attending', '2021-05-31 09:36:50', '2025-12-17 19:47:47', 'bdzYJ5y4', '3793537'), + (516, 794, 'maybe', '2021-05-20 22:28:37', '2025-12-17 19:47:47', 'bdzYJ5y4', '3793538'), + (516, 795, 'maybe', '2021-06-09 01:34:01', '2025-12-17 19:47:47', 'bdzYJ5y4', '3793539'), + (516, 796, 'maybe', '2021-05-11 02:35:06', '2025-12-17 19:47:46', 'bdzYJ5y4', '3793862'), + (516, 797, 'not_attending', '2021-05-25 03:25:56', '2025-12-17 19:47:47', 'bdzYJ5y4', '3796195'), + (516, 798, 'maybe', '2021-05-11 02:35:37', '2025-12-17 19:47:46', 'bdzYJ5y4', '3796262'), + (516, 799, 'maybe', '2021-05-10 00:36:55', '2025-12-17 19:47:46', 'bdzYJ5y4', '3797767'), + (516, 800, 'not_attending', '2021-05-11 21:41:56', '2025-12-17 19:47:46', 'bdzYJ5y4', '3800908'), + (516, 803, 'not_attending', '2021-05-16 07:57:20', '2025-12-17 19:47:46', 'bdzYJ5y4', '3804665'), + (516, 804, 'not_attending', '2021-05-20 22:28:04', '2025-12-17 19:47:47', 'bdzYJ5y4', '3804775'), + (516, 808, 'maybe', '2021-05-20 22:26:36', '2025-12-17 19:47:46', 'bdzYJ5y4', '3807358'), + (516, 809, 'not_attending', '2021-05-16 07:58:01', '2025-12-17 19:47:46', 'bdzYJ5y4', '3807964'), + (516, 811, 'not_attending', '2021-05-16 07:57:03', '2025-12-17 19:47:46', 'bdzYJ5y4', '3808030'), + (516, 812, 'not_attending', '2021-05-16 07:57:08', '2025-12-17 19:47:46', 'bdzYJ5y4', '3808031'), + (516, 815, 'maybe', '2021-05-20 22:28:52', '2025-12-17 19:47:47', 'bdzYJ5y4', '3818136'), + (516, 816, 'not_attending', '2021-05-18 23:22:39', '2025-12-17 19:47:46', 'bdzYJ5y4', '3826524'), + (516, 818, 'maybe', '2021-05-21 04:24:15', '2025-12-17 19:47:47', 'bdzYJ5y4', '3833015'), + (516, 819, 'not_attending', '2021-05-25 03:26:37', '2025-12-17 19:47:47', 'bdzYJ5y4', '3833017'), + (516, 821, 'not_attending', '2021-05-31 09:36:32', '2025-12-17 19:47:47', 'bdzYJ5y4', '3963965'), + (516, 823, 'attending', '2021-06-15 03:10:57', '2025-12-17 19:47:48', 'bdzYJ5y4', '3974109'), + (516, 824, 'not_attending', '2021-06-02 04:24:43', '2025-12-17 19:47:47', 'bdzYJ5y4', '3974112'), + (516, 825, 'maybe', '2021-06-01 03:43:55', '2025-12-17 19:47:47', 'bdzYJ5y4', '3975283'), + (516, 827, 'not_attending', '2021-06-05 20:52:47', '2025-12-17 19:47:47', 'bdzYJ5y4', '3975311'), + (516, 828, 'attending', '2021-06-12 22:53:51', '2025-12-17 19:47:47', 'bdzYJ5y4', '3975312'), + (516, 831, 'not_attending', '2021-06-02 04:24:48', '2025-12-17 19:47:47', 'bdzYJ5y4', '3976649'), + (516, 832, 'not_attending', '2021-06-02 04:24:53', '2025-12-17 19:47:47', 'bdzYJ5y4', '3976650'), + (516, 833, 'maybe', '2021-06-04 16:43:18', '2025-12-17 19:47:47', 'bdzYJ5y4', '3990438'), + (516, 834, 'maybe', '2021-06-04 16:43:04', '2025-12-17 19:47:47', 'bdzYJ5y4', '3990439'), + (516, 838, 'maybe', '2021-06-06 22:03:34', '2025-12-17 19:47:47', 'bdzYJ5y4', '3994992'), + (516, 839, 'not_attending', '2021-06-06 22:03:26', '2025-12-17 19:47:47', 'bdzYJ5y4', '4002121'), + (516, 841, 'maybe', '2021-06-15 00:18:02', '2025-12-17 19:47:48', 'bdzYJ5y4', '4007434'), + (516, 844, 'maybe', '2021-06-15 03:10:31', '2025-12-17 19:47:38', 'bdzYJ5y4', '4014338'), + (516, 845, 'maybe', '2021-06-24 03:25:31', '2025-12-17 19:47:38', 'bdzYJ5y4', '4015717'), + (516, 850, 'attending', '2021-08-25 20:45:10', '2025-12-17 19:47:42', 'bdzYJ5y4', '4015722'), + (516, 853, 'not_attending', '2021-08-03 21:26:53', '2025-12-17 19:47:41', 'bdzYJ5y4', '4015725'), + (516, 866, 'maybe', '2021-06-15 00:18:19', '2025-12-17 19:47:38', 'bdzYJ5y4', '4020424'), + (516, 867, 'attending', '2021-06-20 03:20:56', '2025-12-17 19:47:38', 'bdzYJ5y4', '4021848'), + (516, 869, 'maybe', '2021-06-28 06:09:36', '2025-12-17 19:47:38', 'bdzYJ5y4', '4136744'), + (516, 870, 'attending', '2021-07-03 00:29:55', '2025-12-17 19:47:39', 'bdzYJ5y4', '4136937'), + (516, 871, 'not_attending', '2021-07-07 21:01:04', '2025-12-17 19:47:39', 'bdzYJ5y4', '4136938'), + (516, 872, 'maybe', '2021-07-17 20:13:21', '2025-12-17 19:47:40', 'bdzYJ5y4', '4136947'), + (516, 873, 'not_attending', '2021-06-18 23:07:06', '2025-12-17 19:47:48', 'bdzYJ5y4', '4138297'), + (516, 875, 'not_attending', '2021-06-24 03:25:43', '2025-12-17 19:47:38', 'bdzYJ5y4', '4139816'), + (516, 879, 'maybe', '2021-06-24 03:25:13', '2025-12-17 19:47:38', 'bdzYJ5y4', '4147806'), + (516, 880, 'not_attending', '2021-06-18 23:07:14', '2025-12-17 19:47:48', 'bdzYJ5y4', '4205383'), + (516, 881, 'not_attending', '2021-06-20 03:19:51', '2025-12-17 19:47:38', 'bdzYJ5y4', '4205662'), + (516, 883, 'maybe', '2021-06-21 00:32:29', '2025-12-17 19:47:38', 'bdzYJ5y4', '4209121'), + (516, 884, 'not_attending', '2021-08-06 02:02:05', '2025-12-17 19:47:42', 'bdzYJ5y4', '4210314'), + (516, 885, 'attending', '2021-06-27 22:52:38', '2025-12-17 19:47:38', 'bdzYJ5y4', '4222370'), + (516, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'bdzYJ5y4', '4225444'), + (516, 888, 'not_attending', '2021-06-26 04:07:00', '2025-12-17 19:47:38', 'bdzYJ5y4', '4226312'), + (516, 889, 'not_attending', '2021-06-28 06:09:00', '2025-12-17 19:47:38', 'bdzYJ5y4', '4227492'), + (516, 890, 'attending', '2021-06-29 23:07:09', '2025-12-17 19:47:38', 'bdzYJ5y4', '4228666'), + (516, 894, 'maybe', '2021-07-18 23:23:50', '2025-12-17 19:47:39', 'bdzYJ5y4', '4229423'), + (516, 896, 'not_attending', '2021-06-28 06:09:07', '2025-12-17 19:47:38', 'bdzYJ5y4', '4231145'), + (516, 898, 'not_attending', '2021-06-30 02:24:27', '2025-12-17 19:47:38', 'bdzYJ5y4', '4236746'), + (516, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'bdzYJ5y4', '4239259'), + (516, 900, 'attending', '2021-07-18 23:24:35', '2025-12-17 19:47:40', 'bdzYJ5y4', '4240316'), + (516, 901, 'not_attending', '2021-07-26 21:23:46', '2025-12-17 19:47:40', 'bdzYJ5y4', '4240317'), + (516, 902, 'not_attending', '2021-07-27 21:52:21', '2025-12-17 19:47:41', 'bdzYJ5y4', '4240318'), + (516, 903, 'attending', '2021-08-07 02:16:20', '2025-12-17 19:47:42', 'bdzYJ5y4', '4240320'), + (516, 905, 'maybe', '2021-07-07 16:15:51', '2025-12-17 19:47:39', 'bdzYJ5y4', '4250163'), + (516, 914, 'not_attending', '2021-07-17 20:13:00', '2025-12-17 19:47:39', 'bdzYJ5y4', '4273767'), + (516, 915, 'maybe', '2021-07-17 20:13:12', '2025-12-17 19:47:39', 'bdzYJ5y4', '4273770'), + (516, 916, 'attending', '2021-07-22 21:27:50', '2025-12-17 19:47:40', 'bdzYJ5y4', '4273772'), + (516, 919, 'not_attending', '2021-07-17 20:08:34', '2025-12-17 19:47:39', 'bdzYJ5y4', '4275957'), + (516, 920, 'maybe', '2021-07-22 21:30:20', '2025-12-17 19:47:40', 'bdzYJ5y4', '4277819'), + (516, 922, 'not_attending', '2021-07-20 00:03:51', '2025-12-17 19:47:40', 'bdzYJ5y4', '4280811'), + (516, 923, 'not_attending', '2021-07-20 00:03:35', '2025-12-17 19:47:40', 'bdzYJ5y4', '4292773'), + (516, 927, 'maybe', '2021-07-22 21:30:31', '2025-12-17 19:47:40', 'bdzYJ5y4', '4297216'), + (516, 928, 'maybe', '2021-07-22 21:30:38', '2025-12-17 19:47:40', 'bdzYJ5y4', '4297218'), + (516, 929, 'not_attending', '2021-08-03 21:26:04', '2025-12-17 19:47:41', 'bdzYJ5y4', '4297223'), + (516, 931, 'attending', '2021-07-26 21:23:03', '2025-12-17 19:47:40', 'bdzYJ5y4', '4301535'), + (516, 933, 'attending', '2021-07-26 17:26:40', '2025-12-17 19:47:40', 'bdzYJ5y4', '4301723'), + (516, 934, 'maybe', '2021-08-03 21:25:40', '2025-12-17 19:47:41', 'bdzYJ5y4', '4302093'), + (516, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'bdzYJ5y4', '4304151'), + (516, 937, 'not_attending', '2021-07-27 21:48:53', '2025-12-17 19:47:40', 'bdzYJ5y4', '4306596'), + (516, 940, 'not_attending', '2021-07-27 21:51:49', '2025-12-17 19:47:40', 'bdzYJ5y4', '4309049'), + (516, 942, 'not_attending', '2021-07-26 21:23:56', '2025-12-17 19:47:40', 'bdzYJ5y4', '4310297'), + (516, 943, 'not_attending', '2021-07-27 21:52:30', '2025-12-17 19:47:41', 'bdzYJ5y4', '4310979'), + (516, 944, 'not_attending', '2021-08-01 23:50:18', '2025-12-17 19:47:41', 'bdzYJ5y4', '4310980'), + (516, 945, 'not_attending', '2021-08-01 23:50:23', '2025-12-17 19:47:42', 'bdzYJ5y4', '4310981'), + (516, 946, 'maybe', '2021-08-01 23:49:24', '2025-12-17 19:47:40', 'bdzYJ5y4', '4314835'), + (516, 947, 'attending', '2021-08-06 01:59:19', '2025-12-17 19:47:41', 'bdzYJ5y4', '4315713'), + (516, 952, 'attending', '2021-08-01 23:49:50', '2025-12-17 19:47:41', 'bdzYJ5y4', '4318286'), + (516, 954, 'maybe', '2021-08-06 02:01:49', '2025-12-17 19:47:41', 'bdzYJ5y4', '4331303'), + (516, 955, 'maybe', '2021-08-06 02:01:42', '2025-12-17 19:47:41', 'bdzYJ5y4', '4331588'), + (516, 956, 'not_attending', '2021-08-03 21:25:31', '2025-12-17 19:47:40', 'bdzYJ5y4', '4331968'), + (516, 957, 'not_attending', '2021-08-06 01:59:47', '2025-12-17 19:47:41', 'bdzYJ5y4', '4338834'), + (516, 958, 'not_attending', '2021-08-07 02:16:00', '2025-12-17 19:47:41', 'bdzYJ5y4', '4342996'), + (516, 960, 'not_attending', '2021-08-09 22:17:03', '2025-12-17 19:47:41', 'bdzYJ5y4', '4344519'), + (516, 961, 'not_attending', '2021-08-13 17:04:02', '2025-12-17 19:47:42', 'bdzYJ5y4', '4345519'), + (516, 962, 'not_attending', '2021-08-09 22:17:12', '2025-12-17 19:47:41', 'bdzYJ5y4', '4346305'), + (516, 969, 'not_attending', '2021-08-13 17:04:07', '2025-12-17 19:47:42', 'bdzYJ5y4', '4356699'), + (516, 970, 'not_attending', '2021-08-13 17:03:57', '2025-12-17 19:47:42', 'bdzYJ5y4', '4356798'), + (516, 971, 'maybe', '2021-09-05 20:51:31', '2025-12-17 19:47:43', 'bdzYJ5y4', '4356801'), + (516, 973, 'attending', '2021-08-21 18:36:39', '2025-12-17 19:47:42', 'bdzYJ5y4', '4366186'), + (516, 974, 'attending', '2021-08-22 20:20:14', '2025-12-17 19:47:42', 'bdzYJ5y4', '4366187'), + (516, 980, 'not_attending', '2021-08-21 18:36:30', '2025-12-17 19:47:42', 'bdzYJ5y4', '4380358'), + (516, 981, 'not_attending', '2021-08-25 20:48:12', '2025-12-17 19:47:42', 'bdzYJ5y4', '4387305'), + (516, 985, 'attending', '2021-08-21 18:36:22', '2025-12-17 19:47:42', 'bdzYJ5y4', '4391748'), + (516, 987, 'attending', '2021-09-01 18:49:12', '2025-12-17 19:47:43', 'bdzYJ5y4', '4402634'), + (516, 988, 'not_attending', '2021-08-25 20:48:17', '2025-12-17 19:47:42', 'bdzYJ5y4', '4402823'), + (516, 989, 'not_attending', '2021-09-05 20:52:07', '2025-12-17 19:47:43', 'bdzYJ5y4', '4414282'), + (516, 990, 'attending', '2021-08-29 22:25:39', '2025-12-17 19:47:43', 'bdzYJ5y4', '4420735'), + (516, 991, 'attending', '2021-09-06 23:31:04', '2025-12-17 19:47:43', 'bdzYJ5y4', '4420738'), + (516, 992, 'not_attending', '2021-09-14 01:04:28', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420739'), + (516, 993, 'attending', '2021-09-19 20:51:18', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420741'), + (516, 994, 'maybe', '2021-10-02 12:47:20', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420742'), + (516, 995, 'not_attending', '2021-10-08 20:46:58', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420744'), + (516, 996, 'attending', '2021-10-10 21:11:29', '2025-12-17 19:47:35', 'bdzYJ5y4', '4420747'), + (516, 997, 'attending', '2021-10-12 02:09:43', '2025-12-17 19:47:35', 'bdzYJ5y4', '4420748'), + (516, 998, 'not_attending', '2021-10-12 02:09:31', '2025-12-17 19:47:36', 'bdzYJ5y4', '4420749'), + (516, 999, 'not_attending', '2021-08-29 22:25:22', '2025-12-17 19:47:43', 'bdzYJ5y4', '4421150'), + (516, 1000, 'not_attending', '2021-08-30 01:15:27', '2025-12-17 19:47:43', 'bdzYJ5y4', '4424456'), + (516, 1001, 'maybe', '2021-08-30 01:15:32', '2025-12-17 19:47:43', 'bdzYJ5y4', '4424687'), + (516, 1002, 'not_attending', '2021-08-30 21:16:23', '2025-12-17 19:47:43', 'bdzYJ5y4', '4424932'), + (516, 1004, 'maybe', '2021-09-09 19:56:51', '2025-12-17 19:47:43', 'bdzYJ5y4', '4438804'), + (516, 1005, 'not_attending', '2021-09-22 18:23:02', '2025-12-17 19:47:34', 'bdzYJ5y4', '4438807'), + (516, 1013, 'attending', '2021-09-02 23:45:54', '2025-12-17 19:47:43', 'bdzYJ5y4', '4438817'), + (516, 1014, 'not_attending', '2021-09-05 20:51:06', '2025-12-17 19:47:43', 'bdzYJ5y4', '4439233'), + (516, 1015, 'not_attending', '2021-09-13 22:27:15', '2025-12-17 19:47:43', 'bdzYJ5y4', '4440800'), + (516, 1016, 'not_attending', '2021-09-05 20:51:53', '2025-12-17 19:47:43', 'bdzYJ5y4', '4441271'), + (516, 1017, 'maybe', '2021-09-05 20:51:19', '2025-12-17 19:47:43', 'bdzYJ5y4', '4441822'), + (516, 1018, 'maybe', '2021-09-05 20:51:00', '2025-12-17 19:47:43', 'bdzYJ5y4', '4448883'), + (516, 1019, 'maybe', '2021-09-09 19:55:15', '2025-12-17 19:47:43', 'bdzYJ5y4', '4450515'), + (516, 1020, 'maybe', '2021-09-13 22:38:51', '2025-12-17 19:47:43', 'bdzYJ5y4', '4451787'), + (516, 1021, 'maybe', '2021-09-17 13:53:37', '2025-12-17 19:47:34', 'bdzYJ5y4', '4451803'), + (516, 1022, 'not_attending', '2021-09-15 22:53:55', '2025-12-17 19:47:43', 'bdzYJ5y4', '4458628'), + (516, 1023, 'attending', '2021-09-09 19:52:18', '2025-12-17 19:47:43', 'bdzYJ5y4', '4461883'), + (516, 1024, 'not_attending', '2021-09-10 02:04:33', '2025-12-17 19:47:43', 'bdzYJ5y4', '4462044'), + (516, 1025, 'maybe', '2021-09-10 01:54:31', '2025-12-17 19:47:43', 'bdzYJ5y4', '4462052'), + (516, 1027, 'not_attending', '2021-09-22 18:23:10', '2025-12-17 19:47:34', 'bdzYJ5y4', '4472982'), + (516, 1028, 'not_attending', '2021-09-20 00:16:21', '2025-12-17 19:47:34', 'bdzYJ5y4', '4472983'), + (516, 1029, 'not_attending', '2021-09-13 22:27:08', '2025-12-17 19:47:43', 'bdzYJ5y4', '4473063'), + (516, 1030, 'not_attending', '2021-09-17 13:53:28', '2025-12-17 19:47:34', 'bdzYJ5y4', '4473064'), + (516, 1031, 'not_attending', '2021-09-22 18:22:44', '2025-12-17 19:47:34', 'bdzYJ5y4', '4473789'), + (516, 1034, 'not_attending', '2021-09-17 13:52:57', '2025-12-17 19:47:43', 'bdzYJ5y4', '4486265'), + (516, 1035, 'maybe', '2021-09-20 00:15:37', '2025-12-17 19:47:34', 'bdzYJ5y4', '4492184'), + (516, 1036, 'attending', '2021-09-22 18:22:16', '2025-12-17 19:47:34', 'bdzYJ5y4', '4493166'), + (516, 1037, 'not_attending', '2021-09-22 14:02:05', '2025-12-17 19:47:34', 'bdzYJ5y4', '4493233'), + (516, 1038, 'attending', '2021-09-20 00:16:24', '2025-12-17 19:47:34', 'bdzYJ5y4', '4496603'), + (516, 1042, 'attending', '2021-11-22 23:20:11', '2025-12-17 19:47:37', 'bdzYJ5y4', '4496607'), + (516, 1045, 'not_attending', '2021-10-13 02:11:18', '2025-12-17 19:47:36', 'bdzYJ5y4', '4496610'), + (516, 1046, 'attending', '2021-10-16 14:46:11', '2025-12-17 19:47:35', 'bdzYJ5y4', '4496611'), + (516, 1048, 'attending', '2021-11-11 18:18:31', '2025-12-17 19:47:36', 'bdzYJ5y4', '4496613'), + (516, 1049, 'attending', '2022-01-22 23:12:31', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496614'), + (516, 1050, 'attending', '2022-01-29 20:37:11', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496615'), + (516, 1051, 'attending', '2022-01-31 19:17:13', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496616'), + (516, 1053, 'attending', '2022-02-15 17:57:04', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496618'), + (516, 1054, 'attending', '2022-03-14 01:54:40', '2025-12-17 19:47:25', 'bdzYJ5y4', '4496619'), + (516, 1056, 'maybe', '2022-01-04 17:03:53', '2025-12-17 19:47:31', 'bdzYJ5y4', '4496622'), + (516, 1058, 'not_attending', '2022-02-15 17:57:13', '2025-12-17 19:47:33', 'bdzYJ5y4', '4496625'), + (516, 1059, 'not_attending', '2022-03-11 16:51:55', '2025-12-17 19:47:33', 'bdzYJ5y4', '4496626'), + (516, 1060, 'attending', '2022-03-21 13:51:30', '2025-12-17 19:47:25', 'bdzYJ5y4', '4496627'), + (516, 1061, 'not_attending', '2022-02-12 22:45:04', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496628'), + (516, 1062, 'attending', '2022-02-26 17:24:08', '2025-12-17 19:47:33', 'bdzYJ5y4', '4496629'), + (516, 1063, 'not_attending', '2021-09-22 18:23:20', '2025-12-17 19:47:34', 'bdzYJ5y4', '4496630'), + (516, 1066, 'not_attending', '2021-09-22 18:23:28', '2025-12-17 19:47:34', 'bdzYJ5y4', '4506039'), + (516, 1067, 'attending', '2021-09-23 02:08:27', '2025-12-17 19:47:34', 'bdzYJ5y4', '4508342'), + (516, 1068, 'maybe', '2021-09-28 01:28:04', '2025-12-17 19:47:34', 'bdzYJ5y4', '4511471'), + (516, 1070, 'not_attending', '2021-09-28 21:41:34', '2025-12-17 19:47:34', 'bdzYJ5y4', '4512562'), + (516, 1071, 'not_attending', '2021-10-04 19:42:57', '2025-12-17 19:47:34', 'bdzYJ5y4', '4516078'), + (516, 1072, 'maybe', '2021-10-02 21:43:32', '2025-12-17 19:47:34', 'bdzYJ5y4', '4516287'), + (516, 1074, 'not_attending', '2021-09-29 21:20:06', '2025-12-17 19:47:34', 'bdzYJ5y4', '4528953'), + (516, 1077, 'not_attending', '2021-10-13 02:10:43', '2025-12-17 19:47:34', 'bdzYJ5y4', '4540903'), + (516, 1079, 'not_attending', '2021-10-20 17:07:07', '2025-12-17 19:47:35', 'bdzYJ5y4', '4563823'), + (516, 1081, 'not_attending', '2021-10-12 01:47:50', '2025-12-17 19:47:34', 'bdzYJ5y4', '4564602'), + (516, 1082, 'not_attending', '2021-10-14 20:16:30', '2025-12-17 19:47:35', 'bdzYJ5y4', '4566762'), + (516, 1083, 'not_attending', '2021-10-12 02:08:27', '2025-12-17 19:47:34', 'bdzYJ5y4', '4566768'), + (516, 1084, 'not_attending', '2021-10-12 02:08:20', '2025-12-17 19:47:35', 'bdzYJ5y4', '4566769'), + (516, 1085, 'not_attending', '2021-12-21 02:20:21', '2025-12-17 19:47:31', 'bdzYJ5y4', '4568542'), + (516, 1086, 'attending', '2021-10-13 02:08:21', '2025-12-17 19:47:34', 'bdzYJ5y4', '4568602'), + (516, 1087, 'not_attending', '2021-10-16 14:45:55', '2025-12-17 19:47:35', 'bdzYJ5y4', '4572153'), + (516, 1090, 'maybe', '2021-10-17 19:18:43', '2025-12-17 19:47:35', 'bdzYJ5y4', '4574713'), + (516, 1093, 'attending', '2021-10-20 18:44:14', '2025-12-17 19:47:35', 'bdzYJ5y4', '4585962'), + (516, 1094, 'maybe', '2021-10-26 02:07:14', '2025-12-17 19:47:36', 'bdzYJ5y4', '4587337'), + (516, 1095, 'not_attending', '2021-10-27 20:29:54', '2025-12-17 19:47:36', 'bdzYJ5y4', '4596356'), + (516, 1097, 'not_attending', '2021-11-04 00:07:15', '2025-12-17 19:47:36', 'bdzYJ5y4', '4598860'), + (516, 1098, 'maybe', '2021-11-11 00:33:19', '2025-12-17 19:47:36', 'bdzYJ5y4', '4598861'), + (516, 1099, 'not_attending', '2021-10-31 22:59:23', '2025-12-17 19:47:36', 'bdzYJ5y4', '4602797'), + (516, 1100, 'not_attending', '2021-11-08 02:51:40', '2025-12-17 19:47:36', 'bdzYJ5y4', '4607305'), + (516, 1101, 'not_attending', '2021-11-11 15:10:56', '2025-12-17 19:47:36', 'bdzYJ5y4', '4607339'), + (516, 1102, 'maybe', '2021-11-08 02:52:39', '2025-12-17 19:47:37', 'bdzYJ5y4', '4612098'), + (516, 1103, 'not_attending', '2021-11-09 15:58:38', '2025-12-17 19:47:36', 'bdzYJ5y4', '4616350'), + (516, 1104, 'attending', '2021-11-11 18:18:29', '2025-12-17 19:47:36', 'bdzYJ5y4', '4618310'), + (516, 1105, 'not_attending', '2021-11-08 23:20:32', '2025-12-17 19:47:36', 'bdzYJ5y4', '4618567'), + (516, 1106, 'not_attending', '2021-11-12 23:48:50', '2025-12-17 19:47:36', 'bdzYJ5y4', '4620452'), + (516, 1107, 'not_attending', '2021-11-17 00:18:23', '2025-12-17 19:47:37', 'bdzYJ5y4', '4620697'), + (516, 1108, 'not_attending', '2021-11-17 23:22:47', '2025-12-17 19:47:37', 'bdzYJ5y4', '4632276'), + (516, 1114, 'attending', '2021-11-11 18:18:19', '2025-12-17 19:47:36', 'bdzYJ5y4', '4637896'), + (516, 1116, 'not_attending', '2021-11-29 00:47:40', '2025-12-17 19:47:37', 'bdzYJ5y4', '4642994'), + (516, 1117, 'not_attending', '2021-12-08 03:35:45', '2025-12-17 19:47:38', 'bdzYJ5y4', '4642995'), + (516, 1118, 'maybe', '2021-12-06 15:34:56', '2025-12-17 19:47:38', 'bdzYJ5y4', '4642996'), + (516, 1119, 'not_attending', '2021-12-21 02:20:11', '2025-12-17 19:47:31', 'bdzYJ5y4', '4642997'), + (516, 1124, 'not_attending', '2021-12-13 19:25:10', '2025-12-17 19:47:38', 'bdzYJ5y4', '4644025'), + (516, 1126, 'attending', '2021-12-12 00:27:04', '2025-12-17 19:47:38', 'bdzYJ5y4', '4645687'), + (516, 1127, 'attending', '2021-12-12 00:27:14', '2025-12-17 19:47:38', 'bdzYJ5y4', '4645698'), + (516, 1128, 'not_attending', '2021-11-17 00:18:43', '2025-12-17 19:47:37', 'bdzYJ5y4', '4645704'), + (516, 1129, 'attending', '2021-11-14 23:38:00', '2025-12-17 19:47:37', 'bdzYJ5y4', '4645705'), + (516, 1130, 'attending', '2021-11-29 00:48:06', '2025-12-17 19:47:37', 'bdzYJ5y4', '4658824'), + (516, 1131, 'not_attending', '2021-12-18 19:09:38', '2025-12-17 19:47:31', 'bdzYJ5y4', '4658825'), + (516, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'bdzYJ5y4', '4668385'), + (516, 1135, 'not_attending', '2021-11-27 00:51:27', '2025-12-17 19:47:37', 'bdzYJ5y4', '4670469'), + (516, 1139, 'maybe', '2021-11-29 00:47:55', '2025-12-17 19:47:37', 'bdzYJ5y4', '4675604'), + (516, 1140, 'attending', '2021-12-03 22:41:10', '2025-12-17 19:47:37', 'bdzYJ5y4', '4679701'), + (516, 1142, 'not_attending', '2021-12-06 15:33:09', '2025-12-17 19:47:37', 'bdzYJ5y4', '4681923'), + (516, 1144, 'not_attending', '2021-12-07 20:15:34', '2025-12-17 19:47:37', 'bdzYJ5y4', '4687090'), + (516, 1145, 'attending', '2021-12-06 15:33:37', '2025-12-17 19:47:38', 'bdzYJ5y4', '4691157'), + (516, 1146, 'maybe', '2021-12-09 19:35:25', '2025-12-17 19:47:38', 'bdzYJ5y4', '4692841'), + (516, 1149, 'attending', '2021-12-08 03:35:16', '2025-12-17 19:47:38', 'bdzYJ5y4', '4694407'), + (516, 1150, 'maybe', '2021-12-16 22:45:08', '2025-12-17 19:47:38', 'bdzYJ5y4', '4706262'), + (516, 1151, 'not_attending', '2022-01-05 04:38:20', '2025-12-17 19:47:31', 'bdzYJ5y4', '4708704'), + (516, 1152, 'not_attending', '2022-01-10 17:34:16', '2025-12-17 19:47:31', 'bdzYJ5y4', '4708705'), + (516, 1153, 'not_attending', '2022-01-18 13:42:21', '2025-12-17 19:47:32', 'bdzYJ5y4', '4708707'), + (516, 1154, 'not_attending', '2022-01-26 21:23:19', '2025-12-17 19:47:32', 'bdzYJ5y4', '4708708'), + (516, 1156, 'not_attending', '2021-12-21 02:20:00', '2025-12-17 19:47:31', 'bdzYJ5y4', '4715207'), + (516, 1159, 'not_attending', '2022-01-03 02:22:06', '2025-12-17 19:47:31', 'bdzYJ5y4', '4717532'), + (516, 1162, 'maybe', '2021-12-28 21:42:58', '2025-12-17 19:47:31', 'bdzYJ5y4', '4718771'), + (516, 1163, 'not_attending', '2022-01-03 02:23:11', '2025-12-17 19:47:31', 'bdzYJ5y4', '4724206'), + (516, 1164, 'not_attending', '2022-01-03 02:21:49', '2025-12-17 19:47:31', 'bdzYJ5y4', '4724208'), + (516, 1165, 'not_attending', '2022-01-03 02:22:00', '2025-12-17 19:47:31', 'bdzYJ5y4', '4724210'), + (516, 1167, 'not_attending', '2022-01-03 02:22:44', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731015'), + (516, 1168, 'not_attending', '2022-01-03 02:22:39', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731043'), + (516, 1169, 'not_attending', '2022-01-03 02:22:48', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731044'), + (516, 1170, 'not_attending', '2022-01-04 14:21:32', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731045'), + (516, 1173, 'attending', '2022-01-04 14:21:18', '2025-12-17 19:47:31', 'bdzYJ5y4', '4736495'), + (516, 1174, 'not_attending', '2022-01-15 06:05:31', '2025-12-17 19:47:31', 'bdzYJ5y4', '4736496'), + (516, 1175, 'attending', '2022-01-20 20:56:37', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736497'), + (516, 1176, 'attending', '2022-01-31 00:52:40', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736498'), + (516, 1177, 'not_attending', '2022-02-12 22:45:07', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736499'), + (516, 1178, 'attending', '2022-01-29 20:37:14', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736500'), + (516, 1179, 'attending', '2022-02-15 17:54:38', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736501'), + (516, 1180, 'not_attending', '2022-02-15 17:57:10', '2025-12-17 19:47:33', 'bdzYJ5y4', '4736502'), + (516, 1181, 'attending', '2022-02-26 17:24:05', '2025-12-17 19:47:33', 'bdzYJ5y4', '4736503'), + (516, 1182, 'not_attending', '2022-03-11 16:51:50', '2025-12-17 19:47:33', 'bdzYJ5y4', '4736504'), + (516, 1184, 'not_attending', '2022-01-12 14:42:07', '2025-12-17 19:47:31', 'bdzYJ5y4', '4742350'), + (516, 1185, 'attending', '2022-01-09 04:45:33', '2025-12-17 19:47:31', 'bdzYJ5y4', '4746789'), + (516, 1188, 'not_attending', '2022-01-11 04:04:42', '2025-12-17 19:47:32', 'bdzYJ5y4', '4753929'), + (516, 1193, 'not_attending', '2022-01-21 21:55:39', '2025-12-17 19:47:32', 'bdzYJ5y4', '4759563'), + (516, 1196, 'attending', '2022-01-19 20:01:46', '2025-12-17 19:47:32', 'bdzYJ5y4', '4765583'), + (516, 1200, 'not_attending', '2022-01-17 23:20:43', '2025-12-17 19:47:32', 'bdzYJ5y4', '4766830'), + (516, 1202, 'not_attending', '2022-01-26 21:23:24', '2025-12-17 19:47:32', 'bdzYJ5y4', '4769423'), + (516, 1203, 'maybe', '2022-01-22 23:09:40', '2025-12-17 19:47:32', 'bdzYJ5y4', '4773535'), + (516, 1204, 'not_attending', '2022-02-13 17:42:32', '2025-12-17 19:47:32', 'bdzYJ5y4', '4773576'), + (516, 1205, 'attending', '2022-03-13 21:40:23', '2025-12-17 19:47:33', 'bdzYJ5y4', '4773577'), + (516, 1206, 'attending', '2022-03-27 20:27:45', '2025-12-17 19:47:27', 'bdzYJ5y4', '4773578'), + (516, 1207, 'attending', '2022-05-06 21:01:00', '2025-12-17 19:47:28', 'bdzYJ5y4', '4773579'), + (516, 1214, 'not_attending', '2022-02-15 20:35:16', '2025-12-17 19:47:32', 'bdzYJ5y4', '4780761'), + (516, 1216, 'not_attending', '2022-01-27 20:30:33', '2025-12-17 19:47:32', 'bdzYJ5y4', '4781137'), + (516, 1222, 'not_attending', '2022-02-15 20:35:12', '2025-12-17 19:47:32', 'bdzYJ5y4', '5015628'), + (516, 1223, 'not_attending', '2022-02-01 20:35:17', '2025-12-17 19:47:32', 'bdzYJ5y4', '5015635'), + (516, 1224, 'not_attending', '2022-02-01 20:34:40', '2025-12-17 19:47:32', 'bdzYJ5y4', '5016682'), + (516, 1225, 'maybe', '2022-02-03 23:22:51', '2025-12-17 19:47:32', 'bdzYJ5y4', '5019063'), + (516, 1228, 'not_attending', '2022-02-10 14:40:05', '2025-12-17 19:47:32', 'bdzYJ5y4', '5028238'), + (516, 1229, 'not_attending', '2022-02-15 20:35:30', '2025-12-17 19:47:32', 'bdzYJ5y4', '5034963'), + (516, 1231, 'not_attending', '2022-02-21 03:50:34', '2025-12-17 19:47:33', 'bdzYJ5y4', '5037637'), + (516, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'bdzYJ5y4', '5038850'), + (516, 1234, 'not_attending', '2022-02-15 20:35:07', '2025-12-17 19:47:32', 'bdzYJ5y4', '5042197'), + (516, 1235, 'not_attending', '2022-02-15 20:35:05', '2025-12-17 19:47:32', 'bdzYJ5y4', '5044505'), + (516, 1236, 'not_attending', '2022-02-14 23:33:47', '2025-12-17 19:47:32', 'bdzYJ5y4', '5045826'), + (516, 1238, 'not_attending', '2022-02-21 03:50:26', '2025-12-17 19:47:32', 'bdzYJ5y4', '5052236'), + (516, 1239, 'not_attending', '2022-03-02 04:39:15', '2025-12-17 19:47:33', 'bdzYJ5y4', '5052238'), + (516, 1240, 'not_attending', '2022-03-11 23:17:23', '2025-12-17 19:47:33', 'bdzYJ5y4', '5052239'), + (516, 1241, 'not_attending', '2022-03-16 00:56:33', '2025-12-17 19:47:25', 'bdzYJ5y4', '5052240'), + (516, 1242, 'not_attending', '2022-03-24 14:34:35', '2025-12-17 19:47:25', 'bdzYJ5y4', '5052241'), + (516, 1243, 'not_attending', '2022-03-04 22:43:44', '2025-12-17 19:47:33', 'bdzYJ5y4', '5058336'), + (516, 1244, 'not_attending', '2022-02-21 20:41:01', '2025-12-17 19:47:33', 'bdzYJ5y4', '5060490'), + (516, 1245, 'maybe', '2022-02-23 05:26:34', '2025-12-17 19:47:33', 'bdzYJ5y4', '5061301'), + (516, 1246, 'not_attending', '2022-03-02 19:17:59', '2025-12-17 19:47:33', 'bdzYJ5y4', '5064727'), + (516, 1249, 'not_attending', '2022-03-04 22:44:08', '2025-12-17 19:47:33', 'bdzYJ5y4', '5068530'), + (516, 1250, 'not_attending', '2022-02-28 22:14:42', '2025-12-17 19:47:33', 'bdzYJ5y4', '5069735'), + (516, 1252, 'not_attending', '2022-02-28 22:14:38', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129121'), + (516, 1253, 'maybe', '2022-02-28 22:14:06', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129122'), + (516, 1254, 'not_attending', '2022-03-02 19:17:26', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129129'), + (516, 1255, 'not_attending', '2022-02-28 00:15:05', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129140'), + (516, 1258, 'not_attending', '2022-03-02 19:17:57', '2025-12-17 19:47:33', 'bdzYJ5y4', '5132531'), + (516, 1259, 'attending', '2022-02-28 22:20:57', '2025-12-17 19:47:33', 'bdzYJ5y4', '5132533'), + (516, 1261, 'not_attending', '2022-03-04 22:44:03', '2025-12-17 19:47:33', 'bdzYJ5y4', '5154274'), + (516, 1264, 'not_attending', '2022-03-21 13:51:58', '2025-12-17 19:47:25', 'bdzYJ5y4', '5160281'), + (516, 1265, 'not_attending', '2022-03-10 05:23:42', '2025-12-17 19:47:33', 'bdzYJ5y4', '5160862'), + (516, 1266, 'attending', '2022-03-14 23:46:27', '2025-12-17 19:47:33', 'bdzYJ5y4', '5166407'), + (516, 1267, 'not_attending', '2022-03-13 21:57:55', '2025-12-17 19:47:25', 'bdzYJ5y4', '5169578'), + (516, 1269, 'attending', '2022-03-13 21:57:33', '2025-12-17 19:47:25', 'bdzYJ5y4', '5179439'), + (516, 1270, 'not_attending', '2022-03-16 00:56:25', '2025-12-17 19:47:25', 'bdzYJ5y4', '5181277'), + (516, 1271, 'not_attending', '2022-03-15 13:59:47', '2025-12-17 19:47:25', 'bdzYJ5y4', '5181648'), + (516, 1272, 'attending', '2022-03-15 21:26:59', '2025-12-17 19:47:25', 'bdzYJ5y4', '5186582'), + (516, 1273, 'attending', '2022-03-26 01:10:48', '2025-12-17 19:47:25', 'bdzYJ5y4', '5186583'), + (516, 1274, 'attending', '2022-03-27 03:21:49', '2025-12-17 19:47:26', 'bdzYJ5y4', '5186585'), + (516, 1275, 'attending', '2022-03-27 03:21:58', '2025-12-17 19:47:26', 'bdzYJ5y4', '5186587'), + (516, 1276, 'not_attending', '2022-03-23 20:09:57', '2025-12-17 19:47:25', 'bdzYJ5y4', '5186820'), + (516, 1278, 'not_attending', '2022-03-17 11:18:37', '2025-12-17 19:47:33', 'bdzYJ5y4', '5186920'), + (516, 1279, 'maybe', '2022-03-20 17:18:06', '2025-12-17 19:47:25', 'bdzYJ5y4', '5187212'), + (516, 1280, 'not_attending', '2022-03-17 20:08:55', '2025-12-17 19:47:25', 'bdzYJ5y4', '5189749'), + (516, 1281, 'attending', '2022-04-08 01:09:41', '2025-12-17 19:47:27', 'bdzYJ5y4', '5190437'), + (516, 1282, 'not_attending', '2022-03-18 00:29:53', '2025-12-17 19:47:25', 'bdzYJ5y4', '5191241'), + (516, 1284, 'attending', '2022-04-13 18:30:20', '2025-12-17 19:47:27', 'bdzYJ5y4', '5195095'), + (516, 1285, 'not_attending', '2022-03-22 13:42:48', '2025-12-17 19:47:25', 'bdzYJ5y4', '5196763'), + (516, 1287, 'not_attending', '2022-03-23 20:10:02', '2025-12-17 19:47:25', 'bdzYJ5y4', '5199425'), + (516, 1288, 'not_attending', '2022-03-24 14:34:29', '2025-12-17 19:47:25', 'bdzYJ5y4', '5199460'), + (516, 1289, 'not_attending', '2022-03-24 14:34:21', '2025-12-17 19:47:25', 'bdzYJ5y4', '5200190'), + (516, 1290, 'not_attending', '2022-03-24 14:34:28', '2025-12-17 19:47:25', 'bdzYJ5y4', '5200196'), + (516, 1291, 'attending', '2022-03-24 02:22:36', '2025-12-17 19:47:25', 'bdzYJ5y4', '5200458'), + (516, 1292, 'not_attending', '2022-03-28 13:30:23', '2025-12-17 19:47:25', 'bdzYJ5y4', '5214043'), + (516, 1293, 'attending', '2022-03-27 20:27:42', '2025-12-17 19:47:27', 'bdzYJ5y4', '5214641'), + (516, 1294, 'not_attending', '2022-03-31 20:49:39', '2025-12-17 19:47:26', 'bdzYJ5y4', '5214686'), + (516, 1296, 'attending', '2022-04-02 17:48:40', '2025-12-17 19:47:26', 'bdzYJ5y4', '5215985'), + (516, 1297, 'attending', '2022-03-28 15:17:22', '2025-12-17 19:47:25', 'bdzYJ5y4', '5215989'), + (516, 1298, 'not_attending', '2022-03-31 02:43:36', '2025-12-17 19:47:25', 'bdzYJ5y4', '5216645'), + (516, 1301, 'not_attending', '2022-03-30 12:36:17', '2025-12-17 19:47:26', 'bdzYJ5y4', '5218175'), + (516, 1302, 'maybe', '2022-04-05 02:38:02', '2025-12-17 19:47:27', 'bdzYJ5y4', '5220867'), + (516, 1304, 'not_attending', '2022-04-05 02:37:51', '2025-12-17 19:47:26', 'bdzYJ5y4', '5223468'), + (516, 1305, 'not_attending', '2022-04-08 03:04:08', '2025-12-17 19:47:27', 'bdzYJ5y4', '5223673'), + (516, 1306, 'not_attending', '2022-04-05 02:37:48', '2025-12-17 19:47:26', 'bdzYJ5y4', '5223682'), + (516, 1307, 'not_attending', '2022-04-05 02:37:54', '2025-12-17 19:47:26', 'bdzYJ5y4', '5223686'), + (516, 1308, 'not_attending', '2022-04-08 12:02:26', '2025-12-17 19:47:27', 'bdzYJ5y4', '5226703'), + (516, 1309, 'not_attending', '2022-04-06 23:50:28', '2025-12-17 19:47:26', 'bdzYJ5y4', '5227432'), + (516, 1311, 'attending', '2022-04-08 12:01:51', '2025-12-17 19:47:27', 'bdzYJ5y4', '5231430'), + (516, 1312, 'attending', '2022-04-15 23:47:46', '2025-12-17 19:47:27', 'bdzYJ5y4', '5231459'), + (516, 1313, 'not_attending', '2022-04-12 00:53:17', '2025-12-17 19:47:27', 'bdzYJ5y4', '5231461'), + (516, 1314, 'not_attending', '2022-04-11 20:56:00', '2025-12-17 19:47:27', 'bdzYJ5y4', '5233137'), + (516, 1315, 'not_attending', '2022-04-15 21:39:04', '2025-12-17 19:47:27', 'bdzYJ5y4', '5237522'), + (516, 1316, 'not_attending', '2022-04-12 00:54:44', '2025-12-17 19:47:27', 'bdzYJ5y4', '5237536'), + (516, 1317, 'not_attending', '2022-04-11 20:55:58', '2025-12-17 19:47:27', 'bdzYJ5y4', '5237543'), + (516, 1318, 'not_attending', '2022-04-13 20:01:52', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238343'), + (516, 1319, 'maybe', '2022-04-15 14:08:06', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238353'), + (516, 1320, 'maybe', '2022-04-24 21:51:01', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238354'), + (516, 1321, 'not_attending', '2022-04-18 22:40:21', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238355'), + (516, 1322, 'not_attending', '2022-04-19 19:25:40', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238356'), + (516, 1323, 'not_attending', '2022-04-20 03:14:18', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238357'), + (516, 1325, 'not_attending', '2022-04-15 02:06:13', '2025-12-17 19:47:28', 'bdzYJ5y4', '5238361'), + (516, 1326, 'not_attending', '2022-04-26 19:55:46', '2025-12-17 19:47:28', 'bdzYJ5y4', '5238362'), + (516, 1327, 'not_attending', '2022-04-25 19:25:37', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238445'), + (516, 1328, 'not_attending', '2022-04-13 01:06:11', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238759'), + (516, 1330, 'not_attending', '2022-04-18 22:39:36', '2025-12-17 19:47:27', 'bdzYJ5y4', '5242155'), + (516, 1331, 'not_attending', '2022-04-18 22:40:17', '2025-12-17 19:47:27', 'bdzYJ5y4', '5242156'), + (516, 1332, 'not_attending', '2022-04-13 14:46:12', '2025-12-17 19:47:27', 'bdzYJ5y4', '5243274'), + (516, 1333, 'not_attending', '2022-04-15 14:07:52', '2025-12-17 19:47:27', 'bdzYJ5y4', '5243711'), + (516, 1336, 'not_attending', '2022-04-18 22:39:50', '2025-12-17 19:47:27', 'bdzYJ5y4', '5244915'), + (516, 1337, 'not_attending', '2022-04-20 16:13:55', '2025-12-17 19:47:27', 'bdzYJ5y4', '5245036'), + (516, 1340, 'not_attending', '2022-04-26 19:55:30', '2025-12-17 19:47:27', 'bdzYJ5y4', '5245754'), + (516, 1341, 'maybe', '2022-05-01 17:35:23', '2025-12-17 19:47:28', 'bdzYJ5y4', '5245755'), + (516, 1344, 'attending', '2022-04-25 19:26:07', '2025-12-17 19:47:28', 'bdzYJ5y4', '5247465'), + (516, 1345, 'attending', '2022-04-21 18:08:07', '2025-12-17 19:47:27', 'bdzYJ5y4', '5247466'), + (516, 1346, 'attending', '2022-04-21 18:08:05', '2025-12-17 19:47:27', 'bdzYJ5y4', '5247467'), + (516, 1349, 'not_attending', '2022-04-19 17:15:12', '2025-12-17 19:47:27', 'bdzYJ5y4', '5249631'), + (516, 1350, 'not_attending', '2022-04-19 19:25:20', '2025-12-17 19:47:27', 'bdzYJ5y4', '5249763'), + (516, 1351, 'not_attending', '2022-05-02 02:43:48', '2025-12-17 19:47:28', 'bdzYJ5y4', '5251561'), + (516, 1353, 'not_attending', '2022-04-22 13:24:53', '2025-12-17 19:47:27', 'bdzYJ5y4', '5251777'), + (516, 1354, 'not_attending', '2022-04-21 18:07:37', '2025-12-17 19:47:27', 'bdzYJ5y4', '5252569'), + (516, 1355, 'maybe', '2022-04-22 13:25:22', '2025-12-17 19:47:27', 'bdzYJ5y4', '5252573'), + (516, 1356, 'not_attending', '2022-04-22 13:24:32', '2025-12-17 19:47:27', 'bdzYJ5y4', '5252913'), + (516, 1357, 'not_attending', '2022-04-25 19:25:34', '2025-12-17 19:47:27', 'bdzYJ5y4', '5256017'), + (516, 1359, 'not_attending', '2022-05-03 23:37:50', '2025-12-17 19:47:28', 'bdzYJ5y4', '5258360'), + (516, 1360, 'not_attending', '2022-04-26 13:29:26', '2025-12-17 19:47:27', 'bdzYJ5y4', '5260197'), + (516, 1362, 'attending', '2022-04-25 19:25:11', '2025-12-17 19:47:28', 'bdzYJ5y4', '5260800'), + (516, 1366, 'not_attending', '2022-04-26 19:55:32', '2025-12-17 19:47:27', 'bdzYJ5y4', '5262344'), + (516, 1368, 'not_attending', '2022-05-04 18:01:29', '2025-12-17 19:47:28', 'bdzYJ5y4', '5262783'), + (516, 1369, 'maybe', '2022-05-04 20:27:52', '2025-12-17 19:47:28', 'bdzYJ5y4', '5262809'), + (516, 1372, 'not_attending', '2022-05-03 23:37:48', '2025-12-17 19:47:28', 'bdzYJ5y4', '5264352'), + (516, 1374, 'not_attending', '2022-05-01 16:22:37', '2025-12-17 19:47:28', 'bdzYJ5y4', '5269930'), + (516, 1375, 'not_attending', '2022-05-01 17:54:17', '2025-12-17 19:47:28', 'bdzYJ5y4', '5269932'), + (516, 1376, 'not_attending', '2022-05-07 17:50:59', '2025-12-17 19:47:28', 'bdzYJ5y4', '5271446'), + (516, 1377, 'not_attending', '2022-05-07 17:51:07', '2025-12-17 19:47:28', 'bdzYJ5y4', '5271447'), + (516, 1378, 'attending', '2022-05-14 17:19:28', '2025-12-17 19:47:29', 'bdzYJ5y4', '5271448'), + (516, 1379, 'attending', '2022-05-03 23:38:06', '2025-12-17 19:47:29', 'bdzYJ5y4', '5271449'), + (516, 1380, 'not_attending', '2022-05-27 20:15:31', '2025-12-17 19:47:30', 'bdzYJ5y4', '5271450'), + (516, 1381, 'not_attending', '2022-05-02 02:44:21', '2025-12-17 19:47:28', 'bdzYJ5y4', '5271453'), + (516, 1382, 'not_attending', '2022-05-04 20:27:45', '2025-12-17 19:47:28', 'bdzYJ5y4', '5276350'), + (516, 1383, 'not_attending', '2022-05-10 00:09:03', '2025-12-17 19:47:28', 'bdzYJ5y4', '5276469'), + (516, 1384, 'not_attending', '2022-05-04 18:21:52', '2025-12-17 19:47:28', 'bdzYJ5y4', '5277078'), + (516, 1385, 'not_attending', '2022-05-10 00:08:46', '2025-12-17 19:47:28', 'bdzYJ5y4', '5277822'), + (516, 1386, 'attending', '2022-05-05 13:12:07', '2025-12-17 19:47:28', 'bdzYJ5y4', '5278159'), + (516, 1391, 'not_attending', '2022-05-07 03:03:33', '2025-12-17 19:47:28', 'bdzYJ5y4', '5279531'), + (516, 1392, 'not_attending', '2022-05-10 22:39:51', '2025-12-17 19:47:28', 'bdzYJ5y4', '5279532'), + (516, 1393, 'not_attending', '2022-06-10 16:15:00', '2025-12-17 19:47:30', 'bdzYJ5y4', '5280603'), + (516, 1394, 'not_attending', '2022-05-25 21:35:27', '2025-12-17 19:47:30', 'bdzYJ5y4', '5280667'), + (516, 1396, 'maybe', '2022-05-13 12:28:04', '2025-12-17 19:47:28', 'bdzYJ5y4', '5281103'), + (516, 1397, 'attending', '2022-05-11 20:52:37', '2025-12-17 19:47:29', 'bdzYJ5y4', '5281104'), + (516, 1401, 'not_attending', '2022-05-17 08:49:54', '2025-12-17 19:47:29', 'bdzYJ5y4', '5286295'), + (516, 1402, 'not_attending', '2022-05-26 21:46:12', '2025-12-17 19:47:30', 'bdzYJ5y4', '5287977'), + (516, 1403, 'not_attending', '2022-05-17 08:50:08', '2025-12-17 19:47:29', 'bdzYJ5y4', '5288052'), + (516, 1405, 'not_attending', '2022-05-17 08:50:02', '2025-12-17 19:47:29', 'bdzYJ5y4', '5288115'), + (516, 1407, 'attending', '2022-05-23 00:07:23', '2025-12-17 19:47:30', 'bdzYJ5y4', '5363695'), + (516, 1408, 'attending', '2022-05-16 12:59:32', '2025-12-17 19:47:29', 'bdzYJ5y4', '5365960'), + (516, 1414, 'not_attending', '2022-05-21 01:20:33', '2025-12-17 19:47:29', 'bdzYJ5y4', '5368445'), + (516, 1415, 'not_attending', '2022-06-03 22:12:04', '2025-12-17 19:47:30', 'bdzYJ5y4', '5368973'), + (516, 1417, 'not_attending', '2022-05-22 04:55:58', '2025-12-17 19:47:30', 'bdzYJ5y4', '5370465'), + (516, 1420, 'maybe', '2022-05-24 02:03:08', '2025-12-17 19:47:30', 'bdzYJ5y4', '5374882'), + (516, 1422, 'not_attending', '2022-05-24 02:02:55', '2025-12-17 19:47:30', 'bdzYJ5y4', '5375603'), + (516, 1423, 'not_attending', '2022-06-14 00:58:50', '2025-12-17 19:47:17', 'bdzYJ5y4', '5375727'), + (516, 1427, 'maybe', '2022-05-25 21:35:16', '2025-12-17 19:47:30', 'bdzYJ5y4', '5376074'), + (516, 1428, 'not_attending', '2022-06-10 16:15:03', '2025-12-17 19:47:30', 'bdzYJ5y4', '5378247'), + (516, 1430, 'not_attending', '2022-06-07 22:11:09', '2025-12-17 19:47:30', 'bdzYJ5y4', '5389402'), + (516, 1431, 'not_attending', '2022-06-09 21:30:23', '2025-12-17 19:47:31', 'bdzYJ5y4', '5389605'), + (516, 1439, 'not_attending', '2022-06-02 00:36:44', '2025-12-17 19:47:30', 'bdzYJ5y4', '5396072'), + (516, 1442, 'attending', '2022-06-12 02:47:05', '2025-12-17 19:47:17', 'bdzYJ5y4', '5397265'), + (516, 1443, 'attending', '2022-06-03 20:11:24', '2025-12-17 19:47:30', 'bdzYJ5y4', '5397613'), + (516, 1444, 'not_attending', '2022-06-09 21:30:11', '2025-12-17 19:47:30', 'bdzYJ5y4', '5397614'), + (516, 1445, 'attending', '2022-06-12 20:02:52', '2025-12-17 19:47:17', 'bdzYJ5y4', '5397615'), + (516, 1449, 'not_attending', '2022-06-14 00:58:41', '2025-12-17 19:47:31', 'bdzYJ5y4', '5403335'), + (516, 1450, 'not_attending', '2022-06-10 16:15:20', '2025-12-17 19:47:30', 'bdzYJ5y4', '5403421'), + (516, 1451, 'maybe', '2022-06-14 00:59:22', '2025-12-17 19:47:17', 'bdzYJ5y4', '5403967'), + (516, 1452, 'not_attending', '2022-06-10 16:14:57', '2025-12-17 19:47:30', 'bdzYJ5y4', '5404197'), + (516, 1453, 'not_attending', '2022-06-10 16:15:32', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404745'), + (516, 1454, 'not_attending', '2022-06-10 16:15:30', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404771'), + (516, 1456, 'not_attending', '2022-06-14 00:58:53', '2025-12-17 19:47:17', 'bdzYJ5y4', '5404779'), + (516, 1457, 'not_attending', '2022-06-10 16:15:34', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404780'), + (516, 1458, 'maybe', '2022-06-12 20:02:59', '2025-12-17 19:47:17', 'bdzYJ5y4', '5404786'), + (516, 1459, 'maybe', '2022-06-12 20:03:04', '2025-12-17 19:47:17', 'bdzYJ5y4', '5404793'), + (516, 1460, 'not_attending', '2022-06-12 20:02:21', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404817'), + (516, 1461, 'not_attending', '2022-06-14 00:58:46', '2025-12-17 19:47:31', 'bdzYJ5y4', '5405149'), + (516, 1462, 'not_attending', '2022-06-11 01:05:19', '2025-12-17 19:47:17', 'bdzYJ5y4', '5405203'), + (516, 1463, 'not_attending', '2022-06-14 00:58:44', '2025-12-17 19:47:31', 'bdzYJ5y4', '5405208'), + (516, 1465, 'maybe', '2022-06-12 06:04:02', '2025-12-17 19:47:31', 'bdzYJ5y4', '5406355'), + (516, 1466, 'not_attending', '2022-06-14 00:58:54', '2025-12-17 19:47:17', 'bdzYJ5y4', '5406427'), + (516, 1468, 'not_attending', '2022-06-27 15:56:44', '2025-12-17 19:47:19', 'bdzYJ5y4', '5406832'), + (516, 1470, 'not_attending', '2022-06-13 15:08:34', '2025-12-17 19:47:17', 'bdzYJ5y4', '5407053'), + (516, 1471, 'not_attending', '2022-06-21 18:26:12', '2025-12-17 19:47:17', 'bdzYJ5y4', '5407063'), + (516, 1472, 'not_attending', '2022-06-22 03:17:52', '2025-12-17 19:47:17', 'bdzYJ5y4', '5407065'), + (516, 1473, 'not_attending', '2022-06-14 00:58:42', '2025-12-17 19:47:31', 'bdzYJ5y4', '5407267'), + (516, 1477, 'not_attending', '2022-06-21 18:26:14', '2025-12-17 19:47:17', 'bdzYJ5y4', '5408766'), + (516, 1478, 'not_attending', '2022-06-21 18:26:34', '2025-12-17 19:47:19', 'bdzYJ5y4', '5408794'), + (516, 1479, 'maybe', '2022-06-17 11:08:07', '2025-12-17 19:47:17', 'bdzYJ5y4', '5410322'), + (516, 1480, 'not_attending', '2022-06-26 18:33:42', '2025-12-17 19:47:19', 'bdzYJ5y4', '5411699'), + (516, 1482, 'attending', '2022-06-20 11:48:27', '2025-12-17 19:47:19', 'bdzYJ5y4', '5412550'), + (516, 1483, 'not_attending', '2022-06-22 03:17:49', '2025-12-17 19:47:17', 'bdzYJ5y4', '5414556'), + (516, 1484, 'not_attending', '2022-06-21 18:26:18', '2025-12-17 19:47:17', 'bdzYJ5y4', '5415046'), + (516, 1485, 'maybe', '2022-06-21 18:26:30', '2025-12-17 19:47:17', 'bdzYJ5y4', '5416276'), + (516, 1486, 'not_attending', '2022-06-26 19:16:37', '2025-12-17 19:47:19', 'bdzYJ5y4', '5416339'), + (516, 1488, 'not_attending', '2022-06-30 22:08:33', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420154'), + (516, 1489, 'not_attending', '2022-06-30 22:08:35', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420155'), + (516, 1490, 'not_attending', '2022-06-30 22:08:39', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420156'), + (516, 1491, 'not_attending', '2022-06-29 20:18:04', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420158'), + (516, 1492, 'not_attending', '2022-06-30 22:08:42', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420175'), + (516, 1494, 'not_attending', '2022-06-27 20:25:39', '2025-12-17 19:47:19', 'bdzYJ5y4', '5421626'), + (516, 1495, 'not_attending', '2022-06-27 20:25:58', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422086'), + (516, 1497, 'not_attending', '2022-06-26 19:16:35', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422405'), + (516, 1498, 'not_attending', '2022-06-27 15:56:37', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422406'), + (516, 1499, 'not_attending', '2022-06-27 15:56:39', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422407'), + (516, 1500, 'not_attending', '2022-06-30 22:08:46', '2025-12-17 19:47:19', 'bdzYJ5y4', '5423915'), + (516, 1502, 'attending', '2022-06-28 17:15:05', '2025-12-17 19:47:19', 'bdzYJ5y4', '5424565'), + (516, 1503, 'not_attending', '2022-06-30 22:08:28', '2025-12-17 19:47:19', 'bdzYJ5y4', '5426820'), + (516, 1504, 'not_attending', '2022-07-11 13:13:04', '2025-12-17 19:47:19', 'bdzYJ5y4', '5426882'), + (516, 1505, 'not_attending', '2022-07-02 20:54:13', '2025-12-17 19:47:19', 'bdzYJ5y4', '5427083'), + (516, 1507, 'attending', '2022-07-02 20:54:20', '2025-12-17 19:47:19', 'bdzYJ5y4', '5433100'), + (516, 1508, 'not_attending', '2022-07-11 13:12:59', '2025-12-17 19:47:19', 'bdzYJ5y4', '5433453'), + (516, 1509, 'not_attending', '2022-07-05 19:57:44', '2025-12-17 19:47:19', 'bdzYJ5y4', '5434019'), + (516, 1511, 'attending', '2022-07-07 16:09:28', '2025-12-17 19:47:19', 'bdzYJ5y4', '5437733'), + (516, 1512, 'not_attending', '2022-07-13 00:42:02', '2025-12-17 19:47:19', 'bdzYJ5y4', '5441112'), + (516, 1513, 'attending', '2022-07-09 12:13:47', '2025-12-17 19:47:19', 'bdzYJ5y4', '5441125'), + (516, 1514, 'attending', '2022-07-15 13:20:01', '2025-12-17 19:47:20', 'bdzYJ5y4', '5441126'), + (516, 1515, 'attending', '2022-07-31 15:10:30', '2025-12-17 19:47:21', 'bdzYJ5y4', '5441128'), + (516, 1516, 'attending', '2022-08-07 12:18:19', '2025-12-17 19:47:23', 'bdzYJ5y4', '5441129'), + (516, 1517, 'attending', '2022-08-19 14:21:19', '2025-12-17 19:47:23', 'bdzYJ5y4', '5441130'), + (516, 1518, 'not_attending', '2022-08-29 01:11:48', '2025-12-17 19:47:24', 'bdzYJ5y4', '5441131'), + (516, 1519, 'attending', '2022-08-29 01:11:55', '2025-12-17 19:47:24', 'bdzYJ5y4', '5441132'), + (516, 1520, 'not_attending', '2022-07-11 13:13:01', '2025-12-17 19:47:19', 'bdzYJ5y4', '5441645'), + (516, 1521, 'not_attending', '2022-07-11 13:12:53', '2025-12-17 19:47:19', 'bdzYJ5y4', '5442180'), + (516, 1522, 'not_attending', '2022-07-15 13:19:37', '2025-12-17 19:47:20', 'bdzYJ5y4', '5442832'), + (516, 1523, 'not_attending', '2022-07-11 13:12:44', '2025-12-17 19:47:19', 'bdzYJ5y4', '5442868'), + (516, 1524, 'not_attending', '2022-07-11 16:45:16', '2025-12-17 19:47:19', 'bdzYJ5y4', '5443300'), + (516, 1526, 'not_attending', '2022-07-15 13:19:44', '2025-12-17 19:47:20', 'bdzYJ5y4', '5445059'), + (516, 1528, 'maybe', '2022-07-14 16:55:41', '2025-12-17 19:47:20', 'bdzYJ5y4', '5446643'), + (516, 1531, 'attending', '2022-07-15 21:05:10', '2025-12-17 19:47:19', 'bdzYJ5y4', '5448756'), + (516, 1532, 'attending', '2022-07-18 19:11:59', '2025-12-17 19:47:20', 'bdzYJ5y4', '5448757'), + (516, 1533, 'maybe', '2022-07-25 00:53:52', '2025-12-17 19:47:21', 'bdzYJ5y4', '5448758'), + (516, 1534, 'attending', '2022-08-04 19:03:44', '2025-12-17 19:47:21', 'bdzYJ5y4', '5448759'), + (516, 1535, 'not_attending', '2022-07-18 10:52:32', '2025-12-17 19:47:20', 'bdzYJ5y4', '5448830'), + (516, 1536, 'not_attending', '2022-07-19 13:11:17', '2025-12-17 19:47:20', 'bdzYJ5y4', '5449068'), + (516, 1540, 'attending', '2022-07-18 12:53:00', '2025-12-17 19:47:20', 'bdzYJ5y4', '5453325'), + (516, 1541, 'not_attending', '2022-07-24 16:47:46', '2025-12-17 19:47:20', 'bdzYJ5y4', '5453542'), + (516, 1542, 'not_attending', '2022-07-25 11:28:10', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454064'), + (516, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'bdzYJ5y4', '5454516'), + (516, 1544, 'attending', '2022-08-29 01:11:58', '2025-12-17 19:47:11', 'bdzYJ5y4', '5454517'), + (516, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454605'), + (516, 1546, 'not_attending', '2022-07-25 11:28:27', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454607'), + (516, 1547, 'not_attending', '2022-07-24 16:48:00', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454608'), + (516, 1549, 'not_attending', '2022-07-24 15:38:38', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454789'), + (516, 1550, 'not_attending', '2022-07-24 16:48:30', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454803'), + (516, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'bdzYJ5y4', '5455037'), + (516, 1552, 'not_attending', '2022-07-29 12:01:13', '2025-12-17 19:47:20', 'bdzYJ5y4', '5455149'), + (516, 1553, 'not_attending', '2022-07-20 22:54:12', '2025-12-17 19:47:20', 'bdzYJ5y4', '5455164'), + (516, 1557, 'not_attending', '2022-08-03 10:27:34', '2025-12-17 19:47:21', 'bdzYJ5y4', '5458729'), + (516, 1560, 'not_attending', '2022-08-15 21:11:30', '2025-12-17 19:47:23', 'bdzYJ5y4', '5458768'), + (516, 1561, 'not_attending', '2022-08-08 11:39:45', '2025-12-17 19:47:22', 'bdzYJ5y4', '5461278'), + (516, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'bdzYJ5y4', '5469480'), + (516, 1563, 'not_attending', '2022-07-31 15:10:24', '2025-12-17 19:47:21', 'bdzYJ5y4', '5469889'), + (516, 1565, 'attending', '2022-07-25 22:37:25', '2025-12-17 19:47:21', 'bdzYJ5y4', '5471073'), + (516, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'bdzYJ5y4', '5474663'), + (516, 1567, 'not_attending', '2022-08-02 01:15:54', '2025-12-17 19:47:21', 'bdzYJ5y4', '5477629'), + (516, 1568, 'not_attending', '2022-08-01 14:11:35', '2025-12-17 19:47:21', 'bdzYJ5y4', '5480628'), + (516, 1569, 'not_attending', '2022-08-02 01:57:37', '2025-12-17 19:47:21', 'bdzYJ5y4', '5481507'), + (516, 1570, 'not_attending', '2022-08-01 21:33:31', '2025-12-17 19:47:21', 'bdzYJ5y4', '5481830'), + (516, 1571, 'attending', '2022-08-01 18:40:46', '2025-12-17 19:47:21', 'bdzYJ5y4', '5482022'), + (516, 1573, 'not_attending', '2022-08-07 12:18:01', '2025-12-17 19:47:22', 'bdzYJ5y4', '5482152'), + (516, 1574, 'not_attending', '2022-08-07 12:18:08', '2025-12-17 19:47:22', 'bdzYJ5y4', '5482153'), + (516, 1575, 'not_attending', '2022-08-22 18:23:36', '2025-12-17 19:47:23', 'bdzYJ5y4', '5482250'), + (516, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'bdzYJ5y4', '5482793'), + (516, 1578, 'not_attending', '2022-08-03 10:27:49', '2025-12-17 19:47:21', 'bdzYJ5y4', '5483073'), + (516, 1579, 'maybe', '2022-08-04 03:10:35', '2025-12-17 19:47:22', 'bdzYJ5y4', '5486019'), + (516, 1580, 'not_attending', '2022-08-07 12:17:41', '2025-12-17 19:47:22', 'bdzYJ5y4', '5488912'), + (516, 1581, 'not_attending', '2022-08-07 12:17:47', '2025-12-17 19:47:22', 'bdzYJ5y4', '5490302'), + (516, 1582, 'not_attending', '2022-08-15 18:19:16', '2025-12-17 19:47:23', 'bdzYJ5y4', '5492001'), + (516, 1584, 'not_attending', '2022-08-22 18:23:39', '2025-12-17 19:47:23', 'bdzYJ5y4', '5492004'), + (516, 1586, 'not_attending', '2022-08-15 21:11:12', '2025-12-17 19:47:23', 'bdzYJ5y4', '5492019'), + (516, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'bdzYJ5y4', '5492192'), + (516, 1588, 'not_attending', '2022-08-09 16:57:46', '2025-12-17 19:47:22', 'bdzYJ5y4', '5493139'), + (516, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'bdzYJ5y4', '5493200'), + (516, 1592, 'not_attending', '2022-08-09 16:59:18', '2025-12-17 19:47:22', 'bdzYJ5y4', '5494031'), + (516, 1593, 'maybe', '2022-08-09 16:58:35', '2025-12-17 19:47:22', 'bdzYJ5y4', '5494043'), + (516, 1595, 'not_attending', '2022-08-09 23:15:49', '2025-12-17 19:47:22', 'bdzYJ5y4', '5495736'), + (516, 1598, 'not_attending', '2022-08-15 18:17:27', '2025-12-17 19:47:22', 'bdzYJ5y4', '5496567'), + (516, 1600, 'not_attending', '2022-08-29 01:11:45', '2025-12-17 19:47:24', 'bdzYJ5y4', '5496569'), + (516, 1603, 'not_attending', '2022-08-15 21:11:28', '2025-12-17 19:47:23', 'bdzYJ5y4', '5497895'), + (516, 1604, 'attending', '2022-08-15 18:18:02', '2025-12-17 19:47:22', 'bdzYJ5y4', '5501504'), + (516, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'bdzYJ5y4', '5502188'), + (516, 1606, 'not_attending', '2022-08-29 23:34:04', '2025-12-17 19:47:23', 'bdzYJ5y4', '5504585'), + (516, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'bdzYJ5y4', '5505059'), + (516, 1610, 'not_attending', '2022-08-22 02:29:09', '2025-12-17 19:47:23', 'bdzYJ5y4', '5506595'), + (516, 1612, 'maybe', '2022-10-03 19:40:03', '2025-12-17 19:47:12', 'bdzYJ5y4', '5507653'), + (516, 1613, 'not_attending', '2022-10-21 19:42:35', '2025-12-17 19:47:14', 'bdzYJ5y4', '5507654'), + (516, 1614, 'maybe', '2022-08-22 18:23:20', '2025-12-17 19:47:23', 'bdzYJ5y4', '5508371'), + (516, 1615, 'not_attending', '2022-08-29 23:34:07', '2025-12-17 19:47:23', 'bdzYJ5y4', '5509055'), + (516, 1616, 'not_attending', '2022-08-22 18:23:14', '2025-12-17 19:47:23', 'bdzYJ5y4', '5509478'), + (516, 1619, 'attending', '2022-08-22 20:02:51', '2025-12-17 19:47:23', 'bdzYJ5y4', '5512862'), + (516, 1620, 'not_attending', '2022-08-22 18:23:32', '2025-12-17 19:47:23', 'bdzYJ5y4', '5513046'), + (516, 1623, 'not_attending', '2022-08-23 21:29:35', '2025-12-17 19:47:23', 'bdzYJ5y4', '5513678'), + (516, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'bdzYJ5y4', '5513985'), + (516, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'bdzYJ5y4', '5519981'), + (516, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'bdzYJ5y4', '5522550'), + (516, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'bdzYJ5y4', '5534683'), + (516, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'bdzYJ5y4', '5537735'), + (516, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'bdzYJ5y4', '5540859'), + (516, 1642, 'not_attending', '2022-09-08 12:45:14', '2025-12-17 19:47:24', 'bdzYJ5y4', '5544227'), + (516, 1644, 'not_attending', '2022-09-18 11:04:58', '2025-12-17 19:47:11', 'bdzYJ5y4', '5545857'), + (516, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'bdzYJ5y4', '5546619'), + (516, 1652, 'maybe', '2022-09-08 12:45:11', '2025-12-17 19:47:24', 'bdzYJ5y4', '5552671'), + (516, 1653, 'not_attending', '2022-09-18 11:04:49', '2025-12-17 19:47:11', 'bdzYJ5y4', '5554400'), + (516, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'bdzYJ5y4', '5555245'), + (516, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'bdzYJ5y4', '5557747'), + (516, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'bdzYJ5y4', '5560255'), + (516, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'bdzYJ5y4', '5562906'), + (516, 1667, 'attending', '2022-09-18 11:04:42', '2025-12-17 19:47:11', 'bdzYJ5y4', '5563221'), + (516, 1668, 'not_attending', '2022-09-21 02:20:21', '2025-12-17 19:47:12', 'bdzYJ5y4', '5563222'), + (516, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'bdzYJ5y4', '5600604'), + (516, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'bdzYJ5y4', '5605544'), + (516, 1699, 'maybe', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'bdzYJ5y4', '5606737'), + (516, 1705, 'not_attending', '2022-10-03 19:40:00', '2025-12-17 19:47:12', 'bdzYJ5y4', '5612209'), + (516, 1714, 'not_attending', '2022-10-21 19:42:19', '2025-12-17 19:47:14', 'bdzYJ5y4', '5622347'), + (516, 1716, 'maybe', '2022-10-03 19:39:38', '2025-12-17 19:47:12', 'bdzYJ5y4', '5622429'), + (516, 1717, 'not_attending', '2022-10-18 19:20:30', '2025-12-17 19:47:13', 'bdzYJ5y4', '5622842'), + (516, 1719, 'attending', '2022-10-05 23:21:31', '2025-12-17 19:47:12', 'bdzYJ5y4', '5630958'), + (516, 1720, 'not_attending', '2022-10-10 11:37:19', '2025-12-17 19:47:12', 'bdzYJ5y4', '5630959'), + (516, 1721, 'attending', '2022-10-10 11:37:23', '2025-12-17 19:47:13', 'bdzYJ5y4', '5630960'), + (516, 1722, 'not_attending', '2022-10-13 22:25:20', '2025-12-17 19:47:14', 'bdzYJ5y4', '5630961'), + (516, 1723, 'maybe', '2022-10-25 19:22:16', '2025-12-17 19:47:15', 'bdzYJ5y4', '5630962'), + (516, 1724, 'not_attending', '2022-10-25 19:21:11', '2025-12-17 19:47:15', 'bdzYJ5y4', '5630966'), + (516, 1725, 'attending', '2022-10-25 19:21:15', '2025-12-17 19:47:16', 'bdzYJ5y4', '5630967'), + (516, 1726, 'not_attending', '2022-10-25 19:21:19', '2025-12-17 19:47:16', 'bdzYJ5y4', '5630968'), + (516, 1727, 'attending', '2022-10-25 19:21:26', '2025-12-17 19:47:16', 'bdzYJ5y4', '5630969'), + (516, 1728, 'not_attending', '2022-12-01 23:06:32', '2025-12-17 19:47:17', 'bdzYJ5y4', '5630970'), + (516, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'bdzYJ5y4', '5635406'), + (516, 1736, 'not_attending', '2022-10-25 19:22:08', '2025-12-17 19:47:15', 'bdzYJ5y4', '5638456'), + (516, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'bdzYJ5y4', '5638765'), + (516, 1739, 'not_attending', '2022-10-21 19:42:24', '2025-12-17 19:47:14', 'bdzYJ5y4', '5640097'), + (516, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'bdzYJ5y4', '5640843'), + (516, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'bdzYJ5y4', '5641521'), + (516, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'bdzYJ5y4', '5642818'), + (516, 1745, 'not_attending', '2022-10-13 22:25:15', '2025-12-17 19:47:12', 'bdzYJ5y4', '5643088'), + (516, 1747, 'not_attending', '2022-10-21 19:42:14', '2025-12-17 19:47:14', 'bdzYJ5y4', '5648009'), + (516, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'bdzYJ5y4', '5652395'), + (516, 1753, 'not_attending', '2022-10-20 13:34:52', '2025-12-17 19:47:13', 'bdzYJ5y4', '5656228'), + (516, 1756, 'not_attending', '2022-10-25 19:21:39', '2025-12-17 19:47:13', 'bdzYJ5y4', '5663338'), + (516, 1757, 'not_attending', '2022-10-25 19:22:12', '2025-12-17 19:47:15', 'bdzYJ5y4', '5668974'), + (516, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'bdzYJ5y4', '5670445'), + (516, 1763, 'not_attending', '2022-10-25 19:22:29', '2025-12-17 19:47:15', 'bdzYJ5y4', '5670803'), + (516, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'bdzYJ5y4', '5671637'), + (516, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'bdzYJ5y4', '5672329'), + (516, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'bdzYJ5y4', '5674057'), + (516, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'bdzYJ5y4', '5674060'), + (516, 1768, 'not_attending', '2022-11-04 17:32:42', '2025-12-17 19:47:16', 'bdzYJ5y4', '5674062'), + (516, 1769, 'attending', '2022-10-25 19:20:47', '2025-12-17 19:47:15', 'bdzYJ5y4', '5676351'), + (516, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'bdzYJ5y4', '5677461'), + (516, 1776, 'not_attending', '2022-11-04 17:32:29', '2025-12-17 19:47:15', 'bdzYJ5y4', '5691067'), + (516, 1777, 'not_attending', '2022-11-04 17:32:26', '2025-12-17 19:47:15', 'bdzYJ5y4', '5693021'), + (516, 1779, 'not_attending', '2022-11-04 17:32:22', '2025-12-17 19:47:15', 'bdzYJ5y4', '5694252'), + (516, 1780, 'not_attending', '2022-11-04 17:32:32', '2025-12-17 19:47:15', 'bdzYJ5y4', '5696082'), + (516, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'bdzYJ5y4', '5698046'), + (516, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'bdzYJ5y4', '5699760'), + (516, 1790, 'not_attending', '2022-11-07 16:45:12', '2025-12-17 19:47:15', 'bdzYJ5y4', '5727424'), + (516, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'bdzYJ5y4', '5741601'), + (516, 1797, 'not_attending', '2022-12-01 23:06:25', '2025-12-17 19:47:17', 'bdzYJ5y4', '5757486'), + (516, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'bdzYJ5y4', '5763458'), + (516, 1804, 'not_attending', '2023-01-22 00:26:01', '2025-12-17 19:47:06', 'bdzYJ5y4', '5764674'), + (516, 1805, 'not_attending', '2023-02-02 11:53:54', '2025-12-17 19:47:06', 'bdzYJ5y4', '5764675'), + (516, 1807, 'not_attending', '2023-01-13 06:09:01', '2025-12-17 19:47:05', 'bdzYJ5y4', '5764677'), + (516, 1820, 'not_attending', '2023-03-30 21:13:37', '2025-12-17 19:46:58', 'bdzYJ5y4', '5764690'), + (516, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'bdzYJ5y4', '5774172'), + (516, 1825, 'attending', '2022-11-27 05:53:17', '2025-12-17 19:47:16', 'bdzYJ5y4', '5776760'), + (516, 1828, 'not_attending', '2022-11-28 23:04:11', '2025-12-17 19:47:16', 'bdzYJ5y4', '5778865'), + (516, 1829, 'not_attending', '2022-12-04 04:50:48', '2025-12-17 19:47:16', 'bdzYJ5y4', '5778867'), + (516, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'bdzYJ5y4', '5818247'), + (516, 1834, 'not_attending', '2022-12-07 16:29:40', '2025-12-17 19:47:17', 'bdzYJ5y4', '5819470'), + (516, 1835, 'not_attending', '2022-12-30 13:53:16', '2025-12-17 19:47:05', 'bdzYJ5y4', '5819471'), + (516, 1841, 'not_attending', '2022-12-30 13:53:24', '2025-12-17 19:47:05', 'bdzYJ5y4', '5827665'), + (516, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'bdzYJ5y4', '5827739'), + (516, 1843, 'not_attending', '2022-12-17 20:08:54', '2025-12-17 19:47:04', 'bdzYJ5y4', '5844304'), + (516, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'bdzYJ5y4', '5844306'), + (516, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'bdzYJ5y4', '5850159'), + (516, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'bdzYJ5y4', '5858999'), + (516, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'bdzYJ5y4', '5871984'), + (516, 1856, 'maybe', '2023-01-13 06:09:07', '2025-12-17 19:47:05', 'bdzYJ5y4', '5873970'), + (516, 1858, 'not_attending', '2023-01-13 06:09:04', '2025-12-17 19:47:05', 'bdzYJ5y4', '5875044'), + (516, 1860, 'not_attending', '2023-01-13 06:08:43', '2025-12-17 19:47:05', 'bdzYJ5y4', '5876309'), + (516, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'bdzYJ5y4', '5876354'), + (516, 1864, 'not_attending', '2023-01-22 00:24:35', '2025-12-17 19:47:05', 'bdzYJ5y4', '5879675'), + (516, 1865, 'attending', '2023-01-22 00:25:58', '2025-12-17 19:47:06', 'bdzYJ5y4', '5879676'), + (516, 1866, 'not_attending', '2023-01-22 19:58:51', '2025-12-17 19:47:05', 'bdzYJ5y4', '5880939'), + (516, 1867, 'not_attending', '2023-02-06 13:15:04', '2025-12-17 19:47:07', 'bdzYJ5y4', '5880940'), + (516, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'bdzYJ5y4', '5880942'), + (516, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'bdzYJ5y4', '5880943'), + (516, 1873, 'not_attending', '2023-01-22 00:25:26', '2025-12-17 19:47:05', 'bdzYJ5y4', '5885295'), + (516, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'bdzYJ5y4', '5887890'), + (516, 1875, 'not_attending', '2023-01-22 19:58:54', '2025-12-17 19:47:06', 'bdzYJ5y4', '5887908'), + (516, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'bdzYJ5y4', '5888598'), + (516, 1878, 'not_attending', '2023-02-06 13:15:01', '2025-12-17 19:47:07', 'bdzYJ5y4', '5893000'), + (516, 1879, 'maybe', '2023-01-29 04:25:24', '2025-12-17 19:47:06', 'bdzYJ5y4', '5893001'), + (516, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'bdzYJ5y4', '5893260'), + (516, 1881, 'not_attending', '2023-02-06 13:15:24', '2025-12-17 19:47:07', 'bdzYJ5y4', '5894218'), + (516, 1882, 'not_attending', '2023-01-29 04:25:31', '2025-12-17 19:47:06', 'bdzYJ5y4', '5898447'), + (516, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'bdzYJ5y4', '5899826'), + (516, 1885, 'not_attending', '2023-02-17 16:21:57', '2025-12-17 19:47:08', 'bdzYJ5y4', '5899928'), + (516, 1886, 'not_attending', '2023-03-04 09:19:31', '2025-12-17 19:47:09', 'bdzYJ5y4', '5899930'), + (516, 1889, 'not_attending', '2023-02-06 13:15:09', '2025-12-17 19:47:07', 'bdzYJ5y4', '5900199'), + (516, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'bdzYJ5y4', '5900200'), + (516, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'bdzYJ5y4', '5900202'), + (516, 1892, 'not_attending', '2023-03-13 18:07:56', '2025-12-17 19:46:56', 'bdzYJ5y4', '5900203'), + (516, 1894, 'not_attending', '2023-02-02 11:53:43', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901100'), + (516, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901108'), + (516, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901126'), + (516, 1897, 'attending', '2023-02-02 20:50:04', '2025-12-17 19:47:07', 'bdzYJ5y4', '5901128'), + (516, 1899, 'not_attending', '2023-02-06 13:15:18', '2025-12-17 19:47:07', 'bdzYJ5y4', '5901323'), + (516, 1900, 'not_attending', '2023-02-02 11:53:36', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901331'), + (516, 1902, 'not_attending', '2023-02-02 11:53:52', '2025-12-17 19:47:06', 'bdzYJ5y4', '5902254'), + (516, 1904, 'not_attending', '2023-02-06 13:15:12', '2025-12-17 19:47:07', 'bdzYJ5y4', '5903239'), + (516, 1908, 'not_attending', '2023-02-09 08:36:01', '2025-12-17 19:47:07', 'bdzYJ5y4', '5905018'), + (516, 1909, 'not_attending', '2023-02-06 13:15:21', '2025-12-17 19:47:07', 'bdzYJ5y4', '5906541'), + (516, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'bdzYJ5y4', '5909655'), + (516, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'bdzYJ5y4', '5910522'), + (516, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'bdzYJ5y4', '5910526'), + (516, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'bdzYJ5y4', '5910528'), + (516, 1922, 'not_attending', '2023-02-15 04:02:58', '2025-12-17 19:47:07', 'bdzYJ5y4', '5916219'), + (516, 1923, 'not_attending', '2023-02-17 16:21:44', '2025-12-17 19:47:07', 'bdzYJ5y4', '5930436'), + (516, 1924, 'not_attending', '2023-02-17 16:21:42', '2025-12-17 19:47:07', 'bdzYJ5y4', '5931095'), + (516, 1926, 'not_attending', '2023-02-26 00:49:43', '2025-12-17 19:47:08', 'bdzYJ5y4', '5932620'), + (516, 1927, 'maybe', '2023-03-12 23:42:50', '2025-12-17 19:47:10', 'bdzYJ5y4', '5932621'), + (516, 1930, 'not_attending', '2023-02-26 00:49:23', '2025-12-17 19:47:08', 'bdzYJ5y4', '5933462'), + (516, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'bdzYJ5y4', '5936234'), + (516, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'bdzYJ5y4', '5958351'), + (516, 1936, 'not_attending', '2023-02-26 00:49:34', '2025-12-17 19:47:08', 'bdzYJ5y4', '5959397'), + (516, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'bdzYJ5y4', '5959751'), + (516, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'bdzYJ5y4', '5959755'), + (516, 1940, 'maybe', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'bdzYJ5y4', '5960055'), + (516, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'bdzYJ5y4', '5961684'), + (516, 1942, 'not_attending', '2023-03-01 21:43:18', '2025-12-17 19:47:08', 'bdzYJ5y4', '5962085'), + (516, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'bdzYJ5y4', '5962132'), + (516, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'bdzYJ5y4', '5962133'), + (516, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'bdzYJ5y4', '5962134'), + (516, 1947, 'not_attending', '2023-03-01 21:43:51', '2025-12-17 19:47:09', 'bdzYJ5y4', '5962233'), + (516, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'bdzYJ5y4', '5962317'), + (516, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'bdzYJ5y4', '5962318'), + (516, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'bdzYJ5y4', '5965933'), + (516, 1952, 'maybe', '2023-03-01 21:43:22', '2025-12-17 19:47:08', 'bdzYJ5y4', '5965937'), + (516, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'bdzYJ5y4', '5967014'), + (516, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'bdzYJ5y4', '5972815'), + (516, 1959, 'not_attending', '2023-03-24 22:23:38', '2025-12-17 19:46:57', 'bdzYJ5y4', '5972829'), + (516, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'bdzYJ5y4', '5974016'), + (516, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'bdzYJ5y4', '5975052'), + (516, 1963, 'maybe', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'bdzYJ5y4', '5975054'), + (516, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'bdzYJ5y4', '5981515'), + (516, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'bdzYJ5y4', '5993516'), + (516, 1973, 'not_attending', '2023-03-13 18:08:03', '2025-12-17 19:46:56', 'bdzYJ5y4', '5993777'), + (516, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'bdzYJ5y4', '5998939'), + (516, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'bdzYJ5y4', '6028191'), + (516, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'bdzYJ5y4', '6040066'), + (516, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'bdzYJ5y4', '6042717'), + (516, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'bdzYJ5y4', '6044838'), + (516, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'bdzYJ5y4', '6044839'), + (516, 1989, 'not_attending', '2023-05-15 22:05:33', '2025-12-17 19:47:03', 'bdzYJ5y4', '6044842'), + (516, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'bdzYJ5y4', '6045684'), + (516, 1991, 'not_attending', '2023-03-30 21:13:42', '2025-12-17 19:46:58', 'bdzYJ5y4', '6047354'), + (516, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'bdzYJ5y4', '6050104'), + (516, 1999, 'not_attending', '2023-04-19 20:06:53', '2025-12-17 19:47:00', 'bdzYJ5y4', '6052057'), + (516, 2003, 'not_attending', '2023-05-11 01:43:09', '2025-12-17 19:47:03', 'bdzYJ5y4', '6052606'), + (516, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'bdzYJ5y4', '6053195'), + (516, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'bdzYJ5y4', '6053198'), + (516, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'bdzYJ5y4', '6056085'), + (516, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'bdzYJ5y4', '6056916'), + (516, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'bdzYJ5y4', '6059290'), + (516, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'bdzYJ5y4', '6060328'), + (516, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'bdzYJ5y4', '6061037'), + (516, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'bdzYJ5y4', '6061039'), + (516, 2019, 'not_attending', '2023-04-19 20:06:50', '2025-12-17 19:47:00', 'bdzYJ5y4', '6062934'), + (516, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'bdzYJ5y4', '6065813'), + (516, 2021, 'not_attending', '2023-04-17 21:22:53', '2025-12-17 19:47:00', 'bdzYJ5y4', '6066316'), + (516, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'bdzYJ5y4', '6067245'), + (516, 2024, 'not_attending', '2023-04-19 20:06:57', '2025-12-17 19:47:00', 'bdzYJ5y4', '6067437'), + (516, 2025, 'not_attending', '2023-04-19 20:07:04', '2025-12-17 19:47:00', 'bdzYJ5y4', '6067457'), + (516, 2027, 'attending', '2023-04-17 21:29:18', '2025-12-17 19:47:00', 'bdzYJ5y4', '6068094'), + (516, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'bdzYJ5y4', '6068252'), + (516, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'bdzYJ5y4', '6068253'), + (516, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'bdzYJ5y4', '6068254'), + (516, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'bdzYJ5y4', '6068280'), + (516, 2032, 'attending', '2023-05-22 02:50:16', '2025-12-17 19:47:04', 'bdzYJ5y4', '6068281'), + (516, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'bdzYJ5y4', '6069093'), + (516, 2035, 'not_attending', '2023-05-01 21:06:29', '2025-12-17 19:47:02', 'bdzYJ5y4', '6070142'), + (516, 2041, 'attending', '2023-04-24 02:33:53', '2025-12-17 19:47:01', 'bdzYJ5y4', '6072528'), + (516, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'bdzYJ5y4', '6075556'), + (516, 2046, 'not_attending', '2023-05-08 02:21:35', '2025-12-17 19:47:02', 'bdzYJ5y4', '6076020'), + (516, 2047, 'not_attending', '2023-05-01 21:06:43', '2025-12-17 19:47:02', 'bdzYJ5y4', '6076027'), + (516, 2048, 'not_attending', '2023-05-08 02:21:57', '2025-12-17 19:47:03', 'bdzYJ5y4', '6076415'), + (516, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'bdzYJ5y4', '6079840'), + (516, 2050, 'not_attending', '2023-05-01 21:06:47', '2025-12-17 19:47:02', 'bdzYJ5y4', '6080489'), + (516, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'bdzYJ5y4', '6083398'), + (516, 2053, 'not_attending', '2023-05-08 16:23:40', '2025-12-17 19:47:02', 'bdzYJ5y4', '6092644'), + (516, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'bdzYJ5y4', '6093504'), + (516, 2057, 'not_attending', '2023-05-08 02:21:29', '2025-12-17 19:47:02', 'bdzYJ5y4', '6093692'), + (516, 2058, 'maybe', '2023-05-08 16:23:47', '2025-12-17 19:47:02', 'bdzYJ5y4', '6096374'), + (516, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'bdzYJ5y4', '6097414'), + (516, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'bdzYJ5y4', '6097442'), + (516, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'bdzYJ5y4', '6097684'), + (516, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'bdzYJ5y4', '6098762'), + (516, 2064, 'maybe', '2023-06-04 12:56:56', '2025-12-17 19:46:50', 'bdzYJ5y4', '6099988'), + (516, 2065, 'attending', '2023-06-04 12:56:51', '2025-12-17 19:46:49', 'bdzYJ5y4', '6101169'), + (516, 2066, 'not_attending', '2023-06-04 12:56:36', '2025-12-17 19:47:04', 'bdzYJ5y4', '6101361'), + (516, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'bdzYJ5y4', '6101362'), + (516, 2069, 'not_attending', '2023-05-15 22:05:44', '2025-12-17 19:47:03', 'bdzYJ5y4', '6103750'), + (516, 2072, 'not_attending', '2023-05-15 22:05:31', '2025-12-17 19:47:03', 'bdzYJ5y4', '6105573'), + (516, 2074, 'maybe', '2023-05-24 17:30:10', '2025-12-17 19:47:03', 'bdzYJ5y4', '6107312'), + (516, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'bdzYJ5y4', '6107314'), + (516, 2080, 'maybe', '2023-05-29 20:45:17', '2025-12-17 19:47:04', 'bdzYJ5y4', '6114677'), + (516, 2086, 'not_attending', '2023-06-01 06:00:52', '2025-12-17 19:47:04', 'bdzYJ5y4', '6119877'), + (516, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'bdzYJ5y4', '6120034'), + (516, 2089, 'not_attending', '2023-06-04 12:57:07', '2025-12-17 19:47:04', 'bdzYJ5y4', '6125227'), + (516, 2090, 'not_attending', '2023-06-01 06:00:56', '2025-12-17 19:47:04', 'bdzYJ5y4', '6127961'), + (516, 2091, 'not_attending', '2023-06-04 12:57:01', '2025-12-17 19:47:04', 'bdzYJ5y4', '6130657'), + (516, 2093, 'not_attending', '2023-06-04 12:57:28', '2025-12-17 19:47:04', 'bdzYJ5y4', '6132598'), + (516, 2094, 'not_attending', '2023-06-06 05:12:58', '2025-12-17 19:47:04', 'bdzYJ5y4', '6135924'), + (516, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'bdzYJ5y4', '6136733'), + (516, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'bdzYJ5y4', '6137989'), + (516, 2103, 'not_attending', '2023-06-19 01:39:02', '2025-12-17 19:46:50', 'bdzYJ5y4', '6149451'), + (516, 2104, 'maybe', '2023-06-21 09:31:30', '2025-12-17 19:46:50', 'bdzYJ5y4', '6149499'), + (516, 2107, 'not_attending', '2023-06-21 09:31:23', '2025-12-17 19:46:50', 'bdzYJ5y4', '6150480'), + (516, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'bdzYJ5y4', '6150864'), + (516, 2109, 'not_attending', '2023-06-21 09:31:44', '2025-12-17 19:46:50', 'bdzYJ5y4', '6152821'), + (516, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'bdzYJ5y4', '6155491'), + (516, 2111, 'maybe', '2023-06-21 09:31:27', '2025-12-17 19:46:50', 'bdzYJ5y4', '6156121'), + (516, 2112, 'not_attending', '2023-06-21 09:31:22', '2025-12-17 19:46:50', 'bdzYJ5y4', '6156213'), + (516, 2113, 'not_attending', '2023-06-21 09:31:38', '2025-12-17 19:46:50', 'bdzYJ5y4', '6156215'), + (516, 2114, 'maybe', '2023-06-21 09:31:46', '2025-12-17 19:46:50', 'bdzYJ5y4', '6158648'), + (516, 2115, 'not_attending', '2023-06-26 19:20:26', '2025-12-17 19:46:50', 'bdzYJ5y4', '6161437'), + (516, 2116, 'not_attending', '2023-07-06 12:26:47', '2025-12-17 19:46:51', 'bdzYJ5y4', '6163389'), + (516, 2117, 'not_attending', '2023-06-26 19:19:51', '2025-12-17 19:46:50', 'bdzYJ5y4', '6163750'), + (516, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'bdzYJ5y4', '6164417'), + (516, 2119, 'maybe', '2023-06-26 19:20:19', '2025-12-17 19:46:50', 'bdzYJ5y4', '6165461'), + (516, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'bdzYJ5y4', '6166388'), + (516, 2121, 'not_attending', '2023-06-27 23:58:35', '2025-12-17 19:46:50', 'bdzYJ5y4', '6176439'), + (516, 2123, 'not_attending', '2023-06-27 23:58:31', '2025-12-17 19:46:50', 'bdzYJ5y4', '6176502'), + (516, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'bdzYJ5y4', '6182410'), + (516, 2130, 'maybe', '2023-07-06 12:26:40', '2025-12-17 19:46:51', 'bdzYJ5y4', '6183891'), + (516, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'bdzYJ5y4', '6185812'), + (516, 2132, 'not_attending', '2023-07-07 16:08:31', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187015'), + (516, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'bdzYJ5y4', '6187651'), + (516, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187963'), + (516, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187964'), + (516, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'bdzYJ5y4', '6187966'), + (516, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'bdzYJ5y4', '6187967'), + (516, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187969'), + (516, 2139, 'maybe', '2023-07-09 17:14:55', '2025-12-17 19:46:52', 'bdzYJ5y4', '6188027'), + (516, 2140, 'not_attending', '2023-07-07 16:08:43', '2025-12-17 19:46:52', 'bdzYJ5y4', '6188074'), + (516, 2141, 'not_attending', '2023-07-09 17:14:44', '2025-12-17 19:46:52', 'bdzYJ5y4', '6188819'), + (516, 2142, 'not_attending', '2023-07-17 17:44:33', '2025-12-17 19:46:52', 'bdzYJ5y4', '6333850'), + (516, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'bdzYJ5y4', '6334878'), + (516, 2145, 'not_attending', '2023-07-09 17:14:50', '2025-12-17 19:46:52', 'bdzYJ5y4', '6334903'), + (516, 2146, 'not_attending', '2023-07-17 22:31:46', '2025-12-17 19:46:53', 'bdzYJ5y4', '6335638'), + (516, 2147, 'not_attending', '2023-07-11 15:37:17', '2025-12-17 19:46:52', 'bdzYJ5y4', '6335666'), + (516, 2148, 'not_attending', '2023-07-21 22:34:02', '2025-12-17 19:46:53', 'bdzYJ5y4', '6335667'), + (516, 2149, 'maybe', '2023-07-10 11:05:06', '2025-12-17 19:46:53', 'bdzYJ5y4', '6335682'), + (516, 2150, 'not_attending', '2023-07-11 18:20:28', '2025-12-17 19:46:52', 'bdzYJ5y4', '6335687'), + (516, 2151, 'not_attending', '2023-07-11 15:37:13', '2025-12-17 19:46:52', 'bdzYJ5y4', '6335700'), + (516, 2152, 'maybe', '2023-07-11 15:37:09', '2025-12-17 19:46:52', 'bdzYJ5y4', '6337021'), + (516, 2153, 'not_attending', '2023-07-11 16:09:17', '2025-12-17 19:46:52', 'bdzYJ5y4', '6337236'), + (516, 2155, 'not_attending', '2023-07-13 05:22:07', '2025-12-17 19:46:53', 'bdzYJ5y4', '6337970'), + (516, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'bdzYJ5y4', '6338308'), + (516, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'bdzYJ5y4', '6338342'), + (516, 2158, 'not_attending', '2023-07-17 22:31:53', '2025-12-17 19:46:53', 'bdzYJ5y4', '6338353'), + (516, 2159, 'not_attending', '2023-07-13 05:22:42', '2025-12-17 19:46:53', 'bdzYJ5y4', '6338355'), + (516, 2160, 'attending', '2023-07-13 05:22:48', '2025-12-17 19:46:54', 'bdzYJ5y4', '6338358'), + (516, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'bdzYJ5y4', '6341710'), + (516, 2164, 'not_attending', '2023-07-27 00:23:56', '2025-12-17 19:46:54', 'bdzYJ5y4', '6341797'), + (516, 2165, 'maybe', '2023-07-31 23:36:29', '2025-12-17 19:46:54', 'bdzYJ5y4', '6342044'), + (516, 2166, 'not_attending', '2023-07-20 13:05:09', '2025-12-17 19:46:54', 'bdzYJ5y4', '6342115'), + (516, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342298'), + (516, 2169, 'not_attending', '2023-07-21 22:34:04', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342306'), + (516, 2171, 'maybe', '2023-07-20 13:05:12', '2025-12-17 19:46:54', 'bdzYJ5y4', '6342328'), + (516, 2172, 'not_attending', '2023-07-20 17:31:17', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342591'), + (516, 2173, 'not_attending', '2023-07-20 17:31:12', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342769'), + (516, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'bdzYJ5y4', '6343294'), + (516, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'bdzYJ5y4', '6347034'), + (516, 2177, 'not_attending', '2023-08-04 15:30:57', '2025-12-17 19:46:55', 'bdzYJ5y4', '6347053'), + (516, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'bdzYJ5y4', '6347056'), + (516, 2179, 'not_attending', '2023-08-01 11:48:39', '2025-12-17 19:46:54', 'bdzYJ5y4', '6347591'), + (516, 2180, 'not_attending', '2023-07-25 11:06:43', '2025-12-17 19:46:54', 'bdzYJ5y4', '6348788'), + (516, 2181, 'not_attending', '2023-07-27 00:23:50', '2025-12-17 19:46:54', 'bdzYJ5y4', '6349354'), + (516, 2182, 'not_attending', '2023-07-27 00:23:42', '2025-12-17 19:46:53', 'bdzYJ5y4', '6349618'), + (516, 2183, 'not_attending', '2023-07-28 14:08:30', '2025-12-17 19:46:54', 'bdzYJ5y4', '6353008'), + (516, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'bdzYJ5y4', '6353830'), + (516, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'bdzYJ5y4', '6353831'), + (516, 2187, 'not_attending', '2023-08-04 15:30:54', '2025-12-17 19:46:55', 'bdzYJ5y4', '6357559'), + (516, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'bdzYJ5y4', '6357867'), + (516, 2190, 'not_attending', '2023-08-04 15:30:43', '2025-12-17 19:46:55', 'bdzYJ5y4', '6357892'), + (516, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358652'), + (516, 2192, 'not_attending', '2023-08-04 18:44:17', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358666'), + (516, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358668'), + (516, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358669'), + (516, 2195, 'maybe', '2023-08-10 05:06:13', '2025-12-17 19:46:55', 'bdzYJ5y4', '6359397'), + (516, 2196, 'maybe', '2023-09-03 04:04:09', '2025-12-17 19:46:56', 'bdzYJ5y4', '6359398'), + (516, 2197, 'maybe', '2023-09-13 19:50:41', '2025-12-17 19:46:44', 'bdzYJ5y4', '6359399'), + (516, 2198, 'maybe', '2023-09-08 08:46:57', '2025-12-17 19:46:45', 'bdzYJ5y4', '6359400'), + (516, 2199, 'attending', '2023-08-10 05:06:07', '2025-12-17 19:46:55', 'bdzYJ5y4', '6359849'), + (516, 2200, 'not_attending', '2023-08-06 08:27:36', '2025-12-17 19:46:55', 'bdzYJ5y4', '6359850'), + (516, 2203, 'not_attending', '2023-08-10 05:05:45', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361524'), + (516, 2204, 'not_attending', '2023-08-10 05:05:50', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361542'), + (516, 2206, 'not_attending', '2023-08-08 16:27:24', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361659'), + (516, 2208, 'not_attending', '2023-08-08 16:27:28', '2025-12-17 19:46:54', 'bdzYJ5y4', '6361709'), + (516, 2209, 'not_attending', '2023-08-10 05:06:16', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361710'), + (516, 2210, 'maybe', '2023-08-28 10:40:13', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361711'), + (516, 2211, 'not_attending', '2023-08-10 05:06:10', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361712'), + (516, 2212, 'not_attending', '2023-09-24 11:52:18', '2025-12-17 19:46:45', 'bdzYJ5y4', '6361713'), + (516, 2213, 'not_attending', '2023-08-10 05:06:02', '2025-12-17 19:46:55', 'bdzYJ5y4', '6362935'), + (516, 2214, 'not_attending', '2023-08-10 05:05:57', '2025-12-17 19:46:55', 'bdzYJ5y4', '6363218'), + (516, 2215, 'not_attending', '2023-08-10 22:28:15', '2025-12-17 19:46:55', 'bdzYJ5y4', '6363479'), + (516, 2216, 'not_attending', '2023-08-16 15:13:59', '2025-12-17 19:46:55', 'bdzYJ5y4', '6364123'), + (516, 2218, 'not_attending', '2023-08-20 01:46:06', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367308'), + (516, 2220, 'not_attending', '2023-08-31 18:07:43', '2025-12-17 19:46:56', 'bdzYJ5y4', '6367310'), + (516, 2221, 'not_attending', '2023-08-16 15:13:57', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367357'), + (516, 2222, 'maybe', '2023-08-20 01:46:21', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367358'), + (516, 2223, 'not_attending', '2023-08-16 15:13:50', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367439'), + (516, 2224, 'not_attending', '2023-08-16 15:13:48', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367635'), + (516, 2225, 'not_attending', '2023-08-28 10:40:08', '2025-12-17 19:46:55', 'bdzYJ5y4', '6368434'), + (516, 2227, 'attending', '2023-08-20 01:46:00', '2025-12-17 19:46:55', 'bdzYJ5y4', '6370581'), + (516, 2229, 'not_attending', '2023-08-21 02:31:48', '2025-12-17 19:46:55', 'bdzYJ5y4', '6373787'), + (516, 2231, 'not_attending', '2023-08-23 22:39:23', '2025-12-17 19:46:55', 'bdzYJ5y4', '6374748'), + (516, 2232, 'attending', '2023-08-23 15:40:01', '2025-12-17 19:46:55', 'bdzYJ5y4', '6374818'), + (516, 2234, 'not_attending', '2023-08-31 18:07:36', '2025-12-17 19:46:56', 'bdzYJ5y4', '6382559'), + (516, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'bdzYJ5y4', '6382573'), + (516, 2236, 'not_attending', '2023-08-28 10:40:19', '2025-12-17 19:46:55', 'bdzYJ5y4', '6382618'), + (516, 2238, 'not_attending', '2023-08-31 18:07:37', '2025-12-17 19:46:56', 'bdzYJ5y4', '6387266'), + (516, 2239, 'not_attending', '2023-08-31 18:07:28', '2025-12-17 19:46:56', 'bdzYJ5y4', '6387592'), + (516, 2240, 'maybe', '2023-09-03 04:03:51', '2025-12-17 19:46:56', 'bdzYJ5y4', '6388603'), + (516, 2241, 'not_attending', '2023-09-03 04:03:55', '2025-12-17 19:46:44', 'bdzYJ5y4', '6388604'), + (516, 2242, 'maybe', '2023-09-08 08:46:54', '2025-12-17 19:46:45', 'bdzYJ5y4', '6388606'), + (516, 2243, 'not_attending', '2023-09-06 08:54:46', '2025-12-17 19:46:56', 'bdzYJ5y4', '6393686'), + (516, 2247, 'not_attending', '2023-09-06 08:54:43', '2025-12-17 19:46:56', 'bdzYJ5y4', '6394628'), + (516, 2248, 'not_attending', '2023-09-10 02:14:33', '2025-12-17 19:46:44', 'bdzYJ5y4', '6394629'), + (516, 2249, 'not_attending', '2023-09-17 08:10:56', '2025-12-17 19:46:45', 'bdzYJ5y4', '6394630'), + (516, 2250, 'not_attending', '2023-09-24 11:52:12', '2025-12-17 19:46:45', 'bdzYJ5y4', '6394631'), + (516, 2253, 'not_attending', '2023-09-17 08:11:06', '2025-12-17 19:46:45', 'bdzYJ5y4', '6401811'), + (516, 2255, 'not_attending', '2023-09-13 19:50:47', '2025-12-17 19:46:45', 'bdzYJ5y4', '6403562'), + (516, 2261, 'not_attending', '2023-09-27 20:40:24', '2025-12-17 19:46:45', 'bdzYJ5y4', '6427422'), + (516, 2262, 'not_attending', '2023-09-29 16:44:54', '2025-12-17 19:46:45', 'bdzYJ5y4', '6427423'), + (516, 2263, 'maybe', '2023-09-27 20:40:39', '2025-12-17 19:46:45', 'bdzYJ5y4', '6429351'), + (516, 2264, 'not_attending', '2023-09-27 20:40:21', '2025-12-17 19:46:45', 'bdzYJ5y4', '6431478'), + (516, 2265, 'not_attending', '2023-09-29 16:44:52', '2025-12-17 19:46:45', 'bdzYJ5y4', '6439625'), + (516, 2266, 'maybe', '2023-10-03 22:41:14', '2025-12-17 19:46:45', 'bdzYJ5y4', '6439635'), + (516, 2267, 'not_attending', '2023-10-02 02:50:35', '2025-12-17 19:46:45', 'bdzYJ5y4', '6440034'), + (516, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'bdzYJ5y4', '6440863'), + (516, 2269, 'not_attending', '2023-10-03 22:41:02', '2025-12-17 19:46:45', 'bdzYJ5y4', '6442978'), + (516, 2270, 'not_attending', '2023-10-03 22:41:18', '2025-12-17 19:46:46', 'bdzYJ5y4', '6443067'), + (516, 2271, 'maybe', '2023-10-03 22:41:07', '2025-12-17 19:46:45', 'bdzYJ5y4', '6445375'), + (516, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'bdzYJ5y4', '6445440'), + (516, 2273, 'not_attending', '2023-10-03 22:41:00', '2025-12-17 19:46:45', 'bdzYJ5y4', '6448282'), + (516, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'bdzYJ5y4', '6453951'), + (516, 2277, 'not_attending', '2023-10-09 09:26:58', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455211'), + (516, 2278, 'not_attending', '2023-10-09 09:26:42', '2025-12-17 19:46:45', 'bdzYJ5y4', '6455213'), + (516, 2279, 'not_attending', '2023-10-10 19:29:59', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455460'), + (516, 2280, 'not_attending', '2023-10-09 09:26:46', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455470'), + (516, 2283, 'not_attending', '2023-10-10 19:29:55', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455503'), + (516, 2284, 'not_attending', '2023-10-11 21:05:51', '2025-12-17 19:46:46', 'bdzYJ5y4', '6460928'), + (516, 2285, 'not_attending', '2023-10-21 13:24:22', '2025-12-17 19:46:47', 'bdzYJ5y4', '6460929'), + (516, 2286, 'not_attending', '2023-11-24 03:13:41', '2025-12-17 19:46:48', 'bdzYJ5y4', '6460930'), + (516, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'bdzYJ5y4', '6461696'), + (516, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'bdzYJ5y4', '6462129'), + (516, 2290, 'not_attending', '2023-10-11 21:05:59', '2025-12-17 19:46:46', 'bdzYJ5y4', '6462214'), + (516, 2291, 'not_attending', '2023-10-11 21:05:54', '2025-12-17 19:46:46', 'bdzYJ5y4', '6462215'), + (516, 2292, 'not_attending', '2023-10-28 01:25:29', '2025-12-17 19:46:47', 'bdzYJ5y4', '6462216'), + (516, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'bdzYJ5y4', '6463218'), + (516, 2294, 'not_attending', '2023-10-12 14:58:38', '2025-12-17 19:46:46', 'bdzYJ5y4', '6465907'), + (516, 2295, 'maybe', '2023-10-16 07:40:02', '2025-12-17 19:46:46', 'bdzYJ5y4', '6467832'), + (516, 2296, 'not_attending', '2023-10-21 13:24:14', '2025-12-17 19:46:47', 'bdzYJ5y4', '6468393'), + (516, 2297, 'not_attending', '2023-10-14 06:19:26', '2025-12-17 19:46:46', 'bdzYJ5y4', '6469583'), + (516, 2299, 'maybe', '2023-10-16 07:39:54', '2025-12-17 19:46:46', 'bdzYJ5y4', '6472181'), + (516, 2300, 'maybe', '2023-10-16 07:40:06', '2025-12-17 19:46:47', 'bdzYJ5y4', '6472185'), + (516, 2301, 'not_attending', '2023-10-22 17:54:54', '2025-12-17 19:46:46', 'bdzYJ5y4', '6474276'), + (516, 2303, 'not_attending', '2023-10-21 13:24:24', '2025-12-17 19:46:47', 'bdzYJ5y4', '6482691'), + (516, 2304, 'attending', '2023-10-25 21:56:27', '2025-12-17 19:46:47', 'bdzYJ5y4', '6482693'), + (516, 2306, 'not_attending', '2023-11-11 18:37:05', '2025-12-17 19:46:47', 'bdzYJ5y4', '6484200'), + (516, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'bdzYJ5y4', '6484680'), + (516, 2308, 'not_attending', '2023-10-25 21:56:08', '2025-12-17 19:46:47', 'bdzYJ5y4', '6485393'), + (516, 2310, 'not_attending', '2023-10-25 21:56:31', '2025-12-17 19:46:47', 'bdzYJ5y4', '6487709'), + (516, 2311, 'not_attending', '2023-10-30 05:21:14', '2025-12-17 19:46:47', 'bdzYJ5y4', '6487725'), + (516, 2314, 'not_attending', '2023-10-29 21:52:33', '2025-12-17 19:46:47', 'bdzYJ5y4', '6493665'), + (516, 2315, 'not_attending', '2023-10-30 05:21:11', '2025-12-17 19:46:47', 'bdzYJ5y4', '6493666'), + (516, 2316, 'not_attending', '2023-11-07 02:45:38', '2025-12-17 19:46:48', 'bdzYJ5y4', '6493668'), + (516, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'bdzYJ5y4', '6507741'), + (516, 2318, 'attending', '2023-10-30 20:42:25', '2025-12-17 19:46:47', 'bdzYJ5y4', '6508566'), + (516, 2319, 'not_attending', '2023-10-30 20:42:28', '2025-12-17 19:46:47', 'bdzYJ5y4', '6508567'), + (516, 2320, 'not_attending', '2023-11-07 02:45:17', '2025-12-17 19:46:47', 'bdzYJ5y4', '6508647'), + (516, 2321, 'not_attending', '2023-11-01 16:17:41', '2025-12-17 19:46:47', 'bdzYJ5y4', '6512075'), + (516, 2322, 'not_attending', '2023-11-01 16:17:49', '2025-12-17 19:46:48', 'bdzYJ5y4', '6514659'), + (516, 2323, 'not_attending', '2023-11-12 05:12:27', '2025-12-17 19:46:49', 'bdzYJ5y4', '6514660'), + (516, 2324, 'not_attending', '2023-11-12 05:21:05', '2025-12-17 19:46:49', 'bdzYJ5y4', '6514662'), + (516, 2325, 'attending', '2023-11-12 05:21:09', '2025-12-17 19:46:36', 'bdzYJ5y4', '6514663'), + (516, 2326, 'not_attending', '2023-11-16 22:15:39', '2025-12-17 19:46:48', 'bdzYJ5y4', '6514805'), + (516, 2327, 'not_attending', '2023-11-01 22:41:20', '2025-12-17 19:46:47', 'bdzYJ5y4', '6515494'), + (516, 2328, 'not_attending', '2023-11-01 22:41:17', '2025-12-17 19:46:47', 'bdzYJ5y4', '6515504'), + (516, 2329, 'not_attending', '2023-11-07 21:32:25', '2025-12-17 19:46:47', 'bdzYJ5y4', '6517138'), + (516, 2330, 'not_attending', '2023-11-07 02:45:27', '2025-12-17 19:46:47', 'bdzYJ5y4', '6517941'), + (516, 2331, 'not_attending', '2023-11-07 02:45:33', '2025-12-17 19:46:47', 'bdzYJ5y4', '6518640'), + (516, 2332, 'not_attending', '2023-11-09 18:31:52', '2025-12-17 19:46:47', 'bdzYJ5y4', '6518655'), + (516, 2333, 'not_attending', '2023-11-07 02:45:14', '2025-12-17 19:46:47', 'bdzYJ5y4', '6519103'), + (516, 2335, 'not_attending', '2023-11-09 04:23:22', '2025-12-17 19:46:47', 'bdzYJ5y4', '6534890'), + (516, 2337, 'attending', '2023-11-08 01:06:34', '2025-12-17 19:46:48', 'bdzYJ5y4', '6535681'), + (516, 2338, 'not_attending', '2023-11-12 05:12:19', '2025-12-17 19:46:48', 'bdzYJ5y4', '6538868'), + (516, 2339, 'not_attending', '2023-11-11 18:37:01', '2025-12-17 19:46:47', 'bdzYJ5y4', '6539128'), + (516, 2340, 'not_attending', '2023-11-15 19:05:01', '2025-12-17 19:46:48', 'bdzYJ5y4', '6540279'), + (516, 2341, 'not_attending', '2023-11-15 19:04:58', '2025-12-17 19:46:48', 'bdzYJ5y4', '6543263'), + (516, 2343, 'maybe', '2023-11-15 19:05:04', '2025-12-17 19:46:48', 'bdzYJ5y4', '6574728'), + (516, 2345, 'not_attending', '2023-11-27 06:43:24', '2025-12-17 19:46:48', 'bdzYJ5y4', '6582414'), + (516, 2347, 'not_attending', '2023-11-20 12:06:01', '2025-12-17 19:46:48', 'bdzYJ5y4', '6583053'), + (516, 2348, 'not_attending', '2023-11-20 12:05:59', '2025-12-17 19:46:48', 'bdzYJ5y4', '6583064'), + (516, 2350, 'not_attending', '2023-11-21 03:38:32', '2025-12-17 19:46:48', 'bdzYJ5y4', '6584352'), + (516, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'bdzYJ5y4', '6584747'), + (516, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'bdzYJ5y4', '6587097'), + (516, 2354, 'not_attending', '2023-11-29 23:47:06', '2025-12-17 19:46:48', 'bdzYJ5y4', '6591742'), + (516, 2355, 'not_attending', '2023-12-04 19:45:19', '2025-12-17 19:46:49', 'bdzYJ5y4', '6593339'), + (516, 2357, 'maybe', '2023-12-18 16:45:27', '2025-12-17 19:46:36', 'bdzYJ5y4', '6593341'), + (516, 2358, 'not_attending', '2023-11-29 19:13:47', '2025-12-17 19:46:48', 'bdzYJ5y4', '6595321'), + (516, 2362, 'not_attending', '2023-12-04 19:45:23', '2025-12-17 19:46:49', 'bdzYJ5y4', '6605708'), + (516, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'bdzYJ5y4', '6609022'), + (516, 2365, 'not_attending', '2023-12-18 16:45:35', '2025-12-17 19:46:37', 'bdzYJ5y4', '6613093'), + (516, 2370, 'not_attending', '2023-12-13 18:22:08', '2025-12-17 19:46:36', 'bdzYJ5y4', '6623765'), + (516, 2372, 'not_attending', '2023-12-18 16:45:30', '2025-12-17 19:46:36', 'bdzYJ5y4', '6628243'), + (516, 2373, 'not_attending', '2023-12-28 19:56:37', '2025-12-17 19:46:38', 'bdzYJ5y4', '6632678'), + (516, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'bdzYJ5y4', '6632757'), + (516, 2375, 'not_attending', '2023-12-20 22:38:51', '2025-12-17 19:46:36', 'bdzYJ5y4', '6634548'), + (516, 2377, 'not_attending', '2024-01-06 02:38:23', '2025-12-17 19:46:37', 'bdzYJ5y4', '6643448'), + (516, 2378, 'maybe', '2023-12-30 17:57:59', '2025-12-17 19:46:37', 'bdzYJ5y4', '6644006'), + (516, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'bdzYJ5y4', '6644187'), + (516, 2380, 'not_attending', '2023-12-31 15:50:36', '2025-12-17 19:46:37', 'bdzYJ5y4', '6645105'), + (516, 2381, 'maybe', '2024-01-02 04:53:12', '2025-12-17 19:46:37', 'bdzYJ5y4', '6646398'), + (516, 2382, 'maybe', '2024-01-02 04:52:55', '2025-12-17 19:46:37', 'bdzYJ5y4', '6646401'), + (516, 2384, 'maybe', '2024-01-02 04:53:07', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648022'), + (516, 2385, 'not_attending', '2024-01-08 20:21:19', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648943'), + (516, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648951'), + (516, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648952'), + (516, 2388, 'not_attending', '2024-01-03 03:20:46', '2025-12-17 19:46:37', 'bdzYJ5y4', '6649244'), + (516, 2389, 'not_attending', '2024-01-12 00:47:42', '2025-12-17 19:46:40', 'bdzYJ5y4', '6651094'), + (516, 2391, 'maybe', '2024-01-06 02:38:17', '2025-12-17 19:46:37', 'bdzYJ5y4', '6654138'), + (516, 2392, 'not_attending', '2024-01-06 02:38:38', '2025-12-17 19:46:37', 'bdzYJ5y4', '6654412'), + (516, 2394, 'not_attending', '2024-01-15 03:21:38', '2025-12-17 19:46:38', 'bdzYJ5y4', '6654470'), + (516, 2395, 'not_attending', '2024-01-16 07:05:26', '2025-12-17 19:46:38', 'bdzYJ5y4', '6654471'), + (516, 2396, 'not_attending', '2024-01-16 07:05:30', '2025-12-17 19:46:38', 'bdzYJ5y4', '6655401'), + (516, 2399, 'attending', '2024-01-10 05:08:38', '2025-12-17 19:46:38', 'bdzYJ5y4', '6657583'), + (516, 2400, 'not_attending', '2024-01-08 20:21:31', '2025-12-17 19:46:37', 'bdzYJ5y4', '6659378'), + (516, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'bdzYJ5y4', '6661585'), + (516, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'bdzYJ5y4', '6661588'), + (516, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'bdzYJ5y4', '6661589'), + (516, 2404, 'not_attending', '2024-01-12 00:47:27', '2025-12-17 19:46:38', 'bdzYJ5y4', '6666858'), + (516, 2405, 'not_attending', '2024-01-16 07:05:39', '2025-12-17 19:46:38', 'bdzYJ5y4', '6667332'), + (516, 2406, 'not_attending', '2024-01-18 22:40:49', '2025-12-17 19:46:40', 'bdzYJ5y4', '6692344'), + (516, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'bdzYJ5y4', '6699906'), + (516, 2408, 'maybe', '2024-01-15 04:20:55', '2025-12-17 19:46:40', 'bdzYJ5y4', '6699907'), + (516, 2409, 'not_attending', '2024-01-15 04:21:00', '2025-12-17 19:46:41', 'bdzYJ5y4', '6699909'), + (516, 2410, 'maybe', '2024-01-15 04:21:10', '2025-12-17 19:46:41', 'bdzYJ5y4', '6699911'), + (516, 2411, 'not_attending', '2024-01-28 14:37:01', '2025-12-17 19:46:41', 'bdzYJ5y4', '6699913'), + (516, 2412, 'not_attending', '2024-02-02 18:40:56', '2025-12-17 19:46:43', 'bdzYJ5y4', '6700717'), + (516, 2413, 'not_attending', '2024-02-16 16:05:40', '2025-12-17 19:46:42', 'bdzYJ5y4', '6700719'), + (516, 2414, 'not_attending', '2024-01-18 22:40:56', '2025-12-17 19:46:40', 'bdzYJ5y4', '6701000'), + (516, 2415, 'not_attending', '2024-01-18 22:40:54', '2025-12-17 19:46:40', 'bdzYJ5y4', '6701001'), + (516, 2416, 'attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'bdzYJ5y4', '6701109'), + (516, 2419, 'not_attending', '2024-01-29 19:32:52', '2025-12-17 19:46:41', 'bdzYJ5y4', '6704505'), + (516, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'bdzYJ5y4', '6705219'), + (516, 2426, 'maybe', '2024-01-23 12:49:17', '2025-12-17 19:46:40', 'bdzYJ5y4', '6705569'), + (516, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'bdzYJ5y4', '6710153'), + (516, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'bdzYJ5y4', '6711552'), + (516, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'bdzYJ5y4', '6711553'), + (516, 2431, 'not_attending', '2024-01-29 19:32:50', '2025-12-17 19:46:41', 'bdzYJ5y4', '6712394'), + (516, 2432, 'not_attending', '2024-01-29 19:32:56', '2025-12-17 19:46:41', 'bdzYJ5y4', '6712822'), + (516, 2435, 'not_attending', '2024-01-29 19:32:43', '2025-12-17 19:46:41', 'bdzYJ5y4', '6721547'), + (516, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'bdzYJ5y4', '6722688'), + (516, 2438, 'not_attending', '2024-02-02 18:40:48', '2025-12-17 19:46:41', 'bdzYJ5y4', '6730201'), + (516, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'bdzYJ5y4', '6730620'), + (516, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'bdzYJ5y4', '6730642'), + (516, 2441, 'not_attending', '2024-02-02 18:40:32', '2025-12-17 19:46:41', 'bdzYJ5y4', '6731263'), + (516, 2442, 'not_attending', '2024-02-02 18:40:36', '2025-12-17 19:46:41', 'bdzYJ5y4', '6732647'), + (516, 2443, 'not_attending', '2024-02-03 19:06:15', '2025-12-17 19:46:41', 'bdzYJ5y4', '6733775'), + (516, 2444, 'not_attending', '2024-02-05 06:06:12', '2025-12-17 19:46:41', 'bdzYJ5y4', '6734367'), + (516, 2446, 'not_attending', '2024-02-26 17:50:24', '2025-12-17 19:46:43', 'bdzYJ5y4', '6734369'), + (516, 2447, 'not_attending', '2024-03-10 21:34:38', '2025-12-17 19:46:32', 'bdzYJ5y4', '6734370'), + (516, 2448, 'not_attending', '2024-03-22 17:43:36', '2025-12-17 19:46:33', 'bdzYJ5y4', '6734371'), + (516, 2449, 'not_attending', '2024-02-13 20:23:03', '2025-12-17 19:46:42', 'bdzYJ5y4', '6735833'), + (516, 2451, 'not_attending', '2024-02-08 08:46:51', '2025-12-17 19:46:41', 'bdzYJ5y4', '6740333'), + (516, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'bdzYJ5y4', '6740364'), + (516, 2454, 'not_attending', '2024-02-16 16:05:47', '2025-12-17 19:46:42', 'bdzYJ5y4', '6740921'), + (516, 2455, 'not_attending', '2024-02-08 08:46:53', '2025-12-17 19:46:41', 'bdzYJ5y4', '6741034'), + (516, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'bdzYJ5y4', '6743829'), + (516, 2463, 'not_attending', '2024-02-13 20:22:44', '2025-12-17 19:46:41', 'bdzYJ5y4', '6746394'), + (516, 2465, 'not_attending', '2024-02-16 16:05:53', '2025-12-17 19:46:42', 'bdzYJ5y4', '7026725'), + (516, 2467, 'not_attending', '2024-02-21 19:51:28', '2025-12-17 19:46:43', 'bdzYJ5y4', '7029987'), + (516, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'bdzYJ5y4', '7030380'), + (516, 2469, 'maybe', '2024-02-19 07:18:48', '2025-12-17 19:46:42', 'bdzYJ5y4', '7030632'), + (516, 2471, 'not_attending', '2024-02-21 19:50:58', '2025-12-17 19:46:42', 'bdzYJ5y4', '7032425'), + (516, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'bdzYJ5y4', '7033677'), + (516, 2473, 'not_attending', '2024-02-21 19:51:35', '2025-12-17 19:46:43', 'bdzYJ5y4', '7033724'), + (516, 2474, 'attending', '2024-02-20 21:23:03', '2025-12-17 19:46:43', 'bdzYJ5y4', '7035415'), + (516, 2475, 'not_attending', '2024-02-21 19:51:40', '2025-12-17 19:46:43', 'bdzYJ5y4', '7035643'), + (516, 2476, 'not_attending', '2024-02-21 19:51:38', '2025-12-17 19:46:43', 'bdzYJ5y4', '7035691'), + (516, 2477, 'not_attending', '2024-02-21 19:50:52', '2025-12-17 19:46:42', 'bdzYJ5y4', '7035692'), + (516, 2478, 'not_attending', '2024-02-22 00:01:23', '2025-12-17 19:46:43', 'bdzYJ5y4', '7036478'), + (516, 2479, 'not_attending', '2024-02-21 19:51:33', '2025-12-17 19:46:43', 'bdzYJ5y4', '7037009'), + (516, 2481, 'not_attending', '2024-02-26 04:29:03', '2025-12-17 19:46:43', 'bdzYJ5y4', '7044715'), + (516, 2482, 'not_attending', '2024-02-29 20:49:39', '2025-12-17 19:46:44', 'bdzYJ5y4', '7044719'), + (516, 2483, 'not_attending', '2024-02-26 17:50:32', '2025-12-17 19:46:32', 'bdzYJ5y4', '7044720'), + (516, 2484, 'not_attending', '2024-02-29 20:49:33', '2025-12-17 19:46:43', 'bdzYJ5y4', '7046836'), + (516, 2485, 'not_attending', '2024-02-27 07:40:22', '2025-12-17 19:46:43', 'bdzYJ5y4', '7048111'), + (516, 2486, 'not_attending', '2024-02-29 20:49:26', '2025-12-17 19:46:43', 'bdzYJ5y4', '7048277'), + (516, 2487, 'maybe', '2024-03-17 19:56:59', '2025-12-17 19:46:33', 'bdzYJ5y4', '7049279'), + (516, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'bdzYJ5y4', '7050318'), + (516, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'bdzYJ5y4', '7050319'), + (516, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'bdzYJ5y4', '7050322'), + (516, 2493, 'not_attending', '2024-03-05 21:58:59', '2025-12-17 19:46:32', 'bdzYJ5y4', '7052471'), + (516, 2494, 'not_attending', '2024-03-05 21:58:56', '2025-12-17 19:46:32', 'bdzYJ5y4', '7052472'), + (516, 2495, 'attending', '2024-03-04 18:26:04', '2025-12-17 19:46:32', 'bdzYJ5y4', '7052982'), + (516, 2498, 'maybe', '2024-03-17 19:56:50', '2025-12-17 19:46:33', 'bdzYJ5y4', '7057662'), + (516, 2499, 'attending', '2024-03-04 19:39:36', '2025-12-17 19:46:43', 'bdzYJ5y4', '7057804'), + (516, 2504, 'not_attending', '2024-03-21 22:28:17', '2025-12-17 19:46:33', 'bdzYJ5y4', '7063296'), + (516, 2505, 'not_attending', '2024-03-21 21:22:42', '2025-12-17 19:46:33', 'bdzYJ5y4', '7069163'), + (516, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'bdzYJ5y4', '7072824'), + (516, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'bdzYJ5y4', '7074348'), + (516, 2509, 'not_attending', '2024-03-22 17:43:39', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074349'), + (516, 2510, 'maybe', '2024-03-18 02:18:48', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074350'), + (516, 2511, 'not_attending', '2024-04-04 23:55:12', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074351'), + (516, 2512, 'not_attending', '2024-04-01 19:11:54', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074352'), + (516, 2513, 'not_attending', '2024-04-15 11:35:07', '2025-12-17 19:46:34', 'bdzYJ5y4', '7074353'), + (516, 2517, 'not_attending', '2024-06-28 14:24:34', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074357'), + (516, 2519, 'not_attending', '2024-05-24 16:41:39', '2025-12-17 19:46:36', 'bdzYJ5y4', '7074359'), + (516, 2521, 'not_attending', '2024-06-13 17:16:39', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074361'), + (516, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074364'), + (516, 2525, 'not_attending', '2024-06-10 20:07:23', '2025-12-17 19:46:28', 'bdzYJ5y4', '7074365'), + (516, 2526, 'not_attending', '2024-07-27 14:02:14', '2025-12-17 19:46:31', 'bdzYJ5y4', '7074366'), + (516, 2527, 'not_attending', '2024-06-27 17:03:48', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074367'), + (516, 2536, 'not_attending', '2024-03-17 19:56:46', '2025-12-17 19:46:33', 'bdzYJ5y4', '7077689'), + (516, 2537, 'not_attending', '2024-03-17 19:57:02', '2025-12-17 19:46:33', 'bdzYJ5y4', '7085484'), + (516, 2538, 'not_attending', '2024-03-17 19:57:09', '2025-12-17 19:46:33', 'bdzYJ5y4', '7085485'), + (516, 2539, 'maybe', '2024-03-18 02:18:23', '2025-12-17 19:46:33', 'bdzYJ5y4', '7085486'), + (516, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'bdzYJ5y4', '7089267'), + (516, 2541, 'not_attending', '2024-03-17 19:56:40', '2025-12-17 19:46:33', 'bdzYJ5y4', '7089404'), + (516, 2542, 'not_attending', '2024-03-18 02:18:59', '2025-12-17 19:46:33', 'bdzYJ5y4', '7090025'), + (516, 2544, 'not_attending', '2024-03-22 17:44:14', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096941'), + (516, 2545, 'not_attending', '2024-03-22 17:43:51', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096942'), + (516, 2546, 'not_attending', '2024-03-22 17:43:54', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096944'), + (516, 2547, 'not_attending', '2024-03-22 17:43:40', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096945'), + (516, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'bdzYJ5y4', '7098747'), + (516, 2549, 'not_attending', '2024-03-24 20:13:18', '2025-12-17 19:46:33', 'bdzYJ5y4', '7099657'), + (516, 2551, 'not_attending', '2024-03-31 02:23:27', '2025-12-17 19:46:33', 'bdzYJ5y4', '7109912'), + (516, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'bdzYJ5y4', '7113468'), + (516, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'bdzYJ5y4', '7114856'), + (516, 2555, 'not_attending', '2024-04-01 19:12:06', '2025-12-17 19:46:34', 'bdzYJ5y4', '7114951'), + (516, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'bdzYJ5y4', '7114955'), + (516, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'bdzYJ5y4', '7114956'), + (516, 2558, 'attending', '2024-04-04 23:55:50', '2025-12-17 19:46:35', 'bdzYJ5y4', '7114957'), + (516, 2559, 'not_attending', '2024-04-01 19:11:52', '2025-12-17 19:46:33', 'bdzYJ5y4', '7115254'), + (516, 2563, 'not_attending', '2024-04-04 23:55:16', '2025-12-17 19:46:33', 'bdzYJ5y4', '7134734'), + (516, 2564, 'not_attending', '2024-04-04 23:55:09', '2025-12-17 19:46:33', 'bdzYJ5y4', '7134735'), + (516, 2566, 'not_attending', '2024-04-15 11:35:04', '2025-12-17 19:46:34', 'bdzYJ5y4', '7140664'), + (516, 2567, 'not_attending', '2024-04-04 23:55:04', '2025-12-17 19:46:33', 'bdzYJ5y4', '7144962'), + (516, 2568, 'maybe', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'bdzYJ5y4', '7153615'), + (516, 2571, 'not_attending', '2024-04-08 13:39:25', '2025-12-17 19:46:33', 'bdzYJ5y4', '7159484'), + (516, 2573, 'not_attending', '2024-04-15 11:35:01', '2025-12-17 19:46:34', 'bdzYJ5y4', '7160612'), + (516, 2576, 'not_attending', '2024-04-22 21:24:46', '2025-12-17 19:46:34', 'bdzYJ5y4', '7164538'), + (516, 2578, 'maybe', '2024-04-11 15:34:10', '2025-12-17 19:46:34', 'bdzYJ5y4', '7167016'), + (516, 2581, 'not_attending', '2024-04-22 21:24:33', '2025-12-17 19:46:34', 'bdzYJ5y4', '7169048'), + (516, 2582, 'maybe', '2024-04-15 11:35:08', '2025-12-17 19:46:34', 'bdzYJ5y4', '7169765'), + (516, 2583, 'not_attending', '2024-04-15 11:34:57', '2025-12-17 19:46:34', 'bdzYJ5y4', '7172946'), + (516, 2585, 'maybe', '2024-04-22 21:24:37', '2025-12-17 19:46:34', 'bdzYJ5y4', '7175828'), + (516, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'bdzYJ5y4', '7178446'), + (516, 2594, 'maybe', '2024-04-22 21:24:25', '2025-12-17 19:46:34', 'bdzYJ5y4', '7182117'), + (516, 2595, 'maybe', '2024-04-22 21:24:43', '2025-12-17 19:46:34', 'bdzYJ5y4', '7182252'), + (516, 2596, 'not_attending', '2024-04-22 21:24:49', '2025-12-17 19:46:34', 'bdzYJ5y4', '7183788'), + (516, 2597, 'not_attending', '2024-04-22 13:32:05', '2025-12-17 19:46:34', 'bdzYJ5y4', '7186726'), + (516, 2598, 'not_attending', '2024-04-22 21:24:27', '2025-12-17 19:46:34', 'bdzYJ5y4', '7186731'), + (516, 2599, 'not_attending', '2024-04-22 21:24:28', '2025-12-17 19:46:34', 'bdzYJ5y4', '7189372'), + (516, 2600, 'not_attending', '2024-04-30 02:59:31', '2025-12-17 19:46:35', 'bdzYJ5y4', '7196794'), + (516, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'bdzYJ5y4', '7220467'), + (516, 2604, 'not_attending', '2024-05-24 16:41:36', '2025-12-17 19:46:36', 'bdzYJ5y4', '7225670'), + (516, 2605, 'not_attending', '2024-05-02 15:23:03', '2025-12-17 19:46:35', 'bdzYJ5y4', '7229243'), + (516, 2607, 'not_attending', '2024-04-30 02:59:42', '2025-12-17 19:46:35', 'bdzYJ5y4', '7240136'), + (516, 2609, 'not_attending', '2024-04-30 02:59:18', '2025-12-17 19:46:35', 'bdzYJ5y4', '7240354'), + (516, 2610, 'not_attending', '2024-05-03 11:29:46', '2025-12-17 19:46:35', 'bdzYJ5y4', '7241797'), + (516, 2612, 'maybe', '2024-05-05 21:30:25', '2025-12-17 19:46:35', 'bdzYJ5y4', '7247643'), + (516, 2613, 'not_attending', '2024-05-05 21:30:32', '2025-12-17 19:46:35', 'bdzYJ5y4', '7247644'), + (516, 2614, 'not_attending', '2024-05-08 17:10:16', '2025-12-17 19:46:35', 'bdzYJ5y4', '7247645'), + (516, 2616, 'not_attending', '2024-05-05 21:30:02', '2025-12-17 19:46:35', 'bdzYJ5y4', '7250296'), + (516, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'bdzYJ5y4', '7251633'), + (516, 2618, 'not_attending', '2024-05-05 21:30:22', '2025-12-17 19:46:35', 'bdzYJ5y4', '7251685'), + (516, 2620, 'not_attending', '2024-05-11 00:57:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7258097'), + (516, 2622, 'not_attending', '2024-05-10 21:03:34', '2025-12-17 19:46:35', 'bdzYJ5y4', '7262064'), + (516, 2624, 'maybe', '2024-05-11 00:56:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7263301'), + (516, 2625, 'not_attending', '2024-05-11 00:57:32', '2025-12-17 19:46:35', 'bdzYJ5y4', '7263302'), + (516, 2626, 'attending', '2024-05-12 11:51:18', '2025-12-17 19:46:35', 'bdzYJ5y4', '7264723'), + (516, 2627, 'attending', '2024-05-12 11:51:21', '2025-12-17 19:46:35', 'bdzYJ5y4', '7264724'), + (516, 2628, 'attending', '2024-05-12 11:51:28', '2025-12-17 19:46:36', 'bdzYJ5y4', '7264725'), + (516, 2629, 'attending', '2024-05-12 11:51:30', '2025-12-17 19:46:28', 'bdzYJ5y4', '7264726'), + (516, 2636, 'maybe', '2024-05-21 21:35:57', '2025-12-17 19:46:35', 'bdzYJ5y4', '7270323'), + (516, 2637, 'maybe', '2024-05-21 21:35:59', '2025-12-17 19:46:35', 'bdzYJ5y4', '7270324'), + (516, 2640, 'not_attending', '2024-05-21 21:35:35', '2025-12-17 19:46:35', 'bdzYJ5y4', '7275331'), + (516, 2645, 'not_attending', '2024-05-21 21:35:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7279964'), + (516, 2646, 'not_attending', '2024-05-21 21:35:40', '2025-12-17 19:46:35', 'bdzYJ5y4', '7281768'), + (516, 2647, 'maybe', '2024-05-31 16:09:09', '2025-12-17 19:46:28', 'bdzYJ5y4', '7282057'), + (516, 2648, 'not_attending', '2024-05-21 21:35:36', '2025-12-17 19:46:35', 'bdzYJ5y4', '7282283'), + (516, 2650, 'not_attending', '2024-05-24 16:40:43', '2025-12-17 19:46:36', 'bdzYJ5y4', '7288199'), + (516, 2652, 'not_attending', '2024-06-01 00:09:58', '2025-12-17 19:46:36', 'bdzYJ5y4', '7288339'), + (516, 2655, 'not_attending', '2024-05-27 16:40:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7291225'), + (516, 2658, 'not_attending', '2024-06-01 21:32:57', '2025-12-17 19:46:36', 'bdzYJ5y4', '7298846'), + (516, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'bdzYJ5y4', '7302674'), + (516, 2671, 'not_attending', '2024-06-10 14:14:55', '2025-12-17 19:46:28', 'bdzYJ5y4', '7318256'), + (516, 2674, 'maybe', '2024-07-01 17:26:28', '2025-12-17 19:46:29', 'bdzYJ5y4', '7319480'), + (516, 2678, 'attending', '2024-06-10 10:40:48', '2025-12-17 19:46:28', 'bdzYJ5y4', '7319489'), + (516, 2679, 'not_attending', '2024-06-10 10:40:51', '2025-12-17 19:46:29', 'bdzYJ5y4', '7319490'), + (516, 2681, 'not_attending', '2024-06-10 14:14:51', '2025-12-17 19:46:28', 'bdzYJ5y4', '7320409'), + (516, 2682, 'not_attending', '2024-06-10 14:14:52', '2025-12-17 19:46:28', 'bdzYJ5y4', '7321862'), + (516, 2685, 'not_attending', '2024-06-12 08:35:06', '2025-12-17 19:46:28', 'bdzYJ5y4', '7322675'), + (516, 2686, 'not_attending', '2024-06-13 17:16:41', '2025-12-17 19:46:29', 'bdzYJ5y4', '7323802'), + (516, 2687, 'not_attending', '2024-06-12 08:35:04', '2025-12-17 19:46:28', 'bdzYJ5y4', '7324019'), + (516, 2688, 'attending', '2024-06-13 17:16:53', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324073'), + (516, 2689, 'not_attending', '2024-06-21 20:14:13', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324074'), + (516, 2690, 'attending', '2024-06-28 14:24:39', '2025-12-17 19:46:30', 'bdzYJ5y4', '7324075'), + (516, 2691, 'not_attending', '2024-06-28 14:24:42', '2025-12-17 19:46:30', 'bdzYJ5y4', '7324076'), + (516, 2692, 'maybe', '2024-06-29 13:49:14', '2025-12-17 19:46:30', 'bdzYJ5y4', '7324077'), + (516, 2693, 'not_attending', '2024-07-09 17:33:31', '2025-12-17 19:46:31', 'bdzYJ5y4', '7324078'), + (516, 2694, 'not_attending', '2024-07-09 17:33:34', '2025-12-17 19:46:31', 'bdzYJ5y4', '7324079'), + (516, 2695, 'attending', '2024-07-09 17:33:37', '2025-12-17 19:46:31', 'bdzYJ5y4', '7324080'), + (516, 2696, 'attending', '2024-07-09 17:33:39', '2025-12-17 19:46:32', 'bdzYJ5y4', '7324081'), + (516, 2697, 'not_attending', '2024-07-09 17:33:42', '2025-12-17 19:46:32', 'bdzYJ5y4', '7324082'), + (516, 2698, 'attending', '2024-08-13 17:33:19', '2025-12-17 19:46:24', 'bdzYJ5y4', '7324083'), + (516, 2701, 'not_attending', '2024-06-27 17:03:53', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324391'), + (516, 2705, 'not_attending', '2024-06-27 17:03:57', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324944'), + (516, 2706, 'not_attending', '2024-06-13 17:16:36', '2025-12-17 19:46:28', 'bdzYJ5y4', '7324947'), + (516, 2707, 'not_attending', '2024-06-13 17:16:30', '2025-12-17 19:46:28', 'bdzYJ5y4', '7324952'), + (516, 2708, 'not_attending', '2024-06-14 08:21:58', '2025-12-17 19:46:28', 'bdzYJ5y4', '7325048'), + (516, 2709, 'maybe', '2024-06-19 11:03:31', '2025-12-17 19:46:29', 'bdzYJ5y4', '7325107'), + (516, 2710, 'not_attending', '2024-06-19 11:02:52', '2025-12-17 19:46:29', 'bdzYJ5y4', '7325108'), + (516, 2712, 'not_attending', '2024-07-31 15:35:19', '2025-12-17 19:46:31', 'bdzYJ5y4', '7326525'), + (516, 2716, 'not_attending', '2024-06-21 20:13:14', '2025-12-17 19:46:29', 'bdzYJ5y4', '7329096'), + (516, 2717, 'maybe', '2024-06-27 17:03:50', '2025-12-17 19:46:29', 'bdzYJ5y4', '7329149'), + (516, 2718, 'not_attending', '2024-06-19 11:02:48', '2025-12-17 19:46:28', 'bdzYJ5y4', '7330458'), + (516, 2721, 'not_attending', '2024-06-24 21:01:37', '2025-12-17 19:46:29', 'bdzYJ5y4', '7331456'), + (516, 2722, 'not_attending', '2024-07-08 22:27:21', '2025-12-17 19:46:29', 'bdzYJ5y4', '7331457'), + (516, 2723, 'not_attending', '2024-06-21 20:13:05', '2025-12-17 19:46:29', 'bdzYJ5y4', '7332389'), + (516, 2728, 'not_attending', '2024-06-21 20:13:16', '2025-12-17 19:46:29', 'bdzYJ5y4', '7334124'), + (516, 2732, 'not_attending', '2024-06-24 20:00:42', '2025-12-17 19:46:29', 'bdzYJ5y4', '7337207'), + (516, 2734, 'not_attending', '2024-06-27 17:04:04', '2025-12-17 19:46:29', 'bdzYJ5y4', '7339440'), + (516, 2737, 'not_attending', '2024-07-01 17:25:45', '2025-12-17 19:46:29', 'bdzYJ5y4', '7344070'), + (516, 2738, 'not_attending', '2024-07-01 17:25:59', '2025-12-17 19:46:29', 'bdzYJ5y4', '7344085'), + (516, 2740, 'maybe', '2024-07-01 17:25:42', '2025-12-17 19:46:29', 'bdzYJ5y4', '7344576'), + (516, 2741, 'not_attending', '2024-07-01 17:26:23', '2025-12-17 19:46:30', 'bdzYJ5y4', '7344592'), + (516, 2742, 'not_attending', '2024-07-01 17:25:48', '2025-12-17 19:46:29', 'bdzYJ5y4', '7345167'), + (516, 2746, 'not_attending', '2024-07-08 22:27:18', '2025-12-17 19:46:29', 'bdzYJ5y4', '7348713'), + (516, 2749, 'not_attending', '2024-07-08 22:27:11', '2025-12-17 19:46:29', 'bdzYJ5y4', '7355496'), + (516, 2753, 'attending', '2024-07-08 22:26:49', '2025-12-17 19:46:30', 'bdzYJ5y4', '7355538'), + (516, 2758, 'not_attending', '2024-07-16 02:31:42', '2025-12-17 19:46:30', 'bdzYJ5y4', '7358837'), + (516, 2764, 'not_attending', '2024-07-26 12:20:16', '2025-12-17 19:46:30', 'bdzYJ5y4', '7363595'), + (516, 2766, 'not_attending', '2024-07-27 14:02:11', '2025-12-17 19:46:30', 'bdzYJ5y4', '7363643'), + (516, 2773, 'not_attending', '2024-07-26 12:21:10', '2025-12-17 19:46:31', 'bdzYJ5y4', '7368605'), + (516, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'bdzYJ5y4', '7368606'), + (516, 2780, 'not_attending', '2024-07-26 12:20:12', '2025-12-17 19:46:30', 'bdzYJ5y4', '7371849'), + (516, 2781, 'not_attending', '2024-07-26 12:20:24', '2025-12-17 19:46:30', 'bdzYJ5y4', '7373194'), + (516, 2782, 'maybe', '2024-07-27 14:02:05', '2025-12-17 19:46:30', 'bdzYJ5y4', '7376725'), + (516, 2784, 'not_attending', '2024-07-31 15:35:15', '2025-12-17 19:46:31', 'bdzYJ5y4', '7380872'), + (516, 2787, 'not_attending', '2024-08-26 12:26:53', '2025-12-17 19:46:32', 'bdzYJ5y4', '7381568'), + (516, 2789, 'not_attending', '2024-08-05 01:06:10', '2025-12-17 19:46:31', 'bdzYJ5y4', '7384047'), + (516, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'bdzYJ5y4', '7397462'), + (516, 2813, 'not_attending', '2024-09-05 16:30:00', '2025-12-17 19:46:24', 'bdzYJ5y4', '7424105'), + (516, 2818, 'not_attending', '2024-10-12 19:57:58', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424272'), + (516, 2819, 'not_attending', '2024-10-14 20:45:34', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424273'), + (516, 2821, 'maybe', '2024-09-14 00:31:29', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424275'), + (516, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424276'), + (516, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'bdzYJ5y4', '7432751'), + (516, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'bdzYJ5y4', '7432752'), + (516, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'bdzYJ5y4', '7432753'), + (516, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432754'), + (516, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432755'), + (516, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432756'), + (516, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432758'), + (516, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432759'), + (516, 2832, 'not_attending', '2024-09-10 11:48:27', '2025-12-17 19:46:24', 'bdzYJ5y4', '7433324'), + (516, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'bdzYJ5y4', '7433834'), + (516, 2834, 'not_attending', '2024-09-12 12:54:34', '2025-12-17 19:46:25', 'bdzYJ5y4', '7433852'), + (516, 2835, 'not_attending', '2024-09-12 12:54:27', '2025-12-17 19:46:24', 'bdzYJ5y4', '7437354'), + (516, 2853, 'not_attending', '2024-11-06 22:45:39', '2025-12-17 19:46:26', 'bdzYJ5y4', '7465683'), + (516, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'bdzYJ5y4', '7470197'), + (516, 2880, 'not_attending', '2024-10-12 19:58:00', '2025-12-17 19:46:26', 'bdzYJ5y4', '7636316'), + (516, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'bdzYJ5y4', '7685613'), + (516, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'bdzYJ5y4', '7688194'), + (516, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'bdzYJ5y4', '7688196'), + (516, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'bdzYJ5y4', '7688289'), + (516, 2917, 'not_attending', '2024-11-20 15:59:55', '2025-12-17 19:46:28', 'bdzYJ5y4', '7699878'), + (516, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'bdzYJ5y4', '7704043'), + (516, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'bdzYJ5y4', '7712467'), + (516, 2925, 'maybe', '2024-11-30 18:52:36', '2025-12-17 19:46:21', 'bdzYJ5y4', '7713584'), + (516, 2926, 'attending', '2024-11-30 18:52:51', '2025-12-17 19:46:21', 'bdzYJ5y4', '7713585'), + (516, 2927, 'not_attending', '2024-11-30 18:52:42', '2025-12-17 19:46:22', 'bdzYJ5y4', '7713586'), + (516, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'bdzYJ5y4', '7738518'), + (516, 2963, 'attending', '2024-12-27 17:32:28', '2025-12-17 19:46:22', 'bdzYJ5y4', '7750636'), + (516, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'bdzYJ5y4', '7796540'), + (516, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'bdzYJ5y4', '7796541'), + (516, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'bdzYJ5y4', '7796542'), + (516, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'bdzYJ5y4', '7825913'), + (516, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'bdzYJ5y4', '7826209'), + (516, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'bdzYJ5y4', '7834742'), + (516, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'bdzYJ5y4', '7842108'), + (516, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'bdzYJ5y4', '7842902'), + (516, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'bdzYJ5y4', '7842903'), + (516, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'bdzYJ5y4', '7842904'), + (516, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'bdzYJ5y4', '7842905'), + (516, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'bdzYJ5y4', '7855719'), + (516, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'bdzYJ5y4', '7860683'), + (516, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'bdzYJ5y4', '7860684'), + (516, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'bdzYJ5y4', '7866095'), + (516, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'bdzYJ5y4', '7869170'), + (516, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'bdzYJ5y4', '7869188'), + (516, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'bdzYJ5y4', '7869201'), + (516, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'bdzYJ5y4', '7877465'), + (516, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'bdzYJ5y4', '7888250'), + (516, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'bdzYJ5y4', '7904777'), + (516, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'bdzYJ5y4', '8349164'), + (516, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'bdzYJ5y4', '8349545'), + (516, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'bdzYJ5y4', '8368028'), + (516, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'bdzYJ5y4', '8368029'), + (516, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'bdzYJ5y4', '8388462'), + (516, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'bdzYJ5y4', '8400273'), + (516, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'bdzYJ5y4', '8400275'), + (516, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'bdzYJ5y4', '8400276'), + (516, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'bdzYJ5y4', '8404977'), + (516, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'bdzYJ5y4', '8430783'), + (516, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'bdzYJ5y4', '8430784'), + (516, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'bdzYJ5y4', '8430799'), + (516, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'bdzYJ5y4', '8430800'), + (516, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'bdzYJ5y4', '8430801'), + (516, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'bdzYJ5y4', '8438709'), + (516, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'bdzYJ5y4', '8457738'), + (516, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'bdzYJ5y4', '8459566'), + (516, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'bdzYJ5y4', '8459567'), + (516, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'bdzYJ5y4', '8461032'), + (516, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'bdzYJ5y4', '8477877'), + (516, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'bdzYJ5y4', '8485688'), + (516, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'bdzYJ5y4', '8490587'), + (516, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'bdzYJ5y4', '8493552'), + (516, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'bdzYJ5y4', '8493553'), + (516, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'bdzYJ5y4', '8493554'), + (516, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'bdzYJ5y4', '8493555'), + (516, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'bdzYJ5y4', '8493556'), + (516, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'bdzYJ5y4', '8493557'), + (516, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'bdzYJ5y4', '8493558'), + (516, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'bdzYJ5y4', '8493559'), + (516, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'bdzYJ5y4', '8493560'), + (516, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'bdzYJ5y4', '8493561'), + (516, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'bdzYJ5y4', '8493572'), + (516, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'bdzYJ5y4', '8540725'), + (516, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'bdzYJ5y4', '8555421'), + (517, 400, 'attending', '2021-02-05 00:03:15', '2025-12-17 19:47:50', 'QdJ60Jod', '3236455'), + (517, 579, 'attending', '2021-02-05 19:23:48', '2025-12-17 19:47:50', 'QdJ60Jod', '3440978'), + (517, 598, 'maybe', '2021-02-09 17:06:23', '2025-12-17 19:47:50', 'QdJ60Jod', '3468003'), + (517, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'QdJ60Jod', '3468125'), + (517, 602, 'maybe', '2021-02-14 00:05:49', '2025-12-17 19:47:50', 'QdJ60Jod', '3470303'), + (517, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'QdJ60Jod', '3470305'), + (517, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'QdJ60Jod', '3470991'), + (517, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'QdJ60Jod', '3517815'), + (517, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'QdJ60Jod', '3517816'), + (517, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'QdJ60Jod', '3523941'), + (517, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'QdJ60Jod', '3533850'), + (517, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'QdJ60Jod', '3536632'), + (517, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'QdJ60Jod', '3536656'), + (517, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'QdJ60Jod', '3539916'), + (517, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'QdJ60Jod', '3539917'), + (517, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'QdJ60Jod', '3539918'), + (517, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'QdJ60Jod', '3539919'), + (517, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'QdJ60Jod', '3539920'), + (517, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'QdJ60Jod', '3539921'), + (517, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'QdJ60Jod', '3539922'), + (517, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'QdJ60Jod', '3539923'), + (517, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'QdJ60Jod', '3539927'), + (517, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'QdJ60Jod', '3582734'), + (517, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'QdJ60Jod', '3583262'), + (517, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'QdJ60Jod', '3619523'), + (517, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'QdJ60Jod', '3661369'), + (517, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'QdJ60Jod', '3674262'), + (517, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'QdJ60Jod', '3677402'), + (517, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'QdJ60Jod', '3730212'), + (517, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ60Jod', '6045684'), + (518, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj58L1Vd', '6045684'), + (519, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Anaer1Jm', '6361710'), + (519, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Anaer1Jm', '6361711'), + (519, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Anaer1Jm', '6361713'), + (519, 2233, 'maybe', '2023-08-23 12:55:54', '2025-12-17 19:46:55', 'Anaer1Jm', '6377590'), + (519, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Anaer1Jm', '6382573'), + (519, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Anaer1Jm', '6388604'), + (519, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Anaer1Jm', '6394629'), + (519, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Anaer1Jm', '6394631'), + (519, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'Anaer1Jm', '6431478'), + (520, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQp7J8m', '5426882'), + (520, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ArQp7J8m', '5441125'), + (520, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ArQp7J8m', '5441126'), + (520, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ArQp7J8m', '5441128'), + (520, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQp7J8m', '5446643'), + (520, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'ArQp7J8m', '5449068'), + (520, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQp7J8m', '5453325'), + (520, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQp7J8m', '5454516'), + (520, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQp7J8m', '5454605'), + (520, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQp7J8m', '5455037'), + (520, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQp7J8m', '5461278'), + (520, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQp7J8m', '5469480'), + (520, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQp7J8m', '5471073'), + (520, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'ArQp7J8m', '5474663'), + (520, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQp7J8m', '5482022'), + (520, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQp7J8m', '5482793'), + (520, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQp7J8m', '5488912'), + (520, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQp7J8m', '5492192'), + (520, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQp7J8m', '5493139'), + (520, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQp7J8m', '5493200'), + (520, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQp7J8m', '5502188'), + (520, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQp7J8m', '6045684'), + (521, 406, 'attending', '2021-03-29 17:36:03', '2025-12-17 19:47:44', '6AXWk10m', '3236464'), + (521, 641, 'attending', '2021-04-02 02:51:09', '2025-12-17 19:47:44', '6AXWk10m', '3539916'), + (521, 642, 'attending', '2021-04-04 02:26:20', '2025-12-17 19:47:44', '6AXWk10m', '3539917'), + (521, 643, 'attending', '2021-04-15 16:05:25', '2025-12-17 19:47:45', '6AXWk10m', '3539918'), + (521, 644, 'attending', '2021-04-17 18:48:57', '2025-12-17 19:47:45', '6AXWk10m', '3539919'), + (521, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '6AXWk10m', '3539920'), + (521, 646, 'attending', '2021-05-14 18:19:06', '2025-12-17 19:47:46', '6AXWk10m', '3539921'), + (521, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '6AXWk10m', '3539922'), + (521, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '6AXWk10m', '3539923'), + (521, 685, 'attending', '2021-04-12 22:00:14', '2025-12-17 19:47:44', '6AXWk10m', '3551564'), + (521, 706, 'attending', '2021-04-18 17:45:11', '2025-12-17 19:47:45', '6AXWk10m', '3582734'), + (521, 707, 'attending', '2021-04-25 18:45:12', '2025-12-17 19:47:46', '6AXWk10m', '3583262'), + (521, 719, 'attending', '2021-04-08 18:38:20', '2025-12-17 19:47:44', '6AXWk10m', '3635405'), + (521, 724, 'attending', '2021-05-09 21:02:05', '2025-12-17 19:47:46', '6AXWk10m', '3661369'), + (521, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXWk10m', '3674262'), + (521, 734, 'not_attending', '2021-04-07 17:59:04', '2025-12-17 19:47:44', '6AXWk10m', '3676806'), + (521, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXWk10m', '3677402'), + (521, 736, 'attending', '2021-04-09 17:05:21', '2025-12-17 19:47:44', '6AXWk10m', '3677701'), + (521, 737, 'attending', '2021-04-06 17:41:36', '2025-12-17 19:47:44', '6AXWk10m', '3679349'), + (521, 752, 'attending', '2021-04-15 16:06:09', '2025-12-17 19:47:44', '6AXWk10m', '3699422'), + (521, 774, 'attending', '2021-04-21 17:13:53', '2025-12-17 19:47:45', '6AXWk10m', '3730212'), + (521, 792, 'maybe', '2021-05-10 18:40:30', '2025-12-17 19:47:46', '6AXWk10m', '3793156'), + (521, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXWk10m', '3974109'), + (521, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXWk10m', '3975311'), + (521, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXWk10m', '3975312'), + (521, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXWk10m', '3994992'), + (521, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXWk10m', '4014338'), + (521, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXWk10m', '4021848'), + (521, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXWk10m', '4136744'), + (521, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXWk10m', '4136937'), + (521, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXWk10m', '4136938'), + (521, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXWk10m', '4136947'), + (521, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXWk10m', '4210314'), + (521, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXWk10m', '4225444'), + (521, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXWk10m', '4239259'), + (521, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXWk10m', '4240316'), + (521, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXWk10m', '4240317'), + (521, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXWk10m', '4240318'), + (521, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXWk10m', '4250163'), + (521, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXWk10m', '4275957'), + (521, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXWk10m', '4277819'), + (521, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXWk10m', '4301723'), + (521, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '6AXWk10m', '4302093'), + (521, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '6AXWk10m', '4345519'), + (521, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXWk10m', '6045684'), + (522, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', 'ndae8EZd', '4136938'), + (522, 872, 'maybe', '2021-07-21 16:32:31', '2025-12-17 19:47:40', 'ndae8EZd', '4136947'), + (522, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndae8EZd', '4210314'), + (522, 887, 'not_attending', '2021-07-15 16:39:51', '2025-12-17 19:47:39', 'ndae8EZd', '4225444'), + (522, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', 'ndae8EZd', '4229418'), + (522, 894, 'attending', '2021-07-20 11:25:33', '2025-12-17 19:47:39', 'ndae8EZd', '4229423'), + (522, 900, 'attending', '2021-07-21 11:37:26', '2025-12-17 19:47:40', 'ndae8EZd', '4240316'), + (522, 901, 'attending', '2021-07-31 19:34:38', '2025-12-17 19:47:40', 'ndae8EZd', '4240317'), + (522, 902, 'attending', '2021-08-07 17:46:36', '2025-12-17 19:47:41', 'ndae8EZd', '4240318'), + (522, 903, 'attending', '2021-08-13 21:11:01', '2025-12-17 19:47:42', 'ndae8EZd', '4240320'), + (522, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndae8EZd', '4275957'), + (522, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndae8EZd', '4277819'), + (522, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'ndae8EZd', '4292773'), + (522, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndae8EZd', '4301723'), + (522, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ndae8EZd', '4302093'), + (522, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndae8EZd', '4304151'), + (522, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndae8EZd', '4345519'), + (522, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndae8EZd', '4356801'), + (522, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndae8EZd', '4358025'), + (522, 973, 'not_attending', '2021-08-21 22:14:53', '2025-12-17 19:47:42', 'ndae8EZd', '4366186'), + (522, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndae8EZd', '4366187'), + (522, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndae8EZd', '4402823'), + (522, 990, 'attending', '2021-08-31 13:55:07', '2025-12-17 19:47:43', 'ndae8EZd', '4420735'), + (522, 991, 'attending', '2021-09-07 23:01:43', '2025-12-17 19:47:43', 'ndae8EZd', '4420738'), + (522, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndae8EZd', '4420739'), + (522, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndae8EZd', '4420741'), + (522, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndae8EZd', '4420744'), + (522, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndae8EZd', '4420747'), + (522, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndae8EZd', '4420748'), + (522, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndae8EZd', '4420749'), + (522, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndae8EZd', '4461883'), + (522, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndae8EZd', '4508342'), + (522, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndae8EZd', '4568602'), + (522, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndae8EZd', '6045684'), + (523, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBnqEwvd', '6045684'), + (524, 1407, 'not_attending', '2022-06-03 10:41:39', '2025-12-17 19:47:30', 'dVbj3vZd', '5363695'), + (524, 1415, 'attending', '2022-05-31 04:54:33', '2025-12-17 19:47:30', 'dVbj3vZd', '5368973'), + (524, 1419, 'not_attending', '2022-06-08 21:50:53', '2025-12-17 19:47:30', 'dVbj3vZd', '5373081'), + (524, 1421, 'attending', '2022-05-30 21:52:07', '2025-12-17 19:47:30', 'dVbj3vZd', '5374885'), + (524, 1423, 'not_attending', '2022-06-03 10:42:40', '2025-12-17 19:47:17', 'dVbj3vZd', '5375727'), + (524, 1431, 'attending', '2022-05-31 00:26:05', '2025-12-17 19:47:30', 'dVbj3vZd', '5389605'), + (524, 1432, 'attending', '2022-05-30 21:34:41', '2025-12-17 19:47:30', 'dVbj3vZd', '5391566'), + (524, 1434, 'not_attending', '2022-06-01 10:53:33', '2025-12-17 19:47:30', 'dVbj3vZd', '5393861'), + (524, 1435, 'attending', '2022-06-01 10:53:18', '2025-12-17 19:47:30', 'dVbj3vZd', '5394015'), + (524, 1436, 'attending', '2022-06-01 05:35:31', '2025-12-17 19:47:30', 'dVbj3vZd', '5394292'), + (524, 1440, 'attending', '2022-06-06 17:22:57', '2025-12-17 19:47:30', 'dVbj3vZd', '5396080'), + (524, 1442, 'attending', '2022-06-03 02:48:19', '2025-12-17 19:47:17', 'dVbj3vZd', '5397265'), + (524, 1451, 'not_attending', '2022-06-17 22:46:23', '2025-12-17 19:47:17', 'dVbj3vZd', '5403967'), + (524, 1456, 'attending', '2022-06-10 06:04:02', '2025-12-17 19:47:17', 'dVbj3vZd', '5404779'), + (524, 1458, 'not_attending', '2022-06-15 22:30:07', '2025-12-17 19:47:17', 'dVbj3vZd', '5404786'), + (524, 1462, 'not_attending', '2022-06-10 18:03:05', '2025-12-17 19:47:17', 'dVbj3vZd', '5405203'), + (524, 1476, 'not_attending', '2022-06-19 17:13:52', '2025-12-17 19:47:17', 'dVbj3vZd', '5408130'), + (524, 1478, 'not_attending', '2022-06-25 06:27:20', '2025-12-17 19:47:19', 'dVbj3vZd', '5408794'), + (524, 1479, 'attending', '2022-06-17 02:04:50', '2025-12-17 19:47:17', 'dVbj3vZd', '5410322'), + (524, 1480, 'not_attending', '2022-06-23 17:07:05', '2025-12-17 19:47:19', 'dVbj3vZd', '5411699'), + (524, 1482, 'attending', '2022-06-19 10:38:57', '2025-12-17 19:47:19', 'dVbj3vZd', '5412550'), + (524, 1484, 'not_attending', '2022-06-23 06:23:52', '2025-12-17 19:47:17', 'dVbj3vZd', '5415046'), + (524, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVbj3vZd', '5422086'), + (524, 1498, 'not_attending', '2022-07-02 22:12:12', '2025-12-17 19:47:19', 'dVbj3vZd', '5422406'), + (524, 1502, 'not_attending', '2022-07-14 06:17:03', '2025-12-17 19:47:19', 'dVbj3vZd', '5424565'), + (524, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVbj3vZd', '5426882'), + (524, 1505, 'attending', '2022-07-06 16:02:01', '2025-12-17 19:47:19', 'dVbj3vZd', '5427083'), + (524, 1511, 'not_attending', '2022-07-09 16:36:42', '2025-12-17 19:47:19', 'dVbj3vZd', '5437733'), + (524, 1513, 'attending', '2022-07-14 06:15:56', '2025-12-17 19:47:19', 'dVbj3vZd', '5441125'), + (524, 1514, 'attending', '2022-07-18 14:18:26', '2025-12-17 19:47:20', 'dVbj3vZd', '5441126'), + (524, 1515, 'not_attending', '2022-08-06 16:30:18', '2025-12-17 19:47:21', 'dVbj3vZd', '5441128'), + (524, 1516, 'attending', '2022-08-20 10:50:16', '2025-12-17 19:47:23', 'dVbj3vZd', '5441129'), + (524, 1517, 'attending', '2022-08-15 17:56:42', '2025-12-17 19:47:23', 'dVbj3vZd', '5441130'), + (524, 1518, 'attending', '2022-08-22 11:51:51', '2025-12-17 19:47:24', 'dVbj3vZd', '5441131'), + (524, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVbj3vZd', '5441132'), + (524, 1528, 'maybe', '2022-07-14 06:15:44', '2025-12-17 19:47:20', 'dVbj3vZd', '5446643'), + (524, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVbj3vZd', '5453325'), + (524, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVbj3vZd', '5454516'), + (524, 1544, 'attending', '2022-09-13 15:14:51', '2025-12-17 19:47:11', 'dVbj3vZd', '5454517'), + (524, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVbj3vZd', '5454605'), + (524, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVbj3vZd', '5455037'), + (524, 1553, 'not_attending', '2022-07-21 20:31:48', '2025-12-17 19:47:20', 'dVbj3vZd', '5455164'), + (524, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVbj3vZd', '5461278'), + (524, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVbj3vZd', '5469480'), + (524, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVbj3vZd', '5471073'), + (524, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dVbj3vZd', '5474663'), + (524, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVbj3vZd', '5482022'), + (524, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVbj3vZd', '5482793'), + (524, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVbj3vZd', '5488912'), + (524, 1582, 'attending', '2022-08-10 05:32:52', '2025-12-17 19:47:23', 'dVbj3vZd', '5492001'), + (524, 1584, 'attending', '2022-08-10 05:32:56', '2025-12-17 19:47:23', 'dVbj3vZd', '5492004'), + (524, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVbj3vZd', '5492192'), + (524, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVbj3vZd', '5493139'), + (524, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVbj3vZd', '5493200'), + (524, 1593, 'attending', '2022-08-14 10:26:29', '2025-12-17 19:47:22', 'dVbj3vZd', '5494043'), + (524, 1595, 'not_attending', '2022-08-11 15:24:48', '2025-12-17 19:47:22', 'dVbj3vZd', '5495736'), + (524, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVbj3vZd', '5502188'), + (524, 1607, 'attending', '2022-08-20 18:42:53', '2025-12-17 19:47:23', 'dVbj3vZd', '5504589'), + (524, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVbj3vZd', '5505059'), + (524, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVbj3vZd', '5509055'), + (524, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVbj3vZd', '5512862'), + (524, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVbj3vZd', '5513985'), + (524, 1626, 'attending', '2022-08-26 18:44:43', '2025-12-17 19:47:11', 'dVbj3vZd', '5519981'), + (524, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVbj3vZd', '5522550'), + (524, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVbj3vZd', '5534683'), + (524, 1631, 'attending', '2022-08-27 06:52:16', '2025-12-17 19:47:23', 'dVbj3vZd', '5534684'), + (524, 1633, 'not_attending', '2022-08-28 18:44:09', '2025-12-17 19:47:24', 'dVbj3vZd', '5536575'), + (524, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVbj3vZd', '5537735'), + (524, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVbj3vZd', '5540859'), + (524, 1641, 'attending', '2022-09-01 06:24:29', '2025-12-17 19:47:24', 'dVbj3vZd', '5544226'), + (524, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVbj3vZd', '5546619'), + (524, 1649, 'attending', '2022-09-03 19:34:25', '2025-12-17 19:47:24', 'dVbj3vZd', '5549346'), + (524, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVbj3vZd', '5555245'), + (524, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVbj3vZd', '5557747'), + (524, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVbj3vZd', '5560255'), + (524, 1663, 'attending', '2022-09-10 13:40:07', '2025-12-17 19:47:24', 'dVbj3vZd', '5562345'), + (524, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVbj3vZd', '5562906'), + (524, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVbj3vZd', '5600604'), + (524, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVbj3vZd', '5605544'), + (524, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'dVbj3vZd', '5606737'), + (524, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVbj3vZd', '5630960'), + (524, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVbj3vZd', '5630961'), + (524, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVbj3vZd', '5630962'), + (524, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVbj3vZd', '5630966'), + (524, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVbj3vZd', '5630967'), + (524, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVbj3vZd', '5630968'), + (524, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVbj3vZd', '5635406'), + (524, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVbj3vZd', '5638765'), + (524, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVbj3vZd', '5640097'), + (524, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVbj3vZd', '5640843'), + (524, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVbj3vZd', '5641521'), + (524, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVbj3vZd', '5642818'), + (524, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVbj3vZd', '5652395'), + (524, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVbj3vZd', '5670445'), + (524, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVbj3vZd', '5671637'), + (524, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVbj3vZd', '5672329'), + (524, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVbj3vZd', '5674057'), + (524, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVbj3vZd', '5674060'), + (524, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVbj3vZd', '5677461'), + (524, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVbj3vZd', '5698046'), + (524, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVbj3vZd', '5699760'), + (524, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVbj3vZd', '5741601'), + (524, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVbj3vZd', '5763458'), + (524, 1808, 'not_attending', '2023-02-27 14:58:20', '2025-12-17 19:47:08', 'dVbj3vZd', '5764678'), + (524, 1813, 'attending', '2023-04-29 19:54:50', '2025-12-17 19:47:01', 'dVbj3vZd', '5764683'), + (524, 1817, 'maybe', '2023-03-19 02:23:02', '2025-12-17 19:46:57', 'dVbj3vZd', '5764687'), + (524, 1819, 'attending', '2023-04-01 07:28:46', '2025-12-17 19:46:58', 'dVbj3vZd', '5764689'), + (524, 1821, 'attending', '2023-03-13 08:02:45', '2025-12-17 19:46:56', 'dVbj3vZd', '5764691'), + (524, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVbj3vZd', '5774172'), + (524, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVbj3vZd', '5818247'), + (524, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVbj3vZd', '5819471'), + (524, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVbj3vZd', '5827739'), + (524, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVbj3vZd', '5844306'), + (524, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVbj3vZd', '5850159'), + (524, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVbj3vZd', '5858999'), + (524, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVbj3vZd', '5871984'), + (524, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVbj3vZd', '5876354'), + (524, 1864, 'attending', '2023-01-16 18:41:28', '2025-12-17 19:47:05', 'dVbj3vZd', '5879675'), + (524, 1865, 'attending', '2023-01-27 20:14:18', '2025-12-17 19:47:06', 'dVbj3vZd', '5879676'), + (524, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVbj3vZd', '5880939'), + (524, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dVbj3vZd', '5880940'), + (524, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVbj3vZd', '5880942'), + (524, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVbj3vZd', '5880943'), + (524, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVbj3vZd', '5887890'), + (524, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVbj3vZd', '5888598'), + (524, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVbj3vZd', '5893260'), + (524, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dVbj3vZd', '5899826'), + (524, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dVbj3vZd', '5900199'), + (524, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVbj3vZd', '5900200'), + (524, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVbj3vZd', '5900202'), + (524, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVbj3vZd', '5900203'), + (524, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dVbj3vZd', '5901108'), + (524, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dVbj3vZd', '5901126'), + (524, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dVbj3vZd', '5909655'), + (524, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dVbj3vZd', '5910522'), + (524, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dVbj3vZd', '5910526'), + (524, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dVbj3vZd', '5910528'), + (524, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dVbj3vZd', '5916219'), + (524, 1924, 'not_attending', '2023-02-16 17:39:24', '2025-12-17 19:47:07', 'dVbj3vZd', '5931095'), + (524, 1932, 'attending', '2023-02-20 15:57:39', '2025-12-17 19:47:07', 'dVbj3vZd', '5935303'), + (524, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVbj3vZd', '5936234'), + (524, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVbj3vZd', '5958351'), + (524, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVbj3vZd', '5959751'), + (524, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVbj3vZd', '5959755'), + (524, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVbj3vZd', '5960055'), + (524, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVbj3vZd', '5961684'), + (524, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVbj3vZd', '5962132'), + (524, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dVbj3vZd', '5962133'), + (524, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVbj3vZd', '5962134'), + (524, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVbj3vZd', '5962317'), + (524, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVbj3vZd', '5962318'), + (524, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVbj3vZd', '5965933'), + (524, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVbj3vZd', '5967014'), + (524, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dVbj3vZd', '5972763'), + (524, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVbj3vZd', '5972815'), + (524, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVbj3vZd', '5974016'), + (524, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVbj3vZd', '5981515'), + (524, 1967, 'attending', '2023-03-12 04:36:28', '2025-12-17 19:47:10', 'dVbj3vZd', '5985650'), + (524, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVbj3vZd', '5993516'), + (524, 1973, 'attending', '2023-03-13 08:02:15', '2025-12-17 19:46:56', 'dVbj3vZd', '5993777'), + (524, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVbj3vZd', '5998939'), + (524, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVbj3vZd', '6028191'), + (524, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVbj3vZd', '6040066'), + (524, 1983, 'attending', '2023-04-04 10:17:20', '2025-12-17 19:46:59', 'dVbj3vZd', '6040068'), + (524, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVbj3vZd', '6042717'), + (524, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVbj3vZd', '6044838'), + (524, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVbj3vZd', '6044839'), + (524, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbj3vZd', '6045684'), + (524, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVbj3vZd', '6050104'), + (524, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVbj3vZd', '6053195'), + (524, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVbj3vZd', '6053198'), + (524, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVbj3vZd', '6056085'), + (524, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVbj3vZd', '6056916'), + (524, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVbj3vZd', '6059290'), + (524, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVbj3vZd', '6060328'), + (524, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVbj3vZd', '6061037'), + (524, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVbj3vZd', '6061039'), + (524, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVbj3vZd', '6067245'), + (524, 2025, 'attending', '2023-04-19 14:19:15', '2025-12-17 19:47:00', 'dVbj3vZd', '6067457'), + (524, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVbj3vZd', '6068094'), + (524, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVbj3vZd', '6068252'), + (524, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVbj3vZd', '6068253'), + (524, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVbj3vZd', '6068254'), + (524, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVbj3vZd', '6068280'), + (524, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVbj3vZd', '6069093'), + (524, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVbj3vZd', '6072528'), + (524, 2042, 'attending', '2023-04-24 20:44:29', '2025-12-17 19:47:01', 'dVbj3vZd', '6072941'), + (524, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVbj3vZd', '6079840'), + (524, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVbj3vZd', '6083398'), + (524, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVbj3vZd', '6093504'), + (524, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVbj3vZd', '6097414'), + (524, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVbj3vZd', '6097442'), + (524, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVbj3vZd', '6097684'), + (524, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVbj3vZd', '6098762'), + (524, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dVbj3vZd', '6101361'), + (524, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVbj3vZd', '6101362'), + (524, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVbj3vZd', '6103752'), + (524, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVbj3vZd', '6107314'), + (524, 2085, 'attending', '2023-06-01 13:51:01', '2025-12-17 19:47:04', 'dVbj3vZd', '6118068'), + (524, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dVbj3vZd', '6120034'), + (524, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dVbj3vZd', '6136733'), + (524, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dVbj3vZd', '6137989'), + (524, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dVbj3vZd', '6150864'), + (524, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dVbj3vZd', '6155491'), + (524, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dVbj3vZd', '6164417'), + (524, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dVbj3vZd', '6166388'), + (524, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dVbj3vZd', '6176439'), + (524, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dVbj3vZd', '6182410'), + (524, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dVbj3vZd', '6185812'), + (524, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dVbj3vZd', '6187651'), + (524, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dVbj3vZd', '6187963'), + (524, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dVbj3vZd', '6187964'), + (524, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dVbj3vZd', '6187966'), + (524, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dVbj3vZd', '6187967'), + (524, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dVbj3vZd', '6187969'), + (524, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dVbj3vZd', '6334878'), + (524, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVbj3vZd', '6337236'), + (524, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVbj3vZd', '6337970'), + (524, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dVbj3vZd', '6338308'), + (524, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVbj3vZd', '6340845'), + (524, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVbj3vZd', '6341710'), + (524, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVbj3vZd', '6342044'), + (524, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVbj3vZd', '6342298'), + (524, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dVbj3vZd', '6343294'), + (524, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVbj3vZd', '6347034'), + (524, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVbj3vZd', '6347056'), + (524, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVbj3vZd', '6353830'), + (524, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVbj3vZd', '6353831'), + (524, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVbj3vZd', '6357867'), + (524, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVbj3vZd', '6358652'), + (524, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVbj3vZd', '6361709'), + (524, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVbj3vZd', '6361710'), + (524, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVbj3vZd', '6361711'), + (524, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVbj3vZd', '6361712'), + (524, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVbj3vZd', '6361713'), + (524, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVbj3vZd', '6382573'), + (524, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVbj3vZd', '6388604'), + (524, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVbj3vZd', '6394629'), + (524, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVbj3vZd', '6394631'), + (524, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVbj3vZd', '6440863'), + (524, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVbj3vZd', '6445440'), + (524, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVbj3vZd', '6453951'), + (524, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVbj3vZd', '6461696'), + (524, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVbj3vZd', '6462129'), + (524, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVbj3vZd', '6463218'), + (524, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVbj3vZd', '6472181'), + (524, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVbj3vZd', '6482693'), + (524, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dVbj3vZd', '6484200'), + (524, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dVbj3vZd', '6484680'), + (524, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVbj3vZd', '6507741'), + (524, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVbj3vZd', '6514659'), + (524, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVbj3vZd', '6514660'), + (524, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVbj3vZd', '6519103'), + (524, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVbj3vZd', '6535681'), + (524, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVbj3vZd', '6584747'), + (524, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVbj3vZd', '6587097'), + (524, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVbj3vZd', '6609022'), + (524, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVbj3vZd', '6632757'), + (524, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVbj3vZd', '6644187'), + (524, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVbj3vZd', '6648951'), + (524, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVbj3vZd', '6648952'), + (524, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVbj3vZd', '6655401'), + (524, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVbj3vZd', '6661585'), + (524, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVbj3vZd', '6661588'), + (524, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVbj3vZd', '6661589'), + (524, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVbj3vZd', '6699906'), + (524, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dVbj3vZd', '6699913'), + (524, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVbj3vZd', '6701109'), + (524, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVbj3vZd', '6705219'), + (524, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVbj3vZd', '6710153'), + (524, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVbj3vZd', '6711552'), + (524, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dVbj3vZd', '6711553'), + (524, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVbj3vZd', '6722688'), + (524, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVbj3vZd', '6730620'), + (524, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVbj3vZd', '6730642'), + (524, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dVbj3vZd', '6740364'), + (524, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVbj3vZd', '6743829'), + (524, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVbj3vZd', '7030380'), + (524, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dVbj3vZd', '7033677'), + (524, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dVbj3vZd', '7035415'), + (524, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dVbj3vZd', '7044715'), + (524, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVbj3vZd', '7050318'), + (524, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVbj3vZd', '7050319'), + (524, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVbj3vZd', '7050322'), + (524, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dVbj3vZd', '7057804'), + (524, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dVbj3vZd', '7059866'), + (524, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVbj3vZd', '7072824'), + (524, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVbj3vZd', '7074348'), + (524, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVbj3vZd', '7089267'), + (524, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dVbj3vZd', '7098747'), + (524, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dVbj3vZd', '7113468'), + (524, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVbj3vZd', '7114856'), + (524, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dVbj3vZd', '7114951'), + (524, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVbj3vZd', '7114955'), + (524, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVbj3vZd', '7114956'), + (524, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVbj3vZd', '7153615'), + (524, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVbj3vZd', '7159484'), + (524, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVbj3vZd', '7178446'), + (525, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AQOjJNLd', '7074364'), + (525, 2688, 'not_attending', '2024-06-24 20:09:56', '2025-12-17 19:46:29', 'AQOjJNLd', '7324073'), + (525, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AQOjJNLd', '7324074'), + (525, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AQOjJNLd', '7324075'), + (525, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AQOjJNLd', '7324078'), + (525, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AQOjJNLd', '7324082'), + (525, 2701, 'attending', '2024-06-28 20:23:44', '2025-12-17 19:46:29', 'AQOjJNLd', '7324391'), + (525, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AQOjJNLd', '7331457'), + (525, 2724, 'attending', '2024-06-26 20:19:26', '2025-12-17 19:46:29', 'AQOjJNLd', '7332562'), + (525, 2730, 'attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'AQOjJNLd', '7335193'), + (525, 2731, 'attending', '2024-06-24 06:04:26', '2025-12-17 19:46:29', 'AQOjJNLd', '7335303'), + (525, 2737, 'maybe', '2024-06-30 22:46:28', '2025-12-17 19:46:29', 'AQOjJNLd', '7344070'), + (525, 2740, 'attending', '2024-06-30 22:46:20', '2025-12-17 19:46:29', 'AQOjJNLd', '7344576'), + (525, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AQOjJNLd', '7356752'), + (525, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'AQOjJNLd', '7363643'), + (525, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AQOjJNLd', '7368606'), + (525, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AQOjJNLd', '7397462'), + (525, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AQOjJNLd', '7424275'), + (525, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AQOjJNLd', '7424276'), + (525, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AQOjJNLd', '7432751'), + (525, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AQOjJNLd', '7432752'), + (525, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AQOjJNLd', '7432753'), + (525, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AQOjJNLd', '7432754'), + (525, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AQOjJNLd', '7432755'), + (525, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AQOjJNLd', '7432756'), + (525, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AQOjJNLd', '7432758'), + (525, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AQOjJNLd', '7432759'), + (525, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AQOjJNLd', '7433834'), + (525, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AQOjJNLd', '7470197'), + (525, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AQOjJNLd', '7685613'), + (525, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AQOjJNLd', '7688194'), + (525, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AQOjJNLd', '7688196'), + (525, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AQOjJNLd', '7688289'), + (526, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'kdKjkM74', '3539920'), + (526, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdKjkM74', '3793156'), + (526, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKjkM74', '6045684'), + (527, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', '4oMeX9Gm', '4420744'), + (527, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', '4oMeX9Gm', '4420747'), + (527, 1003, 'attending', '2021-09-29 22:44:49', '2025-12-17 19:47:43', '4oMeX9Gm', '4438802'), + (527, 1006, 'attending', '2021-10-01 15:52:57', '2025-12-17 19:47:34', '4oMeX9Gm', '4438808'), + (527, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4oMeX9Gm', '4568602'), + (527, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4oMeX9Gm', '4572153'), + (527, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMeX9Gm', '4585962'), + (527, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4oMeX9Gm', '4596356'), + (527, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4oMeX9Gm', '4598860'), + (527, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4oMeX9Gm', '4598861'), + (527, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4oMeX9Gm', '4602797'), + (527, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4oMeX9Gm', '4637896'), + (527, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4oMeX9Gm', '4642994'), + (527, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4oMeX9Gm', '4642995'), + (527, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4oMeX9Gm', '4642996'), + (527, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4oMeX9Gm', '4642997'), + (527, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4oMeX9Gm', '4645687'), + (527, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4oMeX9Gm', '4645698'), + (527, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4oMeX9Gm', '4645704'), + (527, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4oMeX9Gm', '4645705'), + (527, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4oMeX9Gm', '4668385'), + (527, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4oMeX9Gm', '4694407'), + (527, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMeX9Gm', '4736497'), + (527, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMeX9Gm', '4736499'), + (527, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4oMeX9Gm', '4736500'), + (527, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMeX9Gm', '4736503'), + (527, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMeX9Gm', '4736504'), + (527, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4oMeX9Gm', '4746789'), + (527, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMeX9Gm', '4753929'), + (527, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMeX9Gm', '5038850'), + (527, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMeX9Gm', '5045826'), + (527, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMeX9Gm', '5132533'), + (527, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMeX9Gm', '5186582'), + (527, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMeX9Gm', '5186583'), + (527, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMeX9Gm', '5186585'), + (527, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMeX9Gm', '5190437'), + (527, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMeX9Gm', '5215989'), + (527, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMeX9Gm', '6045684'), + (528, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AQOjKlgd', '7074364'), + (528, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AQOjKlgd', '7324073'), + (528, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AQOjKlgd', '7324074'), + (528, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AQOjKlgd', '7324075'), + (528, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AQOjKlgd', '7324078'), + (528, 2702, 'not_attending', '2024-06-13 18:33:33', '2025-12-17 19:46:28', 'AQOjKlgd', '7324867'), + (528, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AQOjKlgd', '7331457'), + (528, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'AQOjKlgd', '7332564'), + (528, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'AQOjKlgd', '7344575'), + (528, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'AQOjKlgd', '7359624'), + (528, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AQOjKlgd', '7363643'), + (528, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AQOjKlgd', '7368606'), + (529, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'ydwvP3Q4', '3149489'), + (529, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'ydwvP3Q4', '3149491'), + (529, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'ydwvP3Q4', '3149493'), + (529, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'ydwvP3Q4', '3236448'), + (529, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'ydwvP3Q4', '3236450'), + (529, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'ydwvP3Q4', '3236452'), + (529, 648, 'not_attending', '2021-05-26 03:39:37', '2025-12-17 19:47:47', 'ydwvP3Q4', '3539923'), + (529, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'ydwvP3Q4', '3963335'), + (529, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ydwvP3Q4', '3974109'), + (529, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydwvP3Q4', '3975311'), + (529, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydwvP3Q4', '3975312'), + (529, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydwvP3Q4', '3994992'), + (529, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ydwvP3Q4', '4014338'), + (529, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ydwvP3Q4', '4021848'), + (529, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ydwvP3Q4', '4136744'), + (529, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ydwvP3Q4', '4136937'), + (529, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ydwvP3Q4', '4136938'), + (529, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwvP3Q4', '4136947'), + (529, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwvP3Q4', '4225444'), + (529, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'ydwvP3Q4', '4229417'), + (529, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'ydwvP3Q4', '4229418'), + (529, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydwvP3Q4', '4239259'), + (529, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ydwvP3Q4', '4250163'), + (529, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwvP3Q4', '6045684'), + (530, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'daBo50rm', '4694407'), + (530, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'daBo50rm', '4736497'), + (530, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'daBo50rm', '4736499'), + (530, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'daBo50rm', '4736500'), + (530, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'daBo50rm', '4736503'), + (530, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daBo50rm', '4736504'), + (530, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'daBo50rm', '4746789'), + (530, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'daBo50rm', '4753929'), + (530, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'daBo50rm', '5038850'), + (530, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'daBo50rm', '5045826'), + (530, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'daBo50rm', '5132533'), + (530, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daBo50rm', '6045684'), + (531, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '4oxybLYd', '5537735'), + (531, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4oxybLYd', '5540859'), + (531, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4oxybLYd', '5600604'), + (531, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4oxybLYd', '5605544'), + (531, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4oxybLYd', '5630960'), + (531, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4oxybLYd', '5630961'), + (531, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4oxybLYd', '5630962'), + (531, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4oxybLYd', '5630966'), + (531, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4oxybLYd', '5630967'), + (531, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4oxybLYd', '5630968'), + (531, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4oxybLYd', '5635406'), + (531, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4oxybLYd', '5638765'), + (531, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4oxybLYd', '5640097'), + (531, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4oxybLYd', '5640843'), + (531, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4oxybLYd', '5641521'), + (531, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4oxybLYd', '5642818'), + (531, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4oxybLYd', '5652395'), + (531, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4oxybLYd', '5670445'), + (531, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4oxybLYd', '5671637'), + (531, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4oxybLYd', '5672329'), + (531, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4oxybLYd', '5674057'), + (531, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4oxybLYd', '5674060'), + (531, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4oxybLYd', '5677461'), + (531, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4oxybLYd', '5698046'), + (531, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4oxybLYd', '5699760'), + (531, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4oxybLYd', '5741601'), + (531, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4oxybLYd', '5763458'), + (531, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4oxybLYd', '5774172'), + (531, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4oxybLYd', '5818247'), + (531, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4oxybLYd', '5819471'), + (531, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4oxybLYd', '5827739'), + (531, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4oxybLYd', '5844306'), + (531, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4oxybLYd', '5850159'), + (531, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4oxybLYd', '5858999'), + (531, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4oxybLYd', '5871984'), + (531, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4oxybLYd', '5876354'), + (531, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4oxybLYd', '5880939'), + (531, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4oxybLYd', '5887890'), + (531, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4oxybLYd', '5888598'), + (531, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4oxybLYd', '5893260'), + (531, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oxybLYd', '6045684'), + (532, 646, 'attending', '2021-05-15 21:35:20', '2025-12-17 19:47:46', 'kdKjj8M4', '3539921'), + (532, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'kdKjj8M4', '3539922'), + (532, 648, 'attending', '2021-05-28 15:42:16', '2025-12-17 19:47:47', 'kdKjj8M4', '3539923'), + (532, 741, 'not_attending', '2021-05-19 19:53:57', '2025-12-17 19:47:46', 'kdKjj8M4', '3680618'), + (532, 745, 'maybe', '2021-06-30 13:10:21', '2025-12-17 19:47:38', 'kdKjj8M4', '3680625'), + (532, 797, 'attending', '2021-05-25 21:15:08', '2025-12-17 19:47:47', 'kdKjj8M4', '3796195'), + (532, 803, 'attending', '2021-05-18 23:02:08', '2025-12-17 19:47:46', 'kdKjj8M4', '3804665'), + (532, 804, 'attending', '2021-05-24 20:17:53', '2025-12-17 19:47:47', 'kdKjj8M4', '3804775'), + (532, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'kdKjj8M4', '3806392'), + (532, 815, 'attending', '2021-05-28 20:41:28', '2025-12-17 19:47:47', 'kdKjj8M4', '3818136'), + (532, 823, 'attending', '2021-06-16 19:45:55', '2025-12-17 19:47:48', 'kdKjj8M4', '3974109'), + (532, 827, 'maybe', '2021-06-03 20:40:46', '2025-12-17 19:47:47', 'kdKjj8M4', '3975311'), + (532, 828, 'attending', '2021-06-12 18:41:49', '2025-12-17 19:47:47', 'kdKjj8M4', '3975312'), + (532, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKjj8M4', '3994992'), + (532, 841, 'maybe', '2021-06-13 22:26:50', '2025-12-17 19:47:48', 'kdKjj8M4', '4007434'), + (532, 844, 'maybe', '2021-06-20 23:22:01', '2025-12-17 19:47:38', 'kdKjj8M4', '4014338'), + (532, 866, 'maybe', '2021-06-20 23:20:49', '2025-12-17 19:47:38', 'kdKjj8M4', '4020424'), + (532, 867, 'attending', '2021-06-20 23:22:34', '2025-12-17 19:47:38', 'kdKjj8M4', '4021848'), + (532, 868, 'maybe', '2021-06-13 22:27:16', '2025-12-17 19:47:48', 'kdKjj8M4', '4022012'), + (532, 869, 'maybe', '2021-06-30 13:11:19', '2025-12-17 19:47:38', 'kdKjj8M4', '4136744'), + (532, 870, 'attending', '2021-06-30 13:05:26', '2025-12-17 19:47:39', 'kdKjj8M4', '4136937'), + (532, 871, 'attending', '2021-07-05 02:56:23', '2025-12-17 19:47:39', 'kdKjj8M4', '4136938'), + (532, 872, 'maybe', '2021-06-22 20:04:52', '2025-12-17 19:47:40', 'kdKjj8M4', '4136947'), + (532, 874, 'maybe', '2021-06-19 07:19:10', '2025-12-17 19:47:38', 'kdKjj8M4', '4139815'), + (532, 875, 'maybe', '2021-06-19 07:19:42', '2025-12-17 19:47:38', 'kdKjj8M4', '4139816'), + (532, 880, 'attending', '2021-06-18 17:39:12', '2025-12-17 19:47:48', 'kdKjj8M4', '4205383'), + (532, 884, 'attending', '2021-07-17 14:49:00', '2025-12-17 19:47:42', 'kdKjj8M4', '4210314'), + (532, 887, 'maybe', '2021-07-14 22:22:34', '2025-12-17 19:47:39', 'kdKjj8M4', '4225444'), + (532, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdKjj8M4', '4239259'), + (532, 900, 'attending', '2021-07-21 00:14:06', '2025-12-17 19:47:40', 'kdKjj8M4', '4240316'), + (532, 901, 'attending', '2021-07-26 20:24:58', '2025-12-17 19:47:40', 'kdKjj8M4', '4240317'), + (532, 902, 'attending', '2021-08-04 20:23:20', '2025-12-17 19:47:41', 'kdKjj8M4', '4240318'), + (532, 903, 'attending', '2021-08-11 09:44:26', '2025-12-17 19:47:42', 'kdKjj8M4', '4240320'), + (532, 904, 'maybe', '2021-07-01 18:51:48', '2025-12-17 19:47:39', 'kdKjj8M4', '4241594'), + (532, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdKjj8M4', '4250163'), + (532, 917, 'attending', '2021-07-12 01:47:08', '2025-12-17 19:47:39', 'kdKjj8M4', '4274481'), + (532, 919, 'attending', '2021-07-12 14:23:06', '2025-12-17 19:47:39', 'kdKjj8M4', '4275957'), + (532, 920, 'maybe', '2021-07-25 16:37:18', '2025-12-17 19:47:40', 'kdKjj8M4', '4277819'), + (532, 929, 'maybe', '2021-08-05 21:55:34', '2025-12-17 19:47:41', 'kdKjj8M4', '4297223'), + (532, 933, 'maybe', '2021-07-25 16:36:28', '2025-12-17 19:47:40', 'kdKjj8M4', '4301723'), + (532, 934, 'attending', '2021-08-04 22:45:50', '2025-12-17 19:47:40', 'kdKjj8M4', '4302093'), + (532, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdKjj8M4', '4304151'), + (532, 946, 'attending', '2021-08-02 01:49:08', '2025-12-17 19:47:40', 'kdKjj8M4', '4314835'), + (532, 971, 'maybe', '2021-09-01 04:30:02', '2025-12-17 19:47:43', 'kdKjj8M4', '4356801'), + (532, 973, 'maybe', '2021-08-21 12:59:17', '2025-12-17 19:47:42', 'kdKjj8M4', '4366186'), + (532, 974, 'maybe', '2021-08-16 05:06:11', '2025-12-17 19:47:42', 'kdKjj8M4', '4366187'), + (532, 987, 'maybe', '2021-09-01 04:29:24', '2025-12-17 19:47:43', 'kdKjj8M4', '4402634'), + (532, 989, 'attending', '2021-08-30 17:32:22', '2025-12-17 19:47:43', 'kdKjj8M4', '4414282'), + (532, 990, 'attending', '2021-08-28 22:47:56', '2025-12-17 19:47:43', 'kdKjj8M4', '4420735'), + (532, 991, 'attending', '2021-08-28 22:47:58', '2025-12-17 19:47:43', 'kdKjj8M4', '4420738'), + (532, 992, 'attending', '2021-08-28 22:48:00', '2025-12-17 19:47:33', 'kdKjj8M4', '4420739'), + (532, 993, 'attending', '2021-08-28 22:48:01', '2025-12-17 19:47:34', 'kdKjj8M4', '4420741'), + (532, 995, 'not_attending', '2021-10-09 20:20:14', '2025-12-17 19:47:34', 'kdKjj8M4', '4420744'), + (532, 996, 'not_attending', '2021-10-16 20:46:59', '2025-12-17 19:47:35', 'kdKjj8M4', '4420747'), + (532, 997, 'attending', '2021-08-28 22:48:06', '2025-12-17 19:47:35', 'kdKjj8M4', '4420748'), + (532, 998, 'not_attending', '2021-10-30 12:51:43', '2025-12-17 19:47:36', 'kdKjj8M4', '4420749'), + (532, 1016, 'attending', '2021-09-03 18:54:49', '2025-12-17 19:47:43', 'kdKjj8M4', '4441271'), + (532, 1017, 'attending', '2021-09-03 18:54:45', '2025-12-17 19:47:43', 'kdKjj8M4', '4441822'), + (532, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKjj8M4', '4461883'), + (532, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKjj8M4', '4508342'), + (532, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKjj8M4', '4568602'), + (532, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKjj8M4', '4572153'), + (532, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdKjj8M4', '4585962'), + (532, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'kdKjj8M4', '4596356'), + (532, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKjj8M4', '4598860'), + (532, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKjj8M4', '4598861'), + (532, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKjj8M4', '4602797'), + (532, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKjj8M4', '4637896'), + (532, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKjj8M4', '4642994'), + (532, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdKjj8M4', '4642995'), + (532, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKjj8M4', '4642996'), + (532, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKjj8M4', '4642997'), + (532, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKjj8M4', '4645687'), + (532, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKjj8M4', '4645698'), + (532, 1128, 'not_attending', '2021-11-20 23:47:39', '2025-12-17 19:47:37', 'kdKjj8M4', '4645704'), + (532, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKjj8M4', '4645705'), + (532, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKjj8M4', '4668385'), + (532, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKjj8M4', '4694407'), + (532, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKjj8M4', '4736497'), + (532, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKjj8M4', '4736499'), + (532, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKjj8M4', '4736500'), + (532, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKjj8M4', '4736503'), + (532, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKjj8M4', '4736504'), + (532, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKjj8M4', '4746789'), + (532, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdKjj8M4', '4753929'), + (532, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKjj8M4', '5038850'), + (532, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKjj8M4', '5045826'), + (532, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKjj8M4', '5132533'), + (532, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdKjj8M4', '5186582'), + (532, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdKjj8M4', '5186583'), + (532, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdKjj8M4', '5186585'), + (532, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdKjj8M4', '5190437'), + (532, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKjj8M4', '5215989'), + (532, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKjj8M4', '6045684'), + (533, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'm6qlzRzd', '7424276'), + (533, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'm6qlzRzd', '7682072'), + (533, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'm6qlzRzd', '7685613'), + (533, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6qlzRzd', '7688194'), + (533, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6qlzRzd', '7688196'), + (533, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6qlzRzd', '7688289'), + (533, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'm6qlzRzd', '7692763'), + (533, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'm6qlzRzd', '7697552'), + (533, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'm6qlzRzd', '7699878'), + (533, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'm6qlzRzd', '7704043'), + (533, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6qlzRzd', '7712467'), + (533, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6qlzRzd', '7713585'), + (533, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6qlzRzd', '7713586'), + (533, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'm6qlzRzd', '7738518'), + (533, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6qlzRzd', '7750636'), + (533, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6qlzRzd', '7796540'), + (533, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6qlzRzd', '7796541'), + (533, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6qlzRzd', '7796542'), + (533, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6qlzRzd', '7825913'), + (533, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6qlzRzd', '7826209'), + (533, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6qlzRzd', '7834742'), + (533, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6qlzRzd', '7842108'), + (533, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6qlzRzd', '7842902'), + (533, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6qlzRzd', '7842903'), + (533, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6qlzRzd', '7842904'), + (533, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6qlzRzd', '7842905'), + (533, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'm6qlzRzd', '7844784'), + (533, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6qlzRzd', '7855719'), + (533, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6qlzRzd', '7860683'), + (533, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6qlzRzd', '7860684'), + (533, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6qlzRzd', '7866095'), + (533, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6qlzRzd', '7869170'), + (533, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6qlzRzd', '7869201'), + (533, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'm6qlzRzd', '7872088'), + (534, 1869, 'not_attending', '2023-03-07 15:57:34', '2025-12-17 19:47:09', 'dKbl16R4', '5880943'), + (534, 1886, 'maybe', '2023-03-07 04:56:04', '2025-12-17 19:47:09', 'dKbl16R4', '5899930'), + (534, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dKbl16R4', '5900202'), + (534, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dKbl16R4', '5900203'), + (534, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dKbl16R4', '5910528'), + (534, 1941, 'maybe', '2023-03-07 00:48:52', '2025-12-17 19:47:09', 'dKbl16R4', '5961684'), + (534, 1943, 'attending', '2023-03-13 18:44:41', '2025-12-17 19:47:10', 'dKbl16R4', '5962091'), + (534, 1945, 'maybe', '2023-03-09 12:58:03', '2025-12-17 19:47:10', 'dKbl16R4', '5962133'), + (534, 1946, 'not_attending', '2023-03-16 21:07:35', '2025-12-17 19:46:56', 'dKbl16R4', '5962134'), + (534, 1948, 'attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dKbl16R4', '5962317'), + (534, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dKbl16R4', '5962318'), + (534, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dKbl16R4', '5965933'), + (534, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dKbl16R4', '5972815'), + (534, 1960, 'maybe', '2023-03-09 12:57:49', '2025-12-17 19:47:09', 'dKbl16R4', '5973267'), + (534, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dKbl16R4', '5974016'), + (534, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dKbl16R4', '5981515'), + (534, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dKbl16R4', '5993516'), + (534, 1974, 'attending', '2023-03-29 11:23:18', '2025-12-17 19:46:57', 'dKbl16R4', '5993778'), + (534, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dKbl16R4', '5998939'), + (534, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dKbl16R4', '6028191'), + (534, 1982, 'maybe', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dKbl16R4', '6040066'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (534, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dKbl16R4', '6042717'), + (534, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dKbl16R4', '6044838'), + (534, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dKbl16R4', '6044839'), + (534, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKbl16R4', '6045684'), + (534, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dKbl16R4', '6050104'), + (534, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dKbl16R4', '6053195'), + (534, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dKbl16R4', '6053198'), + (534, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dKbl16R4', '6056085'), + (534, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dKbl16R4', '6056916'), + (534, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dKbl16R4', '6059290'), + (534, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dKbl16R4', '6060328'), + (534, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dKbl16R4', '6061037'), + (534, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dKbl16R4', '6061039'), + (534, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dKbl16R4', '6067245'), + (534, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dKbl16R4', '6068094'), + (534, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dKbl16R4', '6068252'), + (534, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dKbl16R4', '6068253'), + (534, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dKbl16R4', '6068254'), + (534, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dKbl16R4', '6068280'), + (534, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dKbl16R4', '6069093'), + (534, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dKbl16R4', '6072528'), + (534, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dKbl16R4', '6079840'), + (534, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dKbl16R4', '6083398'), + (534, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dKbl16R4', '6093504'), + (534, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dKbl16R4', '6097414'), + (534, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dKbl16R4', '6097442'), + (534, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dKbl16R4', '6097684'), + (534, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dKbl16R4', '6098762'), + (534, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dKbl16R4', '6101362'), + (534, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dKbl16R4', '6103752'), + (534, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dKbl16R4', '6107314'), + (535, 855, 'attending', '2021-08-04 22:44:00', '2025-12-17 19:47:41', '4PPG8al4', '4015729'), + (535, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', '4PPG8al4', '4210314'), + (535, 902, 'attending', '2021-08-04 06:49:11', '2025-12-17 19:47:41', '4PPG8al4', '4240318'), + (535, 903, 'attending', '2021-08-14 07:46:50', '2025-12-17 19:47:42', '4PPG8al4', '4240320'), + (535, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4PPG8al4', '4304151'), + (535, 947, 'attending', '2021-08-04 00:22:03', '2025-12-17 19:47:41', '4PPG8al4', '4315713'), + (535, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '4PPG8al4', '4345519'), + (535, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4PPG8al4', '4356801'), + (535, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '4PPG8al4', '4358025'), + (535, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '4PPG8al4', '4366186'), + (535, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '4PPG8al4', '4366187'), + (535, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4PPG8al4', '4402823'), + (535, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4PPG8al4', '4420735'), + (535, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4PPG8al4', '4420738'), + (535, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', '4PPG8al4', '4420739'), + (535, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4PPG8al4', '4420741'), + (535, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4PPG8al4', '4420744'), + (535, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4PPG8al4', '4420747'), + (535, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4PPG8al4', '4420748'), + (535, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4PPG8al4', '4420749'), + (535, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4PPG8al4', '4461883'), + (535, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4PPG8al4', '4508342'), + (535, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4PPG8al4', '4568602'), + (535, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4PPG8al4', '6045684'), + (536, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqNlbkA', '6045684'), + (537, 252, 'maybe', '2021-02-15 05:01:03', '2025-12-17 19:47:50', 'ndalZan4', '3149483'), + (537, 403, 'not_attending', '2021-02-26 01:56:48', '2025-12-17 19:47:51', 'ndalZan4', '3236458'), + (537, 408, 'not_attending', '2021-02-13 16:37:33', '2025-12-17 19:47:50', 'ndalZan4', '3236466'), + (537, 590, 'attending', '2021-02-10 00:51:29', '2025-12-17 19:47:50', 'ndalZan4', '3459150'), + (537, 593, 'maybe', '2021-02-22 21:33:27', '2025-12-17 19:47:50', 'ndalZan4', '3467758'), + (537, 595, 'maybe', '2021-03-07 21:32:33', '2025-12-17 19:47:51', 'ndalZan4', '3467761'), + (537, 599, 'attending', '2021-02-12 02:19:16', '2025-12-17 19:47:50', 'ndalZan4', '3468117'), + (537, 600, 'attending', '2021-02-21 23:37:22', '2025-12-17 19:47:50', 'ndalZan4', '3468125'), + (537, 601, 'not_attending', '2021-02-15 05:00:17', '2025-12-17 19:47:50', 'ndalZan4', '3468131'), + (537, 603, 'not_attending', '2021-02-19 20:09:11', '2025-12-17 19:47:50', 'ndalZan4', '3470304'), + (537, 604, 'not_attending', '2021-02-26 01:53:24', '2025-12-17 19:47:50', 'ndalZan4', '3470305'), + (537, 605, 'maybe', '2021-02-11 00:16:14', '2025-12-17 19:47:50', 'ndalZan4', '3470991'), + (537, 608, 'maybe', '2021-02-10 23:07:57', '2025-12-17 19:47:50', 'ndalZan4', '3475332'), + (537, 610, 'not_attending', '2021-02-13 16:36:59', '2025-12-17 19:47:50', 'ndalZan4', '3482159'), + (537, 621, 'not_attending', '2021-03-04 23:26:59', '2025-12-17 19:47:51', 'ndalZan4', '3517815'), + (537, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ndalZan4', '3517816'), + (537, 623, 'attending', '2021-02-26 01:53:19', '2025-12-17 19:47:50', 'ndalZan4', '3523941'), + (537, 630, 'attending', '2021-03-01 05:25:07', '2025-12-17 19:47:51', 'ndalZan4', '3533425'), + (537, 631, 'attending', '2021-03-01 05:24:21', '2025-12-17 19:47:51', 'ndalZan4', '3533850'), + (537, 638, 'attending', '2021-03-04 23:28:46', '2025-12-17 19:47:44', 'ndalZan4', '3536632'), + (537, 639, 'attending', '2021-03-04 23:30:54', '2025-12-17 19:47:51', 'ndalZan4', '3536656'), + (537, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ndalZan4', '3539916'), + (537, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ndalZan4', '3539917'), + (537, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ndalZan4', '3539918'), + (537, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ndalZan4', '3539919'), + (537, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ndalZan4', '3539920'), + (537, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ndalZan4', '3539921'), + (537, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ndalZan4', '3539922'), + (537, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndalZan4', '3539923'), + (537, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndalZan4', '3539927'), + (537, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndalZan4', '3582734'), + (537, 707, 'attending', '2021-04-13 23:57:08', '2025-12-17 19:47:46', 'ndalZan4', '3583262'), + (537, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndalZan4', '3619523'), + (537, 724, 'attending', '2021-04-13 23:54:55', '2025-12-17 19:47:46', 'ndalZan4', '3661369'), + (537, 728, 'attending', '2021-04-13 23:54:12', '2025-12-17 19:47:44', 'ndalZan4', '3668073'), + (537, 729, 'attending', '2021-04-20 00:14:48', '2025-12-17 19:47:46', 'ndalZan4', '3668075'), + (537, 730, 'attending', '2021-04-20 00:14:57', '2025-12-17 19:47:46', 'ndalZan4', '3668076'), + (537, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ndalZan4', '3674262'), + (537, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ndalZan4', '3677402'), + (537, 752, 'not_attending', '2021-04-15 23:17:52', '2025-12-17 19:47:44', 'ndalZan4', '3699422'), + (537, 766, 'attending', '2021-04-20 00:15:03', '2025-12-17 19:47:46', 'ndalZan4', '3721383'), + (537, 768, 'maybe', '2021-04-20 00:14:44', '2025-12-17 19:47:46', 'ndalZan4', '3724124'), + (537, 769, 'attending', '2021-04-20 00:14:45', '2025-12-17 19:47:46', 'ndalZan4', '3724127'), + (537, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndalZan4', '3730212'), + (537, 792, 'attending', '2021-05-13 00:58:31', '2025-12-17 19:47:46', 'ndalZan4', '3793156'), + (537, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ndalZan4', '3974109'), + (537, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ndalZan4', '3975311'), + (537, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ndalZan4', '3975312'), + (537, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ndalZan4', '3994992'), + (537, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ndalZan4', '4014338'), + (537, 867, 'maybe', '2021-06-25 22:18:54', '2025-12-17 19:47:38', 'ndalZan4', '4021848'), + (537, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ndalZan4', '4136744'), + (537, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ndalZan4', '4136937'), + (537, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ndalZan4', '4136938'), + (537, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndalZan4', '4136947'), + (537, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndalZan4', '4210314'), + (537, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndalZan4', '4225444'), + (537, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndalZan4', '4239259'), + (537, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ndalZan4', '4240316'), + (537, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ndalZan4', '4240317'), + (537, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndalZan4', '4240318'), + (537, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ndalZan4', '4240320'), + (537, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndalZan4', '4250163'), + (537, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndalZan4', '4275957'), + (537, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndalZan4', '4277819'), + (537, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndalZan4', '4301723'), + (537, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ndalZan4', '4302093'), + (537, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndalZan4', '4304151'), + (537, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndalZan4', '4345519'), + (537, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndalZan4', '4356801'), + (537, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndalZan4', '4358025'), + (537, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ndalZan4', '4366186'), + (537, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndalZan4', '4366187'), + (537, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndalZan4', '4402823'), + (537, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ndalZan4', '4420735'), + (537, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ndalZan4', '4420738'), + (537, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndalZan4', '4420739'), + (537, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndalZan4', '4420741'), + (537, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndalZan4', '4420744'), + (537, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndalZan4', '4420747'), + (537, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndalZan4', '4420748'), + (537, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndalZan4', '4420749'), + (537, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndalZan4', '4461883'), + (537, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndalZan4', '4508342'), + (537, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndalZan4', '4568602'), + (537, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndalZan4', '4572153'), + (537, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ndalZan4', '4585962'), + (537, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ndalZan4', '4596356'), + (537, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ndalZan4', '4598860'), + (537, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ndalZan4', '4598861'), + (537, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ndalZan4', '4602797'), + (537, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ndalZan4', '4637896'), + (537, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndalZan4', '4642994'), + (537, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ndalZan4', '4642995'), + (537, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ndalZan4', '4642996'), + (537, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ndalZan4', '4642997'), + (537, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ndalZan4', '4645687'), + (537, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ndalZan4', '4645698'), + (537, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndalZan4', '4645704'), + (537, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ndalZan4', '4645705'), + (537, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ndalZan4', '4668385'), + (537, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndalZan4', '4694407'), + (537, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ndalZan4', '4736497'), + (537, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ndalZan4', '4736499'), + (537, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndalZan4', '4736500'), + (537, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ndalZan4', '4736503'), + (537, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ndalZan4', '4736504'), + (537, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndalZan4', '4746789'), + (537, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ndalZan4', '4753929'), + (537, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndalZan4', '5038850'), + (537, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ndalZan4', '5045826'), + (537, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndalZan4', '5132533'), + (537, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ndalZan4', '5186582'), + (537, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ndalZan4', '5186583'), + (537, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ndalZan4', '5186585'), + (537, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ndalZan4', '5190437'), + (537, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ndalZan4', '5195095'), + (537, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndalZan4', '5215989'), + (537, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ndalZan4', '5223686'), + (537, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ndalZan4', '5247467'), + (537, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ndalZan4', '5260800'), + (537, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ndalZan4', '5269930'), + (537, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ndalZan4', '5271448'), + (537, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'ndalZan4', '5271449'), + (537, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ndalZan4', '5278159'), + (537, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ndalZan4', '5363695'), + (537, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ndalZan4', '5365960'), + (537, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ndalZan4', '5378247'), + (537, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'ndalZan4', '5389605'), + (537, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ndalZan4', '5397265'), + (537, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ndalZan4', '5404786'), + (537, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ndalZan4', '5405203'), + (537, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ndalZan4', '5412550'), + (537, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ndalZan4', '5415046'), + (537, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ndalZan4', '5422086'), + (537, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ndalZan4', '5422406'), + (537, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ndalZan4', '5424565'), + (537, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ndalZan4', '5426882'), + (537, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ndalZan4', '5441125'), + (537, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ndalZan4', '5441126'), + (537, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ndalZan4', '5441128'), + (537, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ndalZan4', '5441131'), + (537, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ndalZan4', '5441132'), + (537, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ndalZan4', '5453325'), + (537, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ndalZan4', '5454516'), + (537, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ndalZan4', '5454605'), + (537, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ndalZan4', '5455037'), + (537, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ndalZan4', '5461278'), + (537, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ndalZan4', '5469480'), + (537, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ndalZan4', '5474663'), + (537, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ndalZan4', '5482022'), + (537, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ndalZan4', '5488912'), + (537, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ndalZan4', '5492192'), + (537, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ndalZan4', '5493139'), + (537, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ndalZan4', '5493200'), + (537, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ndalZan4', '5502188'), + (537, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndalZan4', '5505059'), + (537, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ndalZan4', '5509055'), + (537, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndalZan4', '5512862'), + (537, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndalZan4', '5513985'), + (537, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'ndalZan4', '5519981'), + (537, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndalZan4', '5522550'), + (537, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndalZan4', '5534683'), + (537, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ndalZan4', '5537735'), + (537, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndalZan4', '5540859'), + (537, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndalZan4', '5546619'), + (537, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndalZan4', '5557747'), + (537, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndalZan4', '5560255'), + (537, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndalZan4', '5562906'), + (537, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndalZan4', '5600604'), + (537, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndalZan4', '5605544'), + (537, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ndalZan4', '5630960'), + (537, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndalZan4', '5630961'), + (537, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndalZan4', '5630962'), + (537, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndalZan4', '5630966'), + (537, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ndalZan4', '5630967'), + (537, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndalZan4', '5630968'), + (537, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndalZan4', '5635406'), + (537, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndalZan4', '5638765'), + (537, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndalZan4', '5640097'), + (537, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ndalZan4', '5640843'), + (537, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndalZan4', '5641521'), + (537, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ndalZan4', '5642818'), + (537, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndalZan4', '5652395'), + (537, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ndalZan4', '5670445'), + (537, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndalZan4', '5671637'), + (537, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndalZan4', '5672329'), + (537, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndalZan4', '5674057'), + (537, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndalZan4', '5674060'), + (537, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndalZan4', '5677461'), + (537, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndalZan4', '5698046'), + (537, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ndalZan4', '5699760'), + (537, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndalZan4', '5741601'), + (537, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndalZan4', '5763458'), + (537, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndalZan4', '5774172'), + (537, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'ndalZan4', '5818247'), + (537, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndalZan4', '5819471'), + (537, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndalZan4', '5827739'), + (537, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndalZan4', '5844306'), + (537, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndalZan4', '5850159'), + (537, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndalZan4', '5858999'), + (537, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndalZan4', '5871984'), + (537, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndalZan4', '5876354'), + (537, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndalZan4', '5880939'), + (537, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ndalZan4', '5880940'), + (537, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndalZan4', '5880942'), + (537, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndalZan4', '5880943'), + (537, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndalZan4', '5887890'), + (537, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndalZan4', '5888598'), + (537, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndalZan4', '5893260'), + (537, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndalZan4', '5899826'), + (537, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndalZan4', '5900199'), + (537, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ndalZan4', '5900200'), + (537, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndalZan4', '5900202'), + (537, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndalZan4', '5900203'), + (537, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndalZan4', '5901108'), + (537, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndalZan4', '5901126'), + (537, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'ndalZan4', '5901606'), + (537, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndalZan4', '5909655'), + (537, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndalZan4', '5910522'), + (537, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndalZan4', '5910526'), + (537, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndalZan4', '5910528'), + (537, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ndalZan4', '5916219'), + (537, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndalZan4', '5936234'), + (537, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndalZan4', '5958351'), + (537, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndalZan4', '5959751'), + (537, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndalZan4', '5959755'), + (537, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndalZan4', '5960055'), + (537, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndalZan4', '5961684'), + (537, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndalZan4', '5962132'), + (537, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ndalZan4', '5962133'), + (537, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndalZan4', '5962134'), + (537, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndalZan4', '5962317'), + (537, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndalZan4', '5962318'), + (537, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndalZan4', '5965933'), + (537, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndalZan4', '5967014'), + (537, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndalZan4', '5972815'), + (537, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndalZan4', '5974016'), + (537, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndalZan4', '5981515'), + (537, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndalZan4', '5993516'), + (537, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndalZan4', '5998939'), + (537, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndalZan4', '6028191'), + (537, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndalZan4', '6040066'), + (537, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndalZan4', '6042717'), + (537, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndalZan4', '6044838'), + (537, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndalZan4', '6044839'), + (537, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndalZan4', '6045684'), + (537, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndalZan4', '6050104'), + (537, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndalZan4', '6053195'), + (537, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndalZan4', '6053198'), + (537, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndalZan4', '6056085'), + (537, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndalZan4', '6056916'), + (537, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndalZan4', '6059290'), + (537, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndalZan4', '6060328'), + (537, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndalZan4', '6061037'), + (537, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndalZan4', '6061039'), + (537, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndalZan4', '6067245'), + (537, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndalZan4', '6068094'), + (537, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndalZan4', '6068252'), + (537, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndalZan4', '6068253'), + (537, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndalZan4', '6068254'), + (537, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndalZan4', '6068280'), + (537, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndalZan4', '6069093'), + (537, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndalZan4', '6072528'), + (537, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndalZan4', '6079840'), + (537, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndalZan4', '6083398'), + (537, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndalZan4', '6093504'), + (537, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndalZan4', '6097414'), + (537, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndalZan4', '6097442'), + (537, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndalZan4', '6097684'), + (537, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndalZan4', '6098762'), + (537, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ndalZan4', '6101361'), + (537, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndalZan4', '6101362'), + (537, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndalZan4', '6107314'), + (537, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndalZan4', '6120034'), + (537, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ndalZan4', '6136733'), + (537, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndalZan4', '6137989'), + (537, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndalZan4', '6150864'), + (537, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndalZan4', '6155491'), + (537, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndalZan4', '6164417'), + (537, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndalZan4', '6166388'), + (537, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndalZan4', '6176439'), + (537, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndalZan4', '6182410'), + (537, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndalZan4', '6185812'), + (537, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndalZan4', '6187651'), + (537, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndalZan4', '6187963'), + (537, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndalZan4', '6187964'), + (537, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndalZan4', '6187966'), + (537, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndalZan4', '6187967'), + (537, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndalZan4', '6187969'), + (537, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndalZan4', '6334878'), + (537, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndalZan4', '6337236'), + (537, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndalZan4', '6337970'), + (537, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndalZan4', '6338308'), + (537, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndalZan4', '6341710'), + (537, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndalZan4', '6342044'), + (537, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndalZan4', '6342298'), + (537, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndalZan4', '6343294'), + (537, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndalZan4', '6347034'), + (537, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndalZan4', '6347056'), + (537, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndalZan4', '6353830'), + (537, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndalZan4', '6353831'), + (537, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndalZan4', '6357867'), + (537, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndalZan4', '6358652'), + (537, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndalZan4', '6361709'), + (537, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndalZan4', '6361710'), + (537, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndalZan4', '6361711'), + (537, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndalZan4', '6361712'), + (537, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndalZan4', '6361713'), + (537, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndalZan4', '6382573'), + (537, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ndalZan4', '6388604'), + (537, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndalZan4', '6394629'), + (537, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndalZan4', '6394631'), + (537, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndalZan4', '6440863'), + (537, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndalZan4', '6445440'), + (537, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndalZan4', '6453951'), + (537, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndalZan4', '6461696'), + (537, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndalZan4', '6462129'), + (537, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndalZan4', '6463218'), + (537, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ndalZan4', '6472181'), + (537, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndalZan4', '6482693'), + (537, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ndalZan4', '6484200'), + (537, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndalZan4', '6484680'), + (537, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndalZan4', '6507741'), + (537, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndalZan4', '6514659'), + (537, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndalZan4', '6514660'), + (537, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndalZan4', '6519103'), + (537, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndalZan4', '6535681'), + (537, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndalZan4', '6584747'), + (537, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndalZan4', '6587097'), + (537, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndalZan4', '6609022'), + (537, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndalZan4', '6632757'), + (537, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndalZan4', '6644187'), + (537, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndalZan4', '6648951'), + (537, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndalZan4', '6648952'), + (537, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndalZan4', '6655401'), + (537, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndalZan4', '6661585'), + (537, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndalZan4', '6661588'), + (537, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndalZan4', '6661589'), + (537, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndalZan4', '6699906'), + (537, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ndalZan4', '6699913'), + (537, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndalZan4', '6701109'), + (537, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndalZan4', '6705219'), + (537, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndalZan4', '6710153'), + (537, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndalZan4', '6711552'), + (537, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'ndalZan4', '6711553'), + (537, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ndalZan4', '6722688'), + (537, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ndalZan4', '6730620'), + (537, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ndalZan4', '6740364'), + (537, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ndalZan4', '6743829'), + (537, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ndalZan4', '7030380'), + (537, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ndalZan4', '7033677'), + (537, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ndalZan4', '7044715'), + (537, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ndalZan4', '7050318'), + (537, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ndalZan4', '7050319'), + (537, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ndalZan4', '7050322'), + (537, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ndalZan4', '7057804'), + (537, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ndalZan4', '7072824'), + (537, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ndalZan4', '7074348'), + (537, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndalZan4', '7074364'), + (537, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ndalZan4', '7089267'), + (537, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ndalZan4', '7098747'), + (537, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ndalZan4', '7113468'), + (537, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ndalZan4', '7114856'), + (537, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ndalZan4', '7114951'), + (537, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ndalZan4', '7114955'), + (537, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ndalZan4', '7114956'), + (537, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndalZan4', '7114957'), + (537, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndalZan4', '7159484'), + (537, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndalZan4', '7178446'), + (537, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'ndalZan4', '7220467'), + (537, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndalZan4', '7240354'), + (537, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndalZan4', '7251633'), + (537, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndalZan4', '7324073'), + (537, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndalZan4', '7324074'), + (537, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndalZan4', '7324075'), + (537, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ndalZan4', '7324078'), + (537, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ndalZan4', '7324082'), + (537, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ndalZan4', '7331457'), + (537, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ndalZan4', '7363643'), + (537, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndalZan4', '7368606'), + (537, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndalZan4', '7397462'), + (537, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndalZan4', '7424275'), + (537, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndalZan4', '7432751'), + (537, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndalZan4', '7432752'), + (537, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndalZan4', '7432753'), + (537, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndalZan4', '7432754'), + (537, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndalZan4', '7432755'), + (537, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndalZan4', '7432756'), + (537, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndalZan4', '7432758'), + (537, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndalZan4', '7432759'), + (537, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndalZan4', '7433834'), + (537, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndalZan4', '7470197'), + (537, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndalZan4', '7685613'), + (537, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndalZan4', '7688194'), + (537, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndalZan4', '7688196'), + (537, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndalZan4', '7688289'), + (537, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ndalZan4', '7692763'), + (537, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndalZan4', '7697552'), + (537, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndalZan4', '7699878'), + (537, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndalZan4', '7704043'), + (537, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndalZan4', '7712467'), + (537, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ndalZan4', '7713585'), + (537, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ndalZan4', '7713586'), + (537, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndalZan4', '7738518'), + (537, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndalZan4', '7750636'), + (537, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndalZan4', '7796540'), + (537, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndalZan4', '7796541'), + (537, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndalZan4', '7796542'), + (537, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndalZan4', '7825913'), + (537, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndalZan4', '7826209'), + (537, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndalZan4', '7834742'), + (537, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ndalZan4', '7842108'), + (537, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndalZan4', '7842902'), + (537, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndalZan4', '7842903'), + (537, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndalZan4', '7842904'), + (537, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndalZan4', '7842905'), + (537, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndalZan4', '7855719'), + (537, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndalZan4', '7860683'), + (537, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndalZan4', '7860684'), + (537, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndalZan4', '7866095'), + (537, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndalZan4', '7869170'), + (537, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ndalZan4', '7869188'), + (537, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndalZan4', '7869201'), + (537, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndalZan4', '7877465'), + (537, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndalZan4', '7888250'), + (537, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ndalZan4', '7904777'), + (537, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndalZan4', '8349164'), + (537, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndalZan4', '8349545'), + (537, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndalZan4', '8368028'), + (537, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndalZan4', '8368029'), + (537, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndalZan4', '8388462'), + (537, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndalZan4', '8400273'), + (537, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndalZan4', '8400275'), + (537, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ndalZan4', '8400276'), + (537, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndalZan4', '8404977'), + (537, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndalZan4', '8430783'), + (537, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndalZan4', '8430784'), + (537, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndalZan4', '8430799'), + (537, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndalZan4', '8430800'), + (537, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndalZan4', '8430801'), + (537, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndalZan4', '8438709'), + (537, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndalZan4', '8457738'), + (537, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndalZan4', '8459566'), + (537, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndalZan4', '8459567'), + (537, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndalZan4', '8461032'), + (537, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndalZan4', '8477877'), + (537, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ndalZan4', '8485688'), + (537, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ndalZan4', '8490587'), + (537, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ndalZan4', '8493552'), + (537, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ndalZan4', '8493553'), + (537, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ndalZan4', '8493554'), + (537, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ndalZan4', '8493555'), + (537, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ndalZan4', '8493556'), + (537, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ndalZan4', '8493557'), + (537, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ndalZan4', '8493558'), + (537, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ndalZan4', '8493559'), + (537, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ndalZan4', '8493560'), + (537, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ndalZan4', '8493561'), + (537, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ndalZan4', '8493572'), + (537, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ndalZan4', '8540725'), + (537, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndalZan4', '8555421'), + (538, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'm6o1vJzA', '5195095'), + (538, 1307, 'not_attending', '2022-04-05 18:41:01', '2025-12-17 19:47:27', 'm6o1vJzA', '5223686'), + (538, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'm6o1vJzA', '5227432'), + (538, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'm6o1vJzA', '5247467'), + (538, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'm6o1vJzA', '5260800'), + (538, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6o1vJzA', '5269930'), + (538, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6o1vJzA', '5271448'), + (538, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'm6o1vJzA', '5271449'), + (538, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'm6o1vJzA', '5276469'), + (538, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6o1vJzA', '5278159'), + (538, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6o1vJzA', '6045684'), + (539, 10, 'attending', '2020-03-28 19:03:32', '2025-12-17 19:47:56', '54k7DM54', '2958053'), + (539, 15, 'not_attending', '2020-04-15 20:16:19', '2025-12-17 19:47:57', '54k7DM54', '2958059'), + (539, 18, 'not_attending', '2020-04-15 20:16:27', '2025-12-17 19:47:57', '54k7DM54', '2958062'), + (539, 21, 'not_attending', '2020-05-01 22:28:09', '2025-12-17 19:47:57', '54k7DM54', '2958065'), + (539, 30, 'not_attending', '2020-04-06 20:40:00', '2025-12-17 19:47:57', '54k7DM54', '2961895'), + (539, 36, 'attending', '2020-04-04 23:06:14', '2025-12-17 19:47:57', '54k7DM54', '2969208'), + (539, 41, 'not_attending', '2020-04-15 20:16:24', '2025-12-17 19:47:57', '54k7DM54', '2971546'), + (539, 43, 'not_attending', '2020-04-15 20:16:37', '2025-12-17 19:47:57', '54k7DM54', '2974519'), + (539, 44, 'not_attending', '2020-04-11 22:46:19', '2025-12-17 19:47:57', '54k7DM54', '2974534'), + (539, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', '54k7DM54', '2974955'), + (539, 55, 'not_attending', '2020-04-06 20:39:56', '2025-12-17 19:47:57', '54k7DM54', '2975384'), + (539, 56, 'not_attending', '2020-04-12 03:32:06', '2025-12-17 19:47:57', '54k7DM54', '2975385'), + (539, 57, 'not_attending', '2020-04-10 21:25:15', '2025-12-17 19:47:57', '54k7DM54', '2976575'), + (539, 70, 'not_attending', '2020-04-10 18:54:55', '2025-12-17 19:47:57', '54k7DM54', '2977343'), + (539, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '54k7DM54', '2977812'), + (539, 73, 'not_attending', '2020-04-15 20:16:29', '2025-12-17 19:47:57', '54k7DM54', '2977931'), + (539, 74, 'attending', '2020-04-15 20:16:35', '2025-12-17 19:47:57', '54k7DM54', '2978244'), + (539, 75, 'attending', '2020-04-25 22:49:44', '2025-12-17 19:47:57', '54k7DM54', '2978245'), + (539, 76, 'attending', '2020-05-01 22:28:12', '2025-12-17 19:47:57', '54k7DM54', '2978246'), + (539, 77, 'not_attending', '2020-05-04 13:58:20', '2025-12-17 19:47:57', '54k7DM54', '2978247'), + (539, 78, 'attending', '2020-05-19 23:56:55', '2025-12-17 19:47:57', '54k7DM54', '2978249'), + (539, 79, 'attending', '2020-05-24 22:31:28', '2025-12-17 19:47:57', '54k7DM54', '2978250'), + (539, 80, 'attending', '2020-06-07 01:38:51', '2025-12-17 19:47:58', '54k7DM54', '2978251'), + (539, 81, 'attending', '2020-06-13 22:53:18', '2025-12-17 19:47:58', '54k7DM54', '2978252'), + (539, 82, 'not_attending', '2020-04-11 02:47:29', '2025-12-17 19:47:57', '54k7DM54', '2978433'), + (539, 83, 'not_attending', '2020-05-09 03:20:32', '2025-12-17 19:47:57', '54k7DM54', '2978438'), + (539, 84, 'not_attending', '2020-04-13 23:55:22', '2025-12-17 19:47:57', '54k7DM54', '2980871'), + (539, 86, 'not_attending', '2020-04-14 19:49:48', '2025-12-17 19:47:57', '54k7DM54', '2981388'), + (539, 88, 'not_attending', '2020-04-15 20:16:33', '2025-12-17 19:47:57', '54k7DM54', '2982603'), + (539, 89, 'not_attending', '2020-05-01 22:28:10', '2025-12-17 19:47:57', '54k7DM54', '2982604'), + (539, 91, 'not_attending', '2020-05-01 22:28:08', '2025-12-17 19:47:57', '54k7DM54', '2985130'), + (539, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '54k7DM54', '2986743'), + (539, 93, 'not_attending', '2020-04-19 17:31:44', '2025-12-17 19:47:57', '54k7DM54', '2987418'), + (539, 101, 'attending', '2020-04-22 00:28:05', '2025-12-17 19:47:57', '54k7DM54', '2989975'), + (539, 104, 'attending', '2020-04-24 19:00:45', '2025-12-17 19:47:57', '54k7DM54', '2991471'), + (539, 106, 'not_attending', '2020-05-01 22:28:13', '2025-12-17 19:47:57', '54k7DM54', '2993501'), + (539, 109, 'not_attending', '2020-05-11 22:48:50', '2025-12-17 19:47:57', '54k7DM54', '2994480'), + (539, 110, 'attending', '2020-05-03 19:53:03', '2025-12-17 19:47:57', '54k7DM54', '2994906'), + (539, 111, 'attending', '2020-06-07 19:54:50', '2025-12-17 19:47:58', '54k7DM54', '2994907'), + (539, 113, 'attending', '2020-08-02 17:24:28', '2025-12-17 19:47:56', '54k7DM54', '2994909'), + (539, 115, 'attending', '2020-05-16 20:03:21', '2025-12-17 19:47:57', '54k7DM54', '3001217'), + (539, 121, 'not_attending', '2020-05-26 22:32:15', '2025-12-17 19:47:57', '54k7DM54', '3023063'), + (539, 133, 'not_attending', '2020-06-24 23:59:27', '2025-12-17 19:47:58', '54k7DM54', '3034321'), + (539, 136, 'not_attending', '2020-05-24 22:31:23', '2025-12-17 19:47:57', '54k7DM54', '3035881'), + (539, 143, 'not_attending', '2020-06-07 21:49:09', '2025-12-17 19:47:58', '54k7DM54', '3049983'), + (539, 147, 'not_attending', '2020-08-22 22:09:28', '2025-12-17 19:47:56', '54k7DM54', '3058684'), + (539, 151, 'not_attending', '2020-08-22 22:10:13', '2025-12-17 19:47:56', '54k7DM54', '3058688'), + (539, 152, 'not_attending', '2020-09-02 20:34:30', '2025-12-17 19:47:56', '54k7DM54', '3058689'), + (539, 156, 'not_attending', '2020-09-05 23:15:52', '2025-12-17 19:47:56', '54k7DM54', '3058693'), + (539, 157, 'not_attending', '2020-09-19 22:17:09', '2025-12-17 19:47:56', '54k7DM54', '3058694'), + (539, 159, 'not_attending', '2020-10-03 22:28:53', '2025-12-17 19:47:52', '54k7DM54', '3058696'), + (539, 160, 'not_attending', '2020-10-03 22:29:39', '2025-12-17 19:47:52', '54k7DM54', '3058697'), + (539, 161, 'not_attending', '2020-10-03 22:29:06', '2025-12-17 19:47:52', '54k7DM54', '3058698'), + (539, 162, 'not_attending', '2020-10-03 22:29:20', '2025-12-17 19:47:52', '54k7DM54', '3058699'), + (539, 163, 'not_attending', '2020-10-03 22:29:47', '2025-12-17 19:47:53', '54k7DM54', '3058700'), + (539, 164, 'not_attending', '2020-10-19 22:32:56', '2025-12-17 19:47:54', '54k7DM54', '3058701'), + (539, 165, 'not_attending', '2020-10-19 22:32:48', '2025-12-17 19:47:53', '54k7DM54', '3058702'), + (539, 166, 'not_attending', '2020-10-19 22:33:03', '2025-12-17 19:47:54', '54k7DM54', '3058704'), + (539, 167, 'not_attending', '2020-10-19 22:33:07', '2025-12-17 19:47:54', '54k7DM54', '3058705'), + (539, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '54k7DM54', '3058959'), + (539, 173, 'not_attending', '2020-06-16 04:36:04', '2025-12-17 19:47:58', '54k7DM54', '3067093'), + (539, 181, 'maybe', '2020-06-20 20:41:56', '2025-12-17 19:47:58', '54k7DM54', '3074513'), + (539, 183, 'not_attending', '2020-06-16 04:35:50', '2025-12-17 19:47:58', '54k7DM54', '3075228'), + (539, 185, 'not_attending', '2020-06-16 04:35:55', '2025-12-17 19:47:58', '54k7DM54', '3075456'), + (539, 186, 'not_attending', '2020-06-19 01:58:10', '2025-12-17 19:47:55', '54k7DM54', '3083791'), + (539, 187, 'not_attending', '2020-06-19 20:31:33', '2025-12-17 19:47:55', '54k7DM54', '3085151'), + (539, 189, 'not_attending', '2020-06-20 18:18:51', '2025-12-17 19:47:58', '54k7DM54', '3087016'), + (539, 190, 'not_attending', '2020-07-04 22:35:49', '2025-12-17 19:47:55', '54k7DM54', '3087258'), + (539, 191, 'attending', '2020-07-11 22:30:33', '2025-12-17 19:47:55', '54k7DM54', '3087259'), + (539, 192, 'not_attending', '2020-07-18 19:54:08', '2025-12-17 19:47:55', '54k7DM54', '3087260'), + (539, 196, 'attending', '2020-08-15 20:38:36', '2025-12-17 19:47:56', '54k7DM54', '3087265'), + (539, 197, 'attending', '2020-08-22 22:09:34', '2025-12-17 19:47:56', '54k7DM54', '3087266'), + (539, 198, 'attending', '2020-08-29 22:37:30', '2025-12-17 19:47:56', '54k7DM54', '3087267'), + (539, 199, 'attending', '2020-09-05 23:15:10', '2025-12-17 19:47:56', '54k7DM54', '3087268'), + (539, 200, 'attending', '2020-09-05 23:15:21', '2025-12-17 19:47:56', '54k7DM54', '3087269'), + (539, 201, 'not_attending', '2020-06-21 02:50:20', '2025-12-17 19:47:55', '54k7DM54', '3088653'), + (539, 202, 'not_attending', '2020-07-06 23:46:44', '2025-12-17 19:47:55', '54k7DM54', '3090353'), + (539, 209, 'not_attending', '2020-06-30 01:52:01', '2025-12-17 19:47:55', '54k7DM54', '3106813'), + (539, 220, 'not_attending', '2020-09-02 20:34:21', '2025-12-17 19:47:56', '54k7DM54', '3129264'), + (539, 221, 'not_attending', '2020-09-05 23:16:07', '2025-12-17 19:47:56', '54k7DM54', '3129265'), + (539, 223, 'attending', '2020-09-12 23:02:18', '2025-12-17 19:47:56', '54k7DM54', '3129980'), + (539, 226, 'not_attending', '2020-07-14 03:09:28', '2025-12-17 19:47:55', '54k7DM54', '3132817'), + (539, 227, 'not_attending', '2020-07-14 03:09:32', '2025-12-17 19:47:55', '54k7DM54', '3132820'), + (539, 232, 'not_attending', '2020-07-20 22:41:38', '2025-12-17 19:47:55', '54k7DM54', '3139770'), + (539, 239, 'not_attending', '2020-08-22 22:09:57', '2025-12-17 19:47:56', '54k7DM54', '3149470'), + (539, 240, 'not_attending', '2020-09-05 23:15:33', '2025-12-17 19:47:56', '54k7DM54', '3149471'), + (539, 241, 'not_attending', '2020-10-03 22:29:00', '2025-12-17 19:47:52', '54k7DM54', '3149472'), + (539, 242, 'not_attending', '2020-09-12 00:07:47', '2025-12-17 19:47:56', '54k7DM54', '3149473'), + (539, 243, 'not_attending', '2020-10-03 22:29:52', '2025-12-17 19:47:53', '54k7DM54', '3149474'), + (539, 244, 'not_attending', '2020-10-03 22:29:25', '2025-12-17 19:47:52', '54k7DM54', '3149475'), + (539, 245, 'not_attending', '2020-11-08 19:30:30', '2025-12-17 19:47:54', '54k7DM54', '3149476'), + (539, 246, 'not_attending', '2020-11-11 04:10:39', '2025-12-17 19:47:55', '54k7DM54', '3149477'), + (539, 247, 'not_attending', '2020-12-06 21:30:21', '2025-12-17 19:47:48', '54k7DM54', '3149478'), + (539, 248, 'not_attending', '2020-12-06 21:30:35', '2025-12-17 19:47:48', '54k7DM54', '3149479'), + (539, 249, 'not_attending', '2020-10-19 22:33:00', '2025-12-17 19:47:54', '54k7DM54', '3149480'), + (539, 250, 'not_attending', '2020-12-06 21:31:01', '2025-12-17 19:47:50', '54k7DM54', '3149481'), + (539, 251, 'not_attending', '2020-12-06 21:30:39', '2025-12-17 19:47:49', '54k7DM54', '3149482'), + (539, 252, 'not_attending', '2020-12-06 21:31:05', '2025-12-17 19:47:50', '54k7DM54', '3149483'), + (539, 254, 'not_attending', '2020-12-06 21:31:09', '2025-12-17 19:47:51', '54k7DM54', '3149485'), + (539, 255, 'not_attending', '2021-03-24 00:04:19', '2025-12-17 19:47:43', '54k7DM54', '3149486'), + (539, 269, 'attending', '2020-07-28 22:17:32', '2025-12-17 19:47:55', '54k7DM54', '3153076'), + (539, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '54k7DM54', '3155321'), + (539, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '54k7DM54', '3162006'), + (539, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '54k7DM54', '3163442'), + (539, 280, 'not_attending', '2020-08-12 23:08:29', '2025-12-17 19:47:56', '54k7DM54', '3166942'), + (539, 285, 'not_attending', '2020-08-22 22:09:51', '2025-12-17 19:47:56', '54k7DM54', '3170245'), + (539, 286, 'not_attending', '2020-08-22 22:10:00', '2025-12-17 19:47:56', '54k7DM54', '3170246'), + (539, 287, 'not_attending', '2020-08-22 22:10:06', '2025-12-17 19:47:56', '54k7DM54', '3170247'), + (539, 288, 'not_attending', '2020-09-02 20:34:16', '2025-12-17 19:47:56', '54k7DM54', '3170249'), + (539, 289, 'not_attending', '2020-09-02 20:34:25', '2025-12-17 19:47:56', '54k7DM54', '3170250'), + (539, 290, 'not_attending', '2020-09-05 23:15:34', '2025-12-17 19:47:56', '54k7DM54', '3170251'), + (539, 291, 'not_attending', '2020-09-05 23:15:47', '2025-12-17 19:47:56', '54k7DM54', '3170252'), + (539, 293, 'not_attending', '2020-08-10 21:56:51', '2025-12-17 19:47:56', '54k7DM54', '3172832'), + (539, 294, 'not_attending', '2020-08-10 21:56:48', '2025-12-17 19:47:56', '54k7DM54', '3172833'), + (539, 295, 'not_attending', '2020-08-10 21:56:45', '2025-12-17 19:47:56', '54k7DM54', '3172834'), + (539, 296, 'not_attending', '2020-08-10 21:56:43', '2025-12-17 19:47:56', '54k7DM54', '3172876'), + (539, 298, 'not_attending', '2020-08-22 22:10:05', '2025-12-17 19:47:56', '54k7DM54', '3174556'), + (539, 301, 'not_attending', '2020-08-22 22:10:03', '2025-12-17 19:47:56', '54k7DM54', '3178027'), + (539, 302, 'not_attending', '2020-08-22 22:09:58', '2025-12-17 19:47:56', '54k7DM54', '3178028'), + (539, 304, 'not_attending', '2020-09-05 23:15:29', '2025-12-17 19:47:56', '54k7DM54', '3178916'), + (539, 306, 'not_attending', '2020-08-22 22:09:23', '2025-12-17 19:47:56', '54k7DM54', '3179777'), + (539, 308, 'not_attending', '2020-09-02 20:34:20', '2025-12-17 19:47:56', '54k7DM54', '3183341'), + (539, 310, 'not_attending', '2020-08-22 22:09:41', '2025-12-17 19:47:56', '54k7DM54', '3186005'), + (539, 311, 'not_attending', '2020-09-19 22:17:25', '2025-12-17 19:47:56', '54k7DM54', '3186057'), + (539, 312, 'not_attending', '2020-09-05 23:15:42', '2025-12-17 19:47:56', '54k7DM54', '3187795'), + (539, 313, 'not_attending', '2020-08-22 22:09:43', '2025-12-17 19:47:56', '54k7DM54', '3188127'), + (539, 314, 'not_attending', '2020-08-22 22:09:56', '2025-12-17 19:47:56', '54k7DM54', '3188480'), + (539, 315, 'not_attending', '2020-09-05 23:15:31', '2025-12-17 19:47:56', '54k7DM54', '3189085'), + (539, 316, 'not_attending', '2020-08-26 23:32:42', '2025-12-17 19:47:56', '54k7DM54', '3191519'), + (539, 317, 'not_attending', '2020-08-26 23:32:46', '2025-12-17 19:47:56', '54k7DM54', '3191735'), + (539, 320, 'not_attending', '2020-09-02 20:34:23', '2025-12-17 19:47:56', '54k7DM54', '3195552'), + (539, 321, 'not_attending', '2020-09-05 23:15:25', '2025-12-17 19:47:56', '54k7DM54', '3197077'), + (539, 322, 'not_attending', '2020-09-05 23:16:04', '2025-12-17 19:47:56', '54k7DM54', '3197080'), + (539, 323, 'not_attending', '2020-09-05 23:16:09', '2025-12-17 19:47:56', '54k7DM54', '3197081'), + (539, 324, 'not_attending', '2020-09-12 00:07:45', '2025-12-17 19:47:56', '54k7DM54', '3197082'), + (539, 325, 'not_attending', '2020-09-12 00:07:51', '2025-12-17 19:47:51', '54k7DM54', '3197083'), + (539, 326, 'not_attending', '2020-09-12 00:07:56', '2025-12-17 19:47:52', '54k7DM54', '3197084'), + (539, 330, 'not_attending', '2020-09-06 18:23:57', '2025-12-17 19:47:56', '54k7DM54', '3197322'), + (539, 331, 'not_attending', '2020-09-02 20:34:28', '2025-12-17 19:47:56', '54k7DM54', '3198871'), + (539, 332, 'not_attending', '2020-09-05 23:15:39', '2025-12-17 19:47:56', '54k7DM54', '3198873'), + (539, 333, 'not_attending', '2020-10-08 23:32:18', '2025-12-17 19:47:52', '54k7DM54', '3199782'), + (539, 334, 'not_attending', '2020-10-03 22:29:02', '2025-12-17 19:47:52', '54k7DM54', '3199784'), + (539, 335, 'not_attending', '2020-09-02 20:34:26', '2025-12-17 19:47:56', '54k7DM54', '3200209'), + (539, 336, 'not_attending', '2020-09-05 23:16:02', '2025-12-17 19:47:56', '54k7DM54', '3200495'), + (539, 337, 'not_attending', '2020-09-05 23:15:37', '2025-12-17 19:47:56', '54k7DM54', '3201771'), + (539, 338, 'not_attending', '2020-09-05 23:15:20', '2025-12-17 19:47:56', '54k7DM54', '3203106'), + (539, 339, 'not_attending', '2020-09-05 23:15:40', '2025-12-17 19:47:56', '54k7DM54', '3204469'), + (539, 340, 'not_attending', '2020-09-05 23:16:05', '2025-12-17 19:47:56', '54k7DM54', '3204470'), + (539, 341, 'not_attending', '2020-09-12 00:07:52', '2025-12-17 19:47:52', '54k7DM54', '3204471'), + (539, 343, 'not_attending', '2020-09-12 00:07:48', '2025-12-17 19:47:56', '54k7DM54', '3206759'), + (539, 344, 'not_attending', '2020-10-03 22:29:50', '2025-12-17 19:47:53', '54k7DM54', '3206906'), + (539, 345, 'not_attending', '2020-09-12 00:07:26', '2025-12-17 19:47:56', '54k7DM54', '3207423'), + (539, 346, 'not_attending', '2020-09-12 00:07:30', '2025-12-17 19:47:56', '54k7DM54', '3207515'), + (539, 347, 'not_attending', '2020-09-12 00:07:54', '2025-12-17 19:47:51', '54k7DM54', '3207930'), + (539, 349, 'not_attending', '2020-09-12 00:07:32', '2025-12-17 19:47:56', '54k7DM54', '3209194'), + (539, 350, 'not_attending', '2020-09-12 00:07:21', '2025-12-17 19:47:56', '54k7DM54', '3209255'), + (539, 351, 'not_attending', '2020-09-12 00:07:35', '2025-12-17 19:47:56', '54k7DM54', '3209257'), + (539, 362, 'attending', '2020-09-26 22:44:15', '2025-12-17 19:47:52', '54k7DM54', '3214207'), + (539, 363, 'not_attending', '2020-09-17 22:53:23', '2025-12-17 19:47:52', '54k7DM54', '3217037'), + (539, 365, 'not_attending', '2020-09-18 21:21:24', '2025-12-17 19:47:51', '54k7DM54', '3218510'), + (539, 369, 'not_attending', '2020-10-03 22:29:10', '2025-12-17 19:47:52', '54k7DM54', '3221404'), + (539, 370, 'not_attending', '2020-10-03 22:29:14', '2025-12-17 19:47:52', '54k7DM54', '3221405'), + (539, 371, 'not_attending', '2020-10-17 17:44:15', '2025-12-17 19:47:52', '54k7DM54', '3221406'), + (539, 372, 'not_attending', '2020-10-03 22:29:32', '2025-12-17 19:47:52', '54k7DM54', '3221407'), + (539, 373, 'not_attending', '2020-10-03 22:29:36', '2025-12-17 19:47:52', '54k7DM54', '3221413'), + (539, 374, 'not_attending', '2020-10-03 22:29:43', '2025-12-17 19:47:53', '54k7DM54', '3221415'), + (539, 375, 'not_attending', '2020-10-03 22:29:03', '2025-12-17 19:47:52', '54k7DM54', '3222825'), + (539, 376, 'not_attending', '2020-10-03 22:29:18', '2025-12-17 19:47:52', '54k7DM54', '3222827'), + (539, 377, 'not_attending', '2020-10-19 22:32:33', '2025-12-17 19:47:53', '54k7DM54', '3222828'), + (539, 379, 'attending', '2020-10-03 22:28:57', '2025-12-17 19:47:52', '54k7DM54', '3226266'), + (539, 382, 'not_attending', '2020-10-03 22:29:13', '2025-12-17 19:47:52', '54k7DM54', '3226873'), + (539, 385, 'attending', '2020-10-03 22:28:55', '2025-12-17 19:47:52', '54k7DM54', '3228698'), + (539, 386, 'attending', '2020-10-10 22:32:10', '2025-12-17 19:47:52', '54k7DM54', '3228699'), + (539, 387, 'attending', '2020-10-17 23:02:50', '2025-12-17 19:47:52', '54k7DM54', '3228700'), + (539, 388, 'maybe', '2020-10-03 22:29:40', '2025-12-17 19:47:52', '54k7DM54', '3228701'), + (539, 390, 'not_attending', '2020-10-03 22:28:58', '2025-12-17 19:47:52', '54k7DM54', '3231510'), + (539, 392, 'not_attending', '2020-10-19 22:32:29', '2025-12-17 19:47:53', '54k7DM54', '3236447'), + (539, 394, 'not_attending', '2020-12-06 21:30:28', '2025-12-17 19:47:48', '54k7DM54', '3236449'), + (539, 398, 'not_attending', '2020-12-06 21:30:37', '2025-12-17 19:47:49', '54k7DM54', '3236453'), + (539, 399, 'not_attending', '2020-10-19 22:32:55', '2025-12-17 19:47:54', '54k7DM54', '3236454'), + (539, 400, 'not_attending', '2020-12-06 21:30:42', '2025-12-17 19:47:50', '54k7DM54', '3236455'), + (539, 403, 'not_attending', '2020-12-06 21:31:07', '2025-12-17 19:47:51', '54k7DM54', '3236458'), + (539, 404, 'not_attending', '2020-12-06 21:31:11', '2025-12-17 19:47:51', '54k7DM54', '3236460'), + (539, 405, 'not_attending', '2021-07-22 18:36:03', '2025-12-17 19:47:40', '54k7DM54', '3236462'), + (539, 406, 'not_attending', '2020-12-06 21:31:17', '2025-12-17 19:47:44', '54k7DM54', '3236464'), + (539, 408, 'not_attending', '2020-12-06 21:31:03', '2025-12-17 19:47:50', '54k7DM54', '3236466'), + (539, 409, 'not_attending', '2020-11-11 04:10:36', '2025-12-17 19:47:54', '54k7DM54', '3236467'), + (539, 410, 'not_attending', '2020-10-19 22:33:05', '2025-12-17 19:47:54', '54k7DM54', '3236469'), + (539, 413, 'not_attending', '2020-10-17 17:44:36', '2025-12-17 19:47:52', '54k7DM54', '3236670'), + (539, 414, 'not_attending', '2020-10-17 17:44:32', '2025-12-17 19:47:52', '54k7DM54', '3237277'), + (539, 419, 'not_attending', '2020-10-13 21:34:37', '2025-12-17 19:47:52', '54k7DM54', '3242234'), + (539, 421, 'not_attending', '2020-10-17 17:44:38', '2025-12-17 19:47:52', '54k7DM54', '3245294'), + (539, 422, 'not_attending', '2020-10-19 22:32:30', '2025-12-17 19:47:53', '54k7DM54', '3245295'), + (539, 423, 'not_attending', '2020-10-19 22:32:45', '2025-12-17 19:47:53', '54k7DM54', '3245296'), + (539, 424, 'not_attending', '2020-10-13 21:34:13', '2025-12-17 19:47:52', '54k7DM54', '3245751'), + (539, 426, 'not_attending', '2020-10-14 20:45:51', '2025-12-17 19:47:52', '54k7DM54', '3250232'), + (539, 427, 'attending', '2020-11-01 22:52:25', '2025-12-17 19:47:53', '54k7DM54', '3250233'), + (539, 428, 'not_attending', '2020-10-19 22:32:21', '2025-12-17 19:47:53', '54k7DM54', '3250332'), + (539, 429, 'maybe', '2020-11-11 04:10:33', '2025-12-17 19:47:54', '54k7DM54', '3250523'), + (539, 430, 'not_attending', '2020-10-17 17:44:34', '2025-12-17 19:47:52', '54k7DM54', '3253094'), + (539, 431, 'not_attending', '2020-10-19 22:32:23', '2025-12-17 19:47:53', '54k7DM54', '3253225'), + (539, 432, 'not_attending', '2020-10-19 22:32:42', '2025-12-17 19:47:53', '54k7DM54', '3254416'), + (539, 433, 'not_attending', '2020-10-19 22:32:47', '2025-12-17 19:47:53', '54k7DM54', '3254417'), + (539, 434, 'not_attending', '2020-10-19 22:32:53', '2025-12-17 19:47:53', '54k7DM54', '3254418'), + (539, 435, 'attending', '2020-10-17 20:55:37', '2025-12-17 19:47:52', '54k7DM54', '3254790'), + (539, 436, 'not_attending', '2020-10-19 22:32:16', '2025-12-17 19:47:52', '54k7DM54', '3256119'), + (539, 437, 'not_attending', '2020-10-19 22:32:27', '2025-12-17 19:47:53', '54k7DM54', '3256160'), + (539, 438, 'attending', '2020-11-01 03:17:31', '2025-12-17 19:47:53', '54k7DM54', '3256163'), + (539, 439, 'not_attending', '2020-10-19 22:32:26', '2025-12-17 19:47:53', '54k7DM54', '3256164'), + (539, 440, 'attending', '2020-11-08 00:52:55', '2025-12-17 19:47:53', '54k7DM54', '3256168'), + (539, 441, 'maybe', '2020-10-19 22:32:58', '2025-12-17 19:47:54', '54k7DM54', '3256169'), + (539, 442, 'not_attending', '2020-10-20 23:20:15', '2025-12-17 19:47:52', '54k7DM54', '3260345'), + (539, 443, 'not_attending', '2020-10-23 23:02:54', '2025-12-17 19:47:53', '54k7DM54', '3263578'), + (539, 444, 'not_attending', '2020-10-30 01:25:31', '2025-12-17 19:47:53', '54k7DM54', '3263745'), + (539, 445, 'not_attending', '2020-11-01 04:22:56', '2025-12-17 19:47:54', '54k7DM54', '3266138'), + (539, 449, 'not_attending', '2020-11-01 04:23:04', '2025-12-17 19:47:53', '54k7DM54', '3272055'), + (539, 450, 'not_attending', '2020-11-01 03:17:28', '2025-12-17 19:47:53', '54k7DM54', '3272102'), + (539, 451, 'not_attending', '2020-11-03 03:08:36', '2025-12-17 19:47:53', '54k7DM54', '3272186'), + (539, 452, 'not_attending', '2020-11-08 19:30:29', '2025-12-17 19:47:54', '54k7DM54', '3272981'), + (539, 453, 'not_attending', '2020-11-08 00:53:07', '2025-12-17 19:47:54', '54k7DM54', '3274032'), + (539, 454, 'not_attending', '2020-11-08 00:53:13', '2025-12-17 19:47:54', '54k7DM54', '3275665'), + (539, 456, 'not_attending', '2020-11-08 00:52:51', '2025-12-17 19:47:54', '54k7DM54', '3276428'), + (539, 457, 'not_attending', '2020-11-08 00:53:03', '2025-12-17 19:47:53', '54k7DM54', '3279087'), + (539, 458, 'not_attending', '2020-11-08 00:53:06', '2025-12-17 19:47:53', '54k7DM54', '3279233'), + (539, 459, 'not_attending', '2020-11-08 19:30:16', '2025-12-17 19:47:54', '54k7DM54', '3281467'), + (539, 460, 'not_attending', '2020-11-08 19:30:21', '2025-12-17 19:47:54', '54k7DM54', '3281468'), + (539, 461, 'not_attending', '2020-11-08 19:29:58', '2025-12-17 19:47:53', '54k7DM54', '3281469'), + (539, 462, 'not_attending', '2020-11-08 19:30:02', '2025-12-17 19:47:54', '54k7DM54', '3281470'), + (539, 463, 'not_attending', '2020-11-08 19:30:13', '2025-12-17 19:47:54', '54k7DM54', '3281553'), + (539, 464, 'not_attending', '2020-11-08 19:30:23', '2025-12-17 19:47:54', '54k7DM54', '3281554'), + (539, 465, 'not_attending', '2020-11-08 19:30:27', '2025-12-17 19:47:54', '54k7DM54', '3281555'), + (539, 466, 'not_attending', '2020-11-08 19:30:19', '2025-12-17 19:47:54', '54k7DM54', '3281829'), + (539, 467, 'not_attending', '2020-11-11 04:10:06', '2025-12-17 19:47:54', '54k7DM54', '3282756'), + (539, 468, 'maybe', '2020-11-11 04:10:14', '2025-12-17 19:47:54', '54k7DM54', '3285413'), + (539, 469, 'attending', '2020-11-29 00:39:18', '2025-12-17 19:47:54', '54k7DM54', '3285414'), + (539, 470, 'not_attending', '2020-11-11 04:09:59', '2025-12-17 19:47:54', '54k7DM54', '3285443'), + (539, 471, 'not_attending', '2020-11-11 04:10:09', '2025-12-17 19:47:54', '54k7DM54', '3285445'), + (539, 472, 'not_attending', '2020-11-13 02:01:03', '2025-12-17 19:47:54', '54k7DM54', '3286541'), + (539, 473, 'not_attending', '2020-11-13 02:01:09', '2025-12-17 19:47:54', '54k7DM54', '3286569'), + (539, 474, 'not_attending', '2020-11-13 02:00:56', '2025-12-17 19:47:54', '54k7DM54', '3286570'), + (539, 475, 'not_attending', '2020-11-12 03:29:09', '2025-12-17 19:47:54', '54k7DM54', '3286760'), + (539, 476, 'not_attending', '2020-11-13 02:01:12', '2025-12-17 19:47:54', '54k7DM54', '3286982'), + (539, 477, 'not_attending', '2020-12-02 01:45:22', '2025-12-17 19:47:54', '54k7DM54', '3289559'), + (539, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '54k7DM54', '3297764'), + (539, 488, 'not_attending', '2020-12-02 01:45:19', '2025-12-17 19:47:54', '54k7DM54', '3312757'), + (539, 490, 'not_attending', '2020-12-02 01:45:32', '2025-12-17 19:47:54', '54k7DM54', '3313532'), + (539, 491, 'not_attending', '2020-12-06 21:29:36', '2025-12-17 19:47:55', '54k7DM54', '3313533'), + (539, 492, 'not_attending', '2020-12-02 01:45:21', '2025-12-17 19:47:54', '54k7DM54', '3313731'), + (539, 493, 'maybe', '2020-12-02 01:45:24', '2025-12-17 19:47:54', '54k7DM54', '3313856'), + (539, 495, 'not_attending', '2020-12-02 01:45:29', '2025-12-17 19:47:54', '54k7DM54', '3314009'), + (539, 496, 'not_attending', '2020-12-06 21:29:33', '2025-12-17 19:47:54', '54k7DM54', '3314269'), + (539, 497, 'not_attending', '2020-12-06 21:30:06', '2025-12-17 19:47:55', '54k7DM54', '3314270'), + (539, 498, 'not_attending', '2020-12-02 01:45:30', '2025-12-17 19:47:54', '54k7DM54', '3314302'), + (539, 499, 'not_attending', '2020-12-03 01:34:13', '2025-12-17 19:47:55', '54k7DM54', '3314909'), + (539, 500, 'not_attending', '2020-12-06 21:30:12', '2025-12-17 19:47:55', '54k7DM54', '3314964'), + (539, 501, 'not_attending', '2020-12-06 21:29:30', '2025-12-17 19:47:54', '54k7DM54', '3317834'), + (539, 502, 'maybe', '2020-12-06 21:29:47', '2025-12-17 19:47:55', '54k7DM54', '3323365'), + (539, 503, 'not_attending', '2020-12-06 21:29:56', '2025-12-17 19:47:55', '54k7DM54', '3323366'), + (539, 504, 'not_attending', '2020-12-18 01:15:21', '2025-12-17 19:47:55', '54k7DM54', '3323368'), + (539, 505, 'not_attending', '2020-12-06 21:30:16', '2025-12-17 19:47:55', '54k7DM54', '3323369'), + (539, 506, 'not_attending', '2020-12-06 21:29:50', '2025-12-17 19:47:55', '54k7DM54', '3323375'), + (539, 507, 'not_attending', '2020-12-18 01:15:33', '2025-12-17 19:47:48', '54k7DM54', '3324148'), + (539, 508, 'not_attending', '2020-12-18 01:16:05', '2025-12-17 19:47:48', '54k7DM54', '3324231'), + (539, 509, 'not_attending', '2020-12-18 01:16:08', '2025-12-17 19:47:49', '54k7DM54', '3324232'), + (539, 510, 'not_attending', '2020-12-18 01:16:09', '2025-12-17 19:47:49', '54k7DM54', '3324233'), + (539, 513, 'not_attending', '2020-12-19 04:19:18', '2025-12-17 19:47:55', '54k7DM54', '3329383'), + (539, 516, 'attending', '2020-12-18 01:15:47', '2025-12-17 19:47:48', '54k7DM54', '3334530'), + (539, 517, 'not_attending', '2020-12-18 01:16:02', '2025-12-17 19:47:48', '54k7DM54', '3337137'), + (539, 518, 'not_attending', '2020-12-18 01:15:58', '2025-12-17 19:47:48', '54k7DM54', '3337138'), + (539, 519, 'not_attending', '2020-12-18 01:15:31', '2025-12-17 19:47:55', '54k7DM54', '3337448'), + (539, 520, 'not_attending', '2020-12-18 01:15:30', '2025-12-17 19:47:55', '54k7DM54', '3337453'), + (539, 521, 'not_attending', '2020-12-18 01:15:55', '2025-12-17 19:47:48', '54k7DM54', '3337454'), + (539, 522, 'not_attending', '2020-12-18 01:15:23', '2025-12-17 19:47:55', '54k7DM54', '3342836'), + (539, 523, 'not_attending', '2020-12-18 01:15:38', '2025-12-17 19:47:48', '54k7DM54', '3342960'), + (539, 524, 'not_attending', '2020-12-20 01:13:53', '2025-12-17 19:47:55', '54k7DM54', '3350120'), + (539, 526, 'attending', '2021-01-03 00:17:04', '2025-12-17 19:47:48', '54k7DM54', '3351539'), + (539, 528, 'attending', '2021-01-03 22:03:01', '2025-12-17 19:47:48', '54k7DM54', '3363022'), + (539, 531, 'not_attending', '2021-01-02 05:36:53', '2025-12-17 19:47:48', '54k7DM54', '3378210'), + (539, 536, 'attending', '2021-01-10 00:05:03', '2025-12-17 19:47:48', '54k7DM54', '3386848'), + (539, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '54k7DM54', '3389527'), + (539, 543, 'not_attending', '2021-01-12 04:32:09', '2025-12-17 19:47:48', '54k7DM54', '3396499'), + (539, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '54k7DM54', '3403650'), + (539, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '54k7DM54', '3406988'), + (539, 553, 'not_attending', '2021-01-13 04:39:04', '2025-12-17 19:47:48', '54k7DM54', '3407248'), + (539, 555, 'attending', '2021-01-24 01:10:06', '2025-12-17 19:47:49', '54k7DM54', '3416576'), + (539, 558, 'not_attending', '2021-01-19 18:29:34', '2025-12-17 19:47:49', '54k7DM54', '3418925'), + (539, 567, 'attending', '2021-01-24 05:31:31', '2025-12-17 19:47:50', '54k7DM54', '3428895'), + (539, 568, 'attending', '2021-01-31 00:28:59', '2025-12-17 19:47:50', '54k7DM54', '3430267'), + (539, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', '54k7DM54', '3432673'), + (539, 600, 'not_attending', '2021-02-06 03:31:55', '2025-12-17 19:47:50', '54k7DM54', '3468125'), + (539, 602, 'attending', '2021-02-14 00:07:44', '2025-12-17 19:47:50', '54k7DM54', '3470303'), + (539, 603, 'attending', '2021-02-20 23:57:54', '2025-12-17 19:47:50', '54k7DM54', '3470304'), + (539, 604, 'attending', '2021-02-28 00:39:19', '2025-12-17 19:47:50', '54k7DM54', '3470305'), + (539, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '54k7DM54', '3470991'), + (539, 621, 'attending', '2021-03-07 01:04:21', '2025-12-17 19:47:51', '54k7DM54', '3517815'), + (539, 622, 'attending', '2021-03-14 00:29:33', '2025-12-17 19:47:51', '54k7DM54', '3517816'), + (539, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '54k7DM54', '3523941'), + (539, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54k7DM54', '3533850'), + (539, 633, 'not_attending', '2021-03-24 00:04:32', '2025-12-17 19:47:44', '54k7DM54', '3534717'), + (539, 634, 'not_attending', '2021-03-24 00:04:48', '2025-12-17 19:47:44', '54k7DM54', '3534718'), + (539, 638, 'not_attending', '2021-03-02 07:29:30', '2025-12-17 19:47:44', '54k7DM54', '3536632'), + (539, 639, 'not_attending', '2021-03-02 07:29:33', '2025-12-17 19:47:51', '54k7DM54', '3536656'), + (539, 641, 'attending', '2021-04-03 22:45:24', '2025-12-17 19:47:44', '54k7DM54', '3539916'), + (539, 642, 'attending', '2021-04-10 22:58:53', '2025-12-17 19:47:44', '54k7DM54', '3539917'), + (539, 643, 'attending', '2021-04-17 22:03:20', '2025-12-17 19:47:45', '54k7DM54', '3539918'), + (539, 644, 'attending', '2021-04-24 22:41:59', '2025-12-17 19:47:45', '54k7DM54', '3539919'), + (539, 645, 'attending', '2021-05-08 22:41:05', '2025-12-17 19:47:46', '54k7DM54', '3539920'), + (539, 646, 'not_attending', '2021-05-15 04:48:20', '2025-12-17 19:47:46', '54k7DM54', '3539921'), + (539, 647, 'attending', '2021-05-22 22:02:01', '2025-12-17 19:47:46', '54k7DM54', '3539922'), + (539, 648, 'attending', '2021-05-29 21:22:11', '2025-12-17 19:47:47', '54k7DM54', '3539923'), + (539, 649, 'attending', '2021-03-20 22:50:22', '2025-12-17 19:47:51', '54k7DM54', '3539927'), + (539, 650, 'not_attending', '2021-03-24 00:04:33', '2025-12-17 19:47:44', '54k7DM54', '3539928'), + (539, 661, 'not_attending', '2021-03-24 00:04:50', '2025-12-17 19:47:44', '54k7DM54', '3547137'), + (539, 676, 'not_attending', '2021-07-22 18:36:09', '2025-12-17 19:47:40', '54k7DM54', '3547154'), + (539, 689, 'not_attending', '2021-03-24 00:04:29', '2025-12-17 19:47:44', '54k7DM54', '3555564'), + (539, 690, 'not_attending', '2021-03-24 00:04:26', '2025-12-17 19:47:44', '54k7DM54', '3559954'), + (539, 697, 'not_attending', '2021-03-24 00:04:40', '2025-12-17 19:47:44', '54k7DM54', '3567537'), + (539, 698, 'not_attending', '2021-03-24 00:04:28', '2025-12-17 19:47:44', '54k7DM54', '3571867'), + (539, 699, 'not_attending', '2021-03-24 00:04:42', '2025-12-17 19:47:44', '54k7DM54', '3572241'), + (539, 700, 'not_attending', '2021-03-24 00:04:43', '2025-12-17 19:47:44', '54k7DM54', '3575725'), + (539, 704, 'not_attending', '2021-03-24 00:04:44', '2025-12-17 19:47:44', '54k7DM54', '3581429'), + (539, 705, 'maybe', '2021-03-24 00:04:38', '2025-12-17 19:47:44', '54k7DM54', '3581895'), + (539, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54k7DM54', '3582734'), + (539, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '54k7DM54', '3583262'), + (539, 708, 'not_attending', '2021-03-24 00:04:30', '2025-12-17 19:47:44', '54k7DM54', '3587850'), + (539, 709, 'not_attending', '2021-03-24 00:05:21', '2025-12-17 19:47:44', '54k7DM54', '3587852'), + (539, 711, 'not_attending', '2021-03-24 00:04:46', '2025-12-17 19:47:44', '54k7DM54', '3588075'), + (539, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '54k7DM54', '3619523'), + (539, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '54k7DM54', '3661369'), + (539, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54k7DM54', '3674262'), + (539, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54k7DM54', '3677402'), + (539, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54k7DM54', '3730212'), + (539, 777, 'not_attending', '2021-05-01 21:10:51', '2025-12-17 19:47:46', '54k7DM54', '3746248'), + (539, 790, 'attending', '2021-05-06 22:51:20', '2025-12-17 19:47:46', '54k7DM54', '3789923'), + (539, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '54k7DM54', '3793156'), + (539, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '54k7DM54', '3974109'), + (539, 827, 'not_attending', '2021-06-05 19:51:55', '2025-12-17 19:47:47', '54k7DM54', '3975311'), + (539, 828, 'attending', '2021-06-12 22:47:43', '2025-12-17 19:47:47', '54k7DM54', '3975312'), + (539, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54k7DM54', '3994992'), + (539, 844, 'not_attending', '2021-06-10 14:04:45', '2025-12-17 19:47:38', '54k7DM54', '4014338'), + (539, 863, 'not_attending', '2021-10-13 02:58:14', '2025-12-17 19:47:35', '54k7DM54', '4015997'), + (539, 864, 'not_attending', '2021-10-13 02:58:55', '2025-12-17 19:47:37', '54k7DM54', '4015998'), + (539, 867, 'attending', '2021-06-26 22:20:46', '2025-12-17 19:47:38', '54k7DM54', '4021848'), + (539, 869, 'not_attending', '2021-06-16 04:02:27', '2025-12-17 19:47:38', '54k7DM54', '4136744'), + (539, 870, 'not_attending', '2021-07-03 04:16:14', '2025-12-17 19:47:39', '54k7DM54', '4136937'), + (539, 871, 'attending', '2021-07-10 22:36:33', '2025-12-17 19:47:39', '54k7DM54', '4136938'), + (539, 872, 'not_attending', '2021-06-23 23:21:24', '2025-12-17 19:47:40', '54k7DM54', '4136947'), + (539, 880, 'attending', '2021-06-18 07:07:00', '2025-12-17 19:47:48', '54k7DM54', '4205383'), + (539, 884, 'maybe', '2021-07-17 08:01:31', '2025-12-17 19:47:42', '54k7DM54', '4210314'), + (539, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54k7DM54', '4225444'), + (539, 899, 'not_attending', '2021-07-03 04:16:36', '2025-12-17 19:47:39', '54k7DM54', '4239259'), + (539, 900, 'attending', '2021-07-24 20:48:04', '2025-12-17 19:47:40', '54k7DM54', '4240316'), + (539, 901, 'attending', '2021-07-31 22:22:26', '2025-12-17 19:47:40', '54k7DM54', '4240317'), + (539, 902, 'attending', '2021-08-07 22:17:24', '2025-12-17 19:47:41', '54k7DM54', '4240318'), + (539, 903, 'attending', '2021-08-14 22:28:01', '2025-12-17 19:47:42', '54k7DM54', '4240320'), + (539, 905, 'not_attending', '2021-07-07 23:32:48', '2025-12-17 19:47:39', '54k7DM54', '4250163'), + (539, 916, 'not_attending', '2021-07-22 18:36:02', '2025-12-17 19:47:40', '54k7DM54', '4273772'), + (539, 919, 'not_attending', '2021-07-17 22:06:34', '2025-12-17 19:47:39', '54k7DM54', '4275957'), + (539, 920, 'not_attending', '2021-07-25 21:43:32', '2025-12-17 19:47:40', '54k7DM54', '4277819'), + (539, 922, 'not_attending', '2021-07-22 18:36:06', '2025-12-17 19:47:40', '54k7DM54', '4280811'), + (539, 923, 'not_attending', '2021-07-22 18:36:05', '2025-12-17 19:47:40', '54k7DM54', '4292773'), + (539, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54k7DM54', '4301723'), + (539, 934, 'not_attending', '2021-08-03 06:09:15', '2025-12-17 19:47:41', '54k7DM54', '4302093'), + (539, 935, 'not_attending', '2021-08-13 04:06:31', '2025-12-17 19:47:41', '54k7DM54', '4304151'), + (539, 936, 'not_attending', '2021-07-25 21:43:39', '2025-12-17 19:47:40', '54k7DM54', '4305951'), + (539, 961, 'not_attending', '2021-08-08 16:27:05', '2025-12-17 19:47:42', '54k7DM54', '4345519'), + (539, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54k7DM54', '4356801'), + (539, 972, 'not_attending', '2021-08-13 23:31:17', '2025-12-17 19:47:42', '54k7DM54', '4358025'), + (539, 973, 'maybe', '2021-08-18 12:14:29', '2025-12-17 19:47:42', '54k7DM54', '4366186'), + (539, 974, 'not_attending', '2021-08-18 12:14:24', '2025-12-17 19:47:42', '54k7DM54', '4366187'), + (539, 988, 'not_attending', '2021-08-27 22:13:31', '2025-12-17 19:47:42', '54k7DM54', '4402823'), + (539, 990, 'attending', '2021-09-04 21:56:07', '2025-12-17 19:47:43', '54k7DM54', '4420735'), + (539, 991, 'attending', '2021-09-11 22:50:40', '2025-12-17 19:47:43', '54k7DM54', '4420738'), + (539, 992, 'attending', '2021-09-18 22:31:36', '2025-12-17 19:47:33', '54k7DM54', '4420739'), + (539, 993, 'attending', '2021-09-25 22:04:56', '2025-12-17 19:47:34', '54k7DM54', '4420741'), + (539, 994, 'not_attending', '2021-10-02 02:00:11', '2025-12-17 19:47:34', '54k7DM54', '4420742'), + (539, 995, 'attending', '2021-10-09 21:59:04', '2025-12-17 19:47:34', '54k7DM54', '4420744'), + (539, 996, 'attending', '2021-10-16 22:16:05', '2025-12-17 19:47:35', '54k7DM54', '4420747'), + (539, 997, 'not_attending', '2021-10-22 02:19:18', '2025-12-17 19:47:35', '54k7DM54', '4420748'), + (539, 998, 'attending', '2021-10-30 21:41:34', '2025-12-17 19:47:36', '54k7DM54', '4420749'), + (539, 1008, 'not_attending', '2021-10-13 02:58:25', '2025-12-17 19:47:35', '54k7DM54', '4438810'), + (539, 1010, 'not_attending', '2021-10-13 02:58:45', '2025-12-17 19:47:36', '54k7DM54', '4438812'), + (539, 1011, 'not_attending', '2021-10-13 02:58:39', '2025-12-17 19:47:36', '54k7DM54', '4438814'), + (539, 1012, 'not_attending', '2021-10-13 02:58:49', '2025-12-17 19:47:36', '54k7DM54', '4438816'), + (539, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '54k7DM54', '4461883'), + (539, 1044, 'not_attending', '2021-10-28 21:42:38', '2025-12-17 19:47:36', '54k7DM54', '4496609'), + (539, 1045, 'not_attending', '2021-10-28 21:42:16', '2025-12-17 19:47:36', '54k7DM54', '4496610'), + (539, 1046, 'not_attending', '2021-10-16 22:16:13', '2025-12-17 19:47:35', '54k7DM54', '4496611'), + (539, 1048, 'not_attending', '2021-10-28 21:42:42', '2025-12-17 19:47:36', '54k7DM54', '4496613'), + (539, 1067, 'not_attending', '2021-09-24 15:46:57', '2025-12-17 19:47:34', '54k7DM54', '4508342'), + (539, 1077, 'not_attending', '2021-10-13 02:58:03', '2025-12-17 19:47:34', '54k7DM54', '4540903'), + (539, 1079, 'not_attending', '2021-10-13 02:58:26', '2025-12-17 19:47:35', '54k7DM54', '4563823'), + (539, 1081, 'not_attending', '2021-10-13 02:57:59', '2025-12-17 19:47:34', '54k7DM54', '4564602'), + (539, 1082, 'not_attending', '2021-10-13 02:58:09', '2025-12-17 19:47:35', '54k7DM54', '4566762'), + (539, 1083, 'not_attending', '2021-10-13 02:58:05', '2025-12-17 19:47:34', '54k7DM54', '4566768'), + (539, 1084, 'not_attending', '2021-10-13 02:58:16', '2025-12-17 19:47:35', '54k7DM54', '4566769'), + (539, 1086, 'not_attending', '2021-10-13 02:57:44', '2025-12-17 19:47:35', '54k7DM54', '4568602'), + (539, 1087, 'not_attending', '2021-10-16 22:16:11', '2025-12-17 19:47:35', '54k7DM54', '4572153'), + (539, 1093, 'not_attending', '2021-10-23 20:57:27', '2025-12-17 19:47:35', '54k7DM54', '4585962'), + (539, 1094, 'not_attending', '2021-10-28 21:42:22', '2025-12-17 19:47:36', '54k7DM54', '4587337'), + (539, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '54k7DM54', '4596356'), + (539, 1096, 'not_attending', '2021-10-28 21:42:12', '2025-12-17 19:47:36', '54k7DM54', '4596453'), + (539, 1097, 'not_attending', '2021-10-28 21:42:25', '2025-12-17 19:47:36', '54k7DM54', '4598860'), + (539, 1098, 'not_attending', '2021-10-28 21:42:40', '2025-12-17 19:47:36', '54k7DM54', '4598861'), + (539, 1099, 'not_attending', '2021-11-06 21:08:59', '2025-12-17 19:47:36', '54k7DM54', '4602797'), + (539, 1103, 'not_attending', '2021-11-13 23:17:29', '2025-12-17 19:47:36', '54k7DM54', '4616350'), + (539, 1104, 'not_attending', '2021-11-13 23:17:34', '2025-12-17 19:47:36', '54k7DM54', '4618310'), + (539, 1107, 'not_attending', '2021-11-13 23:17:43', '2025-12-17 19:47:37', '54k7DM54', '4620697'), + (539, 1108, 'not_attending', '2021-11-13 23:17:52', '2025-12-17 19:47:37', '54k7DM54', '4632276'), + (539, 1114, 'not_attending', '2021-11-13 23:17:07', '2025-12-17 19:47:36', '54k7DM54', '4637896'), + (539, 1115, 'not_attending', '2021-11-13 23:17:47', '2025-12-17 19:47:37', '54k7DM54', '4638673'), + (539, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '54k7DM54', '4642994'), + (539, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '54k7DM54', '4642995'), + (539, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '54k7DM54', '4642996'), + (539, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '54k7DM54', '4642997'), + (539, 1126, 'not_attending', '2021-12-11 23:56:25', '2025-12-17 19:47:38', '54k7DM54', '4645687'), + (539, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '54k7DM54', '4645698'), + (539, 1128, 'attending', '2021-11-20 23:01:22', '2025-12-17 19:47:37', '54k7DM54', '4645704'), + (539, 1129, 'attending', '2021-11-28 00:01:30', '2025-12-17 19:47:37', '54k7DM54', '4645705'), + (539, 1130, 'not_attending', '2021-12-05 00:02:33', '2025-12-17 19:47:37', '54k7DM54', '4658824'), + (539, 1131, 'not_attending', '2021-12-18 22:55:11', '2025-12-17 19:47:31', '54k7DM54', '4658825'), + (539, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '54k7DM54', '4668385'), + (539, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '54k7DM54', '4694407'), + (539, 1173, 'not_attending', '2022-01-09 00:40:29', '2025-12-17 19:47:31', '54k7DM54', '4736495'), + (539, 1174, 'attending', '2022-01-13 00:40:46', '2025-12-17 19:47:31', '54k7DM54', '4736496'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (539, 1175, 'attending', '2022-01-22 23:22:17', '2025-12-17 19:47:32', '54k7DM54', '4736497'), + (539, 1176, 'attending', '2022-02-06 00:04:12', '2025-12-17 19:47:32', '54k7DM54', '4736498'), + (539, 1177, 'attending', '2022-02-12 23:06:16', '2025-12-17 19:47:32', '54k7DM54', '4736499'), + (539, 1178, 'attending', '2022-01-29 22:29:30', '2025-12-17 19:47:32', '54k7DM54', '4736500'), + (539, 1179, 'attending', '2022-02-20 00:01:38', '2025-12-17 19:47:32', '54k7DM54', '4736501'), + (539, 1180, 'not_attending', '2022-02-27 00:06:18', '2025-12-17 19:47:33', '54k7DM54', '4736502'), + (539, 1181, 'attending', '2022-03-05 22:00:18', '2025-12-17 19:47:33', '54k7DM54', '4736503'), + (539, 1182, 'attending', '2022-03-12 23:50:44', '2025-12-17 19:47:33', '54k7DM54', '4736504'), + (539, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '54k7DM54', '4746789'), + (539, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '54k7DM54', '4753929'), + (539, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '54k7DM54', '5038850'), + (539, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '54k7DM54', '5045826'), + (539, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '54k7DM54', '5132533'), + (539, 1272, 'attending', '2022-03-19 22:19:55', '2025-12-17 19:47:25', '54k7DM54', '5186582'), + (539, 1273, 'attending', '2022-03-26 21:52:47', '2025-12-17 19:47:25', '54k7DM54', '5186583'), + (539, 1274, 'attending', '2022-04-02 22:06:14', '2025-12-17 19:47:26', '54k7DM54', '5186585'), + (539, 1281, 'not_attending', '2022-04-09 20:31:04', '2025-12-17 19:47:27', '54k7DM54', '5190437'), + (539, 1284, 'not_attending', '2022-04-09 20:31:10', '2025-12-17 19:47:27', '54k7DM54', '5195095'), + (539, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '54k7DM54', '5215989'), + (539, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '54k7DM54', '5223686'), + (539, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '54k7DM54', '5227432'), + (539, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', '54k7DM54', '5231461'), + (539, 1346, 'not_attending', '2022-04-23 19:30:16', '2025-12-17 19:47:27', '54k7DM54', '5247467'), + (539, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '54k7DM54', '5260800'), + (539, 1374, 'attending', '2022-05-01 17:24:10', '2025-12-17 19:47:28', '54k7DM54', '5269930'), + (539, 1378, 'attending', '2022-05-14 03:53:22', '2025-12-17 19:47:29', '54k7DM54', '5271448'), + (539, 1379, 'attending', '2022-05-21 20:55:03', '2025-12-17 19:47:29', '54k7DM54', '5271449'), + (539, 1380, 'maybe', '2022-05-28 06:43:23', '2025-12-17 19:47:30', '54k7DM54', '5271450'), + (539, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '54k7DM54', '5276469'), + (539, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '54k7DM54', '5278159'), + (539, 1407, 'attending', '2022-06-04 08:10:53', '2025-12-17 19:47:30', '54k7DM54', '5363695'), + (539, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '54k7DM54', '5365960'), + (539, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '54k7DM54', '5368973'), + (539, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '54k7DM54', '5378247'), + (539, 1431, 'attending', '2022-06-11 21:35:03', '2025-12-17 19:47:30', '54k7DM54', '5389605'), + (539, 1442, 'attending', '2022-06-18 21:46:57', '2025-12-17 19:47:17', '54k7DM54', '5397265'), + (539, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '54k7DM54', '5403967'), + (539, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '54k7DM54', '5404786'), + (539, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '54k7DM54', '5405203'), + (539, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '54k7DM54', '5408794'), + (539, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '54k7DM54', '5411699'), + (539, 1482, 'attending', '2022-06-25 17:14:47', '2025-12-17 19:47:19', '54k7DM54', '5412550'), + (539, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '54k7DM54', '5415046'), + (539, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '54k7DM54', '5422086'), + (539, 1498, 'not_attending', '2022-07-02 20:28:58', '2025-12-17 19:47:19', '54k7DM54', '5422406'), + (539, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '54k7DM54', '5424565'), + (539, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '54k7DM54', '5426882'), + (539, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '54k7DM54', '5427083'), + (539, 1511, 'attending', '2022-07-09 21:59:17', '2025-12-17 19:47:19', '54k7DM54', '5437733'), + (539, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '54k7DM54', '5441125'), + (539, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '54k7DM54', '5441126'), + (539, 1515, 'attending', '2022-08-06 22:00:08', '2025-12-17 19:47:21', '54k7DM54', '5441128'), + (539, 1516, 'attending', '2022-08-20 22:42:30', '2025-12-17 19:47:23', '54k7DM54', '5441129'), + (539, 1517, 'attending', '2022-08-27 03:23:27', '2025-12-17 19:47:23', '54k7DM54', '5441130'), + (539, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '54k7DM54', '5441131'), + (539, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '54k7DM54', '5441132'), + (539, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '54k7DM54', '5446643'), + (539, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '54k7DM54', '5453325'), + (539, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '54k7DM54', '5454516'), + (539, 1544, 'not_attending', '2022-09-15 14:14:08', '2025-12-17 19:47:11', '54k7DM54', '5454517'), + (539, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '54k7DM54', '5454605'), + (539, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '54k7DM54', '5455037'), + (539, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '54k7DM54', '5461278'), + (539, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '54k7DM54', '5469480'), + (539, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '54k7DM54', '5471073'), + (539, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '54k7DM54', '5474663'), + (539, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '54k7DM54', '5482022'), + (539, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '54k7DM54', '5482793'), + (539, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '54k7DM54', '5488912'), + (539, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '54k7DM54', '5492192'), + (539, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '54k7DM54', '5493139'), + (539, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '54k7DM54', '5493200'), + (539, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '54k7DM54', '5502188'), + (539, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '54k7DM54', '5505059'), + (539, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '54k7DM54', '5509055'), + (539, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '54k7DM54', '5512862'), + (539, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '54k7DM54', '5513985'), + (539, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '54k7DM54', '5519981'), + (539, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '54k7DM54', '5522550'), + (539, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '54k7DM54', '5534683'), + (539, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '54k7DM54', '5537735'), + (539, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '54k7DM54', '5540859'), + (539, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '54k7DM54', '5546619'), + (539, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '54k7DM54', '5555245'), + (539, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '54k7DM54', '5557747'), + (539, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '54k7DM54', '5560255'), + (539, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '54k7DM54', '5562906'), + (539, 1667, 'attending', '2022-09-24 18:45:47', '2025-12-17 19:47:11', '54k7DM54', '5563221'), + (539, 1668, 'not_attending', '2022-10-01 22:11:18', '2025-12-17 19:47:12', '54k7DM54', '5563222'), + (539, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '54k7DM54', '5600604'), + (539, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '54k7DM54', '5605544'), + (539, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '54k7DM54', '5606737'), + (539, 1719, 'not_attending', '2022-10-07 15:01:19', '2025-12-17 19:47:12', '54k7DM54', '5630958'), + (539, 1720, 'attending', '2022-10-15 17:44:31', '2025-12-17 19:47:12', '54k7DM54', '5630959'), + (539, 1721, 'attending', '2022-10-22 02:37:28', '2025-12-17 19:47:13', '54k7DM54', '5630960'), + (539, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '54k7DM54', '5630961'), + (539, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '54k7DM54', '5630962'), + (539, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '54k7DM54', '5630966'), + (539, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '54k7DM54', '5630967'), + (539, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '54k7DM54', '5630968'), + (539, 1727, 'attending', '2022-12-03 08:16:11', '2025-12-17 19:47:16', '54k7DM54', '5630969'), + (539, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '54k7DM54', '5635406'), + (539, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '54k7DM54', '5638765'), + (539, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '54k7DM54', '5640097'), + (539, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '54k7DM54', '5640843'), + (539, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '54k7DM54', '5641521'), + (539, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '54k7DM54', '5642818'), + (539, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '54k7DM54', '5652395'), + (539, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '54k7DM54', '5670445'), + (539, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '54k7DM54', '5671637'), + (539, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '54k7DM54', '5672329'), + (539, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '54k7DM54', '5674057'), + (539, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '54k7DM54', '5674060'), + (539, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '54k7DM54', '5677461'), + (539, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '54k7DM54', '5698046'), + (539, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '54k7DM54', '5699760'), + (539, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '54k7DM54', '5741601'), + (539, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '54k7DM54', '5763458'), + (539, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '54k7DM54', '5774172'), + (539, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '54k7DM54', '5818247'), + (539, 1834, 'not_attending', '2022-12-10 22:51:11', '2025-12-17 19:47:17', '54k7DM54', '5819470'), + (539, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '54k7DM54', '5819471'), + (539, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '54k7DM54', '5827739'), + (539, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '54k7DM54', '5844306'), + (539, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '54k7DM54', '5850159'), + (539, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '54k7DM54', '5858999'), + (539, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '54k7DM54', '5871984'), + (539, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '54k7DM54', '5876354'), + (539, 1864, 'attending', '2023-01-18 19:00:34', '2025-12-17 19:47:05', '54k7DM54', '5879675'), + (539, 1865, 'attending', '2023-01-27 04:38:39', '2025-12-17 19:47:06', '54k7DM54', '5879676'), + (539, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '54k7DM54', '5880939'), + (539, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '54k7DM54', '5880940'), + (539, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '54k7DM54', '5880942'), + (539, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '54k7DM54', '5880943'), + (539, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '54k7DM54', '5887890'), + (539, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '54k7DM54', '5888598'), + (539, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '54k7DM54', '5893260'), + (539, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '54k7DM54', '5899826'), + (539, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '54k7DM54', '5900199'), + (539, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '54k7DM54', '5900200'), + (539, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '54k7DM54', '5900202'), + (539, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '54k7DM54', '5900203'), + (539, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '54k7DM54', '5901108'), + (539, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '54k7DM54', '5901126'), + (539, 1897, 'attending', '2023-02-11 16:28:37', '2025-12-17 19:47:07', '54k7DM54', '5901128'), + (539, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '54k7DM54', '5909655'), + (539, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '54k7DM54', '5910522'), + (539, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '54k7DM54', '5910526'), + (539, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '54k7DM54', '5910528'), + (539, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '54k7DM54', '5916219'), + (539, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '54k7DM54', '5936234'), + (539, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '54k7DM54', '5958351'), + (539, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '54k7DM54', '5959751'), + (539, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '54k7DM54', '5959755'), + (539, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '54k7DM54', '5960055'), + (539, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '54k7DM54', '5961684'), + (539, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '54k7DM54', '5962132'), + (539, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '54k7DM54', '5962133'), + (539, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '54k7DM54', '5962134'), + (539, 1947, 'not_attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', '54k7DM54', '5962233'), + (539, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '54k7DM54', '5962317'), + (539, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '54k7DM54', '5962318'), + (539, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '54k7DM54', '5965933'), + (539, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '54k7DM54', '5967014'), + (539, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '54k7DM54', '5972763'), + (539, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '54k7DM54', '5972815'), + (539, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '54k7DM54', '5974016'), + (539, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '54k7DM54', '5981515'), + (539, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '54k7DM54', '5993516'), + (539, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '54k7DM54', '5998939'), + (539, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '54k7DM54', '6028191'), + (539, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '54k7DM54', '6040066'), + (539, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '54k7DM54', '6042717'), + (539, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '54k7DM54', '6044838'), + (539, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '54k7DM54', '6044839'), + (539, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54k7DM54', '6045684'), + (539, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '54k7DM54', '6050104'), + (539, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '54k7DM54', '6053195'), + (539, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '54k7DM54', '6053198'), + (539, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '54k7DM54', '6056085'), + (539, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '54k7DM54', '6056916'), + (539, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '54k7DM54', '6059290'), + (539, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '54k7DM54', '6060328'), + (539, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '54k7DM54', '6061037'), + (539, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '54k7DM54', '6061039'), + (539, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '54k7DM54', '6067245'), + (539, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '54k7DM54', '6068094'), + (539, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '54k7DM54', '6068252'), + (539, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '54k7DM54', '6068253'), + (539, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '54k7DM54', '6068254'), + (539, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '54k7DM54', '6068280'), + (539, 2032, 'attending', '2023-06-03 03:12:37', '2025-12-17 19:47:04', '54k7DM54', '6068281'), + (539, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '54k7DM54', '6069093'), + (539, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '54k7DM54', '6072528'), + (539, 2048, 'attending', '2023-05-10 01:45:40', '2025-12-17 19:47:03', '54k7DM54', '6076415'), + (539, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '54k7DM54', '6079840'), + (539, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '54k7DM54', '6083398'), + (539, 2052, 'maybe', '2023-05-04 19:59:54', '2025-12-17 19:47:02', '54k7DM54', '6088220'), + (539, 2053, 'attending', '2023-05-09 01:53:07', '2025-12-17 19:47:02', '54k7DM54', '6092644'), + (539, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '54k7DM54', '6093504'), + (539, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '54k7DM54', '6097414'), + (539, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '54k7DM54', '6097442'), + (539, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '54k7DM54', '6097684'), + (539, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '54k7DM54', '6098762'), + (539, 2064, 'not_attending', '2023-06-25 01:49:06', '2025-12-17 19:46:50', '54k7DM54', '6099988'), + (539, 2065, 'attending', '2023-06-17 05:05:08', '2025-12-17 19:46:49', '54k7DM54', '6101169'), + (539, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '54k7DM54', '6101361'), + (539, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '54k7DM54', '6101362'), + (539, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '54k7DM54', '6103752'), + (539, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '54k7DM54', '6107314'), + (539, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', '54k7DM54', '6119877'), + (539, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '54k7DM54', '6120034'), + (539, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '54k7DM54', '6136733'), + (539, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '54k7DM54', '6137989'), + (539, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '54k7DM54', '6150864'), + (539, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '54k7DM54', '6155491'), + (539, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '54k7DM54', '6164417'), + (539, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '54k7DM54', '6166388'), + (539, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '54k7DM54', '6176439'), + (539, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '54k7DM54', '6182410'), + (539, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '54k7DM54', '6185812'), + (539, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '54k7DM54', '6187651'), + (539, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '54k7DM54', '6187963'), + (539, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '54k7DM54', '6187964'), + (539, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '54k7DM54', '6187966'), + (539, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '54k7DM54', '6187967'), + (539, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '54k7DM54', '6187969'), + (539, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '54k7DM54', '6334878'), + (539, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '54k7DM54', '6337236'), + (539, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '54k7DM54', '6337970'), + (539, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '54k7DM54', '6338308'), + (539, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '54k7DM54', '6340845'), + (539, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '54k7DM54', '6341710'), + (539, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '54k7DM54', '6342044'), + (539, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '54k7DM54', '6342298'), + (539, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '54k7DM54', '6343294'), + (539, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '54k7DM54', '6347034'), + (539, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '54k7DM54', '6347056'), + (539, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '54k7DM54', '6353830'), + (539, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '54k7DM54', '6353831'), + (539, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '54k7DM54', '6357867'), + (539, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '54k7DM54', '6358652'), + (539, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '54k7DM54', '6361709'), + (539, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '54k7DM54', '6361710'), + (539, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '54k7DM54', '6361711'), + (539, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '54k7DM54', '6361712'), + (539, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '54k7DM54', '6361713'), + (539, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '54k7DM54', '6382573'), + (539, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '54k7DM54', '6388604'), + (539, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '54k7DM54', '6394629'), + (539, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '54k7DM54', '6394631'), + (539, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '54k7DM54', '6440863'), + (539, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '54k7DM54', '6445440'), + (539, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '54k7DM54', '6453951'), + (539, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '54k7DM54', '6461696'), + (539, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '54k7DM54', '6462129'), + (539, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '54k7DM54', '6463218'), + (539, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '54k7DM54', '6472181'), + (539, 2303, 'attending', '2023-10-28 20:31:06', '2025-12-17 19:46:47', '54k7DM54', '6482691'), + (539, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '54k7DM54', '6482693'), + (539, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '54k7DM54', '6484200'), + (539, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '54k7DM54', '6484680'), + (539, 2310, 'not_attending', '2023-11-07 02:20:59', '2025-12-17 19:46:47', '54k7DM54', '6487709'), + (539, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '54k7DM54', '6507741'), + (539, 2322, 'attending', '2023-11-18 07:28:18', '2025-12-17 19:46:48', '54k7DM54', '6514659'), + (539, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '54k7DM54', '6514660'), + (539, 2324, 'attending', '2023-12-09 19:37:40', '2025-12-17 19:46:49', '54k7DM54', '6514662'), + (539, 2325, 'attending', '2023-12-16 20:49:34', '2025-12-17 19:46:36', '54k7DM54', '6514663'), + (539, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '54k7DM54', '6519103'), + (539, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '54k7DM54', '6535681'), + (539, 2338, 'not_attending', '2023-11-25 22:05:41', '2025-12-17 19:46:48', '54k7DM54', '6538868'), + (539, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '54k7DM54', '6584747'), + (539, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '54k7DM54', '6587097'), + (539, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '54k7DM54', '6609022'), + (539, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '54k7DM54', '6632757'), + (539, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '54k7DM54', '6644187'), + (539, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '54k7DM54', '6648951'), + (539, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '54k7DM54', '6648952'), + (539, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '54k7DM54', '6655401'), + (539, 2399, 'not_attending', '2024-01-14 00:19:33', '2025-12-17 19:46:38', '54k7DM54', '6657583'), + (539, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '54k7DM54', '6661585'), + (539, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '54k7DM54', '6661588'), + (539, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '54k7DM54', '6661589'), + (539, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '54k7DM54', '6699906'), + (539, 2408, 'not_attending', '2024-01-27 05:12:14', '2025-12-17 19:46:40', '54k7DM54', '6699907'), + (539, 2409, 'attending', '2024-02-03 19:31:25', '2025-12-17 19:46:41', '54k7DM54', '6699909'), + (539, 2410, 'attending', '2024-02-10 21:53:05', '2025-12-17 19:46:41', '54k7DM54', '6699911'), + (539, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '54k7DM54', '6699913'), + (539, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '54k7DM54', '6701109'), + (539, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '54k7DM54', '6705219'), + (539, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '54k7DM54', '6710153'), + (539, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '54k7DM54', '6711552'), + (539, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '54k7DM54', '6711553'), + (539, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '54k7DM54', '6722688'), + (539, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '54k7DM54', '6730620'), + (539, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '54k7DM54', '6730642'), + (539, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '54k7DM54', '6740364'), + (539, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '54k7DM54', '6743829'), + (539, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '54k7DM54', '7030380'), + (539, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '54k7DM54', '7033677'), + (539, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '54k7DM54', '7035415'), + (539, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '54k7DM54', '7044715'), + (539, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '54k7DM54', '7050318'), + (539, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '54k7DM54', '7050319'), + (539, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '54k7DM54', '7050322'), + (539, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '54k7DM54', '7057804'), + (539, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '54k7DM54', '7059866'), + (539, 2505, 'attending', '2024-03-21 19:50:38', '2025-12-17 19:46:33', '54k7DM54', '7069163'), + (539, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '54k7DM54', '7072824'), + (539, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '54k7DM54', '7074348'), + (539, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '54k7DM54', '7074364'), + (539, 2539, 'not_attending', '2024-04-05 21:29:43', '2025-12-17 19:46:33', '54k7DM54', '7085486'), + (539, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '54k7DM54', '7089267'), + (539, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '54k7DM54', '7098747'), + (539, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '54k7DM54', '7113468'), + (539, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '54k7DM54', '7114856'), + (539, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', '54k7DM54', '7114951'), + (539, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '54k7DM54', '7114955'), + (539, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '54k7DM54', '7114956'), + (539, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '54k7DM54', '7114957'), + (539, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '54k7DM54', '7153615'), + (539, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '54k7DM54', '7159484'), + (539, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '54k7DM54', '7178446'), + (539, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '54k7DM54', '7220467'), + (539, 2603, 'not_attending', '2024-05-15 23:43:13', '2025-12-17 19:46:35', '54k7DM54', '7225669'), + (539, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '54k7DM54', '7240354'), + (539, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '54k7DM54', '7251633'), + (539, 2623, 'maybe', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '54k7DM54', '7263048'), + (539, 2626, 'attending', '2024-05-18 20:40:12', '2025-12-17 19:46:35', '54k7DM54', '7264723'), + (539, 2627, 'attending', '2024-05-25 18:45:18', '2025-12-17 19:46:35', '54k7DM54', '7264724'), + (539, 2628, 'attending', '2024-06-01 20:34:04', '2025-12-17 19:46:36', '54k7DM54', '7264725'), + (539, 2629, 'attending', '2024-06-08 16:37:24', '2025-12-17 19:46:28', '54k7DM54', '7264726'), + (539, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '54k7DM54', '7302674'), + (539, 2676, 'attending', '2024-09-01 19:23:47', '2025-12-17 19:46:32', '54k7DM54', '7319482'), + (539, 2678, 'not_attending', '2024-06-15 15:15:09', '2025-12-17 19:46:28', '54k7DM54', '7319489'), + (539, 2679, 'not_attending', '2024-06-15 15:15:14', '2025-12-17 19:46:29', '54k7DM54', '7319490'), + (539, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', '54k7DM54', '7324019'), + (539, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '54k7DM54', '7324073'), + (539, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '54k7DM54', '7324074'), + (539, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '54k7DM54', '7324075'), + (539, 2691, 'attending', '2024-07-20 04:44:32', '2025-12-17 19:46:30', '54k7DM54', '7324076'), + (539, 2692, 'not_attending', '2024-07-27 22:42:59', '2025-12-17 19:46:30', '54k7DM54', '7324077'), + (539, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '54k7DM54', '7324078'), + (539, 2694, 'attending', '2024-08-10 11:36:06', '2025-12-17 19:46:31', '54k7DM54', '7324079'), + (539, 2695, 'attending', '2024-08-17 19:01:07', '2025-12-17 19:46:31', '54k7DM54', '7324080'), + (539, 2696, 'attending', '2024-08-24 20:31:48', '2025-12-17 19:46:32', '54k7DM54', '7324081'), + (539, 2697, 'not_attending', '2024-08-31 19:29:47', '2025-12-17 19:46:32', '54k7DM54', '7324082'), + (539, 2698, 'not_attending', '2024-09-07 00:35:10', '2025-12-17 19:46:24', '54k7DM54', '7324083'), + (539, 2705, 'maybe', '2024-06-29 11:47:27', '2025-12-17 19:46:29', '54k7DM54', '7324944'), + (539, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '54k7DM54', '7331457'), + (539, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '54k7DM54', '7356752'), + (539, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', '54k7DM54', '7363595'), + (539, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '54k7DM54', '7363643'), + (539, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '54k7DM54', '7368606'), + (539, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '54k7DM54', '7397462'), + (539, 2805, 'attending', '2024-08-20 22:36:11', '2025-12-17 19:46:32', '54k7DM54', '7403620'), + (539, 2808, 'attending', '2024-09-01 19:23:42', '2025-12-17 19:46:32', '54k7DM54', '7412860'), + (539, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '54k7DM54', '7424275'), + (539, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '54k7DM54', '7424276'), + (539, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '54k7DM54', '7432751'), + (539, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '54k7DM54', '7432752'), + (539, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '54k7DM54', '7432753'), + (539, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '54k7DM54', '7432754'), + (539, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '54k7DM54', '7432755'), + (539, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '54k7DM54', '7432756'), + (539, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '54k7DM54', '7432758'), + (539, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '54k7DM54', '7432759'), + (539, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '54k7DM54', '7433834'), + (539, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '54k7DM54', '7470197'), + (539, 2870, 'attending', '2024-10-05 19:41:32', '2025-12-17 19:46:26', '54k7DM54', '7475068'), + (539, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '54k7DM54', '7685613'), + (539, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '54k7DM54', '7688194'), + (539, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '54k7DM54', '7688196'), + (539, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '54k7DM54', '7688289'), + (539, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', '54k7DM54', '7692763'), + (539, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '54k7DM54', '7697552'), + (539, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '54k7DM54', '7699878'), + (539, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '54k7DM54', '7704043'), + (539, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '54k7DM54', '7712467'), + (539, 2925, 'not_attending', '2024-12-12 09:34:52', '2025-12-17 19:46:21', '54k7DM54', '7713584'), + (539, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '54k7DM54', '7713585'), + (539, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '54k7DM54', '7713586'), + (539, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', '54k7DM54', '7738518'), + (539, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '54k7DM54', '7750632'), + (539, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '54k7DM54', '7750636'), + (539, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '54k7DM54', '7796540'), + (539, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '54k7DM54', '7796541'), + (539, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '54k7DM54', '7796542'), + (539, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '54k7DM54', '7825913'), + (539, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', '54k7DM54', '7825920'), + (539, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '54k7DM54', '7826209'), + (539, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '54k7DM54', '7834742'), + (539, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '54k7DM54', '7842108'), + (539, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '54k7DM54', '7842902'), + (539, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '54k7DM54', '7842903'), + (539, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '54k7DM54', '7842904'), + (539, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '54k7DM54', '7842905'), + (539, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '54k7DM54', '7855719'), + (539, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '54k7DM54', '7860683'), + (539, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '54k7DM54', '7860684'), + (539, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '54k7DM54', '7866095'), + (539, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '54k7DM54', '7869170'), + (539, 3014, 'not_attending', '2025-04-05 03:47:56', '2025-12-17 19:46:20', '54k7DM54', '7869185'), + (539, 3015, 'not_attending', '2025-04-25 20:10:14', '2025-12-17 19:46:20', '54k7DM54', '7869186'), + (539, 3016, 'not_attending', '2025-04-16 19:28:55', '2025-12-17 19:46:20', '54k7DM54', '7869187'), + (539, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '54k7DM54', '7869188'), + (539, 3028, 'attending', '2025-04-25 20:10:20', '2025-12-17 19:46:20', '54k7DM54', '7869199'), + (539, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '54k7DM54', '7869201'), + (539, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '54k7DM54', '7877465'), + (539, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '54k7DM54', '7888250'), + (539, 3060, 'not_attending', '2025-03-27 14:16:18', '2025-12-17 19:46:19', '54k7DM54', '7892589'), + (539, 3088, 'not_attending', '2025-06-11 06:12:31', '2025-12-17 19:46:15', '54k7DM54', '7904777'), + (539, 3094, 'not_attending', '2025-05-03 05:08:15', '2025-12-17 19:46:21', '54k7DM54', '8342292'), + (539, 3095, 'not_attending', '2025-05-03 05:08:11', '2025-12-17 19:46:20', '54k7DM54', '8342293'), + (539, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '54k7DM54', '8349164'), + (539, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '54k7DM54', '8349545'), + (539, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '54k7DM54', '8353584'), + (539, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '54k7DM54', '8368028'), + (539, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '54k7DM54', '8368029'), + (539, 3133, 'attending', '2025-05-31 18:39:46', '2025-12-17 19:46:14', '54k7DM54', '8368030'), + (539, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '54k7DM54', '8388462'), + (539, 3150, 'not_attending', '2025-06-11 06:12:35', '2025-12-17 19:46:15', '54k7DM54', '8393174'), + (539, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '54k7DM54', '8400273'), + (539, 3154, 'not_attending', '2025-06-28 03:29:09', '2025-12-17 19:46:15', '54k7DM54', '8400274'), + (539, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '54k7DM54', '8400275'), + (539, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '54k7DM54', '8400276'), + (539, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '54k7DM54', '8404977'), + (539, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '54k7DM54', '8430783'), + (539, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '54k7DM54', '8430784'), + (539, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '54k7DM54', '8430799'), + (539, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '54k7DM54', '8430800'), + (539, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '54k7DM54', '8430801'), + (539, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '54k7DM54', '8438709'), + (539, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '54k7DM54', '8457738'), + (539, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '54k7DM54', '8459566'), + (539, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '54k7DM54', '8459567'), + (539, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '54k7DM54', '8461032'), + (539, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '54k7DM54', '8477877'), + (539, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '54k7DM54', '8485688'), + (539, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '54k7DM54', '8490587'), + (539, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '54k7DM54', '8493552'), + (539, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '54k7DM54', '8493553'), + (539, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '54k7DM54', '8493554'), + (539, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '54k7DM54', '8493555'), + (539, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '54k7DM54', '8493556'), + (539, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '54k7DM54', '8493557'), + (539, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '54k7DM54', '8493558'), + (539, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '54k7DM54', '8493559'), + (539, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '54k7DM54', '8493560'), + (539, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '54k7DM54', '8493561'), + (539, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '54k7DM54', '8493572'), + (539, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '54k7DM54', '8540725'), + (539, 3302, 'attending', '2025-11-13 20:22:12', '2025-12-17 19:46:14', '54k7DM54', '8550022'), + (539, 3304, 'attending', '2025-11-22 02:45:04', '2025-12-17 19:46:14', '54k7DM54', '8550024'), + (539, 3306, 'not_attending', '2025-12-13 23:49:01', '2025-12-17 19:46:11', '54k7DM54', '8550026'), + (539, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '54k7DM54', '8555421'), + (540, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'o4PyjPvd', '3149489'), + (540, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'o4PyjPvd', '3149491'), + (540, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'o4PyjPvd', '3236450'), + (540, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'o4PyjPvd', '3236452'), + (540, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'o4PyjPvd', '3539921'), + (540, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'o4PyjPvd', '3539922'), + (540, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'o4PyjPvd', '3539923'), + (540, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'o4PyjPvd', '3806392'), + (540, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'o4PyjPvd', '3963335'), + (540, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'o4PyjPvd', '3975311'), + (540, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'o4PyjPvd', '3975312'), + (540, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'o4PyjPvd', '3994992'), + (540, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'o4PyjPvd', '4014338'), + (540, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'o4PyjPvd', '4136744'), + (540, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PyjPvd', '6045684'), + (541, 1612, 'attending', '2022-10-02 11:58:25', '2025-12-17 19:47:12', '41w56QMm', '5507653'), + (541, 1653, 'attending', '2022-09-21 14:39:57', '2025-12-17 19:47:11', '41w56QMm', '5554400'), + (541, 1659, 'attending', '2022-09-23 22:56:11', '2025-12-17 19:47:11', '41w56QMm', '5557747'), + (541, 1668, 'attending', '2022-10-01 20:27:45', '2025-12-17 19:47:12', '41w56QMm', '5563222'), + (541, 1674, 'attending', '2022-10-02 11:57:28', '2025-12-17 19:47:12', '41w56QMm', '5593112'), + (541, 1676, 'attending', '2022-09-21 14:39:24', '2025-12-17 19:47:11', '41w56QMm', '5596181'), + (541, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41w56QMm', '5600604'), + (541, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41w56QMm', '5605544'), + (541, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', '41w56QMm', '5606737'), + (541, 1705, 'attending', '2022-10-02 11:59:01', '2025-12-17 19:47:12', '41w56QMm', '5612209'), + (541, 1710, 'maybe', '2022-10-02 19:57:24', '2025-12-17 19:47:12', '41w56QMm', '5621822'), + (541, 1719, 'not_attending', '2022-10-08 19:06:21', '2025-12-17 19:47:12', '41w56QMm', '5630958'), + (541, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41w56QMm', '5630960'), + (541, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41w56QMm', '5630961'), + (541, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41w56QMm', '5630962'), + (541, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41w56QMm', '5630966'), + (541, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41w56QMm', '5630967'), + (541, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41w56QMm', '5630968'), + (541, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41w56QMm', '5635406'), + (541, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41w56QMm', '5638765'), + (541, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41w56QMm', '5640097'), + (541, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '41w56QMm', '5640843'), + (541, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41w56QMm', '5641521'), + (541, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41w56QMm', '5642818'), + (541, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41w56QMm', '5652395'), + (541, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41w56QMm', '5670445'), + (541, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41w56QMm', '5671637'), + (541, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41w56QMm', '5672329'), + (541, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41w56QMm', '5674057'), + (541, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41w56QMm', '5674060'), + (541, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41w56QMm', '5677461'), + (541, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41w56QMm', '5698046'), + (541, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41w56QMm', '5699760'), + (541, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41w56QMm', '5741601'), + (541, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41w56QMm', '5763458'), + (541, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41w56QMm', '5774172'), + (541, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '41w56QMm', '5818247'), + (541, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41w56QMm', '5819471'), + (541, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41w56QMm', '5827739'), + (541, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41w56QMm', '5844306'), + (541, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41w56QMm', '5850159'), + (541, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41w56QMm', '5858999'), + (541, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41w56QMm', '5871984'), + (541, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41w56QMm', '5876354'), + (541, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41w56QMm', '5880939'), + (541, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41w56QMm', '5887890'), + (541, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41w56QMm', '5888598'), + (541, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41w56QMm', '5893260'), + (541, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41w56QMm', '6045684'), + (542, 1054, 'attending', '2022-03-19 22:34:47', '2025-12-17 19:47:25', 'dVbZqVld', '4496619'), + (542, 1177, 'attending', '2022-02-12 01:44:10', '2025-12-17 19:47:32', 'dVbZqVld', '4736499'), + (542, 1179, 'attending', '2022-02-13 06:43:20', '2025-12-17 19:47:32', 'dVbZqVld', '4736501'), + (542, 1180, 'not_attending', '2022-02-26 14:56:53', '2025-12-17 19:47:33', 'dVbZqVld', '4736502'), + (542, 1181, 'attending', '2022-03-02 21:12:12', '2025-12-17 19:47:33', 'dVbZqVld', '4736503'), + (542, 1182, 'not_attending', '2022-03-10 17:56:15', '2025-12-17 19:47:33', 'dVbZqVld', '4736504'), + (542, 1214, 'attending', '2022-02-17 22:14:55', '2025-12-17 19:47:32', 'dVbZqVld', '4780761'), + (542, 1222, 'not_attending', '2022-02-17 22:14:44', '2025-12-17 19:47:32', 'dVbZqVld', '5015628'), + (542, 1234, 'not_attending', '2022-02-16 00:48:34', '2025-12-17 19:47:32', 'dVbZqVld', '5042197'), + (542, 1236, 'not_attending', '2022-02-14 15:10:00', '2025-12-17 19:47:32', 'dVbZqVld', '5045826'), + (542, 1237, 'attending', '2022-02-19 00:16:13', '2025-12-17 19:47:32', 'dVbZqVld', '5050641'), + (542, 1243, 'attending', '2022-03-06 18:40:53', '2025-12-17 19:47:33', 'dVbZqVld', '5058336'), + (542, 1248, 'not_attending', '2022-02-25 00:45:18', '2025-12-17 19:47:33', 'dVbZqVld', '5065064'), + (542, 1250, 'not_attending', '2022-03-04 22:45:22', '2025-12-17 19:47:33', 'dVbZqVld', '5069735'), + (542, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVbZqVld', '5132533'), + (542, 1260, 'not_attending', '2022-03-01 22:32:25', '2025-12-17 19:47:33', 'dVbZqVld', '5142082'), + (542, 1262, 'not_attending', '2022-03-10 17:56:04', '2025-12-17 19:47:33', 'dVbZqVld', '5157773'), + (542, 1264, 'not_attending', '2022-03-22 22:55:17', '2025-12-17 19:47:25', 'dVbZqVld', '5160281'), + (542, 1270, 'attending', '2022-03-20 16:03:47', '2025-12-17 19:47:25', 'dVbZqVld', '5181277'), + (542, 1272, 'attending', '2022-03-19 18:11:25', '2025-12-17 19:47:25', 'dVbZqVld', '5186582'), + (542, 1273, 'attending', '2022-03-26 19:55:46', '2025-12-17 19:47:25', 'dVbZqVld', '5186583'), + (542, 1274, 'not_attending', '2022-03-29 10:32:52', '2025-12-17 19:47:26', 'dVbZqVld', '5186585'), + (542, 1276, 'attending', '2022-03-27 20:45:42', '2025-12-17 19:47:25', 'dVbZqVld', '5186820'), + (542, 1279, 'attending', '2022-03-20 16:03:43', '2025-12-17 19:47:25', 'dVbZqVld', '5187212'), + (542, 1281, 'not_attending', '2022-04-04 00:42:53', '2025-12-17 19:47:27', 'dVbZqVld', '5190437'), + (542, 1283, 'attending', '2022-03-19 18:56:26', '2025-12-17 19:47:25', 'dVbZqVld', '5193533'), + (542, 1284, 'not_attending', '2022-04-16 22:45:21', '2025-12-17 19:47:27', 'dVbZqVld', '5195095'), + (542, 1297, 'not_attending', '2022-04-01 21:45:22', '2025-12-17 19:47:26', 'dVbZqVld', '5215989'), + (542, 1301, 'maybe', '2022-03-31 14:58:10', '2025-12-17 19:47:26', 'dVbZqVld', '5218175'), + (542, 1302, 'not_attending', '2022-04-01 23:18:29', '2025-12-17 19:47:27', 'dVbZqVld', '5220867'), + (542, 1305, 'maybe', '2022-04-04 21:23:29', '2025-12-17 19:47:27', 'dVbZqVld', '5223673'), + (542, 1307, 'not_attending', '2022-04-04 21:22:47', '2025-12-17 19:47:26', 'dVbZqVld', '5223686'), + (542, 1309, 'not_attending', '2022-04-06 13:45:01', '2025-12-17 19:47:26', 'dVbZqVld', '5227432'), + (542, 1316, 'not_attending', '2022-04-14 22:24:00', '2025-12-17 19:47:27', 'dVbZqVld', '5237536'), + (542, 1319, 'not_attending', '2022-04-24 21:45:25', '2025-12-17 19:47:27', 'dVbZqVld', '5238353'), + (542, 1320, 'not_attending', '2022-04-24 21:45:32', '2025-12-17 19:47:27', 'dVbZqVld', '5238354'), + (542, 1322, 'not_attending', '2022-04-25 12:07:54', '2025-12-17 19:47:27', 'dVbZqVld', '5238356'), + (542, 1323, 'not_attending', '2022-04-25 12:07:59', '2025-12-17 19:47:27', 'dVbZqVld', '5238357'), + (542, 1325, 'not_attending', '2022-04-28 22:45:42', '2025-12-17 19:47:28', 'dVbZqVld', '5238361'), + (542, 1326, 'not_attending', '2022-04-28 22:45:46', '2025-12-17 19:47:28', 'dVbZqVld', '5238362'), + (542, 1330, 'not_attending', '2022-04-18 21:54:08', '2025-12-17 19:47:27', 'dVbZqVld', '5242155'), + (542, 1331, 'not_attending', '2022-04-21 23:45:19', '2025-12-17 19:47:27', 'dVbZqVld', '5242156'), + (542, 1332, 'not_attending', '2022-04-14 22:24:29', '2025-12-17 19:47:27', 'dVbZqVld', '5243274'), + (542, 1337, 'not_attending', '2022-04-20 21:35:35', '2025-12-17 19:47:27', 'dVbZqVld', '5245036'), + (542, 1340, 'not_attending', '2022-04-28 22:45:21', '2025-12-17 19:47:27', 'dVbZqVld', '5245754'), + (542, 1346, 'not_attending', '2022-04-22 19:35:34', '2025-12-17 19:47:27', 'dVbZqVld', '5247467'), + (542, 1362, 'not_attending', '2022-04-30 22:11:45', '2025-12-17 19:47:28', 'dVbZqVld', '5260800'), + (542, 1364, 'not_attending', '2022-05-03 14:39:00', '2025-12-17 19:47:28', 'dVbZqVld', '5261598'), + (542, 1368, 'not_attending', '2022-05-06 22:46:32', '2025-12-17 19:47:28', 'dVbZqVld', '5262783'), + (542, 1374, 'not_attending', '2022-05-07 15:34:53', '2025-12-17 19:47:28', 'dVbZqVld', '5269930'), + (542, 1376, 'not_attending', '2022-05-12 19:40:49', '2025-12-17 19:47:28', 'dVbZqVld', '5271446'), + (542, 1378, 'attending', '2022-05-13 20:58:49', '2025-12-17 19:47:28', 'dVbZqVld', '5271448'), + (542, 1379, 'attending', '2022-05-21 20:17:20', '2025-12-17 19:47:29', 'dVbZqVld', '5271449'), + (542, 1380, 'attending', '2022-05-28 18:24:47', '2025-12-17 19:47:30', 'dVbZqVld', '5271450'), + (542, 1383, 'attending', '2022-05-13 20:32:13', '2025-12-17 19:47:28', 'dVbZqVld', '5276469'), + (542, 1385, 'attending', '2022-05-11 22:20:46', '2025-12-17 19:47:28', 'dVbZqVld', '5277822'), + (542, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVbZqVld', '5278159'), + (542, 1390, 'not_attending', '2022-05-14 20:01:19', '2025-12-17 19:47:28', 'dVbZqVld', '5279509'), + (542, 1392, 'not_attending', '2022-05-09 01:51:04', '2025-12-17 19:47:28', 'dVbZqVld', '5279532'), + (542, 1394, 'not_attending', '2022-05-27 18:01:01', '2025-12-17 19:47:30', 'dVbZqVld', '5280667'), + (542, 1397, 'attending', '2022-05-21 21:51:09', '2025-12-17 19:47:29', 'dVbZqVld', '5281104'), + (542, 1401, 'not_attending', '2022-05-18 19:39:47', '2025-12-17 19:47:29', 'dVbZqVld', '5286295'), + (542, 1407, 'attending', '2022-06-04 21:42:58', '2025-12-17 19:47:30', 'dVbZqVld', '5363695'), + (542, 1408, 'not_attending', '2022-05-20 19:22:26', '2025-12-17 19:47:29', 'dVbZqVld', '5365960'), + (542, 1410, 'maybe', '2022-05-19 17:00:38', '2025-12-17 19:47:29', 'dVbZqVld', '5367530'), + (542, 1412, 'not_attending', '2022-05-19 21:32:04', '2025-12-17 19:47:29', 'dVbZqVld', '5367532'), + (542, 1415, 'not_attending', '2022-06-03 20:50:50', '2025-12-17 19:47:30', 'dVbZqVld', '5368973'), + (542, 1419, 'not_attending', '2022-06-08 21:26:21', '2025-12-17 19:47:30', 'dVbZqVld', '5373081'), + (542, 1420, 'not_attending', '2022-05-27 20:02:06', '2025-12-17 19:47:30', 'dVbZqVld', '5374882'), + (542, 1424, 'not_attending', '2022-05-26 22:10:51', '2025-12-17 19:47:30', 'dVbZqVld', '5375772'), + (542, 1427, 'not_attending', '2022-05-25 22:02:32', '2025-12-17 19:47:30', 'dVbZqVld', '5376074'), + (542, 1428, 'not_attending', '2022-06-10 20:51:28', '2025-12-17 19:47:30', 'dVbZqVld', '5378247'), + (542, 1429, 'not_attending', '2022-05-30 21:29:13', '2025-12-17 19:47:30', 'dVbZqVld', '5388761'), + (542, 1430, 'not_attending', '2022-06-09 21:05:52', '2025-12-17 19:47:30', 'dVbZqVld', '5389402'), + (542, 1431, 'attending', '2022-06-11 21:13:50', '2025-12-17 19:47:30', 'dVbZqVld', '5389605'), + (542, 1432, 'attending', '2022-06-03 15:53:18', '2025-12-17 19:47:30', 'dVbZqVld', '5391566'), + (542, 1433, 'attending', '2022-06-03 15:53:55', '2025-12-17 19:47:30', 'dVbZqVld', '5391667'), + (542, 1434, 'not_attending', '2022-06-01 21:12:24', '2025-12-17 19:47:30', 'dVbZqVld', '5393861'), + (542, 1435, 'attending', '2022-06-01 21:12:29', '2025-12-17 19:47:30', 'dVbZqVld', '5394015'), + (542, 1436, 'attending', '2022-06-02 19:09:46', '2025-12-17 19:47:30', 'dVbZqVld', '5394292'), + (542, 1438, 'attending', '2022-06-01 20:07:59', '2025-12-17 19:47:30', 'dVbZqVld', '5395032'), + (542, 1440, 'attending', '2022-06-07 13:32:34', '2025-12-17 19:47:30', 'dVbZqVld', '5396080'), + (542, 1441, 'attending', '2022-06-04 14:20:45', '2025-12-17 19:47:30', 'dVbZqVld', '5397171'), + (542, 1442, 'not_attending', '2022-06-18 20:53:11', '2025-12-17 19:47:17', 'dVbZqVld', '5397265'), + (542, 1446, 'not_attending', '2022-06-09 21:05:44', '2025-12-17 19:47:30', 'dVbZqVld', '5399721'), + (542, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dVbZqVld', '5403967'), + (542, 1454, 'attending', '2022-06-09 22:47:28', '2025-12-17 19:47:31', 'dVbZqVld', '5404771'), + (542, 1455, 'attending', '2022-06-09 22:47:22', '2025-12-17 19:47:31', 'dVbZqVld', '5404772'), + (542, 1456, 'not_attending', '2022-06-16 21:22:40', '2025-12-17 19:47:17', 'dVbZqVld', '5404779'), + (542, 1458, 'attending', '2022-06-19 19:45:48', '2025-12-17 19:47:17', 'dVbZqVld', '5404786'), + (542, 1459, 'not_attending', '2022-06-20 17:33:42', '2025-12-17 19:47:17', 'dVbZqVld', '5404793'), + (542, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVbZqVld', '5405203'), + (542, 1464, 'attending', '2022-06-10 22:38:51', '2025-12-17 19:47:30', 'dVbZqVld', '5405212'), + (542, 1469, 'attending', '2022-06-20 17:33:34', '2025-12-17 19:47:17', 'dVbZqVld', '5406838'), + (542, 1471, 'not_attending', '2022-06-21 14:46:33', '2025-12-17 19:47:17', 'dVbZqVld', '5407063'), + (542, 1473, 'not_attending', '2022-06-14 21:00:09', '2025-12-17 19:47:31', 'dVbZqVld', '5407267'), + (542, 1476, 'attending', '2022-06-19 20:07:46', '2025-12-17 19:47:17', 'dVbZqVld', '5408130'), + (542, 1478, 'not_attending', '2022-06-19 17:25:16', '2025-12-17 19:47:19', 'dVbZqVld', '5408794'), + (542, 1480, 'not_attending', '2022-06-26 22:45:31', '2025-12-17 19:47:19', 'dVbZqVld', '5411699'), + (542, 1482, 'not_attending', '2022-06-20 22:27:59', '2025-12-17 19:47:19', 'dVbZqVld', '5412550'), + (542, 1484, 'maybe', '2022-06-21 02:59:47', '2025-12-17 19:47:17', 'dVbZqVld', '5415046'), + (542, 1487, 'attending', '2022-06-27 10:44:32', '2025-12-17 19:47:19', 'dVbZqVld', '5419006'), + (542, 1490, 'not_attending', '2022-07-07 18:27:48', '2025-12-17 19:47:19', 'dVbZqVld', '5420156'), + (542, 1491, 'attending', '2022-06-26 21:20:26', '2025-12-17 19:47:19', 'dVbZqVld', '5420158'), + (542, 1495, 'not_attending', '2022-07-07 05:39:35', '2025-12-17 19:47:19', 'dVbZqVld', '5422086'), + (542, 1496, 'attending', '2022-06-26 22:45:49', '2025-12-17 19:47:19', 'dVbZqVld', '5422404'), + (542, 1497, 'not_attending', '2022-07-02 15:09:41', '2025-12-17 19:47:19', 'dVbZqVld', '5422405'), + (542, 1498, 'attending', '2022-07-02 18:44:24', '2025-12-17 19:47:19', 'dVbZqVld', '5422406'), + (542, 1501, 'attending', '2022-06-29 22:50:21', '2025-12-17 19:47:19', 'dVbZqVld', '5424546'), + (542, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVbZqVld', '5424565'), + (542, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVbZqVld', '5426882'), + (542, 1505, 'attending', '2022-07-04 22:54:06', '2025-12-17 19:47:19', 'dVbZqVld', '5427083'), + (542, 1508, 'not_attending', '2022-07-13 22:42:18', '2025-12-17 19:47:19', 'dVbZqVld', '5433453'), + (542, 1511, 'attending', '2022-07-07 05:40:00', '2025-12-17 19:47:19', 'dVbZqVld', '5437733'), + (542, 1513, 'not_attending', '2022-07-13 18:26:55', '2025-12-17 19:47:20', 'dVbZqVld', '5441125'), + (542, 1514, 'attending', '2022-07-21 11:48:41', '2025-12-17 19:47:20', 'dVbZqVld', '5441126'), + (542, 1515, 'attending', '2022-08-01 15:17:05', '2025-12-17 19:47:21', 'dVbZqVld', '5441128'), + (542, 1516, 'attending', '2022-08-19 01:58:27', '2025-12-17 19:47:23', 'dVbZqVld', '5441129'), + (542, 1517, 'attending', '2022-08-25 01:27:54', '2025-12-17 19:47:23', 'dVbZqVld', '5441130'), + (542, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVbZqVld', '5441131'), + (542, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVbZqVld', '5441132'), + (542, 1520, 'attending', '2022-07-10 03:23:53', '2025-12-17 19:47:19', 'dVbZqVld', '5441645'), + (542, 1524, 'not_attending', '2022-07-11 21:56:17', '2025-12-17 19:47:19', 'dVbZqVld', '5443300'), + (542, 1528, 'not_attending', '2022-07-14 03:36:44', '2025-12-17 19:47:20', 'dVbZqVld', '5446643'), + (542, 1529, 'attending', '2022-07-15 17:11:47', '2025-12-17 19:47:19', 'dVbZqVld', '5447079'), + (542, 1533, 'attending', '2022-07-26 14:30:22', '2025-12-17 19:47:21', 'dVbZqVld', '5448758'), + (542, 1534, 'attending', '2022-08-06 20:28:56', '2025-12-17 19:47:21', 'dVbZqVld', '5448759'), + (542, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVbZqVld', '5453325'), + (542, 1541, 'attending', '2022-07-21 11:49:02', '2025-12-17 19:47:20', 'dVbZqVld', '5453542'), + (542, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVbZqVld', '5454516'), + (542, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVbZqVld', '5454605'), + (542, 1550, 'not_attending', '2022-07-21 11:49:23', '2025-12-17 19:47:20', 'dVbZqVld', '5454803'), + (542, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVbZqVld', '5455037'), + (542, 1553, 'not_attending', '2022-07-20 10:36:43', '2025-12-17 19:47:20', 'dVbZqVld', '5455164'), + (542, 1557, 'attending', '2022-08-03 19:06:51', '2025-12-17 19:47:21', 'dVbZqVld', '5458729'), + (542, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVbZqVld', '5461278'), + (542, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVbZqVld', '5469480'), + (542, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVbZqVld', '5471073'), + (542, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dVbZqVld', '5474663'), + (542, 1568, 'not_attending', '2022-08-01 01:27:51', '2025-12-17 19:47:21', 'dVbZqVld', '5480628'), + (542, 1569, 'attending', '2022-08-01 15:09:43', '2025-12-17 19:47:21', 'dVbZqVld', '5481507'), + (542, 1570, 'attending', '2022-08-03 21:28:55', '2025-12-17 19:47:21', 'dVbZqVld', '5481830'), + (542, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVbZqVld', '5482022'), + (542, 1572, 'not_attending', '2022-08-01 19:58:47', '2025-12-17 19:47:22', 'dVbZqVld', '5482078'), + (542, 1574, 'not_attending', '2022-08-03 02:59:17', '2025-12-17 19:47:22', 'dVbZqVld', '5482153'), + (542, 1575, 'attending', '2022-08-13 03:51:37', '2025-12-17 19:47:23', 'dVbZqVld', '5482250'), + (542, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVbZqVld', '5482793'), + (542, 1579, 'not_attending', '2022-08-04 02:49:47', '2025-12-17 19:47:21', 'dVbZqVld', '5486019'), + (542, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVbZqVld', '5488912'), + (542, 1581, 'attending', '2022-08-07 02:33:28', '2025-12-17 19:47:22', 'dVbZqVld', '5490302'), + (542, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVbZqVld', '5492192'), + (542, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVbZqVld', '5493139'), + (542, 1589, 'attending', '2022-08-21 19:30:04', '2025-12-17 19:47:23', 'dVbZqVld', '5493159'), + (542, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVbZqVld', '5493200'), + (542, 1595, 'attending', '2022-08-12 20:34:42', '2025-12-17 19:47:22', 'dVbZqVld', '5495736'), + (542, 1599, 'not_attending', '2022-08-14 14:36:36', '2025-12-17 19:47:23', 'dVbZqVld', '5496568'), + (542, 1600, 'attending', '2022-08-14 14:36:43', '2025-12-17 19:47:24', 'dVbZqVld', '5496569'), + (542, 1604, 'attending', '2022-08-14 14:36:15', '2025-12-17 19:47:22', 'dVbZqVld', '5501504'), + (542, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVbZqVld', '5502188'), + (542, 1606, 'attending', '2022-08-21 21:57:16', '2025-12-17 19:47:23', 'dVbZqVld', '5504585'), + (542, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVbZqVld', '5505059'), + (542, 1611, 'attending', '2022-09-03 14:29:05', '2025-12-17 19:47:24', 'dVbZqVld', '5507652'), + (542, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVbZqVld', '5509055'), + (542, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVbZqVld', '5512862'), + (542, 1620, 'not_attending', '2022-08-23 15:26:55', '2025-12-17 19:47:23', 'dVbZqVld', '5513046'), + (542, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVbZqVld', '5513985'), + (542, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dVbZqVld', '5519981'), + (542, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVbZqVld', '5522550'), + (542, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVbZqVld', '5534683'), + (542, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVbZqVld', '5537735'), + (542, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVbZqVld', '5540859'), + (542, 1641, 'attending', '2022-09-03 14:28:52', '2025-12-17 19:47:24', 'dVbZqVld', '5544226'), + (542, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVbZqVld', '5546619'), + (542, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVbZqVld', '5555245'), + (542, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVbZqVld', '5557747'), + (542, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVbZqVld', '5560255'), + (542, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVbZqVld', '5562906'), + (542, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVbZqVld', '5600604'), + (542, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVbZqVld', '5605544'), + (542, 1698, 'not_attending', '2022-09-28 12:50:58', '2025-12-17 19:47:11', 'dVbZqVld', '5606366'), + (542, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'dVbZqVld', '5606737'), + (542, 1708, 'not_attending', '2022-10-05 12:43:26', '2025-12-17 19:47:12', 'dVbZqVld', '5617648'), + (542, 1719, 'not_attending', '2022-10-05 14:03:45', '2025-12-17 19:47:12', 'dVbZqVld', '5630958'), + (542, 1721, 'not_attending', '2022-10-17 20:00:02', '2025-12-17 19:47:13', 'dVbZqVld', '5630960'), + (542, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVbZqVld', '5630961'), + (542, 1723, 'not_attending', '2022-11-01 22:52:13', '2025-12-17 19:47:15', 'dVbZqVld', '5630962'), + (542, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVbZqVld', '5630966'), + (542, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVbZqVld', '5630967'), + (542, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVbZqVld', '5630968'), + (542, 1727, 'not_attending', '2022-11-28 14:11:42', '2025-12-17 19:47:16', 'dVbZqVld', '5630969'), + (542, 1728, 'not_attending', '2022-12-06 16:01:08', '2025-12-17 19:47:17', 'dVbZqVld', '5630970'), + (542, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVbZqVld', '5635406'), + (542, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVbZqVld', '5638765'), + (542, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVbZqVld', '5640097'), + (542, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVbZqVld', '5640843'), + (542, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVbZqVld', '5641521'), + (542, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVbZqVld', '5642818'), + (542, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVbZqVld', '5652395'), + (542, 1762, 'attending', '2022-11-28 14:11:36', '2025-12-17 19:47:16', 'dVbZqVld', '5670445'), + (542, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVbZqVld', '5671637'), + (542, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVbZqVld', '5672329'), + (542, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVbZqVld', '5674057'), + (542, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVbZqVld', '5674060'), + (542, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVbZqVld', '5677461'), + (542, 1780, 'not_attending', '2022-11-10 20:19:03', '2025-12-17 19:47:15', 'dVbZqVld', '5696082'), + (542, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVbZqVld', '5698046'), + (542, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVbZqVld', '5699760'), + (542, 1788, 'attending', '2022-11-21 21:23:37', '2025-12-17 19:47:16', 'dVbZqVld', '5727236'), + (542, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVbZqVld', '5741601'), + (542, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVbZqVld', '5763458'), + (542, 1800, 'attending', '2022-11-19 21:52:32', '2025-12-17 19:47:16', 'dVbZqVld', '5764667'), + (542, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVbZqVld', '5774172'), + (542, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVbZqVld', '5818247'), + (542, 1835, 'not_attending', '2022-12-28 17:32:40', '2025-12-17 19:47:05', 'dVbZqVld', '5819471'), + (542, 1841, 'attending', '2023-01-04 21:02:52', '2025-12-17 19:47:05', 'dVbZqVld', '5827665'), + (542, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVbZqVld', '5827739'), + (542, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVbZqVld', '5844306'), + (542, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVbZqVld', '5850159'), + (542, 1849, 'not_attending', '2023-01-04 21:02:29', '2025-12-17 19:47:05', 'dVbZqVld', '5852467'), + (542, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVbZqVld', '5858999'), + (542, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVbZqVld', '5871984'), + (542, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVbZqVld', '5876354'), + (542, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVbZqVld', '5880939'), + (542, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dVbZqVld', '5880940'), + (542, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVbZqVld', '5880942'), + (542, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVbZqVld', '5880943'), + (542, 1871, 'not_attending', '2023-01-19 14:23:49', '2025-12-17 19:47:05', 'dVbZqVld', '5883502'), + (542, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVbZqVld', '5887890'), + (542, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVbZqVld', '5888598'), + (542, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVbZqVld', '5893260'), + (542, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dVbZqVld', '5899826'), + (542, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dVbZqVld', '5900199'), + (542, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVbZqVld', '5900200'), + (542, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVbZqVld', '5900202'), + (542, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVbZqVld', '5900203'), + (542, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dVbZqVld', '5901108'), + (542, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dVbZqVld', '5901126'), + (542, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dVbZqVld', '5909655'), + (542, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dVbZqVld', '5910522'), + (542, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dVbZqVld', '5910526'), + (542, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dVbZqVld', '5910528'), + (542, 1920, 'attending', '2023-02-13 20:40:22', '2025-12-17 19:47:07', 'dVbZqVld', '5914091'), + (542, 1922, 'not_attending', '2023-02-16 15:53:22', '2025-12-17 19:47:07', 'dVbZqVld', '5916219'), + (542, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVbZqVld', '5936234'), + (542, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVbZqVld', '5958351'), + (542, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVbZqVld', '5959751'), + (542, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVbZqVld', '5959755'), + (542, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVbZqVld', '5960055'), + (542, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVbZqVld', '5961684'), + (542, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVbZqVld', '5962132'), + (542, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVbZqVld', '5962133'), + (542, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVbZqVld', '5962134'), + (542, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVbZqVld', '5962317'), + (542, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVbZqVld', '5962318'), + (542, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVbZqVld', '5965933'), + (542, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVbZqVld', '5967014'), + (542, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVbZqVld', '5972815'), + (542, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVbZqVld', '5974016'), + (542, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVbZqVld', '5981515'), + (542, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVbZqVld', '5993516'), + (542, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVbZqVld', '5998939'), + (542, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVbZqVld', '6028191'), + (542, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVbZqVld', '6040066'), + (542, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVbZqVld', '6042717'), + (542, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVbZqVld', '6044838'), + (542, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVbZqVld', '6044839'), + (542, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVbZqVld', '6045684'), + (542, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVbZqVld', '6050104'), + (542, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVbZqVld', '6053195'), + (542, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVbZqVld', '6053198'), + (542, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVbZqVld', '6056085'), + (542, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVbZqVld', '6056916'), + (542, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVbZqVld', '6059290'), + (542, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVbZqVld', '6060328'), + (542, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVbZqVld', '6061037'), + (542, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVbZqVld', '6061039'), + (542, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVbZqVld', '6067245'), + (542, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVbZqVld', '6068094'), + (542, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVbZqVld', '6068252'), + (542, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVbZqVld', '6068253'), + (542, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVbZqVld', '6068254'), + (542, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVbZqVld', '6068280'), + (542, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVbZqVld', '6069093'), + (542, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dVbZqVld', '6072528'), + (542, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVbZqVld', '6079840'), + (542, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVbZqVld', '6083398'), + (542, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVbZqVld', '6093504'), + (542, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVbZqVld', '6097414'), + (542, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVbZqVld', '6097442'), + (542, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVbZqVld', '6097684'), + (542, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVbZqVld', '6098762'), + (542, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dVbZqVld', '6101361'), + (542, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVbZqVld', '6101362'), + (542, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVbZqVld', '6103752'), + (542, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVbZqVld', '6107314'), + (542, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dVbZqVld', '6120034'), + (542, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dVbZqVld', '6136733'), + (542, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dVbZqVld', '6137989'), + (542, 2105, 'not_attending', '2023-06-19 21:33:24', '2025-12-17 19:46:50', 'dVbZqVld', '6149551'), + (542, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dVbZqVld', '6150864'), + (542, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dVbZqVld', '6155491'), + (542, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dVbZqVld', '6164417'), + (542, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dVbZqVld', '6166388'), + (542, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dVbZqVld', '6176439'), + (542, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dVbZqVld', '6182410'), + (542, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dVbZqVld', '6185812'), + (542, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dVbZqVld', '6187651'), + (542, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dVbZqVld', '6187963'), + (542, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dVbZqVld', '6187964'), + (542, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dVbZqVld', '6187966'), + (542, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dVbZqVld', '6187967'), + (542, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dVbZqVld', '6187969'), + (542, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dVbZqVld', '6334878'), + (542, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVbZqVld', '6337236'), + (542, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVbZqVld', '6337970'), + (542, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dVbZqVld', '6338308'), + (542, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVbZqVld', '6340845'), + (542, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVbZqVld', '6341710'), + (542, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVbZqVld', '6342044'), + (542, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVbZqVld', '6342298'), + (542, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dVbZqVld', '6343294'), + (542, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVbZqVld', '6347034'), + (542, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVbZqVld', '6347056'), + (542, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVbZqVld', '6353830'), + (542, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVbZqVld', '6353831'), + (542, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVbZqVld', '6357867'), + (542, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVbZqVld', '6358652'), + (542, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVbZqVld', '6361709'), + (542, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVbZqVld', '6361710'), + (542, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVbZqVld', '6361711'), + (542, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVbZqVld', '6361712'), + (542, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVbZqVld', '6361713'), + (542, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVbZqVld', '6382573'), + (542, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVbZqVld', '6388604'), + (542, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVbZqVld', '6394629'), + (542, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVbZqVld', '6394631'), + (542, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVbZqVld', '6440863'), + (542, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVbZqVld', '6445440'), + (542, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVbZqVld', '6453951'), + (542, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVbZqVld', '6461696'), + (542, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVbZqVld', '6462129'), + (542, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVbZqVld', '6463218'), + (542, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVbZqVld', '6472181'), + (542, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVbZqVld', '6482693'), + (542, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dVbZqVld', '6484200'), + (542, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dVbZqVld', '6484680'), + (542, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVbZqVld', '6507741'), + (542, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVbZqVld', '6514659'), + (542, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVbZqVld', '6514660'), + (542, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVbZqVld', '6519103'), + (542, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVbZqVld', '6535681'), + (542, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVbZqVld', '6584747'), + (542, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVbZqVld', '6587097'), + (542, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVbZqVld', '6609022'), + (542, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVbZqVld', '6632757'), + (542, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVbZqVld', '6644187'), + (542, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVbZqVld', '6648951'), + (542, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVbZqVld', '6648952'), + (542, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVbZqVld', '6655401'), + (542, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVbZqVld', '6661585'), + (542, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVbZqVld', '6661588'), + (542, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVbZqVld', '6661589'), + (542, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVbZqVld', '6699906'), + (542, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVbZqVld', '6701109'), + (542, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVbZqVld', '6705219'), + (542, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVbZqVld', '6710153'), + (542, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVbZqVld', '6711552'), + (542, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVbZqVld', '6711553'), + (543, 1724, 'attending', '2022-11-12 23:05:58', '2025-12-17 19:47:15', 'dOpPgrOm', '5630966'), + (543, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOpPgrOm', '5630967'), + (543, 1726, 'maybe', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOpPgrOm', '5630968'), + (543, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOpPgrOm', '5642818'), + (543, 1761, 'attending', '2022-11-18 19:25:27', '2025-12-17 19:47:16', 'dOpPgrOm', '5670434'), + (543, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOpPgrOm', '5670445'), + (543, 1784, 'attending', '2022-11-16 19:58:39', '2025-12-17 19:47:15', 'dOpPgrOm', '5699760'), + (543, 1786, 'not_attending', '2022-11-12 21:50:09', '2025-12-17 19:47:15', 'dOpPgrOm', '5727232'), + (543, 1787, 'not_attending', '2022-11-14 20:15:47', '2025-12-17 19:47:16', 'dOpPgrOm', '5727234'), + (543, 1788, 'attending', '2022-11-16 20:18:00', '2025-12-17 19:47:16', 'dOpPgrOm', '5727236'), + (543, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOpPgrOm', '5741601'), + (543, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOpPgrOm', '5763458'), + (543, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOpPgrOm', '5774172'), + (543, 1828, 'maybe', '2022-11-28 22:10:29', '2025-12-17 19:47:16', 'dOpPgrOm', '5778865'), + (543, 1829, 'maybe', '2022-11-28 22:14:10', '2025-12-17 19:47:16', 'dOpPgrOm', '5778867'), + (543, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOpPgrOm', '5818247'), + (543, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOpPgrOm', '5819471'), + (543, 1837, 'not_attending', '2022-12-07 21:42:44', '2025-12-17 19:47:16', 'dOpPgrOm', '5820146'), + (543, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOpPgrOm', '5827739'), + (543, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOpPgrOm', '5844306'), + (543, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOpPgrOm', '5850159'), + (543, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOpPgrOm', '5858999'), + (543, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOpPgrOm', '5871984'), + (543, 1859, 'attending', '2023-01-19 12:40:10', '2025-12-17 19:47:05', 'dOpPgrOm', '5876234'), + (543, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOpPgrOm', '5876354'), + (543, 1864, 'attending', '2023-01-21 19:54:39', '2025-12-17 19:47:05', 'dOpPgrOm', '5879675'), + (543, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOpPgrOm', '5880939'), + (543, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dOpPgrOm', '5880940'), + (543, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dOpPgrOm', '5880942'), + (543, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dOpPgrOm', '5880943'), + (543, 1871, 'attending', '2023-01-19 12:34:34', '2025-12-17 19:47:05', 'dOpPgrOm', '5883502'), + (543, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOpPgrOm', '5887890'), + (543, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOpPgrOm', '5888598'), + (543, 1879, 'attending', '2023-01-29 12:26:17', '2025-12-17 19:47:06', 'dOpPgrOm', '5893001'), + (543, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOpPgrOm', '5893260'), + (543, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dOpPgrOm', '5899826'), + (543, 1888, 'not_attending', '2023-02-17 22:38:17', '2025-12-17 19:47:07', 'dOpPgrOm', '5900197'), + (543, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dOpPgrOm', '5900199'), + (543, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dOpPgrOm', '5900200'), + (543, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOpPgrOm', '5900202'), + (543, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOpPgrOm', '5900203'), + (543, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dOpPgrOm', '5901108'), + (543, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dOpPgrOm', '5901126'), + (543, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dOpPgrOm', '5909655'), + (543, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dOpPgrOm', '5910522'), + (543, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dOpPgrOm', '5910526'), + (543, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dOpPgrOm', '5910528'), + (543, 1918, 'attending', '2023-02-08 10:18:48', '2025-12-17 19:47:07', 'dOpPgrOm', '5911180'), + (543, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dOpPgrOm', '5916219'), + (543, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dOpPgrOm', '5936234'), + (543, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dOpPgrOm', '5958351'), + (543, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dOpPgrOm', '5959751'), + (543, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dOpPgrOm', '5959755'), + (543, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dOpPgrOm', '5960055'), + (543, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dOpPgrOm', '5961684'), + (543, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dOpPgrOm', '5962132'), + (543, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dOpPgrOm', '5962133'), + (543, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dOpPgrOm', '5962134'), + (543, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dOpPgrOm', '5962317'), + (543, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dOpPgrOm', '5962318'), + (543, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dOpPgrOm', '5965933'), + (543, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dOpPgrOm', '5967014'), + (543, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dOpPgrOm', '5972815'), + (543, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dOpPgrOm', '5974016'), + (543, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dOpPgrOm', '5981515'), + (543, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOpPgrOm', '5993516'), + (543, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOpPgrOm', '5998939'), + (543, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOpPgrOm', '6028191'), + (543, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOpPgrOm', '6040066'), + (543, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOpPgrOm', '6042717'), + (543, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOpPgrOm', '6044838'), + (543, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOpPgrOm', '6044839'), + (543, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOpPgrOm', '6045684'), + (543, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dOpPgrOm', '6050104'), + (543, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOpPgrOm', '6053195'), + (543, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOpPgrOm', '6053198'), + (543, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOpPgrOm', '6056085'), + (543, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOpPgrOm', '6056916'), + (543, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOpPgrOm', '6059290'), + (543, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOpPgrOm', '6060328'), + (543, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOpPgrOm', '6061037'), + (543, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOpPgrOm', '6061039'), + (543, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOpPgrOm', '6067245'), + (543, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOpPgrOm', '6068094'), + (543, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOpPgrOm', '6068252'), + (543, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOpPgrOm', '6068253'), + (543, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOpPgrOm', '6068254'), + (543, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dOpPgrOm', '6068280'), + (543, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOpPgrOm', '6069093'), + (543, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOpPgrOm', '6072528'), + (543, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOpPgrOm', '6079840'), + (543, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOpPgrOm', '6083398'), + (543, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOpPgrOm', '6093504'), + (543, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOpPgrOm', '6097414'), + (543, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOpPgrOm', '6097442'), + (543, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOpPgrOm', '6097684'), + (543, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOpPgrOm', '6098762'), + (543, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOpPgrOm', '6101361'), + (543, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOpPgrOm', '6101362'), + (543, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dOpPgrOm', '6103752'), + (543, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOpPgrOm', '6107314'), + (543, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOpPgrOm', '6120034'), + (543, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dOpPgrOm', '6136733'), + (543, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOpPgrOm', '6137989'), + (543, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOpPgrOm', '6150864'), + (543, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOpPgrOm', '6155491'), + (543, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOpPgrOm', '6164417'), + (543, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOpPgrOm', '6166388'), + (543, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOpPgrOm', '6176439'), + (543, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOpPgrOm', '6182410'), + (543, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOpPgrOm', '6185812'), + (543, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOpPgrOm', '6187651'), + (543, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOpPgrOm', '6187963'), + (543, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOpPgrOm', '6187964'), + (543, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOpPgrOm', '6187966'), + (543, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOpPgrOm', '6187967'), + (543, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOpPgrOm', '6187969'), + (543, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOpPgrOm', '6334878'), + (543, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOpPgrOm', '6337236'), + (543, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOpPgrOm', '6337970'), + (543, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOpPgrOm', '6338308'), + (543, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dOpPgrOm', '6340845'), + (543, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOpPgrOm', '6341710'), + (543, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOpPgrOm', '6342044'), + (543, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOpPgrOm', '6342298'), + (543, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOpPgrOm', '6343294'), + (543, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOpPgrOm', '6347034'), + (543, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOpPgrOm', '6347056'), + (543, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOpPgrOm', '6353830'), + (543, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOpPgrOm', '6353831'), + (543, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOpPgrOm', '6357867'), + (543, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOpPgrOm', '6358652'), + (543, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOpPgrOm', '6361709'), + (543, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dOpPgrOm', '6361710'), + (543, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOpPgrOm', '6361711'), + (543, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOpPgrOm', '6361712'), + (543, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOpPgrOm', '6361713'), + (543, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOpPgrOm', '6382573'), + (543, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOpPgrOm', '6388604'), + (543, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOpPgrOm', '6394629'), + (543, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOpPgrOm', '6394631'), + (543, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOpPgrOm', '6440863'), + (543, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOpPgrOm', '6445440'), + (543, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOpPgrOm', '6453951'), + (543, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOpPgrOm', '6461696'), + (543, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOpPgrOm', '6462129'), + (543, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOpPgrOm', '6463218'), + (543, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dOpPgrOm', '6472181'), + (543, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOpPgrOm', '6482693'), + (543, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dOpPgrOm', '6484200'), + (543, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOpPgrOm', '6484680'), + (543, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOpPgrOm', '6507741'), + (543, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dOpPgrOm', '6514659'), + (543, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOpPgrOm', '6514660'), + (543, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOpPgrOm', '6519103'), + (543, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOpPgrOm', '6535681'), + (543, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOpPgrOm', '6584747'), + (543, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOpPgrOm', '6587097'), + (543, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOpPgrOm', '6609022'), + (543, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOpPgrOm', '6632757'), + (543, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOpPgrOm', '6644187'), + (543, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOpPgrOm', '6648951'), + (543, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOpPgrOm', '6648952'), + (543, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOpPgrOm', '6655401'), + (543, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOpPgrOm', '6661585'), + (543, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOpPgrOm', '6661588'), + (543, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOpPgrOm', '6661589'), + (543, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOpPgrOm', '6699906'), + (543, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOpPgrOm', '6701109'), + (543, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOpPgrOm', '6705219'), + (543, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOpPgrOm', '6710153'), + (543, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOpPgrOm', '6711552'), + (543, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dOpPgrOm', '6711553'), + (544, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E51DgD4', '6045684'), + (545, 401, 'not_attending', '2021-05-14 00:35:03', '2025-12-17 19:47:46', 'NmL2aZJ4', '3236456'), + (545, 646, 'attending', '2021-05-13 05:01:41', '2025-12-17 19:47:46', 'NmL2aZJ4', '3539921'), + (545, 647, 'not_attending', '2021-05-22 23:24:33', '2025-12-17 19:47:47', 'NmL2aZJ4', '3539922'), + (545, 648, 'attending', '2021-05-28 15:50:34', '2025-12-17 19:47:47', 'NmL2aZJ4', '3539923'), + (545, 666, 'attending', '2021-08-12 15:54:53', '2025-12-17 19:47:42', 'NmL2aZJ4', '3547144'), + (545, 674, 'attending', '2021-08-07 22:21:30', '2025-12-17 19:47:41', 'NmL2aZJ4', '3547152'), + (545, 744, 'not_attending', '2021-06-03 18:43:04', '2025-12-17 19:47:47', 'NmL2aZJ4', '3680624'), + (545, 797, 'attending', '2021-05-25 22:25:59', '2025-12-17 19:47:47', 'NmL2aZJ4', '3796195'), + (545, 800, 'attending', '2021-05-13 05:02:38', '2025-12-17 19:47:46', 'NmL2aZJ4', '3800908'), + (545, 801, 'attending', '2021-05-13 05:01:03', '2025-12-17 19:47:46', 'NmL2aZJ4', '3800910'), + (545, 804, 'attending', '2021-05-23 03:30:07', '2025-12-17 19:47:47', 'NmL2aZJ4', '3804775'), + (545, 807, 'attending', '2021-05-13 05:02:54', '2025-12-17 19:47:46', 'NmL2aZJ4', '3807154'), + (545, 815, 'not_attending', '2021-05-28 15:50:13', '2025-12-17 19:47:47', 'NmL2aZJ4', '3818136'), + (545, 817, 'attending', '2021-05-20 23:41:01', '2025-12-17 19:47:46', 'NmL2aZJ4', '3832498'), + (545, 823, 'attending', '2021-06-08 23:13:13', '2025-12-17 19:47:48', 'NmL2aZJ4', '3974109'), + (545, 825, 'not_attending', '2021-06-08 23:12:34', '2025-12-17 19:47:47', 'NmL2aZJ4', '3975283'), + (545, 827, 'attending', '2021-06-05 14:53:09', '2025-12-17 19:47:47', 'NmL2aZJ4', '3975311'), + (545, 828, 'attending', '2021-06-12 19:19:37', '2025-12-17 19:47:47', 'NmL2aZJ4', '3975312'), + (545, 830, 'maybe', '2021-06-03 18:38:07', '2025-12-17 19:47:47', 'NmL2aZJ4', '3976648'), + (545, 833, 'maybe', '2021-06-03 18:38:39', '2025-12-17 19:47:47', 'NmL2aZJ4', '3990438'), + (545, 834, 'maybe', '2021-06-03 18:42:39', '2025-12-17 19:47:47', 'NmL2aZJ4', '3990439'), + (545, 838, 'maybe', '2021-06-09 00:58:35', '2025-12-17 19:47:47', 'NmL2aZJ4', '3994992'), + (545, 840, 'attending', '2021-06-08 00:51:12', '2025-12-17 19:47:47', 'NmL2aZJ4', '4007283'), + (545, 844, 'not_attending', '2021-06-23 20:26:52', '2025-12-17 19:47:38', 'NmL2aZJ4', '4014338'), + (545, 857, 'attending', '2021-11-08 02:12:05', '2025-12-17 19:47:37', 'NmL2aZJ4', '4015731'), + (545, 866, 'maybe', '2021-06-12 14:51:57', '2025-12-17 19:47:38', 'NmL2aZJ4', '4020424'), + (545, 867, 'attending', '2021-06-26 21:06:42', '2025-12-17 19:47:38', 'NmL2aZJ4', '4021848'), + (545, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmL2aZJ4', '4136744'), + (545, 870, 'not_attending', '2021-06-30 19:54:08', '2025-12-17 19:47:39', 'NmL2aZJ4', '4136937'), + (545, 871, 'attending', '2021-07-08 02:57:02', '2025-12-17 19:47:39', 'NmL2aZJ4', '4136938'), + (545, 872, 'not_attending', '2021-07-21 15:03:02', '2025-12-17 19:47:40', 'NmL2aZJ4', '4136947'), + (545, 884, 'maybe', '2021-07-31 19:52:19', '2025-12-17 19:47:42', 'NmL2aZJ4', '4210314'), + (545, 887, 'attending', '2021-07-11 16:21:47', '2025-12-17 19:47:39', 'NmL2aZJ4', '4225444'), + (545, 898, 'attending', '2021-07-01 18:24:57', '2025-12-17 19:47:38', 'NmL2aZJ4', '4236746'), + (545, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmL2aZJ4', '4239259'), + (545, 900, 'attending', '2021-07-18 18:24:25', '2025-12-17 19:47:40', 'NmL2aZJ4', '4240316'), + (545, 901, 'attending', '2021-07-30 16:48:22', '2025-12-17 19:47:40', 'NmL2aZJ4', '4240317'), + (545, 902, 'attending', '2021-08-06 14:24:24', '2025-12-17 19:47:41', 'NmL2aZJ4', '4240318'), + (545, 903, 'attending', '2021-08-11 16:07:45', '2025-12-17 19:47:42', 'NmL2aZJ4', '4240320'), + (545, 904, 'not_attending', '2021-07-11 14:31:33', '2025-12-17 19:47:39', 'NmL2aZJ4', '4241594'), + (545, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmL2aZJ4', '4250163'), + (545, 909, 'maybe', '2021-07-06 19:47:47', '2025-12-17 19:47:39', 'NmL2aZJ4', '4258187'), + (545, 910, 'attending', '2021-07-09 00:57:14', '2025-12-17 19:47:39', 'NmL2aZJ4', '4258189'), + (545, 911, 'not_attending', '2021-07-11 23:05:55', '2025-12-17 19:47:39', 'NmL2aZJ4', '4264465'), + (545, 913, 'attending', '2021-07-11 22:42:53', '2025-12-17 19:47:39', 'NmL2aZJ4', '4273765'), + (545, 914, 'attending', '2021-07-15 01:47:54', '2025-12-17 19:47:39', 'NmL2aZJ4', '4273767'), + (545, 915, 'maybe', '2021-07-20 22:57:19', '2025-12-17 19:47:39', 'NmL2aZJ4', '4273770'), + (545, 917, 'attending', '2021-07-11 22:43:29', '2025-12-17 19:47:39', 'NmL2aZJ4', '4274481'), + (545, 919, 'not_attending', '2021-07-17 22:56:32', '2025-12-17 19:47:39', 'NmL2aZJ4', '4275957'), + (545, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'NmL2aZJ4', '4277819'), + (545, 921, 'not_attending', '2021-07-14 03:11:56', '2025-12-17 19:47:39', 'NmL2aZJ4', '4278368'), + (545, 922, 'attending', '2021-07-14 03:12:11', '2025-12-17 19:47:40', 'NmL2aZJ4', '4280811'), + (545, 924, 'attending', '2021-07-21 04:21:38', '2025-12-17 19:47:40', 'NmL2aZJ4', '4297137'), + (545, 926, 'maybe', '2021-08-18 23:20:38', '2025-12-17 19:47:42', 'NmL2aZJ4', '4297211'), + (545, 932, 'maybe', '2021-08-22 15:47:37', '2025-12-17 19:47:42', 'NmL2aZJ4', '4301664'), + (545, 933, 'maybe', '2021-07-28 02:45:15', '2025-12-17 19:47:40', 'NmL2aZJ4', '4301723'), + (545, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmL2aZJ4', '4302093'), + (545, 935, 'attending', '2021-07-23 13:22:06', '2025-12-17 19:47:41', 'NmL2aZJ4', '4304151'), + (545, 936, 'not_attending', '2021-07-25 22:35:29', '2025-12-17 19:47:40', 'NmL2aZJ4', '4305951'), + (545, 938, 'maybe', '2021-07-25 22:35:34', '2025-12-17 19:47:40', 'NmL2aZJ4', '4306597'), + (545, 939, 'attending', '2021-07-25 02:44:15', '2025-12-17 19:47:40', 'NmL2aZJ4', '4308354'), + (545, 941, 'not_attending', '2021-07-25 18:11:23', '2025-12-17 19:47:40', 'NmL2aZJ4', '4309464'), + (545, 942, 'attending', '2021-07-28 02:45:50', '2025-12-17 19:47:40', 'NmL2aZJ4', '4310297'), + (545, 943, 'attending', '2021-07-26 04:05:41', '2025-12-17 19:47:41', 'NmL2aZJ4', '4310979'), + (545, 944, 'attending', '2021-07-26 04:08:53', '2025-12-17 19:47:41', 'NmL2aZJ4', '4310980'), + (545, 945, 'attending', '2021-07-26 04:08:55', '2025-12-17 19:47:42', 'NmL2aZJ4', '4310981'), + (545, 956, 'attending', '2021-08-03 04:25:07', '2025-12-17 19:47:40', 'NmL2aZJ4', '4331968'), + (545, 957, 'attending', '2021-08-05 16:59:57', '2025-12-17 19:47:41', 'NmL2aZJ4', '4338834'), + (545, 961, 'maybe', '2021-08-13 20:46:25', '2025-12-17 19:47:42', 'NmL2aZJ4', '4345519'), + (545, 962, 'maybe', '2021-08-12 15:53:35', '2025-12-17 19:47:41', 'NmL2aZJ4', '4346305'), + (545, 966, 'maybe', '2021-08-21 15:23:38', '2025-12-17 19:47:42', 'NmL2aZJ4', '4356162'), + (545, 967, 'maybe', '2021-08-18 23:22:43', '2025-12-17 19:47:42', 'NmL2aZJ4', '4356164'), + (545, 971, 'attending', '2021-08-28 17:34:00', '2025-12-17 19:47:43', 'NmL2aZJ4', '4356801'), + (545, 972, 'maybe', '2021-08-19 16:52:23', '2025-12-17 19:47:42', 'NmL2aZJ4', '4358025'), + (545, 973, 'maybe', '2021-08-19 16:52:52', '2025-12-17 19:47:42', 'NmL2aZJ4', '4366186'), + (545, 974, 'attending', '2021-08-19 00:25:01', '2025-12-17 19:47:42', 'NmL2aZJ4', '4366187'), + (545, 976, 'attending', '2021-08-19 01:01:11', '2025-12-17 19:47:42', 'NmL2aZJ4', '4373933'), + (545, 979, 'not_attending', '2021-08-19 01:08:14', '2025-12-17 19:47:42', 'NmL2aZJ4', '4379085'), + (545, 981, 'not_attending', '2021-08-27 22:53:32', '2025-12-17 19:47:42', 'NmL2aZJ4', '4387305'), + (545, 982, 'not_attending', '2021-08-28 18:44:26', '2025-12-17 19:47:42', 'NmL2aZJ4', '4389739'), + (545, 988, 'not_attending', '2021-08-27 22:53:35', '2025-12-17 19:47:42', 'NmL2aZJ4', '4402823'), + (545, 990, 'attending', '2021-08-28 22:30:34', '2025-12-17 19:47:43', 'NmL2aZJ4', '4420735'), + (545, 991, 'not_attending', '2021-09-11 21:24:44', '2025-12-17 19:47:43', 'NmL2aZJ4', '4420738'), + (545, 992, 'not_attending', '2021-09-18 22:59:31', '2025-12-17 19:47:34', 'NmL2aZJ4', '4420739'), + (545, 993, 'attending', '2021-09-25 22:55:01', '2025-12-17 19:47:34', 'NmL2aZJ4', '4420741'), + (545, 995, 'maybe', '2021-10-05 19:26:23', '2025-12-17 19:47:34', 'NmL2aZJ4', '4420744'), + (545, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'NmL2aZJ4', '4420747'), + (545, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'NmL2aZJ4', '4420748'), + (545, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'NmL2aZJ4', '4420749'), + (545, 999, 'not_attending', '2021-08-29 03:08:45', '2025-12-17 19:47:43', 'NmL2aZJ4', '4421150'), + (545, 1000, 'attending', '2021-08-29 22:34:52', '2025-12-17 19:47:43', 'NmL2aZJ4', '4424456'), + (545, 1001, 'maybe', '2021-08-30 14:20:19', '2025-12-17 19:47:43', 'NmL2aZJ4', '4424687'), + (545, 1015, 'attending', '2021-09-03 13:40:57', '2025-12-17 19:47:43', 'NmL2aZJ4', '4440800'), + (545, 1017, 'attending', '2021-09-04 21:53:15', '2025-12-17 19:47:43', 'NmL2aZJ4', '4441822'), + (545, 1018, 'attending', '2021-09-05 17:13:14', '2025-12-17 19:47:43', 'NmL2aZJ4', '4448883'), + (545, 1020, 'attending', '2021-09-13 00:49:12', '2025-12-17 19:47:43', 'NmL2aZJ4', '4451787'), + (545, 1023, 'maybe', '2021-09-12 14:16:35', '2025-12-17 19:47:43', 'NmL2aZJ4', '4461883'), + (545, 1024, 'attending', '2021-09-10 00:54:48', '2025-12-17 19:47:43', 'NmL2aZJ4', '4462044'), + (545, 1026, 'attending', '2021-09-12 16:45:28', '2025-12-17 19:47:43', 'NmL2aZJ4', '4472951'), + (545, 1027, 'attending', '2021-09-12 16:46:01', '2025-12-17 19:47:34', 'NmL2aZJ4', '4472982'), + (545, 1028, 'attending', '2021-09-12 16:47:03', '2025-12-17 19:47:34', 'NmL2aZJ4', '4472983'), + (545, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmL2aZJ4', '4508342'), + (545, 1073, 'attending', '2021-09-28 02:19:03', '2025-12-17 19:47:34', 'NmL2aZJ4', '4518993'), + (545, 1076, 'attending', '2021-10-03 16:08:28', '2025-12-17 19:47:34', 'NmL2aZJ4', '4539147'), + (545, 1080, 'attending', '2021-10-10 20:35:49', '2025-12-17 19:47:34', 'NmL2aZJ4', '4564599'), + (545, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmL2aZJ4', '4568602'), + (545, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmL2aZJ4', '4572153'), + (545, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmL2aZJ4', '4585962'), + (545, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'NmL2aZJ4', '4596356'), + (545, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmL2aZJ4', '4598860'), + (545, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmL2aZJ4', '4598861'), + (545, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmL2aZJ4', '4602797'), + (545, 1109, 'attending', '2021-11-11 02:36:31', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635221'), + (545, 1110, 'attending', '2021-11-11 02:30:31', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635224'), + (545, 1111, 'attending', '2021-11-11 02:35:31', '2025-12-17 19:47:31', 'NmL2aZJ4', '4635279'), + (545, 1112, 'attending', '2021-11-11 02:35:30', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635420'), + (545, 1113, 'attending', '2021-11-11 02:36:22', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635421'), + (545, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmL2aZJ4', '4637896'), + (545, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmL2aZJ4', '4642994'), + (545, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmL2aZJ4', '4642995'), + (545, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmL2aZJ4', '4642996'), + (545, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmL2aZJ4', '4642997'), + (545, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmL2aZJ4', '4645687'), + (545, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmL2aZJ4', '4645698'), + (545, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmL2aZJ4', '4645704'), + (545, 1129, 'maybe', '2021-11-24 06:48:24', '2025-12-17 19:47:37', 'NmL2aZJ4', '4645705'), + (545, 1134, 'attending', '2021-11-24 06:58:30', '2025-12-17 19:47:37', 'NmL2aZJ4', '4668385'), + (545, 1136, 'not_attending', '2021-11-25 20:34:02', '2025-12-17 19:47:37', 'NmL2aZJ4', '4670473'), + (545, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmL2aZJ4', '4694407'), + (545, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmL2aZJ4', '4736497'), + (545, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'NmL2aZJ4', '4736499'), + (545, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmL2aZJ4', '4736500'), + (545, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'NmL2aZJ4', '4736503'), + (545, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'NmL2aZJ4', '4736504'), + (545, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmL2aZJ4', '4746789'), + (545, 1186, 'attending', '2022-01-09 08:30:57', '2025-12-17 19:47:31', 'NmL2aZJ4', '4747800'), + (545, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmL2aZJ4', '4753929'), + (545, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmL2aZJ4', '5038850'), + (545, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmL2aZJ4', '5045826'), + (545, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmL2aZJ4', '5132533'), + (545, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'NmL2aZJ4', '5186582'), + (545, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'NmL2aZJ4', '5186583'), + (545, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'NmL2aZJ4', '5186585'), + (545, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'NmL2aZJ4', '5190437'), + (545, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'NmL2aZJ4', '5195095'), + (545, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmL2aZJ4', '5215989'), + (545, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmL2aZJ4', '5223686'), + (545, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmL2aZJ4', '5227432'), + (545, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'NmL2aZJ4', '5231461'), + (545, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'NmL2aZJ4', '5247467'), + (545, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'NmL2aZJ4', '5260800'), + (545, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'NmL2aZJ4', '5269930'), + (545, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'NmL2aZJ4', '5271448'), + (545, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'NmL2aZJ4', '5271449'), + (545, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmL2aZJ4', '5276469'), + (545, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'NmL2aZJ4', '5277078'), + (545, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmL2aZJ4', '5278159'), + (545, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'NmL2aZJ4', '5363695'), + (545, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmL2aZJ4', '5365960'), + (545, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmL2aZJ4', '5368973'), + (545, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'NmL2aZJ4', '5378247'), + (545, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'NmL2aZJ4', '5389605'), + (545, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'NmL2aZJ4', '5397265'), + (545, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmL2aZJ4', '5403967'), + (545, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmL2aZJ4', '5404786'), + (545, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmL2aZJ4', '5405203'), + (545, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmL2aZJ4', '5411699'), + (545, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'NmL2aZJ4', '5412550'), + (545, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmL2aZJ4', '5415046'), + (545, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'NmL2aZJ4', '5422086'), + (545, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'NmL2aZJ4', '5422406'), + (545, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmL2aZJ4', '5424565'), + (545, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmL2aZJ4', '5426882'), + (545, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmL2aZJ4', '5427083'), + (545, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmL2aZJ4', '5441125'), + (545, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmL2aZJ4', '5441126'), + (545, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmL2aZJ4', '5441128'), + (545, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmL2aZJ4', '5446643'), + (545, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmL2aZJ4', '5453325'), + (545, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmL2aZJ4', '5454516'), + (545, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmL2aZJ4', '5454605'), + (545, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmL2aZJ4', '5455037'), + (545, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmL2aZJ4', '5461278'), + (545, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmL2aZJ4', '5469480'), + (545, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmL2aZJ4', '5471073'), + (545, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'NmL2aZJ4', '5474663'), + (545, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmL2aZJ4', '5482022'), + (545, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmL2aZJ4', '5482793'), + (545, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmL2aZJ4', '5488912'), + (545, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmL2aZJ4', '5492192'), + (545, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmL2aZJ4', '5493139'), + (545, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmL2aZJ4', '5493200'), + (545, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmL2aZJ4', '5502188'), + (545, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmL2aZJ4', '5512862'), + (545, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmL2aZJ4', '5513985'), + (545, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmL2aZJ4', '6045684'), + (546, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'm6ZnNjRm', '7074364'), + (546, 2627, 'attending', '2024-05-24 19:27:08', '2025-12-17 19:46:35', 'm6ZnNjRm', '7264724'), + (546, 2628, 'attending', '2024-06-01 01:28:05', '2025-12-17 19:46:36', 'm6ZnNjRm', '7264725'), + (546, 2642, 'attending', '2024-05-18 01:48:02', '2025-12-17 19:46:35', 'm6ZnNjRm', '7276108'), + (546, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'm6ZnNjRm', '7281768'), + (546, 2649, 'maybe', '2024-05-26 15:55:25', '2025-12-17 19:46:35', 'm6ZnNjRm', '7282950'), + (546, 2651, 'attending', '2024-05-24 19:28:19', '2025-12-17 19:46:35', 'm6ZnNjRm', '7288200'), + (546, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'm6ZnNjRm', '7302674'), + (546, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'm6ZnNjRm', '7324073'), + (546, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'm6ZnNjRm', '7324074'), + (546, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'm6ZnNjRm', '7324075'), + (546, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'm6ZnNjRm', '7324078'), + (546, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'm6ZnNjRm', '7324082'), + (546, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'm6ZnNjRm', '7331457'), + (546, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'm6ZnNjRm', '7356752'), + (546, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'm6ZnNjRm', '7363643'), + (546, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'm6ZnNjRm', '7368606'), + (546, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'm6ZnNjRm', '7397462'), + (546, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'm6ZnNjRm', '7424275'), + (546, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'm6ZnNjRm', '7424276'), + (546, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'm6ZnNjRm', '7432751'), + (546, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'm6ZnNjRm', '7432752'), + (546, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'm6ZnNjRm', '7432753'), + (546, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432754'), + (546, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432755'), + (546, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432756'), + (546, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432758'), + (546, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432759'), + (546, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'm6ZnNjRm', '7433834'), + (546, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'm6ZnNjRm', '7470197'), + (546, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'm6ZnNjRm', '7685613'), + (546, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6ZnNjRm', '7688194'), + (546, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6ZnNjRm', '7688196'), + (546, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6ZnNjRm', '7688289'), + (547, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dVBgEaqd', '4210314'), + (547, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'dVBgEaqd', '4240320'), + (547, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dVBgEaqd', '4304151'), + (547, 948, 'maybe', '2021-08-11 05:46:53', '2025-12-17 19:47:41', 'dVBgEaqd', '4315714'), + (547, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'dVBgEaqd', '4315726'), + (547, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dVBgEaqd', '4356801'), + (547, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dVBgEaqd', '4366186'), + (547, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dVBgEaqd', '4366187'), + (547, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dVBgEaqd', '4420735'), + (547, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dVBgEaqd', '4420738'), + (547, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dVBgEaqd', '4420739'), + (547, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dVBgEaqd', '4420741'), + (547, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dVBgEaqd', '4420744'), + (547, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dVBgEaqd', '4420747'), + (547, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dVBgEaqd', '4420748'), + (547, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dVBgEaqd', '4420749'), + (547, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dVBgEaqd', '4461883'), + (547, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dVBgEaqd', '4508342'), + (547, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dVBgEaqd', '4568602'), + (547, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVBgEaqd', '4572153'), + (547, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dVBgEaqd', '4585962'), + (547, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dVBgEaqd', '4596356'), + (547, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dVBgEaqd', '4598860'), + (547, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dVBgEaqd', '4598861'), + (547, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dVBgEaqd', '4602797'), + (547, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dVBgEaqd', '4637896'), + (547, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dVBgEaqd', '4642994'), + (547, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dVBgEaqd', '4642995'), + (547, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dVBgEaqd', '4642996'), + (547, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dVBgEaqd', '4642997'), + (547, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dVBgEaqd', '4645687'), + (547, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dVBgEaqd', '4645698'), + (547, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dVBgEaqd', '4645704'), + (547, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dVBgEaqd', '4645705'), + (547, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dVBgEaqd', '4668385'), + (547, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBgEaqd', '6045684'), + (548, 1989, 'attending', '2023-05-14 02:46:23', '2025-12-17 19:47:03', 'amGO55Zm', '6044842'), + (548, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'amGO55Zm', '6067245'), + (548, 2031, 'maybe', '2023-05-24 20:47:34', '2025-12-17 19:47:04', 'amGO55Zm', '6068280'), + (548, 2032, 'attending', '2023-06-01 02:26:29', '2025-12-17 19:47:04', 'amGO55Zm', '6068281'), + (548, 2056, 'attending', '2023-05-13 02:24:04', '2025-12-17 19:47:02', 'amGO55Zm', '6093504'), + (548, 2060, 'attending', '2023-05-15 00:10:33', '2025-12-17 19:47:03', 'amGO55Zm', '6097414'), + (548, 2064, 'attending', '2023-06-23 02:33:04', '2025-12-17 19:46:50', 'amGO55Zm', '6099988'), + (548, 2065, 'attending', '2023-06-12 01:45:29', '2025-12-17 19:46:49', 'amGO55Zm', '6101169'), + (548, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'amGO55Zm', '6101361'), + (548, 2067, 'maybe', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'amGO55Zm', '6101362'), + (548, 2068, 'maybe', '2023-05-14 02:45:18', '2025-12-17 19:47:03', 'amGO55Zm', '6102837'), + (548, 2069, 'attending', '2023-05-18 15:34:16', '2025-12-17 19:47:03', 'amGO55Zm', '6103750'), + (548, 2070, 'maybe', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'amGO55Zm', '6103752'), + (548, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'amGO55Zm', '6107314'), + (548, 2078, 'attending', '2023-05-21 03:39:15', '2025-12-17 19:47:03', 'amGO55Zm', '6114163'), + (548, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'amGO55Zm', '6120034'), + (548, 2090, 'not_attending', '2023-06-01 02:26:15', '2025-12-17 19:47:04', 'amGO55Zm', '6127961'), + (548, 2091, 'attending', '2023-06-04 21:04:21', '2025-12-17 19:47:04', 'amGO55Zm', '6130657'), + (548, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'amGO55Zm', '6136733'), + (548, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'amGO55Zm', '6137989'), + (548, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'amGO55Zm', '6150864'), + (548, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'amGO55Zm', '6155491'), + (548, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'amGO55Zm', '6164417'), + (548, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'amGO55Zm', '6166388'), + (548, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'amGO55Zm', '6176439'), + (548, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'amGO55Zm', '6182410'), + (548, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'amGO55Zm', '6185812'), + (548, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'amGO55Zm', '6187651'), + (548, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'amGO55Zm', '6187963'), + (548, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'amGO55Zm', '6187964'), + (548, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'amGO55Zm', '6187966'), + (548, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'amGO55Zm', '6187967'), + (548, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'amGO55Zm', '6187969'), + (548, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'amGO55Zm', '6334878'), + (548, 2146, 'attending', '2023-07-18 11:47:07', '2025-12-17 19:46:53', 'amGO55Zm', '6335638'), + (548, 2147, 'attending', '2023-07-09 21:35:25', '2025-12-17 19:46:52', 'amGO55Zm', '6335666'), + (548, 2149, 'not_attending', '2023-07-18 11:47:53', '2025-12-17 19:46:53', 'amGO55Zm', '6335682'), + (548, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'amGO55Zm', '6337236'), + (548, 2155, 'not_attending', '2023-07-18 11:48:10', '2025-12-17 19:46:53', 'amGO55Zm', '6337970'), + (548, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'amGO55Zm', '6338308'), + (548, 2159, 'attending', '2023-07-18 11:46:46', '2025-12-17 19:46:53', 'amGO55Zm', '6338355'), + (548, 2160, 'attending', '2023-07-29 22:12:22', '2025-12-17 19:46:54', 'amGO55Zm', '6338358'), + (548, 2162, 'maybe', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'amGO55Zm', '6340845'), + (548, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'amGO55Zm', '6341710'), + (548, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'amGO55Zm', '6342044'), + (548, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'amGO55Zm', '6342298'), + (548, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'amGO55Zm', '6343294'), + (548, 2175, 'not_attending', '2023-07-22 18:59:02', '2025-12-17 19:46:53', 'amGO55Zm', '6346982'), + (548, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'amGO55Zm', '6347034'), + (548, 2177, 'not_attending', '2023-08-05 16:51:57', '2025-12-17 19:46:55', 'amGO55Zm', '6347053'), + (548, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'amGO55Zm', '6347056'), + (548, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'amGO55Zm', '6353830'), + (548, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'amGO55Zm', '6353831'), + (548, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'amGO55Zm', '6357867'), + (548, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'amGO55Zm', '6358652'), + (548, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'amGO55Zm', '6361709'), + (548, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'amGO55Zm', '6361710'), + (548, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'amGO55Zm', '6361711'), + (548, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'amGO55Zm', '6361712'), + (548, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'amGO55Zm', '6361713'), + (548, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'amGO55Zm', '6382573'), + (548, 2241, 'maybe', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'amGO55Zm', '6388604'), + (548, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'amGO55Zm', '6394629'), + (548, 2249, 'maybe', '2023-09-20 17:37:19', '2025-12-17 19:46:45', 'amGO55Zm', '6394630'), + (548, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'amGO55Zm', '6394631'), + (548, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'amGO55Zm', '6440863'), + (548, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'amGO55Zm', '6445440'), + (548, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'amGO55Zm', '6453951'), + (548, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'amGO55Zm', '6461696'), + (548, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'amGO55Zm', '6462129'), + (548, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'amGO55Zm', '6463218'), + (548, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'amGO55Zm', '6472181'), + (548, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'amGO55Zm', '6482693'), + (548, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'amGO55Zm', '6484200'), + (548, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'amGO55Zm', '6484680'), + (548, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'amGO55Zm', '6507741'), + (548, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'amGO55Zm', '6514659'), + (548, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'amGO55Zm', '6514660'), + (548, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'amGO55Zm', '6519103'), + (548, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'amGO55Zm', '6535681'), + (548, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'amGO55Zm', '6584747'), + (548, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'amGO55Zm', '6587097'), + (548, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'amGO55Zm', '6609022'), + (548, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'amGO55Zm', '6632757'), + (548, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'amGO55Zm', '6644187'), + (548, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'amGO55Zm', '6648951'), + (548, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'amGO55Zm', '6648952'), + (548, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'amGO55Zm', '6655401'), + (548, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'amGO55Zm', '6661585'), + (548, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'amGO55Zm', '6661588'), + (548, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'amGO55Zm', '6661589'), + (548, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'amGO55Zm', '6699906'), + (548, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'amGO55Zm', '6701109'), + (548, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'amGO55Zm', '6705219'), + (548, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'amGO55Zm', '6710153'), + (548, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'amGO55Zm', '6711552'), + (548, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'amGO55Zm', '6711553'), + (549, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgxgKPj4', '5195095'), + (549, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgxgKPj4', '5223686'), + (549, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgxgKPj4', '5227432'), + (549, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgxgKPj4', '5247467'), + (549, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgxgKPj4', '5260800'), + (549, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgxgKPj4', '5269930'), + (549, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgxgKPj4', '5271448'), + (549, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AgxgKPj4', '5271449'), + (549, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgxgKPj4', '5276469'), + (549, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgxgKPj4', '5278159'), + (549, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxgKPj4', '6045684'), + (550, 644, 'not_attending', '2021-04-23 04:06:11', '2025-12-17 19:47:46', 'xd96pVzm', '3539919'), + (550, 645, 'maybe', '2021-04-28 16:25:21', '2025-12-17 19:47:46', 'xd96pVzm', '3539920'), + (550, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'xd96pVzm', '3539921'), + (550, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xd96pVzm', '3539922'), + (550, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'xd96pVzm', '3539923'), + (550, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'xd96pVzm', '3583262'), + (550, 729, 'maybe', '2021-04-28 16:24:42', '2025-12-17 19:47:46', 'xd96pVzm', '3668075'), + (550, 756, 'maybe', '2021-04-26 16:49:11', '2025-12-17 19:47:46', 'xd96pVzm', '3704795'), + (550, 764, 'maybe', '2021-04-23 20:40:23', '2025-12-17 19:47:45', 'xd96pVzm', '3720507'), + (550, 775, 'attending', '2021-04-22 12:05:24', '2025-12-17 19:47:45', 'xd96pVzm', '3731062'), + (550, 777, 'maybe', '2021-05-01 08:55:15', '2025-12-17 19:47:46', 'xd96pVzm', '3746248'), + (550, 792, 'maybe', '2021-05-16 22:33:08', '2025-12-17 19:47:46', 'xd96pVzm', '3793156'), + (550, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xd96pVzm', '3974109'), + (550, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xd96pVzm', '3975311'), + (550, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xd96pVzm', '3975312'), + (550, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xd96pVzm', '3994992'), + (550, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd96pVzm', '4014338'), + (550, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xd96pVzm', '4021848'), + (550, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd96pVzm', '4136744'), + (550, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'xd96pVzm', '4136937'), + (550, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd96pVzm', '4136938'), + (550, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd96pVzm', '4136947'), + (550, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd96pVzm', '4225444'), + (550, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd96pVzm', '4239259'), + (550, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd96pVzm', '4250163'), + (550, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd96pVzm', '6045684'), + (551, 2016, 'maybe', '2023-05-04 02:36:46', '2025-12-17 19:47:02', 'pmbMM9Xd', '6061039'), + (551, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'pmbMM9Xd', '6067245'), + (551, 2030, 'attending', '2023-05-04 02:36:34', '2025-12-17 19:47:02', 'pmbMM9Xd', '6068254'), + (551, 2031, 'not_attending', '2023-05-27 18:06:21', '2025-12-17 19:47:04', 'pmbMM9Xd', '6068280'), + (551, 2051, 'attending', '2023-05-03 22:08:20', '2025-12-17 19:47:02', 'pmbMM9Xd', '6083398'), + (551, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'pmbMM9Xd', '6093504'), + (551, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'pmbMM9Xd', '6097414'), + (551, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'pmbMM9Xd', '6097442'), + (551, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'pmbMM9Xd', '6097684'), + (551, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'pmbMM9Xd', '6098762'), + (551, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'pmbMM9Xd', '6101361'), + (551, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'pmbMM9Xd', '6101362'), + (551, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'pmbMM9Xd', '6103752'), + (551, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'pmbMM9Xd', '6107314'), + (551, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'pmbMM9Xd', '6120034'), + (551, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'pmbMM9Xd', '6136733'), + (551, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'pmbMM9Xd', '6137989'), + (551, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'pmbMM9Xd', '6150864'), + (551, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'pmbMM9Xd', '6155491'), + (551, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'pmbMM9Xd', '6164417'), + (551, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'pmbMM9Xd', '6166388'), + (551, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'pmbMM9Xd', '6176439'), + (551, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'pmbMM9Xd', '6182410'), + (551, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'pmbMM9Xd', '6185812'), + (551, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'pmbMM9Xd', '6187651'), + (551, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'pmbMM9Xd', '6187963'), + (551, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'pmbMM9Xd', '6187964'), + (551, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'pmbMM9Xd', '6187966'), + (551, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'pmbMM9Xd', '6187967'), + (551, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'pmbMM9Xd', '6187969'), + (551, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'pmbMM9Xd', '6334878'), + (551, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'pmbMM9Xd', '6337236'), + (551, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'pmbMM9Xd', '6337970'), + (551, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'pmbMM9Xd', '6338308'), + (551, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'pmbMM9Xd', '6341710'), + (551, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'pmbMM9Xd', '6342044'), + (551, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'pmbMM9Xd', '6342298'), + (551, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'pmbMM9Xd', '6343294'), + (551, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'pmbMM9Xd', '6347034'), + (551, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'pmbMM9Xd', '6347056'), + (551, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'pmbMM9Xd', '6353830'), + (551, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'pmbMM9Xd', '6353831'), + (551, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'pmbMM9Xd', '6357867'), + (551, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'pmbMM9Xd', '6358652'), + (551, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'pmbMM9Xd', '6361709'), + (551, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'pmbMM9Xd', '6361710'), + (551, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'pmbMM9Xd', '6361711'), + (551, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'pmbMM9Xd', '6361712'), + (551, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'pmbMM9Xd', '6361713'), + (551, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'pmbMM9Xd', '6382573'), + (551, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'pmbMM9Xd', '6388604'), + (551, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'pmbMM9Xd', '6394629'), + (551, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'pmbMM9Xd', '6394631'), + (551, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'pmbMM9Xd', '6440863'), + (551, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'pmbMM9Xd', '6445440'), + (551, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'pmbMM9Xd', '6453951'), + (551, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'pmbMM9Xd', '6461696'), + (551, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'pmbMM9Xd', '6462129'), + (551, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'pmbMM9Xd', '6463218'), + (551, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'pmbMM9Xd', '6472181'), + (551, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'pmbMM9Xd', '6482693'), + (551, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'pmbMM9Xd', '6484200'), + (551, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'pmbMM9Xd', '6484680'), + (551, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'pmbMM9Xd', '6507741'), + (551, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'pmbMM9Xd', '6514659'), + (551, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'pmbMM9Xd', '6514660'), + (551, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'pmbMM9Xd', '6519103'), + (551, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'pmbMM9Xd', '6535681'), + (551, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'pmbMM9Xd', '6584747'), + (551, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'pmbMM9Xd', '6587097'), + (551, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'pmbMM9Xd', '6609022'), + (551, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'pmbMM9Xd', '6632757'), + (551, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'pmbMM9Xd', '6644187'), + (551, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'pmbMM9Xd', '6648951'), + (551, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'pmbMM9Xd', '6648952'), + (551, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'pmbMM9Xd', '6655401'), + (551, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'pmbMM9Xd', '6661585'), + (551, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'pmbMM9Xd', '6661588'), + (551, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'pmbMM9Xd', '6661589'), + (551, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'pmbMM9Xd', '6699906'), + (551, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'pmbMM9Xd', '6699913'), + (551, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'pmbMM9Xd', '6701109'), + (551, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'pmbMM9Xd', '6705219'), + (551, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'pmbMM9Xd', '6710153'), + (551, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'pmbMM9Xd', '6711552'), + (551, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'pmbMM9Xd', '6711553'), + (551, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'pmbMM9Xd', '6722688'), + (551, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'pmbMM9Xd', '6730620'), + (551, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'pmbMM9Xd', '6740364'), + (551, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'pmbMM9Xd', '6743829'), + (551, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'pmbMM9Xd', '7030380'), + (551, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'pmbMM9Xd', '7033677'), + (551, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'pmbMM9Xd', '7044715'), + (551, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'pmbMM9Xd', '7050318'), + (551, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'pmbMM9Xd', '7050319'), + (551, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'pmbMM9Xd', '7050322'), + (551, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'pmbMM9Xd', '7057804'), + (551, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'pmbMM9Xd', '7072824'), + (551, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'pmbMM9Xd', '7074348'), + (551, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'pmbMM9Xd', '7074364'), + (551, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'pmbMM9Xd', '7089267'), + (551, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'pmbMM9Xd', '7098747'), + (551, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'pmbMM9Xd', '7113468'), + (551, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'pmbMM9Xd', '7114856'), + (551, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'pmbMM9Xd', '7114951'), + (551, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'pmbMM9Xd', '7114955'), + (551, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'pmbMM9Xd', '7114956'), + (551, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'pmbMM9Xd', '7114957'), + (551, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'pmbMM9Xd', '7159484'), + (551, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'pmbMM9Xd', '7178446'), + (551, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'pmbMM9Xd', '7220467'), + (551, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'pmbMM9Xd', '7240354'), + (551, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'pmbMM9Xd', '7251633'), + (551, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'pmbMM9Xd', '7324073'), + (551, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'pmbMM9Xd', '7324074'), + (551, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'pmbMM9Xd', '7324075'), + (551, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'pmbMM9Xd', '7324078'), + (551, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'pmbMM9Xd', '7324082'), + (551, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'pmbMM9Xd', '7331457'), + (551, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'pmbMM9Xd', '7363643'), + (551, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'pmbMM9Xd', '7368606'), + (551, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'pmbMM9Xd', '7397462'), + (551, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'pmbMM9Xd', '7424275'), + (551, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'pmbMM9Xd', '7432751'), + (551, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'pmbMM9Xd', '7432752'), + (551, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'pmbMM9Xd', '7432753'), + (551, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432754'), + (551, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432755'), + (551, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432756'), + (551, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432758'), + (551, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432759'), + (551, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'pmbMM9Xd', '7433834'), + (551, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'pmbMM9Xd', '7470197'), + (551, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'pmbMM9Xd', '7685613'), + (551, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'pmbMM9Xd', '7688194'), + (551, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'pmbMM9Xd', '7688196'), + (551, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'pmbMM9Xd', '7688289'), + (551, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'pmbMM9Xd', '7692763'), + (551, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'pmbMM9Xd', '7697552'), + (551, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'pmbMM9Xd', '7699878'), + (551, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'pmbMM9Xd', '7704043'), + (551, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'pmbMM9Xd', '7712467'), + (551, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'pmbMM9Xd', '7713585'), + (551, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'pmbMM9Xd', '7713586'), + (551, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'pmbMM9Xd', '7738518'), + (551, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'pmbMM9Xd', '7750636'), + (551, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'pmbMM9Xd', '7796540'), + (551, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'pmbMM9Xd', '7796541'), + (551, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'pmbMM9Xd', '7796542'), + (551, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'pmbMM9Xd', '7825913'), + (551, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'pmbMM9Xd', '7826209'), + (551, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'pmbMM9Xd', '7834742'), + (551, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'pmbMM9Xd', '7842108'), + (551, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'pmbMM9Xd', '7842902'), + (551, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'pmbMM9Xd', '7842903'), + (551, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'pmbMM9Xd', '7842904'), + (551, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'pmbMM9Xd', '7842905'), + (551, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'pmbMM9Xd', '7855719'), + (551, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'pmbMM9Xd', '7860683'), + (551, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'pmbMM9Xd', '7860684'), + (551, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'pmbMM9Xd', '7866095'), + (551, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'pmbMM9Xd', '7869170'), + (551, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'pmbMM9Xd', '7869188'), + (551, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'pmbMM9Xd', '7869201'), + (551, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'pmbMM9Xd', '7877465'), + (551, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'pmbMM9Xd', '7888250'), + (551, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'pmbMM9Xd', '7904777'), + (551, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'pmbMM9Xd', '8349164'), + (551, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'pmbMM9Xd', '8349545'), + (551, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'pmbMM9Xd', '8368028'), + (551, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'pmbMM9Xd', '8368029'), + (551, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'pmbMM9Xd', '8388462'), + (551, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'pmbMM9Xd', '8400273'), + (551, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'pmbMM9Xd', '8400275'), + (551, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'pmbMM9Xd', '8400276'), + (551, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'pmbMM9Xd', '8404977'), + (551, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'pmbMM9Xd', '8430783'), + (551, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'pmbMM9Xd', '8430784'), + (551, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'pmbMM9Xd', '8430799'), + (551, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'pmbMM9Xd', '8430800'), + (551, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'pmbMM9Xd', '8430801'), + (551, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'pmbMM9Xd', '8438709'), + (551, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'pmbMM9Xd', '8457738'), + (551, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'pmbMM9Xd', '8459566'), + (551, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'pmbMM9Xd', '8459567'), + (551, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'pmbMM9Xd', '8461032'), + (551, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'pmbMM9Xd', '8477877'), + (551, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'pmbMM9Xd', '8485688'), + (551, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'pmbMM9Xd', '8490587'), + (551, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'pmbMM9Xd', '8493552'), + (551, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'pmbMM9Xd', '8493553'), + (551, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'pmbMM9Xd', '8493554'), + (551, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'pmbMM9Xd', '8493555'), + (551, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'pmbMM9Xd', '8493556'), + (551, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'pmbMM9Xd', '8493557'), + (551, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'pmbMM9Xd', '8493558'), + (551, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'pmbMM9Xd', '8493559'), + (551, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'pmbMM9Xd', '8493560'), + (551, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'pmbMM9Xd', '8493561'), + (551, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'pmbMM9Xd', '8493572'), + (551, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'pmbMM9Xd', '8540725'), + (551, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'pmbMM9Xd', '8555421'), + (552, 2994, 'not_attending', '2025-03-05 05:48:24', '2025-12-17 19:46:18', 'd9XQBry4', '7842905'), + (552, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd9XQBry4', '7869170'), + (552, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd9XQBry4', '7869188'), + (552, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'd9XQBry4', '7872088'), + (552, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd9XQBry4', '7877465'), + (552, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'd9XQBry4', '7878570'), + (552, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'd9XQBry4', '7880977'), + (552, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd9XQBry4', '7888250'), + (552, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'd9XQBry4', '7903856'), + (552, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'd9XQBry4', '8347770'), + (552, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd9XQBry4', '8349164'), + (552, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd9XQBry4', '8349545'), + (552, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd9XQBry4', '8353584'), + (552, 3114, 'not_attending', '2025-05-02 21:35:08', '2025-12-17 19:46:20', 'd9XQBry4', '8357180'), + (553, 2285, 'attending', '2023-10-23 16:07:08', '2025-12-17 19:46:47', '41G2ZoEm', '6460929'), + (553, 2296, 'attending', '2023-10-23 16:06:55', '2025-12-17 19:46:47', '41G2ZoEm', '6468393'), + (553, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41G2ZoEm', '6482693'), + (553, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '41G2ZoEm', '6484200'), + (553, 2307, 'attending', '2023-10-24 19:24:11', '2025-12-17 19:46:46', '41G2ZoEm', '6484680'), + (553, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41G2ZoEm', '6507741'), + (553, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41G2ZoEm', '6514659'), + (553, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41G2ZoEm', '6514660'), + (553, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41G2ZoEm', '6519103'), + (553, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41G2ZoEm', '6535681'), + (553, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', '41G2ZoEm', '6545076'), + (553, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41G2ZoEm', '6584747'), + (553, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41G2ZoEm', '6587097'), + (553, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41G2ZoEm', '6609022'), + (553, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41G2ZoEm', '6632757'), + (553, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41G2ZoEm', '6644187'), + (553, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41G2ZoEm', '6648951'), + (553, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41G2ZoEm', '6648952'), + (553, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', '41G2ZoEm', '6651141'), + (553, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41G2ZoEm', '6655401'), + (553, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41G2ZoEm', '6661585'), + (553, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41G2ZoEm', '6661588'), + (553, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41G2ZoEm', '6661589'), + (553, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41G2ZoEm', '6699906'), + (553, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41G2ZoEm', '6699913'), + (553, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41G2ZoEm', '6701109'), + (553, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41G2ZoEm', '6705219'), + (553, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41G2ZoEm', '6710153'), + (553, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41G2ZoEm', '6711552'), + (553, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '41G2ZoEm', '6711553'), + (553, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41G2ZoEm', '6722688'), + (553, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41G2ZoEm', '6730620'), + (553, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '41G2ZoEm', '6730642'), + (553, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41G2ZoEm', '6740364'), + (553, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41G2ZoEm', '6743829'), + (553, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41G2ZoEm', '7030380'), + (553, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41G2ZoEm', '7033677'), + (553, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '41G2ZoEm', '7035415'), + (553, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '41G2ZoEm', '7044715'), + (553, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '41G2ZoEm', '7050318'), + (553, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '41G2ZoEm', '7050319'), + (553, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '41G2ZoEm', '7050322'), + (553, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '41G2ZoEm', '7057804'), + (553, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '41G2ZoEm', '7072824'), + (553, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '41G2ZoEm', '7074348'), + (553, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '41G2ZoEm', '7089267'), + (553, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '41G2ZoEm', '7098747'), + (553, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '41G2ZoEm', '7113468'), + (553, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '41G2ZoEm', '7114856'), + (553, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '41G2ZoEm', '7114951'), + (553, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '41G2ZoEm', '7114955'), + (553, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '41G2ZoEm', '7114956'), + (553, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '41G2ZoEm', '7153615'), + (553, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '41G2ZoEm', '7159484'), + (553, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '41G2ZoEm', '7178446'), + (554, 1274, 'attending', '2022-04-02 14:42:26', '2025-12-17 19:47:26', 'dVb1zMpd', '5186585'), + (554, 1281, 'attending', '2022-04-09 22:23:59', '2025-12-17 19:47:27', 'dVb1zMpd', '5190437'), + (554, 1284, 'attending', '2022-04-10 03:21:26', '2025-12-17 19:47:27', 'dVb1zMpd', '5195095'), + (554, 1302, 'maybe', '2022-04-09 09:29:21', '2025-12-17 19:47:27', 'dVb1zMpd', '5220867'), + (554, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVb1zMpd', '5223686'), + (554, 1308, 'maybe', '2022-04-13 11:06:14', '2025-12-17 19:47:27', 'dVb1zMpd', '5226703'), + (554, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVb1zMpd', '5227432'), + (554, 1315, 'maybe', '2022-04-11 03:20:30', '2025-12-17 19:47:27', 'dVb1zMpd', '5237522'), + (554, 1320, 'not_attending', '2022-04-24 02:38:22', '2025-12-17 19:47:27', 'dVb1zMpd', '5238354'), + (554, 1322, 'attending', '2022-04-11 13:26:37', '2025-12-17 19:47:27', 'dVb1zMpd', '5238356'), + (554, 1323, 'attending', '2022-04-27 00:16:01', '2025-12-17 19:47:27', 'dVb1zMpd', '5238357'), + (554, 1326, 'not_attending', '2022-04-25 02:47:15', '2025-12-17 19:47:28', 'dVb1zMpd', '5238362'), + (554, 1327, 'not_attending', '2022-04-25 22:42:16', '2025-12-17 19:47:27', 'dVb1zMpd', '5238445'), + (554, 1331, 'attending', '2022-04-20 13:09:16', '2025-12-17 19:47:27', 'dVb1zMpd', '5242156'), + (554, 1332, 'maybe', '2022-04-15 07:05:39', '2025-12-17 19:47:27', 'dVb1zMpd', '5243274'), + (554, 1340, 'attending', '2022-04-25 02:46:40', '2025-12-17 19:47:27', 'dVb1zMpd', '5245754'), + (554, 1341, 'not_attending', '2022-05-01 03:05:00', '2025-12-17 19:47:28', 'dVb1zMpd', '5245755'), + (554, 1346, 'attending', '2022-04-22 22:56:12', '2025-12-17 19:47:27', 'dVb1zMpd', '5247467'), + (554, 1348, 'maybe', '2022-05-01 03:05:27', '2025-12-17 19:47:28', 'dVb1zMpd', '5247605'), + (554, 1351, 'maybe', '2022-05-02 16:03:41', '2025-12-17 19:47:28', 'dVb1zMpd', '5251561'), + (554, 1360, 'maybe', '2022-04-27 00:15:47', '2025-12-17 19:47:27', 'dVb1zMpd', '5260197'), + (554, 1362, 'attending', '2022-04-25 23:03:49', '2025-12-17 19:47:28', 'dVb1zMpd', '5260800'), + (554, 1364, 'maybe', '2022-05-03 18:01:18', '2025-12-17 19:47:28', 'dVb1zMpd', '5261598'), + (554, 1368, 'attending', '2022-04-29 01:48:30', '2025-12-17 19:47:28', 'dVb1zMpd', '5262783'), + (554, 1372, 'attending', '2022-05-01 02:35:57', '2025-12-17 19:47:28', 'dVb1zMpd', '5264352'), + (554, 1374, 'attending', '2022-05-01 02:35:34', '2025-12-17 19:47:28', 'dVb1zMpd', '5269930'), + (554, 1375, 'attending', '2022-05-05 18:00:07', '2025-12-17 19:47:28', 'dVb1zMpd', '5269932'), + (554, 1378, 'attending', '2022-05-04 16:29:35', '2025-12-17 19:47:28', 'dVb1zMpd', '5271448'), + (554, 1379, 'attending', '2022-05-04 16:29:38', '2025-12-17 19:47:29', 'dVb1zMpd', '5271449'), + (554, 1380, 'attending', '2022-05-28 08:15:05', '2025-12-17 19:47:30', 'dVb1zMpd', '5271450'), + (554, 1382, 'attending', '2022-05-09 11:43:14', '2025-12-17 19:47:28', 'dVb1zMpd', '5276350'), + (554, 1383, 'attending', '2022-05-12 11:28:12', '2025-12-17 19:47:28', 'dVb1zMpd', '5276469'), + (554, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVb1zMpd', '5278159'), + (554, 1391, 'not_attending', '2022-05-08 06:20:12', '2025-12-17 19:47:28', 'dVb1zMpd', '5279531'), + (554, 1392, 'attending', '2022-05-10 22:39:51', '2025-12-17 19:47:28', 'dVb1zMpd', '5279532'), + (554, 1401, 'attending', '2022-05-18 16:37:18', '2025-12-17 19:47:29', 'dVb1zMpd', '5286295'), + (554, 1403, 'maybe', '2022-05-21 02:22:19', '2025-12-17 19:47:29', 'dVb1zMpd', '5288052'), + (554, 1406, 'attending', '2022-05-15 02:45:32', '2025-12-17 19:47:29', 'dVb1zMpd', '5288619'), + (554, 1407, 'attending', '2022-05-29 13:01:40', '2025-12-17 19:47:30', 'dVb1zMpd', '5363695'), + (554, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVb1zMpd', '5365960'), + (554, 1409, 'maybe', '2022-05-21 02:18:18', '2025-12-17 19:47:30', 'dVb1zMpd', '5367032'), + (554, 1412, 'not_attending', '2022-05-18 16:36:44', '2025-12-17 19:47:29', 'dVb1zMpd', '5367532'), + (554, 1414, 'attending', '2022-05-18 16:37:41', '2025-12-17 19:47:29', 'dVb1zMpd', '5368445'), + (554, 1415, 'attending', '2022-05-22 14:17:48', '2025-12-17 19:47:30', 'dVb1zMpd', '5368973'), + (554, 1419, 'attending', '2022-06-08 06:35:51', '2025-12-17 19:47:30', 'dVb1zMpd', '5373081'), + (554, 1423, 'maybe', '2022-06-13 01:30:05', '2025-12-17 19:47:17', 'dVb1zMpd', '5375727'), + (554, 1424, 'attending', '2022-05-24 02:51:13', '2025-12-17 19:47:30', 'dVb1zMpd', '5375772'), + (554, 1427, 'not_attending', '2022-05-25 16:59:04', '2025-12-17 19:47:30', 'dVb1zMpd', '5376074'), + (554, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVb1zMpd', '5378247'), + (554, 1431, 'attending', '2022-06-02 17:47:25', '2025-12-17 19:47:30', 'dVb1zMpd', '5389605'), + (554, 1436, 'attending', '2022-06-01 05:46:22', '2025-12-17 19:47:30', 'dVb1zMpd', '5394292'), + (554, 1438, 'maybe', '2022-06-01 16:46:29', '2025-12-17 19:47:30', 'dVb1zMpd', '5395032'), + (554, 1440, 'not_attending', '2022-06-08 02:40:59', '2025-12-17 19:47:30', 'dVb1zMpd', '5396080'), + (554, 1442, 'attending', '2022-06-12 05:44:25', '2025-12-17 19:47:17', 'dVb1zMpd', '5397265'), + (554, 1444, 'maybe', '2022-06-11 17:34:16', '2025-12-17 19:47:30', 'dVb1zMpd', '5397614'), + (554, 1451, 'attending', '2022-06-10 03:14:57', '2025-12-17 19:47:17', 'dVb1zMpd', '5403967'), + (554, 1454, 'attending', '2022-06-12 05:40:36', '2025-12-17 19:47:31', 'dVb1zMpd', '5404771'), + (554, 1455, 'attending', '2022-06-12 05:40:19', '2025-12-17 19:47:31', 'dVb1zMpd', '5404772'), + (554, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVb1zMpd', '5404786'), + (554, 1460, 'maybe', '2022-06-12 05:28:15', '2025-12-17 19:47:31', 'dVb1zMpd', '5404817'), + (554, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVb1zMpd', '5405203'), + (554, 1463, 'maybe', '2022-06-13 04:05:10', '2025-12-17 19:47:31', 'dVb1zMpd', '5405208'), + (554, 1466, 'maybe', '2022-06-16 05:10:16', '2025-12-17 19:47:17', 'dVb1zMpd', '5406427'), + (554, 1473, 'attending', '2022-06-13 03:51:02', '2025-12-17 19:47:31', 'dVb1zMpd', '5407267'), + (554, 1475, 'attending', '2022-06-14 05:24:05', '2025-12-17 19:47:17', 'dVb1zMpd', '5408108'), + (554, 1478, 'maybe', '2022-06-15 08:28:48', '2025-12-17 19:47:19', 'dVb1zMpd', '5408794'), + (554, 1480, 'attending', '2022-06-22 09:12:07', '2025-12-17 19:47:19', 'dVb1zMpd', '5411699'), + (554, 1482, 'not_attending', '2022-06-26 02:29:29', '2025-12-17 19:47:19', 'dVb1zMpd', '5412550'), + (554, 1484, 'attending', '2022-06-22 09:11:08', '2025-12-17 19:47:17', 'dVb1zMpd', '5415046'), + (554, 1485, 'not_attending', '2022-06-24 14:11:08', '2025-12-17 19:47:17', 'dVb1zMpd', '5416276'), + (554, 1488, 'maybe', '2022-07-04 17:59:32', '2025-12-17 19:47:19', 'dVb1zMpd', '5420154'), + (554, 1490, 'attending', '2022-06-28 15:48:43', '2025-12-17 19:47:19', 'dVb1zMpd', '5420156'), + (554, 1495, 'maybe', '2022-07-06 02:05:22', '2025-12-17 19:47:19', 'dVb1zMpd', '5422086'), + (554, 1496, 'attending', '2022-06-26 14:46:30', '2025-12-17 19:47:19', 'dVb1zMpd', '5422404'), + (554, 1498, 'maybe', '2022-07-02 14:47:41', '2025-12-17 19:47:19', 'dVb1zMpd', '5422406'), + (554, 1501, 'attending', '2022-06-28 15:47:11', '2025-12-17 19:47:19', 'dVb1zMpd', '5424546'), + (554, 1502, 'maybe', '2022-06-28 17:51:13', '2025-12-17 19:47:19', 'dVb1zMpd', '5424565'), + (554, 1504, 'attending', '2022-07-05 19:08:34', '2025-12-17 19:47:19', 'dVb1zMpd', '5426882'), + (554, 1505, 'attending', '2022-07-05 10:28:06', '2025-12-17 19:47:19', 'dVb1zMpd', '5427083'), + (554, 1508, 'attending', '2022-07-10 03:20:53', '2025-12-17 19:47:19', 'dVb1zMpd', '5433453'), + (554, 1509, 'maybe', '2022-07-06 02:02:37', '2025-12-17 19:47:19', 'dVb1zMpd', '5434019'), + (554, 1511, 'attending', '2022-07-08 15:28:40', '2025-12-17 19:47:19', 'dVb1zMpd', '5437733'), + (554, 1513, 'attending', '2022-07-09 06:09:15', '2025-12-17 19:47:19', 'dVb1zMpd', '5441125'), + (554, 1514, 'attending', '2022-07-09 06:10:32', '2025-12-17 19:47:20', 'dVb1zMpd', '5441126'), + (554, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVb1zMpd', '5441128'), + (554, 1516, 'attending', '2022-08-06 22:12:28', '2025-12-17 19:47:23', 'dVb1zMpd', '5441129'), + (554, 1517, 'attending', '2022-08-06 22:12:32', '2025-12-17 19:47:23', 'dVb1zMpd', '5441130'), + (554, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVb1zMpd', '5441131'), + (554, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dVb1zMpd', '5441132'), + (554, 1520, 'maybe', '2022-07-10 03:45:39', '2025-12-17 19:47:19', 'dVb1zMpd', '5441645'), + (554, 1528, 'attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVb1zMpd', '5446643'), + (554, 1531, 'maybe', '2022-07-16 16:20:06', '2025-12-17 19:47:19', 'dVb1zMpd', '5448756'), + (554, 1536, 'attending', '2022-07-16 16:30:20', '2025-12-17 19:47:20', 'dVb1zMpd', '5449068'), + (554, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVb1zMpd', '5453325'), + (554, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVb1zMpd', '5454516'), + (554, 1544, 'attending', '2022-09-03 18:04:54', '2025-12-17 19:47:11', 'dVb1zMpd', '5454517'), + (554, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVb1zMpd', '5454605'), + (554, 1546, 'maybe', '2022-07-20 17:22:47', '2025-12-17 19:47:20', 'dVb1zMpd', '5454607'), + (554, 1547, 'not_attending', '2022-07-23 00:22:18', '2025-12-17 19:47:20', 'dVb1zMpd', '5454608'), + (554, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVb1zMpd', '5455037'), + (554, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVb1zMpd', '5461278'), + (554, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVb1zMpd', '5469480'), + (554, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVb1zMpd', '5471073'), + (554, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVb1zMpd', '5474663'), + (554, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVb1zMpd', '5482022'), + (554, 1575, 'attending', '2022-08-23 09:47:14', '2025-12-17 19:47:23', 'dVb1zMpd', '5482250'), + (554, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVb1zMpd', '5482793'), + (554, 1580, 'attending', '2022-08-08 05:15:56', '2025-12-17 19:47:22', 'dVb1zMpd', '5488912'), + (554, 1584, 'maybe', '2022-08-27 15:43:30', '2025-12-17 19:47:23', 'dVb1zMpd', '5492004'), + (554, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVb1zMpd', '5492192'), + (554, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVb1zMpd', '5493139'), + (554, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVb1zMpd', '5493200'), + (554, 1603, 'maybe', '2022-08-12 03:28:56', '2025-12-17 19:47:23', 'dVb1zMpd', '5497895'), + (554, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVb1zMpd', '5502188'), + (554, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVb1zMpd', '5505059'), + (554, 1615, 'attending', '2022-08-31 05:28:18', '2025-12-17 19:47:23', 'dVb1zMpd', '5509055'), + (554, 1619, 'maybe', '2022-08-23 09:47:33', '2025-12-17 19:47:23', 'dVb1zMpd', '5512862'), + (554, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVb1zMpd', '5513985'), + (554, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dVb1zMpd', '5519981'), + (554, 1628, 'maybe', '2022-08-27 12:35:32', '2025-12-17 19:47:23', 'dVb1zMpd', '5522500'), + (554, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVb1zMpd', '5522550'), + (554, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVb1zMpd', '5534683'), + (554, 1631, 'attending', '2022-08-27 12:33:13', '2025-12-17 19:47:23', 'dVb1zMpd', '5534684'), + (554, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVb1zMpd', '5537735'), + (554, 1637, 'attending', '2022-08-30 17:18:04', '2025-12-17 19:47:24', 'dVb1zMpd', '5539591'), + (554, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVb1zMpd', '5540859'), + (554, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVb1zMpd', '5546619'), + (554, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVb1zMpd', '5555245'), + (554, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVb1zMpd', '5557747'), + (554, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVb1zMpd', '5560255'), + (554, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVb1zMpd', '5562906'), + (554, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVb1zMpd', '5600604'), + (554, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVb1zMpd', '5605544'), + (554, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'dVb1zMpd', '5606737'), + (554, 1719, 'maybe', '2022-10-07 08:22:40', '2025-12-17 19:47:12', 'dVb1zMpd', '5630958'), + (554, 1720, 'maybe', '2022-10-15 07:30:32', '2025-12-17 19:47:12', 'dVb1zMpd', '5630959'), + (554, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVb1zMpd', '5630960'), + (554, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVb1zMpd', '5630961'), + (554, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVb1zMpd', '5630962'), + (554, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVb1zMpd', '5630966'), + (554, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVb1zMpd', '5630967'), + (554, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVb1zMpd', '5630968'), + (554, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVb1zMpd', '5635406'), + (554, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVb1zMpd', '5638765'), + (554, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVb1zMpd', '5640097'), + (554, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVb1zMpd', '5640843'), + (554, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVb1zMpd', '5641521'), + (554, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVb1zMpd', '5642818'), + (554, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVb1zMpd', '5652395'), + (554, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVb1zMpd', '5670445'), + (554, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVb1zMpd', '5671637'), + (554, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVb1zMpd', '5672329'), + (554, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVb1zMpd', '5674057'), + (554, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVb1zMpd', '5674060'), + (554, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVb1zMpd', '5677461'), + (554, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVb1zMpd', '5698046'), + (554, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVb1zMpd', '5699760'), + (554, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVb1zMpd', '5741601'), + (554, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVb1zMpd', '5763458'), + (554, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVb1zMpd', '5774172'), + (554, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVb1zMpd', '5818247'), + (554, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVb1zMpd', '5819471'), + (554, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVb1zMpd', '5827739'), + (554, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVb1zMpd', '5844306'), + (554, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVb1zMpd', '5850159'), + (554, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVb1zMpd', '5858999'), + (554, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVb1zMpd', '5871984'), + (554, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVb1zMpd', '5876354'), + (554, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVb1zMpd', '5880939'), + (554, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVb1zMpd', '5887890'), + (554, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVb1zMpd', '5888598'), + (554, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVb1zMpd', '5893260'), + (554, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVb1zMpd', '6045684'), + (554, 2065, 'attending', '2023-06-15 02:26:56', '2025-12-17 19:46:49', 'dVb1zMpd', '6101169'), + (554, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dVb1zMpd', '6150864'), + (554, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dVb1zMpd', '6155491'), + (554, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dVb1zMpd', '6164417'), + (554, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dVb1zMpd', '6166388'), + (554, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dVb1zMpd', '6176439'), + (554, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dVb1zMpd', '6182410'), + (554, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dVb1zMpd', '6185812'), + (554, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dVb1zMpd', '6187651'), + (554, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dVb1zMpd', '6187963'), + (554, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dVb1zMpd', '6187964'), + (554, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dVb1zMpd', '6187966'), + (554, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dVb1zMpd', '6187967'), + (554, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dVb1zMpd', '6187969'), + (554, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dVb1zMpd', '6334878'), + (554, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVb1zMpd', '6337236'), + (554, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVb1zMpd', '6337970'), + (554, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dVb1zMpd', '6338308'), + (554, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVb1zMpd', '6340845'), + (554, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVb1zMpd', '6341710'), + (554, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVb1zMpd', '6342044'), + (554, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVb1zMpd', '6342298'), + (554, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dVb1zMpd', '6343294'), + (554, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVb1zMpd', '6347034'), + (554, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVb1zMpd', '6347056'), + (554, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVb1zMpd', '6353830'), + (554, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVb1zMpd', '6353831'), + (554, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVb1zMpd', '6357867'), + (554, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVb1zMpd', '6358652'), + (554, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVb1zMpd', '6361709'), + (554, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVb1zMpd', '6361710'), + (554, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVb1zMpd', '6361711'), + (554, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVb1zMpd', '6361712'), + (554, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVb1zMpd', '6361713'), + (554, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVb1zMpd', '6382573'), + (554, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVb1zMpd', '6388604'), + (554, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVb1zMpd', '6394629'), + (554, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVb1zMpd', '6394631'), + (554, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVb1zMpd', '6440863'), + (554, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVb1zMpd', '6445440'), + (554, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVb1zMpd', '6453951'), + (554, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVb1zMpd', '6461696'), + (554, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVb1zMpd', '6462129'), + (554, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVb1zMpd', '6463218'), + (554, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVb1zMpd', '6472181'), + (554, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVb1zMpd', '6482693'), + (554, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dVb1zMpd', '6484200'), + (554, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dVb1zMpd', '6484680'), + (554, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVb1zMpd', '6507741'), + (554, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVb1zMpd', '6514659'), + (554, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVb1zMpd', '6514660'), + (554, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVb1zMpd', '6519103'), + (554, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVb1zMpd', '6535681'), + (554, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVb1zMpd', '6584747'), + (554, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVb1zMpd', '6587097'), + (554, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVb1zMpd', '6609022'), + (554, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVb1zMpd', '6632757'), + (554, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVb1zMpd', '6644187'), + (554, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVb1zMpd', '6648951'), + (554, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVb1zMpd', '6648952'), + (554, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVb1zMpd', '6655401'), + (554, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVb1zMpd', '6661585'), + (554, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVb1zMpd', '6661588'), + (554, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVb1zMpd', '6661589'), + (554, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVb1zMpd', '6699906'), + (554, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVb1zMpd', '6701109'), + (554, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVb1zMpd', '6705219'), + (554, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVb1zMpd', '6710153'), + (554, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVb1zMpd', '6711552'), + (554, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVb1zMpd', '6711553'), + (556, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AnjKD2pA', '7074364'), + (556, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AnjKD2pA', '7324073'), + (556, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AnjKD2pA', '7324074'), + (556, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AnjKD2pA', '7324075'), + (556, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AnjKD2pA', '7324078'), + (556, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AnjKD2pA', '7324082'), + (556, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AnjKD2pA', '7331457'), + (556, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AnjKD2pA', '7363643'), + (556, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AnjKD2pA', '7368606'), + (556, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AnjKD2pA', '7397462'), + (556, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AnjKD2pA', '7424275'), + (556, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AnjKD2pA', '7424276'), + (556, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AnjKD2pA', '7432751'), + (556, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AnjKD2pA', '7432752'), + (556, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AnjKD2pA', '7432753'), + (556, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AnjKD2pA', '7432754'), + (556, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AnjKD2pA', '7432755'), + (556, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AnjKD2pA', '7432756'), + (556, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AnjKD2pA', '7432758'), + (556, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AnjKD2pA', '7432759'), + (556, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AnjKD2pA', '7433834'), + (556, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AnjKD2pA', '7470197'), + (556, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AnjKD2pA', '7685613'), + (556, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AnjKD2pA', '7688194'), + (556, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AnjKD2pA', '7688196'), + (556, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AnjKD2pA', '7688289'), + (556, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AnjKD2pA', '7692763'), + (556, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AnjKD2pA', '7697552'), + (556, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AnjKD2pA', '7699878'), + (556, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AnjKD2pA', '7704043'), + (556, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AnjKD2pA', '7712467'), + (556, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'AnjKD2pA', '7713585'), + (556, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AnjKD2pA', '7713586'), + (556, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AnjKD2pA', '7738518'), + (556, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AnjKD2pA', '7750636'), + (556, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AnjKD2pA', '7796540'), + (556, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AnjKD2pA', '7796541'), + (556, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AnjKD2pA', '7796542'), + (556, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AnjKD2pA', '7825913'), + (556, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AnjKD2pA', '7826209'), + (556, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AnjKD2pA', '7834742'), + (556, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AnjKD2pA', '7842108'), + (556, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AnjKD2pA', '7842902'), + (556, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AnjKD2pA', '7842903'), + (556, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AnjKD2pA', '7842904'), + (556, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AnjKD2pA', '7842905'), + (556, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AnjKD2pA', '7855719'), + (556, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AnjKD2pA', '7860683'), + (556, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AnjKD2pA', '7860684'), + (556, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AnjKD2pA', '7866095'), + (556, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AnjKD2pA', '7869170'), + (556, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AnjKD2pA', '7869188'), + (556, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AnjKD2pA', '7869201'), + (556, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AnjKD2pA', '7877465'), + (556, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AnjKD2pA', '7888250'), + (556, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AnjKD2pA', '7904777'), + (556, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AnjKD2pA', '8349164'), + (556, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AnjKD2pA', '8349545'), + (556, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AnjKD2pA', '8353584'), + (556, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AnjKD2pA', '8368028'), + (556, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AnjKD2pA', '8368029'), + (556, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AnjKD2pA', '8388462'), + (556, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AnjKD2pA', '8400273'), + (556, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AnjKD2pA', '8400274'), + (556, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AnjKD2pA', '8400275'), + (556, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AnjKD2pA', '8400276'), + (556, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AnjKD2pA', '8404977'), + (556, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AnjKD2pA', '8430783'), + (556, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AnjKD2pA', '8430784'), + (556, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AnjKD2pA', '8430799'), + (556, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AnjKD2pA', '8430800'), + (556, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AnjKD2pA', '8430801'), + (556, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AnjKD2pA', '8438709'), + (556, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AnjKD2pA', '8457738'), + (556, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AnjKD2pA', '8459566'), + (556, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AnjKD2pA', '8459567'), + (556, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AnjKD2pA', '8461032'), + (556, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnjKD2pA', '8477877'), + (556, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnjKD2pA', '8485688'), + (556, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnjKD2pA', '8490587'), + (556, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnjKD2pA', '8493552'), + (556, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnjKD2pA', '8493553'), + (556, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnjKD2pA', '8493554'), + (556, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnjKD2pA', '8493555'), + (556, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnjKD2pA', '8493556'), + (556, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnjKD2pA', '8493557'), + (556, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnjKD2pA', '8493558'), + (556, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnjKD2pA', '8493559'), + (556, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnjKD2pA', '8493560'), + (556, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnjKD2pA', '8493561'), + (556, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnjKD2pA', '8493572'), + (556, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnjKD2pA', '8540725'), + (556, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnjKD2pA', '8555421'), + (557, 791, 'maybe', '2021-05-10 22:10:00', '2025-12-17 19:47:46', '8d8PrVvd', '3792735'), + (557, 792, 'maybe', '2021-05-07 17:57:03', '2025-12-17 19:47:46', '8d8PrVvd', '3793156'), + (557, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '8d8PrVvd', '5630966'), + (557, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '8d8PrVvd', '5630967'), + (557, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '8d8PrVvd', '5630968'), + (557, 1727, 'maybe', '2022-12-01 22:57:37', '2025-12-17 19:47:16', '8d8PrVvd', '5630969'), + (557, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '8d8PrVvd', '5642818'), + (557, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '8d8PrVvd', '5670445'), + (557, 1777, 'maybe', '2022-11-07 04:56:28', '2025-12-17 19:47:15', '8d8PrVvd', '5693021'), + (557, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '8d8PrVvd', '5699760'), + (557, 1785, 'attending', '2022-11-15 23:10:33', '2025-12-17 19:47:15', '8d8PrVvd', '5702414'), + (557, 1786, 'not_attending', '2022-11-08 23:40:43', '2025-12-17 19:47:15', '8d8PrVvd', '5727232'), + (557, 1789, 'attending', '2022-11-07 04:47:34', '2025-12-17 19:47:15', '8d8PrVvd', '5727274'), + (557, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '8d8PrVvd', '5741601'), + (557, 1795, 'maybe', '2022-11-17 10:53:21', '2025-12-17 19:47:16', '8d8PrVvd', '5754366'), + (557, 1798, 'maybe', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '8d8PrVvd', '5763458'), + (557, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '8d8PrVvd', '5774172'), + (557, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '8d8PrVvd', '5818247'), + (557, 1834, 'not_attending', '2022-12-07 22:18:27', '2025-12-17 19:47:17', '8d8PrVvd', '5819470'), + (557, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '8d8PrVvd', '5819471'), + (557, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '8d8PrVvd', '5827739'), + (557, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '8d8PrVvd', '5844306'), + (557, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '8d8PrVvd', '5850159'), + (557, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '8d8PrVvd', '5858999'), + (557, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '8d8PrVvd', '5871984'), + (557, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '8d8PrVvd', '5876354'), + (557, 1864, 'attending', '2023-01-21 20:02:49', '2025-12-17 19:47:05', '8d8PrVvd', '5879675'), + (557, 1865, 'maybe', '2023-01-27 23:54:18', '2025-12-17 19:47:06', '8d8PrVvd', '5879676'), + (557, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '8d8PrVvd', '5880939'), + (557, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '8d8PrVvd', '5880940'), + (557, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '8d8PrVvd', '5880942'), + (557, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '8d8PrVvd', '5880943'), + (557, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '8d8PrVvd', '5887890'), + (557, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '8d8PrVvd', '5888598'), + (557, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '8d8PrVvd', '5893260'), + (557, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '8d8PrVvd', '5899826'), + (557, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '8d8PrVvd', '5900199'), + (557, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '8d8PrVvd', '5900200'), + (557, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '8d8PrVvd', '5900202'), + (557, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '8d8PrVvd', '5900203'), + (557, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '8d8PrVvd', '5901108'), + (557, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '8d8PrVvd', '5901126'), + (557, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '8d8PrVvd', '5909655'), + (557, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '8d8PrVvd', '5910522'), + (557, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '8d8PrVvd', '5910526'), + (557, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '8d8PrVvd', '5910528'), + (557, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '8d8PrVvd', '5916219'), + (557, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '8d8PrVvd', '5936234'), + (557, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '8d8PrVvd', '5958351'), + (557, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '8d8PrVvd', '5959751'), + (557, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '8d8PrVvd', '5959755'), + (557, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '8d8PrVvd', '5960055'), + (557, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '8d8PrVvd', '5961684'), + (557, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '8d8PrVvd', '5962132'), + (557, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '8d8PrVvd', '5962133'), + (557, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '8d8PrVvd', '5962134'), + (557, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '8d8PrVvd', '5962317'), + (557, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '8d8PrVvd', '5962318'), + (557, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '8d8PrVvd', '5965933'), + (557, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '8d8PrVvd', '5967014'), + (557, 1955, 'maybe', '2023-03-28 22:40:38', '2025-12-17 19:46:57', '8d8PrVvd', '5972529'), + (557, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '8d8PrVvd', '5972815'), + (557, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '8d8PrVvd', '5974016'), + (557, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '8d8PrVvd', '5975052'), + (557, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '8d8PrVvd', '5975054'), + (557, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '8d8PrVvd', '5981515'), + (557, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '8d8PrVvd', '5993516'), + (557, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '8d8PrVvd', '5998939'), + (557, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '8d8PrVvd', '6028191'), + (557, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '8d8PrVvd', '6040066'), + (557, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '8d8PrVvd', '6042717'), + (557, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '8d8PrVvd', '6044838'), + (557, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '8d8PrVvd', '6044839'), + (557, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8d8PrVvd', '6045684'), + (557, 1991, 'attending', '2023-04-02 05:19:11', '2025-12-17 19:46:58', '8d8PrVvd', '6047354'), + (557, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '8d8PrVvd', '6050104'), + (557, 1995, 'attending', '2023-04-02 20:15:38', '2025-12-17 19:46:58', '8d8PrVvd', '6050663'), + (557, 1996, 'attending', '2023-04-03 21:36:20', '2025-12-17 19:46:58', '8d8PrVvd', '6050667'), + (557, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '8d8PrVvd', '6053195'), + (557, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '8d8PrVvd', '6053198'), + (557, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '8d8PrVvd', '6056085'), + (557, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '8d8PrVvd', '6056916'), + (557, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '8d8PrVvd', '6059290'), + (557, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '8d8PrVvd', '6060328'), + (557, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '8d8PrVvd', '6061037'), + (557, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '8d8PrVvd', '6061039'), + (557, 2020, 'not_attending', '2023-04-14 17:15:22', '2025-12-17 19:46:59', '8d8PrVvd', '6065813'), + (557, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8d8PrVvd', '6067245'), + (557, 2024, 'attending', '2023-04-17 01:37:12', '2025-12-17 19:47:00', '8d8PrVvd', '6067437'), + (557, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '8d8PrVvd', '6068094'), + (557, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '8d8PrVvd', '6068252'), + (557, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '8d8PrVvd', '6068253'), + (557, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '8d8PrVvd', '6068254'), + (557, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '8d8PrVvd', '6068280'), + (557, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '8d8PrVvd', '6069093'), + (557, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '8d8PrVvd', '6072528'), + (557, 2043, 'attending', '2023-04-26 17:16:18', '2025-12-17 19:47:01', '8d8PrVvd', '6073023'), + (557, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '8d8PrVvd', '6075556'), + (557, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '8d8PrVvd', '6079840'), + (557, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '8d8PrVvd', '6083398'), + (557, 2052, 'maybe', '2023-05-06 01:54:18', '2025-12-17 19:47:02', '8d8PrVvd', '6088220'), + (557, 2053, 'attending', '2023-05-08 21:39:52', '2025-12-17 19:47:02', '8d8PrVvd', '6092644'), + (557, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '8d8PrVvd', '6093504'), + (557, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '8d8PrVvd', '6097414'), + (557, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '8d8PrVvd', '6097442'), + (557, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '8d8PrVvd', '6097684'), + (557, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '8d8PrVvd', '6098762'), + (557, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '8d8PrVvd', '6101361'), + (557, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8d8PrVvd', '6101362'), + (557, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8d8PrVvd', '6107314'), + (557, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '8d8PrVvd', '6120034'), + (557, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '8d8PrVvd', '6136733'), + (557, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '8d8PrVvd', '6137989'), + (557, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '8d8PrVvd', '6150864'), + (557, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '8d8PrVvd', '6155491'), + (557, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '8d8PrVvd', '6164417'), + (557, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '8d8PrVvd', '6166388'), + (557, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '8d8PrVvd', '6176439'), + (557, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '8d8PrVvd', '6182410'), + (557, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '8d8PrVvd', '6185812'), + (557, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '8d8PrVvd', '6187651'), + (557, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '8d8PrVvd', '6187963'), + (557, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '8d8PrVvd', '6187964'), + (557, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '8d8PrVvd', '6187966'), + (557, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '8d8PrVvd', '6187967'), + (557, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '8d8PrVvd', '6187969'), + (557, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '8d8PrVvd', '6334878'), + (557, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '8d8PrVvd', '6337236'), + (557, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '8d8PrVvd', '6337970'), + (557, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '8d8PrVvd', '6338308'), + (557, 2157, 'not_attending', '2023-07-12 21:53:33', '2025-12-17 19:46:52', '8d8PrVvd', '6338342'), + (557, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '8d8PrVvd', '6341710'), + (557, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '8d8PrVvd', '6342044'), + (557, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '8d8PrVvd', '6342298'), + (557, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '8d8PrVvd', '6343294'), + (557, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '8d8PrVvd', '6347034'), + (557, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '8d8PrVvd', '6347056'), + (557, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '8d8PrVvd', '6353830'), + (557, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '8d8PrVvd', '6353831'), + (557, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '8d8PrVvd', '6357867'), + (557, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '8d8PrVvd', '6358652'), + (557, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '8d8PrVvd', '6358668'), + (557, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '8d8PrVvd', '6358669'), + (557, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '8d8PrVvd', '6361709'), + (557, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '8d8PrVvd', '6361710'), + (557, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '8d8PrVvd', '6361711'), + (557, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '8d8PrVvd', '6361712'), + (557, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '8d8PrVvd', '6361713'), + (557, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '8d8PrVvd', '6382573'), + (557, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '8d8PrVvd', '6388604'), + (557, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '8d8PrVvd', '6394629'), + (557, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '8d8PrVvd', '6394631'), + (557, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '8d8PrVvd', '6440863'), + (557, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '8d8PrVvd', '6445440'), + (557, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '8d8PrVvd', '6453951'), + (557, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '8d8PrVvd', '6461696'), + (557, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '8d8PrVvd', '6462129'), + (557, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '8d8PrVvd', '6463218'), + (557, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '8d8PrVvd', '6472181'), + (557, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '8d8PrVvd', '6482693'), + (557, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '8d8PrVvd', '6484200'), + (557, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '8d8PrVvd', '6484680'), + (557, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '8d8PrVvd', '6507741'), + (557, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '8d8PrVvd', '6514659'), + (557, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '8d8PrVvd', '6514660'), + (557, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '8d8PrVvd', '6519103'), + (557, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '8d8PrVvd', '6535681'), + (557, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '8d8PrVvd', '6584747'), + (557, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '8d8PrVvd', '6587097'), + (557, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '8d8PrVvd', '6609022'), + (557, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '8d8PrVvd', '6632757'), + (557, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '8d8PrVvd', '6644187'), + (557, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '8d8PrVvd', '6648951'), + (557, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '8d8PrVvd', '6648952'), + (557, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '8d8PrVvd', '6655401'), + (557, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '8d8PrVvd', '6661585'), + (557, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '8d8PrVvd', '6661588'), + (557, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '8d8PrVvd', '6661589'), + (557, 2404, 'attending', '2024-01-15 23:39:14', '2025-12-17 19:46:38', '8d8PrVvd', '6666858'), + (557, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '8d8PrVvd', '6699906'), + (557, 2408, 'attending', '2024-01-27 17:45:33', '2025-12-17 19:46:40', '8d8PrVvd', '6699907'), + (557, 2409, 'attending', '2024-02-03 02:57:18', '2025-12-17 19:46:41', '8d8PrVvd', '6699909'), + (557, 2410, 'attending', '2024-02-07 23:52:26', '2025-12-17 19:46:41', '8d8PrVvd', '6699911'), + (557, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '8d8PrVvd', '6699913'), + (557, 2413, 'attending', '2024-02-16 00:01:25', '2025-12-17 19:46:42', '8d8PrVvd', '6700719'), + (557, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '8d8PrVvd', '6701109'), + (557, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '8d8PrVvd', '6705219'), + (557, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '8d8PrVvd', '6710153'), + (557, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '8d8PrVvd', '6711552'), + (557, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '8d8PrVvd', '6711553'), + (557, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '8d8PrVvd', '6722688'), + (557, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '8d8PrVvd', '6730620'), + (557, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '8d8PrVvd', '6730642'), + (557, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '8d8PrVvd', '6740364'), + (557, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '8d8PrVvd', '6743829'), + (557, 2467, 'attending', '2024-02-16 19:13:22', '2025-12-17 19:46:43', '8d8PrVvd', '7029987'), + (557, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '8d8PrVvd', '7030380'), + (557, 2471, 'attending', '2024-02-18 20:10:22', '2025-12-17 19:46:42', '8d8PrVvd', '7032425'), + (557, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '8d8PrVvd', '7033677'), + (557, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '8d8PrVvd', '7035415'), + (557, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '8d8PrVvd', '7044715'), + (557, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '8d8PrVvd', '7050318'), + (557, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '8d8PrVvd', '7050319'), + (557, 2492, 'maybe', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '8d8PrVvd', '7050322'), + (557, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '8d8PrVvd', '7057804'), + (557, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '8d8PrVvd', '7072824'), + (557, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '8d8PrVvd', '7074348'), + (557, 2537, 'maybe', '2024-03-16 16:37:35', '2025-12-17 19:46:33', '8d8PrVvd', '7085484'), + (557, 2539, 'attending', '2024-04-01 15:56:33', '2025-12-17 19:46:33', '8d8PrVvd', '7085486'), + (557, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '8d8PrVvd', '7089267'), + (557, 2543, 'maybe', '2024-04-05 16:17:18', '2025-12-17 19:46:33', '8d8PrVvd', '7091456'), + (557, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '8d8PrVvd', '7098747'), + (557, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '8d8PrVvd', '7113468'), + (557, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '8d8PrVvd', '7114856'), + (557, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', '8d8PrVvd', '7114951'), + (557, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '8d8PrVvd', '7114955'), + (557, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '8d8PrVvd', '7114956'), + (557, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '8d8PrVvd', '7114957'), + (557, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '8d8PrVvd', '7153615'), + (557, 2569, 'attending', '2024-04-07 16:42:48', '2025-12-17 19:46:33', '8d8PrVvd', '7154056'), + (557, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '8d8PrVvd', '7159484'), + (557, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '8d8PrVvd', '7178446'), + (557, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '8d8PrVvd', '7220467'), + (557, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '8d8PrVvd', '7240354'), + (557, 2611, 'attending', '2024-05-06 22:30:38', '2025-12-17 19:46:35', '8d8PrVvd', '7247642'), + (557, 2612, 'attending', '2024-05-08 21:21:42', '2025-12-17 19:46:35', '8d8PrVvd', '7247643'), + (557, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '8d8PrVvd', '7251633'), + (557, 2628, 'maybe', '2024-06-01 20:27:18', '2025-12-17 19:46:36', '8d8PrVvd', '7264725'), + (557, 2656, 'maybe', '2024-05-30 20:22:51', '2025-12-17 19:46:36', '8d8PrVvd', '7291301'), + (557, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '8d8PrVvd', '7302674'), + (557, 2688, 'attending', '2024-06-28 04:38:36', '2025-12-17 19:46:29', '8d8PrVvd', '7324073'), + (557, 2965, 'attending', '2025-01-18 21:50:10', '2025-12-17 19:46:22', '8d8PrVvd', '7796541'), + (557, 2966, 'attending', '2025-01-26 00:14:33', '2025-12-17 19:46:22', '8d8PrVvd', '7796542'), + (557, 3193, 'attending', '2025-07-18 02:31:23', '2025-12-17 19:46:17', '8d8PrVvd', '8457738'), + (557, 3307, 'attending', '2025-12-18 01:13:32', '2025-12-18 01:13:32', NULL, NULL), + (558, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WP8xObd', '6045684'), + (559, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dzON9nLm', '4736497'), + (559, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dzON9nLm', '4736499'), + (559, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dzON9nLm', '4736500'), + (559, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dzON9nLm', '4736503'), + (559, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dzON9nLm', '4736504'), + (559, 1185, 'not_attending', '2022-01-12 23:28:47', '2025-12-17 19:47:31', 'dzON9nLm', '4746789'), + (559, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dzON9nLm', '5038850'), + (559, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dzON9nLm', '5045826'), + (559, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dzON9nLm', '5132533'), + (559, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dzON9nLm', '6045684'), + (560, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4ZVRlM74', '5441128'), + (560, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4ZVRlM74', '5441131'), + (560, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4ZVRlM74', '5441132'), + (560, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4ZVRlM74', '5461278'), + (560, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4ZVRlM74', '5469480'), + (560, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4ZVRlM74', '5488912'), + (560, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4ZVRlM74', '5492192'), + (560, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4ZVRlM74', '5493139'), + (560, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4ZVRlM74', '5493200'), + (560, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4ZVRlM74', '5502188'), + (560, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4ZVRlM74', '5505059'), + (560, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', '4ZVRlM74', '5509055'), + (560, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4ZVRlM74', '5512862'), + (560, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4ZVRlM74', '5513985'), + (560, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '4ZVRlM74', '5519981'), + (560, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4ZVRlM74', '5522550'), + (560, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4ZVRlM74', '5534683'), + (560, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4ZVRlM74', '5537735'), + (560, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4ZVRlM74', '5540859'), + (560, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4ZVRlM74', '5546619'), + (560, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4ZVRlM74', '5555245'), + (560, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4ZVRlM74', '5557747'), + (560, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4ZVRlM74', '5560255'), + (560, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4ZVRlM74', '5562906'), + (560, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4ZVRlM74', '5600604'), + (560, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4ZVRlM74', '5605544'), + (560, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', '4ZVRlM74', '5606737'), + (560, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4ZVRlM74', '5635406'), + (560, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4ZVRlM74', '5638765'), + (560, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4ZVRlM74', '5640843'), + (560, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZVRlM74', '6045684'), + (561, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dankzXDm', '8555421'), + (561, 3324, 'not_attending', '2025-11-18 00:11:15', '2025-12-17 19:46:14', 'dankzXDm', '8556406'), + (561, 3330, 'not_attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', 'dankzXDm', '8561720'), + (562, 1721, 'attending', '2022-10-21 17:52:00', '2025-12-17 19:47:13', 'o4P6bvmR', '5630960'), + (562, 1722, 'attending', '2022-10-25 00:35:10', '2025-12-17 19:47:14', 'o4P6bvmR', '5630961'), + (562, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'o4P6bvmR', '5630962'), + (562, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'o4P6bvmR', '5630966'), + (562, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'o4P6bvmR', '5630967'), + (562, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'o4P6bvmR', '5630968'), + (562, 1738, 'maybe', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'o4P6bvmR', '5638765'), + (562, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'o4P6bvmR', '5640097'), + (562, 1742, 'attending', '2022-10-16 18:07:36', '2025-12-17 19:47:13', 'o4P6bvmR', '5641245'), + (562, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'o4P6bvmR', '5642818'), + (562, 1747, 'attending', '2022-10-21 01:07:56', '2025-12-17 19:47:13', 'o4P6bvmR', '5648009'), + (562, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'o4P6bvmR', '5652395'), + (562, 1757, 'attending', '2022-10-25 23:05:14', '2025-12-17 19:47:15', 'o4P6bvmR', '5668974'), + (562, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'o4P6bvmR', '5670445'), + (562, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'o4P6bvmR', '5671637'), + (562, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'o4P6bvmR', '5672329'), + (562, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'o4P6bvmR', '5674057'), + (562, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'o4P6bvmR', '5674060'), + (562, 1772, 'attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'o4P6bvmR', '5677461'), + (562, 1777, 'maybe', '2022-11-02 01:05:50', '2025-12-17 19:47:15', 'o4P6bvmR', '5693021'), + (562, 1780, 'attending', '2022-11-02 01:05:31', '2025-12-17 19:47:15', 'o4P6bvmR', '5696082'), + (562, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'o4P6bvmR', '5698046'), + (562, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'o4P6bvmR', '5699760'), + (562, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'o4P6bvmR', '5741601'), + (562, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'o4P6bvmR', '5763458'), + (562, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'o4P6bvmR', '5774172'), + (562, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'o4P6bvmR', '5818247'), + (562, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'o4P6bvmR', '5819471'), + (562, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'o4P6bvmR', '5827739'), + (562, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'o4P6bvmR', '5844306'), + (562, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'o4P6bvmR', '5850159'), + (562, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'o4P6bvmR', '5858999'), + (562, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'o4P6bvmR', '5871984'), + (562, 1860, 'attending', '2023-01-18 18:51:36', '2025-12-17 19:47:05', 'o4P6bvmR', '5876309'), + (562, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'o4P6bvmR', '5876354'), + (562, 1864, 'attending', '2023-01-18 18:52:01', '2025-12-17 19:47:05', 'o4P6bvmR', '5879675'), + (562, 1865, 'attending', '2023-01-29 01:00:18', '2025-12-17 19:47:06', 'o4P6bvmR', '5879676'), + (562, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'o4P6bvmR', '5880939'), + (562, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'o4P6bvmR', '5880940'), + (562, 1868, 'attending', '2023-02-19 05:33:42', '2025-12-17 19:47:07', 'o4P6bvmR', '5880942'), + (562, 1869, 'attending', '2023-02-20 04:21:07', '2025-12-17 19:47:09', 'o4P6bvmR', '5880943'), + (562, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'o4P6bvmR', '5887890'), + (562, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'o4P6bvmR', '5888598'), + (562, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'o4P6bvmR', '5893260'), + (562, 1881, 'maybe', '2023-02-12 06:04:19', '2025-12-17 19:47:07', 'o4P6bvmR', '5894218'), + (562, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'o4P6bvmR', '5899826'), + (562, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'o4P6bvmR', '5900199'), + (562, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'o4P6bvmR', '5900200'), + (562, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'o4P6bvmR', '5900202'), + (562, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'o4P6bvmR', '5900203'), + (562, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'o4P6bvmR', '5901108'), + (562, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'o4P6bvmR', '5901126'), + (562, 1897, 'attending', '2023-02-10 18:36:07', '2025-12-17 19:47:07', 'o4P6bvmR', '5901128'), + (562, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'o4P6bvmR', '5909655'), + (562, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'o4P6bvmR', '5910522'), + (562, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'o4P6bvmR', '5910526'), + (562, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'o4P6bvmR', '5910528'), + (562, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'o4P6bvmR', '5916219'), + (562, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'o4P6bvmR', '5936234'), + (562, 1935, 'maybe', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'o4P6bvmR', '5958351'), + (562, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'o4P6bvmR', '5959751'), + (562, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'o4P6bvmR', '5959755'), + (562, 1940, 'maybe', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'o4P6bvmR', '5960055'), + (562, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'o4P6bvmR', '5961684'), + (562, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'o4P6bvmR', '5962132'), + (562, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'o4P6bvmR', '5962133'), + (562, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'o4P6bvmR', '5962134'), + (562, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'o4P6bvmR', '5962317'), + (562, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'o4P6bvmR', '5962318'), + (562, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'o4P6bvmR', '5965933'), + (562, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'o4P6bvmR', '5967014'), + (562, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'o4P6bvmR', '5972815'), + (562, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'o4P6bvmR', '5974016'), + (562, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'o4P6bvmR', '5981515'), + (562, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'o4P6bvmR', '5993516'), + (562, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'o4P6bvmR', '5998939'), + (562, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'o4P6bvmR', '6028191'), + (562, 1979, 'attending', '2023-03-17 22:18:59', '2025-12-17 19:46:56', 'o4P6bvmR', '6030009'), + (562, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'o4P6bvmR', '6040066'), + (562, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'o4P6bvmR', '6042717'), + (562, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'o4P6bvmR', '6044838'), + (562, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'o4P6bvmR', '6044839'), + (562, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'o4P6bvmR', '6045684'), + (562, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'o4P6bvmR', '6050104'), + (562, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'o4P6bvmR', '6053195'), + (562, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'o4P6bvmR', '6053198'), + (562, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'o4P6bvmR', '6056085'), + (562, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'o4P6bvmR', '6056916'), + (562, 2012, 'attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'o4P6bvmR', '6059290'), + (562, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'o4P6bvmR', '6060328'), + (562, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'o4P6bvmR', '6061037'), + (562, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'o4P6bvmR', '6061039'), + (562, 2020, 'attending', '2023-04-14 17:29:45', '2025-12-17 19:46:59', 'o4P6bvmR', '6065813'), + (562, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'o4P6bvmR', '6067245'), + (562, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'o4P6bvmR', '6068094'), + (562, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'o4P6bvmR', '6068252'), + (562, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'o4P6bvmR', '6068253'), + (562, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'o4P6bvmR', '6068254'), + (562, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'o4P6bvmR', '6068280'), + (562, 2032, 'not_attending', '2023-06-03 07:40:04', '2025-12-17 19:47:04', 'o4P6bvmR', '6068281'), + (562, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'o4P6bvmR', '6069093'), + (562, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'o4P6bvmR', '6072528'), + (562, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'o4P6bvmR', '6079840'), + (562, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'o4P6bvmR', '6083398'), + (562, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'o4P6bvmR', '6093504'), + (562, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'o4P6bvmR', '6097414'), + (562, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'o4P6bvmR', '6097442'), + (562, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'o4P6bvmR', '6097684'), + (562, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'o4P6bvmR', '6098762'), + (562, 2064, 'not_attending', '2023-06-21 20:12:34', '2025-12-17 19:46:50', 'o4P6bvmR', '6099988'), + (562, 2065, 'attending', '2023-06-17 22:18:39', '2025-12-17 19:46:49', 'o4P6bvmR', '6101169'), + (562, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'o4P6bvmR', '6101361'), + (562, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'o4P6bvmR', '6101362'), + (562, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'o4P6bvmR', '6107314'), + (562, 2082, 'attending', '2023-05-22 19:27:36', '2025-12-17 19:47:03', 'o4P6bvmR', '6115612'), + (562, 2083, 'maybe', '2023-05-28 20:27:00', '2025-12-17 19:47:04', 'o4P6bvmR', '6115629'), + (562, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'o4P6bvmR', '6120034'), + (562, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'o4P6bvmR', '6136733'), + (562, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'o4P6bvmR', '6137989'), + (562, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'o4P6bvmR', '6150864'), + (562, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'o4P6bvmR', '6155491'), + (562, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'o4P6bvmR', '6164417'), + (562, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'o4P6bvmR', '6166388'), + (562, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'o4P6bvmR', '6176439'), + (562, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'o4P6bvmR', '6182410'), + (562, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'o4P6bvmR', '6185812'), + (562, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'o4P6bvmR', '6187651'), + (562, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'o4P6bvmR', '6187963'), + (562, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'o4P6bvmR', '6187964'), + (562, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'o4P6bvmR', '6187966'), + (562, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'o4P6bvmR', '6187967'), + (562, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'o4P6bvmR', '6187969'), + (562, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'o4P6bvmR', '6334878'), + (562, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'o4P6bvmR', '6337236'), + (562, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'o4P6bvmR', '6337970'), + (562, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'o4P6bvmR', '6338308'), + (562, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'o4P6bvmR', '6341710'), + (562, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'o4P6bvmR', '6342044'), + (562, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'o4P6bvmR', '6342298'), + (562, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'o4P6bvmR', '6343294'), + (562, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'o4P6bvmR', '6347034'), + (562, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'o4P6bvmR', '6347056'), + (562, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'o4P6bvmR', '6353830'), + (562, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'o4P6bvmR', '6353831'), + (562, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'o4P6bvmR', '6357867'), + (562, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'o4P6bvmR', '6358652'), + (562, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'o4P6bvmR', '6358668'), + (562, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'o4P6bvmR', '6358669'), + (562, 2204, 'attending', '2023-08-19 22:40:42', '2025-12-17 19:46:55', 'o4P6bvmR', '6361542'), + (562, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'o4P6bvmR', '6361709'), + (562, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'o4P6bvmR', '6361710'), + (562, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'o4P6bvmR', '6361711'), + (562, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'o4P6bvmR', '6361712'), + (562, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'o4P6bvmR', '6361713'), + (562, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'o4P6bvmR', '6382573'), + (562, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'o4P6bvmR', '6388604'), + (562, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'o4P6bvmR', '6394629'), + (562, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'o4P6bvmR', '6394631'), + (562, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'o4P6bvmR', '6440863'), + (562, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'o4P6bvmR', '6445440'), + (562, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'o4P6bvmR', '6453951'), + (562, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'o4P6bvmR', '6461696'), + (562, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'o4P6bvmR', '6462129'), + (562, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'o4P6bvmR', '6463218'), + (562, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'o4P6bvmR', '6472181'), + (562, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'o4P6bvmR', '6482693'), + (562, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'o4P6bvmR', '6484200'), + (562, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'o4P6bvmR', '6484680'), + (562, 2310, 'attending', '2023-11-12 00:33:09', '2025-12-17 19:46:47', 'o4P6bvmR', '6487709'), + (562, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'o4P6bvmR', '6507741'), + (562, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'o4P6bvmR', '6514659'), + (562, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'o4P6bvmR', '6514660'), + (562, 2324, 'attending', '2023-12-09 06:39:46', '2025-12-17 19:46:49', 'o4P6bvmR', '6514662'), + (562, 2325, 'attending', '2023-12-15 21:01:47', '2025-12-17 19:46:36', 'o4P6bvmR', '6514663'), + (562, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'o4P6bvmR', '6519103'), + (562, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'o4P6bvmR', '6535681'), + (562, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'o4P6bvmR', '6584747'), + (562, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'o4P6bvmR', '6587097'), + (562, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'o4P6bvmR', '6609022'), + (562, 2371, 'attending', '2023-12-15 21:37:07', '2025-12-17 19:46:36', 'o4P6bvmR', '6624495'), + (562, 2373, 'attending', '2023-12-31 00:36:54', '2025-12-17 19:46:38', 'o4P6bvmR', '6632678'), + (562, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'o4P6bvmR', '6632757'), + (562, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'o4P6bvmR', '6644187'), + (562, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'o4P6bvmR', '6648951'), + (562, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'o4P6bvmR', '6648952'), + (562, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'o4P6bvmR', '6655401'), + (562, 2399, 'attending', '2024-01-14 01:06:02', '2025-12-17 19:46:38', 'o4P6bvmR', '6657583'), + (562, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'o4P6bvmR', '6661585'), + (562, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'o4P6bvmR', '6661588'), + (562, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'o4P6bvmR', '6661589'), + (562, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'o4P6bvmR', '6699906'), + (562, 2408, 'attending', '2024-01-26 08:21:24', '2025-12-17 19:46:40', 'o4P6bvmR', '6699907'), + (562, 2409, 'attending', '2024-01-29 22:23:39', '2025-12-17 19:46:41', 'o4P6bvmR', '6699909'), + (562, 2410, 'attending', '2024-02-11 00:04:54', '2025-12-17 19:46:41', 'o4P6bvmR', '6699911'), + (562, 2411, 'attending', '2024-02-16 23:57:57', '2025-12-17 19:46:41', 'o4P6bvmR', '6699913'), + (562, 2414, 'maybe', '2024-01-19 00:49:28', '2025-12-17 19:46:40', 'o4P6bvmR', '6701000'), + (562, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'o4P6bvmR', '6701109'), + (562, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'o4P6bvmR', '6705219'), + (562, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'o4P6bvmR', '6710153'), + (562, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'o4P6bvmR', '6711552'), + (562, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'o4P6bvmR', '6711553'), + (562, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'o4P6bvmR', '6722688'), + (562, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'o4P6bvmR', '6730620'), + (562, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'o4P6bvmR', '6730642'), + (562, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'o4P6bvmR', '6740364'), + (562, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'o4P6bvmR', '6743829'), + (562, 2467, 'maybe', '2024-02-25 03:42:37', '2025-12-17 19:46:43', 'o4P6bvmR', '7029987'), + (562, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'o4P6bvmR', '7030380'), + (562, 2471, 'attending', '2024-02-18 21:14:43', '2025-12-17 19:46:42', 'o4P6bvmR', '7032425'), + (562, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'o4P6bvmR', '7033677'), + (562, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'o4P6bvmR', '7035415'), + (562, 2478, 'attending', '2024-02-22 18:07:29', '2025-12-17 19:46:43', 'o4P6bvmR', '7036478'), + (562, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'o4P6bvmR', '7044715'), + (562, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'o4P6bvmR', '7050318'), + (562, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'o4P6bvmR', '7050319'), + (562, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'o4P6bvmR', '7050322'), + (562, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'o4P6bvmR', '7057804'), + (562, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'o4P6bvmR', '7059866'), + (562, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'o4P6bvmR', '7072824'), + (562, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'o4P6bvmR', '7074348'), + (562, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'o4P6bvmR', '7074364'), + (562, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'o4P6bvmR', '7089267'), + (562, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'o4P6bvmR', '7098747'), + (562, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'o4P6bvmR', '7113468'), + (562, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'o4P6bvmR', '7114856'), + (562, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'o4P6bvmR', '7114951'), + (562, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'o4P6bvmR', '7114955'), + (562, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'o4P6bvmR', '7114956'), + (562, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'o4P6bvmR', '7114957'), + (562, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'o4P6bvmR', '7153615'), + (562, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'o4P6bvmR', '7159484'), + (562, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'o4P6bvmR', '7178446'), + (562, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'o4P6bvmR', '7220467'), + (562, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'o4P6bvmR', '7240354'), + (562, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'o4P6bvmR', '7251633'), + (562, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'o4P6bvmR', '7263048'), + (562, 2626, 'attending', '2024-05-18 21:21:09', '2025-12-17 19:46:35', 'o4P6bvmR', '7264723'), + (562, 2627, 'attending', '2024-05-25 22:03:47', '2025-12-17 19:46:35', 'o4P6bvmR', '7264724'), + (562, 2628, 'attending', '2024-06-01 20:56:49', '2025-12-17 19:46:36', 'o4P6bvmR', '7264725'), + (562, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'o4P6bvmR', '7302674'), + (562, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'o4P6bvmR', '7324073'), + (562, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'o4P6bvmR', '7324074'), + (562, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'o4P6bvmR', '7324075'), + (562, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'o4P6bvmR', '7324078'), + (562, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'o4P6bvmR', '7324082'), + (562, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'o4P6bvmR', '7331457'), + (562, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'o4P6bvmR', '7356752'), + (562, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'o4P6bvmR', '7363643'), + (562, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'o4P6bvmR', '7368606'), + (562, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'o4P6bvmR', '7397462'), + (562, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'o4P6bvmR', '7424275'), + (562, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'o4P6bvmR', '7424276'), + (562, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'o4P6bvmR', '7432751'), + (562, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'o4P6bvmR', '7432752'), + (562, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'o4P6bvmR', '7432753'), + (562, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'o4P6bvmR', '7432754'), + (562, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'o4P6bvmR', '7432755'), + (562, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'o4P6bvmR', '7432756'), + (562, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'o4P6bvmR', '7432758'), + (562, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'o4P6bvmR', '7432759'), + (562, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'o4P6bvmR', '7433834'), + (562, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'o4P6bvmR', '7470197'), + (562, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'o4P6bvmR', '7685613'), + (562, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'o4P6bvmR', '7688194'), + (562, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'o4P6bvmR', '7688196'), + (562, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'o4P6bvmR', '7688289'), + (563, 393, 'not_attending', '2021-06-24 21:55:57', '2025-12-17 19:47:38', 'pmbGG2VA', '3236448'), + (563, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbGG2VA', '3974109'), + (563, 844, 'not_attending', '2021-06-17 15:28:12', '2025-12-17 19:47:38', 'pmbGG2VA', '4014338'), + (563, 867, 'attending', '2021-06-23 15:27:41', '2025-12-17 19:47:38', 'pmbGG2VA', '4021848'), + (563, 870, 'attending', '2021-07-03 21:42:02', '2025-12-17 19:47:39', 'pmbGG2VA', '4136937'), + (563, 871, 'maybe', '2021-07-10 21:38:44', '2025-12-17 19:47:39', 'pmbGG2VA', '4136938'), + (563, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbGG2VA', '4136947'), + (563, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbGG2VA', '4210314'), + (563, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbGG2VA', '4225444'), + (563, 896, 'attending', '2021-06-29 20:03:54', '2025-12-17 19:47:38', 'pmbGG2VA', '4231145'), + (563, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbGG2VA', '4239259'), + (563, 900, 'attending', '2021-07-24 20:49:05', '2025-12-17 19:47:40', 'pmbGG2VA', '4240316'), + (563, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbGG2VA', '4240317'), + (563, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbGG2VA', '4240318'), + (563, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbGG2VA', '4240320'), + (563, 904, 'attending', '2021-07-03 23:12:15', '2025-12-17 19:47:39', 'pmbGG2VA', '4241594'), + (563, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbGG2VA', '4250163'), + (563, 917, 'maybe', '2021-07-14 01:02:46', '2025-12-17 19:47:39', 'pmbGG2VA', '4274481'), + (563, 919, 'not_attending', '2021-07-17 21:26:54', '2025-12-17 19:47:39', 'pmbGG2VA', '4275957'), + (563, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbGG2VA', '4277819'), + (563, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbGG2VA', '4301723'), + (563, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbGG2VA', '4302093'), + (563, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbGG2VA', '4304151'), + (563, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbGG2VA', '4356801'), + (563, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbGG2VA', '4366186'), + (563, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbGG2VA', '4366187'), + (563, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbGG2VA', '4420735'), + (563, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbGG2VA', '4420738'), + (563, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbGG2VA', '4420739'), + (563, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbGG2VA', '4420741'), + (563, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbGG2VA', '4420744'), + (563, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbGG2VA', '4420747'), + (563, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbGG2VA', '4420748'), + (563, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbGG2VA', '4420749'), + (563, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbGG2VA', '4461883'), + (563, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbGG2VA', '4508342'), + (563, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbGG2VA', '4568602'), + (563, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbGG2VA', '4572153'), + (563, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'pmbGG2VA', '4585962'), + (563, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'pmbGG2VA', '4596356'), + (563, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbGG2VA', '4598860'), + (563, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbGG2VA', '4598861'), + (563, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbGG2VA', '4602797'), + (563, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbGG2VA', '4637896'), + (563, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbGG2VA', '4642994'), + (563, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'pmbGG2VA', '4642995'), + (563, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbGG2VA', '4642996'), + (563, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbGG2VA', '4642997'), + (563, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbGG2VA', '4645687'), + (563, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbGG2VA', '4645698'), + (563, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbGG2VA', '4645704'), + (563, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbGG2VA', '4645705'), + (563, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbGG2VA', '4668385'), + (563, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbGG2VA', '4694407'), + (563, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'pmbGG2VA', '4706262'), + (563, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbGG2VA', '4736497'), + (563, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbGG2VA', '4736499'), + (563, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbGG2VA', '4736500'), + (563, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbGG2VA', '4736503'), + (563, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbGG2VA', '4736504'), + (563, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbGG2VA', '4746789'), + (563, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbGG2VA', '4753929'), + (563, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbGG2VA', '5038850'), + (563, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbGG2VA', '5045826'), + (563, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbGG2VA', '5132533'), + (563, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbGG2VA', '5186582'), + (563, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbGG2VA', '5186583'), + (563, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbGG2VA', '5186585'), + (563, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbGG2VA', '5190437'), + (563, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbGG2VA', '5215989'), + (563, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbGG2VA', '6045684'), + (564, 884, 'not_attending', '2021-08-13 22:24:14', '2025-12-17 19:47:42', 'ArgB5Kw4', '4210314'), + (564, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ArgB5Kw4', '4304151'), + (564, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'ArgB5Kw4', '4315726'), + (564, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ArgB5Kw4', '4366186'), + (564, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ArgB5Kw4', '4366187'), + (564, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArgB5Kw4', '6045684'), + (565, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVDa6EzA', '6361713'), + (565, 2249, 'attending', '2023-09-20 03:04:57', '2025-12-17 19:46:45', 'dVDa6EzA', '6394630'), + (565, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVDa6EzA', '6394631'), + (565, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dVDa6EzA', '6431478'), + (565, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVDa6EzA', '6440863'), + (565, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVDa6EzA', '6445440'), + (565, 2274, 'not_attending', '2023-10-04 19:10:55', '2025-12-17 19:46:45', 'dVDa6EzA', '6448287'), + (565, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVDa6EzA', '6453951'), + (565, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVDa6EzA', '6461696'), + (565, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVDa6EzA', '6462129'), + (565, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVDa6EzA', '6463218'), + (565, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVDa6EzA', '6472181'), + (565, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVDa6EzA', '6482693'), + (565, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVDa6EzA', '6484200'), + (565, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVDa6EzA', '6484680'), + (565, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVDa6EzA', '6507741'), + (565, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVDa6EzA', '6514659'), + (565, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVDa6EzA', '6514660'), + (565, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVDa6EzA', '6519103'), + (565, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVDa6EzA', '6535681'), + (565, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'dVDa6EzA', '6545076'), + (565, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVDa6EzA', '6584747'), + (565, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVDa6EzA', '6587097'), + (565, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVDa6EzA', '6609022'), + (565, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVDa6EzA', '6632757'), + (565, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVDa6EzA', '6644187'), + (565, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVDa6EzA', '6648951'), + (565, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVDa6EzA', '6648952'), + (565, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dVDa6EzA', '6651141'), + (565, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVDa6EzA', '6655401'), + (565, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVDa6EzA', '6661585'), + (565, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVDa6EzA', '6661588'), + (565, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVDa6EzA', '6661589'), + (565, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVDa6EzA', '6699906'), + (565, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dVDa6EzA', '6699913'), + (565, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVDa6EzA', '6701109'), + (565, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVDa6EzA', '6705219'), + (565, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVDa6EzA', '6710153'), + (565, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVDa6EzA', '6711552'), + (565, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVDa6EzA', '6711553'), + (565, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVDa6EzA', '6722688'), + (565, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVDa6EzA', '6730620'), + (565, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVDa6EzA', '6730642'), + (565, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dVDa6EzA', '6740364'), + (565, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVDa6EzA', '6743829'), + (565, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVDa6EzA', '7030380'), + (565, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dVDa6EzA', '7033677'), + (565, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dVDa6EzA', '7035415'), + (565, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dVDa6EzA', '7044715'), + (565, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVDa6EzA', '7050318'), + (565, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVDa6EzA', '7050319'), + (565, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVDa6EzA', '7050322'), + (565, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dVDa6EzA', '7057804'), + (565, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVDa6EzA', '7072824'), + (565, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVDa6EzA', '7074348'), + (565, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVDa6EzA', '7089267'), + (565, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dVDa6EzA', '7098747'), + (565, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dVDa6EzA', '7113468'), + (565, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVDa6EzA', '7114856'), + (565, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dVDa6EzA', '7114951'), + (565, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVDa6EzA', '7114955'), + (565, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVDa6EzA', '7114956'), + (565, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVDa6EzA', '7153615'), + (565, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVDa6EzA', '7159484'), + (565, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVDa6EzA', '7178446'), + (566, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41oMNaEm', '6045684'), + (567, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd8VzLnvA', '5880942'), + (567, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd8VzLnvA', '5880943'), + (567, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd8VzLnvA', '5900200'), + (567, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd8VzLnvA', '5900202'), + (567, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd8VzLnvA', '5900203'), + (567, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', 'd8VzLnvA', '5910522'), + (567, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'd8VzLnvA', '5910526'), + (567, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'd8VzLnvA', '5910528'), + (567, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd8VzLnvA', '5916219'), + (567, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd8VzLnvA', '5936234'), + (567, 1934, 'attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'd8VzLnvA', '5936691'), + (567, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd8VzLnvA', '5958351'), + (567, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd8VzLnvA', '5959751'), + (567, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd8VzLnvA', '5959755'), + (567, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd8VzLnvA', '5960055'), + (567, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd8VzLnvA', '5961684'), + (567, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd8VzLnvA', '5962132'), + (567, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd8VzLnvA', '5962133'), + (567, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd8VzLnvA', '5962134'), + (567, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd8VzLnvA', '5962317'), + (567, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd8VzLnvA', '5962318'), + (567, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd8VzLnvA', '5965933'), + (567, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd8VzLnvA', '5967014'), + (567, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd8VzLnvA', '5972815'), + (567, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd8VzLnvA', '5974016'), + (567, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd8VzLnvA', '5981515'), + (567, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd8VzLnvA', '5993516'), + (567, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd8VzLnvA', '5998939'), + (567, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd8VzLnvA', '6028191'), + (567, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd8VzLnvA', '6040066'), + (567, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd8VzLnvA', '6042717'), + (567, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd8VzLnvA', '6044838'), + (567, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd8VzLnvA', '6044839'), + (567, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8VzLnvA', '6045684'), + (567, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd8VzLnvA', '6050104'), + (567, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd8VzLnvA', '6053195'), + (567, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd8VzLnvA', '6053198'), + (567, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd8VzLnvA', '6056085'), + (567, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd8VzLnvA', '6056916'), + (567, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd8VzLnvA', '6059290'), + (567, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd8VzLnvA', '6060328'), + (567, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd8VzLnvA', '6061037'), + (567, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd8VzLnvA', '6061039'), + (567, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd8VzLnvA', '6067245'), + (567, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd8VzLnvA', '6068094'), + (567, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd8VzLnvA', '6068252'), + (567, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd8VzLnvA', '6068253'), + (567, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd8VzLnvA', '6068254'), + (567, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd8VzLnvA', '6068280'), + (567, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd8VzLnvA', '6069093'), + (567, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd8VzLnvA', '6072528'), + (567, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd8VzLnvA', '6079840'), + (567, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd8VzLnvA', '6083398'), + (567, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'd8VzLnvA', '6093504'), + (567, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd8VzLnvA', '6097414'), + (567, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd8VzLnvA', '6097442'), + (567, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd8VzLnvA', '6097684'), + (567, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd8VzLnvA', '6098762'), + (567, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd8VzLnvA', '6101362'), + (567, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd8VzLnvA', '6103752'), + (567, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd8VzLnvA', '6107314'), + (568, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYznBMa4', '6045684'), + (569, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v81QGBm', '6045684'), + (570, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd90KjvE4', '7074364'), + (570, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd90KjvE4', '7324073'), + (570, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd90KjvE4', '7324074'), + (570, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd90KjvE4', '7324075'), + (570, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd90KjvE4', '7324078'), + (570, 2702, 'not_attending', '2024-06-13 18:33:33', '2025-12-17 19:46:28', 'd90KjvE4', '7324867'), + (570, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd90KjvE4', '7331457'), + (570, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'd90KjvE4', '7332564'), + (570, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'd90KjvE4', '7344575'), + (570, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'd90KjvE4', '7359624'), + (570, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd90KjvE4', '7363643'), + (570, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd90KjvE4', '7368606'), + (571, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4kRwppEA', '4668385'), + (571, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4kRwppEA', '4694407'), + (571, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4kRwppEA', '4746789'), + (571, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4kRwppEA', '4753929'), + (571, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kRwppEA', '6045684'), + (572, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlRWWYA', '6045684'), + (573, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'd8DzyGpd', '5195095'), + (573, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'd8DzyGpd', '5247467'), + (573, 1362, 'not_attending', '2022-04-30 19:14:25', '2025-12-17 19:47:28', 'd8DzyGpd', '5260800'), + (573, 1374, 'not_attending', '2022-05-07 20:20:54', '2025-12-17 19:47:28', 'd8DzyGpd', '5269930'), + (573, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd8DzyGpd', '5271448'), + (573, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'd8DzyGpd', '5271449'), + (573, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd8DzyGpd', '5276469'), + (573, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd8DzyGpd', '5278159'), + (573, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd8DzyGpd', '5363695'), + (573, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd8DzyGpd', '5365960'), + (573, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd8DzyGpd', '5368973'), + (573, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd8DzyGpd', '5378247'), + (573, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd8DzyGpd', '5389605'), + (573, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd8DzyGpd', '5397265'), + (573, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd8DzyGpd', '5403967'), + (573, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd8DzyGpd', '5404786'), + (573, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd8DzyGpd', '5405203'), + (573, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'd8DzyGpd', '5408794'), + (573, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd8DzyGpd', '5411699'), + (573, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd8DzyGpd', '5412550'), + (573, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd8DzyGpd', '5415046'), + (573, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd8DzyGpd', '5422086'), + (573, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd8DzyGpd', '5422406'), + (573, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd8DzyGpd', '5424565'), + (573, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd8DzyGpd', '5426882'), + (573, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd8DzyGpd', '5427083'), + (573, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'd8DzyGpd', '5441125'), + (573, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd8DzyGpd', '5441126'), + (573, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd8DzyGpd', '5441128'), + (573, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd8DzyGpd', '5441131'), + (573, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd8DzyGpd', '5441132'), + (573, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd8DzyGpd', '5446643'), + (573, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd8DzyGpd', '5453325'), + (573, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd8DzyGpd', '5454516'), + (573, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd8DzyGpd', '5454605'), + (573, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd8DzyGpd', '5455037'), + (573, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd8DzyGpd', '5461278'), + (573, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd8DzyGpd', '5469480'), + (573, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd8DzyGpd', '5471073'), + (573, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd8DzyGpd', '5474663'), + (573, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd8DzyGpd', '5482022'), + (573, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd8DzyGpd', '5482793'), + (573, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd8DzyGpd', '5488912'), + (573, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd8DzyGpd', '5492192'), + (573, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd8DzyGpd', '5493139'), + (573, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd8DzyGpd', '5493200'), + (573, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd8DzyGpd', '5502188'), + (573, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd8DzyGpd', '5505059'), + (573, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd8DzyGpd', '5509055'), + (573, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd8DzyGpd', '5512862'), + (573, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd8DzyGpd', '5513985'), + (573, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd8DzyGpd', '5519981'), + (573, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd8DzyGpd', '5522550'), + (573, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd8DzyGpd', '5534683'), + (573, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd8DzyGpd', '5546619'), + (573, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd8DzyGpd', '5555245'), + (573, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd8DzyGpd', '5557747'), + (573, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8DzyGpd', '6045684'), + (574, 1684, 'attending', '2022-10-11 22:29:00', '2025-12-17 19:47:12', 'Md3MjvgA', '5605544'), + (574, 1712, 'not_attending', '2022-10-13 22:25:14', '2025-12-17 19:47:12', 'Md3MjvgA', '5622073'), + (574, 1720, 'attending', '2022-10-15 09:16:49', '2025-12-17 19:47:12', 'Md3MjvgA', '5630959'), + (574, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Md3MjvgA', '5630960'), + (574, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Md3MjvgA', '5630961'), + (574, 1723, 'attending', '2022-10-30 23:02:22', '2025-12-17 19:47:15', 'Md3MjvgA', '5630962'), + (574, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Md3MjvgA', '5630966'), + (574, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Md3MjvgA', '5630967'), + (574, 1726, 'attending', '2022-11-19 12:47:22', '2025-12-17 19:47:16', 'Md3MjvgA', '5630968'), + (574, 1727, 'attending', '2022-11-19 12:47:26', '2025-12-17 19:47:16', 'Md3MjvgA', '5630969'), + (574, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', 'Md3MjvgA', '5638765'), + (574, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Md3MjvgA', '5640097'), + (574, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'Md3MjvgA', '5640843'), + (574, 1741, 'attending', '2022-10-09 23:42:34', '2025-12-17 19:47:12', 'Md3MjvgA', '5641132'), + (574, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Md3MjvgA', '5641521'), + (574, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Md3MjvgA', '5642818'), + (574, 1745, 'maybe', '2022-10-15 09:16:59', '2025-12-17 19:47:12', 'Md3MjvgA', '5643088'), + (574, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Md3MjvgA', '5652395'), + (574, 1757, 'not_attending', '2022-11-03 17:24:25', '2025-12-17 19:47:15', 'Md3MjvgA', '5668974'), + (574, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Md3MjvgA', '5670445'), + (574, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Md3MjvgA', '5671637'), + (574, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Md3MjvgA', '5672329'), + (574, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Md3MjvgA', '5674057'), + (574, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Md3MjvgA', '5674060'), + (574, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Md3MjvgA', '5677461'), + (574, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Md3MjvgA', '5698046'), + (574, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'Md3MjvgA', '5699760'), + (574, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Md3MjvgA', '5741601'), + (574, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Md3MjvgA', '5763458'), + (574, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Md3MjvgA', '5774172'), + (574, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'Md3MjvgA', '5818247'), + (574, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Md3MjvgA', '5819471'), + (574, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Md3MjvgA', '5827739'), + (574, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Md3MjvgA', '5844306'), + (574, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Md3MjvgA', '5850159'), + (574, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Md3MjvgA', '5858999'), + (574, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Md3MjvgA', '5871984'), + (574, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Md3MjvgA', '5876354'), + (574, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'Md3MjvgA', '5880939'), + (574, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Md3MjvgA', '5880940'), + (574, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Md3MjvgA', '5880942'), + (574, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Md3MjvgA', '5880943'), + (574, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Md3MjvgA', '5887890'), + (574, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Md3MjvgA', '5888598'), + (574, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Md3MjvgA', '5893260'), + (574, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Md3MjvgA', '5899826'), + (574, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Md3MjvgA', '5900199'), + (574, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Md3MjvgA', '5900200'), + (574, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Md3MjvgA', '5900202'), + (574, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Md3MjvgA', '5900203'), + (574, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Md3MjvgA', '5901108'), + (574, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Md3MjvgA', '5901126'), + (574, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Md3MjvgA', '5909655'), + (574, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Md3MjvgA', '5910522'), + (574, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Md3MjvgA', '5910526'), + (574, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Md3MjvgA', '5910528'), + (574, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Md3MjvgA', '5916219'), + (574, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Md3MjvgA', '5936234'), + (574, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Md3MjvgA', '5958351'), + (574, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Md3MjvgA', '5959751'), + (574, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Md3MjvgA', '5959755'), + (574, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Md3MjvgA', '5960055'), + (574, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Md3MjvgA', '5961684'), + (574, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Md3MjvgA', '5962132'), + (574, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Md3MjvgA', '5962133'), + (574, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Md3MjvgA', '5962134'), + (574, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Md3MjvgA', '5962317'), + (574, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Md3MjvgA', '5962318'), + (574, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Md3MjvgA', '5965933'), + (574, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Md3MjvgA', '5967014'), + (574, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Md3MjvgA', '5972815'), + (574, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Md3MjvgA', '5974016'), + (574, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Md3MjvgA', '5981515'), + (574, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Md3MjvgA', '5993516'), + (574, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Md3MjvgA', '5998939'), + (574, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Md3MjvgA', '6028191'), + (574, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Md3MjvgA', '6040066'), + (574, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Md3MjvgA', '6042717'), + (574, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Md3MjvgA', '6044838'), + (574, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Md3MjvgA', '6044839'), + (574, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Md3MjvgA', '6045684'), + (574, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Md3MjvgA', '6050104'), + (574, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Md3MjvgA', '6053195'), + (574, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Md3MjvgA', '6053198'), + (574, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Md3MjvgA', '6056085'), + (574, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Md3MjvgA', '6056916'), + (574, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Md3MjvgA', '6059290'), + (574, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Md3MjvgA', '6060328'), + (574, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Md3MjvgA', '6061037'), + (574, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Md3MjvgA', '6061039'), + (574, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Md3MjvgA', '6067245'), + (574, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Md3MjvgA', '6068094'), + (574, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Md3MjvgA', '6068252'), + (574, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Md3MjvgA', '6068253'), + (574, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Md3MjvgA', '6068254'), + (574, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Md3MjvgA', '6068280'), + (574, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Md3MjvgA', '6069093'), + (574, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'Md3MjvgA', '6072528'), + (574, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Md3MjvgA', '6079840'), + (574, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Md3MjvgA', '6083398'), + (574, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Md3MjvgA', '6093504'), + (574, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Md3MjvgA', '6097414'), + (574, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Md3MjvgA', '6097442'), + (574, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Md3MjvgA', '6097684'), + (574, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Md3MjvgA', '6098762'), + (574, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Md3MjvgA', '6101362'), + (574, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'Md3MjvgA', '6103752'), + (574, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Md3MjvgA', '6107314'), + (575, 259, 'attending', '2021-05-18 21:53:00', '2025-12-17 19:47:46', '6AX5PQ64', '3149490'), + (575, 397, 'not_attending', '2021-05-27 20:06:41', '2025-12-17 19:47:47', '6AX5PQ64', '3236452'), + (575, 647, 'not_attending', '2021-05-18 04:06:23', '2025-12-17 19:47:46', '6AX5PQ64', '3539922'), + (575, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '6AX5PQ64', '3539923'), + (575, 725, 'not_attending', '2021-05-23 20:30:43', '2025-12-17 19:47:47', '6AX5PQ64', '3661372'), + (575, 793, 'not_attending', '2021-06-02 00:22:12', '2025-12-17 19:47:47', '6AX5PQ64', '3793537'), + (575, 797, 'not_attending', '2021-05-23 19:47:44', '2025-12-17 19:47:47', '6AX5PQ64', '3796195'), + (575, 803, 'attending', '2021-05-19 22:54:25', '2025-12-17 19:47:46', '6AX5PQ64', '3804665'), + (575, 804, 'not_attending', '2021-05-23 19:47:38', '2025-12-17 19:47:47', '6AX5PQ64', '3804775'), + (575, 808, 'not_attending', '2021-05-20 22:36:38', '2025-12-17 19:47:46', '6AX5PQ64', '3807358'), + (575, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AX5PQ64', '3974109'), + (575, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AX5PQ64', '3975311'), + (575, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AX5PQ64', '3975312'), + (575, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AX5PQ64', '3994992'), + (575, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AX5PQ64', '4014338'), + (575, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AX5PQ64', '4021848'), + (575, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AX5PQ64', '4136744'), + (575, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AX5PQ64', '4136937'), + (575, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AX5PQ64', '4136938'), + (575, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AX5PQ64', '4136947'), + (575, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AX5PQ64', '4210314'), + (575, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AX5PQ64', '4225444'), + (575, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AX5PQ64', '4239259'), + (575, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AX5PQ64', '4240316'), + (575, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AX5PQ64', '4240317'), + (575, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AX5PQ64', '4240318'), + (575, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AX5PQ64', '4240320'), + (575, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AX5PQ64', '4250163'), + (575, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AX5PQ64', '4275957'), + (575, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AX5PQ64', '4277819'), + (575, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AX5PQ64', '4301723'), + (575, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AX5PQ64', '4302093'), + (575, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AX5PQ64', '4304151'), + (575, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', '6AX5PQ64', '4345519'), + (575, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AX5PQ64', '4356801'), + (575, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '6AX5PQ64', '4358025'), + (575, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AX5PQ64', '4366186'), + (575, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AX5PQ64', '4366187'), + (575, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '6AX5PQ64', '4402823'), + (575, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AX5PQ64', '4420735'), + (575, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AX5PQ64', '4420738'), + (575, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AX5PQ64', '4420739'), + (575, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AX5PQ64', '4420741'), + (575, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AX5PQ64', '4420744'), + (575, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AX5PQ64', '4420747'), + (575, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AX5PQ64', '4420748'), + (575, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AX5PQ64', '4420749'), + (575, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AX5PQ64', '4461883'), + (575, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AX5PQ64', '4508342'), + (575, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AX5PQ64', '4568602'), + (575, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AX5PQ64', '4572153'), + (575, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AX5PQ64', '4585962'), + (575, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '6AX5PQ64', '4596356'), + (575, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AX5PQ64', '4598860'), + (575, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AX5PQ64', '4598861'), + (575, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '6AX5PQ64', '4602797'), + (575, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '6AX5PQ64', '4637896'), + (575, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AX5PQ64', '4642994'), + (575, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AX5PQ64', '4642995'), + (575, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AX5PQ64', '4642996'), + (575, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AX5PQ64', '4642997'), + (575, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '6AX5PQ64', '4645687'), + (575, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '6AX5PQ64', '4645698'), + (575, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '6AX5PQ64', '4645704'), + (575, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '6AX5PQ64', '4645705'), + (575, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '6AX5PQ64', '4668385'), + (575, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '6AX5PQ64', '4694407'), + (575, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '6AX5PQ64', '4736497'), + (575, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '6AX5PQ64', '4736499'), + (575, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '6AX5PQ64', '4736500'), + (575, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '6AX5PQ64', '4736503'), + (575, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '6AX5PQ64', '4736504'), + (575, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '6AX5PQ64', '4746789'), + (575, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '6AX5PQ64', '4753929'), + (575, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '6AX5PQ64', '5038850'), + (575, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '6AX5PQ64', '5045826'), + (575, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '6AX5PQ64', '5132533'), + (575, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '6AX5PQ64', '5186582'), + (575, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '6AX5PQ64', '5186583'), + (575, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '6AX5PQ64', '5186585'), + (575, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '6AX5PQ64', '5190437'), + (575, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '6AX5PQ64', '5215989'), + (575, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AX5PQ64', '6045684'), + (576, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'An28Z32A', '5880943'), + (576, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'An28Z32A', '5900202'), + (576, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'An28Z32A', '5900203'), + (576, 1916, 'not_attending', '2023-03-01 16:36:14', '2025-12-17 19:47:08', 'An28Z32A', '5910526'), + (576, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'An28Z32A', '5910528'), + (576, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'An28Z32A', '5962317'), + (576, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'An28Z32A', '5962318'), + (576, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'An28Z32A', '5965933'), + (576, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'An28Z32A', '5967014'), + (576, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'An28Z32A', '5972815'), + (576, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'An28Z32A', '5974016'), + (576, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'An28Z32A', '5981515'), + (576, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'An28Z32A', '5993516'), + (576, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'An28Z32A', '5998939'), + (576, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'An28Z32A', '6028191'), + (576, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'An28Z32A', '6040066'), + (576, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'An28Z32A', '6042717'), + (576, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'An28Z32A', '6044838'), + (576, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'An28Z32A', '6044839'), + (576, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'An28Z32A', '6045684'), + (576, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'An28Z32A', '6048955'), + (576, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'An28Z32A', '6050104'), + (576, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'An28Z32A', '6053195'), + (576, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'An28Z32A', '6053198'), + (576, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'An28Z32A', '6056085'), + (576, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'An28Z32A', '6056916'), + (576, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'An28Z32A', '6059290'), + (576, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'An28Z32A', '6060328'), + (576, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'An28Z32A', '6061037'), + (576, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'An28Z32A', '6061039'), + (576, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'An28Z32A', '6067245'), + (576, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'An28Z32A', '6068094'), + (576, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'An28Z32A', '6068252'), + (576, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'An28Z32A', '6068253'), + (576, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'An28Z32A', '6068254'), + (576, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'An28Z32A', '6068280'), + (576, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'An28Z32A', '6069093'), + (576, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'An28Z32A', '6072528'), + (576, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'An28Z32A', '6079840'), + (576, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'An28Z32A', '6083398'), + (576, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'An28Z32A', '6093504'), + (576, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'An28Z32A', '6097414'), + (576, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'An28Z32A', '6097442'), + (576, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'An28Z32A', '6097684'), + (576, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'An28Z32A', '6098762'), + (576, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'An28Z32A', '6101362'), + (576, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'An28Z32A', '6107314'), + (576, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'An28Z32A', '6120034'), + (577, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dl3J95l4', '5195095'), + (577, 1333, 'not_attending', '2022-04-13 18:37:37', '2025-12-17 19:47:27', 'dl3J95l4', '5243711'), + (577, 1339, 'not_attending', '2022-04-16 00:17:07', '2025-12-17 19:47:27', 'dl3J95l4', '5245284'), + (577, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dl3J95l4', '5247467'), + (577, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dl3J95l4', '5260800'), + (577, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dl3J95l4', '5269930'), + (577, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dl3J95l4', '5271448'), + (577, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dl3J95l4', '5271449'), + (577, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dl3J95l4', '5276469'), + (577, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dl3J95l4', '5278159'), + (577, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dl3J95l4', '5363695'), + (577, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dl3J95l4', '5365960'), + (577, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dl3J95l4', '5368973'), + (577, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dl3J95l4', '5378247'), + (577, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dl3J95l4', '5389605'), + (577, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dl3J95l4', '5397265'), + (577, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dl3J95l4', '6045684'), + (578, 646, 'attending', '2021-05-14 21:05:54', '2025-12-17 19:47:46', '8d8l0Kgd', '3539921'), + (578, 647, 'attending', '2021-05-16 15:24:25', '2025-12-17 19:47:46', '8d8l0Kgd', '3539922'), + (578, 648, 'attending', '2021-05-22 04:29:49', '2025-12-17 19:47:47', '8d8l0Kgd', '3539923'), + (578, 798, 'maybe', '2021-05-14 21:07:41', '2025-12-17 19:47:46', '8d8l0Kgd', '3796262'), + (578, 803, 'maybe', '2021-05-14 21:07:32', '2025-12-17 19:47:46', '8d8l0Kgd', '3804665'), + (578, 809, 'maybe', '2021-05-16 15:24:15', '2025-12-17 19:47:46', '8d8l0Kgd', '3807964'), + (578, 810, 'attending', '2021-05-16 15:20:05', '2025-12-17 19:47:46', '8d8l0Kgd', '3808029'), + (578, 811, 'attending', '2021-05-16 15:20:13', '2025-12-17 19:47:46', '8d8l0Kgd', '3808030'), + (578, 812, 'not_attending', '2021-05-19 20:36:51', '2025-12-17 19:47:46', '8d8l0Kgd', '3808031'), + (578, 815, 'attending', '2021-05-28 21:35:51', '2025-12-17 19:47:47', '8d8l0Kgd', '3818136'), + (578, 821, 'attending', '2021-05-31 13:17:54', '2025-12-17 19:47:47', '8d8l0Kgd', '3963965'), + (578, 823, 'attending', '2021-06-19 15:52:36', '2025-12-17 19:47:48', '8d8l0Kgd', '3974109'), + (578, 827, 'attending', '2021-06-05 22:41:36', '2025-12-17 19:47:47', '8d8l0Kgd', '3975311'), + (578, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '8d8l0Kgd', '3975312'), + (578, 830, 'attending', '2021-06-03 16:35:44', '2025-12-17 19:47:47', '8d8l0Kgd', '3976648'), + (578, 831, 'maybe', '2021-06-02 18:31:21', '2025-12-17 19:47:47', '8d8l0Kgd', '3976649'), + (578, 832, 'attending', '2021-06-05 19:32:14', '2025-12-17 19:47:47', '8d8l0Kgd', '3976650'), + (578, 834, 'attending', '2021-06-09 16:42:03', '2025-12-17 19:47:47', '8d8l0Kgd', '3990439'), + (578, 837, 'attending', '2021-06-17 22:45:26', '2025-12-17 19:47:48', '8d8l0Kgd', '3992545'), + (578, 838, 'maybe', '2021-06-08 17:17:12', '2025-12-17 19:47:47', '8d8l0Kgd', '3994992'), + (578, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '8d8l0Kgd', '4014338'), + (578, 866, 'attending', '2021-06-19 00:35:30', '2025-12-17 19:47:38', '8d8l0Kgd', '4020424'), + (578, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '8d8l0Kgd', '4021848'), + (578, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '8d8l0Kgd', '4136744'), + (578, 870, 'not_attending', '2021-07-02 19:14:16', '2025-12-17 19:47:39', '8d8l0Kgd', '4136937'), + (578, 871, 'not_attending', '2021-07-10 22:21:09', '2025-12-17 19:47:39', '8d8l0Kgd', '4136938'), + (578, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '8d8l0Kgd', '4136947'), + (578, 880, 'maybe', '2021-06-18 14:07:53', '2025-12-17 19:47:48', '8d8l0Kgd', '4205383'), + (578, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '8d8l0Kgd', '4210314'), + (578, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8d8l0Kgd', '4225444'), + (578, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '8d8l0Kgd', '4239259'), + (578, 900, 'attending', '2021-07-24 21:33:19', '2025-12-17 19:47:40', '8d8l0Kgd', '4240316'), + (578, 901, 'attending', '2021-07-31 21:13:28', '2025-12-17 19:47:40', '8d8l0Kgd', '4240317'), + (578, 902, 'not_attending', '2021-08-07 23:08:33', '2025-12-17 19:47:41', '8d8l0Kgd', '4240318'), + (578, 903, 'not_attending', '2021-08-14 21:47:29', '2025-12-17 19:47:42', '8d8l0Kgd', '4240320'), + (578, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8d8l0Kgd', '4250163'), + (578, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '8d8l0Kgd', '4275957'), + (578, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '8d8l0Kgd', '4277819'), + (578, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '8d8l0Kgd', '4301723'), + (578, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '8d8l0Kgd', '4302093'), + (578, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '8d8l0Kgd', '4304151'), + (578, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '8d8l0Kgd', '4356801'), + (578, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '8d8l0Kgd', '4366186'), + (578, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '8d8l0Kgd', '4366187'), + (578, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '8d8l0Kgd', '4420735'), + (578, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '8d8l0Kgd', '4420738'), + (578, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '8d8l0Kgd', '4420739'), + (578, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '8d8l0Kgd', '4420741'), + (578, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '8d8l0Kgd', '4420744'), + (578, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '8d8l0Kgd', '4420747'), + (578, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '8d8l0Kgd', '4420748'), + (578, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '8d8l0Kgd', '4420749'), + (578, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '8d8l0Kgd', '4461883'), + (578, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '8d8l0Kgd', '4508342'), + (578, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '8d8l0Kgd', '4568602'), + (578, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8d8l0Kgd', '6045684'), + (579, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Vdxw5kO4', '3236465'), + (579, 622, 'attending', '2021-03-14 00:00:02', '2025-12-17 19:47:51', 'Vdxw5kO4', '3517816'), + (579, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'Vdxw5kO4', '3539916'), + (579, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Vdxw5kO4', '3539918'), + (579, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Vdxw5kO4', '3539919'), + (579, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Vdxw5kO4', '3539920'), + (579, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Vdxw5kO4', '3539921'), + (579, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Vdxw5kO4', '3539927'), + (579, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Vdxw5kO4', '3582734'), + (579, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Vdxw5kO4', '3583262'), + (579, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Vdxw5kO4', '3619523'), + (579, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Vdxw5kO4', '3661369'), + (579, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Vdxw5kO4', '3674262'), + (579, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Vdxw5kO4', '3677402'), + (579, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Vdxw5kO4', '3730212'), + (579, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Vdxw5kO4', '3793156'), + (579, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Vdxw5kO4', '3803310'), + (579, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Vdxw5kO4', '3806392'), + (579, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Vdxw5kO4', '6045684'), + (580, 47, 'attending', '2020-05-03 23:33:14', '2025-12-17 19:47:57', 'ydwen00A', '2975272'), + (580, 62, 'attending', '2020-05-12 23:27:37', '2025-12-17 19:47:57', 'ydwen00A', '2977131'), + (580, 63, 'maybe', '2020-05-19 22:37:27', '2025-12-17 19:47:57', 'ydwen00A', '2977132'), + (580, 66, 'attending', '2020-06-09 01:17:53', '2025-12-17 19:47:58', 'ydwen00A', '2977135'), + (580, 68, 'attending', '2020-06-23 22:49:48', '2025-12-17 19:47:58', 'ydwen00A', '2977137'), + (580, 72, 'attending', '2020-05-07 18:35:47', '2025-12-17 19:47:57', 'ydwen00A', '2977812'), + (580, 77, 'attending', '2020-05-04 17:00:37', '2025-12-17 19:47:57', 'ydwen00A', '2978247'), + (580, 78, 'attending', '2020-05-07 22:00:55', '2025-12-17 19:47:57', 'ydwen00A', '2978249'), + (580, 79, 'attending', '2020-05-07 22:01:00', '2025-12-17 19:47:57', 'ydwen00A', '2978250'), + (580, 80, 'attending', '2020-05-07 22:01:04', '2025-12-17 19:47:58', 'ydwen00A', '2978251'), + (580, 81, 'attending', '2020-05-07 22:00:12', '2025-12-17 19:47:58', 'ydwen00A', '2978252'), + (580, 83, 'attending', '2020-05-07 20:06:33', '2025-12-17 19:47:57', 'ydwen00A', '2978438'), + (580, 96, 'attending', '2020-05-06 20:52:26', '2025-12-17 19:47:57', 'ydwen00A', '2987453'), + (580, 97, 'attending', '2020-05-06 18:52:12', '2025-12-17 19:47:57', 'ydwen00A', '2987454'), + (580, 98, 'maybe', '2020-05-21 23:32:05', '2025-12-17 19:47:57', 'ydwen00A', '2987455'), + (580, 99, 'maybe', '2020-05-03 23:47:34', '2025-12-17 19:47:57', 'ydwen00A', '2988545'), + (580, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'ydwen00A', '2994480'), + (580, 115, 'maybe', '2020-05-16 22:31:58', '2025-12-17 19:47:57', 'ydwen00A', '3001217'), + (580, 116, 'attending', '2020-05-04 17:00:21', '2025-12-17 19:47:57', 'ydwen00A', '3006242'), + (580, 120, 'attending', '2020-05-10 23:04:29', '2025-12-17 19:47:57', 'ydwen00A', '3018282'), + (580, 121, 'attending', '2020-05-18 05:15:51', '2025-12-17 19:47:57', 'ydwen00A', '3023063'), + (580, 122, 'maybe', '2020-05-18 23:10:35', '2025-12-17 19:47:57', 'ydwen00A', '3023491'), + (580, 123, 'attending', '2020-05-19 22:23:15', '2025-12-17 19:47:57', 'ydwen00A', '3023729'), + (580, 124, 'maybe', '2020-05-25 22:15:50', '2025-12-17 19:47:57', 'ydwen00A', '3023809'), + (580, 125, 'attending', '2020-05-17 03:30:10', '2025-12-17 19:47:57', 'ydwen00A', '3023987'), + (580, 126, 'attending', '2020-05-22 18:52:28', '2025-12-17 19:47:57', 'ydwen00A', '3024022'), + (580, 127, 'attending', '2020-05-17 03:30:14', '2025-12-17 19:47:57', 'ydwen00A', '3025623'), + (580, 130, 'attending', '2020-05-22 18:34:35', '2025-12-17 19:47:57', 'ydwen00A', '3028781'), + (580, 133, 'maybe', '2020-06-19 18:22:33', '2025-12-17 19:47:58', 'ydwen00A', '3034321'), + (580, 134, 'attending', '2020-05-24 22:04:04', '2025-12-17 19:47:57', 'ydwen00A', '3034367'), + (580, 135, 'attending', '2020-05-25 00:23:43', '2025-12-17 19:47:57', 'ydwen00A', '3034368'), + (580, 136, 'attending', '2020-05-24 22:41:03', '2025-12-17 19:47:57', 'ydwen00A', '3035881'), + (580, 139, 'maybe', '2020-06-18 22:50:30', '2025-12-17 19:47:58', 'ydwen00A', '3046190'), + (580, 140, 'attending', '2020-06-01 02:26:48', '2025-12-17 19:47:57', 'ydwen00A', '3046980'), + (580, 142, 'attending', '2020-06-01 02:26:46', '2025-12-17 19:47:57', 'ydwen00A', '3049860'), + (580, 143, 'attending', '2020-06-07 22:18:23', '2025-12-17 19:47:58', 'ydwen00A', '3049983'), + (580, 168, 'attending', '2020-06-06 22:45:00', '2025-12-17 19:47:58', 'ydwen00A', '3058740'), + (580, 169, 'attending', '2020-06-15 22:45:00', '2025-12-17 19:47:58', 'ydwen00A', '3058741'), + (580, 170, 'attending', '2020-06-07 22:42:57', '2025-12-17 19:47:58', 'ydwen00A', '3058742'), + (580, 171, 'attending', '2020-06-06 22:45:34', '2025-12-17 19:47:58', 'ydwen00A', '3058743'), + (580, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'ydwen00A', '3058959'), + (580, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'ydwen00A', '3067093'), + (580, 174, 'attending', '2020-06-09 01:18:02', '2025-12-17 19:47:58', 'ydwen00A', '3067927'), + (580, 175, 'attending', '2020-06-17 22:14:19', '2025-12-17 19:47:58', 'ydwen00A', '3068305'), + (580, 176, 'attending', '2020-06-19 18:22:13', '2025-12-17 19:47:58', 'ydwen00A', '3073192'), + (580, 177, 'attending', '2020-06-17 22:14:15', '2025-12-17 19:47:58', 'ydwen00A', '3073193'), + (580, 179, 'attending', '2020-06-20 16:29:19', '2025-12-17 19:47:58', 'ydwen00A', '3073687'), + (580, 180, 'attending', '2020-06-18 22:58:29', '2025-12-17 19:47:58', 'ydwen00A', '3074048'), + (580, 181, 'maybe', '2020-06-19 18:21:55', '2025-12-17 19:47:58', 'ydwen00A', '3074513'), + (580, 182, 'attending', '2020-06-27 22:48:34', '2025-12-17 19:47:55', 'ydwen00A', '3074514'), + (580, 183, 'maybe', '2020-06-19 18:22:10', '2025-12-17 19:47:58', 'ydwen00A', '3075228'), + (580, 185, 'maybe', '2020-06-19 18:22:00', '2025-12-17 19:47:58', 'ydwen00A', '3075456'), + (580, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'ydwen00A', '3083791'), + (580, 187, 'maybe', '2020-06-19 18:22:44', '2025-12-17 19:47:55', 'ydwen00A', '3085151'), + (580, 190, 'attending', '2020-07-04 22:40:34', '2025-12-17 19:47:55', 'ydwen00A', '3087258'), + (580, 191, 'attending', '2020-07-05 04:39:21', '2025-12-17 19:47:55', 'ydwen00A', '3087259'), + (580, 192, 'attending', '2020-07-18 06:49:28', '2025-12-17 19:47:55', 'ydwen00A', '3087260'), + (580, 193, 'attending', '2020-07-25 06:37:25', '2025-12-17 19:47:55', 'ydwen00A', '3087261'), + (580, 194, 'attending', '2020-07-29 23:03:50', '2025-12-17 19:47:56', 'ydwen00A', '3087262'), + (580, 195, 'attending', '2020-08-02 22:13:49', '2025-12-17 19:47:56', 'ydwen00A', '3087264'), + (580, 196, 'attending', '2020-08-10 19:42:45', '2025-12-17 19:47:56', 'ydwen00A', '3087265'), + (580, 197, 'attending', '2020-08-15 22:33:56', '2025-12-17 19:47:56', 'ydwen00A', '3087266'), + (580, 198, 'attending', '2020-08-29 22:48:31', '2025-12-17 19:47:56', 'ydwen00A', '3087267'), + (580, 199, 'attending', '2020-08-29 22:55:14', '2025-12-17 19:47:56', 'ydwen00A', '3087268'), + (580, 201, 'attending', '2020-06-25 20:40:49', '2025-12-17 19:47:55', 'ydwen00A', '3088653'), + (580, 204, 'attending', '2020-06-29 03:57:48', '2025-12-17 19:47:55', 'ydwen00A', '3102758'), + (580, 205, 'attending', '2020-07-10 21:17:56', '2025-12-17 19:47:55', 'ydwen00A', '3104804'), + (580, 209, 'attending', '2020-07-01 18:52:33', '2025-12-17 19:47:55', 'ydwen00A', '3106813'), + (580, 212, 'attending', '2020-07-14 22:23:27', '2025-12-17 19:47:55', 'ydwen00A', '3118517'), + (580, 214, 'attending', '2020-07-08 21:59:47', '2025-12-17 19:47:55', 'ydwen00A', '3124139'), + (580, 216, 'attending', '2020-07-09 23:54:08', '2025-12-17 19:47:55', 'ydwen00A', '3126500'), + (580, 217, 'maybe', '2020-07-13 22:17:17', '2025-12-17 19:47:55', 'ydwen00A', '3126684'), + (580, 223, 'attending', '2020-09-05 17:34:33', '2025-12-17 19:47:56', 'ydwen00A', '3129980'), + (580, 225, 'attending', '2020-07-21 14:03:40', '2025-12-17 19:47:55', 'ydwen00A', '3132378'), + (580, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'ydwen00A', '3132817'), + (580, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'ydwen00A', '3132820'), + (580, 228, 'attending', '2020-07-13 20:24:55', '2025-12-17 19:47:55', 'ydwen00A', '3132821'), + (580, 231, 'attending', '2020-07-19 22:02:18', '2025-12-17 19:47:55', 'ydwen00A', '3139762'), + (580, 265, 'attending', '2020-07-28 00:09:38', '2025-12-17 19:47:55', 'ydwen00A', '3150806'), + (580, 269, 'attending', '2020-07-28 23:58:56', '2025-12-17 19:47:55', 'ydwen00A', '3153076'), + (580, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'ydwen00A', '3155321'), + (580, 272, 'attending', '2020-08-03 19:43:29', '2025-12-17 19:47:56', 'ydwen00A', '3161472'), + (580, 273, 'attending', '2020-08-04 04:48:10', '2025-12-17 19:47:56', 'ydwen00A', '3162006'), + (580, 277, 'attending', '2020-08-03 21:10:40', '2025-12-17 19:47:56', 'ydwen00A', '3163442'), + (580, 278, 'attending', '2020-08-10 19:43:15', '2025-12-17 19:47:56', 'ydwen00A', '3165192'), + (580, 281, 'attending', '2020-08-07 19:45:34', '2025-12-17 19:47:56', 'ydwen00A', '3166945'), + (580, 283, 'attending', '2020-08-06 22:26:44', '2025-12-17 19:47:56', 'ydwen00A', '3169555'), + (580, 284, 'attending', '2020-08-06 22:26:42', '2025-12-17 19:47:56', 'ydwen00A', '3169556'), + (580, 287, 'attending', '2020-08-28 21:10:03', '2025-12-17 19:47:56', 'ydwen00A', '3170247'), + (580, 291, 'maybe', '2020-09-09 15:06:10', '2025-12-17 19:47:56', 'ydwen00A', '3170252'), + (580, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'ydwen00A', '3172832'), + (580, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'ydwen00A', '3172833'), + (580, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'ydwen00A', '3172834'), + (580, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'ydwen00A', '3172876'), + (580, 301, 'maybe', '2020-08-27 15:55:19', '2025-12-17 19:47:56', 'ydwen00A', '3178027'), + (580, 307, 'attending', '2020-08-20 09:41:40', '2025-12-17 19:47:56', 'ydwen00A', '3182590'), + (580, 311, 'attending', '2020-09-12 01:05:56', '2025-12-17 19:47:56', 'ydwen00A', '3186057'), + (580, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'ydwen00A', '3191735'), + (580, 318, 'attending', '2020-08-30 03:16:21', '2025-12-17 19:47:56', 'ydwen00A', '3193885'), + (580, 319, 'attending', '2020-08-31 22:24:21', '2025-12-17 19:47:56', 'ydwen00A', '3194179'), + (580, 322, 'not_attending', '2020-09-13 23:33:13', '2025-12-17 19:47:56', 'ydwen00A', '3197080'), + (580, 323, 'not_attending', '2020-09-13 23:33:23', '2025-12-17 19:47:56', 'ydwen00A', '3197081'), + (580, 325, 'attending', '2020-09-23 23:34:52', '2025-12-17 19:47:51', 'ydwen00A', '3197083'), + (580, 326, 'attending', '2020-09-25 22:50:41', '2025-12-17 19:47:52', 'ydwen00A', '3197084'), + (580, 327, 'maybe', '2020-09-21 05:21:26', '2025-12-17 19:47:52', 'ydwen00A', '3197085'), + (580, 328, 'maybe', '2020-09-21 05:21:34', '2025-12-17 19:47:52', 'ydwen00A', '3197086'), + (580, 329, 'maybe', '2020-09-25 23:18:49', '2025-12-17 19:47:52', 'ydwen00A', '3197087'), + (580, 332, 'not_attending', '2020-09-09 15:05:43', '2025-12-17 19:47:56', 'ydwen00A', '3198873'), + (580, 333, 'attending', '2020-10-06 22:50:15', '2025-12-17 19:47:52', 'ydwen00A', '3199782'), + (580, 334, 'maybe', '2020-10-02 02:13:59', '2025-12-17 19:47:52', 'ydwen00A', '3199784'), + (580, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'ydwen00A', '3200209'), + (580, 336, 'not_attending', '2020-09-13 23:33:07', '2025-12-17 19:47:56', 'ydwen00A', '3200495'), + (580, 337, 'maybe', '2020-09-09 15:05:51', '2025-12-17 19:47:56', 'ydwen00A', '3201771'), + (580, 343, 'maybe', '2020-09-21 05:20:50', '2025-12-17 19:47:56', 'ydwen00A', '3206759'), + (580, 344, 'attending', '2020-10-02 02:14:29', '2025-12-17 19:47:53', 'ydwen00A', '3206906'), + (580, 347, 'maybe', '2020-09-21 05:20:59', '2025-12-17 19:47:51', 'ydwen00A', '3207930'), + (580, 350, 'attending', '2020-09-12 19:53:09', '2025-12-17 19:47:56', 'ydwen00A', '3209255'), + (580, 351, 'not_attending', '2020-09-13 23:33:17', '2025-12-17 19:47:56', 'ydwen00A', '3209257'), + (580, 358, 'attending', '2020-09-19 16:28:15', '2025-12-17 19:47:56', 'ydwen00A', '3212579'), + (580, 362, 'attending', '2020-09-25 23:18:21', '2025-12-17 19:47:52', 'ydwen00A', '3214207'), + (580, 363, 'maybe', '2020-09-21 05:21:23', '2025-12-17 19:47:52', 'ydwen00A', '3217037'), + (580, 364, 'attending', '2020-09-21 21:47:43', '2025-12-17 19:47:56', 'ydwen00A', '3217106'), + (580, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'ydwen00A', '3218510'), + (580, 368, 'maybe', '2020-09-25 23:18:40', '2025-12-17 19:47:52', 'ydwen00A', '3221403'), + (580, 369, 'maybe', '2020-10-02 02:13:45', '2025-12-17 19:47:52', 'ydwen00A', '3221404'), + (580, 370, 'maybe', '2020-10-02 02:13:48', '2025-12-17 19:47:52', 'ydwen00A', '3221405'), + (580, 371, 'maybe', '2020-10-02 02:13:56', '2025-12-17 19:47:52', 'ydwen00A', '3221406'), + (580, 372, 'maybe', '2020-10-02 02:13:41', '2025-12-17 19:47:52', 'ydwen00A', '3221407'), + (580, 373, 'maybe', '2020-10-02 02:14:23', '2025-12-17 19:47:52', 'ydwen00A', '3221413'), + (580, 374, 'maybe', '2020-10-02 02:14:13', '2025-12-17 19:47:53', 'ydwen00A', '3221415'), + (580, 376, 'maybe', '2020-10-02 02:13:53', '2025-12-17 19:47:52', 'ydwen00A', '3222827'), + (580, 377, 'maybe', '2020-10-02 02:14:15', '2025-12-17 19:47:53', 'ydwen00A', '3222828'), + (580, 382, 'attending', '2020-10-02 02:12:10', '2025-12-17 19:47:52', 'ydwen00A', '3226873'), + (580, 385, 'attending', '2020-10-02 02:11:31', '2025-12-17 19:47:52', 'ydwen00A', '3228698'), + (580, 386, 'attending', '2020-10-10 17:09:32', '2025-12-17 19:47:52', 'ydwen00A', '3228699'), + (580, 387, 'attending', '2020-10-16 18:36:37', '2025-12-17 19:47:52', 'ydwen00A', '3228700'), + (580, 388, 'attending', '2020-10-02 02:11:47', '2025-12-17 19:47:52', 'ydwen00A', '3228701'), + (580, 390, 'attending', '2020-10-02 02:12:22', '2025-12-17 19:47:52', 'ydwen00A', '3231510'), + (580, 413, 'maybe', '2020-10-12 17:25:49', '2025-12-17 19:47:52', 'ydwen00A', '3236670'), + (580, 414, 'attending', '2020-10-16 18:39:53', '2025-12-17 19:47:52', 'ydwen00A', '3237277'), + (580, 416, 'attending', '2020-10-09 21:22:31', '2025-12-17 19:47:52', 'ydwen00A', '3238073'), + (580, 419, 'maybe', '2020-10-12 17:25:29', '2025-12-17 19:47:52', 'ydwen00A', '3242234'), + (580, 424, 'maybe', '2020-10-12 17:25:13', '2025-12-17 19:47:52', 'ydwen00A', '3245751'), + (580, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'ydwen00A', '3250232'), + (580, 427, 'attending', '2020-10-28 20:08:18', '2025-12-17 19:47:53', 'ydwen00A', '3250233'), + (580, 432, 'maybe', '2020-11-03 16:18:19', '2025-12-17 19:47:53', 'ydwen00A', '3254416'), + (580, 433, 'maybe', '2020-11-03 16:18:23', '2025-12-17 19:47:53', 'ydwen00A', '3254417'), + (580, 434, 'maybe', '2020-11-03 16:18:35', '2025-12-17 19:47:53', 'ydwen00A', '3254418'), + (580, 437, 'attending', '2020-10-28 20:07:45', '2025-12-17 19:47:53', 'ydwen00A', '3256160'), + (580, 438, 'not_attending', '2020-11-01 02:03:01', '2025-12-17 19:47:53', 'ydwen00A', '3256163'), + (580, 440, 'maybe', '2020-11-03 16:18:10', '2025-12-17 19:47:53', 'ydwen00A', '3256168'), + (580, 441, 'maybe', '2020-11-03 16:18:14', '2025-12-17 19:47:54', 'ydwen00A', '3256169'), + (580, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'ydwen00A', '3263578'), + (580, 452, 'attending', '2020-11-03 16:18:42', '2025-12-17 19:47:54', 'ydwen00A', '3272981'), + (580, 453, 'maybe', '2020-11-03 16:18:31', '2025-12-17 19:47:54', 'ydwen00A', '3274032'), + (580, 456, 'attending', '2020-11-05 18:30:47', '2025-12-17 19:47:54', 'ydwen00A', '3276428'), + (580, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ydwen00A', '3281467'), + (580, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'ydwen00A', '3281470'), + (580, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'ydwen00A', '3281829'), + (580, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'ydwen00A', '3285413'), + (580, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'ydwen00A', '3285414'), + (580, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ydwen00A', '3297764'), + (580, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'ydwen00A', '3313856'), + (580, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ydwen00A', '3314909'), + (580, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ydwen00A', '3314964'), + (580, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ydwen00A', '3323365'), + (580, 508, 'attending', '2021-01-12 00:03:43', '2025-12-17 19:47:48', 'ydwen00A', '3324231'), + (580, 509, 'not_attending', '2021-01-18 23:14:30', '2025-12-17 19:47:49', 'ydwen00A', '3324232'), + (580, 510, 'attending', '2021-01-29 23:42:27', '2025-12-17 19:47:49', 'ydwen00A', '3324233'), + (580, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'ydwen00A', '3329383'), + (580, 516, 'attending', '2020-12-25 07:14:39', '2025-12-17 19:47:48', 'ydwen00A', '3334530'), + (580, 521, 'attending', '2020-12-25 07:14:52', '2025-12-17 19:47:48', 'ydwen00A', '3337454'), + (580, 523, 'attending', '2020-12-25 07:43:51', '2025-12-17 19:47:48', 'ydwen00A', '3342960'), + (580, 526, 'attending', '2020-12-25 07:14:43', '2025-12-17 19:47:48', 'ydwen00A', '3351539'), + (580, 532, 'not_attending', '2021-01-08 00:18:45', '2025-12-17 19:47:48', 'ydwen00A', '3381412'), + (580, 536, 'attending', '2021-01-10 00:34:46', '2025-12-17 19:47:48', 'ydwen00A', '3386848'), + (580, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ydwen00A', '3389527'), + (580, 542, 'attending', '2021-01-12 00:04:13', '2025-12-17 19:47:48', 'ydwen00A', '3395013'), + (580, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ydwen00A', '3396499'), + (580, 544, 'not_attending', '2021-01-12 00:03:41', '2025-12-17 19:47:48', 'ydwen00A', '3396500'), + (580, 545, 'not_attending', '2021-01-12 00:04:16', '2025-12-17 19:47:49', 'ydwen00A', '3396502'), + (580, 546, 'not_attending', '2021-01-12 00:04:27', '2025-12-17 19:47:49', 'ydwen00A', '3396503'), + (580, 548, 'attending', '2021-01-12 00:04:04', '2025-12-17 19:47:48', 'ydwen00A', '3403650'), + (580, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ydwen00A', '3406988'), + (580, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'ydwen00A', '3408338'), + (580, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ydwen00A', '3416576'), + (580, 559, 'not_attending', '2021-01-28 05:10:15', '2025-12-17 19:47:49', 'ydwen00A', '3421439'), + (580, 565, 'attending', '2021-01-27 21:43:44', '2025-12-17 19:47:49', 'ydwen00A', '3426083'), + (580, 566, 'not_attending', '2021-01-29 00:43:17', '2025-12-17 19:47:50', 'ydwen00A', '3427928'), + (580, 568, 'attending', '2021-01-30 19:21:44', '2025-12-17 19:47:50', 'ydwen00A', '3430267'), + (580, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ydwen00A', '3517816'), + (580, 639, 'not_attending', '2021-03-07 04:16:32', '2025-12-17 19:47:51', 'ydwen00A', '3536656'), + (580, 644, 'attending', '2021-04-22 00:06:31', '2025-12-17 19:47:45', 'ydwen00A', '3539919'), + (580, 645, 'attending', '2021-05-08 17:48:57', '2025-12-17 19:47:46', 'ydwen00A', '3539920'), + (580, 646, 'attending', '2021-05-14 20:21:24', '2025-12-17 19:47:46', 'ydwen00A', '3539921'), + (580, 647, 'attending', '2021-05-22 20:39:10', '2025-12-17 19:47:46', 'ydwen00A', '3539922'), + (580, 648, 'attending', '2021-05-29 20:42:52', '2025-12-17 19:47:47', 'ydwen00A', '3539923'), + (580, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ydwen00A', '3539927'), + (580, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ydwen00A', '3582734'), + (580, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ydwen00A', '3583262'), + (580, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydwen00A', '3619523'), + (580, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydwen00A', '3661369'), + (580, 725, 'maybe', '2021-05-23 19:58:08', '2025-12-17 19:47:47', 'ydwen00A', '3661372'), + (580, 729, 'attending', '2021-04-28 22:53:57', '2025-12-17 19:47:46', 'ydwen00A', '3668075'), + (580, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydwen00A', '3674262'), + (580, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydwen00A', '3677402'), + (580, 761, 'attending', '2021-05-14 20:21:47', '2025-12-17 19:47:46', 'ydwen00A', '3716041'), + (580, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydwen00A', '3730212'), + (580, 789, 'attending', '2021-05-30 06:35:26', '2025-12-17 19:47:47', 'ydwen00A', '3785818'), + (580, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydwen00A', '3793156'), + (580, 823, 'attending', '2021-06-13 21:45:30', '2025-12-17 19:47:48', 'ydwen00A', '3974109'), + (580, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydwen00A', '3975311'), + (580, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydwen00A', '3975312'), + (580, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydwen00A', '3994992'), + (580, 844, 'attending', '2021-06-23 21:53:43', '2025-12-17 19:47:38', 'ydwen00A', '4014338'), + (580, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ydwen00A', '4021848'), + (580, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ydwen00A', '4136744'), + (580, 870, 'attending', '2021-07-03 22:14:16', '2025-12-17 19:47:39', 'ydwen00A', '4136937'), + (580, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ydwen00A', '4136938'), + (580, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwen00A', '4136947'), + (580, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ydwen00A', '4210314'), + (580, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwen00A', '4225444'), + (580, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydwen00A', '4239259'), + (580, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ydwen00A', '4240316'), + (580, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ydwen00A', '4240317'), + (580, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ydwen00A', '4240318'), + (580, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ydwen00A', '4240320'), + (580, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ydwen00A', '4250163'), + (580, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ydwen00A', '4275957'), + (580, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydwen00A', '4277819'), + (580, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydwen00A', '4301723'), + (580, 934, 'attending', '2021-08-04 16:42:35', '2025-12-17 19:47:40', 'ydwen00A', '4302093'), + (580, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydwen00A', '4304151'), + (580, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ydwen00A', '4356801'), + (580, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ydwen00A', '4366186'), + (580, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ydwen00A', '4366187'), + (580, 976, 'attending', '2021-08-19 21:35:17', '2025-12-17 19:47:42', 'ydwen00A', '4373933'), + (580, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ydwen00A', '4420735'), + (580, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ydwen00A', '4420738'), + (580, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ydwen00A', '4420739'), + (580, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ydwen00A', '4420741'), + (580, 994, 'attending', '2021-10-02 22:26:00', '2025-12-17 19:47:34', 'ydwen00A', '4420742'), + (580, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ydwen00A', '4420744'), + (580, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ydwen00A', '4420747'), + (580, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ydwen00A', '4420748'), + (580, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ydwen00A', '4420749'), + (580, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ydwen00A', '4461883'), + (580, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ydwen00A', '4508342'), + (580, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ydwen00A', '4568602'), + (580, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ydwen00A', '4572153'), + (580, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'ydwen00A', '4585962'), + (580, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ydwen00A', '4596356'), + (580, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ydwen00A', '4598860'), + (580, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ydwen00A', '4598861'), + (580, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ydwen00A', '4602797'), + (580, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ydwen00A', '4637896'), + (580, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ydwen00A', '4642994'), + (580, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'ydwen00A', '4642995'), + (580, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ydwen00A', '4642996'), + (580, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ydwen00A', '4642997'), + (580, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ydwen00A', '4645687'), + (580, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ydwen00A', '4645698'), + (580, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ydwen00A', '4645704'), + (580, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ydwen00A', '4645705'), + (580, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ydwen00A', '4668385'), + (580, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ydwen00A', '4694407'), + (580, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ydwen00A', '4736497'), + (580, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ydwen00A', '4736499'), + (580, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ydwen00A', '4736500'), + (580, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ydwen00A', '4736503'), + (580, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ydwen00A', '4736504'), + (580, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ydwen00A', '4746789'), + (580, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'ydwen00A', '4753929'), + (580, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ydwen00A', '5038850'), + (580, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ydwen00A', '5045826'), + (580, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ydwen00A', '5132533'), + (580, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ydwen00A', '5186582'), + (580, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ydwen00A', '5186583'), + (580, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ydwen00A', '5186585'), + (580, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ydwen00A', '5190437'), + (580, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ydwen00A', '5195095'), + (580, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ydwen00A', '5215989'), + (580, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ydwen00A', '5223686'), + (580, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ydwen00A', '5247467'), + (580, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ydwen00A', '5260800'), + (580, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ydwen00A', '5269930'), + (580, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ydwen00A', '5271448'), + (580, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'ydwen00A', '5271449'), + (580, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ydwen00A', '5278159'), + (580, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ydwen00A', '5363695'), + (580, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ydwen00A', '5365960'), + (580, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ydwen00A', '5378247'), + (580, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ydwen00A', '5389605'), + (580, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ydwen00A', '5397265'), + (580, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ydwen00A', '5404786'), + (580, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ydwen00A', '5405203'), + (580, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ydwen00A', '5412550'), + (580, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ydwen00A', '5415046'), + (580, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ydwen00A', '5422086'), + (580, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ydwen00A', '5422406'), + (580, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ydwen00A', '5424565'), + (580, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ydwen00A', '5426882'), + (580, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ydwen00A', '5441125'), + (580, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ydwen00A', '5441126'), + (580, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ydwen00A', '5441128'), + (580, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ydwen00A', '5441131'), + (580, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ydwen00A', '5441132'), + (580, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ydwen00A', '5453325'), + (580, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ydwen00A', '5454516'), + (580, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ydwen00A', '5454605'), + (580, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ydwen00A', '5455037'), + (580, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ydwen00A', '5461278'), + (580, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ydwen00A', '5469480'), + (580, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ydwen00A', '5474663'), + (580, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ydwen00A', '5482022'), + (580, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ydwen00A', '5488912'), + (580, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ydwen00A', '5492192'), + (580, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ydwen00A', '5493139'), + (580, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ydwen00A', '5493200'), + (580, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ydwen00A', '5502188'), + (580, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ydwen00A', '5505059'), + (580, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ydwen00A', '5509055'), + (580, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ydwen00A', '5512862'), + (580, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ydwen00A', '5513985'), + (580, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ydwen00A', '5519981'), + (580, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ydwen00A', '5522550'), + (580, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ydwen00A', '5534683'), + (580, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ydwen00A', '5537735'), + (580, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ydwen00A', '5540859'), + (580, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ydwen00A', '5546619'), + (580, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ydwen00A', '5557747'), + (580, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ydwen00A', '5560255'), + (580, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ydwen00A', '5562906'), + (580, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ydwen00A', '5600604'), + (580, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ydwen00A', '5605544'), + (580, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ydwen00A', '5630960'), + (580, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ydwen00A', '5630961'), + (580, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ydwen00A', '5630962'), + (580, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ydwen00A', '5630966'), + (580, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ydwen00A', '5630967'), + (580, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ydwen00A', '5630968'), + (580, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ydwen00A', '5635406'), + (580, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ydwen00A', '5638765'), + (580, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ydwen00A', '5640097'), + (580, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ydwen00A', '5640843'), + (580, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ydwen00A', '5641521'), + (580, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ydwen00A', '5642818'), + (580, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ydwen00A', '5652395'), + (580, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ydwen00A', '5670445'), + (580, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ydwen00A', '5671637'), + (580, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ydwen00A', '5672329'), + (580, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ydwen00A', '5674057'), + (580, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ydwen00A', '5674060'), + (580, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ydwen00A', '5677461'), + (580, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ydwen00A', '5698046'), + (580, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ydwen00A', '5699760'), + (580, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ydwen00A', '5741601'), + (580, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ydwen00A', '5763458'), + (580, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ydwen00A', '5774172'), + (580, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ydwen00A', '5818247'), + (580, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ydwen00A', '5819471'), + (580, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'ydwen00A', '5827739'), + (580, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ydwen00A', '5844306'), + (580, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ydwen00A', '5850159'), + (580, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ydwen00A', '5858999'), + (580, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ydwen00A', '5871984'), + (580, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ydwen00A', '5876354'), + (580, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ydwen00A', '5880939'), + (580, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ydwen00A', '5880940'), + (580, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ydwen00A', '5880942'), + (580, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ydwen00A', '5880943'), + (580, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ydwen00A', '5887890'), + (580, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ydwen00A', '5888598'), + (580, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ydwen00A', '5893260'), + (580, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ydwen00A', '5899826'), + (580, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ydwen00A', '5900199'), + (580, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ydwen00A', '5900200'), + (580, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ydwen00A', '5900202'), + (580, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ydwen00A', '5900203'), + (580, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ydwen00A', '5901108'), + (580, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ydwen00A', '5901126'), + (580, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'ydwen00A', '5901606'), + (580, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ydwen00A', '5909655'), + (580, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ydwen00A', '5910522'), + (580, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ydwen00A', '5910526'), + (580, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ydwen00A', '5910528'), + (580, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ydwen00A', '5916219'), + (580, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ydwen00A', '5936234'), + (580, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ydwen00A', '5958351'), + (580, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ydwen00A', '5959751'), + (580, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ydwen00A', '5959755'), + (580, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ydwen00A', '5960055'), + (580, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ydwen00A', '5961684'), + (580, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ydwen00A', '5962132'), + (580, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ydwen00A', '5962133'), + (580, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ydwen00A', '5962134'), + (580, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ydwen00A', '5962317'), + (580, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ydwen00A', '5962318'), + (580, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ydwen00A', '5965933'), + (580, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ydwen00A', '5967014'), + (580, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ydwen00A', '5972815'), + (580, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ydwen00A', '5974016'), + (580, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ydwen00A', '5981515'), + (580, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ydwen00A', '5993516'), + (580, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ydwen00A', '5998939'), + (580, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ydwen00A', '6028191'), + (580, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ydwen00A', '6040066'), + (580, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ydwen00A', '6042717'), + (580, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ydwen00A', '6044838'), + (580, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ydwen00A', '6044839'), + (580, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwen00A', '6045684'), + (580, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ydwen00A', '6050104'), + (580, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ydwen00A', '6053195'), + (580, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ydwen00A', '6053198'), + (580, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ydwen00A', '6056085'), + (580, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ydwen00A', '6056916'), + (580, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ydwen00A', '6059290'), + (580, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ydwen00A', '6060328'), + (580, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ydwen00A', '6061037'), + (580, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ydwen00A', '6061039'), + (580, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ydwen00A', '6067245'), + (580, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ydwen00A', '6068094'), + (580, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ydwen00A', '6068252'), + (580, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ydwen00A', '6068253'), + (580, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ydwen00A', '6068254'), + (580, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ydwen00A', '6068280'), + (580, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ydwen00A', '6069093'), + (580, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ydwen00A', '6072528'), + (580, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ydwen00A', '6079840'), + (580, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ydwen00A', '6083398'), + (580, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ydwen00A', '6093504'), + (580, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ydwen00A', '6097414'), + (580, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ydwen00A', '6097442'), + (580, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ydwen00A', '6097684'), + (580, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ydwen00A', '6098762'), + (580, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ydwen00A', '6101361'), + (580, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ydwen00A', '6101362'), + (580, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ydwen00A', '6107314'), + (580, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ydwen00A', '6120034'), + (580, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'ydwen00A', '6136733'), + (580, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ydwen00A', '6137989'), + (580, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ydwen00A', '6150864'), + (580, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ydwen00A', '6155491'), + (580, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ydwen00A', '6164417'), + (580, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ydwen00A', '6166388'), + (580, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ydwen00A', '6176439'), + (580, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ydwen00A', '6182410'), + (580, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ydwen00A', '6185812'), + (580, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ydwen00A', '6187651'), + (580, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ydwen00A', '6187963'), + (580, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ydwen00A', '6187964'), + (580, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ydwen00A', '6187966'), + (580, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ydwen00A', '6187967'), + (580, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ydwen00A', '6187969'), + (580, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ydwen00A', '6334878'), + (580, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ydwen00A', '6337236'), + (580, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ydwen00A', '6337970'), + (580, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ydwen00A', '6338308'), + (580, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ydwen00A', '6341710'), + (580, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ydwen00A', '6342044'), + (580, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ydwen00A', '6342298'), + (580, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ydwen00A', '6343294'), + (580, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ydwen00A', '6347034'), + (580, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ydwen00A', '6347056'), + (580, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ydwen00A', '6353830'), + (580, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ydwen00A', '6353831'), + (580, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ydwen00A', '6357867'), + (580, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ydwen00A', '6358652'), + (580, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ydwen00A', '6361709'), + (580, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ydwen00A', '6361710'), + (580, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ydwen00A', '6361711'), + (580, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ydwen00A', '6361712'), + (580, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ydwen00A', '6361713'), + (580, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'ydwen00A', '6382573'), + (580, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ydwen00A', '6388604'), + (580, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ydwen00A', '6394629'), + (580, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ydwen00A', '6394631'), + (580, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ydwen00A', '6440863'), + (580, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ydwen00A', '6445440'), + (580, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ydwen00A', '6453951'), + (580, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ydwen00A', '6461696'), + (580, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ydwen00A', '6462129'), + (580, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ydwen00A', '6463218'), + (580, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ydwen00A', '6472181'), + (580, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ydwen00A', '6482693'), + (580, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ydwen00A', '6484200'), + (580, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ydwen00A', '6484680'), + (580, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ydwen00A', '6507741'), + (580, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ydwen00A', '6514659'), + (580, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ydwen00A', '6514660'), + (580, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ydwen00A', '6519103'), + (580, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ydwen00A', '6535681'), + (580, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ydwen00A', '6584747'), + (580, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ydwen00A', '6587097'), + (580, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ydwen00A', '6609022'), + (580, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'ydwen00A', '6632757'), + (580, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ydwen00A', '6644187'), + (580, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ydwen00A', '6648951'), + (580, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ydwen00A', '6648952'), + (580, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ydwen00A', '6655401'), + (580, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ydwen00A', '6661585'), + (580, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ydwen00A', '6661588'), + (580, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ydwen00A', '6661589'), + (580, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ydwen00A', '6699906'), + (580, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ydwen00A', '6699913'), + (580, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ydwen00A', '6701109'), + (580, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ydwen00A', '6705219'), + (580, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ydwen00A', '6710153'), + (580, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ydwen00A', '6711552'), + (580, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ydwen00A', '6711553'), + (580, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ydwen00A', '6722688'), + (580, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ydwen00A', '6730620'), + (580, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ydwen00A', '6740364'), + (580, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ydwen00A', '6743829'), + (580, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ydwen00A', '7030380'), + (580, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'ydwen00A', '7033677'), + (580, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ydwen00A', '7044715'), + (580, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ydwen00A', '7050318'), + (580, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ydwen00A', '7050319'), + (580, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ydwen00A', '7050322'), + (580, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ydwen00A', '7057804'), + (580, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ydwen00A', '7072824'), + (580, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ydwen00A', '7074348'), + (580, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ydwen00A', '7074364'), + (580, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ydwen00A', '7089267'), + (580, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ydwen00A', '7098747'), + (580, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ydwen00A', '7113468'), + (580, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ydwen00A', '7114856'), + (580, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ydwen00A', '7114951'), + (580, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ydwen00A', '7114955'), + (580, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ydwen00A', '7114956'), + (580, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ydwen00A', '7114957'), + (580, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ydwen00A', '7159484'), + (580, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ydwen00A', '7178446'), + (580, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ydwen00A', '7220467'), + (580, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ydwen00A', '7240354'), + (580, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ydwen00A', '7251633'), + (580, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ydwen00A', '7324073'), + (580, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ydwen00A', '7324074'), + (580, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ydwen00A', '7324075'), + (580, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ydwen00A', '7324078'), + (580, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ydwen00A', '7324082'), + (580, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ydwen00A', '7331457'), + (580, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ydwen00A', '7363643'), + (580, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ydwen00A', '7368606'), + (580, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ydwen00A', '7397462'), + (580, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ydwen00A', '7424275'), + (580, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ydwen00A', '7432751'), + (580, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ydwen00A', '7432752'), + (580, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ydwen00A', '7432753'), + (580, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ydwen00A', '7432754'), + (580, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ydwen00A', '7432755'), + (580, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ydwen00A', '7432756'), + (580, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ydwen00A', '7432758'), + (580, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ydwen00A', '7432759'), + (580, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ydwen00A', '7433834'), + (580, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'ydwen00A', '7470197'), + (580, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ydwen00A', '7685613'), + (580, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ydwen00A', '7688194'), + (580, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ydwen00A', '7688196'), + (580, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ydwen00A', '7688289'), + (580, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ydwen00A', '7692763'), + (580, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ydwen00A', '7697552'), + (580, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ydwen00A', '7699878'), + (580, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ydwen00A', '7704043'), + (580, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ydwen00A', '7712467'), + (580, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ydwen00A', '7713585'), + (580, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ydwen00A', '7713586'), + (580, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ydwen00A', '7738518'), + (580, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ydwen00A', '7750636'), + (580, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ydwen00A', '7796540'), + (580, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ydwen00A', '7796541'), + (580, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ydwen00A', '7796542'), + (580, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ydwen00A', '7825913'), + (580, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ydwen00A', '7826209'), + (580, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ydwen00A', '7834742'), + (580, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ydwen00A', '7842108'), + (580, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ydwen00A', '7842902'), + (580, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ydwen00A', '7842903'), + (580, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ydwen00A', '7842904'), + (580, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ydwen00A', '7842905'), + (580, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ydwen00A', '7855719'), + (580, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ydwen00A', '7860683'), + (580, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ydwen00A', '7860684'), + (580, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ydwen00A', '7866095'), + (580, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ydwen00A', '7869170'), + (580, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ydwen00A', '7869188'), + (580, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ydwen00A', '7869201'), + (580, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ydwen00A', '7877465'), + (580, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ydwen00A', '7888250'), + (580, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ydwen00A', '7904777'), + (580, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ydwen00A', '8349164'), + (580, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ydwen00A', '8349545'), + (580, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ydwen00A', '8368028'), + (580, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ydwen00A', '8368029'), + (580, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ydwen00A', '8388462'), + (580, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ydwen00A', '8400273'), + (580, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ydwen00A', '8400275'), + (580, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ydwen00A', '8400276'), + (580, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ydwen00A', '8404977'), + (580, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ydwen00A', '8430783'), + (580, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ydwen00A', '8430784'), + (580, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ydwen00A', '8430799'), + (580, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ydwen00A', '8430800'), + (580, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ydwen00A', '8430801'), + (580, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ydwen00A', '8438709'), + (580, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ydwen00A', '8457738'), + (580, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ydwen00A', '8459566'), + (580, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ydwen00A', '8459567'), + (580, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ydwen00A', '8461032'), + (580, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ydwen00A', '8477877'), + (580, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ydwen00A', '8485688'), + (580, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ydwen00A', '8490587'), + (580, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ydwen00A', '8493552'), + (580, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ydwen00A', '8493553'), + (580, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ydwen00A', '8493554'), + (580, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ydwen00A', '8493555'), + (580, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ydwen00A', '8493556'), + (580, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ydwen00A', '8493557'), + (580, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ydwen00A', '8493558'), + (580, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ydwen00A', '8493559'), + (580, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ydwen00A', '8493560'), + (580, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ydwen00A', '8493561'), + (580, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ydwen00A', '8493572'), + (580, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ydwen00A', '8540725'), + (580, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ydwen00A', '8555421'), + (581, 410, 'attending', '2020-11-22 23:55:50', '2025-12-17 19:47:54', 'lAerOQ34', '3236469'), + (581, 429, 'not_attending', '2020-12-06 21:54:31', '2025-12-17 19:47:54', 'lAerOQ34', '3250523'), + (581, 469, 'attending', '2020-11-28 02:10:58', '2025-12-17 19:47:54', 'lAerOQ34', '3285414'), + (581, 477, 'attending', '2020-11-29 04:49:51', '2025-12-17 19:47:54', 'lAerOQ34', '3289559'), + (581, 490, 'attending', '2020-11-29 04:49:03', '2025-12-17 19:47:54', 'lAerOQ34', '3313532'), + (581, 491, 'attending', '2020-11-29 04:49:05', '2025-12-17 19:47:55', 'lAerOQ34', '3313533'), + (581, 492, 'attending', '2020-11-30 16:51:13', '2025-12-17 19:47:54', 'lAerOQ34', '3313731'), + (581, 493, 'not_attending', '2020-12-05 04:50:21', '2025-12-17 19:47:54', 'lAerOQ34', '3313856'), + (581, 495, 'not_attending', '2020-12-06 21:38:59', '2025-12-17 19:47:54', 'lAerOQ34', '3314009'), + (581, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'lAerOQ34', '3314909'), + (581, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'lAerOQ34', '3314964'), + (581, 502, 'attending', '2020-12-12 20:29:06', '2025-12-17 19:47:55', 'lAerOQ34', '3323365'), + (581, 503, 'attending', '2020-12-06 21:38:40', '2025-12-17 19:47:55', 'lAerOQ34', '3323366'), + (581, 504, 'attending', '2020-12-06 21:38:45', '2025-12-17 19:47:55', 'lAerOQ34', '3323368'), + (581, 505, 'attending', '2020-12-06 21:38:23', '2025-12-17 19:47:55', 'lAerOQ34', '3323369'), + (581, 506, 'maybe', '2020-12-13 04:32:52', '2025-12-17 19:47:55', 'lAerOQ34', '3323375'), + (581, 513, 'not_attending', '2020-12-19 17:30:40', '2025-12-17 19:47:55', 'lAerOQ34', '3329383'), + (581, 519, 'attending', '2020-12-14 23:48:29', '2025-12-17 19:47:55', 'lAerOQ34', '3337448'), + (581, 520, 'not_attending', '2020-12-20 19:10:29', '2025-12-17 19:47:55', 'lAerOQ34', '3337453'), + (581, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'lAerOQ34', '3351539'), + (581, 536, 'not_attending', '2021-01-09 21:30:53', '2025-12-17 19:47:48', 'lAerOQ34', '3386848'), + (581, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'lAerOQ34', '3389527'), + (581, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'lAerOQ34', '3396499'), + (581, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'lAerOQ34', '3403650'), + (581, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'lAerOQ34', '3406988'), + (581, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'lAerOQ34', '3408338'), + (581, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'lAerOQ34', '3416576'), + (581, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAerOQ34', '6045684'), + (582, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AnbvzkLA', '5195095'), + (582, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AnbvzkLA', '5223686'), + (582, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AnbvzkLA', '5227432'), + (582, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AnbvzkLA', '5247467'), + (582, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AnbvzkLA', '5260800'), + (582, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AnbvzkLA', '5269930'), + (582, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AnbvzkLA', '5271448'), + (582, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AnbvzkLA', '5271449'), + (582, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AnbvzkLA', '5276469'), + (582, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AnbvzkLA', '5278159'), + (582, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AnbvzkLA', '6045684'), + (583, 884, 'not_attending', '2021-08-13 22:24:14', '2025-12-17 19:47:42', 'Ae725qOd', '4210314'), + (583, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'Ae725qOd', '4315726'), + (583, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Ae725qOd', '4356801'), + (583, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Ae725qOd', '4366186'), + (583, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Ae725qOd', '4366187'), + (583, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Ae725qOd', '4420735'), + (583, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Ae725qOd', '4420738'), + (583, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'Ae725qOd', '4420739'), + (583, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Ae725qOd', '4420741'), + (583, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Ae725qOd', '4420744'), + (583, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Ae725qOd', '4420747'), + (583, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Ae725qOd', '4420748'), + (583, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Ae725qOd', '4420749'), + (583, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Ae725qOd', '4461883'), + (583, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Ae725qOd', '4508342'), + (583, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Ae725qOd', '6045684'), + (584, 410, 'attending', '2020-11-25 23:05:07', '2025-12-17 19:47:54', 'EdVaR3p4', '3236469'), + (584, 452, 'attending', '2020-11-27 18:09:52', '2025-12-17 19:47:54', 'EdVaR3p4', '3272981'), + (584, 465, 'not_attending', '2020-11-27 16:20:25', '2025-12-17 19:47:54', 'EdVaR3p4', '3281555'), + (584, 469, 'attending', '2020-11-25 23:05:20', '2025-12-17 19:47:54', 'EdVaR3p4', '3285414'), + (584, 475, 'attending', '2020-11-26 01:12:01', '2025-12-17 19:47:54', 'EdVaR3p4', '3286760'), + (584, 488, 'maybe', '2020-12-02 04:52:08', '2025-12-17 19:47:54', 'EdVaR3p4', '3312757'), + (584, 489, 'not_attending', '2020-11-28 02:27:34', '2025-12-17 19:47:54', 'EdVaR3p4', '3313022'), + (584, 493, 'attending', '2020-11-29 04:19:34', '2025-12-17 19:47:54', 'EdVaR3p4', '3313856'), + (584, 496, 'maybe', '2020-12-07 23:20:19', '2025-12-17 19:47:54', 'EdVaR3p4', '3314269'), + (584, 497, 'attending', '2020-12-02 04:52:54', '2025-12-17 19:47:55', 'EdVaR3p4', '3314270'), + (584, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'EdVaR3p4', '3314909'), + (584, 500, 'attending', '2020-12-17 22:45:58', '2025-12-17 19:47:55', 'EdVaR3p4', '3314964'), + (584, 501, 'maybe', '2020-12-07 23:20:12', '2025-12-17 19:47:54', 'EdVaR3p4', '3317834'), + (584, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'EdVaR3p4', '3323365'), + (584, 513, 'attending', '2020-12-17 22:46:07', '2025-12-17 19:47:55', 'EdVaR3p4', '3329383'), + (584, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'EdVaR3p4', '3351539'), + (584, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'EdVaR3p4', '3386848'), + (584, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'EdVaR3p4', '3389527'), + (584, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'EdVaR3p4', '3396499'), + (584, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'EdVaR3p4', '3403650'), + (584, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'EdVaR3p4', '3406988'), + (584, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'EdVaR3p4', '3416576'), + (584, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'EdVaR3p4', '3418925'), + (584, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'EdVaR3p4', '3426074'), + (584, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'EdVaR3p4', '3430267'), + (584, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'EdVaR3p4', '3470305'), + (584, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'EdVaR3p4', '3470991'), + (584, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'EdVaR3p4', '3517815'), + (584, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'EdVaR3p4', '3517816'), + (584, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'EdVaR3p4', '3523941'), + (584, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'EdVaR3p4', '3533850'), + (584, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'EdVaR3p4', '3536632'), + (584, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'EdVaR3p4', '3536656'), + (584, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'EdVaR3p4', '3539916'), + (584, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'EdVaR3p4', '3539917'), + (584, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'EdVaR3p4', '3539918'), + (584, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'EdVaR3p4', '3539919'), + (584, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'EdVaR3p4', '3539920'), + (584, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'EdVaR3p4', '3539921'), + (584, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'EdVaR3p4', '3539922'), + (584, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'EdVaR3p4', '3539923'), + (584, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'EdVaR3p4', '3539927'), + (584, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'EdVaR3p4', '3582734'), + (584, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'EdVaR3p4', '3583262'), + (584, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'EdVaR3p4', '3619523'), + (584, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'EdVaR3p4', '3661369'), + (584, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'EdVaR3p4', '3674262'), + (584, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'EdVaR3p4', '3677402'), + (584, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'EdVaR3p4', '3730212'), + (584, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'EdVaR3p4', '3793156'), + (584, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'EdVaR3p4', '3974109'), + (584, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'EdVaR3p4', '3975311'), + (584, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'EdVaR3p4', '3975312'), + (584, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'EdVaR3p4', '3994992'), + (584, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'EdVaR3p4', '4014338'), + (584, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'EdVaR3p4', '4021848'), + (584, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'EdVaR3p4', '4136744'), + (584, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'EdVaR3p4', '4136937'), + (584, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'EdVaR3p4', '4136938'), + (584, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'EdVaR3p4', '4136947'), + (584, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'EdVaR3p4', '4210314'), + (584, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'EdVaR3p4', '4225444'), + (584, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'EdVaR3p4', '4239259'), + (584, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'EdVaR3p4', '4240316'), + (584, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'EdVaR3p4', '4240317'), + (584, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'EdVaR3p4', '4240318'), + (584, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'EdVaR3p4', '4240320'), + (584, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'EdVaR3p4', '4250163'), + (584, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'EdVaR3p4', '4275957'), + (584, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'EdVaR3p4', '4277819'), + (584, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'EdVaR3p4', '4301723'), + (584, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'EdVaR3p4', '4302093'), + (584, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'EdVaR3p4', '4304151'), + (584, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'EdVaR3p4', '4356801'), + (584, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'EdVaR3p4', '4366186'), + (584, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'EdVaR3p4', '4366187'), + (584, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'EdVaR3p4', '4420735'), + (584, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'EdVaR3p4', '4420738'), + (584, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'EdVaR3p4', '4420739'), + (584, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'EdVaR3p4', '4420741'), + (584, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'EdVaR3p4', '4420744'), + (584, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'EdVaR3p4', '4420747'), + (584, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'EdVaR3p4', '4420748'), + (584, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'EdVaR3p4', '4420749'), + (584, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'EdVaR3p4', '4461883'), + (584, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'EdVaR3p4', '4508342'), + (584, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'EdVaR3p4', '4568602'), + (584, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'EdVaR3p4', '4572153'), + (584, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'EdVaR3p4', '4585962'), + (584, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'EdVaR3p4', '4596356'), + (584, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'EdVaR3p4', '4598860'), + (584, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'EdVaR3p4', '4598861'), + (584, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'EdVaR3p4', '4602797'), + (584, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'EdVaR3p4', '4637896'), + (584, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'EdVaR3p4', '4642994'), + (584, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'EdVaR3p4', '4642995'), + (584, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'EdVaR3p4', '4642996'), + (584, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'EdVaR3p4', '4642997'), + (584, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'EdVaR3p4', '4645687'), + (584, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'EdVaR3p4', '4645698'), + (584, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'EdVaR3p4', '4645704'), + (584, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'EdVaR3p4', '4645705'), + (584, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'EdVaR3p4', '4668385'), + (584, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'EdVaR3p4', '4694407'), + (584, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'EdVaR3p4', '4736497'), + (584, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'EdVaR3p4', '4736499'), + (584, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'EdVaR3p4', '4736500'), + (584, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'EdVaR3p4', '4736503'), + (584, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'EdVaR3p4', '4736504'), + (584, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'EdVaR3p4', '4746789'), + (584, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'EdVaR3p4', '4753929'), + (584, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'EdVaR3p4', '5038850'), + (584, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'EdVaR3p4', '5045826'), + (584, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'EdVaR3p4', '5132533'), + (584, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'EdVaR3p4', '5186582'), + (584, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'EdVaR3p4', '5186583'), + (584, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'EdVaR3p4', '5186585'), + (584, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'EdVaR3p4', '5190437'), + (584, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'EdVaR3p4', '5195095'), + (584, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'EdVaR3p4', '5215989'), + (584, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'EdVaR3p4', '5223686'), + (584, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'EdVaR3p4', '5247467'), + (584, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'EdVaR3p4', '5260800'), + (584, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'EdVaR3p4', '5269930'), + (584, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'EdVaR3p4', '5271448'), + (584, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'EdVaR3p4', '5271449'), + (584, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'EdVaR3p4', '5278159'), + (584, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'EdVaR3p4', '5363695'), + (584, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'EdVaR3p4', '5365960'), + (584, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'EdVaR3p4', '5378247'), + (584, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'EdVaR3p4', '5389605'), + (584, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'EdVaR3p4', '5397265'), + (584, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'EdVaR3p4', '5404786'), + (584, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'EdVaR3p4', '5405203'), + (584, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'EdVaR3p4', '5412550'), + (584, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'EdVaR3p4', '5415046'), + (584, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'EdVaR3p4', '5422086'), + (584, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'EdVaR3p4', '5422406'), + (584, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'EdVaR3p4', '5424565'), + (584, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'EdVaR3p4', '5426882'), + (584, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'EdVaR3p4', '5441125'), + (584, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'EdVaR3p4', '5441126'), + (584, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'EdVaR3p4', '5441128'), + (584, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'EdVaR3p4', '5441131'), + (584, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'EdVaR3p4', '5441132'), + (584, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'EdVaR3p4', '5453325'), + (584, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'EdVaR3p4', '5454516'), + (584, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'EdVaR3p4', '5454605'), + (584, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'EdVaR3p4', '5455037'), + (584, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'EdVaR3p4', '5461278'), + (584, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'EdVaR3p4', '5469480'), + (584, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'EdVaR3p4', '5474663'), + (584, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'EdVaR3p4', '5482022'), + (584, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'EdVaR3p4', '5488912'), + (584, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'EdVaR3p4', '5492192'), + (584, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'EdVaR3p4', '5493139'), + (584, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'EdVaR3p4', '5493200'), + (584, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'EdVaR3p4', '5502188'), + (584, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'EdVaR3p4', '5505059'), + (584, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'EdVaR3p4', '5509055'), + (584, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'EdVaR3p4', '5512862'), + (584, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'EdVaR3p4', '5513985'), + (584, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'EdVaR3p4', '5519981'), + (584, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'EdVaR3p4', '5522550'), + (584, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'EdVaR3p4', '5534683'), + (584, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'EdVaR3p4', '5537735'), + (584, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'EdVaR3p4', '5540859'), + (584, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'EdVaR3p4', '5546619'), + (584, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'EdVaR3p4', '5557747'), + (584, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'EdVaR3p4', '5560255'), + (584, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'EdVaR3p4', '5562906'), + (584, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'EdVaR3p4', '5600604'), + (584, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'EdVaR3p4', '5605544'), + (584, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'EdVaR3p4', '5630960'), + (584, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'EdVaR3p4', '5630961'), + (584, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'EdVaR3p4', '5630962'), + (584, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'EdVaR3p4', '5630966'), + (584, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'EdVaR3p4', '5630967'), + (584, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'EdVaR3p4', '5630968'), + (584, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'EdVaR3p4', '5635406'), + (584, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'EdVaR3p4', '5638765'), + (584, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'EdVaR3p4', '5640097'), + (584, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'EdVaR3p4', '5640843'), + (584, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'EdVaR3p4', '5641521'), + (584, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'EdVaR3p4', '5642818'), + (584, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'EdVaR3p4', '5652395'), + (584, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'EdVaR3p4', '5670445'), + (584, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'EdVaR3p4', '5671637'), + (584, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'EdVaR3p4', '5672329'), + (584, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'EdVaR3p4', '5674057'), + (584, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'EdVaR3p4', '5674060'), + (584, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'EdVaR3p4', '5677461'), + (584, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'EdVaR3p4', '5698046'), + (584, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'EdVaR3p4', '5699760'), + (584, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'EdVaR3p4', '5741601'), + (584, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'EdVaR3p4', '5763458'), + (584, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'EdVaR3p4', '5774172'), + (584, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'EdVaR3p4', '5818247'), + (584, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'EdVaR3p4', '5819471'), + (584, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'EdVaR3p4', '5827739'), + (584, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'EdVaR3p4', '5844306'), + (584, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'EdVaR3p4', '5850159'), + (584, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'EdVaR3p4', '5858999'), + (584, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'EdVaR3p4', '5871984'), + (584, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'EdVaR3p4', '5876354'), + (584, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'EdVaR3p4', '5880939'), + (584, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'EdVaR3p4', '5880940'), + (584, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'EdVaR3p4', '5880942'), + (584, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'EdVaR3p4', '5880943'), + (584, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'EdVaR3p4', '5887890'), + (584, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'EdVaR3p4', '5888598'), + (584, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'EdVaR3p4', '5893260'), + (584, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'EdVaR3p4', '5899826'), + (584, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'EdVaR3p4', '5900199'), + (584, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'EdVaR3p4', '5900200'), + (584, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'EdVaR3p4', '5900202'), + (584, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'EdVaR3p4', '5900203'), + (584, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'EdVaR3p4', '5901108'), + (584, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'EdVaR3p4', '5901126'), + (584, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'EdVaR3p4', '5901606'), + (584, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'EdVaR3p4', '5909655'), + (584, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'EdVaR3p4', '5910522'), + (584, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'EdVaR3p4', '5910526'), + (584, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'EdVaR3p4', '5910528'), + (584, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'EdVaR3p4', '5916219'), + (584, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'EdVaR3p4', '5936234'), + (584, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'EdVaR3p4', '5958351'), + (584, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'EdVaR3p4', '5959751'), + (584, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'EdVaR3p4', '5959755'), + (584, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'EdVaR3p4', '5960055'), + (584, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'EdVaR3p4', '5961684'), + (584, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'EdVaR3p4', '5962132'), + (584, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'EdVaR3p4', '5962133'), + (584, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'EdVaR3p4', '5962134'), + (584, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'EdVaR3p4', '5962317'), + (584, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'EdVaR3p4', '5962318'), + (584, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'EdVaR3p4', '5965933'), + (584, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'EdVaR3p4', '5967014'), + (584, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'EdVaR3p4', '5972815'), + (584, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'EdVaR3p4', '5974016'), + (584, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'EdVaR3p4', '5981515'), + (584, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'EdVaR3p4', '5993516'), + (584, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'EdVaR3p4', '5998939'), + (584, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'EdVaR3p4', '6028191'), + (584, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'EdVaR3p4', '6040066'), + (584, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'EdVaR3p4', '6042717'), + (584, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'EdVaR3p4', '6044838'), + (584, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'EdVaR3p4', '6044839'), + (584, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVaR3p4', '6045684'), + (584, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'EdVaR3p4', '6050104'), + (584, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'EdVaR3p4', '6053195'), + (584, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'EdVaR3p4', '6053198'), + (584, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'EdVaR3p4', '6056085'), + (584, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'EdVaR3p4', '6056916'), + (584, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'EdVaR3p4', '6059290'), + (584, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'EdVaR3p4', '6060328'), + (584, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'EdVaR3p4', '6061037'), + (584, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'EdVaR3p4', '6061039'), + (584, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'EdVaR3p4', '6067245'), + (584, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'EdVaR3p4', '6068094'), + (584, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'EdVaR3p4', '6068252'), + (584, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'EdVaR3p4', '6068253'), + (584, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'EdVaR3p4', '6068254'), + (584, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'EdVaR3p4', '6068280'), + (584, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'EdVaR3p4', '6069093'), + (584, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'EdVaR3p4', '6072528'), + (584, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'EdVaR3p4', '6079840'), + (584, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'EdVaR3p4', '6083398'), + (584, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'EdVaR3p4', '6093504'), + (584, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'EdVaR3p4', '6097414'), + (584, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'EdVaR3p4', '6097442'), + (584, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'EdVaR3p4', '6097684'), + (584, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'EdVaR3p4', '6098762'), + (584, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'EdVaR3p4', '6101361'), + (584, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'EdVaR3p4', '6101362'), + (584, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'EdVaR3p4', '6107314'), + (584, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'EdVaR3p4', '6120034'), + (584, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'EdVaR3p4', '6136733'), + (584, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'EdVaR3p4', '6137989'), + (584, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'EdVaR3p4', '6150864'), + (584, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'EdVaR3p4', '6155491'), + (584, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'EdVaR3p4', '6164417'), + (584, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'EdVaR3p4', '6166388'), + (584, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'EdVaR3p4', '6176439'), + (584, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'EdVaR3p4', '6182410'), + (584, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'EdVaR3p4', '6185812'), + (584, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'EdVaR3p4', '6187651'), + (584, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'EdVaR3p4', '6187963'), + (584, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'EdVaR3p4', '6187964'), + (584, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'EdVaR3p4', '6187966'), + (584, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'EdVaR3p4', '6187967'), + (584, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'EdVaR3p4', '6187969'), + (584, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'EdVaR3p4', '6334878'), + (584, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'EdVaR3p4', '6337236'), + (584, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'EdVaR3p4', '6337970'), + (584, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'EdVaR3p4', '6338308'), + (584, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'EdVaR3p4', '6341710'), + (584, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'EdVaR3p4', '6342044'), + (584, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'EdVaR3p4', '6342298'), + (584, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'EdVaR3p4', '6343294'), + (584, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'EdVaR3p4', '6347034'), + (584, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'EdVaR3p4', '6347056'), + (584, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'EdVaR3p4', '6353830'), + (584, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'EdVaR3p4', '6353831'), + (584, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'EdVaR3p4', '6357867'), + (584, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'EdVaR3p4', '6358652'), + (584, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'EdVaR3p4', '6361709'), + (584, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'EdVaR3p4', '6361710'), + (584, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'EdVaR3p4', '6361711'), + (584, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'EdVaR3p4', '6361712'), + (584, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'EdVaR3p4', '6361713'), + (584, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'EdVaR3p4', '6382573'), + (584, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'EdVaR3p4', '6388604'), + (584, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'EdVaR3p4', '6394629'), + (584, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'EdVaR3p4', '6394631'), + (584, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'EdVaR3p4', '6440863'), + (584, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'EdVaR3p4', '6445440'), + (584, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'EdVaR3p4', '6453951'), + (584, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'EdVaR3p4', '6461696'), + (584, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'EdVaR3p4', '6462129'), + (584, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'EdVaR3p4', '6463218'), + (584, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'EdVaR3p4', '6472181'), + (584, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'EdVaR3p4', '6482693'), + (584, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'EdVaR3p4', '6484200'), + (584, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'EdVaR3p4', '6484680'), + (584, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'EdVaR3p4', '6507741'), + (584, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'EdVaR3p4', '6514659'), + (584, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'EdVaR3p4', '6514660'), + (584, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'EdVaR3p4', '6519103'), + (584, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'EdVaR3p4', '6535681'), + (584, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'EdVaR3p4', '6584747'), + (584, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'EdVaR3p4', '6587097'), + (584, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'EdVaR3p4', '6609022'), + (584, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'EdVaR3p4', '6632757'), + (584, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'EdVaR3p4', '6644187'), + (584, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'EdVaR3p4', '6648951'), + (584, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'EdVaR3p4', '6648952'), + (584, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'EdVaR3p4', '6655401'), + (584, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'EdVaR3p4', '6661585'), + (584, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'EdVaR3p4', '6661588'), + (584, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'EdVaR3p4', '6661589'), + (584, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'EdVaR3p4', '6699906'), + (584, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'EdVaR3p4', '6699913'), + (584, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'EdVaR3p4', '6701109'), + (584, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'EdVaR3p4', '6705219'), + (584, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'EdVaR3p4', '6710153'), + (584, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'EdVaR3p4', '6711552'), + (584, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'EdVaR3p4', '6711553'), + (584, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'EdVaR3p4', '6722688'), + (584, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'EdVaR3p4', '6730620'), + (584, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'EdVaR3p4', '6740364'), + (584, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'EdVaR3p4', '6743829'), + (584, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'EdVaR3p4', '7030380'), + (584, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'EdVaR3p4', '7033677'), + (584, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'EdVaR3p4', '7044715'), + (584, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'EdVaR3p4', '7050318'), + (584, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'EdVaR3p4', '7050319'), + (584, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'EdVaR3p4', '7050322'), + (584, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'EdVaR3p4', '7057804'), + (584, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'EdVaR3p4', '7072824'), + (584, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'EdVaR3p4', '7074348'), + (584, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'EdVaR3p4', '7074364'), + (584, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'EdVaR3p4', '7089267'), + (584, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'EdVaR3p4', '7098747'), + (584, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'EdVaR3p4', '7113468'), + (584, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'EdVaR3p4', '7114856'), + (584, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'EdVaR3p4', '7114951'), + (584, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'EdVaR3p4', '7114955'), + (584, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'EdVaR3p4', '7114956'), + (584, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'EdVaR3p4', '7114957'), + (584, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'EdVaR3p4', '7159484'), + (584, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'EdVaR3p4', '7178446'), + (584, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'EdVaR3p4', '7220467'), + (584, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'EdVaR3p4', '7240354'), + (584, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'EdVaR3p4', '7251633'), + (584, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'EdVaR3p4', '7324073'), + (584, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'EdVaR3p4', '7324074'), + (584, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'EdVaR3p4', '7324075'), + (584, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'EdVaR3p4', '7324078'), + (584, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'EdVaR3p4', '7324082'), + (584, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'EdVaR3p4', '7331457'), + (584, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'EdVaR3p4', '7363643'), + (584, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'EdVaR3p4', '7368606'), + (584, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'EdVaR3p4', '7397462'), + (584, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'EdVaR3p4', '7424275'), + (584, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'EdVaR3p4', '7432751'), + (584, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'EdVaR3p4', '7432752'), + (584, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'EdVaR3p4', '7432753'), + (584, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'EdVaR3p4', '7432754'), + (584, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'EdVaR3p4', '7432755'), + (584, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'EdVaR3p4', '7432756'), + (584, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'EdVaR3p4', '7432758'), + (584, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'EdVaR3p4', '7432759'), + (584, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'EdVaR3p4', '7433834'), + (584, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'EdVaR3p4', '7470197'), + (584, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'EdVaR3p4', '7685613'), + (584, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'EdVaR3p4', '7688194'), + (584, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'EdVaR3p4', '7688196'), + (584, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'EdVaR3p4', '7688289'), + (584, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'EdVaR3p4', '7692763'), + (584, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'EdVaR3p4', '7697552'), + (584, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'EdVaR3p4', '7699878'), + (584, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'EdVaR3p4', '7704043'), + (584, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'EdVaR3p4', '7712467'), + (584, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'EdVaR3p4', '7713585'), + (584, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'EdVaR3p4', '7713586'), + (584, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'EdVaR3p4', '7738518'), + (584, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'EdVaR3p4', '7750636'), + (584, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'EdVaR3p4', '7796540'), + (584, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'EdVaR3p4', '7796541'), + (584, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'EdVaR3p4', '7796542'), + (584, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'EdVaR3p4', '7825913'), + (584, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'EdVaR3p4', '7826209'), + (584, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'EdVaR3p4', '7834742'), + (584, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'EdVaR3p4', '7842108'), + (584, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'EdVaR3p4', '7842902'), + (584, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'EdVaR3p4', '7842903'), + (584, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'EdVaR3p4', '7842904'), + (584, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'EdVaR3p4', '7842905'), + (584, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'EdVaR3p4', '7855719'), + (584, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'EdVaR3p4', '7860683'), + (584, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'EdVaR3p4', '7860684'), + (584, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'EdVaR3p4', '7866095'), + (584, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'EdVaR3p4', '7869170'), + (584, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'EdVaR3p4', '7869188'), + (584, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'EdVaR3p4', '7869201'), + (584, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'EdVaR3p4', '7877465'), + (584, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'EdVaR3p4', '7888250'), + (584, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'EdVaR3p4', '7904777'), + (584, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'EdVaR3p4', '8349164'), + (584, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'EdVaR3p4', '8349545'), + (584, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'EdVaR3p4', '8368028'), + (584, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'EdVaR3p4', '8368029'), + (584, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'EdVaR3p4', '8388462'), + (584, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'EdVaR3p4', '8400273'), + (584, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'EdVaR3p4', '8400275'), + (584, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'EdVaR3p4', '8400276'), + (584, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'EdVaR3p4', '8404977'), + (584, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'EdVaR3p4', '8430783'), + (584, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'EdVaR3p4', '8430784'), + (584, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'EdVaR3p4', '8430799'), + (584, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'EdVaR3p4', '8430800'), + (584, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'EdVaR3p4', '8430801'), + (584, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'EdVaR3p4', '8438709'), + (584, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'EdVaR3p4', '8457738'), + (584, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'EdVaR3p4', '8459566'), + (584, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'EdVaR3p4', '8459567'), + (584, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'EdVaR3p4', '8461032'), + (584, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'EdVaR3p4', '8477877'), + (584, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'EdVaR3p4', '8485688'), + (584, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'EdVaR3p4', '8490587'), + (584, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'EdVaR3p4', '8493552'), + (584, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'EdVaR3p4', '8493553'), + (584, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'EdVaR3p4', '8493554'), + (584, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'EdVaR3p4', '8493555'), + (584, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'EdVaR3p4', '8493556'), + (584, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'EdVaR3p4', '8493557'), + (584, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'EdVaR3p4', '8493558'), + (584, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'EdVaR3p4', '8493559'), + (584, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'EdVaR3p4', '8493560'), + (584, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'EdVaR3p4', '8493561'), + (584, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'EdVaR3p4', '8493572'), + (584, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'EdVaR3p4', '8540725'), + (584, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'EdVaR3p4', '8555421'), + (585, 394, 'maybe', '2021-01-05 13:51:55', '2025-12-17 19:47:48', 'VdxNEKGA', '3236449'), + (585, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'VdxNEKGA', '3386848'), + (585, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'VdxNEKGA', '3389527'), + (585, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'VdxNEKGA', '3396499'), + (585, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'VdxNEKGA', '3403650'), + (585, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'VdxNEKGA', '3406988'), + (585, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'VdxNEKGA', '3416576'), + (585, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'VdxNEKGA', '3426074'), + (585, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'VdxNEKGA', '3430267'), + (585, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'VdxNEKGA', '3468125'), + (585, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VdxNEKGA', '3470303'), + (585, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VdxNEKGA', '3470991'), + (585, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxNEKGA', '6045684'), + (586, 2125, 'not_attending', '2023-07-04 23:56:05', '2025-12-17 19:46:51', '4E2y78Xd', '6177485'), + (586, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4E2y78Xd', '6185812'), + (586, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4E2y78Xd', '6187651'), + (586, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4E2y78Xd', '6187963'), + (586, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4E2y78Xd', '6187964'), + (586, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4E2y78Xd', '6187966'), + (586, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4E2y78Xd', '6187967'), + (586, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4E2y78Xd', '6187969'), + (586, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4E2y78Xd', '6334878'), + (586, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', '4E2y78Xd', '6334903'), + (586, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4E2y78Xd', '6337236'), + (586, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4E2y78Xd', '6337970'), + (586, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4E2y78Xd', '6338308'), + (586, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4E2y78Xd', '6341710'), + (586, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4E2y78Xd', '6342044'), + (586, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4E2y78Xd', '6342298'), + (586, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', '4E2y78Xd', '6342591'), + (586, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4E2y78Xd', '6343294'), + (586, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4E2y78Xd', '6347034'), + (586, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4E2y78Xd', '6347056'), + (586, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4E2y78Xd', '6353830'), + (586, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4E2y78Xd', '6353831'), + (586, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4E2y78Xd', '6357867'), + (586, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4E2y78Xd', '6358652'), + (586, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4E2y78Xd', '6361709'), + (586, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4E2y78Xd', '6361710'), + (586, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4E2y78Xd', '6361711'), + (586, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4E2y78Xd', '6361712'), + (586, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4E2y78Xd', '6361713'), + (586, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4E2y78Xd', '6382573'), + (586, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4E2y78Xd', '6388604'), + (586, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4E2y78Xd', '6394629'), + (586, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4E2y78Xd', '6394631'), + (586, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4E2y78Xd', '6431478'), + (587, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dx6roa9A', '5195095'), + (587, 1329, 'maybe', '2022-04-14 17:17:52', '2025-12-17 19:47:27', 'dx6roa9A', '5240135'), + (587, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dx6roa9A', '5247467'), + (587, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dx6roa9A', '5260800'), + (587, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dx6roa9A', '5269930'), + (587, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dx6roa9A', '5271448'), + (587, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dx6roa9A', '5271449'), + (587, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dx6roa9A', '5276469'), + (587, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx6roa9A', '5278159'), + (587, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx6roa9A', '6045684'), + (588, 1721, 'attending', '2022-10-18 17:24:32', '2025-12-17 19:47:13', 'mp1RZo9A', '5630960'), + (588, 1722, 'attending', '2022-10-24 17:44:49', '2025-12-17 19:47:14', 'mp1RZo9A', '5630961'), + (588, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mp1RZo9A', '5630962'), + (588, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mp1RZo9A', '5630966'), + (588, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mp1RZo9A', '5630967'), + (588, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mp1RZo9A', '5630968'), + (588, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'mp1RZo9A', '5638765'), + (588, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mp1RZo9A', '5640097'), + (588, 1742, 'attending', '2022-10-18 22:45:18', '2025-12-17 19:47:13', 'mp1RZo9A', '5641245'), + (588, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mp1RZo9A', '5642818'), + (588, 1747, 'attending', '2022-10-24 17:44:14', '2025-12-17 19:47:13', 'mp1RZo9A', '5648009'), + (588, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mp1RZo9A', '5671637'), + (588, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mp1RZo9A', '5672329'), + (588, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mp1RZo9A', '5674057'), + (588, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mp1RZo9A', '5674060'), + (588, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mp1RZo9A', '5677461'), + (588, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mp1RZo9A', '5698046'), + (588, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'mp1RZo9A', '5699760'), + (588, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mp1RZo9A', '5741601'), + (588, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mp1RZo9A', '5763458'), + (588, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mp1RZo9A', '5774172'), + (588, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mp1RZo9A', '6045684'), + (589, 243, 'attending', '2020-11-02 04:28:54', '2025-12-17 19:47:53', 'pmbOM2KA', '3149474'), + (589, 423, 'attending', '2020-11-05 00:49:20', '2025-12-17 19:47:53', 'pmbOM2KA', '3245296'), + (589, 438, 'attending', '2020-10-31 01:42:38', '2025-12-17 19:47:53', 'pmbOM2KA', '3256163'), + (589, 440, 'attending', '2020-11-03 03:54:09', '2025-12-17 19:47:53', 'pmbOM2KA', '3256168'), + (589, 441, 'attending', '2020-11-14 00:47:08', '2025-12-17 19:47:54', 'pmbOM2KA', '3256169'), + (589, 445, 'attending', '2020-11-12 23:39:28', '2025-12-17 19:47:54', 'pmbOM2KA', '3266138'), + (589, 448, 'attending', '2020-10-31 01:41:56', '2025-12-17 19:47:53', 'pmbOM2KA', '3271831'), + (589, 449, 'attending', '2020-11-08 04:51:26', '2025-12-17 19:47:53', 'pmbOM2KA', '3272055'), + (589, 450, 'not_attending', '2020-10-31 20:27:08', '2025-12-17 19:47:53', 'pmbOM2KA', '3272102'), + (589, 456, 'attending', '2020-11-16 23:38:54', '2025-12-17 19:47:54', 'pmbOM2KA', '3276428'), + (589, 459, 'not_attending', '2020-11-15 17:05:00', '2025-12-17 19:47:54', 'pmbOM2KA', '3281467'), + (589, 462, 'attending', '2020-11-12 00:14:44', '2025-12-17 19:47:53', 'pmbOM2KA', '3281470'), + (589, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'pmbOM2KA', '3281829'), + (589, 467, 'not_attending', '2020-11-18 00:42:35', '2025-12-17 19:47:54', 'pmbOM2KA', '3282756'), + (589, 468, 'attending', '2020-11-21 07:15:56', '2025-12-17 19:47:54', 'pmbOM2KA', '3285413'), + (589, 469, 'not_attending', '2020-11-28 20:18:33', '2025-12-17 19:47:54', 'pmbOM2KA', '3285414'), + (589, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'pmbOM2KA', '3297764'), + (589, 493, 'attending', '2020-12-05 01:49:40', '2025-12-17 19:47:54', 'pmbOM2KA', '3313856'), + (589, 496, 'attending', '2020-12-09 04:53:30', '2025-12-17 19:47:54', 'pmbOM2KA', '3314269'), + (589, 497, 'not_attending', '2020-12-18 00:08:01', '2025-12-17 19:47:55', 'pmbOM2KA', '3314270'), + (589, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'pmbOM2KA', '3314909'), + (589, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'pmbOM2KA', '3314964'), + (589, 502, 'attending', '2020-12-13 04:13:56', '2025-12-17 19:47:55', 'pmbOM2KA', '3323365'), + (589, 506, 'maybe', '2020-12-12 06:04:35', '2025-12-17 19:47:55', 'pmbOM2KA', '3323375'), + (589, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'pmbOM2KA', '3329383'), + (589, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'pmbOM2KA', '3351539'), + (589, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'pmbOM2KA', '3386848'), + (589, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'pmbOM2KA', '3389527'), + (589, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'pmbOM2KA', '3396499'), + (589, 548, 'not_attending', '2021-01-16 20:00:51', '2025-12-17 19:47:48', 'pmbOM2KA', '3403650'), + (589, 549, 'maybe', '2021-01-18 23:54:03', '2025-12-17 19:47:49', 'pmbOM2KA', '3406988'), + (589, 550, 'attending', '2021-01-16 17:52:27', '2025-12-17 19:47:48', 'pmbOM2KA', '3407018'), + (589, 555, 'not_attending', '2021-01-24 00:21:53', '2025-12-17 19:47:49', 'pmbOM2KA', '3416576'), + (589, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'pmbOM2KA', '3418925'), + (589, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'pmbOM2KA', '3430267'), + (589, 569, 'maybe', '2021-01-28 01:09:41', '2025-12-17 19:47:49', 'pmbOM2KA', '3432673'), + (589, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'pmbOM2KA', '3468125'), + (589, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'pmbOM2KA', '3470303'), + (589, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'pmbOM2KA', '3470305'), + (589, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'pmbOM2KA', '3470991'), + (589, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'pmbOM2KA', '3517815'), + (589, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'pmbOM2KA', '3517816'), + (589, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'pmbOM2KA', '3523941'), + (589, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmbOM2KA', '3533850'), + (589, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmbOM2KA', '3536632'), + (589, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmbOM2KA', '3536656'), + (589, 641, 'attending', '2021-04-01 00:24:05', '2025-12-17 19:47:44', 'pmbOM2KA', '3539916'), + (589, 642, 'maybe', '2021-04-04 01:35:25', '2025-12-17 19:47:44', 'pmbOM2KA', '3539917'), + (589, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmbOM2KA', '3539918'), + (589, 644, 'not_attending', '2021-04-24 17:24:47', '2025-12-17 19:47:46', 'pmbOM2KA', '3539919'), + (589, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmbOM2KA', '3539920'), + (589, 646, 'attending', '2021-05-15 21:35:41', '2025-12-17 19:47:46', 'pmbOM2KA', '3539921'), + (589, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmbOM2KA', '3539922'), + (589, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmbOM2KA', '3539923'), + (589, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmbOM2KA', '3539927'), + (589, 689, 'not_attending', '2021-03-25 23:00:13', '2025-12-17 19:47:44', 'pmbOM2KA', '3555564'), + (589, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmbOM2KA', '3582734'), + (589, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmbOM2KA', '3583262'), + (589, 709, 'attending', '2021-04-06 21:08:11', '2025-12-17 19:47:44', 'pmbOM2KA', '3587852'), + (589, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmbOM2KA', '3619523'), + (589, 722, 'attending', '2021-04-01 00:23:47', '2025-12-17 19:47:44', 'pmbOM2KA', '3646347'), + (589, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmbOM2KA', '3661369'), + (589, 730, 'attending', '2021-05-02 03:43:46', '2025-12-17 19:47:46', 'pmbOM2KA', '3668076'), + (589, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmbOM2KA', '3674262'), + (589, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmbOM2KA', '3677402'), + (589, 761, 'not_attending', '2021-05-14 23:09:26', '2025-12-17 19:47:46', 'pmbOM2KA', '3716041'), + (589, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmbOM2KA', '3730212'), + (589, 777, 'attending', '2021-04-30 20:26:46', '2025-12-17 19:47:46', 'pmbOM2KA', '3746248'), + (589, 781, 'maybe', '2021-05-06 00:48:41', '2025-12-17 19:47:46', 'pmbOM2KA', '3760130'), + (589, 782, 'attending', '2021-05-02 03:44:37', '2025-12-17 19:47:46', 'pmbOM2KA', '3761843'), + (589, 792, 'attending', '2021-05-19 00:40:20', '2025-12-17 19:47:46', 'pmbOM2KA', '3793156'), + (589, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbOM2KA', '3974109'), + (589, 827, 'not_attending', '2021-06-05 22:45:45', '2025-12-17 19:47:47', 'pmbOM2KA', '3975311'), + (589, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmbOM2KA', '3975312'), + (589, 837, 'not_attending', '2021-06-17 22:58:55', '2025-12-17 19:47:48', 'pmbOM2KA', '3992545'), + (589, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbOM2KA', '3994992'), + (589, 841, 'not_attending', '2021-06-15 23:09:31', '2025-12-17 19:47:48', 'pmbOM2KA', '4007434'), + (589, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmbOM2KA', '4014338'), + (589, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmbOM2KA', '4021848'), + (589, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmbOM2KA', '4136744'), + (589, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'pmbOM2KA', '4136937'), + (589, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmbOM2KA', '4136938'), + (589, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbOM2KA', '4136947'), + (589, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbOM2KA', '4210314'), + (589, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbOM2KA', '4225444'), + (589, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbOM2KA', '4239259'), + (589, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmbOM2KA', '4240316'), + (589, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbOM2KA', '4240317'), + (589, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbOM2KA', '4240318'), + (589, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbOM2KA', '4240320'), + (589, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbOM2KA', '4250163'), + (589, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmbOM2KA', '4275957'), + (589, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbOM2KA', '4277819'), + (589, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbOM2KA', '4301723'), + (589, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbOM2KA', '4302093'), + (589, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbOM2KA', '4304151'), + (589, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'pmbOM2KA', '4345519'), + (589, 964, 'not_attending', '2021-08-23 22:45:45', '2025-12-17 19:47:42', 'pmbOM2KA', '4353160'), + (589, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbOM2KA', '4356801'), + (589, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'pmbOM2KA', '4358025'), + (589, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbOM2KA', '4366186'), + (589, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbOM2KA', '4366187'), + (589, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'pmbOM2KA', '4402823'), + (589, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbOM2KA', '4420735'), + (589, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbOM2KA', '4420738'), + (589, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbOM2KA', '4420739'), + (589, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbOM2KA', '4420741'), + (589, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbOM2KA', '4420744'), + (589, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbOM2KA', '4420747'), + (589, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbOM2KA', '4420748'), + (589, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbOM2KA', '4420749'), + (589, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbOM2KA', '4461883'), + (589, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbOM2KA', '4508342'), + (589, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbOM2KA', '4568602'), + (589, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbOM2KA', '4572153'), + (589, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'pmbOM2KA', '4585962'), + (589, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'pmbOM2KA', '4596356'), + (589, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbOM2KA', '4598860'), + (589, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbOM2KA', '4598861'), + (589, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbOM2KA', '4602797'), + (589, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbOM2KA', '4637896'), + (589, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbOM2KA', '4642994'), + (589, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'pmbOM2KA', '4642995'), + (589, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbOM2KA', '4642996'), + (589, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbOM2KA', '4642997'), + (589, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbOM2KA', '4645687'), + (589, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbOM2KA', '4645698'), + (589, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbOM2KA', '4645704'), + (589, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbOM2KA', '4645705'), + (589, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbOM2KA', '4668385'), + (589, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbOM2KA', '4694407'), + (589, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbOM2KA', '4736497'), + (589, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbOM2KA', '4736499'), + (589, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbOM2KA', '4736500'), + (589, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbOM2KA', '4736503'), + (589, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbOM2KA', '4736504'), + (589, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbOM2KA', '4746789'), + (589, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbOM2KA', '4753929'), + (589, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbOM2KA', '5038850'), + (589, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbOM2KA', '5045826'), + (589, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbOM2KA', '5132533'), + (589, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbOM2KA', '5186582'), + (589, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbOM2KA', '5186583'), + (589, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbOM2KA', '5186585'), + (589, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbOM2KA', '5190437'), + (589, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbOM2KA', '5215989'), + (589, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbOM2KA', '6045684'), + (590, 198, 'not_attending', '2020-08-28 10:45:50', '2025-12-17 19:47:56', 'EdVMllz4', '3087267'), + (590, 199, 'maybe', '2020-09-05 04:21:47', '2025-12-17 19:47:56', 'EdVMllz4', '3087268'), + (590, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'EdVMllz4', '3129980'), + (590, 317, 'not_attending', '2020-08-28 01:05:26', '2025-12-17 19:47:56', 'EdVMllz4', '3191735'), + (590, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'EdVMllz4', '3200209'), + (590, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVMllz4', '6045684'), + (591, 1379, 'not_attending', '2022-05-21 17:10:57', '2025-12-17 19:47:30', '4PNgvaym', '5271449'), + (591, 1380, 'attending', '2022-05-19 22:36:49', '2025-12-17 19:47:30', '4PNgvaym', '5271450'), + (591, 1393, 'not_attending', '2022-06-09 21:46:14', '2025-12-17 19:47:30', '4PNgvaym', '5280603'), + (591, 1394, 'not_attending', '2022-05-27 16:16:13', '2025-12-17 19:47:30', '4PNgvaym', '5280667'), + (591, 1400, 'attending', '2022-05-11 23:49:06', '2025-12-17 19:47:29', '4PNgvaym', '5284864'), + (591, 1402, 'not_attending', '2022-05-27 15:54:36', '2025-12-17 19:47:30', '4PNgvaym', '5287977'), + (591, 1405, 'not_attending', '2022-05-19 22:35:47', '2025-12-17 19:47:29', '4PNgvaym', '5288115'), + (591, 1407, 'attending', '2022-05-19 22:36:34', '2025-12-17 19:47:30', '4PNgvaym', '5363695'), + (591, 1408, 'not_attending', '2022-05-20 21:29:22', '2025-12-17 19:47:29', '4PNgvaym', '5365960'), + (591, 1409, 'not_attending', '2022-05-22 08:57:56', '2025-12-17 19:47:30', '4PNgvaym', '5367032'), + (591, 1410, 'attending', '2022-05-19 18:04:41', '2025-12-17 19:47:29', '4PNgvaym', '5367530'), + (591, 1411, 'not_attending', '2022-05-17 05:40:35', '2025-12-17 19:47:29', '4PNgvaym', '5367531'), + (591, 1413, 'not_attending', '2022-05-20 20:49:54', '2025-12-17 19:47:29', '4PNgvaym', '5367533'), + (591, 1414, 'not_attending', '2022-05-20 23:10:21', '2025-12-17 19:47:29', '4PNgvaym', '5368445'), + (591, 1415, 'not_attending', '2022-06-03 19:55:09', '2025-12-17 19:47:30', '4PNgvaym', '5368973'), + (591, 1418, 'not_attending', '2022-05-26 19:35:22', '2025-12-17 19:47:30', '4PNgvaym', '5372162'), + (591, 1419, 'attending', '2022-06-08 22:33:55', '2025-12-17 19:47:30', '4PNgvaym', '5373081'), + (591, 1420, 'not_attending', '2022-05-27 15:54:53', '2025-12-17 19:47:30', '4PNgvaym', '5374882'), + (591, 1422, 'attending', '2022-05-28 20:11:24', '2025-12-17 19:47:30', '4PNgvaym', '5375603'), + (591, 1423, 'not_attending', '2022-06-15 05:39:01', '2025-12-17 19:47:17', '4PNgvaym', '5375727'), + (591, 1424, 'not_attending', '2022-05-26 18:57:11', '2025-12-17 19:47:30', '4PNgvaym', '5375772'), + (591, 1427, 'attending', '2022-05-25 03:26:55', '2025-12-17 19:47:30', '4PNgvaym', '5376074'), + (591, 1428, 'not_attending', '2022-06-09 21:38:12', '2025-12-17 19:47:30', '4PNgvaym', '5378247'), + (591, 1429, 'not_attending', '2022-05-29 11:47:30', '2025-12-17 19:47:30', '4PNgvaym', '5388761'), + (591, 1430, 'attending', '2022-06-09 22:12:10', '2025-12-17 19:47:30', '4PNgvaym', '5389402'), + (591, 1431, 'not_attending', '2022-06-09 21:46:22', '2025-12-17 19:47:31', '4PNgvaym', '5389605'), + (591, 1434, 'not_attending', '2022-06-01 21:29:30', '2025-12-17 19:47:30', '4PNgvaym', '5393861'), + (591, 1435, 'not_attending', '2022-06-02 22:34:52', '2025-12-17 19:47:30', '4PNgvaym', '5394015'), + (591, 1436, 'attending', '2022-06-02 20:42:17', '2025-12-17 19:47:30', '4PNgvaym', '5394292'), + (591, 1439, 'not_attending', '2022-06-05 13:44:38', '2025-12-17 19:47:30', '4PNgvaym', '5396072'), + (591, 1440, 'attending', '2022-06-06 18:59:37', '2025-12-17 19:47:30', '4PNgvaym', '5396080'), + (591, 1441, 'attending', '2022-06-03 05:55:41', '2025-12-17 19:47:30', '4PNgvaym', '5397171'), + (591, 1442, 'not_attending', '2022-06-18 12:48:22', '2025-12-17 19:47:17', '4PNgvaym', '5397265'), + (591, 1447, 'not_attending', '2022-06-09 22:00:31', '2025-12-17 19:47:30', '4PNgvaym', '5401089'), + (591, 1449, 'not_attending', '2022-06-08 21:06:55', '2025-12-17 19:47:31', '4PNgvaym', '5403335'), + (591, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4PNgvaym', '5403967'), + (591, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4PNgvaym', '5404786'), + (591, 1461, 'attending', '2022-06-11 19:56:22', '2025-12-17 19:47:31', '4PNgvaym', '5405149'), + (591, 1462, 'not_attending', '2022-06-14 12:30:38', '2025-12-17 19:47:17', '4PNgvaym', '5405203'), + (591, 1478, 'not_attending', '2022-06-23 09:17:44', '2025-12-17 19:47:19', '4PNgvaym', '5408794'), + (591, 1480, 'not_attending', '2022-06-23 09:17:48', '2025-12-17 19:47:19', '4PNgvaym', '5411699'), + (591, 1482, 'not_attending', '2022-06-23 09:17:45', '2025-12-17 19:47:19', '4PNgvaym', '5412550'), + (591, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4PNgvaym', '5415046'), + (591, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4PNgvaym', '5422086'), + (591, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4PNgvaym', '5422406'), + (591, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4PNgvaym', '5424565'), + (591, 1503, 'not_attending', '2022-06-30 05:15:08', '2025-12-17 19:47:19', '4PNgvaym', '5426820'), + (591, 1504, 'not_attending', '2022-07-05 20:36:20', '2025-12-17 19:47:19', '4PNgvaym', '5426882'), + (591, 1505, 'not_attending', '2022-07-07 05:55:56', '2025-12-17 19:47:19', '4PNgvaym', '5427083'), + (591, 1513, 'not_attending', '2022-07-09 22:06:45', '2025-12-17 19:47:20', '4PNgvaym', '5441125'), + (591, 1514, 'not_attending', '2022-07-09 22:06:56', '2025-12-17 19:47:20', '4PNgvaym', '5441126'), + (591, 1515, 'not_attending', '2022-07-09 22:07:00', '2025-12-17 19:47:21', '4PNgvaym', '5441128'), + (591, 1516, 'not_attending', '2022-07-09 22:07:01', '2025-12-17 19:47:23', '4PNgvaym', '5441129'), + (591, 1517, 'not_attending', '2022-07-09 22:07:02', '2025-12-17 19:47:23', '4PNgvaym', '5441130'), + (591, 1518, 'not_attending', '2022-07-09 22:07:02', '2025-12-17 19:47:24', '4PNgvaym', '5441131'), + (591, 1519, 'maybe', '2022-07-09 22:07:03', '2025-12-17 19:47:24', '4PNgvaym', '5441132'), + (591, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4PNgvaym', '5446643'), + (591, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4PNgvaym', '5453325'), + (591, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4PNgvaym', '5454516'), + (591, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4PNgvaym', '5454605'), + (591, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4PNgvaym', '5455037'), + (591, 1558, 'attending', '2022-08-16 01:33:13', '2025-12-17 19:47:10', '4PNgvaym', '5458730'), + (591, 1559, 'maybe', '2022-09-23 01:37:55', '2025-12-17 19:47:11', '4PNgvaym', '5458731'), + (591, 1561, 'not_attending', '2022-08-04 11:30:54', '2025-12-17 19:47:22', '4PNgvaym', '5461278'), + (591, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4PNgvaym', '5469480'), + (591, 1563, 'not_attending', '2022-07-28 20:02:37', '2025-12-17 19:47:21', '4PNgvaym', '5469889'), + (591, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4PNgvaym', '5471073'), + (591, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4PNgvaym', '5474663'), + (591, 1570, 'not_attending', '2022-08-01 18:54:12', '2025-12-17 19:47:21', '4PNgvaym', '5481830'), + (591, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4PNgvaym', '5482022'), + (591, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4PNgvaym', '5482793'), + (591, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4PNgvaym', '5488912'), + (591, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4PNgvaym', '5492192'), + (591, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4PNgvaym', '5493139'), + (591, 1589, 'maybe', '2022-08-21 15:43:19', '2025-12-17 19:47:23', '4PNgvaym', '5493159'), + (591, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4PNgvaym', '5493200'), + (591, 1599, 'not_attending', '2022-08-16 01:32:55', '2025-12-17 19:47:23', '4PNgvaym', '5496568'), + (591, 1600, 'not_attending', '2022-08-16 01:32:54', '2025-12-17 19:47:24', '4PNgvaym', '5496569'), + (591, 1601, 'attending', '2022-08-11 19:39:59', '2025-12-17 19:47:22', '4PNgvaym', '5496589'), + (591, 1604, 'not_attending', '2022-08-17 04:59:41', '2025-12-17 19:47:22', '4PNgvaym', '5501504'), + (591, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4PNgvaym', '5502188'), + (591, 1606, 'maybe', '2022-08-17 04:58:56', '2025-12-17 19:47:23', '4PNgvaym', '5504585'), + (591, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4PNgvaym', '5505059'), + (591, 1612, 'not_attending', '2022-09-23 01:38:22', '2025-12-17 19:47:12', '4PNgvaym', '5507653'), + (591, 1613, 'attending', '2022-10-10 02:29:36', '2025-12-17 19:47:14', '4PNgvaym', '5507654'), + (591, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4PNgvaym', '5509055'), + (591, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4PNgvaym', '5512862'), + (591, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4PNgvaym', '5513985'), + (591, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '4PNgvaym', '5519981'), + (591, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4PNgvaym', '5522550'), + (591, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4PNgvaym', '5534683'), + (591, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4PNgvaym', '5537735'), + (591, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4PNgvaym', '5540859'), + (591, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4PNgvaym', '5546619'), + (591, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4PNgvaym', '5555245'), + (591, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4PNgvaym', '5557747'), + (591, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4PNgvaym', '5560255'), + (591, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4PNgvaym', '5562906'), + (591, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4PNgvaym', '5600604'), + (591, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4PNgvaym', '5605544'), + (591, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', '4PNgvaym', '5606737'), + (591, 1720, 'attending', '2022-10-10 16:13:59', '2025-12-17 19:47:12', '4PNgvaym', '5630959'), + (591, 1721, 'attending', '2022-10-16 15:16:16', '2025-12-17 19:47:13', '4PNgvaym', '5630960'), + (591, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4PNgvaym', '5630961'), + (591, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4PNgvaym', '5630962'), + (591, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4PNgvaym', '5630966'), + (591, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4PNgvaym', '5630967'), + (591, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4PNgvaym', '5630968'), + (591, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4PNgvaym', '5635406'), + (591, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4PNgvaym', '5638765'), + (591, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4PNgvaym', '5640097'), + (591, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '4PNgvaym', '5640843'), + (591, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4PNgvaym', '5641521'), + (591, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4PNgvaym', '5642818'), + (591, 1745, 'not_attending', '2022-10-14 10:15:45', '2025-12-17 19:47:12', '4PNgvaym', '5643088'), + (591, 1751, 'maybe', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4PNgvaym', '5652395'), + (591, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4PNgvaym', '5670445'), + (591, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4PNgvaym', '5671637'), + (591, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4PNgvaym', '5672329'), + (591, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4PNgvaym', '5674057'), + (591, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4PNgvaym', '5674060'), + (591, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4PNgvaym', '5677461'), + (591, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4PNgvaym', '5698046'), + (591, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4PNgvaym', '5699760'), + (591, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4PNgvaym', '5741601'), + (591, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4PNgvaym', '5763458'), + (591, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4PNgvaym', '5774172'), + (591, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '4PNgvaym', '5818247'), + (591, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4PNgvaym', '5819471'), + (591, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4PNgvaym', '5827739'), + (591, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4PNgvaym', '5844306'), + (591, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4PNgvaym', '5850159'), + (591, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4PNgvaym', '5858999'), + (591, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4PNgvaym', '5871984'), + (591, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4PNgvaym', '5876354'), + (591, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4PNgvaym', '5880939'), + (591, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4PNgvaym', '5880940'), + (591, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4PNgvaym', '5880942'), + (591, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4PNgvaym', '5880943'), + (591, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4PNgvaym', '5887890'), + (591, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4PNgvaym', '5888598'), + (591, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4PNgvaym', '5893260'), + (591, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4PNgvaym', '5899826'), + (591, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4PNgvaym', '5900199'), + (591, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4PNgvaym', '5900200'), + (591, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4PNgvaym', '5900202'), + (591, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4PNgvaym', '5900203'), + (591, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4PNgvaym', '5901108'), + (591, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4PNgvaym', '5901126'), + (591, 1897, 'maybe', '2023-02-11 01:02:47', '2025-12-17 19:47:07', '4PNgvaym', '5901128'), + (591, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4PNgvaym', '5909655'), + (591, 1912, 'not_attending', '2023-02-12 22:51:56', '2025-12-17 19:47:07', '4PNgvaym', '5909808'), + (591, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4PNgvaym', '5910522'), + (591, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4PNgvaym', '5910526'), + (591, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4PNgvaym', '5910528'), + (591, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4PNgvaym', '5916219'), + (591, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4PNgvaym', '5936234'), + (591, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4PNgvaym', '5958351'), + (591, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4PNgvaym', '5959751'), + (591, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4PNgvaym', '5959755'), + (591, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4PNgvaym', '5960055'), + (591, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4PNgvaym', '5961684'), + (591, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4PNgvaym', '5962132'), + (591, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4PNgvaym', '5962133'), + (591, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4PNgvaym', '5962134'), + (591, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4PNgvaym', '5962317'), + (591, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4PNgvaym', '5962318'), + (591, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4PNgvaym', '5965933'), + (591, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4PNgvaym', '5967014'), + (591, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4PNgvaym', '5972815'), + (591, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4PNgvaym', '5974016'), + (591, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '4PNgvaym', '5975052'), + (591, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '4PNgvaym', '5975054'), + (591, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4PNgvaym', '5981515'), + (591, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4PNgvaym', '5993516'), + (591, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4PNgvaym', '5998939'), + (591, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4PNgvaym', '6028191'), + (591, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4PNgvaym', '6040066'), + (591, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4PNgvaym', '6042717'), + (591, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4PNgvaym', '6044838'), + (591, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4PNgvaym', '6044839'), + (591, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNgvaym', '6045684'), + (591, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4PNgvaym', '6050104'), + (591, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4PNgvaym', '6053195'), + (591, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4PNgvaym', '6053198'), + (591, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4PNgvaym', '6056085'), + (591, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4PNgvaym', '6056916'), + (591, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4PNgvaym', '6059290'), + (591, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4PNgvaym', '6060328'), + (591, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4PNgvaym', '6061037'), + (591, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4PNgvaym', '6061039'), + (591, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4PNgvaym', '6067245'), + (591, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4PNgvaym', '6068094'), + (591, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4PNgvaym', '6068252'), + (591, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4PNgvaym', '6068253'), + (591, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4PNgvaym', '6068254'), + (591, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4PNgvaym', '6068280'), + (591, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4PNgvaym', '6069093'), + (591, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4PNgvaym', '6072528'), + (591, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4PNgvaym', '6075556'), + (591, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4PNgvaym', '6079840'), + (591, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4PNgvaym', '6083398'), + (591, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4PNgvaym', '6093504'), + (591, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4PNgvaym', '6097414'), + (591, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4PNgvaym', '6097442'), + (591, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4PNgvaym', '6097684'), + (591, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4PNgvaym', '6098762'), + (591, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4PNgvaym', '6101361'), + (591, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4PNgvaym', '6101362'), + (591, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4PNgvaym', '6107314'), + (591, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4PNgvaym', '6120034'), + (591, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4PNgvaym', '6136733'), + (591, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4PNgvaym', '6137989'), + (591, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4PNgvaym', '6150864'), + (591, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4PNgvaym', '6155491'), + (591, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4PNgvaym', '6164417'), + (591, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4PNgvaym', '6166388'), + (591, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4PNgvaym', '6176439'), + (591, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4PNgvaym', '6182410'), + (591, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4PNgvaym', '6185812'), + (591, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4PNgvaym', '6187651'), + (591, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4PNgvaym', '6187963'), + (591, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4PNgvaym', '6187964'), + (591, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4PNgvaym', '6187966'), + (591, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4PNgvaym', '6187967'), + (591, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4PNgvaym', '6187969'), + (591, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4PNgvaym', '6334878'), + (591, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4PNgvaym', '6337236'), + (591, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4PNgvaym', '6337970'), + (591, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4PNgvaym', '6338308'), + (591, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4PNgvaym', '6341710'), + (591, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4PNgvaym', '6342044'), + (591, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4PNgvaym', '6342298'), + (591, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4PNgvaym', '6343294'), + (591, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4PNgvaym', '6347034'), + (591, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4PNgvaym', '6347056'), + (591, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4PNgvaym', '6353830'), + (591, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4PNgvaym', '6353831'), + (591, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4PNgvaym', '6357867'), + (591, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4PNgvaym', '6358652'), + (591, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4PNgvaym', '6361709'), + (591, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4PNgvaym', '6361710'), + (591, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4PNgvaym', '6361711'), + (591, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4PNgvaym', '6361712'), + (591, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4PNgvaym', '6361713'), + (591, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4PNgvaym', '6382573'), + (591, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4PNgvaym', '6388604'), + (591, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4PNgvaym', '6394629'), + (591, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4PNgvaym', '6394631'), + (591, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4PNgvaym', '6440863'), + (591, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4PNgvaym', '6445440'), + (591, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4PNgvaym', '6453951'), + (591, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4PNgvaym', '6461696'), + (591, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4PNgvaym', '6462129'), + (591, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4PNgvaym', '6463218'), + (591, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4PNgvaym', '6472181'), + (591, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4PNgvaym', '6482693'), + (591, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4PNgvaym', '6484200'), + (591, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '4PNgvaym', '6484680'), + (591, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4PNgvaym', '6507741'), + (591, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4PNgvaym', '6514659'), + (591, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4PNgvaym', '6514660'), + (591, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4PNgvaym', '6519103'), + (591, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4PNgvaym', '6535681'), + (591, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4PNgvaym', '6584747'), + (591, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4PNgvaym', '6587097'), + (591, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4PNgvaym', '6609022'), + (591, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4PNgvaym', '6632757'), + (591, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4PNgvaym', '6644187'), + (591, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4PNgvaym', '6648951'), + (591, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4PNgvaym', '6648952'), + (591, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4PNgvaym', '6655401'), + (591, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4PNgvaym', '6661585'), + (591, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4PNgvaym', '6661588'), + (591, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4PNgvaym', '6661589'), + (591, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4PNgvaym', '6699906'), + (591, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4PNgvaym', '6699913'), + (591, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4PNgvaym', '6701109'), + (591, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4PNgvaym', '6705219'), + (591, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4PNgvaym', '6710153'), + (591, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4PNgvaym', '6711552'), + (591, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '4PNgvaym', '6711553'), + (591, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4PNgvaym', '6722688'), + (591, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4PNgvaym', '6730620'), + (591, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4PNgvaym', '6740364'), + (591, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4PNgvaym', '6743829'), + (591, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4PNgvaym', '7030380'), + (591, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4PNgvaym', '7033677'), + (591, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4PNgvaym', '7044715'), + (591, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4PNgvaym', '7050318'), + (591, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4PNgvaym', '7050319'), + (591, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4PNgvaym', '7050322'), + (591, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4PNgvaym', '7057804'), + (591, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4PNgvaym', '7072824'), + (591, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4PNgvaym', '7074348'), + (591, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4PNgvaym', '7074364'), + (591, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4PNgvaym', '7089267'), + (591, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4PNgvaym', '7098747'), + (591, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4PNgvaym', '7113468'), + (591, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4PNgvaym', '7114856'), + (591, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4PNgvaym', '7114951'), + (591, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4PNgvaym', '7114955'), + (591, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4PNgvaym', '7114956'), + (591, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4PNgvaym', '7114957'), + (591, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4PNgvaym', '7159484'), + (591, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4PNgvaym', '7178446'), + (591, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4PNgvaym', '7220467'), + (591, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4PNgvaym', '7240354'), + (591, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4PNgvaym', '7251633'), + (591, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4PNgvaym', '7324073'), + (591, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4PNgvaym', '7324074'), + (591, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4PNgvaym', '7324075'), + (591, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4PNgvaym', '7324078'), + (591, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4PNgvaym', '7324082'), + (591, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4PNgvaym', '7331457'), + (591, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4PNgvaym', '7363643'), + (591, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4PNgvaym', '7368606'), + (591, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4PNgvaym', '7397462'), + (591, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4PNgvaym', '7424275'), + (591, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4PNgvaym', '7432751'), + (591, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4PNgvaym', '7432752'), + (591, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4PNgvaym', '7432753'), + (591, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4PNgvaym', '7432754'), + (591, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4PNgvaym', '7432755'), + (591, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4PNgvaym', '7432756'), + (591, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4PNgvaym', '7432758'), + (591, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4PNgvaym', '7432759'), + (591, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4PNgvaym', '7433834'), + (591, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4PNgvaym', '7470197'), + (591, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4PNgvaym', '7685613'), + (591, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4PNgvaym', '7688194'), + (591, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4PNgvaym', '7688196'), + (591, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4PNgvaym', '7688289'), + (591, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4PNgvaym', '7692763'), + (591, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4PNgvaym', '7697552'), + (591, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4PNgvaym', '7699878'), + (591, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4PNgvaym', '7704043'), + (591, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4PNgvaym', '7712467'), + (591, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4PNgvaym', '7713585'), + (591, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4PNgvaym', '7713586'), + (591, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4PNgvaym', '7738518'), + (591, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4PNgvaym', '7750636'), + (591, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4PNgvaym', '7796540'), + (591, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4PNgvaym', '7796541'), + (591, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4PNgvaym', '7796542'), + (591, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4PNgvaym', '7825913'), + (591, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4PNgvaym', '7826209'), + (591, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4PNgvaym', '7834742'), + (591, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4PNgvaym', '7842108'), + (591, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4PNgvaym', '7842902'), + (591, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4PNgvaym', '7842903'), + (591, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4PNgvaym', '7842904'), + (591, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4PNgvaym', '7842905'), + (591, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4PNgvaym', '7855719'), + (591, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4PNgvaym', '7860683'), + (591, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4PNgvaym', '7860684'), + (591, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4PNgvaym', '7866095'), + (591, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4PNgvaym', '7869170'), + (591, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4PNgvaym', '7869188'), + (591, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4PNgvaym', '7869201'), + (591, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4PNgvaym', '7877465'), + (591, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4PNgvaym', '7888250'), + (591, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4PNgvaym', '7904777'), + (591, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4PNgvaym', '8349164'), + (591, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4PNgvaym', '8349545'), + (591, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4PNgvaym', '8368028'), + (591, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4PNgvaym', '8368029'), + (591, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4PNgvaym', '8388462'), + (591, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4PNgvaym', '8400273'), + (591, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4PNgvaym', '8400275'), + (591, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '4PNgvaym', '8400276'), + (591, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4PNgvaym', '8404977'), + (591, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4PNgvaym', '8430783'), + (591, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4PNgvaym', '8430784'), + (591, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4PNgvaym', '8430799'), + (591, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4PNgvaym', '8430800'), + (591, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4PNgvaym', '8430801'), + (591, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4PNgvaym', '8438709'), + (591, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4PNgvaym', '8457738'), + (591, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4PNgvaym', '8459566'), + (591, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4PNgvaym', '8459567'), + (591, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4PNgvaym', '8461032'), + (591, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4PNgvaym', '8477877'), + (591, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4PNgvaym', '8485688'), + (591, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4PNgvaym', '8490587'), + (591, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4PNgvaym', '8493552'), + (591, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4PNgvaym', '8493553'), + (591, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4PNgvaym', '8493554'), + (591, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4PNgvaym', '8493555'), + (591, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4PNgvaym', '8493556'), + (591, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4PNgvaym', '8493557'), + (591, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4PNgvaym', '8493558'), + (591, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4PNgvaym', '8493559'), + (591, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4PNgvaym', '8493560'), + (591, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4PNgvaym', '8493561'), + (591, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4PNgvaym', '8493572'), + (591, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '4PNgvaym', '8540725'), + (591, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4PNgvaym', '8555421'), + (592, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd9qJlyZd', '5630967'), + (592, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd9qJlyZd', '5630968'), + (592, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd9qJlyZd', '5642818'), + (592, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd9qJlyZd', '5670445'), + (592, 1784, 'not_attending', '2022-11-16 19:58:39', '2025-12-17 19:47:16', 'd9qJlyZd', '5699760'), + (592, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd9qJlyZd', '5741601'), + (592, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd9qJlyZd', '5763458'), + (592, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd9qJlyZd', '5774172'), + (592, 1826, 'attending', '2022-12-20 00:31:05', '2025-12-17 19:47:04', 'd9qJlyZd', '5776768'), + (592, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd9qJlyZd', '5818247'), + (592, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd9qJlyZd', '5819471'), + (592, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'd9qJlyZd', '5827739'), + (592, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd9qJlyZd', '5844306'), + (592, 1846, 'attending', '2022-12-18 04:06:05', '2025-12-17 19:47:04', 'd9qJlyZd', '5845237'), + (592, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd9qJlyZd', '5850159'), + (592, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd9qJlyZd', '5858999'), + (592, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd9qJlyZd', '5871984'), + (592, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd9qJlyZd', '5876354'), + (592, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'd9qJlyZd', '5880939'), + (592, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd9qJlyZd', '5887890'), + (592, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd9qJlyZd', '5888598'), + (592, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd9qJlyZd', '5893260'), + (592, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9qJlyZd', '6045684'), + (593, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dannVXDm', '7424275'), + (593, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'dannVXDm', '7432756'), + (593, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'dannVXDm', '7432758'), + (593, 2856, 'maybe', '2024-10-08 21:54:04', '2025-12-17 19:46:26', 'dannVXDm', '7469386'), + (593, 2858, 'maybe', '2024-10-11 02:57:06', '2025-12-17 19:46:26', 'dannVXDm', '7469388'), + (593, 2860, 'not_attending', '2024-10-08 21:53:11', '2025-12-17 19:46:26', 'dannVXDm', '7469393'), + (593, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dannVXDm', '7470197'), + (593, 2869, 'maybe', '2024-10-05 15:56:22', '2025-12-17 19:46:26', 'dannVXDm', '7474823'), + (593, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'dannVXDm', '7682072'), + (593, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dannVXDm', '7685613'), + (593, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dannVXDm', '7688194'), + (593, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dannVXDm', '7688196'), + (593, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dannVXDm', '7688289'), + (594, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WPyy60d', '6045684'), + (595, 1817, 'not_attending', '2023-03-25 05:48:25', '2025-12-17 19:46:57', '4E2kB81d', '5764687'), + (595, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4E2kB81d', '5900202'), + (595, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '4E2kB81d', '5962317'), + (595, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4E2kB81d', '5962318'), + (595, 1951, 'attending', '2023-03-22 18:17:21', '2025-12-17 19:46:56', '4E2kB81d', '5965933'), + (595, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', '4E2kB81d', '6028191'), + (595, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4E2kB81d', '6040066'), + (595, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4E2kB81d', '6042717'), + (595, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4E2kB81d', '6044838'), + (595, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4E2kB81d', '6044839'), + (595, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E2kB81d', '6045684'), + (595, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', '4E2kB81d', '6048955'), + (595, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4E2kB81d', '6050104'), + (595, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4E2kB81d', '6053195'), + (595, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4E2kB81d', '6053198'), + (595, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4E2kB81d', '6056085'), + (595, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4E2kB81d', '6056916'), + (595, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4E2kB81d', '6059290'), + (595, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4E2kB81d', '6060328'), + (595, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4E2kB81d', '6061037'), + (595, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4E2kB81d', '6061039'), + (595, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4E2kB81d', '6067245'), + (595, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4E2kB81d', '6068094'), + (595, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4E2kB81d', '6068252'), + (595, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4E2kB81d', '6068253'), + (595, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4E2kB81d', '6068254'), + (595, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4E2kB81d', '6068280'), + (595, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4E2kB81d', '6069093'), + (595, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4E2kB81d', '6072528'), + (595, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4E2kB81d', '6079840'), + (595, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4E2kB81d', '6083398'), + (595, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4E2kB81d', '6093504'), + (595, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4E2kB81d', '6097414'), + (595, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4E2kB81d', '6097442'), + (595, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4E2kB81d', '6097684'), + (595, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4E2kB81d', '6098762'), + (595, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4E2kB81d', '6101362'), + (595, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4E2kB81d', '6107314'), + (595, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4E2kB81d', '6120034'), + (596, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'daPJkNp4', '5441128'), + (596, 1517, 'attending', '2022-08-27 23:29:55', '2025-12-17 19:47:23', 'daPJkNp4', '5441130'), + (596, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'daPJkNp4', '5441131'), + (596, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'daPJkNp4', '5441132'), + (596, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'daPJkNp4', '5461278'), + (596, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'daPJkNp4', '5469480'), + (596, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'daPJkNp4', '5488912'), + (596, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'daPJkNp4', '5492192'), + (596, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'daPJkNp4', '5493139'), + (596, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'daPJkNp4', '5493200'), + (596, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'daPJkNp4', '5502188'), + (596, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'daPJkNp4', '5505059'), + (596, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', 'daPJkNp4', '5509055'), + (596, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'daPJkNp4', '5512862'), + (596, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'daPJkNp4', '5513985'), + (596, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'daPJkNp4', '5522550'), + (596, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'daPJkNp4', '5534683'), + (596, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'daPJkNp4', '5537735'), + (596, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'daPJkNp4', '5540859'), + (596, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'daPJkNp4', '5546619'), + (596, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'daPJkNp4', '5555245'), + (596, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'daPJkNp4', '5557747'), + (596, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'daPJkNp4', '5560255'), + (596, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'daPJkNp4', '5562906'), + (596, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'daPJkNp4', '5600604'), + (596, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'daPJkNp4', '5605544'), + (596, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'daPJkNp4', '5606737'), + (596, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'daPJkNp4', '5635406'), + (596, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'daPJkNp4', '5638765'), + (596, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'daPJkNp4', '5640843'), + (596, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daPJkNp4', '6045684'), + (597, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'QdJJEjBd', '3149489'), + (597, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'QdJJEjBd', '3149491'), + (597, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'QdJJEjBd', '3236450'), + (597, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'QdJJEjBd', '3236452'), + (597, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'QdJJEjBd', '3539920'), + (597, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'QdJJEjBd', '3539921'), + (597, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'QdJJEjBd', '3539922'), + (597, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'QdJJEjBd', '3539923'), + (597, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'QdJJEjBd', '3793156'), + (597, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'QdJJEjBd', '3806392'), + (597, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'QdJJEjBd', '3963335'), + (597, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'QdJJEjBd', '3975311'), + (597, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'QdJJEjBd', '3975312'), + (597, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'QdJJEjBd', '3994992'), + (597, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'QdJJEjBd', '4014338'), + (597, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'QdJJEjBd', '4136744'), + (597, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJJEjBd', '6045684'), + (598, 2133, 'not_attending', '2023-07-08 22:22:33', '2025-12-17 19:46:51', 'dxML9MXm', '6187651'), + (598, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dxML9MXm', '6334878'), + (598, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', 'dxML9MXm', '6334903'), + (598, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxML9MXm', '6337236'), + (598, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxML9MXm', '6337970'), + (598, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dxML9MXm', '6338308'), + (598, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxML9MXm', '6341710'), + (598, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxML9MXm', '6342044'), + (598, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxML9MXm', '6342298'), + (598, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxML9MXm', '6342591'), + (598, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dxML9MXm', '6343294'), + (598, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxML9MXm', '6347034'), + (598, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxML9MXm', '6347056'), + (598, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxML9MXm', '6353830'), + (598, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxML9MXm', '6353831'), + (598, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxML9MXm', '6357867'), + (598, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxML9MXm', '6358652'), + (598, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxML9MXm', '6361709'), + (598, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxML9MXm', '6361710'), + (598, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxML9MXm', '6361711'), + (598, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxML9MXm', '6361712'), + (598, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxML9MXm', '6361713'), + (598, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxML9MXm', '6382573'), + (598, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxML9MXm', '6388604'), + (598, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxML9MXm', '6394629'), + (598, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxML9MXm', '6394631'), + (598, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxML9MXm', '6431478'), + (598, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxML9MXm', '6440863'), + (599, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dN9LBYR4', '5269930'), + (599, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dN9LBYR4', '5271448'), + (599, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dN9LBYR4', '5271449'), + (599, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dN9LBYR4', '5276469'), + (599, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dN9LBYR4', '5278159'), + (599, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dN9LBYR4', '5363695'), + (599, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dN9LBYR4', '5365960'), + (599, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dN9LBYR4', '5368973'), + (599, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dN9LBYR4', '5378247'), + (599, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dN9LBYR4', '5389605'), + (599, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dN9LBYR4', '5397265'), + (599, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9LBYR4', '6045684'), + (600, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40q3XVd', '6045684'), + (601, 327, 'maybe', '2020-09-28 21:58:35', '2025-12-17 19:47:52', '8dBaDw84', '3197085'), + (601, 328, 'maybe', '2020-09-28 21:59:42', '2025-12-17 19:47:52', '8dBaDw84', '3197086'), + (601, 329, 'maybe', '2020-09-28 22:01:18', '2025-12-17 19:47:52', '8dBaDw84', '3197087'), + (601, 342, 'attending', '2020-10-01 01:13:23', '2025-12-17 19:47:52', '8dBaDw84', '3204472'), + (601, 344, 'maybe', '2020-10-27 01:08:34', '2025-12-17 19:47:53', '8dBaDw84', '3206906'), + (601, 348, 'maybe', '2020-09-28 21:58:47', '2025-12-17 19:47:52', '8dBaDw84', '3209159'), + (601, 357, 'maybe', '2020-09-28 21:59:54', '2025-12-17 19:47:52', '8dBaDw84', '3212573'), + (601, 363, 'not_attending', '2020-09-27 21:34:32', '2025-12-17 19:47:52', '8dBaDw84', '3217037'), + (601, 368, 'maybe', '2020-09-28 22:01:30', '2025-12-17 19:47:52', '8dBaDw84', '3221403'), + (601, 375, 'attending', '2020-10-07 01:04:43', '2025-12-17 19:47:52', '8dBaDw84', '3222825'), + (601, 385, 'attending', '2020-10-02 01:18:12', '2025-12-17 19:47:52', '8dBaDw84', '3228698'), + (601, 386, 'maybe', '2020-10-10 19:15:31', '2025-12-17 19:47:52', '8dBaDw84', '3228699'), + (601, 387, 'attending', '2020-10-17 17:07:45', '2025-12-17 19:47:52', '8dBaDw84', '3228700'), + (601, 388, 'attending', '2020-10-24 01:22:58', '2025-12-17 19:47:52', '8dBaDw84', '3228701'), + (601, 390, 'attending', '2020-10-04 21:09:54', '2025-12-17 19:47:52', '8dBaDw84', '3231510'), + (601, 411, 'attending', '2020-10-07 01:04:28', '2025-12-17 19:47:52', '8dBaDw84', '3236596'), + (601, 414, 'maybe', '2020-10-18 20:11:21', '2025-12-17 19:47:52', '8dBaDw84', '3237277'), + (601, 422, 'maybe', '2020-10-27 01:07:53', '2025-12-17 19:47:53', '8dBaDw84', '3245295'), + (601, 423, 'maybe', '2020-10-27 01:08:54', '2025-12-17 19:47:53', '8dBaDw84', '3245296'), + (601, 424, 'maybe', '2020-10-19 17:44:30', '2025-12-17 19:47:52', '8dBaDw84', '3245751'), + (601, 426, 'not_attending', '2020-10-18 18:00:18', '2025-12-17 19:47:52', '8dBaDw84', '3250232'), + (601, 428, 'attending', '2020-10-27 00:56:58', '2025-12-17 19:47:53', '8dBaDw84', '3250332'), + (601, 438, 'maybe', '2020-10-27 01:08:22', '2025-12-17 19:47:53', '8dBaDw84', '3256163'), + (601, 439, 'maybe', '2020-10-27 01:07:43', '2025-12-17 19:47:53', '8dBaDw84', '3256164'), + (601, 440, 'attending', '2020-10-27 01:09:05', '2025-12-17 19:47:53', '8dBaDw84', '3256168'), + (601, 441, 'maybe', '2020-11-14 21:54:54', '2025-12-17 19:47:54', '8dBaDw84', '3256169'), + (601, 443, 'attending', '2020-10-24 01:23:31', '2025-12-17 19:47:53', '8dBaDw84', '3263578'), + (601, 445, 'maybe', '2020-10-27 01:08:49', '2025-12-17 19:47:54', '8dBaDw84', '3266138'), + (601, 446, 'maybe', '2020-10-27 01:07:28', '2025-12-17 19:47:53', '8dBaDw84', '3267163'), + (601, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '8dBaDw84', '3276428'), + (601, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '8dBaDw84', '3281467'), + (601, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '8dBaDw84', '3281470'), + (601, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '8dBaDw84', '3281829'), + (601, 468, 'maybe', '2020-11-21 19:37:35', '2025-12-17 19:47:54', '8dBaDw84', '3285413'), + (601, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '8dBaDw84', '3285414'), + (601, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '8dBaDw84', '3297764'), + (601, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '8dBaDw84', '3313856'), + (601, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '8dBaDw84', '3314909'), + (601, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '8dBaDw84', '3314964'), + (601, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '8dBaDw84', '3323365'), + (601, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '8dBaDw84', '3329383'), + (601, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '8dBaDw84', '3351539'), + (601, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '8dBaDw84', '3386848'), + (601, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '8dBaDw84', '3389527'), + (601, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '8dBaDw84', '3396499'), + (601, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '8dBaDw84', '3403650'), + (601, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '8dBaDw84', '3406988'), + (601, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '8dBaDw84', '3416576'), + (601, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '8dBaDw84', '3418925'), + (601, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dBaDw84', '6045684'), + (602, 1010, 'attending', '2021-11-28 23:43:16', '2025-12-17 19:47:36', 'myDrr50d', '4438812'), + (602, 1094, 'maybe', '2021-11-28 23:43:04', '2025-12-17 19:47:36', 'myDrr50d', '4587337'), + (602, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'myDrr50d', '4694407'), + (602, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'myDrr50d', '4736497'), + (602, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'myDrr50d', '4736500'), + (602, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'myDrr50d', '4746789'), + (602, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'myDrr50d', '4753929'), + (602, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myDrr50d', '6045684'), + (603, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4onn90oA', '8438709'), + (603, 3191, 'attending', '2025-07-15 03:22:39', '2025-12-17 19:46:17', '4onn90oA', '8444983'), + (603, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4onn90oA', '8457738'), + (603, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4onn90oA', '8459566'), + (603, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4onn90oA', '8459567'), + (603, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4onn90oA', '8461032'), + (603, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4onn90oA', '8477877'), + (603, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4onn90oA', '8485688'), + (604, 1176, 'attending', '2022-01-31 09:43:26', '2025-12-17 19:47:32', '4v8yPnkm', '4736498'), + (604, 1177, 'attending', '2022-02-06 22:33:06', '2025-12-17 19:47:32', '4v8yPnkm', '4736499'), + (604, 1178, 'attending', '2022-01-29 03:23:02', '2025-12-17 19:47:32', '4v8yPnkm', '4736500'), + (604, 1179, 'attending', '2022-02-19 04:55:55', '2025-12-17 19:47:32', '4v8yPnkm', '4736501'), + (604, 1181, 'not_attending', '2022-03-06 01:00:30', '2025-12-17 19:47:33', '4v8yPnkm', '4736503'), + (604, 1182, 'not_attending', '2022-03-11 23:52:58', '2025-12-17 19:47:33', '4v8yPnkm', '4736504'), + (604, 1211, 'attending', '2022-01-28 23:30:34', '2025-12-17 19:47:32', '4v8yPnkm', '4780754'), + (604, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4v8yPnkm', '5038850'), + (604, 1236, 'not_attending', '2022-02-16 09:12:51', '2025-12-17 19:47:32', '4v8yPnkm', '5045826'), + (604, 1259, 'not_attending', '2022-03-11 23:52:47', '2025-12-17 19:47:33', '4v8yPnkm', '5132533'), + (604, 1272, 'attending', '2022-03-18 07:53:26', '2025-12-17 19:47:25', '4v8yPnkm', '5186582'), + (604, 1273, 'attending', '2022-03-23 05:42:22', '2025-12-17 19:47:25', '4v8yPnkm', '5186583'), + (604, 1274, 'attending', '2022-03-30 09:29:20', '2025-12-17 19:47:26', '4v8yPnkm', '5186585'), + (604, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4v8yPnkm', '5190437'), + (604, 1284, 'not_attending', '2022-04-16 17:13:06', '2025-12-17 19:47:27', '4v8yPnkm', '5195095'), + (604, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4v8yPnkm', '5215989'), + (604, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4v8yPnkm', '5223686'), + (604, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4v8yPnkm', '5227432'), + (604, 1346, 'attending', '2022-04-21 08:49:31', '2025-12-17 19:47:27', '4v8yPnkm', '5247467'), + (604, 1362, 'not_attending', '2022-05-01 01:58:53', '2025-12-17 19:47:28', '4v8yPnkm', '5260800'), + (604, 1374, 'attending', '2022-05-03 12:09:22', '2025-12-17 19:47:28', '4v8yPnkm', '5269930'), + (604, 1378, 'attending', '2022-05-09 11:41:51', '2025-12-17 19:47:28', '4v8yPnkm', '5271448'), + (604, 1379, 'not_attending', '2022-05-22 05:25:02', '2025-12-17 19:47:30', '4v8yPnkm', '5271449'), + (604, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4v8yPnkm', '5276469'), + (604, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4v8yPnkm', '5278159'), + (604, 1407, 'not_attending', '2022-06-02 08:18:49', '2025-12-17 19:47:30', '4v8yPnkm', '5363695'), + (604, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4v8yPnkm', '5365960'), + (604, 1415, 'not_attending', '2022-06-02 08:18:47', '2025-12-17 19:47:30', '4v8yPnkm', '5368973'), + (604, 1428, 'not_attending', '2022-06-11 11:46:25', '2025-12-17 19:47:30', '4v8yPnkm', '5378247'), + (604, 1431, 'not_attending', '2022-06-11 11:46:30', '2025-12-17 19:47:31', '4v8yPnkm', '5389605'), + (604, 1442, 'attending', '2022-06-13 23:03:07', '2025-12-17 19:47:17', '4v8yPnkm', '5397265'), + (604, 1451, 'not_attending', '2022-06-18 05:08:41', '2025-12-17 19:47:17', '4v8yPnkm', '5403967'), + (604, 1458, 'not_attending', '2022-06-11 11:46:55', '2025-12-17 19:47:17', '4v8yPnkm', '5404786'), + (604, 1462, 'not_attending', '2022-06-11 11:46:49', '2025-12-17 19:47:17', '4v8yPnkm', '5405203'), + (604, 1478, 'not_attending', '2022-06-18 05:08:58', '2025-12-17 19:47:19', '4v8yPnkm', '5408794'), + (604, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4v8yPnkm', '5411699'), + (604, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4v8yPnkm', '5412550'), + (604, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4v8yPnkm', '5415046'), + (604, 1495, 'not_attending', '2022-07-05 22:27:49', '2025-12-17 19:47:19', '4v8yPnkm', '5422086'), + (604, 1498, 'not_attending', '2022-06-29 00:15:06', '2025-12-17 19:47:19', '4v8yPnkm', '5422406'), + (604, 1502, 'not_attending', '2022-07-08 23:29:08', '2025-12-17 19:47:19', '4v8yPnkm', '5424565'), + (604, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4v8yPnkm', '5426882'), + (604, 1505, 'not_attending', '2022-07-05 22:30:12', '2025-12-17 19:47:19', '4v8yPnkm', '5427083'), + (604, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4v8yPnkm', '5441125'), + (604, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4v8yPnkm', '5441126'), + (604, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4v8yPnkm', '5441128'), + (604, 1518, 'attending', '2022-08-23 00:57:05', '2025-12-17 19:47:24', '4v8yPnkm', '5441131'), + (604, 1519, 'attending', '2022-08-23 00:57:24', '2025-12-17 19:47:24', '4v8yPnkm', '5441132'), + (604, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4v8yPnkm', '5446643'), + (604, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4v8yPnkm', '5453325'), + (604, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4v8yPnkm', '5454516'), + (604, 1544, 'attending', '2022-09-17 04:56:32', '2025-12-17 19:47:11', '4v8yPnkm', '5454517'), + (604, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4v8yPnkm', '5454605'), + (604, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4v8yPnkm', '5455037'), + (604, 1559, 'not_attending', '2022-09-27 13:05:32', '2025-12-17 19:47:11', '4v8yPnkm', '5458731'), + (604, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4v8yPnkm', '5461278'), + (604, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4v8yPnkm', '5469480'), + (604, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4v8yPnkm', '5471073'), + (604, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4v8yPnkm', '5474663'), + (604, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4v8yPnkm', '5482022'), + (604, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4v8yPnkm', '5482793'), + (604, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4v8yPnkm', '5488912'), + (604, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4v8yPnkm', '5492192'), + (604, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4v8yPnkm', '5493139'), + (604, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4v8yPnkm', '5493200'), + (604, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4v8yPnkm', '5502188'), + (604, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4v8yPnkm', '5505059'), + (604, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4v8yPnkm', '5509055'), + (604, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4v8yPnkm', '5512862'), + (604, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4v8yPnkm', '5513985'), + (604, 1626, 'attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', '4v8yPnkm', '5519981'), + (604, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4v8yPnkm', '5522550'), + (604, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4v8yPnkm', '5534683'), + (604, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '4v8yPnkm', '5537735'), + (604, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4v8yPnkm', '5540859'), + (604, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4v8yPnkm', '5546619'), + (604, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4v8yPnkm', '5555245'), + (604, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4v8yPnkm', '5557747'), + (604, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4v8yPnkm', '5560255'), + (604, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4v8yPnkm', '5562906'), + (604, 1666, 'attending', '2022-09-27 22:27:58', '2025-12-17 19:47:11', '4v8yPnkm', '5563208'), + (604, 1668, 'not_attending', '2022-10-01 13:01:27', '2025-12-17 19:47:12', '4v8yPnkm', '5563222'), + (604, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4v8yPnkm', '5600604'), + (604, 1679, 'attending', '2022-10-02 15:58:21', '2025-12-17 19:47:12', '4v8yPnkm', '5601099'), + (604, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4v8yPnkm', '5605544'), + (604, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', '4v8yPnkm', '5606737'), + (604, 1708, 'attending', '2022-10-05 15:59:02', '2025-12-17 19:47:12', '4v8yPnkm', '5617648'), + (604, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', '4v8yPnkm', '5630907'), + (604, 1720, 'not_attending', '2022-10-15 09:54:42', '2025-12-17 19:47:12', '4v8yPnkm', '5630959'), + (604, 1721, 'not_attending', '2022-10-14 19:01:47', '2025-12-17 19:47:13', '4v8yPnkm', '5630960'), + (604, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4v8yPnkm', '5630961'), + (604, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4v8yPnkm', '5630962'), + (604, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4v8yPnkm', '5630966'), + (604, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4v8yPnkm', '5630967'), + (604, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4v8yPnkm', '5630968'), + (604, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4v8yPnkm', '5635406'), + (604, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4v8yPnkm', '5638765'), + (604, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4v8yPnkm', '5640097'), + (604, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4v8yPnkm', '5640843'), + (604, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4v8yPnkm', '5641521'), + (604, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4v8yPnkm', '5642818'), + (604, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4v8yPnkm', '5652395'), + (604, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4v8yPnkm', '5670445'), + (604, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4v8yPnkm', '5671637'), + (604, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4v8yPnkm', '5672329'), + (604, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4v8yPnkm', '5674057'), + (604, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4v8yPnkm', '5674060'), + (604, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4v8yPnkm', '5677461'), + (604, 1776, 'attending', '2022-11-09 04:04:04', '2025-12-17 19:47:15', '4v8yPnkm', '5691067'), + (604, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4v8yPnkm', '5698046'), + (604, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4v8yPnkm', '5699760'), + (604, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4v8yPnkm', '5741601'), + (604, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4v8yPnkm', '5763458'), + (604, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4v8yPnkm', '5774172'), + (604, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '4v8yPnkm', '5818247'), + (604, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4v8yPnkm', '5819471'), + (604, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4v8yPnkm', '5827739'), + (604, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4v8yPnkm', '5844306'), + (604, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4v8yPnkm', '5850159'), + (604, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4v8yPnkm', '5858999'), + (604, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4v8yPnkm', '5871984'), + (604, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4v8yPnkm', '5876354'), + (604, 1864, 'not_attending', '2023-01-22 02:46:53', '2025-12-17 19:47:05', '4v8yPnkm', '5879675'), + (604, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4v8yPnkm', '5880939'), + (604, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4v8yPnkm', '5880940'), + (604, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4v8yPnkm', '5880942'), + (604, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4v8yPnkm', '5880943'), + (604, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4v8yPnkm', '5887890'), + (604, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4v8yPnkm', '5888598'), + (604, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4v8yPnkm', '5893260'), + (604, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4v8yPnkm', '5899826'), + (604, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4v8yPnkm', '5900199'), + (604, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4v8yPnkm', '5900200'), + (604, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4v8yPnkm', '5900202'), + (604, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4v8yPnkm', '5900203'), + (604, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4v8yPnkm', '5901108'), + (604, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4v8yPnkm', '5901126'), + (604, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4v8yPnkm', '5909655'), + (604, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4v8yPnkm', '5910522'), + (604, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4v8yPnkm', '5910526'), + (604, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4v8yPnkm', '5910528'), + (604, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4v8yPnkm', '5916219'), + (604, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4v8yPnkm', '5936234'), + (604, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4v8yPnkm', '5958351'), + (604, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4v8yPnkm', '5959751'), + (604, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4v8yPnkm', '5959755'), + (604, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4v8yPnkm', '5960055'), + (604, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4v8yPnkm', '5961684'), + (604, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4v8yPnkm', '5962132'), + (604, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4v8yPnkm', '5962133'), + (604, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4v8yPnkm', '5962134'), + (604, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4v8yPnkm', '5962317'), + (604, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4v8yPnkm', '5962318'), + (604, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4v8yPnkm', '5965933'), + (604, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4v8yPnkm', '5967014'), + (604, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4v8yPnkm', '5972815'), + (604, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4v8yPnkm', '5974016'), + (604, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4v8yPnkm', '5981515'), + (604, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4v8yPnkm', '5993516'), + (604, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4v8yPnkm', '5998939'), + (604, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4v8yPnkm', '6028191'), + (604, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4v8yPnkm', '6040066'), + (604, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4v8yPnkm', '6042717'), + (604, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4v8yPnkm', '6044838'), + (604, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4v8yPnkm', '6044839'), + (604, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4v8yPnkm', '6045684'), + (604, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4v8yPnkm', '6050104'), + (604, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4v8yPnkm', '6053195'), + (604, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4v8yPnkm', '6053198'), + (604, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4v8yPnkm', '6056085'), + (604, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4v8yPnkm', '6056916'), + (604, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4v8yPnkm', '6059290'), + (604, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4v8yPnkm', '6060328'), + (604, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4v8yPnkm', '6061037'), + (604, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4v8yPnkm', '6061039'), + (604, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4v8yPnkm', '6067245'), + (604, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4v8yPnkm', '6068094'), + (604, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4v8yPnkm', '6068252'), + (604, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4v8yPnkm', '6068253'), + (604, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4v8yPnkm', '6068254'), + (604, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4v8yPnkm', '6068280'), + (604, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4v8yPnkm', '6069093'), + (604, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4v8yPnkm', '6072528'), + (604, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4v8yPnkm', '6079840'), + (604, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4v8yPnkm', '6083398'), + (604, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4v8yPnkm', '6093504'), + (604, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4v8yPnkm', '6097414'), + (604, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4v8yPnkm', '6097442'), + (604, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4v8yPnkm', '6097684'), + (604, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4v8yPnkm', '6098762'), + (604, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4v8yPnkm', '6101362'), + (604, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4v8yPnkm', '6103752'), + (604, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4v8yPnkm', '6107314'), + (605, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'LmpJ6PQ4', '3149489'), + (605, 648, 'not_attending', '2021-05-29 02:26:15', '2025-12-17 19:47:47', 'LmpJ6PQ4', '3539923'), + (605, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJ6PQ4', '6045684'), + (606, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4ol7aOVd', '6655401'), + (606, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4ol7aOVd', '6699906'), + (606, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4ol7aOVd', '6699913'), + (606, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4ol7aOVd', '6701109'), + (606, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4ol7aOVd', '6705219'), + (606, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4ol7aOVd', '6710153'), + (606, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4ol7aOVd', '6711552'), + (606, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4ol7aOVd', '6711553'), + (606, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4ol7aOVd', '6722688'), + (606, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4ol7aOVd', '6730620'), + (606, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4ol7aOVd', '6730642'), + (606, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4ol7aOVd', '6740364'), + (606, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4ol7aOVd', '6743829'), + (606, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4ol7aOVd', '7030380'), + (606, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4ol7aOVd', '7033677'), + (606, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4ol7aOVd', '7035415'), + (606, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4ol7aOVd', '7044715'), + (606, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4ol7aOVd', '7050318'), + (606, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4ol7aOVd', '7050319'), + (606, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4ol7aOVd', '7050322'), + (606, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4ol7aOVd', '7057804'), + (606, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4ol7aOVd', '7072824'), + (606, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4ol7aOVd', '7074348'), + (606, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4ol7aOVd', '7089267'), + (606, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4ol7aOVd', '7098747'), + (606, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4ol7aOVd', '7113468'), + (606, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4ol7aOVd', '7114856'), + (606, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4ol7aOVd', '7114951'), + (606, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4ol7aOVd', '7114955'), + (606, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4ol7aOVd', '7114956'), + (606, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4ol7aOVd', '7153615'), + (606, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4ol7aOVd', '7159484'), + (606, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4ol7aOVd', '7178446'), + (607, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mq1a80qm', '6045684'), + (608, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxDRpJ1d', '6045684'), + (609, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'daJnKRDm', '4736503'), + (609, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daJnKRDm', '4736504'), + (609, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'daJnKRDm', '5132533'), + (609, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'daJnKRDm', '5186582'), + (609, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'daJnKRDm', '5186583'), + (609, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'daJnKRDm', '5186585'), + (609, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'daJnKRDm', '5190437'), + (609, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'daJnKRDm', '5196763'), + (609, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'daJnKRDm', '5199460'), + (609, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'daJnKRDm', '5215989'), + (609, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daJnKRDm', '6045684'), + (610, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dVbq39Zd', '4736504'), + (610, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'dVbq39Zd', '5132533'), + (610, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dVbq39Zd', '5186582'), + (610, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dVbq39Zd', '5186583'), + (610, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dVbq39Zd', '5186585'), + (610, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVbq39Zd', '5190437'), + (610, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'dVbq39Zd', '5196763'), + (610, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'dVbq39Zd', '5199460'), + (610, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVbq39Zd', '5215989'), + (610, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVbq39Zd', '5223686'), + (610, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVbq39Zd', '5227432'), + (610, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbq39Zd', '6045684'), + (611, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'daBenyDm', '4736497'), + (611, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'daBenyDm', '4736499'), + (611, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'daBenyDm', '4736500'), + (611, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'daBenyDm', '4736503'), + (611, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daBenyDm', '4736504'), + (611, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'daBenyDm', '4746789'), + (611, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'daBenyDm', '4753929'), + (611, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'daBenyDm', '5038850'), + (611, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'daBenyDm', '5045826'), + (611, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'daBenyDm', '5132533'), + (611, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daBenyDm', '6045684'), + (612, 10, 'attending', '2020-03-28 11:51:19', '2025-12-17 19:47:56', 'NmLXxVam', '2958053'), + (612, 12, 'not_attending', '2020-03-31 12:11:41', '2025-12-17 19:47:56', 'NmLXxVam', '2958056'), + (612, 17, 'attending', '2020-03-22 10:29:55', '2025-12-17 19:47:58', 'NmLXxVam', '2958061'), + (612, 22, 'not_attending', '2020-05-24 12:21:29', '2025-12-17 19:47:57', 'NmLXxVam', '2958066'), + (612, 23, 'not_attending', '2020-06-02 08:11:35', '2025-12-17 19:47:58', 'NmLXxVam', '2958067'), + (612, 24, 'not_attending', '2020-06-02 08:11:37', '2025-12-17 19:47:55', 'NmLXxVam', '2958068'), + (612, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'NmLXxVam', '2961309'), + (612, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'NmLXxVam', '2961895'), + (612, 36, 'maybe', '2020-03-29 11:40:24', '2025-12-17 19:47:57', 'NmLXxVam', '2969208'), + (612, 38, 'maybe', '2020-03-30 14:27:35', '2025-12-17 19:47:56', 'NmLXxVam', '2969751'), + (612, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'NmLXxVam', '2971546'), + (612, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'NmLXxVam', '2974534'), + (612, 46, 'attending', '2020-04-06 18:43:18', '2025-12-17 19:47:57', 'NmLXxVam', '2974955'), + (612, 49, 'not_attending', '2020-05-24 12:21:52', '2025-12-17 19:47:58', 'NmLXxVam', '2975274'), + (612, 50, 'not_attending', '2020-07-26 03:02:14', '2025-12-17 19:47:55', 'NmLXxVam', '2975275'), + (612, 51, 'not_attending', '2020-06-02 08:11:51', '2025-12-17 19:47:55', 'NmLXxVam', '2975276'), + (612, 52, 'not_attending', '2020-06-02 08:11:42', '2025-12-17 19:47:58', 'NmLXxVam', '2975277'), + (612, 54, 'not_attending', '2020-08-11 01:00:06', '2025-12-17 19:47:56', 'NmLXxVam', '2975279'), + (612, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'NmLXxVam', '2975384'), + (612, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'NmLXxVam', '2975385'), + (612, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'NmLXxVam', '2976575'), + (612, 59, 'maybe', '2020-05-05 22:14:15', '2025-12-17 19:47:57', 'NmLXxVam', '2977128'), + (612, 62, 'maybe', '2020-05-12 19:45:38', '2025-12-17 19:47:57', 'NmLXxVam', '2977131'), + (612, 63, 'attending', '2020-05-05 22:15:52', '2025-12-17 19:47:57', 'NmLXxVam', '2977132'), + (612, 64, 'not_attending', '2020-06-02 08:10:22', '2025-12-17 19:47:58', 'NmLXxVam', '2977133'), + (612, 65, 'attending', '2020-05-05 22:15:54', '2025-12-17 19:47:57', 'NmLXxVam', '2977134'), + (612, 66, 'attending', '2020-06-02 08:11:15', '2025-12-17 19:47:58', 'NmLXxVam', '2977135'), + (612, 67, 'maybe', '2020-06-16 22:31:04', '2025-12-17 19:47:58', 'NmLXxVam', '2977136'), + (612, 68, 'maybe', '2020-06-23 21:32:59', '2025-12-17 19:47:58', 'NmLXxVam', '2977137'), + (612, 69, 'maybe', '2020-07-02 22:31:04', '2025-12-17 19:47:55', 'NmLXxVam', '2977138'), + (612, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'NmLXxVam', '2977343'), + (612, 72, 'maybe', '2020-05-05 22:16:13', '2025-12-17 19:47:57', 'NmLXxVam', '2977812'), + (612, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'NmLXxVam', '2977931'), + (612, 74, 'attending', '2020-04-16 16:24:32', '2025-12-17 19:47:57', 'NmLXxVam', '2978244'), + (612, 75, 'maybe', '2020-04-25 19:35:09', '2025-12-17 19:47:57', 'NmLXxVam', '2978245'), + (612, 76, 'attending', '2020-04-16 16:24:36', '2025-12-17 19:47:57', 'NmLXxVam', '2978246'), + (612, 77, 'maybe', '2020-05-09 20:44:27', '2025-12-17 19:47:57', 'NmLXxVam', '2978247'), + (612, 78, 'attending', '2020-05-04 21:37:28', '2025-12-17 19:47:57', 'NmLXxVam', '2978249'), + (612, 79, 'attending', '2020-05-04 21:37:30', '2025-12-17 19:47:57', 'NmLXxVam', '2978250'), + (612, 80, 'maybe', '2020-06-06 21:22:38', '2025-12-17 19:47:58', 'NmLXxVam', '2978251'), + (612, 81, 'attending', '2020-06-02 08:10:59', '2025-12-17 19:47:58', 'NmLXxVam', '2978252'), + (612, 82, 'maybe', '2020-04-11 01:51:43', '2025-12-17 19:47:57', 'NmLXxVam', '2978433'), + (612, 83, 'maybe', '2020-05-05 22:16:23', '2025-12-17 19:47:57', 'NmLXxVam', '2978438'), + (612, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'NmLXxVam', '2980871'), + (612, 86, 'not_attending', '2020-04-14 18:59:27', '2025-12-17 19:47:57', 'NmLXxVam', '2981388'), + (612, 92, 'maybe', '2020-04-19 11:31:16', '2025-12-17 19:47:57', 'NmLXxVam', '2986743'), + (612, 96, 'not_attending', '2020-05-05 22:16:07', '2025-12-17 19:47:57', 'NmLXxVam', '2987453'), + (612, 97, 'not_attending', '2020-05-05 22:16:10', '2025-12-17 19:47:57', 'NmLXxVam', '2987454'), + (612, 98, 'not_attending', '2020-05-05 22:16:00', '2025-12-17 19:47:57', 'NmLXxVam', '2987455'), + (612, 100, 'attending', '2020-04-24 19:46:51', '2025-12-17 19:47:57', 'NmLXxVam', '2989142'), + (612, 104, 'maybe', '2020-04-24 14:49:28', '2025-12-17 19:47:57', 'NmLXxVam', '2991471'), + (612, 105, 'maybe', '2020-05-05 22:16:29', '2025-12-17 19:47:57', 'NmLXxVam', '2993500'), + (612, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'NmLXxVam', '2993501'), + (612, 107, 'maybe', '2020-05-05 22:16:35', '2025-12-17 19:47:57', 'NmLXxVam', '2993502'), + (612, 108, 'maybe', '2020-05-05 22:16:32', '2025-12-17 19:47:57', 'NmLXxVam', '2993504'), + (612, 109, 'maybe', '2020-05-05 22:16:04', '2025-12-17 19:47:57', 'NmLXxVam', '2994480'), + (612, 111, 'not_attending', '2020-06-02 08:11:06', '2025-12-17 19:47:58', 'NmLXxVam', '2994907'), + (612, 115, 'not_attending', '2020-05-16 13:27:55', '2025-12-17 19:47:57', 'NmLXxVam', '3001217'), + (612, 121, 'maybe', '2020-05-24 12:21:08', '2025-12-17 19:47:57', 'NmLXxVam', '3023063'), + (612, 123, 'not_attending', '2020-05-24 12:21:02', '2025-12-17 19:47:57', 'NmLXxVam', '3023729'), + (612, 124, 'maybe', '2020-05-24 12:21:26', '2025-12-17 19:47:57', 'NmLXxVam', '3023809'), + (612, 125, 'maybe', '2020-05-19 13:18:11', '2025-12-17 19:47:57', 'NmLXxVam', '3023987'), + (612, 126, 'maybe', '2020-05-24 12:20:48', '2025-12-17 19:47:57', 'NmLXxVam', '3024022'), + (612, 129, 'maybe', '2020-05-24 12:21:47', '2025-12-17 19:47:58', 'NmLXxVam', '3028743'), + (612, 130, 'maybe', '2020-05-28 22:30:32', '2025-12-17 19:47:57', 'NmLXxVam', '3028781'), + (612, 132, 'not_attending', '2020-05-24 12:21:55', '2025-12-17 19:47:58', 'NmLXxVam', '3033648'), + (612, 133, 'maybe', '2020-06-02 08:11:24', '2025-12-17 19:47:58', 'NmLXxVam', '3034321'), + (612, 134, 'not_attending', '2020-05-24 12:21:05', '2025-12-17 19:47:57', 'NmLXxVam', '3034367'), + (612, 135, 'maybe', '2020-05-24 12:21:15', '2025-12-17 19:47:57', 'NmLXxVam', '3034368'), + (612, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'NmLXxVam', '3035881'), + (612, 137, 'maybe', '2020-06-02 08:10:49', '2025-12-17 19:47:58', 'NmLXxVam', '3042188'), + (612, 138, 'maybe', '2020-06-02 08:11:30', '2025-12-17 19:47:58', 'NmLXxVam', '3042932'), + (612, 139, 'not_attending', '2020-06-02 08:11:10', '2025-12-17 19:47:58', 'NmLXxVam', '3046190'), + (612, 141, 'not_attending', '2020-06-02 08:10:30', '2025-12-17 19:47:58', 'NmLXxVam', '3049830'), + (612, 143, 'not_attending', '2020-06-02 08:11:13', '2025-12-17 19:47:58', 'NmLXxVam', '3049983'), + (612, 147, 'not_attending', '2020-08-11 01:00:56', '2025-12-17 19:47:56', 'NmLXxVam', '3058684'), + (612, 151, 'not_attending', '2020-08-11 01:01:50', '2025-12-17 19:47:56', 'NmLXxVam', '3058688'), + (612, 152, 'not_attending', '2020-08-11 01:01:56', '2025-12-17 19:47:56', 'NmLXxVam', '3058689'), + (612, 155, 'not_attending', '2020-08-11 01:00:28', '2025-12-17 19:47:56', 'NmLXxVam', '3058692'), + (612, 156, 'not_attending', '2020-08-31 23:25:54', '2025-12-17 19:47:56', 'NmLXxVam', '3058693'), + (612, 157, 'not_attending', '2020-08-31 23:25:51', '2025-12-17 19:47:56', 'NmLXxVam', '3058694'), + (612, 158, 'not_attending', '2020-08-31 23:26:01', '2025-12-17 19:47:52', 'NmLXxVam', '3058695'), + (612, 159, 'not_attending', '2020-08-31 23:26:30', '2025-12-17 19:47:52', 'NmLXxVam', '3058696'), + (612, 160, 'not_attending', '2020-09-28 23:43:37', '2025-12-17 19:47:52', 'NmLXxVam', '3058697'), + (612, 161, 'not_attending', '2020-09-28 23:45:30', '2025-12-17 19:47:52', 'NmLXxVam', '3058698'), + (612, 162, 'not_attending', '2020-09-28 23:45:33', '2025-12-17 19:47:52', 'NmLXxVam', '3058699'), + (612, 163, 'not_attending', '2020-09-28 23:43:31', '2025-12-17 19:47:53', 'NmLXxVam', '3058700'), + (612, 164, 'not_attending', '2020-11-02 01:11:13', '2025-12-17 19:47:54', 'NmLXxVam', '3058701'), + (612, 165, 'not_attending', '2020-11-08 00:32:55', '2025-12-17 19:47:53', 'NmLXxVam', '3058702'), + (612, 166, 'not_attending', '2020-11-02 01:10:45', '2025-12-17 19:47:54', 'NmLXxVam', '3058704'), + (612, 167, 'not_attending', '2020-11-02 01:10:41', '2025-12-17 19:47:54', 'NmLXxVam', '3058705'), + (612, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'NmLXxVam', '3058959'), + (612, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'NmLXxVam', '3067093'), + (612, 181, 'not_attending', '2020-06-20 01:52:26', '2025-12-17 19:47:58', 'NmLXxVam', '3074513'), + (612, 182, 'not_attending', '2020-06-27 17:32:35', '2025-12-17 19:47:55', 'NmLXxVam', '3074514'), + (612, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'NmLXxVam', '3075228'), + (612, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'NmLXxVam', '3075456'), + (612, 186, 'not_attending', '2020-06-18 20:23:22', '2025-12-17 19:47:55', 'NmLXxVam', '3083791'), + (612, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'NmLXxVam', '3085151'), + (612, 191, 'attending', '2020-07-07 22:22:42', '2025-12-17 19:47:55', 'NmLXxVam', '3087259'), + (612, 193, 'attending', '2020-07-07 22:22:44', '2025-12-17 19:47:55', 'NmLXxVam', '3087261'), + (612, 194, 'attending', '2020-07-07 22:22:46', '2025-12-17 19:47:55', 'NmLXxVam', '3087262'), + (612, 196, 'maybe', '2020-08-10 09:58:14', '2025-12-17 19:47:56', 'NmLXxVam', '3087265'), + (612, 197, 'maybe', '2020-08-22 22:04:48', '2025-12-17 19:47:56', 'NmLXxVam', '3087266'), + (612, 198, 'maybe', '2020-08-29 11:16:38', '2025-12-17 19:47:56', 'NmLXxVam', '3087267'), + (612, 199, 'attending', '2020-08-11 01:01:54', '2025-12-17 19:47:56', 'NmLXxVam', '3087268'), + (612, 200, 'maybe', '2020-08-31 23:24:43', '2025-12-17 19:47:56', 'NmLXxVam', '3087269'), + (612, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'NmLXxVam', '3088653'), + (612, 203, 'attending', '2020-06-22 09:52:25', '2025-12-17 19:47:58', 'NmLXxVam', '3091624'), + (612, 205, 'maybe', '2020-07-08 09:39:54', '2025-12-17 19:47:55', 'NmLXxVam', '3104804'), + (612, 207, 'maybe', '2020-07-24 22:10:32', '2025-12-17 19:47:55', 'NmLXxVam', '3104807'), + (612, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'NmLXxVam', '3106813'), + (612, 214, 'maybe', '2020-07-08 09:39:40', '2025-12-17 19:47:55', 'NmLXxVam', '3124139'), + (612, 219, 'not_attending', '2020-08-11 01:00:44', '2025-12-17 19:47:56', 'NmLXxVam', '3129263'), + (612, 220, 'not_attending', '2020-08-11 01:02:04', '2025-12-17 19:47:56', 'NmLXxVam', '3129264'), + (612, 221, 'not_attending', '2020-08-31 23:27:39', '2025-12-17 19:47:56', 'NmLXxVam', '3129265'), + (612, 223, 'attending', '2020-08-31 23:25:39', '2025-12-17 19:47:56', 'NmLXxVam', '3129980'), + (612, 224, 'maybe', '2020-07-26 03:02:00', '2025-12-17 19:47:55', 'NmLXxVam', '3130712'), + (612, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'NmLXxVam', '3132817'), + (612, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'NmLXxVam', '3132820'), + (612, 230, 'maybe', '2020-07-26 03:02:09', '2025-12-17 19:47:55', 'NmLXxVam', '3139232'), + (612, 233, 'attending', '2020-07-20 09:43:12', '2025-12-17 19:47:55', 'NmLXxVam', '3139773'), + (612, 237, 'not_attending', '2020-07-26 03:02:12', '2025-12-17 19:47:55', 'NmLXxVam', '3142085'), + (612, 238, 'maybe', '2020-07-26 03:02:20', '2025-12-17 19:47:55', 'NmLXxVam', '3145669'), + (612, 239, 'not_attending', '2020-08-11 01:01:14', '2025-12-17 19:47:56', 'NmLXxVam', '3149470'), + (612, 240, 'not_attending', '2020-08-31 23:25:03', '2025-12-17 19:47:56', 'NmLXxVam', '3149471'), + (612, 241, 'not_attending', '2020-08-31 23:27:02', '2025-12-17 19:47:52', 'NmLXxVam', '3149472'), + (612, 242, 'not_attending', '2020-08-31 23:26:39', '2025-12-17 19:47:56', 'NmLXxVam', '3149473'), + (612, 243, 'not_attending', '2020-11-04 00:47:00', '2025-12-17 19:47:53', 'NmLXxVam', '3149474'), + (612, 244, 'not_attending', '2020-09-28 23:45:10', '2025-12-17 19:47:52', 'NmLXxVam', '3149475'), + (612, 245, 'not_attending', '2020-11-02 01:11:22', '2025-12-17 19:47:54', 'NmLXxVam', '3149476'), + (612, 246, 'not_attending', '2020-12-15 02:37:08', '2025-12-17 19:47:55', 'NmLXxVam', '3149477'), + (612, 248, 'not_attending', '2021-01-02 13:45:03', '2025-12-17 19:47:48', 'NmLXxVam', '3149479'), + (612, 249, 'not_attending', '2020-11-02 01:11:18', '2025-12-17 19:47:54', 'NmLXxVam', '3149480'), + (612, 250, 'not_attending', '2021-02-03 00:03:42', '2025-12-17 19:47:50', 'NmLXxVam', '3149481'), + (612, 251, 'not_attending', '2021-01-02 13:45:05', '2025-12-17 19:47:49', 'NmLXxVam', '3149482'), + (612, 252, 'not_attending', '2021-02-03 00:04:55', '2025-12-17 19:47:50', 'NmLXxVam', '3149483'), + (612, 253, 'not_attending', '2021-03-01 13:42:42', '2025-12-17 19:47:44', 'NmLXxVam', '3149484'), + (612, 254, 'not_attending', '2021-03-01 04:08:22', '2025-12-17 19:47:51', 'NmLXxVam', '3149485'), + (612, 255, 'not_attending', '2021-03-01 13:42:39', '2025-12-17 19:47:43', 'NmLXxVam', '3149486'), + (612, 256, 'not_attending', '2021-05-03 18:28:49', '2025-12-17 19:47:46', 'NmLXxVam', '3149487'), + (612, 257, 'maybe', '2021-04-09 00:11:05', '2025-12-17 19:47:45', 'NmLXxVam', '3149488'), + (612, 258, 'not_attending', '2021-05-13 00:12:53', '2025-12-17 19:47:47', 'NmLXxVam', '3149489'), + (612, 259, 'not_attending', '2021-05-13 00:12:24', '2025-12-17 19:47:46', 'NmLXxVam', '3149490'), + (612, 260, 'not_attending', '2021-06-13 19:57:39', '2025-12-17 19:47:48', 'NmLXxVam', '3149491'), + (612, 262, 'not_attending', '2021-06-13 19:58:09', '2025-12-17 19:47:38', 'NmLXxVam', '3149493'), + (612, 263, 'maybe', '2020-07-26 03:01:30', '2025-12-17 19:47:55', 'NmLXxVam', '3149671'), + (612, 270, 'maybe', '2020-08-11 00:59:40', '2025-12-17 19:47:56', 'NmLXxVam', '3154457'), + (612, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'NmLXxVam', '3155321'), + (612, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'NmLXxVam', '3162006'), + (612, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'NmLXxVam', '3163442'), + (612, 279, 'maybe', '2020-08-11 01:00:22', '2025-12-17 19:47:56', 'NmLXxVam', '3165202'), + (612, 280, 'not_attending', '2020-08-11 00:59:51', '2025-12-17 19:47:56', 'NmLXxVam', '3166942'), + (612, 284, 'maybe', '2020-08-11 01:00:12', '2025-12-17 19:47:56', 'NmLXxVam', '3169556'), + (612, 285, 'maybe', '2020-08-11 01:01:06', '2025-12-17 19:47:56', 'NmLXxVam', '3170245'), + (612, 286, 'maybe', '2020-08-11 01:01:31', '2025-12-17 19:47:56', 'NmLXxVam', '3170246'), + (612, 287, 'maybe', '2020-08-11 01:01:42', '2025-12-17 19:47:56', 'NmLXxVam', '3170247'), + (612, 288, 'maybe', '2020-08-11 01:02:11', '2025-12-17 19:47:56', 'NmLXxVam', '3170249'), + (612, 289, 'maybe', '2020-08-11 01:01:59', '2025-12-17 19:47:56', 'NmLXxVam', '3170250'), + (612, 290, 'maybe', '2020-08-31 23:25:08', '2025-12-17 19:47:56', 'NmLXxVam', '3170251'), + (612, 291, 'maybe', '2020-08-31 23:25:15', '2025-12-17 19:47:56', 'NmLXxVam', '3170252'), + (612, 293, 'maybe', '2020-08-11 01:00:40', '2025-12-17 19:47:56', 'NmLXxVam', '3172832'), + (612, 294, 'maybe', '2020-08-11 01:01:23', '2025-12-17 19:47:56', 'NmLXxVam', '3172833'), + (612, 295, 'maybe', '2020-08-11 01:02:08', '2025-12-17 19:47:56', 'NmLXxVam', '3172834'), + (612, 296, 'maybe', '2020-08-31 23:25:29', '2025-12-17 19:47:56', 'NmLXxVam', '3172876'), + (612, 297, 'attending', '2020-08-11 00:59:35', '2025-12-17 19:47:56', 'NmLXxVam', '3173937'), + (612, 298, 'maybe', '2020-08-11 01:01:36', '2025-12-17 19:47:56', 'NmLXxVam', '3174556'), + (612, 300, 'maybe', '2020-08-31 23:26:20', '2025-12-17 19:47:56', 'NmLXxVam', '3177986'), + (612, 302, 'maybe', '2020-08-16 01:19:55', '2025-12-17 19:47:56', 'NmLXxVam', '3178028'), + (612, 304, 'maybe', '2020-08-31 23:24:54', '2025-12-17 19:47:56', 'NmLXxVam', '3178916'), + (612, 305, 'attending', '2020-08-18 10:09:51', '2025-12-17 19:47:56', 'NmLXxVam', '3179555'), + (612, 308, 'attending', '2020-08-17 22:56:40', '2025-12-17 19:47:56', 'NmLXxVam', '3183341'), + (612, 310, 'maybe', '2020-08-22 22:41:11', '2025-12-17 19:47:56', 'NmLXxVam', '3186005'), + (612, 311, 'not_attending', '2020-09-12 22:46:14', '2025-12-17 19:47:56', 'NmLXxVam', '3186057'), + (612, 312, 'maybe', '2020-08-31 23:25:12', '2025-12-17 19:47:56', 'NmLXxVam', '3187795'), + (612, 313, 'maybe', '2020-08-22 22:41:16', '2025-12-17 19:47:56', 'NmLXxVam', '3188127'), + (612, 315, 'maybe', '2020-08-31 23:25:00', '2025-12-17 19:47:56', 'NmLXxVam', '3189085'), + (612, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'NmLXxVam', '3191735'), + (612, 319, 'attending', '2020-08-31 23:11:21', '2025-12-17 19:47:56', 'NmLXxVam', '3194179'), + (612, 320, 'not_attending', '2020-08-31 23:27:19', '2025-12-17 19:47:56', 'NmLXxVam', '3195552'), + (612, 321, 'maybe', '2020-08-31 23:24:46', '2025-12-17 19:47:56', 'NmLXxVam', '3197077'), + (612, 322, 'maybe', '2020-08-31 23:27:33', '2025-12-17 19:47:56', 'NmLXxVam', '3197080'), + (612, 323, 'maybe', '2020-08-31 23:27:36', '2025-12-17 19:47:56', 'NmLXxVam', '3197081'), + (612, 324, 'maybe', '2020-08-31 23:28:05', '2025-12-17 19:47:56', 'NmLXxVam', '3197082'), + (612, 325, 'maybe', '2020-08-31 23:27:51', '2025-12-17 19:47:51', 'NmLXxVam', '3197083'), + (612, 326, 'maybe', '2020-09-13 03:31:05', '2025-12-17 19:47:52', 'NmLXxVam', '3197084'), + (612, 327, 'maybe', '2020-08-31 23:27:08', '2025-12-17 19:47:52', 'NmLXxVam', '3197085'), + (612, 328, 'maybe', '2020-08-31 23:26:52', '2025-12-17 19:47:52', 'NmLXxVam', '3197086'), + (612, 329, 'maybe', '2020-08-31 23:28:16', '2025-12-17 19:47:52', 'NmLXxVam', '3197087'), + (612, 330, 'maybe', '2020-08-31 23:24:49', '2025-12-17 19:47:56', 'NmLXxVam', '3197322'), + (612, 333, 'maybe', '2020-09-28 23:44:17', '2025-12-17 19:47:52', 'NmLXxVam', '3199782'), + (612, 334, 'maybe', '2020-10-09 00:52:58', '2025-12-17 19:47:52', 'NmLXxVam', '3199784'), + (612, 335, 'maybe', '2020-09-01 22:32:11', '2025-12-17 19:47:56', 'NmLXxVam', '3200209'), + (612, 338, 'not_attending', '2020-09-06 02:22:52', '2025-12-17 19:47:56', 'NmLXxVam', '3203106'), + (612, 339, 'maybe', '2020-09-09 23:25:35', '2025-12-17 19:47:56', 'NmLXxVam', '3204469'), + (612, 341, 'attending', '2020-09-13 03:31:10', '2025-12-17 19:47:52', 'NmLXxVam', '3204471'), + (612, 342, 'not_attending', '2020-09-28 23:44:05', '2025-12-17 19:47:52', 'NmLXxVam', '3204472'), + (612, 343, 'maybe', '2020-09-13 03:31:14', '2025-12-17 19:47:56', 'NmLXxVam', '3206759'), + (612, 344, 'maybe', '2020-10-14 12:36:24', '2025-12-17 19:47:53', 'NmLXxVam', '3206906'), + (612, 346, 'maybe', '2020-09-13 21:43:36', '2025-12-17 19:47:56', 'NmLXxVam', '3207515'), + (612, 347, 'maybe', '2020-09-13 03:30:57', '2025-12-17 19:47:51', 'NmLXxVam', '3207930'), + (612, 348, 'maybe', '2020-09-13 03:30:34', '2025-12-17 19:47:52', 'NmLXxVam', '3209159'), + (612, 354, 'not_attending', '2020-09-13 21:43:47', '2025-12-17 19:47:56', 'NmLXxVam', '3212570'), + (612, 359, 'not_attending', '2020-09-13 21:50:36', '2025-12-17 19:47:56', 'NmLXxVam', '3212624'), + (612, 362, 'maybe', '2020-09-22 23:33:38', '2025-12-17 19:47:52', 'NmLXxVam', '3214207'), + (612, 363, 'not_attending', '2020-09-21 09:59:45', '2025-12-17 19:47:52', 'NmLXxVam', '3217037'), + (612, 365, 'not_attending', '2020-09-21 09:59:48', '2025-12-17 19:47:52', 'NmLXxVam', '3218510'), + (612, 368, 'maybe', '2020-09-28 23:44:00', '2025-12-17 19:47:52', 'NmLXxVam', '3221403'), + (612, 369, 'maybe', '2020-09-28 23:44:28', '2025-12-17 19:47:52', 'NmLXxVam', '3221404'), + (612, 370, 'maybe', '2020-09-28 23:44:31', '2025-12-17 19:47:52', 'NmLXxVam', '3221405'), + (612, 371, 'not_attending', '2020-10-09 00:53:36', '2025-12-17 19:47:52', 'NmLXxVam', '3221406'), + (612, 372, 'maybe', '2020-09-28 23:45:00', '2025-12-17 19:47:52', 'NmLXxVam', '3221407'), + (612, 373, 'maybe', '2020-09-28 23:45:41', '2025-12-17 19:47:52', 'NmLXxVam', '3221413'), + (612, 374, 'maybe', '2020-09-28 23:44:45', '2025-12-17 19:47:53', 'NmLXxVam', '3221415'), + (612, 375, 'attending', '2020-09-28 23:45:23', '2025-12-17 19:47:52', 'NmLXxVam', '3222825'), + (612, 376, 'maybe', '2020-10-09 00:53:29', '2025-12-17 19:47:52', 'NmLXxVam', '3222827'), + (612, 377, 'maybe', '2020-09-28 23:44:51', '2025-12-17 19:47:53', 'NmLXxVam', '3222828'), + (612, 379, 'attending', '2020-09-28 23:44:13', '2025-12-17 19:47:52', 'NmLXxVam', '3226266'), + (612, 382, 'maybe', '2020-09-28 23:44:24', '2025-12-17 19:47:52', 'NmLXxVam', '3226873'), + (612, 383, 'not_attending', '2020-09-28 23:43:49', '2025-12-17 19:47:52', 'NmLXxVam', '3227946'), + (612, 384, 'attending', '2020-09-29 00:34:47', '2025-12-17 19:47:52', 'NmLXxVam', '3228696'), + (612, 385, 'attending', '2020-09-28 23:43:19', '2025-12-17 19:47:52', 'NmLXxVam', '3228698'), + (612, 386, 'attending', '2020-10-10 21:42:06', '2025-12-17 19:47:52', 'NmLXxVam', '3228699'), + (612, 387, 'attending', '2020-09-28 23:43:27', '2025-12-17 19:47:52', 'NmLXxVam', '3228700'), + (612, 388, 'attending', '2020-09-28 23:43:28', '2025-12-17 19:47:52', 'NmLXxVam', '3228701'), + (612, 390, 'attending', '2020-10-04 23:16:20', '2025-12-17 19:47:52', 'NmLXxVam', '3231510'), + (612, 391, 'not_attending', '2020-10-09 00:53:31', '2025-12-17 19:47:52', 'NmLXxVam', '3236446'), + (612, 392, 'not_attending', '2020-10-09 00:54:04', '2025-12-17 19:47:53', 'NmLXxVam', '3236447'), + (612, 393, 'not_attending', '2021-06-13 19:58:41', '2025-12-17 19:47:38', 'NmLXxVam', '3236448'), + (612, 394, 'not_attending', '2021-01-02 13:44:49', '2025-12-17 19:47:48', 'NmLXxVam', '3236449'), + (612, 396, 'not_attending', '2021-04-22 21:15:27', '2025-12-17 19:47:46', 'NmLXxVam', '3236451'), + (612, 397, 'not_attending', '2021-05-13 00:13:00', '2025-12-17 19:47:47', 'NmLXxVam', '3236452'), + (612, 398, 'not_attending', '2021-01-02 13:45:08', '2025-12-17 19:47:49', 'NmLXxVam', '3236453'), + (612, 399, 'not_attending', '2020-11-02 01:11:39', '2025-12-17 19:47:54', 'NmLXxVam', '3236454'), + (612, 400, 'not_attending', '2021-01-02 13:45:23', '2025-12-17 19:47:50', 'NmLXxVam', '3236455'), + (612, 401, 'not_attending', '2021-05-13 00:11:51', '2025-12-17 19:47:46', 'NmLXxVam', '3236456'), + (612, 402, 'not_attending', '2021-06-13 19:58:16', '2025-12-17 19:47:39', 'NmLXxVam', '3236457'), + (612, 403, 'not_attending', '2021-03-01 04:08:08', '2025-12-17 19:47:51', 'NmLXxVam', '3236458'), + (612, 404, 'not_attending', '2021-03-01 13:42:29', '2025-12-17 19:47:51', 'NmLXxVam', '3236460'), + (612, 405, 'not_attending', '2021-07-20 15:03:58', '2025-12-17 19:47:40', 'NmLXxVam', '3236462'), + (612, 406, 'not_attending', '2021-03-15 11:29:29', '2025-12-17 19:47:44', 'NmLXxVam', '3236464'), + (612, 407, 'not_attending', '2021-04-09 00:10:38', '2025-12-17 19:47:44', 'NmLXxVam', '3236465'), + (612, 408, 'not_attending', '2021-02-03 00:04:44', '2025-12-17 19:47:50', 'NmLXxVam', '3236466'), + (612, 409, 'not_attending', '2020-11-22 04:41:06', '2025-12-17 19:47:54', 'NmLXxVam', '3236467'), + (612, 410, 'not_attending', '2020-11-02 01:11:26', '2025-12-17 19:47:54', 'NmLXxVam', '3236469'), + (612, 411, 'maybe', '2020-10-09 00:53:13', '2025-12-17 19:47:52', 'NmLXxVam', '3236596'), + (612, 413, 'maybe', '2020-10-09 00:53:48', '2025-12-17 19:47:52', 'NmLXxVam', '3236670'), + (612, 414, 'maybe', '2020-10-09 00:53:40', '2025-12-17 19:47:52', 'NmLXxVam', '3237277'), + (612, 415, 'maybe', '2020-10-09 00:53:18', '2025-12-17 19:47:52', 'NmLXxVam', '3238044'), + (612, 416, 'maybe', '2020-10-09 00:53:02', '2025-12-17 19:47:52', 'NmLXxVam', '3238073'), + (612, 417, 'maybe', '2020-10-09 00:53:22', '2025-12-17 19:47:52', 'NmLXxVam', '3238779'), + (612, 418, 'maybe', '2020-10-14 10:30:01', '2025-12-17 19:47:52', 'NmLXxVam', '3241728'), + (612, 419, 'maybe', '2020-10-13 22:54:08', '2025-12-17 19:47:52', 'NmLXxVam', '3242234'), + (612, 420, 'not_attending', '2020-10-14 10:29:50', '2025-12-17 19:47:52', 'NmLXxVam', '3245293'), + (612, 422, 'not_attending', '2020-10-25 16:52:05', '2025-12-17 19:47:53', 'NmLXxVam', '3245295'), + (612, 423, 'not_attending', '2020-10-25 16:51:51', '2025-12-17 19:47:53', 'NmLXxVam', '3245296'), + (612, 424, 'maybe', '2020-10-12 00:56:35', '2025-12-17 19:47:52', 'NmLXxVam', '3245751'), + (612, 426, 'maybe', '2020-10-14 12:16:11', '2025-12-17 19:47:52', 'NmLXxVam', '3250232'), + (612, 427, 'attending', '2020-10-14 12:36:21', '2025-12-17 19:47:53', 'NmLXxVam', '3250233'), + (612, 428, 'maybe', '2020-10-25 16:52:31', '2025-12-17 19:47:53', 'NmLXxVam', '3250332'), + (612, 429, 'attending', '2020-11-22 04:41:01', '2025-12-17 19:47:54', 'NmLXxVam', '3250523'), + (612, 431, 'not_attending', '2020-10-25 16:52:38', '2025-12-17 19:47:53', 'NmLXxVam', '3253225'), + (612, 432, 'maybe', '2020-10-25 16:51:54', '2025-12-17 19:47:53', 'NmLXxVam', '3254416'), + (612, 433, 'maybe', '2020-10-25 16:51:56', '2025-12-17 19:47:53', 'NmLXxVam', '3254417'), + (612, 434, 'maybe', '2020-11-02 01:11:29', '2025-12-17 19:47:53', 'NmLXxVam', '3254418'), + (612, 437, 'maybe', '2020-10-25 16:52:09', '2025-12-17 19:47:53', 'NmLXxVam', '3256160'), + (612, 438, 'not_attending', '2020-10-25 16:51:39', '2025-12-17 19:47:53', 'NmLXxVam', '3256163'), + (612, 439, 'not_attending', '2020-10-25 16:52:23', '2025-12-17 19:47:53', 'NmLXxVam', '3256164'), + (612, 440, 'attending', '2020-10-18 16:46:19', '2025-12-17 19:47:53', 'NmLXxVam', '3256168'), + (612, 441, 'attending', '2020-11-02 01:10:49', '2025-12-17 19:47:54', 'NmLXxVam', '3256169'), + (612, 442, 'attending', '2020-10-22 23:38:54', '2025-12-17 19:47:52', 'NmLXxVam', '3260345'), + (612, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLXxVam', '3263578'), + (612, 444, 'maybe', '2020-10-25 16:52:01', '2025-12-17 19:47:53', 'NmLXxVam', '3263745'), + (612, 445, 'maybe', '2020-11-02 01:11:35', '2025-12-17 19:47:54', 'NmLXxVam', '3266138'), + (612, 446, 'maybe', '2020-10-27 22:58:35', '2025-12-17 19:47:53', 'NmLXxVam', '3267163'), + (612, 448, 'attending', '2020-10-31 00:32:57', '2025-12-17 19:47:53', 'NmLXxVam', '3271831'), + (612, 449, 'maybe', '2020-11-02 01:11:32', '2025-12-17 19:47:53', 'NmLXxVam', '3272055'), + (612, 451, 'maybe', '2020-11-02 01:11:58', '2025-12-17 19:47:53', 'NmLXxVam', '3272186'), + (612, 452, 'maybe', '2020-11-22 04:41:17', '2025-12-17 19:47:54', 'NmLXxVam', '3272981'), + (612, 455, 'attending', '2020-11-06 01:06:44', '2025-12-17 19:47:53', 'NmLXxVam', '3276391'), + (612, 456, 'maybe', '2020-11-05 12:06:32', '2025-12-17 19:47:54', 'NmLXxVam', '3276428'), + (612, 457, 'maybe', '2020-11-06 01:06:48', '2025-12-17 19:47:53', 'NmLXxVam', '3279087'), + (612, 459, 'not_attending', '2020-11-08 12:27:04', '2025-12-17 19:47:54', 'NmLXxVam', '3281467'), + (612, 462, 'maybe', '2020-11-11 22:50:48', '2025-12-17 19:47:54', 'NmLXxVam', '3281470'), + (612, 464, 'maybe', '2020-11-21 02:06:52', '2025-12-17 19:47:54', 'NmLXxVam', '3281554'), + (612, 465, 'maybe', '2020-11-22 16:52:15', '2025-12-17 19:47:54', 'NmLXxVam', '3281555'), + (612, 466, 'attending', '2020-11-08 12:31:47', '2025-12-17 19:47:54', 'NmLXxVam', '3281829'), + (612, 468, 'attending', '2020-11-11 00:54:12', '2025-12-17 19:47:54', 'NmLXxVam', '3285413'), + (612, 469, 'attending', '2020-11-11 00:54:10', '2025-12-17 19:47:54', 'NmLXxVam', '3285414'), + (612, 470, 'not_attending', '2020-11-15 12:41:58', '2025-12-17 19:47:54', 'NmLXxVam', '3285443'), + (612, 475, 'maybe', '2020-11-22 16:52:05', '2025-12-17 19:47:54', 'NmLXxVam', '3286760'), + (612, 477, 'maybe', '2020-11-22 04:41:10', '2025-12-17 19:47:54', 'NmLXxVam', '3289559'), + (612, 480, 'not_attending', '2020-11-21 02:07:02', '2025-12-17 19:47:54', 'NmLXxVam', '3295313'), + (612, 481, 'maybe', '2020-11-21 02:06:41', '2025-12-17 19:47:54', 'NmLXxVam', '3297764'), + (612, 482, 'maybe', '2020-11-22 16:52:00', '2025-12-17 19:47:54', 'NmLXxVam', '3297769'), + (612, 483, 'not_attending', '2020-11-21 02:06:47', '2025-12-17 19:47:54', 'NmLXxVam', '3297791'), + (612, 484, 'not_attending', '2020-11-21 02:06:56', '2025-12-17 19:47:54', 'NmLXxVam', '3297792'), + (612, 486, 'maybe', '2020-11-23 15:34:18', '2025-12-17 19:47:54', 'NmLXxVam', '3300281'), + (612, 491, 'maybe', '2020-12-11 00:03:08', '2025-12-17 19:47:55', 'NmLXxVam', '3313533'), + (612, 493, 'not_attending', '2020-11-29 04:12:28', '2025-12-17 19:47:54', 'NmLXxVam', '3313856'), + (612, 495, 'attending', '2020-12-08 01:09:35', '2025-12-17 19:47:54', 'NmLXxVam', '3314009'), + (612, 496, 'maybe', '2020-12-11 00:03:12', '2025-12-17 19:47:54', 'NmLXxVam', '3314269'), + (612, 497, 'not_attending', '2020-12-15 02:37:14', '2025-12-17 19:47:55', 'NmLXxVam', '3314270'), + (612, 499, 'maybe', '2020-12-01 00:54:09', '2025-12-17 19:47:55', 'NmLXxVam', '3314909'), + (612, 500, 'maybe', '2020-12-14 04:18:35', '2025-12-17 19:47:55', 'NmLXxVam', '3314964'), + (612, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'NmLXxVam', '3323365'), + (612, 503, 'maybe', '2020-12-15 02:37:05', '2025-12-17 19:47:55', 'NmLXxVam', '3323366'), + (612, 504, 'maybe', '2020-12-15 02:37:11', '2025-12-17 19:47:55', 'NmLXxVam', '3323368'), + (612, 508, 'maybe', '2021-01-13 00:53:50', '2025-12-17 19:47:48', 'NmLXxVam', '3324231'), + (612, 509, 'maybe', '2021-01-02 13:45:16', '2025-12-17 19:47:49', 'NmLXxVam', '3324232'), + (612, 510, 'maybe', '2021-01-02 13:45:11', '2025-12-17 19:47:49', 'NmLXxVam', '3324233'), + (612, 511, 'maybe', '2020-12-15 02:37:16', '2025-12-17 19:47:55', 'NmLXxVam', '3325335'), + (612, 512, 'not_attending', '2020-12-15 02:37:01', '2025-12-17 19:47:55', 'NmLXxVam', '3325336'), + (612, 513, 'maybe', '2020-12-19 23:58:48', '2025-12-17 19:47:55', 'NmLXxVam', '3329383'), + (612, 516, 'attending', '2020-12-15 02:37:21', '2025-12-17 19:47:48', 'NmLXxVam', '3334530'), + (612, 517, 'maybe', '2021-01-02 13:44:46', '2025-12-17 19:47:48', 'NmLXxVam', '3337137'), + (612, 518, 'maybe', '2021-01-02 13:44:52', '2025-12-17 19:47:48', 'NmLXxVam', '3337138'), + (612, 526, 'attending', '2021-01-03 00:20:45', '2025-12-17 19:47:48', 'NmLXxVam', '3351539'), + (612, 528, 'maybe', '2021-01-02 13:45:00', '2025-12-17 19:47:48', 'NmLXxVam', '3363022'), + (612, 529, 'maybe', '2021-01-02 13:44:33', '2025-12-17 19:47:48', 'NmLXxVam', '3364568'), + (612, 530, 'not_attending', '2021-01-02 13:44:57', '2025-12-17 19:47:48', 'NmLXxVam', '3373923'), + (612, 531, 'not_attending', '2021-01-02 13:45:31', '2025-12-17 19:47:48', 'NmLXxVam', '3378210'), + (612, 532, 'maybe', '2021-01-09 00:54:21', '2025-12-17 19:47:48', 'NmLXxVam', '3381412'), + (612, 534, 'not_attending', '2021-01-09 00:54:37', '2025-12-17 19:47:48', 'NmLXxVam', '3384157'), + (612, 535, 'not_attending', '2021-01-09 00:54:40', '2025-12-17 19:47:48', 'NmLXxVam', '3384729'), + (612, 536, 'maybe', '2021-01-30 11:54:33', '2025-12-17 19:47:48', 'NmLXxVam', '3386848'), + (612, 537, 'maybe', '2021-01-09 00:54:34', '2025-12-17 19:47:48', 'NmLXxVam', '3387153'), + (612, 538, 'maybe', '2021-01-13 00:53:57', '2025-12-17 19:47:48', 'NmLXxVam', '3388151'), + (612, 539, 'maybe', '2021-01-13 00:54:00', '2025-12-17 19:47:48', 'NmLXxVam', '3389158'), + (612, 540, 'attending', '2021-01-07 01:23:13', '2025-12-17 19:47:48', 'NmLXxVam', '3389527'), + (612, 541, 'not_attending', '2021-01-09 00:54:25', '2025-12-17 19:47:48', 'NmLXxVam', '3391683'), + (612, 543, 'attending', '2021-01-12 02:00:13', '2025-12-17 19:47:48', 'NmLXxVam', '3396499'), + (612, 544, 'maybe', '2021-01-13 00:53:47', '2025-12-17 19:47:48', 'NmLXxVam', '3396500'), + (612, 545, 'maybe', '2021-01-19 16:02:51', '2025-12-17 19:47:49', 'NmLXxVam', '3396502'), + (612, 546, 'not_attending', '2021-01-20 02:16:12', '2025-12-17 19:47:49', 'NmLXxVam', '3396503'), + (612, 547, 'maybe', '2021-01-19 16:03:10', '2025-12-17 19:47:49', 'NmLXxVam', '3396504'), + (612, 548, 'attending', '2021-01-13 13:35:42', '2025-12-17 19:47:48', 'NmLXxVam', '3403650'), + (612, 549, 'maybe', '2021-01-16 19:18:49', '2025-12-17 19:47:49', 'NmLXxVam', '3406988'), + (612, 551, 'not_attending', '2021-01-20 01:13:21', '2025-12-17 19:47:49', 'NmLXxVam', '3407219'), + (612, 554, 'not_attending', '2021-01-20 02:16:19', '2025-12-17 19:47:49', 'NmLXxVam', '3408338'), + (612, 555, 'attending', '2021-01-19 04:12:41', '2025-12-17 19:47:49', 'NmLXxVam', '3416576'), + (612, 556, 'maybe', '2021-01-19 16:03:16', '2025-12-17 19:47:49', 'NmLXxVam', '3417170'), + (612, 557, 'attending', '2021-01-19 16:02:55', '2025-12-17 19:47:49', 'NmLXxVam', '3418748'), + (612, 558, 'not_attending', '2021-01-19 16:03:07', '2025-12-17 19:47:49', 'NmLXxVam', '3418925'), + (612, 559, 'maybe', '2021-01-28 02:40:19', '2025-12-17 19:47:49', 'NmLXxVam', '3421439'), + (612, 560, 'attending', '2021-01-20 02:16:09', '2025-12-17 19:47:49', 'NmLXxVam', '3421715'), + (612, 561, 'not_attending', '2021-01-23 20:09:21', '2025-12-17 19:47:49', 'NmLXxVam', '3421916'), + (612, 562, 'not_attending', '2021-01-23 20:09:23', '2025-12-17 19:47:49', 'NmLXxVam', '3424911'), + (612, 563, 'not_attending', '2021-01-26 00:04:45', '2025-12-17 19:47:49', 'NmLXxVam', '3425913'), + (612, 565, 'maybe', '2021-01-28 02:40:09', '2025-12-17 19:47:49', 'NmLXxVam', '3426083'), + (612, 566, 'maybe', '2021-01-28 02:40:04', '2025-12-17 19:47:49', 'NmLXxVam', '3427928'), + (612, 567, 'not_attending', '2021-01-28 02:40:01', '2025-12-17 19:47:50', 'NmLXxVam', '3428895'), + (612, 568, 'attending', '2021-01-28 02:39:53', '2025-12-17 19:47:50', 'NmLXxVam', '3430267'), + (612, 569, 'not_attending', '2021-01-28 02:40:11', '2025-12-17 19:47:49', 'NmLXxVam', '3432673'), + (612, 570, 'maybe', '2021-01-28 02:40:32', '2025-12-17 19:47:50', 'NmLXxVam', '3435538'), + (612, 571, 'maybe', '2021-02-03 00:03:31', '2025-12-17 19:47:50', 'NmLXxVam', '3435539'), + (612, 572, 'maybe', '2021-01-28 02:40:28', '2025-12-17 19:47:50', 'NmLXxVam', '3435540'), + (612, 573, 'maybe', '2021-02-03 00:04:52', '2025-12-17 19:47:50', 'NmLXxVam', '3435542'), + (612, 575, 'not_attending', '2021-01-28 02:39:59', '2025-12-17 19:47:50', 'NmLXxVam', '3437492'), + (612, 576, 'not_attending', '2021-01-28 02:40:23', '2025-12-17 19:47:50', 'NmLXxVam', '3438748'), + (612, 578, 'maybe', '2021-02-03 00:03:01', '2025-12-17 19:47:50', 'NmLXxVam', '3440043'), + (612, 579, 'not_attending', '2021-02-03 00:03:13', '2025-12-17 19:47:50', 'NmLXxVam', '3440978'), + (612, 583, 'attending', '2021-02-03 00:03:53', '2025-12-17 19:47:50', 'NmLXxVam', '3449144'), + (612, 584, 'maybe', '2021-02-03 00:03:06', '2025-12-17 19:47:50', 'NmLXxVam', '3449466'), + (612, 585, 'maybe', '2021-02-03 00:03:45', '2025-12-17 19:47:50', 'NmLXxVam', '3449468'), + (612, 586, 'not_attending', '2021-02-03 00:03:39', '2025-12-17 19:47:50', 'NmLXxVam', '3449469'), + (612, 587, 'maybe', '2021-02-03 00:04:00', '2025-12-17 19:47:50', 'NmLXxVam', '3449470'), + (612, 588, 'maybe', '2021-02-03 00:04:41', '2025-12-17 19:47:50', 'NmLXxVam', '3449471'), + (612, 589, 'maybe', '2021-02-03 00:04:48', '2025-12-17 19:47:50', 'NmLXxVam', '3449473'), + (612, 590, 'not_attending', '2021-02-11 23:46:07', '2025-12-17 19:47:50', 'NmLXxVam', '3459150'), + (612, 594, 'maybe', '2021-03-01 04:07:52', '2025-12-17 19:47:51', 'NmLXxVam', '3467759'), + (612, 595, 'maybe', '2021-03-01 04:08:26', '2025-12-17 19:47:51', 'NmLXxVam', '3467761'), + (612, 596, 'maybe', '2021-03-01 04:08:17', '2025-12-17 19:47:51', 'NmLXxVam', '3467762'), + (612, 597, 'not_attending', '2021-03-12 14:41:40', '2025-12-17 19:47:51', 'NmLXxVam', '3467764'), + (612, 602, 'attending', '2021-02-10 00:50:51', '2025-12-17 19:47:50', 'NmLXxVam', '3470303'), + (612, 603, 'attending', '2021-02-13 02:11:36', '2025-12-17 19:47:50', 'NmLXxVam', '3470304'), + (612, 604, 'attending', '2021-02-13 02:11:40', '2025-12-17 19:47:50', 'NmLXxVam', '3470305'), + (612, 605, 'maybe', '2021-02-14 22:41:36', '2025-12-17 19:47:50', 'NmLXxVam', '3470991'), + (612, 614, 'maybe', '2021-03-01 04:08:10', '2025-12-17 19:47:51', 'NmLXxVam', '3490042'), + (612, 621, 'attending', '2021-03-01 04:08:00', '2025-12-17 19:47:51', 'NmLXxVam', '3517815'), + (612, 622, 'attending', '2021-03-01 04:08:01', '2025-12-17 19:47:51', 'NmLXxVam', '3517816'), + (612, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'NmLXxVam', '3523941'), + (612, 625, 'not_attending', '2021-03-01 04:08:12', '2025-12-17 19:47:51', 'NmLXxVam', '3533296'), + (612, 626, 'not_attending', '2021-03-01 04:08:15', '2025-12-17 19:47:51', 'NmLXxVam', '3533298'), + (612, 627, 'not_attending', '2021-03-01 04:08:24', '2025-12-17 19:47:51', 'NmLXxVam', '3533303'), + (612, 628, 'maybe', '2021-03-01 13:42:35', '2025-12-17 19:47:51', 'NmLXxVam', '3533305'), + (612, 629, 'maybe', '2021-03-01 13:42:33', '2025-12-17 19:47:51', 'NmLXxVam', '3533307'), + (612, 630, 'maybe', '2021-03-01 04:07:47', '2025-12-17 19:47:51', 'NmLXxVam', '3533425'), + (612, 631, 'maybe', '2021-03-01 04:07:30', '2025-12-17 19:47:51', 'NmLXxVam', '3533850'), + (612, 632, 'not_attending', '2021-03-01 04:08:28', '2025-12-17 19:47:51', 'NmLXxVam', '3533853'), + (612, 633, 'maybe', '2021-03-01 13:42:25', '2025-12-17 19:47:44', 'NmLXxVam', '3534717'), + (612, 634, 'maybe', '2021-03-01 13:42:15', '2025-12-17 19:47:44', 'NmLXxVam', '3534718'), + (612, 635, 'maybe', '2021-03-03 12:45:54', '2025-12-17 19:47:44', 'NmLXxVam', '3534719'), + (612, 636, 'maybe', '2021-03-03 12:45:57', '2025-12-17 19:47:45', 'NmLXxVam', '3534720'), + (612, 637, 'attending', '2021-03-01 23:26:44', '2025-12-17 19:47:51', 'NmLXxVam', '3536411'), + (612, 638, 'maybe', '2021-03-02 01:40:51', '2025-12-17 19:47:44', 'NmLXxVam', '3536632'), + (612, 639, 'maybe', '2021-03-02 01:40:43', '2025-12-17 19:47:51', 'NmLXxVam', '3536656'), + (612, 641, 'attending', '2021-03-03 12:45:25', '2025-12-17 19:47:44', 'NmLXxVam', '3539916'), + (612, 642, 'attending', '2021-03-03 12:45:27', '2025-12-17 19:47:44', 'NmLXxVam', '3539917'), + (612, 643, 'attending', '2021-03-03 12:45:21', '2025-12-17 19:47:45', 'NmLXxVam', '3539918'), + (612, 644, 'attending', '2021-03-03 12:45:30', '2025-12-17 19:47:45', 'NmLXxVam', '3539919'), + (612, 645, 'attending', '2021-03-03 12:48:07', '2025-12-17 19:47:46', 'NmLXxVam', '3539920'), + (612, 646, 'attending', '2021-03-03 12:48:16', '2025-12-17 19:47:46', 'NmLXxVam', '3539921'), + (612, 647, 'attending', '2021-03-03 12:48:25', '2025-12-17 19:47:46', 'NmLXxVam', '3539922'), + (612, 648, 'attending', '2021-03-03 12:48:31', '2025-12-17 19:47:47', 'NmLXxVam', '3539923'), + (612, 649, 'not_attending', '2021-03-12 13:08:38', '2025-12-17 19:47:51', 'NmLXxVam', '3539927'), + (612, 650, 'maybe', '2021-03-15 11:29:24', '2025-12-17 19:47:44', 'NmLXxVam', '3539928'), + (612, 651, 'maybe', '2021-03-08 23:39:38', '2025-12-17 19:47:51', 'NmLXxVam', '3541045'), + (612, 652, 'attending', '2021-03-07 18:39:06', '2025-12-17 19:47:51', 'NmLXxVam', '3544466'), + (612, 653, 'not_attending', '2021-03-12 13:08:45', '2025-12-17 19:47:51', 'NmLXxVam', '3546917'), + (612, 654, 'not_attending', '2021-03-12 13:09:01', '2025-12-17 19:47:51', 'NmLXxVam', '3546990'), + (612, 655, 'not_attending', '2021-03-12 13:08:42', '2025-12-17 19:47:51', 'NmLXxVam', '3547129'), + (612, 656, 'not_attending', '2021-03-12 13:08:35', '2025-12-17 19:47:51', 'NmLXxVam', '3547130'), + (612, 657, 'not_attending', '2021-04-09 00:10:45', '2025-12-17 19:47:45', 'NmLXxVam', '3547132'), + (612, 659, 'not_attending', '2021-03-15 11:29:46', '2025-12-17 19:47:44', 'NmLXxVam', '3547135'), + (612, 660, 'not_attending', '2021-06-13 19:57:59', '2025-12-17 19:47:39', 'NmLXxVam', '3547136'), + (612, 661, 'not_attending', '2021-03-15 11:29:49', '2025-12-17 19:47:44', 'NmLXxVam', '3547137'), + (612, 662, 'not_attending', '2021-04-22 21:14:52', '2025-12-17 19:47:45', 'NmLXxVam', '3547138'), + (612, 663, 'not_attending', '2021-05-03 18:29:05', '2025-12-17 19:47:46', 'NmLXxVam', '3547140'), + (612, 664, 'not_attending', '2021-08-27 20:48:52', '2025-12-17 19:47:43', 'NmLXxVam', '3547142'), + (612, 665, 'not_attending', '2021-08-27 20:48:48', '2025-12-17 19:47:43', 'NmLXxVam', '3547143'), + (612, 667, 'not_attending', '2021-08-24 08:45:20', '2025-12-17 19:47:42', 'NmLXxVam', '3547145'), + (612, 668, 'not_attending', '2021-05-13 00:11:56', '2025-12-17 19:47:46', 'NmLXxVam', '3547146'), + (612, 669, 'not_attending', '2021-06-13 19:58:47', '2025-12-17 19:47:38', 'NmLXxVam', '3547147'), + (612, 670, 'not_attending', '2021-06-13 19:57:52', '2025-12-17 19:47:48', 'NmLXxVam', '3547148'), + (612, 672, 'not_attending', '2021-05-13 00:12:38', '2025-12-17 19:47:46', 'NmLXxVam', '3547150'), + (612, 673, 'not_attending', '2021-06-13 19:58:01', '2025-12-17 19:47:38', 'NmLXxVam', '3547151'), + (612, 674, 'not_attending', '2021-07-30 11:17:12', '2025-12-17 19:47:41', 'NmLXxVam', '3547152'), + (612, 675, 'not_attending', '2021-07-20 15:04:20', '2025-12-17 19:47:40', 'NmLXxVam', '3547153'), + (612, 676, 'not_attending', '2021-07-20 15:04:05', '2025-12-17 19:47:40', 'NmLXxVam', '3547154'), + (612, 678, 'not_attending', '2021-03-12 13:08:53', '2025-12-17 19:47:51', 'NmLXxVam', '3547158'), + (612, 679, 'attending', '2021-03-14 21:04:31', '2025-12-17 19:47:44', 'NmLXxVam', '3547168'), + (612, 680, 'maybe', '2021-03-08 23:39:44', '2025-12-17 19:47:51', 'NmLXxVam', '3547700'), + (612, 682, 'not_attending', '2021-03-15 11:28:55', '2025-12-17 19:47:51', 'NmLXxVam', '3548806'), + (612, 683, 'attending', '2021-03-12 14:41:36', '2025-12-17 19:47:51', 'NmLXxVam', '3548818'), + (612, 684, 'not_attending', '2021-03-12 14:41:38', '2025-12-17 19:47:51', 'NmLXxVam', '3549257'), + (612, 685, 'not_attending', '2021-04-09 00:10:18', '2025-12-17 19:47:44', 'NmLXxVam', '3551564'), + (612, 686, 'not_attending', '2021-03-12 13:08:25', '2025-12-17 19:47:51', 'NmLXxVam', '3553333'), + (612, 687, 'not_attending', '2021-03-12 13:08:54', '2025-12-17 19:47:51', 'NmLXxVam', '3553405'), + (612, 688, 'not_attending', '2021-03-12 13:08:26', '2025-12-17 19:47:51', 'NmLXxVam', '3553729'), + (612, 689, 'not_attending', '2021-03-15 11:29:20', '2025-12-17 19:47:44', 'NmLXxVam', '3555564'), + (612, 690, 'maybe', '2021-03-15 11:29:12', '2025-12-17 19:47:43', 'NmLXxVam', '3559954'), + (612, 695, 'maybe', '2021-03-18 11:35:56', '2025-12-17 19:47:51', 'NmLXxVam', '3567535'), + (612, 696, 'maybe', '2021-03-18 11:35:54', '2025-12-17 19:47:51', 'NmLXxVam', '3567536'), + (612, 697, 'maybe', '2021-03-19 11:08:43', '2025-12-17 19:47:44', 'NmLXxVam', '3567537'), + (612, 699, 'maybe', '2021-03-25 13:30:42', '2025-12-17 19:47:44', 'NmLXxVam', '3572241'), + (612, 700, 'not_attending', '2021-03-19 11:08:50', '2025-12-17 19:47:44', 'NmLXxVam', '3575725'), + (612, 702, 'maybe', '2021-03-18 11:35:51', '2025-12-17 19:47:51', 'NmLXxVam', '3577181'), + (612, 703, 'maybe', '2021-04-09 00:10:09', '2025-12-17 19:47:44', 'NmLXxVam', '3578388'), + (612, 704, 'maybe', '2021-03-19 11:08:47', '2025-12-17 19:47:44', 'NmLXxVam', '3581429'), + (612, 705, 'attending', '2021-03-19 11:08:34', '2025-12-17 19:47:44', 'NmLXxVam', '3581895'), + (612, 706, 'maybe', '2021-04-09 00:10:53', '2025-12-17 19:47:45', 'NmLXxVam', '3582734'), + (612, 707, 'maybe', '2021-04-09 00:09:52', '2025-12-17 19:47:46', 'NmLXxVam', '3583262'), + (612, 708, 'not_attending', '2021-03-25 13:30:31', '2025-12-17 19:47:44', 'NmLXxVam', '3587850'), + (612, 712, 'maybe', '2021-03-25 13:30:39', '2025-12-17 19:47:44', 'NmLXxVam', '3604056'), + (612, 715, 'not_attending', '2021-03-25 13:30:36', '2025-12-17 19:47:44', 'NmLXxVam', '3604146'), + (612, 717, 'maybe', '2021-03-25 13:30:25', '2025-12-17 19:47:44', 'NmLXxVam', '3619523'), + (612, 718, 'not_attending', '2021-03-26 11:50:47', '2025-12-17 19:47:44', 'NmLXxVam', '3626844'), + (612, 720, 'not_attending', '2021-03-30 14:32:41', '2025-12-17 19:47:44', 'NmLXxVam', '3643450'), + (612, 724, 'maybe', '2021-04-11 13:27:18', '2025-12-17 19:47:46', 'NmLXxVam', '3661369'), + (612, 725, 'maybe', '2021-05-13 00:13:14', '2025-12-17 19:47:47', 'NmLXxVam', '3661372'), + (612, 727, 'not_attending', '2021-06-13 19:57:30', '2025-12-17 19:47:38', 'NmLXxVam', '3661377'), + (612, 728, 'not_attending', '2021-04-09 00:10:21', '2025-12-17 19:47:44', 'NmLXxVam', '3668073'), + (612, 729, 'not_attending', '2021-04-22 21:15:21', '2025-12-17 19:47:46', 'NmLXxVam', '3668075'), + (612, 730, 'not_attending', '2021-05-03 18:28:52', '2025-12-17 19:47:46', 'NmLXxVam', '3668076'), + (612, 731, 'not_attending', '2021-04-04 15:10:52', '2025-12-17 19:47:44', 'NmLXxVam', '3674262'), + (612, 732, 'maybe', '2021-04-09 00:11:22', '2025-12-17 19:47:45', 'NmLXxVam', '3674268'), + (612, 735, 'attending', '2021-04-05 00:16:50', '2025-12-17 19:47:46', 'NmLXxVam', '3677402'), + (612, 738, 'not_attending', '2021-04-09 00:11:15', '2025-12-17 19:47:45', 'NmLXxVam', '3680615'), + (612, 739, 'maybe', '2021-05-03 18:29:01', '2025-12-17 19:47:46', 'NmLXxVam', '3680616'), + (612, 740, 'not_attending', '2021-04-22 21:15:33', '2025-12-17 19:47:46', 'NmLXxVam', '3680617'), + (612, 741, 'not_attending', '2021-05-13 00:12:45', '2025-12-17 19:47:46', 'NmLXxVam', '3680618'), + (612, 742, 'not_attending', '2021-06-13 19:57:48', '2025-12-17 19:47:48', 'NmLXxVam', '3680622'), + (612, 743, 'not_attending', '2021-06-13 19:58:38', '2025-12-17 19:47:38', 'NmLXxVam', '3680623'), + (612, 745, 'not_attending', '2021-06-13 19:58:24', '2025-12-17 19:47:38', 'NmLXxVam', '3680625'), + (612, 746, 'not_attending', '2021-06-13 19:58:21', '2025-12-17 19:47:39', 'NmLXxVam', '3680626'), + (612, 747, 'maybe', '2021-04-09 00:11:08', '2025-12-17 19:47:45', 'NmLXxVam', '3684754'), + (612, 749, 'not_attending', '2021-04-09 00:10:30', '2025-12-17 19:47:44', 'NmLXxVam', '3689769'), + (612, 750, 'maybe', '2021-04-09 00:10:35', '2025-12-17 19:47:44', 'NmLXxVam', '3689962'), + (612, 751, 'maybe', '2021-04-09 00:11:02', '2025-12-17 19:47:45', 'NmLXxVam', '3691364'), + (612, 752, 'maybe', '2021-04-14 02:04:26', '2025-12-17 19:47:44', 'NmLXxVam', '3699422'), + (612, 753, 'not_attending', '2021-04-14 02:04:31', '2025-12-17 19:47:45', 'NmLXxVam', '3701861'), + (612, 754, 'not_attending', '2021-04-22 21:14:39', '2025-12-17 19:47:45', 'NmLXxVam', '3701863'), + (612, 755, 'not_attending', '2021-04-22 21:14:47', '2025-12-17 19:47:45', 'NmLXxVam', '3701864'), + (612, 756, 'not_attending', '2021-04-22 21:15:02', '2025-12-17 19:47:46', 'NmLXxVam', '3704795'), + (612, 759, 'not_attending', '2021-04-22 21:14:40', '2025-12-17 19:47:45', 'NmLXxVam', '3713701'), + (612, 760, 'not_attending', '2021-05-14 12:16:01', '2025-12-17 19:47:46', 'NmLXxVam', '3716035'), + (612, 761, 'maybe', '2021-05-13 00:11:59', '2025-12-17 19:47:46', 'NmLXxVam', '3716041'), + (612, 763, 'not_attending', '2021-04-22 21:14:58', '2025-12-17 19:47:46', 'NmLXxVam', '3719122'), + (612, 764, 'not_attending', '2021-04-22 21:14:49', '2025-12-17 19:47:45', 'NmLXxVam', '3720507'), + (612, 765, 'not_attending', '2021-04-22 21:14:36', '2025-12-17 19:47:45', 'NmLXxVam', '3720508'), + (612, 766, 'maybe', '2021-05-13 00:11:33', '2025-12-17 19:47:46', 'NmLXxVam', '3721383'), + (612, 767, 'maybe', '2021-05-02 22:03:18', '2025-12-17 19:47:46', 'NmLXxVam', '3722476'), + (612, 768, 'not_attending', '2021-04-22 21:15:00', '2025-12-17 19:47:46', 'NmLXxVam', '3724124'), + (612, 769, 'not_attending', '2021-04-22 21:15:07', '2025-12-17 19:47:46', 'NmLXxVam', '3724127'), + (612, 770, 'not_attending', '2021-04-22 21:15:26', '2025-12-17 19:47:46', 'NmLXxVam', '3724559'), + (612, 771, 'not_attending', '2021-04-22 21:15:24', '2025-12-17 19:47:46', 'NmLXxVam', '3726420'), + (612, 772, 'not_attending', '2021-04-22 21:15:31', '2025-12-17 19:47:46', 'NmLXxVam', '3726421'), + (612, 773, 'not_attending', '2021-04-22 21:15:18', '2025-12-17 19:47:46', 'NmLXxVam', '3729399'), + (612, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLXxVam', '3730212'), + (612, 775, 'not_attending', '2021-04-22 21:14:34', '2025-12-17 19:47:45', 'NmLXxVam', '3731062'), + (612, 776, 'not_attending', '2021-04-22 21:15:04', '2025-12-17 19:47:46', 'NmLXxVam', '3733455'), + (612, 777, 'maybe', '2021-04-30 19:15:28', '2025-12-17 19:47:46', 'NmLXxVam', '3746248'), + (612, 779, 'not_attending', '2021-05-03 18:28:40', '2025-12-17 19:47:46', 'NmLXxVam', '3757118'), + (612, 781, 'not_attending', '2021-05-03 18:28:54', '2025-12-17 19:47:46', 'NmLXxVam', '3760130'), + (612, 782, 'not_attending', '2021-05-03 18:28:46', '2025-12-17 19:47:46', 'NmLXxVam', '3761843'), + (612, 783, 'maybe', '2021-05-02 15:12:52', '2025-12-17 19:47:46', 'NmLXxVam', '3767471'), + (612, 784, 'maybe', '2021-05-03 18:28:56', '2025-12-17 19:47:46', 'NmLXxVam', '3768775'), + (612, 785, 'maybe', '2021-05-16 01:45:11', '2025-12-17 19:47:46', 'NmLXxVam', '3779779'), + (612, 788, 'maybe', '2021-05-07 17:39:55', '2025-12-17 19:47:46', 'NmLXxVam', '3781975'), + (612, 789, 'maybe', '2021-05-13 00:12:56', '2025-12-17 19:47:47', 'NmLXxVam', '3785818'), + (612, 792, 'attending', '2021-05-07 21:07:46', '2025-12-17 19:47:46', 'NmLXxVam', '3793156'), + (612, 793, 'attending', '2021-05-13 00:12:48', '2025-12-17 19:47:47', 'NmLXxVam', '3793537'), + (612, 794, 'attending', '2021-05-13 00:12:46', '2025-12-17 19:47:47', 'NmLXxVam', '3793538'), + (612, 796, 'maybe', '2021-05-13 00:12:19', '2025-12-17 19:47:46', 'NmLXxVam', '3793862'), + (612, 797, 'maybe', '2021-05-13 00:13:06', '2025-12-17 19:47:47', 'NmLXxVam', '3796195'), + (612, 798, 'not_attending', '2021-05-13 00:12:27', '2025-12-17 19:47:46', 'NmLXxVam', '3796262'), + (612, 801, 'maybe', '2021-05-13 00:11:41', '2025-12-17 19:47:46', 'NmLXxVam', '3800910'), + (612, 802, 'maybe', '2021-05-13 00:11:37', '2025-12-17 19:47:46', 'NmLXxVam', '3803310'), + (612, 803, 'not_attending', '2021-05-13 00:12:30', '2025-12-17 19:47:46', 'NmLXxVam', '3804665'), + (612, 804, 'not_attending', '2021-05-13 00:13:11', '2025-12-17 19:47:47', 'NmLXxVam', '3804775'), + (612, 805, 'not_attending', '2021-06-13 19:57:28', '2025-12-17 19:47:47', 'NmLXxVam', '3804777'), + (612, 806, 'not_attending', '2021-05-13 00:11:53', '2025-12-17 19:47:46', 'NmLXxVam', '3806392'), + (612, 809, 'maybe', '2021-05-21 21:38:06', '2025-12-17 19:47:46', 'NmLXxVam', '3807964'), + (612, 817, 'not_attending', '2021-05-21 21:38:00', '2025-12-17 19:47:46', 'NmLXxVam', '3832498'), + (612, 822, 'attending', '2021-06-06 02:51:13', '2025-12-17 19:47:47', 'NmLXxVam', '3969986'), + (612, 823, 'not_attending', '2021-06-12 10:22:19', '2025-12-17 19:47:48', 'NmLXxVam', '3974109'), + (612, 826, 'maybe', '2021-06-16 14:54:36', '2025-12-17 19:47:48', 'NmLXxVam', '3975310'), + (612, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLXxVam', '3975311'), + (612, 828, 'attending', '2021-06-12 22:30:47', '2025-12-17 19:47:47', 'NmLXxVam', '3975312'), + (612, 837, 'attending', '2021-06-13 19:57:42', '2025-12-17 19:47:48', 'NmLXxVam', '3992545'), + (612, 838, 'maybe', '2021-06-06 17:32:40', '2025-12-17 19:47:47', 'NmLXxVam', '3994992'), + (612, 841, 'not_attending', '2021-06-13 19:57:35', '2025-12-17 19:47:48', 'NmLXxVam', '4007434'), + (612, 844, 'not_attending', '2021-06-13 19:58:34', '2025-12-17 19:47:38', 'NmLXxVam', '4014338'), + (612, 845, 'not_attending', '2021-06-13 19:58:29', '2025-12-17 19:47:38', 'NmLXxVam', '4015717'), + (612, 846, 'not_attending', '2021-06-13 19:58:12', '2025-12-17 19:47:39', 'NmLXxVam', '4015718'), + (612, 848, 'not_attending', '2021-07-20 15:03:53', '2025-12-17 19:47:40', 'NmLXxVam', '4015720'), + (612, 849, 'not_attending', '2021-07-20 15:04:16', '2025-12-17 19:47:40', 'NmLXxVam', '4015721'), + (612, 850, 'maybe', '2021-08-24 08:44:57', '2025-12-17 19:47:42', 'NmLXxVam', '4015722'), + (612, 852, 'not_attending', '2021-08-27 20:48:45', '2025-12-17 19:47:43', 'NmLXxVam', '4015724'), + (612, 854, 'not_attending', '2021-08-27 20:48:59', '2025-12-17 19:47:43', 'NmLXxVam', '4015726'), + (612, 855, 'not_attending', '2021-07-30 11:17:29', '2025-12-17 19:47:41', 'NmLXxVam', '4015729'), + (612, 856, 'not_attending', '2021-08-27 20:49:21', '2025-12-17 19:47:43', 'NmLXxVam', '4015730'), + (612, 859, 'not_attending', '2021-06-16 14:43:50', '2025-12-17 19:47:48', 'NmLXxVam', '4015993'), + (612, 860, 'not_attending', '2021-07-20 15:03:51', '2025-12-17 19:47:40', 'NmLXxVam', '4015994'), + (612, 862, 'not_attending', '2021-09-03 20:26:52', '2025-12-17 19:47:43', 'NmLXxVam', '4015996'), + (612, 866, 'not_attending', '2021-06-13 19:57:57', '2025-12-17 19:47:38', 'NmLXxVam', '4020424'), + (612, 867, 'attending', '2021-06-17 15:44:45', '2025-12-17 19:47:38', 'NmLXxVam', '4021848'), + (612, 868, 'not_attending', '2021-06-13 19:57:49', '2025-12-17 19:47:48', 'NmLXxVam', '4022012'), + (612, 869, 'maybe', '2021-06-17 15:44:58', '2025-12-17 19:47:38', 'NmLXxVam', '4136744'), + (612, 870, 'maybe', '2021-07-03 18:28:11', '2025-12-17 19:47:39', 'NmLXxVam', '4136937'), + (612, 871, 'attending', '2021-07-10 22:24:40', '2025-12-17 19:47:39', 'NmLXxVam', '4136938'), + (612, 872, 'maybe', '2021-06-21 21:55:05', '2025-12-17 19:47:40', 'NmLXxVam', '4136947'), + (612, 873, 'not_attending', '2021-06-17 15:44:22', '2025-12-17 19:47:48', 'NmLXxVam', '4138297'), + (612, 874, 'not_attending', '2021-06-17 15:44:39', '2025-12-17 19:47:38', 'NmLXxVam', '4139815'), + (612, 876, 'not_attending', '2021-06-17 15:44:34', '2025-12-17 19:47:38', 'NmLXxVam', '4139926'), + (612, 877, 'not_attending', '2021-06-16 14:43:47', '2025-12-17 19:47:48', 'NmLXxVam', '4140575'), + (612, 878, 'not_attending', '2021-06-17 15:44:27', '2025-12-17 19:47:38', 'NmLXxVam', '4143331'), + (612, 879, 'not_attending', '2021-06-17 15:44:50', '2025-12-17 19:47:38', 'NmLXxVam', '4147806'), + (612, 884, 'attending', '2021-07-17 10:07:51', '2025-12-17 19:47:42', 'NmLXxVam', '4210314'), + (612, 887, 'maybe', '2021-07-11 18:06:22', '2025-12-17 19:47:39', 'NmLXxVam', '4225444'), + (612, 893, 'not_attending', '2021-07-20 15:04:14', '2025-12-17 19:47:40', 'NmLXxVam', '4229420'), + (612, 894, 'not_attending', '2021-07-20 15:03:47', '2025-12-17 19:47:40', 'NmLXxVam', '4229423'), + (612, 897, 'maybe', '2021-06-27 23:25:57', '2025-12-17 19:47:38', 'NmLXxVam', '4232132'), + (612, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLXxVam', '4239259'), + (612, 900, 'not_attending', '2021-07-10 22:24:49', '2025-12-17 19:47:40', 'NmLXxVam', '4240316'), + (612, 901, 'attending', '2021-07-10 22:24:46', '2025-12-17 19:47:40', 'NmLXxVam', '4240317'), + (612, 902, 'not_attending', '2021-07-30 11:17:14', '2025-12-17 19:47:41', 'NmLXxVam', '4240318'), + (612, 903, 'attending', '2021-08-14 12:19:28', '2025-12-17 19:47:42', 'NmLXxVam', '4240320'), + (612, 905, 'maybe', '2021-07-10 20:09:10', '2025-12-17 19:47:39', 'NmLXxVam', '4250163'), + (612, 914, 'not_attending', '2021-07-20 15:03:42', '2025-12-17 19:47:39', 'NmLXxVam', '4273767'), + (612, 915, 'not_attending', '2021-07-20 15:03:45', '2025-12-17 19:47:39', 'NmLXxVam', '4273770'), + (612, 916, 'not_attending', '2021-07-20 15:03:56', '2025-12-17 19:47:40', 'NmLXxVam', '4273772'), + (612, 919, 'not_attending', '2021-07-14 10:37:12', '2025-12-17 19:47:39', 'NmLXxVam', '4275957'), + (612, 920, 'not_attending', '2021-07-20 15:04:10', '2025-12-17 19:47:40', 'NmLXxVam', '4277819'), + (612, 922, 'not_attending', '2021-07-20 15:04:04', '2025-12-17 19:47:40', 'NmLXxVam', '4280811'), + (612, 923, 'not_attending', '2021-07-20 15:04:02', '2025-12-17 19:47:40', 'NmLXxVam', '4292773'), + (612, 929, 'not_attending', '2021-07-30 11:17:21', '2025-12-17 19:47:41', 'NmLXxVam', '4297223'), + (612, 930, 'not_attending', '2021-07-30 11:17:37', '2025-12-17 19:47:41', 'NmLXxVam', '4300787'), + (612, 932, 'attending', '2021-08-22 18:30:23', '2025-12-17 19:47:42', 'NmLXxVam', '4301664'), + (612, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'NmLXxVam', '4301723'), + (612, 934, 'not_attending', '2021-07-30 11:17:28', '2025-12-17 19:47:40', 'NmLXxVam', '4302093'), + (612, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLXxVam', '4304151'), + (612, 939, 'not_attending', '2021-07-30 11:17:35', '2025-12-17 19:47:40', 'NmLXxVam', '4308354'), + (612, 940, 'maybe', '2021-07-30 11:16:56', '2025-12-17 19:47:40', 'NmLXxVam', '4309049'), + (612, 942, 'not_attending', '2021-07-30 11:17:03', '2025-12-17 19:47:40', 'NmLXxVam', '4310297'), + (612, 943, 'not_attending', '2021-07-30 11:17:09', '2025-12-17 19:47:41', 'NmLXxVam', '4310979'), + (612, 946, 'not_attending', '2021-07-30 11:17:32', '2025-12-17 19:47:40', 'NmLXxVam', '4314835'), + (612, 947, 'not_attending', '2021-07-30 11:17:17', '2025-12-17 19:47:41', 'NmLXxVam', '4315713'), + (612, 951, 'not_attending', '2021-08-24 08:45:29', '2025-12-17 19:47:43', 'NmLXxVam', '4315731'), + (612, 952, 'not_attending', '2021-07-30 11:17:20', '2025-12-17 19:47:41', 'NmLXxVam', '4318286'), + (612, 961, 'not_attending', '2021-08-14 12:19:18', '2025-12-17 19:47:42', 'NmLXxVam', '4345519'), + (612, 971, 'maybe', '2021-08-27 20:49:02', '2025-12-17 19:47:43', 'NmLXxVam', '4356801'), + (612, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'NmLXxVam', '4358025'), + (612, 973, 'not_attending', '2021-08-15 21:36:25', '2025-12-17 19:47:42', 'NmLXxVam', '4366186'), + (612, 974, 'maybe', '2021-08-24 08:45:17', '2025-12-17 19:47:42', 'NmLXxVam', '4366187'), + (612, 981, 'not_attending', '2021-08-27 20:48:24', '2025-12-17 19:47:42', 'NmLXxVam', '4387305'), + (612, 982, 'not_attending', '2021-08-24 08:45:22', '2025-12-17 19:47:42', 'NmLXxVam', '4389739'), + (612, 987, 'maybe', '2021-08-27 20:48:42', '2025-12-17 19:47:43', 'NmLXxVam', '4402634'), + (612, 988, 'not_attending', '2021-08-24 08:45:09', '2025-12-17 19:47:42', 'NmLXxVam', '4402823'), + (612, 989, 'not_attending', '2021-08-27 20:48:55', '2025-12-17 19:47:43', 'NmLXxVam', '4414282'), + (612, 990, 'attending', '2021-09-03 20:26:16', '2025-12-17 19:47:43', 'NmLXxVam', '4420735'), + (612, 991, 'attending', '2021-09-11 22:35:29', '2025-12-17 19:47:43', 'NmLXxVam', '4420738'), + (612, 992, 'attending', '2021-09-11 22:42:09', '2025-12-17 19:47:33', 'NmLXxVam', '4420739'), + (612, 993, 'attending', '2021-09-11 22:42:03', '2025-12-17 19:47:34', 'NmLXxVam', '4420741'), + (612, 994, 'not_attending', '2021-09-11 22:42:21', '2025-12-17 19:47:34', 'NmLXxVam', '4420742'), + (612, 995, 'maybe', '2021-10-09 19:50:08', '2025-12-17 19:47:34', 'NmLXxVam', '4420744'), + (612, 996, 'maybe', '2021-09-11 22:43:12', '2025-12-17 19:47:35', 'NmLXxVam', '4420747'), + (612, 997, 'attending', '2021-09-11 22:42:34', '2025-12-17 19:47:35', 'NmLXxVam', '4420748'), + (612, 998, 'maybe', '2021-10-30 20:48:36', '2025-12-17 19:47:36', 'NmLXxVam', '4420749'), + (612, 1003, 'not_attending', '2021-09-03 20:26:30', '2025-12-17 19:47:43', 'NmLXxVam', '4438802'), + (612, 1004, 'not_attending', '2021-09-03 20:26:48', '2025-12-17 19:47:43', 'NmLXxVam', '4438804'), + (612, 1005, 'not_attending', '2021-09-03 20:27:01', '2025-12-17 19:47:34', 'NmLXxVam', '4438807'), + (612, 1008, 'not_attending', '2021-10-09 19:50:23', '2025-12-17 19:47:35', 'NmLXxVam', '4438810'), + (612, 1009, 'not_attending', '2021-10-09 19:50:35', '2025-12-17 19:47:34', 'NmLXxVam', '4438811'), + (612, 1011, 'not_attending', '2021-10-09 19:50:18', '2025-12-17 19:47:36', 'NmLXxVam', '4438814'), + (612, 1013, 'not_attending', '2021-09-03 20:26:35', '2025-12-17 19:47:43', 'NmLXxVam', '4438817'), + (612, 1014, 'not_attending', '2021-09-03 20:26:32', '2025-12-17 19:47:43', 'NmLXxVam', '4439233'), + (612, 1015, 'not_attending', '2021-09-03 20:26:56', '2025-12-17 19:47:43', 'NmLXxVam', '4440800'), + (612, 1016, 'not_attending', '2021-09-03 20:26:39', '2025-12-17 19:47:43', 'NmLXxVam', '4441271'), + (612, 1017, 'not_attending', '2021-09-03 20:26:28', '2025-12-17 19:47:43', 'NmLXxVam', '4441822'), + (612, 1021, 'not_attending', '2021-09-11 10:22:49', '2025-12-17 19:47:34', 'NmLXxVam', '4451803'), + (612, 1023, 'not_attending', '2021-09-11 10:22:32', '2025-12-17 19:47:43', 'NmLXxVam', '4461883'), + (612, 1027, 'not_attending', '2021-09-24 22:55:27', '2025-12-17 19:47:34', 'NmLXxVam', '4472982'), + (612, 1067, 'not_attending', '2021-09-24 22:55:30', '2025-12-17 19:47:34', 'NmLXxVam', '4508342'), + (612, 1077, 'maybe', '2021-10-09 19:50:30', '2025-12-17 19:47:34', 'NmLXxVam', '4540903'), + (612, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLXxVam', '4568602'), + (612, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLXxVam', '4572153'), + (612, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmLXxVam', '4585962'), + (612, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'NmLXxVam', '4596356'), + (612, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLXxVam', '4598860'), + (612, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLXxVam', '4598861'), + (612, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmLXxVam', '4602797'), + (612, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmLXxVam', '4637896'), + (612, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLXxVam', '4642994'), + (612, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmLXxVam', '4642995'), + (612, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLXxVam', '4642996'), + (612, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLXxVam', '4642997'), + (612, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmLXxVam', '4645687'), + (612, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmLXxVam', '4645698'), + (612, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLXxVam', '4645704'), + (612, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLXxVam', '4645705'), + (612, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLXxVam', '6045684'), + (612, 3307, 'maybe', '2025-12-18 01:12:22', '2025-12-18 01:12:22', NULL, NULL), + (614, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYznaq04', '6045684'), + (615, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm6o67OgA', '4736503'), + (615, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm6o67OgA', '4736504'), + (615, 1212, 'not_attending', '2022-03-02 03:45:16', '2025-12-17 19:47:32', 'm6o67OgA', '4780759'), + (615, 1213, 'not_attending', '2022-03-02 03:46:08', '2025-12-17 19:47:32', 'm6o67OgA', '4780760'), + (615, 1251, 'not_attending', '2022-03-12 02:09:07', '2025-12-17 19:47:33', 'm6o67OgA', '5128466'), + (615, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6o67OgA', '5132533'), + (615, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm6o67OgA', '5186582'), + (615, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6o67OgA', '5186583'), + (615, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6o67OgA', '5186585'), + (615, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6o67OgA', '5190437'), + (615, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'm6o67OgA', '5196763'), + (615, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'm6o67OgA', '5199460'), + (615, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6o67OgA', '5215989'), + (615, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6o67OgA', '6045684'), + (616, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '2d2PNVYA', '3468125'), + (616, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '2d2PNVYA', '3470303'), + (616, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '2d2PNVYA', '3470305'), + (616, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '2d2PNVYA', '3470991'), + (616, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '2d2PNVYA', '3517815'), + (616, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '2d2PNVYA', '3517816'), + (616, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '2d2PNVYA', '3523941'), + (616, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '2d2PNVYA', '3533850'), + (616, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '2d2PNVYA', '3536632'), + (616, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '2d2PNVYA', '3536656'), + (616, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '2d2PNVYA', '3539916'), + (616, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '2d2PNVYA', '3539917'), + (616, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '2d2PNVYA', '3539918'), + (616, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '2d2PNVYA', '3539919'), + (616, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '2d2PNVYA', '3539920'), + (616, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '2d2PNVYA', '3539921'), + (616, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '2d2PNVYA', '3539922'), + (616, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '2d2PNVYA', '3539923'), + (616, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '2d2PNVYA', '3539927'), + (616, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '2d2PNVYA', '3582734'), + (616, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '2d2PNVYA', '3619523'), + (616, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2PNVYA', '6045684'), + (617, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd8DaZ3gd', '5269930'), + (617, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd8DaZ3gd', '5271448'), + (617, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'd8DaZ3gd', '5271449'), + (617, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd8DaZ3gd', '5276469'), + (617, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd8DaZ3gd', '5278159'), + (617, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd8DaZ3gd', '5363695'), + (617, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd8DaZ3gd', '5365960'), + (617, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd8DaZ3gd', '5368973'), + (617, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd8DaZ3gd', '5378247'), + (617, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd8DaZ3gd', '5389605'), + (617, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd8DaZ3gd', '5397265'), + (617, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8DaZ3gd', '6045684'), + (618, 1515, 'maybe', '2022-08-29 05:39:33', '2025-12-17 19:47:21', 'dN7oeeXm', '5441128'), + (618, 1518, 'not_attending', '2022-08-31 16:27:27', '2025-12-17 19:47:24', 'dN7oeeXm', '5441131'), + (618, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dN7oeeXm', '5441132'), + (618, 1558, 'attending', '2022-09-14 22:52:49', '2025-12-17 19:47:10', 'dN7oeeXm', '5458730'), + (618, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dN7oeeXm', '5505059'), + (618, 1614, 'maybe', '2022-08-29 05:39:21', '2025-12-17 19:47:23', 'dN7oeeXm', '5508371'), + (618, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dN7oeeXm', '5509055'), + (618, 1624, 'attending', '2022-08-26 01:17:35', '2025-12-17 19:47:24', 'dN7oeeXm', '5513985'), + (618, 1629, 'maybe', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dN7oeeXm', '5522550'), + (618, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dN7oeeXm', '5534683'), + (618, 1634, 'attending', '2022-08-30 00:56:27', '2025-12-17 19:47:23', 'dN7oeeXm', '5536950'), + (618, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dN7oeeXm', '5537735'), + (618, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dN7oeeXm', '5540859'), + (618, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dN7oeeXm', '5546619'), + (618, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dN7oeeXm', '5555245'), + (618, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dN7oeeXm', '5557747'), + (618, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dN7oeeXm', '5560255'), + (618, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dN7oeeXm', '5562906'), + (618, 1668, 'attending', '2022-09-30 21:06:58', '2025-12-17 19:47:12', 'dN7oeeXm', '5563222'), + (618, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dN7oeeXm', '5600604'), + (618, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dN7oeeXm', '5605544'), + (618, 1699, 'not_attending', '2022-09-26 12:18:55', '2025-12-17 19:47:12', 'dN7oeeXm', '5606737'), + (618, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dN7oeeXm', '5630960'), + (618, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dN7oeeXm', '5630961'), + (618, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dN7oeeXm', '5630962'), + (618, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dN7oeeXm', '5630966'), + (618, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dN7oeeXm', '5630967'), + (618, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dN7oeeXm', '5630968'), + (618, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dN7oeeXm', '5635406'), + (618, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dN7oeeXm', '5638765'), + (618, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dN7oeeXm', '5640097'), + (618, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dN7oeeXm', '5640843'), + (618, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dN7oeeXm', '5641521'), + (618, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dN7oeeXm', '5642818'), + (618, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dN7oeeXm', '5652395'), + (618, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dN7oeeXm', '5670445'), + (618, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dN7oeeXm', '5671637'), + (618, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dN7oeeXm', '5672329'), + (618, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dN7oeeXm', '5674057'), + (618, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dN7oeeXm', '5674060'), + (618, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dN7oeeXm', '5677461'), + (618, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dN7oeeXm', '5698046'), + (618, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dN7oeeXm', '5699760'), + (618, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dN7oeeXm', '5741601'), + (618, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dN7oeeXm', '5763458'), + (618, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dN7oeeXm', '5774172'), + (618, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dN7oeeXm', '5818247'), + (618, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dN7oeeXm', '5819471'), + (618, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dN7oeeXm', '5827739'), + (618, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dN7oeeXm', '5844306'), + (618, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dN7oeeXm', '5850159'), + (618, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dN7oeeXm', '5858999'), + (618, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dN7oeeXm', '5871984'), + (618, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dN7oeeXm', '5876354'), + (618, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dN7oeeXm', '5880939'), + (618, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dN7oeeXm', '5887890'), + (618, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dN7oeeXm', '5888598'), + (618, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dN7oeeXm', '5893260'), + (618, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN7oeeXm', '6045684'), + (619, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Argl5r84', '4356801'), + (619, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'Argl5r84', '4420738'), + (619, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'Argl5r84', '4420739'), + (619, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'Argl5r84', '4420741'), + (619, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'Argl5r84', '4420744'), + (619, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'Argl5r84', '4420747'), + (619, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Argl5r84', '4461883'), + (619, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Argl5r84', '4508342'), + (619, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Argl5r84', '4568602'), + (619, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Argl5r84', '4572153'), + (619, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'Argl5r84', '4585962'), + (619, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Argl5r84', '4596356'), + (619, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Argl5r84', '4598860'), + (619, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Argl5r84', '4598861'), + (619, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Argl5r84', '4602797'), + (619, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Argl5r84', '4637896'), + (619, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Argl5r84', '4642994'), + (619, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Argl5r84', '4642995'), + (619, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Argl5r84', '4642996'), + (619, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Argl5r84', '4642997'), + (619, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Argl5r84', '4645687'), + (619, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Argl5r84', '4645698'), + (619, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Argl5r84', '4645704'), + (619, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Argl5r84', '4645705'), + (619, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Argl5r84', '4668385'), + (619, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Argl5r84', '6045684'), + (620, 1723, 'maybe', '2022-11-05 20:58:16', '2025-12-17 19:47:15', '4voNO8Od', '5630962'), + (620, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4voNO8Od', '5630966'), + (620, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4voNO8Od', '5630967'), + (620, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4voNO8Od', '5630968'), + (620, 1727, 'attending', '2022-12-03 19:21:11', '2025-12-17 19:47:16', '4voNO8Od', '5630969'), + (620, 1744, 'maybe', '2022-11-22 22:48:38', '2025-12-17 19:47:16', '4voNO8Od', '5642818'), + (620, 1761, 'attending', '2022-11-18 21:37:58', '2025-12-17 19:47:16', '4voNO8Od', '5670434'), + (620, 1762, 'maybe', '2022-12-02 02:58:23', '2025-12-17 19:47:16', '4voNO8Od', '5670445'), + (620, 1767, 'attending', '2022-11-09 00:36:18', '2025-12-17 19:47:15', '4voNO8Od', '5674060'), + (620, 1768, 'maybe', '2022-11-17 04:18:49', '2025-12-17 19:47:16', '4voNO8Od', '5674062'), + (620, 1783, 'not_attending', '2022-11-14 21:39:18', '2025-12-17 19:47:16', '4voNO8Od', '5698621'), + (620, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', '4voNO8Od', '5699760'), + (620, 1785, 'attending', '2022-11-14 21:39:01', '2025-12-17 19:47:15', '4voNO8Od', '5702414'), + (620, 1786, 'not_attending', '2022-11-08 23:40:43', '2025-12-17 19:47:15', '4voNO8Od', '5727232'), + (620, 1789, 'attending', '2022-11-09 00:36:11', '2025-12-17 19:47:15', '4voNO8Od', '5727274'), + (620, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4voNO8Od', '5741601'), + (620, 1797, 'maybe', '2022-12-09 22:33:54', '2025-12-17 19:47:17', '4voNO8Od', '5757486'), + (620, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4voNO8Od', '5763458'), + (620, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4voNO8Od', '5774172'), + (620, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4voNO8Od', '5818247'), + (620, 1834, 'attending', '2022-12-10 05:12:44', '2025-12-17 19:47:17', '4voNO8Od', '5819470'), + (620, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4voNO8Od', '5819471'), + (620, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4voNO8Od', '5827739'), + (620, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4voNO8Od', '5844306'), + (620, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4voNO8Od', '5850159'), + (620, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4voNO8Od', '5858999'), + (620, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4voNO8Od', '5871984'), + (620, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4voNO8Od', '5876354'), + (620, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4voNO8Od', '5880939'), + (620, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4voNO8Od', '5880940'), + (620, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4voNO8Od', '5880942'), + (620, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4voNO8Od', '5880943'), + (620, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4voNO8Od', '5887890'), + (620, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4voNO8Od', '5888598'), + (620, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4voNO8Od', '5893260'), + (620, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4voNO8Od', '5899826'), + (620, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4voNO8Od', '5900199'), + (620, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4voNO8Od', '5900200'), + (620, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4voNO8Od', '5900202'), + (620, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4voNO8Od', '5900203'), + (620, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4voNO8Od', '5901108'), + (620, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4voNO8Od', '5901126'), + (620, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4voNO8Od', '5909655'), + (620, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4voNO8Od', '5910522'), + (620, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4voNO8Od', '5910526'), + (620, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4voNO8Od', '5910528'), + (620, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4voNO8Od', '5916219'), + (620, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4voNO8Od', '5936234'), + (620, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4voNO8Od', '5958351'), + (620, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4voNO8Od', '5959751'), + (620, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4voNO8Od', '5959755'), + (620, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4voNO8Od', '5960055'), + (620, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4voNO8Od', '5961684'), + (620, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4voNO8Od', '5962132'), + (620, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '4voNO8Od', '5962133'), + (620, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4voNO8Od', '5962134'), + (620, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4voNO8Od', '5962317'), + (620, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4voNO8Od', '5962318'), + (620, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', '4voNO8Od', '5965933'), + (620, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4voNO8Od', '5967014'), + (620, 1957, 'attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4voNO8Od', '5972815'), + (620, 1960, 'attending', '2023-03-11 04:50:48', '2025-12-17 19:47:09', '4voNO8Od', '5973267'), + (620, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4voNO8Od', '5974016'), + (620, 1962, 'attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '4voNO8Od', '5975052'), + (620, 1963, 'attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '4voNO8Od', '5975054'), + (620, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4voNO8Od', '5981515'), + (620, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4voNO8Od', '5993516'), + (620, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4voNO8Od', '5998939'), + (620, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4voNO8Od', '6028191'), + (620, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4voNO8Od', '6040066'), + (620, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4voNO8Od', '6042717'), + (620, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4voNO8Od', '6044838'), + (620, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4voNO8Od', '6044839'), + (620, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4voNO8Od', '6045684'), + (620, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4voNO8Od', '6050104'), + (620, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4voNO8Od', '6053195'), + (620, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4voNO8Od', '6053198'), + (620, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4voNO8Od', '6056085'), + (620, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4voNO8Od', '6056916'), + (620, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4voNO8Od', '6059290'), + (620, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4voNO8Od', '6060328'), + (620, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4voNO8Od', '6061037'), + (620, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4voNO8Od', '6061039'), + (620, 2020, 'not_attending', '2023-04-14 17:17:55', '2025-12-17 19:46:59', '4voNO8Od', '6065813'), + (620, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4voNO8Od', '6067245'), + (620, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4voNO8Od', '6068094'), + (620, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4voNO8Od', '6068252'), + (620, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4voNO8Od', '6068253'), + (620, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4voNO8Od', '6068254'), + (620, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4voNO8Od', '6068280'), + (620, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4voNO8Od', '6069093'), + (620, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4voNO8Od', '6072528'), + (620, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4voNO8Od', '6075556'), + (620, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4voNO8Od', '6079840'), + (620, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4voNO8Od', '6083398'), + (620, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4voNO8Od', '6093504'), + (620, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4voNO8Od', '6097414'), + (620, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4voNO8Od', '6097442'), + (620, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4voNO8Od', '6097684'), + (620, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4voNO8Od', '6098762'), + (620, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4voNO8Od', '6101361'), + (620, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4voNO8Od', '6101362'), + (620, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4voNO8Od', '6107314'), + (620, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4voNO8Od', '6120034'), + (620, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4voNO8Od', '6136733'), + (620, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4voNO8Od', '6137989'), + (620, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4voNO8Od', '6150864'), + (620, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4voNO8Od', '6155491'), + (620, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4voNO8Od', '6164417'), + (620, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4voNO8Od', '6166388'), + (620, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4voNO8Od', '6176439'), + (620, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4voNO8Od', '6182410'), + (620, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4voNO8Od', '6185812'), + (620, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4voNO8Od', '6187651'), + (620, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4voNO8Od', '6187963'), + (620, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4voNO8Od', '6187964'), + (620, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4voNO8Od', '6187966'), + (620, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4voNO8Od', '6187967'), + (620, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4voNO8Od', '6187969'), + (620, 2140, 'maybe', '2023-07-12 09:30:02', '2025-12-17 19:46:52', '4voNO8Od', '6188074'), + (620, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4voNO8Od', '6334878'), + (620, 2147, 'maybe', '2023-07-12 09:27:31', '2025-12-17 19:46:52', '4voNO8Od', '6335666'), + (620, 2152, 'attending', '2023-07-12 09:30:17', '2025-12-17 19:46:52', '4voNO8Od', '6337021'), + (620, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4voNO8Od', '6337236'), + (620, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4voNO8Od', '6337970'), + (620, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4voNO8Od', '6338308'), + (620, 2157, 'not_attending', '2023-07-12 21:55:11', '2025-12-17 19:46:52', '4voNO8Od', '6338342'), + (620, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4voNO8Od', '6341710'), + (620, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4voNO8Od', '6342044'), + (620, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4voNO8Od', '6342298'), + (620, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4voNO8Od', '6343294'), + (620, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4voNO8Od', '6347034'), + (620, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4voNO8Od', '6347056'), + (620, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4voNO8Od', '6353830'), + (620, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4voNO8Od', '6353831'), + (620, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4voNO8Od', '6357867'), + (620, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4voNO8Od', '6358652'), + (620, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '4voNO8Od', '6358668'), + (620, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '4voNO8Od', '6358669'), + (620, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4voNO8Od', '6361709'), + (620, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4voNO8Od', '6361710'), + (620, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4voNO8Od', '6361711'), + (620, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4voNO8Od', '6361712'), + (620, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4voNO8Od', '6361713'), + (620, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4voNO8Od', '6382573'), + (620, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4voNO8Od', '6388604'), + (620, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4voNO8Od', '6394629'), + (620, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4voNO8Od', '6394631'), + (620, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4voNO8Od', '6440863'), + (620, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4voNO8Od', '6445440'), + (620, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4voNO8Od', '6453951'), + (620, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4voNO8Od', '6461696'), + (620, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4voNO8Od', '6462129'), + (620, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4voNO8Od', '6463218'), + (620, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4voNO8Od', '6472181'), + (620, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4voNO8Od', '6482693'), + (620, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4voNO8Od', '6484200'), + (620, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4voNO8Od', '6484680'), + (620, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4voNO8Od', '6507741'), + (620, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4voNO8Od', '6514659'), + (620, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4voNO8Od', '6514660'), + (620, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4voNO8Od', '6519103'), + (620, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4voNO8Od', '6535681'), + (620, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4voNO8Od', '6584747'), + (620, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4voNO8Od', '6587097'), + (620, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4voNO8Od', '6609022'), + (620, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4voNO8Od', '6632757'), + (620, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4voNO8Od', '6644187'), + (620, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4voNO8Od', '6648951'), + (620, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4voNO8Od', '6648952'), + (620, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4voNO8Od', '6655401'), + (620, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4voNO8Od', '6661585'), + (620, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4voNO8Od', '6661588'), + (620, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4voNO8Od', '6661589'), + (620, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4voNO8Od', '6699906'), + (620, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4voNO8Od', '6701109'), + (620, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '4voNO8Od', '6704561'), + (620, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4voNO8Od', '6705219'), + (620, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '4voNO8Od', '6708410'), + (620, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4voNO8Od', '6710153'), + (620, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4voNO8Od', '6711552'), + (620, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '4voNO8Od', '6711553'), + (621, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd3RkK1e4', '4356801'), + (621, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3RkK1e4', '6045684'), + (622, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', 'AYzbJjw4', '4420739'), + (622, 1005, 'attending', '2021-09-15 23:23:56', '2025-12-17 19:47:34', 'AYzbJjw4', '4438807'), + (622, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYzbJjw4', '6045684'), + (623, 2286, 'maybe', '2023-12-01 21:53:00', '2025-12-17 19:46:48', '409Nn7yd', '6460930'), + (623, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '409Nn7yd', '6472181'), + (623, 2303, 'attending', '2023-10-28 03:11:39', '2025-12-17 19:46:47', '409Nn7yd', '6482691'), + (623, 2304, 'attending', '2023-10-31 23:03:12', '2025-12-17 19:46:47', '409Nn7yd', '6482693'), + (623, 2306, 'attending', '2023-11-14 18:44:10', '2025-12-17 19:46:47', '409Nn7yd', '6484200'), + (623, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '409Nn7yd', '6484680'), + (623, 2310, 'attending', '2023-11-11 18:16:11', '2025-12-17 19:46:47', '409Nn7yd', '6487709'), + (623, 2311, 'attending', '2023-10-30 23:16:20', '2025-12-17 19:46:47', '409Nn7yd', '6487725'), + (623, 2315, 'attending', '2023-10-29 20:24:25', '2025-12-17 19:46:47', '409Nn7yd', '6493666'), + (623, 2316, 'maybe', '2023-10-29 20:33:51', '2025-12-17 19:46:48', '409Nn7yd', '6493668'), + (623, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '409Nn7yd', '6507741'), + (623, 2320, 'attending', '2023-10-31 03:31:29', '2025-12-17 19:46:47', '409Nn7yd', '6508647'), + (623, 2321, 'attending', '2023-10-30 21:42:12', '2025-12-17 19:46:47', '409Nn7yd', '6512075'), + (623, 2322, 'attending', '2023-11-14 18:44:27', '2025-12-17 19:46:48', '409Nn7yd', '6514659'), + (623, 2323, 'attending', '2023-11-19 18:01:53', '2025-12-17 19:46:48', '409Nn7yd', '6514660'), + (623, 2324, 'attending', '2023-12-09 16:34:31', '2025-12-17 19:46:49', '409Nn7yd', '6514662'), + (623, 2325, 'attending', '2023-12-16 22:41:57', '2025-12-17 19:46:36', '409Nn7yd', '6514663'), + (623, 2330, 'attending', '2023-11-12 21:04:12', '2025-12-17 19:46:47', '409Nn7yd', '6517941'), + (623, 2331, 'attending', '2023-11-12 16:28:07', '2025-12-17 19:46:47', '409Nn7yd', '6518640'), + (623, 2332, 'attending', '2023-11-03 20:51:27', '2025-12-17 19:46:47', '409Nn7yd', '6518655'), + (623, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '409Nn7yd', '6519103'), + (623, 2337, 'maybe', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '409Nn7yd', '6535681'), + (623, 2338, 'maybe', '2023-11-21 02:45:09', '2025-12-17 19:46:48', '409Nn7yd', '6538868'), + (623, 2339, 'attending', '2023-11-09 20:15:00', '2025-12-17 19:46:47', '409Nn7yd', '6539128'), + (623, 2340, 'maybe', '2023-11-10 16:27:53', '2025-12-17 19:46:48', '409Nn7yd', '6540279'), + (623, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '409Nn7yd', '6584747'), + (623, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '409Nn7yd', '6587097'), + (623, 2354, 'attending', '2023-11-28 01:30:32', '2025-12-17 19:46:48', '409Nn7yd', '6591742'), + (623, 2358, 'maybe', '2023-11-30 08:57:55', '2025-12-17 19:46:48', '409Nn7yd', '6595321'), + (623, 2360, 'attending', '2023-12-01 21:05:12', '2025-12-17 19:46:49', '409Nn7yd', '6599341'), + (623, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '409Nn7yd', '6609022'), + (623, 2364, 'maybe', '2023-12-08 07:18:30', '2025-12-17 19:46:49', '409Nn7yd', '6613011'), + (623, 2365, 'attending', '2023-12-17 09:09:35', '2025-12-17 19:46:37', '409Nn7yd', '6613093'), + (623, 2372, 'attending', '2023-12-17 09:09:08', '2025-12-17 19:46:36', '409Nn7yd', '6628243'), + (623, 2373, 'attending', '2023-12-28 16:45:39', '2025-12-17 19:46:38', '409Nn7yd', '6632678'), + (623, 2374, 'maybe', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '409Nn7yd', '6632757'), + (623, 2375, 'attending', '2023-12-20 06:06:14', '2025-12-17 19:46:36', '409Nn7yd', '6634548'), + (623, 2378, 'attending', '2023-12-30 16:38:24', '2025-12-17 19:46:37', '409Nn7yd', '6644006'), + (623, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '409Nn7yd', '6644187'), + (623, 2380, 'attending', '2023-12-31 16:31:47', '2025-12-17 19:46:37', '409Nn7yd', '6645105'), + (623, 2381, 'attending', '2024-01-01 06:21:37', '2025-12-17 19:46:37', '409Nn7yd', '6646398'), + (623, 2385, 'attending', '2024-01-07 07:57:43', '2025-12-17 19:46:37', '409Nn7yd', '6648943'), + (623, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '409Nn7yd', '6648951'), + (623, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '409Nn7yd', '6648952'), + (623, 2388, 'maybe', '2024-01-07 00:44:10', '2025-12-17 19:46:37', '409Nn7yd', '6649244'), + (623, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '409Nn7yd', '6655401'), + (623, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '409Nn7yd', '6661585'), + (623, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '409Nn7yd', '6661588'), + (623, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '409Nn7yd', '6661589'), + (623, 2405, 'maybe', '2024-01-18 16:05:07', '2025-12-17 19:46:38', '409Nn7yd', '6667332'), + (623, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '409Nn7yd', '6699906'), + (623, 2408, 'attending', '2024-01-24 04:08:53', '2025-12-17 19:46:40', '409Nn7yd', '6699907'), + (623, 2409, 'attending', '2024-02-04 00:00:48', '2025-12-17 19:46:41', '409Nn7yd', '6699909'), + (623, 2410, 'attending', '2024-02-05 19:50:15', '2025-12-17 19:46:41', '409Nn7yd', '6699911'), + (623, 2411, 'attending', '2024-02-12 17:15:59', '2025-12-17 19:46:41', '409Nn7yd', '6699913'), + (623, 2415, 'maybe', '2024-01-18 19:26:00', '2025-12-17 19:46:40', '409Nn7yd', '6701001'), + (623, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '409Nn7yd', '6701109'), + (623, 2420, 'attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '409Nn7yd', '6704561'), + (623, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '409Nn7yd', '6705219'), + (623, 2426, 'not_attending', '2024-01-24 00:30:45', '2025-12-17 19:46:40', '409Nn7yd', '6705569'), + (623, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '409Nn7yd', '6708410'), + (623, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '409Nn7yd', '6710153'), + (623, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '409Nn7yd', '6711552'), + (623, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '409Nn7yd', '6711553'), + (623, 2431, 'attending', '2024-02-01 16:23:40', '2025-12-17 19:46:41', '409Nn7yd', '6712394'), + (623, 2435, 'maybe', '2024-01-28 16:34:07', '2025-12-17 19:46:41', '409Nn7yd', '6721547'), + (623, 2436, 'maybe', '2024-01-27 21:44:04', '2025-12-17 19:46:40', '409Nn7yd', '6722687'), + (623, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '409Nn7yd', '6722688'), + (623, 2438, 'maybe', '2024-02-05 19:50:30', '2025-12-17 19:46:41', '409Nn7yd', '6730201'), + (623, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '409Nn7yd', '6730620'), + (623, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '409Nn7yd', '6730642'), + (623, 2441, 'not_attending', '2024-02-01 02:16:09', '2025-12-17 19:46:41', '409Nn7yd', '6731263'), + (623, 2442, 'maybe', '2024-02-02 16:07:39', '2025-12-17 19:46:41', '409Nn7yd', '6732647'), + (623, 2444, 'maybe', '2024-02-09 20:51:25', '2025-12-17 19:46:41', '409Nn7yd', '6734367'), + (623, 2446, 'maybe', '2024-03-01 16:32:47', '2025-12-17 19:46:43', '409Nn7yd', '6734369'), + (623, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '409Nn7yd', '6740364'), + (623, 2456, 'maybe', '2024-02-09 20:51:11', '2025-12-17 19:46:41', '409Nn7yd', '6742202'), + (623, 2457, 'maybe', '2024-02-08 18:26:27', '2025-12-17 19:46:41', '409Nn7yd', '6742221'), + (623, 2458, 'maybe', '2024-02-09 20:51:31', '2025-12-17 19:46:41', '409Nn7yd', '6743731'), + (623, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '409Nn7yd', '6743829'), + (623, 2462, 'not_attending', '2024-02-13 01:09:33', '2025-12-17 19:46:41', '409Nn7yd', '6744701'), + (623, 2463, 'attending', '2024-02-11 06:09:28', '2025-12-17 19:46:41', '409Nn7yd', '6746394'), + (623, 2466, 'not_attending', '2024-02-14 22:12:21', '2025-12-17 19:46:41', '409Nn7yd', '7026777'), + (623, 2467, 'attending', '2024-02-20 07:00:56', '2025-12-17 19:46:43', '409Nn7yd', '7029987'), + (623, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '409Nn7yd', '7030380'), + (623, 2469, 'attending', '2024-02-17 04:19:13', '2025-12-17 19:46:42', '409Nn7yd', '7030632'), + (623, 2471, 'maybe', '2024-02-18 21:30:13', '2025-12-17 19:46:42', '409Nn7yd', '7032425'), + (623, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '409Nn7yd', '7033677'), + (623, 2473, 'not_attending', '2024-02-20 07:01:38', '2025-12-17 19:46:43', '409Nn7yd', '7033724'), + (623, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '409Nn7yd', '7035415'), + (623, 2476, 'not_attending', '2024-02-27 05:20:16', '2025-12-17 19:46:43', '409Nn7yd', '7035691'), + (623, 2479, 'maybe', '2024-02-21 04:22:53', '2025-12-17 19:46:43', '409Nn7yd', '7037009'), + (623, 2481, 'maybe', '2024-02-25 05:48:13', '2025-12-17 19:46:43', '409Nn7yd', '7044715'), + (623, 2485, 'maybe', '2024-02-27 00:54:20', '2025-12-17 19:46:43', '409Nn7yd', '7048111'), + (623, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '409Nn7yd', '7050318'), + (623, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '409Nn7yd', '7050319'), + (623, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '409Nn7yd', '7050322'), + (623, 2495, 'maybe', '2024-03-04 20:38:17', '2025-12-17 19:46:32', '409Nn7yd', '7052982'), + (623, 2499, 'maybe', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '409Nn7yd', '7057804'), + (623, 2502, 'maybe', '2024-03-18 15:34:07', '2025-12-17 19:46:33', '409Nn7yd', '7061202'), + (623, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '409Nn7yd', '7072824'), + (623, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '409Nn7yd', '7074348'), + (623, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '409Nn7yd', '7074364'), + (623, 2538, 'attending', '2024-03-23 08:04:53', '2025-12-17 19:46:33', '409Nn7yd', '7085485'), + (623, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '409Nn7yd', '7089267'), + (623, 2545, 'maybe', '2024-03-23 08:03:41', '2025-12-17 19:46:33', '409Nn7yd', '7096942'), + (623, 2546, 'maybe', '2024-03-23 08:04:22', '2025-12-17 19:46:33', '409Nn7yd', '7096944'), + (623, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '409Nn7yd', '7098747'), + (623, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '409Nn7yd', '7113468'), + (623, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '409Nn7yd', '7114856'), + (623, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '409Nn7yd', '7114951'), + (623, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '409Nn7yd', '7114955'), + (623, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '409Nn7yd', '7114956'), + (623, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '409Nn7yd', '7114957'), + (623, 2560, 'maybe', '2024-04-09 15:16:02', '2025-12-17 19:46:33', '409Nn7yd', '7130086'), + (623, 2566, 'maybe', '2024-04-15 23:54:26', '2025-12-17 19:46:34', '409Nn7yd', '7140664'), + (623, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '409Nn7yd', '7153615'), + (623, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '409Nn7yd', '7159484'), + (623, 2585, 'maybe', '2024-04-21 15:19:33', '2025-12-17 19:46:34', '409Nn7yd', '7175828'), + (623, 2590, 'maybe', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '409Nn7yd', '7178446'), + (623, 2591, 'maybe', '2024-04-19 14:27:53', '2025-12-17 19:46:34', '409Nn7yd', '7180957'), + (623, 2593, 'maybe', '2024-04-19 15:10:32', '2025-12-17 19:46:34', '409Nn7yd', '7181003'), + (623, 2594, 'not_attending', '2024-04-20 04:25:37', '2025-12-17 19:46:34', '409Nn7yd', '7182117'), + (623, 2598, 'maybe', '2024-04-22 23:47:38', '2025-12-17 19:46:34', '409Nn7yd', '7186731'), + (623, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '409Nn7yd', '7220467'), + (623, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '409Nn7yd', '7240354'), + (623, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '409Nn7yd', '7251633'), + (623, 2618, 'maybe', '2024-05-05 16:31:11', '2025-12-17 19:46:35', '409Nn7yd', '7251685'), + (623, 2619, 'maybe', '2024-05-05 16:31:28', '2025-12-17 19:46:35', '409Nn7yd', '7252965'), + (623, 2627, 'attending', '2024-05-25 20:44:19', '2025-12-17 19:46:35', '409Nn7yd', '7264724'), + (623, 2628, 'attending', '2024-06-01 17:19:22', '2025-12-17 19:46:36', '409Nn7yd', '7264725'), + (623, 2629, 'attending', '2024-06-03 00:54:56', '2025-12-17 19:46:28', '409Nn7yd', '7264726'), + (623, 2637, 'maybe', '2024-05-26 06:26:53', '2025-12-17 19:46:35', '409Nn7yd', '7270324'), + (623, 2638, 'attending', '2024-05-15 21:42:13', '2025-12-17 19:46:35', '409Nn7yd', '7273117'), + (623, 2647, 'attending', '2024-06-03 00:55:06', '2025-12-17 19:46:28', '409Nn7yd', '7282057'), + (623, 2655, 'maybe', '2024-05-26 22:13:02', '2025-12-17 19:46:35', '409Nn7yd', '7291225'), + (623, 2658, 'maybe', '2024-06-02 16:42:59', '2025-12-17 19:46:36', '409Nn7yd', '7298846'), + (623, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '409Nn7yd', '7302674'), + (623, 2668, 'maybe', '2024-06-07 19:33:55', '2025-12-17 19:46:36', '409Nn7yd', '7308821'), + (623, 2674, 'maybe', '2024-07-07 06:30:16', '2025-12-17 19:46:29', '409Nn7yd', '7319480'), + (623, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '409Nn7yd', '7324073'), + (623, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '409Nn7yd', '7324074'), + (623, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '409Nn7yd', '7324075'), + (623, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '409Nn7yd', '7324078'), + (623, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '409Nn7yd', '7324082'), + (623, 2709, 'attending', '2024-06-14 01:15:11', '2025-12-17 19:46:29', '409Nn7yd', '7325107'), + (623, 2710, 'attending', '2024-06-14 00:48:21', '2025-12-17 19:46:28', '409Nn7yd', '7325108'), + (623, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '409Nn7yd', '7331457'), + (623, 2738, 'maybe', '2024-06-30 17:09:31', '2025-12-17 19:46:29', '409Nn7yd', '7344085'), + (623, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '409Nn7yd', '7363643'), + (623, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '409Nn7yd', '7368606'), + (623, 2781, 'maybe', '2024-07-26 00:18:55', '2025-12-17 19:46:30', '409Nn7yd', '7373194'), + (623, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '409Nn7yd', '7397462'), + (623, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '409Nn7yd', '7424275'), + (623, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '409Nn7yd', '7424276'), + (623, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '409Nn7yd', '7432751'), + (623, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '409Nn7yd', '7432752'), + (623, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '409Nn7yd', '7432753'), + (623, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '409Nn7yd', '7432754'), + (623, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '409Nn7yd', '7432755'), + (623, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '409Nn7yd', '7432756'), + (623, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '409Nn7yd', '7432758'), + (623, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '409Nn7yd', '7432759'), + (623, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '409Nn7yd', '7433834'), + (623, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '409Nn7yd', '7470197'), + (623, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '409Nn7yd', '7685613'), + (623, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '409Nn7yd', '7688194'), + (623, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '409Nn7yd', '7688196'), + (623, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '409Nn7yd', '7688289'), + (623, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '409Nn7yd', '7692763'), + (623, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '409Nn7yd', '7697552'), + (623, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '409Nn7yd', '7699878'), + (623, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '409Nn7yd', '7704043'), + (623, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '409Nn7yd', '7712467'), + (623, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '409Nn7yd', '7713585'), + (623, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '409Nn7yd', '7713586'), + (623, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '409Nn7yd', '7738518'), + (623, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '409Nn7yd', '7750636'), + (623, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '409Nn7yd', '7796540'), + (623, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '409Nn7yd', '7796541'), + (623, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '409Nn7yd', '7796542'), + (624, 54, 'attending', '2020-08-09 00:17:08', '2025-12-17 19:47:56', 'oAQJrkN4', '2975279'), + (624, 196, 'attending', '2020-08-12 21:05:06', '2025-12-17 19:47:56', 'oAQJrkN4', '3087265'), + (624, 197, 'attending', '2020-08-22 22:41:27', '2025-12-17 19:47:56', 'oAQJrkN4', '3087266'), + (624, 198, 'attending', '2020-08-27 02:42:13', '2025-12-17 19:47:56', 'oAQJrkN4', '3087267'), + (624, 199, 'attending', '2020-09-05 19:09:24', '2025-12-17 19:47:56', 'oAQJrkN4', '3087268'), + (624, 223, 'attending', '2020-09-08 23:00:36', '2025-12-17 19:47:56', 'oAQJrkN4', '3129980'), + (624, 255, 'attending', '2021-03-16 02:43:55', '2025-12-17 19:47:43', 'oAQJrkN4', '3149486'), + (624, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'oAQJrkN4', '3162006'), + (624, 277, 'not_attending', '2020-08-06 21:32:06', '2025-12-17 19:47:56', 'oAQJrkN4', '3163442'), + (624, 293, 'attending', '2020-08-20 00:05:36', '2025-12-17 19:47:56', 'oAQJrkN4', '3172832'), + (624, 294, 'attending', '2020-08-23 02:18:48', '2025-12-17 19:47:56', 'oAQJrkN4', '3172833'), + (624, 295, 'not_attending', '2020-09-02 23:22:15', '2025-12-17 19:47:56', 'oAQJrkN4', '3172834'), + (624, 296, 'not_attending', '2020-09-10 02:34:14', '2025-12-17 19:47:56', 'oAQJrkN4', '3172876'), + (624, 308, 'not_attending', '2020-09-03 23:00:43', '2025-12-17 19:47:56', 'oAQJrkN4', '3183341'), + (624, 311, 'attending', '2020-09-13 16:41:16', '2025-12-17 19:47:56', 'oAQJrkN4', '3186057'), + (624, 312, 'maybe', '2020-09-02 03:16:24', '2025-12-17 19:47:56', 'oAQJrkN4', '3187795'), + (624, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'oAQJrkN4', '3191735'), + (624, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'oAQJrkN4', '3200209'), + (624, 339, 'attending', '2020-09-08 22:56:02', '2025-12-17 19:47:56', 'oAQJrkN4', '3204469'), + (624, 340, 'attending', '2020-09-18 22:52:45', '2025-12-17 19:47:56', 'oAQJrkN4', '3204470'), + (624, 342, 'not_attending', '2020-10-01 02:11:37', '2025-12-17 19:47:52', 'oAQJrkN4', '3204472'), + (624, 344, 'attending', '2020-11-02 00:16:06', '2025-12-17 19:47:53', 'oAQJrkN4', '3206906'), + (624, 352, 'not_attending', '2020-09-14 13:19:52', '2025-12-17 19:47:56', 'oAQJrkN4', '3210514'), + (624, 355, 'attending', '2020-09-15 02:49:53', '2025-12-17 19:47:56', 'oAQJrkN4', '3212571'), + (624, 356, 'attending', '2020-09-15 02:50:04', '2025-12-17 19:47:51', 'oAQJrkN4', '3212572'), + (624, 357, 'attending', '2020-09-15 02:50:10', '2025-12-17 19:47:52', 'oAQJrkN4', '3212573'), + (624, 362, 'not_attending', '2020-09-26 15:56:31', '2025-12-17 19:47:52', 'oAQJrkN4', '3214207'), + (624, 363, 'not_attending', '2020-09-27 19:57:26', '2025-12-17 19:47:52', 'oAQJrkN4', '3217037'), + (624, 365, 'not_attending', '2020-09-20 15:50:39', '2025-12-17 19:47:52', 'oAQJrkN4', '3218510'), + (624, 385, 'attending', '2020-10-03 22:05:39', '2025-12-17 19:47:52', 'oAQJrkN4', '3228698'), + (624, 386, 'attending', '2020-10-09 01:53:12', '2025-12-17 19:47:52', 'oAQJrkN4', '3228699'), + (624, 387, 'not_attending', '2020-10-17 14:30:42', '2025-12-17 19:47:52', 'oAQJrkN4', '3228700'), + (624, 388, 'maybe', '2020-10-24 19:07:22', '2025-12-17 19:47:52', 'oAQJrkN4', '3228701'), + (624, 420, 'attending', '2020-10-15 20:26:17', '2025-12-17 19:47:52', 'oAQJrkN4', '3245293'), + (624, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'oAQJrkN4', '3245751'), + (624, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'oAQJrkN4', '3250232'), + (624, 432, 'not_attending', '2020-11-03 03:10:30', '2025-12-17 19:47:53', 'oAQJrkN4', '3254416'), + (624, 438, 'attending', '2020-10-28 13:46:45', '2025-12-17 19:47:53', 'oAQJrkN4', '3256163'), + (624, 440, 'not_attending', '2020-11-07 23:20:48', '2025-12-17 19:47:53', 'oAQJrkN4', '3256168'), + (624, 441, 'attending', '2020-11-14 22:13:30', '2025-12-17 19:47:54', 'oAQJrkN4', '3256169'), + (624, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'oAQJrkN4', '3263578'), + (624, 445, 'not_attending', '2020-11-01 16:47:13', '2025-12-17 19:47:54', 'oAQJrkN4', '3266138'), + (624, 452, 'attending', '2020-11-29 00:17:29', '2025-12-17 19:47:54', 'oAQJrkN4', '3272981'), + (624, 456, 'not_attending', '2020-11-07 17:01:22', '2025-12-17 19:47:54', 'oAQJrkN4', '3276428'), + (624, 459, 'not_attending', '2020-11-15 20:50:50', '2025-12-17 19:47:54', 'oAQJrkN4', '3281467'), + (624, 462, 'not_attending', '2020-11-11 00:30:47', '2025-12-17 19:47:54', 'oAQJrkN4', '3281470'), + (624, 466, 'not_attending', '2020-11-11 00:30:51', '2025-12-17 19:47:54', 'oAQJrkN4', '3281829'), + (624, 468, 'not_attending', '2020-11-21 22:54:17', '2025-12-17 19:47:54', 'oAQJrkN4', '3285413'), + (624, 469, 'not_attending', '2020-11-29 00:15:13', '2025-12-17 19:47:54', 'oAQJrkN4', '3285414'), + (624, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'oAQJrkN4', '3297764'), + (624, 488, 'not_attending', '2020-12-01 23:56:31', '2025-12-17 19:47:54', 'oAQJrkN4', '3312757'), + (624, 493, 'not_attending', '2020-12-05 19:03:24', '2025-12-17 19:47:54', 'oAQJrkN4', '3313856'), + (624, 499, 'not_attending', '2020-12-11 23:37:27', '2025-12-17 19:47:55', 'oAQJrkN4', '3314909'), + (624, 500, 'not_attending', '2020-12-19 00:34:20', '2025-12-17 19:47:55', 'oAQJrkN4', '3314964'), + (624, 502, 'not_attending', '2020-12-12 20:09:53', '2025-12-17 19:47:55', 'oAQJrkN4', '3323365'), + (624, 513, 'not_attending', '2020-12-19 16:09:33', '2025-12-17 19:47:55', 'oAQJrkN4', '3329383'), + (624, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'oAQJrkN4', '3351539'), + (624, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'oAQJrkN4', '3386848'), + (624, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'oAQJrkN4', '3389527'), + (624, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'oAQJrkN4', '3396499'), + (624, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'oAQJrkN4', '3403650'), + (624, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'oAQJrkN4', '3406988'), + (624, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'oAQJrkN4', '3416576'), + (624, 558, 'not_attending', '2021-01-19 05:20:52', '2025-12-17 19:47:49', 'oAQJrkN4', '3418925'), + (624, 622, 'not_attending', '2021-03-10 05:00:46', '2025-12-17 19:47:51', 'oAQJrkN4', '3517816'), + (624, 641, 'not_attending', '2021-04-03 19:01:42', '2025-12-17 19:47:44', 'oAQJrkN4', '3539916'), + (624, 642, 'not_attending', '2021-04-10 22:45:57', '2025-12-17 19:47:44', 'oAQJrkN4', '3539917'), + (624, 643, 'attending', '2021-04-14 13:43:33', '2025-12-17 19:47:45', 'oAQJrkN4', '3539918'), + (624, 644, 'attending', '2021-04-24 22:18:45', '2025-12-17 19:47:45', 'oAQJrkN4', '3539919'), + (624, 645, 'not_attending', '2021-05-08 18:58:59', '2025-12-17 19:47:46', 'oAQJrkN4', '3539920'), + (624, 646, 'attending', '2021-05-14 15:12:57', '2025-12-17 19:47:46', 'oAQJrkN4', '3539921'), + (624, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'oAQJrkN4', '3539922'), + (624, 648, 'not_attending', '2021-05-27 00:34:38', '2025-12-17 19:47:47', 'oAQJrkN4', '3539923'), + (624, 649, 'not_attending', '2021-03-19 13:23:36', '2025-12-17 19:47:51', 'oAQJrkN4', '3539927'), + (624, 650, 'not_attending', '2021-03-27 15:30:52', '2025-12-17 19:47:44', 'oAQJrkN4', '3539928'), + (624, 700, 'not_attending', '2021-03-30 18:20:38', '2025-12-17 19:47:44', 'oAQJrkN4', '3575725'), + (624, 706, 'not_attending', '2021-03-23 05:48:25', '2025-12-17 19:47:45', 'oAQJrkN4', '3582734'), + (624, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'oAQJrkN4', '3583262'), + (624, 711, 'attending', '2021-04-01 15:11:58', '2025-12-17 19:47:44', 'oAQJrkN4', '3588075'), + (624, 717, 'not_attending', '2021-03-28 21:39:29', '2025-12-17 19:47:44', 'oAQJrkN4', '3619523'), + (624, 719, 'maybe', '2021-04-03 19:02:14', '2025-12-17 19:47:44', 'oAQJrkN4', '3635405'), + (624, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'oAQJrkN4', '3661369'), + (624, 728, 'not_attending', '2021-04-14 13:43:24', '2025-12-17 19:47:44', 'oAQJrkN4', '3668073'), + (624, 731, 'not_attending', '2021-04-06 04:28:43', '2025-12-17 19:47:44', 'oAQJrkN4', '3674262'), + (624, 735, 'not_attending', '2021-05-02 15:58:42', '2025-12-17 19:47:46', 'oAQJrkN4', '3677402'), + (624, 736, 'not_attending', '2021-04-09 20:03:41', '2025-12-17 19:47:44', 'oAQJrkN4', '3677701'), + (624, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'oAQJrkN4', '3730212'), + (624, 777, 'not_attending', '2021-04-30 19:22:01', '2025-12-17 19:47:46', 'oAQJrkN4', '3746248'), + (624, 792, 'not_attending', '2021-05-19 13:21:42', '2025-12-17 19:47:46', 'oAQJrkN4', '3793156'), + (624, 823, 'attending', '2021-06-16 01:30:07', '2025-12-17 19:47:48', 'oAQJrkN4', '3974109'), + (624, 827, 'not_attending', '2021-06-05 02:41:31', '2025-12-17 19:47:47', 'oAQJrkN4', '3975311'), + (624, 828, 'not_attending', '2021-06-10 13:32:26', '2025-12-17 19:47:47', 'oAQJrkN4', '3975312'), + (624, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQJrkN4', '3994992'), + (624, 844, 'attending', '2021-06-23 17:41:09', '2025-12-17 19:47:38', 'oAQJrkN4', '4014338'), + (624, 857, 'not_attending', '2021-11-20 05:39:15', '2025-12-17 19:47:37', 'oAQJrkN4', '4015731'), + (624, 867, 'not_attending', '2021-06-26 21:00:37', '2025-12-17 19:47:38', 'oAQJrkN4', '4021848'), + (624, 869, 'not_attending', '2021-06-30 00:58:31', '2025-12-17 19:47:38', 'oAQJrkN4', '4136744'), + (624, 870, 'not_attending', '2021-06-30 05:16:05', '2025-12-17 19:47:39', 'oAQJrkN4', '4136937'), + (624, 871, 'attending', '2021-07-05 16:04:28', '2025-12-17 19:47:39', 'oAQJrkN4', '4136938'), + (624, 872, 'maybe', '2021-07-18 17:54:21', '2025-12-17 19:47:40', 'oAQJrkN4', '4136947'), + (624, 874, 'attending', '2021-06-16 01:30:23', '2025-12-17 19:47:38', 'oAQJrkN4', '4139815'), + (624, 878, 'not_attending', '2021-06-21 20:25:29', '2025-12-17 19:47:38', 'oAQJrkN4', '4143331'), + (624, 879, 'maybe', '2021-06-23 17:53:29', '2025-12-17 19:47:38', 'oAQJrkN4', '4147806'), + (624, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAQJrkN4', '4210314'), + (624, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAQJrkN4', '4225444'), + (624, 898, 'not_attending', '2021-06-30 05:14:35', '2025-12-17 19:47:38', 'oAQJrkN4', '4236746'), + (624, 899, 'not_attending', '2021-07-03 17:03:39', '2025-12-17 19:47:39', 'oAQJrkN4', '4239259'), + (624, 900, 'not_attending', '2021-07-24 18:23:38', '2025-12-17 19:47:40', 'oAQJrkN4', '4240316'), + (624, 901, 'not_attending', '2021-07-31 19:06:55', '2025-12-17 19:47:40', 'oAQJrkN4', '4240317'), + (624, 902, 'not_attending', '2021-08-07 20:27:36', '2025-12-17 19:47:41', 'oAQJrkN4', '4240318'), + (624, 903, 'attending', '2021-08-14 18:53:15', '2025-12-17 19:47:42', 'oAQJrkN4', '4240320'), + (624, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQJrkN4', '4250163'), + (624, 919, 'attending', '2021-07-16 17:38:53', '2025-12-17 19:47:39', 'oAQJrkN4', '4275957'), + (624, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAQJrkN4', '4277819'), + (624, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAQJrkN4', '4301723'), + (624, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAQJrkN4', '4302093'), + (624, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAQJrkN4', '4304151'), + (624, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'oAQJrkN4', '4345519'), + (624, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAQJrkN4', '4356801'), + (624, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'oAQJrkN4', '4358025'), + (624, 973, 'not_attending', '2021-08-21 17:19:15', '2025-12-17 19:47:42', 'oAQJrkN4', '4366186'), + (624, 974, 'not_attending', '2021-08-28 21:19:13', '2025-12-17 19:47:43', 'oAQJrkN4', '4366187'), + (624, 985, 'not_attending', '2021-08-21 17:19:06', '2025-12-17 19:47:42', 'oAQJrkN4', '4391748'), + (624, 988, 'not_attending', '2021-08-27 20:50:58', '2025-12-17 19:47:42', 'oAQJrkN4', '4402823'), + (624, 990, 'not_attending', '2021-09-04 22:28:11', '2025-12-17 19:47:43', 'oAQJrkN4', '4420735'), + (624, 991, 'not_attending', '2021-09-11 19:09:21', '2025-12-17 19:47:43', 'oAQJrkN4', '4420738'), + (624, 992, 'attending', '2021-09-17 22:50:39', '2025-12-17 19:47:33', 'oAQJrkN4', '4420739'), + (624, 993, 'not_attending', '2021-09-25 22:03:24', '2025-12-17 19:47:34', 'oAQJrkN4', '4420741'), + (624, 994, 'not_attending', '2021-10-02 19:12:38', '2025-12-17 19:47:34', 'oAQJrkN4', '4420742'), + (624, 995, 'not_attending', '2021-10-09 16:52:33', '2025-12-17 19:47:34', 'oAQJrkN4', '4420744'), + (624, 996, 'not_attending', '2021-10-16 19:37:19', '2025-12-17 19:47:35', 'oAQJrkN4', '4420747'), + (624, 997, 'not_attending', '2021-10-23 17:25:32', '2025-12-17 19:47:35', 'oAQJrkN4', '4420748'), + (624, 998, 'not_attending', '2021-10-30 05:11:16', '2025-12-17 19:47:36', 'oAQJrkN4', '4420749'), + (624, 1023, 'not_attending', '2021-09-11 22:23:37', '2025-12-17 19:47:43', 'oAQJrkN4', '4461883'), + (624, 1032, 'attending', '2021-09-26 16:30:23', '2025-12-17 19:47:34', 'oAQJrkN4', '4473825'), + (624, 1036, 'not_attending', '2021-09-22 20:41:12', '2025-12-17 19:47:34', 'oAQJrkN4', '4493166'), + (624, 1067, 'not_attending', '2021-09-24 20:58:18', '2025-12-17 19:47:34', 'oAQJrkN4', '4508342'), + (624, 1070, 'attending', '2021-09-27 23:23:03', '2025-12-17 19:47:34', 'oAQJrkN4', '4512562'), + (624, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAQJrkN4', '4568602'), + (624, 1087, 'not_attending', '2021-10-16 19:37:13', '2025-12-17 19:47:35', 'oAQJrkN4', '4572153'), + (624, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'oAQJrkN4', '4585962'), + (624, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'oAQJrkN4', '4596356'), + (624, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'oAQJrkN4', '4598860'), + (624, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'oAQJrkN4', '4598861'), + (624, 1099, 'not_attending', '2021-11-05 17:20:27', '2025-12-17 19:47:36', 'oAQJrkN4', '4602797'), + (624, 1103, 'not_attending', '2021-11-13 18:34:53', '2025-12-17 19:47:36', 'oAQJrkN4', '4616350'), + (624, 1114, 'attending', '2021-11-13 18:35:22', '2025-12-17 19:47:36', 'oAQJrkN4', '4637896'), + (624, 1116, 'not_attending', '2021-11-20 05:38:42', '2025-12-17 19:47:37', 'oAQJrkN4', '4642994'), + (624, 1117, 'not_attending', '2021-11-20 05:38:46', '2025-12-17 19:47:38', 'oAQJrkN4', '4642995'), + (624, 1118, 'not_attending', '2021-11-20 05:38:54', '2025-12-17 19:47:38', 'oAQJrkN4', '4642996'), + (624, 1119, 'attending', '2021-12-22 23:12:40', '2025-12-17 19:47:31', 'oAQJrkN4', '4642997'), + (624, 1126, 'attending', '2021-12-18 23:19:09', '2025-12-17 19:47:38', 'oAQJrkN4', '4645687'), + (624, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'oAQJrkN4', '4645698'), + (624, 1128, 'attending', '2021-11-20 23:13:52', '2025-12-17 19:47:37', 'oAQJrkN4', '4645704'), + (624, 1129, 'attending', '2021-11-27 06:17:05', '2025-12-17 19:47:37', 'oAQJrkN4', '4645705'), + (624, 1130, 'not_attending', '2021-12-03 22:26:08', '2025-12-17 19:47:37', 'oAQJrkN4', '4658824'), + (624, 1131, 'not_attending', '2021-12-18 23:19:17', '2025-12-17 19:47:31', 'oAQJrkN4', '4658825'), + (624, 1132, 'not_attending', '2021-11-22 14:47:31', '2025-12-17 19:47:37', 'oAQJrkN4', '4660657'), + (624, 1134, 'not_attending', '2021-11-27 06:18:52', '2025-12-17 19:47:37', 'oAQJrkN4', '4668385'), + (624, 1140, 'attending', '2021-12-01 14:40:30', '2025-12-17 19:47:37', 'oAQJrkN4', '4679701'), + (624, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAQJrkN4', '4694407'), + (624, 1156, 'attending', '2021-12-18 22:12:42', '2025-12-17 19:47:31', 'oAQJrkN4', '4715207'), + (624, 1164, 'attending', '2022-01-03 23:41:30', '2025-12-17 19:47:31', 'oAQJrkN4', '4724208'), + (624, 1165, 'not_attending', '2022-01-03 23:41:34', '2025-12-17 19:47:31', 'oAQJrkN4', '4724210'), + (624, 1173, 'not_attending', '2022-01-08 22:21:21', '2025-12-17 19:47:31', 'oAQJrkN4', '4736495'), + (624, 1174, 'attending', '2022-01-15 22:58:02', '2025-12-17 19:47:31', 'oAQJrkN4', '4736496'), + (624, 1175, 'not_attending', '2022-01-22 22:41:11', '2025-12-17 19:47:32', 'oAQJrkN4', '4736497'), + (624, 1176, 'not_attending', '2022-02-05 21:00:48', '2025-12-17 19:47:32', 'oAQJrkN4', '4736498'), + (624, 1177, 'not_attending', '2022-02-12 19:56:45', '2025-12-17 19:47:32', 'oAQJrkN4', '4736499'), + (624, 1178, 'not_attending', '2022-01-29 20:22:17', '2025-12-17 19:47:32', 'oAQJrkN4', '4736500'), + (624, 1179, 'not_attending', '2022-02-19 23:03:43', '2025-12-17 19:47:32', 'oAQJrkN4', '4736501'), + (624, 1180, 'not_attending', '2022-02-26 21:01:54', '2025-12-17 19:47:33', 'oAQJrkN4', '4736502'), + (624, 1181, 'not_attending', '2022-03-05 21:26:26', '2025-12-17 19:47:33', 'oAQJrkN4', '4736503'), + (624, 1182, 'attending', '2022-03-11 15:09:03', '2025-12-17 19:47:33', 'oAQJrkN4', '4736504'), + (624, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'oAQJrkN4', '4746789'), + (624, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'oAQJrkN4', '4753929'), + (624, 1200, 'not_attending', '2022-01-18 22:13:11', '2025-12-17 19:47:32', 'oAQJrkN4', '4766830'), + (624, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'oAQJrkN4', '5038850'), + (624, 1236, 'attending', '2022-02-18 00:13:06', '2025-12-17 19:47:32', 'oAQJrkN4', '5045826'), + (624, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'oAQJrkN4', '5132533'), + (624, 1272, 'not_attending', '2022-03-19 19:27:19', '2025-12-17 19:47:25', 'oAQJrkN4', '5186582'), + (624, 1273, 'not_attending', '2022-03-26 21:51:43', '2025-12-17 19:47:25', 'oAQJrkN4', '5186583'), + (624, 1274, 'attending', '2022-04-02 21:45:43', '2025-12-17 19:47:26', 'oAQJrkN4', '5186585'), + (624, 1281, 'maybe', '2022-04-09 20:42:10', '2025-12-17 19:47:27', 'oAQJrkN4', '5190437'), + (624, 1284, 'not_attending', '2022-04-12 13:45:17', '2025-12-17 19:47:27', 'oAQJrkN4', '5195095'), + (624, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'oAQJrkN4', '5215989'), + (624, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'oAQJrkN4', '5223686'), + (624, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'oAQJrkN4', '5227432'), + (624, 1320, 'not_attending', '2022-04-18 18:13:37', '2025-12-17 19:47:27', 'oAQJrkN4', '5238354'), + (624, 1337, 'not_attending', '2022-04-20 22:39:41', '2025-12-17 19:47:27', 'oAQJrkN4', '5245036'), + (624, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'oAQJrkN4', '5247467'), + (624, 1348, 'not_attending', '2022-05-01 22:27:42', '2025-12-17 19:47:28', 'oAQJrkN4', '5247605'), + (624, 1362, 'not_attending', '2022-05-01 00:25:13', '2025-12-17 19:47:28', 'oAQJrkN4', '5260800'), + (624, 1374, 'attending', '2022-05-07 05:15:53', '2025-12-17 19:47:28', 'oAQJrkN4', '5269930'), + (624, 1378, 'not_attending', '2022-05-14 21:46:22', '2025-12-17 19:47:29', 'oAQJrkN4', '5271448'), + (624, 1379, 'not_attending', '2022-05-21 23:10:19', '2025-12-17 19:47:30', 'oAQJrkN4', '5271449'), + (624, 1380, 'not_attending', '2022-05-23 16:22:29', '2025-12-17 19:47:30', 'oAQJrkN4', '5271450'), + (624, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'oAQJrkN4', '5276469'), + (624, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'oAQJrkN4', '5278159'), + (624, 1407, 'not_attending', '2022-06-04 22:38:28', '2025-12-17 19:47:30', 'oAQJrkN4', '5363695'), + (624, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'oAQJrkN4', '5365960'), + (624, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'oAQJrkN4', '5368973'), + (624, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'oAQJrkN4', '5378247'), + (624, 1431, 'not_attending', '2022-06-11 19:31:23', '2025-12-17 19:47:31', 'oAQJrkN4', '5389605'), + (624, 1442, 'attending', '2022-06-11 19:31:46', '2025-12-17 19:47:17', 'oAQJrkN4', '5397265'), + (624, 1451, 'attending', '2022-06-17 17:55:30', '2025-12-17 19:47:17', 'oAQJrkN4', '5403967'), + (624, 1458, 'not_attending', '2022-06-18 20:47:48', '2025-12-17 19:47:17', 'oAQJrkN4', '5404786'), + (624, 1462, 'not_attending', '2022-06-16 13:32:41', '2025-12-17 19:47:17', 'oAQJrkN4', '5405203'), + (624, 1476, 'attending', '2022-06-16 18:29:22', '2025-12-17 19:47:17', 'oAQJrkN4', '5408130'), + (624, 1478, 'not_attending', '2022-06-24 20:25:00', '2025-12-17 19:47:19', 'oAQJrkN4', '5408794'), + (624, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'oAQJrkN4', '5411699'), + (624, 1482, 'maybe', '2022-06-25 19:38:01', '2025-12-17 19:47:19', 'oAQJrkN4', '5412550'), + (624, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'oAQJrkN4', '5415046'), + (624, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'oAQJrkN4', '5422086'), + (624, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'oAQJrkN4', '5422406'), + (624, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'oAQJrkN4', '5424565'), + (624, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'oAQJrkN4', '5426882'), + (624, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'oAQJrkN4', '5427083'), + (624, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'oAQJrkN4', '5441125'), + (624, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'oAQJrkN4', '5441126'), + (624, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'oAQJrkN4', '5441128'), + (624, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'oAQJrkN4', '5441131'), + (624, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'oAQJrkN4', '5441132'), + (624, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'oAQJrkN4', '5446643'), + (624, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'oAQJrkN4', '5453325'), + (624, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'oAQJrkN4', '5454516'), + (624, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'oAQJrkN4', '5454605'), + (624, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'oAQJrkN4', '5455037'), + (624, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'oAQJrkN4', '5461278'), + (624, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'oAQJrkN4', '5469480'), + (624, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'oAQJrkN4', '5471073'), + (624, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'oAQJrkN4', '5474663'), + (624, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'oAQJrkN4', '5482022'), + (624, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'oAQJrkN4', '5482793'), + (624, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'oAQJrkN4', '5488912'), + (624, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'oAQJrkN4', '5492192'), + (624, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'oAQJrkN4', '5493139'), + (624, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'oAQJrkN4', '5493200'), + (624, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'oAQJrkN4', '5502188'), + (624, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'oAQJrkN4', '5505059'), + (624, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'oAQJrkN4', '5509055'), + (624, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'oAQJrkN4', '5512862'), + (624, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'oAQJrkN4', '5513985'), + (624, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'oAQJrkN4', '5519981'), + (624, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'oAQJrkN4', '5522550'), + (624, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'oAQJrkN4', '5534683'), + (624, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'oAQJrkN4', '5537735'), + (624, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'oAQJrkN4', '5540859'), + (624, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'oAQJrkN4', '5546619'), + (624, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'oAQJrkN4', '5555245'), + (624, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'oAQJrkN4', '5557747'), + (624, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'oAQJrkN4', '5560255'), + (624, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'oAQJrkN4', '5562906'), + (624, 1667, 'attending', '2022-09-23 23:34:45', '2025-12-17 19:47:11', 'oAQJrkN4', '5563221'), + (624, 1668, 'not_attending', '2022-10-01 17:39:21', '2025-12-17 19:47:12', 'oAQJrkN4', '5563222'), + (624, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'oAQJrkN4', '5600604'), + (624, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'oAQJrkN4', '5605544'), + (624, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'oAQJrkN4', '5606737'), + (624, 1719, 'not_attending', '2022-10-08 20:19:58', '2025-12-17 19:47:12', 'oAQJrkN4', '5630958'), + (624, 1720, 'not_attending', '2022-10-15 21:35:29', '2025-12-17 19:47:12', 'oAQJrkN4', '5630959'), + (624, 1721, 'not_attending', '2022-10-21 03:36:45', '2025-12-17 19:47:13', 'oAQJrkN4', '5630960'), + (624, 1722, 'attending', '2022-10-19 14:02:50', '2025-12-17 19:47:14', 'oAQJrkN4', '5630961'), + (624, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'oAQJrkN4', '5630962'), + (624, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'oAQJrkN4', '5630966'), + (624, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'oAQJrkN4', '5630967'), + (624, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'oAQJrkN4', '5630968'), + (624, 1727, 'attending', '2022-12-03 23:20:02', '2025-12-17 19:47:16', 'oAQJrkN4', '5630969'), + (624, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'oAQJrkN4', '5635406'), + (624, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'oAQJrkN4', '5638765'), + (624, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'oAQJrkN4', '5640097'), + (624, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'oAQJrkN4', '5640843'), + (624, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'oAQJrkN4', '5641521'), + (624, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'oAQJrkN4', '5642818'), + (624, 1747, 'maybe', '2022-10-14 21:15:35', '2025-12-17 19:47:13', 'oAQJrkN4', '5648009'), + (624, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'oAQJrkN4', '5652395'), + (624, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'oAQJrkN4', '5670445'), + (624, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'oAQJrkN4', '5671637'), + (624, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'oAQJrkN4', '5672329'), + (624, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'oAQJrkN4', '5674057'), + (624, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'oAQJrkN4', '5674060'), + (624, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'oAQJrkN4', '5677461'), + (624, 1776, 'not_attending', '2022-11-09 18:45:16', '2025-12-17 19:47:15', 'oAQJrkN4', '5691067'), + (624, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'oAQJrkN4', '5698046'), + (624, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'oAQJrkN4', '5699760'), + (624, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'oAQJrkN4', '5741601'), + (624, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'oAQJrkN4', '5763458'), + (624, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'oAQJrkN4', '5774172'), + (624, 1826, 'not_attending', '2022-12-20 00:19:26', '2025-12-17 19:47:04', 'oAQJrkN4', '5776768'), + (624, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'oAQJrkN4', '5818247'), + (624, 1834, 'not_attending', '2022-12-10 19:30:23', '2025-12-17 19:47:17', 'oAQJrkN4', '5819470'), + (624, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'oAQJrkN4', '5819471'), + (624, 1839, 'not_attending', '2022-12-20 00:19:31', '2025-12-17 19:47:04', 'oAQJrkN4', '5821920'), + (624, 1842, 'maybe', '2022-12-20 00:19:38', '2025-12-17 19:47:04', 'oAQJrkN4', '5827739'), + (624, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'oAQJrkN4', '5844306'), + (624, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'oAQJrkN4', '5850159'), + (624, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'oAQJrkN4', '5858999'), + (624, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'oAQJrkN4', '5871984'), + (624, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'oAQJrkN4', '5876354'), + (624, 1864, 'attending', '2023-01-21 20:49:47', '2025-12-17 19:47:05', 'oAQJrkN4', '5879675'), + (624, 1865, 'attending', '2023-01-28 19:37:24', '2025-12-17 19:47:06', 'oAQJrkN4', '5879676'), + (624, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'oAQJrkN4', '5880939'), + (624, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'oAQJrkN4', '5880940'), + (624, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'oAQJrkN4', '5880942'), + (624, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'oAQJrkN4', '5880943'), + (624, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'oAQJrkN4', '5887890'), + (624, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'oAQJrkN4', '5888598'), + (624, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'oAQJrkN4', '5893260'), + (624, 1882, 'maybe', '2023-01-30 03:40:52', '2025-12-17 19:47:06', 'oAQJrkN4', '5898447'), + (624, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'oAQJrkN4', '5899826'), + (624, 1885, 'not_attending', '2023-02-24 19:29:22', '2025-12-17 19:47:08', 'oAQJrkN4', '5899928'), + (624, 1888, 'attending', '2023-02-17 16:09:21', '2025-12-17 19:47:07', 'oAQJrkN4', '5900197'), + (624, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'oAQJrkN4', '5900199'), + (624, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'oAQJrkN4', '5900200'), + (624, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'oAQJrkN4', '5900202'), + (624, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'oAQJrkN4', '5900203'), + (624, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'oAQJrkN4', '5901108'), + (624, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'oAQJrkN4', '5901126'), + (624, 1897, 'not_attending', '2023-02-10 16:52:29', '2025-12-17 19:47:07', 'oAQJrkN4', '5901128'), + (624, 1900, 'not_attending', '2023-02-01 06:22:39', '2025-12-17 19:47:06', 'oAQJrkN4', '5901331'), + (624, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'oAQJrkN4', '5909655'), + (624, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'oAQJrkN4', '5910522'), + (624, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'oAQJrkN4', '5910526'), + (624, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'oAQJrkN4', '5910528'), + (624, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'oAQJrkN4', '5916219'), + (624, 1925, 'attending', '2023-02-18 19:16:56', '2025-12-17 19:47:08', 'oAQJrkN4', '5932619'), + (624, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'oAQJrkN4', '5936234'), + (624, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'oAQJrkN4', '5958351'), + (624, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'oAQJrkN4', '5959751'), + (624, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'oAQJrkN4', '5959755'), + (624, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'oAQJrkN4', '5960055'), + (624, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'oAQJrkN4', '5961684'), + (624, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'oAQJrkN4', '5962132'), + (624, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'oAQJrkN4', '5962133'), + (624, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'oAQJrkN4', '5962134'), + (624, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'oAQJrkN4', '5962317'), + (624, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'oAQJrkN4', '5962318'), + (624, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'oAQJrkN4', '5965933'), + (624, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'oAQJrkN4', '5967014'), + (624, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'oAQJrkN4', '5972815'), + (624, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'oAQJrkN4', '5974016'), + (624, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'oAQJrkN4', '5981515'), + (624, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'oAQJrkN4', '5993516'), + (624, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'oAQJrkN4', '5998939'), + (624, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'oAQJrkN4', '6028191'), + (624, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'oAQJrkN4', '6040066'), + (624, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'oAQJrkN4', '6042717'), + (624, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'oAQJrkN4', '6044838'), + (624, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'oAQJrkN4', '6044839'), + (624, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQJrkN4', '6045684'), + (624, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'oAQJrkN4', '6050104'), + (624, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'oAQJrkN4', '6053195'), + (624, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'oAQJrkN4', '6053198'), + (624, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'oAQJrkN4', '6056085'), + (624, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'oAQJrkN4', '6056916'), + (624, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'oAQJrkN4', '6059290'), + (624, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'oAQJrkN4', '6060328'), + (624, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'oAQJrkN4', '6061037'), + (624, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'oAQJrkN4', '6061039'), + (624, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'oAQJrkN4', '6067245'), + (624, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'oAQJrkN4', '6068094'), + (624, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'oAQJrkN4', '6068252'), + (624, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'oAQJrkN4', '6068253'), + (624, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'oAQJrkN4', '6068254'), + (624, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'oAQJrkN4', '6068280'), + (624, 2032, 'not_attending', '2023-06-03 22:43:59', '2025-12-17 19:47:04', 'oAQJrkN4', '6068281'), + (624, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'oAQJrkN4', '6069093'), + (624, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'oAQJrkN4', '6072528'), + (624, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'oAQJrkN4', '6079840'), + (624, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'oAQJrkN4', '6083398'), + (624, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'oAQJrkN4', '6093504'), + (624, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'oAQJrkN4', '6097414'), + (624, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'oAQJrkN4', '6097442'), + (624, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'oAQJrkN4', '6097684'), + (624, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'oAQJrkN4', '6098762'), + (624, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'oAQJrkN4', '6101361'), + (624, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'oAQJrkN4', '6101362'), + (624, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'oAQJrkN4', '6103752'), + (624, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'oAQJrkN4', '6107314'), + (624, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'oAQJrkN4', '6120034'), + (624, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'oAQJrkN4', '6136733'), + (624, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'oAQJrkN4', '6137989'), + (624, 2104, 'attending', '2023-06-22 19:01:33', '2025-12-17 19:46:50', 'oAQJrkN4', '6149499'), + (624, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'oAQJrkN4', '6150864'), + (624, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'oAQJrkN4', '6155491'), + (624, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'oAQJrkN4', '6164417'), + (624, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'oAQJrkN4', '6166388'), + (624, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'oAQJrkN4', '6176439'), + (624, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'oAQJrkN4', '6182410'), + (624, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'oAQJrkN4', '6185812'), + (624, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'oAQJrkN4', '6187651'), + (624, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'oAQJrkN4', '6187963'), + (624, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'oAQJrkN4', '6187964'), + (624, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'oAQJrkN4', '6187966'), + (624, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'oAQJrkN4', '6187967'), + (624, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'oAQJrkN4', '6187969'), + (624, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'oAQJrkN4', '6334878'), + (624, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'oAQJrkN4', '6337236'), + (624, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'oAQJrkN4', '6337970'), + (624, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'oAQJrkN4', '6338308'), + (624, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'oAQJrkN4', '6340845'), + (624, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'oAQJrkN4', '6341710'), + (624, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'oAQJrkN4', '6342044'), + (624, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'oAQJrkN4', '6342298'), + (624, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'oAQJrkN4', '6343294'), + (624, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'oAQJrkN4', '6347034'), + (624, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'oAQJrkN4', '6347056'), + (624, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'oAQJrkN4', '6353830'), + (624, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'oAQJrkN4', '6353831'), + (624, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'oAQJrkN4', '6357867'), + (624, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'oAQJrkN4', '6358652'), + (624, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'oAQJrkN4', '6361709'), + (624, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'oAQJrkN4', '6361710'), + (624, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'oAQJrkN4', '6361711'), + (624, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'oAQJrkN4', '6361712'), + (624, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'oAQJrkN4', '6361713'), + (624, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'oAQJrkN4', '6382573'), + (624, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'oAQJrkN4', '6388604'), + (624, 2242, 'not_attending', '2023-09-23 23:20:51', '2025-12-17 19:46:45', 'oAQJrkN4', '6388606'), + (624, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'oAQJrkN4', '6394629'), + (624, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'oAQJrkN4', '6394631'), + (624, 2253, 'not_attending', '2023-09-23 23:21:02', '2025-12-17 19:46:45', 'oAQJrkN4', '6401811'), + (624, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'oAQJrkN4', '6440863'), + (624, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'oAQJrkN4', '6445440'), + (624, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'oAQJrkN4', '6453951'), + (624, 2286, 'not_attending', '2023-11-30 19:34:00', '2025-12-17 19:46:48', 'oAQJrkN4', '6460930'), + (624, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'oAQJrkN4', '6461696'), + (624, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'oAQJrkN4', '6462129'), + (624, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'oAQJrkN4', '6463218'), + (624, 2299, 'not_attending', '2023-10-16 14:29:23', '2025-12-17 19:46:46', 'oAQJrkN4', '6472181'), + (624, 2303, 'not_attending', '2023-10-25 16:06:34', '2025-12-17 19:46:47', 'oAQJrkN4', '6482691'), + (624, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'oAQJrkN4', '6482693'), + (624, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'oAQJrkN4', '6484200'), + (624, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'oAQJrkN4', '6484680'), + (624, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'oAQJrkN4', '6507741'), + (624, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'oAQJrkN4', '6514659'), + (624, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'oAQJrkN4', '6514660'), + (624, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'oAQJrkN4', '6519103'), + (624, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'oAQJrkN4', '6535681'), + (624, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'oAQJrkN4', '6584747'), + (624, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'oAQJrkN4', '6587097'), + (624, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'oAQJrkN4', '6609022'), + (624, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'oAQJrkN4', '6632757'), + (624, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAQJrkN4', '6644187'), + (624, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAQJrkN4', '6648951'), + (624, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAQJrkN4', '6648952'), + (624, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAQJrkN4', '6655401'), + (624, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAQJrkN4', '6661585'), + (624, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAQJrkN4', '6661588'), + (624, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAQJrkN4', '6661589'), + (624, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAQJrkN4', '6699906'), + (624, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'oAQJrkN4', '6699913'), + (624, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAQJrkN4', '6701109'), + (624, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAQJrkN4', '6705219'), + (624, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAQJrkN4', '6710153'), + (624, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAQJrkN4', '6711552'), + (624, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'oAQJrkN4', '6711553'), + (624, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAQJrkN4', '6722688'), + (624, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAQJrkN4', '6730620'), + (624, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'oAQJrkN4', '6730642'), + (624, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAQJrkN4', '6740364'), + (624, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAQJrkN4', '6743829'), + (624, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAQJrkN4', '7030380'), + (624, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'oAQJrkN4', '7033677'), + (624, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'oAQJrkN4', '7035415'), + (624, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAQJrkN4', '7044715'), + (624, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAQJrkN4', '7050318'), + (624, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAQJrkN4', '7050319'), + (624, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAQJrkN4', '7050322'), + (624, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAQJrkN4', '7057804'), + (624, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'oAQJrkN4', '7059866'), + (624, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAQJrkN4', '7072824'), + (624, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAQJrkN4', '7074348'), + (624, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAQJrkN4', '7089267'), + (624, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAQJrkN4', '7098747'), + (624, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'oAQJrkN4', '7113468'), + (624, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAQJrkN4', '7114856'), + (624, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAQJrkN4', '7114951'), + (624, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAQJrkN4', '7114955'), + (624, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAQJrkN4', '7114956'), + (624, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'oAQJrkN4', '7153615'), + (624, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAQJrkN4', '7159484'), + (624, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAQJrkN4', '7178446'), + (625, 1415, 'not_attending', '2022-06-03 05:39:34', '2025-12-17 19:47:30', 'dN9EV6G4', '5368973'), + (625, 1442, 'attending', '2022-06-18 21:28:30', '2025-12-17 19:47:17', 'dN9EV6G4', '5397265'), + (625, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dN9EV6G4', '5403967'), + (625, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dN9EV6G4', '5404786'), + (625, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dN9EV6G4', '5405203'), + (625, 1466, 'attending', '2022-06-16 21:23:51', '2025-12-17 19:47:17', 'dN9EV6G4', '5406427'), + (625, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dN9EV6G4', '5411699'), + (625, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dN9EV6G4', '5412550'), + (625, 1484, 'not_attending', '2022-06-22 22:51:48', '2025-12-17 19:47:17', 'dN9EV6G4', '5415046'), + (625, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dN9EV6G4', '5422086'), + (625, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dN9EV6G4', '5422406'), + (625, 1501, 'maybe', '2022-06-29 21:43:39', '2025-12-17 19:47:19', 'dN9EV6G4', '5424546'), + (625, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dN9EV6G4', '5424565'), + (625, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dN9EV6G4', '5426882'), + (625, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dN9EV6G4', '5427083'), + (625, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'dN9EV6G4', '5441125'), + (625, 1514, 'maybe', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dN9EV6G4', '5441126'), + (625, 1515, 'attending', '2022-08-06 17:47:19', '2025-12-17 19:47:21', 'dN9EV6G4', '5441128'), + (625, 1516, 'attending', '2022-08-20 07:13:31', '2025-12-17 19:47:23', 'dN9EV6G4', '5441129'), + (625, 1517, 'attending', '2022-08-21 09:02:19', '2025-12-17 19:47:23', 'dN9EV6G4', '5441130'), + (625, 1518, 'maybe', '2022-09-01 16:45:55', '2025-12-17 19:47:24', 'dN9EV6G4', '5441131'), + (625, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dN9EV6G4', '5441132'), + (625, 1522, 'maybe', '2022-07-19 22:38:06', '2025-12-17 19:47:20', 'dN9EV6G4', '5442832'), + (625, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dN9EV6G4', '5446643'), + (625, 1539, 'maybe', '2022-07-29 16:15:22', '2025-12-17 19:47:21', 'dN9EV6G4', '5449671'), + (625, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dN9EV6G4', '5453325'), + (625, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dN9EV6G4', '5454516'), + (625, 1544, 'maybe', '2022-09-14 21:58:08', '2025-12-17 19:47:11', 'dN9EV6G4', '5454517'), + (625, 1545, 'maybe', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dN9EV6G4', '5454605'), + (625, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dN9EV6G4', '5455037'), + (625, 1553, 'maybe', '2022-07-20 21:13:43', '2025-12-17 19:47:20', 'dN9EV6G4', '5455164'), + (625, 1558, 'maybe', '2022-09-13 23:51:53', '2025-12-17 19:47:10', 'dN9EV6G4', '5458730'), + (625, 1561, 'maybe', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dN9EV6G4', '5461278'), + (625, 1562, 'maybe', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dN9EV6G4', '5469480'), + (625, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dN9EV6G4', '5471073'), + (625, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dN9EV6G4', '5474663'), + (625, 1569, 'maybe', '2022-08-02 23:00:07', '2025-12-17 19:47:21', 'dN9EV6G4', '5481507'), + (625, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dN9EV6G4', '5482022'), + (625, 1575, 'maybe', '2022-08-21 09:02:01', '2025-12-17 19:47:23', 'dN9EV6G4', '5482250'), + (625, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dN9EV6G4', '5482793'), + (625, 1580, 'maybe', '2022-08-10 07:32:53', '2025-12-17 19:47:22', 'dN9EV6G4', '5488912'), + (625, 1586, 'maybe', '2022-08-16 05:13:33', '2025-12-17 19:47:23', 'dN9EV6G4', '5492019'), + (625, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dN9EV6G4', '5492192'), + (625, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dN9EV6G4', '5493139'), + (625, 1589, 'attending', '2022-08-21 09:01:19', '2025-12-17 19:47:23', 'dN9EV6G4', '5493159'), + (625, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dN9EV6G4', '5493200'), + (625, 1597, 'maybe', '2022-08-15 20:31:33', '2025-12-17 19:47:22', 'dN9EV6G4', '5496566'), + (625, 1598, 'maybe', '2022-08-16 22:13:52', '2025-12-17 19:47:22', 'dN9EV6G4', '5496567'), + (625, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dN9EV6G4', '5502188'), + (625, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dN9EV6G4', '5505059'), + (625, 1609, 'not_attending', '2022-08-21 09:02:47', '2025-12-17 19:47:23', 'dN9EV6G4', '5506590'), + (625, 1610, 'not_attending', '2022-08-21 09:02:58', '2025-12-17 19:47:23', 'dN9EV6G4', '5506595'), + (625, 1615, 'maybe', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dN9EV6G4', '5509055'), + (625, 1618, 'maybe', '2022-08-24 05:04:36', '2025-12-17 19:47:23', 'dN9EV6G4', '5512005'), + (625, 1619, 'not_attending', '2022-08-23 08:40:16', '2025-12-17 19:47:23', 'dN9EV6G4', '5512862'), + (625, 1620, 'maybe', '2022-08-25 17:08:54', '2025-12-17 19:47:23', 'dN9EV6G4', '5513046'), + (625, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dN9EV6G4', '5513985'), + (625, 1626, 'maybe', '2022-08-26 00:38:59', '2025-12-17 19:47:11', 'dN9EV6G4', '5519981'), + (625, 1629, 'maybe', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dN9EV6G4', '5522550'), + (625, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dN9EV6G4', '5534683'), + (625, 1635, 'maybe', '2022-09-13 23:06:32', '2025-12-17 19:47:10', 'dN9EV6G4', '5537735'), + (625, 1637, 'attending', '2022-09-04 14:33:29', '2025-12-17 19:47:24', 'dN9EV6G4', '5539591'), + (625, 1640, 'maybe', '2022-09-13 23:06:27', '2025-12-17 19:47:10', 'dN9EV6G4', '5540859'), + (625, 1643, 'maybe', '2022-09-23 19:07:33', '2025-12-17 19:47:11', 'dN9EV6G4', '5545856'), + (625, 1644, 'maybe', '2022-09-19 18:46:16', '2025-12-17 19:47:11', 'dN9EV6G4', '5545857'), + (625, 1645, 'maybe', '2022-09-11 20:41:34', '2025-12-17 19:47:25', 'dN9EV6G4', '5546559'), + (625, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dN9EV6G4', '5546619'), + (625, 1653, 'attending', '2022-09-10 18:35:32', '2025-12-17 19:47:11', 'dN9EV6G4', '5554400'), + (625, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dN9EV6G4', '5555245'), + (625, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dN9EV6G4', '5557747'), + (625, 1661, 'maybe', '2022-09-09 00:19:23', '2025-12-17 19:47:24', 'dN9EV6G4', '5560254'), + (625, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dN9EV6G4', '5560255'), + (625, 1664, 'maybe', '2022-09-10 18:34:57', '2025-12-17 19:47:25', 'dN9EV6G4', '5562906'), + (625, 1665, 'maybe', '2022-09-12 16:43:43', '2025-12-17 19:47:25', 'dN9EV6G4', '5563133'), + (625, 1666, 'maybe', '2022-09-26 08:04:15', '2025-12-17 19:47:11', 'dN9EV6G4', '5563208'), + (625, 1667, 'maybe', '2022-09-20 01:39:01', '2025-12-17 19:47:11', 'dN9EV6G4', '5563221'), + (625, 1668, 'maybe', '2022-09-15 01:56:30', '2025-12-17 19:47:12', 'dN9EV6G4', '5563222'), + (625, 1674, 'maybe', '2022-09-20 07:53:44', '2025-12-17 19:47:12', 'dN9EV6G4', '5593112'), + (625, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dN9EV6G4', '5600604'), + (625, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dN9EV6G4', '5605544'), + (625, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'dN9EV6G4', '5606737'), + (625, 1704, 'maybe', '2022-10-04 23:41:50', '2025-12-17 19:47:12', 'dN9EV6G4', '5610508'), + (625, 1705, 'maybe', '2022-09-29 21:24:54', '2025-12-17 19:47:12', 'dN9EV6G4', '5612209'), + (625, 1708, 'not_attending', '2022-10-04 23:41:57', '2025-12-17 19:47:12', 'dN9EV6G4', '5617648'), + (625, 1716, 'not_attending', '2022-10-02 21:34:47', '2025-12-17 19:47:12', 'dN9EV6G4', '5622429'), + (625, 1719, 'not_attending', '2022-10-07 08:19:39', '2025-12-17 19:47:12', 'dN9EV6G4', '5630958'), + (625, 1720, 'not_attending', '2022-10-14 20:16:31', '2025-12-17 19:47:12', 'dN9EV6G4', '5630959'), + (625, 1721, 'not_attending', '2022-10-21 18:39:46', '2025-12-17 19:47:13', 'dN9EV6G4', '5630960'), + (625, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dN9EV6G4', '5630961'), + (625, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dN9EV6G4', '5630962'), + (625, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dN9EV6G4', '5630966'), + (625, 1725, 'not_attending', '2022-11-14 23:53:01', '2025-12-17 19:47:16', 'dN9EV6G4', '5630967'), + (625, 1726, 'not_attending', '2022-11-16 16:36:04', '2025-12-17 19:47:16', 'dN9EV6G4', '5630968'), + (625, 1727, 'attending', '2022-12-01 23:18:52', '2025-12-17 19:47:16', 'dN9EV6G4', '5630969'), + (625, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dN9EV6G4', '5635406'), + (625, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dN9EV6G4', '5638765'), + (625, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dN9EV6G4', '5640097'), + (625, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dN9EV6G4', '5640843'), + (625, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dN9EV6G4', '5641521'), + (625, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dN9EV6G4', '5642818'), + (625, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dN9EV6G4', '5652395'), + (625, 1757, 'not_attending', '2022-11-03 11:52:40', '2025-12-17 19:47:15', 'dN9EV6G4', '5668974'), + (625, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dN9EV6G4', '5670445'), + (625, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dN9EV6G4', '5671637'), + (625, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dN9EV6G4', '5672329'), + (625, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dN9EV6G4', '5674057'), + (625, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dN9EV6G4', '5674060'), + (625, 1769, 'maybe', '2022-11-04 02:49:35', '2025-12-17 19:47:15', 'dN9EV6G4', '5676351'), + (625, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dN9EV6G4', '5677461'), + (625, 1773, 'attending', '2022-10-31 15:02:44', '2025-12-17 19:47:14', 'dN9EV6G4', '5677707'), + (625, 1776, 'maybe', '2022-11-07 23:38:32', '2025-12-17 19:47:15', 'dN9EV6G4', '5691067'), + (625, 1779, 'attending', '2022-11-03 02:11:50', '2025-12-17 19:47:15', 'dN9EV6G4', '5694252'), + (625, 1781, 'maybe', '2022-11-02 12:53:39', '2025-12-17 19:47:15', 'dN9EV6G4', '5696178'), + (625, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dN9EV6G4', '5698046'), + (625, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dN9EV6G4', '5699760'), + (625, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dN9EV6G4', '5741601'), + (625, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dN9EV6G4', '5763458'), + (625, 1808, 'not_attending', '2023-03-02 13:56:53', '2025-12-17 19:47:08', 'dN9EV6G4', '5764678'), + (625, 1814, 'maybe', '2023-02-21 06:51:38', '2025-12-17 19:47:08', 'dN9EV6G4', '5764684'), + (625, 1820, 'not_attending', '2023-04-02 23:51:10', '2025-12-17 19:46:58', 'dN9EV6G4', '5764690'), + (625, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dN9EV6G4', '5774172'), + (625, 1829, 'not_attending', '2022-12-04 08:09:11', '2025-12-17 19:47:16', 'dN9EV6G4', '5778867'), + (625, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dN9EV6G4', '5818247'), + (625, 1834, 'not_attending', '2022-12-06 13:03:41', '2025-12-17 19:47:17', 'dN9EV6G4', '5819470'), + (625, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dN9EV6G4', '5819471'), + (625, 1838, 'attending', '2022-12-06 19:00:33', '2025-12-17 19:47:16', 'dN9EV6G4', '5821722'), + (625, 1839, 'attending', '2022-12-19 01:38:14', '2025-12-17 19:47:04', 'dN9EV6G4', '5821920'), + (625, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'dN9EV6G4', '5827739'), + (625, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dN9EV6G4', '5844306'), + (625, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dN9EV6G4', '5850159'), + (625, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dN9EV6G4', '5858999'), + (625, 1852, 'maybe', '2023-01-09 21:24:04', '2025-12-17 19:47:05', 'dN9EV6G4', '5869898'), + (625, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dN9EV6G4', '5871984'), + (625, 1861, 'maybe', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dN9EV6G4', '5876354'), + (625, 1863, 'not_attending', '2023-01-25 09:09:14', '2025-12-17 19:47:06', 'dN9EV6G4', '5877255'), + (625, 1865, 'not_attending', '2023-01-25 09:10:35', '2025-12-17 19:47:06', 'dN9EV6G4', '5879676'), + (625, 1866, 'maybe', '2023-01-24 04:17:55', '2025-12-17 19:47:05', 'dN9EV6G4', '5880939'), + (625, 1867, 'maybe', '2023-02-04 21:07:18', '2025-12-17 19:47:07', 'dN9EV6G4', '5880940'), + (625, 1868, 'not_attending', '2023-02-21 03:14:00', '2025-12-17 19:47:07', 'dN9EV6G4', '5880942'), + (625, 1869, 'maybe', '2023-03-07 15:04:40', '2025-12-17 19:47:09', 'dN9EV6G4', '5880943'), + (625, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dN9EV6G4', '5887890'), + (625, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dN9EV6G4', '5888598'), + (625, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dN9EV6G4', '5893260'), + (625, 1882, 'maybe', '2023-01-30 09:09:50', '2025-12-17 19:47:06', 'dN9EV6G4', '5898447'), + (625, 1884, 'maybe', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dN9EV6G4', '5899826'), + (625, 1885, 'not_attending', '2023-02-21 06:51:32', '2025-12-17 19:47:08', 'dN9EV6G4', '5899928'), + (625, 1886, 'maybe', '2023-03-07 15:04:45', '2025-12-17 19:47:09', 'dN9EV6G4', '5899930'), + (625, 1888, 'not_attending', '2023-02-17 09:20:01', '2025-12-17 19:47:07', 'dN9EV6G4', '5900197'), + (625, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dN9EV6G4', '5900199'), + (625, 1890, 'attending', '2023-02-18 10:07:54', '2025-12-17 19:47:08', 'dN9EV6G4', '5900200'), + (625, 1891, 'attending', '2023-03-17 00:05:41', '2025-12-17 19:46:56', 'dN9EV6G4', '5900202'), + (625, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dN9EV6G4', '5900203'), + (625, 1893, 'maybe', '2023-01-31 23:32:22', '2025-12-17 19:47:06', 'dN9EV6G4', '5901055'), + (625, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dN9EV6G4', '5901108'), + (625, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dN9EV6G4', '5901126'), + (625, 1897, 'not_attending', '2023-02-09 10:18:01', '2025-12-17 19:47:07', 'dN9EV6G4', '5901128'), + (625, 1898, 'maybe', '2023-02-01 03:54:23', '2025-12-17 19:47:06', 'dN9EV6G4', '5901263'), + (625, 1899, 'not_attending', '2023-02-09 10:19:06', '2025-12-17 19:47:07', 'dN9EV6G4', '5901323'), + (625, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dN9EV6G4', '5909655'), + (625, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dN9EV6G4', '5910522'), + (625, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dN9EV6G4', '5910526'), + (625, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dN9EV6G4', '5910528'), + (625, 1920, 'not_attending', '2023-02-13 03:55:29', '2025-12-17 19:47:07', 'dN9EV6G4', '5914091'), + (625, 1922, 'not_attending', '2023-02-13 06:31:46', '2025-12-17 19:47:07', 'dN9EV6G4', '5916219'), + (625, 1928, 'maybe', '2023-02-18 10:07:04', '2025-12-17 19:47:07', 'dN9EV6G4', '5932627'), + (625, 1933, 'attending', '2023-02-21 00:36:46', '2025-12-17 19:47:08', 'dN9EV6G4', '5936234'), + (625, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dN9EV6G4', '5958351'), + (625, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dN9EV6G4', '5959751'), + (625, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dN9EV6G4', '5959755'), + (625, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dN9EV6G4', '5960055'), + (625, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dN9EV6G4', '5961684'), + (625, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dN9EV6G4', '5962132'), + (625, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dN9EV6G4', '5962133'), + (625, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dN9EV6G4', '5962134'), + (625, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dN9EV6G4', '5962317'), + (625, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dN9EV6G4', '5962318'), + (625, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dN9EV6G4', '5965933'), + (625, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dN9EV6G4', '5967014'), + (625, 1955, 'maybe', '2023-03-27 01:18:51', '2025-12-17 19:46:57', 'dN9EV6G4', '5972529'), + (625, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dN9EV6G4', '5972815'), + (625, 1959, 'not_attending', '2023-03-27 01:19:08', '2025-12-17 19:46:57', 'dN9EV6G4', '5972829'), + (625, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dN9EV6G4', '5974016'), + (625, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dN9EV6G4', '5981515'), + (625, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dN9EV6G4', '5993516'), + (625, 1973, 'not_attending', '2023-03-19 19:16:24', '2025-12-17 19:46:56', 'dN9EV6G4', '5993777'), + (625, 1974, 'not_attending', '2023-03-27 01:19:02', '2025-12-17 19:46:57', 'dN9EV6G4', '5993778'), + (625, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dN9EV6G4', '5998939'), + (625, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dN9EV6G4', '6028191'), + (625, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dN9EV6G4', '6040066'), + (625, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dN9EV6G4', '6042717'), + (625, 1985, 'attending', '2023-03-27 01:17:11', '2025-12-17 19:46:57', 'dN9EV6G4', '6043041'), + (625, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dN9EV6G4', '6044838'), + (625, 1987, 'maybe', '2023-04-07 16:01:39', '2025-12-17 19:47:00', 'dN9EV6G4', '6044839'), + (625, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9EV6G4', '6045684'), + (625, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dN9EV6G4', '6050104'), + (625, 1995, 'not_attending', '2023-04-02 23:51:04', '2025-12-17 19:46:58', 'dN9EV6G4', '6050663'), + (625, 1996, 'maybe', '2023-04-02 22:37:48', '2025-12-17 19:46:58', 'dN9EV6G4', '6050667'), + (625, 1998, 'maybe', '2023-04-07 19:54:48', '2025-12-17 19:46:59', 'dN9EV6G4', '6052056'), + (625, 2001, 'maybe', '2023-04-04 23:37:24', '2025-12-17 19:46:58', 'dN9EV6G4', '6052569'), + (625, 2002, 'not_attending', '2023-04-25 23:27:44', '2025-12-17 19:47:01', 'dN9EV6G4', '6052605'), + (625, 2003, 'not_attending', '2023-05-18 13:16:17', '2025-12-17 19:47:03', 'dN9EV6G4', '6052606'), + (625, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dN9EV6G4', '6053195'), + (625, 2006, 'not_attending', '2023-04-07 19:55:10', '2025-12-17 19:46:59', 'dN9EV6G4', '6053198'), + (625, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dN9EV6G4', '6056085'), + (625, 2011, 'attending', '2023-04-08 19:35:04', '2025-12-17 19:46:59', 'dN9EV6G4', '6056916'), + (625, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dN9EV6G4', '6059290'), + (625, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dN9EV6G4', '6060328'), + (625, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dN9EV6G4', '6061037'), + (625, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dN9EV6G4', '6061039'), + (625, 2021, 'maybe', '2023-04-15 22:13:37', '2025-12-17 19:47:00', 'dN9EV6G4', '6066316'), + (625, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dN9EV6G4', '6067245'), + (625, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dN9EV6G4', '6068094'), + (625, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dN9EV6G4', '6068252'), + (625, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dN9EV6G4', '6068253'), + (625, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dN9EV6G4', '6068254'), + (625, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dN9EV6G4', '6068280'), + (625, 2032, 'attending', '2023-06-02 18:28:24', '2025-12-17 19:47:04', 'dN9EV6G4', '6068281'), + (625, 2033, 'maybe', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dN9EV6G4', '6069093'), + (625, 2035, 'not_attending', '2023-05-01 07:08:34', '2025-12-17 19:47:02', 'dN9EV6G4', '6070142'), + (625, 2038, 'not_attending', '2023-04-25 23:27:53', '2025-12-17 19:47:01', 'dN9EV6G4', '6071944'), + (625, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dN9EV6G4', '6072528'), + (625, 2043, 'maybe', '2023-04-25 23:27:16', '2025-12-17 19:47:01', 'dN9EV6G4', '6073023'), + (625, 2047, 'maybe', '2023-05-02 23:51:45', '2025-12-17 19:47:02', 'dN9EV6G4', '6076027'), + (625, 2049, 'maybe', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dN9EV6G4', '6079840'), + (625, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dN9EV6G4', '6083398'), + (625, 2052, 'maybe', '2023-05-04 21:51:37', '2025-12-17 19:47:02', 'dN9EV6G4', '6088220'), + (625, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dN9EV6G4', '6093504'), + (625, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dN9EV6G4', '6097414'), + (625, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dN9EV6G4', '6097442'), + (625, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dN9EV6G4', '6097684'), + (625, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dN9EV6G4', '6098762'), + (625, 2064, 'attending', '2023-06-22 21:15:19', '2025-12-17 19:46:50', 'dN9EV6G4', '6099988'), + (625, 2065, 'not_attending', '2023-06-16 20:38:22', '2025-12-17 19:46:49', 'dN9EV6G4', '6101169'), + (625, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dN9EV6G4', '6101361'), + (625, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dN9EV6G4', '6101362'), + (625, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dN9EV6G4', '6103752'), + (625, 2074, 'not_attending', '2023-05-21 11:18:22', '2025-12-17 19:47:03', 'dN9EV6G4', '6107312'), + (625, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dN9EV6G4', '6107314'), + (625, 2077, 'not_attending', '2023-06-17 21:15:26', '2025-12-17 19:46:49', 'dN9EV6G4', '6110217'), + (625, 2080, 'maybe', '2023-05-26 20:39:23', '2025-12-17 19:47:04', 'dN9EV6G4', '6114677'), + (625, 2083, 'not_attending', '2023-05-26 20:39:17', '2025-12-17 19:47:04', 'dN9EV6G4', '6115629'), + (625, 2084, 'maybe', '2023-05-26 20:39:10', '2025-12-17 19:47:04', 'dN9EV6G4', '6117127'), + (625, 2086, 'maybe', '2023-05-26 19:07:35', '2025-12-17 19:47:04', 'dN9EV6G4', '6119877'), + (625, 2087, 'maybe', '2023-05-28 23:17:04', '2025-12-17 19:47:04', 'dN9EV6G4', '6120034'), + (625, 2091, 'maybe', '2023-06-04 05:14:36', '2025-12-17 19:47:04', 'dN9EV6G4', '6130657'), + (625, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dN9EV6G4', '6136733'), + (625, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dN9EV6G4', '6137989'), + (625, 2099, 'not_attending', '2023-06-15 14:19:47', '2025-12-17 19:46:49', 'dN9EV6G4', '6143012'), + (625, 2105, 'maybe', '2023-06-17 08:31:52', '2025-12-17 19:46:50', 'dN9EV6G4', '6149551'), + (625, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dN9EV6G4', '6150864'), + (625, 2109, 'maybe', '2023-06-23 19:01:08', '2025-12-17 19:46:50', 'dN9EV6G4', '6152821'), + (625, 2110, 'maybe', '2023-06-21 03:08:28', '2025-12-17 19:46:50', 'dN9EV6G4', '6155491'), + (625, 2114, 'not_attending', '2023-06-25 07:59:13', '2025-12-17 19:46:50', 'dN9EV6G4', '6158648'), + (625, 2115, 'not_attending', '2023-06-25 21:21:45', '2025-12-17 19:46:50', 'dN9EV6G4', '6161437'), + (625, 2116, 'maybe', '2023-07-06 08:04:06', '2025-12-17 19:46:51', 'dN9EV6G4', '6163389'), + (625, 2117, 'not_attending', '2023-06-25 07:59:15', '2025-12-17 19:46:50', 'dN9EV6G4', '6163750'), + (625, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dN9EV6G4', '6164417'), + (625, 2119, 'maybe', '2023-06-26 02:49:36', '2025-12-17 19:46:50', 'dN9EV6G4', '6165461'), + (625, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dN9EV6G4', '6166388'), + (625, 2121, 'not_attending', '2023-06-28 12:51:50', '2025-12-17 19:46:50', 'dN9EV6G4', '6176439'), + (625, 2123, 'not_attending', '2023-06-28 12:51:52', '2025-12-17 19:46:50', 'dN9EV6G4', '6176502'), + (625, 2128, 'maybe', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dN9EV6G4', '6182410'), + (625, 2131, 'maybe', '2023-07-05 08:47:14', '2025-12-17 19:46:51', 'dN9EV6G4', '6185812'), + (625, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dN9EV6G4', '6187651'), + (625, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dN9EV6G4', '6187963'), + (625, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dN9EV6G4', '6187964'), + (625, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dN9EV6G4', '6187966'), + (625, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dN9EV6G4', '6187967'), + (625, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dN9EV6G4', '6187969'), + (625, 2142, 'maybe', '2023-07-16 01:00:28', '2025-12-17 19:46:52', 'dN9EV6G4', '6333850'), + (625, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dN9EV6G4', '6334878'), + (625, 2146, 'not_attending', '2023-07-16 07:55:09', '2025-12-17 19:46:53', 'dN9EV6G4', '6335638'), + (625, 2149, 'not_attending', '2023-07-10 14:08:32', '2025-12-17 19:46:53', 'dN9EV6G4', '6335682'), + (625, 2152, 'maybe', '2023-07-14 18:33:42', '2025-12-17 19:46:52', 'dN9EV6G4', '6337021'), + (625, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dN9EV6G4', '6337236'), + (625, 2155, 'attending', '2023-07-16 01:00:40', '2025-12-17 19:46:53', 'dN9EV6G4', '6337970'), + (625, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dN9EV6G4', '6338308'), + (625, 2157, 'maybe', '2023-07-14 09:03:37', '2025-12-17 19:46:52', 'dN9EV6G4', '6338342'), + (625, 2158, 'maybe', '2023-07-21 19:29:36', '2025-12-17 19:46:53', 'dN9EV6G4', '6338353'), + (625, 2159, 'attending', '2023-07-16 07:55:38', '2025-12-17 19:46:53', 'dN9EV6G4', '6338355'), + (625, 2160, 'not_attending', '2023-07-16 07:55:35', '2025-12-17 19:46:54', 'dN9EV6G4', '6338358'), + (625, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dN9EV6G4', '6340845'), + (625, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dN9EV6G4', '6341710'), + (625, 2164, 'not_attending', '2023-07-27 19:22:07', '2025-12-17 19:46:54', 'dN9EV6G4', '6341797'), + (625, 2165, 'maybe', '2023-07-25 08:41:35', '2025-12-17 19:46:54', 'dN9EV6G4', '6342044'), + (625, 2166, 'not_attending', '2023-07-23 06:53:42', '2025-12-17 19:46:54', 'dN9EV6G4', '6342115'), + (625, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dN9EV6G4', '6342298'), + (625, 2170, 'not_attending', '2023-07-23 06:53:48', '2025-12-17 19:46:53', 'dN9EV6G4', '6342307'), + (625, 2171, 'not_attending', '2023-07-23 06:53:58', '2025-12-17 19:46:54', 'dN9EV6G4', '6342328'), + (625, 2174, 'not_attending', '2023-07-23 06:53:32', '2025-12-17 19:46:53', 'dN9EV6G4', '6343294'), + (625, 2176, 'not_attending', '2023-07-23 06:53:38', '2025-12-17 19:46:54', 'dN9EV6G4', '6347034'), + (625, 2177, 'not_attending', '2023-08-07 04:00:24', '2025-12-17 19:46:55', 'dN9EV6G4', '6347053'), + (625, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dN9EV6G4', '6347056'), + (625, 2179, 'not_attending', '2023-08-01 08:26:12', '2025-12-17 19:46:54', 'dN9EV6G4', '6347591'), + (625, 2181, 'not_attending', '2023-07-27 19:22:02', '2025-12-17 19:46:54', 'dN9EV6G4', '6349354'), + (625, 2183, 'not_attending', '2023-07-28 19:04:53', '2025-12-17 19:46:54', 'dN9EV6G4', '6353008'), + (625, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dN9EV6G4', '6353830'), + (625, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dN9EV6G4', '6353831'), + (625, 2187, 'not_attending', '2023-08-07 03:59:36', '2025-12-17 19:46:55', 'dN9EV6G4', '6357559'), + (625, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dN9EV6G4', '6357867'), + (625, 2190, 'not_attending', '2023-08-07 03:59:59', '2025-12-17 19:46:55', 'dN9EV6G4', '6357892'), + (625, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dN9EV6G4', '6358652'), + (625, 2194, 'not_attending', '2023-08-07 03:59:55', '2025-12-17 19:46:54', 'dN9EV6G4', '6358669'), + (625, 2195, 'not_attending', '2023-08-18 17:14:16', '2025-12-17 19:46:55', 'dN9EV6G4', '6359397'), + (625, 2196, 'maybe', '2023-08-20 10:50:33', '2025-12-17 19:46:56', 'dN9EV6G4', '6359398'), + (625, 2197, 'not_attending', '2023-08-20 10:50:35', '2025-12-17 19:46:44', 'dN9EV6G4', '6359399'), + (625, 2198, 'not_attending', '2023-08-20 10:50:38', '2025-12-17 19:46:45', 'dN9EV6G4', '6359400'), + (625, 2199, 'attending', '2023-08-08 09:53:00', '2025-12-17 19:46:55', 'dN9EV6G4', '6359849'), + (625, 2200, 'not_attending', '2023-08-07 04:00:06', '2025-12-17 19:46:55', 'dN9EV6G4', '6359850'), + (625, 2202, 'maybe', '2023-08-06 21:29:43', '2025-12-17 19:46:54', 'dN9EV6G4', '6360509'), + (625, 2204, 'attending', '2023-08-08 09:52:49', '2025-12-17 19:46:55', 'dN9EV6G4', '6361542'), + (625, 2206, 'maybe', '2023-08-08 09:51:49', '2025-12-17 19:46:55', 'dN9EV6G4', '6361659'), + (625, 2208, 'maybe', '2023-08-08 09:17:46', '2025-12-17 19:46:54', 'dN9EV6G4', '6361709'), + (625, 2209, 'attending', '2023-08-08 09:52:55', '2025-12-17 19:46:55', 'dN9EV6G4', '6361710'), + (625, 2210, 'not_attending', '2023-08-08 09:52:58', '2025-12-17 19:46:55', 'dN9EV6G4', '6361711'), + (625, 2211, 'not_attending', '2023-08-11 19:34:44', '2025-12-17 19:46:55', 'dN9EV6G4', '6361712'), + (625, 2212, 'not_attending', '2023-08-20 10:50:40', '2025-12-17 19:46:45', 'dN9EV6G4', '6361713'), + (625, 2213, 'not_attending', '2023-08-09 18:32:09', '2025-12-17 19:46:55', 'dN9EV6G4', '6362935'), + (625, 2214, 'not_attending', '2023-08-11 19:34:50', '2025-12-17 19:46:55', 'dN9EV6G4', '6363218'), + (625, 2217, 'maybe', '2023-08-12 01:55:40', '2025-12-17 19:46:55', 'dN9EV6G4', '6364333'), + (625, 2218, 'not_attending', '2023-08-20 08:21:35', '2025-12-17 19:46:55', 'dN9EV6G4', '6367308'), + (625, 2219, 'not_attending', '2023-08-25 19:06:18', '2025-12-17 19:46:55', 'dN9EV6G4', '6367309'), + (625, 2220, 'not_attending', '2023-08-20 10:50:45', '2025-12-17 19:46:56', 'dN9EV6G4', '6367310'), + (625, 2221, 'not_attending', '2023-08-14 22:42:48', '2025-12-17 19:46:55', 'dN9EV6G4', '6367357'), + (625, 2224, 'not_attending', '2023-08-16 00:27:34', '2025-12-17 19:46:55', 'dN9EV6G4', '6367635'), + (625, 2225, 'maybe', '2023-08-17 22:12:52', '2025-12-17 19:46:55', 'dN9EV6G4', '6368434'), + (625, 2227, 'not_attending', '2023-08-20 08:21:31', '2025-12-17 19:46:55', 'dN9EV6G4', '6370581'), + (625, 2229, 'not_attending', '2023-08-20 20:58:40', '2025-12-17 19:46:55', 'dN9EV6G4', '6373787'), + (625, 2231, 'not_attending', '2023-08-21 18:01:56', '2025-12-17 19:46:55', 'dN9EV6G4', '6374748'), + (625, 2232, 'attending', '2023-08-21 18:24:00', '2025-12-17 19:46:55', 'dN9EV6G4', '6374818'), + (625, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dN9EV6G4', '6382573'), + (625, 2236, 'not_attending', '2023-08-25 19:06:22', '2025-12-17 19:46:55', 'dN9EV6G4', '6382618'), + (625, 2237, 'attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'dN9EV6G4', '6383149'), + (625, 2239, 'attending', '2023-08-31 18:01:20', '2025-12-17 19:46:56', 'dN9EV6G4', '6387592'), + (625, 2240, 'attending', '2023-09-02 00:21:00', '2025-12-17 19:46:56', 'dN9EV6G4', '6388603'), + (625, 2241, 'attending', '2023-09-02 00:21:05', '2025-12-17 19:46:44', 'dN9EV6G4', '6388604'), + (625, 2242, 'maybe', '2023-09-02 00:21:11', '2025-12-17 19:46:45', 'dN9EV6G4', '6388606'), + (625, 2243, 'not_attending', '2023-09-04 23:34:06', '2025-12-17 19:46:56', 'dN9EV6G4', '6393686'), + (625, 2244, 'attending', '2023-09-04 23:34:10', '2025-12-17 19:46:44', 'dN9EV6G4', '6393700'), + (625, 2245, 'maybe', '2023-09-05 09:28:28', '2025-12-17 19:46:45', 'dN9EV6G4', '6393703'), + (625, 2247, 'not_attending', '2023-09-05 19:53:22', '2025-12-17 19:46:56', 'dN9EV6G4', '6394628'), + (625, 2248, 'not_attending', '2023-09-05 19:53:27', '2025-12-17 19:46:44', 'dN9EV6G4', '6394629'), + (625, 2249, 'not_attending', '2023-09-05 19:53:29', '2025-12-17 19:46:45', 'dN9EV6G4', '6394630'), + (625, 2250, 'not_attending', '2023-09-05 19:53:33', '2025-12-17 19:46:45', 'dN9EV6G4', '6394631'), + (625, 2252, 'not_attending', '2023-09-18 14:44:55', '2025-12-17 19:46:45', 'dN9EV6G4', '6396837'), + (625, 2253, 'maybe', '2023-09-11 18:00:25', '2025-12-17 19:46:45', 'dN9EV6G4', '6401811'), + (625, 2255, 'maybe', '2023-09-13 18:23:38', '2025-12-17 19:46:45', 'dN9EV6G4', '6403562'), + (625, 2256, 'not_attending', '2023-09-13 18:23:30', '2025-12-17 19:46:45', 'dN9EV6G4', '6404369'), + (625, 2257, 'maybe', '2023-09-16 18:20:32', '2025-12-17 19:46:44', 'dN9EV6G4', '6408068'), + (625, 2258, 'not_attending', '2023-09-21 16:31:33', '2025-12-17 19:46:45', 'dN9EV6G4', '6419492'), + (625, 2259, 'maybe', '2023-09-22 20:14:56', '2025-12-17 19:46:45', 'dN9EV6G4', '6421257'), + (625, 2261, 'not_attending', '2023-09-25 11:49:15', '2025-12-17 19:46:45', 'dN9EV6G4', '6427422'), + (625, 2263, 'maybe', '2023-09-26 22:44:01', '2025-12-17 19:46:45', 'dN9EV6G4', '6429351'), + (625, 2265, 'attending', '2023-09-30 20:29:35', '2025-12-17 19:46:45', 'dN9EV6G4', '6439625'), + (625, 2266, 'maybe', '2023-10-04 00:21:55', '2025-12-17 19:46:45', 'dN9EV6G4', '6439635'), + (625, 2267, 'not_attending', '2023-10-04 16:15:07', '2025-12-17 19:46:45', 'dN9EV6G4', '6440034'), + (625, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dN9EV6G4', '6440863'), + (625, 2269, 'not_attending', '2023-10-02 18:40:03', '2025-12-17 19:46:45', 'dN9EV6G4', '6442978'), + (625, 2271, 'not_attending', '2023-10-04 16:15:24', '2025-12-17 19:46:45', 'dN9EV6G4', '6445375'), + (625, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dN9EV6G4', '6445440'), + (625, 2273, 'not_attending', '2023-10-04 14:05:32', '2025-12-17 19:46:45', 'dN9EV6G4', '6448282'), + (625, 2274, 'maybe', '2023-10-06 05:57:51', '2025-12-17 19:46:45', 'dN9EV6G4', '6448287'), + (625, 2275, 'maybe', '2023-10-07 20:42:33', '2025-12-17 19:46:45', 'dN9EV6G4', '6453777'), + (625, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dN9EV6G4', '6453951'), + (625, 2277, 'not_attending', '2023-10-08 22:21:08', '2025-12-17 19:46:46', 'dN9EV6G4', '6455211'), + (625, 2278, 'not_attending', '2023-10-08 22:21:35', '2025-12-17 19:46:45', 'dN9EV6G4', '6455213'), + (625, 2279, 'maybe', '2023-10-08 21:20:50', '2025-12-17 19:46:46', 'dN9EV6G4', '6455460'), + (625, 2280, 'not_attending', '2023-10-08 20:38:14', '2025-12-17 19:46:46', 'dN9EV6G4', '6455470'), + (625, 2283, 'not_attending', '2023-10-08 22:21:21', '2025-12-17 19:46:46', 'dN9EV6G4', '6455503'), + (625, 2284, 'not_attending', '2023-10-11 02:51:42', '2025-12-17 19:46:46', 'dN9EV6G4', '6460928'), + (625, 2285, 'not_attending', '2023-10-21 00:55:45', '2025-12-17 19:46:47', 'dN9EV6G4', '6460929'), + (625, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dN9EV6G4', '6461696'), + (625, 2288, 'not_attending', '2023-10-11 02:51:34', '2025-12-17 19:46:46', 'dN9EV6G4', '6462068'), + (625, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dN9EV6G4', '6462129'), + (625, 2290, 'not_attending', '2023-10-11 23:01:11', '2025-12-17 19:46:46', 'dN9EV6G4', '6462214'), + (625, 2292, 'maybe', '2023-10-30 02:18:29', '2025-12-17 19:46:47', 'dN9EV6G4', '6462216'), + (625, 2293, 'not_attending', '2023-10-11 21:28:07', '2025-12-17 19:46:46', 'dN9EV6G4', '6463218'), + (625, 2294, 'not_attending', '2023-10-12 16:08:32', '2025-12-17 19:46:46', 'dN9EV6G4', '6465907'), + (625, 2295, 'maybe', '2023-10-14 19:15:27', '2025-12-17 19:46:46', 'dN9EV6G4', '6467832'), + (625, 2296, 'not_attending', '2023-10-13 18:01:21', '2025-12-17 19:46:47', 'dN9EV6G4', '6468393'), + (625, 2299, 'maybe', '2023-10-15 20:42:11', '2025-12-17 19:46:46', 'dN9EV6G4', '6472181'), + (625, 2300, 'maybe', '2023-10-18 15:12:54', '2025-12-17 19:46:47', 'dN9EV6G4', '6472185'), + (625, 2301, 'not_attending', '2023-10-16 13:33:36', '2025-12-17 19:46:46', 'dN9EV6G4', '6474276'), + (625, 2302, 'not_attending', '2023-10-21 00:55:31', '2025-12-17 19:46:46', 'dN9EV6G4', '6482535'), + (625, 2303, 'attending', '2023-10-22 03:59:44', '2025-12-17 19:46:47', 'dN9EV6G4', '6482691'), + (625, 2304, 'attending', '2023-10-27 20:39:20', '2025-12-17 19:46:47', 'dN9EV6G4', '6482693'), + (625, 2306, 'maybe', '2023-11-13 03:08:14', '2025-12-17 19:46:47', 'dN9EV6G4', '6484200'), + (625, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dN9EV6G4', '6484680'), + (625, 2308, 'not_attending', '2023-10-25 05:54:29', '2025-12-17 19:46:47', 'dN9EV6G4', '6485393'), + (625, 2310, 'attending', '2023-10-28 21:42:40', '2025-12-17 19:46:47', 'dN9EV6G4', '6487709'), + (625, 2311, 'not_attending', '2023-10-30 02:18:48', '2025-12-17 19:46:47', 'dN9EV6G4', '6487725'), + (625, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dN9EV6G4', '6507741'), + (625, 2318, 'not_attending', '2023-10-30 16:07:40', '2025-12-17 19:46:47', 'dN9EV6G4', '6508566'), + (625, 2319, 'not_attending', '2023-10-30 16:07:35', '2025-12-17 19:46:47', 'dN9EV6G4', '6508567'), + (625, 2320, 'not_attending', '2023-11-04 03:07:50', '2025-12-17 19:46:47', 'dN9EV6G4', '6508647'), + (625, 2322, 'attending', '2023-11-09 20:41:32', '2025-12-17 19:46:48', 'dN9EV6G4', '6514659'), + (625, 2323, 'not_attending', '2023-11-24 21:31:46', '2025-12-17 19:46:49', 'dN9EV6G4', '6514660'), + (625, 2324, 'attending', '2023-11-29 19:26:28', '2025-12-17 19:46:49', 'dN9EV6G4', '6514662'), + (625, 2325, 'not_attending', '2023-11-29 19:26:31', '2025-12-17 19:46:36', 'dN9EV6G4', '6514663'), + (625, 2326, 'not_attending', '2023-11-09 20:41:38', '2025-12-17 19:46:48', 'dN9EV6G4', '6514805'), + (625, 2327, 'not_attending', '2023-11-02 00:11:07', '2025-12-17 19:46:47', 'dN9EV6G4', '6515494'), + (625, 2328, 'not_attending', '2023-11-02 00:11:04', '2025-12-17 19:46:47', 'dN9EV6G4', '6515504'), + (625, 2329, 'not_attending', '2023-11-03 20:17:10', '2025-12-17 19:46:47', 'dN9EV6G4', '6517138'), + (625, 2331, 'not_attending', '2023-11-14 04:38:06', '2025-12-17 19:46:47', 'dN9EV6G4', '6518640'), + (625, 2332, 'not_attending', '2023-11-04 03:07:44', '2025-12-17 19:46:47', 'dN9EV6G4', '6518655'), + (625, 2333, 'maybe', '2023-11-04 03:08:02', '2025-12-17 19:46:47', 'dN9EV6G4', '6519103'), + (625, 2335, 'not_attending', '2023-11-08 00:00:23', '2025-12-17 19:46:47', 'dN9EV6G4', '6534890'), + (625, 2337, 'maybe', '2023-11-08 01:12:45', '2025-12-17 19:46:48', 'dN9EV6G4', '6535681'), + (625, 2338, 'not_attending', '2023-11-13 01:05:47', '2025-12-17 19:46:48', 'dN9EV6G4', '6538868'), + (625, 2339, 'maybe', '2023-11-09 20:41:09', '2025-12-17 19:46:47', 'dN9EV6G4', '6539128'), + (625, 2342, 'not_attending', '2023-11-14 04:38:02', '2025-12-17 19:46:47', 'dN9EV6G4', '6545076'), + (625, 2346, 'attending', '2023-11-18 22:38:49', '2025-12-17 19:46:48', 'dN9EV6G4', '6582418'), + (625, 2350, 'attending', '2023-11-20 22:39:04', '2025-12-17 19:46:48', 'dN9EV6G4', '6584352'), + (625, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dN9EV6G4', '6584747'), + (625, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dN9EV6G4', '6587097'), + (625, 2361, 'attending', '2023-12-02 21:51:25', '2025-12-17 19:46:48', 'dN9EV6G4', '6602009'), + (625, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dN9EV6G4', '6609022'), + (625, 2366, 'not_attending', '2023-12-12 16:50:54', '2025-12-17 19:46:36', 'dN9EV6G4', '6615304'), + (625, 2370, 'maybe', '2023-12-12 16:51:14', '2025-12-17 19:46:36', 'dN9EV6G4', '6623765'), + (625, 2373, 'attending', '2023-12-20 01:30:16', '2025-12-17 19:46:38', 'dN9EV6G4', '6632678'), + (625, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dN9EV6G4', '6632757'), + (625, 2377, 'not_attending', '2024-01-08 23:52:30', '2025-12-17 19:46:37', 'dN9EV6G4', '6643448'), + (625, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dN9EV6G4', '6644187'), + (625, 2380, 'attending', '2023-12-30 23:47:27', '2025-12-17 19:46:37', 'dN9EV6G4', '6645105'), + (625, 2384, 'not_attending', '2024-01-04 21:32:41', '2025-12-17 19:46:37', 'dN9EV6G4', '6648022'), + (625, 2385, 'maybe', '2024-01-08 07:59:58', '2025-12-17 19:46:37', 'dN9EV6G4', '6648943'), + (625, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dN9EV6G4', '6648951'), + (625, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dN9EV6G4', '6648952'), + (625, 2388, 'not_attending', '2024-01-03 17:17:00', '2025-12-17 19:46:37', 'dN9EV6G4', '6649244'), + (625, 2389, 'not_attending', '2024-01-13 01:01:57', '2025-12-17 19:46:40', 'dN9EV6G4', '6651094'), + (625, 2390, 'maybe', '2024-01-05 19:56:26', '2025-12-17 19:46:37', 'dN9EV6G4', '6651141'), + (625, 2392, 'not_attending', '2024-01-11 06:37:59', '2025-12-17 19:46:37', 'dN9EV6G4', '6654412'), + (625, 2394, 'not_attending', '2024-01-13 01:01:54', '2025-12-17 19:46:38', 'dN9EV6G4', '6654470'), + (625, 2395, 'maybe', '2024-01-16 23:38:37', '2025-12-17 19:46:38', 'dN9EV6G4', '6654471'), + (625, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dN9EV6G4', '6655401'), + (625, 2397, 'maybe', '2024-01-08 23:52:45', '2025-12-17 19:46:37', 'dN9EV6G4', '6657379'), + (625, 2399, 'maybe', '2024-01-08 23:52:53', '2025-12-17 19:46:38', 'dN9EV6G4', '6657583'), + (625, 2400, 'not_attending', '2024-01-11 06:37:56', '2025-12-17 19:46:37', 'dN9EV6G4', '6659378'), + (625, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dN9EV6G4', '6661585'), + (625, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dN9EV6G4', '6661588'), + (625, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dN9EV6G4', '6661589'), + (625, 2405, 'not_attending', '2024-01-13 01:01:51', '2025-12-17 19:46:38', 'dN9EV6G4', '6667332'), + (625, 2406, 'not_attending', '2024-01-16 23:53:28', '2025-12-17 19:46:40', 'dN9EV6G4', '6692344'), + (625, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dN9EV6G4', '6699906'), + (625, 2408, 'attending', '2024-01-15 07:19:58', '2025-12-17 19:46:40', 'dN9EV6G4', '6699907'), + (625, 2409, 'not_attending', '2024-01-15 07:20:09', '2025-12-17 19:46:41', 'dN9EV6G4', '6699909'), + (625, 2410, 'not_attending', '2024-01-15 07:20:14', '2025-12-17 19:46:41', 'dN9EV6G4', '6699911'), + (625, 2411, 'attending', '2024-01-15 07:20:18', '2025-12-17 19:46:41', 'dN9EV6G4', '6699913'), + (625, 2412, 'maybe', '2024-02-20 03:29:26', '2025-12-17 19:46:43', 'dN9EV6G4', '6700717'), + (625, 2414, 'attending', '2024-01-16 01:39:53', '2025-12-17 19:46:40', 'dN9EV6G4', '6701000'), + (625, 2415, 'attending', '2024-01-16 23:53:54', '2025-12-17 19:46:40', 'dN9EV6G4', '6701001'), + (625, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dN9EV6G4', '6701109'), + (625, 2417, 'not_attending', '2024-01-17 04:17:20', '2025-12-17 19:46:40', 'dN9EV6G4', '6701905'), + (625, 2419, 'not_attending', '2024-02-01 18:52:22', '2025-12-17 19:46:41', 'dN9EV6G4', '6704505'), + (625, 2421, 'not_attending', '2024-01-26 00:43:39', '2025-12-17 19:46:40', 'dN9EV6G4', '6704598'), + (625, 2422, 'not_attending', '2024-01-18 23:44:43', '2025-12-17 19:46:40', 'dN9EV6G4', '6704650'), + (625, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dN9EV6G4', '6705219'), + (625, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dN9EV6G4', '6710153'), + (625, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dN9EV6G4', '6711552'), + (625, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dN9EV6G4', '6711553'), + (625, 2431, 'not_attending', '2024-02-01 14:40:58', '2025-12-17 19:46:41', 'dN9EV6G4', '6712394'), + (625, 2434, 'not_attending', '2024-01-26 00:43:42', '2025-12-17 19:46:40', 'dN9EV6G4', '6716605'), + (625, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dN9EV6G4', '6722688'), + (625, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dN9EV6G4', '6730620'), + (625, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dN9EV6G4', '6730642'), + (625, 2441, 'not_attending', '2024-02-01 18:52:28', '2025-12-17 19:46:41', 'dN9EV6G4', '6731263'), + (625, 2442, 'not_attending', '2024-02-02 20:39:13', '2025-12-17 19:46:41', 'dN9EV6G4', '6732647'), + (625, 2443, 'not_attending', '2024-02-03 20:29:45', '2025-12-17 19:46:41', 'dN9EV6G4', '6733775'), + (625, 2444, 'not_attending', '2024-02-05 03:19:12', '2025-12-17 19:46:41', 'dN9EV6G4', '6734367'), + (625, 2450, 'maybe', '2024-02-05 18:58:52', '2025-12-17 19:46:41', 'dN9EV6G4', '6738807'), + (625, 2451, 'not_attending', '2024-02-07 07:36:26', '2025-12-17 19:46:41', 'dN9EV6G4', '6740333'), + (625, 2452, 'not_attending', '2024-02-08 15:46:11', '2025-12-17 19:46:41', 'dN9EV6G4', '6740361'), + (625, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dN9EV6G4', '6740364'), + (625, 2455, 'not_attending', '2024-02-08 06:16:48', '2025-12-17 19:46:41', 'dN9EV6G4', '6741034'), + (625, 2456, 'not_attending', '2024-02-08 15:46:03', '2025-12-17 19:46:41', 'dN9EV6G4', '6742202'), + (625, 2457, 'not_attending', '2024-02-08 22:08:05', '2025-12-17 19:46:41', 'dN9EV6G4', '6742221'), + (625, 2458, 'not_attending', '2024-02-10 03:00:21', '2025-12-17 19:46:41', 'dN9EV6G4', '6743731'), + (625, 2459, 'not_attending', '2024-02-09 21:09:36', '2025-12-17 19:46:41', 'dN9EV6G4', '6743828'), + (625, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dN9EV6G4', '6743829'), + (625, 2465, 'not_attending', '2024-02-20 03:29:41', '2025-12-17 19:46:42', 'dN9EV6G4', '7026725'), + (625, 2467, 'attending', '2024-02-25 06:04:35', '2025-12-17 19:46:43', 'dN9EV6G4', '7029987'), + (625, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dN9EV6G4', '7030380'), + (625, 2471, 'not_attending', '2024-02-20 02:58:21', '2025-12-17 19:46:42', 'dN9EV6G4', '7032425'), + (625, 2472, 'not_attending', '2024-02-20 02:58:26', '2025-12-17 19:46:42', 'dN9EV6G4', '7033677'), + (625, 2473, 'not_attending', '2024-02-26 08:24:14', '2025-12-17 19:46:43', 'dN9EV6G4', '7033724'), + (625, 2474, 'attending', '2024-02-21 00:26:25', '2025-12-17 19:46:43', 'dN9EV6G4', '7035415'), + (625, 2476, 'not_attending', '2024-02-26 08:24:18', '2025-12-17 19:46:43', 'dN9EV6G4', '7035691'), + (625, 2477, 'not_attending', '2024-02-21 05:26:26', '2025-12-17 19:46:42', 'dN9EV6G4', '7035692'), + (625, 2478, 'attending', '2024-02-21 00:51:26', '2025-12-17 19:46:43', 'dN9EV6G4', '7036478'), + (625, 2480, 'attending', '2024-02-25 06:04:33', '2025-12-17 19:46:43', 'dN9EV6G4', '7042160'), + (625, 2481, 'maybe', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dN9EV6G4', '7044715'), + (625, 2485, 'not_attending', '2024-02-27 21:45:33', '2025-12-17 19:46:43', 'dN9EV6G4', '7048111'), + (625, 2487, 'not_attending', '2024-03-17 20:27:40', '2025-12-17 19:46:33', 'dN9EV6G4', '7049279'), + (625, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dN9EV6G4', '7050318'), + (625, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dN9EV6G4', '7050319'), + (625, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dN9EV6G4', '7050322'), + (625, 2496, 'not_attending', '2024-03-02 22:20:13', '2025-12-17 19:46:43', 'dN9EV6G4', '7055967'), + (625, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dN9EV6G4', '7057804'), + (625, 2500, 'maybe', '2024-03-06 16:37:47', '2025-12-17 19:46:43', 'dN9EV6G4', '7058603'), + (625, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dN9EV6G4', '7059866'), + (625, 2504, 'not_attending', '2024-03-17 20:27:43', '2025-12-17 19:46:33', 'dN9EV6G4', '7063296'), + (625, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dN9EV6G4', '7072824'), + (625, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dN9EV6G4', '7074348'), + (625, 2509, 'not_attending', '2024-03-28 22:37:33', '2025-12-17 19:46:33', 'dN9EV6G4', '7074349'), + (625, 2514, 'not_attending', '2024-04-24 13:13:09', '2025-12-17 19:46:34', 'dN9EV6G4', '7074354'), + (625, 2518, 'not_attending', '2024-07-23 01:35:16', '2025-12-17 19:46:30', 'dN9EV6G4', '7074358'), + (625, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dN9EV6G4', '7074364'), + (625, 2537, 'not_attending', '2024-03-17 20:27:35', '2025-12-17 19:46:33', 'dN9EV6G4', '7085484'), + (625, 2538, 'not_attending', '2024-03-25 01:54:50', '2025-12-17 19:46:33', 'dN9EV6G4', '7085485'), + (625, 2539, 'maybe', '2024-03-28 15:40:28', '2025-12-17 19:46:33', 'dN9EV6G4', '7085486'), + (625, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dN9EV6G4', '7089267'), + (625, 2547, 'not_attending', '2024-03-28 22:37:29', '2025-12-17 19:46:33', 'dN9EV6G4', '7096945'), + (625, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dN9EV6G4', '7098747'), + (625, 2549, 'maybe', '2024-03-27 21:31:46', '2025-12-17 19:46:33', 'dN9EV6G4', '7099657'), + (625, 2553, 'not_attending', '2024-03-30 02:27:06', '2025-12-17 19:46:33', 'dN9EV6G4', '7113468'), + (625, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dN9EV6G4', '7114856'), + (625, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dN9EV6G4', '7114951'), + (625, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dN9EV6G4', '7114955'), + (625, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dN9EV6G4', '7114956'), + (625, 2558, 'attending', '2024-04-30 01:12:50', '2025-12-17 19:46:35', 'dN9EV6G4', '7114957'), + (625, 2559, 'maybe', '2024-04-02 15:38:01', '2025-12-17 19:46:33', 'dN9EV6G4', '7115254'), + (625, 2563, 'not_attending', '2024-04-07 21:03:40', '2025-12-17 19:46:33', 'dN9EV6G4', '7134734'), + (625, 2564, 'maybe', '2024-04-08 04:23:14', '2025-12-17 19:46:33', 'dN9EV6G4', '7134735'), + (625, 2566, 'maybe', '2024-04-03 04:21:54', '2025-12-17 19:46:34', 'dN9EV6G4', '7140664'), + (625, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dN9EV6G4', '7153615'), + (625, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dN9EV6G4', '7159484'), + (625, 2573, 'maybe', '2024-04-14 02:09:04', '2025-12-17 19:46:34', 'dN9EV6G4', '7160612'), + (625, 2580, 'not_attending', '2024-04-14 18:28:23', '2025-12-17 19:46:34', 'dN9EV6G4', '7167272'), + (625, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dN9EV6G4', '7178446'), + (625, 2595, 'not_attending', '2024-04-24 18:09:35', '2025-12-17 19:46:34', 'dN9EV6G4', '7182252'), + (625, 2597, 'not_attending', '2024-04-21 22:41:50', '2025-12-17 19:46:34', 'dN9EV6G4', '7186726'), + (625, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dN9EV6G4', '7220467'), + (625, 2609, 'not_attending', '2024-04-30 01:42:54', '2025-12-17 19:46:35', 'dN9EV6G4', '7240354'), + (625, 2612, 'not_attending', '2024-05-08 14:39:59', '2025-12-17 19:46:35', 'dN9EV6G4', '7247643'), + (625, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dN9EV6G4', '7251633'), + (625, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dN9EV6G4', '7263048'), + (625, 2626, 'attending', '2024-05-14 10:31:45', '2025-12-17 19:46:35', 'dN9EV6G4', '7264723'), + (625, 2627, 'not_attending', '2024-05-22 10:20:26', '2025-12-17 19:46:35', 'dN9EV6G4', '7264724'), + (625, 2628, 'not_attending', '2024-05-28 02:51:45', '2025-12-17 19:46:36', 'dN9EV6G4', '7264725'), + (625, 2629, 'not_attending', '2024-06-03 12:18:53', '2025-12-17 19:46:28', 'dN9EV6G4', '7264726'), + (625, 2645, 'attending', '2024-05-20 22:12:25', '2025-12-17 19:46:35', 'dN9EV6G4', '7279964'), + (625, 2647, 'attending', '2024-05-20 20:44:40', '2025-12-17 19:46:28', 'dN9EV6G4', '7282057'), + (625, 2653, 'not_attending', '2024-05-25 20:13:36', '2025-12-17 19:46:35', 'dN9EV6G4', '7289186'), + (625, 2656, 'not_attending', '2024-05-30 19:03:09', '2025-12-17 19:46:36', 'dN9EV6G4', '7291301'), + (625, 2659, 'not_attending', '2024-06-01 19:55:24', '2025-12-17 19:46:36', 'dN9EV6G4', '7299599'), + (625, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dN9EV6G4', '7302674'), + (625, 2671, 'maybe', '2024-06-09 20:51:22', '2025-12-17 19:46:28', 'dN9EV6G4', '7318256'), + (625, 2678, 'not_attending', '2024-06-10 12:15:07', '2025-12-17 19:46:28', 'dN9EV6G4', '7319489'), + (625, 2679, 'not_attending', '2024-06-10 12:15:19', '2025-12-17 19:46:29', 'dN9EV6G4', '7319490'), + (625, 2684, 'not_attending', '2024-06-11 19:53:55', '2025-12-17 19:46:28', 'dN9EV6G4', '7322001'), + (625, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dN9EV6G4', '7324073'), + (625, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dN9EV6G4', '7324074'), + (625, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dN9EV6G4', '7324075'), + (625, 2691, 'not_attending', '2024-07-20 20:54:41', '2025-12-17 19:46:30', 'dN9EV6G4', '7324076'), + (625, 2692, 'not_attending', '2024-07-23 01:35:07', '2025-12-17 19:46:30', 'dN9EV6G4', '7324077'), + (625, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dN9EV6G4', '7324078'), + (625, 2695, 'not_attending', '2024-08-17 21:27:08', '2025-12-17 19:46:32', 'dN9EV6G4', '7324080'), + (625, 2696, 'not_attending', '2024-08-17 21:27:14', '2025-12-17 19:46:32', 'dN9EV6G4', '7324081'), + (625, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dN9EV6G4', '7324082'), + (625, 2698, 'not_attending', '2024-09-07 03:18:52', '2025-12-17 19:46:24', 'dN9EV6G4', '7324083'), + (625, 2699, 'maybe', '2024-06-12 21:10:36', '2025-12-17 19:46:28', 'dN9EV6G4', '7324385'), + (625, 2701, 'maybe', '2024-06-20 02:19:08', '2025-12-17 19:46:29', 'dN9EV6G4', '7324391'), + (625, 2706, 'maybe', '2024-06-18 15:37:11', '2025-12-17 19:46:28', 'dN9EV6G4', '7324947'), + (625, 2707, 'not_attending', '2024-06-13 20:17:21', '2025-12-17 19:46:28', 'dN9EV6G4', '7324952'), + (625, 2719, 'not_attending', '2024-06-18 20:47:19', '2025-12-17 19:46:29', 'dN9EV6G4', '7331305'), + (625, 2722, 'not_attending', '2024-07-05 20:25:00', '2025-12-17 19:46:29', 'dN9EV6G4', '7331457'), + (625, 2726, 'attending', '2024-06-19 19:18:18', '2025-12-17 19:46:29', 'dN9EV6G4', '7332853'), + (625, 2738, 'not_attending', '2024-07-04 11:58:58', '2025-12-17 19:46:29', 'dN9EV6G4', '7344085'), + (625, 2743, 'not_attending', '2024-07-04 11:58:54', '2025-12-17 19:46:29', 'dN9EV6G4', '7345688'), + (625, 2745, 'not_attending', '2024-07-23 01:35:23', '2025-12-17 19:46:30', 'dN9EV6G4', '7348712'), + (625, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dN9EV6G4', '7356752'), + (625, 2764, 'not_attending', '2024-07-23 01:35:28', '2025-12-17 19:46:30', 'dN9EV6G4', '7363595'), + (625, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dN9EV6G4', '7363643'), + (625, 2772, 'not_attending', '2024-07-23 01:35:12', '2025-12-17 19:46:30', 'dN9EV6G4', '7368267'), + (625, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dN9EV6G4', '7368606'), + (625, 2781, 'not_attending', '2024-07-25 21:16:33', '2025-12-17 19:46:30', 'dN9EV6G4', '7373194'), + (625, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dN9EV6G4', '7397462'), + (625, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dN9EV6G4', '7424275'), + (625, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dN9EV6G4', '7424276'), + (625, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dN9EV6G4', '7432751'), + (625, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dN9EV6G4', '7432752'), + (625, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dN9EV6G4', '7432753'), + (625, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dN9EV6G4', '7432754'), + (625, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dN9EV6G4', '7432755'), + (625, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dN9EV6G4', '7432756'), + (625, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dN9EV6G4', '7432758'), + (625, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dN9EV6G4', '7432759'), + (625, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dN9EV6G4', '7433834'), + (625, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dN9EV6G4', '7470197'), + (625, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dN9EV6G4', '7685613'), + (625, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dN9EV6G4', '7688194'), + (625, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dN9EV6G4', '7688196'), + (625, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dN9EV6G4', '7688289'), + (625, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dN9EV6G4', '7825913'), + (625, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dN9EV6G4', '7826209'), + (625, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dN9EV6G4', '7834742'), + (625, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dN9EV6G4', '7842108'), + (625, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dN9EV6G4', '7842902'), + (625, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dN9EV6G4', '7842903'), + (625, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dN9EV6G4', '7842904'), + (625, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dN9EV6G4', '7842905'), + (625, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dN9EV6G4', '7855719'), + (625, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dN9EV6G4', '7860683'), + (625, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dN9EV6G4', '7860684'), + (625, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dN9EV6G4', '7866095'), + (625, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dN9EV6G4', '7869170'), + (625, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dN9EV6G4', '7869188'), + (625, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dN9EV6G4', '7869201'), + (625, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dN9EV6G4', '7877465'), + (625, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dN9EV6G4', '7888250'), + (625, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dN9EV6G4', '7904777'), + (625, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dN9EV6G4', '8349164'), + (625, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dN9EV6G4', '8349545'), + (625, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dN9EV6G4', '8368028'), + (625, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dN9EV6G4', '8368029'), + (625, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dN9EV6G4', '8388462'), + (625, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dN9EV6G4', '8400273'), + (625, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dN9EV6G4', '8400275'), + (625, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dN9EV6G4', '8400276'), + (625, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dN9EV6G4', '8404977'), + (625, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dN9EV6G4', '8430783'), + (625, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dN9EV6G4', '8430784'), + (625, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dN9EV6G4', '8430799'), + (625, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dN9EV6G4', '8430800'), + (625, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dN9EV6G4', '8430801'), + (625, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dN9EV6G4', '8438709'), + (625, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dN9EV6G4', '8457738'), + (625, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dN9EV6G4', '8459566'), + (625, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dN9EV6G4', '8459567'), + (625, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dN9EV6G4', '8461032'), + (625, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dN9EV6G4', '8477877'), + (625, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dN9EV6G4', '8485688'), + (625, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dN9EV6G4', '8490587'), + (625, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dN9EV6G4', '8493552'), + (625, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dN9EV6G4', '8493553'), + (625, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dN9EV6G4', '8493554'), + (625, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dN9EV6G4', '8493555'), + (625, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dN9EV6G4', '8493556'), + (625, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dN9EV6G4', '8493557'), + (625, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dN9EV6G4', '8493558'), + (625, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dN9EV6G4', '8493559'), + (625, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dN9EV6G4', '8493560'), + (625, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dN9EV6G4', '8493561'), + (625, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dN9EV6G4', '8493572'), + (625, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dN9EV6G4', '8540725'), + (625, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dN9EV6G4', '8555421'), + (626, 2806, 'attending', '2024-09-18 13:57:39', '2025-12-17 19:46:25', '4oql9XXm', '7404888'), + (626, 2821, 'attending', '2024-10-07 20:11:00', '2025-12-17 19:46:26', '4oql9XXm', '7424275'), + (626, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4oql9XXm', '7424276'), + (626, 2824, 'attending', '2024-09-13 02:41:57', '2025-12-17 19:46:25', '4oql9XXm', '7432751'), + (626, 2825, 'attending', '2024-09-19 14:52:17', '2025-12-17 19:46:25', '4oql9XXm', '7432752'), + (626, 2826, 'attending', '2024-09-27 21:58:45', '2025-12-17 19:46:25', '4oql9XXm', '7432753'), + (626, 2827, 'attending', '2024-10-05 16:24:08', '2025-12-17 19:46:26', '4oql9XXm', '7432754'), + (626, 2828, 'not_attending', '2024-10-15 17:59:11', '2025-12-17 19:46:26', '4oql9XXm', '7432755'), + (626, 2829, 'attending', '2024-10-24 03:51:34', '2025-12-17 19:46:26', '4oql9XXm', '7432756'), + (626, 2830, 'attending', '2024-11-02 15:19:59', '2025-12-17 19:46:26', '4oql9XXm', '7432758'), + (626, 2831, 'attending', '2024-11-09 20:05:16', '2025-12-17 19:46:26', '4oql9XXm', '7432759'), + (626, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '4oql9XXm', '7433834'), + (626, 2834, 'attending', '2024-09-13 14:22:45', '2025-12-17 19:46:25', '4oql9XXm', '7433852'), + (626, 2835, 'attending', '2024-09-11 15:09:49', '2025-12-17 19:46:24', '4oql9XXm', '7437354'), + (626, 2838, 'attending', '2024-09-26 01:52:24', '2025-12-17 19:46:25', '4oql9XXm', '7439182'), + (626, 2839, 'attending', '2024-09-25 16:02:19', '2025-12-17 19:46:25', '4oql9XXm', '7439262'), + (626, 2844, 'attending', '2024-09-20 01:50:41', '2025-12-17 19:46:25', '4oql9XXm', '7450233'), + (626, 2847, 'attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', '4oql9XXm', '7452299'), + (626, 2849, 'attending', '2024-09-29 15:04:33', '2025-12-17 19:46:25', '4oql9XXm', '7457114'), + (626, 2850, 'attending', '2024-09-29 15:05:03', '2025-12-17 19:46:25', '4oql9XXm', '7457153'), + (626, 2855, 'attending', '2024-10-03 22:42:13', '2025-12-17 19:46:26', '4oql9XXm', '7469385'), + (626, 2856, 'attending', '2024-10-07 20:09:25', '2025-12-17 19:46:26', '4oql9XXm', '7469386'), + (626, 2858, 'attending', '2024-10-17 21:59:59', '2025-12-17 19:46:26', '4oql9XXm', '7469388'), + (626, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4oql9XXm', '7470197'), + (626, 2863, 'maybe', '2024-10-04 15:59:03', '2025-12-17 19:46:26', '4oql9XXm', '7470275'), + (626, 2868, 'maybe', '2024-10-04 15:59:19', '2025-12-17 19:46:26', '4oql9XXm', '7474506'), + (626, 2870, 'attending', '2024-10-05 16:23:16', '2025-12-17 19:46:26', '4oql9XXm', '7475068'), + (626, 2878, 'attending', '2024-10-15 17:58:56', '2025-12-17 19:46:26', '4oql9XXm', '7633857'), + (626, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4oql9XXm', '7685613'), + (626, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4oql9XXm', '7688194'), + (626, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4oql9XXm', '7688196'), + (626, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4oql9XXm', '7688289'), + (626, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4oql9XXm', '7692763'), + (626, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4oql9XXm', '7697552'), + (626, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4oql9XXm', '7699878'), + (626, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4oql9XXm', '7704043'), + (626, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4oql9XXm', '7712467'), + (626, 2925, 'attending', '2024-12-14 18:07:52', '2025-12-17 19:46:21', '4oql9XXm', '7713584'), + (626, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4oql9XXm', '7713585'), + (626, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4oql9XXm', '7713586'), + (626, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4oql9XXm', '7738518'), + (626, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4oql9XXm', '7750636'), + (626, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4oql9XXm', '7796540'), + (626, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4oql9XXm', '7796541'), + (626, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4oql9XXm', '7796542'), + (626, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4oql9XXm', '7825913'), + (626, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4oql9XXm', '7826209'), + (626, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4oql9XXm', '7834742'), + (626, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '4oql9XXm', '7842108'), + (626, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4oql9XXm', '7842902'), + (626, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4oql9XXm', '7842903'), + (626, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4oql9XXm', '7842904'), + (626, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4oql9XXm', '7842905'), + (626, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4oql9XXm', '7855719'), + (626, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4oql9XXm', '7860683'), + (626, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4oql9XXm', '7860684'), + (626, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4oql9XXm', '7866095'), + (626, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4oql9XXm', '7869170'), + (626, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4oql9XXm', '7869188'), + (626, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4oql9XXm', '7869201'), + (626, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4oql9XXm', '7877465'), + (626, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4oql9XXm', '7878570'), + (626, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4oql9XXm', '7888250'), + (626, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4oql9XXm', '7904777'), + (626, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4oql9XXm', '8349164'), + (626, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4oql9XXm', '8349545'), + (626, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4oql9XXm', '8353584'), + (626, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4oql9XXm', '8368028'), + (626, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4oql9XXm', '8368029'), + (626, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4oql9XXm', '8388462'), + (626, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4oql9XXm', '8400273'), + (626, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4oql9XXm', '8400274'), + (626, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4oql9XXm', '8400275'), + (626, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4oql9XXm', '8400276'), + (626, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4oql9XXm', '8404977'), + (626, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '4oql9XXm', '8430783'), + (626, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4oql9XXm', '8430784'), + (626, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4oql9XXm', '8430799'), + (626, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4oql9XXm', '8430800'), + (626, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4oql9XXm', '8430801'), + (626, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4oql9XXm', '8438709'), + (626, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4oql9XXm', '8457738'), + (626, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4oql9XXm', '8459566'), + (626, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4oql9XXm', '8459567'), + (626, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4oql9XXm', '8461032'), + (626, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4oql9XXm', '8477877'), + (626, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4oql9XXm', '8485688'), + (627, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVgwNzrm', '5880942'), + (627, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVgwNzrm', '5880943'), + (627, 1885, 'attending', '2023-02-24 05:38:11', '2025-12-17 19:47:08', 'dVgwNzrm', '5899928'), + (627, 1888, 'attending', '2023-02-16 04:21:17', '2025-12-17 19:47:07', 'dVgwNzrm', '5900197'), + (627, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVgwNzrm', '5900200'), + (627, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVgwNzrm', '5900202'), + (627, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVgwNzrm', '5900203'), + (627, 1908, 'attending', '2023-02-16 04:20:27', '2025-12-17 19:47:07', 'dVgwNzrm', '5905018'), + (627, 1912, 'attending', '2023-02-16 04:21:26', '2025-12-17 19:47:07', 'dVgwNzrm', '5909808'), + (627, 1915, 'attending', '2023-02-15 03:44:16', '2025-12-17 19:47:07', 'dVgwNzrm', '5910522'), + (627, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'dVgwNzrm', '5910526'), + (627, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dVgwNzrm', '5910528'), + (627, 1922, 'attending', '2023-02-16 23:30:40', '2025-12-17 19:47:07', 'dVgwNzrm', '5916219'), + (627, 1924, 'attending', '2023-02-16 23:31:03', '2025-12-17 19:47:07', 'dVgwNzrm', '5931095'), + (627, 1928, 'not_attending', '2023-02-18 04:50:34', '2025-12-17 19:47:07', 'dVgwNzrm', '5932627'), + (627, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVgwNzrm', '5936234'), + (627, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVgwNzrm', '5958351'), + (627, 1936, 'not_attending', '2023-02-27 04:40:11', '2025-12-17 19:47:08', 'dVgwNzrm', '5959397'), + (627, 1938, 'attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVgwNzrm', '5959751'), + (627, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVgwNzrm', '5959755'), + (627, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVgwNzrm', '5960055'), + (627, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVgwNzrm', '5961684'), + (627, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVgwNzrm', '5962132'), + (627, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVgwNzrm', '5962133'), + (627, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVgwNzrm', '5962134'), + (627, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVgwNzrm', '5962317'), + (627, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVgwNzrm', '5962318'), + (627, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVgwNzrm', '5965933'), + (627, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVgwNzrm', '5967014'), + (627, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVgwNzrm', '5972815'), + (627, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVgwNzrm', '5974016'), + (627, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVgwNzrm', '5981515'), + (627, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVgwNzrm', '5993516'), + (627, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVgwNzrm', '5998939'), + (627, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVgwNzrm', '6028191'), + (627, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVgwNzrm', '6040066'), + (627, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVgwNzrm', '6042717'), + (627, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVgwNzrm', '6044838'), + (627, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVgwNzrm', '6044839'), + (627, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVgwNzrm', '6045684'), + (627, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVgwNzrm', '6050104'), + (627, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVgwNzrm', '6053195'), + (627, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVgwNzrm', '6053198'), + (627, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVgwNzrm', '6056085'), + (627, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVgwNzrm', '6056916'), + (627, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVgwNzrm', '6059290'), + (627, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVgwNzrm', '6060328'), + (627, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVgwNzrm', '6061037'), + (627, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVgwNzrm', '6061039'), + (627, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVgwNzrm', '6067245'), + (627, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVgwNzrm', '6068094'), + (627, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVgwNzrm', '6068252'), + (627, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVgwNzrm', '6068253'), + (627, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVgwNzrm', '6068254'), + (627, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVgwNzrm', '6068280'), + (627, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVgwNzrm', '6069093'), + (627, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVgwNzrm', '6072528'), + (627, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVgwNzrm', '6079840'), + (627, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVgwNzrm', '6083398'), + (627, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVgwNzrm', '6093504'), + (627, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVgwNzrm', '6097414'), + (627, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVgwNzrm', '6097442'), + (627, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVgwNzrm', '6097684'), + (627, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVgwNzrm', '6098762'), + (627, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVgwNzrm', '6101362'), + (627, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVgwNzrm', '6103752'), + (627, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVgwNzrm', '6107314'), + (628, 10, 'not_attending', '2020-03-28 21:45:08', '2025-12-17 19:47:56', 'nm687ZR4', '2958053'), + (628, 27, 'not_attending', '2020-04-21 21:38:51', '2025-12-17 19:47:57', 'nm687ZR4', '2958083'), + (628, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'nm687ZR4', '2961309'), + (628, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'nm687ZR4', '2961895'), + (628, 32, 'attending', '2020-03-31 22:32:00', '2025-12-17 19:47:56', 'nm687ZR4', '2963931'), + (628, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'nm687ZR4', '2969208'), + (628, 40, 'attending', '2020-04-10 22:03:08', '2025-12-17 19:47:57', 'nm687ZR4', '2970718'), + (628, 41, 'attending', '2020-04-10 22:02:42', '2025-12-17 19:47:57', 'nm687ZR4', '2971546'), + (628, 43, 'attending', '2020-04-20 00:21:09', '2025-12-17 19:47:57', 'nm687ZR4', '2974519'), + (628, 44, 'attending', '2020-04-13 22:56:30', '2025-12-17 19:47:57', 'nm687ZR4', '2974534'), + (628, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'nm687ZR4', '2974955'), + (628, 51, 'not_attending', '2020-06-29 21:56:59', '2025-12-17 19:47:55', 'nm687ZR4', '2975276'), + (628, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'nm687ZR4', '2975384'), + (628, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'nm687ZR4', '2975385'), + (628, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'nm687ZR4', '2976575'), + (628, 58, 'not_attending', '2020-04-21 21:38:49', '2025-12-17 19:47:57', 'nm687ZR4', '2977127'), + (628, 59, 'attending', '2020-05-05 22:58:03', '2025-12-17 19:47:57', 'nm687ZR4', '2977128'), + (628, 61, 'not_attending', '2020-04-10 22:03:25', '2025-12-17 19:47:57', 'nm687ZR4', '2977130'), + (628, 69, 'not_attending', '2020-06-29 21:57:02', '2025-12-17 19:47:55', 'nm687ZR4', '2977138'), + (628, 70, 'attending', '2020-04-10 20:53:48', '2025-12-17 19:47:57', 'nm687ZR4', '2977343'), + (628, 71, 'not_attending', '2020-04-10 22:03:28', '2025-12-17 19:47:57', 'nm687ZR4', '2977526'), + (628, 72, 'maybe', '2020-05-07 00:10:35', '2025-12-17 19:47:57', 'nm687ZR4', '2977812'), + (628, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'nm687ZR4', '2977931'), + (628, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', 'nm687ZR4', '2978244'), + (628, 75, 'not_attending', '2020-04-19 19:31:11', '2025-12-17 19:47:57', 'nm687ZR4', '2978245'), + (628, 76, 'attending', '2020-05-02 21:17:40', '2025-12-17 19:47:57', 'nm687ZR4', '2978246'), + (628, 77, 'attending', '2020-05-04 22:52:51', '2025-12-17 19:47:57', 'nm687ZR4', '2978247'), + (628, 78, 'attending', '2020-05-17 19:33:55', '2025-12-17 19:47:57', 'nm687ZR4', '2978249'), + (628, 79, 'attending', '2020-05-26 22:52:13', '2025-12-17 19:47:57', 'nm687ZR4', '2978250'), + (628, 81, 'attending', '2020-06-07 05:03:10', '2025-12-17 19:47:58', 'nm687ZR4', '2978252'), + (628, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'nm687ZR4', '2978433'), + (628, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'nm687ZR4', '2978438'), + (628, 84, 'not_attending', '2020-04-21 21:39:17', '2025-12-17 19:47:57', 'nm687ZR4', '2980871'), + (628, 85, 'not_attending', '2020-04-22 23:51:27', '2025-12-17 19:47:57', 'nm687ZR4', '2980872'), + (628, 86, 'attending', '2020-04-15 22:18:11', '2025-12-17 19:47:57', 'nm687ZR4', '2981388'), + (628, 89, 'not_attending', '2020-05-02 21:17:42', '2025-12-17 19:47:57', 'nm687ZR4', '2982604'), + (628, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'nm687ZR4', '2986743'), + (628, 95, 'attending', '2020-04-23 00:47:02', '2025-12-17 19:47:57', 'nm687ZR4', '2987452'), + (628, 98, 'attending', '2020-05-17 19:33:49', '2025-12-17 19:47:57', 'nm687ZR4', '2987455'), + (628, 99, 'attending', '2020-05-02 21:17:48', '2025-12-17 19:47:57', 'nm687ZR4', '2988545'), + (628, 101, 'not_attending', '2020-04-23 00:46:35', '2025-12-17 19:47:57', 'nm687ZR4', '2989975'), + (628, 102, 'not_attending', '2020-04-29 02:25:42', '2025-12-17 19:47:57', 'nm687ZR4', '2990784'), + (628, 104, 'maybe', '2020-04-25 01:42:54', '2025-12-17 19:47:57', 'nm687ZR4', '2991471'), + (628, 106, 'attending', '2020-04-28 00:38:09', '2025-12-17 19:47:57', 'nm687ZR4', '2993501'), + (628, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'nm687ZR4', '2994480'), + (628, 114, 'attending', '2020-04-29 02:24:56', '2025-12-17 19:47:57', 'nm687ZR4', '2994911'), + (628, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', 'nm687ZR4', '3001217'), + (628, 116, 'not_attending', '2020-05-04 23:17:29', '2025-12-17 19:47:57', 'nm687ZR4', '3006242'), + (628, 121, 'attending', '2020-05-26 22:52:11', '2025-12-17 19:47:57', 'nm687ZR4', '3023063'), + (628, 130, 'attending', '2020-05-28 23:29:21', '2025-12-17 19:47:57', 'nm687ZR4', '3028781'), + (628, 132, 'attending', '2020-06-03 22:27:27', '2025-12-17 19:47:58', 'nm687ZR4', '3033648'), + (628, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'nm687ZR4', '3034321'), + (628, 136, 'attending', '2020-05-24 20:11:46', '2025-12-17 19:47:57', 'nm687ZR4', '3035881'), + (628, 139, 'attending', '2020-05-31 03:56:06', '2025-12-17 19:47:58', 'nm687ZR4', '3046190'), + (628, 140, 'maybe', '2020-05-31 03:57:21', '2025-12-17 19:47:57', 'nm687ZR4', '3046980'), + (628, 142, 'attending', '2020-06-01 23:22:44', '2025-12-17 19:47:58', 'nm687ZR4', '3049860'), + (628, 143, 'maybe', '2020-06-07 05:02:51', '2025-12-17 19:47:58', 'nm687ZR4', '3049983'), + (628, 161, 'not_attending', '2020-10-10 08:04:57', '2025-12-17 19:47:52', 'nm687ZR4', '3058698'), + (628, 168, 'attending', '2020-06-07 05:03:21', '2025-12-17 19:47:58', 'nm687ZR4', '3058740'), + (628, 170, 'attending', '2020-06-07 05:02:40', '2025-12-17 19:47:58', 'nm687ZR4', '3058742'), + (628, 172, 'not_attending', '2020-06-14 04:51:25', '2025-12-17 19:47:58', 'nm687ZR4', '3058959'), + (628, 173, 'maybe', '2020-06-19 00:10:00', '2025-12-17 19:47:58', 'nm687ZR4', '3067093'), + (628, 174, 'attending', '2020-06-08 22:41:13', '2025-12-17 19:47:58', 'nm687ZR4', '3067927'), + (628, 175, 'maybe', '2020-06-17 18:49:33', '2025-12-17 19:47:58', 'nm687ZR4', '3068305'), + (628, 177, 'attending', '2020-06-15 00:48:34', '2025-12-17 19:47:58', 'nm687ZR4', '3073193'), + (628, 178, 'maybe', '2020-06-15 00:48:16', '2025-12-17 19:47:58', 'nm687ZR4', '3073195'), + (628, 179, 'maybe', '2020-06-15 00:49:00', '2025-12-17 19:47:58', 'nm687ZR4', '3073687'), + (628, 181, 'attending', '2020-06-19 21:16:05', '2025-12-17 19:47:58', 'nm687ZR4', '3074513'), + (628, 183, 'maybe', '2020-06-19 21:16:26', '2025-12-17 19:47:58', 'nm687ZR4', '3075228'), + (628, 185, 'maybe', '2020-06-19 21:16:20', '2025-12-17 19:47:58', 'nm687ZR4', '3075456'), + (628, 186, 'maybe', '2020-06-18 20:53:03', '2025-12-17 19:47:55', 'nm687ZR4', '3083791'), + (628, 187, 'maybe', '2020-06-18 20:52:48', '2025-12-17 19:47:55', 'nm687ZR4', '3085151'), + (628, 188, 'attending', '2020-06-21 18:38:09', '2025-12-17 19:47:58', 'nm687ZR4', '3086646'), + (628, 190, 'maybe', '2020-06-29 21:57:05', '2025-12-17 19:47:55', 'nm687ZR4', '3087258'), + (628, 191, 'attending', '2020-07-02 03:56:50', '2025-12-17 19:47:55', 'nm687ZR4', '3087259'), + (628, 192, 'attending', '2020-07-15 18:26:20', '2025-12-17 19:47:55', 'nm687ZR4', '3087260'), + (628, 193, 'not_attending', '2020-07-23 00:21:33', '2025-12-17 19:47:55', 'nm687ZR4', '3087261'), + (628, 194, 'attending', '2020-07-23 00:21:42', '2025-12-17 19:47:55', 'nm687ZR4', '3087262'), + (628, 196, 'attending', '2020-08-13 02:51:29', '2025-12-17 19:47:56', 'nm687ZR4', '3087265'), + (628, 197, 'attending', '2020-08-13 02:53:10', '2025-12-17 19:47:56', 'nm687ZR4', '3087266'), + (628, 198, 'attending', '2020-08-13 02:52:59', '2025-12-17 19:47:56', 'nm687ZR4', '3087267'), + (628, 199, 'attending', '2020-09-05 21:07:38', '2025-12-17 19:47:56', 'nm687ZR4', '3087268'), + (628, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'nm687ZR4', '3088653'), + (628, 202, 'maybe', '2020-06-29 21:57:04', '2025-12-17 19:47:55', 'nm687ZR4', '3090353'), + (628, 204, 'attending', '2020-06-29 20:48:27', '2025-12-17 19:47:55', 'nm687ZR4', '3102758'), + (628, 209, 'not_attending', '2020-06-29 21:56:58', '2025-12-17 19:47:55', 'nm687ZR4', '3106813'), + (628, 212, 'attending', '2020-07-08 00:59:45', '2025-12-17 19:47:55', 'nm687ZR4', '3118517'), + (628, 217, 'attending', '2020-07-14 01:00:19', '2025-12-17 19:47:55', 'nm687ZR4', '3126684'), + (628, 219, 'attending', '2020-08-20 22:56:46', '2025-12-17 19:47:56', 'nm687ZR4', '3129263'), + (628, 223, 'attending', '2020-09-05 21:07:45', '2025-12-17 19:47:56', 'nm687ZR4', '3129980'), + (628, 226, 'maybe', '2020-07-13 21:42:35', '2025-12-17 19:47:55', 'nm687ZR4', '3132817'), + (628, 227, 'maybe', '2020-07-13 21:42:28', '2025-12-17 19:47:55', 'nm687ZR4', '3132820'), + (628, 228, 'attending', '2020-07-13 21:42:48', '2025-12-17 19:47:55', 'nm687ZR4', '3132821'), + (628, 233, 'attending', '2020-07-21 23:45:25', '2025-12-17 19:47:55', 'nm687ZR4', '3139773'), + (628, 269, 'attending', '2020-07-29 03:34:43', '2025-12-17 19:47:55', 'nm687ZR4', '3153076'), + (628, 271, 'maybe', '2020-07-31 04:33:34', '2025-12-17 19:47:56', 'nm687ZR4', '3155321'), + (628, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'nm687ZR4', '3162006'), + (628, 275, 'attending', '2020-08-03 20:18:05', '2025-12-17 19:47:56', 'nm687ZR4', '3163405'), + (628, 277, 'not_attending', '2020-08-03 21:16:28', '2025-12-17 19:47:56', 'nm687ZR4', '3163442'), + (628, 279, 'not_attending', '2020-08-14 18:52:58', '2025-12-17 19:47:56', 'nm687ZR4', '3165202'), + (628, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'nm687ZR4', '3169555'), + (628, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', 'nm687ZR4', '3169556'), + (628, 288, 'not_attending', '2020-09-01 22:35:42', '2025-12-17 19:47:56', 'nm687ZR4', '3170249'), + (628, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'nm687ZR4', '3172832'), + (628, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'nm687ZR4', '3172833'), + (628, 295, 'not_attending', '2020-09-01 22:35:37', '2025-12-17 19:47:56', 'nm687ZR4', '3172834'), + (628, 296, 'maybe', '2020-08-13 02:51:53', '2025-12-17 19:47:56', 'nm687ZR4', '3172876'), + (628, 302, 'attending', '2020-08-16 04:04:52', '2025-12-17 19:47:56', 'nm687ZR4', '3178028'), + (628, 308, 'maybe', '2020-09-01 22:35:56', '2025-12-17 19:47:56', 'nm687ZR4', '3183341'), + (628, 311, 'attending', '2020-09-05 21:07:55', '2025-12-17 19:47:56', 'nm687ZR4', '3186057'), + (628, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'nm687ZR4', '3191735'), + (628, 318, 'maybe', '2020-08-29 22:58:03', '2025-12-17 19:47:56', 'nm687ZR4', '3193885'), + (628, 319, 'maybe', '2020-08-31 22:18:52', '2025-12-17 19:47:56', 'nm687ZR4', '3194179'), + (628, 320, 'maybe', '2020-09-01 22:35:52', '2025-12-17 19:47:56', 'nm687ZR4', '3195552'), + (628, 325, 'not_attending', '2020-09-22 02:59:07', '2025-12-17 19:47:51', 'nm687ZR4', '3197083'), + (628, 335, 'not_attending', '2020-09-01 22:35:21', '2025-12-17 19:47:56', 'nm687ZR4', '3200209'), + (628, 336, 'maybe', '2020-09-15 23:31:22', '2025-12-17 19:47:56', 'nm687ZR4', '3200495'), + (628, 343, 'not_attending', '2020-09-22 02:59:01', '2025-12-17 19:47:56', 'nm687ZR4', '3206759'), + (628, 352, 'not_attending', '2020-09-13 21:05:53', '2025-12-17 19:47:56', 'nm687ZR4', '3210514'), + (628, 354, 'attending', '2020-09-18 03:58:27', '2025-12-17 19:47:56', 'nm687ZR4', '3212570'), + (628, 355, 'attending', '2020-09-16 23:53:42', '2025-12-17 19:47:56', 'nm687ZR4', '3212571'), + (628, 356, 'attending', '2020-09-18 03:58:32', '2025-12-17 19:47:51', 'nm687ZR4', '3212572'), + (628, 357, 'maybe', '2020-09-29 22:07:17', '2025-12-17 19:47:52', 'nm687ZR4', '3212573'), + (628, 360, 'attending', '2020-09-14 13:52:09', '2025-12-17 19:47:56', 'nm687ZR4', '3212671'), + (628, 362, 'attending', '2020-09-26 21:54:25', '2025-12-17 19:47:52', 'nm687ZR4', '3214207'), + (628, 363, 'not_attending', '2020-09-16 23:53:57', '2025-12-17 19:47:52', 'nm687ZR4', '3217037'), + (628, 364, 'attending', '2020-09-18 23:11:39', '2025-12-17 19:47:56', 'nm687ZR4', '3217106'), + (628, 365, 'not_attending', '2020-09-18 03:56:22', '2025-12-17 19:47:51', 'nm687ZR4', '3218510'), + (628, 368, 'not_attending', '2020-10-02 01:16:25', '2025-12-17 19:47:52', 'nm687ZR4', '3221403'), + (628, 376, 'maybe', '2020-09-29 22:08:09', '2025-12-17 19:47:52', 'nm687ZR4', '3222827'), + (628, 377, 'not_attending', '2020-10-29 23:46:29', '2025-12-17 19:47:53', 'nm687ZR4', '3222828'), + (628, 378, 'attending', '2020-09-23 17:41:28', '2025-12-17 19:47:52', 'nm687ZR4', '3223725'), + (628, 385, 'maybe', '2020-10-03 22:50:15', '2025-12-17 19:47:52', 'nm687ZR4', '3228698'), + (628, 386, 'maybe', '2020-10-10 21:50:22', '2025-12-17 19:47:52', 'nm687ZR4', '3228699'), + (628, 387, 'maybe', '2020-10-17 21:46:04', '2025-12-17 19:47:52', 'nm687ZR4', '3228700'), + (628, 388, 'not_attending', '2020-10-24 02:10:41', '2025-12-17 19:47:52', 'nm687ZR4', '3228701'), + (628, 424, 'maybe', '2020-10-12 00:57:14', '2025-12-17 19:47:52', 'nm687ZR4', '3245751'), + (628, 426, 'maybe', '2020-10-16 20:05:33', '2025-12-17 19:47:52', 'nm687ZR4', '3250232'), + (628, 432, 'not_attending', '2020-11-04 14:50:10', '2025-12-17 19:47:53', 'nm687ZR4', '3254416'), + (628, 433, 'not_attending', '2020-11-04 14:50:15', '2025-12-17 19:47:53', 'nm687ZR4', '3254417'), + (628, 438, 'not_attending', '2020-10-31 04:55:51', '2025-12-17 19:47:53', 'nm687ZR4', '3256163'), + (628, 440, 'not_attending', '2020-10-24 01:34:13', '2025-12-17 19:47:53', 'nm687ZR4', '3256168'), + (628, 441, 'not_attending', '2020-12-06 22:28:59', '2025-12-17 19:47:54', 'nm687ZR4', '3256169'), + (628, 443, 'not_attending', '2020-10-24 01:34:11', '2025-12-17 19:47:53', 'nm687ZR4', '3263578'), + (628, 445, 'not_attending', '2020-11-04 14:50:32', '2025-12-17 19:47:54', 'nm687ZR4', '3266138'), + (628, 456, 'not_attending', '2020-11-08 23:40:13', '2025-12-17 19:47:54', 'nm687ZR4', '3276428'), + (628, 457, 'not_attending', '2020-11-07 16:51:42', '2025-12-17 19:47:53', 'nm687ZR4', '3279087'), + (628, 459, 'not_attending', '2020-11-08 23:40:11', '2025-12-17 19:47:54', 'nm687ZR4', '3281467'), + (628, 462, 'not_attending', '2020-11-08 23:40:09', '2025-12-17 19:47:54', 'nm687ZR4', '3281470'), + (628, 463, 'not_attending', '2020-11-14 00:23:35', '2025-12-17 19:47:54', 'nm687ZR4', '3281553'), + (628, 466, 'not_attending', '2020-11-08 23:40:07', '2025-12-17 19:47:54', 'nm687ZR4', '3281829'), + (628, 468, 'maybe', '2020-11-14 00:24:26', '2025-12-17 19:47:54', 'nm687ZR4', '3285413'), + (628, 469, 'not_attending', '2020-12-06 22:28:54', '2025-12-17 19:47:54', 'nm687ZR4', '3285414'), + (628, 470, 'not_attending', '2020-11-14 00:24:11', '2025-12-17 19:47:54', 'nm687ZR4', '3285443'), + (628, 473, 'not_attending', '2020-11-14 00:24:01', '2025-12-17 19:47:54', 'nm687ZR4', '3286569'), + (628, 481, 'not_attending', '2020-12-06 22:28:47', '2025-12-17 19:47:54', 'nm687ZR4', '3297764'), + (628, 493, 'not_attending', '2020-12-06 22:28:41', '2025-12-17 19:47:54', 'nm687ZR4', '3313856'), + (628, 499, 'not_attending', '2020-12-06 22:28:35', '2025-12-17 19:47:55', 'nm687ZR4', '3314909'), + (628, 500, 'not_attending', '2021-01-02 21:55:34', '2025-12-17 19:47:55', 'nm687ZR4', '3314964'), + (628, 502, 'not_attending', '2021-01-02 21:55:27', '2025-12-17 19:47:55', 'nm687ZR4', '3323365'), + (628, 513, 'not_attending', '2021-01-02 21:55:18', '2025-12-17 19:47:55', 'nm687ZR4', '3329383'), + (628, 526, 'not_attending', '2021-01-02 21:55:10', '2025-12-17 19:47:48', 'nm687ZR4', '3351539'), + (628, 530, 'not_attending', '2021-01-02 21:55:45', '2025-12-17 19:47:48', 'nm687ZR4', '3373923'), + (628, 536, 'not_attending', '2021-01-09 03:53:51', '2025-12-17 19:47:48', 'nm687ZR4', '3386848'), + (628, 540, 'not_attending', '2021-01-09 03:53:49', '2025-12-17 19:47:48', 'nm687ZR4', '3389527'), + (628, 543, 'not_attending', '2021-01-21 23:55:43', '2025-12-17 19:47:48', 'nm687ZR4', '3396499'), + (628, 548, 'not_attending', '2021-01-16 21:27:17', '2025-12-17 19:47:48', 'nm687ZR4', '3403650'), + (628, 549, 'not_attending', '2021-01-21 23:55:22', '2025-12-17 19:47:49', 'nm687ZR4', '3406988'), + (628, 554, 'not_attending', '2021-01-21 23:55:19', '2025-12-17 19:47:49', 'nm687ZR4', '3408338'), + (628, 555, 'not_attending', '2021-01-21 23:55:26', '2025-12-17 19:47:49', 'nm687ZR4', '3416576'), + (628, 568, 'not_attending', '2021-02-07 01:42:07', '2025-12-17 19:47:50', 'nm687ZR4', '3430267'), + (628, 579, 'not_attending', '2021-02-07 01:42:20', '2025-12-17 19:47:50', 'nm687ZR4', '3440978'), + (628, 602, 'not_attending', '2021-03-27 22:40:09', '2025-12-17 19:47:50', 'nm687ZR4', '3470303'), + (628, 604, 'not_attending', '2021-03-27 22:40:16', '2025-12-17 19:47:50', 'nm687ZR4', '3470305'), + (628, 605, 'not_attending', '2021-02-08 20:28:13', '2025-12-17 19:47:50', 'nm687ZR4', '3470991'), + (628, 621, 'not_attending', '2021-03-27 22:40:21', '2025-12-17 19:47:51', 'nm687ZR4', '3517815'), + (628, 622, 'not_attending', '2021-03-27 22:40:39', '2025-12-17 19:47:51', 'nm687ZR4', '3517816'), + (628, 623, 'not_attending', '2021-03-27 22:40:47', '2025-12-17 19:47:51', 'nm687ZR4', '3523941'), + (628, 631, 'not_attending', '2021-03-27 22:40:54', '2025-12-17 19:47:51', 'nm687ZR4', '3533850'), + (628, 638, 'not_attending', '2021-03-27 22:41:10', '2025-12-17 19:47:44', 'nm687ZR4', '3536632'), + (628, 639, 'not_attending', '2021-03-27 22:41:17', '2025-12-17 19:47:51', 'nm687ZR4', '3536656'), + (628, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'nm687ZR4', '3539916'), + (628, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'nm687ZR4', '3539917'), + (628, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'nm687ZR4', '3539918'), + (628, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'nm687ZR4', '3539919'), + (628, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'nm687ZR4', '3539920'), + (628, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'nm687ZR4', '3539921'), + (628, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'nm687ZR4', '3539922'), + (628, 648, 'not_attending', '2021-03-27 22:39:54', '2025-12-17 19:47:47', 'nm687ZR4', '3539923'), + (628, 649, 'not_attending', '2021-03-27 22:39:45', '2025-12-17 19:47:51', 'nm687ZR4', '3539927'), + (628, 650, 'not_attending', '2021-03-27 22:39:14', '2025-12-17 19:47:44', 'nm687ZR4', '3539928'), + (628, 706, 'not_attending', '2021-03-27 22:39:27', '2025-12-17 19:47:45', 'nm687ZR4', '3582734'), + (628, 717, 'not_attending', '2021-03-27 22:39:08', '2025-12-17 19:47:44', 'nm687ZR4', '3619523'), + (628, 718, 'not_attending', '2021-03-27 22:39:21', '2025-12-17 19:47:44', 'nm687ZR4', '3626844'), + (628, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nm687ZR4', '4356801'), + (628, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'nm687ZR4', '4366187'), + (628, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'nm687ZR4', '4420735'), + (628, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nm687ZR4', '4420738'), + (628, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nm687ZR4', '4420739'), + (628, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm687ZR4', '4420741'), + (628, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nm687ZR4', '4420744'), + (628, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nm687ZR4', '4420747'), + (628, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nm687ZR4', '4420748'), + (628, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nm687ZR4', '4420749'), + (628, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nm687ZR4', '4461883'), + (628, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nm687ZR4', '4508342'), + (628, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:34', 'nm687ZR4', '4568602'), + (628, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nm687ZR4', '4572153'), + (628, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'nm687ZR4', '4585962'), + (628, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'nm687ZR4', '4596356'), + (628, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nm687ZR4', '4598860'), + (628, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'nm687ZR4', '4598861'), + (628, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'nm687ZR4', '4602797'), + (628, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'nm687ZR4', '4637896'), + (628, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nm687ZR4', '4642994'), + (628, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'nm687ZR4', '4642995'), + (628, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'nm687ZR4', '4642996'), + (628, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'nm687ZR4', '4642997'), + (628, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'nm687ZR4', '4645687'), + (628, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nm687ZR4', '4645698'), + (628, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'nm687ZR4', '4645704'), + (628, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'nm687ZR4', '4645705'), + (628, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nm687ZR4', '4668385'), + (628, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nm687ZR4', '4694407'), + (628, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm687ZR4', '4736497'), + (628, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nm687ZR4', '4736499'), + (628, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm687ZR4', '4736500'), + (628, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nm687ZR4', '4736503'), + (628, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nm687ZR4', '4736504'), + (628, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nm687ZR4', '4746789'), + (628, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'nm687ZR4', '4753929'), + (628, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nm687ZR4', '5038850'), + (628, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nm687ZR4', '5045826'), + (628, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm687ZR4', '5132533'), + (628, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'nm687ZR4', '5186582'), + (628, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nm687ZR4', '5186583'), + (628, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nm687ZR4', '5186585'), + (628, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'nm687ZR4', '5190437'), + (628, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nm687ZR4', '5195095'), + (628, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm687ZR4', '5215989'), + (628, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm687ZR4', '5223686'), + (628, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nm687ZR4', '5247467'), + (628, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nm687ZR4', '5260800'), + (628, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nm687ZR4', '5269930'), + (628, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nm687ZR4', '5271448'), + (628, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'nm687ZR4', '5271449'), + (628, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm687ZR4', '5278159'), + (628, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'nm687ZR4', '5363695'), + (628, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm687ZR4', '5365960'), + (628, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm687ZR4', '5378247'), + (628, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'nm687ZR4', '5389605'), + (628, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nm687ZR4', '5397265'), + (628, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm687ZR4', '5404786'), + (628, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm687ZR4', '5405203'), + (628, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm687ZR4', '5412550'), + (628, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm687ZR4', '5415046'), + (628, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm687ZR4', '5422086'), + (628, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nm687ZR4', '5422406'), + (628, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm687ZR4', '5424565'), + (628, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm687ZR4', '5426882'), + (628, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm687ZR4', '5441125'), + (628, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm687ZR4', '5441126'), + (628, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nm687ZR4', '5441128'), + (628, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm687ZR4', '5441131'), + (628, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm687ZR4', '5441132'), + (628, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm687ZR4', '5453325'), + (628, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm687ZR4', '5454516'), + (628, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm687ZR4', '5454605'), + (628, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm687ZR4', '5455037'), + (628, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm687ZR4', '5461278'), + (628, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm687ZR4', '5469480'), + (628, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm687ZR4', '5474663'), + (628, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm687ZR4', '5482022'), + (628, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm687ZR4', '5488912'), + (628, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm687ZR4', '5492192'), + (628, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm687ZR4', '5493139'), + (628, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm687ZR4', '5493200'), + (628, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm687ZR4', '5502188'), + (628, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm687ZR4', '5505059'), + (628, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm687ZR4', '5509055'), + (628, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm687ZR4', '5512862'), + (628, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm687ZR4', '5513985'), + (628, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'nm687ZR4', '5519981'), + (628, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm687ZR4', '5522550'), + (628, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm687ZR4', '5534683'), + (628, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm687ZR4', '5537735'), + (628, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm687ZR4', '5540859'), + (628, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm687ZR4', '5546619'), + (628, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm687ZR4', '5557747'), + (628, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm687ZR4', '5560255'), + (628, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm687ZR4', '5562906'), + (628, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm687ZR4', '5600604'), + (628, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm687ZR4', '5605544'), + (628, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm687ZR4', '5630960'), + (628, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm687ZR4', '5630961'), + (628, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm687ZR4', '5630962'), + (628, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm687ZR4', '5630966'), + (628, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm687ZR4', '5630967'), + (628, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm687ZR4', '5630968'), + (628, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm687ZR4', '5635406'), + (628, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm687ZR4', '5638765'), + (628, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm687ZR4', '5640097'), + (628, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm687ZR4', '5640843'), + (628, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm687ZR4', '5641521'), + (628, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm687ZR4', '5642818'), + (628, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm687ZR4', '5652395'), + (628, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm687ZR4', '5670445'), + (628, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm687ZR4', '5671637'), + (628, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm687ZR4', '5672329'), + (628, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm687ZR4', '5674057'), + (628, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm687ZR4', '5674060'), + (628, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm687ZR4', '5677461'), + (628, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm687ZR4', '5698046'), + (628, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm687ZR4', '5699760'), + (628, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm687ZR4', '5741601'), + (628, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm687ZR4', '5763458'), + (628, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm687ZR4', '5774172'), + (628, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'nm687ZR4', '5818247'), + (628, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm687ZR4', '5819471'), + (628, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'nm687ZR4', '5827739'), + (628, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm687ZR4', '5844306'), + (628, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm687ZR4', '5850159'), + (628, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm687ZR4', '5858999'), + (628, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm687ZR4', '5871984'), + (628, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm687ZR4', '5876354'), + (628, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm687ZR4', '5880939'), + (628, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm687ZR4', '5880940'), + (628, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm687ZR4', '5880942'), + (628, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm687ZR4', '5880943'), + (628, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm687ZR4', '5887890'), + (628, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm687ZR4', '5888598'), + (628, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm687ZR4', '5893260'), + (628, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm687ZR4', '5899826'), + (628, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm687ZR4', '5900199'), + (628, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm687ZR4', '5900200'), + (628, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm687ZR4', '5900202'), + (628, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm687ZR4', '5900203'), + (628, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm687ZR4', '5901108'), + (628, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm687ZR4', '5901126'), + (628, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm687ZR4', '5909655'), + (628, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm687ZR4', '5910522'), + (628, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm687ZR4', '5910526'), + (628, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm687ZR4', '5910528'), + (628, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm687ZR4', '5916219'), + (628, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm687ZR4', '5936234'), + (628, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm687ZR4', '5958351'), + (628, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm687ZR4', '5959751'), + (628, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm687ZR4', '5959755'), + (628, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm687ZR4', '5960055'), + (628, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm687ZR4', '5961684'), + (628, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm687ZR4', '5962132'), + (628, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nm687ZR4', '5962133'), + (628, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm687ZR4', '5962134'), + (628, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm687ZR4', '5962317'), + (628, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm687ZR4', '5962318'), + (628, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nm687ZR4', '5965933'), + (628, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm687ZR4', '5967014'), + (628, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm687ZR4', '5972815'), + (628, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm687ZR4', '5974016'), + (628, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm687ZR4', '5981515'), + (628, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm687ZR4', '5993516'), + (628, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm687ZR4', '5998939'), + (628, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm687ZR4', '6028191'), + (628, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm687ZR4', '6040066'), + (628, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm687ZR4', '6042717'), + (628, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm687ZR4', '6044838'), + (628, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm687ZR4', '6044839'), + (628, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm687ZR4', '6045684'), + (628, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm687ZR4', '6050104'), + (628, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm687ZR4', '6053195'), + (628, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm687ZR4', '6053198'), + (628, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm687ZR4', '6056085'), + (628, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm687ZR4', '6056916'), + (628, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm687ZR4', '6059290'), + (628, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm687ZR4', '6060328'), + (628, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm687ZR4', '6061037'), + (628, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm687ZR4', '6061039'), + (628, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm687ZR4', '6067245'), + (628, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm687ZR4', '6068094'), + (628, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm687ZR4', '6068252'), + (628, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm687ZR4', '6068253'), + (628, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm687ZR4', '6068254'), + (628, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm687ZR4', '6068280'), + (628, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm687ZR4', '6069093'), + (628, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm687ZR4', '6072528'), + (628, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm687ZR4', '6079840'), + (628, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm687ZR4', '6083398'), + (628, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm687ZR4', '6093504'), + (628, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm687ZR4', '6097414'), + (628, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm687ZR4', '6097442'), + (628, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm687ZR4', '6097684'), + (628, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm687ZR4', '6098762'), + (628, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm687ZR4', '6101361'), + (628, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm687ZR4', '6101362'), + (628, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm687ZR4', '6107314'), + (628, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm687ZR4', '6120034'), + (628, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'nm687ZR4', '6136733'), + (628, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm687ZR4', '6137989'), + (628, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm687ZR4', '6150864'), + (628, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm687ZR4', '6155491'), + (628, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm687ZR4', '6164417'), + (628, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm687ZR4', '6166388'), + (628, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm687ZR4', '6176439'), + (628, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm687ZR4', '6182410'), + (628, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm687ZR4', '6185812'), + (628, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm687ZR4', '6187651'), + (628, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm687ZR4', '6187963'), + (628, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm687ZR4', '6187964'), + (628, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm687ZR4', '6187966'), + (628, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm687ZR4', '6187967'), + (628, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm687ZR4', '6187969'), + (628, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm687ZR4', '6334878'), + (628, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm687ZR4', '6337236'), + (628, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm687ZR4', '6337970'), + (628, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm687ZR4', '6338308'), + (628, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm687ZR4', '6341710'), + (628, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm687ZR4', '6342044'), + (628, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm687ZR4', '6342298'), + (628, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm687ZR4', '6343294'), + (628, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm687ZR4', '6347034'), + (628, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm687ZR4', '6347056'), + (628, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm687ZR4', '6353830'), + (628, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm687ZR4', '6353831'), + (628, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm687ZR4', '6357867'), + (628, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm687ZR4', '6358652'), + (628, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm687ZR4', '6361709'), + (628, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm687ZR4', '6361710'), + (628, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm687ZR4', '6361711'), + (628, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm687ZR4', '6361712'), + (628, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm687ZR4', '6361713'), + (628, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'nm687ZR4', '6382573'), + (628, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm687ZR4', '6388604'), + (628, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm687ZR4', '6394629'), + (628, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm687ZR4', '6394631'), + (628, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm687ZR4', '6440863'), + (628, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm687ZR4', '6445440'), + (628, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm687ZR4', '6453951'), + (628, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm687ZR4', '6461696'), + (628, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm687ZR4', '6462129'), + (628, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm687ZR4', '6463218'), + (628, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm687ZR4', '6472181'), + (628, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm687ZR4', '6482693'), + (628, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'nm687ZR4', '6484200'), + (628, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm687ZR4', '6484680'), + (628, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm687ZR4', '6507741'), + (628, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm687ZR4', '6514659'), + (628, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm687ZR4', '6514660'), + (628, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm687ZR4', '6519103'), + (628, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm687ZR4', '6535681'), + (628, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm687ZR4', '6584747'), + (628, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm687ZR4', '6587097'), + (628, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm687ZR4', '6609022'), + (628, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'nm687ZR4', '6632757'), + (628, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm687ZR4', '6644187'), + (628, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm687ZR4', '6648951'), + (628, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm687ZR4', '6648952'), + (628, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm687ZR4', '6655401'), + (628, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm687ZR4', '6661585'), + (628, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm687ZR4', '6661588'), + (628, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm687ZR4', '6661589'), + (628, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm687ZR4', '6699906'), + (628, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm687ZR4', '6699913'), + (628, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm687ZR4', '6701109'), + (628, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm687ZR4', '6705219'), + (628, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm687ZR4', '6710153'), + (628, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm687ZR4', '6711552'), + (628, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'nm687ZR4', '6711553'), + (628, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm687ZR4', '6722688'), + (628, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm687ZR4', '6730620'), + (628, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm687ZR4', '6740364'), + (628, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm687ZR4', '6743829'), + (628, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm687ZR4', '7030380'), + (628, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'nm687ZR4', '7033677'), + (628, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm687ZR4', '7044715'), + (628, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm687ZR4', '7050318'), + (628, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm687ZR4', '7050319'), + (628, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm687ZR4', '7050322'), + (628, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm687ZR4', '7057804'), + (628, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm687ZR4', '7072824'), + (628, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm687ZR4', '7074348'), + (628, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm687ZR4', '7074364'), + (628, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'nm687ZR4', '7089267'), + (628, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm687ZR4', '7098747'), + (628, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm687ZR4', '7113468'), + (628, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm687ZR4', '7114856'), + (628, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm687ZR4', '7114951'), + (628, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm687ZR4', '7114955'), + (628, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm687ZR4', '7114956'), + (628, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm687ZR4', '7114957'), + (628, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm687ZR4', '7159484'), + (628, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm687ZR4', '7178446'), + (628, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'nm687ZR4', '7220467'), + (628, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm687ZR4', '7240354'), + (628, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm687ZR4', '7251633'), + (628, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm687ZR4', '7324073'), + (628, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm687ZR4', '7324074'), + (628, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm687ZR4', '7324075'), + (628, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm687ZR4', '7324078'), + (628, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm687ZR4', '7324082'), + (628, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm687ZR4', '7331457'), + (628, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm687ZR4', '7363643'), + (628, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm687ZR4', '7368606'), + (628, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm687ZR4', '7397462'), + (628, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm687ZR4', '7424275'), + (628, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm687ZR4', '7432751'), + (628, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm687ZR4', '7432752'), + (628, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm687ZR4', '7432753'), + (628, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm687ZR4', '7432754'), + (628, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm687ZR4', '7432755'), + (628, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm687ZR4', '7432756'), + (628, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm687ZR4', '7432758'), + (628, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm687ZR4', '7432759'), + (628, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm687ZR4', '7433834'), + (628, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'nm687ZR4', '7470197'), + (628, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm687ZR4', '7685613'), + (628, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm687ZR4', '7688194'), + (628, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm687ZR4', '7688196'), + (628, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm687ZR4', '7688289'), + (628, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm687ZR4', '7692763'), + (628, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm687ZR4', '7697552'), + (628, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm687ZR4', '7699878'), + (628, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'nm687ZR4', '7704043'), + (628, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm687ZR4', '7712467'), + (628, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm687ZR4', '7713585'), + (628, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm687ZR4', '7713586'), + (628, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm687ZR4', '7738518'), + (628, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm687ZR4', '7750636'), + (628, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm687ZR4', '7796540'), + (628, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm687ZR4', '7796541'), + (628, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm687ZR4', '7796542'), + (628, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm687ZR4', '7825913'), + (628, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm687ZR4', '7826209'), + (628, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm687ZR4', '7834742'), + (628, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm687ZR4', '7842108'), + (628, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm687ZR4', '7842902'), + (628, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm687ZR4', '7842903'), + (628, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm687ZR4', '7842904'), + (628, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm687ZR4', '7842905'), + (628, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm687ZR4', '7855719'), + (628, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm687ZR4', '7860683'), + (628, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm687ZR4', '7860684'), + (628, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm687ZR4', '7866095'), + (628, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm687ZR4', '7869170'), + (628, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm687ZR4', '7869188'), + (628, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm687ZR4', '7869201'), + (628, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm687ZR4', '7877465'), + (628, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm687ZR4', '7888250'), + (628, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm687ZR4', '7904777'), + (628, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm687ZR4', '8349164'), + (628, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm687ZR4', '8349545'), + (628, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm687ZR4', '8368028'), + (628, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm687ZR4', '8368029'), + (628, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm687ZR4', '8388462'), + (628, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm687ZR4', '8400273'), + (628, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm687ZR4', '8400275'), + (628, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'nm687ZR4', '8400276'), + (628, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm687ZR4', '8404977'), + (628, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm687ZR4', '8430783'), + (628, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm687ZR4', '8430784'), + (628, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm687ZR4', '8430799'), + (628, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm687ZR4', '8430800'), + (628, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm687ZR4', '8430801'), + (628, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm687ZR4', '8438709'), + (628, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm687ZR4', '8457738'), + (628, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm687ZR4', '8459566'), + (628, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm687ZR4', '8459567'), + (628, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm687ZR4', '8461032'), + (628, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm687ZR4', '8477877'), + (628, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm687ZR4', '8485688'), + (628, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm687ZR4', '8490587'), + (628, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm687ZR4', '8493552'), + (628, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm687ZR4', '8493553'), + (628, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm687ZR4', '8493554'), + (628, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm687ZR4', '8493555'), + (628, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm687ZR4', '8493556'), + (628, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm687ZR4', '8493557'), + (628, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm687ZR4', '8493558'), + (628, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm687ZR4', '8493559'), + (628, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm687ZR4', '8493560'), + (628, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'nm687ZR4', '8493561'), + (628, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm687ZR4', '8493572'), + (628, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm687ZR4', '8540725'), + (628, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm687ZR4', '8555421'), + (629, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4D9EVr9d', '5630960'), + (629, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4D9EVr9d', '5630961'), + (629, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4D9EVr9d', '5630962'), + (629, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4D9EVr9d', '5630966'), + (629, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4D9EVr9d', '5630967'), + (629, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4D9EVr9d', '5630968'), + (629, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', '4D9EVr9d', '5638765'), + (629, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4D9EVr9d', '5640097'), + (629, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4D9EVr9d', '5642818'), + (629, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4D9EVr9d', '5670445'), + (629, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4D9EVr9d', '5671637'), + (629, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4D9EVr9d', '5672329'), + (629, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4D9EVr9d', '5674057'), + (629, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4D9EVr9d', '5674060'), + (629, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4D9EVr9d', '5677461'), + (629, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4D9EVr9d', '5698046'), + (629, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', '4D9EVr9d', '5699760'), + (629, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4D9EVr9d', '5741601'), + (629, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4D9EVr9d', '5763458'), + (629, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4D9EVr9d', '5774172'), + (629, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4D9EVr9d', '5818247'), + (629, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4D9EVr9d', '5819471'), + (629, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4D9EVr9d', '5827739'), + (629, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4D9EVr9d', '5844306'), + (629, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4D9EVr9d', '5850159'), + (629, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4D9EVr9d', '5858999'), + (629, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4D9EVr9d', '5871984'), + (629, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4D9EVr9d', '5876354'), + (629, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4D9EVr9d', '6045684'), + (630, 950, 'attending', '2021-08-17 17:21:24', '2025-12-17 19:47:42', 'd5DwZKq4', '4315730'), + (630, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd5DwZKq4', '4356801'), + (630, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'd5DwZKq4', '4366186'), + (630, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'd5DwZKq4', '4366187'), + (630, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'd5DwZKq4', '4420735'), + (630, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'd5DwZKq4', '4420738'), + (630, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'd5DwZKq4', '4420739'), + (630, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'd5DwZKq4', '4420741'), + (630, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'd5DwZKq4', '4420744'), + (630, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'd5DwZKq4', '4420747'), + (630, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'd5DwZKq4', '4420748'), + (630, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'd5DwZKq4', '4420749'), + (630, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'd5DwZKq4', '4461883'), + (630, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'd5DwZKq4', '4508342'), + (630, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd5DwZKq4', '4568602'), + (630, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'd5DwZKq4', '4572153'), + (630, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'd5DwZKq4', '4585962'), + (630, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'd5DwZKq4', '4596356'), + (630, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'd5DwZKq4', '4598860'), + (630, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'd5DwZKq4', '4598861'), + (630, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'd5DwZKq4', '4602797'), + (630, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'd5DwZKq4', '4637896'), + (630, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'd5DwZKq4', '4642994'), + (630, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'd5DwZKq4', '4642995'), + (630, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'd5DwZKq4', '4642996'), + (630, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'd5DwZKq4', '4642997'), + (630, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd5DwZKq4', '4645687'), + (630, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd5DwZKq4', '4645698'), + (630, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd5DwZKq4', '4645704'), + (630, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd5DwZKq4', '4645705'), + (630, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'd5DwZKq4', '4668385'), + (630, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd5DwZKq4', '6045684'), + (631, 3238, 'maybe', '2025-08-27 05:41:22', '2025-12-17 19:46:11', 'dwqlLk8A', '8493554'), + (631, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'dwqlLk8A', '8529058'), + (632, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'myxyao5d', '4736503'), + (632, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'myxyao5d', '4736504'), + (632, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'myxyao5d', '5132533'), + (632, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'myxyao5d', '5186582'), + (632, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'myxyao5d', '5186583'), + (632, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'myxyao5d', '5186585'), + (632, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'myxyao5d', '5190437'), + (632, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'myxyao5d', '5196763'), + (632, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'myxyao5d', '5199460'), + (632, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'myxyao5d', '5215989'), + (632, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'myxyao5d', '5223686'), + (632, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'myxyao5d', '5227432'), + (632, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myxyao5d', '6045684'), + (633, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'v4DNqB9m', '3517816'), + (633, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'v4DNqB9m', '3539916'), + (633, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4DNqB9m', '3539927'), + (633, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4DNqB9m', '3582734'), + (633, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4DNqB9m', '3619523'), + (633, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'v4DNqB9m', '3674262'), + (633, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'v4DNqB9m', '3677402'), + (633, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DNqB9m', '6045684'), + (634, 2986, 'not_attending', '2025-02-07 15:01:13', '2025-12-17 19:46:23', 'Arx1nGgd', '7835405'), + (634, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Arx1nGgd', '7842108'), + (634, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Arx1nGgd', '7842902'), + (634, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Arx1nGgd', '7842903'), + (634, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Arx1nGgd', '7842904'), + (634, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Arx1nGgd', '7842905'), + (634, 2999, 'not_attending', '2025-02-13 02:18:05', '2025-12-17 19:46:23', 'Arx1nGgd', '7844784'), + (634, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Arx1nGgd', '7855719'), + (634, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Arx1nGgd', '7860683'), + (634, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Arx1nGgd', '7860684'), + (634, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Arx1nGgd', '7866095'), + (634, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Arx1nGgd', '7869170'), + (634, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Arx1nGgd', '7869201'), + (634, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'Arx1nGgd', '7872088'), + (635, 1153, 'not_attending', '2022-01-22 20:21:28', '2025-12-17 19:47:32', '4WPeaW0d', '4708707'), + (635, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4WPeaW0d', '4736497'), + (635, 1176, 'not_attending', '2022-02-05 15:12:28', '2025-12-17 19:47:32', '4WPeaW0d', '4736498'), + (635, 1177, 'not_attending', '2022-02-12 18:58:33', '2025-12-17 19:47:32', '4WPeaW0d', '4736499'), + (635, 1178, 'attending', '2022-01-29 22:14:15', '2025-12-17 19:47:32', '4WPeaW0d', '4736500'), + (635, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4WPeaW0d', '4736503'), + (635, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4WPeaW0d', '4736504'), + (635, 1183, 'attending', '2022-01-09 04:00:57', '2025-12-17 19:47:31', '4WPeaW0d', '4742171'), + (635, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4WPeaW0d', '4746789'), + (635, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4WPeaW0d', '4753929'), + (635, 1193, 'attending', '2022-01-21 12:57:21', '2025-12-17 19:47:32', '4WPeaW0d', '4759563'), + (635, 1198, 'attending', '2022-01-20 21:11:19', '2025-12-17 19:47:32', '4WPeaW0d', '4766801'), + (635, 1199, 'attending', '2022-01-21 04:49:09', '2025-12-17 19:47:32', '4WPeaW0d', '4766802'), + (635, 1201, 'attending', '2022-01-19 00:31:18', '2025-12-17 19:47:32', '4WPeaW0d', '4766841'), + (635, 1202, 'not_attending', '2022-01-27 23:54:29', '2025-12-17 19:47:32', '4WPeaW0d', '4769423'), + (635, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4WPeaW0d', '5038850'), + (635, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4WPeaW0d', '5045826'), + (635, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4WPeaW0d', '5132533'), + (635, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4WPeaW0d', '5186582'), + (635, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4WPeaW0d', '5186583'), + (635, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4WPeaW0d', '5186585'), + (635, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4WPeaW0d', '5190437'), + (635, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', '4WPeaW0d', '5215989'), + (635, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WPeaW0d', '6045684'), + (636, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dx656kEA', '5269930'), + (636, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dx656kEA', '5271448'), + (636, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dx656kEA', '5271449'), + (636, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dx656kEA', '5276469'), + (636, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx656kEA', '5278159'), + (636, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dx656kEA', '5363695'), + (636, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dx656kEA', '5365960'), + (636, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dx656kEA', '5368973'), + (636, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dx656kEA', '5378247'), + (636, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dx656kEA', '5389605'), + (636, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dx656kEA', '5397265'), + (636, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dx656kEA', '5403967'), + (636, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dx656kEA', '5404786'), + (636, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dx656kEA', '5405203'), + (636, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dx656kEA', '5411699'), + (636, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dx656kEA', '5412550'), + (636, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dx656kEA', '5415046'), + (636, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dx656kEA', '5422086'), + (636, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dx656kEA', '5422406'), + (636, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dx656kEA', '5424565'), + (636, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dx656kEA', '5426882'), + (636, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dx656kEA', '5427083'), + (636, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'dx656kEA', '5441125'), + (636, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dx656kEA', '5441126'), + (636, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dx656kEA', '5441128'), + (636, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dx656kEA', '5441131'), + (636, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dx656kEA', '5441132'), + (636, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dx656kEA', '5446643'), + (636, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dx656kEA', '5453325'), + (636, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dx656kEA', '5454516'), + (636, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dx656kEA', '5454605'), + (636, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dx656kEA', '5455037'), + (636, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dx656kEA', '5461278'), + (636, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dx656kEA', '5469480'), + (636, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dx656kEA', '5471073'), + (636, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dx656kEA', '5474663'), + (636, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dx656kEA', '5482022'), + (636, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dx656kEA', '5482793'), + (636, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dx656kEA', '5488912'), + (636, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dx656kEA', '5492192'), + (636, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dx656kEA', '5493139'), + (636, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dx656kEA', '5493200'), + (636, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dx656kEA', '5502188'), + (636, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dx656kEA', '5505059'), + (636, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dx656kEA', '5509055'), + (636, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dx656kEA', '5512862'), + (636, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dx656kEA', '5513985'), + (636, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dx656kEA', '5519981'), + (636, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dx656kEA', '5522550'), + (636, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dx656kEA', '5534683'), + (636, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dx656kEA', '5546619'), + (636, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dx656kEA', '5555245'), + (636, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dx656kEA', '5557747'), + (636, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx656kEA', '6045684'), + (637, 2210, 'not_attending', '2023-08-30 19:15:02', '2025-12-17 19:46:55', 'm6xlG204', '6361711'), + (637, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm6xlG204', '6361713'), + (637, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'm6xlG204', '6388604'), + (637, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm6xlG204', '6394629'), + (637, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm6xlG204', '6394631'), + (637, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'm6xlG204', '6431478'), + (638, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4k3aBJR4', '5670445'), + (638, 1824, 'not_attending', '2022-11-30 14:58:07', '2025-12-17 19:47:04', '4k3aBJR4', '5774172'), + (638, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4k3aBJR4', '5818247'), + (638, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4k3aBJR4', '5819471'), + (638, 1837, 'attending', '2022-12-07 03:07:56', '2025-12-17 19:47:16', '4k3aBJR4', '5820146'), + (638, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4k3aBJR4', '5827739'), + (638, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4k3aBJR4', '5844306'), + (638, 1846, 'not_attending', '2022-12-18 18:54:20', '2025-12-17 19:47:04', '4k3aBJR4', '5845237'), + (638, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4k3aBJR4', '5850159'), + (638, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4k3aBJR4', '5858999'), + (638, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4k3aBJR4', '5871984'), + (638, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4k3aBJR4', '5876354'), + (638, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4k3aBJR4', '6045684'), + (638, 2146, 'maybe', '2023-07-21 23:20:57', '2025-12-17 19:46:53', '4k3aBJR4', '6335638'), + (638, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4k3aBJR4', '6337236'), + (638, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4k3aBJR4', '6337970'), + (638, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', '4k3aBJR4', '6338308'), + (638, 2159, 'attending', '2023-07-22 22:18:47', '2025-12-17 19:46:53', '4k3aBJR4', '6338355'), + (638, 2160, 'attending', '2023-07-24 21:06:34', '2025-12-17 19:46:54', '4k3aBJR4', '6338358'), + (638, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4k3aBJR4', '6341710'), + (638, 2165, 'attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4k3aBJR4', '6342044'), + (638, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4k3aBJR4', '6342298'), + (638, 2171, 'maybe', '2023-07-24 21:06:12', '2025-12-17 19:46:54', '4k3aBJR4', '6342328'), + (638, 2172, 'attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', '4k3aBJR4', '6342591'), + (638, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4k3aBJR4', '6343294'), + (638, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4k3aBJR4', '6347034'), + (638, 2177, 'maybe', '2023-08-07 18:31:55', '2025-12-17 19:46:55', '4k3aBJR4', '6347053'), + (638, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4k3aBJR4', '6347056'), + (638, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4k3aBJR4', '6353830'), + (638, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4k3aBJR4', '6353831'), + (638, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4k3aBJR4', '6357867'), + (638, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4k3aBJR4', '6358652'), + (638, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4k3aBJR4', '6361709'), + (638, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4k3aBJR4', '6361710'), + (638, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4k3aBJR4', '6361711'), + (638, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4k3aBJR4', '6361712'), + (638, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4k3aBJR4', '6361713'), + (638, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4k3aBJR4', '6382573'), + (638, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4k3aBJR4', '6388604'), + (638, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4k3aBJR4', '6394629'), + (638, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4k3aBJR4', '6394631'), + (638, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4k3aBJR4', '6440863'), + (638, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4k3aBJR4', '6445440'), + (638, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4k3aBJR4', '6453951'), + (638, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4k3aBJR4', '6461696'), + (638, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4k3aBJR4', '6462129'), + (638, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4k3aBJR4', '6463218'), + (638, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4k3aBJR4', '6472181'), + (638, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4k3aBJR4', '6482693'), + (638, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4k3aBJR4', '6484200'), + (638, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4k3aBJR4', '6484680'), + (638, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4k3aBJR4', '6507741'), + (638, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4k3aBJR4', '6514659'), + (638, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4k3aBJR4', '6514660'), + (638, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4k3aBJR4', '6519103'), + (638, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4k3aBJR4', '6535681'), + (638, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4k3aBJR4', '6584747'), + (638, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4k3aBJR4', '6587097'), + (638, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4k3aBJR4', '6609022'), + (638, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4k3aBJR4', '6632757'), + (638, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4k3aBJR4', '6644187'), + (638, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4k3aBJR4', '6648951'), + (638, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4k3aBJR4', '6648952'), + (638, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4k3aBJR4', '6655401'), + (638, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4k3aBJR4', '6661585'), + (638, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4k3aBJR4', '6661588'), + (638, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4k3aBJR4', '6661589'), + (638, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4k3aBJR4', '6699906'), + (638, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4k3aBJR4', '6699913'), + (638, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4k3aBJR4', '6701109'), + (638, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4k3aBJR4', '6705219'), + (638, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4k3aBJR4', '6710153'), + (638, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4k3aBJR4', '6711552'), + (638, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4k3aBJR4', '6711553'), + (638, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4k3aBJR4', '6722688'), + (638, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4k3aBJR4', '6730620'), + (638, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4k3aBJR4', '6740364'), + (638, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4k3aBJR4', '6743829'), + (638, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4k3aBJR4', '7030380'), + (638, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4k3aBJR4', '7033677'), + (638, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4k3aBJR4', '7044715'), + (638, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4k3aBJR4', '7050318'), + (638, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4k3aBJR4', '7050319'), + (638, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4k3aBJR4', '7050322'), + (638, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4k3aBJR4', '7057804'), + (638, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4k3aBJR4', '7072824'), + (638, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4k3aBJR4', '7074348'), + (638, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4k3aBJR4', '7074364'), + (638, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4k3aBJR4', '7089267'), + (638, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4k3aBJR4', '7098747'), + (638, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4k3aBJR4', '7113468'), + (638, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4k3aBJR4', '7114856'), + (638, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4k3aBJR4', '7114951'), + (638, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4k3aBJR4', '7114955'), + (638, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4k3aBJR4', '7114956'), + (638, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4k3aBJR4', '7114957'), + (638, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4k3aBJR4', '7159484'), + (638, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4k3aBJR4', '7178446'), + (638, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4k3aBJR4', '7220467'), + (638, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4k3aBJR4', '7240354'), + (638, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4k3aBJR4', '7251633'), + (638, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4k3aBJR4', '7324073'), + (638, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4k3aBJR4', '7324074'), + (638, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4k3aBJR4', '7324075'), + (638, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4k3aBJR4', '7324078'), + (638, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4k3aBJR4', '7324082'), + (638, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4k3aBJR4', '7331457'), + (638, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4k3aBJR4', '7363643'), + (638, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4k3aBJR4', '7368606'), + (638, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4k3aBJR4', '7397462'), + (638, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4k3aBJR4', '7424275'), + (638, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4k3aBJR4', '7432751'), + (638, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4k3aBJR4', '7432752'), + (638, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4k3aBJR4', '7432753'), + (638, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4k3aBJR4', '7432754'), + (638, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4k3aBJR4', '7432755'), + (638, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4k3aBJR4', '7432756'), + (638, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4k3aBJR4', '7432758'), + (638, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4k3aBJR4', '7432759'), + (638, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4k3aBJR4', '7433834'), + (638, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4k3aBJR4', '7470197'), + (638, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4k3aBJR4', '7685613'), + (638, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4k3aBJR4', '7688194'), + (638, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4k3aBJR4', '7688196'), + (638, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4k3aBJR4', '7688289'), + (638, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4k3aBJR4', '7692763'), + (638, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4k3aBJR4', '7697552'), + (638, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4k3aBJR4', '7699878'), + (638, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4k3aBJR4', '7704043'), + (638, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4k3aBJR4', '7712467'), + (638, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4k3aBJR4', '7713585'), + (638, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4k3aBJR4', '7713586'), + (638, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4k3aBJR4', '7738518'), + (638, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4k3aBJR4', '7750636'), + (638, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4k3aBJR4', '7796540'), + (638, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4k3aBJR4', '7796541'), + (638, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4k3aBJR4', '7796542'), + (638, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4k3aBJR4', '7825913'), + (638, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4k3aBJR4', '7826209'), + (638, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4k3aBJR4', '7834742'), + (638, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4k3aBJR4', '7842108'), + (638, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4k3aBJR4', '7842902'), + (638, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4k3aBJR4', '7842903'), + (638, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4k3aBJR4', '7842904'), + (638, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4k3aBJR4', '7842905'), + (638, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4k3aBJR4', '7855719'), + (638, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4k3aBJR4', '7860683'), + (638, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4k3aBJR4', '7860684'), + (638, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4k3aBJR4', '7866095'), + (638, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4k3aBJR4', '7869170'), + (638, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4k3aBJR4', '7869188'), + (638, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4k3aBJR4', '7869201'), + (638, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4k3aBJR4', '7877465'), + (638, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4k3aBJR4', '7888250'), + (638, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4k3aBJR4', '7904777'), + (638, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4k3aBJR4', '8349164'), + (638, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4k3aBJR4', '8349545'), + (638, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4k3aBJR4', '8368028'), + (638, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4k3aBJR4', '8368029'), + (638, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4k3aBJR4', '8388462'), + (638, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4k3aBJR4', '8400273'), + (638, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4k3aBJR4', '8400275'), + (638, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '4k3aBJR4', '8400276'), + (638, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4k3aBJR4', '8404977'), + (638, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4k3aBJR4', '8430783'), + (638, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4k3aBJR4', '8430784'), + (638, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4k3aBJR4', '8430799'), + (638, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4k3aBJR4', '8430800'), + (638, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4k3aBJR4', '8430801'), + (638, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4k3aBJR4', '8438709'), + (638, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4k3aBJR4', '8457738'), + (638, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4k3aBJR4', '8459566'), + (638, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4k3aBJR4', '8459567'), + (638, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4k3aBJR4', '8461032'), + (638, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4k3aBJR4', '8477877'), + (638, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4k3aBJR4', '8485688'), + (638, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4k3aBJR4', '8490587'), + (638, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4k3aBJR4', '8493552'), + (638, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4k3aBJR4', '8493553'), + (638, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4k3aBJR4', '8493554'), + (638, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4k3aBJR4', '8493555'), + (638, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4k3aBJR4', '8493556'), + (638, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4k3aBJR4', '8493557'), + (638, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4k3aBJR4', '8493558'), + (638, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4k3aBJR4', '8493559'), + (638, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4k3aBJR4', '8493560'), + (638, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4k3aBJR4', '8493561'), + (638, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4k3aBJR4', '8493572'), + (638, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '4k3aBJR4', '8540725'), + (638, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4k3aBJR4', '8555421'), + (639, 253, 'attending', '2021-04-04 21:32:52', '2025-12-17 19:47:44', '2d20EjoA', '3149484'), + (639, 254, 'attending', '2021-03-07 21:04:12', '2025-12-17 19:47:51', '2d20EjoA', '3149485'), + (639, 255, 'not_attending', '2021-03-19 04:18:49', '2025-12-17 19:47:43', '2d20EjoA', '3149486'), + (639, 256, 'attending', '2021-05-04 19:54:27', '2025-12-17 19:47:46', '2d20EjoA', '3149487'), + (639, 257, 'attending', '2021-04-18 13:53:18', '2025-12-17 19:47:45', '2d20EjoA', '3149488'), + (639, 396, 'attending', '2021-04-28 15:15:17', '2025-12-17 19:47:46', '2d20EjoA', '3236451'), + (639, 401, 'attending', '2021-05-09 20:47:53', '2025-12-17 19:47:46', '2d20EjoA', '3236456'), + (639, 403, 'attending', '2021-02-28 04:33:38', '2025-12-17 19:47:51', '2d20EjoA', '3236458'), + (639, 404, 'attending', '2021-03-16 20:47:37', '2025-12-17 19:47:51', '2d20EjoA', '3236460'), + (639, 406, 'not_attending', '2021-03-29 17:22:02', '2025-12-17 19:47:44', '2d20EjoA', '3236464'), + (639, 407, 'attending', '2021-04-14 14:57:34', '2025-12-17 19:47:44', '2d20EjoA', '3236465'), + (639, 429, 'attending', '2020-11-25 15:07:54', '2025-12-17 19:47:54', '2d20EjoA', '3250523'), + (639, 441, 'attending', '2020-11-13 05:01:38', '2025-12-17 19:47:54', '2d20EjoA', '3256169'), + (639, 452, 'attending', '2020-11-23 16:58:05', '2025-12-17 19:47:54', '2d20EjoA', '3272981'), + (639, 459, 'maybe', '2020-11-14 20:54:13', '2025-12-17 19:47:54', '2d20EjoA', '3281467'), + (639, 460, 'attending', '2020-11-18 03:01:53', '2025-12-17 19:47:54', '2d20EjoA', '3281468'), + (639, 463, 'attending', '2020-11-13 05:00:28', '2025-12-17 19:47:54', '2d20EjoA', '3281553'), + (639, 464, 'attending', '2020-11-19 23:35:56', '2025-12-17 19:47:54', '2d20EjoA', '3281554'), + (639, 465, 'attending', '2020-11-19 23:36:06', '2025-12-17 19:47:54', '2d20EjoA', '3281555'), + (639, 467, 'attending', '2020-11-15 04:49:08', '2025-12-17 19:47:54', '2d20EjoA', '3282756'), + (639, 468, 'attending', '2020-11-14 20:53:26', '2025-12-17 19:47:54', '2d20EjoA', '3285413'), + (639, 469, 'attending', '2020-11-19 23:35:37', '2025-12-17 19:47:54', '2d20EjoA', '3285414'), + (639, 477, 'attending', '2020-11-23 16:58:27', '2025-12-17 19:47:54', '2d20EjoA', '3289559'), + (639, 481, 'attending', '2020-11-23 16:46:42', '2025-12-17 19:47:54', '2d20EjoA', '3297764'), + (639, 482, 'attending', '2020-11-19 23:35:02', '2025-12-17 19:47:54', '2d20EjoA', '3297769'), + (639, 487, 'maybe', '2020-11-30 05:27:18', '2025-12-17 19:47:54', '2d20EjoA', '3311122'), + (639, 488, 'attending', '2020-11-29 14:01:36', '2025-12-17 19:47:54', '2d20EjoA', '3312757'), + (639, 489, 'maybe', '2020-11-27 17:46:45', '2025-12-17 19:47:54', '2d20EjoA', '3313022'), + (639, 490, 'attending', '2020-12-09 01:19:03', '2025-12-17 19:47:54', '2d20EjoA', '3313532'), + (639, 491, 'attending', '2020-12-09 03:28:56', '2025-12-17 19:47:55', '2d20EjoA', '3313533'), + (639, 492, 'attending', '2020-11-29 14:02:08', '2025-12-17 19:47:54', '2d20EjoA', '3313731'), + (639, 493, 'attending', '2020-11-29 14:00:33', '2025-12-17 19:47:54', '2d20EjoA', '3313856'), + (639, 495, 'attending', '2020-11-30 04:39:55', '2025-12-17 19:47:54', '2d20EjoA', '3314009'), + (639, 496, 'not_attending', '2020-12-10 21:43:55', '2025-12-17 19:47:54', '2d20EjoA', '3314269'), + (639, 497, 'attending', '2020-12-11 03:53:46', '2025-12-17 19:47:55', '2d20EjoA', '3314270'), + (639, 498, 'not_attending', '2020-12-02 11:01:32', '2025-12-17 19:47:54', '2d20EjoA', '3314302'), + (639, 499, 'attending', '2020-11-30 04:40:30', '2025-12-17 19:47:55', '2d20EjoA', '3314909'), + (639, 500, 'not_attending', '2020-12-11 03:53:54', '2025-12-17 19:47:55', '2d20EjoA', '3314964'), + (639, 502, 'attending', '2020-12-08 01:08:23', '2025-12-17 19:47:55', '2d20EjoA', '3323365'), + (639, 503, 'maybe', '2020-12-15 13:39:15', '2025-12-17 19:47:55', '2d20EjoA', '3323366'), + (639, 506, 'attending', '2020-12-08 19:26:58', '2025-12-17 19:47:55', '2d20EjoA', '3323375'), + (639, 508, 'attending', '2021-01-03 23:24:13', '2025-12-17 19:47:48', '2d20EjoA', '3324231'), + (639, 509, 'attending', '2021-01-03 23:24:28', '2025-12-17 19:47:49', '2d20EjoA', '3324232'), + (639, 510, 'attending', '2021-01-03 23:24:32', '2025-12-17 19:47:49', '2d20EjoA', '3324233'), + (639, 511, 'attending', '2020-12-08 19:29:55', '2025-12-17 19:47:55', '2d20EjoA', '3325335'), + (639, 512, 'attending', '2020-12-08 19:29:23', '2025-12-17 19:47:55', '2d20EjoA', '3325336'), + (639, 513, 'maybe', '2020-12-17 03:14:25', '2025-12-17 19:47:55', '2d20EjoA', '3329383'), + (639, 516, 'attending', '2020-12-17 00:46:43', '2025-12-17 19:47:48', '2d20EjoA', '3334530'), + (639, 517, 'attending', '2020-12-15 01:35:15', '2025-12-17 19:47:48', '2d20EjoA', '3337137'), + (639, 518, 'attending', '2020-12-15 01:35:10', '2025-12-17 19:47:48', '2d20EjoA', '3337138'), + (639, 526, 'attending', '2020-12-25 12:21:36', '2025-12-17 19:47:48', '2d20EjoA', '3351539'), + (639, 529, 'attending', '2021-01-03 23:23:13', '2025-12-17 19:47:48', '2d20EjoA', '3364568'), + (639, 532, 'attending', '2021-01-03 23:23:36', '2025-12-17 19:47:48', '2d20EjoA', '3381412'), + (639, 536, 'attending', '2021-01-06 03:08:14', '2025-12-17 19:47:48', '2d20EjoA', '3386848'), + (639, 537, 'attending', '2021-01-09 03:30:33', '2025-12-17 19:47:48', '2d20EjoA', '3387153'), + (639, 538, 'attending', '2021-01-10 04:06:16', '2025-12-17 19:47:48', '2d20EjoA', '3388151'), + (639, 540, 'attending', '2021-01-07 02:40:32', '2025-12-17 19:47:48', '2d20EjoA', '3389527'), + (639, 542, 'attending', '2021-01-11 20:52:46', '2025-12-17 19:47:48', '2d20EjoA', '3395013'), + (639, 543, 'maybe', '2021-01-11 20:54:28', '2025-12-17 19:47:48', '2d20EjoA', '3396499'), + (639, 544, 'maybe', '2021-01-12 20:26:14', '2025-12-17 19:47:48', '2d20EjoA', '3396500'), + (639, 545, 'attending', '2021-01-20 01:24:23', '2025-12-17 19:47:49', '2d20EjoA', '3396502'), + (639, 546, 'attending', '2021-01-11 20:55:29', '2025-12-17 19:47:49', '2d20EjoA', '3396503'), + (639, 547, 'attending', '2021-01-11 20:55:37', '2025-12-17 19:47:49', '2d20EjoA', '3396504'), + (639, 548, 'attending', '2021-01-11 20:54:44', '2025-12-17 19:47:48', '2d20EjoA', '3403650'), + (639, 549, 'attending', '2021-01-13 21:43:31', '2025-12-17 19:47:48', '2d20EjoA', '3406988'), + (639, 550, 'attending', '2021-01-13 21:43:27', '2025-12-17 19:47:48', '2d20EjoA', '3407018'), + (639, 554, 'attending', '2021-01-13 21:44:37', '2025-12-17 19:47:49', '2d20EjoA', '3408338'), + (639, 555, 'attending', '2021-01-20 05:17:18', '2025-12-17 19:47:49', '2d20EjoA', '3416576'), + (639, 556, 'attending', '2021-01-20 01:27:15', '2025-12-17 19:47:49', '2d20EjoA', '3417170'), + (639, 559, 'attending', '2021-01-27 22:14:20', '2025-12-17 19:47:49', '2d20EjoA', '3421439'), + (639, 564, 'maybe', '2021-01-24 08:56:39', '2025-12-17 19:47:49', '2d20EjoA', '3426074'), + (639, 565, 'attending', '2021-01-26 22:29:24', '2025-12-17 19:47:49', '2d20EjoA', '3426083'), + (639, 566, 'not_attending', '2021-01-30 05:42:37', '2025-12-17 19:47:50', '2d20EjoA', '3427928'), + (639, 567, 'attending', '2021-01-29 06:57:55', '2025-12-17 19:47:50', '2d20EjoA', '3428895'), + (639, 568, 'attending', '2021-01-27 22:14:41', '2025-12-17 19:47:50', '2d20EjoA', '3430267'), + (639, 570, 'attending', '2021-02-05 09:19:16', '2025-12-17 19:47:50', '2d20EjoA', '3435538'), + (639, 571, 'attending', '2021-02-10 22:28:31', '2025-12-17 19:47:50', '2d20EjoA', '3435539'), + (639, 572, 'attending', '2021-01-27 00:49:36', '2025-12-17 19:47:50', '2d20EjoA', '3435540'), + (639, 573, 'attending', '2021-02-26 22:35:17', '2025-12-17 19:47:50', '2d20EjoA', '3435542'), + (639, 574, 'attending', '2021-01-29 04:00:27', '2025-12-17 19:47:51', '2d20EjoA', '3435543'), + (639, 576, 'attending', '2021-01-29 03:58:56', '2025-12-17 19:47:50', '2d20EjoA', '3438748'), + (639, 577, 'attending', '2021-01-29 22:57:57', '2025-12-17 19:47:49', '2d20EjoA', '3439167'), + (639, 578, 'attending', '2021-01-29 03:59:22', '2025-12-17 19:47:50', '2d20EjoA', '3440043'), + (639, 579, 'attending', '2021-01-29 03:59:59', '2025-12-17 19:47:50', '2d20EjoA', '3440978'), + (639, 580, 'attending', '2021-01-31 03:57:57', '2025-12-17 19:47:50', '2d20EjoA', '3444240'), + (639, 582, 'attending', '2021-01-31 03:58:23', '2025-12-17 19:47:50', '2d20EjoA', '3445769'), + (639, 591, 'attending', '2021-02-06 15:56:12', '2025-12-17 19:47:50', '2d20EjoA', '3465880'), + (639, 592, 'maybe', '2021-02-23 23:53:30', '2025-12-17 19:47:50', '2d20EjoA', '3467757'), + (639, 598, 'attending', '2021-02-06 15:55:57', '2025-12-17 19:47:50', '2d20EjoA', '3468003'), + (639, 599, 'maybe', '2021-02-17 00:42:43', '2025-12-17 19:47:50', '2d20EjoA', '3468117'), + (639, 600, 'attending', '2021-02-06 15:55:06', '2025-12-17 19:47:50', '2d20EjoA', '3468125'), + (639, 602, 'attending', '2021-02-07 18:03:18', '2025-12-17 19:47:50', '2d20EjoA', '3470303'), + (639, 603, 'attending', '2021-02-07 18:03:26', '2025-12-17 19:47:50', '2d20EjoA', '3470304'), + (639, 604, 'attending', '2021-02-07 18:03:28', '2025-12-17 19:47:50', '2d20EjoA', '3470305'), + (639, 605, 'attending', '2021-02-07 18:03:49', '2025-12-17 19:47:50', '2d20EjoA', '3470991'), + (639, 606, 'attending', '2021-02-07 18:02:10', '2025-12-17 19:47:50', '2d20EjoA', '3470998'), + (639, 607, 'attending', '2021-02-09 00:48:47', '2025-12-17 19:47:50', '2d20EjoA', '3471882'), + (639, 608, 'attending', '2021-02-09 18:55:42', '2025-12-17 19:47:50', '2d20EjoA', '3475332'), + (639, 611, 'attending', '2021-02-15 21:23:47', '2025-12-17 19:47:50', '2d20EjoA', '3482659'), + (639, 612, 'attending', '2021-02-15 21:22:03', '2025-12-17 19:47:50', '2d20EjoA', '3490040'), + (639, 613, 'attending', '2021-02-15 21:23:55', '2025-12-17 19:47:50', '2d20EjoA', '3490041'), + (639, 614, 'attending', '2021-02-15 21:24:23', '2025-12-17 19:47:51', '2d20EjoA', '3490042'), + (639, 615, 'maybe', '2021-02-20 19:58:50', '2025-12-17 19:47:50', '2d20EjoA', '3490045'), + (639, 616, 'attending', '2021-02-15 21:23:14', '2025-12-17 19:47:50', '2d20EjoA', '3493478'), + (639, 617, 'attending', '2021-02-18 22:16:02', '2025-12-17 19:47:50', '2d20EjoA', '3499119'), + (639, 618, 'attending', '2021-02-19 22:32:07', '2025-12-17 19:47:50', '2d20EjoA', '3503991'), + (639, 621, 'attending', '2021-02-23 23:53:56', '2025-12-17 19:47:51', '2d20EjoA', '3517815'), + (639, 622, 'attending', '2021-02-23 23:54:04', '2025-12-17 19:47:51', '2d20EjoA', '3517816'), + (639, 623, 'attending', '2021-02-25 17:12:00', '2025-12-17 19:47:50', '2d20EjoA', '3523941'), + (639, 625, 'not_attending', '2021-03-02 16:22:18', '2025-12-17 19:47:51', '2d20EjoA', '3533296'), + (639, 627, 'attending', '2021-03-10 01:42:09', '2025-12-17 19:47:51', '2d20EjoA', '3533303'), + (639, 628, 'maybe', '2021-03-02 01:19:14', '2025-12-17 19:47:51', '2d20EjoA', '3533305'), + (639, 630, 'maybe', '2021-03-03 00:48:05', '2025-12-17 19:47:51', '2d20EjoA', '3533425'), + (639, 631, 'attending', '2021-03-01 00:53:36', '2025-12-17 19:47:51', '2d20EjoA', '3533850'), + (639, 632, 'attending', '2021-03-01 01:27:51', '2025-12-17 19:47:51', '2d20EjoA', '3533853'), + (639, 634, 'attending', '2021-03-29 17:22:34', '2025-12-17 19:47:44', '2d20EjoA', '3534718'), + (639, 637, 'attending', '2021-03-01 18:51:32', '2025-12-17 19:47:51', '2d20EjoA', '3536411'), + (639, 638, 'attending', '2021-03-01 18:50:32', '2025-12-17 19:47:44', '2d20EjoA', '3536632'), + (639, 639, 'attending', '2021-03-09 05:42:51', '2025-12-17 19:47:51', '2d20EjoA', '3536656'), + (639, 641, 'attending', '2021-03-03 15:12:00', '2025-12-17 19:47:44', '2d20EjoA', '3539916'), + (639, 642, 'attending', '2021-03-03 15:12:09', '2025-12-17 19:47:44', '2d20EjoA', '3539917'), + (639, 643, 'attending', '2021-03-03 15:12:15', '2025-12-17 19:47:45', '2d20EjoA', '3539918'), + (639, 644, 'attending', '2021-03-03 15:12:18', '2025-12-17 19:47:45', '2d20EjoA', '3539919'), + (639, 645, 'attending', '2021-03-03 15:12:23', '2025-12-17 19:47:46', '2d20EjoA', '3539920'), + (639, 646, 'attending', '2021-05-15 14:49:58', '2025-12-17 19:47:46', '2d20EjoA', '3539921'), + (639, 647, 'not_attending', '2021-05-22 19:39:11', '2025-12-17 19:47:46', '2d20EjoA', '3539922'), + (639, 648, 'attending', '2021-05-29 04:25:40', '2025-12-17 19:47:47', '2d20EjoA', '3539923'), + (639, 649, 'not_attending', '2021-03-20 22:43:43', '2025-12-17 19:47:51', '2d20EjoA', '3539927'), + (639, 650, 'attending', '2021-03-09 09:03:00', '2025-12-17 19:47:44', '2d20EjoA', '3539928'), + (639, 651, 'attending', '2021-03-07 03:39:46', '2025-12-17 19:47:51', '2d20EjoA', '3541045'), + (639, 653, 'attending', '2021-03-06 18:31:53', '2025-12-17 19:47:51', '2d20EjoA', '3546917'), + (639, 654, 'attending', '2021-03-07 04:16:51', '2025-12-17 19:47:51', '2d20EjoA', '3546990'), + (639, 662, 'attending', '2021-04-24 18:33:18', '2025-12-17 19:47:45', '2d20EjoA', '3547138'), + (639, 664, 'attending', '2021-08-29 19:58:34', '2025-12-17 19:47:43', '2d20EjoA', '3547142'), + (639, 665, 'attending', '2021-08-29 19:58:30', '2025-12-17 19:47:43', '2d20EjoA', '3547143'), + (639, 666, 'attending', '2021-08-10 15:21:03', '2025-12-17 19:47:42', '2d20EjoA', '3547144'), + (639, 667, 'maybe', '2021-08-28 20:51:48', '2025-12-17 19:47:42', '2d20EjoA', '3547145'), + (639, 668, 'attending', '2021-05-15 15:02:11', '2025-12-17 19:47:46', '2d20EjoA', '3547146'), + (639, 671, 'maybe', '2021-07-14 21:00:02', '2025-12-17 19:47:39', '2d20EjoA', '3547149'), + (639, 672, 'not_attending', '2021-05-22 19:40:17', '2025-12-17 19:47:46', '2d20EjoA', '3547150'), + (639, 674, 'attending', '2021-08-06 14:00:07', '2025-12-17 19:47:41', '2d20EjoA', '3547152'), + (639, 675, 'maybe', '2021-07-29 18:38:39', '2025-12-17 19:47:40', '2d20EjoA', '3547153'), + (639, 676, 'attending', '2021-07-19 22:38:58', '2025-12-17 19:47:40', '2d20EjoA', '3547154'), + (639, 678, 'attending', '2021-03-08 20:40:22', '2025-12-17 19:47:51', '2d20EjoA', '3547158'), + (639, 680, 'attending', '2021-03-10 04:16:08', '2025-12-17 19:47:51', '2d20EjoA', '3547700'), + (639, 684, 'attending', '2021-03-08 20:40:40', '2025-12-17 19:47:51', '2d20EjoA', '3549257'), + (639, 687, 'not_attending', '2021-03-12 01:55:00', '2025-12-17 19:47:51', '2d20EjoA', '3553405'), + (639, 688, 'attending', '2021-03-10 01:59:06', '2025-12-17 19:47:51', '2d20EjoA', '3553729'), + (639, 689, 'attending', '2021-03-19 04:18:34', '2025-12-17 19:47:44', '2d20EjoA', '3555564'), + (639, 690, 'attending', '2021-03-19 04:18:56', '2025-12-17 19:47:43', '2d20EjoA', '3559954'), + (639, 691, 'attending', '2021-03-19 22:56:32', '2025-12-17 19:47:45', '2d20EjoA', '3561928'), + (639, 698, 'attending', '2021-03-16 20:46:51', '2025-12-17 19:47:44', '2d20EjoA', '3571867'), + (639, 700, 'attending', '2021-03-19 04:29:57', '2025-12-17 19:47:44', '2d20EjoA', '3575725'), + (639, 702, 'maybe', '2021-03-19 22:53:29', '2025-12-17 19:47:51', '2d20EjoA', '3577181'), + (639, 703, 'attending', '2021-03-19 22:54:35', '2025-12-17 19:47:44', '2d20EjoA', '3578388'), + (639, 704, 'attending', '2021-03-28 19:12:08', '2025-12-17 19:47:44', '2d20EjoA', '3581429'), + (639, 705, 'attending', '2021-03-19 22:46:39', '2025-12-17 19:47:44', '2d20EjoA', '3581895'), + (639, 706, 'attending', '2021-04-15 17:59:20', '2025-12-17 19:47:45', '2d20EjoA', '3582734'), + (639, 707, 'attending', '2021-04-01 04:31:11', '2025-12-17 19:47:46', '2d20EjoA', '3583262'), + (639, 711, 'attending', '2021-03-29 17:22:06', '2025-12-17 19:47:44', '2d20EjoA', '3588075'), + (639, 714, 'attending', '2021-03-30 07:17:01', '2025-12-17 19:47:44', '2d20EjoA', '3604063'), + (639, 716, 'not_attending', '2021-04-02 14:54:18', '2025-12-17 19:47:44', '2d20EjoA', '3618353'), + (639, 717, 'attending', '2021-03-25 20:43:31', '2025-12-17 19:47:44', '2d20EjoA', '3619523'), + (639, 719, 'maybe', '2021-04-11 04:46:00', '2025-12-17 19:47:44', '2d20EjoA', '3635405'), + (639, 721, 'attending', '2021-04-03 17:30:09', '2025-12-17 19:47:44', '2d20EjoA', '3643622'), + (639, 723, 'maybe', '2021-04-05 21:44:46', '2025-12-17 19:47:44', '2d20EjoA', '3649179'), + (639, 728, 'maybe', '2021-04-14 14:57:29', '2025-12-17 19:47:44', '2d20EjoA', '3668073'), + (639, 729, 'attending', '2021-04-28 15:14:52', '2025-12-17 19:47:46', '2d20EjoA', '3668075'), + (639, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '2d20EjoA', '3674262'), + (639, 732, 'attending', '2021-04-14 15:32:06', '2025-12-17 19:47:45', '2d20EjoA', '3674268'), + (639, 734, 'maybe', '2021-04-05 01:23:05', '2025-12-17 19:47:44', '2d20EjoA', '3676806'), + (639, 735, 'attending', '2021-04-05 00:59:34', '2025-12-17 19:47:46', '2d20EjoA', '3677402'), + (639, 739, 'attending', '2021-05-04 20:09:20', '2025-12-17 19:47:46', '2d20EjoA', '3680616'), + (639, 740, 'attending', '2021-04-28 15:15:56', '2025-12-17 19:47:46', '2d20EjoA', '3680617'), + (639, 744, 'maybe', '2021-06-11 21:43:32', '2025-12-17 19:47:47', '2d20EjoA', '3680624'), + (639, 746, 'maybe', '2021-07-07 19:57:07', '2025-12-17 19:47:39', '2d20EjoA', '3680626'), + (639, 748, 'attending', '2021-04-11 04:46:35', '2025-12-17 19:47:44', '2d20EjoA', '3685353'), + (639, 752, 'not_attending', '2021-04-14 14:57:17', '2025-12-17 19:47:44', '2d20EjoA', '3699422'), + (639, 757, 'attending', '2021-04-20 19:45:41', '2025-12-17 19:47:45', '2d20EjoA', '3708109'), + (639, 761, 'attending', '2021-05-09 20:55:11', '2025-12-17 19:47:46', '2d20EjoA', '3716041'), + (639, 772, 'maybe', '2021-04-30 22:38:37', '2025-12-17 19:47:46', '2d20EjoA', '3726421'), + (639, 773, 'attending', '2021-04-20 21:28:40', '2025-12-17 19:47:46', '2d20EjoA', '3729399'), + (639, 774, 'attending', '2021-04-21 02:29:08', '2025-12-17 19:47:45', '2d20EjoA', '3730212'), + (639, 775, 'attending', '2021-04-21 11:46:14', '2025-12-17 19:47:45', '2d20EjoA', '3731062'), + (639, 777, 'maybe', '2021-05-01 19:56:20', '2025-12-17 19:47:46', '2d20EjoA', '3746248'), + (639, 778, 'attending', '2021-04-28 15:15:41', '2025-12-17 19:47:46', '2d20EjoA', '3751550'), + (639, 784, 'attending', '2021-05-04 20:09:16', '2025-12-17 19:47:46', '2d20EjoA', '3768775'), + (639, 786, 'attending', '2021-05-04 21:10:12', '2025-12-17 19:47:46', '2d20EjoA', '3780093'), + (639, 791, 'maybe', '2021-05-10 22:15:25', '2025-12-17 19:47:46', '2d20EjoA', '3792735'), + (639, 792, 'attending', '2021-05-19 23:19:59', '2025-12-17 19:47:46', '2d20EjoA', '3793156'), + (639, 793, 'attending', '2021-06-01 20:20:21', '2025-12-17 19:47:47', '2d20EjoA', '3793537'), + (639, 806, 'attending', '2021-05-15 14:42:44', '2025-12-17 19:47:46', '2d20EjoA', '3806392'), + (639, 810, 'maybe', '2021-05-17 17:12:09', '2025-12-17 19:47:46', '2d20EjoA', '3808029'), + (639, 820, 'attending', '2021-05-28 02:57:01', '2025-12-17 19:47:47', '2d20EjoA', '3963335'), + (639, 822, 'attending', '2021-06-06 15:33:50', '2025-12-17 19:47:47', '2d20EjoA', '3969986'), + (639, 823, 'attending', '2021-06-17 20:03:40', '2025-12-17 19:47:48', '2d20EjoA', '3974109'), + (639, 826, 'attending', '2021-06-14 15:43:15', '2025-12-17 19:47:48', '2d20EjoA', '3975310'), + (639, 827, 'attending', '2021-06-03 21:26:16', '2025-12-17 19:47:47', '2d20EjoA', '3975311'), + (639, 828, 'maybe', '2021-06-12 21:28:44', '2025-12-17 19:47:47', '2d20EjoA', '3975312'), + (639, 833, 'attending', '2021-06-07 22:34:41', '2025-12-17 19:47:47', '2d20EjoA', '3990438'), + (639, 834, 'attending', '2021-06-08 15:42:35', '2025-12-17 19:47:47', '2d20EjoA', '3990439'), + (639, 838, 'attending', '2021-06-06 18:31:53', '2025-12-17 19:47:47', '2d20EjoA', '3994992'), + (639, 840, 'attending', '2021-06-08 01:31:53', '2025-12-17 19:47:47', '2d20EjoA', '4007283'), + (639, 844, 'attending', '2021-06-10 21:44:47', '2025-12-17 19:47:38', '2d20EjoA', '4014338'), + (639, 846, 'attending', '2021-07-04 05:55:34', '2025-12-17 19:47:39', '2d20EjoA', '4015718'), + (639, 867, 'attending', '2021-06-21 17:29:52', '2025-12-17 19:47:38', '2d20EjoA', '4021848'), + (639, 868, 'maybe', '2021-06-17 20:03:50', '2025-12-17 19:47:48', '2d20EjoA', '4022012'), + (639, 869, 'attending', '2021-06-21 17:34:23', '2025-12-17 19:47:38', '2d20EjoA', '4136744'), + (639, 870, 'attending', '2021-06-21 17:33:32', '2025-12-17 19:47:38', '2d20EjoA', '4136937'), + (639, 871, 'attending', '2021-07-05 11:25:33', '2025-12-17 19:47:39', '2d20EjoA', '4136938'), + (639, 872, 'attending', '2021-07-19 22:38:29', '2025-12-17 19:47:40', '2d20EjoA', '4136947'), + (639, 880, 'attending', '2021-06-18 20:06:09', '2025-12-17 19:47:48', '2d20EjoA', '4205383'), + (639, 884, 'attending', '2021-08-10 15:21:13', '2025-12-17 19:47:42', '2d20EjoA', '4210314'), + (639, 887, 'attending', '2021-07-11 15:59:21', '2025-12-17 19:47:39', '2d20EjoA', '4225444'), + (639, 895, 'attending', '2021-06-27 04:18:00', '2025-12-17 19:47:39', '2d20EjoA', '4229424'), + (639, 897, 'attending', '2021-06-27 23:39:34', '2025-12-17 19:47:38', '2d20EjoA', '4232132'), + (639, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '2d20EjoA', '4239259'), + (639, 900, 'attending', '2021-07-19 22:39:01', '2025-12-17 19:47:40', '2d20EjoA', '4240316'), + (639, 901, 'attending', '2021-07-31 01:21:52', '2025-12-17 19:47:40', '2d20EjoA', '4240317'), + (639, 902, 'attending', '2021-08-06 14:01:00', '2025-12-17 19:47:41', '2d20EjoA', '4240318'), + (639, 903, 'attending', '2021-08-10 15:21:04', '2025-12-17 19:47:42', '2d20EjoA', '4240320'), + (639, 905, 'attending', '2021-07-05 11:25:57', '2025-12-17 19:47:39', '2d20EjoA', '4250163'), + (639, 906, 'maybe', '2021-07-11 18:59:08', '2025-12-17 19:47:39', '2d20EjoA', '4253431'), + (639, 907, 'attending', '2021-07-05 11:25:43', '2025-12-17 19:47:39', '2d20EjoA', '4254036'), + (639, 917, 'not_attending', '2021-07-14 20:59:51', '2025-12-17 19:47:39', '2d20EjoA', '4274481'), + (639, 919, 'maybe', '2021-07-17 20:31:50', '2025-12-17 19:47:39', '2d20EjoA', '4275957'), + (639, 920, 'attending', '2021-07-19 22:39:05', '2025-12-17 19:47:40', '2d20EjoA', '4277819'), + (639, 921, 'not_attending', '2021-07-14 20:59:52', '2025-12-17 19:47:39', '2d20EjoA', '4278368'), + (639, 926, 'attending', '2021-08-17 14:58:17', '2025-12-17 19:47:42', '2d20EjoA', '4297211'), + (639, 928, 'attending', '2021-07-30 15:11:37', '2025-12-17 19:47:40', '2d20EjoA', '4297218'), + (639, 929, 'attending', '2021-08-03 21:43:04', '2025-12-17 19:47:41', '2d20EjoA', '4297223'), + (639, 932, 'maybe', '2021-08-22 17:26:33', '2025-12-17 19:47:42', '2d20EjoA', '4301664'), + (639, 933, 'attending', '2021-07-25 08:45:28', '2025-12-17 19:47:40', '2d20EjoA', '4301723'), + (639, 934, 'attending', '2021-08-03 21:47:54', '2025-12-17 19:47:40', '2d20EjoA', '4302093'), + (639, 935, 'attending', '2021-08-11 21:17:33', '2025-12-17 19:47:41', '2d20EjoA', '4304151'), + (639, 940, 'maybe', '2021-07-29 18:38:14', '2025-12-17 19:47:40', '2d20EjoA', '4309049'), + (639, 947, 'attending', '2021-08-03 00:35:50', '2025-12-17 19:47:41', '2d20EjoA', '4315713'), + (639, 948, 'attending', '2021-08-11 09:35:03', '2025-12-17 19:47:41', '2d20EjoA', '4315714'), + (639, 951, 'attending', '2021-07-28 02:53:57', '2025-12-17 19:47:43', '2d20EjoA', '4315731'), + (639, 952, 'maybe', '2021-08-05 20:25:35', '2025-12-17 19:47:41', '2d20EjoA', '4318286'), + (639, 959, 'attending', '2021-08-07 16:24:50', '2025-12-17 19:47:41', '2d20EjoA', '4344515'), + (639, 961, 'maybe', '2021-08-10 15:20:55', '2025-12-17 19:47:42', '2d20EjoA', '4345519'), + (639, 971, 'attending', '2021-09-03 20:05:20', '2025-12-17 19:47:43', '2d20EjoA', '4356801'), + (639, 973, 'attending', '2021-08-16 21:17:37', '2025-12-17 19:47:42', '2d20EjoA', '4366186'), + (639, 974, 'attending', '2021-08-24 02:37:47', '2025-12-17 19:47:42', '2d20EjoA', '4366187'), + (639, 979, 'attending', '2021-08-19 11:59:23', '2025-12-17 19:47:42', '2d20EjoA', '4379085'), + (639, 980, 'attending', '2021-08-20 05:03:24', '2025-12-17 19:47:42', '2d20EjoA', '4380358'), + (639, 981, 'attending', '2021-08-27 17:58:55', '2025-12-17 19:47:42', '2d20EjoA', '4387305'), + (639, 987, 'attending', '2021-09-01 16:06:41', '2025-12-17 19:47:43', '2d20EjoA', '4402634'), + (639, 990, 'attending', '2021-09-04 21:53:14', '2025-12-17 19:47:43', '2d20EjoA', '4420735'), + (639, 991, 'attending', '2021-08-29 19:58:38', '2025-12-17 19:47:43', '2d20EjoA', '4420738'), + (639, 992, 'attending', '2021-08-29 19:58:41', '2025-12-17 19:47:33', '2d20EjoA', '4420739'), + (639, 993, 'attending', '2021-08-29 19:58:44', '2025-12-17 19:47:34', '2d20EjoA', '4420741'), + (639, 994, 'not_attending', '2021-10-02 14:56:14', '2025-12-17 19:47:34', '2d20EjoA', '4420742'), + (639, 995, 'attending', '2021-10-09 17:52:29', '2025-12-17 19:47:34', '2d20EjoA', '4420744'), + (639, 996, 'attending', '2021-10-12 04:30:03', '2025-12-17 19:47:35', '2d20EjoA', '4420747'), + (639, 997, 'attending', '2021-10-20 21:00:29', '2025-12-17 19:47:35', '2d20EjoA', '4420748'), + (639, 998, 'maybe', '2021-10-30 20:46:50', '2025-12-17 19:47:36', '2d20EjoA', '4420749'), + (639, 999, 'attending', '2021-08-31 17:39:20', '2025-12-17 19:47:43', '2d20EjoA', '4421150'), + (639, 1003, 'attending', '2021-09-06 17:42:03', '2025-12-17 19:47:43', '2d20EjoA', '4438802'), + (639, 1005, 'maybe', '2021-09-21 10:45:49', '2025-12-17 19:47:34', '2d20EjoA', '4438807'), + (639, 1006, 'attending', '2021-10-01 21:44:21', '2025-12-17 19:47:34', '2d20EjoA', '4438808'), + (639, 1007, 'attending', '2021-09-02 17:20:27', '2025-12-17 19:47:34', '2d20EjoA', '4438809'), + (639, 1012, 'not_attending', '2021-10-28 21:46:57', '2025-12-17 19:47:36', '2d20EjoA', '4438816'), + (639, 1013, 'attending', '2021-09-02 17:22:54', '2025-12-17 19:47:43', '2d20EjoA', '4438817'), + (639, 1018, 'attending', '2021-09-06 17:41:37', '2025-12-17 19:47:43', '2d20EjoA', '4448883'), + (639, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '2d20EjoA', '4461883'), + (639, 1036, 'maybe', '2021-09-21 16:07:14', '2025-12-17 19:47:34', '2d20EjoA', '4493166'), + (639, 1043, 'attending', '2021-10-20 21:00:28', '2025-12-17 19:47:35', '2d20EjoA', '4496608'), + (639, 1045, 'maybe', '2021-10-30 20:46:46', '2025-12-17 19:47:36', '2d20EjoA', '4496610'), + (639, 1046, 'attending', '2021-10-12 04:30:00', '2025-12-17 19:47:35', '2d20EjoA', '4496611'), + (639, 1047, 'attending', '2021-10-09 17:52:19', '2025-12-17 19:47:34', '2d20EjoA', '4496612'), + (639, 1048, 'attending', '2021-11-12 23:59:47', '2025-12-17 19:47:36', '2d20EjoA', '4496613'), + (639, 1051, 'maybe', '2022-01-30 06:57:37', '2025-12-17 19:47:32', '2d20EjoA', '4496616'), + (639, 1065, 'attending', '2021-09-21 15:03:16', '2025-12-17 19:47:34', '2d20EjoA', '4505800'), + (639, 1066, 'maybe', '2021-09-21 17:39:08', '2025-12-17 19:47:34', '2d20EjoA', '4506039'), + (639, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '2d20EjoA', '4508342'), + (639, 1072, 'attending', '2021-10-06 20:52:56', '2025-12-17 19:47:34', '2d20EjoA', '4516287'), + (639, 1077, 'attending', '2021-10-12 04:29:53', '2025-12-17 19:47:34', '2d20EjoA', '4540903'), + (639, 1079, 'attending', '2021-10-10 06:04:43', '2025-12-17 19:47:35', '2d20EjoA', '4563823'), + (639, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '2d20EjoA', '4568602'), + (639, 1087, 'attending', '2021-10-15 06:22:00', '2025-12-17 19:47:35', '2d20EjoA', '4572153'), + (639, 1092, 'not_attending', '2021-10-20 12:14:39', '2025-12-17 19:47:35', '2d20EjoA', '4582837'), + (639, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '2d20EjoA', '4585962'), + (639, 1094, 'attending', '2021-10-25 06:57:35', '2025-12-17 19:47:36', '2d20EjoA', '4587337'), + (639, 1095, 'maybe', '2021-10-27 20:15:40', '2025-12-17 19:47:36', '2d20EjoA', '4596356'), + (639, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '2d20EjoA', '4598860'), + (639, 1098, 'attending', '2021-11-08 04:15:54', '2025-12-17 19:47:36', '2d20EjoA', '4598861'), + (639, 1099, 'attending', '2021-11-06 19:28:47', '2025-12-17 19:47:36', '2d20EjoA', '4602797'), + (639, 1102, 'attending', '2021-11-13 00:01:56', '2025-12-17 19:47:37', '2d20EjoA', '4612098'), + (639, 1104, 'attending', '2021-11-08 04:06:25', '2025-12-17 19:47:36', '2d20EjoA', '4618310'), + (639, 1105, 'attending', '2021-11-08 04:06:32', '2025-12-17 19:47:36', '2d20EjoA', '4618567'), + (639, 1114, 'attending', '2021-11-12 23:59:31', '2025-12-17 19:47:36', '2d20EjoA', '4637896'), + (639, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '2d20EjoA', '4642994'), + (639, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '2d20EjoA', '4642995'), + (639, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '2d20EjoA', '4642996'), + (639, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '2d20EjoA', '4642997'), + (639, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '2d20EjoA', '4645687'), + (639, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '2d20EjoA', '4645698'), + (639, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '2d20EjoA', '4645704'), + (639, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '2d20EjoA', '4645705'), + (639, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '2d20EjoA', '4668385'), + (639, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '2d20EjoA', '4694407'), + (639, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '2d20EjoA', '4736497'), + (639, 1176, 'attending', '2022-01-30 09:08:21', '2025-12-17 19:47:32', '2d20EjoA', '4736498'), + (639, 1177, 'attending', '2022-02-13 00:04:23', '2025-12-17 19:47:32', '2d20EjoA', '4736499'), + (639, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '2d20EjoA', '4736500'), + (639, 1179, 'attending', '2022-02-19 15:30:34', '2025-12-17 19:47:32', '2d20EjoA', '4736501'), + (639, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '2d20EjoA', '4736503'), + (639, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '2d20EjoA', '4736504'), + (639, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '2d20EjoA', '4746789'), + (639, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '2d20EjoA', '4753929'), + (639, 1219, 'maybe', '2022-01-30 18:00:44', '2025-12-17 19:47:32', '2d20EjoA', '4788466'), + (639, 1222, 'attending', '2022-02-14 08:43:47', '2025-12-17 19:47:32', '2d20EjoA', '5015628'), + (639, 1228, 'attending', '2022-02-11 22:52:14', '2025-12-17 19:47:32', '2d20EjoA', '5028238'), + (639, 1229, 'attending', '2022-02-18 19:58:01', '2025-12-17 19:47:32', '2d20EjoA', '5034963'), + (639, 1232, 'attending', '2022-02-09 23:07:20', '2025-12-17 19:47:32', '2d20EjoA', '5038850'), + (639, 1236, 'attending', '2022-02-14 08:46:12', '2025-12-17 19:47:32', '2d20EjoA', '5045826'), + (639, 1237, 'maybe', '2022-02-18 19:58:40', '2025-12-17 19:47:32', '2d20EjoA', '5050641'), + (639, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '2d20EjoA', '5132533'), + (639, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '2d20EjoA', '5186582'), + (639, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '2d20EjoA', '5186583'), + (639, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '2d20EjoA', '5186585'), + (639, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '2d20EjoA', '5190437'), + (639, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '2d20EjoA', '5195095'), + (639, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '2d20EjoA', '5215989'), + (639, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '2d20EjoA', '5223686'), + (639, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '2d20EjoA', '5227432'), + (639, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '2d20EjoA', '5247467'), + (639, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '2d20EjoA', '5260800'), + (639, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '2d20EjoA', '5269930'), + (639, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '2d20EjoA', '5271448'), + (639, 1379, 'attending', '2022-05-21 03:44:00', '2025-12-17 19:47:29', '2d20EjoA', '5271449'), + (639, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '2d20EjoA', '5276469'), + (639, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '2d20EjoA', '5278159'), + (639, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '2d20EjoA', '5363695'), + (639, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '2d20EjoA', '5365960'), + (639, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '2d20EjoA', '5368973'), + (639, 1427, 'attending', '2022-05-25 22:32:18', '2025-12-17 19:47:30', '2d20EjoA', '5376074'), + (639, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '2d20EjoA', '5378247'), + (639, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '2d20EjoA', '5389605'), + (639, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '2d20EjoA', '5397265'), + (639, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '2d20EjoA', '5403967'), + (639, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '2d20EjoA', '5404786'), + (639, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '2d20EjoA', '5405203'), + (639, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '2d20EjoA', '5408794'), + (639, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '2d20EjoA', '5411699'), + (639, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '2d20EjoA', '5412550'), + (639, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '2d20EjoA', '5415046'), + (639, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '2d20EjoA', '5422086'), + (639, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '2d20EjoA', '5422406'), + (639, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '2d20EjoA', '5424565'), + (639, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '2d20EjoA', '5426882'), + (639, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '2d20EjoA', '5427083'), + (639, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '2d20EjoA', '5441125'), + (639, 1514, 'maybe', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '2d20EjoA', '5441126'), + (639, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '2d20EjoA', '5441128'), + (639, 1516, 'attending', '2022-08-20 10:18:26', '2025-12-17 19:47:23', '2d20EjoA', '5441129'), + (639, 1517, 'not_attending', '2022-08-23 04:25:14', '2025-12-17 19:47:23', '2d20EjoA', '5441130'), + (639, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '2d20EjoA', '5441131'), + (639, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '2d20EjoA', '5441132'), + (639, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '2d20EjoA', '5446643'), + (639, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '2d20EjoA', '5453325'), + (639, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '2d20EjoA', '5454516'), + (639, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '2d20EjoA', '5454605'), + (639, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '2d20EjoA', '5455037'), + (639, 1561, 'maybe', '2022-08-03 10:14:22', '2025-12-17 19:47:22', '2d20EjoA', '5461278'), + (639, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '2d20EjoA', '5469480'), + (639, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '2d20EjoA', '5471073'), + (639, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '2d20EjoA', '5474663'), + (639, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '2d20EjoA', '5482022'), + (639, 1575, 'attending', '2022-08-25 10:04:11', '2025-12-17 19:47:23', '2d20EjoA', '5482250'), + (639, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '2d20EjoA', '5482793'), + (639, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '2d20EjoA', '5488912'), + (639, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '2d20EjoA', '5492192'), + (639, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '2d20EjoA', '5493139'), + (639, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '2d20EjoA', '5493200'), + (639, 1602, 'attending', '2022-08-13 17:27:47', '2025-12-17 19:47:22', '2d20EjoA', '5497383'), + (639, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '2d20EjoA', '5502188'), + (639, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '2d20EjoA', '5505059'), + (639, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '2d20EjoA', '5509055'), + (639, 1618, 'attending', '2022-08-25 10:04:16', '2025-12-17 19:47:23', '2d20EjoA', '5512005'), + (639, 1619, 'maybe', '2022-08-23 04:25:03', '2025-12-17 19:47:23', '2d20EjoA', '5512862'), + (639, 1623, 'attending', '2022-08-25 10:07:30', '2025-12-17 19:47:23', '2d20EjoA', '5513678'), + (639, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '2d20EjoA', '5513985'), + (639, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '2d20EjoA', '5519981'), + (639, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '2d20EjoA', '5522550'), + (639, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '2d20EjoA', '5534683'), + (639, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '2d20EjoA', '5537735'), + (639, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '2d20EjoA', '5540859'), + (639, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '2d20EjoA', '5546619'), + (639, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '2d20EjoA', '5555245'), + (639, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '2d20EjoA', '5557747'), + (639, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '2d20EjoA', '5560255'), + (639, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '2d20EjoA', '5562906'), + (639, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '2d20EjoA', '5600604'), + (639, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '2d20EjoA', '5605544'), + (639, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '2d20EjoA', '5606737'), + (639, 1719, 'not_attending', '2022-10-07 12:35:12', '2025-12-17 19:47:12', '2d20EjoA', '5630958'), + (639, 1720, 'attending', '2022-10-14 10:58:15', '2025-12-17 19:47:12', '2d20EjoA', '5630959'), + (639, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '2d20EjoA', '5630960'), + (639, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '2d20EjoA', '5630961'), + (639, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '2d20EjoA', '5630962'), + (639, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '2d20EjoA', '5630966'), + (639, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '2d20EjoA', '5630967'), + (639, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '2d20EjoA', '5630968'), + (639, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '2d20EjoA', '5635406'), + (639, 1735, 'not_attending', '2022-10-08 19:07:42', '2025-12-17 19:47:12', '2d20EjoA', '5637484'), + (639, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '2d20EjoA', '5638765'), + (639, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '2d20EjoA', '5640097'), + (639, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '2d20EjoA', '5640843'), + (639, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '2d20EjoA', '5641521'), + (639, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '2d20EjoA', '5642818'), + (639, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '2d20EjoA', '5652395'), + (639, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '2d20EjoA', '5670445'), + (639, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '2d20EjoA', '5671637'), + (639, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '2d20EjoA', '5672329'), + (639, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '2d20EjoA', '5674057'), + (639, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '2d20EjoA', '5674060'), + (639, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '2d20EjoA', '5677461'), + (639, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '2d20EjoA', '5698046'), + (639, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '2d20EjoA', '5699760'), + (639, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '2d20EjoA', '5741601'), + (639, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '2d20EjoA', '5763458'), + (639, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '2d20EjoA', '5774172'), + (639, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '2d20EjoA', '5818247'), + (639, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '2d20EjoA', '5819471'), + (639, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '2d20EjoA', '5827739'), + (639, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '2d20EjoA', '5844306'), + (639, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '2d20EjoA', '5850159'), + (639, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '2d20EjoA', '5858999'), + (639, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '2d20EjoA', '5871984'), + (639, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '2d20EjoA', '5876354'), + (639, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '2d20EjoA', '5880939'), + (639, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '2d20EjoA', '5880940'), + (639, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '2d20EjoA', '5880942'), + (639, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '2d20EjoA', '5880943'), + (639, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '2d20EjoA', '5887890'), + (639, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '2d20EjoA', '5888598'), + (639, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '2d20EjoA', '5893260'), + (639, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '2d20EjoA', '5899826'), + (639, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '2d20EjoA', '5900199'), + (639, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '2d20EjoA', '5900200'), + (639, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '2d20EjoA', '5900202'), + (639, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '2d20EjoA', '5900203'), + (639, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '2d20EjoA', '5901108'), + (639, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '2d20EjoA', '5901126'), + (639, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '2d20EjoA', '5909655'), + (639, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '2d20EjoA', '5910522'), + (639, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '2d20EjoA', '5910526'), + (639, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '2d20EjoA', '5910528'), + (639, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '2d20EjoA', '5916219'), + (639, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '2d20EjoA', '5936234'), + (639, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '2d20EjoA', '5958351'), + (639, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '2d20EjoA', '5959751'), + (639, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '2d20EjoA', '5959755'), + (639, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '2d20EjoA', '5960055'), + (639, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '2d20EjoA', '5961684'), + (639, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '2d20EjoA', '5962132'), + (639, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '2d20EjoA', '5962133'), + (639, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '2d20EjoA', '5962134'), + (639, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '2d20EjoA', '5962317'), + (639, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '2d20EjoA', '5962318'), + (639, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '2d20EjoA', '5965933'), + (639, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '2d20EjoA', '5967014'), + (639, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '2d20EjoA', '5972763'), + (639, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '2d20EjoA', '5972815'), + (639, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '2d20EjoA', '5974016'), + (639, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '2d20EjoA', '5981515'), + (639, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '2d20EjoA', '5993516'), + (639, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '2d20EjoA', '5998939'), + (639, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '2d20EjoA', '6028191'), + (639, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '2d20EjoA', '6040066'), + (639, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '2d20EjoA', '6042717'), + (639, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '2d20EjoA', '6044838'), + (639, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '2d20EjoA', '6044839'), + (639, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d20EjoA', '6045684'), + (639, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '2d20EjoA', '6050104'), + (639, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '2d20EjoA', '6053195'), + (639, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '2d20EjoA', '6053198'), + (639, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '2d20EjoA', '6056085'), + (639, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '2d20EjoA', '6056916'), + (639, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '2d20EjoA', '6059290'), + (639, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '2d20EjoA', '6060328'), + (639, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '2d20EjoA', '6061037'), + (639, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '2d20EjoA', '6061039'), + (639, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '2d20EjoA', '6067245'), + (639, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '2d20EjoA', '6068094'), + (639, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '2d20EjoA', '6068252'), + (639, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '2d20EjoA', '6068253'), + (639, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '2d20EjoA', '6068254'), + (639, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '2d20EjoA', '6068280'), + (639, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '2d20EjoA', '6069093'), + (639, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '2d20EjoA', '6072528'), + (639, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '2d20EjoA', '6079840'), + (639, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '2d20EjoA', '6083398'), + (639, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '2d20EjoA', '6093504'), + (639, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '2d20EjoA', '6097414'), + (639, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '2d20EjoA', '6097442'), + (639, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '2d20EjoA', '6097684'), + (639, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '2d20EjoA', '6098762'), + (639, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '2d20EjoA', '6101362'), + (639, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '2d20EjoA', '6103752'), + (639, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '2d20EjoA', '6107314'), + (640, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'mq1nab1m', '4356801'), + (640, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'mq1nab1m', '4366187'), + (640, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'mq1nab1m', '4420735'), + (640, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'mq1nab1m', '4420738'), + (640, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'mq1nab1m', '4420739'), + (640, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'mq1nab1m', '4420741'), + (640, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'mq1nab1m', '4420744'), + (640, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'mq1nab1m', '4420747'), + (640, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'mq1nab1m', '4420748'), + (640, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'mq1nab1m', '4420749'), + (640, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'mq1nab1m', '4461883'), + (640, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mq1nab1m', '6045684'), + (641, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AXoMKVQm', '7704043'), + (641, 2920, 'not_attending', '2024-11-23 23:13:01', '2025-12-17 19:46:28', 'AXoMKVQm', '7708406'), + (641, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AXoMKVQm', '7712467'), + (641, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'AXoMKVQm', '7713585'), + (641, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AXoMKVQm', '7713586'), + (641, 2947, 'attending', '2024-12-09 03:10:46', '2025-12-17 19:46:21', 'AXoMKVQm', '7727445'), + (641, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'AXoMKVQm', '7738518'), + (641, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AXoMKVQm', '7750636'), + (641, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AXoMKVQm', '7796540'), + (641, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AXoMKVQm', '7796541'), + (641, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AXoMKVQm', '7796542'), + (641, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AXoMKVQm', '7825913'), + (641, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AXoMKVQm', '7826209'), + (641, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AXoMKVQm', '7834742'), + (641, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AXoMKVQm', '7842108'), + (641, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AXoMKVQm', '7842902'), + (641, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AXoMKVQm', '7842903'), + (641, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AXoMKVQm', '7842904'), + (641, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AXoMKVQm', '7842905'), + (641, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AXoMKVQm', '7855719'), + (641, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AXoMKVQm', '7860683'), + (641, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AXoMKVQm', '7860684'), + (641, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AXoMKVQm', '7866095'), + (641, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AXoMKVQm', '7869170'), + (641, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AXoMKVQm', '7869188'), + (641, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AXoMKVQm', '7869201'), + (641, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AXoMKVQm', '7877465'), + (641, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AXoMKVQm', '7878570'), + (641, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AXoMKVQm', '7888250'), + (641, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AXoMKVQm', '8349164'), + (641, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AXoMKVQm', '8349545'), + (641, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AXoMKVQm', '8353584'), + (642, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6jjvn3m', '5441131'), + (642, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6jjvn3m', '5441132'), + (642, 1561, 'not_attending', '2022-08-11 04:53:05', '2025-12-17 19:47:22', 'm6jjvn3m', '5461278'), + (642, 1588, 'attending', '2022-08-13 22:37:37', '2025-12-17 19:47:22', 'm6jjvn3m', '5493139'), + (642, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6jjvn3m', '5502188'), + (642, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6jjvn3m', '5505059'), + (642, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6jjvn3m', '5509055'), + (642, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6jjvn3m', '5512862'), + (642, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6jjvn3m', '5513985'), + (642, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6jjvn3m', '5522550'), + (642, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6jjvn3m', '5534683'), + (642, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6jjvn3m', '5537735'), + (642, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6jjvn3m', '5540859'), + (642, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6jjvn3m', '5546619'), + (642, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6jjvn3m', '5555245'), + (642, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6jjvn3m', '5557747'), + (642, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6jjvn3m', '5560255'), + (642, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6jjvn3m', '5562906'), + (642, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6jjvn3m', '5600604'), + (642, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6jjvn3m', '5605544'), + (642, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'm6jjvn3m', '5606737'), + (642, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6jjvn3m', '5635406'), + (642, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6jjvn3m', '5638765'), + (642, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm6jjvn3m', '5640843'), + (642, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6jjvn3m', '6045684'), + (643, 2276, 'not_attending', '2023-10-12 21:50:13', '2025-12-17 19:46:46', '2d2B7PJd', '6453951'), + (643, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '2d2B7PJd', '6461696'), + (643, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '2d2B7PJd', '6462129'), + (643, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '2d2B7PJd', '6463218'), + (643, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '2d2B7PJd', '6472181'), + (643, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '2d2B7PJd', '6482693'), + (643, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '2d2B7PJd', '6484200'), + (643, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '2d2B7PJd', '6484680'), + (643, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '2d2B7PJd', '6507741'), + (643, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '2d2B7PJd', '6514659'), + (643, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '2d2B7PJd', '6514660'), + (643, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '2d2B7PJd', '6519103'), + (643, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '2d2B7PJd', '6535681'), + (643, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '2d2B7PJd', '6584747'), + (643, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '2d2B7PJd', '6587097'), + (643, 2359, 'attending', '2023-12-01 22:13:07', '2025-12-17 19:46:48', '2d2B7PJd', '6596617'), + (643, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '2d2B7PJd', '6609022'), + (643, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '2d2B7PJd', '6632757'), + (643, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '2d2B7PJd', '6644187'), + (643, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '2d2B7PJd', '6648951'), + (643, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '2d2B7PJd', '6648952'), + (643, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '2d2B7PJd', '6655401'), + (643, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '2d2B7PJd', '6661585'), + (643, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '2d2B7PJd', '6661588'), + (643, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '2d2B7PJd', '6661589'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (643, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '2d2B7PJd', '6699906'), + (643, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '2d2B7PJd', '6699913'), + (643, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '2d2B7PJd', '6701109'), + (643, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '2d2B7PJd', '6704561'), + (643, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '2d2B7PJd', '6705219'), + (643, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '2d2B7PJd', '6708410'), + (643, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '2d2B7PJd', '6710153'), + (643, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '2d2B7PJd', '6711552'), + (643, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '2d2B7PJd', '6711553'), + (643, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '2d2B7PJd', '6722688'), + (643, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '2d2B7PJd', '6730620'), + (643, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '2d2B7PJd', '6730642'), + (643, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '2d2B7PJd', '6740364'), + (643, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '2d2B7PJd', '6743829'), + (643, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '2d2B7PJd', '7030380'), + (643, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '2d2B7PJd', '7033677'), + (643, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '2d2B7PJd', '7035415'), + (643, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '2d2B7PJd', '7044715'), + (643, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '2d2B7PJd', '7050318'), + (643, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '2d2B7PJd', '7050319'), + (643, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '2d2B7PJd', '7050322'), + (643, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '2d2B7PJd', '7057804'), + (643, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '2d2B7PJd', '7072824'), + (643, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '2d2B7PJd', '7074348'), + (643, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '2d2B7PJd', '7089267'), + (643, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '2d2B7PJd', '7098747'), + (643, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '2d2B7PJd', '7113468'), + (643, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '2d2B7PJd', '7114856'), + (643, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '2d2B7PJd', '7114951'), + (643, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '2d2B7PJd', '7114955'), + (643, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '2d2B7PJd', '7114956'), + (643, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '2d2B7PJd', '7153615'), + (643, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '2d2B7PJd', '7159484'), + (644, 1824, 'not_attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'xd98Epq4', '5774172'), + (644, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'xd98Epq4', '5819471'), + (644, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'xd98Epq4', '5827739'), + (644, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xd98Epq4', '5844306'), + (644, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xd98Epq4', '5850159'), + (644, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xd98Epq4', '5858999'), + (644, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xd98Epq4', '5871984'), + (644, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xd98Epq4', '5876354'), + (644, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xd98Epq4', '5880939'), + (644, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xd98Epq4', '5880940'), + (644, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xd98Epq4', '5880942'), + (644, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xd98Epq4', '5880943'), + (644, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xd98Epq4', '5887890'), + (644, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xd98Epq4', '5888598'), + (644, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xd98Epq4', '5893260'), + (644, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xd98Epq4', '5899826'), + (644, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xd98Epq4', '5900199'), + (644, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xd98Epq4', '5900200'), + (644, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xd98Epq4', '5900202'), + (644, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xd98Epq4', '5900203'), + (644, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xd98Epq4', '5901108'), + (644, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xd98Epq4', '5901126'), + (644, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xd98Epq4', '5909655'), + (644, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xd98Epq4', '5910522'), + (644, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xd98Epq4', '5910526'), + (644, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xd98Epq4', '5910528'), + (644, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xd98Epq4', '5916219'), + (644, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xd98Epq4', '5936234'), + (644, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xd98Epq4', '5958351'), + (644, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xd98Epq4', '5959751'), + (644, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xd98Epq4', '5959755'), + (644, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xd98Epq4', '5960055'), + (644, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xd98Epq4', '5961684'), + (644, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'xd98Epq4', '5962132'), + (644, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'xd98Epq4', '5962133'), + (644, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xd98Epq4', '5962134'), + (644, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xd98Epq4', '5962317'), + (644, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xd98Epq4', '5962318'), + (644, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'xd98Epq4', '5965933'), + (644, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xd98Epq4', '5967014'), + (644, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xd98Epq4', '5972815'), + (644, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xd98Epq4', '5974016'), + (644, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xd98Epq4', '5981515'), + (644, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xd98Epq4', '5993516'), + (644, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xd98Epq4', '5998939'), + (644, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xd98Epq4', '6028191'), + (644, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xd98Epq4', '6040066'), + (644, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xd98Epq4', '6042717'), + (644, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xd98Epq4', '6044838'), + (644, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xd98Epq4', '6044839'), + (644, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd98Epq4', '6045684'), + (644, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xd98Epq4', '6050104'), + (644, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xd98Epq4', '6053195'), + (644, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xd98Epq4', '6053198'), + (644, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xd98Epq4', '6056085'), + (644, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xd98Epq4', '6056916'), + (644, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xd98Epq4', '6059290'), + (644, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xd98Epq4', '6060328'), + (644, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xd98Epq4', '6061037'), + (644, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xd98Epq4', '6061039'), + (644, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xd98Epq4', '6067245'), + (644, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xd98Epq4', '6068094'), + (644, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xd98Epq4', '6068252'), + (644, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xd98Epq4', '6068253'), + (644, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xd98Epq4', '6068254'), + (644, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'xd98Epq4', '6068280'), + (644, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xd98Epq4', '6069093'), + (644, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xd98Epq4', '6072528'), + (644, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xd98Epq4', '6079840'), + (644, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xd98Epq4', '6083398'), + (644, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xd98Epq4', '6093504'), + (644, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xd98Epq4', '6097414'), + (644, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xd98Epq4', '6097442'), + (644, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xd98Epq4', '6097684'), + (644, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xd98Epq4', '6098762'), + (644, 2064, 'attending', '2023-06-23 18:02:34', '2025-12-17 19:46:50', 'xd98Epq4', '6099988'), + (644, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xd98Epq4', '6101361'), + (644, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xd98Epq4', '6101362'), + (644, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'xd98Epq4', '6103752'), + (644, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xd98Epq4', '6107314'), + (644, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xd98Epq4', '6120034'), + (644, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'xd98Epq4', '6136733'), + (644, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xd98Epq4', '6137989'), + (644, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xd98Epq4', '6150864'), + (644, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xd98Epq4', '6155491'), + (644, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xd98Epq4', '6164417'), + (644, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xd98Epq4', '6166388'), + (644, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xd98Epq4', '6176439'), + (644, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xd98Epq4', '6182410'), + (644, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xd98Epq4', '6185812'), + (644, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xd98Epq4', '6187651'), + (644, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xd98Epq4', '6187963'), + (644, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xd98Epq4', '6187964'), + (644, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xd98Epq4', '6187966'), + (644, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xd98Epq4', '6187967'), + (644, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xd98Epq4', '6187969'), + (644, 2139, 'attending', '2023-07-07 01:54:27', '2025-12-17 19:46:52', 'xd98Epq4', '6188027'), + (644, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xd98Epq4', '6334878'), + (644, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xd98Epq4', '6337236'), + (644, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xd98Epq4', '6337970'), + (644, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xd98Epq4', '6338308'), + (644, 2159, 'attending', '2023-07-17 19:56:18', '2025-12-17 19:46:53', 'xd98Epq4', '6338355'), + (644, 2160, 'attending', '2023-07-23 13:22:46', '2025-12-17 19:46:54', 'xd98Epq4', '6338358'), + (644, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'xd98Epq4', '6340845'), + (644, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xd98Epq4', '6341710'), + (644, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xd98Epq4', '6342044'), + (644, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xd98Epq4', '6342298'), + (644, 2173, 'attending', '2023-07-18 15:51:51', '2025-12-17 19:46:53', 'xd98Epq4', '6342769'), + (644, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xd98Epq4', '6343294'), + (644, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xd98Epq4', '6347034'), + (644, 2177, 'not_attending', '2023-08-07 19:40:42', '2025-12-17 19:46:55', 'xd98Epq4', '6347053'), + (644, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xd98Epq4', '6347056'), + (644, 2182, 'attending', '2023-07-25 21:25:28', '2025-12-17 19:46:53', 'xd98Epq4', '6349618'), + (644, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xd98Epq4', '6353830'), + (644, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xd98Epq4', '6353831'), + (644, 2187, 'not_attending', '2023-08-01 21:38:04', '2025-12-17 19:46:55', 'xd98Epq4', '6357559'), + (644, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xd98Epq4', '6357867'), + (644, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xd98Epq4', '6358652'), + (644, 2204, 'attending', '2023-08-14 23:01:35', '2025-12-17 19:46:55', 'xd98Epq4', '6361542'), + (644, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'xd98Epq4', '6361709'), + (644, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xd98Epq4', '6361710'), + (644, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xd98Epq4', '6361711'), + (644, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xd98Epq4', '6361712'), + (644, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xd98Epq4', '6361713'), + (644, 2231, 'not_attending', '2023-08-21 12:38:22', '2025-12-17 19:46:55', 'xd98Epq4', '6374748'), + (644, 2232, 'maybe', '2023-08-25 15:19:59', '2025-12-17 19:46:55', 'xd98Epq4', '6374818'), + (644, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'xd98Epq4', '6382573'), + (644, 2239, 'attending', '2023-09-02 20:39:11', '2025-12-17 19:46:56', 'xd98Epq4', '6387592'), + (644, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'xd98Epq4', '6388604'), + (644, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xd98Epq4', '6394629'), + (644, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xd98Epq4', '6394631'), + (644, 2253, 'not_attending', '2023-09-30 13:00:54', '2025-12-17 19:46:45', 'xd98Epq4', '6401811'), + (644, 2265, 'attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', 'xd98Epq4', '6439625'), + (644, 2266, 'maybe', '2023-10-06 14:39:00', '2025-12-17 19:46:45', 'xd98Epq4', '6439635'), + (644, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xd98Epq4', '6440863'), + (644, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xd98Epq4', '6445440'), + (644, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xd98Epq4', '6453951'), + (644, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xd98Epq4', '6461696'), + (644, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xd98Epq4', '6462129'), + (644, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xd98Epq4', '6463218'), + (644, 2299, 'attending', '2023-10-16 13:26:31', '2025-12-17 19:46:46', 'xd98Epq4', '6472181'), + (644, 2301, 'attending', '2023-10-16 13:29:56', '2025-12-17 19:46:46', 'xd98Epq4', '6474276'), + (644, 2303, 'attending', '2023-10-23 18:10:53', '2025-12-17 19:46:47', 'xd98Epq4', '6482691'), + (644, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'xd98Epq4', '6482693'), + (644, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'xd98Epq4', '6484200'), + (644, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xd98Epq4', '6484680'), + (644, 2310, 'not_attending', '2023-10-29 13:04:45', '2025-12-17 19:46:47', 'xd98Epq4', '6487709'), + (644, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xd98Epq4', '6507741'), + (644, 2318, 'maybe', '2023-10-30 14:38:22', '2025-12-17 19:46:47', 'xd98Epq4', '6508566'), + (644, 2322, 'attending', '2023-11-15 16:35:23', '2025-12-17 19:46:48', 'xd98Epq4', '6514659'), + (644, 2323, 'not_attending', '2023-11-27 22:57:38', '2025-12-17 19:46:49', 'xd98Epq4', '6514660'), + (644, 2324, 'attending', '2023-12-09 23:38:24', '2025-12-17 19:46:49', 'xd98Epq4', '6514662'), + (644, 2325, 'attending', '2023-12-15 02:30:08', '2025-12-17 19:46:36', 'xd98Epq4', '6514663'), + (644, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xd98Epq4', '6519103'), + (644, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xd98Epq4', '6535681'), + (644, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xd98Epq4', '6584747'), + (644, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xd98Epq4', '6587097'), + (644, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xd98Epq4', '6609022'), + (644, 2373, 'attending', '2023-12-26 17:21:14', '2025-12-17 19:46:38', 'xd98Epq4', '6632678'), + (644, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'xd98Epq4', '6632757'), + (644, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xd98Epq4', '6644187'), + (644, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xd98Epq4', '6648951'), + (644, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xd98Epq4', '6648952'), + (644, 2388, 'attending', '2024-01-05 00:14:46', '2025-12-17 19:46:37', 'xd98Epq4', '6649244'), + (644, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xd98Epq4', '6655401'), + (644, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xd98Epq4', '6661585'), + (644, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xd98Epq4', '6661588'), + (644, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xd98Epq4', '6661589'), + (644, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xd98Epq4', '6699906'), + (644, 2408, 'not_attending', '2024-01-23 15:13:50', '2025-12-17 19:46:40', 'xd98Epq4', '6699907'), + (644, 2409, 'attending', '2024-01-30 11:10:31', '2025-12-17 19:46:41', 'xd98Epq4', '6699909'), + (644, 2411, 'not_attending', '2024-02-15 23:28:36', '2025-12-17 19:46:42', 'xd98Epq4', '6699913'), + (644, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xd98Epq4', '6701109'), + (644, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xd98Epq4', '6705219'), + (644, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xd98Epq4', '6710153'), + (644, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xd98Epq4', '6711552'), + (644, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xd98Epq4', '6711553'), + (644, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xd98Epq4', '6722688'), + (644, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xd98Epq4', '6730620'), + (644, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xd98Epq4', '6730642'), + (644, 2449, 'not_attending', '2024-02-18 23:59:55', '2025-12-17 19:46:42', 'xd98Epq4', '6735833'), + (644, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xd98Epq4', '6740364'), + (644, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xd98Epq4', '6743829'), + (644, 2467, 'attending', '2024-02-21 02:16:04', '2025-12-17 19:46:43', 'xd98Epq4', '7029987'), + (644, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xd98Epq4', '7030380'), + (644, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xd98Epq4', '7033677'), + (644, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xd98Epq4', '7035415'), + (644, 2477, 'maybe', '2024-02-21 19:51:01', '2025-12-17 19:46:42', 'xd98Epq4', '7035692'), + (644, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xd98Epq4', '7044715'), + (644, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xd98Epq4', '7050318'), + (644, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xd98Epq4', '7050319'), + (644, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xd98Epq4', '7050322'), + (644, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xd98Epq4', '7057804'), + (644, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xd98Epq4', '7072824'), + (644, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xd98Epq4', '7074348'), + (644, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xd98Epq4', '7074364'), + (644, 2539, 'attending', '2024-04-01 20:06:00', '2025-12-17 19:46:33', 'xd98Epq4', '7085486'), + (644, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'xd98Epq4', '7089267'), + (644, 2543, 'attending', '2024-03-18 14:36:34', '2025-12-17 19:46:33', 'xd98Epq4', '7091456'), + (644, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xd98Epq4', '7098747'), + (644, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xd98Epq4', '7113468'), + (644, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xd98Epq4', '7114856'), + (644, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xd98Epq4', '7114951'), + (644, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xd98Epq4', '7114955'), + (644, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xd98Epq4', '7114956'), + (644, 2558, 'maybe', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xd98Epq4', '7114957'), + (644, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xd98Epq4', '7153615'), + (644, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xd98Epq4', '7159484'), + (644, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xd98Epq4', '7178446'), + (644, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'xd98Epq4', '7220467'), + (644, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xd98Epq4', '7240354'), + (644, 2616, 'attending', '2024-05-05 20:44:23', '2025-12-17 19:46:35', 'xd98Epq4', '7250296'), + (644, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xd98Epq4', '7251633'), + (644, 2622, 'attending', '2024-05-09 05:24:11', '2025-12-17 19:46:35', 'xd98Epq4', '7262064'), + (644, 2627, 'attending', '2024-05-24 15:10:27', '2025-12-17 19:46:35', 'xd98Epq4', '7264724'), + (644, 2628, 'attending', '2024-05-29 12:36:10', '2025-12-17 19:46:36', 'xd98Epq4', '7264725'), + (644, 2629, 'attending', '2024-06-05 16:43:57', '2025-12-17 19:46:28', 'xd98Epq4', '7264726'), + (644, 2645, 'attending', '2024-05-19 19:41:28', '2025-12-17 19:46:35', 'xd98Epq4', '7279964'), + (644, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'xd98Epq4', '7302674'), + (644, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xd98Epq4', '7324073'), + (644, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xd98Epq4', '7324074'), + (644, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xd98Epq4', '7324075'), + (644, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'xd98Epq4', '7324078'), + (644, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xd98Epq4', '7324082'), + (644, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xd98Epq4', '7331457'), + (644, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'xd98Epq4', '7356752'), + (644, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xd98Epq4', '7363643'), + (644, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xd98Epq4', '7368606'), + (644, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xd98Epq4', '7397462'), + (644, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xd98Epq4', '7424275'), + (644, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xd98Epq4', '7432751'), + (644, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xd98Epq4', '7432752'), + (644, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xd98Epq4', '7432753'), + (644, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xd98Epq4', '7432754'), + (644, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xd98Epq4', '7432755'), + (644, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xd98Epq4', '7432756'), + (644, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xd98Epq4', '7432758'), + (644, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xd98Epq4', '7432759'), + (644, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xd98Epq4', '7433834'), + (644, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'xd98Epq4', '7470197'), + (644, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xd98Epq4', '7685613'), + (644, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xd98Epq4', '7688194'), + (644, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xd98Epq4', '7688196'), + (644, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xd98Epq4', '7688289'), + (644, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xd98Epq4', '7692763'), + (644, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xd98Epq4', '7697552'), + (644, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xd98Epq4', '7699878'), + (644, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'xd98Epq4', '7704043'), + (644, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'xd98Epq4', '7712467'), + (644, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'xd98Epq4', '7713585'), + (644, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'xd98Epq4', '7713586'), + (644, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xd98Epq4', '7738518'), + (644, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xd98Epq4', '7750636'), + (644, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xd98Epq4', '7796540'), + (644, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xd98Epq4', '7796541'), + (644, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xd98Epq4', '7796542'), + (644, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xd98Epq4', '7825913'), + (644, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xd98Epq4', '7826209'), + (644, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xd98Epq4', '7834742'), + (644, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'xd98Epq4', '7842108'), + (644, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xd98Epq4', '7842902'), + (644, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xd98Epq4', '7842903'), + (644, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xd98Epq4', '7842904'), + (644, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xd98Epq4', '7842905'), + (644, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xd98Epq4', '7855719'), + (644, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xd98Epq4', '7860683'), + (644, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xd98Epq4', '7860684'), + (644, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xd98Epq4', '7866095'), + (644, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xd98Epq4', '7869170'), + (644, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xd98Epq4', '7869188'), + (644, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xd98Epq4', '7869201'), + (644, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xd98Epq4', '7877465'), + (644, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xd98Epq4', '7888250'), + (644, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xd98Epq4', '7904777'), + (644, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xd98Epq4', '8349164'), + (644, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xd98Epq4', '8349545'), + (644, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xd98Epq4', '8368028'), + (644, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'xd98Epq4', '8368029'), + (644, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xd98Epq4', '8388462'), + (644, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xd98Epq4', '8400273'), + (644, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'xd98Epq4', '8400275'), + (644, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'xd98Epq4', '8400276'), + (644, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xd98Epq4', '8404977'), + (644, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xd98Epq4', '8430783'), + (644, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xd98Epq4', '8430784'), + (644, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xd98Epq4', '8430799'), + (644, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xd98Epq4', '8430800'), + (644, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xd98Epq4', '8430801'), + (644, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'xd98Epq4', '8438709'), + (644, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xd98Epq4', '8457738'), + (644, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xd98Epq4', '8459566'), + (644, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xd98Epq4', '8459567'), + (644, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xd98Epq4', '8461032'), + (644, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xd98Epq4', '8477877'), + (644, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xd98Epq4', '8485688'), + (644, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xd98Epq4', '8490587'), + (644, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xd98Epq4', '8493552'), + (644, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xd98Epq4', '8493553'), + (644, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xd98Epq4', '8493554'), + (644, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xd98Epq4', '8493555'), + (644, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xd98Epq4', '8493556'), + (644, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xd98Epq4', '8493557'), + (644, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xd98Epq4', '8493558'), + (644, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xd98Epq4', '8493559'), + (644, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xd98Epq4', '8493560'), + (644, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'xd98Epq4', '8493561'), + (644, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xd98Epq4', '8493572'), + (644, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xd98Epq4', '8540725'), + (644, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xd98Epq4', '8555421'), + (645, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mpOqPe9d', '5441131'), + (645, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mpOqPe9d', '5441132'), + (645, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mpOqPe9d', '5505059'), + (645, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mpOqPe9d', '5509055'), + (645, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mpOqPe9d', '5512862'), + (645, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mpOqPe9d', '5513985'), + (645, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mpOqPe9d', '5522550'), + (645, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mpOqPe9d', '5534683'), + (645, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mpOqPe9d', '5537735'), + (645, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mpOqPe9d', '5540859'), + (645, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mpOqPe9d', '5546619'), + (645, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mpOqPe9d', '5555245'), + (645, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mpOqPe9d', '5557747'), + (645, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpOqPe9d', '5560255'), + (645, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mpOqPe9d', '5562906'), + (645, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mpOqPe9d', '5600604'), + (645, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpOqPe9d', '5605544'), + (645, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'mpOqPe9d', '5606737'), + (645, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpOqPe9d', '5635406'), + (645, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpOqPe9d', '5638765'), + (645, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mpOqPe9d', '5640843'), + (645, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpOqPe9d', '6045684'), + (646, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOx5BLLm', '6044839'), + (646, 1989, 'not_attending', '2023-05-10 19:47:39', '2025-12-17 19:47:03', 'dOx5BLLm', '6044842'), + (646, 1994, 'not_attending', '2023-04-08 19:25:16', '2025-12-17 19:46:59', 'dOx5BLLm', '6050104'), + (646, 1998, 'attending', '2023-04-10 22:21:12', '2025-12-17 19:46:59', 'dOx5BLLm', '6052056'), + (646, 2002, 'maybe', '2023-04-23 15:43:59', '2025-12-17 19:47:01', 'dOx5BLLm', '6052605'), + (646, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOx5BLLm', '6053198'), + (646, 2007, 'attending', '2023-04-08 01:44:48', '2025-12-17 19:46:58', 'dOx5BLLm', '6055291'), + (646, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOx5BLLm', '6056916'), + (646, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOx5BLLm', '6059290'), + (646, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOx5BLLm', '6060328'), + (646, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOx5BLLm', '6061037'), + (646, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOx5BLLm', '6061039'), + (646, 2021, 'maybe', '2023-04-17 14:39:53', '2025-12-17 19:47:00', 'dOx5BLLm', '6066316'), + (646, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOx5BLLm', '6067245'), + (646, 2026, 'attending', '2023-04-26 00:47:58', '2025-12-17 19:47:01', 'dOx5BLLm', '6068078'), + (646, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOx5BLLm', '6068094'), + (646, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOx5BLLm', '6068252'), + (646, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOx5BLLm', '6068253'), + (646, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOx5BLLm', '6068254'), + (646, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dOx5BLLm', '6068280'), + (646, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOx5BLLm', '6069093'), + (646, 2036, 'attending', '2023-04-30 16:24:02', '2025-12-17 19:47:01', 'dOx5BLLm', '6070780'), + (646, 2037, 'attending', '2023-04-23 15:43:32', '2025-12-17 19:47:00', 'dOx5BLLm', '6071943'), + (646, 2038, 'attending', '2023-04-23 15:43:46', '2025-12-17 19:47:01', 'dOx5BLLm', '6071944'), + (646, 2041, 'attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOx5BLLm', '6072528'), + (646, 2046, 'not_attending', '2023-05-10 19:47:29', '2025-12-17 19:47:02', 'dOx5BLLm', '6076020'), + (646, 2047, 'attending', '2023-04-30 16:24:42', '2025-12-17 19:47:02', 'dOx5BLLm', '6076027'), + (646, 2049, 'maybe', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOx5BLLm', '6079840'), + (646, 2050, 'attending', '2023-04-30 16:25:47', '2025-12-17 19:47:02', 'dOx5BLLm', '6080489'), + (646, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOx5BLLm', '6083398'), + (646, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOx5BLLm', '6093504'), + (646, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOx5BLLm', '6097414'), + (646, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOx5BLLm', '6097442'), + (646, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOx5BLLm', '6097684'), + (646, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOx5BLLm', '6098762'), + (646, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOx5BLLm', '6101361'), + (646, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOx5BLLm', '6101362'), + (646, 2068, 'not_attending', '2023-05-15 15:24:52', '2025-12-17 19:47:03', 'dOx5BLLm', '6102837'), + (646, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dOx5BLLm', '6103752'), + (646, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOx5BLLm', '6107314'), + (646, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOx5BLLm', '6120034'), + (646, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dOx5BLLm', '6136733'), + (646, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOx5BLLm', '6137989'), + (646, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOx5BLLm', '6150864'), + (646, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOx5BLLm', '6155491'), + (646, 2116, 'not_attending', '2023-07-07 01:51:56', '2025-12-17 19:46:51', 'dOx5BLLm', '6163389'), + (646, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOx5BLLm', '6164417'), + (646, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOx5BLLm', '6166388'), + (646, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOx5BLLm', '6176439'), + (646, 2122, 'attending', '2023-07-02 17:47:07', '2025-12-17 19:46:51', 'dOx5BLLm', '6176476'), + (646, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOx5BLLm', '6182410'), + (646, 2129, 'not_attending', '2023-07-03 15:26:16', '2025-12-17 19:46:51', 'dOx5BLLm', '6182825'), + (646, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOx5BLLm', '6185812'), + (646, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOx5BLLm', '6187651'), + (646, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOx5BLLm', '6187963'), + (646, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOx5BLLm', '6187964'), + (646, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOx5BLLm', '6187966'), + (646, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOx5BLLm', '6187967'), + (646, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOx5BLLm', '6187969'), + (646, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOx5BLLm', '6334878'), + (646, 2146, 'attending', '2023-07-21 17:22:16', '2025-12-17 19:46:53', 'dOx5BLLm', '6335638'), + (646, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOx5BLLm', '6337236'), + (646, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOx5BLLm', '6337970'), + (646, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOx5BLLm', '6338308'), + (646, 2159, 'attending', '2023-07-22 02:32:17', '2025-12-17 19:46:53', 'dOx5BLLm', '6338355'), + (646, 2160, 'attending', '2023-07-29 18:14:51', '2025-12-17 19:46:54', 'dOx5BLLm', '6338358'), + (646, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dOx5BLLm', '6340845'), + (646, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOx5BLLm', '6341710'), + (646, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOx5BLLm', '6342044'), + (646, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOx5BLLm', '6342298'), + (646, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dOx5BLLm', '6343294'), + (646, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOx5BLLm', '6347034'), + (646, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOx5BLLm', '6347056'), + (646, 2180, 'maybe', '2023-07-26 01:39:08', '2025-12-17 19:46:54', 'dOx5BLLm', '6348788'), + (646, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOx5BLLm', '6353830'), + (646, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOx5BLLm', '6353831'), + (646, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOx5BLLm', '6357867'), + (646, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOx5BLLm', '6358652'), + (646, 2199, 'attending', '2023-08-15 16:21:12', '2025-12-17 19:46:55', 'dOx5BLLm', '6359849'), + (646, 2200, 'attending', '2023-08-10 23:04:59', '2025-12-17 19:46:55', 'dOx5BLLm', '6359850'), + (646, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOx5BLLm', '6361709'), + (646, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dOx5BLLm', '6361710'), + (646, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOx5BLLm', '6361711'), + (646, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOx5BLLm', '6361712'), + (646, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOx5BLLm', '6361713'), + (646, 2232, 'not_attending', '2023-08-25 19:29:35', '2025-12-17 19:46:55', 'dOx5BLLm', '6374818'), + (646, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOx5BLLm', '6382573'), + (646, 2239, 'not_attending', '2023-09-01 02:16:48', '2025-12-17 19:46:56', 'dOx5BLLm', '6387592'), + (646, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOx5BLLm', '6388604'), + (646, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOx5BLLm', '6394629'), + (646, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOx5BLLm', '6394631'), + (646, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOx5BLLm', '6440863'), + (646, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOx5BLLm', '6445440'), + (646, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOx5BLLm', '6453951'), + (646, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOx5BLLm', '6461696'), + (646, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOx5BLLm', '6462129'), + (646, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOx5BLLm', '6463218'), + (646, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dOx5BLLm', '6472181'), + (646, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOx5BLLm', '6482693'), + (646, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dOx5BLLm', '6484200'), + (646, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOx5BLLm', '6484680'), + (646, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOx5BLLm', '6507741'), + (646, 2322, 'attending', '2023-11-17 21:51:09', '2025-12-17 19:46:48', 'dOx5BLLm', '6514659'), + (646, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOx5BLLm', '6514660'), + (646, 2325, 'attending', '2023-12-15 04:07:00', '2025-12-17 19:46:36', 'dOx5BLLm', '6514663'), + (646, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOx5BLLm', '6519103'), + (646, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOx5BLLm', '6535681'), + (646, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOx5BLLm', '6584747'), + (646, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOx5BLLm', '6587097'), + (646, 2357, 'not_attending', '2023-12-17 04:14:48', '2025-12-17 19:46:36', 'dOx5BLLm', '6593341'), + (646, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOx5BLLm', '6609022'), + (646, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOx5BLLm', '6632757'), + (646, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOx5BLLm', '6644187'), + (646, 2382, 'attending', '2024-01-02 23:28:49', '2025-12-17 19:46:37', 'dOx5BLLm', '6646401'), + (646, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOx5BLLm', '6648951'), + (646, 2387, 'attending', '2024-01-04 20:05:18', '2025-12-17 19:46:37', 'dOx5BLLm', '6648952'), + (646, 2394, 'not_attending', '2024-01-05 00:05:07', '2025-12-17 19:46:38', 'dOx5BLLm', '6654470'), + (646, 2395, 'attending', '2024-01-05 00:05:02', '2025-12-17 19:46:38', 'dOx5BLLm', '6654471'), + (646, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOx5BLLm', '6655401'), + (646, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOx5BLLm', '6661585'), + (646, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOx5BLLm', '6661588'), + (646, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOx5BLLm', '6661589'), + (646, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOx5BLLm', '6699906'), + (646, 2408, 'not_attending', '2024-01-17 01:29:32', '2025-12-17 19:46:40', 'dOx5BLLm', '6699907'), + (646, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOx5BLLm', '6699913'), + (646, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOx5BLLm', '6701109'), + (646, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOx5BLLm', '6705219'), + (646, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOx5BLLm', '6710153'), + (646, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOx5BLLm', '6711552'), + (646, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOx5BLLm', '6711553'), + (646, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOx5BLLm', '6722688'), + (646, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOx5BLLm', '6730620'), + (646, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOx5BLLm', '6730642'), + (646, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOx5BLLm', '6740364'), + (646, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOx5BLLm', '6743829'), + (646, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOx5BLLm', '7030380'), + (646, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOx5BLLm', '7033677'), + (646, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOx5BLLm', '7035415'), + (646, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOx5BLLm', '7044715'), + (646, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOx5BLLm', '7050318'), + (646, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOx5BLLm', '7050319'), + (646, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOx5BLLm', '7050322'), + (646, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOx5BLLm', '7057804'), + (646, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dOx5BLLm', '7059866'), + (646, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOx5BLLm', '7072824'), + (646, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOx5BLLm', '7074348'), + (646, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dOx5BLLm', '7074364'), + (646, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOx5BLLm', '7089267'), + (646, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOx5BLLm', '7098747'), + (646, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOx5BLLm', '7113468'), + (646, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOx5BLLm', '7114856'), + (646, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOx5BLLm', '7114951'), + (646, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOx5BLLm', '7114955'), + (646, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOx5BLLm', '7114956'), + (646, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dOx5BLLm', '7114957'), + (646, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOx5BLLm', '7153615'), + (646, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOx5BLLm', '7159484'), + (646, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOx5BLLm', '7178446'), + (646, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOx5BLLm', '7220467'), + (646, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dOx5BLLm', '7240354'), + (646, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOx5BLLm', '7251633'), + (646, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dOx5BLLm', '7263048'), + (646, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOx5BLLm', '7302674'), + (646, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dOx5BLLm', '7324073'), + (646, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dOx5BLLm', '7324074'), + (646, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dOx5BLLm', '7324075'), + (646, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dOx5BLLm', '7324078'), + (646, 2695, 'attending', '2024-08-16 03:13:11', '2025-12-17 19:46:31', 'dOx5BLLm', '7324080'), + (646, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dOx5BLLm', '7324082'), + (646, 2701, 'maybe', '2024-06-26 00:05:02', '2025-12-17 19:46:29', 'dOx5BLLm', '7324391'), + (646, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dOx5BLLm', '7331457'), + (646, 2724, 'attending', '2024-06-26 17:28:54', '2025-12-17 19:46:29', 'dOx5BLLm', '7332562'), + (646, 2731, 'attending', '2024-06-25 14:39:58', '2025-12-17 19:46:29', 'dOx5BLLm', '7335303'), + (646, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dOx5BLLm', '7356752'), + (646, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dOx5BLLm', '7363643'), + (646, 2767, 'attending', '2024-07-21 23:48:18', '2025-12-17 19:46:30', 'dOx5BLLm', '7364726'), + (646, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dOx5BLLm', '7368606'), + (646, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dOx5BLLm', '7397462'), + (646, 2806, 'maybe', '2024-09-16 02:13:07', '2025-12-17 19:46:25', 'dOx5BLLm', '7404888'), + (646, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dOx5BLLm', '7424275'), + (646, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dOx5BLLm', '7432751'), + (646, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dOx5BLLm', '7432752'), + (646, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dOx5BLLm', '7432753'), + (646, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dOx5BLLm', '7432754'), + (646, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dOx5BLLm', '7432755'), + (646, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dOx5BLLm', '7432756'), + (646, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOx5BLLm', '7432758'), + (646, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dOx5BLLm', '7432759'), + (646, 2832, 'maybe', '2024-09-11 02:52:40', '2025-12-17 19:46:24', 'dOx5BLLm', '7433324'), + (646, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dOx5BLLm', '7433834'), + (646, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dOx5BLLm', '7470197'), + (647, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dl2p7PVA', '6045684'), + (648, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'myDGDeWd', '4736499'), + (648, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'myDGDeWd', '4736503'), + (648, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'myDGDeWd', '4736504'), + (648, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'myDGDeWd', '5038850'), + (648, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'myDGDeWd', '5045826'), + (648, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'myDGDeWd', '5132533'), + (648, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'myDGDeWd', '6045684'), + (665, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mR02wvQ4', '5880942'), + (665, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mR02wvQ4', '5880943'), + (665, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mR02wvQ4', '5900200'), + (665, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mR02wvQ4', '5900202'), + (665, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mR02wvQ4', '5900203'), + (665, 1916, 'attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'mR02wvQ4', '5910526'), + (665, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'mR02wvQ4', '5910528'), + (665, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mR02wvQ4', '5916219'), + (665, 1930, 'attending', '2023-02-26 23:30:51', '2025-12-17 19:47:08', 'mR02wvQ4', '5933462'), + (665, 1931, 'attending', '2023-02-26 23:29:42', '2025-12-17 19:47:08', 'mR02wvQ4', '5933464'), + (665, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mR02wvQ4', '5936234'), + (665, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'mR02wvQ4', '5936691'), + (665, 1935, 'attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mR02wvQ4', '5958351'), + (665, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mR02wvQ4', '5959751'), + (665, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mR02wvQ4', '5959755'), + (665, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mR02wvQ4', '5960055'), + (665, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mR02wvQ4', '5961684'), + (665, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mR02wvQ4', '5962132'), + (665, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mR02wvQ4', '5962133'), + (665, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mR02wvQ4', '5962134'), + (665, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mR02wvQ4', '5962317'), + (665, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mR02wvQ4', '5962318'), + (665, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mR02wvQ4', '5965933'), + (665, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mR02wvQ4', '5967014'), + (665, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mR02wvQ4', '5972815'), + (665, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mR02wvQ4', '5974016'), + (665, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mR02wvQ4', '5981515'), + (665, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mR02wvQ4', '5993516'), + (665, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mR02wvQ4', '5998939'), + (665, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mR02wvQ4', '6028191'), + (665, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mR02wvQ4', '6040066'), + (665, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mR02wvQ4', '6042717'), + (665, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mR02wvQ4', '6044838'), + (665, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mR02wvQ4', '6044839'), + (665, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR02wvQ4', '6045684'), + (665, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mR02wvQ4', '6050104'), + (665, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mR02wvQ4', '6053195'), + (665, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mR02wvQ4', '6053198'), + (665, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mR02wvQ4', '6056085'), + (665, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mR02wvQ4', '6056916'), + (665, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mR02wvQ4', '6059290'), + (665, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mR02wvQ4', '6060328'), + (665, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mR02wvQ4', '6061037'), + (665, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mR02wvQ4', '6061039'), + (665, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mR02wvQ4', '6067245'), + (665, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mR02wvQ4', '6068094'), + (665, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mR02wvQ4', '6068252'), + (665, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mR02wvQ4', '6068253'), + (665, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mR02wvQ4', '6068254'), + (665, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mR02wvQ4', '6068280'), + (665, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mR02wvQ4', '6069093'), + (665, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mR02wvQ4', '6072528'), + (665, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mR02wvQ4', '6079840'), + (665, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mR02wvQ4', '6083398'), + (665, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mR02wvQ4', '6093504'), + (665, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mR02wvQ4', '6097414'), + (665, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mR02wvQ4', '6097442'), + (665, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mR02wvQ4', '6097684'), + (665, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mR02wvQ4', '6098762'), + (665, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mR02wvQ4', '6101362'), + (665, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mR02wvQ4', '6103752'), + (665, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mR02wvQ4', '6107314'), + (666, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dBb0rbbd', '7074364'), + (666, 2556, 'attending', '2024-04-20 17:47:12', '2025-12-17 19:46:34', 'dBb0rbbd', '7114955'), + (666, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dBb0rbbd', '7114956'), + (666, 2558, 'attending', '2024-04-30 02:32:44', '2025-12-17 19:46:35', 'dBb0rbbd', '7114957'), + (666, 2585, 'attending', '2024-04-23 14:21:26', '2025-12-17 19:46:34', 'dBb0rbbd', '7175828'), + (666, 2599, 'attending', '2024-04-22 13:04:25', '2025-12-17 19:46:34', 'dBb0rbbd', '7189372'), + (666, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dBb0rbbd', '7220467'), + (666, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBb0rbbd', '7240354'), + (666, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBb0rbbd', '7251633'), + (666, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBb0rbbd', '7263048'), + (666, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dBb0rbbd', '7302674'), + (666, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dBb0rbbd', '7324073'), + (666, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dBb0rbbd', '7324074'), + (666, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dBb0rbbd', '7324075'), + (666, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dBb0rbbd', '7324078'), + (666, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dBb0rbbd', '7324082'), + (666, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dBb0rbbd', '7331457'), + (666, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dBb0rbbd', '7356752'), + (666, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dBb0rbbd', '7363643'), + (666, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dBb0rbbd', '7368606'), + (666, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dBb0rbbd', '7397462'), + (666, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dBb0rbbd', '7424275'), + (666, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dBb0rbbd', '7424276'), + (666, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dBb0rbbd', '7432751'), + (666, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dBb0rbbd', '7432752'), + (666, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dBb0rbbd', '7432753'), + (666, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dBb0rbbd', '7432754'), + (666, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dBb0rbbd', '7432755'), + (666, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dBb0rbbd', '7432756'), + (666, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dBb0rbbd', '7432758'), + (666, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dBb0rbbd', '7432759'), + (666, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dBb0rbbd', '7433834'), + (666, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dBb0rbbd', '7470197'), + (666, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dBb0rbbd', '7685613'), + (666, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dBb0rbbd', '7688194'), + (666, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dBb0rbbd', '7688196'), + (666, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dBb0rbbd', '7688289'), + (666, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dBb0rbbd', '7692763'), + (666, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dBb0rbbd', '7697552'), + (666, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dBb0rbbd', '7699878'), + (666, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dBb0rbbd', '7704043'), + (666, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dBb0rbbd', '7712467'), + (666, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dBb0rbbd', '7713585'), + (666, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dBb0rbbd', '7713586'), + (666, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dBb0rbbd', '7738518'), + (666, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBb0rbbd', '7750636'), + (666, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBb0rbbd', '7796540'), + (666, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBb0rbbd', '7796541'), + (666, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBb0rbbd', '7796542'), + (667, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mLoVwz8d', '7074364'), + (667, 2525, 'attending', '2024-06-13 18:43:30', '2025-12-17 19:46:28', 'mLoVwz8d', '7074365'), + (667, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mLoVwz8d', '7324073'), + (667, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mLoVwz8d', '7324074'), + (667, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mLoVwz8d', '7324075'), + (667, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mLoVwz8d', '7324078'), + (667, 2702, 'attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mLoVwz8d', '7324867'), + (667, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mLoVwz8d', '7331457'), + (667, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'mLoVwz8d', '7332564'), + (667, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'mLoVwz8d', '7335193'), + (667, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mLoVwz8d', '7359624'), + (667, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mLoVwz8d', '7363643'), + (667, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mLoVwz8d', '7368606'), + (668, 2196, 'attending', '2023-08-31 02:45:51', '2025-12-17 19:46:56', 'dVD1xlrA', '6359398'), + (668, 2197, 'not_attending', '2023-08-31 02:47:19', '2025-12-17 19:46:44', 'dVD1xlrA', '6359399'), + (668, 2198, 'maybe', '2023-08-31 02:47:37', '2025-12-17 19:46:45', 'dVD1xlrA', '6359400'), + (668, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVD1xlrA', '6361711'), + (668, 2212, 'maybe', '2023-09-11 18:13:23', '2025-12-17 19:46:45', 'dVD1xlrA', '6361713'), + (668, 2235, 'maybe', '2023-08-31 02:45:05', '2025-12-17 19:46:56', 'dVD1xlrA', '6382573'), + (668, 2239, 'attending', '2023-09-01 04:38:39', '2025-12-17 19:46:56', 'dVD1xlrA', '6387592'), + (668, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVD1xlrA', '6388604'), + (668, 2242, 'maybe', '2023-09-11 18:12:43', '2025-12-17 19:46:45', 'dVD1xlrA', '6388606'), + (668, 2244, 'maybe', '2023-09-11 18:09:03', '2025-12-17 19:46:44', 'dVD1xlrA', '6393700'), + (668, 2248, 'maybe', '2023-09-11 18:09:24', '2025-12-17 19:46:44', 'dVD1xlrA', '6394629'), + (668, 2249, 'maybe', '2023-09-11 18:11:58', '2025-12-17 19:46:45', 'dVD1xlrA', '6394630'), + (668, 2250, 'maybe', '2023-09-11 18:13:15', '2025-12-17 19:46:45', 'dVD1xlrA', '6394631'), + (668, 2252, 'attending', '2023-09-11 18:12:56', '2025-12-17 19:46:45', 'dVD1xlrA', '6396837'), + (668, 2253, 'maybe', '2023-09-11 18:13:38', '2025-12-17 19:46:45', 'dVD1xlrA', '6401811'), + (668, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVD1xlrA', '6440863'), + (668, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVD1xlrA', '6445440'), + (668, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVD1xlrA', '6453951'), + (668, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVD1xlrA', '6461696'), + (668, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVD1xlrA', '6462129'), + (668, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVD1xlrA', '6463218'), + (668, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVD1xlrA', '6472181'), + (668, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVD1xlrA', '6482693'), + (668, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVD1xlrA', '6484200'), + (668, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVD1xlrA', '6484680'), + (668, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVD1xlrA', '6507741'), + (668, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVD1xlrA', '6514659'), + (668, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVD1xlrA', '6514660'), + (668, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVD1xlrA', '6519103'), + (668, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVD1xlrA', '6535681'), + (668, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVD1xlrA', '6584747'), + (668, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVD1xlrA', '6587097'), + (668, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVD1xlrA', '6609022'), + (668, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVD1xlrA', '6632757'), + (668, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVD1xlrA', '6644187'), + (668, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVD1xlrA', '6648951'), + (668, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVD1xlrA', '6648952'), + (668, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVD1xlrA', '6655401'), + (668, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVD1xlrA', '6661585'), + (668, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVD1xlrA', '6661588'), + (668, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVD1xlrA', '6661589'), + (668, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVD1xlrA', '6699906'), + (668, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVD1xlrA', '6701109'), + (668, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVD1xlrA', '6705219'), + (668, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVD1xlrA', '6710153'), + (668, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVD1xlrA', '6711552'), + (668, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVD1xlrA', '6711553'), + (669, 397, 'attending', '2021-05-23 00:31:40', '2025-12-17 19:47:47', 'oAQqO2gA', '3236452'), + (669, 648, 'maybe', '2021-05-29 21:11:01', '2025-12-17 19:47:47', 'oAQqO2gA', '3539923'), + (669, 743, 'maybe', '2021-06-23 03:01:02', '2025-12-17 19:47:38', 'oAQqO2gA', '3680623'), + (669, 744, 'maybe', '2021-06-10 15:02:02', '2025-12-17 19:47:47', 'oAQqO2gA', '3680624'), + (669, 746, 'maybe', '2021-07-08 14:05:41', '2025-12-17 19:47:39', 'oAQqO2gA', '3680626'), + (669, 815, 'not_attending', '2021-05-28 22:08:49', '2025-12-17 19:47:47', 'oAQqO2gA', '3818136'), + (669, 820, 'attending', '2021-05-28 16:54:15', '2025-12-17 19:47:47', 'oAQqO2gA', '3963335'), + (669, 821, 'not_attending', '2021-05-31 20:46:34', '2025-12-17 19:47:47', 'oAQqO2gA', '3963965'), + (669, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'oAQqO2gA', '3974109'), + (669, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAQqO2gA', '3975311'), + (669, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'oAQqO2gA', '3975312'), + (669, 830, 'attending', '2021-06-03 22:06:14', '2025-12-17 19:47:47', 'oAQqO2gA', '3976648'), + (669, 834, 'maybe', '2021-06-10 17:01:28', '2025-12-17 19:47:47', 'oAQqO2gA', '3990439'), + (669, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQqO2gA', '3994992'), + (669, 844, 'maybe', '2021-06-10 15:02:54', '2025-12-17 19:47:38', 'oAQqO2gA', '4014338'), + (669, 866, 'maybe', '2021-06-21 16:16:43', '2025-12-17 19:47:38', 'oAQqO2gA', '4020424'), + (669, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'oAQqO2gA', '4021848'), + (669, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAQqO2gA', '4136744'), + (669, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAQqO2gA', '4136937'), + (669, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAQqO2gA', '4136938'), + (669, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAQqO2gA', '4136947'), + (669, 879, 'maybe', '2021-06-23 09:27:41', '2025-12-17 19:47:38', 'oAQqO2gA', '4147806'), + (669, 882, 'maybe', '2021-06-24 08:53:36', '2025-12-17 19:47:38', 'oAQqO2gA', '4207630'), + (669, 883, 'maybe', '2021-06-22 20:59:36', '2025-12-17 19:47:38', 'oAQqO2gA', '4209121'), + (669, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAQqO2gA', '4210314'), + (669, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAQqO2gA', '4225444'), + (669, 889, 'maybe', '2021-06-28 11:42:01', '2025-12-17 19:47:38', 'oAQqO2gA', '4227492'), + (669, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAQqO2gA', '4239259'), + (669, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAQqO2gA', '4240316'), + (669, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAQqO2gA', '4240317'), + (669, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAQqO2gA', '4240318'), + (669, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'oAQqO2gA', '4240320'), + (669, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQqO2gA', '4250163'), + (669, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAQqO2gA', '4275957'), + (669, 920, 'maybe', '2021-07-25 11:59:49', '2025-12-17 19:47:40', 'oAQqO2gA', '4277819'), + (669, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAQqO2gA', '4301723'), + (669, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAQqO2gA', '4302093'), + (669, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAQqO2gA', '4304151'), + (669, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAQqO2gA', '4356801'), + (669, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAQqO2gA', '4366186'), + (669, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAQqO2gA', '4366187'), + (669, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'oAQqO2gA', '4420735'), + (669, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'oAQqO2gA', '4420738'), + (669, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAQqO2gA', '4420739'), + (669, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAQqO2gA', '4420741'), + (669, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAQqO2gA', '4420744'), + (669, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAQqO2gA', '4420747'), + (669, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAQqO2gA', '4420748'), + (669, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAQqO2gA', '4420749'), + (669, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAQqO2gA', '4461883'), + (669, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAQqO2gA', '4508342'), + (669, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQqO2gA', '6045684'), + (670, 423, 'attending', '2020-11-05 21:58:04', '2025-12-17 19:47:53', 'Vmy6a8yA', '3245296'), + (670, 440, 'attending', '2020-11-07 21:54:07', '2025-12-17 19:47:53', 'Vmy6a8yA', '3256168'), + (670, 441, 'attending', '2020-11-14 16:21:01', '2025-12-17 19:47:54', 'Vmy6a8yA', '3256169'), + (670, 445, 'not_attending', '2020-11-12 19:50:26', '2025-12-17 19:47:54', 'Vmy6a8yA', '3266138'), + (670, 456, 'maybe', '2020-11-16 17:01:41', '2025-12-17 19:47:54', 'Vmy6a8yA', '3276428'), + (670, 459, 'attending', '2020-11-16 00:21:30', '2025-12-17 19:47:54', 'Vmy6a8yA', '3281467'), + (670, 468, 'attending', '2020-11-19 13:32:01', '2025-12-17 19:47:54', 'Vmy6a8yA', '3285413'), + (670, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Vmy6a8yA', '3285414'), + (670, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Vmy6a8yA', '3297764'), + (670, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Vmy6a8yA', '3313856'), + (670, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Vmy6a8yA', '3314909'), + (670, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Vmy6a8yA', '3314964'), + (670, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'Vmy6a8yA', '3323365'), + (670, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Vmy6a8yA', '3329383'), + (670, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Vmy6a8yA', '3351539'), + (670, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Vmy6a8yA', '3386848'), + (670, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Vmy6a8yA', '3389527'), + (670, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Vmy6a8yA', '3396499'), + (670, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Vmy6a8yA', '3403650'), + (670, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Vmy6a8yA', '3406988'), + (670, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Vmy6a8yA', '3416576'), + (670, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'Vmy6a8yA', '3418925'), + (670, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Vmy6a8yA', '3426074'), + (670, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'Vmy6a8yA', '3430267'), + (670, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'Vmy6a8yA', '3470305'), + (670, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Vmy6a8yA', '3470991'), + (670, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'Vmy6a8yA', '3517815'), + (670, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'Vmy6a8yA', '3517816'), + (670, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'Vmy6a8yA', '3523941'), + (670, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Vmy6a8yA', '3533850'), + (670, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Vmy6a8yA', '3536632'), + (670, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Vmy6a8yA', '3536656'), + (670, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Vmy6a8yA', '3539916'), + (670, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Vmy6a8yA', '3539917'), + (670, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Vmy6a8yA', '3539918'), + (670, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539919'), + (670, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539920'), + (670, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539921'), + (670, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539922'), + (670, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Vmy6a8yA', '3539923'), + (670, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Vmy6a8yA', '3539927'), + (670, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Vmy6a8yA', '3582734'), + (670, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Vmy6a8yA', '3583262'), + (670, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Vmy6a8yA', '3619523'), + (670, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Vmy6a8yA', '3661369'), + (670, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Vmy6a8yA', '3674262'), + (670, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Vmy6a8yA', '3677402'), + (670, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Vmy6a8yA', '3730212'), + (670, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Vmy6a8yA', '3793156'), + (670, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Vmy6a8yA', '3974109'), + (670, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Vmy6a8yA', '3975311'), + (670, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Vmy6a8yA', '3975312'), + (670, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Vmy6a8yA', '3994992'), + (670, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Vmy6a8yA', '4014338'), + (670, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'Vmy6a8yA', '4021848'), + (670, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Vmy6a8yA', '4136744'), + (670, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Vmy6a8yA', '4136937'), + (670, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Vmy6a8yA', '4136938'), + (670, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Vmy6a8yA', '4136947'), + (670, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Vmy6a8yA', '4210314'), + (670, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Vmy6a8yA', '4225444'), + (670, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Vmy6a8yA', '4239259'), + (670, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Vmy6a8yA', '4240316'), + (670, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Vmy6a8yA', '4240317'), + (670, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Vmy6a8yA', '4240318'), + (670, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Vmy6a8yA', '4240320'), + (670, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Vmy6a8yA', '4250163'), + (670, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Vmy6a8yA', '4275957'), + (670, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Vmy6a8yA', '4277819'), + (670, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Vmy6a8yA', '4301723'), + (670, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Vmy6a8yA', '4302093'), + (670, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Vmy6a8yA', '4304151'), + (670, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Vmy6a8yA', '4356801'), + (670, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Vmy6a8yA', '4366186'), + (670, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Vmy6a8yA', '4366187'), + (670, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Vmy6a8yA', '4420735'), + (670, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Vmy6a8yA', '4420738'), + (670, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Vmy6a8yA', '4420739'), + (670, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Vmy6a8yA', '4420741'), + (670, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Vmy6a8yA', '4420744'), + (670, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Vmy6a8yA', '4420747'), + (670, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Vmy6a8yA', '4420748'), + (670, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Vmy6a8yA', '4420749'), + (670, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Vmy6a8yA', '4461883'), + (670, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Vmy6a8yA', '4508342'), + (670, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Vmy6a8yA', '4568602'), + (670, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Vmy6a8yA', '4572153'), + (670, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Vmy6a8yA', '4585962'), + (670, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'Vmy6a8yA', '4596356'), + (670, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Vmy6a8yA', '4598860'), + (670, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Vmy6a8yA', '4598861'), + (670, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Vmy6a8yA', '4602797'), + (670, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Vmy6a8yA', '4637896'), + (670, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Vmy6a8yA', '4642994'), + (670, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Vmy6a8yA', '4642995'), + (670, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Vmy6a8yA', '4642996'), + (670, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Vmy6a8yA', '4642997'), + (670, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Vmy6a8yA', '4645687'), + (670, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Vmy6a8yA', '4645698'), + (670, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Vmy6a8yA', '4645704'), + (670, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Vmy6a8yA', '4645705'), + (670, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Vmy6a8yA', '4668385'), + (670, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Vmy6a8yA', '4694407'), + (670, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Vmy6a8yA', '4736497'), + (670, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Vmy6a8yA', '4736499'), + (670, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Vmy6a8yA', '4736500'), + (670, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Vmy6a8yA', '4736503'), + (670, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Vmy6a8yA', '4736504'), + (670, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Vmy6a8yA', '4746789'), + (670, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Vmy6a8yA', '4753929'), + (670, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Vmy6a8yA', '5038850'), + (670, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Vmy6a8yA', '5045826'), + (670, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Vmy6a8yA', '5132533'), + (670, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Vmy6a8yA', '5186582'), + (670, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Vmy6a8yA', '5186583'), + (670, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Vmy6a8yA', '5186585'), + (670, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Vmy6a8yA', '5190437'), + (670, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Vmy6a8yA', '5195095'), + (670, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Vmy6a8yA', '5215989'), + (670, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Vmy6a8yA', '5223686'), + (670, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Vmy6a8yA', '5247467'), + (670, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Vmy6a8yA', '5260800'), + (670, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Vmy6a8yA', '5269930'), + (670, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Vmy6a8yA', '5271448'), + (670, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'Vmy6a8yA', '5271449'), + (670, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Vmy6a8yA', '5278159'), + (670, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Vmy6a8yA', '5363695'), + (670, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Vmy6a8yA', '5365960'), + (670, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Vmy6a8yA', '5378247'), + (670, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Vmy6a8yA', '5389605'), + (670, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Vmy6a8yA', '5397265'), + (670, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Vmy6a8yA', '5404786'), + (670, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Vmy6a8yA', '5405203'), + (670, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Vmy6a8yA', '5412550'), + (670, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Vmy6a8yA', '5415046'), + (670, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Vmy6a8yA', '5422086'), + (670, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Vmy6a8yA', '5422406'), + (670, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Vmy6a8yA', '5424565'), + (670, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Vmy6a8yA', '5426882'), + (670, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Vmy6a8yA', '5441125'), + (670, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Vmy6a8yA', '5441126'), + (670, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Vmy6a8yA', '5441128'), + (670, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Vmy6a8yA', '5441131'), + (670, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Vmy6a8yA', '5441132'), + (670, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Vmy6a8yA', '5453325'), + (670, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Vmy6a8yA', '5454516'), + (670, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Vmy6a8yA', '5454605'), + (670, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Vmy6a8yA', '5455037'), + (670, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Vmy6a8yA', '5461278'), + (670, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Vmy6a8yA', '5469480'), + (670, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Vmy6a8yA', '5474663'), + (670, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Vmy6a8yA', '5482022'), + (670, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Vmy6a8yA', '5488912'), + (670, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Vmy6a8yA', '5492192'), + (670, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Vmy6a8yA', '5493139'), + (670, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Vmy6a8yA', '5493200'), + (670, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Vmy6a8yA', '5502188'), + (670, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Vmy6a8yA', '5505059'), + (670, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Vmy6a8yA', '5509055'), + (670, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Vmy6a8yA', '5512862'), + (670, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Vmy6a8yA', '5513985'), + (670, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'Vmy6a8yA', '5519981'), + (670, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Vmy6a8yA', '5522550'), + (670, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Vmy6a8yA', '5534683'), + (670, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Vmy6a8yA', '5537735'), + (670, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Vmy6a8yA', '5540859'), + (670, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Vmy6a8yA', '5546619'), + (670, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Vmy6a8yA', '5557747'), + (670, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Vmy6a8yA', '5560255'), + (670, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Vmy6a8yA', '5562906'), + (670, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Vmy6a8yA', '5600604'), + (670, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Vmy6a8yA', '5605544'), + (670, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Vmy6a8yA', '5630960'), + (670, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Vmy6a8yA', '5630961'), + (670, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Vmy6a8yA', '5630962'), + (670, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Vmy6a8yA', '5630966'), + (670, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Vmy6a8yA', '5630967'), + (670, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Vmy6a8yA', '5630968'), + (670, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Vmy6a8yA', '5635406'), + (670, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Vmy6a8yA', '5638765'), + (670, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Vmy6a8yA', '5640097'), + (670, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Vmy6a8yA', '5640843'), + (670, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Vmy6a8yA', '5641521'), + (670, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Vmy6a8yA', '5642818'), + (670, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Vmy6a8yA', '5652395'), + (670, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Vmy6a8yA', '5670445'), + (670, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Vmy6a8yA', '5671637'), + (670, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Vmy6a8yA', '5672329'), + (670, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Vmy6a8yA', '5674057'), + (670, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Vmy6a8yA', '5674060'), + (670, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Vmy6a8yA', '5677461'), + (670, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Vmy6a8yA', '5698046'), + (670, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Vmy6a8yA', '5699760'), + (670, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Vmy6a8yA', '5741601'), + (670, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Vmy6a8yA', '5763458'), + (670, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Vmy6a8yA', '5774172'), + (670, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'Vmy6a8yA', '5818247'), + (670, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Vmy6a8yA', '5819471'), + (670, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Vmy6a8yA', '5827739'), + (670, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Vmy6a8yA', '5844306'), + (670, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Vmy6a8yA', '5850159'), + (670, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Vmy6a8yA', '5858999'), + (670, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Vmy6a8yA', '5871984'), + (670, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Vmy6a8yA', '5876354'), + (670, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Vmy6a8yA', '5880939'), + (670, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Vmy6a8yA', '5880940'), + (670, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Vmy6a8yA', '5880942'), + (670, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Vmy6a8yA', '5880943'), + (670, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Vmy6a8yA', '5887890'), + (670, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Vmy6a8yA', '5888598'), + (670, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Vmy6a8yA', '5893260'), + (670, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Vmy6a8yA', '5899826'), + (670, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Vmy6a8yA', '5900199'), + (670, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Vmy6a8yA', '5900200'), + (670, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Vmy6a8yA', '5900202'), + (670, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Vmy6a8yA', '5900203'), + (670, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Vmy6a8yA', '5901108'), + (670, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Vmy6a8yA', '5901126'), + (670, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'Vmy6a8yA', '5901606'), + (670, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Vmy6a8yA', '5909655'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (670, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Vmy6a8yA', '5910522'), + (670, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Vmy6a8yA', '5910526'), + (670, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Vmy6a8yA', '5910528'), + (670, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Vmy6a8yA', '5916219'), + (670, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Vmy6a8yA', '5936234'), + (670, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Vmy6a8yA', '5958351'), + (670, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Vmy6a8yA', '5959751'), + (670, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Vmy6a8yA', '5959755'), + (670, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Vmy6a8yA', '5960055'), + (670, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Vmy6a8yA', '5961684'), + (670, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Vmy6a8yA', '5962132'), + (670, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Vmy6a8yA', '5962133'), + (670, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Vmy6a8yA', '5962134'), + (670, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Vmy6a8yA', '5962317'), + (670, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Vmy6a8yA', '5962318'), + (670, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Vmy6a8yA', '5965933'), + (670, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Vmy6a8yA', '5967014'), + (670, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Vmy6a8yA', '5972815'), + (670, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Vmy6a8yA', '5974016'), + (670, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Vmy6a8yA', '5981515'), + (670, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Vmy6a8yA', '5993516'), + (670, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Vmy6a8yA', '5998939'), + (670, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Vmy6a8yA', '6028191'), + (670, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Vmy6a8yA', '6040066'), + (670, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Vmy6a8yA', '6042717'), + (670, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Vmy6a8yA', '6044838'), + (670, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Vmy6a8yA', '6044839'), + (670, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Vmy6a8yA', '6045684'), + (670, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Vmy6a8yA', '6050104'), + (670, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Vmy6a8yA', '6053195'), + (670, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Vmy6a8yA', '6053198'), + (670, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Vmy6a8yA', '6056085'), + (670, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Vmy6a8yA', '6056916'), + (670, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Vmy6a8yA', '6059290'), + (670, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Vmy6a8yA', '6060328'), + (670, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Vmy6a8yA', '6061037'), + (670, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Vmy6a8yA', '6061039'), + (670, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Vmy6a8yA', '6067245'), + (670, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Vmy6a8yA', '6068094'), + (670, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Vmy6a8yA', '6068252'), + (670, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Vmy6a8yA', '6068253'), + (670, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Vmy6a8yA', '6068254'), + (670, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Vmy6a8yA', '6068280'), + (670, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Vmy6a8yA', '6069093'), + (670, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Vmy6a8yA', '6072528'), + (670, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Vmy6a8yA', '6079840'), + (670, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Vmy6a8yA', '6083398'), + (670, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Vmy6a8yA', '6093504'), + (670, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Vmy6a8yA', '6097414'), + (670, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Vmy6a8yA', '6097442'), + (670, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Vmy6a8yA', '6097684'), + (670, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Vmy6a8yA', '6098762'), + (670, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Vmy6a8yA', '6101361'), + (670, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Vmy6a8yA', '6101362'), + (670, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Vmy6a8yA', '6107314'), + (670, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Vmy6a8yA', '6120034'), + (670, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'Vmy6a8yA', '6136733'), + (670, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Vmy6a8yA', '6137989'), + (670, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Vmy6a8yA', '6150864'), + (670, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Vmy6a8yA', '6155491'), + (670, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Vmy6a8yA', '6164417'), + (670, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Vmy6a8yA', '6166388'), + (670, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Vmy6a8yA', '6176439'), + (670, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Vmy6a8yA', '6182410'), + (670, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Vmy6a8yA', '6185812'), + (670, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Vmy6a8yA', '6187651'), + (670, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Vmy6a8yA', '6187963'), + (670, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Vmy6a8yA', '6187964'), + (670, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Vmy6a8yA', '6187966'), + (670, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Vmy6a8yA', '6187967'), + (670, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Vmy6a8yA', '6187969'), + (670, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Vmy6a8yA', '6334878'), + (670, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Vmy6a8yA', '6337236'), + (670, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Vmy6a8yA', '6337970'), + (670, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Vmy6a8yA', '6338308'), + (670, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Vmy6a8yA', '6341710'), + (670, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Vmy6a8yA', '6342044'), + (670, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Vmy6a8yA', '6342298'), + (670, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Vmy6a8yA', '6343294'), + (670, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Vmy6a8yA', '6347034'), + (670, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Vmy6a8yA', '6347056'), + (670, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Vmy6a8yA', '6353830'), + (670, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Vmy6a8yA', '6353831'), + (670, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Vmy6a8yA', '6357867'), + (670, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Vmy6a8yA', '6358652'), + (670, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Vmy6a8yA', '6361709'), + (670, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Vmy6a8yA', '6361710'), + (670, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Vmy6a8yA', '6361711'), + (670, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Vmy6a8yA', '6361712'), + (670, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Vmy6a8yA', '6361713'), + (670, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Vmy6a8yA', '6382573'), + (670, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Vmy6a8yA', '6388604'), + (670, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Vmy6a8yA', '6394629'), + (670, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Vmy6a8yA', '6394631'), + (670, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Vmy6a8yA', '6440863'), + (670, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Vmy6a8yA', '6445440'), + (670, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Vmy6a8yA', '6453951'), + (670, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Vmy6a8yA', '6461696'), + (670, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Vmy6a8yA', '6462129'), + (670, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Vmy6a8yA', '6463218'), + (670, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Vmy6a8yA', '6472181'), + (670, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Vmy6a8yA', '6482693'), + (670, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Vmy6a8yA', '6484200'), + (670, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Vmy6a8yA', '6484680'), + (670, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Vmy6a8yA', '6507741'), + (670, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Vmy6a8yA', '6514659'), + (670, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Vmy6a8yA', '6514660'), + (670, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Vmy6a8yA', '6519103'), + (670, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Vmy6a8yA', '6535681'), + (670, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Vmy6a8yA', '6584747'), + (670, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Vmy6a8yA', '6587097'), + (670, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Vmy6a8yA', '6609022'), + (670, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Vmy6a8yA', '6632757'), + (670, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Vmy6a8yA', '6644187'), + (670, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Vmy6a8yA', '6648951'), + (670, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Vmy6a8yA', '6648952'), + (670, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Vmy6a8yA', '6655401'), + (670, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Vmy6a8yA', '6661585'), + (670, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Vmy6a8yA', '6661588'), + (670, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Vmy6a8yA', '6661589'), + (670, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Vmy6a8yA', '6699906'), + (670, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Vmy6a8yA', '6699913'), + (670, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Vmy6a8yA', '6701109'), + (670, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Vmy6a8yA', '6705219'), + (670, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Vmy6a8yA', '6710153'), + (670, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Vmy6a8yA', '6711552'), + (670, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'Vmy6a8yA', '6711553'), + (670, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Vmy6a8yA', '6722688'), + (670, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Vmy6a8yA', '6730620'), + (670, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Vmy6a8yA', '6740364'), + (670, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Vmy6a8yA', '6743829'), + (670, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Vmy6a8yA', '7030380'), + (670, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Vmy6a8yA', '7033677'), + (670, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Vmy6a8yA', '7044715'), + (670, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Vmy6a8yA', '7050318'), + (670, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Vmy6a8yA', '7050319'), + (670, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Vmy6a8yA', '7050322'), + (670, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Vmy6a8yA', '7057804'), + (670, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Vmy6a8yA', '7072824'), + (670, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Vmy6a8yA', '7074348'), + (670, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Vmy6a8yA', '7074364'), + (670, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Vmy6a8yA', '7089267'), + (670, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Vmy6a8yA', '7098747'), + (670, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Vmy6a8yA', '7113468'), + (670, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Vmy6a8yA', '7114856'), + (670, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Vmy6a8yA', '7114951'), + (670, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Vmy6a8yA', '7114955'), + (670, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Vmy6a8yA', '7114956'), + (670, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Vmy6a8yA', '7114957'), + (670, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Vmy6a8yA', '7159484'), + (670, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Vmy6a8yA', '7178446'), + (670, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'Vmy6a8yA', '7220467'), + (670, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Vmy6a8yA', '7240354'), + (670, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Vmy6a8yA', '7251633'), + (670, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Vmy6a8yA', '7324073'), + (670, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Vmy6a8yA', '7324074'), + (670, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Vmy6a8yA', '7324075'), + (670, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Vmy6a8yA', '7324078'), + (670, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Vmy6a8yA', '7324082'), + (670, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Vmy6a8yA', '7331457'), + (670, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Vmy6a8yA', '7363643'), + (670, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Vmy6a8yA', '7368606'), + (670, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Vmy6a8yA', '7397462'), + (670, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Vmy6a8yA', '7424275'), + (670, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Vmy6a8yA', '7432751'), + (670, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Vmy6a8yA', '7432752'), + (670, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Vmy6a8yA', '7432753'), + (670, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432754'), + (670, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432755'), + (670, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432756'), + (670, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432758'), + (670, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432759'), + (670, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Vmy6a8yA', '7433834'), + (670, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Vmy6a8yA', '7470197'), + (670, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Vmy6a8yA', '7685613'), + (670, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Vmy6a8yA', '7688194'), + (670, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Vmy6a8yA', '7688196'), + (670, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Vmy6a8yA', '7688289'), + (670, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Vmy6a8yA', '7692763'), + (670, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Vmy6a8yA', '7697552'), + (670, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Vmy6a8yA', '7699878'), + (670, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Vmy6a8yA', '7704043'), + (670, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Vmy6a8yA', '7712467'), + (670, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Vmy6a8yA', '7713585'), + (670, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Vmy6a8yA', '7713586'), + (670, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Vmy6a8yA', '7738518'), + (670, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Vmy6a8yA', '7750636'), + (670, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Vmy6a8yA', '7796540'), + (670, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Vmy6a8yA', '7796541'), + (670, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Vmy6a8yA', '7796542'), + (670, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Vmy6a8yA', '7825913'), + (670, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Vmy6a8yA', '7826209'), + (670, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Vmy6a8yA', '7834742'), + (670, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Vmy6a8yA', '7842108'), + (670, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Vmy6a8yA', '7842902'), + (670, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Vmy6a8yA', '7842903'), + (670, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Vmy6a8yA', '7842904'), + (670, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Vmy6a8yA', '7842905'), + (670, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Vmy6a8yA', '7855719'), + (670, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Vmy6a8yA', '7860683'), + (670, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Vmy6a8yA', '7860684'), + (670, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Vmy6a8yA', '7866095'), + (670, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Vmy6a8yA', '7869170'), + (670, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Vmy6a8yA', '7869188'), + (670, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Vmy6a8yA', '7869201'), + (670, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Vmy6a8yA', '7877465'), + (670, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Vmy6a8yA', '7888250'), + (670, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Vmy6a8yA', '7904777'), + (670, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Vmy6a8yA', '8349164'), + (670, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Vmy6a8yA', '8349545'), + (670, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Vmy6a8yA', '8368028'), + (670, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Vmy6a8yA', '8368029'), + (670, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Vmy6a8yA', '8388462'), + (670, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Vmy6a8yA', '8400273'), + (670, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Vmy6a8yA', '8400275'), + (670, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Vmy6a8yA', '8400276'), + (670, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Vmy6a8yA', '8404977'), + (670, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Vmy6a8yA', '8430783'), + (670, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Vmy6a8yA', '8430784'), + (670, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Vmy6a8yA', '8430799'), + (670, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Vmy6a8yA', '8430800'), + (670, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Vmy6a8yA', '8430801'), + (670, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Vmy6a8yA', '8438709'), + (670, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Vmy6a8yA', '8457738'), + (670, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Vmy6a8yA', '8459566'), + (670, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Vmy6a8yA', '8459567'), + (670, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Vmy6a8yA', '8461032'), + (670, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Vmy6a8yA', '8477877'), + (670, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Vmy6a8yA', '8485688'), + (670, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Vmy6a8yA', '8490587'), + (670, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Vmy6a8yA', '8493552'), + (670, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Vmy6a8yA', '8493553'), + (670, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Vmy6a8yA', '8493554'), + (670, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Vmy6a8yA', '8493555'), + (670, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Vmy6a8yA', '8493556'), + (670, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Vmy6a8yA', '8493557'), + (670, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Vmy6a8yA', '8493558'), + (670, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Vmy6a8yA', '8493559'), + (670, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Vmy6a8yA', '8493560'), + (670, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Vmy6a8yA', '8493561'), + (670, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Vmy6a8yA', '8493572'), + (670, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Vmy6a8yA', '8540725'), + (670, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Vmy6a8yA', '8555421'), + (671, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'AnneYvYA', '5186585'), + (671, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AnneYvYA', '5195095'), + (671, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AnneYvYA', '5215989'), + (671, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AnneYvYA', '5223686'), + (671, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AnneYvYA', '5227432'), + (671, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AnneYvYA', '5247467'), + (671, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AnneYvYA', '5260800'), + (671, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AnneYvYA', '5269930'), + (671, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AnneYvYA', '5271448'), + (671, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AnneYvYA', '5271449'), + (671, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AnneYvYA', '5276469'), + (671, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AnneYvYA', '5278159'), + (671, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AnneYvYA', '6045684'), + (672, 18, 'not_attending', '2020-04-17 20:22:40', '2025-12-17 19:47:57', 'w4W50Mqm', '2958062'), + (672, 21, 'not_attending', '2020-05-01 17:18:07', '2025-12-17 19:47:57', 'w4W50Mqm', '2958065'), + (672, 40, 'not_attending', '2020-04-09 04:16:23', '2025-12-17 19:47:57', 'w4W50Mqm', '2970718'), + (672, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'w4W50Mqm', '2971546'), + (672, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'w4W50Mqm', '2974534'), + (672, 46, 'not_attending', '2020-04-11 15:16:38', '2025-12-17 19:47:57', 'w4W50Mqm', '2974955'), + (672, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'w4W50Mqm', '2975385'), + (672, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'w4W50Mqm', '2976575'), + (672, 67, 'not_attending', '2020-06-16 21:53:27', '2025-12-17 19:47:58', 'w4W50Mqm', '2977136'), + (672, 69, 'maybe', '2020-07-02 23:32:53', '2025-12-17 19:47:55', 'w4W50Mqm', '2977138'), + (672, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'w4W50Mqm', '2977343'), + (672, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'w4W50Mqm', '2977812'), + (672, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'w4W50Mqm', '2977931'), + (672, 74, 'attending', '2020-04-12 04:01:00', '2025-12-17 19:47:57', 'w4W50Mqm', '2978244'), + (672, 75, 'attending', '2020-04-19 19:40:05', '2025-12-17 19:47:57', 'w4W50Mqm', '2978245'), + (672, 76, 'attending', '2020-05-01 21:11:43', '2025-12-17 19:47:57', 'w4W50Mqm', '2978246'), + (672, 77, 'not_attending', '2020-05-04 13:58:20', '2025-12-17 19:47:57', 'w4W50Mqm', '2978247'), + (672, 78, 'attending', '2020-05-19 22:58:02', '2025-12-17 19:47:57', 'w4W50Mqm', '2978249'), + (672, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'w4W50Mqm', '2978250'), + (672, 80, 'attending', '2020-06-06 01:02:10', '2025-12-17 19:47:58', 'w4W50Mqm', '2978251'), + (672, 81, 'attending', '2020-06-13 23:05:40', '2025-12-17 19:47:58', 'w4W50Mqm', '2978252'), + (672, 82, 'attending', '2020-04-12 04:00:53', '2025-12-17 19:47:57', 'w4W50Mqm', '2978433'), + (672, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'w4W50Mqm', '2978438'), + (672, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'w4W50Mqm', '2980871'), + (672, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'w4W50Mqm', '2981388'), + (672, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'w4W50Mqm', '2986743'), + (672, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', 'w4W50Mqm', '2990784'), + (672, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', 'w4W50Mqm', '2991471'), + (672, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'w4W50Mqm', '2993501'), + (672, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'w4W50Mqm', '2994480'), + (672, 115, 'attending', '2020-05-16 00:41:17', '2025-12-17 19:47:57', 'w4W50Mqm', '3001217'), + (672, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'w4W50Mqm', '3023063'), + (672, 123, 'attending', '2020-05-25 22:58:29', '2025-12-17 19:47:57', 'w4W50Mqm', '3023729'), + (672, 125, 'attending', '2020-05-22 23:00:38', '2025-12-17 19:47:57', 'w4W50Mqm', '3023987'), + (672, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'w4W50Mqm', '3034321'), + (672, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'w4W50Mqm', '3035881'), + (672, 137, 'maybe', '2020-06-04 22:57:02', '2025-12-17 19:47:58', 'w4W50Mqm', '3042188'), + (672, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'w4W50Mqm', '3049983'), + (672, 171, 'attending', '2020-06-13 00:19:38', '2025-12-17 19:47:58', 'w4W50Mqm', '3058743'), + (672, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'w4W50Mqm', '3058959'), + (672, 173, 'attending', '2020-06-19 17:06:25', '2025-12-17 19:47:58', 'w4W50Mqm', '3067093'), + (672, 182, 'attending', '2020-06-27 17:42:07', '2025-12-17 19:47:55', 'w4W50Mqm', '3074514'), + (672, 183, 'not_attending', '2020-06-22 21:27:25', '2025-12-17 19:47:58', 'w4W50Mqm', '3075228'), + (672, 185, 'not_attending', '2020-06-16 18:22:06', '2025-12-17 19:47:58', 'w4W50Mqm', '3075456'), + (672, 186, 'maybe', '2020-06-18 23:16:19', '2025-12-17 19:47:55', 'w4W50Mqm', '3083791'), + (672, 187, 'maybe', '2020-06-18 23:16:24', '2025-12-17 19:47:55', 'w4W50Mqm', '3085151'), + (672, 190, 'attending', '2020-07-03 22:50:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3087258'), + (672, 191, 'attending', '2020-07-07 17:05:14', '2025-12-17 19:47:55', 'w4W50Mqm', '3087259'), + (672, 192, 'attending', '2020-07-15 18:59:27', '2025-12-17 19:47:55', 'w4W50Mqm', '3087260'), + (672, 193, 'attending', '2020-07-26 03:05:08', '2025-12-17 19:47:55', 'w4W50Mqm', '3087261'), + (672, 194, 'attending', '2020-07-28 02:39:24', '2025-12-17 19:47:55', 'w4W50Mqm', '3087262'), + (672, 195, 'attending', '2020-08-04 22:29:00', '2025-12-17 19:47:56', 'w4W50Mqm', '3087264'), + (672, 196, 'attending', '2020-08-11 00:31:41', '2025-12-17 19:47:56', 'w4W50Mqm', '3087265'), + (672, 197, 'attending', '2020-08-19 19:37:22', '2025-12-17 19:47:56', 'w4W50Mqm', '3087266'), + (672, 198, 'not_attending', '2020-08-29 02:24:16', '2025-12-17 19:47:56', 'w4W50Mqm', '3087267'), + (672, 199, 'attending', '2020-09-12 22:46:30', '2025-12-17 19:47:56', 'w4W50Mqm', '3087268'), + (672, 201, 'maybe', '2020-06-25 21:21:10', '2025-12-17 19:47:55', 'w4W50Mqm', '3088653'), + (672, 202, 'attending', '2020-07-06 22:20:48', '2025-12-17 19:47:55', 'w4W50Mqm', '3090353'), + (672, 203, 'maybe', '2020-06-22 10:04:12', '2025-12-17 19:47:58', 'w4W50Mqm', '3091624'), + (672, 205, 'attending', '2020-07-10 21:44:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3104804'), + (672, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'w4W50Mqm', '3106813'), + (672, 214, 'attending', '2020-07-08 21:58:47', '2025-12-17 19:47:55', 'w4W50Mqm', '3124139'), + (672, 217, 'attending', '2020-07-13 23:58:12', '2025-12-17 19:47:55', 'w4W50Mqm', '3126684'), + (672, 223, 'attending', '2020-09-12 22:46:45', '2025-12-17 19:47:56', 'w4W50Mqm', '3129980'), + (672, 225, 'attending', '2020-07-21 16:11:22', '2025-12-17 19:47:55', 'w4W50Mqm', '3132378'), + (672, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'w4W50Mqm', '3132817'), + (672, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'w4W50Mqm', '3132820'), + (672, 267, 'attending', '2020-08-01 01:37:59', '2025-12-17 19:47:55', 'w4W50Mqm', '3152781'), + (672, 271, 'maybe', '2020-08-01 01:38:14', '2025-12-17 19:47:56', 'w4W50Mqm', '3155321'), + (672, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'w4W50Mqm', '3162006'), + (672, 274, 'maybe', '2020-08-06 15:10:21', '2025-12-17 19:47:56', 'w4W50Mqm', '3163404'), + (672, 276, 'attending', '2020-08-04 22:59:18', '2025-12-17 19:47:56', 'w4W50Mqm', '3163408'), + (672, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'w4W50Mqm', '3163442'), + (672, 281, 'attending', '2020-08-09 16:20:11', '2025-12-17 19:47:56', 'w4W50Mqm', '3166945'), + (672, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'w4W50Mqm', '3169555'), + (672, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'w4W50Mqm', '3172832'), + (672, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'w4W50Mqm', '3172833'), + (672, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'w4W50Mqm', '3172834'), + (672, 296, 'not_attending', '2020-09-11 23:33:38', '2025-12-17 19:47:56', 'w4W50Mqm', '3172876'), + (672, 297, 'attending', '2020-08-12 00:42:58', '2025-12-17 19:47:56', 'w4W50Mqm', '3173937'), + (672, 311, 'maybe', '2020-09-11 22:33:50', '2025-12-17 19:47:56', 'w4W50Mqm', '3186057'), + (672, 317, 'maybe', '2020-08-27 01:35:33', '2025-12-17 19:47:56', 'w4W50Mqm', '3191735'), + (672, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'w4W50Mqm', '3200209'), + (672, 342, 'attending', '2020-10-03 00:11:14', '2025-12-17 19:47:52', 'w4W50Mqm', '3204472'), + (672, 344, 'attending', '2020-11-01 20:06:04', '2025-12-17 19:47:53', 'w4W50Mqm', '3206906'), + (672, 362, 'not_attending', '2020-09-26 15:34:36', '2025-12-17 19:47:52', 'w4W50Mqm', '3214207'), + (672, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'w4W50Mqm', '3217037'), + (672, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'w4W50Mqm', '3218510'), + (672, 382, 'attending', '2020-10-13 23:06:46', '2025-12-17 19:47:52', 'w4W50Mqm', '3226873'), + (672, 385, 'attending', '2020-10-03 20:19:23', '2025-12-17 19:47:52', 'w4W50Mqm', '3228698'), + (672, 386, 'attending', '2020-10-10 18:43:19', '2025-12-17 19:47:52', 'w4W50Mqm', '3228699'), + (672, 387, 'attending', '2020-10-17 16:57:26', '2025-12-17 19:47:52', 'w4W50Mqm', '3228700'), + (672, 388, 'attending', '2020-10-24 22:49:53', '2025-12-17 19:47:52', 'w4W50Mqm', '3228701'), + (672, 414, 'attending', '2020-10-18 22:03:38', '2025-12-17 19:47:52', 'w4W50Mqm', '3237277'), + (672, 424, 'attending', '2020-10-19 23:34:06', '2025-12-17 19:47:52', 'w4W50Mqm', '3245751'), + (672, 426, 'attending', '2020-10-18 19:24:37', '2025-12-17 19:47:52', 'w4W50Mqm', '3250232'), + (672, 438, 'attending', '2020-10-31 23:10:49', '2025-12-17 19:47:53', 'w4W50Mqm', '3256163'), + (672, 440, 'attending', '2020-10-18 19:24:50', '2025-12-17 19:47:53', 'w4W50Mqm', '3256168'), + (672, 441, 'attending', '2020-11-11 01:59:14', '2025-12-17 19:47:54', 'w4W50Mqm', '3256169'), + (672, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'w4W50Mqm', '3263578'), + (672, 445, 'maybe', '2020-11-13 01:15:00', '2025-12-17 19:47:54', 'w4W50Mqm', '3266138'), + (672, 448, 'attending', '2020-10-30 23:54:41', '2025-12-17 19:47:53', 'w4W50Mqm', '3271831'), + (672, 449, 'attending', '2020-11-08 23:40:32', '2025-12-17 19:47:53', 'w4W50Mqm', '3272055'), + (672, 452, 'attending', '2020-11-06 01:23:56', '2025-12-17 19:47:54', 'w4W50Mqm', '3272981'), + (672, 456, 'maybe', '2020-11-17 01:05:39', '2025-12-17 19:47:54', 'w4W50Mqm', '3276428'), + (672, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'w4W50Mqm', '3281467'), + (672, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'w4W50Mqm', '3281470'), + (672, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'w4W50Mqm', '3281829'), + (672, 468, 'attending', '2020-11-17 22:26:57', '2025-12-17 19:47:54', 'w4W50Mqm', '3285413'), + (672, 469, 'attending', '2020-11-26 01:34:35', '2025-12-17 19:47:54', 'w4W50Mqm', '3285414'), + (672, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'w4W50Mqm', '3297764'), + (672, 493, 'maybe', '2020-11-29 21:31:33', '2025-12-17 19:47:54', 'w4W50Mqm', '3313856'), + (672, 499, 'maybe', '2020-12-01 01:40:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3314909'), + (672, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3314964'), + (672, 502, 'maybe', '2020-12-13 00:37:24', '2025-12-17 19:47:55', 'w4W50Mqm', '3323365'), + (672, 513, 'maybe', '2020-12-20 02:55:56', '2025-12-17 19:47:55', 'w4W50Mqm', '3329383'), + (672, 516, 'maybe', '2020-12-27 01:00:13', '2025-12-17 19:47:48', 'w4W50Mqm', '3334530'), + (672, 526, 'not_attending', '2020-12-31 05:20:58', '2025-12-17 19:47:48', 'w4W50Mqm', '3351539'), + (672, 536, 'not_attending', '2021-01-09 23:21:09', '2025-12-17 19:47:48', 'w4W50Mqm', '3386848'), + (672, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'w4W50Mqm', '3389527'), + (672, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'w4W50Mqm', '3396499'), + (672, 548, 'not_attending', '2021-01-17 00:30:02', '2025-12-17 19:47:48', 'w4W50Mqm', '3403650'), + (672, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'w4W50Mqm', '3406988'), + (672, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'w4W50Mqm', '3416576'), + (672, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'w4W50Mqm', '3418925'), + (672, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'w4W50Mqm', '3539920'), + (672, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'w4W50Mqm', '3539921'), + (672, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'w4W50Mqm', '3539922'), + (672, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'w4W50Mqm', '3539923'), + (672, 792, 'attending', '2021-05-19 22:31:56', '2025-12-17 19:47:46', 'w4W50Mqm', '3793156'), + (672, 794, 'attending', '2021-05-26 20:11:57', '2025-12-17 19:47:47', 'w4W50Mqm', '3793538'), + (672, 805, 'attending', '2021-06-13 21:23:56', '2025-12-17 19:47:47', 'w4W50Mqm', '3804777'), + (672, 823, 'attending', '2021-06-19 13:57:25', '2025-12-17 19:47:48', 'w4W50Mqm', '3974109'), + (672, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'w4W50Mqm', '3975311'), + (672, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4W50Mqm', '3975312'), + (672, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4W50Mqm', '3994992'), + (672, 844, 'attending', '2021-06-23 22:42:32', '2025-12-17 19:47:38', 'w4W50Mqm', '4014338'), + (672, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'w4W50Mqm', '4021848'), + (672, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4W50Mqm', '4136744'), + (672, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4W50Mqm', '4136937'), + (672, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4W50Mqm', '4136938'), + (672, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4W50Mqm', '4136947'), + (672, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4W50Mqm', '4210314'), + (672, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4W50Mqm', '4225444'), + (672, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4W50Mqm', '4239259'), + (672, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4W50Mqm', '4240316'), + (672, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4W50Mqm', '4240317'), + (672, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4W50Mqm', '4240318'), + (672, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4W50Mqm', '4240320'), + (672, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4W50Mqm', '4250163'), + (672, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4W50Mqm', '4275957'), + (672, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4W50Mqm', '4277819'), + (672, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4W50Mqm', '4301723'), + (672, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'w4W50Mqm', '4302093'), + (672, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4W50Mqm', '4304151'), + (672, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'w4W50Mqm', '4356801'), + (672, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4W50Mqm', '4366186'), + (672, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'w4W50Mqm', '4366187'), + (672, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'w4W50Mqm', '4420735'), + (672, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'w4W50Mqm', '4420738'), + (672, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'w4W50Mqm', '4420739'), + (672, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'w4W50Mqm', '4420741'), + (672, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'w4W50Mqm', '4420744'), + (672, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'w4W50Mqm', '4420747'), + (672, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'w4W50Mqm', '4420748'), + (672, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4W50Mqm', '4420749'), + (672, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4W50Mqm', '4461883'), + (672, 1036, 'maybe', '2021-09-22 22:51:34', '2025-12-17 19:47:34', 'w4W50Mqm', '4493166'), + (672, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4W50Mqm', '4508342'), + (672, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4W50Mqm', '4568602'), + (672, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'w4W50Mqm', '4572153'), + (672, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4W50Mqm', '4585962'), + (672, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'w4W50Mqm', '4596356'), + (672, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4W50Mqm', '4598860'), + (672, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4W50Mqm', '4598861'), + (672, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'w4W50Mqm', '4602797'), + (672, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'w4W50Mqm', '4637896'), + (672, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'w4W50Mqm', '4642994'), + (672, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'w4W50Mqm', '4642995'), + (672, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'w4W50Mqm', '4642996'), + (672, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'w4W50Mqm', '4642997'), + (672, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'w4W50Mqm', '4645687'), + (672, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'w4W50Mqm', '4645698'), + (672, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'w4W50Mqm', '4645704'), + (672, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'w4W50Mqm', '4645705'), + (672, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'w4W50Mqm', '4668385'), + (672, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'w4W50Mqm', '4694407'), + (672, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4W50Mqm', '4736497'), + (672, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4W50Mqm', '4736499'), + (672, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4W50Mqm', '4736500'), + (672, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4W50Mqm', '4736503'), + (672, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4W50Mqm', '4736504'), + (672, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'w4W50Mqm', '4746789'), + (672, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'w4W50Mqm', '4753929'), + (672, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4W50Mqm', '5038850'), + (672, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4W50Mqm', '5045826'), + (672, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4W50Mqm', '5132533'), + (672, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4W50Mqm', '5186582'), + (672, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4W50Mqm', '5186583'), + (672, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4W50Mqm', '5186585'), + (672, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4W50Mqm', '5190437'), + (672, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'w4W50Mqm', '5195095'), + (672, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4W50Mqm', '5215989'), + (672, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'w4W50Mqm', '5223686'), + (672, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'w4W50Mqm', '5247467'), + (672, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'w4W50Mqm', '5260800'), + (672, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'w4W50Mqm', '5269930'), + (672, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'w4W50Mqm', '5271448'), + (672, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'w4W50Mqm', '5271449'), + (672, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'w4W50Mqm', '5278159'), + (672, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'w4W50Mqm', '5363695'), + (672, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'w4W50Mqm', '5365960'), + (672, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'w4W50Mqm', '5378247'), + (672, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'w4W50Mqm', '5389605'), + (672, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'w4W50Mqm', '5397265'), + (672, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'w4W50Mqm', '5404786'), + (672, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'w4W50Mqm', '5405203'), + (672, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'w4W50Mqm', '5412550'), + (672, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'w4W50Mqm', '5415046'), + (672, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'w4W50Mqm', '5422086'), + (672, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'w4W50Mqm', '5422406'), + (672, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'w4W50Mqm', '5424565'), + (672, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'w4W50Mqm', '5426882'), + (672, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'w4W50Mqm', '5441125'), + (672, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'w4W50Mqm', '5441126'), + (672, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'w4W50Mqm', '5441128'), + (672, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'w4W50Mqm', '5441131'), + (672, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'w4W50Mqm', '5441132'), + (672, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'w4W50Mqm', '5453325'), + (672, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'w4W50Mqm', '5454516'), + (672, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'w4W50Mqm', '5454605'), + (672, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'w4W50Mqm', '5455037'), + (672, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'w4W50Mqm', '5461278'), + (672, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'w4W50Mqm', '5469480'), + (672, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'w4W50Mqm', '5474663'), + (672, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'w4W50Mqm', '5482022'), + (672, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'w4W50Mqm', '5488912'), + (672, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'w4W50Mqm', '5492192'), + (672, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'w4W50Mqm', '5493139'), + (672, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'w4W50Mqm', '5493200'), + (672, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'w4W50Mqm', '5502188'), + (672, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'w4W50Mqm', '5505059'), + (672, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'w4W50Mqm', '5509055'), + (672, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'w4W50Mqm', '5512862'), + (672, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'w4W50Mqm', '5513985'), + (672, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'w4W50Mqm', '5519981'), + (672, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'w4W50Mqm', '5522550'), + (672, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'w4W50Mqm', '5534683'), + (672, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'w4W50Mqm', '5537735'), + (672, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'w4W50Mqm', '5540859'), + (672, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'w4W50Mqm', '5546619'), + (672, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'w4W50Mqm', '5557747'), + (672, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'w4W50Mqm', '5560255'), + (672, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'w4W50Mqm', '5562906'), + (672, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'w4W50Mqm', '5600604'), + (672, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'w4W50Mqm', '5605544'), + (672, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'w4W50Mqm', '5606737'), + (672, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'w4W50Mqm', '5630960'), + (672, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'w4W50Mqm', '5630961'), + (672, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'w4W50Mqm', '5630962'), + (672, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'w4W50Mqm', '5630966'), + (672, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'w4W50Mqm', '5630967'), + (672, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'w4W50Mqm', '5630968'), + (672, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'w4W50Mqm', '5635406'), + (672, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'w4W50Mqm', '5638765'), + (672, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'w4W50Mqm', '5640097'), + (672, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'w4W50Mqm', '5640843'), + (672, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'w4W50Mqm', '5641521'), + (672, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'w4W50Mqm', '5642818'), + (672, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'w4W50Mqm', '5652395'), + (672, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'w4W50Mqm', '5670445'), + (672, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'w4W50Mqm', '5671637'), + (672, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'w4W50Mqm', '5672329'), + (672, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'w4W50Mqm', '5674057'), + (672, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'w4W50Mqm', '5674060'), + (672, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'w4W50Mqm', '5677461'), + (672, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'w4W50Mqm', '5698046'), + (672, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'w4W50Mqm', '5699760'), + (672, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'w4W50Mqm', '5741601'), + (672, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'w4W50Mqm', '5763458'), + (672, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'w4W50Mqm', '5774172'), + (672, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'w4W50Mqm', '5818247'), + (672, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'w4W50Mqm', '5819471'), + (672, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'w4W50Mqm', '5827739'), + (672, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'w4W50Mqm', '5844306'), + (672, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'w4W50Mqm', '5850159'), + (672, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'w4W50Mqm', '5858999'), + (672, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'w4W50Mqm', '5871984'), + (672, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'w4W50Mqm', '5876354'), + (672, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'w4W50Mqm', '5880939'), + (672, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'w4W50Mqm', '5880940'), + (672, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'w4W50Mqm', '5880942'), + (672, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'w4W50Mqm', '5880943'), + (672, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'w4W50Mqm', '5887890'), + (672, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'w4W50Mqm', '5888598'), + (672, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'w4W50Mqm', '5893260'), + (672, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'w4W50Mqm', '5899826'), + (672, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'w4W50Mqm', '5900199'), + (672, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'w4W50Mqm', '5900200'), + (672, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'w4W50Mqm', '5900202'), + (672, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'w4W50Mqm', '5900203'), + (672, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'w4W50Mqm', '5901108'), + (672, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'w4W50Mqm', '5901126'), + (672, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'w4W50Mqm', '5909655'), + (672, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'w4W50Mqm', '5910522'), + (672, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'w4W50Mqm', '5910526'), + (672, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'w4W50Mqm', '5910528'), + (672, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'w4W50Mqm', '5916219'), + (672, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'w4W50Mqm', '5936234'), + (672, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'w4W50Mqm', '5958351'), + (672, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'w4W50Mqm', '5959751'), + (672, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'w4W50Mqm', '5959755'), + (672, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'w4W50Mqm', '5960055'), + (672, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'w4W50Mqm', '5961684'), + (672, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'w4W50Mqm', '5962132'), + (672, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'w4W50Mqm', '5962133'), + (672, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'w4W50Mqm', '5962134'), + (672, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'w4W50Mqm', '5962317'), + (672, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'w4W50Mqm', '5962318'), + (672, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'w4W50Mqm', '5965933'), + (672, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'w4W50Mqm', '5967014'), + (672, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'w4W50Mqm', '5972815'), + (672, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'w4W50Mqm', '5974016'), + (672, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'w4W50Mqm', '5981515'), + (672, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'w4W50Mqm', '5993516'), + (672, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'w4W50Mqm', '5998939'), + (672, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'w4W50Mqm', '6028191'), + (672, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'w4W50Mqm', '6040066'), + (672, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'w4W50Mqm', '6042717'), + (672, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'w4W50Mqm', '6044838'), + (672, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'w4W50Mqm', '6044839'), + (672, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4W50Mqm', '6045684'), + (672, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'w4W50Mqm', '6050104'), + (672, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'w4W50Mqm', '6053195'), + (672, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'w4W50Mqm', '6053198'), + (672, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'w4W50Mqm', '6056085'), + (672, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'w4W50Mqm', '6056916'), + (672, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'w4W50Mqm', '6059290'), + (672, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'w4W50Mqm', '6060328'), + (672, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'w4W50Mqm', '6061037'), + (672, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'w4W50Mqm', '6061039'), + (672, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'w4W50Mqm', '6067245'), + (672, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'w4W50Mqm', '6068094'), + (672, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'w4W50Mqm', '6068252'), + (672, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'w4W50Mqm', '6068253'), + (672, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'w4W50Mqm', '6068254'), + (672, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'w4W50Mqm', '6068280'), + (672, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'w4W50Mqm', '6069093'), + (672, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'w4W50Mqm', '6072528'), + (672, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'w4W50Mqm', '6079840'), + (672, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'w4W50Mqm', '6083398'), + (672, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'w4W50Mqm', '6093504'), + (672, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'w4W50Mqm', '6097414'), + (672, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'w4W50Mqm', '6097442'), + (672, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'w4W50Mqm', '6097684'), + (672, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'w4W50Mqm', '6098762'), + (672, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'w4W50Mqm', '6101361'), + (672, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'w4W50Mqm', '6101362'), + (672, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'w4W50Mqm', '6107314'), + (672, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'w4W50Mqm', '6120034'), + (672, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'w4W50Mqm', '6136733'), + (672, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'w4W50Mqm', '6137989'), + (672, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'w4W50Mqm', '6150864'), + (672, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'w4W50Mqm', '6155491'), + (672, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'w4W50Mqm', '6164417'), + (672, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'w4W50Mqm', '6166388'), + (672, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'w4W50Mqm', '6176439'), + (672, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'w4W50Mqm', '6182410'), + (672, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'w4W50Mqm', '6185812'), + (672, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'w4W50Mqm', '6187651'), + (672, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'w4W50Mqm', '6187963'), + (672, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'w4W50Mqm', '6187964'), + (672, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'w4W50Mqm', '6187966'), + (672, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'w4W50Mqm', '6187967'), + (672, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'w4W50Mqm', '6187969'), + (672, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'w4W50Mqm', '6334878'), + (672, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'w4W50Mqm', '6337236'), + (672, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'w4W50Mqm', '6337970'), + (672, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'w4W50Mqm', '6338308'), + (672, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'w4W50Mqm', '6341710'), + (672, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'w4W50Mqm', '6342044'), + (672, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'w4W50Mqm', '6342298'), + (672, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'w4W50Mqm', '6343294'), + (672, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'w4W50Mqm', '6347034'), + (672, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'w4W50Mqm', '6347056'), + (672, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'w4W50Mqm', '6353830'), + (672, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'w4W50Mqm', '6353831'), + (672, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'w4W50Mqm', '6357867'), + (672, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'w4W50Mqm', '6358652'), + (672, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'w4W50Mqm', '6361709'), + (672, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'w4W50Mqm', '6361710'), + (672, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'w4W50Mqm', '6361711'), + (672, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'w4W50Mqm', '6361712'), + (672, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'w4W50Mqm', '6361713'), + (672, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'w4W50Mqm', '6382573'), + (672, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'w4W50Mqm', '6388604'), + (672, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'w4W50Mqm', '6394629'), + (672, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'w4W50Mqm', '6394631'), + (672, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'w4W50Mqm', '6440863'), + (672, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'w4W50Mqm', '6445440'), + (672, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'w4W50Mqm', '6453951'), + (672, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'w4W50Mqm', '6461696'), + (672, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'w4W50Mqm', '6462129'), + (672, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'w4W50Mqm', '6463218'), + (672, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'w4W50Mqm', '6472181'), + (672, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'w4W50Mqm', '6482693'), + (672, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'w4W50Mqm', '6484200'), + (672, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'w4W50Mqm', '6484680'), + (672, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'w4W50Mqm', '6507741'), + (672, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'w4W50Mqm', '6514659'), + (672, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'w4W50Mqm', '6514660'), + (672, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'w4W50Mqm', '6519103'), + (672, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'w4W50Mqm', '6535681'), + (672, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'w4W50Mqm', '6584747'), + (672, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'w4W50Mqm', '6587097'), + (672, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'w4W50Mqm', '6609022'), + (672, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'w4W50Mqm', '6632757'), + (672, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'w4W50Mqm', '6644187'), + (672, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'w4W50Mqm', '6648951'), + (672, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'w4W50Mqm', '6648952'), + (672, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'w4W50Mqm', '6655401'), + (672, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'w4W50Mqm', '6661585'), + (672, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'w4W50Mqm', '6661588'), + (672, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'w4W50Mqm', '6661589'), + (672, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'w4W50Mqm', '6699906'), + (672, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'w4W50Mqm', '6699913'), + (672, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'w4W50Mqm', '6701109'), + (672, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'w4W50Mqm', '6705219'), + (672, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'w4W50Mqm', '6710153'), + (672, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'w4W50Mqm', '6711552'), + (672, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'w4W50Mqm', '6711553'), + (672, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'w4W50Mqm', '6722688'), + (672, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'w4W50Mqm', '6730620'), + (672, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'w4W50Mqm', '6740364'), + (672, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'w4W50Mqm', '6743829'), + (672, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'w4W50Mqm', '7030380'), + (672, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'w4W50Mqm', '7033677'), + (672, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'w4W50Mqm', '7044715'), + (672, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'w4W50Mqm', '7050318'), + (672, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'w4W50Mqm', '7050319'), + (672, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'w4W50Mqm', '7050322'), + (672, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'w4W50Mqm', '7057804'), + (672, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'w4W50Mqm', '7072824'), + (672, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'w4W50Mqm', '7074348'), + (672, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'w4W50Mqm', '7074364'), + (672, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'w4W50Mqm', '7089267'), + (672, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'w4W50Mqm', '7098747'), + (672, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'w4W50Mqm', '7113468'), + (672, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'w4W50Mqm', '7114856'), + (672, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'w4W50Mqm', '7114951'), + (672, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'w4W50Mqm', '7114955'), + (672, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'w4W50Mqm', '7114956'), + (672, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'w4W50Mqm', '7114957'), + (672, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'w4W50Mqm', '7159484'), + (672, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'w4W50Mqm', '7178446'), + (672, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'w4W50Mqm', '7220467'), + (672, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'w4W50Mqm', '7240354'), + (672, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'w4W50Mqm', '7251633'), + (672, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'w4W50Mqm', '7324073'), + (672, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'w4W50Mqm', '7324074'), + (672, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'w4W50Mqm', '7324075'), + (672, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'w4W50Mqm', '7324078'), + (672, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'w4W50Mqm', '7324082'), + (672, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'w4W50Mqm', '7331457'), + (672, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'w4W50Mqm', '7363643'), + (672, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'w4W50Mqm', '7368606'), + (672, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'w4W50Mqm', '7397462'), + (672, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'w4W50Mqm', '7424275'), + (672, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'w4W50Mqm', '7432751'), + (672, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'w4W50Mqm', '7432752'), + (672, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'w4W50Mqm', '7432753'), + (672, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'w4W50Mqm', '7432754'), + (672, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'w4W50Mqm', '7432755'), + (672, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'w4W50Mqm', '7432756'), + (672, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'w4W50Mqm', '7432758'), + (672, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'w4W50Mqm', '7432759'), + (672, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'w4W50Mqm', '7433834'), + (672, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'w4W50Mqm', '7470197'), + (672, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'w4W50Mqm', '7685613'), + (672, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'w4W50Mqm', '7688194'), + (672, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'w4W50Mqm', '7688196'), + (672, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'w4W50Mqm', '7688289'), + (672, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'w4W50Mqm', '7692763'), + (672, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'w4W50Mqm', '7697552'), + (672, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'w4W50Mqm', '7699878'), + (672, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'w4W50Mqm', '7704043'), + (672, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'w4W50Mqm', '7712467'), + (672, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'w4W50Mqm', '7713585'), + (672, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'w4W50Mqm', '7713586'), + (672, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'w4W50Mqm', '7738518'), + (672, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'w4W50Mqm', '7750636'), + (672, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'w4W50Mqm', '7796540'), + (672, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'w4W50Mqm', '7796541'), + (672, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'w4W50Mqm', '7796542'), + (672, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'w4W50Mqm', '7825913'), + (672, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'w4W50Mqm', '7826209'), + (672, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'w4W50Mqm', '7834742'), + (672, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'w4W50Mqm', '7842108'), + (672, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'w4W50Mqm', '7842902'), + (672, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'w4W50Mqm', '7842903'), + (672, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'w4W50Mqm', '7842904'), + (672, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'w4W50Mqm', '7842905'), + (672, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'w4W50Mqm', '7855719'), + (672, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'w4W50Mqm', '7860683'), + (672, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'w4W50Mqm', '7860684'), + (672, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'w4W50Mqm', '7866095'), + (672, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'w4W50Mqm', '7869170'), + (672, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'w4W50Mqm', '7869188'), + (672, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'w4W50Mqm', '7869201'), + (672, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'w4W50Mqm', '7877465'), + (672, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'w4W50Mqm', '7888250'), + (672, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'w4W50Mqm', '7904777'), + (672, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'w4W50Mqm', '8349164'), + (672, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'w4W50Mqm', '8349545'), + (672, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'w4W50Mqm', '8368028'), + (672, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'w4W50Mqm', '8368029'), + (672, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'w4W50Mqm', '8388462'), + (672, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'w4W50Mqm', '8400273'), + (672, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'w4W50Mqm', '8400275'), + (672, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'w4W50Mqm', '8400276'), + (672, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'w4W50Mqm', '8404977'), + (672, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'w4W50Mqm', '8430783'), + (672, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'w4W50Mqm', '8430784'), + (672, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'w4W50Mqm', '8430799'), + (672, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'w4W50Mqm', '8430800'), + (672, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'w4W50Mqm', '8430801'), + (672, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'w4W50Mqm', '8438709'), + (672, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'w4W50Mqm', '8457738'), + (672, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'w4W50Mqm', '8459566'), + (672, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'w4W50Mqm', '8459567'), + (672, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'w4W50Mqm', '8461032'), + (672, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'w4W50Mqm', '8477877'), + (672, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'w4W50Mqm', '8485688'), + (672, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'w4W50Mqm', '8490587'), + (672, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'w4W50Mqm', '8493552'), + (672, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'w4W50Mqm', '8493553'), + (672, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'w4W50Mqm', '8493554'), + (672, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'w4W50Mqm', '8493555'), + (672, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'w4W50Mqm', '8493556'), + (672, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'w4W50Mqm', '8493557'), + (672, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'w4W50Mqm', '8493558'), + (672, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'w4W50Mqm', '8493559'), + (672, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'w4W50Mqm', '8493560'), + (672, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'w4W50Mqm', '8493561'), + (672, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'w4W50Mqm', '8493572'), + (672, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'w4W50Mqm', '8540725'), + (672, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'w4W50Mqm', '8555421'), + (673, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd3GJVGGd', '6361713'), + (673, 2245, 'attending', '2023-09-26 19:44:09', '2025-12-17 19:46:45', 'd3GJVGGd', '6393703'), + (673, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd3GJVGGd', '6394631'), + (673, 2253, 'attending', '2023-09-28 16:06:03', '2025-12-17 19:46:45', 'd3GJVGGd', '6401811'), + (673, 2256, 'maybe', '2023-09-21 19:15:32', '2025-12-17 19:46:45', 'd3GJVGGd', '6404369'), + (673, 2263, 'maybe', '2023-10-02 01:42:52', '2025-12-17 19:46:45', 'd3GJVGGd', '6429351'), + (673, 2264, 'attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd3GJVGGd', '6431478'), + (673, 2267, 'maybe', '2023-10-02 01:42:32', '2025-12-17 19:46:45', 'd3GJVGGd', '6440034'), + (673, 2268, 'maybe', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd3GJVGGd', '6440863'), + (673, 2270, 'maybe', '2023-10-03 00:16:59', '2025-12-17 19:46:46', 'd3GJVGGd', '6443067'), + (673, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd3GJVGGd', '6445440'), + (673, 2273, 'attending', '2023-10-04 01:19:39', '2025-12-17 19:46:45', 'd3GJVGGd', '6448282'), + (673, 2274, 'attending', '2023-10-03 22:52:13', '2025-12-17 19:46:45', 'd3GJVGGd', '6448287'), + (673, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd3GJVGGd', '6453951'), + (673, 2277, 'not_attending', '2023-10-09 00:55:37', '2025-12-17 19:46:46', 'd3GJVGGd', '6455211'), + (673, 2279, 'attending', '2023-10-09 00:55:25', '2025-12-17 19:46:46', 'd3GJVGGd', '6455460'), + (673, 2280, 'maybe', '2023-10-09 00:54:44', '2025-12-17 19:46:46', 'd3GJVGGd', '6455470'), + (673, 2283, 'maybe', '2023-10-09 00:55:01', '2025-12-17 19:46:46', 'd3GJVGGd', '6455503'), + (673, 2284, 'not_attending', '2023-10-10 17:12:28', '2025-12-17 19:46:46', 'd3GJVGGd', '6460928'), + (673, 2285, 'attending', '2023-10-18 01:40:56', '2025-12-17 19:46:47', 'd3GJVGGd', '6460929'), + (673, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd3GJVGGd', '6461696'), + (673, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd3GJVGGd', '6462129'), + (673, 2290, 'attending', '2023-10-18 01:40:17', '2025-12-17 19:46:46', 'd3GJVGGd', '6462214'), + (673, 2291, 'not_attending', '2023-10-18 01:40:22', '2025-12-17 19:46:46', 'd3GJVGGd', '6462215'), + (673, 2292, 'maybe', '2023-10-23 02:01:24', '2025-12-17 19:46:47', 'd3GJVGGd', '6462216'), + (673, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd3GJVGGd', '6463218'), + (673, 2294, 'maybe', '2023-10-18 01:41:12', '2025-12-17 19:46:46', 'd3GJVGGd', '6465907'), + (673, 2296, 'maybe', '2023-10-18 01:40:49', '2025-12-17 19:46:47', 'd3GJVGGd', '6468393'), + (673, 2299, 'not_attending', '2023-10-18 01:40:27', '2025-12-17 19:46:46', 'd3GJVGGd', '6472181'), + (673, 2303, 'attending', '2023-10-23 02:01:04', '2025-12-17 19:46:47', 'd3GJVGGd', '6482691'), + (673, 2304, 'maybe', '2023-10-23 02:01:30', '2025-12-17 19:46:47', 'd3GJVGGd', '6482693'), + (673, 2306, 'attending', '2023-11-15 17:57:02', '2025-12-17 19:46:47', 'd3GJVGGd', '6484200'), + (673, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd3GJVGGd', '6484680'), + (673, 2310, 'not_attending', '2023-11-01 23:51:21', '2025-12-17 19:46:47', 'd3GJVGGd', '6487709'), + (673, 2311, 'not_attending', '2023-11-01 23:51:06', '2025-12-17 19:46:47', 'd3GJVGGd', '6487725'), + (673, 2316, 'maybe', '2023-11-01 23:51:33', '2025-12-17 19:46:48', 'd3GJVGGd', '6493668'), + (673, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd3GJVGGd', '6507741'), + (673, 2320, 'maybe', '2023-11-01 23:50:39', '2025-12-17 19:46:47', 'd3GJVGGd', '6508647'), + (673, 2322, 'attending', '2023-11-01 23:51:38', '2025-12-17 19:46:48', 'd3GJVGGd', '6514659'), + (673, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd3GJVGGd', '6514660'), + (673, 2324, 'not_attending', '2023-12-07 18:45:57', '2025-12-17 19:46:49', 'd3GJVGGd', '6514662'), + (673, 2325, 'attending', '2023-12-11 02:15:38', '2025-12-17 19:46:36', 'd3GJVGGd', '6514663'), + (673, 2327, 'maybe', '2023-11-01 23:50:50', '2025-12-17 19:46:47', 'd3GJVGGd', '6515494'), + (673, 2331, 'attending', '2023-11-05 15:49:43', '2025-12-17 19:46:47', 'd3GJVGGd', '6518640'), + (673, 2333, 'attending', '2023-11-05 15:49:26', '2025-12-17 19:46:47', 'd3GJVGGd', '6519103'), + (673, 2335, 'attending', '2023-11-11 00:04:13', '2025-12-17 19:46:47', 'd3GJVGGd', '6534890'), + (673, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd3GJVGGd', '6535681'), + (673, 2338, 'attending', '2023-11-21 21:07:34', '2025-12-17 19:46:48', 'd3GJVGGd', '6538868'), + (673, 2345, 'attending', '2023-11-27 17:43:21', '2025-12-17 19:46:48', 'd3GJVGGd', '6582414'), + (673, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd3GJVGGd', '6584747'), + (673, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd3GJVGGd', '6587097'), + (673, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd3GJVGGd', '6609022'), + (673, 2364, 'maybe', '2023-12-07 18:45:53', '2025-12-17 19:46:49', 'd3GJVGGd', '6613011'), + (673, 2368, 'attending', '2023-12-11 02:15:43', '2025-12-17 19:46:36', 'd3GJVGGd', '6621445'), + (673, 2370, 'attending', '2023-12-14 00:18:20', '2025-12-17 19:46:36', 'd3GJVGGd', '6623765'), + (673, 2372, 'maybe', '2023-12-17 17:41:58', '2025-12-17 19:46:36', 'd3GJVGGd', '6628243'), + (673, 2373, 'not_attending', '2024-01-01 17:05:02', '2025-12-17 19:46:38', 'd3GJVGGd', '6632678'), + (673, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd3GJVGGd', '6632757'), + (673, 2377, 'not_attending', '2024-01-01 17:04:47', '2025-12-17 19:46:37', 'd3GJVGGd', '6643448'), + (673, 2378, 'maybe', '2024-01-01 17:04:09', '2025-12-17 19:46:37', 'd3GJVGGd', '6644006'), + (673, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd3GJVGGd', '6644187'), + (673, 2381, 'maybe', '2024-01-01 17:04:40', '2025-12-17 19:46:37', 'd3GJVGGd', '6646398'), + (673, 2382, 'maybe', '2024-01-01 17:04:03', '2025-12-17 19:46:37', 'd3GJVGGd', '6646401'), + (673, 2384, 'maybe', '2024-01-02 15:39:09', '2025-12-17 19:46:37', 'd3GJVGGd', '6648022'), + (673, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd3GJVGGd', '6648951'), + (673, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd3GJVGGd', '6648952'), + (673, 2388, 'maybe', '2024-01-03 13:57:19', '2025-12-17 19:46:37', 'd3GJVGGd', '6649244'), + (673, 2389, 'not_attending', '2024-01-12 16:11:06', '2025-12-17 19:46:40', 'd3GJVGGd', '6651094'), + (673, 2391, 'attending', '2024-01-08 18:33:09', '2025-12-17 19:46:37', 'd3GJVGGd', '6654138'), + (673, 2396, 'maybe', '2024-01-12 16:07:43', '2025-12-17 19:46:38', 'd3GJVGGd', '6655401'), + (673, 2397, 'attending', '2024-01-08 18:32:49', '2025-12-17 19:46:37', 'd3GJVGGd', '6657379'), + (673, 2398, 'maybe', '2024-01-08 18:32:59', '2025-12-17 19:46:37', 'd3GJVGGd', '6657381'), + (673, 2399, 'maybe', '2024-01-12 16:11:30', '2025-12-17 19:46:38', 'd3GJVGGd', '6657583'), + (673, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd3GJVGGd', '6661585'), + (673, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd3GJVGGd', '6661588'), + (673, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd3GJVGGd', '6661589'), + (673, 2404, 'maybe', '2024-01-12 16:07:32', '2025-12-17 19:46:38', 'd3GJVGGd', '6666858'), + (673, 2405, 'attending', '2024-01-12 16:08:23', '2025-12-17 19:46:38', 'd3GJVGGd', '6667332'), + (673, 2406, 'attending', '2024-01-15 16:35:03', '2025-12-17 19:46:40', 'd3GJVGGd', '6692344'), + (673, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd3GJVGGd', '6699906'), + (673, 2408, 'attending', '2024-01-22 16:47:25', '2025-12-17 19:46:40', 'd3GJVGGd', '6699907'), + (673, 2409, 'not_attending', '2024-01-22 16:47:09', '2025-12-17 19:46:41', 'd3GJVGGd', '6699909'), + (673, 2410, 'not_attending', '2024-02-07 17:52:14', '2025-12-17 19:46:41', 'd3GJVGGd', '6699911'), + (673, 2411, 'attending', '2024-02-07 17:52:41', '2025-12-17 19:46:41', 'd3GJVGGd', '6699913'), + (673, 2412, 'maybe', '2024-02-19 21:05:55', '2025-12-17 19:46:43', 'd3GJVGGd', '6700717'), + (673, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd3GJVGGd', '6701109'), + (673, 2417, 'maybe', '2024-01-21 21:50:55', '2025-12-17 19:46:40', 'd3GJVGGd', '6701905'), + (673, 2420, 'maybe', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'd3GJVGGd', '6704561'), + (673, 2421, 'attending', '2024-01-22 16:47:33', '2025-12-17 19:46:40', 'd3GJVGGd', '6704598'), + (673, 2422, 'maybe', '2024-01-22 16:47:39', '2025-12-17 19:46:40', 'd3GJVGGd', '6704650'), + (673, 2423, 'maybe', '2024-01-22 16:47:57', '2025-12-17 19:46:40', 'd3GJVGGd', '6705141'), + (673, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd3GJVGGd', '6705219'), + (673, 2426, 'maybe', '2024-01-22 16:48:12', '2025-12-17 19:46:40', 'd3GJVGGd', '6705569'), + (673, 2427, 'maybe', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'd3GJVGGd', '6708410'), + (673, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd3GJVGGd', '6710153'), + (673, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd3GJVGGd', '6711552'), + (673, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd3GJVGGd', '6711553'), + (673, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd3GJVGGd', '6722688'), + (673, 2438, 'attending', '2024-02-07 17:52:00', '2025-12-17 19:46:41', 'd3GJVGGd', '6730201'), + (673, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd3GJVGGd', '6730620'), + (673, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd3GJVGGd', '6730642'), + (673, 2444, 'not_attending', '2024-02-07 17:52:10', '2025-12-17 19:46:41', 'd3GJVGGd', '6734367'), + (673, 2445, 'attending', '2024-02-10 17:38:15', '2025-12-17 19:46:41', 'd3GJVGGd', '6734368'), + (673, 2447, 'maybe', '2024-03-11 20:38:25', '2025-12-17 19:46:32', 'd3GJVGGd', '6734370'), + (673, 2452, 'attending', '2024-02-07 17:52:22', '2025-12-17 19:46:41', 'd3GJVGGd', '6740361'), + (673, 2453, 'attending', '2024-02-07 17:52:30', '2025-12-17 19:46:42', 'd3GJVGGd', '6740364'), + (673, 2456, 'not_attending', '2024-02-08 16:20:40', '2025-12-17 19:46:41', 'd3GJVGGd', '6742202'), + (673, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd3GJVGGd', '6743829'), + (673, 2468, 'maybe', '2024-02-25 16:00:31', '2025-12-17 19:46:43', 'd3GJVGGd', '7030380'), + (673, 2469, 'maybe', '2024-02-19 21:08:01', '2025-12-17 19:46:42', 'd3GJVGGd', '7030632'), + (673, 2471, 'attending', '2024-02-19 21:05:48', '2025-12-17 19:46:42', 'd3GJVGGd', '7032425'), + (673, 2472, 'attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd3GJVGGd', '7033677'), + (673, 2473, 'attending', '2024-02-25 16:00:23', '2025-12-17 19:46:43', 'd3GJVGGd', '7033724'), + (673, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd3GJVGGd', '7035415'), + (673, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd3GJVGGd', '7044715'), + (673, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd3GJVGGd', '7050318'), + (673, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd3GJVGGd', '7050319'), + (673, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd3GJVGGd', '7050322'), + (673, 2498, 'maybe', '2024-03-11 20:38:44', '2025-12-17 19:46:33', 'd3GJVGGd', '7057662'), + (673, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd3GJVGGd', '7057804'), + (673, 2500, 'attending', '2024-03-07 00:21:16', '2025-12-17 19:46:43', 'd3GJVGGd', '7058603'), + (673, 2502, 'not_attending', '2024-03-06 02:24:22', '2025-12-17 19:46:33', 'd3GJVGGd', '7061202'), + (673, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd3GJVGGd', '7072824'), + (673, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd3GJVGGd', '7074348'), + (673, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd3GJVGGd', '7074364'), + (673, 2534, 'attending', '2024-03-13 21:17:58', '2025-12-17 19:46:32', 'd3GJVGGd', '7076875'), + (673, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd3GJVGGd', '7089267'), + (673, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd3GJVGGd', '7098747'), + (673, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd3GJVGGd', '7113468'), + (673, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd3GJVGGd', '7114856'), + (673, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd3GJVGGd', '7114951'), + (673, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd3GJVGGd', '7114955'), + (673, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd3GJVGGd', '7114956'), + (673, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd3GJVGGd', '7114957'), + (673, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd3GJVGGd', '7153615'), + (673, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd3GJVGGd', '7159484'), + (673, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd3GJVGGd', '7178446'), + (673, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd3GJVGGd', '7220467'), + (673, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd3GJVGGd', '7240354'), + (673, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd3GJVGGd', '7251633'), + (673, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd3GJVGGd', '7302674'), + (673, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd3GJVGGd', '7324073'), + (673, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd3GJVGGd', '7324074'), + (673, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd3GJVGGd', '7324075'), + (673, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd3GJVGGd', '7324078'), + (673, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd3GJVGGd', '7324082'), + (673, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd3GJVGGd', '7331457'), + (673, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd3GJVGGd', '7363643'), + (673, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd3GJVGGd', '7368606'), + (673, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd3GJVGGd', '7397462'), + (673, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd3GJVGGd', '7424275'), + (673, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd3GJVGGd', '7424276'), + (673, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd3GJVGGd', '7432751'), + (673, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd3GJVGGd', '7432752'), + (673, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd3GJVGGd', '7432753'), + (673, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd3GJVGGd', '7432754'), + (673, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd3GJVGGd', '7432755'), + (673, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd3GJVGGd', '7432756'), + (673, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd3GJVGGd', '7432758'), + (673, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd3GJVGGd', '7432759'), + (673, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd3GJVGGd', '7433834'), + (673, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd3GJVGGd', '7470197'), + (673, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd3GJVGGd', '7685613'), + (673, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd3GJVGGd', '7688194'), + (673, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd3GJVGGd', '7688196'), + (673, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd3GJVGGd', '7688289'), + (674, 333, 'not_attending', '2020-10-06 18:42:20', '2025-12-17 19:47:52', 'NmLrDoZ4', '3199782'), + (674, 342, 'attending', '2020-09-29 13:15:40', '2025-12-17 19:47:52', 'NmLrDoZ4', '3204472'), + (674, 363, 'not_attending', '2020-09-27 21:34:32', '2025-12-17 19:47:52', 'NmLrDoZ4', '3217037'), + (674, 375, 'attending', '2020-10-02 14:18:58', '2025-12-17 19:47:52', 'NmLrDoZ4', '3222825'), + (674, 383, 'attending', '2020-09-28 00:01:56', '2025-12-17 19:47:52', 'NmLrDoZ4', '3227946'), + (674, 385, 'attending', '2020-09-29 13:16:00', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228698'), + (674, 386, 'attending', '2020-10-02 14:19:05', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228699'), + (674, 387, 'not_attending', '2020-10-17 17:41:46', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228700'), + (674, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228701'), + (674, 390, 'not_attending', '2020-10-04 15:39:55', '2025-12-17 19:47:52', 'NmLrDoZ4', '3231510'), + (674, 411, 'not_attending', '2020-10-11 14:58:35', '2025-12-17 19:47:52', 'NmLrDoZ4', '3236596'), + (674, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLrDoZ4', '3245751'), + (674, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'NmLrDoZ4', '3250232'), + (674, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'NmLrDoZ4', '3256168'), + (674, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLrDoZ4', '3263578'), + (674, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'NmLrDoZ4', '3266138'), + (674, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'NmLrDoZ4', '3276428'), + (674, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'NmLrDoZ4', '3281467'), + (674, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'NmLrDoZ4', '3281470'), + (674, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'NmLrDoZ4', '3281829'), + (674, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'NmLrDoZ4', '3285413'), + (674, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'NmLrDoZ4', '3285414'), + (674, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'NmLrDoZ4', '3297764'), + (674, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'NmLrDoZ4', '3313856'), + (674, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'NmLrDoZ4', '3314909'), + (674, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLrDoZ4', '6045684'), + (675, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOOeV88d', '6632757'), + (675, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOOeV88d', '6644187'), + (675, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOOeV88d', '6648951'), + (675, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOOeV88d', '6648952'), + (675, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dOOeV88d', '6651141'), + (675, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOOeV88d', '6655401'), + (675, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOOeV88d', '6661585'), + (675, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOOeV88d', '6661588'), + (675, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOOeV88d', '6661589'), + (675, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOOeV88d', '6699906'), + (675, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOOeV88d', '6699913'), + (675, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOOeV88d', '6701109'), + (675, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOOeV88d', '6705219'), + (675, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOOeV88d', '6710153'), + (675, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOOeV88d', '6711552'), + (675, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOOeV88d', '6711553'), + (675, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOOeV88d', '6722688'), + (675, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOOeV88d', '6730620'), + (675, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOOeV88d', '6730642'), + (675, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOOeV88d', '6740364'), + (675, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOOeV88d', '6743829'), + (675, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOOeV88d', '7030380'), + (675, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOOeV88d', '7033677'), + (675, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOOeV88d', '7035415'), + (675, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOOeV88d', '7044715'), + (675, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOOeV88d', '7050318'), + (675, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOOeV88d', '7050319'), + (675, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOOeV88d', '7050322'), + (675, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOOeV88d', '7057804'), + (675, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOOeV88d', '7072824'), + (675, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOOeV88d', '7074348'), + (675, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOOeV88d', '7089267'), + (675, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOOeV88d', '7098747'), + (675, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOOeV88d', '7113468'), + (675, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOOeV88d', '7114856'), + (675, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOOeV88d', '7114951'), + (675, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOOeV88d', '7114955'), + (675, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOOeV88d', '7114956'), + (675, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOOeV88d', '7153615'), + (675, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOOeV88d', '7159484'), + (675, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOOeV88d', '7178446'), + (676, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'mqEkvrjm', '5186585'), + (676, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mqEkvrjm', '5195095'), + (676, 1285, 'not_attending', '2022-03-21 15:41:48', '2025-12-17 19:47:25', 'mqEkvrjm', '5196763'), + (676, 1288, 'attending', '2022-04-21 16:52:22', '2025-12-17 19:47:25', 'mqEkvrjm', '5199460'), + (676, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mqEkvrjm', '5215989'), + (676, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mqEkvrjm', '5223686'), + (676, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mqEkvrjm', '5227432'), + (676, 1322, 'maybe', '2022-04-25 14:57:04', '2025-12-17 19:47:27', 'mqEkvrjm', '5238356'), + (676, 1327, 'not_attending', '2022-04-25 14:56:30', '2025-12-17 19:47:27', 'mqEkvrjm', '5238445'), + (676, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mqEkvrjm', '5247467'), + (676, 1350, 'not_attending', '2022-04-21 18:37:17', '2025-12-17 19:47:27', 'mqEkvrjm', '5249763'), + (676, 1351, 'not_attending', '2022-05-02 22:45:20', '2025-12-17 19:47:28', 'mqEkvrjm', '5251561'), + (676, 1352, 'not_attending', '2022-05-03 15:46:34', '2025-12-17 19:47:28', 'mqEkvrjm', '5251618'), + (676, 1353, 'attending', '2022-04-21 18:37:25', '2025-12-17 19:47:27', 'mqEkvrjm', '5251777'), + (676, 1362, 'attending', '2022-04-28 01:53:26', '2025-12-17 19:47:28', 'mqEkvrjm', '5260800'), + (676, 1364, 'not_attending', '2022-05-03 19:29:38', '2025-12-17 19:47:28', 'mqEkvrjm', '5261598'), + (676, 1368, 'not_attending', '2022-05-06 22:45:23', '2025-12-17 19:47:28', 'mqEkvrjm', '5262783'), + (676, 1371, 'attending', '2022-04-27 21:20:10', '2025-12-17 19:47:27', 'mqEkvrjm', '5263784'), + (676, 1372, 'attending', '2022-05-02 02:34:30', '2025-12-17 19:47:28', 'mqEkvrjm', '5264352'), + (676, 1374, 'maybe', '2022-05-03 15:46:51', '2025-12-17 19:47:28', 'mqEkvrjm', '5269930'), + (676, 1375, 'not_attending', '2022-05-03 15:46:19', '2025-12-17 19:47:28', 'mqEkvrjm', '5269932'), + (676, 1377, 'attending', '2022-05-13 22:05:04', '2025-12-17 19:47:28', 'mqEkvrjm', '5271447'), + (676, 1378, 'not_attending', '2022-05-14 20:46:27', '2025-12-17 19:47:29', 'mqEkvrjm', '5271448'), + (676, 1379, 'not_attending', '2022-05-21 19:58:51', '2025-12-17 19:47:30', 'mqEkvrjm', '5271449'), + (676, 1380, 'attending', '2022-05-28 21:16:53', '2025-12-17 19:47:30', 'mqEkvrjm', '5271450'), + (676, 1382, 'not_attending', '2022-05-09 21:53:41', '2025-12-17 19:47:28', 'mqEkvrjm', '5276350'), + (676, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mqEkvrjm', '5276469'), + (676, 1385, 'not_attending', '2022-05-11 22:41:33', '2025-12-17 19:47:28', 'mqEkvrjm', '5277822'), + (676, 1386, 'not_attending', '2022-05-06 22:45:29', '2025-12-17 19:47:28', 'mqEkvrjm', '5278159'), + (676, 1390, 'not_attending', '2022-05-09 11:55:51', '2025-12-17 19:47:28', 'mqEkvrjm', '5279509'), + (676, 1394, 'not_attending', '2022-05-27 11:19:35', '2025-12-17 19:47:30', 'mqEkvrjm', '5280667'), + (676, 1401, 'attending', '2022-05-15 19:13:52', '2025-12-17 19:47:29', 'mqEkvrjm', '5286295'), + (676, 1402, 'not_attending', '2022-05-23 14:47:28', '2025-12-17 19:47:30', 'mqEkvrjm', '5287977'), + (676, 1403, 'not_attending', '2022-05-20 13:48:02', '2025-12-17 19:47:29', 'mqEkvrjm', '5288052'), + (676, 1407, 'attending', '2022-05-31 12:37:33', '2025-12-17 19:47:30', 'mqEkvrjm', '5363695'), + (676, 1408, 'not_attending', '2022-05-20 13:47:55', '2025-12-17 19:47:29', 'mqEkvrjm', '5365960'), + (676, 1410, 'not_attending', '2022-05-19 18:04:41', '2025-12-17 19:47:29', 'mqEkvrjm', '5367530'), + (676, 1411, 'not_attending', '2022-05-19 22:15:27', '2025-12-17 19:47:29', 'mqEkvrjm', '5367531'), + (676, 1415, 'attending', '2022-06-03 19:27:10', '2025-12-17 19:47:30', 'mqEkvrjm', '5368973'), + (676, 1416, 'not_attending', '2022-05-28 14:47:41', '2025-12-17 19:47:30', 'mqEkvrjm', '5369628'), + (676, 1417, 'not_attending', '2022-05-23 14:47:32', '2025-12-17 19:47:30', 'mqEkvrjm', '5370465'), + (676, 1419, 'attending', '2022-06-04 13:42:46', '2025-12-17 19:47:30', 'mqEkvrjm', '5373081'), + (676, 1420, 'not_attending', '2022-05-27 20:45:17', '2025-12-17 19:47:30', 'mqEkvrjm', '5374882'), + (676, 1421, 'not_attending', '2022-05-30 14:14:52', '2025-12-17 19:47:30', 'mqEkvrjm', '5374885'), + (676, 1423, 'not_attending', '2022-06-15 15:46:17', '2025-12-17 19:47:17', 'mqEkvrjm', '5375727'), + (676, 1424, 'not_attending', '2022-05-26 16:32:29', '2025-12-17 19:47:30', 'mqEkvrjm', '5375772'), + (676, 1425, 'not_attending', '2022-05-26 16:32:26', '2025-12-17 19:47:30', 'mqEkvrjm', '5375861'), + (676, 1427, 'attending', '2022-05-24 12:32:51', '2025-12-17 19:47:30', 'mqEkvrjm', '5376074'), + (676, 1428, 'not_attending', '2022-06-10 23:13:05', '2025-12-17 19:47:30', 'mqEkvrjm', '5378247'), + (676, 1429, 'attending', '2022-05-30 14:14:50', '2025-12-17 19:47:30', 'mqEkvrjm', '5388761'), + (676, 1431, 'attending', '2022-06-11 21:45:41', '2025-12-17 19:47:30', 'mqEkvrjm', '5389605'), + (676, 1433, 'attending', '2022-06-03 14:40:10', '2025-12-17 19:47:30', 'mqEkvrjm', '5391667'), + (676, 1434, 'not_attending', '2022-05-31 21:53:43', '2025-12-17 19:47:30', 'mqEkvrjm', '5393861'), + (676, 1435, 'not_attending', '2022-06-01 21:16:08', '2025-12-17 19:47:30', 'mqEkvrjm', '5394015'), + (676, 1436, 'not_attending', '2022-06-01 21:16:12', '2025-12-17 19:47:30', 'mqEkvrjm', '5394292'), + (676, 1437, 'attending', '2022-06-01 17:38:17', '2025-12-17 19:47:30', 'mqEkvrjm', '5394493'), + (676, 1438, 'attending', '2022-06-01 21:16:03', '2025-12-17 19:47:30', 'mqEkvrjm', '5395032'), + (676, 1441, 'not_attending', '2022-06-05 22:45:20', '2025-12-17 19:47:30', 'mqEkvrjm', '5397171'), + (676, 1442, 'not_attending', '2022-06-18 17:44:51', '2025-12-17 19:47:17', 'mqEkvrjm', '5397265'), + (676, 1447, 'not_attending', '2022-06-08 22:17:03', '2025-12-17 19:47:30', 'mqEkvrjm', '5401089'), + (676, 1451, 'not_attending', '2022-06-17 17:42:49', '2025-12-17 19:47:17', 'mqEkvrjm', '5403967'), + (676, 1454, 'not_attending', '2022-06-13 01:15:29', '2025-12-17 19:47:31', 'mqEkvrjm', '5404771'), + (676, 1455, 'not_attending', '2022-06-13 17:29:45', '2025-12-17 19:47:31', 'mqEkvrjm', '5404772'), + (676, 1458, 'not_attending', '2022-06-19 22:50:49', '2025-12-17 19:47:17', 'mqEkvrjm', '5404786'), + (676, 1461, 'maybe', '2022-06-14 12:27:39', '2025-12-17 19:47:31', 'mqEkvrjm', '5405149'), + (676, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mqEkvrjm', '5405203'), + (676, 1469, 'not_attending', '2022-06-20 22:45:31', '2025-12-17 19:47:17', 'mqEkvrjm', '5406838'), + (676, 1470, 'not_attending', '2022-06-18 17:45:01', '2025-12-17 19:47:17', 'mqEkvrjm', '5407053'), + (676, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mqEkvrjm', '5408794'), + (676, 1480, 'not_attending', '2022-06-25 21:13:28', '2025-12-17 19:47:19', 'mqEkvrjm', '5411699'), + (676, 1482, 'attending', '2022-06-23 18:18:57', '2025-12-17 19:47:19', 'mqEkvrjm', '5412550'), + (676, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mqEkvrjm', '5415046'), + (676, 1489, 'not_attending', '2022-07-04 14:17:11', '2025-12-17 19:47:19', 'mqEkvrjm', '5420155'), + (676, 1491, 'not_attending', '2022-07-02 01:21:11', '2025-12-17 19:47:19', 'mqEkvrjm', '5420158'), + (676, 1492, 'not_attending', '2022-07-04 14:17:24', '2025-12-17 19:47:19', 'mqEkvrjm', '5420175'), + (676, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mqEkvrjm', '5422086'), + (676, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mqEkvrjm', '5422406'), + (676, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mqEkvrjm', '5424565'), + (676, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mqEkvrjm', '5426882'), + (676, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mqEkvrjm', '5427083'), + (676, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mqEkvrjm', '5441125'), + (676, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mqEkvrjm', '5441126'), + (676, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mqEkvrjm', '5441128'), + (676, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mqEkvrjm', '5441131'), + (676, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mqEkvrjm', '5441132'), + (676, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mqEkvrjm', '5446643'), + (676, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mqEkvrjm', '5453325'), + (676, 1541, 'maybe', '2022-07-24 03:57:46', '2025-12-17 19:47:20', 'mqEkvrjm', '5453542'), + (676, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mqEkvrjm', '5454516'), + (676, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mqEkvrjm', '5454605'), + (676, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mqEkvrjm', '5455037'), + (676, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mqEkvrjm', '5461278'), + (676, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mqEkvrjm', '5469480'), + (676, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mqEkvrjm', '5471073'), + (676, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mqEkvrjm', '5474663'), + (676, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mqEkvrjm', '5482022'), + (676, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mqEkvrjm', '5482793'), + (676, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mqEkvrjm', '5488912'), + (676, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mqEkvrjm', '5492192'), + (676, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mqEkvrjm', '5493139'), + (676, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mqEkvrjm', '5493200'), + (676, 1595, 'maybe', '2022-08-12 03:33:17', '2025-12-17 19:47:22', 'mqEkvrjm', '5495736'), + (676, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mqEkvrjm', '5502188'), + (676, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mqEkvrjm', '5505059'), + (676, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mqEkvrjm', '5509055'), + (676, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mqEkvrjm', '5512862'), + (676, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mqEkvrjm', '5513985'), + (676, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mqEkvrjm', '5519981'), + (676, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mqEkvrjm', '5522550'), + (676, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mqEkvrjm', '5534683'), + (676, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mqEkvrjm', '5537735'), + (676, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mqEkvrjm', '5540859'), + (676, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mqEkvrjm', '5546619'), + (676, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mqEkvrjm', '5555245'), + (676, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mqEkvrjm', '5557747'), + (676, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mqEkvrjm', '5560255'), + (676, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mqEkvrjm', '5562906'), + (676, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mqEkvrjm', '5600604'), + (676, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mqEkvrjm', '5605544'), + (676, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'mqEkvrjm', '5606737'), + (676, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mqEkvrjm', '5630960'), + (676, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mqEkvrjm', '5630961'), + (676, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mqEkvrjm', '5630962'), + (676, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mqEkvrjm', '5630966'), + (676, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mqEkvrjm', '5630967'), + (676, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mqEkvrjm', '5630968'), + (676, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mqEkvrjm', '5635406'), + (676, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mqEkvrjm', '5638765'), + (676, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mqEkvrjm', '5640097'), + (676, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mqEkvrjm', '5640843'), + (676, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mqEkvrjm', '5641521'), + (676, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mqEkvrjm', '5642818'), + (676, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mqEkvrjm', '5652395'), + (676, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mqEkvrjm', '5670445'), + (676, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mqEkvrjm', '5671637'), + (676, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mqEkvrjm', '5672329'), + (676, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mqEkvrjm', '5674057'), + (676, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mqEkvrjm', '5674060'), + (676, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mqEkvrjm', '5677461'), + (676, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mqEkvrjm', '5698046'), + (676, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mqEkvrjm', '5699760'), + (676, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mqEkvrjm', '5741601'), + (676, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mqEkvrjm', '5763458'), + (676, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mqEkvrjm', '5774172'), + (676, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mqEkvrjm', '5818247'), + (676, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mqEkvrjm', '5819471'), + (676, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mqEkvrjm', '5827739'), + (676, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mqEkvrjm', '5844306'), + (676, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mqEkvrjm', '5850159'), + (676, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mqEkvrjm', '5858999'), + (676, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mqEkvrjm', '5871984'), + (676, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mqEkvrjm', '5876354'), + (676, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mqEkvrjm', '5880939'), + (676, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mqEkvrjm', '5880940'), + (676, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mqEkvrjm', '5880942'), + (676, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mqEkvrjm', '5880943'), + (676, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mqEkvrjm', '5887890'), + (676, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mqEkvrjm', '5888598'), + (676, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mqEkvrjm', '5893260'), + (676, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mqEkvrjm', '5899826'), + (676, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mqEkvrjm', '5900199'), + (676, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mqEkvrjm', '5900200'), + (676, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mqEkvrjm', '5900202'), + (676, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mqEkvrjm', '5900203'), + (676, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mqEkvrjm', '5901108'), + (676, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mqEkvrjm', '5901126'), + (676, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mqEkvrjm', '5909655'), + (676, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mqEkvrjm', '5910522'), + (676, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mqEkvrjm', '5910526'), + (676, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mqEkvrjm', '5910528'), + (676, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mqEkvrjm', '5916219'), + (676, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mqEkvrjm', '5936234'), + (676, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mqEkvrjm', '5958351'), + (676, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mqEkvrjm', '5959751'), + (676, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mqEkvrjm', '5959755'), + (676, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mqEkvrjm', '5960055'), + (676, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mqEkvrjm', '5961684'), + (676, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mqEkvrjm', '5962132'), + (676, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mqEkvrjm', '5962133'), + (676, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mqEkvrjm', '5962134'), + (676, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mqEkvrjm', '5962317'), + (676, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mqEkvrjm', '5962318'), + (676, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mqEkvrjm', '5965933'), + (676, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mqEkvrjm', '5967014'), + (676, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mqEkvrjm', '5972815'), + (676, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mqEkvrjm', '5974016'), + (676, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mqEkvrjm', '5981515'), + (676, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mqEkvrjm', '5993516'), + (676, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mqEkvrjm', '5998939'), + (676, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mqEkvrjm', '6028191'), + (676, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mqEkvrjm', '6040066'), + (676, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mqEkvrjm', '6042717'), + (676, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mqEkvrjm', '6044838'), + (676, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mqEkvrjm', '6044839'), + (676, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mqEkvrjm', '6045684'), + (676, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mqEkvrjm', '6050104'), + (676, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mqEkvrjm', '6053195'), + (676, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mqEkvrjm', '6053198'), + (676, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mqEkvrjm', '6056085'), + (676, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mqEkvrjm', '6056916'), + (676, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mqEkvrjm', '6059290'), + (676, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mqEkvrjm', '6060328'), + (676, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mqEkvrjm', '6061037'), + (676, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mqEkvrjm', '6061039'), + (676, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mqEkvrjm', '6067245'), + (676, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mqEkvrjm', '6068094'), + (676, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mqEkvrjm', '6068252'), + (676, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mqEkvrjm', '6068253'), + (676, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mqEkvrjm', '6068254'), + (676, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mqEkvrjm', '6068280'), + (676, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mqEkvrjm', '6069093'), + (676, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mqEkvrjm', '6072528'), + (676, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mqEkvrjm', '6079840'), + (676, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mqEkvrjm', '6083398'), + (676, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mqEkvrjm', '6093504'), + (676, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mqEkvrjm', '6097414'), + (676, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mqEkvrjm', '6097442'), + (676, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mqEkvrjm', '6097684'), + (676, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mqEkvrjm', '6098762'), + (676, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mqEkvrjm', '6101362'), + (676, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mqEkvrjm', '6103752'), + (676, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mqEkvrjm', '6107314'), + (677, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'lAepJYPm', '4210314'), + (677, 901, 'not_attending', '2021-07-31 16:26:33', '2025-12-17 19:47:40', 'lAepJYPm', '4240317'), + (677, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'lAepJYPm', '4240318'), + (677, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'lAepJYPm', '4240320'), + (677, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'lAepJYPm', '4302093'), + (677, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'lAepJYPm', '4304151'), + (677, 947, 'not_attending', '2021-08-04 05:12:06', '2025-12-17 19:47:41', 'lAepJYPm', '4315713'), + (677, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'lAepJYPm', '4315714'), + (677, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'lAepJYPm', '4315726'), + (677, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'lAepJYPm', '4356801'), + (677, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'lAepJYPm', '4366186'), + (677, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'lAepJYPm', '4366187'), + (677, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'lAepJYPm', '4420735'), + (677, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'lAepJYPm', '4420738'), + (677, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'lAepJYPm', '4420739'), + (677, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'lAepJYPm', '4420741'), + (677, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'lAepJYPm', '4420744'), + (677, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'lAepJYPm', '4420747'), + (677, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'lAepJYPm', '4420748'), + (677, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'lAepJYPm', '4420749'), + (677, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'lAepJYPm', '4461883'), + (677, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'lAepJYPm', '4508342'), + (677, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'lAepJYPm', '4568602'), + (677, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'lAepJYPm', '4572153'), + (677, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'lAepJYPm', '4585962'), + (677, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'lAepJYPm', '4596356'), + (677, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'lAepJYPm', '4598860'), + (677, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'lAepJYPm', '4598861'), + (677, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'lAepJYPm', '4602797'), + (677, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'lAepJYPm', '4637896'), + (677, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'lAepJYPm', '4642994'), + (677, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'lAepJYPm', '4642995'), + (677, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'lAepJYPm', '4642996'), + (677, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'lAepJYPm', '4642997'), + (677, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'lAepJYPm', '4645687'), + (677, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'lAepJYPm', '4645698'), + (677, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'lAepJYPm', '4645704'), + (677, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'lAepJYPm', '4645705'), + (677, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'lAepJYPm', '4668385'), + (677, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAepJYPm', '6045684'), + (678, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'dBGPpv1m', '7738518'), + (678, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBGPpv1m', '7750636'), + (678, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBGPpv1m', '7796540'), + (678, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBGPpv1m', '7796541'), + (678, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBGPpv1m', '7796542'), + (678, 2967, 'not_attending', '2025-01-07 14:57:05', '2025-12-17 19:46:22', 'dBGPpv1m', '7797181'), + (678, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dBGPpv1m', '7825913'), + (678, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dBGPpv1m', '7826209'), + (678, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dBGPpv1m', '7834742'), + (678, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dBGPpv1m', '7842108'), + (678, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dBGPpv1m', '7842902'), + (678, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dBGPpv1m', '7842903'), + (678, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dBGPpv1m', '7842904'), + (678, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dBGPpv1m', '7842905'), + (678, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'dBGPpv1m', '7844784'), + (678, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dBGPpv1m', '7855719'), + (678, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dBGPpv1m', '7860683'), + (678, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dBGPpv1m', '7860684'), + (678, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dBGPpv1m', '7866095'), + (678, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dBGPpv1m', '7869170'), + (678, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dBGPpv1m', '7869201'), + (678, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'dBGPpv1m', '7872088'), + (679, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', '4WPbQKpd', '4210314'), + (679, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '4WPbQKpd', '4240320'), + (679, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4WPbQKpd', '4304151'), + (679, 948, 'attending', '2021-08-10 23:16:19', '2025-12-17 19:47:41', '4WPbQKpd', '4315714'), + (679, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', '4WPbQKpd', '4315726'), + (679, 951, 'attending', '2021-08-19 21:47:57', '2025-12-17 19:47:43', '4WPbQKpd', '4315731'), + (679, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4WPbQKpd', '4356801'), + (679, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '4WPbQKpd', '4366186'), + (679, 974, 'attending', '2021-08-28 20:56:17', '2025-12-17 19:47:42', '4WPbQKpd', '4366187'), + (679, 983, 'attending', '2021-08-20 20:10:56', '2025-12-17 19:47:42', '4WPbQKpd', '4390051'), + (679, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4WPbQKpd', '4402823'), + (679, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4WPbQKpd', '4420735'), + (679, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4WPbQKpd', '4420738'), + (679, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4WPbQKpd', '4420739'), + (679, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4WPbQKpd', '4420741'), + (679, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4WPbQKpd', '4420744'), + (679, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4WPbQKpd', '4420747'), + (679, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4WPbQKpd', '4420748'), + (679, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4WPbQKpd', '4420749'), + (679, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4WPbQKpd', '4461883'), + (679, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WPbQKpd', '6045684'), + (680, 604, 'attending', '2021-02-27 18:27:35', '2025-12-17 19:47:50', 'o4PKzewA', '3470305'), + (680, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'o4PKzewA', '3517815'), + (680, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'o4PKzewA', '3517816'), + (680, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'o4PKzewA', '3523941'), + (680, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'o4PKzewA', '3533850'), + (680, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'o4PKzewA', '3536632'), + (680, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'o4PKzewA', '3536656'), + (680, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'o4PKzewA', '3539916'), + (680, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'o4PKzewA', '3539917'), + (680, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'o4PKzewA', '3539918'), + (680, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'o4PKzewA', '3539919'), + (680, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'o4PKzewA', '3539920'), + (680, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'o4PKzewA', '3539921'), + (680, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'o4PKzewA', '3539922'), + (680, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'o4PKzewA', '3539923'), + (680, 649, 'maybe', '2021-03-19 13:28:46', '2025-12-17 19:47:51', 'o4PKzewA', '3539927'), + (680, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'o4PKzewA', '3582734'), + (680, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'o4PKzewA', '3583262'), + (680, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'o4PKzewA', '3619523'), + (680, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'o4PKzewA', '3661369'), + (680, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'o4PKzewA', '3674262'), + (680, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'o4PKzewA', '3677402'), + (680, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PKzewA', '6045684'), + (681, 1281, 'maybe', '2022-04-09 19:07:13', '2025-12-17 19:47:27', 'd3Yly1gA', '5190437'), + (681, 1284, 'not_attending', '2022-04-16 19:38:38', '2025-12-17 19:47:27', 'd3Yly1gA', '5195095'), + (681, 1306, 'attending', '2022-04-04 03:35:18', '2025-12-17 19:47:26', 'd3Yly1gA', '5223682'), + (681, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd3Yly1gA', '5223686'), + (681, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd3Yly1gA', '5227432'), + (681, 1316, 'attending', '2022-04-11 22:01:56', '2025-12-17 19:47:27', 'd3Yly1gA', '5237536'), + (681, 1318, 'attending', '2022-04-11 18:20:17', '2025-12-17 19:47:27', 'd3Yly1gA', '5238343'), + (681, 1319, 'not_attending', '2022-04-24 20:48:07', '2025-12-17 19:47:27', 'd3Yly1gA', '5238353'), + (681, 1321, 'attending', '2022-04-11 21:53:46', '2025-12-17 19:47:27', 'd3Yly1gA', '5238355'), + (681, 1322, 'not_attending', '2022-04-26 20:44:01', '2025-12-17 19:47:27', 'd3Yly1gA', '5238356'), + (681, 1324, 'not_attending', '2022-04-27 07:35:47', '2025-12-17 19:47:27', 'd3Yly1gA', '5238360'), + (681, 1327, 'not_attending', '2022-04-25 07:37:25', '2025-12-17 19:47:27', 'd3Yly1gA', '5238445'), + (681, 1346, 'attending', '2022-04-22 07:37:07', '2025-12-17 19:47:27', 'd3Yly1gA', '5247467'), + (681, 1351, 'not_attending', '2022-05-03 00:14:11', '2025-12-17 19:47:28', 'd3Yly1gA', '5251561'), + (681, 1359, 'not_attending', '2022-05-03 09:17:23', '2025-12-17 19:47:28', 'd3Yly1gA', '5258360'), + (681, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd3Yly1gA', '5260800'), + (681, 1364, 'attending', '2022-04-26 09:07:07', '2025-12-17 19:47:28', 'd3Yly1gA', '5261598'), + (681, 1369, 'not_attending', '2022-05-10 16:45:17', '2025-12-17 19:47:28', 'd3Yly1gA', '5262809'), + (681, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd3Yly1gA', '5269930'), + (681, 1378, 'not_attending', '2022-05-24 23:57:25', '2025-12-17 19:47:29', 'd3Yly1gA', '5271448'), + (681, 1379, 'maybe', '2022-05-20 20:48:00', '2025-12-17 19:47:30', 'd3Yly1gA', '5271449'), + (681, 1380, 'maybe', '2022-05-28 20:06:44', '2025-12-17 19:47:30', 'd3Yly1gA', '5271450'), + (681, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd3Yly1gA', '5276469'), + (681, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd3Yly1gA', '5278159'), + (681, 1399, 'not_attending', '2022-05-08 20:02:15', '2025-12-17 19:47:28', 'd3Yly1gA', '5281796'), + (681, 1404, 'not_attending', '2022-05-17 09:06:14', '2025-12-17 19:47:29', 'd3Yly1gA', '5288114'), + (681, 1405, 'attending', '2022-05-12 21:39:29', '2025-12-17 19:47:29', 'd3Yly1gA', '5288115'), + (681, 1407, 'attending', '2022-05-16 20:51:13', '2025-12-17 19:47:30', 'd3Yly1gA', '5363695'), + (681, 1408, 'not_attending', '2022-05-19 07:48:36', '2025-12-17 19:47:29', 'd3Yly1gA', '5365960'), + (681, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd3Yly1gA', '5368973'), + (681, 1420, 'attending', '2022-05-24 05:58:53', '2025-12-17 19:47:30', 'd3Yly1gA', '5374882'), + (681, 1422, 'attending', '2022-05-24 05:59:01', '2025-12-17 19:47:30', 'd3Yly1gA', '5375603'), + (681, 1426, 'attending', '2022-05-24 05:58:32', '2025-12-17 19:47:30', 'd3Yly1gA', '5375873'), + (681, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd3Yly1gA', '5378247'), + (681, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd3Yly1gA', '5389605'), + (681, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd3Yly1gA', '5397265'), + (681, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd3Yly1gA', '5403967'), + (681, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd3Yly1gA', '5404786'), + (681, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd3Yly1gA', '5405203'), + (681, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd3Yly1gA', '5411699'), + (681, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd3Yly1gA', '5412550'), + (681, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd3Yly1gA', '5415046'), + (681, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd3Yly1gA', '5422086'), + (681, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd3Yly1gA', '5422406'), + (681, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd3Yly1gA', '5424565'), + (681, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd3Yly1gA', '5426882'), + (681, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd3Yly1gA', '5427083'), + (681, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd3Yly1gA', '5441125'), + (681, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd3Yly1gA', '5441126'), + (681, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd3Yly1gA', '5441128'), + (681, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd3Yly1gA', '5441131'), + (681, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd3Yly1gA', '5441132'), + (681, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd3Yly1gA', '5446643'), + (681, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd3Yly1gA', '5453325'), + (681, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd3Yly1gA', '5454516'), + (681, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd3Yly1gA', '5454605'), + (681, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd3Yly1gA', '5455037'), + (681, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd3Yly1gA', '5461278'), + (681, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd3Yly1gA', '5469480'), + (681, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd3Yly1gA', '5471073'), + (681, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd3Yly1gA', '5474663'), + (681, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd3Yly1gA', '5482022'), + (681, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd3Yly1gA', '5482793'), + (681, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd3Yly1gA', '5488912'), + (681, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd3Yly1gA', '5492192'), + (681, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd3Yly1gA', '5493139'), + (681, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd3Yly1gA', '5493200'), + (681, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd3Yly1gA', '5502188'), + (681, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd3Yly1gA', '5505059'), + (681, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd3Yly1gA', '5509055'), + (681, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd3Yly1gA', '5512862'), + (681, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd3Yly1gA', '5513985'), + (681, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd3Yly1gA', '5519981'), + (681, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd3Yly1gA', '5522550'), + (681, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd3Yly1gA', '5534683'), + (681, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd3Yly1gA', '5546619'), + (681, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd3Yly1gA', '5555245'), + (681, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd3Yly1gA', '5557747'), + (681, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3Yly1gA', '6045684'), + (682, 1118, 'attending', '2021-12-14 08:26:07', '2025-12-17 19:47:38', '40kyrOyA', '4642996'), + (682, 1124, 'attending', '2021-12-12 20:25:49', '2025-12-17 19:47:38', '40kyrOyA', '4644025'), + (682, 1131, 'attending', '2021-12-17 12:47:58', '2025-12-17 19:47:31', '40kyrOyA', '4658825'), + (682, 1156, 'not_attending', '2021-12-22 00:26:01', '2025-12-17 19:47:31', '40kyrOyA', '4715207'), + (682, 1157, 'attending', '2021-12-18 21:35:43', '2025-12-17 19:47:31', '40kyrOyA', '4715208'), + (682, 1174, 'attending', '2022-01-15 02:12:13', '2025-12-17 19:47:31', '40kyrOyA', '4736496'), + (682, 1175, 'not_attending', '2022-01-20 02:30:28', '2025-12-17 19:47:32', '40kyrOyA', '4736497'), + (682, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '40kyrOyA', '4736499'), + (682, 1178, 'not_attending', '2022-01-29 22:25:33', '2025-12-17 19:47:32', '40kyrOyA', '4736500'), + (682, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '40kyrOyA', '4736503'), + (682, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '40kyrOyA', '4736504'), + (682, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '40kyrOyA', '4746789'), + (682, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '40kyrOyA', '4753929'), + (682, 1198, 'not_attending', '2022-01-24 14:36:27', '2025-12-17 19:47:32', '40kyrOyA', '4766801'), + (682, 1199, 'not_attending', '2022-01-24 14:36:29', '2025-12-17 19:47:32', '40kyrOyA', '4766802'), + (682, 1208, 'attending', '2022-01-24 14:36:36', '2025-12-17 19:47:32', '40kyrOyA', '4774419'), + (682, 1220, 'not_attending', '2022-01-28 21:35:17', '2025-12-17 19:47:32', '40kyrOyA', '4790257'), + (682, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '40kyrOyA', '5038850'), + (682, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '40kyrOyA', '5045826'), + (682, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '40kyrOyA', '5132533'), + (682, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '40kyrOyA', '5186582'), + (682, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '40kyrOyA', '5186583'), + (682, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '40kyrOyA', '5186585'), + (682, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '40kyrOyA', '5190437'), + (682, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '40kyrOyA', '5195095'), + (682, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '40kyrOyA', '5215989'), + (682, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '40kyrOyA', '5223686'), + (682, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '40kyrOyA', '5227432'), + (682, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '40kyrOyA', '5247467'), + (682, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '40kyrOyA', '5260800'), + (682, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '40kyrOyA', '5269930'), + (682, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '40kyrOyA', '5271448'), + (682, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '40kyrOyA', '5271449'), + (682, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '40kyrOyA', '5276469'), + (682, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '40kyrOyA', '5278159'), + (682, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '40kyrOyA', '5363695'), + (682, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '40kyrOyA', '5365960'), + (682, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '40kyrOyA', '5368973'), + (682, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '40kyrOyA', '5378247'), + (682, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '40kyrOyA', '5389605'), + (682, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '40kyrOyA', '5397265'), + (682, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '40kyrOyA', '5403967'), + (682, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '40kyrOyA', '5404786'), + (682, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '40kyrOyA', '5405203'), + (682, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '40kyrOyA', '5408794'), + (682, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '40kyrOyA', '5411699'), + (682, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '40kyrOyA', '5412550'), + (682, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '40kyrOyA', '5415046'), + (682, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '40kyrOyA', '5422086'), + (682, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '40kyrOyA', '5422406'), + (682, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '40kyrOyA', '5424565'), + (682, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '40kyrOyA', '5426882'), + (682, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '40kyrOyA', '5427083'), + (682, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '40kyrOyA', '5441125'), + (682, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '40kyrOyA', '5441126'), + (682, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '40kyrOyA', '5441128'), + (682, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '40kyrOyA', '5446643'), + (682, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '40kyrOyA', '5453325'), + (682, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '40kyrOyA', '5454516'), + (682, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '40kyrOyA', '5454605'), + (682, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '40kyrOyA', '5455037'), + (682, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '40kyrOyA', '5461278'), + (682, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '40kyrOyA', '5469480'), + (682, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '40kyrOyA', '5471073'), + (682, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '40kyrOyA', '5474663'), + (682, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '40kyrOyA', '5482022'), + (682, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '40kyrOyA', '5482793'), + (682, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '40kyrOyA', '5488912'), + (682, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '40kyrOyA', '5492192'), + (682, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '40kyrOyA', '5493139'), + (682, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '40kyrOyA', '5493200'), + (682, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '40kyrOyA', '5502188'), + (682, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '40kyrOyA', '5512862'), + (682, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '40kyrOyA', '5513985'), + (682, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', '40kyrOyA', '5519981'), + (682, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '40kyrOyA', '5522550'), + (682, 1679, 'maybe', '2022-10-02 16:03:07', '2025-12-17 19:47:12', '40kyrOyA', '5601099'), + (682, 1707, 'attending', '2022-10-02 16:26:02', '2025-12-17 19:47:12', '40kyrOyA', '5613104'), + (682, 1719, 'attending', '2022-10-08 16:07:43', '2025-12-17 19:47:12', '40kyrOyA', '5630958'), + (682, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '40kyrOyA', '5630960'), + (682, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '40kyrOyA', '5630961'), + (682, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '40kyrOyA', '5630962'), + (682, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '40kyrOyA', '5630966'), + (682, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '40kyrOyA', '5630967'), + (682, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '40kyrOyA', '5630968'), + (682, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '40kyrOyA', '5635406'), + (682, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '40kyrOyA', '5638765'), + (682, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '40kyrOyA', '5640097'), + (682, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '40kyrOyA', '5640843'), + (682, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '40kyrOyA', '5641521'), + (682, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '40kyrOyA', '5642818'), + (682, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '40kyrOyA', '5652395'), + (682, 1761, 'not_attending', '2022-11-17 17:24:16', '2025-12-17 19:47:16', '40kyrOyA', '5670434'), + (682, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '40kyrOyA', '5670445'), + (682, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '40kyrOyA', '5671637'), + (682, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '40kyrOyA', '5672329'), + (682, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '40kyrOyA', '5674057'), + (682, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '40kyrOyA', '5674060'), + (682, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '40kyrOyA', '5677461'), + (682, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '40kyrOyA', '5698046'), + (682, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '40kyrOyA', '5699760'), + (682, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '40kyrOyA', '5741601'), + (682, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '40kyrOyA', '5763458'), + (682, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '40kyrOyA', '5774172'), + (682, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '40kyrOyA', '5818247'), + (682, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '40kyrOyA', '5819471'), + (682, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '40kyrOyA', '5827739'), + (682, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '40kyrOyA', '5844306'), + (682, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '40kyrOyA', '5850159'), + (682, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '40kyrOyA', '5858999'), + (682, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '40kyrOyA', '5871984'), + (682, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '40kyrOyA', '5876354'), + (682, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '40kyrOyA', '5880939'), + (682, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '40kyrOyA', '5880940'), + (682, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '40kyrOyA', '5880942'), + (682, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '40kyrOyA', '5880943'), + (682, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '40kyrOyA', '5887890'), + (682, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '40kyrOyA', '5888598'), + (682, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '40kyrOyA', '5893260'), + (682, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '40kyrOyA', '5899826'), + (682, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '40kyrOyA', '5900199'), + (682, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '40kyrOyA', '5900200'), + (682, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '40kyrOyA', '5900202'), + (682, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '40kyrOyA', '5900203'), + (682, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '40kyrOyA', '5901108'), + (682, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '40kyrOyA', '5901126'), + (682, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '40kyrOyA', '5909655'), + (682, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '40kyrOyA', '5910522'), + (682, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '40kyrOyA', '5910526'), + (682, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '40kyrOyA', '5910528'), + (682, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '40kyrOyA', '5916219'), + (682, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '40kyrOyA', '5936234'), + (682, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '40kyrOyA', '5958351'), + (682, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '40kyrOyA', '5959751'), + (682, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '40kyrOyA', '5959755'), + (682, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '40kyrOyA', '5960055'), + (682, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '40kyrOyA', '5961684'), + (682, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '40kyrOyA', '5962132'), + (682, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '40kyrOyA', '5962133'), + (682, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '40kyrOyA', '5962134'), + (682, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '40kyrOyA', '5962317'), + (682, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '40kyrOyA', '5962318'), + (682, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '40kyrOyA', '5965933'), + (682, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '40kyrOyA', '5967014'), + (682, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '40kyrOyA', '5972815'), + (682, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '40kyrOyA', '5974016'), + (682, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '40kyrOyA', '5981515'), + (682, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '40kyrOyA', '5993516'), + (682, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '40kyrOyA', '5998939'), + (682, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '40kyrOyA', '6028191'), + (682, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '40kyrOyA', '6040066'), + (682, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '40kyrOyA', '6042717'), + (682, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '40kyrOyA', '6044838'), + (682, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '40kyrOyA', '6044839'), + (682, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '40kyrOyA', '6045684'), + (682, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '40kyrOyA', '6050104'), + (682, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '40kyrOyA', '6053195'), + (682, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '40kyrOyA', '6053198'), + (682, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '40kyrOyA', '6056085'), + (682, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '40kyrOyA', '6056916'), + (682, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '40kyrOyA', '6059290'), + (682, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '40kyrOyA', '6060328'), + (682, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '40kyrOyA', '6061037'), + (682, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '40kyrOyA', '6061039'), + (682, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '40kyrOyA', '6067245'), + (682, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '40kyrOyA', '6068094'), + (682, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '40kyrOyA', '6068252'), + (682, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '40kyrOyA', '6068253'), + (682, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '40kyrOyA', '6068254'), + (682, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '40kyrOyA', '6068280'), + (682, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '40kyrOyA', '6069093'), + (682, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '40kyrOyA', '6072528'), + (682, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '40kyrOyA', '6079840'), + (682, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '40kyrOyA', '6083398'), + (682, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '40kyrOyA', '6093504'), + (682, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '40kyrOyA', '6097414'), + (682, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '40kyrOyA', '6097442'), + (682, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '40kyrOyA', '6097684'), + (682, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '40kyrOyA', '6098762'), + (682, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '40kyrOyA', '6101361'), + (682, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '40kyrOyA', '6101362'), + (682, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '40kyrOyA', '6107314'), + (682, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '40kyrOyA', '6120034'), + (682, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '40kyrOyA', '6136733'), + (682, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '40kyrOyA', '6137989'), + (682, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '40kyrOyA', '6150864'), + (682, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '40kyrOyA', '6155491'), + (682, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '40kyrOyA', '6164417'), + (682, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '40kyrOyA', '6166388'), + (682, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '40kyrOyA', '6176439'), + (682, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '40kyrOyA', '6182410'), + (682, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '40kyrOyA', '6185812'), + (682, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '40kyrOyA', '6187651'), + (682, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '40kyrOyA', '6187963'), + (682, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '40kyrOyA', '6187964'), + (682, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '40kyrOyA', '6187966'), + (682, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '40kyrOyA', '6187967'), + (682, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '40kyrOyA', '6187969'), + (682, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '40kyrOyA', '6334878'), + (682, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '40kyrOyA', '6337236'), + (682, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '40kyrOyA', '6337970'), + (682, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '40kyrOyA', '6338308'), + (682, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '40kyrOyA', '6341710'), + (682, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '40kyrOyA', '6342044'), + (682, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '40kyrOyA', '6342298'), + (682, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '40kyrOyA', '6343294'), + (682, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '40kyrOyA', '6347034'), + (682, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '40kyrOyA', '6347056'), + (682, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '40kyrOyA', '6353830'), + (682, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '40kyrOyA', '6353831'), + (682, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '40kyrOyA', '6357867'), + (682, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '40kyrOyA', '6358652'), + (682, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '40kyrOyA', '6361709'), + (682, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '40kyrOyA', '6361710'), + (682, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '40kyrOyA', '6361711'), + (682, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '40kyrOyA', '6361712'), + (682, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '40kyrOyA', '6361713'), + (682, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '40kyrOyA', '6382573'), + (682, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '40kyrOyA', '6388604'), + (682, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '40kyrOyA', '6394629'), + (682, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '40kyrOyA', '6394631'), + (682, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '40kyrOyA', '6440863'), + (682, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '40kyrOyA', '6445440'), + (682, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '40kyrOyA', '6453951'), + (682, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '40kyrOyA', '6461696'), + (682, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '40kyrOyA', '6462129'), + (682, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '40kyrOyA', '6463218'), + (682, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '40kyrOyA', '6472181'), + (682, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '40kyrOyA', '6482693'), + (682, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '40kyrOyA', '6484200'), + (682, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '40kyrOyA', '6484680'), + (682, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '40kyrOyA', '6507741'), + (682, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '40kyrOyA', '6514659'), + (682, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '40kyrOyA', '6514660'), + (682, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '40kyrOyA', '6519103'), + (682, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '40kyrOyA', '6535681'), + (682, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '40kyrOyA', '6584747'), + (682, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '40kyrOyA', '6587097'), + (682, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '40kyrOyA', '6609022'), + (682, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '40kyrOyA', '6632757'), + (682, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '40kyrOyA', '6644187'), + (682, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '40kyrOyA', '6648951'), + (682, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '40kyrOyA', '6648952'), + (682, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '40kyrOyA', '6655401'), + (682, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '40kyrOyA', '6661585'), + (682, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '40kyrOyA', '6661588'), + (682, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '40kyrOyA', '6661589'), + (682, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '40kyrOyA', '6699906'), + (682, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '40kyrOyA', '6699913'), + (682, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '40kyrOyA', '6701109'), + (682, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '40kyrOyA', '6705219'), + (682, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '40kyrOyA', '6710153'), + (682, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '40kyrOyA', '6711552'), + (682, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '40kyrOyA', '6711553'), + (682, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '40kyrOyA', '6722688'), + (682, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '40kyrOyA', '6730620'), + (682, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '40kyrOyA', '6740364'), + (682, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '40kyrOyA', '6743829'), + (682, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '40kyrOyA', '7030380'), + (682, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '40kyrOyA', '7033677'), + (682, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '40kyrOyA', '7044715'), + (682, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '40kyrOyA', '7050318'), + (682, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '40kyrOyA', '7050319'), + (682, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '40kyrOyA', '7050322'), + (682, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '40kyrOyA', '7057804'), + (682, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '40kyrOyA', '7072824'), + (682, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '40kyrOyA', '7074348'), + (682, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '40kyrOyA', '7074364'), + (682, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '40kyrOyA', '7089267'), + (682, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '40kyrOyA', '7098747'), + (682, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '40kyrOyA', '7113468'), + (682, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '40kyrOyA', '7114856'), + (682, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '40kyrOyA', '7114951'), + (682, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '40kyrOyA', '7114955'), + (682, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '40kyrOyA', '7114956'), + (682, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '40kyrOyA', '7114957'), + (682, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '40kyrOyA', '7159484'), + (682, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '40kyrOyA', '7178446'), + (682, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '40kyrOyA', '7220467'), + (682, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '40kyrOyA', '7240354'), + (682, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '40kyrOyA', '7251633'), + (682, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '40kyrOyA', '7324073'), + (682, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '40kyrOyA', '7324074'), + (682, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '40kyrOyA', '7324075'), + (682, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '40kyrOyA', '7324078'), + (682, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '40kyrOyA', '7324082'), + (682, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '40kyrOyA', '7331457'), + (682, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '40kyrOyA', '7363643'), + (682, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '40kyrOyA', '7368606'), + (682, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '40kyrOyA', '7397462'), + (682, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '40kyrOyA', '7424275'), + (682, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '40kyrOyA', '7432751'), + (682, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '40kyrOyA', '7432752'), + (682, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '40kyrOyA', '7432753'), + (682, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '40kyrOyA', '7432754'), + (682, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '40kyrOyA', '7432755'), + (682, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '40kyrOyA', '7432756'), + (682, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '40kyrOyA', '7432758'), + (682, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '40kyrOyA', '7432759'), + (682, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '40kyrOyA', '7433834'), + (682, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '40kyrOyA', '7470197'), + (682, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '40kyrOyA', '7685613'), + (682, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '40kyrOyA', '7688194'), + (682, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '40kyrOyA', '7688196'), + (682, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '40kyrOyA', '7688289'), + (682, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '40kyrOyA', '7692763'), + (682, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '40kyrOyA', '7697552'), + (682, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '40kyrOyA', '7699878'), + (682, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '40kyrOyA', '7704043'), + (682, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '40kyrOyA', '7712467'), + (682, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '40kyrOyA', '7713585'), + (682, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '40kyrOyA', '7713586'), + (682, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '40kyrOyA', '7738518'), + (682, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '40kyrOyA', '7750636'), + (682, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '40kyrOyA', '7796540'), + (682, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '40kyrOyA', '7796541'), + (682, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '40kyrOyA', '7796542'), + (682, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '40kyrOyA', '7825913'), + (682, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '40kyrOyA', '7826209'), + (682, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '40kyrOyA', '7834742'), + (682, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '40kyrOyA', '7842108'), + (682, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '40kyrOyA', '7842902'), + (682, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '40kyrOyA', '7842903'), + (682, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '40kyrOyA', '7842904'), + (682, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '40kyrOyA', '7842905'), + (682, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '40kyrOyA', '7855719'), + (682, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '40kyrOyA', '7860683'), + (682, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '40kyrOyA', '7860684'), + (682, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '40kyrOyA', '7866095'), + (682, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '40kyrOyA', '7869170'), + (682, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '40kyrOyA', '7869188'), + (682, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '40kyrOyA', '7869201'), + (682, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '40kyrOyA', '7877465'), + (682, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '40kyrOyA', '7888250'), + (682, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '40kyrOyA', '7904777'), + (682, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '40kyrOyA', '8349164'), + (682, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '40kyrOyA', '8349545'), + (682, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '40kyrOyA', '8368028'), + (682, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '40kyrOyA', '8368029'), + (682, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '40kyrOyA', '8388462'), + (682, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '40kyrOyA', '8400273'), + (682, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '40kyrOyA', '8400275'), + (682, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '40kyrOyA', '8400276'), + (682, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '40kyrOyA', '8404977'), + (682, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '40kyrOyA', '8430783'), + (682, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '40kyrOyA', '8430784'), + (682, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '40kyrOyA', '8430799'), + (682, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '40kyrOyA', '8430800'), + (682, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '40kyrOyA', '8430801'), + (682, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '40kyrOyA', '8438709'), + (682, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '40kyrOyA', '8457738'), + (682, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '40kyrOyA', '8459566'), + (682, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '40kyrOyA', '8459567'), + (682, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '40kyrOyA', '8461032'), + (682, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '40kyrOyA', '8477877'), + (682, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '40kyrOyA', '8485688'), + (682, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '40kyrOyA', '8490587'), + (682, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '40kyrOyA', '8493552'), + (682, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '40kyrOyA', '8493553'), + (682, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '40kyrOyA', '8493554'), + (682, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '40kyrOyA', '8493555'), + (682, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '40kyrOyA', '8493556'), + (682, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '40kyrOyA', '8493557'), + (682, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '40kyrOyA', '8493558'), + (682, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '40kyrOyA', '8493559'), + (682, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '40kyrOyA', '8493560'), + (682, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '40kyrOyA', '8493561'), + (682, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '40kyrOyA', '8493572'), + (682, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '40kyrOyA', '8540725'), + (682, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '40kyrOyA', '8555421'), + (683, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mGGlGakm', '6472181'), + (683, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mGGlGakm', '6482693'), + (683, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mGGlGakm', '6484200'), + (683, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mGGlGakm', '6484680'), + (683, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mGGlGakm', '6507741'), + (683, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mGGlGakm', '6514659'), + (683, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mGGlGakm', '6514660'), + (683, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mGGlGakm', '6519103'), + (683, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mGGlGakm', '6535681'), + (683, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mGGlGakm', '6545076'), + (683, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mGGlGakm', '6584747'), + (683, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mGGlGakm', '6587097'), + (683, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mGGlGakm', '6609022'), + (683, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mGGlGakm', '6632757'), + (683, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mGGlGakm', '6644187'), + (683, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mGGlGakm', '6648951'), + (683, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mGGlGakm', '6648952'), + (683, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mGGlGakm', '6651141'), + (683, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mGGlGakm', '6655401'), + (683, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mGGlGakm', '6661585'), + (683, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mGGlGakm', '6661588'), + (683, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mGGlGakm', '6661589'), + (683, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mGGlGakm', '6699906'), + (683, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mGGlGakm', '6699913'), + (683, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mGGlGakm', '6701109'), + (683, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mGGlGakm', '6705219'), + (683, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mGGlGakm', '6710153'), + (683, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mGGlGakm', '6711552'), + (683, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mGGlGakm', '6711553'), + (683, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mGGlGakm', '6722688'), + (683, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mGGlGakm', '6730620'), + (683, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mGGlGakm', '6730642'), + (683, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mGGlGakm', '6740364'), + (683, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mGGlGakm', '6743829'), + (683, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mGGlGakm', '7030380'), + (683, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mGGlGakm', '7033677'), + (683, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mGGlGakm', '7035415'), + (683, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mGGlGakm', '7044715'), + (683, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mGGlGakm', '7050318'), + (683, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mGGlGakm', '7050319'), + (683, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mGGlGakm', '7050322'), + (683, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mGGlGakm', '7057804'), + (683, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mGGlGakm', '7072824'), + (683, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mGGlGakm', '7074348'), + (683, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mGGlGakm', '7089267'), + (683, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mGGlGakm', '7098747'), + (683, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mGGlGakm', '7113468'), + (683, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mGGlGakm', '7114856'), + (683, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mGGlGakm', '7114951'), + (683, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mGGlGakm', '7114955'), + (683, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mGGlGakm', '7114956'), + (683, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mGGlGakm', '7153615'), + (683, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mGGlGakm', '7159484'), + (683, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mGGlGakm', '7178446'), + (684, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '2d27Z2Pm', '3087265'), + (684, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', '2d27Z2Pm', '3087266'), + (684, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', '2d27Z2Pm', '3087267'), + (684, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', '2d27Z2Pm', '3087268'), + (684, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', '2d27Z2Pm', '3129980'), + (684, 273, 'not_attending', '2020-08-03 17:20:14', '2025-12-17 19:47:56', '2d27Z2Pm', '3162006'), + (684, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '2d27Z2Pm', '3163442'), + (684, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '2d27Z2Pm', '3169555'), + (684, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', '2d27Z2Pm', '3169556'), + (684, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '2d27Z2Pm', '3172832'), + (684, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '2d27Z2Pm', '3172833'), + (684, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '2d27Z2Pm', '3172834'), + (684, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '2d27Z2Pm', '3172876'), + (684, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', '2d27Z2Pm', '3186057'), + (684, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '2d27Z2Pm', '3191735'), + (684, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', '2d27Z2Pm', '3193885'), + (684, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '2d27Z2Pm', '3200209'), + (684, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', '2d27Z2Pm', '3200495'), + (684, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '2d27Z2Pm', '3217037'), + (684, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '2d27Z2Pm', '3218510'), + (684, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d27Z2Pm', '6045684'), + (685, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'QdJ6n0wd', '3468125'), + (685, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'QdJ6n0wd', '3470303'), + (685, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'QdJ6n0wd', '3470305'), + (685, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'QdJ6n0wd', '3470991'), + (685, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'QdJ6n0wd', '3517815'), + (685, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'QdJ6n0wd', '3517816'), + (685, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'QdJ6n0wd', '3523941'), + (685, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'QdJ6n0wd', '3533850'), + (685, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'QdJ6n0wd', '3536632'), + (685, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'QdJ6n0wd', '3536656'), + (685, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'QdJ6n0wd', '3539916'), + (685, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'QdJ6n0wd', '3539917'), + (685, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'QdJ6n0wd', '3539918'), + (685, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539919'), + (685, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539920'), + (685, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539921'), + (685, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539922'), + (685, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'QdJ6n0wd', '3539923'), + (685, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'QdJ6n0wd', '3539927'), + (685, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'QdJ6n0wd', '3582734'), + (685, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'QdJ6n0wd', '3619523'), + (685, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ6n0wd', '6045684'), + (686, 1182, 'attending', '2022-03-11 03:54:18', '2025-12-17 19:47:33', 'dJZMZVod', '4736504'), + (686, 1251, 'maybe', '2022-03-11 00:47:25', '2025-12-17 19:47:33', 'dJZMZVod', '5128466'), + (686, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'dJZMZVod', '5132533'), + (686, 1271, 'attending', '2022-03-18 14:23:12', '2025-12-17 19:47:25', 'dJZMZVod', '5181648'), + (686, 1272, 'attending', '2022-03-17 15:08:47', '2025-12-17 19:47:25', 'dJZMZVod', '5186582'), + (686, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dJZMZVod', '5186583'), + (686, 1274, 'attending', '2022-04-02 14:49:52', '2025-12-17 19:47:26', 'dJZMZVod', '5186585'), + (686, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dJZMZVod', '5190437'), + (686, 1284, 'attending', '2022-04-16 17:17:12', '2025-12-17 19:47:27', 'dJZMZVod', '5195095'), + (686, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dJZMZVod', '5215989'), + (686, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dJZMZVod', '5223686'), + (686, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dJZMZVod', '5227432'), + (686, 1346, 'attending', '2022-04-22 20:24:25', '2025-12-17 19:47:27', 'dJZMZVod', '5247467'), + (686, 1362, 'not_attending', '2022-04-30 19:45:58', '2025-12-17 19:47:28', 'dJZMZVod', '5260800'), + (686, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dJZMZVod', '5269930'), + (686, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dJZMZVod', '5271448'), + (686, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dJZMZVod', '5271449'), + (686, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dJZMZVod', '5276469'), + (686, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dJZMZVod', '5278159'), + (686, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dJZMZVod', '5363695'), + (686, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dJZMZVod', '5365960'), + (686, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dJZMZVod', '5368973'), + (686, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dJZMZVod', '5378247'), + (686, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dJZMZVod', '5389605'), + (686, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dJZMZVod', '5397265'), + (686, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dJZMZVod', '5403967'), + (686, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dJZMZVod', '5404786'), + (686, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dJZMZVod', '5405203'), + (686, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dJZMZVod', '5408794'), + (686, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dJZMZVod', '5411699'), + (686, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dJZMZVod', '5412550'), + (686, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dJZMZVod', '5415046'), + (686, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dJZMZVod', '5422086'), + (686, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dJZMZVod', '5422406'), + (686, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dJZMZVod', '5424565'), + (686, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dJZMZVod', '5426882'), + (686, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dJZMZVod', '5427083'), + (686, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dJZMZVod', '5441125'), + (686, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dJZMZVod', '5441126'), + (686, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dJZMZVod', '5441128'), + (686, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dJZMZVod', '5446643'), + (686, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dJZMZVod', '5453325'), + (686, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dJZMZVod', '5454516'), + (686, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dJZMZVod', '5454605'), + (686, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dJZMZVod', '5455037'), + (686, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dJZMZVod', '5461278'), + (686, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dJZMZVod', '5469480'), + (686, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dJZMZVod', '5471073'), + (686, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dJZMZVod', '5474663'), + (686, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dJZMZVod', '5482022'), + (686, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dJZMZVod', '5482793'), + (686, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dJZMZVod', '5488912'), + (686, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dJZMZVod', '5492192'), + (686, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dJZMZVod', '5493139'), + (686, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dJZMZVod', '5493200'), + (686, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dJZMZVod', '5502188'), + (686, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dJZMZVod', '5512862'), + (686, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dJZMZVod', '5513985'), + (686, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJZMZVod', '6045684'), + (687, 401, 'not_attending', '2021-05-12 00:49:50', '2025-12-17 19:47:46', 'EdVGlG6m', '3236456'), + (687, 646, 'not_attending', '2021-05-15 16:16:07', '2025-12-17 19:47:46', 'EdVGlG6m', '3539921'), + (687, 647, 'not_attending', '2021-05-21 15:13:04', '2025-12-17 19:47:46', 'EdVGlG6m', '3539922'), + (687, 648, 'not_attending', '2021-05-29 18:32:51', '2025-12-17 19:47:47', 'EdVGlG6m', '3539923'), + (687, 743, 'attending', '2021-06-25 21:34:01', '2025-12-17 19:47:38', 'EdVGlG6m', '3680623'), + (687, 760, 'not_attending', '2021-05-14 16:56:38', '2025-12-17 19:47:46', 'EdVGlG6m', '3716035'), + (687, 785, 'not_attending', '2021-05-15 16:16:23', '2025-12-17 19:47:46', 'EdVGlG6m', '3779779'), + (687, 792, 'attending', '2021-05-16 03:44:52', '2025-12-17 19:47:46', 'EdVGlG6m', '3793156'), + (687, 798, 'not_attending', '2021-05-20 13:16:20', '2025-12-17 19:47:46', 'EdVGlG6m', '3796262'), + (687, 801, 'attending', '2021-05-13 22:54:56', '2025-12-17 19:47:46', 'EdVGlG6m', '3800910'), + (687, 802, 'attending', '2021-05-12 00:49:44', '2025-12-17 19:47:46', 'EdVGlG6m', '3803310'), + (687, 803, 'not_attending', '2021-05-19 22:52:54', '2025-12-17 19:47:46', 'EdVGlG6m', '3804665'), + (687, 819, 'not_attending', '2021-05-30 22:26:56', '2025-12-17 19:47:47', 'EdVGlG6m', '3833017'), + (687, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'EdVGlG6m', '3974109'), + (687, 827, 'attending', '2021-06-05 19:28:37', '2025-12-17 19:47:47', 'EdVGlG6m', '3975311'), + (687, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'EdVGlG6m', '3975312'), + (687, 833, 'not_attending', '2021-06-11 18:31:54', '2025-12-17 19:47:47', 'EdVGlG6m', '3990438'), + (687, 838, 'maybe', '2021-06-09 02:10:16', '2025-12-17 19:47:47', 'EdVGlG6m', '3994992'), + (687, 840, 'not_attending', '2021-06-14 01:37:42', '2025-12-17 19:47:47', 'EdVGlG6m', '4007283'), + (687, 841, 'maybe', '2021-06-15 18:33:35', '2025-12-17 19:47:48', 'EdVGlG6m', '4007434'), + (687, 844, 'attending', '2021-06-21 22:21:29', '2025-12-17 19:47:38', 'EdVGlG6m', '4014338'), + (687, 845, 'not_attending', '2021-06-27 04:05:17', '2025-12-17 19:47:38', 'EdVGlG6m', '4015717'), + (687, 846, 'attending', '2021-07-07 19:25:35', '2025-12-17 19:47:39', 'EdVGlG6m', '4015718'), + (687, 850, 'maybe', '2021-08-25 17:56:16', '2025-12-17 19:47:42', 'EdVGlG6m', '4015722'), + (687, 866, 'attending', '2021-06-20 19:05:37', '2025-12-17 19:47:38', 'EdVGlG6m', '4020424'), + (687, 867, 'not_attending', '2021-06-25 18:41:37', '2025-12-17 19:47:38', 'EdVGlG6m', '4021848'), + (687, 868, 'not_attending', '2021-06-18 14:07:34', '2025-12-17 19:47:48', 'EdVGlG6m', '4022012'), + (687, 869, 'attending', '2021-06-27 04:05:15', '2025-12-17 19:47:38', 'EdVGlG6m', '4136744'), + (687, 870, 'not_attending', '2021-06-30 07:22:31', '2025-12-17 19:47:39', 'EdVGlG6m', '4136937'), + (687, 871, 'not_attending', '2021-07-10 13:12:04', '2025-12-17 19:47:39', 'EdVGlG6m', '4136938'), + (687, 872, 'maybe', '2021-06-21 22:07:31', '2025-12-17 19:47:40', 'EdVGlG6m', '4136947'), + (687, 874, 'attending', '2021-06-24 21:53:14', '2025-12-17 19:47:38', 'EdVGlG6m', '4139815'), + (687, 879, 'maybe', '2021-06-28 20:16:37', '2025-12-17 19:47:38', 'EdVGlG6m', '4147806'), + (687, 882, 'attending', '2021-06-25 21:34:15', '2025-12-17 19:47:38', 'EdVGlG6m', '4207630'), + (687, 883, 'attending', '2021-06-23 02:48:10', '2025-12-17 19:47:38', 'EdVGlG6m', '4209121'), + (687, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'EdVGlG6m', '4210314'), + (687, 885, 'attending', '2021-06-27 22:09:53', '2025-12-17 19:47:38', 'EdVGlG6m', '4222370'), + (687, 887, 'not_attending', '2021-07-17 22:47:34', '2025-12-17 19:47:39', 'EdVGlG6m', '4225444'), + (687, 897, 'not_attending', '2021-06-28 17:11:47', '2025-12-17 19:47:38', 'EdVGlG6m', '4232132'), + (687, 899, 'not_attending', '2021-07-05 21:23:36', '2025-12-17 19:47:39', 'EdVGlG6m', '4239259'), + (687, 900, 'not_attending', '2021-07-24 19:35:36', '2025-12-17 19:47:40', 'EdVGlG6m', '4240316'), + (687, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'EdVGlG6m', '4240317'), + (687, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'EdVGlG6m', '4240318'), + (687, 903, 'attending', '2021-08-13 20:57:23', '2025-12-17 19:47:42', 'EdVGlG6m', '4240320'), + (687, 905, 'attending', '2021-07-07 22:07:42', '2025-12-17 19:47:39', 'EdVGlG6m', '4250163'), + (687, 919, 'not_attending', '2021-07-17 22:46:27', '2025-12-17 19:47:39', 'EdVGlG6m', '4275957'), + (687, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'EdVGlG6m', '4277819'), + (687, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'EdVGlG6m', '4301723'), + (687, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'EdVGlG6m', '4302093'), + (687, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'EdVGlG6m', '4304151'), + (687, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'EdVGlG6m', '4356801'), + (687, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'EdVGlG6m', '4366186'), + (687, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'EdVGlG6m', '4366187'), + (687, 986, 'not_attending', '2021-08-22 23:08:16', '2025-12-17 19:47:42', 'EdVGlG6m', '4394209'), + (687, 987, 'not_attending', '2021-09-01 22:45:50', '2025-12-17 19:47:43', 'EdVGlG6m', '4402634'), + (687, 990, 'attending', '2021-09-02 23:48:05', '2025-12-17 19:47:43', 'EdVGlG6m', '4420735'), + (687, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'EdVGlG6m', '4420738'), + (687, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'EdVGlG6m', '4420739'), + (687, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'EdVGlG6m', '4420741'), + (687, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'EdVGlG6m', '4420744'), + (687, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'EdVGlG6m', '4420747'), + (687, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'EdVGlG6m', '4420748'), + (687, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'EdVGlG6m', '4420749'), + (687, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'EdVGlG6m', '4461883'), + (687, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVGlG6m', '6045684'), + (688, 406, 'not_attending', '2021-04-21 02:39:31', '2025-12-17 19:47:44', 'ndaobMlA', '3236464'), + (688, 644, 'attending', '2021-04-22 07:04:59', '2025-12-17 19:47:45', 'ndaobMlA', '3539919'), + (688, 645, 'attending', '2021-04-21 02:43:15', '2025-12-17 19:47:46', 'ndaobMlA', '3539920'), + (688, 646, 'not_attending', '2021-05-15 19:12:48', '2025-12-17 19:47:46', 'ndaobMlA', '3539921'), + (688, 647, 'attending', '2021-04-23 15:45:14', '2025-12-17 19:47:46', 'ndaobMlA', '3539922'), + (688, 648, 'attending', '2021-04-23 15:45:18', '2025-12-17 19:47:47', 'ndaobMlA', '3539923'), + (688, 700, 'not_attending', '2021-04-21 02:39:23', '2025-12-17 19:47:44', 'ndaobMlA', '3575725'), + (688, 707, 'attending', '2021-04-22 21:09:55', '2025-12-17 19:47:46', 'ndaobMlA', '3583262'), + (688, 724, 'attending', '2021-04-23 15:44:09', '2025-12-17 19:47:46', 'ndaobMlA', '3661369'), + (688, 725, 'not_attending', '2021-05-23 20:19:39', '2025-12-17 19:47:47', 'ndaobMlA', '3661372'), + (688, 756, 'not_attending', '2021-04-26 15:45:10', '2025-12-17 19:47:46', 'ndaobMlA', '3704795'), + (688, 761, 'not_attending', '2021-05-14 23:04:02', '2025-12-17 19:47:46', 'ndaobMlA', '3716041'), + (688, 767, 'not_attending', '2021-05-02 18:32:39', '2025-12-17 19:47:46', 'ndaobMlA', '3722476'), + (688, 771, 'not_attending', '2021-04-29 23:14:08', '2025-12-17 19:47:46', 'ndaobMlA', '3726420'), + (688, 773, 'not_attending', '2021-04-23 15:42:10', '2025-12-17 19:47:46', 'ndaobMlA', '3729399'), + (688, 774, 'not_attending', '2021-04-21 13:08:03', '2025-12-17 19:47:45', 'ndaobMlA', '3730212'), + (688, 775, 'attending', '2021-04-22 06:56:23', '2025-12-17 19:47:45', 'ndaobMlA', '3731062'), + (688, 776, 'not_attending', '2021-04-25 14:38:50', '2025-12-17 19:47:46', 'ndaobMlA', '3733455'), + (688, 779, 'attending', '2021-05-03 15:25:42', '2025-12-17 19:47:46', 'ndaobMlA', '3757118'), + (688, 781, 'attending', '2021-04-29 01:46:04', '2025-12-17 19:47:46', 'ndaobMlA', '3760130'), + (688, 782, 'maybe', '2021-05-03 15:25:38', '2025-12-17 19:47:46', 'ndaobMlA', '3761843'), + (688, 788, 'attending', '2021-05-07 16:54:24', '2025-12-17 19:47:46', 'ndaobMlA', '3781975'), + (688, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ndaobMlA', '3793156'), + (688, 805, 'maybe', '2021-06-13 20:44:57', '2025-12-17 19:47:47', 'ndaobMlA', '3804777'), + (688, 815, 'maybe', '2021-05-28 22:45:33', '2025-12-17 19:47:47', 'ndaobMlA', '3818136'), + (688, 823, 'attending', '2021-06-18 20:23:01', '2025-12-17 19:47:48', 'ndaobMlA', '3974109'), + (688, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ndaobMlA', '3975311'), + (688, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ndaobMlA', '3975312'), + (688, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ndaobMlA', '3994992'), + (688, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ndaobMlA', '4014338'), + (688, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ndaobMlA', '4021848'), + (688, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ndaobMlA', '4136744'), + (688, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ndaobMlA', '4136937'), + (688, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ndaobMlA', '4136938'), + (688, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndaobMlA', '4136947'), + (688, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndaobMlA', '4210314'), + (688, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndaobMlA', '4225444'), + (688, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndaobMlA', '4239259'), + (688, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ndaobMlA', '4240316'), + (688, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ndaobMlA', '4240317'), + (688, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndaobMlA', '4240318'), + (688, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ndaobMlA', '4240320'), + (688, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndaobMlA', '4250163'), + (688, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndaobMlA', '4275957'), + (688, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndaobMlA', '4277819'), + (688, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndaobMlA', '4301723'), + (688, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ndaobMlA', '4302093'), + (688, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndaobMlA', '4304151'), + (688, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndaobMlA', '4345519'), + (688, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndaobMlA', '4356801'), + (688, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndaobMlA', '4358025'), + (688, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ndaobMlA', '4366186'), + (688, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndaobMlA', '4366187'), + (688, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndaobMlA', '4402823'), + (688, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ndaobMlA', '4420735'), + (688, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ndaobMlA', '4420738'), + (688, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndaobMlA', '4420739'), + (688, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndaobMlA', '4420741'), + (688, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndaobMlA', '4420744'), + (688, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndaobMlA', '4420747'), + (688, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndaobMlA', '4420748'), + (688, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndaobMlA', '4420749'), + (688, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndaobMlA', '4461883'), + (688, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndaobMlA', '4508342'), + (688, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndaobMlA', '4568602'), + (688, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndaobMlA', '4572153'), + (688, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ndaobMlA', '4585962'), + (688, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'ndaobMlA', '4596356'), + (688, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ndaobMlA', '4598860'), + (688, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ndaobMlA', '4598861'), + (688, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ndaobMlA', '4602797'), + (688, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ndaobMlA', '4637896'), + (688, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndaobMlA', '4642994'), + (688, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ndaobMlA', '4642995'), + (688, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ndaobMlA', '4642996'), + (688, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ndaobMlA', '4642997'), + (688, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ndaobMlA', '4645687'), + (688, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ndaobMlA', '4645698'), + (688, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndaobMlA', '4645704'), + (688, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ndaobMlA', '4645705'), + (688, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ndaobMlA', '4668385'), + (688, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndaobMlA', '4694407'), + (688, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ndaobMlA', '4736497'), + (688, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ndaobMlA', '4736499'), + (688, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndaobMlA', '4736500'), + (688, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ndaobMlA', '4736503'), + (688, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ndaobMlA', '4736504'), + (688, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndaobMlA', '4746789'), + (688, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ndaobMlA', '4753929'), + (688, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndaobMlA', '5038850'), + (688, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ndaobMlA', '5045826'), + (688, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndaobMlA', '5132533'), + (688, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ndaobMlA', '5186582'), + (688, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ndaobMlA', '5186583'), + (688, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ndaobMlA', '5186585'), + (688, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ndaobMlA', '5190437'), + (688, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndaobMlA', '5215989'), + (688, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaobMlA', '6045684'), + (689, 258, 'not_attending', '2021-06-01 01:29:28', '2025-12-17 19:47:47', 'x4oYk6Ym', '3149489'), + (689, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'x4oYk6Ym', '3149491'), + (689, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'x4oYk6Ym', '3236450'), + (689, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'x4oYk6Ym', '3975311'), + (689, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'x4oYk6Ym', '3994992'), + (689, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'x4oYk6Ym', '4014338'), + (689, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oYk6Ym', '6045684'), + (690, 568, 'attending', '2021-01-30 23:04:27', '2025-12-17 19:47:50', 'kdKoePBd', '3430267'), + (690, 574, 'attending', '2021-02-28 04:17:41', '2025-12-17 19:47:51', 'kdKoePBd', '3435543'), + (690, 579, 'attending', '2021-01-31 04:11:32', '2025-12-17 19:47:50', 'kdKoePBd', '3440978'), + (690, 594, 'not_attending', '2021-03-02 01:33:23', '2025-12-17 19:47:51', 'kdKoePBd', '3467759'), + (690, 597, 'maybe', '2021-03-14 04:28:34', '2025-12-17 19:47:51', 'kdKoePBd', '3467764'), + (690, 602, 'not_attending', '2021-02-20 21:46:20', '2025-12-17 19:47:50', 'kdKoePBd', '3470303'), + (690, 603, 'attending', '2021-02-20 23:56:52', '2025-12-17 19:47:50', 'kdKoePBd', '3470304'), + (690, 604, 'maybe', '2021-02-27 23:54:00', '2025-12-17 19:47:50', 'kdKoePBd', '3470305'), + (690, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdKoePBd', '3470991'), + (690, 620, 'attending', '2021-02-23 19:03:41', '2025-12-17 19:47:50', 'kdKoePBd', '3513703'), + (690, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdKoePBd', '3517815'), + (690, 622, 'attending', '2021-03-14 00:26:05', '2025-12-17 19:47:51', 'kdKoePBd', '3517816'), + (690, 623, 'attending', '2021-02-26 04:32:55', '2025-12-17 19:47:50', 'kdKoePBd', '3523941'), + (690, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKoePBd', '3533850'), + (690, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKoePBd', '3536632'), + (690, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKoePBd', '3536656'), + (690, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdKoePBd', '3539916'), + (690, 642, 'attending', '2021-04-09 12:05:39', '2025-12-17 19:47:44', 'kdKoePBd', '3539917'), + (690, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKoePBd', '3539918'), + (690, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKoePBd', '3539919'), + (690, 645, 'attending', '2021-05-07 18:06:40', '2025-12-17 19:47:46', 'kdKoePBd', '3539920'), + (690, 646, 'not_attending', '2021-05-14 20:16:20', '2025-12-17 19:47:46', 'kdKoePBd', '3539921'), + (690, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKoePBd', '3539922'), + (690, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKoePBd', '3539923'), + (690, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdKoePBd', '3539927'), + (690, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKoePBd', '3582734'), + (690, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKoePBd', '3583262'), + (690, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKoePBd', '3619523'), + (690, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKoePBd', '3661369'), + (690, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKoePBd', '3674262'), + (690, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKoePBd', '3677402'), + (690, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdKoePBd', '3730212'), + (690, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdKoePBd', '3793156'), + (690, 823, 'attending', '2021-06-19 20:28:49', '2025-12-17 19:47:48', 'kdKoePBd', '3974109'), + (690, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdKoePBd', '3975311'), + (690, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKoePBd', '3975312'), + (690, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKoePBd', '3994992'), + (690, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKoePBd', '4014338'), + (690, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdKoePBd', '4021848'), + (690, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKoePBd', '4136744'), + (690, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdKoePBd', '4136937'), + (690, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdKoePBd', '4136938'), + (690, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdKoePBd', '4136947'), + (690, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdKoePBd', '4210314'), + (690, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdKoePBd', '4225444'), + (690, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdKoePBd', '4239259'), + (690, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdKoePBd', '4240316'), + (690, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdKoePBd', '4240317'), + (690, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdKoePBd', '4240318'), + (690, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdKoePBd', '4240320'), + (690, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdKoePBd', '4250163'), + (690, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdKoePBd', '4275957'), + (690, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdKoePBd', '4277819'), + (690, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdKoePBd', '4301723'), + (690, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'kdKoePBd', '4302093'), + (690, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdKoePBd', '4304151'), + (690, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdKoePBd', '4356801'), + (690, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdKoePBd', '4366186'), + (690, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdKoePBd', '4366187'), + (690, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdKoePBd', '4420735'), + (690, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdKoePBd', '4420738'), + (690, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdKoePBd', '4420739'), + (690, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'kdKoePBd', '4420741'), + (690, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdKoePBd', '4420744'), + (690, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdKoePBd', '4420747'), + (690, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdKoePBd', '4420748'), + (690, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdKoePBd', '4420749'), + (690, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKoePBd', '4461883'), + (690, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKoePBd', '4508342'), + (690, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKoePBd', '4568602'), + (690, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKoePBd', '4572153'), + (690, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'kdKoePBd', '4585962'), + (690, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdKoePBd', '4596356'), + (690, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKoePBd', '4598860'), + (690, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKoePBd', '4598861'), + (690, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKoePBd', '4602797'), + (690, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKoePBd', '4637896'), + (690, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKoePBd', '4642994'), + (690, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'kdKoePBd', '4642995'), + (690, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKoePBd', '4642996'), + (690, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKoePBd', '4642997'), + (690, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKoePBd', '4645687'), + (690, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKoePBd', '4645698'), + (690, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdKoePBd', '4645704'), + (690, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKoePBd', '4645705'), + (690, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKoePBd', '4668385'), + (690, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKoePBd', '4694407'), + (690, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKoePBd', '4736497'), + (690, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKoePBd', '4736499'), + (690, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKoePBd', '4736500'), + (690, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKoePBd', '4736503'), + (690, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKoePBd', '4736504'), + (690, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKoePBd', '4746789'), + (690, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdKoePBd', '4753929'), + (690, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKoePBd', '5038850'), + (690, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKoePBd', '5045826'), + (690, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKoePBd', '5132533'), + (690, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdKoePBd', '5186582'), + (690, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdKoePBd', '5186583'), + (690, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdKoePBd', '5186585'), + (690, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdKoePBd', '5190437'), + (690, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdKoePBd', '5195095'), + (690, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKoePBd', '5215989'), + (690, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdKoePBd', '5223686'), + (690, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdKoePBd', '5247467'), + (690, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdKoePBd', '5260800'), + (690, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdKoePBd', '5269930'), + (690, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdKoePBd', '5271448'), + (690, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'kdKoePBd', '5271449'), + (690, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdKoePBd', '5278159'), + (690, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdKoePBd', '5363695'), + (690, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdKoePBd', '5365960'), + (690, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdKoePBd', '5378247'), + (690, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'kdKoePBd', '5389605'), + (690, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdKoePBd', '5397265'), + (690, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdKoePBd', '5404786'), + (690, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdKoePBd', '5405203'), + (690, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdKoePBd', '5412550'), + (690, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdKoePBd', '5415046'), + (690, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdKoePBd', '5422086'), + (690, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdKoePBd', '5422406'), + (690, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdKoePBd', '5424565'), + (690, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdKoePBd', '5426882'), + (690, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdKoePBd', '5441125'), + (690, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdKoePBd', '5441126'), + (690, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdKoePBd', '5441128'), + (690, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdKoePBd', '5441131'), + (690, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdKoePBd', '5441132'), + (690, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdKoePBd', '5453325'), + (690, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdKoePBd', '5454516'), + (690, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdKoePBd', '5454605'), + (690, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdKoePBd', '5455037'), + (690, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdKoePBd', '5461278'), + (690, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdKoePBd', '5469480'), + (690, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdKoePBd', '5474663'), + (690, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdKoePBd', '5482022'), + (690, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdKoePBd', '5488912'), + (690, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdKoePBd', '5492192'), + (690, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdKoePBd', '5493139'), + (690, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdKoePBd', '5493200'), + (690, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdKoePBd', '5502188'), + (690, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdKoePBd', '5505059'), + (690, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdKoePBd', '5509055'), + (690, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdKoePBd', '5512862'), + (690, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdKoePBd', '5513985'), + (690, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdKoePBd', '5519981'), + (690, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdKoePBd', '5522550'), + (690, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdKoePBd', '5534683'), + (690, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdKoePBd', '5537735'), + (690, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdKoePBd', '5540859'), + (690, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdKoePBd', '5546619'), + (690, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdKoePBd', '5557747'), + (690, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdKoePBd', '5560255'), + (690, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdKoePBd', '5562906'), + (690, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdKoePBd', '5600604'), + (690, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdKoePBd', '5605544'), + (690, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdKoePBd', '5630960'), + (690, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdKoePBd', '5630961'), + (690, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdKoePBd', '5630962'), + (690, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdKoePBd', '5630966'), + (690, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdKoePBd', '5630967'), + (690, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdKoePBd', '5630968'), + (690, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdKoePBd', '5635406'), + (690, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdKoePBd', '5638765'), + (690, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdKoePBd', '5640097'), + (690, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdKoePBd', '5640843'), + (690, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdKoePBd', '5641521'), + (690, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdKoePBd', '5642818'), + (690, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdKoePBd', '5652395'), + (690, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdKoePBd', '5670445'), + (690, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdKoePBd', '5671637'), + (690, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdKoePBd', '5672329'), + (690, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdKoePBd', '5674057'), + (690, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdKoePBd', '5674060'), + (690, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdKoePBd', '5677461'), + (690, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdKoePBd', '5698046'), + (690, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdKoePBd', '5699760'), + (690, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdKoePBd', '5741601'), + (690, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdKoePBd', '5763458'), + (690, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdKoePBd', '5774172'), + (690, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdKoePBd', '5818247'), + (690, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdKoePBd', '5819471'), + (690, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'kdKoePBd', '5827739'), + (690, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdKoePBd', '5844306'), + (690, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdKoePBd', '5850159'), + (690, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdKoePBd', '5858999'), + (690, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdKoePBd', '5871984'), + (690, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdKoePBd', '5876354'), + (690, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdKoePBd', '5880939'), + (690, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdKoePBd', '5880940'), + (690, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdKoePBd', '5880942'), + (690, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdKoePBd', '5880943'), + (690, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdKoePBd', '5887890'), + (690, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdKoePBd', '5888598'), + (690, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdKoePBd', '5893260'), + (690, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdKoePBd', '5899826'), + (690, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdKoePBd', '5900199'), + (690, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdKoePBd', '5900200'), + (690, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdKoePBd', '5900202'), + (690, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdKoePBd', '5900203'), + (690, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdKoePBd', '5901108'), + (690, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdKoePBd', '5901126'), + (690, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'kdKoePBd', '5901606'), + (690, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdKoePBd', '5909655'), + (690, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdKoePBd', '5910522'), + (690, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdKoePBd', '5910526'), + (690, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdKoePBd', '5910528'), + (690, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdKoePBd', '5916219'), + (690, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdKoePBd', '5936234'), + (690, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdKoePBd', '5958351'), + (690, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdKoePBd', '5959751'), + (690, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdKoePBd', '5959755'), + (690, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdKoePBd', '5960055'), + (690, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdKoePBd', '5961684'), + (690, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdKoePBd', '5962132'), + (690, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdKoePBd', '5962133'), + (690, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdKoePBd', '5962134'), + (690, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdKoePBd', '5962317'), + (690, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdKoePBd', '5962318'), + (690, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'kdKoePBd', '5965933'), + (690, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdKoePBd', '5967014'), + (690, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdKoePBd', '5972815'), + (690, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdKoePBd', '5974016'), + (690, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdKoePBd', '5981515'), + (690, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdKoePBd', '5993516'), + (690, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdKoePBd', '5998939'), + (690, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdKoePBd', '6028191'), + (690, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdKoePBd', '6040066'), + (690, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdKoePBd', '6042717'), + (690, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdKoePBd', '6044838'), + (690, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdKoePBd', '6044839'), + (690, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKoePBd', '6045684'), + (690, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdKoePBd', '6050104'), + (690, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdKoePBd', '6053195'), + (690, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdKoePBd', '6053198'), + (690, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdKoePBd', '6056085'), + (690, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdKoePBd', '6056916'), + (690, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdKoePBd', '6059290'), + (690, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdKoePBd', '6060328'), + (690, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdKoePBd', '6061037'), + (690, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdKoePBd', '6061039'), + (690, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdKoePBd', '6067245'), + (690, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdKoePBd', '6068094'), + (690, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdKoePBd', '6068252'), + (690, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdKoePBd', '6068253'), + (690, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdKoePBd', '6068254'), + (690, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdKoePBd', '6068280'), + (690, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdKoePBd', '6069093'), + (690, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdKoePBd', '6072528'), + (690, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdKoePBd', '6079840'), + (690, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdKoePBd', '6083398'), + (690, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdKoePBd', '6093504'), + (690, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdKoePBd', '6097414'), + (690, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdKoePBd', '6097442'), + (690, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdKoePBd', '6097684'), + (690, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdKoePBd', '6098762'), + (690, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdKoePBd', '6101361'), + (690, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdKoePBd', '6101362'), + (690, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdKoePBd', '6107314'), + (690, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdKoePBd', '6120034'), + (690, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'kdKoePBd', '6136733'), + (690, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdKoePBd', '6137989'), + (690, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdKoePBd', '6150864'), + (690, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdKoePBd', '6155491'), + (690, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdKoePBd', '6164417'), + (690, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdKoePBd', '6166388'), + (690, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdKoePBd', '6176439'), + (690, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdKoePBd', '6182410'), + (690, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdKoePBd', '6185812'), + (690, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdKoePBd', '6187651'), + (690, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdKoePBd', '6187963'), + (690, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdKoePBd', '6187964'), + (690, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdKoePBd', '6187966'), + (690, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdKoePBd', '6187967'), + (690, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdKoePBd', '6187969'), + (690, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdKoePBd', '6334878'), + (690, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdKoePBd', '6337236'), + (690, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdKoePBd', '6337970'), + (690, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdKoePBd', '6338308'), + (690, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdKoePBd', '6341710'), + (690, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdKoePBd', '6342044'), + (690, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdKoePBd', '6342298'), + (690, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdKoePBd', '6343294'), + (690, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdKoePBd', '6347034'), + (690, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdKoePBd', '6347056'), + (690, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdKoePBd', '6353830'), + (690, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdKoePBd', '6353831'), + (690, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdKoePBd', '6357867'), + (690, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdKoePBd', '6358652'), + (690, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdKoePBd', '6361709'), + (690, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdKoePBd', '6361710'), + (690, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdKoePBd', '6361711'), + (690, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdKoePBd', '6361712'), + (690, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdKoePBd', '6361713'), + (690, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdKoePBd', '6382573'), + (690, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdKoePBd', '6388604'), + (690, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdKoePBd', '6394629'), + (690, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdKoePBd', '6394631'), + (690, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdKoePBd', '6440863'), + (690, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdKoePBd', '6445440'), + (690, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdKoePBd', '6453951'), + (690, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdKoePBd', '6461696'), + (690, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdKoePBd', '6462129'), + (690, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdKoePBd', '6463218'), + (690, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdKoePBd', '6472181'), + (690, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdKoePBd', '6482693'), + (690, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdKoePBd', '6484200'), + (690, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdKoePBd', '6484680'), + (690, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdKoePBd', '6507741'), + (690, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdKoePBd', '6514659'), + (690, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdKoePBd', '6514660'), + (690, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdKoePBd', '6519103'), + (690, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdKoePBd', '6535681'), + (690, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdKoePBd', '6584747'), + (690, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdKoePBd', '6587097'), + (690, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdKoePBd', '6609022'), + (690, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'kdKoePBd', '6632757'), + (690, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdKoePBd', '6644187'), + (690, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdKoePBd', '6648951'), + (690, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdKoePBd', '6648952'), + (690, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdKoePBd', '6655401'), + (690, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdKoePBd', '6661585'), + (690, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdKoePBd', '6661588'), + (690, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdKoePBd', '6661589'), + (690, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdKoePBd', '6699906'), + (690, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdKoePBd', '6699913'), + (690, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdKoePBd', '6701109'), + (690, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdKoePBd', '6705219'), + (690, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdKoePBd', '6710153'), + (690, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdKoePBd', '6711552'), + (690, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdKoePBd', '6711553'), + (690, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdKoePBd', '6722688'), + (690, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdKoePBd', '6730620'), + (690, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdKoePBd', '6740364'), + (690, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdKoePBd', '6743829'), + (690, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdKoePBd', '7030380'), + (690, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'kdKoePBd', '7033677'), + (690, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdKoePBd', '7044715'), + (690, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdKoePBd', '7050318'), + (690, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdKoePBd', '7050319'), + (690, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdKoePBd', '7050322'), + (690, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdKoePBd', '7057804'), + (690, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdKoePBd', '7072824'), + (690, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdKoePBd', '7074348'), + (690, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdKoePBd', '7074364'), + (690, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdKoePBd', '7089267'), + (690, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdKoePBd', '7098747'), + (690, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdKoePBd', '7113468'), + (690, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdKoePBd', '7114856'), + (690, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdKoePBd', '7114951'), + (690, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdKoePBd', '7114955'), + (690, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdKoePBd', '7114956'), + (690, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdKoePBd', '7114957'), + (690, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdKoePBd', '7159484'), + (690, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdKoePBd', '7178446'), + (690, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdKoePBd', '7220467'), + (690, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdKoePBd', '7240354'), + (690, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdKoePBd', '7251633'), + (690, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdKoePBd', '7324073'), + (690, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdKoePBd', '7324074'), + (690, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdKoePBd', '7324075'), + (690, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdKoePBd', '7324078'), + (690, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdKoePBd', '7324082'), + (690, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdKoePBd', '7331457'), + (690, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdKoePBd', '7363643'), + (690, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdKoePBd', '7368606'), + (690, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdKoePBd', '7397462'), + (690, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdKoePBd', '7424275'), + (690, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdKoePBd', '7432751'), + (690, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdKoePBd', '7432752'), + (690, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdKoePBd', '7432753'), + (690, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdKoePBd', '7432754'), + (690, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdKoePBd', '7432755'), + (690, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdKoePBd', '7432756'), + (690, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdKoePBd', '7432758'), + (690, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdKoePBd', '7432759'), + (690, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdKoePBd', '7433834'), + (690, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'kdKoePBd', '7470197'), + (690, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdKoePBd', '7685613'), + (690, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdKoePBd', '7688194'), + (690, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdKoePBd', '7688196'), + (690, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdKoePBd', '7688289'), + (690, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdKoePBd', '7692763'), + (690, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdKoePBd', '7697552'), + (690, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdKoePBd', '7699878'), + (690, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdKoePBd', '7704043'), + (690, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdKoePBd', '7712467'), + (690, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdKoePBd', '7713585'), + (690, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdKoePBd', '7713586'), + (690, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdKoePBd', '7738518'), + (690, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdKoePBd', '7750636'), + (690, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdKoePBd', '7796540'), + (690, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdKoePBd', '7796541'), + (690, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdKoePBd', '7796542'), + (690, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdKoePBd', '7825913'), + (690, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdKoePBd', '7826209'), + (690, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdKoePBd', '7834742'), + (690, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'kdKoePBd', '7842108'), + (690, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdKoePBd', '7842902'), + (690, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdKoePBd', '7842903'), + (690, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdKoePBd', '7842904'), + (690, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdKoePBd', '7842905'), + (690, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdKoePBd', '7855719'), + (690, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdKoePBd', '7860683'), + (690, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdKoePBd', '7860684'), + (690, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdKoePBd', '7866095'), + (690, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdKoePBd', '7869170'), + (690, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdKoePBd', '7869188'), + (690, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdKoePBd', '7869201'), + (690, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdKoePBd', '7877465'), + (690, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdKoePBd', '7888250'), + (690, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdKoePBd', '7904777'), + (690, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdKoePBd', '8349164'), + (690, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdKoePBd', '8349545'), + (690, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdKoePBd', '8368028'), + (690, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdKoePBd', '8368029'), + (690, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdKoePBd', '8388462'), + (690, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdKoePBd', '8400273'), + (690, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdKoePBd', '8400275'), + (690, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'kdKoePBd', '8400276'), + (690, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdKoePBd', '8404977'), + (690, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdKoePBd', '8430783'), + (690, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdKoePBd', '8430784'), + (690, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdKoePBd', '8430799'), + (690, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdKoePBd', '8430800'), + (690, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdKoePBd', '8430801'), + (690, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdKoePBd', '8438709'), + (690, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdKoePBd', '8457738'), + (690, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdKoePBd', '8459566'), + (690, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdKoePBd', '8459567'), + (690, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdKoePBd', '8461032'), + (690, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdKoePBd', '8477877'), + (690, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdKoePBd', '8485688'), + (690, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdKoePBd', '8490587'), + (690, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdKoePBd', '8493552'), + (690, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdKoePBd', '8493553'), + (690, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdKoePBd', '8493554'), + (690, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdKoePBd', '8493555'), + (690, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdKoePBd', '8493556'), + (690, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdKoePBd', '8493557'), + (690, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdKoePBd', '8493558'), + (690, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdKoePBd', '8493559'), + (690, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdKoePBd', '8493560'), + (690, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdKoePBd', '8493561'), + (690, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdKoePBd', '8493572'), + (690, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdKoePBd', '8540725'), + (690, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdKoePBd', '8555421'), + (691, 853, 'attending', '2021-08-11 22:30:45', '2025-12-17 19:47:41', 'Agk5xMRA', '4015725'), + (691, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'Agk5xMRA', '4210314'), + (691, 902, 'attending', '2021-08-07 17:07:32', '2025-12-17 19:47:41', 'Agk5xMRA', '4240318'), + (691, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Agk5xMRA', '4240320'), + (691, 935, 'attending', '2021-08-11 22:04:25', '2025-12-17 19:47:41', 'Agk5xMRA', '4304151'), + (691, 960, 'not_attending', '2021-08-11 19:37:22', '2025-12-17 19:47:41', 'Agk5xMRA', '4344519'), + (691, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'Agk5xMRA', '4345519'), + (691, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Agk5xMRA', '4356801'), + (691, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'Agk5xMRA', '4358025'), + (691, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Agk5xMRA', '4366186'), + (691, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Agk5xMRA', '4366187'), + (691, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'Agk5xMRA', '4402823'), + (691, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Agk5xMRA', '4420735'), + (691, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Agk5xMRA', '4420738'), + (691, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'Agk5xMRA', '4420739'), + (691, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Agk5xMRA', '4420741'), + (691, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Agk5xMRA', '4420744'), + (691, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Agk5xMRA', '4420747'), + (691, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Agk5xMRA', '4420748'), + (691, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Agk5xMRA', '4420749'), + (691, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Agk5xMRA', '4461883'), + (691, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Agk5xMRA', '4508342'), + (691, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Agk5xMRA', '6045684'), + (692, 404, 'attending', '2021-03-17 13:48:15', '2025-12-17 19:47:51', 'GmjwwOgA', '3236460'), + (692, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'GmjwwOgA', '3236465'), + (692, 629, 'attending', '2021-03-17 13:52:38', '2025-12-17 19:47:51', 'GmjwwOgA', '3533307'), + (692, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'GmjwwOgA', '3539916'), + (692, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'GmjwwOgA', '3539918'), + (692, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'GmjwwOgA', '3539919'), + (692, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'GmjwwOgA', '3539920'), + (692, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GmjwwOgA', '3539927'), + (692, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GmjwwOgA', '3582734'), + (692, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GmjwwOgA', '3583262'), + (692, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GmjwwOgA', '3619523'), + (692, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GmjwwOgA', '3661369'), + (692, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GmjwwOgA', '3674262'), + (692, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GmjwwOgA', '3677402'), + (692, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GmjwwOgA', '3730212'), + (692, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjwwOgA', '6045684'), + (693, 1611, 'attending', '2022-09-05 03:57:32', '2025-12-17 19:47:24', '4PRkellm', '5507652'), + (693, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', '4PRkellm', '5513985'), + (693, 1628, 'not_attending', '2022-09-05 03:55:50', '2025-12-17 19:47:23', '4PRkellm', '5522500'), + (693, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', '4PRkellm', '5534683'), + (693, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '4PRkellm', '5537735'), + (693, 1637, 'attending', '2022-09-05 03:58:51', '2025-12-17 19:47:24', '4PRkellm', '5539591'), + (693, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4PRkellm', '5540859'), + (693, 1648, 'attending', '2022-09-05 03:59:06', '2025-12-17 19:47:24', '4PRkellm', '5548974'), + (693, 1651, 'attending', '2022-09-05 03:57:58', '2025-12-17 19:47:24', '4PRkellm', '5551425'), + (693, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4PRkellm', '5555245'), + (693, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4PRkellm', '5557747'), + (693, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4PRkellm', '5560255'), + (693, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4PRkellm', '5562906'), + (693, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4PRkellm', '5600604'), + (693, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4PRkellm', '5605544'), + (693, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4PRkellm', '5635406'), + (693, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4PRkellm', '5638765'), + (693, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4PRkellm', '5640843'), + (693, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PRkellm', '6045684'), + (694, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAY1YN0A', '6045684'), + (695, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4v0pOYBm', '7114957'), + (695, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4v0pOYBm', '7240354'), + (695, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4v0pOYBm', '7251633'), + (695, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', '4v0pOYBm', '7265589'), + (695, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', '4v0pOYBm', '7291219'), + (695, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', '4v0pOYBm', '7301638'), + (696, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'mbZ0PJam', '5132533'), + (696, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mbZ0PJam', '5186582'), + (696, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mbZ0PJam', '5186583'), + (696, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mbZ0PJam', '5186585'), + (696, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mbZ0PJam', '5190437'), + (696, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'mbZ0PJam', '5196763'), + (696, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'mbZ0PJam', '5199460'), + (696, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mbZ0PJam', '5215989'), + (696, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mbZ0PJam', '5223686'), + (696, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mbZ0PJam', '5227432'), + (696, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZ0PJam', '6045684'), + (697, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'ndla2kbm', '3236465'), + (697, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'ndla2kbm', '3539918'), + (697, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'ndla2kbm', '3539919'), + (697, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'ndla2kbm', '3539920'), + (697, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'ndla2kbm', '3539921'), + (697, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ndla2kbm', '3583262'), + (697, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ndla2kbm', '3661369'), + (697, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndla2kbm', '3730212'), + (697, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ndla2kbm', '3793156'), + (697, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'ndla2kbm', '3803310'), + (697, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'ndla2kbm', '3806392'), + (697, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndla2kbm', '6045684'), + (698, 1442, 'not_attending', '2022-06-12 02:47:11', '2025-12-17 19:47:17', '4DnkGqym', '5397265'), + (698, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4DnkGqym', '5403967'), + (698, 1458, 'attending', '2022-06-19 23:10:34', '2025-12-17 19:47:17', '4DnkGqym', '5404786'), + (698, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4DnkGqym', '5405203'), + (698, 1466, 'attending', '2022-06-13 21:40:53', '2025-12-17 19:47:17', '4DnkGqym', '5406427'), + (698, 1476, 'attending', '2022-06-19 16:32:57', '2025-12-17 19:47:17', '4DnkGqym', '5408130'), + (698, 1478, 'not_attending', '2022-06-24 20:57:53', '2025-12-17 19:47:19', '4DnkGqym', '5408794'), + (698, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4DnkGqym', '5411699'), + (698, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4DnkGqym', '5412550'), + (698, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4DnkGqym', '5415046'), + (698, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4DnkGqym', '5422086'), + (698, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4DnkGqym', '5422406'), + (698, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4DnkGqym', '5424565'), + (698, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4DnkGqym', '5426882'), + (698, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4DnkGqym', '5427083'), + (698, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4DnkGqym', '5441125'), + (698, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4DnkGqym', '5441126'), + (698, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4DnkGqym', '5441128'), + (698, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4DnkGqym', '5446643'), + (698, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4DnkGqym', '5453325'), + (698, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4DnkGqym', '5454516'), + (698, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4DnkGqym', '5454605'), + (698, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4DnkGqym', '5455037'), + (698, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4DnkGqym', '5461278'), + (698, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4DnkGqym', '5469480'), + (698, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4DnkGqym', '5471073'), + (698, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '4DnkGqym', '5474663'), + (698, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4DnkGqym', '5482022'), + (698, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4DnkGqym', '5482793'), + (698, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4DnkGqym', '5488912'), + (698, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4DnkGqym', '5492192'), + (698, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4DnkGqym', '5493139'), + (698, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4DnkGqym', '5493200'), + (698, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4DnkGqym', '5502188'), + (698, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4DnkGqym', '5512862'), + (698, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4DnkGqym', '5513985'), + (698, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DnkGqym', '6045684'), + (699, 398, 'attending', '2021-01-18 21:46:27', '2025-12-17 19:47:49', 'LmpVLZk4', '3236453'), + (699, 548, 'attending', '2021-01-17 01:10:12', '2025-12-17 19:47:48', 'LmpVLZk4', '3403650'), + (699, 555, 'attending', '2021-01-23 04:01:32', '2025-12-17 19:47:49', 'LmpVLZk4', '3416576'), + (699, 558, 'attending', '2021-01-22 02:56:21', '2025-12-17 19:47:49', 'LmpVLZk4', '3418925'), + (699, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'LmpVLZk4', '3426074'), + (699, 568, 'attending', '2021-01-26 20:14:10', '2025-12-17 19:47:50', 'LmpVLZk4', '3430267'), + (699, 569, 'maybe', '2021-01-26 20:14:05', '2025-12-17 19:47:49', 'LmpVLZk4', '3432673'), + (699, 576, 'attending', '2021-02-01 21:15:20', '2025-12-17 19:47:50', 'LmpVLZk4', '3438748'), + (699, 579, 'attending', '2021-02-02 04:59:23', '2025-12-17 19:47:50', 'LmpVLZk4', '3440978'), + (699, 580, 'maybe', '2021-01-30 00:40:02', '2025-12-17 19:47:50', 'LmpVLZk4', '3444240'), + (699, 591, 'attending', '2021-02-07 00:46:03', '2025-12-17 19:47:50', 'LmpVLZk4', '3465880'), + (699, 598, 'attending', '2021-02-09 23:32:16', '2025-12-17 19:47:50', 'LmpVLZk4', '3468003'), + (699, 600, 'attending', '2021-02-21 18:31:49', '2025-12-17 19:47:50', 'LmpVLZk4', '3468125'), + (699, 602, 'attending', '2021-02-12 04:58:11', '2025-12-17 19:47:50', 'LmpVLZk4', '3470303'), + (699, 603, 'attending', '2021-02-19 01:35:11', '2025-12-17 19:47:50', 'LmpVLZk4', '3470304'), + (699, 604, 'attending', '2021-02-27 07:52:06', '2025-12-17 19:47:50', 'LmpVLZk4', '3470305'), + (699, 605, 'maybe', '2021-02-14 16:51:57', '2025-12-17 19:47:50', 'LmpVLZk4', '3470991'), + (699, 607, 'attending', '2021-02-19 01:34:54', '2025-12-17 19:47:50', 'LmpVLZk4', '3471882'), + (699, 615, 'attending', '2021-02-20 22:12:02', '2025-12-17 19:47:50', 'LmpVLZk4', '3490045'), + (699, 621, 'attending', '2021-03-06 15:41:06', '2025-12-17 19:47:51', 'LmpVLZk4', '3517815'), + (699, 622, 'not_attending', '2021-03-09 18:58:35', '2025-12-17 19:47:51', 'LmpVLZk4', '3517816'), + (699, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'LmpVLZk4', '3523941'), + (699, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'LmpVLZk4', '3533850'), + (699, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'LmpVLZk4', '3536632'), + (699, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'LmpVLZk4', '3536656'), + (699, 641, 'attending', '2021-04-03 21:53:55', '2025-12-17 19:47:44', 'LmpVLZk4', '3539916'), + (699, 642, 'attending', '2021-04-10 16:34:23', '2025-12-17 19:47:44', 'LmpVLZk4', '3539917'), + (699, 643, 'attending', '2021-04-16 01:56:21', '2025-12-17 19:47:45', 'LmpVLZk4', '3539918'), + (699, 644, 'not_attending', '2021-04-20 10:39:05', '2025-12-17 19:47:46', 'LmpVLZk4', '3539919'), + (699, 645, 'attending', '2021-05-08 18:46:16', '2025-12-17 19:47:46', 'LmpVLZk4', '3539920'), + (699, 646, 'not_attending', '2021-05-15 18:57:50', '2025-12-17 19:47:46', 'LmpVLZk4', '3539921'), + (699, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'LmpVLZk4', '3539922'), + (699, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'LmpVLZk4', '3539923'), + (699, 649, 'not_attending', '2021-03-18 21:09:12', '2025-12-17 19:47:51', 'LmpVLZk4', '3539927'), + (699, 650, 'not_attending', '2021-03-24 11:30:24', '2025-12-17 19:47:44', 'LmpVLZk4', '3539928'), + (699, 687, 'attending', '2021-03-10 21:29:44', '2025-12-17 19:47:51', 'LmpVLZk4', '3553405'), + (699, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'LmpVLZk4', '3582734'), + (699, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'LmpVLZk4', '3583262'), + (699, 708, 'attending', '2021-03-25 23:27:56', '2025-12-17 19:47:44', 'LmpVLZk4', '3587850'), + (699, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'LmpVLZk4', '3619523'), + (699, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'LmpVLZk4', '3661369'), + (699, 729, 'not_attending', '2021-04-28 17:33:55', '2025-12-17 19:47:46', 'LmpVLZk4', '3668075'), + (699, 730, 'not_attending', '2021-04-28 17:34:03', '2025-12-17 19:47:46', 'LmpVLZk4', '3668076'), + (699, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'LmpVLZk4', '3674262'), + (699, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'LmpVLZk4', '3677402'), + (699, 766, 'not_attending', '2021-05-12 22:26:07', '2025-12-17 19:47:46', 'LmpVLZk4', '3721383'), + (699, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'LmpVLZk4', '3730212'), + (699, 777, 'attending', '2021-04-28 17:34:46', '2025-12-17 19:47:46', 'LmpVLZk4', '3746248'), + (699, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'LmpVLZk4', '3793156'), + (699, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'LmpVLZk4', '3974109'), + (699, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'LmpVLZk4', '3975311'), + (699, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpVLZk4', '3975312'), + (699, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpVLZk4', '3994992'), + (699, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpVLZk4', '4014338'), + (699, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'LmpVLZk4', '4021848'), + (699, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpVLZk4', '4136744'), + (699, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'LmpVLZk4', '4136937'), + (699, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'LmpVLZk4', '4136938'), + (699, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpVLZk4', '4136947'), + (699, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpVLZk4', '4210314'), + (699, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpVLZk4', '4225444'), + (699, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpVLZk4', '4239259'), + (699, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'LmpVLZk4', '4240316'), + (699, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'LmpVLZk4', '4240317'), + (699, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'LmpVLZk4', '4240318'), + (699, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'LmpVLZk4', '4240320'), + (699, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpVLZk4', '4250163'), + (699, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'LmpVLZk4', '4275957'), + (699, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpVLZk4', '4277819'), + (699, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpVLZk4', '4301723'), + (699, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'LmpVLZk4', '4302093'), + (699, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpVLZk4', '4304151'), + (699, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'LmpVLZk4', '4345519'), + (699, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'LmpVLZk4', '4356801'), + (699, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpVLZk4', '4358025'), + (699, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'LmpVLZk4', '4366186'), + (699, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'LmpVLZk4', '4366187'), + (699, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'LmpVLZk4', '4402823'), + (699, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'LmpVLZk4', '4420735'), + (699, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'LmpVLZk4', '4420738'), + (699, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'LmpVLZk4', '4420739'), + (699, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'LmpVLZk4', '4420741'), + (699, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'LmpVLZk4', '4420744'), + (699, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'LmpVLZk4', '4420747'), + (699, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'LmpVLZk4', '4420748'), + (699, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'LmpVLZk4', '4420749'), + (699, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'LmpVLZk4', '4461883'), + (699, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpVLZk4', '4508342'), + (699, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpVLZk4', '4568602'), + (699, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'LmpVLZk4', '4572153'), + (699, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'LmpVLZk4', '4585962'), + (699, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'LmpVLZk4', '4596356'), + (699, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpVLZk4', '4598860'), + (699, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpVLZk4', '4598861'), + (699, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'LmpVLZk4', '4602797'), + (699, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'LmpVLZk4', '4637896'), + (699, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpVLZk4', '4642994'), + (699, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'LmpVLZk4', '4642995'), + (699, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpVLZk4', '4642996'), + (699, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpVLZk4', '4642997'), + (699, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'LmpVLZk4', '4645687'), + (699, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpVLZk4', '4645698'), + (699, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'LmpVLZk4', '4645704'), + (699, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'LmpVLZk4', '4645705'), + (699, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpVLZk4', '4668385'), + (699, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpVLZk4', '4694407'), + (699, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpVLZk4', '6045684'), + (700, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VmMzM3rA', '3517816'), + (700, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'VmMzM3rA', '3539916'), + (700, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VmMzM3rA', '3539927'), + (700, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VmMzM3rA', '3582734'), + (700, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VmMzM3rA', '3619523'), + (700, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VmMzM3rA', '3674262'), + (700, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VmMzM3rA', '3677402'), + (700, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMzM3rA', '6045684'), + (701, 1138, 'not_attending', '2021-11-29 22:40:59', '2025-12-17 19:47:37', '4PP5yPl4', '4675407'), + (701, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4PP5yPl4', '4694407'), + (701, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4PP5yPl4', '4736497'), + (701, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4PP5yPl4', '4736500'), + (701, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4PP5yPl4', '4746789'), + (701, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4PP5yPl4', '4753929'), + (701, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PP5yPl4', '6045684'), + (702, 2276, 'maybe', '2023-10-12 01:05:18', '2025-12-17 19:46:46', 'mM6lNBkA', '6453951'), + (702, 2299, 'not_attending', '2023-10-16 20:09:03', '2025-12-17 19:46:46', 'mM6lNBkA', '6472181'), + (702, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mM6lNBkA', '6482693'), + (702, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mM6lNBkA', '6484200'), + (702, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mM6lNBkA', '6484680'), + (702, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mM6lNBkA', '6507741'), + (702, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mM6lNBkA', '6514659'), + (702, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mM6lNBkA', '6514660'), + (702, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mM6lNBkA', '6519103'), + (702, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mM6lNBkA', '6535681'), + (702, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mM6lNBkA', '6584747'), + (702, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mM6lNBkA', '6587097'), + (702, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mM6lNBkA', '6609022'), + (702, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mM6lNBkA', '6632757'), + (702, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mM6lNBkA', '6644187'), + (702, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mM6lNBkA', '6648951'), + (702, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mM6lNBkA', '6648952'), + (702, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mM6lNBkA', '6655401'), + (702, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mM6lNBkA', '6661585'), + (702, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mM6lNBkA', '6661588'), + (702, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mM6lNBkA', '6661589'), + (702, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mM6lNBkA', '6699906'), + (702, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mM6lNBkA', '6701109'), + (702, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mM6lNBkA', '6705219'), + (702, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mM6lNBkA', '6710153'), + (702, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mM6lNBkA', '6711552'), + (702, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mM6lNBkA', '6711553'), + (703, 1857, 'not_attending', '2023-01-22 14:10:10', '2025-12-17 19:47:05', 'AQ1oVjNA', '5873973'), + (703, 1863, 'attending', '2023-01-23 20:13:56', '2025-12-17 19:47:06', 'AQ1oVjNA', '5877255'), + (703, 1865, 'attending', '2023-01-22 14:10:37', '2025-12-17 19:47:06', 'AQ1oVjNA', '5879676'), + (703, 1866, 'not_attending', '2023-01-22 14:10:17', '2025-12-17 19:47:05', 'AQ1oVjNA', '5880939'), + (703, 1873, 'not_attending', '2023-01-22 14:09:56', '2025-12-17 19:47:05', 'AQ1oVjNA', '5885295'), + (703, 1874, 'not_attending', '2023-01-21 23:59:46', '2025-12-17 19:47:05', 'AQ1oVjNA', '5887890'), + (703, 1875, 'attending', '2023-01-22 14:10:29', '2025-12-17 19:47:06', 'AQ1oVjNA', '5887908'), + (703, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AQ1oVjNA', '5888598'), + (703, 1877, 'not_attending', '2023-01-22 14:10:04', '2025-12-17 19:47:05', 'AQ1oVjNA', '5888693'), + (703, 1879, 'not_attending', '2023-01-28 22:29:38', '2025-12-17 19:47:06', 'AQ1oVjNA', '5893001'), + (703, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AQ1oVjNA', '5893260'), + (703, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AQ1oVjNA', '5899826'), + (703, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901055'), + (703, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901108'), + (703, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901126'), + (703, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901606'), + (703, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ1oVjNA', '6045684'), + (704, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ArrpbPqA', '5630968'), + (704, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArrpbPqA', '6045684'), + (705, 646, 'not_attending', '2021-05-13 00:01:49', '2025-12-17 19:47:46', '1ArED5Bm', '3539921'), + (705, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArED5Bm', '6045684'), + (706, 1362, 'attending', '2022-04-30 22:42:28', '2025-12-17 19:47:28', 'ArQKkjYm', '5260800'), + (706, 1369, 'attending', '2022-05-09 03:09:28', '2025-12-17 19:47:28', 'ArQKkjYm', '5262809'), + (706, 1374, 'attending', '2022-05-02 02:06:49', '2025-12-17 19:47:28', 'ArQKkjYm', '5269930'), + (706, 1378, 'attending', '2022-05-13 22:47:01', '2025-12-17 19:47:29', 'ArQKkjYm', '5271448'), + (706, 1379, 'attending', '2022-05-19 23:18:42', '2025-12-17 19:47:29', 'ArQKkjYm', '5271449'), + (706, 1380, 'not_attending', '2022-05-28 19:28:32', '2025-12-17 19:47:30', 'ArQKkjYm', '5271450'), + (706, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ArQKkjYm', '5276469'), + (706, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ArQKkjYm', '5278159'), + (706, 1389, 'attending', '2022-05-08 07:37:15', '2025-12-17 19:47:28', 'ArQKkjYm', '5278202'), + (706, 1407, 'attending', '2022-06-03 02:46:51', '2025-12-17 19:47:30', 'ArQKkjYm', '5363695'), + (706, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQKkjYm', '5365960'), + (706, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQKkjYm', '5368973'), + (706, 1422, 'attending', '2022-05-26 23:58:42', '2025-12-17 19:47:30', 'ArQKkjYm', '5375603'), + (706, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ArQKkjYm', '5378247'), + (706, 1430, 'attending', '2022-06-07 22:16:50', '2025-12-17 19:47:30', 'ArQKkjYm', '5389402'), + (706, 1431, 'attending', '2022-06-10 23:17:08', '2025-12-17 19:47:30', 'ArQKkjYm', '5389605'), + (706, 1442, 'attending', '2022-06-17 18:56:38', '2025-12-17 19:47:17', 'ArQKkjYm', '5397265'), + (706, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ArQKkjYm', '5403967'), + (706, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ArQKkjYm', '5404786'), + (706, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ArQKkjYm', '5405203'), + (706, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ArQKkjYm', '5411699'), + (706, 1482, 'attending', '2022-06-23 11:16:30', '2025-12-17 19:47:19', 'ArQKkjYm', '5412550'), + (706, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ArQKkjYm', '5415046'), + (706, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ArQKkjYm', '5422086'), + (706, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ArQKkjYm', '5422406'), + (706, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ArQKkjYm', '5424565'), + (706, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQKkjYm', '5426882'), + (706, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ArQKkjYm', '5427083'), + (706, 1511, 'not_attending', '2022-07-09 20:58:31', '2025-12-17 19:47:19', 'ArQKkjYm', '5437733'), + (706, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ArQKkjYm', '5441125'), + (706, 1514, 'attending', '2022-07-21 21:13:49', '2025-12-17 19:47:20', 'ArQKkjYm', '5441126'), + (706, 1515, 'attending', '2022-08-05 19:31:08', '2025-12-17 19:47:21', 'ArQKkjYm', '5441128'), + (706, 1516, 'attending', '2022-08-19 17:41:43', '2025-12-17 19:47:23', 'ArQKkjYm', '5441129'), + (706, 1517, 'attending', '2022-08-27 01:12:35', '2025-12-17 19:47:23', 'ArQKkjYm', '5441130'), + (706, 1518, 'maybe', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ArQKkjYm', '5441131'), + (706, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'ArQKkjYm', '5441132'), + (706, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQKkjYm', '5446643'), + (706, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQKkjYm', '5453325'), + (706, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQKkjYm', '5454516'), + (706, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQKkjYm', '5454605'), + (706, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQKkjYm', '5455037'), + (706, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQKkjYm', '5461278'), + (706, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQKkjYm', '5469480'), + (706, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQKkjYm', '5471073'), + (706, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ArQKkjYm', '5474663'), + (706, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQKkjYm', '5482022'), + (706, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQKkjYm', '5482793'), + (706, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQKkjYm', '5488912'), + (706, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQKkjYm', '5492192'), + (706, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQKkjYm', '5493139'), + (706, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQKkjYm', '5493200'), + (706, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQKkjYm', '5502188'), + (706, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ArQKkjYm', '5505059'), + (706, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ArQKkjYm', '5509055'), + (706, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ArQKkjYm', '5512862'), + (706, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ArQKkjYm', '5513985'), + (706, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ArQKkjYm', '5519981'), + (706, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ArQKkjYm', '5522550'), + (706, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ArQKkjYm', '5534683'), + (706, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'ArQKkjYm', '5537735'), + (706, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ArQKkjYm', '5540859'), + (706, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ArQKkjYm', '5546619'), + (706, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ArQKkjYm', '5555245'), + (706, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ArQKkjYm', '5557747'), + (706, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ArQKkjYm', '5560255'), + (706, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ArQKkjYm', '5562906'), + (706, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ArQKkjYm', '5600604'), + (706, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ArQKkjYm', '5605544'), + (706, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'ArQKkjYm', '5606737'), + (706, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ArQKkjYm', '5630960'), + (706, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ArQKkjYm', '5630961'), + (706, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ArQKkjYm', '5630962'), + (706, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ArQKkjYm', '5630966'), + (706, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ArQKkjYm', '5630967'), + (706, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ArQKkjYm', '5630968'), + (706, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ArQKkjYm', '5635406'), + (706, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ArQKkjYm', '5638765'), + (706, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ArQKkjYm', '5640097'), + (706, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ArQKkjYm', '5640843'), + (706, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ArQKkjYm', '5641521'), + (706, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ArQKkjYm', '5642818'), + (706, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ArQKkjYm', '5652395'), + (706, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ArQKkjYm', '5670445'), + (706, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ArQKkjYm', '5671637'), + (706, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ArQKkjYm', '5672329'), + (706, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ArQKkjYm', '5674057'), + (706, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ArQKkjYm', '5674060'), + (706, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ArQKkjYm', '5677461'), + (706, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ArQKkjYm', '5698046'), + (706, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ArQKkjYm', '5699760'), + (706, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ArQKkjYm', '5741601'), + (706, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ArQKkjYm', '5763458'), + (706, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ArQKkjYm', '5774172'), + (706, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'ArQKkjYm', '5818247'), + (706, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ArQKkjYm', '5819471'), + (706, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ArQKkjYm', '5827739'), + (706, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ArQKkjYm', '5844306'), + (706, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ArQKkjYm', '5850159'), + (706, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ArQKkjYm', '5858999'), + (706, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ArQKkjYm', '5871984'), + (706, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ArQKkjYm', '5876354'), + (706, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'ArQKkjYm', '5880939'), + (706, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ArQKkjYm', '5887890'), + (706, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ArQKkjYm', '5888598'), + (706, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ArQKkjYm', '5893260'), + (706, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQKkjYm', '6045684'), + (707, 1722, 'attending', '2022-10-28 19:12:43', '2025-12-17 19:47:14', 'daDMjbK4', '5630961'), + (707, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'daDMjbK4', '5630962'), + (707, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'daDMjbK4', '5630966'), + (707, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'daDMjbK4', '5630967'), + (707, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'daDMjbK4', '5630968'), + (707, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'daDMjbK4', '5642818'), + (707, 1765, 'maybe', '2022-10-30 16:31:58', '2025-12-17 19:47:14', 'daDMjbK4', '5672329'), + (707, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'daDMjbK4', '5698046'), + (707, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'daDMjbK4', '5699760'), + (707, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'daDMjbK4', '5741601'), + (707, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'daDMjbK4', '5763458'), + (707, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'daDMjbK4', '5774172'), + (707, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daDMjbK4', '6045684'), + (708, 406, 'attending', '2021-04-01 18:35:57', '2025-12-17 19:47:44', 'lAeXawzm', '3236464'), + (708, 641, 'attending', '2021-04-02 16:39:24', '2025-12-17 19:47:44', 'lAeXawzm', '3539916'), + (708, 642, 'attending', '2021-04-09 20:10:31', '2025-12-17 19:47:44', 'lAeXawzm', '3539917'), + (708, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'lAeXawzm', '3539918'), + (708, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'lAeXawzm', '3539919'), + (708, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'lAeXawzm', '3539920'), + (708, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'lAeXawzm', '3539921'), + (708, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'lAeXawzm', '3539922'), + (708, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'lAeXawzm', '3539923'), + (708, 700, 'attending', '2021-03-28 20:41:11', '2025-12-17 19:47:44', 'lAeXawzm', '3575725'), + (708, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'lAeXawzm', '3583262'), + (708, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'lAeXawzm', '3661369'), + (708, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'lAeXawzm', '3674262'), + (708, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'lAeXawzm', '3677402'), + (708, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'lAeXawzm', '3730212'), + (708, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'lAeXawzm', '3793156'), + (708, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAeXawzm', '6045684'), + (709, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mjjMya5m', '6361713'), + (709, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mjjMya5m', '6394631'), + (709, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mjjMya5m', '6431478'), + (709, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mjjMya5m', '6440863'), + (709, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mjjMya5m', '6445440'), + (709, 2274, 'not_attending', '2023-10-04 19:10:55', '2025-12-17 19:46:45', 'mjjMya5m', '6448287'), + (709, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mjjMya5m', '6453951'), + (709, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mjjMya5m', '6461696'), + (709, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mjjMya5m', '6462129'), + (709, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mjjMya5m', '6463218'), + (709, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mjjMya5m', '6472181'), + (709, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mjjMya5m', '6482693'), + (709, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mjjMya5m', '6484200'), + (709, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mjjMya5m', '6484680'), + (709, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mjjMya5m', '6507741'), + (709, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mjjMya5m', '6514659'), + (709, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mjjMya5m', '6514660'), + (709, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mjjMya5m', '6519103'), + (709, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mjjMya5m', '6535681'), + (709, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mjjMya5m', '6545076'), + (709, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mjjMya5m', '6584747'), + (709, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mjjMya5m', '6587097'), + (709, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mjjMya5m', '6609022'), + (709, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mjjMya5m', '6632757'), + (709, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mjjMya5m', '6644187'), + (709, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mjjMya5m', '6648951'), + (709, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mjjMya5m', '6648952'), + (709, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mjjMya5m', '6651141'), + (709, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mjjMya5m', '6655401'), + (709, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mjjMya5m', '6661585'), + (709, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mjjMya5m', '6661588'), + (709, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mjjMya5m', '6661589'), + (709, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mjjMya5m', '6699906'), + (709, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mjjMya5m', '6699913'), + (709, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mjjMya5m', '6701109'), + (709, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mjjMya5m', '6705219'), + (709, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mjjMya5m', '6710153'), + (709, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mjjMya5m', '6711552'), + (709, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mjjMya5m', '6711553'), + (709, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mjjMya5m', '6722688'), + (709, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mjjMya5m', '6730620'), + (709, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mjjMya5m', '6730642'), + (709, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mjjMya5m', '6740364'), + (709, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mjjMya5m', '6743829'), + (709, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mjjMya5m', '7030380'), + (709, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mjjMya5m', '7033677'), + (709, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mjjMya5m', '7035415'), + (709, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mjjMya5m', '7044715'), + (709, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mjjMya5m', '7050318'), + (709, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mjjMya5m', '7050319'), + (709, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mjjMya5m', '7050322'), + (709, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mjjMya5m', '7057804'), + (709, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mjjMya5m', '7072824'), + (709, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mjjMya5m', '7074348'), + (709, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mjjMya5m', '7089267'), + (709, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mjjMya5m', '7098747'), + (709, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mjjMya5m', '7113468'), + (709, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mjjMya5m', '7114856'), + (709, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mjjMya5m', '7114951'), + (709, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mjjMya5m', '7114955'), + (709, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mjjMya5m', '7114956'), + (709, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mjjMya5m', '7153615'), + (709, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mjjMya5m', '7159484'), + (709, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mjjMya5m', '7178446'), + (710, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Arb2RR8A', '6361710'), + (710, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Arb2RR8A', '6361711'), + (710, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Arb2RR8A', '6361713'), + (710, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Arb2RR8A', '6382573'), + (710, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Arb2RR8A', '6388604'), + (710, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Arb2RR8A', '6394629'), + (710, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Arb2RR8A', '6394631'), + (710, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'Arb2RR8A', '6431478'), + (711, 262, 'maybe', '2021-06-29 16:20:10', '2025-12-17 19:47:38', '8dBeWjv4', '3149493'), + (711, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '8dBeWjv4', '4136937'), + (711, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '8dBeWjv4', '4136938'), + (711, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8dBeWjv4', '4225444'), + (711, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '8dBeWjv4', '4229417'), + (711, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '8dBeWjv4', '4229418'), + (711, 895, 'maybe', '2021-07-01 01:08:07', '2025-12-17 19:47:39', '8dBeWjv4', '4229424'), + (711, 899, 'maybe', '2021-07-03 03:27:11', '2025-12-17 19:47:39', '8dBeWjv4', '4239259'), + (711, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8dBeWjv4', '4250163'), + (711, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dBeWjv4', '6045684'), + (712, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dxO05ND4', '5900202'), + (712, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dxO05ND4', '5962317'), + (712, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dxO05ND4', '5962318'), + (712, 1951, 'maybe', '2023-03-21 00:52:15', '2025-12-17 19:46:57', 'dxO05ND4', '5965933'), + (712, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'dxO05ND4', '6028191'), + (712, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dxO05ND4', '6040066'), + (712, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dxO05ND4', '6042717'), + (712, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dxO05ND4', '6044838'), + (712, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dxO05ND4', '6044839'), + (712, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxO05ND4', '6045684'), + (712, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'dxO05ND4', '6048955'), + (712, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dxO05ND4', '6050104'), + (712, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dxO05ND4', '6053195'), + (712, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dxO05ND4', '6053198'), + (712, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dxO05ND4', '6056085'), + (712, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dxO05ND4', '6056916'), + (712, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dxO05ND4', '6059290'), + (712, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dxO05ND4', '6060328'), + (712, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dxO05ND4', '6061037'), + (712, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dxO05ND4', '6061039'), + (712, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dxO05ND4', '6067245'), + (712, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dxO05ND4', '6068094'), + (712, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dxO05ND4', '6068252'), + (712, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dxO05ND4', '6068253'), + (712, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dxO05ND4', '6068254'), + (712, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dxO05ND4', '6068280'), + (712, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dxO05ND4', '6069093'), + (712, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dxO05ND4', '6072528'), + (712, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dxO05ND4', '6079840'), + (712, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dxO05ND4', '6083398'), + (712, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dxO05ND4', '6093504'), + (712, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dxO05ND4', '6097414'), + (712, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dxO05ND4', '6097442'), + (712, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dxO05ND4', '6097684'), + (712, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dxO05ND4', '6098762'), + (712, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dxO05ND4', '6101362'), + (712, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dxO05ND4', '6107314'), + (712, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dxO05ND4', '6120034'), + (712, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxO05ND4', '6337236'), + (712, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxO05ND4', '6337970'), + (712, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'dxO05ND4', '6338308'), + (712, 2160, 'attending', '2023-07-27 22:31:24', '2025-12-17 19:46:54', 'dxO05ND4', '6338358'), + (712, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxO05ND4', '6341710'), + (712, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxO05ND4', '6342044'), + (712, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxO05ND4', '6342298'), + (712, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxO05ND4', '6342591'), + (712, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dxO05ND4', '6343294'), + (712, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxO05ND4', '6347034'), + (712, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxO05ND4', '6347056'), + (712, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxO05ND4', '6353830'), + (712, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxO05ND4', '6353831'), + (712, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxO05ND4', '6357867'), + (712, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxO05ND4', '6358652'), + (712, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxO05ND4', '6361709'), + (712, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxO05ND4', '6361710'), + (712, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxO05ND4', '6361711'), + (712, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxO05ND4', '6361712'), + (712, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxO05ND4', '6361713'), + (712, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxO05ND4', '6382573'), + (712, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxO05ND4', '6388604'), + (712, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxO05ND4', '6394629'), + (712, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxO05ND4', '6394631'), + (712, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxO05ND4', '6431478'), + (713, 2306, 'maybe', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dNxOQMoA', '6484200'), + (713, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dNxOQMoA', '6514659'), + (713, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dNxOQMoA', '6514660'), + (713, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dNxOQMoA', '6584747'), + (713, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dNxOQMoA', '6587097'), + (713, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', 'dNxOQMoA', '6596617'), + (713, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dNxOQMoA', '6609022'), + (713, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dNxOQMoA', '6632757'), + (713, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dNxOQMoA', '6644187'), + (713, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dNxOQMoA', '6648951'), + (713, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dNxOQMoA', '6648952'), + (713, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dNxOQMoA', '6651141'), + (713, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dNxOQMoA', '6655401'), + (713, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dNxOQMoA', '6661585'), + (713, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dNxOQMoA', '6661588'), + (713, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dNxOQMoA', '6661589'), + (713, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dNxOQMoA', '6699906'), + (713, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dNxOQMoA', '6699913'), + (713, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dNxOQMoA', '6701109'), + (713, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dNxOQMoA', '6705219'), + (713, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dNxOQMoA', '6710153'), + (713, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dNxOQMoA', '6711552'), + (713, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dNxOQMoA', '6711553'), + (713, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dNxOQMoA', '6722688'), + (713, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dNxOQMoA', '6730620'), + (713, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dNxOQMoA', '6730642'), + (713, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dNxOQMoA', '6740364'), + (713, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dNxOQMoA', '6743829'), + (713, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dNxOQMoA', '7030380'), + (713, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dNxOQMoA', '7033677'), + (713, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dNxOQMoA', '7035415'), + (713, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dNxOQMoA', '7044715'), + (713, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dNxOQMoA', '7050318'), + (713, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dNxOQMoA', '7050319'), + (713, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dNxOQMoA', '7050322'), + (713, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dNxOQMoA', '7057804'), + (713, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dNxOQMoA', '7072824'), + (713, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dNxOQMoA', '7074348'), + (713, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dNxOQMoA', '7089267'), + (713, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dNxOQMoA', '7098747'), + (713, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dNxOQMoA', '7113468'), + (713, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dNxOQMoA', '7114856'), + (713, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dNxOQMoA', '7114951'), + (713, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dNxOQMoA', '7114955'), + (713, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dNxOQMoA', '7114956'), + (713, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dNxOQMoA', '7153615'), + (713, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dNxOQMoA', '7159484'), + (713, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dNxOQMoA', '7178446'), + (714, 850, 'attending', '2021-08-21 12:28:57', '2025-12-17 19:47:42', 'AgkZVxrA', '4015722'), + (714, 852, 'attending', '2021-09-01 17:29:35', '2025-12-17 19:47:43', 'AgkZVxrA', '4015724'), + (714, 854, 'not_attending', '2021-09-08 22:25:20', '2025-12-17 19:47:43', 'AgkZVxrA', '4015726'), + (714, 964, 'not_attending', '2021-08-23 22:49:14', '2025-12-17 19:47:42', 'AgkZVxrA', '4353160'), + (714, 971, 'not_attending', '2021-09-08 22:25:10', '2025-12-17 19:47:43', 'AgkZVxrA', '4356801'), + (714, 972, 'not_attending', '2021-08-20 19:50:55', '2025-12-17 19:47:42', 'AgkZVxrA', '4358025'), + (714, 973, 'attending', '2021-08-20 03:13:06', '2025-12-17 19:47:42', 'AgkZVxrA', '4366186'), + (714, 974, 'attending', '2021-08-24 12:23:34', '2025-12-17 19:47:42', 'AgkZVxrA', '4366187'), + (714, 976, 'attending', '2021-08-19 21:48:26', '2025-12-17 19:47:42', 'AgkZVxrA', '4373933'), + (714, 981, 'attending', '2021-08-24 12:24:03', '2025-12-17 19:47:42', 'AgkZVxrA', '4387305'), + (714, 983, 'attending', '2021-08-20 19:51:19', '2025-12-17 19:47:42', 'AgkZVxrA', '4390051'), + (714, 985, 'attending', '2021-08-21 18:33:37', '2025-12-17 19:47:42', 'AgkZVxrA', '4391748'), + (714, 987, 'attending', '2021-09-01 17:29:32', '2025-12-17 19:47:43', 'AgkZVxrA', '4402634'), + (714, 989, 'not_attending', '2021-09-09 19:54:46', '2025-12-17 19:47:43', 'AgkZVxrA', '4414282'), + (714, 990, 'attending', '2021-08-28 22:23:10', '2025-12-17 19:47:43', 'AgkZVxrA', '4420735'), + (714, 991, 'attending', '2021-08-28 22:23:20', '2025-12-17 19:47:43', 'AgkZVxrA', '4420738'), + (714, 992, 'attending', '2021-09-18 18:13:28', '2025-12-17 19:47:33', 'AgkZVxrA', '4420739'), + (714, 993, 'attending', '2021-09-23 18:37:25', '2025-12-17 19:47:34', 'AgkZVxrA', '4420741'), + (714, 994, 'attending', '2021-10-02 02:30:34', '2025-12-17 19:47:34', 'AgkZVxrA', '4420742'), + (714, 995, 'attending', '2021-10-09 16:13:40', '2025-12-17 19:47:34', 'AgkZVxrA', '4420744'), + (714, 996, 'attending', '2021-10-15 15:40:50', '2025-12-17 19:47:35', 'AgkZVxrA', '4420747'), + (714, 997, 'attending', '2021-10-23 15:19:37', '2025-12-17 19:47:35', 'AgkZVxrA', '4420748'), + (714, 998, 'attending', '2021-10-28 16:26:40', '2025-12-17 19:47:36', 'AgkZVxrA', '4420749'), + (714, 1000, 'attending', '2021-09-01 17:31:49', '2025-12-17 19:47:43', 'AgkZVxrA', '4424456'), + (714, 1001, 'not_attending', '2021-09-03 12:17:20', '2025-12-17 19:47:43', 'AgkZVxrA', '4424687'), + (714, 1014, 'attending', '2021-09-06 20:51:17', '2025-12-17 19:47:43', 'AgkZVxrA', '4439233'), + (714, 1015, 'attending', '2021-09-03 14:29:40', '2025-12-17 19:47:43', 'AgkZVxrA', '4440800'), + (714, 1016, 'attending', '2021-09-07 02:22:36', '2025-12-17 19:47:43', 'AgkZVxrA', '4441271'), + (714, 1017, 'attending', '2021-09-03 18:19:36', '2025-12-17 19:47:43', 'AgkZVxrA', '4441822'), + (714, 1019, 'attending', '2021-09-15 00:59:41', '2025-12-17 19:47:43', 'AgkZVxrA', '4450515'), + (714, 1020, 'not_attending', '2021-09-13 21:58:51', '2025-12-17 19:47:43', 'AgkZVxrA', '4451787'), + (714, 1021, 'attending', '2021-09-07 16:06:22', '2025-12-17 19:47:34', 'AgkZVxrA', '4451803'), + (714, 1022, 'attending', '2021-09-15 00:59:47', '2025-12-17 19:47:43', 'AgkZVxrA', '4458628'), + (714, 1023, 'not_attending', '2021-09-13 20:35:05', '2025-12-17 19:47:43', 'AgkZVxrA', '4461883'), + (714, 1024, 'attending', '2021-09-10 02:16:09', '2025-12-17 19:47:43', 'AgkZVxrA', '4462044'), + (714, 1025, 'attending', '2021-09-12 16:48:45', '2025-12-17 19:47:43', 'AgkZVxrA', '4462052'), + (714, 1026, 'attending', '2021-09-12 16:46:36', '2025-12-17 19:47:43', 'AgkZVxrA', '4472951'), + (714, 1028, 'attending', '2021-09-25 14:35:50', '2025-12-17 19:47:34', 'AgkZVxrA', '4472983'), + (714, 1029, 'attending', '2021-09-15 00:59:29', '2025-12-17 19:47:43', 'AgkZVxrA', '4473063'), + (714, 1030, 'attending', '2021-09-14 23:34:24', '2025-12-17 19:47:34', 'AgkZVxrA', '4473064'), + (714, 1034, 'not_attending', '2021-09-16 12:11:50', '2025-12-17 19:47:43', 'AgkZVxrA', '4486265'), + (714, 1049, 'attending', '2022-01-22 22:12:22', '2025-12-17 19:47:32', 'AgkZVxrA', '4496614'), + (714, 1052, 'attending', '2022-01-13 14:48:20', '2025-12-17 19:47:31', 'AgkZVxrA', '4496617'), + (714, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AgkZVxrA', '4508342'), + (714, 1072, 'not_attending', '2021-10-06 22:48:22', '2025-12-17 19:47:34', 'AgkZVxrA', '4516287'), + (714, 1073, 'attending', '2021-09-28 03:44:21', '2025-12-17 19:47:34', 'AgkZVxrA', '4518993'), + (714, 1074, 'attending', '2021-09-29 21:14:53', '2025-12-17 19:47:34', 'AgkZVxrA', '4528953'), + (714, 1076, 'attending', '2021-10-08 23:02:21', '2025-12-17 19:47:34', 'AgkZVxrA', '4539147'), + (714, 1077, 'not_attending', '2021-10-13 14:15:00', '2025-12-17 19:47:34', 'AgkZVxrA', '4540903'), + (714, 1078, 'attending', '2021-10-06 01:21:40', '2025-12-17 19:47:34', 'AgkZVxrA', '4541281'), + (714, 1079, 'not_attending', '2021-10-20 20:14:57', '2025-12-17 19:47:35', 'AgkZVxrA', '4563823'), + (714, 1081, 'not_attending', '2021-10-12 19:58:21', '2025-12-17 19:47:34', 'AgkZVxrA', '4564602'), + (714, 1082, 'not_attending', '2021-10-15 15:39:56', '2025-12-17 19:47:35', 'AgkZVxrA', '4566762'), + (714, 1086, 'not_attending', '2021-10-15 15:39:54', '2025-12-17 19:47:35', 'AgkZVxrA', '4568602'), + (714, 1087, 'not_attending', '2021-10-15 15:40:43', '2025-12-17 19:47:35', 'AgkZVxrA', '4572153'), + (714, 1089, 'not_attending', '2021-10-18 21:03:17', '2025-12-17 19:47:35', 'AgkZVxrA', '4574712'), + (714, 1090, 'maybe', '2021-10-16 16:19:53', '2025-12-17 19:47:35', 'AgkZVxrA', '4574713'), + (714, 1091, 'not_attending', '2021-10-18 21:03:15', '2025-12-17 19:47:35', 'AgkZVxrA', '4575829'), + (714, 1092, 'attending', '2021-10-21 13:12:09', '2025-12-17 19:47:35', 'AgkZVxrA', '4582837'), + (714, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'AgkZVxrA', '4585962'), + (714, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'AgkZVxrA', '4596356'), + (714, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AgkZVxrA', '4598860'), + (714, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AgkZVxrA', '4598861'), + (714, 1099, 'not_attending', '2021-11-06 15:06:33', '2025-12-17 19:47:36', 'AgkZVxrA', '4602797'), + (714, 1105, 'attending', '2021-11-10 23:36:32', '2025-12-17 19:47:36', 'AgkZVxrA', '4618567'), + (714, 1109, 'attending', '2021-11-13 20:14:16', '2025-12-17 19:47:37', 'AgkZVxrA', '4635221'), + (714, 1111, 'attending', '2021-11-21 00:25:12', '2025-12-17 19:47:31', 'AgkZVxrA', '4635279'), + (714, 1112, 'attending', '2021-11-24 15:04:17', '2025-12-17 19:47:37', 'AgkZVxrA', '4635420'), + (714, 1114, 'not_attending', '2021-11-13 21:21:39', '2025-12-17 19:47:36', 'AgkZVxrA', '4637896'), + (714, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AgkZVxrA', '4642994'), + (714, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AgkZVxrA', '4642995'), + (714, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AgkZVxrA', '4642996'), + (714, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AgkZVxrA', '4642997'), + (714, 1126, 'attending', '2021-12-08 14:56:26', '2025-12-17 19:47:38', 'AgkZVxrA', '4645687'), + (714, 1127, 'attending', '2021-11-30 16:03:22', '2025-12-17 19:47:38', 'AgkZVxrA', '4645698'), + (714, 1128, 'attending', '2021-11-20 18:47:10', '2025-12-17 19:47:37', 'AgkZVxrA', '4645704'), + (714, 1129, 'attending', '2021-11-27 23:29:37', '2025-12-17 19:47:37', 'AgkZVxrA', '4645705'), + (714, 1130, 'attending', '2021-12-04 17:12:41', '2025-12-17 19:47:37', 'AgkZVxrA', '4658824'), + (714, 1131, 'attending', '2021-12-16 18:45:22', '2025-12-17 19:47:31', 'AgkZVxrA', '4658825'), + (714, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AgkZVxrA', '4668385'), + (714, 1136, 'attending', '2021-11-26 01:17:42', '2025-12-17 19:47:37', 'AgkZVxrA', '4670473'), + (714, 1145, 'not_attending', '2021-12-10 01:05:55', '2025-12-17 19:47:38', 'AgkZVxrA', '4691157'), + (714, 1146, 'not_attending', '2021-12-10 22:57:25', '2025-12-17 19:47:38', 'AgkZVxrA', '4692841'), + (714, 1149, 'attending', '2021-12-08 14:53:53', '2025-12-17 19:47:38', 'AgkZVxrA', '4694407'), + (714, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'AgkZVxrA', '4706262'), + (714, 1153, 'not_attending', '2022-01-19 23:14:46', '2025-12-17 19:47:32', 'AgkZVxrA', '4708707'), + (714, 1163, 'maybe', '2022-01-02 07:08:36', '2025-12-17 19:47:31', 'AgkZVxrA', '4724206'), + (714, 1166, 'attending', '2022-01-11 01:12:48', '2025-12-17 19:47:31', 'AgkZVxrA', '4725109'), + (714, 1172, 'attending', '2022-01-11 01:18:27', '2025-12-17 19:47:32', 'AgkZVxrA', '4735348'), + (714, 1173, 'attending', '2022-01-04 19:09:22', '2025-12-17 19:47:31', 'AgkZVxrA', '4736495'), + (714, 1174, 'attending', '2022-01-13 14:48:25', '2025-12-17 19:47:31', 'AgkZVxrA', '4736496'), + (714, 1175, 'attending', '2022-01-11 01:18:35', '2025-12-17 19:47:32', 'AgkZVxrA', '4736497'), + (714, 1176, 'attending', '2022-02-03 02:41:19', '2025-12-17 19:47:32', 'AgkZVxrA', '4736498'), + (714, 1177, 'attending', '2022-02-11 19:49:08', '2025-12-17 19:47:32', 'AgkZVxrA', '4736499'), + (714, 1178, 'attending', '2022-01-27 01:01:30', '2025-12-17 19:47:32', 'AgkZVxrA', '4736500'), + (714, 1179, 'not_attending', '2022-02-19 17:54:05', '2025-12-17 19:47:32', 'AgkZVxrA', '4736501'), + (714, 1180, 'attending', '2022-02-26 23:29:50', '2025-12-17 19:47:33', 'AgkZVxrA', '4736502'), + (714, 1181, 'attending', '2022-03-05 22:49:03', '2025-12-17 19:47:33', 'AgkZVxrA', '4736503'), + (714, 1182, 'not_attending', '2022-03-11 20:32:00', '2025-12-17 19:47:33', 'AgkZVxrA', '4736504'), + (714, 1185, 'attending', '2022-01-15 02:25:24', '2025-12-17 19:47:31', 'AgkZVxrA', '4746789'), + (714, 1186, 'attending', '2022-01-13 14:48:15', '2025-12-17 19:47:31', 'AgkZVxrA', '4747800'), + (714, 1187, 'attending', '2022-01-11 22:56:22', '2025-12-17 19:47:31', 'AgkZVxrA', '4753907'), + (714, 1188, 'attending', '2022-01-11 22:56:00', '2025-12-17 19:47:31', 'AgkZVxrA', '4753929'), + (714, 1190, 'not_attending', '2022-01-13 14:47:09', '2025-12-17 19:47:31', 'AgkZVxrA', '4757377'), + (714, 1196, 'attending', '2022-01-21 15:08:56', '2025-12-17 19:47:32', 'AgkZVxrA', '4765583'), + (714, 1210, 'attending', '2022-01-24 00:26:22', '2025-12-17 19:47:32', 'AgkZVxrA', '4776927'), + (714, 1211, 'not_attending', '2022-01-28 23:08:09', '2025-12-17 19:47:32', 'AgkZVxrA', '4780754'), + (714, 1213, 'attending', '2022-02-08 18:52:26', '2025-12-17 19:47:32', 'AgkZVxrA', '4780760'), + (714, 1222, 'attending', '2022-02-17 00:28:55', '2025-12-17 19:47:32', 'AgkZVxrA', '5015628'), + (714, 1225, 'attending', '2022-02-03 02:41:14', '2025-12-17 19:47:32', 'AgkZVxrA', '5019063'), + (714, 1229, 'attending', '2022-02-19 00:38:17', '2025-12-17 19:47:32', 'AgkZVxrA', '5034963'), + (714, 1232, 'attending', '2022-02-09 14:43:25', '2025-12-17 19:47:32', 'AgkZVxrA', '5038850'), + (714, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AgkZVxrA', '5045826'), + (714, 1239, 'attending', '2022-03-02 19:08:01', '2025-12-17 19:47:33', 'AgkZVxrA', '5052238'), + (714, 1244, 'attending', '2022-02-25 23:20:31', '2025-12-17 19:47:33', 'AgkZVxrA', '5060490'), + (714, 1245, 'maybe', '2022-03-02 19:08:17', '2025-12-17 19:47:33', 'AgkZVxrA', '5061301'), + (714, 1259, 'attending', '2022-03-11 20:32:39', '2025-12-17 19:47:33', 'AgkZVxrA', '5132533'), + (714, 1272, 'attending', '2022-03-17 00:12:08', '2025-12-17 19:47:25', 'AgkZVxrA', '5186582'), + (714, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'AgkZVxrA', '5186583'), + (714, 1274, 'attending', '2022-04-02 14:13:04', '2025-12-17 19:47:26', 'AgkZVxrA', '5186585'), + (714, 1277, 'not_attending', '2022-03-17 00:11:47', '2025-12-17 19:47:25', 'AgkZVxrA', '5186865'), + (714, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'AgkZVxrA', '5190437'), + (714, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgkZVxrA', '5195095'), + (714, 1297, 'attending', '2022-04-02 14:13:17', '2025-12-17 19:47:25', 'AgkZVxrA', '5215989'), + (714, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgkZVxrA', '5223686'), + (714, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgkZVxrA', '5227432'), + (714, 1311, 'not_attending', '2022-04-08 02:44:27', '2025-12-17 19:47:27', 'AgkZVxrA', '5231430'), + (714, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'AgkZVxrA', '5231461'), + (714, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgkZVxrA', '5247467'), + (714, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', 'AgkZVxrA', '5249631'), + (714, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgkZVxrA', '5260800'), + (714, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgkZVxrA', '5269930'), + (714, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgkZVxrA', '5271448'), + (714, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'AgkZVxrA', '5271449'), + (714, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgkZVxrA', '5276469'), + (714, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgkZVxrA', '5278159'), + (714, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AgkZVxrA', '5363695'), + (714, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AgkZVxrA', '5365960'), + (714, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AgkZVxrA', '5368973'), + (714, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AgkZVxrA', '5378247'), + (714, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'AgkZVxrA', '5389605'), + (714, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AgkZVxrA', '5397265'), + (714, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AgkZVxrA', '5403967'), + (714, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgkZVxrA', '5404786'), + (714, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgkZVxrA', '5405203'), + (714, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AgkZVxrA', '5411699'), + (714, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AgkZVxrA', '5412550'), + (714, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AgkZVxrA', '5415046'), + (714, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgkZVxrA', '5422086'), + (714, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgkZVxrA', '5422406'), + (714, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgkZVxrA', '5424565'), + (714, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgkZVxrA', '5426882'), + (714, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgkZVxrA', '5427083'), + (714, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AgkZVxrA', '5441125'), + (714, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AgkZVxrA', '5441126'), + (714, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AgkZVxrA', '5441128'), + (714, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AgkZVxrA', '5441131'), + (714, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AgkZVxrA', '5441132'), + (714, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgkZVxrA', '5446643'), + (714, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgkZVxrA', '5453325'), + (714, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgkZVxrA', '5454516'), + (714, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgkZVxrA', '5454605'), + (714, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgkZVxrA', '5455037'), + (714, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgkZVxrA', '5461278'), + (714, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgkZVxrA', '5469480'), + (714, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgkZVxrA', '5471073'), + (714, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AgkZVxrA', '5474663'), + (714, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgkZVxrA', '5482022'), + (714, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgkZVxrA', '5482793'), + (714, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgkZVxrA', '5488912'), + (714, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgkZVxrA', '5492192'), + (714, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgkZVxrA', '5493139'), + (714, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgkZVxrA', '5493200'), + (714, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgkZVxrA', '5502188'), + (714, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AgkZVxrA', '5505059'), + (714, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AgkZVxrA', '5509055'), + (714, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgkZVxrA', '5512862'), + (714, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgkZVxrA', '5513985'), + (714, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'AgkZVxrA', '5519981'), + (714, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AgkZVxrA', '5522550'), + (714, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AgkZVxrA', '5534683'), + (714, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'AgkZVxrA', '5537735'), + (714, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AgkZVxrA', '5540859'), + (714, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AgkZVxrA', '5546619'), + (714, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AgkZVxrA', '5555245'), + (714, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AgkZVxrA', '5557747'), + (714, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AgkZVxrA', '5560255'), + (714, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AgkZVxrA', '5562906'), + (714, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AgkZVxrA', '5600604'), + (714, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AgkZVxrA', '5605544'), + (714, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'AgkZVxrA', '5606737'), + (714, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AgkZVxrA', '5635406'), + (714, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AgkZVxrA', '5638765'), + (714, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AgkZVxrA', '5640843'), + (714, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AgkZVxrA', '5641521'), + (714, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AgkZVxrA', '5652395'), + (714, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AgkZVxrA', '6045684'), + (715, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mR09Xw54', '5880943'), + (715, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mR09Xw54', '5900202'), + (715, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mR09Xw54', '5900203'), + (715, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'mR09Xw54', '5910528'), + (715, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'mR09Xw54', '5962317'), + (715, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'mR09Xw54', '5962318'), + (715, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mR09Xw54', '5965933'), + (715, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mR09Xw54', '5972815'), + (715, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mR09Xw54', '5974016'), + (715, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mR09Xw54', '5981515'), + (715, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mR09Xw54', '5993516'), + (715, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mR09Xw54', '5998939'), + (715, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mR09Xw54', '6028191'), + (715, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mR09Xw54', '6040066'), + (715, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mR09Xw54', '6042717'), + (715, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mR09Xw54', '6044838'), + (715, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mR09Xw54', '6044839'), + (715, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR09Xw54', '6045684'), + (715, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'mR09Xw54', '6048955'), + (715, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mR09Xw54', '6050104'), + (715, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mR09Xw54', '6053195'), + (715, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mR09Xw54', '6053198'), + (715, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mR09Xw54', '6056085'), + (715, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mR09Xw54', '6056916'), + (715, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mR09Xw54', '6059290'), + (715, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mR09Xw54', '6060328'), + (715, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mR09Xw54', '6061037'), + (715, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mR09Xw54', '6061039'), + (715, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mR09Xw54', '6067245'), + (715, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mR09Xw54', '6068094'), + (715, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mR09Xw54', '6068252'), + (715, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mR09Xw54', '6068253'), + (715, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mR09Xw54', '6068254'), + (715, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mR09Xw54', '6068280'), + (715, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mR09Xw54', '6069093'), + (715, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mR09Xw54', '6072528'), + (715, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mR09Xw54', '6079840'), + (715, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mR09Xw54', '6083398'), + (715, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mR09Xw54', '6093504'), + (715, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mR09Xw54', '6097414'), + (715, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mR09Xw54', '6097442'), + (715, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mR09Xw54', '6097684'), + (715, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mR09Xw54', '6098762'), + (715, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mR09Xw54', '6101362'), + (715, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mR09Xw54', '6107314'), + (715, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mR09Xw54', '6120034'), + (716, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd2jYaY9d', '5441128'), + (716, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd2jYaY9d', '5441131'), + (716, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd2jYaY9d', '5441132'), + (716, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd2jYaY9d', '5461278'), + (716, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd2jYaY9d', '5469480'), + (716, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd2jYaY9d', '5471073'), + (716, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'd2jYaY9d', '5474663'), + (716, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd2jYaY9d', '5482022'), + (716, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd2jYaY9d', '5482793'), + (716, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd2jYaY9d', '5488912'), + (716, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd2jYaY9d', '5492192'), + (716, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd2jYaY9d', '5493139'), + (716, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd2jYaY9d', '5493200'), + (716, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd2jYaY9d', '5502188'), + (716, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd2jYaY9d', '5505059'), + (716, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd2jYaY9d', '5509055'), + (716, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd2jYaY9d', '5512862'), + (716, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd2jYaY9d', '5513985'), + (716, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd2jYaY9d', '5519981'), + (716, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd2jYaY9d', '5522550'), + (716, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd2jYaY9d', '5534683'), + (716, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd2jYaY9d', '5537735'), + (716, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd2jYaY9d', '5540859'), + (716, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd2jYaY9d', '5546619'), + (716, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd2jYaY9d', '5555245'), + (716, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd2jYaY9d', '5557747'), + (716, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd2jYaY9d', '5560255'), + (716, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd2jYaY9d', '5562906'), + (716, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd2jYaY9d', '5600604'), + (716, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd2jYaY9d', '5605544'), + (716, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'd2jYaY9d', '5606737'), + (716, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd2jYaY9d', '5635406'), + (716, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd2jYaY9d', '5638765'), + (716, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd2jYaY9d', '5640843'), + (716, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2jYaY9d', '6045684'), + (717, 857, 'maybe', '2021-11-24 04:52:28', '2025-12-17 19:47:37', '4E5P7kX4', '4015731'), + (717, 1056, 'maybe', '2022-01-08 15:19:35', '2025-12-17 19:47:31', '4E5P7kX4', '4496622'), + (717, 1099, 'attending', '2021-11-06 15:39:02', '2025-12-17 19:47:36', '4E5P7kX4', '4602797'), + (717, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4E5P7kX4', '4637896'), + (717, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4E5P7kX4', '4642994'), + (717, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4E5P7kX4', '4642995'), + (717, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4E5P7kX4', '4642996'), + (717, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4E5P7kX4', '4642997'), + (717, 1122, 'maybe', '2021-11-24 04:53:30', '2025-12-17 19:47:37', '4E5P7kX4', '4644023'), + (717, 1126, 'attending', '2021-12-11 17:13:31', '2025-12-17 19:47:38', '4E5P7kX4', '4645687'), + (717, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4E5P7kX4', '4645698'), + (717, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4E5P7kX4', '4645704'), + (717, 1129, 'maybe', '2021-11-27 17:39:36', '2025-12-17 19:47:37', '4E5P7kX4', '4645705'), + (717, 1130, 'attending', '2021-12-04 22:36:20', '2025-12-17 19:47:37', '4E5P7kX4', '4658824'), + (717, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4E5P7kX4', '4668385'), + (717, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4E5P7kX4', '4694407'), + (717, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '4E5P7kX4', '4706262'), + (717, 1163, 'attending', '2022-01-08 15:19:41', '2025-12-17 19:47:31', '4E5P7kX4', '4724206'), + (717, 1165, 'attending', '2022-01-04 02:30:17', '2025-12-17 19:47:31', '4E5P7kX4', '4724210'), + (717, 1174, 'attending', '2022-01-15 19:45:21', '2025-12-17 19:47:31', '4E5P7kX4', '4736496'), + (717, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4E5P7kX4', '4736497'), + (717, 1177, 'attending', '2022-02-12 23:03:00', '2025-12-17 19:47:32', '4E5P7kX4', '4736499'), + (717, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4E5P7kX4', '4736500'), + (717, 1179, 'attending', '2022-02-19 20:04:42', '2025-12-17 19:47:32', '4E5P7kX4', '4736501'), + (717, 1180, 'attending', '2022-02-26 22:38:41', '2025-12-17 19:47:33', '4E5P7kX4', '4736502'), + (717, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4E5P7kX4', '4736503'), + (717, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4E5P7kX4', '4736504'), + (717, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4E5P7kX4', '4746789'), + (717, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4E5P7kX4', '4753929'), + (717, 1222, 'attending', '2022-02-16 21:51:55', '2025-12-17 19:47:32', '4E5P7kX4', '5015628'), + (717, 1232, 'attending', '2022-02-09 03:50:23', '2025-12-17 19:47:32', '4E5P7kX4', '5038850'), + (717, 1236, 'attending', '2022-02-17 22:14:02', '2025-12-17 19:47:32', '4E5P7kX4', '5045826'), + (717, 1238, 'attending', '2022-02-24 00:28:39', '2025-12-17 19:47:32', '4E5P7kX4', '5052236'), + (717, 1240, 'attending', '2022-03-16 21:10:03', '2025-12-17 19:47:33', '4E5P7kX4', '5052239'), + (717, 1242, 'attending', '2022-03-30 22:14:42', '2025-12-17 19:47:25', '4E5P7kX4', '5052241'), + (717, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4E5P7kX4', '5132533'), + (717, 1272, 'attending', '2022-03-26 20:53:25', '2025-12-17 19:47:25', '4E5P7kX4', '5186582'), + (717, 1273, 'attending', '2022-03-26 22:02:05', '2025-12-17 19:47:25', '4E5P7kX4', '5186583'), + (717, 1274, 'attending', '2022-04-02 15:33:31', '2025-12-17 19:47:26', '4E5P7kX4', '5186585'), + (717, 1276, 'attending', '2022-03-27 22:45:37', '2025-12-17 19:47:25', '4E5P7kX4', '5186820'), + (717, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4E5P7kX4', '5190437'), + (717, 1284, 'attending', '2022-04-16 15:24:55', '2025-12-17 19:47:27', '4E5P7kX4', '5195095'), + (717, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4E5P7kX4', '5215989'), + (717, 1304, 'maybe', '2022-04-06 21:49:39', '2025-12-17 19:47:26', '4E5P7kX4', '5223468'), + (717, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4E5P7kX4', '5223686'), + (717, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4E5P7kX4', '5227432'), + (717, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4E5P7kX4', '5247467'), + (717, 1360, 'attending', '2022-04-26 23:24:40', '2025-12-17 19:47:27', '4E5P7kX4', '5260197'), + (717, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4E5P7kX4', '5260800'), + (717, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4E5P7kX4', '5269930'), + (717, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4E5P7kX4', '5271448'), + (717, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4E5P7kX4', '5271449'), + (717, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4E5P7kX4', '5276469'), + (717, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', '4E5P7kX4', '5277078'), + (717, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4E5P7kX4', '5278159'), + (717, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4E5P7kX4', '5363695'), + (717, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4E5P7kX4', '5365960'), + (717, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4E5P7kX4', '5368973'), + (717, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4E5P7kX4', '5378247'), + (717, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4E5P7kX4', '5389605'), + (717, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4E5P7kX4', '5397265'), + (717, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4E5P7kX4', '5403967'), + (717, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4E5P7kX4', '5404786'), + (717, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4E5P7kX4', '5405203'), + (717, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4E5P7kX4', '5411699'), + (717, 1482, 'attending', '2022-06-25 22:25:04', '2025-12-17 19:47:19', '4E5P7kX4', '5412550'), + (717, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4E5P7kX4', '5415046'), + (717, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4E5P7kX4', '5422086'), + (717, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4E5P7kX4', '5422406'), + (717, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4E5P7kX4', '5424565'), + (717, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4E5P7kX4', '5426882'), + (717, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4E5P7kX4', '5427083'), + (717, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4E5P7kX4', '5441125'), + (717, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4E5P7kX4', '5441126'), + (717, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4E5P7kX4', '5441128'), + (717, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4E5P7kX4', '5446643'), + (717, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4E5P7kX4', '5453325'), + (717, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4E5P7kX4', '5454516'), + (717, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4E5P7kX4', '5454605'), + (717, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4E5P7kX4', '5455037'), + (717, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4E5P7kX4', '5461278'), + (717, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4E5P7kX4', '5469480'), + (717, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4E5P7kX4', '5471073'), + (717, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4E5P7kX4', '5474663'), + (717, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4E5P7kX4', '5482022'), + (717, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4E5P7kX4', '5482793'), + (717, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4E5P7kX4', '5488912'), + (717, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4E5P7kX4', '5492192'), + (717, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4E5P7kX4', '5493139'), + (717, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4E5P7kX4', '5493200'), + (717, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4E5P7kX4', '5502188'), + (717, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4E5P7kX4', '5512862'), + (717, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4E5P7kX4', '5513985'), + (717, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E5P7kX4', '6045684'), + (718, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'myx78L1d', '5186582'), + (718, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'myx78L1d', '5186583'), + (718, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'myx78L1d', '5186585'), + (718, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'myx78L1d', '5190437'), + (718, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'myx78L1d', '5195095'), + (718, 1285, 'not_attending', '2022-03-21 15:41:48', '2025-12-17 19:47:25', 'myx78L1d', '5196763'), + (718, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'myx78L1d', '5199460'), + (718, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'myx78L1d', '5215989'), + (718, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'myx78L1d', '5223686'), + (718, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'myx78L1d', '5227432'), + (718, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'myx78L1d', '5247467'), + (718, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'myx78L1d', '5260800'), + (718, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'myx78L1d', '5269930'), + (718, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'myx78L1d', '5271448'), + (718, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'myx78L1d', '5271449'), + (718, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'myx78L1d', '5276469'), + (718, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'myx78L1d', '5278159'), + (718, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'myx78L1d', '5363695'), + (718, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'myx78L1d', '5365960'), + (718, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'myx78L1d', '5368973'), + (718, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'myx78L1d', '5378247'), + (718, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'myx78L1d', '5389605'), + (718, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'myx78L1d', '5397265'), + (718, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myx78L1d', '6045684'), + (719, 507, 'attending', '2020-12-20 21:39:01', '2025-12-17 19:47:48', 'O4ZrXoe4', '3324148'), + (719, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'O4ZrXoe4', '3351539'), + (719, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'O4ZrXoe4', '3386848'), + (719, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'O4ZrXoe4', '3389527'), + (719, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'O4ZrXoe4', '3396499'), + (719, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'O4ZrXoe4', '3403650'), + (719, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'O4ZrXoe4', '3406988'), + (719, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'O4ZrXoe4', '3416576'), + (719, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'O4ZrXoe4', '3430267'), + (719, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4ZrXoe4', '6045684'), + (720, 3014, 'attending', '2025-04-05 03:45:47', '2025-12-17 19:46:20', '41qKwzE4', '7869185'), + (720, 3016, 'attending', '2025-04-18 14:21:31', '2025-12-17 19:46:20', '41qKwzE4', '7869187'), + (720, 3067, 'attending', '2025-03-31 00:17:04', '2025-12-17 19:46:19', '41qKwzE4', '7894745'), + (720, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', '41qKwzE4', '7897784'), + (720, 3075, 'attending', '2025-04-11 15:07:52', '2025-12-17 19:46:20', '41qKwzE4', '7898896'), + (720, 3076, 'attending', '2025-04-06 16:40:53', '2025-12-17 19:46:20', '41qKwzE4', '7899007'), + (720, 3078, 'attending', '2025-04-06 02:48:45', '2025-12-17 19:46:20', '41qKwzE4', '7901213'), + (720, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '41qKwzE4', '7904777'), + (720, 3090, 'attending', '2025-04-17 19:37:58', '2025-12-17 19:46:20', '41qKwzE4', '7914315'), + (720, 3094, 'attending', '2025-04-26 03:36:31', '2025-12-17 19:46:21', '41qKwzE4', '8342292'), + (720, 3095, 'attending', '2025-05-03 17:38:13', '2025-12-17 19:46:20', '41qKwzE4', '8342293'), + (720, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '41qKwzE4', '8349164'), + (720, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '41qKwzE4', '8349545'), + (720, 3106, 'maybe', '2025-04-29 01:06:01', '2025-12-17 19:46:20', '41qKwzE4', '8349552'), + (720, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '41qKwzE4', '8353584'), + (720, 3121, 'maybe', '2025-05-10 14:44:56', '2025-12-17 19:46:21', '41qKwzE4', '8362730'), + (720, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '41qKwzE4', '8368028'), + (720, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '41qKwzE4', '8368029'), + (720, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '41qKwzE4', '8388462'), + (720, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '41qKwzE4', '8400273'), + (720, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '41qKwzE4', '8400274'), + (720, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '41qKwzE4', '8400275'), + (720, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '41qKwzE4', '8400276'), + (720, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '41qKwzE4', '8404977'), + (720, 3175, 'not_attending', '2025-06-14 21:06:28', '2025-12-17 19:46:15', '41qKwzE4', '8410815'), + (720, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '41qKwzE4', '8430783'), + (720, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '41qKwzE4', '8430784'), + (720, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '41qKwzE4', '8430799'), + (720, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '41qKwzE4', '8430800'), + (720, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '41qKwzE4', '8430801'), + (720, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '41qKwzE4', '8438709'), + (720, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '41qKwzE4', '8457738'), + (720, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '41qKwzE4', '8459566'), + (720, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '41qKwzE4', '8459567'), + (720, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '41qKwzE4', '8461032'), + (720, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '41qKwzE4', '8477877'), + (720, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '41qKwzE4', '8485688'), + (721, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd3R9xke4', '4736497'), + (721, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd3R9xke4', '4736499'), + (721, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'd3R9xke4', '4736500'), + (721, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd3R9xke4', '4736503'), + (721, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd3R9xke4', '4736504'), + (721, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'd3R9xke4', '4746789'), + (721, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'd3R9xke4', '4753929'), + (721, 1213, 'attending', '2022-02-06 22:59:56', '2025-12-17 19:47:32', 'd3R9xke4', '4780760'), + (721, 1214, 'attending', '2022-02-09 13:37:00', '2025-12-17 19:47:32', 'd3R9xke4', '4780761'), + (721, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd3R9xke4', '5038850'), + (721, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd3R9xke4', '5045826'), + (721, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd3R9xke4', '5132533'), + (721, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3R9xke4', '6045684'), + (722, 2491, 'attending', '2024-03-07 05:49:17', '2025-12-17 19:46:44', 'myxqLX0d', '7050319'), + (722, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'myxqLX0d', '7057804'), + (722, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'myxqLX0d', '7072824'), + (722, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'myxqLX0d', '7074348'), + (722, 2536, 'attending', '2024-03-14 02:13:06', '2025-12-17 19:46:33', 'myxqLX0d', '7077689'), + (722, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'myxqLX0d', '7089267'), + (722, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'myxqLX0d', '7098747'), + (722, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'myxqLX0d', '7113468'), + (722, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'myxqLX0d', '7114856'), + (722, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'myxqLX0d', '7114951'), + (722, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'myxqLX0d', '7114955'), + (722, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'myxqLX0d', '7114956'), + (722, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'myxqLX0d', '7114957'), + (722, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'myxqLX0d', '7153615'), + (722, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'myxqLX0d', '7159484'), + (722, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'myxqLX0d', '7178446'), + (722, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'myxqLX0d', '7220467'), + (722, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'myxqLX0d', '7240354'), + (722, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'myxqLX0d', '7251633'), + (722, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'myxqLX0d', '7302674'), + (723, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'ydwwL1kd', '3236465'), + (723, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'ydwwL1kd', '3539916'), + (723, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'ydwwL1kd', '3539918'), + (723, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'ydwwL1kd', '3539919'), + (723, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'ydwwL1kd', '3539920'), + (723, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'ydwwL1kd', '3539921'), + (723, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ydwwL1kd', '3539927'), + (723, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ydwwL1kd', '3582734'), + (723, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ydwwL1kd', '3583262'), + (723, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydwwL1kd', '3619523'), + (723, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydwwL1kd', '3661369'), + (723, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydwwL1kd', '3674262'), + (723, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydwwL1kd', '3677402'), + (723, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydwwL1kd', '3730212'), + (723, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydwwL1kd', '3793156'), + (723, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'ydwwL1kd', '3803310'), + (723, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'ydwwL1kd', '3806392'), + (723, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwwL1kd', '6045684'), + (724, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mR6oaVgm', '4736503'), + (724, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mR6oaVgm', '4736504'), + (724, 1241, 'maybe', '2022-03-19 00:15:45', '2025-12-17 19:47:25', 'mR6oaVgm', '5052240'), + (724, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mR6oaVgm', '5132533'), + (724, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mR6oaVgm', '5186582'), + (724, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mR6oaVgm', '5186583'), + (724, 1274, 'maybe', '2022-03-19 00:14:49', '2025-12-17 19:47:26', 'mR6oaVgm', '5186585'), + (724, 1281, 'not_attending', '2022-03-19 00:14:38', '2025-12-17 19:47:27', 'mR6oaVgm', '5190437'), + (724, 1285, 'maybe', '2022-03-23 05:00:53', '2025-12-17 19:47:25', 'mR6oaVgm', '5196763'), + (724, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'mR6oaVgm', '5199460'), + (724, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mR6oaVgm', '5215989'), + (724, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mR6oaVgm', '6045684'), + (725, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4kRjJORA', '4694407'), + (725, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4kRjJORA', '4736497'), + (725, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4kRjJORA', '4736499'), + (725, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4kRjJORA', '4736500'), + (725, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kRjJORA', '4736503'), + (725, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kRjJORA', '4736504'), + (725, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4kRjJORA', '4746789'), + (725, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4kRjJORA', '4753929'), + (725, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4kRjJORA', '5038850'), + (725, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4kRjJORA', '5045826'), + (725, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kRjJORA', '5132533'), + (725, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4kRjJORA', '6045684'), + (726, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mb29oVXm', '6045684'), + (727, 1274, 'maybe', '2022-04-02 13:59:15', '2025-12-17 19:47:26', '4orXBxXA', '5186585'), + (727, 1281, 'attending', '2022-04-06 04:03:35', '2025-12-17 19:47:27', '4orXBxXA', '5190437'), + (727, 1284, 'attending', '2022-04-11 04:19:26', '2025-12-17 19:47:27', '4orXBxXA', '5195095'), + (727, 1302, 'attending', '2022-04-08 19:12:54', '2025-12-17 19:47:27', '4orXBxXA', '5220867'), + (727, 1304, 'maybe', '2022-04-06 04:03:02', '2025-12-17 19:47:26', '4orXBxXA', '5223468'), + (727, 1305, 'attending', '2022-04-10 21:47:16', '2025-12-17 19:47:27', '4orXBxXA', '5223673'), + (727, 1306, 'attending', '2022-04-04 00:23:50', '2025-12-17 19:47:26', '4orXBxXA', '5223682'), + (727, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4orXBxXA', '5223686'), + (727, 1308, 'attending', '2022-04-13 23:30:44', '2025-12-17 19:47:27', '4orXBxXA', '5226703'), + (727, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4orXBxXA', '5227432'), + (727, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4orXBxXA', '5247467'), + (727, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4orXBxXA', '5260800'), + (727, 1370, 'attending', '2022-04-29 17:54:19', '2025-12-17 19:47:28', '4orXBxXA', '5263775'), + (727, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4orXBxXA', '5269930'), + (727, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4orXBxXA', '5271448'), + (727, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4orXBxXA', '5271449'), + (727, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4orXBxXA', '5276469'), + (727, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4orXBxXA', '5278159'), + (727, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4orXBxXA', '5363695'), + (727, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4orXBxXA', '5365960'), + (727, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4orXBxXA', '5368973'), + (727, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4orXBxXA', '5378247'), + (727, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4orXBxXA', '5389605'), + (727, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4orXBxXA', '5397265'), + (727, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4orXBxXA', '5403967'), + (727, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4orXBxXA', '5404786'), + (727, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4orXBxXA', '5405203'), + (727, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '4orXBxXA', '5408794'), + (727, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4orXBxXA', '5411699'), + (727, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4orXBxXA', '5412550'), + (727, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4orXBxXA', '5415046'), + (727, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4orXBxXA', '5422086'), + (727, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4orXBxXA', '5422406'), + (727, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4orXBxXA', '5424565'), + (727, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4orXBxXA', '5426882'), + (727, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4orXBxXA', '5427083'), + (727, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4orXBxXA', '5441125'), + (727, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4orXBxXA', '5441126'), + (727, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4orXBxXA', '5441128'), + (727, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4orXBxXA', '5446643'), + (727, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4orXBxXA', '5453325'), + (727, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4orXBxXA', '5454516'), + (727, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4orXBxXA', '5454605'), + (727, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4orXBxXA', '5455037'), + (727, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4orXBxXA', '5461278'), + (727, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4orXBxXA', '5469480'), + (727, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4orXBxXA', '5471073'), + (727, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4orXBxXA', '5474663'), + (727, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4orXBxXA', '5482022'), + (727, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4orXBxXA', '5482793'), + (727, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4orXBxXA', '5488912'), + (727, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4orXBxXA', '5492192'), + (727, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4orXBxXA', '5493139'), + (727, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4orXBxXA', '5493200'), + (727, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4orXBxXA', '5502188'), + (727, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4orXBxXA', '5512862'), + (727, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4orXBxXA', '5513985'), + (727, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4orXBxXA', '6045684'), + (728, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mpGO9Nld', '7324082'), + (728, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mpGO9Nld', '7397462'), + (728, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mpGO9Nld', '7424275'), + (728, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mpGO9Nld', '7432751'), + (728, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mpGO9Nld', '7432752'), + (728, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mpGO9Nld', '7432753'), + (728, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mpGO9Nld', '7432754'), + (728, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mpGO9Nld', '7432755'), + (728, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mpGO9Nld', '7432756'), + (728, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mpGO9Nld', '7432758'), + (728, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mpGO9Nld', '7432759'), + (728, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mpGO9Nld', '7433834'), + (728, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mpGO9Nld', '7470197'), + (728, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mpGO9Nld', '7685613'), + (728, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mpGO9Nld', '7688194'), + (728, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mpGO9Nld', '7688196'), + (728, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mpGO9Nld', '7688289'), + (729, 191, 'attending', '2020-07-11 21:47:51', '2025-12-17 19:47:55', 'w4WM2Jqm', '3087259'), + (729, 193, 'attending', '2020-07-21 17:41:15', '2025-12-17 19:47:55', 'w4WM2Jqm', '3087261'), + (729, 194, 'not_attending', '2020-08-01 19:51:25', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087262'), + (729, 195, 'attending', '2020-08-03 17:35:24', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087264'), + (729, 196, 'attending', '2020-08-10 15:52:05', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087265'), + (729, 197, 'attending', '2020-08-10 15:52:10', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087266'), + (729, 198, 'not_attending', '2020-08-27 16:25:02', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087267'), + (729, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087268'), + (729, 207, 'attending', '2020-07-20 02:39:14', '2025-12-17 19:47:55', 'w4WM2Jqm', '3104807'), + (729, 212, 'not_attending', '2020-07-14 22:50:23', '2025-12-17 19:47:55', 'w4WM2Jqm', '3118517'), + (729, 217, 'attending', '2020-07-11 06:30:06', '2025-12-17 19:47:55', 'w4WM2Jqm', '3126684'), + (729, 223, 'attending', '2020-09-09 17:21:41', '2025-12-17 19:47:56', 'w4WM2Jqm', '3129980'), + (729, 224, 'attending', '2020-07-25 22:53:44', '2025-12-17 19:47:55', 'w4WM2Jqm', '3130712'), + (729, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'w4WM2Jqm', '3132817'), + (729, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'w4WM2Jqm', '3132820'), + (729, 228, 'attending', '2020-07-14 20:27:42', '2025-12-17 19:47:55', 'w4WM2Jqm', '3132821'), + (729, 230, 'attending', '2020-07-26 03:12:47', '2025-12-17 19:47:55', 'w4WM2Jqm', '3139232'), + (729, 231, 'attending', '2020-07-20 22:46:55', '2025-12-17 19:47:55', 'w4WM2Jqm', '3139762'), + (729, 233, 'attending', '2020-07-22 19:47:37', '2025-12-17 19:47:55', 'w4WM2Jqm', '3139773'), + (729, 235, 'not_attending', '2020-07-24 19:25:21', '2025-12-17 19:47:55', 'w4WM2Jqm', '3140861'), + (729, 236, 'attending', '2020-07-20 22:47:10', '2025-12-17 19:47:55', 'w4WM2Jqm', '3140873'), + (729, 238, 'attending', '2020-07-25 22:53:30', '2025-12-17 19:47:55', 'w4WM2Jqm', '3145669'), + (729, 243, 'not_attending', '2020-11-02 20:02:41', '2025-12-17 19:47:53', 'w4WM2Jqm', '3149474'), + (729, 245, 'not_attending', '2020-11-02 20:04:18', '2025-12-17 19:47:54', 'w4WM2Jqm', '3149476'), + (729, 249, 'not_attending', '2020-11-02 20:04:11', '2025-12-17 19:47:54', 'w4WM2Jqm', '3149480'), + (729, 264, 'attending', '2020-08-03 17:35:15', '2025-12-17 19:47:56', 'w4WM2Jqm', '3150735'), + (729, 269, 'attending', '2020-07-29 18:36:50', '2025-12-17 19:47:55', 'w4WM2Jqm', '3153076'), + (729, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'w4WM2Jqm', '3155321'), + (729, 272, 'attending', '2020-08-03 17:35:18', '2025-12-17 19:47:56', 'w4WM2Jqm', '3161472'), + (729, 273, 'not_attending', '2020-08-06 16:54:24', '2025-12-17 19:47:56', 'w4WM2Jqm', '3162006'), + (729, 275, 'not_attending', '2020-08-03 23:17:37', '2025-12-17 19:47:56', 'w4WM2Jqm', '3163405'), + (729, 276, 'attending', '2020-08-03 20:22:08', '2025-12-17 19:47:56', 'w4WM2Jqm', '3163408'), + (729, 277, 'attending', '2020-08-04 01:06:40', '2025-12-17 19:47:56', 'w4WM2Jqm', '3163442'), + (729, 283, 'attending', '2020-08-07 16:01:57', '2025-12-17 19:47:56', 'w4WM2Jqm', '3169555'), + (729, 284, 'attending', '2020-08-07 16:01:59', '2025-12-17 19:47:56', 'w4WM2Jqm', '3169556'), + (729, 286, 'not_attending', '2020-08-26 22:07:52', '2025-12-17 19:47:56', 'w4WM2Jqm', '3170246'), + (729, 291, 'not_attending', '2020-09-09 17:21:25', '2025-12-17 19:47:56', 'w4WM2Jqm', '3170252'), + (729, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172832'), + (729, 294, 'not_attending', '2020-08-26 22:07:56', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172833'), + (729, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172834'), + (729, 296, 'not_attending', '2020-09-09 17:21:35', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172876'), + (729, 298, 'attending', '2020-08-24 14:41:51', '2025-12-17 19:47:56', 'w4WM2Jqm', '3174556'), + (729, 301, 'attending', '2020-08-24 14:41:44', '2025-12-17 19:47:56', 'w4WM2Jqm', '3178027'), + (729, 302, 'attending', '2020-08-24 14:41:28', '2025-12-17 19:47:56', 'w4WM2Jqm', '3178028'), + (729, 311, 'attending', '2020-09-10 21:25:22', '2025-12-17 19:47:56', 'w4WM2Jqm', '3186057'), + (729, 312, 'not_attending', '2020-09-09 17:21:18', '2025-12-17 19:47:56', 'w4WM2Jqm', '3187795'), + (729, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'w4WM2Jqm', '3191735'), + (729, 318, 'not_attending', '2020-09-09 17:20:35', '2025-12-17 19:47:56', 'w4WM2Jqm', '3193885'), + (729, 321, 'attending', '2020-09-06 22:02:30', '2025-12-17 19:47:56', 'w4WM2Jqm', '3197077'), + (729, 332, 'not_attending', '2020-09-09 17:21:07', '2025-12-17 19:47:56', 'w4WM2Jqm', '3198873'), + (729, 333, 'attending', '2020-10-06 22:26:05', '2025-12-17 19:47:52', 'w4WM2Jqm', '3199782'), + (729, 334, 'attending', '2020-10-11 03:47:18', '2025-12-17 19:47:52', 'w4WM2Jqm', '3199784'), + (729, 335, 'not_attending', '2020-09-09 17:20:33', '2025-12-17 19:47:56', 'w4WM2Jqm', '3200209'), + (729, 336, 'attending', '2020-09-13 03:57:59', '2025-12-17 19:47:56', 'w4WM2Jqm', '3200495'), + (729, 337, 'not_attending', '2020-09-09 17:21:02', '2025-12-17 19:47:56', 'w4WM2Jqm', '3201771'), + (729, 339, 'not_attending', '2020-09-09 17:21:12', '2025-12-17 19:47:56', 'w4WM2Jqm', '3204469'), + (729, 340, 'attending', '2020-09-12 15:27:36', '2025-12-17 19:47:56', 'w4WM2Jqm', '3204470'), + (729, 343, 'attending', '2020-09-20 16:42:30', '2025-12-17 19:47:56', 'w4WM2Jqm', '3206759'), + (729, 345, 'attending', '2020-09-13 17:47:46', '2025-12-17 19:47:56', 'w4WM2Jqm', '3207423'), + (729, 346, 'attending', '2020-09-12 15:27:20', '2025-12-17 19:47:56', 'w4WM2Jqm', '3207515'), + (729, 347, 'attending', '2020-09-23 01:27:17', '2025-12-17 19:47:51', 'w4WM2Jqm', '3207930'), + (729, 351, 'attending', '2020-09-12 15:27:43', '2025-12-17 19:47:56', 'w4WM2Jqm', '3209257'), + (729, 352, 'attending', '2020-09-14 05:37:30', '2025-12-17 19:47:56', 'w4WM2Jqm', '3210514'), + (729, 355, 'attending', '2020-09-15 22:46:29', '2025-12-17 19:47:56', 'w4WM2Jqm', '3212571'), + (729, 356, 'attending', '2020-09-21 03:00:42', '2025-12-17 19:47:51', 'w4WM2Jqm', '3212572'), + (729, 358, 'attending', '2020-09-15 22:47:15', '2025-12-17 19:47:56', 'w4WM2Jqm', '3212579'), + (729, 362, 'attending', '2020-09-25 19:23:17', '2025-12-17 19:47:52', 'w4WM2Jqm', '3214207'), + (729, 363, 'maybe', '2020-09-16 22:39:57', '2025-12-17 19:47:52', 'w4WM2Jqm', '3217037'), + (729, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'w4WM2Jqm', '3218510'), + (729, 368, 'attending', '2020-10-01 16:25:36', '2025-12-17 19:47:52', 'w4WM2Jqm', '3221403'), + (729, 376, 'attending', '2020-10-11 03:47:55', '2025-12-17 19:47:52', 'w4WM2Jqm', '3222827'), + (729, 385, 'attending', '2020-10-01 18:00:15', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228698'), + (729, 386, 'attending', '2020-10-10 17:52:52', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228699'), + (729, 387, 'attending', '2020-10-15 22:45:42', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228700'), + (729, 388, 'not_attending', '2020-10-20 10:00:42', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228701'), + (729, 390, 'attending', '2020-10-04 22:13:42', '2025-12-17 19:47:52', 'w4WM2Jqm', '3231510'), + (729, 399, 'not_attending', '2020-11-02 20:03:45', '2025-12-17 19:47:54', 'w4WM2Jqm', '3236454'), + (729, 409, 'not_attending', '2020-11-02 20:04:35', '2025-12-17 19:47:54', 'w4WM2Jqm', '3236467'), + (729, 410, 'not_attending', '2020-11-02 20:04:14', '2025-12-17 19:47:54', 'w4WM2Jqm', '3236469'), + (729, 411, 'attending', '2020-10-11 03:50:04', '2025-12-17 19:47:52', 'w4WM2Jqm', '3236596'), + (729, 413, 'not_attending', '2020-10-20 10:00:37', '2025-12-17 19:47:52', 'w4WM2Jqm', '3236670'), + (729, 414, 'attending', '2020-10-18 22:54:44', '2025-12-17 19:47:52', 'w4WM2Jqm', '3237277'), + (729, 416, 'not_attending', '2020-10-09 23:03:22', '2025-12-17 19:47:52', 'w4WM2Jqm', '3238073'), + (729, 419, 'attending', '2020-10-11 03:49:24', '2025-12-17 19:47:52', 'w4WM2Jqm', '3242234'), + (729, 420, 'attending', '2020-10-12 23:11:39', '2025-12-17 19:47:52', 'w4WM2Jqm', '3245293'), + (729, 423, 'maybe', '2020-11-02 20:03:34', '2025-12-17 19:47:53', 'w4WM2Jqm', '3245296'), + (729, 424, 'not_attending', '2020-10-16 01:15:26', '2025-12-17 19:47:52', 'w4WM2Jqm', '3245751'), + (729, 426, 'attending', '2020-10-14 16:12:59', '2025-12-17 19:47:52', 'w4WM2Jqm', '3250232'), + (729, 432, 'not_attending', '2020-11-02 20:02:52', '2025-12-17 19:47:53', 'w4WM2Jqm', '3254416'), + (729, 433, 'not_attending', '2020-11-02 20:03:38', '2025-12-17 19:47:53', 'w4WM2Jqm', '3254417'), + (729, 434, 'not_attending', '2020-11-02 20:04:01', '2025-12-17 19:47:53', 'w4WM2Jqm', '3254418'), + (729, 438, 'attending', '2020-10-31 22:23:27', '2025-12-17 19:47:53', 'w4WM2Jqm', '3256163'), + (729, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'w4WM2Jqm', '3256168'), + (729, 441, 'attending', '2020-11-13 21:29:42', '2025-12-17 19:47:54', 'w4WM2Jqm', '3256169'), + (729, 443, 'not_attending', '2020-10-27 01:29:33', '2025-12-17 19:47:53', 'w4WM2Jqm', '3263578'), + (729, 445, 'not_attending', '2020-11-02 20:02:55', '2025-12-17 19:47:54', 'w4WM2Jqm', '3266138'), + (729, 449, 'not_attending', '2020-11-02 20:04:04', '2025-12-17 19:47:53', 'w4WM2Jqm', '3272055'), + (729, 451, 'not_attending', '2020-11-02 20:02:37', '2025-12-17 19:47:53', 'w4WM2Jqm', '3272186'), + (729, 452, 'not_attending', '2020-11-02 20:04:07', '2025-12-17 19:47:54', 'w4WM2Jqm', '3272981'), + (729, 454, 'not_attending', '2020-11-13 02:29:17', '2025-12-17 19:47:54', 'w4WM2Jqm', '3275665'), + (729, 456, 'attending', '2020-11-14 20:47:09', '2025-12-17 19:47:54', 'w4WM2Jqm', '3276428'), + (729, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'w4WM2Jqm', '3281467'), + (729, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'w4WM2Jqm', '3281470'), + (729, 463, 'attending', '2020-11-13 02:29:27', '2025-12-17 19:47:54', 'w4WM2Jqm', '3281553'), + (729, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'w4WM2Jqm', '3281829'), + (729, 467, 'attending', '2020-11-17 21:40:05', '2025-12-17 19:47:54', 'w4WM2Jqm', '3282756'), + (729, 468, 'maybe', '2020-11-21 03:48:53', '2025-12-17 19:47:54', 'w4WM2Jqm', '3285413'), + (729, 469, 'attending', '2020-11-28 00:08:42', '2025-12-17 19:47:54', 'w4WM2Jqm', '3285414'), + (729, 476, 'attending', '2020-11-18 23:49:32', '2025-12-17 19:47:54', 'w4WM2Jqm', '3286982'), + (729, 477, 'attending', '2020-12-05 01:55:18', '2025-12-17 19:47:54', 'w4WM2Jqm', '3289559'), + (729, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'w4WM2Jqm', '3297764'), + (729, 482, 'attending', '2020-11-25 00:59:28', '2025-12-17 19:47:54', 'w4WM2Jqm', '3297769'), + (729, 484, 'maybe', '2020-11-21 00:00:33', '2025-12-17 19:47:54', 'w4WM2Jqm', '3297792'), + (729, 491, 'attending', '2020-12-09 03:37:11', '2025-12-17 19:47:55', 'w4WM2Jqm', '3313533'), + (729, 492, 'attending', '2020-12-03 19:15:26', '2025-12-17 19:47:54', 'w4WM2Jqm', '3313731'), + (729, 493, 'not_attending', '2020-12-01 00:07:36', '2025-12-17 19:47:54', 'w4WM2Jqm', '3313856'), + (729, 496, 'attending', '2020-12-09 01:39:07', '2025-12-17 19:47:54', 'w4WM2Jqm', '3314269'), + (729, 497, 'attending', '2020-12-09 01:39:16', '2025-12-17 19:47:55', 'w4WM2Jqm', '3314270'), + (729, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'w4WM2Jqm', '3314909'), + (729, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'w4WM2Jqm', '3314964'), + (729, 501, 'attending', '2020-12-09 01:14:31', '2025-12-17 19:47:54', 'w4WM2Jqm', '3317834'), + (729, 502, 'attending', '2020-12-11 04:19:25', '2025-12-17 19:47:55', 'w4WM2Jqm', '3323365'), + (729, 509, 'attending', '2021-01-22 21:16:01', '2025-12-17 19:47:49', 'w4WM2Jqm', '3324232'), + (729, 513, 'not_attending', '2020-12-19 05:54:45', '2025-12-17 19:47:55', 'w4WM2Jqm', '3329383'), + (729, 526, 'attending', '2021-01-02 22:33:55', '2025-12-17 19:47:48', 'w4WM2Jqm', '3351539'), + (729, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'w4WM2Jqm', '3386848'), + (729, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'w4WM2Jqm', '3389527'), + (729, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'w4WM2Jqm', '3396499'), + (729, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'w4WM2Jqm', '3403650'), + (729, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'w4WM2Jqm', '3406988'), + (729, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'w4WM2Jqm', '3408338'), + (729, 555, 'attending', '2021-01-22 18:37:11', '2025-12-17 19:47:49', 'w4WM2Jqm', '3416576'), + (729, 568, 'attending', '2021-01-28 19:57:14', '2025-12-17 19:47:50', 'w4WM2Jqm', '3430267'), + (729, 572, 'maybe', '2021-02-06 02:11:50', '2025-12-17 19:47:50', 'w4WM2Jqm', '3435540'), + (729, 574, 'attending', '2021-02-28 04:37:06', '2025-12-17 19:47:51', 'w4WM2Jqm', '3435543'), + (729, 576, 'attending', '2021-02-02 23:37:24', '2025-12-17 19:47:50', 'w4WM2Jqm', '3438748'), + (729, 578, 'attending', '2021-02-02 20:40:19', '2025-12-17 19:47:50', 'w4WM2Jqm', '3440043'), + (729, 579, 'attending', '2021-02-03 21:21:36', '2025-12-17 19:47:50', 'w4WM2Jqm', '3440978'), + (729, 584, 'attending', '2021-02-03 21:21:34', '2025-12-17 19:47:50', 'w4WM2Jqm', '3449466'), + (729, 587, 'not_attending', '2021-02-15 21:38:31', '2025-12-17 19:47:50', 'w4WM2Jqm', '3449470'), + (729, 592, 'attending', '2021-02-22 08:58:23', '2025-12-17 19:47:50', 'w4WM2Jqm', '3467757'), + (729, 593, 'attending', '2021-02-22 08:57:55', '2025-12-17 19:47:50', 'w4WM2Jqm', '3467758'), + (729, 594, 'attending', '2021-02-28 04:36:46', '2025-12-17 19:47:51', 'w4WM2Jqm', '3467759'), + (729, 596, 'attending', '2021-03-11 01:33:20', '2025-12-17 19:47:51', 'w4WM2Jqm', '3467762'), + (729, 602, 'attending', '2021-02-13 03:49:58', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470303'), + (729, 603, 'attending', '2021-02-17 01:18:43', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470304'), + (729, 604, 'attending', '2021-02-25 08:16:05', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470305'), + (729, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470991'), + (729, 606, 'attending', '2021-02-12 00:49:13', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470998'), + (729, 614, 'attending', '2021-03-04 00:16:14', '2025-12-17 19:47:51', 'w4WM2Jqm', '3490042'), + (729, 616, 'attending', '2021-02-21 16:34:38', '2025-12-17 19:47:50', 'w4WM2Jqm', '3493478'), + (729, 617, 'attending', '2021-02-22 22:38:52', '2025-12-17 19:47:50', 'w4WM2Jqm', '3499119'), + (729, 621, 'attending', '2021-03-06 02:10:17', '2025-12-17 19:47:51', 'w4WM2Jqm', '3517815'), + (729, 622, 'not_attending', '2021-03-12 07:54:46', '2025-12-17 19:47:51', 'w4WM2Jqm', '3517816'), + (729, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'w4WM2Jqm', '3523941'), + (729, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4WM2Jqm', '3533850'), + (729, 636, 'attending', '2021-04-16 23:04:15', '2025-12-17 19:47:45', 'w4WM2Jqm', '3534720'), + (729, 637, 'attending', '2021-03-09 11:15:22', '2025-12-17 19:47:51', 'w4WM2Jqm', '3536411'), + (729, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4WM2Jqm', '3536632'), + (729, 639, 'attending', '2021-03-09 11:15:17', '2025-12-17 19:47:51', 'w4WM2Jqm', '3536656'), + (729, 640, 'attending', '2021-03-04 23:34:21', '2025-12-17 19:47:51', 'w4WM2Jqm', '3538866'), + (729, 641, 'attending', '2021-04-02 20:18:07', '2025-12-17 19:47:44', 'w4WM2Jqm', '3539916'), + (729, 642, 'attending', '2021-04-10 19:55:46', '2025-12-17 19:47:44', 'w4WM2Jqm', '3539917'), + (729, 643, 'attending', '2021-04-16 16:49:34', '2025-12-17 19:47:45', 'w4WM2Jqm', '3539918'), + (729, 644, 'not_attending', '2021-04-24 20:02:03', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539919'), + (729, 645, 'attending', '2021-05-07 11:08:38', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539920'), + (729, 646, 'attending', '2021-05-15 22:36:11', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539921'), + (729, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539922'), + (729, 648, 'attending', '2021-05-29 21:26:20', '2025-12-17 19:47:47', 'w4WM2Jqm', '3539923'), + (729, 649, 'attending', '2021-03-19 00:08:35', '2025-12-17 19:47:51', 'w4WM2Jqm', '3539927'), + (729, 663, 'attending', '2021-05-07 11:08:49', '2025-12-17 19:47:46', 'w4WM2Jqm', '3547140'), + (729, 699, 'maybe', '2021-03-29 23:02:11', '2025-12-17 19:47:44', 'w4WM2Jqm', '3572241'), + (729, 703, 'attending', '2021-04-11 22:46:46', '2025-12-17 19:47:44', 'w4WM2Jqm', '3578388'), + (729, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'w4WM2Jqm', '3582734'), + (729, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'w4WM2Jqm', '3583262'), + (729, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'w4WM2Jqm', '3619523'), + (729, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'w4WM2Jqm', '3661369'), + (729, 729, 'attending', '2021-04-28 23:15:50', '2025-12-17 19:47:46', 'w4WM2Jqm', '3668075'), + (729, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'w4WM2Jqm', '3674262'), + (729, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'w4WM2Jqm', '3677402'), + (729, 738, 'attending', '2021-04-19 17:39:58', '2025-12-17 19:47:45', 'w4WM2Jqm', '3680615'), + (729, 739, 'attending', '2021-05-07 11:08:30', '2025-12-17 19:47:46', 'w4WM2Jqm', '3680616'), + (729, 750, 'attending', '2021-04-13 21:06:16', '2025-12-17 19:47:44', 'w4WM2Jqm', '3689962'), + (729, 758, 'attending', '2021-04-19 17:40:06', '2025-12-17 19:47:45', 'w4WM2Jqm', '3713700'), + (729, 759, 'attending', '2021-04-19 17:40:04', '2025-12-17 19:47:45', 'w4WM2Jqm', '3713701'), + (729, 765, 'attending', '2021-04-22 20:10:28', '2025-12-17 19:47:45', 'w4WM2Jqm', '3720508'), + (729, 768, 'attending', '2021-04-19 22:26:18', '2025-12-17 19:47:46', 'w4WM2Jqm', '3724124'), + (729, 769, 'attending', '2021-04-19 22:26:21', '2025-12-17 19:47:46', 'w4WM2Jqm', '3724127'), + (729, 770, 'attending', '2021-04-19 22:26:23', '2025-12-17 19:47:46', 'w4WM2Jqm', '3724559'), + (729, 774, 'attending', '2021-04-20 23:36:01', '2025-12-17 19:47:45', 'w4WM2Jqm', '3730212'), + (729, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'w4WM2Jqm', '3793156'), + (729, 822, 'not_attending', '2021-06-03 01:51:55', '2025-12-17 19:47:47', 'w4WM2Jqm', '3969986'), + (729, 823, 'attending', '2021-06-19 21:20:36', '2025-12-17 19:47:48', 'w4WM2Jqm', '3974109'), + (729, 827, 'attending', '2021-06-05 21:37:51', '2025-12-17 19:47:47', 'w4WM2Jqm', '3975311'), + (729, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4WM2Jqm', '3975312'), + (729, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4WM2Jqm', '3994992'), + (729, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4WM2Jqm', '4014338'), + (729, 867, 'not_attending', '2021-06-26 22:14:33', '2025-12-17 19:47:38', 'w4WM2Jqm', '4021848'), + (729, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4WM2Jqm', '4136744'), + (729, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4WM2Jqm', '4136937'), + (729, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4WM2Jqm', '4136938'), + (729, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4WM2Jqm', '4136947'), + (729, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4WM2Jqm', '4210314'), + (729, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4WM2Jqm', '4225444'), + (729, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4WM2Jqm', '4239259'), + (729, 900, 'attending', '2021-07-24 21:35:56', '2025-12-17 19:47:40', 'w4WM2Jqm', '4240316'), + (729, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4WM2Jqm', '4240317'), + (729, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4WM2Jqm', '4240318'), + (729, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4WM2Jqm', '4240320'), + (729, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4WM2Jqm', '4250163'), + (729, 906, 'not_attending', '2021-07-05 05:49:09', '2025-12-17 19:47:39', 'w4WM2Jqm', '4253431'), + (729, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4WM2Jqm', '4275957'), + (729, 920, 'attending', '2021-07-25 21:21:56', '2025-12-17 19:47:40', 'w4WM2Jqm', '4277819'), + (729, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4WM2Jqm', '4301723'), + (729, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'w4WM2Jqm', '4302093'), + (729, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4WM2Jqm', '4304151'), + (729, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'w4WM2Jqm', '4356801'), + (729, 973, 'attending', '2021-08-18 22:02:02', '2025-12-17 19:47:42', 'w4WM2Jqm', '4366186'), + (729, 974, 'attending', '2021-08-18 22:02:12', '2025-12-17 19:47:42', 'w4WM2Jqm', '4366187'), + (729, 990, 'attending', '2021-09-01 23:50:25', '2025-12-17 19:47:43', 'w4WM2Jqm', '4420735'), + (729, 991, 'attending', '2021-09-10 22:06:38', '2025-12-17 19:47:43', 'w4WM2Jqm', '4420738'), + (729, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'w4WM2Jqm', '4420739'), + (729, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'w4WM2Jqm', '4420741'), + (729, 994, 'not_attending', '2021-10-02 13:28:34', '2025-12-17 19:47:34', 'w4WM2Jqm', '4420742'), + (729, 995, 'attending', '2021-10-09 21:40:04', '2025-12-17 19:47:34', 'w4WM2Jqm', '4420744'), + (729, 996, 'attending', '2021-10-16 19:11:10', '2025-12-17 19:47:35', 'w4WM2Jqm', '4420747'), + (729, 997, 'attending', '2021-10-23 21:16:32', '2025-12-17 19:47:35', 'w4WM2Jqm', '4420748'), + (729, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4WM2Jqm', '4420749'), + (729, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4WM2Jqm', '4461883'), + (729, 1046, 'attending', '2021-10-16 19:11:26', '2025-12-17 19:47:35', 'w4WM2Jqm', '4496611'), + (729, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4WM2Jqm', '4508342'), + (729, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4WM2Jqm', '4568602'), + (729, 1087, 'attending', '2021-10-16 19:11:22', '2025-12-17 19:47:35', 'w4WM2Jqm', '4572153'), + (729, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4WM2Jqm', '4585962'), + (729, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'w4WM2Jqm', '4596356'), + (729, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4WM2Jqm', '4598860'), + (729, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4WM2Jqm', '4598861'), + (729, 1099, 'not_attending', '2021-11-06 20:43:57', '2025-12-17 19:47:36', 'w4WM2Jqm', '4602797'), + (729, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4WM2Jqm', '4736497'), + (729, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4WM2Jqm', '4736499'), + (729, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4WM2Jqm', '4736500'), + (729, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4WM2Jqm', '4736503'), + (729, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4WM2Jqm', '4736504'), + (729, 1185, 'attending', '2022-01-09 04:56:54', '2025-12-17 19:47:31', 'w4WM2Jqm', '4746789'), + (729, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'w4WM2Jqm', '4753929'), + (729, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4WM2Jqm', '5038850'), + (729, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4WM2Jqm', '5045826'), + (729, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4WM2Jqm', '5132533'), + (729, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4WM2Jqm', '5186582'), + (729, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4WM2Jqm', '5186583'), + (729, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4WM2Jqm', '5186585'), + (729, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4WM2Jqm', '5190437'), + (729, 1284, 'attending', '2022-04-16 22:30:49', '2025-12-17 19:47:27', 'w4WM2Jqm', '5195095'), + (729, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4WM2Jqm', '5215989'), + (729, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'w4WM2Jqm', '5223686'), + (729, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'w4WM2Jqm', '5247467'), + (729, 1354, 'not_attending', '2022-04-21 18:07:01', '2025-12-17 19:47:27', 'w4WM2Jqm', '5252569'), + (729, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'w4WM2Jqm', '5260800'), + (729, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'w4WM2Jqm', '5269930'), + (729, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'w4WM2Jqm', '5271448'), + (729, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'w4WM2Jqm', '5271449'), + (729, 1380, 'attending', '2022-05-28 22:51:33', '2025-12-17 19:47:30', 'w4WM2Jqm', '5271450'), + (729, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'w4WM2Jqm', '5276469'), + (729, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'w4WM2Jqm', '5278159'), + (729, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'w4WM2Jqm', '5363695'), + (729, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'w4WM2Jqm', '5365960'), + (729, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'w4WM2Jqm', '5368973'), + (729, 1423, 'attending', '2022-06-15 19:26:24', '2025-12-17 19:47:17', 'w4WM2Jqm', '5375727'), + (729, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'w4WM2Jqm', '5378247'), + (729, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'w4WM2Jqm', '5389605'), + (729, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'w4WM2Jqm', '5397265'), + (729, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'w4WM2Jqm', '5403967'), + (729, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'w4WM2Jqm', '5404786'), + (729, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'w4WM2Jqm', '5405203'), + (729, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'w4WM2Jqm', '5411699'), + (729, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'w4WM2Jqm', '5412550'), + (729, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'w4WM2Jqm', '5415046'), + (729, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'w4WM2Jqm', '5422086'), + (729, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'w4WM2Jqm', '5422406'), + (729, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'w4WM2Jqm', '5424565'), + (729, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'w4WM2Jqm', '5426882'), + (729, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'w4WM2Jqm', '5427083'), + (729, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'w4WM2Jqm', '5441125'), + (729, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'w4WM2Jqm', '5441126'), + (729, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'w4WM2Jqm', '5441128'), + (729, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'w4WM2Jqm', '5441131'), + (729, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'w4WM2Jqm', '5441132'), + (729, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'w4WM2Jqm', '5446643'), + (729, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'w4WM2Jqm', '5453325'), + (729, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'w4WM2Jqm', '5454516'), + (729, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'w4WM2Jqm', '5454605'), + (729, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'w4WM2Jqm', '5455037'), + (729, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'w4WM2Jqm', '5461278'), + (729, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'w4WM2Jqm', '5469480'), + (729, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'w4WM2Jqm', '5471073'), + (729, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'w4WM2Jqm', '5474663'), + (729, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'w4WM2Jqm', '5482022'), + (729, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'w4WM2Jqm', '5482793'), + (729, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'w4WM2Jqm', '5488912'), + (729, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'w4WM2Jqm', '5492192'), + (729, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'w4WM2Jqm', '5493139'), + (729, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'w4WM2Jqm', '5493200'), + (729, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'w4WM2Jqm', '5502188'), + (729, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'w4WM2Jqm', '5505059'), + (729, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'w4WM2Jqm', '5509055'), + (729, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'w4WM2Jqm', '5512862'), + (729, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'w4WM2Jqm', '5513985'), + (729, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'w4WM2Jqm', '5519981'), + (729, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'w4WM2Jqm', '5522550'), + (729, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'w4WM2Jqm', '5534683'), + (729, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'w4WM2Jqm', '5537735'), + (729, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'w4WM2Jqm', '5540859'), + (729, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'w4WM2Jqm', '5546619'), + (729, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'w4WM2Jqm', '5555245'), + (729, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'w4WM2Jqm', '5557747'), + (729, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'w4WM2Jqm', '5560255'), + (729, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'w4WM2Jqm', '5562906'), + (729, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'w4WM2Jqm', '5600604'), + (729, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'w4WM2Jqm', '5605544'), + (729, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'w4WM2Jqm', '5606737'), + (729, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'w4WM2Jqm', '5630960'), + (729, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'w4WM2Jqm', '5630961'), + (729, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'w4WM2Jqm', '5630962'), + (729, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'w4WM2Jqm', '5630966'), + (729, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'w4WM2Jqm', '5630967'), + (729, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'w4WM2Jqm', '5630968'), + (729, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'w4WM2Jqm', '5635406'), + (729, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'w4WM2Jqm', '5638765'), + (729, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'w4WM2Jqm', '5640097'), + (729, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'w4WM2Jqm', '5640843'), + (729, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'w4WM2Jqm', '5641521'), + (729, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'w4WM2Jqm', '5642818'), + (729, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'w4WM2Jqm', '5652395'), + (729, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'w4WM2Jqm', '5670445'), + (729, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'w4WM2Jqm', '5671637'), + (729, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'w4WM2Jqm', '5672329'), + (729, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'w4WM2Jqm', '5674057'), + (729, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'w4WM2Jqm', '5674060'), + (729, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'w4WM2Jqm', '5677461'), + (729, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'w4WM2Jqm', '5698046'), + (729, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'w4WM2Jqm', '5699760'), + (729, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'w4WM2Jqm', '5741601'), + (729, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'w4WM2Jqm', '5763458'), + (729, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'w4WM2Jqm', '5774172'), + (729, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'w4WM2Jqm', '5818247'), + (729, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'w4WM2Jqm', '5819471'), + (729, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'w4WM2Jqm', '5827739'), + (729, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'w4WM2Jqm', '5844306'), + (729, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'w4WM2Jqm', '5850159'), + (729, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'w4WM2Jqm', '5858999'), + (729, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'w4WM2Jqm', '5871984'), + (729, 1858, 'attending', '2023-01-15 00:42:42', '2025-12-17 19:47:05', 'w4WM2Jqm', '5875044'), + (729, 1860, 'attending', '2023-01-15 00:42:57', '2025-12-17 19:47:05', 'w4WM2Jqm', '5876309'), + (729, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'w4WM2Jqm', '5876354'), + (729, 1864, 'attending', '2023-01-19 17:03:28', '2025-12-17 19:47:05', 'w4WM2Jqm', '5879675'), + (729, 1865, 'attending', '2023-01-23 21:10:59', '2025-12-17 19:47:06', 'w4WM2Jqm', '5879676'), + (729, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'w4WM2Jqm', '5880939'), + (729, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'w4WM2Jqm', '5880940'), + (729, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'w4WM2Jqm', '5880942'), + (729, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'w4WM2Jqm', '5880943'), + (729, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'w4WM2Jqm', '5887890'), + (729, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'w4WM2Jqm', '5888598'), + (729, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'w4WM2Jqm', '5893260'), + (729, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'w4WM2Jqm', '5899826'), + (729, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'w4WM2Jqm', '5900199'), + (729, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'w4WM2Jqm', '5900200'), + (729, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'w4WM2Jqm', '5900202'), + (729, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'w4WM2Jqm', '5900203'), + (729, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'w4WM2Jqm', '5901108'), + (729, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'w4WM2Jqm', '5901126'), + (729, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'w4WM2Jqm', '5909655'), + (729, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'w4WM2Jqm', '5910522'), + (729, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'w4WM2Jqm', '5910526'), + (729, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'w4WM2Jqm', '5910528'), + (729, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'w4WM2Jqm', '5916219'), + (729, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'w4WM2Jqm', '5936234'), + (729, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'w4WM2Jqm', '5958351'), + (729, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'w4WM2Jqm', '5959751'), + (729, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'w4WM2Jqm', '5959755'), + (729, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'w4WM2Jqm', '5960055'), + (729, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'w4WM2Jqm', '5961684'), + (729, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'w4WM2Jqm', '5962132'), + (729, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'w4WM2Jqm', '5962133'), + (729, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'w4WM2Jqm', '5962134'), + (729, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'w4WM2Jqm', '5962317'), + (729, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'w4WM2Jqm', '5962318'), + (729, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'w4WM2Jqm', '5965933'), + (729, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'w4WM2Jqm', '5967014'), + (729, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'w4WM2Jqm', '5972815'), + (729, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'w4WM2Jqm', '5974016'), + (729, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'w4WM2Jqm', '5975052'), + (729, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'w4WM2Jqm', '5975054'), + (729, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'w4WM2Jqm', '5981515'), + (729, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'w4WM2Jqm', '5993516'), + (729, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'w4WM2Jqm', '5998939'), + (729, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'w4WM2Jqm', '6028191'), + (729, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'w4WM2Jqm', '6040066'), + (729, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'w4WM2Jqm', '6042717'), + (729, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'w4WM2Jqm', '6044838'), + (729, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'w4WM2Jqm', '6044839'), + (729, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WM2Jqm', '6045684'), + (729, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'w4WM2Jqm', '6050104'), + (729, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'w4WM2Jqm', '6053195'), + (729, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'w4WM2Jqm', '6053198'), + (729, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'w4WM2Jqm', '6056085'), + (729, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'w4WM2Jqm', '6056916'), + (729, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'w4WM2Jqm', '6059290'), + (729, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'w4WM2Jqm', '6060328'), + (729, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'w4WM2Jqm', '6061037'), + (729, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'w4WM2Jqm', '6061039'), + (729, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'w4WM2Jqm', '6065813'), + (729, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'w4WM2Jqm', '6067245'), + (729, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'w4WM2Jqm', '6068094'), + (729, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'w4WM2Jqm', '6068252'), + (729, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'w4WM2Jqm', '6068253'), + (729, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'w4WM2Jqm', '6068254'), + (729, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'w4WM2Jqm', '6068280'), + (729, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'w4WM2Jqm', '6069093'), + (729, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'w4WM2Jqm', '6072528'), + (729, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'w4WM2Jqm', '6075556'), + (729, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'w4WM2Jqm', '6079840'), + (729, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'w4WM2Jqm', '6083398'), + (729, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'w4WM2Jqm', '6093504'), + (729, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'w4WM2Jqm', '6097414'), + (729, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'w4WM2Jqm', '6097442'), + (729, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'w4WM2Jqm', '6097684'), + (729, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'w4WM2Jqm', '6098762'), + (729, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'w4WM2Jqm', '6101361'), + (729, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'w4WM2Jqm', '6101362'), + (729, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'w4WM2Jqm', '6107314'), + (729, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'w4WM2Jqm', '6120034'), + (729, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'w4WM2Jqm', '6136733'), + (729, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'w4WM2Jqm', '6137989'), + (729, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'w4WM2Jqm', '6150864'), + (729, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'w4WM2Jqm', '6155491'), + (729, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'w4WM2Jqm', '6164417'), + (729, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'w4WM2Jqm', '6166388'), + (729, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'w4WM2Jqm', '6176439'), + (729, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'w4WM2Jqm', '6182410'), + (729, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'w4WM2Jqm', '6185812'), + (729, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'w4WM2Jqm', '6187651'), + (729, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'w4WM2Jqm', '6187963'), + (729, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'w4WM2Jqm', '6187964'), + (729, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'w4WM2Jqm', '6187966'), + (729, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'w4WM2Jqm', '6187967'), + (729, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'w4WM2Jqm', '6187969'), + (729, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'w4WM2Jqm', '6334878'), + (729, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'w4WM2Jqm', '6337236'), + (729, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'w4WM2Jqm', '6337970'), + (729, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'w4WM2Jqm', '6338308'), + (729, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'w4WM2Jqm', '6341710'), + (729, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'w4WM2Jqm', '6342044'), + (729, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'w4WM2Jqm', '6342298'), + (729, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'w4WM2Jqm', '6343294'), + (729, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'w4WM2Jqm', '6347034'), + (729, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'w4WM2Jqm', '6347056'), + (729, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'w4WM2Jqm', '6353830'), + (729, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'w4WM2Jqm', '6353831'), + (729, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'w4WM2Jqm', '6357867'), + (729, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'w4WM2Jqm', '6358652'), + (729, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'w4WM2Jqm', '6361709'), + (729, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'w4WM2Jqm', '6361710'), + (729, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'w4WM2Jqm', '6361711'), + (729, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'w4WM2Jqm', '6361712'), + (729, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'w4WM2Jqm', '6361713'), + (729, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'w4WM2Jqm', '6382573'), + (729, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'w4WM2Jqm', '6388604'), + (729, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'w4WM2Jqm', '6394629'), + (729, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'w4WM2Jqm', '6394631'), + (729, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'w4WM2Jqm', '6440863'), + (729, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'w4WM2Jqm', '6445440'), + (729, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'w4WM2Jqm', '6453951'), + (729, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'w4WM2Jqm', '6461696'), + (729, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'w4WM2Jqm', '6462129'), + (729, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'w4WM2Jqm', '6463218'), + (729, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'w4WM2Jqm', '6472181'), + (729, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'w4WM2Jqm', '6482693'), + (729, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'w4WM2Jqm', '6484200'), + (729, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'w4WM2Jqm', '6484680'), + (729, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'w4WM2Jqm', '6507741'), + (729, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'w4WM2Jqm', '6514659'), + (729, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'w4WM2Jqm', '6514660'), + (729, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'w4WM2Jqm', '6519103'), + (729, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'w4WM2Jqm', '6535681'), + (729, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'w4WM2Jqm', '6584747'), + (729, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'w4WM2Jqm', '6587097'), + (729, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'w4WM2Jqm', '6609022'), + (729, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'w4WM2Jqm', '6632757'), + (729, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'w4WM2Jqm', '6644187'), + (729, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'w4WM2Jqm', '6648951'), + (729, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'w4WM2Jqm', '6648952'), + (729, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'w4WM2Jqm', '6655401'), + (729, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'w4WM2Jqm', '6661585'), + (729, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'w4WM2Jqm', '6661588'), + (729, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'w4WM2Jqm', '6661589'), + (729, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'w4WM2Jqm', '6699906'), + (729, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'w4WM2Jqm', '6699913'), + (729, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'w4WM2Jqm', '6701109'), + (729, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'w4WM2Jqm', '6705219'), + (729, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'w4WM2Jqm', '6710153'), + (729, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'w4WM2Jqm', '6711552'), + (729, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'w4WM2Jqm', '6711553'), + (729, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'w4WM2Jqm', '6722688'), + (729, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'w4WM2Jqm', '6730620'), + (729, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'w4WM2Jqm', '6740364'), + (729, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'w4WM2Jqm', '6743829'), + (729, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'w4WM2Jqm', '7030380'), + (729, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'w4WM2Jqm', '7033677'), + (729, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'w4WM2Jqm', '7044715'), + (729, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'w4WM2Jqm', '7050318'), + (729, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'w4WM2Jqm', '7050319'), + (729, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'w4WM2Jqm', '7050322'), + (729, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'w4WM2Jqm', '7057804'), + (729, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'w4WM2Jqm', '7072824'), + (729, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'w4WM2Jqm', '7074348'), + (729, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'w4WM2Jqm', '7074364'), + (729, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'w4WM2Jqm', '7089267'), + (729, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'w4WM2Jqm', '7098747'), + (729, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'w4WM2Jqm', '7113468'), + (729, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'w4WM2Jqm', '7114856'), + (729, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'w4WM2Jqm', '7114951'), + (729, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'w4WM2Jqm', '7114955'), + (729, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'w4WM2Jqm', '7114956'), + (729, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'w4WM2Jqm', '7114957'), + (729, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'w4WM2Jqm', '7159484'), + (729, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'w4WM2Jqm', '7178446'), + (729, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'w4WM2Jqm', '7220467'), + (729, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'w4WM2Jqm', '7240354'), + (729, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'w4WM2Jqm', '7251633'), + (729, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'w4WM2Jqm', '7324073'), + (729, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'w4WM2Jqm', '7324074'), + (729, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'w4WM2Jqm', '7324075'), + (729, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'w4WM2Jqm', '7324078'), + (729, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'w4WM2Jqm', '7324082'), + (729, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'w4WM2Jqm', '7331457'), + (729, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'w4WM2Jqm', '7363643'), + (729, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'w4WM2Jqm', '7368606'), + (729, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'w4WM2Jqm', '7397462'), + (729, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'w4WM2Jqm', '7424275'), + (729, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'w4WM2Jqm', '7432751'), + (729, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'w4WM2Jqm', '7432752'), + (729, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'w4WM2Jqm', '7432753'), + (729, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432754'), + (729, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432755'), + (729, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432756'), + (729, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432758'), + (729, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432759'), + (729, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'w4WM2Jqm', '7433834'), + (729, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'w4WM2Jqm', '7470197'), + (729, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'w4WM2Jqm', '7685613'), + (729, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'w4WM2Jqm', '7688194'), + (729, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'w4WM2Jqm', '7688196'), + (729, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'w4WM2Jqm', '7688289'), + (729, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'w4WM2Jqm', '7692763'), + (729, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'w4WM2Jqm', '7697552'), + (729, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'w4WM2Jqm', '7699878'), + (729, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'w4WM2Jqm', '7704043'), + (729, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'w4WM2Jqm', '7712467'), + (729, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'w4WM2Jqm', '7713585'), + (729, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'w4WM2Jqm', '7713586'), + (729, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'w4WM2Jqm', '7738518'), + (729, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'w4WM2Jqm', '7750636'), + (729, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'w4WM2Jqm', '7796540'), + (729, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'w4WM2Jqm', '7796541'), + (729, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'w4WM2Jqm', '7796542'), + (729, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'w4WM2Jqm', '7825913'), + (729, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'w4WM2Jqm', '7826209'), + (729, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'w4WM2Jqm', '7834742'), + (729, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'w4WM2Jqm', '7842108'), + (729, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'w4WM2Jqm', '7842902'), + (729, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'w4WM2Jqm', '7842903'), + (729, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'w4WM2Jqm', '7842904'), + (729, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'w4WM2Jqm', '7842905'), + (729, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'w4WM2Jqm', '7855719'), + (729, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'w4WM2Jqm', '7860683'), + (729, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'w4WM2Jqm', '7860684'), + (729, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'w4WM2Jqm', '7866095'), + (729, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'w4WM2Jqm', '7869170'), + (729, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'w4WM2Jqm', '7869188'), + (729, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'w4WM2Jqm', '7869201'), + (729, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'w4WM2Jqm', '7877465'), + (729, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'w4WM2Jqm', '7888250'), + (729, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'w4WM2Jqm', '7904777'), + (729, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'w4WM2Jqm', '8349164'), + (729, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'w4WM2Jqm', '8349545'), + (729, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'w4WM2Jqm', '8368028'), + (729, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'w4WM2Jqm', '8368029'), + (729, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'w4WM2Jqm', '8388462'), + (729, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'w4WM2Jqm', '8400273'), + (729, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'w4WM2Jqm', '8400275'), + (729, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'w4WM2Jqm', '8400276'), + (729, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'w4WM2Jqm', '8404977'), + (729, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'w4WM2Jqm', '8430783'), + (729, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'w4WM2Jqm', '8430784'), + (729, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'w4WM2Jqm', '8430799'), + (729, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'w4WM2Jqm', '8430800'), + (729, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'w4WM2Jqm', '8430801'), + (729, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'w4WM2Jqm', '8438709'), + (729, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'w4WM2Jqm', '8457738'), + (729, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'w4WM2Jqm', '8459566'), + (729, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'w4WM2Jqm', '8459567'), + (729, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'w4WM2Jqm', '8461032'), + (729, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'w4WM2Jqm', '8477877'), + (729, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'w4WM2Jqm', '8485688'), + (729, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'w4WM2Jqm', '8490587'), + (729, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'w4WM2Jqm', '8493552'), + (729, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'w4WM2Jqm', '8493553'), + (729, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'w4WM2Jqm', '8493554'), + (729, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'w4WM2Jqm', '8493555'), + (729, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'w4WM2Jqm', '8493556'), + (729, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'w4WM2Jqm', '8493557'), + (729, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'w4WM2Jqm', '8493558'), + (729, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'w4WM2Jqm', '8493559'), + (729, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'w4WM2Jqm', '8493560'), + (729, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'w4WM2Jqm', '8493561'), + (729, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'w4WM2Jqm', '8493572'), + (729, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'w4WM2Jqm', '8540725'), + (729, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'w4WM2Jqm', '8555421'), + (730, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oeVrMm', '6045684'), + (731, 3278, 'attending', '2025-09-30 15:00:37', '2025-12-17 19:46:13', 'Arneo6wA', '8535533'), + (731, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'Arneo6wA', '8540725'), + (731, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Arneo6wA', '8555421'), + (733, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kxlDVzd', '4736503'), + (733, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kxlDVzd', '4736504'), + (733, 1212, 'not_attending', '2022-03-01 05:06:31', '2025-12-17 19:47:32', '4kxlDVzd', '4780759'), + (733, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kxlDVzd', '5132533'), + (733, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4kxlDVzd', '5186582'), + (733, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4kxlDVzd', '5186583'), + (733, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4kxlDVzd', '5186585'), + (733, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4kxlDVzd', '5190437'), + (733, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', '4kxlDVzd', '5196763'), + (733, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '4kxlDVzd', '5199460'), + (733, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4kxlDVzd', '5215989'), + (733, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4kxlDVzd', '5223686'), + (733, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4kxlDVzd', '5227432'), + (733, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kxlDVzd', '6045684'), + (734, 991, 'not_attending', '2021-09-11 21:32:48', '2025-12-17 19:47:43', 'mRBnX7Qm', '4420738'), + (734, 992, 'not_attending', '2021-09-13 06:12:01', '2025-12-17 19:47:34', 'mRBnX7Qm', '4420739'), + (734, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'mRBnX7Qm', '4420741'), + (734, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'mRBnX7Qm', '4420744'), + (734, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mRBnX7Qm', '4420747'), + (734, 1023, 'not_attending', '2021-09-10 01:51:52', '2025-12-17 19:47:43', 'mRBnX7Qm', '4461883'), + (734, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'mRBnX7Qm', '4508342'), + (734, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mRBnX7Qm', '4568602'), + (734, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mRBnX7Qm', '4572153'), + (734, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mRBnX7Qm', '4585962'), + (734, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mRBnX7Qm', '4596356'), + (734, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'mRBnX7Qm', '4598860'), + (734, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'mRBnX7Qm', '4598861'), + (734, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'mRBnX7Qm', '4602797'), + (734, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'mRBnX7Qm', '4637896'), + (734, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mRBnX7Qm', '4642994'), + (734, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mRBnX7Qm', '4642995'), + (734, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mRBnX7Qm', '4642996'), + (734, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mRBnX7Qm', '4642997'), + (734, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mRBnX7Qm', '4645687'), + (734, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mRBnX7Qm', '4645698'), + (734, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mRBnX7Qm', '4645704'), + (734, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mRBnX7Qm', '4645705'), + (734, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mRBnX7Qm', '4668385'), + (734, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mRBnX7Qm', '6045684'), + (735, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXBv5Bvd', '6045684'), + (736, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'LmpVXGB4', '3470305'), + (736, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'LmpVXGB4', '3470991'), + (736, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'LmpVXGB4', '3517815'), + (736, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'LmpVXGB4', '3523941'), + (736, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'LmpVXGB4', '3533850'), + (736, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'LmpVXGB4', '3536632'), + (736, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'LmpVXGB4', '3536656'), + (736, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'LmpVXGB4', '3539916'), + (736, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'LmpVXGB4', '3539917'), + (736, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'LmpVXGB4', '3539918'), + (736, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'LmpVXGB4', '3539919'), + (736, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'LmpVXGB4', '3539920'), + (736, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'LmpVXGB4', '3539921'), + (736, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'LmpVXGB4', '3539922'), + (736, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'LmpVXGB4', '3539923'), + (736, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpVXGB4', '6045684'), + (737, 441, 'not_attending', '2020-11-08 05:29:16', '2025-12-17 19:47:54', 'Qd5zVgOm', '3256169'), + (737, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'Qd5zVgOm', '3266138'), + (737, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'Qd5zVgOm', '3281467'), + (737, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Qd5zVgOm', '3281470'), + (737, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'Qd5zVgOm', '3281829'), + (737, 468, 'attending', '2020-11-13 23:02:34', '2025-12-17 19:47:54', 'Qd5zVgOm', '3285413'), + (737, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Qd5zVgOm', '3285414'), + (737, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Qd5zVgOm', '3297764'), + (737, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Qd5zVgOm', '3313856'), + (737, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Qd5zVgOm', '3314909'), + (737, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Qd5zVgOm', '3314964'), + (737, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'Qd5zVgOm', '3323365'), + (737, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Qd5zVgOm', '3329383'), + (737, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Qd5zVgOm', '3351539'), + (737, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Qd5zVgOm', '3386848'), + (737, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Qd5zVgOm', '3389527'), + (737, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Qd5zVgOm', '3396499'), + (737, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Qd5zVgOm', '3403650'), + (737, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Qd5zVgOm', '3406988'), + (737, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Qd5zVgOm', '3416576'), + (737, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Qd5zVgOm', '3426074'), + (737, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd5zVgOm', '6045684'), + (738, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dw83JB0m', '5195095'), + (738, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dw83JB0m', '5223686'), + (738, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dw83JB0m', '5227432'), + (738, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dw83JB0m', '5247467'), + (738, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dw83JB0m', '5260800'), + (738, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dw83JB0m', '5269930'), + (738, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dw83JB0m', '5271448'), + (738, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dw83JB0m', '5271449'), + (738, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dw83JB0m', '5276469'), + (738, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dw83JB0m', '5278159'), + (738, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dw83JB0m', '6045684'), + (739, 919, 'not_attending', '2021-07-15 00:59:54', '2025-12-17 19:47:39', 'AnbbDwwA', '4275957'), + (739, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AnbbDwwA', '6045684'), + (740, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Pm7X27pA', '3539919'), + (740, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm7X27pA', '3539920'), + (740, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm7X27pA', '3539921'), + (740, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Pm7X27pA', '3539922'), + (740, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Pm7X27pA', '3539923'), + (740, 671, 'not_attending', '2021-07-17 19:52:36', '2025-12-17 19:47:39', 'Pm7X27pA', '3547149'), + (740, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'Pm7X27pA', '3583262'), + (740, 744, 'not_attending', '2021-06-12 20:33:00', '2025-12-17 19:47:47', 'Pm7X27pA', '3680624'), + (740, 746, 'attending', '2021-06-30 17:39:26', '2025-12-17 19:47:39', 'Pm7X27pA', '3680626'), + (740, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7X27pA', '3730212'), + (740, 775, 'attending', '2021-04-21 08:25:59', '2025-12-17 19:47:45', 'Pm7X27pA', '3731062'), + (740, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7X27pA', '3793156'), + (740, 805, 'not_attending', '2021-06-14 18:15:47', '2025-12-17 19:47:47', 'Pm7X27pA', '3804777'), + (740, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Pm7X27pA', '3974109'), + (740, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7X27pA', '3975311'), + (740, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Pm7X27pA', '3975312'), + (740, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7X27pA', '3994992'), + (740, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Pm7X27pA', '4014338'), + (740, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'Pm7X27pA', '4021848'), + (740, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Pm7X27pA', '4136744'), + (740, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Pm7X27pA', '4136937'), + (740, 871, 'attending', '2021-07-07 13:07:31', '2025-12-17 19:47:39', 'Pm7X27pA', '4136938'), + (740, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Pm7X27pA', '4136947'), + (740, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Pm7X27pA', '4210314'), + (740, 887, 'attending', '2021-07-14 20:35:40', '2025-12-17 19:47:39', 'Pm7X27pA', '4225444'), + (740, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Pm7X27pA', '4239259'), + (740, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Pm7X27pA', '4240316'), + (740, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Pm7X27pA', '4240317'), + (740, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Pm7X27pA', '4240318'), + (740, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Pm7X27pA', '4240320'), + (740, 904, 'maybe', '2021-07-06 08:50:06', '2025-12-17 19:47:39', 'Pm7X27pA', '4241594'), + (740, 905, 'attending', '2021-07-06 08:49:05', '2025-12-17 19:47:39', 'Pm7X27pA', '4250163'), + (740, 909, 'maybe', '2021-07-10 18:29:14', '2025-12-17 19:47:39', 'Pm7X27pA', '4258187'), + (740, 910, 'maybe', '2021-07-13 20:40:42', '2025-12-17 19:47:39', 'Pm7X27pA', '4258189'), + (740, 919, 'not_attending', '2021-07-17 19:52:32', '2025-12-17 19:47:39', 'Pm7X27pA', '4275957'), + (740, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Pm7X27pA', '4277819'), + (740, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Pm7X27pA', '4301723'), + (740, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'Pm7X27pA', '4302093'), + (740, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Pm7X27pA', '4304151'), + (740, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Pm7X27pA', '4356801'), + (740, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Pm7X27pA', '4366186'), + (740, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Pm7X27pA', '4366187'), + (740, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Pm7X27pA', '4420735'), + (740, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Pm7X27pA', '4420738'), + (740, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Pm7X27pA', '4420739'), + (740, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Pm7X27pA', '4420741'), + (740, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Pm7X27pA', '4420744'), + (740, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Pm7X27pA', '4420747'), + (740, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Pm7X27pA', '4420748'), + (740, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Pm7X27pA', '4420749'), + (740, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Pm7X27pA', '4461883'), + (740, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Pm7X27pA', '4508342'), + (740, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7X27pA', '6045684'), + (741, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4736497'), + (741, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4736499'), + (741, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4736500'), + (741, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm7Q1o9Y4', '4736503'), + (741, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm7Q1o9Y4', '4736504'), + (741, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm7Q1o9Y4', '4746789'), + (741, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4753929'), + (741, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm7Q1o9Y4', '5038850'), + (741, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm7Q1o9Y4', '5045826'), + (741, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm7Q1o9Y4', '5132533'), + (741, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm7Q1o9Y4', '6045684'), + (742, 975, 'maybe', '2021-08-16 17:44:22', '2025-12-17 19:47:42', 'QdJbkbPd', '4367341'), + (742, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJbkbPd', '6045684'), + (743, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', 'AYwOGa9d', '5426882'), + (743, 1513, 'attending', '2022-07-16 01:15:13', '2025-12-17 19:47:19', 'AYwOGa9d', '5441125'), + (743, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AYwOGa9d', '5441126'), + (743, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AYwOGa9d', '5441128'), + (743, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AYwOGa9d', '5446643'), + (743, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'AYwOGa9d', '5449068'), + (743, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AYwOGa9d', '5453325'), + (743, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AYwOGa9d', '5454516'), + (743, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AYwOGa9d', '5454605'), + (743, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AYwOGa9d', '5455037'), + (743, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AYwOGa9d', '5461278'), + (743, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AYwOGa9d', '5469480'), + (743, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AYwOGa9d', '5471073'), + (743, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AYwOGa9d', '5474663'), + (743, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AYwOGa9d', '5482022'), + (743, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AYwOGa9d', '5482793'), + (743, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AYwOGa9d', '5488912'), + (743, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AYwOGa9d', '5492192'), + (743, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AYwOGa9d', '5493139'), + (743, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AYwOGa9d', '5493200'), + (743, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AYwOGa9d', '5502188'), + (743, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYwOGa9d', '6045684'), + (744, 398, 'attending', '2021-01-20 17:38:30', '2025-12-17 19:47:49', 'rdOrzKW4', '3236453'), + (744, 555, 'not_attending', '2021-01-22 16:37:59', '2025-12-17 19:47:49', 'rdOrzKW4', '3416576'), + (744, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'rdOrzKW4', '3426074'), + (744, 565, 'attending', '2021-01-27 16:58:05', '2025-12-17 19:47:49', 'rdOrzKW4', '3426083'), + (744, 566, 'attending', '2021-01-30 17:35:35', '2025-12-17 19:47:49', 'rdOrzKW4', '3427928'), + (744, 568, 'attending', '2021-01-27 22:40:22', '2025-12-17 19:47:50', 'rdOrzKW4', '3430267'), + (744, 569, 'not_attending', '2021-01-25 07:02:07', '2025-12-17 19:47:49', 'rdOrzKW4', '3432673'), + (744, 571, 'attending', '2021-02-12 21:48:48', '2025-12-17 19:47:50', 'rdOrzKW4', '3435539'), + (744, 578, 'attending', '2021-02-03 18:55:57', '2025-12-17 19:47:50', 'rdOrzKW4', '3440043'), + (744, 579, 'attending', '2021-02-06 23:56:21', '2025-12-17 19:47:50', 'rdOrzKW4', '3440978'), + (744, 581, 'attending', '2021-02-01 23:59:23', '2025-12-17 19:47:50', 'rdOrzKW4', '3445029'), + (744, 585, 'attending', '2021-02-08 20:28:20', '2025-12-17 19:47:50', 'rdOrzKW4', '3449468'), + (744, 586, 'attending', '2021-02-10 22:59:27', '2025-12-17 19:47:50', 'rdOrzKW4', '3449469'), + (744, 587, 'attending', '2021-02-15 19:46:25', '2025-12-17 19:47:50', 'rdOrzKW4', '3449470'), + (744, 588, 'attending', '2021-02-14 21:01:44', '2025-12-17 19:47:50', 'rdOrzKW4', '3449471'), + (744, 590, 'attending', '2021-02-11 21:54:30', '2025-12-17 19:47:50', 'rdOrzKW4', '3459150'), + (744, 592, 'attending', '2021-02-24 22:12:06', '2025-12-17 19:47:50', 'rdOrzKW4', '3467757'), + (744, 598, 'attending', '2021-02-09 22:24:25', '2025-12-17 19:47:50', 'rdOrzKW4', '3468003'), + (744, 602, 'attending', '2021-02-12 21:47:01', '2025-12-17 19:47:50', 'rdOrzKW4', '3470303'), + (744, 603, 'attending', '2021-02-21 00:52:38', '2025-12-17 19:47:50', 'rdOrzKW4', '3470304'), + (744, 604, 'attending', '2021-02-24 22:12:58', '2025-12-17 19:47:50', 'rdOrzKW4', '3470305'), + (744, 605, 'attending', '2021-02-15 00:40:56', '2025-12-17 19:47:50', 'rdOrzKW4', '3470991'), + (744, 621, 'not_attending', '2021-03-07 00:08:40', '2025-12-17 19:47:51', 'rdOrzKW4', '3517815'), + (744, 622, 'attending', '2021-03-13 06:40:12', '2025-12-17 19:47:51', 'rdOrzKW4', '3517816'), + (744, 623, 'attending', '2021-02-25 18:09:53', '2025-12-17 19:47:50', 'rdOrzKW4', '3523941'), + (744, 628, 'not_attending', '2021-03-15 21:46:02', '2025-12-17 19:47:51', 'rdOrzKW4', '3533305'), + (744, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOrzKW4', '3533850'), + (744, 635, 'not_attending', '2021-04-06 18:15:29', '2025-12-17 19:47:44', 'rdOrzKW4', '3534719'), + (744, 637, 'attending', '2021-03-01 17:33:22', '2025-12-17 19:47:51', 'rdOrzKW4', '3536411'), + (744, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOrzKW4', '3536632'), + (744, 639, 'attending', '2021-03-01 19:41:07', '2025-12-17 19:47:51', 'rdOrzKW4', '3536656'), + (744, 641, 'not_attending', '2021-03-31 23:07:26', '2025-12-17 19:47:44', 'rdOrzKW4', '3539916'), + (744, 642, 'attending', '2021-04-08 16:46:39', '2025-12-17 19:47:44', 'rdOrzKW4', '3539917'), + (744, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOrzKW4', '3539918'), + (744, 644, 'not_attending', '2021-04-24 01:18:20', '2025-12-17 19:47:46', 'rdOrzKW4', '3539919'), + (744, 645, 'not_attending', '2021-05-04 21:36:08', '2025-12-17 19:47:46', 'rdOrzKW4', '3539920'), + (744, 646, 'not_attending', '2021-05-13 22:41:24', '2025-12-17 19:47:46', 'rdOrzKW4', '3539921'), + (744, 647, 'not_attending', '2021-05-29 19:27:51', '2025-12-17 19:47:47', 'rdOrzKW4', '3539922'), + (744, 648, 'not_attending', '2021-05-29 22:49:36', '2025-12-17 19:47:47', 'rdOrzKW4', '3539923'), + (744, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOrzKW4', '3539927'), + (744, 682, 'not_attending', '2021-03-20 21:12:08', '2025-12-17 19:47:51', 'rdOrzKW4', '3548806'), + (744, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOrzKW4', '3582734'), + (744, 707, 'attending', '2021-04-25 19:48:56', '2025-12-17 19:47:46', 'rdOrzKW4', '3583262'), + (744, 713, 'attending', '2021-04-01 22:51:22', '2025-12-17 19:47:44', 'rdOrzKW4', '3604061'), + (744, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOrzKW4', '3619523'), + (744, 724, 'attending', '2021-05-04 21:36:21', '2025-12-17 19:47:46', 'rdOrzKW4', '3661369'), + (744, 731, 'not_attending', '2021-04-06 18:15:12', '2025-12-17 19:47:44', 'rdOrzKW4', '3674262'), + (744, 735, 'maybe', '2021-04-06 18:15:06', '2025-12-17 19:47:46', 'rdOrzKW4', '3677402'), + (744, 759, 'attending', '2021-04-22 20:24:38', '2025-12-17 19:47:45', 'rdOrzKW4', '3713701'), + (744, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOrzKW4', '3730212'), + (744, 777, 'not_attending', '2021-05-01 18:01:06', '2025-12-17 19:47:46', 'rdOrzKW4', '3746248'), + (744, 788, 'attending', '2021-05-07 22:30:20', '2025-12-17 19:47:46', 'rdOrzKW4', '3781975'), + (744, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'rdOrzKW4', '3793156'), + (744, 805, 'attending', '2021-06-13 17:35:56', '2025-12-17 19:47:47', 'rdOrzKW4', '3804777'), + (744, 823, 'not_attending', '2021-06-19 18:32:25', '2025-12-17 19:47:48', 'rdOrzKW4', '3974109'), + (744, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'rdOrzKW4', '3975311'), + (744, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'rdOrzKW4', '3975312'), + (744, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOrzKW4', '3994992'), + (744, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'rdOrzKW4', '4014338'), + (744, 867, 'not_attending', '2021-06-26 21:22:46', '2025-12-17 19:47:38', 'rdOrzKW4', '4021848'), + (744, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'rdOrzKW4', '4136744'), + (744, 870, 'not_attending', '2021-07-03 18:17:28', '2025-12-17 19:47:39', 'rdOrzKW4', '4136937'), + (744, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'rdOrzKW4', '4136938'), + (744, 872, 'attending', '2021-07-19 22:58:34', '2025-12-17 19:47:40', 'rdOrzKW4', '4136947'), + (744, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOrzKW4', '4210314'), + (744, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'rdOrzKW4', '4225444'), + (744, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdOrzKW4', '4239259'), + (744, 900, 'attending', '2021-07-24 16:11:44', '2025-12-17 19:47:40', 'rdOrzKW4', '4240316'), + (744, 901, 'not_attending', '2021-07-31 02:00:36', '2025-12-17 19:47:40', 'rdOrzKW4', '4240317'), + (744, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdOrzKW4', '4240318'), + (744, 903, 'attending', '2021-08-14 00:23:17', '2025-12-17 19:47:42', 'rdOrzKW4', '4240320'), + (744, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdOrzKW4', '4250163'), + (744, 919, 'attending', '2021-07-16 15:57:18', '2025-12-17 19:47:39', 'rdOrzKW4', '4275957'), + (744, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdOrzKW4', '4277819'), + (744, 924, 'not_attending', '2021-07-22 02:21:38', '2025-12-17 19:47:40', 'rdOrzKW4', '4297137'), + (744, 926, 'attending', '2021-08-18 22:49:27', '2025-12-17 19:47:42', 'rdOrzKW4', '4297211'), + (744, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdOrzKW4', '4301723'), + (744, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'rdOrzKW4', '4302093'), + (744, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOrzKW4', '4304151'), + (744, 967, 'attending', '2021-08-19 19:12:36', '2025-12-17 19:47:42', 'rdOrzKW4', '4356164'), + (744, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOrzKW4', '4356801'), + (744, 973, 'attending', '2021-08-15 21:33:26', '2025-12-17 19:47:42', 'rdOrzKW4', '4366186'), + (744, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdOrzKW4', '4366187'), + (744, 976, 'attending', '2021-08-19 15:41:24', '2025-12-17 19:47:42', 'rdOrzKW4', '4373933'), + (744, 990, 'attending', '2021-09-01 18:19:04', '2025-12-17 19:47:43', 'rdOrzKW4', '4420735'), + (744, 991, 'attending', '2021-09-11 17:31:24', '2025-12-17 19:47:43', 'rdOrzKW4', '4420738'), + (744, 992, 'not_attending', '2021-09-18 07:00:08', '2025-12-17 19:47:34', 'rdOrzKW4', '4420739'), + (744, 993, 'attending', '2021-09-22 00:56:56', '2025-12-17 19:47:34', 'rdOrzKW4', '4420741'), + (744, 994, 'attending', '2021-10-02 02:31:48', '2025-12-17 19:47:34', 'rdOrzKW4', '4420742'), + (744, 995, 'not_attending', '2021-10-09 16:47:52', '2025-12-17 19:47:34', 'rdOrzKW4', '4420744'), + (744, 996, 'attending', '2021-10-16 18:02:32', '2025-12-17 19:47:35', 'rdOrzKW4', '4420747'), + (744, 997, 'attending', '2021-10-22 20:48:10', '2025-12-17 19:47:35', 'rdOrzKW4', '4420748'), + (744, 998, 'attending', '2021-10-30 20:52:53', '2025-12-17 19:47:36', 'rdOrzKW4', '4420749'), + (744, 1020, 'attending', '2021-09-13 21:55:51', '2025-12-17 19:47:43', 'rdOrzKW4', '4451787'), + (744, 1022, 'attending', '2021-09-15 17:59:07', '2025-12-17 19:47:43', 'rdOrzKW4', '4458628'), + (744, 1023, 'not_attending', '2021-09-13 20:45:43', '2025-12-17 19:47:43', 'rdOrzKW4', '4461883'), + (744, 1032, 'not_attending', '2021-09-26 16:40:24', '2025-12-17 19:47:34', 'rdOrzKW4', '4473825'), + (744, 1036, 'attending', '2021-09-22 20:42:29', '2025-12-17 19:47:34', 'rdOrzKW4', '4493166'), + (744, 1064, 'not_attending', '2021-09-21 23:30:25', '2025-12-17 19:47:34', 'rdOrzKW4', '4499526'), + (744, 1065, 'attending', '2021-09-21 23:30:29', '2025-12-17 19:47:34', 'rdOrzKW4', '4505800'), + (744, 1067, 'attending', '2021-09-24 15:30:12', '2025-12-17 19:47:34', 'rdOrzKW4', '4508342'), + (744, 1072, 'attending', '2021-10-03 06:12:33', '2025-12-17 19:47:34', 'rdOrzKW4', '4516287'), + (744, 1074, 'attending', '2021-09-29 19:41:54', '2025-12-17 19:47:34', 'rdOrzKW4', '4528953'), + (744, 1080, 'attending', '2021-10-11 00:09:12', '2025-12-17 19:47:34', 'rdOrzKW4', '4564599'), + (744, 1081, 'attending', '2021-10-11 00:09:55', '2025-12-17 19:47:34', 'rdOrzKW4', '4564602'), + (744, 1086, 'attending', '2021-10-14 20:16:55', '2025-12-17 19:47:34', 'rdOrzKW4', '4568602'), + (744, 1087, 'not_attending', '2021-10-16 18:02:24', '2025-12-17 19:47:35', 'rdOrzKW4', '4572153'), + (744, 1088, 'attending', '2021-10-16 04:22:19', '2025-12-17 19:47:35', 'rdOrzKW4', '4574382'), + (744, 1091, 'attending', '2021-10-17 02:16:51', '2025-12-17 19:47:35', 'rdOrzKW4', '4575829'), + (744, 1093, 'attending', '2021-10-22 18:43:17', '2025-12-17 19:47:35', 'rdOrzKW4', '4585962'), + (744, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'rdOrzKW4', '4596356'), + (744, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'rdOrzKW4', '4598860'), + (744, 1098, 'not_attending', '2021-11-10 20:26:48', '2025-12-17 19:47:36', 'rdOrzKW4', '4598861'), + (744, 1099, 'not_attending', '2021-11-06 14:58:39', '2025-12-17 19:47:36', 'rdOrzKW4', '4602797'), + (744, 1105, 'attending', '2021-11-10 20:26:33', '2025-12-17 19:47:36', 'rdOrzKW4', '4618567'), + (744, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'rdOrzKW4', '4637896'), + (744, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'rdOrzKW4', '4642994'), + (744, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'rdOrzKW4', '4642995'), + (744, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'rdOrzKW4', '4642996'), + (744, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'rdOrzKW4', '4642997'), + (744, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'rdOrzKW4', '4645687'), + (744, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'rdOrzKW4', '4645698'), + (744, 1128, 'not_attending', '2021-11-19 18:58:48', '2025-12-17 19:47:37', 'rdOrzKW4', '4645704'), + (744, 1129, 'not_attending', '2021-11-27 22:37:31', '2025-12-17 19:47:37', 'rdOrzKW4', '4645705'), + (744, 1130, 'not_attending', '2021-12-01 02:39:55', '2025-12-17 19:47:37', 'rdOrzKW4', '4658824'), + (744, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'rdOrzKW4', '4668385'), + (744, 1149, 'not_attending', '2021-12-09 04:32:30', '2025-12-17 19:47:38', 'rdOrzKW4', '4694407'), + (744, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'rdOrzKW4', '4706262'), + (744, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'rdOrzKW4', '4736497'), + (744, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'rdOrzKW4', '4736499'), + (744, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'rdOrzKW4', '4736500'), + (744, 1181, 'attending', '2022-03-05 02:55:52', '2025-12-17 19:47:33', 'rdOrzKW4', '4736503'), + (744, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'rdOrzKW4', '4736504'), + (744, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'rdOrzKW4', '4746789'), + (744, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'rdOrzKW4', '4753929'), + (744, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'rdOrzKW4', '5038850'), + (744, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'rdOrzKW4', '5045826'), + (744, 1259, 'maybe', '2022-03-01 19:53:17', '2025-12-17 19:47:33', 'rdOrzKW4', '5132533'), + (744, 1272, 'not_attending', '2022-03-19 18:06:05', '2025-12-17 19:47:25', 'rdOrzKW4', '5186582'), + (744, 1273, 'not_attending', '2022-03-26 21:34:14', '2025-12-17 19:47:25', 'rdOrzKW4', '5186583'), + (744, 1274, 'attending', '2022-04-02 17:46:08', '2025-12-17 19:47:26', 'rdOrzKW4', '5186585'), + (744, 1281, 'not_attending', '2022-04-09 20:31:08', '2025-12-17 19:47:27', 'rdOrzKW4', '5190437'), + (744, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'rdOrzKW4', '5195095'), + (744, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'rdOrzKW4', '5215989'), + (744, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'rdOrzKW4', '5223686'), + (744, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'rdOrzKW4', '5227432'), + (744, 1311, 'not_attending', '2022-04-08 02:44:27', '2025-12-17 19:47:27', 'rdOrzKW4', '5231430'), + (744, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'rdOrzKW4', '5231461'), + (744, 1346, 'not_attending', '2022-04-23 15:05:08', '2025-12-17 19:47:27', 'rdOrzKW4', '5247467'), + (744, 1362, 'not_attending', '2022-04-30 22:23:51', '2025-12-17 19:47:28', 'rdOrzKW4', '5260800'), + (744, 1374, 'not_attending', '2022-05-07 15:33:10', '2025-12-17 19:47:28', 'rdOrzKW4', '5269930'), + (744, 1378, 'not_attending', '2022-05-14 22:23:06', '2025-12-17 19:47:29', 'rdOrzKW4', '5271448'), + (744, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'rdOrzKW4', '5271449'), + (744, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'rdOrzKW4', '5276469'), + (744, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'rdOrzKW4', '5278159'), + (744, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'rdOrzKW4', '5363695'), + (744, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'rdOrzKW4', '5365960'), + (744, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'rdOrzKW4', '5368973'), + (744, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'rdOrzKW4', '5378247'), + (744, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'rdOrzKW4', '5389605'), + (744, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'rdOrzKW4', '5397265'), + (744, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'rdOrzKW4', '5403967'), + (744, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'rdOrzKW4', '5404786'), + (744, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'rdOrzKW4', '5405203'), + (744, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'rdOrzKW4', '5411699'), + (744, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'rdOrzKW4', '5412550'), + (744, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'rdOrzKW4', '5415046'), + (744, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'rdOrzKW4', '5422086'), + (744, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'rdOrzKW4', '5422406'), + (744, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'rdOrzKW4', '5424565'), + (744, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'rdOrzKW4', '5426882'), + (744, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'rdOrzKW4', '5427083'), + (744, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'rdOrzKW4', '5441125'), + (744, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'rdOrzKW4', '5441126'), + (744, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'rdOrzKW4', '5441128'), + (744, 1517, 'attending', '2022-08-27 17:39:16', '2025-12-17 19:47:23', 'rdOrzKW4', '5441130'), + (744, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'rdOrzKW4', '5441131'), + (744, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'rdOrzKW4', '5441132'), + (744, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'rdOrzKW4', '5446643'), + (744, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'rdOrzKW4', '5453325'), + (744, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'rdOrzKW4', '5454516'), + (744, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'rdOrzKW4', '5454605'), + (744, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'rdOrzKW4', '5455037'), + (744, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'rdOrzKW4', '5461278'), + (744, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'rdOrzKW4', '5469480'), + (744, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'rdOrzKW4', '5471073'), + (744, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'rdOrzKW4', '5474663'), + (744, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'rdOrzKW4', '5482022'), + (744, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'rdOrzKW4', '5482793'), + (744, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'rdOrzKW4', '5488912'), + (744, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'rdOrzKW4', '5492192'), + (744, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'rdOrzKW4', '5493139'), + (744, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'rdOrzKW4', '5493200'), + (744, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'rdOrzKW4', '5502188'), + (744, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'rdOrzKW4', '5505059'), + (744, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'rdOrzKW4', '5509055'), + (744, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'rdOrzKW4', '5512862'), + (744, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'rdOrzKW4', '5513985'), + (744, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'rdOrzKW4', '5519981'), + (744, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'rdOrzKW4', '5522550'), + (744, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'rdOrzKW4', '5534683'), + (744, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'rdOrzKW4', '5537735'), + (744, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'rdOrzKW4', '5540859'), + (744, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'rdOrzKW4', '5546619'), + (744, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'rdOrzKW4', '5555245'), + (744, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'rdOrzKW4', '5557747'), + (744, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'rdOrzKW4', '5560255'), + (744, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'rdOrzKW4', '5562906'), + (744, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'rdOrzKW4', '5600604'), + (744, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'rdOrzKW4', '5605544'), + (744, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'rdOrzKW4', '5606737'), + (744, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'rdOrzKW4', '5630960'), + (744, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'rdOrzKW4', '5630961'), + (744, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'rdOrzKW4', '5630962'), + (744, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'rdOrzKW4', '5630966'), + (744, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'rdOrzKW4', '5630967'), + (744, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'rdOrzKW4', '5630968'), + (744, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'rdOrzKW4', '5635406'), + (744, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'rdOrzKW4', '5638765'), + (744, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'rdOrzKW4', '5640097'), + (744, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'rdOrzKW4', '5640843'), + (744, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'rdOrzKW4', '5641521'), + (744, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'rdOrzKW4', '5642818'), + (744, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'rdOrzKW4', '5652395'), + (744, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'rdOrzKW4', '5670445'), + (744, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'rdOrzKW4', '5671637'), + (744, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'rdOrzKW4', '5672329'), + (744, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'rdOrzKW4', '5674057'), + (744, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'rdOrzKW4', '5674060'), + (744, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'rdOrzKW4', '5677461'), + (744, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'rdOrzKW4', '5698046'), + (744, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'rdOrzKW4', '5699760'), + (744, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'rdOrzKW4', '5741601'), + (744, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'rdOrzKW4', '5763458'), + (744, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'rdOrzKW4', '5774172'), + (744, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'rdOrzKW4', '5818247'), + (744, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'rdOrzKW4', '5819471'), + (744, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'rdOrzKW4', '5827739'), + (744, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'rdOrzKW4', '5844306'), + (744, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'rdOrzKW4', '5850159'), + (744, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'rdOrzKW4', '5858999'), + (744, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'rdOrzKW4', '5871984'), + (744, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'rdOrzKW4', '5876354'), + (744, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'rdOrzKW4', '5880939'), + (744, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'rdOrzKW4', '5880940'), + (744, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'rdOrzKW4', '5880942'), + (744, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'rdOrzKW4', '5880943'), + (744, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'rdOrzKW4', '5887890'), + (744, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'rdOrzKW4', '5888598'), + (744, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'rdOrzKW4', '5893260'), + (744, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'rdOrzKW4', '5899826'), + (744, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'rdOrzKW4', '5900199'), + (744, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'rdOrzKW4', '5900200'), + (744, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'rdOrzKW4', '5900202'), + (744, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'rdOrzKW4', '5900203'), + (744, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'rdOrzKW4', '5901108'), + (744, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'rdOrzKW4', '5901126'), + (744, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'rdOrzKW4', '5909655'), + (744, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'rdOrzKW4', '5910522'), + (744, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'rdOrzKW4', '5910526'), + (744, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'rdOrzKW4', '5910528'), + (744, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'rdOrzKW4', '5916219'), + (744, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'rdOrzKW4', '5936234'), + (744, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'rdOrzKW4', '5958351'), + (744, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'rdOrzKW4', '5959751'), + (744, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'rdOrzKW4', '5959755'), + (744, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'rdOrzKW4', '5960055'), + (744, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'rdOrzKW4', '5961684'), + (744, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'rdOrzKW4', '5962132'), + (744, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'rdOrzKW4', '5962133'), + (744, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'rdOrzKW4', '5962134'), + (744, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'rdOrzKW4', '5962317'), + (744, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'rdOrzKW4', '5962318'), + (744, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'rdOrzKW4', '5965933'), + (744, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'rdOrzKW4', '5967014'), + (744, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'rdOrzKW4', '5972763'), + (744, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'rdOrzKW4', '5972815'), + (744, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'rdOrzKW4', '5974016'), + (744, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'rdOrzKW4', '5975052'), + (744, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'rdOrzKW4', '5975054'), + (744, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'rdOrzKW4', '5981515'), + (744, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'rdOrzKW4', '5993516'), + (744, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'rdOrzKW4', '5998939'), + (744, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'rdOrzKW4', '6028191'), + (744, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'rdOrzKW4', '6040066'), + (744, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'rdOrzKW4', '6042717'), + (744, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'rdOrzKW4', '6044838'), + (744, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'rdOrzKW4', '6044839'), + (744, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOrzKW4', '6045684'), + (744, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'rdOrzKW4', '6050104'), + (744, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'rdOrzKW4', '6053195'), + (744, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'rdOrzKW4', '6053198'), + (744, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'rdOrzKW4', '6056085'), + (744, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'rdOrzKW4', '6056916'), + (744, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'rdOrzKW4', '6059290'), + (744, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'rdOrzKW4', '6060328'), + (744, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'rdOrzKW4', '6061037'), + (744, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'rdOrzKW4', '6061039'), + (744, 2020, 'not_attending', '2023-04-14 17:15:22', '2025-12-17 19:46:59', 'rdOrzKW4', '6065813'), + (744, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'rdOrzKW4', '6067245'), + (744, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'rdOrzKW4', '6068094'), + (744, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'rdOrzKW4', '6068252'), + (744, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'rdOrzKW4', '6068253'), + (744, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'rdOrzKW4', '6068254'), + (744, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'rdOrzKW4', '6068280'), + (744, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'rdOrzKW4', '6069093'), + (744, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'rdOrzKW4', '6072528'), + (744, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'rdOrzKW4', '6075556'), + (744, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'rdOrzKW4', '6079840'), + (744, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'rdOrzKW4', '6083398'), + (744, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'rdOrzKW4', '6093504'), + (744, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'rdOrzKW4', '6097414'), + (744, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'rdOrzKW4', '6097442'), + (744, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'rdOrzKW4', '6097684'), + (744, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'rdOrzKW4', '6098762'), + (744, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'rdOrzKW4', '6101362'), + (744, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'rdOrzKW4', '6107314'), + (745, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AnbXzrLA', '6045684'), + (746, 245, 'not_attending', '2020-12-01 21:33:56', '2025-12-17 19:47:54', 'oAQp8RZm', '3149476'), + (746, 247, 'not_attending', '2020-12-15 01:40:46', '2025-12-17 19:47:48', 'oAQp8RZm', '3149478'), + (746, 251, 'not_attending', '2021-01-26 18:53:29', '2025-12-17 19:47:49', 'oAQp8RZm', '3149482'), + (746, 398, 'not_attending', '2021-01-19 13:40:02', '2025-12-17 19:47:49', 'oAQp8RZm', '3236453'), + (746, 399, 'attending', '2020-11-12 00:48:46', '2025-12-17 19:47:54', 'oAQp8RZm', '3236454'), + (746, 409, 'not_attending', '2020-12-08 23:30:02', '2025-12-17 19:47:54', 'oAQp8RZm', '3236467'), + (746, 460, 'not_attending', '2020-11-19 23:35:23', '2025-12-17 19:47:54', 'oAQp8RZm', '3281468'), + (746, 464, 'attending', '2020-11-20 00:09:43', '2025-12-17 19:47:54', 'oAQp8RZm', '3281554'), + (746, 465, 'not_attending', '2020-11-27 04:32:55', '2025-12-17 19:47:54', 'oAQp8RZm', '3281555'), + (746, 468, 'attending', '2020-11-19 23:43:23', '2025-12-17 19:47:54', 'oAQp8RZm', '3285413'), + (746, 469, 'not_attending', '2020-11-27 04:32:38', '2025-12-17 19:47:54', 'oAQp8RZm', '3285414'), + (746, 477, 'attending', '2020-12-01 21:33:41', '2025-12-17 19:47:54', 'oAQp8RZm', '3289559'), + (746, 481, 'not_attending', '2020-11-23 17:45:24', '2025-12-17 19:47:54', 'oAQp8RZm', '3297764'), + (746, 482, 'attending', '2020-11-23 17:45:36', '2025-12-17 19:47:54', 'oAQp8RZm', '3297769'), + (746, 488, 'not_attending', '2020-12-01 21:34:06', '2025-12-17 19:47:54', 'oAQp8RZm', '3312757'), + (746, 490, 'not_attending', '2020-12-08 23:30:08', '2025-12-17 19:47:54', 'oAQp8RZm', '3313532'), + (746, 492, 'not_attending', '2020-12-03 20:38:37', '2025-12-17 19:47:54', 'oAQp8RZm', '3313731'), + (746, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'oAQp8RZm', '3313856'), + (746, 495, 'not_attending', '2020-12-07 21:39:40', '2025-12-17 19:47:54', 'oAQp8RZm', '3314009'), + (746, 499, 'not_attending', '2020-12-08 23:30:40', '2025-12-17 19:47:55', 'oAQp8RZm', '3314909'), + (746, 500, 'not_attending', '2020-12-17 02:47:39', '2025-12-17 19:47:55', 'oAQp8RZm', '3314964'), + (746, 502, 'not_attending', '2020-12-08 23:30:43', '2025-12-17 19:47:55', 'oAQp8RZm', '3323365'), + (746, 503, 'not_attending', '2020-12-15 01:40:16', '2025-12-17 19:47:55', 'oAQp8RZm', '3323366'), + (746, 504, 'not_attending', '2020-12-15 01:40:24', '2025-12-17 19:47:55', 'oAQp8RZm', '3323368'), + (746, 505, 'not_attending', '2020-12-20 15:45:30', '2025-12-17 19:47:55', 'oAQp8RZm', '3323369'), + (746, 506, 'attending', '2020-12-13 15:59:19', '2025-12-17 19:47:55', 'oAQp8RZm', '3323375'), + (746, 507, 'not_attending', '2020-12-15 01:40:56', '2025-12-17 19:47:48', 'oAQp8RZm', '3324148'), + (746, 508, 'attending', '2021-01-13 14:36:10', '2025-12-17 19:47:48', 'oAQp8RZm', '3324231'), + (746, 509, 'not_attending', '2021-01-13 18:25:31', '2025-12-17 19:47:49', 'oAQp8RZm', '3324232'), + (746, 510, 'not_attending', '2021-01-29 06:06:16', '2025-12-17 19:47:49', 'oAQp8RZm', '3324233'), + (746, 511, 'not_attending', '2020-12-13 16:07:06', '2025-12-17 19:47:55', 'oAQp8RZm', '3325335'), + (746, 512, 'maybe', '2020-12-13 16:06:57', '2025-12-17 19:47:55', 'oAQp8RZm', '3325336'), + (746, 513, 'attending', '2020-12-13 16:07:35', '2025-12-17 19:47:55', 'oAQp8RZm', '3329383'), + (746, 517, 'attending', '2020-12-28 23:46:12', '2025-12-17 19:47:48', 'oAQp8RZm', '3337137'), + (746, 518, 'not_attending', '2021-01-05 21:02:27', '2025-12-17 19:47:48', 'oAQp8RZm', '3337138'), + (746, 519, 'not_attending', '2020-12-15 01:40:59', '2025-12-17 19:47:55', 'oAQp8RZm', '3337448'), + (746, 520, 'not_attending', '2020-12-20 15:45:34', '2025-12-17 19:47:55', 'oAQp8RZm', '3337453'), + (746, 521, 'not_attending', '2020-12-28 23:42:45', '2025-12-17 19:47:48', 'oAQp8RZm', '3337454'), + (746, 525, 'not_attending', '2020-12-20 15:45:50', '2025-12-17 19:47:48', 'oAQp8RZm', '3350467'), + (746, 526, 'attending', '2020-12-28 23:45:43', '2025-12-17 19:47:48', 'oAQp8RZm', '3351539'), + (746, 529, 'attending', '2021-01-05 21:02:12', '2025-12-17 19:47:48', 'oAQp8RZm', '3364568'), + (746, 532, 'not_attending', '2021-01-08 05:28:50', '2025-12-17 19:47:48', 'oAQp8RZm', '3381412'), + (746, 534, 'not_attending', '2021-01-08 05:29:08', '2025-12-17 19:47:48', 'oAQp8RZm', '3384157'), + (746, 535, 'not_attending', '2021-01-08 05:29:00', '2025-12-17 19:47:48', 'oAQp8RZm', '3384729'), + (746, 536, 'not_attending', '2021-01-08 05:29:13', '2025-12-17 19:47:48', 'oAQp8RZm', '3386848'), + (746, 537, 'not_attending', '2021-01-08 05:29:04', '2025-12-17 19:47:48', 'oAQp8RZm', '3387153'), + (746, 538, 'attending', '2021-01-13 18:24:49', '2025-12-17 19:47:48', 'oAQp8RZm', '3388151'), + (746, 539, 'not_attending', '2021-01-13 18:24:39', '2025-12-17 19:47:48', 'oAQp8RZm', '3389158'), + (746, 540, 'not_attending', '2021-01-08 23:51:55', '2025-12-17 19:47:48', 'oAQp8RZm', '3389527'), + (746, 541, 'not_attending', '2021-01-08 23:51:51', '2025-12-17 19:47:48', 'oAQp8RZm', '3391683'), + (746, 542, 'not_attending', '2021-01-10 22:21:16', '2025-12-17 19:47:48', 'oAQp8RZm', '3395013'), + (746, 543, 'not_attending', '2021-01-13 14:36:12', '2025-12-17 19:47:48', 'oAQp8RZm', '3396499'), + (746, 544, 'attending', '2021-01-12 18:17:32', '2025-12-17 19:47:48', 'oAQp8RZm', '3396500'), + (746, 545, 'not_attending', '2021-01-20 01:13:21', '2025-12-17 19:47:49', 'oAQp8RZm', '3396502'), + (746, 546, 'not_attending', '2021-01-21 06:07:00', '2025-12-17 19:47:49', 'oAQp8RZm', '3396503'), + (746, 547, 'attending', '2021-01-13 18:25:24', '2025-12-17 19:47:49', 'oAQp8RZm', '3396504'), + (746, 548, 'not_attending', '2021-01-13 14:36:23', '2025-12-17 19:47:48', 'oAQp8RZm', '3403650'), + (746, 549, 'not_attending', '2021-01-13 14:37:03', '2025-12-17 19:47:48', 'oAQp8RZm', '3406988'), + (746, 550, 'attending', '2021-01-13 14:36:36', '2025-12-17 19:47:48', 'oAQp8RZm', '3407018'), + (746, 551, 'not_attending', '2021-01-13 18:25:12', '2025-12-17 19:47:49', 'oAQp8RZm', '3407219'), + (746, 552, 'not_attending', '2021-01-13 18:24:42', '2025-12-17 19:47:48', 'oAQp8RZm', '3407225'), + (746, 554, 'not_attending', '2021-01-14 00:37:06', '2025-12-17 19:47:49', 'oAQp8RZm', '3408338'), + (746, 555, 'not_attending', '2021-01-19 13:39:33', '2025-12-17 19:47:49', 'oAQp8RZm', '3416576'), + (746, 556, 'not_attending', '2021-01-26 18:53:31', '2025-12-17 19:47:49', 'oAQp8RZm', '3417170'), + (746, 557, 'not_attending', '2021-01-19 13:39:56', '2025-12-17 19:47:49', 'oAQp8RZm', '3418748'), + (746, 558, 'not_attending', '2021-01-19 13:40:10', '2025-12-17 19:47:49', 'oAQp8RZm', '3418925'), + (746, 559, 'not_attending', '2021-01-26 18:53:42', '2025-12-17 19:47:49', 'oAQp8RZm', '3421439'), + (746, 560, 'not_attending', '2021-01-21 06:07:04', '2025-12-17 19:47:49', 'oAQp8RZm', '3421715'), + (746, 563, 'not_attending', '2021-01-24 16:04:02', '2025-12-17 19:47:49', 'oAQp8RZm', '3425913'), + (746, 564, 'not_attending', '2021-01-24 16:03:58', '2025-12-17 19:47:49', 'oAQp8RZm', '3426074'), + (746, 565, 'not_attending', '2021-01-26 18:53:35', '2025-12-17 19:47:49', 'oAQp8RZm', '3426083'), + (746, 566, 'not_attending', '2021-01-26 18:53:51', '2025-12-17 19:47:49', 'oAQp8RZm', '3427928'), + (746, 567, 'not_attending', '2021-01-26 18:53:55', '2025-12-17 19:47:50', 'oAQp8RZm', '3428895'), + (746, 568, 'not_attending', '2021-01-29 06:06:22', '2025-12-17 19:47:50', 'oAQp8RZm', '3430267'), + (746, 569, 'not_attending', '2021-01-26 18:53:38', '2025-12-17 19:47:49', 'oAQp8RZm', '3432673'), + (746, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'oAQp8RZm', '3470303'), + (746, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'oAQp8RZm', '3470305'), + (746, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'oAQp8RZm', '3470991'), + (746, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'oAQp8RZm', '3517815'), + (746, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'oAQp8RZm', '3517816'), + (746, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'oAQp8RZm', '3523941'), + (746, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'oAQp8RZm', '3533850'), + (746, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'oAQp8RZm', '3536632'), + (746, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'oAQp8RZm', '3536656'), + (746, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'oAQp8RZm', '3539916'), + (746, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'oAQp8RZm', '3539917'), + (746, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'oAQp8RZm', '3539918'), + (746, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'oAQp8RZm', '3539919'), + (746, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'oAQp8RZm', '3539920'), + (746, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'oAQp8RZm', '3539921'), + (746, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'oAQp8RZm', '3539922'), + (746, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'oAQp8RZm', '3539923'), + (746, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'oAQp8RZm', '3539927'), + (746, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'oAQp8RZm', '3582734'), + (746, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'oAQp8RZm', '3583262'), + (746, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'oAQp8RZm', '3619523'), + (746, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'oAQp8RZm', '3661369'), + (746, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'oAQp8RZm', '3674262'), + (746, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'oAQp8RZm', '3677402'), + (746, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'oAQp8RZm', '3730212'), + (746, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAQp8RZm', '3793156'), + (746, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'oAQp8RZm', '3974109'), + (746, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAQp8RZm', '3975311'), + (746, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'oAQp8RZm', '3975312'), + (746, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQp8RZm', '3994992'), + (746, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'oAQp8RZm', '4014338'), + (746, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'oAQp8RZm', '4021848'), + (746, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAQp8RZm', '4136744'), + (746, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAQp8RZm', '4136937'), + (746, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAQp8RZm', '4136938'), + (746, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAQp8RZm', '4136947'), + (746, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAQp8RZm', '4210314'), + (746, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAQp8RZm', '4225444'), + (746, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAQp8RZm', '4239259'), + (746, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAQp8RZm', '4240316'), + (746, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAQp8RZm', '4240317'), + (746, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAQp8RZm', '4240318'), + (746, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'oAQp8RZm', '4240320'), + (746, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQp8RZm', '4250163'), + (746, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAQp8RZm', '4275957'), + (746, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAQp8RZm', '4277819'), + (746, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAQp8RZm', '4301723'), + (746, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAQp8RZm', '4302093'), + (746, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAQp8RZm', '4304151'), + (746, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAQp8RZm', '4356801'), + (746, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAQp8RZm', '4366186'), + (746, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAQp8RZm', '4366187'), + (746, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'oAQp8RZm', '4420735'), + (746, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'oAQp8RZm', '4420738'), + (746, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAQp8RZm', '4420739'), + (746, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAQp8RZm', '4420741'), + (746, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAQp8RZm', '4420744'), + (746, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAQp8RZm', '4420747'), + (746, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAQp8RZm', '4420748'), + (746, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAQp8RZm', '4420749'), + (746, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAQp8RZm', '4461883'), + (746, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAQp8RZm', '4508342'), + (746, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAQp8RZm', '4568602'), + (746, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'oAQp8RZm', '4572153'), + (746, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'oAQp8RZm', '4585962'), + (746, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'oAQp8RZm', '4596356'), + (746, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'oAQp8RZm', '4598860'), + (746, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'oAQp8RZm', '4598861'), + (746, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'oAQp8RZm', '4602797'), + (746, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'oAQp8RZm', '4637896'), + (746, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'oAQp8RZm', '4642994'), + (746, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'oAQp8RZm', '4642995'), + (746, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'oAQp8RZm', '4642996'), + (746, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'oAQp8RZm', '4642997'), + (746, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'oAQp8RZm', '4645687'), + (746, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'oAQp8RZm', '4645698'), + (746, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'oAQp8RZm', '4645704'), + (746, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'oAQp8RZm', '4645705'), + (746, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'oAQp8RZm', '4668385'), + (746, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAQp8RZm', '4694407'), + (746, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'oAQp8RZm', '4706262'), + (746, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'oAQp8RZm', '4736497'), + (746, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'oAQp8RZm', '4736500'), + (746, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'oAQp8RZm', '4746789'), + (746, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'oAQp8RZm', '4753929'), + (746, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'oAQp8RZm', '5038850'), + (746, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQp8RZm', '6045684'), + (747, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'myDBjDwd', '4356801'), + (747, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'myDBjDwd', '4420738'), + (747, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'myDBjDwd', '4420739'), + (747, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'myDBjDwd', '4420741'), + (747, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'myDBjDwd', '4420744'), + (747, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'myDBjDwd', '4420747'), + (747, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'myDBjDwd', '4461883'), + (747, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'myDBjDwd', '4508342'), + (747, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'myDBjDwd', '4568602'), + (747, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'myDBjDwd', '4572153'), + (747, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'myDBjDwd', '4585962'), + (747, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'myDBjDwd', '4596356'), + (747, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'myDBjDwd', '4598860'), + (747, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'myDBjDwd', '4598861'), + (747, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'myDBjDwd', '4602797'), + (747, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'myDBjDwd', '4637896'), + (747, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'myDBjDwd', '4642994'), + (747, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'myDBjDwd', '4642995'), + (747, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'myDBjDwd', '4642996'), + (747, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'myDBjDwd', '4642997'), + (747, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'myDBjDwd', '4645687'), + (747, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'myDBjDwd', '4645698'), + (747, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'myDBjDwd', '4645704'), + (747, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'myDBjDwd', '4645705'), + (747, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'myDBjDwd', '4668385'), + (747, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'myDBjDwd', '6045684'), + (748, 1181, 'attending', '2022-03-06 00:53:08', '2025-12-17 19:47:33', '4DnM363m', '4736503'), + (748, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4DnM363m', '4736504'), + (748, 1215, 'attending', '2022-02-25 23:59:34', '2025-12-17 19:47:33', '4DnM363m', '4780763'), + (748, 1239, 'attending', '2022-03-02 19:03:40', '2025-12-17 19:47:33', '4DnM363m', '5052238'), + (748, 1240, 'attending', '2022-03-15 19:32:21', '2025-12-17 19:47:33', '4DnM363m', '5052239'), + (748, 1249, 'maybe', '2022-03-09 23:02:02', '2025-12-17 19:47:33', '4DnM363m', '5068530'), + (748, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4DnM363m', '5132533'), + (748, 1260, 'attending', '2022-03-01 18:46:13', '2025-12-17 19:47:33', '4DnM363m', '5142082'), + (748, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4DnM363m', '5186582'), + (748, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4DnM363m', '5186583'), + (748, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4DnM363m', '5186585'), + (748, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4DnM363m', '5190437'), + (748, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4DnM363m', '5195095'), + (748, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4DnM363m', '5215989'), + (748, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4DnM363m', '5223686'), + (748, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4DnM363m', '5227432'), + (748, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4DnM363m', '5247467'), + (748, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4DnM363m', '5260800'), + (748, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4DnM363m', '5269930'), + (748, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4DnM363m', '5271448'), + (748, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4DnM363m', '5271449'), + (748, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4DnM363m', '5276469'), + (748, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4DnM363m', '5278159'), + (748, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4DnM363m', '5363695'), + (748, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4DnM363m', '5365960'), + (748, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4DnM363m', '5368973'), + (748, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4DnM363m', '5378247'), + (748, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4DnM363m', '6045684'), + (749, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJQGxOb4', '7074364'), + (749, 2688, 'not_attending', '2024-06-25 12:50:21', '2025-12-17 19:46:29', 'dJQGxOb4', '7324073'), + (749, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJQGxOb4', '7324074'), + (749, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJQGxOb4', '7324075'), + (749, 2691, 'attending', '2024-07-19 22:42:10', '2025-12-17 19:46:30', 'dJQGxOb4', '7324076'), + (749, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJQGxOb4', '7324078'), + (749, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dJQGxOb4', '7324082'), + (749, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dJQGxOb4', '7331457'), + (749, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'dJQGxOb4', '7332564'), + (749, 2727, 'attending', '2024-06-19 21:45:03', '2025-12-17 19:46:29', 'dJQGxOb4', '7332865'), + (749, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJQGxOb4', '7356752'), + (749, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dJQGxOb4', '7363643'), + (749, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJQGxOb4', '7368606'), + (749, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJQGxOb4', '7397462'), + (749, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dJQGxOb4', '7424275'), + (749, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJQGxOb4', '7424276'), + (749, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJQGxOb4', '7432751'), + (749, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJQGxOb4', '7432752'), + (749, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJQGxOb4', '7432753'), + (749, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJQGxOb4', '7432754'), + (749, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJQGxOb4', '7432755'), + (749, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJQGxOb4', '7432756'), + (749, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJQGxOb4', '7432758'), + (749, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJQGxOb4', '7432759'), + (749, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dJQGxOb4', '7433834'), + (749, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJQGxOb4', '7470197'), + (749, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dJQGxOb4', '7685613'), + (749, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJQGxOb4', '7688194'), + (749, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJQGxOb4', '7688196'), + (749, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJQGxOb4', '7688289'), + (750, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndlEEEYm', '3351539'), + (750, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndlEEEYm', '3386848'), + (750, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndlEEEYm', '3389527'), + (750, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndlEEEYm', '3396499'), + (750, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndlEEEYm', '3403650'), + (750, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndlEEEYm', '3406988'), + (750, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndlEEEYm', '3416576'), + (750, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'ndlEEEYm', '3430267'), + (750, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlEEEYm', '6045684'), + (751, 158, 'not_attending', '2020-09-26 15:50:29', '2025-12-17 19:47:52', 'NmLj55J4', '3058695'), + (751, 221, 'attending', '2020-09-11 00:13:38', '2025-12-17 19:47:56', 'NmLj55J4', '3129265'), + (751, 223, 'not_attending', '2020-09-11 00:13:15', '2025-12-17 19:47:56', 'NmLj55J4', '3129980'), + (751, 296, 'maybe', '2020-09-11 00:13:03', '2025-12-17 19:47:56', 'NmLj55J4', '3172876'), + (751, 311, 'attending', '2020-09-14 00:29:28', '2025-12-17 19:47:56', 'NmLj55J4', '3186057'), + (751, 324, 'not_attending', '2020-09-20 04:32:31', '2025-12-17 19:47:56', 'NmLj55J4', '3197082'), + (751, 341, 'attending', '2020-09-19 18:46:12', '2025-12-17 19:47:52', 'NmLj55J4', '3204471'), + (751, 342, 'not_attending', '2020-10-02 23:30:22', '2025-12-17 19:47:52', 'NmLj55J4', '3204472'), + (751, 348, 'attending', '2020-09-29 21:31:47', '2025-12-17 19:47:52', 'NmLj55J4', '3209159'), + (751, 349, 'attending', '2020-09-11 21:33:04', '2025-12-17 19:47:56', 'NmLj55J4', '3209194'), + (751, 354, 'not_attending', '2020-09-20 04:28:57', '2025-12-17 19:47:56', 'NmLj55J4', '3212570'), + (751, 359, 'not_attending', '2020-09-20 04:29:59', '2025-12-17 19:47:56', 'NmLj55J4', '3212624'), + (751, 362, 'attending', '2020-09-22 18:02:32', '2025-12-17 19:47:52', 'NmLj55J4', '3214207'), + (751, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'NmLj55J4', '3217037'), + (751, 364, 'attending', '2020-09-20 04:29:33', '2025-12-17 19:47:56', 'NmLj55J4', '3217106'), + (751, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'NmLj55J4', '3218510'), + (751, 375, 'attending', '2020-10-08 22:43:47', '2025-12-17 19:47:52', 'NmLj55J4', '3222825'), + (751, 385, 'attending', '2020-09-29 04:22:04', '2025-12-17 19:47:52', 'NmLj55J4', '3228698'), + (751, 386, 'attending', '2020-10-10 01:31:11', '2025-12-17 19:47:52', 'NmLj55J4', '3228699'), + (751, 387, 'attending', '2020-10-16 15:52:57', '2025-12-17 19:47:52', 'NmLj55J4', '3228700'), + (751, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'NmLj55J4', '3228701'), + (751, 412, 'not_attending', '2020-10-07 22:56:39', '2025-12-17 19:47:52', 'NmLj55J4', '3236636'), + (751, 415, 'maybe', '2020-10-12 19:35:52', '2025-12-17 19:47:52', 'NmLj55J4', '3238044'), + (751, 416, 'attending', '2020-10-09 14:56:55', '2025-12-17 19:47:52', 'NmLj55J4', '3238073'), + (751, 418, 'attending', '2020-10-14 22:25:40', '2025-12-17 19:47:52', 'NmLj55J4', '3241728'), + (751, 420, 'attending', '2020-10-15 22:37:22', '2025-12-17 19:47:52', 'NmLj55J4', '3245293'), + (751, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLj55J4', '3245751'), + (751, 425, 'maybe', '2020-10-16 20:46:14', '2025-12-17 19:47:52', 'NmLj55J4', '3250097'), + (751, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'NmLj55J4', '3250232'), + (751, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'NmLj55J4', '3256168'), + (751, 441, 'attending', '2020-11-13 19:10:28', '2025-12-17 19:47:54', 'NmLj55J4', '3256169'), + (751, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLj55J4', '3263578'), + (751, 445, 'attending', '2020-11-13 00:01:50', '2025-12-17 19:47:54', 'NmLj55J4', '3266138'), + (751, 452, 'attending', '2020-11-28 04:34:43', '2025-12-17 19:47:54', 'NmLj55J4', '3272981'), + (751, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'NmLj55J4', '3276428'), + (751, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'NmLj55J4', '3281467'), + (751, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'NmLj55J4', '3281470'), + (751, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'NmLj55J4', '3281829'), + (751, 467, 'attending', '2020-11-13 00:04:42', '2025-12-17 19:47:54', 'NmLj55J4', '3282756'), + (751, 468, 'attending', '2020-11-19 18:10:53', '2025-12-17 19:47:54', 'NmLj55J4', '3285413'), + (751, 469, 'attending', '2020-11-27 05:56:03', '2025-12-17 19:47:54', 'NmLj55J4', '3285414'), + (751, 476, 'attending', '2020-11-18 03:38:21', '2025-12-17 19:47:54', 'NmLj55J4', '3286982'), + (751, 480, 'attending', '2020-11-19 18:10:42', '2025-12-17 19:47:54', 'NmLj55J4', '3295313'), + (751, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'NmLj55J4', '3297764'), + (751, 488, 'attending', '2020-12-02 00:15:16', '2025-12-17 19:47:54', 'NmLj55J4', '3312757'), + (751, 493, 'not_attending', '2020-12-03 19:27:56', '2025-12-17 19:47:54', 'NmLj55J4', '3313856'), + (751, 496, 'not_attending', '2020-12-09 17:02:19', '2025-12-17 19:47:54', 'NmLj55J4', '3314269'), + (751, 497, 'attending', '2020-12-15 21:54:13', '2025-12-17 19:47:55', 'NmLj55J4', '3314270'), + (751, 499, 'not_attending', '2020-12-09 17:02:32', '2025-12-17 19:47:55', 'NmLj55J4', '3314909'), + (751, 500, 'attending', '2020-12-18 22:41:01', '2025-12-17 19:47:55', 'NmLj55J4', '3314964'), + (751, 501, 'maybe', '2020-12-03 19:28:16', '2025-12-17 19:47:54', 'NmLj55J4', '3317834'), + (751, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'NmLj55J4', '3323365'), + (751, 513, 'attending', '2020-12-20 00:23:59', '2025-12-17 19:47:55', 'NmLj55J4', '3329383'), + (751, 517, 'not_attending', '2021-01-04 16:53:00', '2025-12-17 19:47:48', 'NmLj55J4', '3337137'), + (751, 520, 'maybe', '2020-12-20 05:29:26', '2025-12-17 19:47:55', 'NmLj55J4', '3337453'), + (751, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'NmLj55J4', '3351539'), + (751, 530, 'attending', '2021-01-03 18:16:55', '2025-12-17 19:47:48', 'NmLj55J4', '3373923'), + (751, 532, 'not_attending', '2021-01-04 16:52:53', '2025-12-17 19:47:48', 'NmLj55J4', '3381412'), + (751, 536, 'not_attending', '2021-01-06 17:21:40', '2025-12-17 19:47:48', 'NmLj55J4', '3386848'), + (751, 539, 'maybe', '2021-01-14 00:50:04', '2025-12-17 19:47:48', 'NmLj55J4', '3389158'), + (751, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'NmLj55J4', '3389527'), + (751, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'NmLj55J4', '3396499'), + (751, 548, 'attending', '2021-01-16 01:17:51', '2025-12-17 19:47:48', 'NmLj55J4', '3403650'), + (751, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'NmLj55J4', '3406988'), + (751, 555, 'attending', '2021-01-20 02:27:31', '2025-12-17 19:47:49', 'NmLj55J4', '3416576'), + (751, 557, 'attending', '2021-01-20 02:27:21', '2025-12-17 19:47:49', 'NmLj55J4', '3418748'), + (751, 558, 'maybe', '2021-01-21 18:04:12', '2025-12-17 19:47:49', 'NmLj55J4', '3418925'), + (751, 560, 'attending', '2021-01-20 02:27:25', '2025-12-17 19:47:49', 'NmLj55J4', '3421715'), + (751, 568, 'attending', '2021-01-29 18:09:29', '2025-12-17 19:47:50', 'NmLj55J4', '3430267'), + (751, 569, 'not_attending', '2021-01-27 22:52:47', '2025-12-17 19:47:49', 'NmLj55J4', '3432673'), + (751, 579, 'attending', '2021-02-02 06:55:18', '2025-12-17 19:47:50', 'NmLj55J4', '3440978'), + (751, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'NmLj55J4', '3468125'), + (751, 602, 'attending', '2021-02-07 17:44:50', '2025-12-17 19:47:50', 'NmLj55J4', '3470303'), + (751, 603, 'not_attending', '2021-02-12 23:28:40', '2025-12-17 19:47:50', 'NmLj55J4', '3470304'), + (751, 604, 'not_attending', '2021-02-27 18:39:10', '2025-12-17 19:47:50', 'NmLj55J4', '3470305'), + (751, 605, 'attending', '2021-02-07 17:44:33', '2025-12-17 19:47:50', 'NmLj55J4', '3470991'), + (751, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'NmLj55J4', '3517815'), + (751, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'NmLj55J4', '3517816'), + (751, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'NmLj55J4', '3523941'), + (751, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'NmLj55J4', '3533850'), + (751, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'NmLj55J4', '3536632'), + (751, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'NmLj55J4', '3536656'), + (751, 641, 'not_attending', '2021-04-02 15:00:31', '2025-12-17 19:47:44', 'NmLj55J4', '3539916'), + (751, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'NmLj55J4', '3539917'), + (751, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'NmLj55J4', '3539918'), + (751, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'NmLj55J4', '3539919'), + (751, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'NmLj55J4', '3539920'), + (751, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'NmLj55J4', '3539921'), + (751, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'NmLj55J4', '3539922'), + (751, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'NmLj55J4', '3539923'), + (751, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'NmLj55J4', '3539927'), + (751, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'NmLj55J4', '3582734'), + (751, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLj55J4', '3583262'), + (751, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLj55J4', '3619523'), + (751, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLj55J4', '3661369'), + (751, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLj55J4', '3674262'), + (751, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'NmLj55J4', '3677402'), + (751, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLj55J4', '3730212'), + (751, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLj55J4', '3793156'), + (751, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'NmLj55J4', '3974109'), + (751, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLj55J4', '3975311'), + (751, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'NmLj55J4', '3975312'), + (751, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLj55J4', '3994992'), + (751, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLj55J4', '4014338'), + (751, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'NmLj55J4', '4021848'), + (751, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLj55J4', '4136744'), + (751, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'NmLj55J4', '4136937'), + (751, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'NmLj55J4', '4136938'), + (751, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'NmLj55J4', '4136947'), + (751, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'NmLj55J4', '4210314'), + (751, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLj55J4', '4225444'), + (751, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLj55J4', '4239259'), + (751, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'NmLj55J4', '4240316'), + (751, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'NmLj55J4', '4240317'), + (751, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'NmLj55J4', '4240318'), + (751, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'NmLj55J4', '4240320'), + (751, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmLj55J4', '4250163'), + (751, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'NmLj55J4', '4275957'), + (751, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'NmLj55J4', '4277819'), + (751, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'NmLj55J4', '4301723'), + (751, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmLj55J4', '4302093'), + (751, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLj55J4', '4304151'), + (751, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'NmLj55J4', '4345519'), + (751, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLj55J4', '4356801'), + (751, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'NmLj55J4', '4358025'), + (751, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'NmLj55J4', '4366186'), + (751, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'NmLj55J4', '4366187'), + (751, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'NmLj55J4', '4402823'), + (751, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'NmLj55J4', '4420735'), + (751, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'NmLj55J4', '4420738'), + (751, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'NmLj55J4', '4420739'), + (751, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'NmLj55J4', '4420741'), + (751, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'NmLj55J4', '4420744'), + (751, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'NmLj55J4', '4420747'), + (751, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'NmLj55J4', '4420748'), + (751, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'NmLj55J4', '4420749'), + (751, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'NmLj55J4', '4461883'), + (751, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLj55J4', '4508342'), + (751, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLj55J4', '4568602'), + (751, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLj55J4', '4572153'), + (751, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmLj55J4', '4585962'), + (751, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'NmLj55J4', '4596356'), + (751, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLj55J4', '4598860'), + (751, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLj55J4', '4598861'), + (751, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmLj55J4', '4602797'), + (751, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmLj55J4', '4637896'), + (751, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLj55J4', '4642994'), + (751, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmLj55J4', '4642995'), + (751, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLj55J4', '4642996'), + (751, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLj55J4', '4642997'), + (751, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmLj55J4', '4645687'), + (751, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmLj55J4', '4645698'), + (751, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLj55J4', '4645704'), + (751, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLj55J4', '4645705'), + (751, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLj55J4', '4668385'), + (751, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLj55J4', '4694407'), + (751, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmLj55J4', '4736497'), + (751, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'NmLj55J4', '4736499'), + (751, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmLj55J4', '4736500'), + (751, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'NmLj55J4', '4736503'), + (751, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'NmLj55J4', '4736504'), + (751, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLj55J4', '4746789'), + (751, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'NmLj55J4', '4753929'), + (751, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmLj55J4', '5038850'), + (751, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmLj55J4', '5045826'), + (751, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLj55J4', '5132533'), + (751, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'NmLj55J4', '5186582'), + (751, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'NmLj55J4', '5186583'), + (751, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'NmLj55J4', '5186585'), + (751, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'NmLj55J4', '5190437'), + (751, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'NmLj55J4', '5195095'), + (751, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmLj55J4', '5215989'), + (751, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLj55J4', '5223686'), + (751, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLj55J4', '5227432'), + (751, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'NmLj55J4', '5247467'), + (751, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'NmLj55J4', '5260800'), + (751, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'NmLj55J4', '5269930'), + (751, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'NmLj55J4', '5271448'), + (751, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'NmLj55J4', '5271449'), + (751, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmLj55J4', '5276469'), + (751, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmLj55J4', '5278159'), + (751, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'NmLj55J4', '5363695'), + (751, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLj55J4', '5365960'), + (751, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmLj55J4', '5368973'), + (751, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'NmLj55J4', '5378247'), + (751, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'NmLj55J4', '5389605'), + (751, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'NmLj55J4', '5397265'), + (751, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmLj55J4', '5403967'), + (751, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLj55J4', '5404786'), + (751, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmLj55J4', '5405203'), + (751, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'NmLj55J4', '5408794'), + (751, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLj55J4', '5411699'), + (751, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'NmLj55J4', '5412550'), + (751, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmLj55J4', '5415046'), + (751, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'NmLj55J4', '5422086'), + (751, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'NmLj55J4', '5422406'), + (751, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLj55J4', '5424565'), + (751, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLj55J4', '5426882'), + (751, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmLj55J4', '5427083'), + (751, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLj55J4', '5441125'), + (751, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmLj55J4', '5441126'), + (751, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmLj55J4', '5441128'), + (751, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'NmLj55J4', '5441131'), + (751, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLj55J4', '5441132'), + (751, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLj55J4', '5446643'), + (751, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLj55J4', '5453325'), + (751, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLj55J4', '5454516'), + (751, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLj55J4', '5454605'), + (751, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLj55J4', '5455037'), + (751, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLj55J4', '5461278'), + (751, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLj55J4', '5469480'), + (751, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLj55J4', '5471073'), + (751, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'NmLj55J4', '5474663'), + (751, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLj55J4', '5482022'), + (751, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLj55J4', '5482793'), + (751, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLj55J4', '5488912'), + (751, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLj55J4', '5492192'), + (751, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLj55J4', '5493139'), + (751, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLj55J4', '5493200'), + (751, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLj55J4', '5502188'), + (751, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLj55J4', '5505059'), + (751, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'NmLj55J4', '5509055'), + (751, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLj55J4', '5512862'), + (751, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLj55J4', '5513985'), + (751, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'NmLj55J4', '5519981'), + (751, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLj55J4', '5522550'), + (751, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLj55J4', '5534683'), + (751, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLj55J4', '5537735'), + (751, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLj55J4', '5540859'), + (751, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLj55J4', '5546619'), + (751, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLj55J4', '5555245'), + (751, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLj55J4', '5557747'), + (751, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLj55J4', '5560255'), + (751, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLj55J4', '5562906'), + (751, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLj55J4', '5600604'), + (751, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLj55J4', '5605544'), + (751, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLj55J4', '5630960'), + (751, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLj55J4', '5630961'), + (751, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLj55J4', '5630962'), + (751, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLj55J4', '5630966'), + (751, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLj55J4', '5630967'), + (751, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLj55J4', '5630968'), + (751, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLj55J4', '5635406'), + (751, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLj55J4', '5638765'), + (751, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLj55J4', '5640097'), + (751, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLj55J4', '5640843'), + (751, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLj55J4', '5641521'), + (751, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLj55J4', '5642818'), + (751, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLj55J4', '5652395'), + (751, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLj55J4', '5670445'), + (751, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLj55J4', '5671637'), + (751, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLj55J4', '5672329'), + (751, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLj55J4', '5674057'), + (751, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLj55J4', '5674060'), + (751, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLj55J4', '5677461'), + (751, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLj55J4', '5698046'), + (751, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLj55J4', '5699760'), + (751, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLj55J4', '5741601'), + (751, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLj55J4', '5763458'), + (751, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLj55J4', '5774172'), + (751, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'NmLj55J4', '5818247'), + (751, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLj55J4', '5819471'), + (751, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLj55J4', '5827739'), + (751, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLj55J4', '5844306'), + (751, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLj55J4', '5850159'), + (751, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLj55J4', '5858999'), + (751, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLj55J4', '5871984'), + (751, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLj55J4', '5876354'), + (751, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLj55J4', '5880939'), + (751, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLj55J4', '5887890'), + (751, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLj55J4', '5888598'), + (751, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLj55J4', '5893260'), + (751, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLj55J4', '6045684'), + (752, 1116, 'not_attending', '2021-12-01 21:48:23', '2025-12-17 19:47:37', 'mRB33Eom', '4642994'), + (752, 1130, 'attending', '2021-12-04 12:49:18', '2025-12-17 19:47:37', 'mRB33Eom', '4658824'), + (752, 1138, 'attending', '2021-11-30 00:21:04', '2025-12-17 19:47:37', 'mRB33Eom', '4675407'), + (752, 1140, 'attending', '2021-12-04 02:15:32', '2025-12-17 19:47:37', 'mRB33Eom', '4679701'), + (752, 1143, 'attending', '2021-12-01 21:48:28', '2025-12-17 19:47:37', 'mRB33Eom', '4683667'), + (752, 1144, 'maybe', '2021-12-08 00:52:02', '2025-12-17 19:47:37', 'mRB33Eom', '4687090'), + (752, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mRB33Eom', '4694407'), + (752, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mRB33Eom', '4736497'), + (752, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mRB33Eom', '4736499'), + (752, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mRB33Eom', '4736500'), + (752, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mRB33Eom', '4736503'), + (752, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mRB33Eom', '4736504'), + (752, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mRB33Eom', '4746789'), + (752, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mRB33Eom', '4753929'), + (752, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mRB33Eom', '5038850'), + (752, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mRB33Eom', '5045826'), + (752, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mRB33Eom', '5132533'), + (752, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mRB33Eom', '5186582'), + (752, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mRB33Eom', '5186583'), + (752, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mRB33Eom', '5186585'), + (752, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mRB33Eom', '5190437'), + (752, 1284, 'attending', '2022-04-16 20:19:05', '2025-12-17 19:47:27', 'mRB33Eom', '5195095'), + (752, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mRB33Eom', '5215989'), + (752, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mRB33Eom', '5223686'), + (752, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mRB33Eom', '5227432'), + (752, 1346, 'attending', '2022-04-20 20:58:20', '2025-12-17 19:47:27', 'mRB33Eom', '5247467'), + (752, 1362, 'attending', '2022-04-25 21:01:10', '2025-12-17 19:47:28', 'mRB33Eom', '5260800'), + (752, 1368, 'attending', '2022-05-05 21:14:29', '2025-12-17 19:47:28', 'mRB33Eom', '5262783'), + (752, 1374, 'attending', '2022-05-02 19:16:43', '2025-12-17 19:47:28', 'mRB33Eom', '5269930'), + (752, 1378, 'attending', '2022-05-06 22:00:48', '2025-12-17 19:47:28', 'mRB33Eom', '5271448'), + (752, 1379, 'attending', '2022-05-06 22:00:50', '2025-12-17 19:47:29', 'mRB33Eom', '5271449'), + (752, 1383, 'not_attending', '2022-05-14 15:18:22', '2025-12-17 19:47:28', 'mRB33Eom', '5276469'), + (752, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mRB33Eom', '5278159'), + (752, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mRB33Eom', '5363695'), + (752, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mRB33Eom', '5365960'), + (752, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mRB33Eom', '5368973'), + (752, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mRB33Eom', '5378247'), + (752, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mRB33Eom', '5389605'), + (752, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mRB33Eom', '5397265'), + (752, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mRB33Eom', '5403967'), + (752, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mRB33Eom', '5404786'), + (752, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mRB33Eom', '5405203'), + (752, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mRB33Eom', '5408794'), + (752, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mRB33Eom', '5411699'), + (752, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mRB33Eom', '5412550'), + (752, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mRB33Eom', '5415046'), + (752, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mRB33Eom', '5422086'), + (752, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mRB33Eom', '5422406'), + (752, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mRB33Eom', '5424565'), + (752, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mRB33Eom', '5426882'), + (752, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mRB33Eom', '5427083'), + (752, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mRB33Eom', '5441125'), + (752, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mRB33Eom', '5446643'), + (752, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mRB33Eom', '5454516'), + (752, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mRB33Eom', '5454605'), + (752, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRB33Eom', '6045684'), + (753, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', '2d2GZj9m', '4136938'), + (753, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', '2d2GZj9m', '4229418'), + (753, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2GZj9m', '6045684'), + (754, 1948, 'attending', '2023-03-23 18:19:12', '2025-12-17 19:46:57', '4v6OQZN4', '5962317'), + (754, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4v6OQZN4', '5962318'), + (754, 1951, 'not_attending', '2023-03-23 15:39:37', '2025-12-17 19:46:57', '4v6OQZN4', '5965933'), + (754, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', '4v6OQZN4', '6028191'), + (754, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4v6OQZN4', '6040066'), + (754, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4v6OQZN4', '6042717'), + (754, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4v6OQZN4', '6044838'), + (754, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4v6OQZN4', '6044839'), + (754, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v6OQZN4', '6045684'), + (754, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', '4v6OQZN4', '6048955'), + (754, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4v6OQZN4', '6050104'), + (754, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4v6OQZN4', '6053195'), + (754, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4v6OQZN4', '6053198'), + (754, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4v6OQZN4', '6056085'), + (754, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4v6OQZN4', '6056916'), + (754, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4v6OQZN4', '6059290'), + (754, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4v6OQZN4', '6060328'), + (754, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4v6OQZN4', '6061037'), + (754, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4v6OQZN4', '6061039'), + (754, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4v6OQZN4', '6067245'), + (754, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4v6OQZN4', '6068094'), + (754, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4v6OQZN4', '6068252'), + (754, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4v6OQZN4', '6068253'), + (754, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4v6OQZN4', '6068254'), + (754, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4v6OQZN4', '6068280'), + (754, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4v6OQZN4', '6069093'), + (754, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4v6OQZN4', '6072528'), + (754, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4v6OQZN4', '6079840'), + (754, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4v6OQZN4', '6083398'), + (754, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4v6OQZN4', '6093504'), + (754, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4v6OQZN4', '6097414'), + (754, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4v6OQZN4', '6097442'), + (754, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4v6OQZN4', '6097684'), + (754, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4v6OQZN4', '6098762'), + (754, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4v6OQZN4', '6101362'), + (754, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4v6OQZN4', '6107314'), + (754, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4v6OQZN4', '6120034'), + (755, 1240, 'attending', '2022-03-17 02:17:42', '2025-12-17 19:47:33', 'mj62BqVm', '5052239'), + (755, 1241, 'maybe', '2022-03-22 23:40:41', '2025-12-17 19:47:25', 'mj62BqVm', '5052240'), + (755, 1242, 'not_attending', '2022-03-30 22:45:54', '2025-12-17 19:47:25', 'mj62BqVm', '5052241'), + (755, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'mj62BqVm', '5132533'), + (755, 1268, 'attending', '2022-03-13 03:09:11', '2025-12-17 19:47:33', 'mj62BqVm', '5176296'), + (755, 1272, 'not_attending', '2022-03-17 11:30:55', '2025-12-17 19:47:25', 'mj62BqVm', '5186582'), + (755, 1273, 'attending', '2022-03-26 08:53:54', '2025-12-17 19:47:25', 'mj62BqVm', '5186583'), + (755, 1274, 'not_attending', '2022-04-02 05:50:19', '2025-12-17 19:47:26', 'mj62BqVm', '5186585'), + (755, 1280, 'not_attending', '2022-03-17 11:29:54', '2025-12-17 19:47:25', 'mj62BqVm', '5189749'), + (755, 1281, 'not_attending', '2022-03-18 01:19:06', '2025-12-17 19:47:27', 'mj62BqVm', '5190437'), + (755, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mj62BqVm', '5195095'), + (755, 1293, 'maybe', '2022-04-07 09:24:26', '2025-12-17 19:47:27', 'mj62BqVm', '5214641'), + (755, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mj62BqVm', '5215989'), + (755, 1304, 'not_attending', '2022-04-05 01:36:54', '2025-12-17 19:47:26', 'mj62BqVm', '5223468'), + (755, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mj62BqVm', '5223686'), + (755, 1308, 'not_attending', '2022-04-13 20:45:34', '2025-12-17 19:47:27', 'mj62BqVm', '5226703'), + (755, 1309, 'not_attending', '2022-04-07 09:06:44', '2025-12-17 19:47:26', 'mj62BqVm', '5227432'), + (755, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mj62BqVm', '5247467'), + (755, 1362, 'not_attending', '2022-04-26 10:41:19', '2025-12-17 19:47:28', 'mj62BqVm', '5260800'), + (755, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mj62BqVm', '5269930'), + (755, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mj62BqVm', '5271448'), + (755, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mj62BqVm', '5271449'), + (755, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mj62BqVm', '5276469'), + (755, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mj62BqVm', '5278159'), + (755, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mj62BqVm', '5363695'), + (755, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mj62BqVm', '5365960'), + (755, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mj62BqVm', '5368973'), + (755, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mj62BqVm', '5378247'), + (755, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mj62BqVm', '5389605'), + (755, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mj62BqVm', '5397265'), + (755, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mj62BqVm', '5403967'), + (755, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mj62BqVm', '5404786'), + (755, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mj62BqVm', '5405203'), + (755, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mj62BqVm', '5408794'), + (755, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mj62BqVm', '5411699'), + (755, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mj62BqVm', '5412550'), + (755, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mj62BqVm', '5415046'), + (755, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mj62BqVm', '5422086'), + (755, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mj62BqVm', '5422406'), + (755, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mj62BqVm', '5424565'), + (755, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mj62BqVm', '5426882'), + (755, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mj62BqVm', '5427083'), + (755, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mj62BqVm', '5441125'), + (755, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mj62BqVm', '5441126'), + (755, 1515, 'not_attending', '2022-08-05 03:30:05', '2025-12-17 19:47:21', 'mj62BqVm', '5441128'), + (755, 1516, 'attending', '2022-08-20 21:18:03', '2025-12-17 19:47:23', 'mj62BqVm', '5441129'), + (755, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mj62BqVm', '5441131'), + (755, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mj62BqVm', '5441132'), + (755, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mj62BqVm', '5446643'), + (755, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mj62BqVm', '5453325'), + (755, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mj62BqVm', '5454516'), + (755, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mj62BqVm', '5454605'), + (755, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mj62BqVm', '5455037'), + (755, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mj62BqVm', '5461278'), + (755, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mj62BqVm', '5469480'), + (755, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mj62BqVm', '5471073'), + (755, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mj62BqVm', '5474663'), + (755, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mj62BqVm', '5482022'), + (755, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mj62BqVm', '5482793'), + (755, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mj62BqVm', '5488912'), + (755, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mj62BqVm', '5492192'), + (755, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mj62BqVm', '5493139'), + (755, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mj62BqVm', '5493200'), + (755, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mj62BqVm', '5502188'), + (755, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mj62BqVm', '5505059'), + (755, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mj62BqVm', '5509055'), + (755, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mj62BqVm', '5512862'), + (755, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mj62BqVm', '5513985'), + (755, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mj62BqVm', '5519981'), + (755, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mj62BqVm', '5522550'), + (755, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mj62BqVm', '5534683'), + (755, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mj62BqVm', '5537735'), + (755, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mj62BqVm', '5540859'), + (755, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mj62BqVm', '5546619'), + (755, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mj62BqVm', '5555245'), + (755, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mj62BqVm', '5557747'), + (755, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mj62BqVm', '5560255'), + (755, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mj62BqVm', '5562906'), + (755, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mj62BqVm', '5600604'), + (755, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mj62BqVm', '5605544'), + (755, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'mj62BqVm', '5606737'), + (755, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mj62BqVm', '5630960'), + (755, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mj62BqVm', '5630961'), + (755, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mj62BqVm', '5630962'), + (755, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mj62BqVm', '5630966'), + (755, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mj62BqVm', '5630967'), + (755, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mj62BqVm', '5630968'), + (755, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mj62BqVm', '5635406'), + (755, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mj62BqVm', '5638765'), + (755, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mj62BqVm', '5640097'), + (755, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mj62BqVm', '5640843'), + (755, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mj62BqVm', '5641521'), + (755, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mj62BqVm', '5642818'), + (755, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mj62BqVm', '5652395'), + (755, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mj62BqVm', '5670445'), + (755, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mj62BqVm', '5671637'), + (755, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mj62BqVm', '5672329'), + (755, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mj62BqVm', '5674057'), + (755, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mj62BqVm', '5674060'), + (755, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mj62BqVm', '5677461'), + (755, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mj62BqVm', '5698046'), + (755, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mj62BqVm', '5699760'), + (755, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mj62BqVm', '5741601'), + (755, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mj62BqVm', '5763458'), + (755, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mj62BqVm', '5774172'), + (755, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mj62BqVm', '5818247'), + (755, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mj62BqVm', '5819471'), + (755, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mj62BqVm', '5827739'), + (755, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mj62BqVm', '5844306'), + (755, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mj62BqVm', '5850159'), + (755, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mj62BqVm', '5858999'), + (755, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mj62BqVm', '5871984'), + (755, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mj62BqVm', '5876354'), + (755, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mj62BqVm', '5880939'), + (755, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mj62BqVm', '5887890'), + (755, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mj62BqVm', '5888598'), + (755, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mj62BqVm', '5893260'), + (755, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj62BqVm', '6045684'), + (756, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'm7zeYEed', '5513985'), + (756, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'm7zeYEed', '5534683'), + (756, 1633, 'attending', '2022-09-04 19:48:02', '2025-12-17 19:47:24', 'm7zeYEed', '5536575'), + (756, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm7zeYEed', '5537735'), + (756, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm7zeYEed', '5540859'), + (756, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm7zeYEed', '5555245'), + (756, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm7zeYEed', '5557747'), + (756, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm7zeYEed', '5560255'), + (756, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm7zeYEed', '5562906'), + (756, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm7zeYEed', '5600604'), + (756, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm7zeYEed', '5605544'), + (756, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'm7zeYEed', '5606737'), + (756, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm7zeYEed', '5630960'), + (756, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm7zeYEed', '5630961'), + (756, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm7zeYEed', '5630962'), + (756, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm7zeYEed', '5630966'), + (756, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm7zeYEed', '5630967'), + (756, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm7zeYEed', '5630968'), + (756, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm7zeYEed', '5635406'), + (756, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm7zeYEed', '5638765'), + (756, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm7zeYEed', '5640097'), + (756, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm7zeYEed', '5640843'), + (756, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm7zeYEed', '5641521'), + (756, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm7zeYEed', '5642818'), + (756, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm7zeYEed', '5652395'), + (756, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm7zeYEed', '5670445'), + (756, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm7zeYEed', '5671637'), + (756, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm7zeYEed', '5672329'), + (756, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm7zeYEed', '5674057'), + (756, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm7zeYEed', '5674060'), + (756, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm7zeYEed', '5677461'), + (756, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm7zeYEed', '5698046'), + (756, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm7zeYEed', '5699760'), + (756, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm7zeYEed', '5741601'), + (756, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm7zeYEed', '5763458'), + (756, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm7zeYEed', '5774172'), + (756, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'm7zeYEed', '5818247'), + (756, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm7zeYEed', '5819471'), + (756, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm7zeYEed', '5827739'), + (756, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm7zeYEed', '5844306'), + (756, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm7zeYEed', '5850159'), + (756, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm7zeYEed', '5858999'), + (756, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm7zeYEed', '5871984'), + (756, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm7zeYEed', '5876354'), + (756, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm7zeYEed', '5880939'), + (756, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm7zeYEed', '5887890'), + (756, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm7zeYEed', '5888598'), + (756, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm7zeYEed', '5893260'), + (756, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7zeYEed', '6045684'), + (757, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'R40Q9Ybd', '3236448'), + (757, 823, 'maybe', '2021-06-19 21:20:31', '2025-12-17 19:47:48', 'R40Q9Ybd', '3974109'), + (757, 844, 'attending', '2021-06-22 03:24:37', '2025-12-17 19:47:38', 'R40Q9Ybd', '4014338'), + (757, 867, 'not_attending', '2021-06-26 13:43:43', '2025-12-17 19:47:38', 'R40Q9Ybd', '4021848'), + (757, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40Q9Ybd', '4136937'), + (757, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40Q9Ybd', '4136938'), + (757, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40Q9Ybd', '4136947'), + (757, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'R40Q9Ybd', '4210314'), + (757, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40Q9Ybd', '4225444'), + (757, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40Q9Ybd', '4239259'), + (757, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'R40Q9Ybd', '4240316'), + (757, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'R40Q9Ybd', '4240317'), + (757, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'R40Q9Ybd', '4240318'), + (757, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'R40Q9Ybd', '4240320'), + (757, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40Q9Ybd', '4250163'), + (757, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'R40Q9Ybd', '4275957'), + (757, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'R40Q9Ybd', '4277819'), + (757, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'R40Q9Ybd', '4301723'), + (757, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'R40Q9Ybd', '4302093'), + (757, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'R40Q9Ybd', '4304151'), + (757, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'R40Q9Ybd', '4356801'), + (757, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'R40Q9Ybd', '4366186'), + (757, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'R40Q9Ybd', '4366187'), + (757, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'R40Q9Ybd', '4420735'), + (757, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'R40Q9Ybd', '4420738'), + (757, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'R40Q9Ybd', '4420739'), + (757, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'R40Q9Ybd', '4420741'), + (757, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'R40Q9Ybd', '4420744'), + (757, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'R40Q9Ybd', '4420747'), + (757, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'R40Q9Ybd', '4420748'), + (757, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'R40Q9Ybd', '4420749'), + (757, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'R40Q9Ybd', '4461883'), + (757, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'R40Q9Ybd', '4508342'), + (757, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'R40Q9Ybd', '4568602'), + (757, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'R40Q9Ybd', '4572153'), + (757, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'R40Q9Ybd', '4585962'), + (757, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'R40Q9Ybd', '4596356'), + (757, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'R40Q9Ybd', '4598860'), + (757, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'R40Q9Ybd', '4598861'), + (757, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'R40Q9Ybd', '4602797'), + (757, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'R40Q9Ybd', '4637896'), + (757, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'R40Q9Ybd', '4642994'), + (757, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'R40Q9Ybd', '4642995'), + (757, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'R40Q9Ybd', '4642996'), + (757, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'R40Q9Ybd', '4642997'), + (757, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'R40Q9Ybd', '4645687'), + (757, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'R40Q9Ybd', '4645698'), + (757, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'R40Q9Ybd', '4645704'), + (757, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'R40Q9Ybd', '4645705'), + (757, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'R40Q9Ybd', '4668385'), + (757, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'R40Q9Ybd', '4694407'), + (757, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'R40Q9Ybd', '4706262'), + (757, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'R40Q9Ybd', '4736497'), + (757, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'R40Q9Ybd', '4736499'), + (757, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'R40Q9Ybd', '4736500'), + (757, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'R40Q9Ybd', '4736503'), + (757, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'R40Q9Ybd', '4736504'), + (757, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'R40Q9Ybd', '4746789'), + (757, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'R40Q9Ybd', '4753929'), + (757, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'R40Q9Ybd', '5038850'), + (757, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'R40Q9Ybd', '5045826'), + (757, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'R40Q9Ybd', '5132533'), + (757, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'R40Q9Ybd', '5186582'), + (757, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'R40Q9Ybd', '5186583'), + (757, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'R40Q9Ybd', '5186585'), + (757, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'R40Q9Ybd', '5190437'), + (757, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40Q9Ybd', '6045684'), + (758, 1131, 'maybe', '2021-12-18 22:34:04', '2025-12-17 19:47:31', '4oMYJDvm', '4658825'), + (758, 1151, 'maybe', '2022-01-05 20:35:29', '2025-12-17 19:47:31', '4oMYJDvm', '4708704'), + (758, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMYJDvm', '4736497'), + (758, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMYJDvm', '4736499'), + (758, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4oMYJDvm', '4736500'), + (758, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMYJDvm', '4736503'), + (758, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMYJDvm', '4736504'), + (758, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4oMYJDvm', '4746789'), + (758, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMYJDvm', '4753929'), + (758, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMYJDvm', '5038850'), + (758, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMYJDvm', '5045826'), + (758, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMYJDvm', '5132533'), + (758, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMYJDvm', '5186582'), + (758, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMYJDvm', '5186583'), + (758, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMYJDvm', '5186585'), + (758, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMYJDvm', '5190437'), + (758, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4oMYJDvm', '5195095'), + (758, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMYJDvm', '5215989'), + (758, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4oMYJDvm', '5223686'), + (758, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4oMYJDvm', '5227432'), + (758, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4oMYJDvm', '5247467'), + (758, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4oMYJDvm', '5260800'), + (758, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4oMYJDvm', '5269930'), + (758, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4oMYJDvm', '5271448'), + (758, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4oMYJDvm', '5271449'), + (758, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4oMYJDvm', '5276469'), + (758, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4oMYJDvm', '5278159'), + (758, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4oMYJDvm', '5363695'), + (758, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMYJDvm', '5365960'), + (758, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMYJDvm', '5368973'), + (758, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMYJDvm', '5378247'), + (758, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4oMYJDvm', '5389605'), + (758, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4oMYJDvm', '5397265'), + (758, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMYJDvm', '5403967'), + (758, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMYJDvm', '5404786'), + (758, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMYJDvm', '5405203'), + (758, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '4oMYJDvm', '5408794'), + (758, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMYJDvm', '5411699'), + (758, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4oMYJDvm', '5412550'), + (758, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMYJDvm', '5415046'), + (758, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4oMYJDvm', '5422086'), + (758, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4oMYJDvm', '5422406'), + (758, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMYJDvm', '5424565'), + (758, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMYJDvm', '5426882'), + (758, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMYJDvm', '5427083'), + (758, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4oMYJDvm', '5441125'), + (758, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4oMYJDvm', '5441126'), + (758, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMYJDvm', '5441128'), + (758, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMYJDvm', '5446643'), + (758, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMYJDvm', '5453325'), + (758, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMYJDvm', '5454516'), + (758, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMYJDvm', '5454605'), + (758, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMYJDvm', '5455037'), + (758, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4oMYJDvm', '5461278'), + (758, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMYJDvm', '5469480'), + (758, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4oMYJDvm', '5471073'), + (758, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMYJDvm', '5474663'), + (758, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMYJDvm', '5482022'), + (758, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMYJDvm', '5482793'), + (758, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4oMYJDvm', '5488912'), + (758, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4oMYJDvm', '5492192'), + (758, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4oMYJDvm', '5493139'), + (758, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4oMYJDvm', '5493200'), + (758, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4oMYJDvm', '5502188'), + (758, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4oMYJDvm', '5512862'), + (758, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4oMYJDvm', '5513985'), + (758, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4oMYJDvm', '6045684'), + (759, 166, 'attending', '2020-11-21 01:51:00', '2025-12-17 19:47:54', 'kdK0aaBm', '3058704'), + (759, 245, 'not_attending', '2020-11-30 16:15:05', '2025-12-17 19:47:54', 'kdK0aaBm', '3149476'), + (759, 246, 'attending', '2020-12-15 22:10:26', '2025-12-17 19:47:55', 'kdK0aaBm', '3149477'), + (759, 249, 'not_attending', '2020-11-17 03:55:40', '2025-12-17 19:47:54', 'kdK0aaBm', '3149480'), + (759, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'kdK0aaBm', '3236467'), + (759, 468, 'attending', '2020-11-21 01:50:54', '2025-12-17 19:47:54', 'kdK0aaBm', '3285413'), + (759, 469, 'attending', '2020-11-28 20:05:20', '2025-12-17 19:47:54', 'kdK0aaBm', '3285414'), + (759, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'kdK0aaBm', '3297764'), + (759, 493, 'attending', '2020-12-05 23:52:43', '2025-12-17 19:47:54', 'kdK0aaBm', '3313856'), + (759, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'kdK0aaBm', '3314909'), + (759, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'kdK0aaBm', '3314964'), + (759, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'kdK0aaBm', '3323365'), + (759, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'kdK0aaBm', '3324148'), + (759, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'kdK0aaBm', '3329383'), + (759, 526, 'attending', '2021-01-02 20:53:21', '2025-12-17 19:47:48', 'kdK0aaBm', '3351539'), + (759, 536, 'attending', '2021-01-07 20:40:30', '2025-12-17 19:47:48', 'kdK0aaBm', '3386848'), + (759, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdK0aaBm', '3389527'), + (759, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdK0aaBm', '3396499'), + (759, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'kdK0aaBm', '3403650'), + (759, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdK0aaBm', '3406988'), + (759, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'kdK0aaBm', '3416576'), + (759, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'kdK0aaBm', '3418925'), + (759, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'kdK0aaBm', '3426074'), + (759, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'kdK0aaBm', '3430267'), + (759, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'kdK0aaBm', '3432673'), + (759, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'kdK0aaBm', '3468125'), + (759, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'kdK0aaBm', '3470303'), + (759, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdK0aaBm', '3470305'), + (759, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdK0aaBm', '3470991'), + (759, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdK0aaBm', '3517815'), + (759, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdK0aaBm', '3517816'), + (759, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdK0aaBm', '3523941'), + (759, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdK0aaBm', '3533850'), + (759, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdK0aaBm', '3536632'), + (759, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdK0aaBm', '3536656'), + (759, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdK0aaBm', '3539916'), + (759, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdK0aaBm', '3539917'), + (759, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdK0aaBm', '3539918'), + (759, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdK0aaBm', '3539919'), + (759, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdK0aaBm', '3539920'), + (759, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdK0aaBm', '3539921'), + (759, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdK0aaBm', '3539922'), + (759, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdK0aaBm', '3539923'), + (759, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdK0aaBm', '3539927'), + (759, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdK0aaBm', '3582734'), + (759, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdK0aaBm', '3583262'), + (759, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdK0aaBm', '3619523'), + (759, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdK0aaBm', '3661369'), + (759, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdK0aaBm', '3674262'), + (759, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdK0aaBm', '3677402'), + (759, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdK0aaBm', '3730212'), + (759, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0aaBm', '6045684'), + (760, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd3YjJxzA', '5441128'), + (760, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd3YjJxzA', '5441131'), + (760, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd3YjJxzA', '5441132'), + (760, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd3YjJxzA', '5461278'), + (760, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd3YjJxzA', '5469480'), + (760, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'd3YjJxzA', '5471073'), + (760, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'd3YjJxzA', '5474663'), + (760, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd3YjJxzA', '5482022'), + (760, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd3YjJxzA', '5482793'), + (760, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd3YjJxzA', '5488912'), + (760, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd3YjJxzA', '5492192'), + (760, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd3YjJxzA', '5493139'), + (760, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd3YjJxzA', '5493200'), + (760, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd3YjJxzA', '5502188'), + (760, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd3YjJxzA', '5505059'), + (760, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd3YjJxzA', '5509055'), + (760, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd3YjJxzA', '5512862'), + (760, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd3YjJxzA', '5513985'), + (760, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd3YjJxzA', '5519981'), + (760, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd3YjJxzA', '5522550'), + (760, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd3YjJxzA', '5534683'), + (760, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd3YjJxzA', '5537735'), + (760, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd3YjJxzA', '5540859'), + (760, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd3YjJxzA', '5546619'), + (760, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd3YjJxzA', '5555245'), + (760, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd3YjJxzA', '5557747'), + (760, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd3YjJxzA', '5560255'), + (760, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd3YjJxzA', '5562906'), + (760, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd3YjJxzA', '5600604'), + (760, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd3YjJxzA', '5605544'), + (760, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'd3YjJxzA', '5606737'), + (760, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd3YjJxzA', '5635406'), + (760, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd3YjJxzA', '5638765'), + (760, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd3YjJxzA', '5640843'), + (760, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3YjJxzA', '6045684'), + (761, 2448, 'attending', '2024-03-28 21:33:32', '2025-12-17 19:46:33', 'Md3N3XD4', '6734371'), + (761, 2509, 'attending', '2024-03-28 21:27:31', '2025-12-17 19:46:33', 'Md3N3XD4', '7074349'), + (761, 2511, 'attending', '2024-04-02 18:34:03', '2025-12-17 19:46:33', 'Md3N3XD4', '7074351'), + (761, 2512, 'attending', '2024-04-02 19:14:17', '2025-12-17 19:46:33', 'Md3N3XD4', '7074352'), + (761, 2521, 'not_attending', '2024-06-03 21:59:53', '2025-12-17 19:46:29', 'Md3N3XD4', '7074361'), + (761, 2522, 'attending', '2024-07-17 14:48:29', '2025-12-17 19:46:30', 'Md3N3XD4', '7074362'), + (761, 2523, 'not_attending', '2024-06-03 22:01:20', '2025-12-17 19:46:36', 'Md3N3XD4', '7074363'), + (761, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Md3N3XD4', '7074364'), + (761, 2529, 'maybe', '2024-05-23 13:39:52', '2025-12-17 19:46:35', 'Md3N3XD4', '7074369'), + (761, 2537, 'attending', '2024-03-22 23:49:40', '2025-12-17 19:46:33', 'Md3N3XD4', '7085484'), + (761, 2539, 'attending', '2024-04-02 19:14:34', '2025-12-17 19:46:33', 'Md3N3XD4', '7085486'), + (761, 2547, 'attending', '2024-03-28 21:33:45', '2025-12-17 19:46:33', 'Md3N3XD4', '7096945'), + (761, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Md3N3XD4', '7098747'), + (761, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Md3N3XD4', '7113468'), + (761, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Md3N3XD4', '7114856'), + (761, 2555, 'attending', '2024-04-02 19:58:57', '2025-12-17 19:46:33', 'Md3N3XD4', '7114951'), + (761, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Md3N3XD4', '7114955'), + (761, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Md3N3XD4', '7114956'), + (761, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Md3N3XD4', '7114957'), + (761, 2562, 'attending', '2024-04-02 18:34:34', '2025-12-17 19:46:33', 'Md3N3XD4', '7134552'), + (761, 2563, 'not_attending', '2024-04-02 19:59:03', '2025-12-17 19:46:33', 'Md3N3XD4', '7134734'), + (761, 2564, 'attending', '2024-04-02 19:58:46', '2025-12-17 19:46:33', 'Md3N3XD4', '7134735'), + (761, 2566, 'maybe', '2024-04-09 00:00:18', '2025-12-17 19:46:34', 'Md3N3XD4', '7140664'), + (761, 2568, 'attending', '2024-04-05 18:45:50', '2025-12-17 19:46:33', 'Md3N3XD4', '7153615'), + (761, 2569, 'maybe', '2024-04-05 20:35:32', '2025-12-17 19:46:33', 'Md3N3XD4', '7154056'), + (761, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Md3N3XD4', '7159484'), + (761, 2572, 'attending', '2024-04-11 10:58:42', '2025-12-17 19:46:33', 'Md3N3XD4', '7159522'), + (761, 2573, 'maybe', '2024-04-08 23:53:23', '2025-12-17 19:46:34', 'Md3N3XD4', '7160612'), + (761, 2574, 'attending', '2024-04-11 10:58:27', '2025-12-17 19:46:33', 'Md3N3XD4', '7163825'), + (761, 2575, 'maybe', '2024-04-12 22:07:50', '2025-12-17 19:46:33', 'Md3N3XD4', '7164534'), + (761, 2579, 'attending', '2024-04-11 11:50:31', '2025-12-17 19:46:33', 'Md3N3XD4', '7167020'), + (761, 2581, 'attending', '2024-04-23 12:14:36', '2025-12-17 19:46:34', 'Md3N3XD4', '7169048'), + (761, 2585, 'attending', '2024-04-23 12:14:43', '2025-12-17 19:46:34', 'Md3N3XD4', '7175828'), + (761, 2590, 'maybe', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Md3N3XD4', '7178446'), + (761, 2601, 'attending', '2024-04-24 03:28:54', '2025-12-17 19:46:34', 'Md3N3XD4', '7197023'), + (761, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Md3N3XD4', '7220467'), + (761, 2603, 'attending', '2024-05-15 19:51:37', '2025-12-17 19:46:35', 'Md3N3XD4', '7225669'), + (761, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Md3N3XD4', '7240354'), + (761, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Md3N3XD4', '7251633'), + (761, 2622, 'attending', '2024-05-09 05:24:44', '2025-12-17 19:46:35', 'Md3N3XD4', '7262064'), + (761, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'Md3N3XD4', '7263048'), + (761, 2625, 'maybe', '2024-05-12 15:52:15', '2025-12-17 19:46:35', 'Md3N3XD4', '7263302'), + (761, 2627, 'attending', '2024-05-23 13:39:49', '2025-12-17 19:46:35', 'Md3N3XD4', '7264724'), + (761, 2629, 'maybe', '2024-06-03 22:01:23', '2025-12-17 19:46:28', 'Md3N3XD4', '7264726'), + (761, 2630, 'attending', '2024-05-16 22:51:42', '2025-12-17 19:46:35', 'Md3N3XD4', '7264801'), + (761, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'Md3N3XD4', '7302674'), + (761, 2666, 'attending', '2024-06-06 18:28:16', '2025-12-17 19:46:36', 'Md3N3XD4', '7307775'), + (761, 2672, 'attending', '2024-06-09 17:11:46', '2025-12-17 19:46:28', 'Md3N3XD4', '7318459'), + (761, 2673, 'not_attending', '2024-06-09 20:30:18', '2025-12-17 19:46:28', 'Md3N3XD4', '7319473'), + (761, 2679, 'attending', '2024-06-16 18:23:06', '2025-12-17 19:46:29', 'Md3N3XD4', '7319490'), + (761, 2681, 'attending', '2024-06-10 01:51:30', '2025-12-17 19:46:28', 'Md3N3XD4', '7320409'), + (761, 2684, 'maybe', '2024-06-11 10:34:44', '2025-12-17 19:46:28', 'Md3N3XD4', '7322001'), + (761, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Md3N3XD4', '7324073'), + (761, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Md3N3XD4', '7324074'), + (761, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Md3N3XD4', '7324075'), + (761, 2691, 'attending', '2024-07-17 14:48:34', '2025-12-17 19:46:30', 'Md3N3XD4', '7324076'), + (761, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Md3N3XD4', '7324078'), + (761, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Md3N3XD4', '7324082'), + (761, 2706, 'maybe', '2024-06-18 19:41:55', '2025-12-17 19:46:28', 'Md3N3XD4', '7324947'), + (761, 2716, 'attending', '2024-06-16 18:23:04', '2025-12-17 19:46:29', 'Md3N3XD4', '7329096'), + (761, 2718, 'maybe', '2024-06-18 19:41:46', '2025-12-17 19:46:28', 'Md3N3XD4', '7330458'), + (761, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Md3N3XD4', '7331457'), + (761, 2728, 'maybe', '2024-06-21 19:03:33', '2025-12-17 19:46:29', 'Md3N3XD4', '7334124'), + (761, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'Md3N3XD4', '7356752'), + (761, 2760, 'attending', '2024-07-17 14:48:23', '2025-12-17 19:46:30', 'Md3N3XD4', '7359871'), + (761, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Md3N3XD4', '7363643'), + (761, 2770, 'attending', '2024-07-20 20:02:37', '2025-12-17 19:46:30', 'Md3N3XD4', '7368196'), + (761, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Md3N3XD4', '7368606'), + (761, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Md3N3XD4', '7397462'), + (761, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Md3N3XD4', '7424275'), + (761, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Md3N3XD4', '7424276'), + (761, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Md3N3XD4', '7432751'), + (761, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Md3N3XD4', '7432752'), + (761, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Md3N3XD4', '7432753'), + (761, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Md3N3XD4', '7432754'), + (761, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Md3N3XD4', '7432755'), + (761, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Md3N3XD4', '7432756'), + (761, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Md3N3XD4', '7432758'), + (761, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Md3N3XD4', '7432759'), + (761, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Md3N3XD4', '7433834'), + (761, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Md3N3XD4', '7470197'), + (761, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Md3N3XD4', '7685613'), + (761, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Md3N3XD4', '7688194'), + (761, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Md3N3XD4', '7688196'), + (761, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Md3N3XD4', '7688289'), + (761, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Md3N3XD4', '7692763'), + (761, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Md3N3XD4', '7697552'), + (761, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Md3N3XD4', '7699878'), + (761, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Md3N3XD4', '7704043'), + (761, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Md3N3XD4', '7712467'), + (761, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Md3N3XD4', '7713585'), + (761, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Md3N3XD4', '7713586'), + (761, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Md3N3XD4', '7738518'), + (761, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Md3N3XD4', '7750636'), + (761, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Md3N3XD4', '7796540'), + (761, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Md3N3XD4', '7796541'), + (761, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Md3N3XD4', '7796542'), + (761, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Md3N3XD4', '7825913'), + (761, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Md3N3XD4', '7826209'), + (761, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Md3N3XD4', '7834742'), + (761, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Md3N3XD4', '7842108'), + (761, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Md3N3XD4', '7842902'), + (761, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Md3N3XD4', '7842903'), + (761, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Md3N3XD4', '7842904'), + (761, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Md3N3XD4', '7842905'), + (761, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Md3N3XD4', '7855719'), + (761, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Md3N3XD4', '7860683'), + (761, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Md3N3XD4', '7860684'), + (761, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Md3N3XD4', '7866095'), + (761, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Md3N3XD4', '7869170'), + (761, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Md3N3XD4', '7869188'), + (761, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Md3N3XD4', '7869201'), + (761, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Md3N3XD4', '7877465'), + (761, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Md3N3XD4', '7888250'), + (761, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Md3N3XD4', '7904777'), + (761, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Md3N3XD4', '8349164'), + (761, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Md3N3XD4', '8349545'), + (761, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Md3N3XD4', '8368028'), + (761, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Md3N3XD4', '8368029'), + (761, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Md3N3XD4', '8388462'), + (761, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Md3N3XD4', '8400273'), + (761, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Md3N3XD4', '8400275'), + (761, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Md3N3XD4', '8400276'), + (761, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Md3N3XD4', '8404977'), + (761, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Md3N3XD4', '8430783'), + (761, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Md3N3XD4', '8430784'), + (761, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Md3N3XD4', '8430799'), + (761, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Md3N3XD4', '8430800'), + (761, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Md3N3XD4', '8430801'), + (761, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Md3N3XD4', '8438709'), + (761, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Md3N3XD4', '8457738'), + (761, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Md3N3XD4', '8459566'), + (761, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Md3N3XD4', '8459567'), + (761, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Md3N3XD4', '8461032'), + (761, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Md3N3XD4', '8477877'), + (761, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Md3N3XD4', '8485688'), + (761, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Md3N3XD4', '8490587'), + (761, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Md3N3XD4', '8493552'), + (761, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Md3N3XD4', '8493553'), + (761, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Md3N3XD4', '8493554'), + (761, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Md3N3XD4', '8493555'), + (761, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Md3N3XD4', '8493556'), + (761, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Md3N3XD4', '8493557'), + (761, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Md3N3XD4', '8493558'), + (761, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Md3N3XD4', '8493559'), + (761, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Md3N3XD4', '8493560'), + (761, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Md3N3XD4', '8493561'), + (761, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Md3N3XD4', '8493572'), + (761, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Md3N3XD4', '8540725'), + (761, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Md3N3XD4', '8555421'), + (762, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaRrKpm', '3314964'), + (762, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ndaRrKpm', '3323365'), + (762, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'ndaRrKpm', '3329383'), + (762, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndaRrKpm', '3351539'), + (762, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndaRrKpm', '3386848'), + (762, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndaRrKpm', '3389527'), + (762, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndaRrKpm', '3396499'), + (762, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndaRrKpm', '3403650'), + (762, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaRrKpm', '3406988'), + (762, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndaRrKpm', '3416576'), + (762, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'ndaRrKpm', '3430267'), + (762, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaRrKpm', '6045684'), + (763, 793, 'not_attending', '2021-06-02 23:17:49', '2025-12-17 19:47:47', '6AX5WDz4', '3793537'), + (763, 824, 'not_attending', '2021-06-03 18:13:20', '2025-12-17 19:47:47', '6AX5WDz4', '3974112'), + (763, 827, 'not_attending', '2021-06-02 20:04:51', '2025-12-17 19:47:47', '6AX5WDz4', '3975311'), + (763, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AX5WDz4', '6045684'), + (764, 2197, 'not_attending', '2023-09-15 13:36:01', '2025-12-17 19:46:44', '4olXe3od', '6359399'), + (764, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4olXe3od', '6361711'), + (764, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4olXe3od', '6361713'), + (764, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4olXe3od', '6388604'), + (764, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4olXe3od', '6394629'), + (764, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4olXe3od', '6394631'), + (764, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4olXe3od', '6431478'), + (765, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndlkJ8b4', '7074364'), + (765, 2555, 'attending', '2024-04-13 21:48:38', '2025-12-17 19:46:34', 'ndlkJ8b4', '7114951'), + (765, 2556, 'attending', '2024-04-20 22:30:57', '2025-12-17 19:46:34', 'ndlkJ8b4', '7114955'), + (765, 2557, 'attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'ndlkJ8b4', '7114956'), + (765, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndlkJ8b4', '7114957'), + (765, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'ndlkJ8b4', '7153615'), + (765, 2570, 'not_attending', '2024-04-07 22:52:26', '2025-12-17 19:46:33', 'ndlkJ8b4', '7159187'), + (765, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndlkJ8b4', '7159484'), + (765, 2577, 'attending', '2024-04-10 20:46:42', '2025-12-17 19:46:33', 'ndlkJ8b4', '7166293'), + (765, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndlkJ8b4', '7178446'), + (765, 2597, 'attending', '2024-04-22 15:27:07', '2025-12-17 19:46:34', 'ndlkJ8b4', '7186726'), + (765, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ndlkJ8b4', '7220467'), + (765, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndlkJ8b4', '7240354'), + (765, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndlkJ8b4', '7251633'), + (765, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'ndlkJ8b4', '7263048'), + (765, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'ndlkJ8b4', '7302674'), + (765, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndlkJ8b4', '7324073'), + (765, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndlkJ8b4', '7324074'), + (765, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndlkJ8b4', '7324075'), + (765, 2693, 'attending', '2024-07-27 04:21:04', '2025-12-17 19:46:31', 'ndlkJ8b4', '7324078'), + (765, 2694, 'attending', '2024-08-05 22:41:47', '2025-12-17 19:46:31', 'ndlkJ8b4', '7324079'), + (765, 2695, 'attending', '2024-08-17 21:59:43', '2025-12-17 19:46:31', 'ndlkJ8b4', '7324080'), + (765, 2696, 'attending', '2024-08-18 20:14:48', '2025-12-17 19:46:32', 'ndlkJ8b4', '7324081'), + (765, 2697, 'attending', '2024-08-30 14:34:12', '2025-12-17 19:46:32', 'ndlkJ8b4', '7324082'), + (765, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'ndlkJ8b4', '7331457'), + (765, 2737, 'attending', '2024-07-02 22:35:06', '2025-12-17 19:46:29', 'ndlkJ8b4', '7344070'), + (765, 2738, 'attending', '2024-07-01 23:33:36', '2025-12-17 19:46:29', 'ndlkJ8b4', '7344085'), + (765, 2739, 'attending', '2024-07-01 20:01:46', '2025-12-17 19:46:29', 'ndlkJ8b4', '7344575'), + (765, 2742, 'attending', '2024-07-03 22:52:42', '2025-12-17 19:46:29', 'ndlkJ8b4', '7345167'), + (765, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'ndlkJ8b4', '7356752'), + (765, 2766, 'attending', '2024-07-27 04:21:12', '2025-12-17 19:46:30', 'ndlkJ8b4', '7363643'), + (765, 2773, 'not_attending', '2024-07-21 18:44:45', '2025-12-17 19:46:31', 'ndlkJ8b4', '7368605'), + (765, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndlkJ8b4', '7368606'), + (765, 2789, 'attending', '2024-08-06 00:08:08', '2025-12-17 19:46:31', 'ndlkJ8b4', '7384047'), + (765, 2790, 'attending', '2024-08-04 03:49:55', '2025-12-17 19:46:31', 'ndlkJ8b4', '7384857'), + (765, 2795, 'attending', '2024-08-09 18:57:17', '2025-12-17 19:46:31', 'ndlkJ8b4', '7391265'), + (765, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndlkJ8b4', '7397462'), + (765, 2804, 'attending', '2024-08-18 20:14:42', '2025-12-17 19:46:32', 'ndlkJ8b4', '7399270'), + (765, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndlkJ8b4', '7424275'), + (765, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'ndlkJ8b4', '7424276'), + (765, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndlkJ8b4', '7432751'), + (765, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndlkJ8b4', '7432752'), + (765, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndlkJ8b4', '7432753'), + (765, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432754'), + (765, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432755'), + (765, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432756'), + (765, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432758'), + (765, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432759'), + (765, 2832, 'attending', '2024-09-11 22:09:15', '2025-12-17 19:46:24', 'ndlkJ8b4', '7433324'), + (765, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndlkJ8b4', '7433834'), + (765, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndlkJ8b4', '7470197'), + (765, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndlkJ8b4', '7685613'), + (765, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndlkJ8b4', '7688194'), + (765, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndlkJ8b4', '7688196'), + (765, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndlkJ8b4', '7688289'), + (765, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ndlkJ8b4', '7692763'), + (765, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndlkJ8b4', '7697552'), + (765, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndlkJ8b4', '7699878'), + (765, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndlkJ8b4', '7704043'), + (765, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndlkJ8b4', '7712467'), + (765, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ndlkJ8b4', '7713585'), + (765, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ndlkJ8b4', '7713586'), + (765, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndlkJ8b4', '7738518'), + (765, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndlkJ8b4', '7750636'), + (765, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndlkJ8b4', '7796540'), + (765, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndlkJ8b4', '7796541'), + (765, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndlkJ8b4', '7796542'), + (765, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndlkJ8b4', '7825913'), + (765, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndlkJ8b4', '7826209'), + (765, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndlkJ8b4', '7834742'), + (765, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ndlkJ8b4', '7842108'), + (765, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndlkJ8b4', '7842902'), + (765, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndlkJ8b4', '7842903'), + (765, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndlkJ8b4', '7842904'), + (765, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndlkJ8b4', '7842905'), + (765, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndlkJ8b4', '7855719'), + (765, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndlkJ8b4', '7860683'), + (765, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndlkJ8b4', '7860684'), + (765, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndlkJ8b4', '7866095'), + (765, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndlkJ8b4', '7869170'), + (765, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ndlkJ8b4', '7869188'), + (765, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndlkJ8b4', '7869201'), + (765, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndlkJ8b4', '7877465'), + (765, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndlkJ8b4', '7888250'), + (765, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ndlkJ8b4', '7904777'), + (765, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndlkJ8b4', '8349164'), + (765, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndlkJ8b4', '8349545'), + (765, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ndlkJ8b4', '8353584'), + (765, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndlkJ8b4', '8368028'), + (765, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndlkJ8b4', '8368029'), + (765, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndlkJ8b4', '8388462'), + (765, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndlkJ8b4', '8400273'), + (765, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ndlkJ8b4', '8400274'), + (765, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndlkJ8b4', '8400275'), + (765, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ndlkJ8b4', '8400276'), + (765, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndlkJ8b4', '8404977'), + (765, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndlkJ8b4', '8430783'), + (765, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndlkJ8b4', '8430784'), + (765, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndlkJ8b4', '8430799'), + (765, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndlkJ8b4', '8430800'), + (765, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndlkJ8b4', '8430801'), + (765, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndlkJ8b4', '8438709'), + (765, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndlkJ8b4', '8457738'), + (765, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndlkJ8b4', '8459566'), + (765, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndlkJ8b4', '8459567'), + (765, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndlkJ8b4', '8461032'), + (765, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndlkJ8b4', '8477877'), + (765, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ndlkJ8b4', '8485688'), + (766, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dN9zVk74', '5271448'), + (766, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dN9zVk74', '5271449'), + (766, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dN9zVk74', '5276469'), + (766, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dN9zVk74', '5278159'), + (766, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dN9zVk74', '5363695'), + (766, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dN9zVk74', '5365960'), + (766, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dN9zVk74', '5368973'), + (766, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dN9zVk74', '5378247'), + (766, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dN9zVk74', '5389605'), + (766, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dN9zVk74', '5397265'), + (766, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9zVk74', '6045684'), + (767, 258, 'maybe', '2021-06-10 05:18:40', '2025-12-17 19:47:47', 'bdzxzqbA', '3149489'), + (767, 395, 'attending', '2021-06-10 05:19:54', '2025-12-17 19:47:47', 'bdzxzqbA', '3236450'), + (767, 744, 'attending', '2021-06-11 01:57:54', '2025-12-17 19:47:47', 'bdzxzqbA', '3680624'), + (767, 745, 'attending', '2021-06-30 17:17:32', '2025-12-17 19:47:38', 'bdzxzqbA', '3680625'), + (767, 805, 'attending', '2021-06-13 19:00:53', '2025-12-17 19:47:47', 'bdzxzqbA', '3804777'), + (767, 823, 'attending', '2021-06-12 17:14:35', '2025-12-17 19:47:48', 'bdzxzqbA', '3974109'), + (767, 828, 'attending', '2021-06-12 22:15:33', '2025-12-17 19:47:47', 'bdzxzqbA', '3975312'), + (767, 829, 'attending', '2021-06-10 05:18:43', '2025-12-17 19:47:47', 'bdzxzqbA', '3976202'), + (767, 841, 'attending', '2021-06-15 23:13:40', '2025-12-17 19:47:48', 'bdzxzqbA', '4007434'), + (767, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'bdzxzqbA', '4014338'), + (767, 867, 'attending', '2021-06-26 21:41:16', '2025-12-17 19:47:38', 'bdzxzqbA', '4021848'), + (767, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'bdzxzqbA', '4136744'), + (767, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'bdzxzqbA', '4136937'), + (767, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'bdzxzqbA', '4136938'), + (767, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'bdzxzqbA', '4136947'), + (767, 877, 'maybe', '2021-06-17 04:18:29', '2025-12-17 19:47:48', 'bdzxzqbA', '4140575'), + (767, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'bdzxzqbA', '4210314'), + (767, 886, 'not_attending', '2021-06-27 19:56:42', '2025-12-17 19:47:38', 'bdzxzqbA', '4222371'), + (767, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'bdzxzqbA', '4225444'), + (767, 896, 'attending', '2021-06-29 21:18:42', '2025-12-17 19:47:38', 'bdzxzqbA', '4231145'), + (767, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'bdzxzqbA', '4239259'), + (767, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'bdzxzqbA', '4240316'), + (767, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'bdzxzqbA', '4240317'), + (767, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'bdzxzqbA', '4240318'), + (767, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'bdzxzqbA', '4240320'), + (767, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'bdzxzqbA', '4250163'), + (767, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'bdzxzqbA', '4275957'), + (767, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'bdzxzqbA', '4277819'), + (767, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'bdzxzqbA', '4301723'), + (767, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'bdzxzqbA', '4302093'), + (767, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'bdzxzqbA', '4304151'), + (767, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'bdzxzqbA', '4345519'), + (767, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'bdzxzqbA', '4356801'), + (767, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'bdzxzqbA', '4358025'), + (767, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'bdzxzqbA', '4366186'), + (767, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'bdzxzqbA', '4366187'), + (767, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'bdzxzqbA', '4402823'), + (767, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'bdzxzqbA', '4420735'), + (767, 991, 'attending', '2021-09-09 22:17:23', '2025-12-17 19:47:43', 'bdzxzqbA', '4420738'), + (767, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'bdzxzqbA', '4420739'), + (767, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'bdzxzqbA', '4420741'), + (767, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'bdzxzqbA', '4420744'), + (767, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'bdzxzqbA', '4420747'), + (767, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'bdzxzqbA', '4420748'), + (767, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'bdzxzqbA', '4420749'), + (767, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'bdzxzqbA', '4461883'), + (767, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'bdzxzqbA', '4508342'), + (767, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'bdzxzqbA', '4568602'), + (767, 1415, 'not_attending', '2022-05-29 07:06:03', '2025-12-17 19:47:30', 'bdzxzqbA', '5368973'), + (767, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'bdzxzqbA', '5389605'), + (767, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'bdzxzqbA', '5397265'), + (767, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzxzqbA', '6045684'), + (768, 4, 'attending', '2020-03-19 13:05:29', '2025-12-17 19:47:58', '1Are5NBm', '2958046'), + (768, 5, 'attending', '2020-03-19 13:05:30', '2025-12-17 19:47:58', '1Are5NBm', '2958047'), + (768, 7, 'attending', '2020-03-19 12:59:34', '2025-12-17 19:47:58', '1Are5NBm', '2958049'), + (768, 9, 'attending', '2020-03-27 16:24:02', '2025-12-17 19:47:56', '1Are5NBm', '2958052'), + (768, 10, 'attending', '2020-03-27 16:24:04', '2025-12-17 19:47:56', '1Are5NBm', '2958053'), + (768, 11, 'attending', '2020-04-03 02:01:24', '2025-12-17 19:47:57', '1Are5NBm', '2958055'), + (768, 29, 'maybe', '2020-03-30 20:16:22', '2025-12-17 19:47:56', '1Are5NBm', '2961309'), + (768, 30, 'maybe', '2020-04-06 23:47:19', '2025-12-17 19:47:57', '1Are5NBm', '2961895'), + (768, 32, 'attending', '2020-03-31 20:45:02', '2025-12-17 19:47:56', '1Are5NBm', '2963931'), + (768, 33, 'attending', '2020-04-07 18:33:46', '2025-12-17 19:47:57', '1Are5NBm', '2963932'), + (768, 36, 'not_attending', '2020-04-03 02:01:20', '2025-12-17 19:47:57', '1Are5NBm', '2969208'), + (768, 39, 'not_attending', '2020-04-03 02:01:19', '2025-12-17 19:47:57', '1Are5NBm', '2970637'), + (768, 41, 'attending', '2020-04-07 18:33:36', '2025-12-17 19:47:57', '1Are5NBm', '2971546'), + (768, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '1Are5NBm', '2974534'), + (768, 46, 'attending', '2020-04-06 12:31:31', '2025-12-17 19:47:57', '1Are5NBm', '2974955'), + (768, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', '1Are5NBm', '2975384'), + (768, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', '1Are5NBm', '2975385'), + (768, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', '1Are5NBm', '2976575'), + (768, 58, 'attending', '2020-04-18 00:12:38', '2025-12-17 19:47:57', '1Are5NBm', '2977127'), + (768, 61, 'attending', '2020-04-07 18:33:58', '2025-12-17 19:47:57', '1Are5NBm', '2977130'), + (768, 62, 'attending', '2020-05-12 17:02:20', '2025-12-17 19:47:57', '1Are5NBm', '2977131'), + (768, 63, 'attending', '2020-05-19 21:27:29', '2025-12-17 19:47:57', '1Are5NBm', '2977132'), + (768, 65, 'attending', '2020-05-25 18:07:31', '2025-12-17 19:47:57', '1Are5NBm', '2977134'), + (768, 66, 'attending', '2020-06-09 14:32:23', '2025-12-17 19:47:58', '1Are5NBm', '2977135'), + (768, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '1Are5NBm', '2977343'), + (768, 71, 'attending', '2020-04-09 11:59:37', '2025-12-17 19:47:57', '1Are5NBm', '2977526'), + (768, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '1Are5NBm', '2977812'), + (768, 73, 'attending', '2020-04-10 16:31:41', '2025-12-17 19:47:57', '1Are5NBm', '2977931'), + (768, 74, 'attending', '2020-04-18 00:12:25', '2025-12-17 19:47:57', '1Are5NBm', '2978244'), + (768, 75, 'attending', '2020-04-19 17:47:24', '2025-12-17 19:47:57', '1Are5NBm', '2978245'), + (768, 76, 'attending', '2020-04-29 14:48:06', '2025-12-17 19:47:57', '1Are5NBm', '2978246'), + (768, 77, 'attending', '2020-05-01 11:41:11', '2025-12-17 19:47:57', '1Are5NBm', '2978247'), + (768, 78, 'attending', '2020-05-01 11:41:19', '2025-12-17 19:47:57', '1Are5NBm', '2978249'), + (768, 79, 'attending', '2020-05-01 11:41:22', '2025-12-17 19:47:57', '1Are5NBm', '2978250'), + (768, 80, 'attending', '2020-06-06 03:51:38', '2025-12-17 19:47:58', '1Are5NBm', '2978251'), + (768, 81, 'attending', '2020-06-13 02:20:34', '2025-12-17 19:47:58', '1Are5NBm', '2978252'), + (768, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', '1Are5NBm', '2978433'), + (768, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '1Are5NBm', '2978438'), + (768, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '1Are5NBm', '2980871'), + (768, 85, 'maybe', '2020-04-22 21:49:12', '2025-12-17 19:47:57', '1Are5NBm', '2980872'), + (768, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '1Are5NBm', '2981388'), + (768, 87, 'attending', '2020-04-19 17:47:25', '2025-12-17 19:47:57', '1Are5NBm', '2982602'), + (768, 88, 'attending', '2020-04-14 18:50:23', '2025-12-17 19:47:57', '1Are5NBm', '2982603'), + (768, 89, 'attending', '2020-04-29 14:47:58', '2025-12-17 19:47:57', '1Are5NBm', '2982604'), + (768, 91, 'maybe', '2020-05-01 21:10:24', '2025-12-17 19:47:57', '1Are5NBm', '2985130'), + (768, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '1Are5NBm', '2986743'), + (768, 93, 'attending', '2020-04-19 17:47:08', '2025-12-17 19:47:57', '1Are5NBm', '2987418'), + (768, 94, 'attending', '2020-04-19 17:47:21', '2025-12-17 19:47:57', '1Are5NBm', '2987421'), + (768, 100, 'attending', '2020-04-21 18:05:17', '2025-12-17 19:47:57', '1Are5NBm', '2989142'), + (768, 104, 'maybe', '2020-04-26 16:30:39', '2025-12-17 19:47:57', '1Are5NBm', '2991471'), + (768, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', '1Are5NBm', '2993501'), + (768, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '1Are5NBm', '2994480'), + (768, 112, 'attending', '2020-07-05 14:19:58', '2025-12-17 19:47:55', '1Are5NBm', '2994908'), + (768, 113, 'attending', '2020-08-02 02:17:34', '2025-12-17 19:47:56', '1Are5NBm', '2994909'), + (768, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', '1Are5NBm', '3001217'), + (768, 119, 'attending', '2020-05-09 14:45:40', '2025-12-17 19:47:57', '1Are5NBm', '3015486'), + (768, 121, 'attending', '2020-05-18 19:34:57', '2025-12-17 19:47:57', '1Are5NBm', '3023063'), + (768, 126, 'attending', '2020-05-24 22:00:39', '2025-12-17 19:47:57', '1Are5NBm', '3024022'), + (768, 128, 'attending', '2020-05-21 14:59:54', '2025-12-17 19:47:57', '1Are5NBm', '3027185'), + (768, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '1Are5NBm', '3034321'), + (768, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '1Are5NBm', '3035881'), + (768, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '1Are5NBm', '3049983'), + (768, 147, 'attending', '2020-08-14 15:31:44', '2025-12-17 19:47:56', '1Are5NBm', '3058684'), + (768, 148, 'attending', '2020-07-05 14:14:02', '2025-12-17 19:47:55', '1Are5NBm', '3058685'), + (768, 151, 'not_attending', '2020-08-24 19:59:48', '2025-12-17 19:47:56', '1Are5NBm', '3058688'), + (768, 154, 'attending', '2020-08-02 14:03:28', '2025-12-17 19:47:56', '1Are5NBm', '3058691'), + (768, 155, 'attending', '2020-08-14 15:31:45', '2025-12-17 19:47:56', '1Are5NBm', '3058692'), + (768, 157, 'not_attending', '2020-09-19 18:58:54', '2025-12-17 19:47:56', '1Are5NBm', '3058694'), + (768, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '1Are5NBm', '3058959'), + (768, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', '1Are5NBm', '3067093'), + (768, 183, 'attending', '2020-06-15 17:43:20', '2025-12-17 19:47:58', '1Are5NBm', '3075228'), + (768, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '1Are5NBm', '3075456'), + (768, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '1Are5NBm', '3083791'), + (768, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '1Are5NBm', '3085151'), + (768, 190, 'attending', '2020-07-02 17:03:45', '2025-12-17 19:47:55', '1Are5NBm', '3087258'), + (768, 191, 'attending', '2020-07-05 14:14:00', '2025-12-17 19:47:55', '1Are5NBm', '3087259'), + (768, 192, 'not_attending', '2020-07-05 14:27:36', '2025-12-17 19:47:55', '1Are5NBm', '3087260'), + (768, 193, 'attending', '2020-07-20 21:08:35', '2025-12-17 19:47:55', '1Are5NBm', '3087261'), + (768, 194, 'attending', '2020-07-20 21:08:38', '2025-12-17 19:47:55', '1Are5NBm', '3087262'), + (768, 195, 'attending', '2020-07-21 00:50:59', '2025-12-17 19:47:56', '1Are5NBm', '3087264'), + (768, 196, 'attending', '2020-07-21 00:51:00', '2025-12-17 19:47:56', '1Are5NBm', '3087265'), + (768, 197, 'attending', '2020-07-21 00:51:12', '2025-12-17 19:47:56', '1Are5NBm', '3087266'), + (768, 198, 'not_attending', '2020-08-24 20:00:01', '2025-12-17 19:47:56', '1Are5NBm', '3087267'), + (768, 199, 'attending', '2020-09-05 12:18:23', '2025-12-17 19:47:56', '1Are5NBm', '3087268'), + (768, 201, 'not_attending', '2020-06-20 22:37:43', '2025-12-17 19:47:55', '1Are5NBm', '3088653'), + (768, 202, 'attending', '2020-06-21 18:27:35', '2025-12-17 19:47:55', '1Are5NBm', '3090353'), + (768, 207, 'attending', '2020-07-24 22:48:35', '2025-12-17 19:47:55', '1Are5NBm', '3104807'), + (768, 208, 'attending', '2020-08-02 14:03:36', '2025-12-17 19:47:56', '1Are5NBm', '3104808'), + (768, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '1Are5NBm', '3106813'), + (768, 214, 'maybe', '2020-07-08 21:37:52', '2025-12-17 19:47:55', '1Are5NBm', '3124139'), + (768, 219, 'attending', '2020-08-06 21:11:14', '2025-12-17 19:47:56', '1Are5NBm', '3129263'), + (768, 223, 'attending', '2020-09-05 04:05:37', '2025-12-17 19:47:56', '1Are5NBm', '3129980'), + (768, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '1Are5NBm', '3132817'), + (768, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '1Are5NBm', '3132820'), + (768, 233, 'not_attending', '2020-07-22 19:59:27', '2025-12-17 19:47:55', '1Are5NBm', '3139773'), + (768, 267, 'attending', '2020-07-28 22:20:02', '2025-12-17 19:47:55', '1Are5NBm', '3152781'), + (768, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '1Are5NBm', '3155321'), + (768, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '1Are5NBm', '3162006'), + (768, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '1Are5NBm', '3163442'), + (768, 281, 'attending', '2020-08-06 13:20:47', '2025-12-17 19:47:56', '1Are5NBm', '3166945'), + (768, 293, 'maybe', '2020-08-14 15:31:24', '2025-12-17 19:47:56', '1Are5NBm', '3172832'), + (768, 294, 'maybe', '2020-08-14 15:31:54', '2025-12-17 19:47:56', '1Are5NBm', '3172833'), + (768, 295, 'maybe', '2020-08-14 15:32:23', '2025-12-17 19:47:56', '1Are5NBm', '3172834'), + (768, 296, 'attending', '2020-09-09 12:18:32', '2025-12-17 19:47:56', '1Are5NBm', '3172876'), + (768, 298, 'maybe', '2020-08-14 15:32:06', '2025-12-17 19:47:56', '1Are5NBm', '3174556'), + (768, 299, 'not_attending', '2020-08-14 15:31:32', '2025-12-17 19:47:56', '1Are5NBm', '3176591'), + (768, 306, 'attending', '2020-08-14 22:35:31', '2025-12-17 19:47:56', '1Are5NBm', '3179777'), + (768, 307, 'not_attending', '2020-08-17 15:06:26', '2025-12-17 19:47:56', '1Are5NBm', '3182590'), + (768, 311, 'not_attending', '2020-09-18 21:12:49', '2025-12-17 19:47:56', '1Are5NBm', '3186057'), + (768, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '1Are5NBm', '3191735'), + (768, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '1Are5NBm', '3200209'), + (768, 339, 'not_attending', '2020-09-10 00:01:17', '2025-12-17 19:47:56', '1Are5NBm', '3204469'), + (768, 340, 'maybe', '2020-09-13 20:16:33', '2025-12-17 19:47:56', '1Are5NBm', '3204470'), + (768, 341, 'attending', '2020-09-18 21:12:41', '2025-12-17 19:47:52', '1Are5NBm', '3204471'), + (768, 342, 'maybe', '2020-09-13 20:16:27', '2025-12-17 19:47:52', '1Are5NBm', '3204472'), + (768, 361, 'attending', '2020-09-16 14:17:34', '2025-12-17 19:47:56', '1Are5NBm', '3213323'), + (768, 362, 'maybe', '2020-09-26 19:14:34', '2025-12-17 19:47:52', '1Are5NBm', '3214207'), + (768, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '1Are5NBm', '3217037'), + (768, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '1Are5NBm', '3218510'), + (768, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', '1Are5NBm', '3228698'), + (768, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', '1Are5NBm', '3228699'), + (768, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', '1Are5NBm', '3228700'), + (768, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', '1Are5NBm', '3228701'), + (768, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', '1Are5NBm', '3245751'), + (768, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '1Are5NBm', '3250232'), + (768, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', '1Are5NBm', '3256168'), + (768, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', '1Are5NBm', '3263578'), + (768, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '1Are5NBm', '3276428'), + (768, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '1Are5NBm', '3281467'), + (768, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '1Are5NBm', '3281470'), + (768, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '1Are5NBm', '3281829'), + (768, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '1Are5NBm', '3285413'), + (768, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '1Are5NBm', '3285414'), + (768, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '1Are5NBm', '4736497'), + (768, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '1Are5NBm', '4736499'), + (768, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '1Are5NBm', '4736500'), + (768, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '1Are5NBm', '4736503'), + (768, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '1Are5NBm', '4736504'), + (768, 1185, 'not_attending', '2022-01-12 23:28:47', '2025-12-17 19:47:31', '1Are5NBm', '4746789'), + (768, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '1Are5NBm', '5038850'), + (768, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '1Are5NBm', '5045826'), + (768, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '1Are5NBm', '5132533'), + (768, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '1Are5NBm', '5186582'), + (768, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '1Are5NBm', '5186583'), + (768, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '1Are5NBm', '5186585'), + (768, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '1Are5NBm', '5190437'), + (768, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '1Are5NBm', '5195095'), + (768, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '1Are5NBm', '5215989'), + (768, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '1Are5NBm', '5223686'), + (768, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '1Are5NBm', '5247467'), + (768, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '1Are5NBm', '5260800'), + (768, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '1Are5NBm', '5269930'), + (768, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '1Are5NBm', '5271448'), + (768, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '1Are5NBm', '5271449'), + (768, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '1Are5NBm', '5278159'), + (768, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '1Are5NBm', '5363695'), + (768, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '1Are5NBm', '5365960'), + (768, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '1Are5NBm', '5378247'), + (768, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '1Are5NBm', '5389605'), + (768, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '1Are5NBm', '5397265'), + (768, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '1Are5NBm', '5404786'), + (768, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '1Are5NBm', '5405203'), + (768, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '1Are5NBm', '5412550'), + (768, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '1Are5NBm', '5415046'), + (768, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '1Are5NBm', '5422086'), + (768, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '1Are5NBm', '5422406'), + (768, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '1Are5NBm', '5424565'), + (768, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '1Are5NBm', '5426882'), + (768, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '1Are5NBm', '5441125'), + (768, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '1Are5NBm', '5441126'), + (768, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '1Are5NBm', '5441128'), + (768, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '1Are5NBm', '5441131'), + (768, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '1Are5NBm', '5441132'), + (768, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '1Are5NBm', '5453325'), + (768, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '1Are5NBm', '5454516'), + (768, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '1Are5NBm', '5454605'), + (768, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '1Are5NBm', '5455037'), + (768, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '1Are5NBm', '5461278'), + (768, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '1Are5NBm', '5469480'), + (768, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '1Are5NBm', '5474663'), + (768, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '1Are5NBm', '5482022'), + (768, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '1Are5NBm', '5488912'), + (768, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '1Are5NBm', '5492192'), + (768, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '1Are5NBm', '5493139'), + (768, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '1Are5NBm', '5493200'), + (768, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '1Are5NBm', '5502188'), + (768, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '1Are5NBm', '5505059'), + (768, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '1Are5NBm', '5509055'), + (768, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '1Are5NBm', '5512862'), + (768, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '1Are5NBm', '5513985'), + (768, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '1Are5NBm', '5519981'), + (768, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '1Are5NBm', '5522550'), + (768, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '1Are5NBm', '5534683'), + (768, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '1Are5NBm', '5537735'), + (768, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '1Are5NBm', '5540859'), + (768, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '1Are5NBm', '5546619'), + (768, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '1Are5NBm', '5557747'), + (768, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '1Are5NBm', '5560255'), + (768, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '1Are5NBm', '5562906'), + (768, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '1Are5NBm', '5600604'), + (768, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '1Are5NBm', '5605544'), + (768, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '1Are5NBm', '5630960'), + (768, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '1Are5NBm', '5630961'), + (768, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '1Are5NBm', '5630962'), + (768, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '1Are5NBm', '5630966'), + (768, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '1Are5NBm', '5630967'), + (768, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '1Are5NBm', '5630968'), + (768, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '1Are5NBm', '5635406'), + (768, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '1Are5NBm', '5638765'), + (768, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '1Are5NBm', '5640097'), + (768, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '1Are5NBm', '5640843'), + (768, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '1Are5NBm', '5641521'), + (768, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '1Are5NBm', '5642818'), + (768, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '1Are5NBm', '5652395'), + (768, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '1Are5NBm', '5670445'), + (768, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '1Are5NBm', '5671637'), + (768, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '1Are5NBm', '5672329'), + (768, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '1Are5NBm', '5674057'), + (768, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '1Are5NBm', '5674060'), + (768, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', '1Are5NBm', '5677461'), + (768, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '1Are5NBm', '5698046'), + (768, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '1Are5NBm', '5699760'), + (768, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '1Are5NBm', '5741601'), + (768, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '1Are5NBm', '5763458'), + (768, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '1Are5NBm', '5774172'), + (768, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '1Are5NBm', '5818247'), + (768, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '1Are5NBm', '5819471'), + (768, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '1Are5NBm', '5827739'), + (768, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '1Are5NBm', '5844306'), + (768, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '1Are5NBm', '5850159'), + (768, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '1Are5NBm', '5858999'), + (768, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '1Are5NBm', '5871984'), + (768, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '1Are5NBm', '5876354'), + (768, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '1Are5NBm', '5880939'), + (768, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '1Are5NBm', '5880940'), + (768, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '1Are5NBm', '5880942'), + (768, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '1Are5NBm', '5880943'), + (768, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '1Are5NBm', '5887890'), + (768, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '1Are5NBm', '5888598'), + (768, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '1Are5NBm', '5893260'), + (768, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '1Are5NBm', '5899826'), + (768, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '1Are5NBm', '5900199'), + (768, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '1Are5NBm', '5900200'), + (768, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '1Are5NBm', '5900202'), + (768, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '1Are5NBm', '5900203'), + (768, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '1Are5NBm', '5901108'), + (768, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '1Are5NBm', '5901126'), + (768, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '1Are5NBm', '5909655'), + (768, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '1Are5NBm', '5910522'), + (768, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '1Are5NBm', '5910526'), + (768, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '1Are5NBm', '5910528'), + (768, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '1Are5NBm', '5916219'), + (768, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '1Are5NBm', '5936234'), + (768, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '1Are5NBm', '5958351'), + (768, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '1Are5NBm', '5959751'), + (768, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '1Are5NBm', '5959755'), + (768, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '1Are5NBm', '5960055'), + (768, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '1Are5NBm', '5961684'), + (768, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '1Are5NBm', '5962132'), + (768, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '1Are5NBm', '5962133'), + (768, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '1Are5NBm', '5962134'), + (768, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '1Are5NBm', '5962317'), + (768, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '1Are5NBm', '5962318'), + (768, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '1Are5NBm', '5965933'), + (768, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '1Are5NBm', '5967014'), + (768, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '1Are5NBm', '5972815'), + (768, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '1Are5NBm', '5974016'), + (768, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '1Are5NBm', '5981515'), + (768, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '1Are5NBm', '5993516'), + (768, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '1Are5NBm', '5998939'), + (768, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '1Are5NBm', '6028191'), + (768, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '1Are5NBm', '6040066'), + (768, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '1Are5NBm', '6042717'), + (768, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '1Are5NBm', '6044838'), + (768, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '1Are5NBm', '6044839'), + (768, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1Are5NBm', '6045684'), + (768, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '1Are5NBm', '6050104'), + (768, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '1Are5NBm', '6053195'), + (768, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '1Are5NBm', '6053198'), + (768, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '1Are5NBm', '6056085'), + (768, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '1Are5NBm', '6056916'), + (768, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '1Are5NBm', '6059290'), + (768, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '1Are5NBm', '6060328'), + (768, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '1Are5NBm', '6061037'), + (768, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '1Are5NBm', '6061039'), + (768, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '1Are5NBm', '6067245'), + (768, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '1Are5NBm', '6068094'), + (768, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '1Are5NBm', '6068252'), + (768, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '1Are5NBm', '6068253'), + (768, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '1Are5NBm', '6068254'), + (768, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '1Are5NBm', '6068280'), + (768, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '1Are5NBm', '6069093'), + (768, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '1Are5NBm', '6072528'), + (768, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '1Are5NBm', '6079840'), + (768, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '1Are5NBm', '6083398'), + (768, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '1Are5NBm', '6093504'), + (768, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '1Are5NBm', '6097414'), + (768, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '1Are5NBm', '6097442'), + (768, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '1Are5NBm', '6097684'), + (768, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '1Are5NBm', '6098762'), + (768, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '1Are5NBm', '6101361'), + (768, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '1Are5NBm', '6101362'), + (768, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '1Are5NBm', '6107314'), + (768, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '1Are5NBm', '6120034'), + (768, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '1Are5NBm', '6136733'), + (768, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '1Are5NBm', '6137989'), + (768, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '1Are5NBm', '6150864'), + (768, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '1Are5NBm', '6155491'), + (768, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '1Are5NBm', '6164417'), + (768, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '1Are5NBm', '6166388'), + (768, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '1Are5NBm', '6176439'), + (768, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '1Are5NBm', '6182410'), + (768, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '1Are5NBm', '6185812'), + (768, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '1Are5NBm', '6187651'), + (768, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '1Are5NBm', '6187963'), + (768, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '1Are5NBm', '6187964'), + (768, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '1Are5NBm', '6187966'), + (768, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '1Are5NBm', '6187967'), + (768, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '1Are5NBm', '6187969'), + (768, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '1Are5NBm', '6334878'), + (768, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '1Are5NBm', '6337236'), + (768, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '1Are5NBm', '6337970'), + (768, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '1Are5NBm', '6338308'), + (768, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '1Are5NBm', '6341710'), + (768, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '1Are5NBm', '6342044'), + (768, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '1Are5NBm', '6342298'), + (768, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '1Are5NBm', '6343294'), + (768, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '1Are5NBm', '6347034'), + (768, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '1Are5NBm', '6347056'), + (768, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '1Are5NBm', '6353830'), + (768, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '1Are5NBm', '6353831'), + (768, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '1Are5NBm', '6357867'), + (768, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '1Are5NBm', '6358652'), + (768, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '1Are5NBm', '6361709'), + (768, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '1Are5NBm', '6361710'), + (768, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '1Are5NBm', '6361711'), + (768, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '1Are5NBm', '6361712'), + (768, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '1Are5NBm', '6361713'), + (768, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', '1Are5NBm', '6382573'), + (768, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '1Are5NBm', '6388604'), + (768, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '1Are5NBm', '6394629'), + (768, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '1Are5NBm', '6394631'), + (768, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '1Are5NBm', '6440863'), + (768, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '1Are5NBm', '6445440'), + (768, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '1Are5NBm', '6453951'), + (768, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '1Are5NBm', '6461696'), + (768, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '1Are5NBm', '6462129'), + (768, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '1Are5NBm', '6463218'), + (768, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '1Are5NBm', '6472181'), + (768, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '1Are5NBm', '6482693'), + (768, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '1Are5NBm', '6484200'), + (768, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '1Are5NBm', '6484680'), + (768, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '1Are5NBm', '6507741'), + (768, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '1Are5NBm', '6514659'), + (768, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '1Are5NBm', '6514660'), + (768, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '1Are5NBm', '6519103'), + (768, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '1Are5NBm', '6535681'), + (768, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '1Are5NBm', '6584747'), + (768, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '1Are5NBm', '6587097'), + (768, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '1Are5NBm', '6609022'), + (768, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '1Are5NBm', '6632757'), + (768, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '1Are5NBm', '6644187'), + (768, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '1Are5NBm', '6648951'), + (768, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '1Are5NBm', '6648952'), + (768, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '1Are5NBm', '6655401'), + (768, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '1Are5NBm', '6661585'), + (768, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '1Are5NBm', '6661588'), + (768, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '1Are5NBm', '6661589'), + (768, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '1Are5NBm', '6699906'), + (768, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '1Are5NBm', '6699913'), + (768, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '1Are5NBm', '6701109'), + (768, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '1Are5NBm', '6705219'), + (768, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '1Are5NBm', '6710153'), + (768, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '1Are5NBm', '6711552'), + (768, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '1Are5NBm', '6711553'), + (768, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '1Are5NBm', '6722688'), + (768, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '1Are5NBm', '6730620'), + (768, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '1Are5NBm', '6740364'), + (768, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '1Are5NBm', '6743829'), + (768, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '1Are5NBm', '7030380'), + (768, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '1Are5NBm', '7033677'), + (768, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '1Are5NBm', '7044715'), + (768, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '1Are5NBm', '7050318'), + (768, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '1Are5NBm', '7050319'), + (768, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '1Are5NBm', '7050322'), + (768, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '1Are5NBm', '7057804'), + (768, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '1Are5NBm', '7072824'), + (768, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '1Are5NBm', '7074348'), + (768, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '1Are5NBm', '7074364'), + (768, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '1Are5NBm', '7089267'), + (768, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '1Are5NBm', '7098747'), + (768, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '1Are5NBm', '7113468'), + (768, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '1Are5NBm', '7114856'), + (768, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '1Are5NBm', '7114951'), + (768, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '1Are5NBm', '7114955'), + (768, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '1Are5NBm', '7114956'), + (768, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '1Are5NBm', '7114957'), + (768, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '1Are5NBm', '7159484'), + (768, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '1Are5NBm', '7178446'), + (768, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '1Are5NBm', '7220467'), + (768, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '1Are5NBm', '7240354'), + (768, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '1Are5NBm', '7251633'), + (768, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '1Are5NBm', '7324073'), + (768, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '1Are5NBm', '7324074'), + (768, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '1Are5NBm', '7324075'), + (768, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '1Are5NBm', '7324078'), + (768, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '1Are5NBm', '7324082'), + (768, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '1Are5NBm', '7331457'), + (768, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '1Are5NBm', '7363643'), + (768, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '1Are5NBm', '7368606'), + (768, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '1Are5NBm', '7397462'), + (768, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '1Are5NBm', '7424275'), + (768, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '1Are5NBm', '7432751'), + (768, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '1Are5NBm', '7432752'), + (768, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '1Are5NBm', '7432753'), + (768, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '1Are5NBm', '7432754'), + (768, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '1Are5NBm', '7432755'), + (768, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '1Are5NBm', '7432756'), + (768, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '1Are5NBm', '7432758'), + (768, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '1Are5NBm', '7432759'), + (768, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '1Are5NBm', '7433834'), + (768, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '1Are5NBm', '7470197'), + (768, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '1Are5NBm', '7685613'), + (768, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '1Are5NBm', '7688194'), + (768, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '1Are5NBm', '7688196'), + (768, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '1Are5NBm', '7688289'), + (768, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '1Are5NBm', '7692763'), + (768, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '1Are5NBm', '7697552'), + (768, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '1Are5NBm', '7699878'), + (768, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '1Are5NBm', '7704043'), + (768, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1Are5NBm', '7712467'), + (768, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1Are5NBm', '7713585'), + (768, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1Are5NBm', '7713586'), + (768, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '1Are5NBm', '7738518'), + (768, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1Are5NBm', '7750636'), + (768, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1Are5NBm', '7796540'), + (768, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1Are5NBm', '7796541'), + (768, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1Are5NBm', '7796542'), + (768, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1Are5NBm', '7825913'), + (768, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1Are5NBm', '7826209'), + (768, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1Are5NBm', '7834742'), + (768, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1Are5NBm', '7842108'), + (768, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1Are5NBm', '7842902'), + (768, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1Are5NBm', '7842903'), + (768, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1Are5NBm', '7842904'), + (768, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1Are5NBm', '7842905'), + (768, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1Are5NBm', '7855719'), + (768, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1Are5NBm', '7860683'), + (768, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1Are5NBm', '7860684'), + (768, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1Are5NBm', '7866095'), + (768, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1Are5NBm', '7869170'), + (768, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1Are5NBm', '7869188'), + (768, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1Are5NBm', '7869201'), + (768, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1Are5NBm', '7877465'), + (768, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1Are5NBm', '7888250'), + (768, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1Are5NBm', '7904777'), + (768, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1Are5NBm', '8349164'), + (768, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1Are5NBm', '8349545'), + (768, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1Are5NBm', '8368028'), + (768, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1Are5NBm', '8368029'), + (768, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1Are5NBm', '8388462'), + (768, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1Are5NBm', '8400273'), + (768, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1Are5NBm', '8400275'), + (768, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '1Are5NBm', '8400276'), + (768, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1Are5NBm', '8404977'), + (768, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1Are5NBm', '8430783'), + (768, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1Are5NBm', '8430784'), + (768, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1Are5NBm', '8430799'), + (768, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1Are5NBm', '8430800'), + (768, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1Are5NBm', '8430801'), + (768, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1Are5NBm', '8438709'), + (768, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1Are5NBm', '8457738'), + (768, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1Are5NBm', '8459566'), + (768, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1Are5NBm', '8459567'), + (768, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1Are5NBm', '8461032'), + (768, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1Are5NBm', '8477877'), + (768, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1Are5NBm', '8485688'), + (768, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '1Are5NBm', '8490587'), + (768, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '1Are5NBm', '8493552'), + (768, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '1Are5NBm', '8493553'), + (768, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '1Are5NBm', '8493554'), + (768, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '1Are5NBm', '8493555'), + (768, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '1Are5NBm', '8493556'), + (768, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '1Are5NBm', '8493557'), + (768, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '1Are5NBm', '8493558'), + (768, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '1Are5NBm', '8493559'), + (768, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '1Are5NBm', '8493560'), + (768, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '1Are5NBm', '8493561'), + (768, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '1Are5NBm', '8493572'), + (768, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '1Are5NBm', '8540725'), + (768, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '1Are5NBm', '8555421'), + (769, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ArBjWNBA', '5900202'), + (769, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ArBjWNBA', '5900203'), + (769, 1917, 'not_attending', '2023-03-12 16:07:19', '2025-12-17 19:47:10', 'ArBjWNBA', '5910528'), + (769, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'ArBjWNBA', '5962317'), + (769, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'ArBjWNBA', '5962318'), + (769, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ArBjWNBA', '5965933'), + (769, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ArBjWNBA', '5981515'), + (769, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ArBjWNBA', '5993516'), + (769, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ArBjWNBA', '5998939'), + (769, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ArBjWNBA', '6028191'), + (769, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ArBjWNBA', '6040066'), + (769, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ArBjWNBA', '6042717'), + (769, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ArBjWNBA', '6044838'), + (769, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ArBjWNBA', '6044839'), + (769, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArBjWNBA', '6045684'), + (769, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'ArBjWNBA', '6048955'), + (769, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ArBjWNBA', '6050104'), + (769, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ArBjWNBA', '6053195'), + (769, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ArBjWNBA', '6053198'), + (769, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ArBjWNBA', '6056085'), + (769, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ArBjWNBA', '6056916'), + (769, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ArBjWNBA', '6059290'), + (769, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ArBjWNBA', '6060328'), + (769, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ArBjWNBA', '6061037'), + (769, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ArBjWNBA', '6061039'), + (769, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ArBjWNBA', '6067245'), + (769, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ArBjWNBA', '6068094'), + (769, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ArBjWNBA', '6068252'), + (769, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ArBjWNBA', '6068253'), + (769, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ArBjWNBA', '6068254'), + (769, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ArBjWNBA', '6068280'), + (769, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ArBjWNBA', '6069093'), + (769, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'ArBjWNBA', '6072528'), + (769, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ArBjWNBA', '6079840'), + (769, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ArBjWNBA', '6083398'), + (769, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'ArBjWNBA', '6093504'), + (769, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ArBjWNBA', '6097414'), + (769, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ArBjWNBA', '6097442'), + (769, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ArBjWNBA', '6097684'), + (769, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ArBjWNBA', '6098762'), + (769, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ArBjWNBA', '6101362'), + (769, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ArBjWNBA', '6107314'), + (769, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ArBjWNBA', '6120034'), + (770, 221, 'attending', '2020-09-17 19:45:46', '2025-12-17 19:47:56', 'Lmp0DO9m', '3129265'), + (770, 311, 'not_attending', '2020-09-14 14:45:56', '2025-12-17 19:47:56', 'Lmp0DO9m', '3186057'), + (770, 362, 'not_attending', '2020-09-25 19:23:20', '2025-12-17 19:47:52', 'Lmp0DO9m', '3214207'), + (770, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'Lmp0DO9m', '3217037'), + (770, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'Lmp0DO9m', '3218510'), + (770, 367, 'attending', '2020-09-23 01:53:27', '2025-12-17 19:47:51', 'Lmp0DO9m', '3219751'), + (770, 385, 'not_attending', '2020-09-29 10:45:47', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228698'), + (770, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228699'), + (770, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228700'), + (770, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228701'), + (770, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'Lmp0DO9m', '3245751'), + (770, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'Lmp0DO9m', '3250232'), + (770, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'Lmp0DO9m', '3256168'), + (770, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'Lmp0DO9m', '3263578'), + (770, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'Lmp0DO9m', '3276428'), + (770, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'Lmp0DO9m', '3281467'), + (770, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Lmp0DO9m', '3281470'), + (770, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'Lmp0DO9m', '3281829'), + (770, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'Lmp0DO9m', '3285413'), + (770, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Lmp0DO9m', '3285414'), + (770, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Lmp0DO9m', '3297764'), + (770, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Lmp0DO9m', '3313856'), + (770, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Lmp0DO9m', '3314909'), + (770, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Lmp0DO9m', '6045684'), + (771, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjnM7DJm', '6045684'), + (772, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dOWbaDnd', '5271448'), + (772, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dOWbaDnd', '5271449'), + (772, 1383, 'not_attending', '2022-05-05 20:53:38', '2025-12-17 19:47:28', 'dOWbaDnd', '5276469'), + (772, 1384, 'attending', '2022-05-06 04:48:31', '2025-12-17 19:47:28', 'dOWbaDnd', '5277078'), + (772, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dOWbaDnd', '5278159'), + (772, 1388, 'attending', '2022-05-05 20:04:49', '2025-12-17 19:47:28', 'dOWbaDnd', '5278201'), + (772, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dOWbaDnd', '5363695'), + (772, 1408, 'maybe', '2022-05-20 18:28:53', '2025-12-17 19:47:29', 'dOWbaDnd', '5365960'), + (772, 1414, 'maybe', '2022-05-20 18:29:12', '2025-12-17 19:47:29', 'dOWbaDnd', '5368445'), + (772, 1415, 'not_attending', '2022-06-03 19:09:12', '2025-12-17 19:47:30', 'dOWbaDnd', '5368973'), + (772, 1419, 'attending', '2022-06-07 14:07:59', '2025-12-17 19:47:30', 'dOWbaDnd', '5373081'), + (772, 1423, 'attending', '2022-06-15 17:48:29', '2025-12-17 19:47:17', 'dOWbaDnd', '5375727'), + (772, 1425, 'attending', '2022-05-26 21:58:52', '2025-12-17 19:47:30', 'dOWbaDnd', '5375861'), + (772, 1428, 'not_attending', '2022-06-10 16:07:16', '2025-12-17 19:47:30', 'dOWbaDnd', '5378247'), + (772, 1430, 'attending', '2022-06-09 22:59:05', '2025-12-17 19:47:30', 'dOWbaDnd', '5389402'), + (772, 1431, 'attending', '2022-06-09 15:25:50', '2025-12-17 19:47:30', 'dOWbaDnd', '5389605'), + (772, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dOWbaDnd', '5397265'), + (772, 1449, 'attending', '2022-06-14 00:17:57', '2025-12-17 19:47:31', 'dOWbaDnd', '5403335'), + (772, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dOWbaDnd', '5403967'), + (772, 1452, 'attending', '2022-06-10 16:07:21', '2025-12-17 19:47:30', 'dOWbaDnd', '5404197'), + (772, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dOWbaDnd', '5404786'), + (772, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dOWbaDnd', '5405203'), + (772, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dOWbaDnd', '5411699'), + (772, 1482, 'not_attending', '2022-06-24 19:53:42', '2025-12-17 19:47:19', 'dOWbaDnd', '5412550'), + (772, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dOWbaDnd', '5415046'), + (772, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dOWbaDnd', '5422086'), + (772, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dOWbaDnd', '5422406'), + (772, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dOWbaDnd', '5424565'), + (772, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dOWbaDnd', '5426882'), + (772, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dOWbaDnd', '5427083'), + (772, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'dOWbaDnd', '5441125'), + (772, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dOWbaDnd', '5441126'), + (772, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dOWbaDnd', '5446643'), + (772, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dOWbaDnd', '5453325'), + (772, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dOWbaDnd', '5454516'), + (772, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dOWbaDnd', '5454605'), + (772, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dOWbaDnd', '5455037'), + (772, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dOWbaDnd', '5471073'), + (772, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dOWbaDnd', '5474663'), + (772, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dOWbaDnd', '5482022'), + (772, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dOWbaDnd', '5482793'), + (772, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOWbaDnd', '6045684'), + (773, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AXjwyzQd', '5630960'), + (773, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AXjwyzQd', '5630961'), + (773, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AXjwyzQd', '5630962'), + (773, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AXjwyzQd', '5630966'), + (773, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AXjwyzQd', '5630967'), + (773, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AXjwyzQd', '5630968'), + (773, 1730, 'maybe', '2022-10-08 02:13:24', '2025-12-17 19:47:12', 'AXjwyzQd', '5634666'), + (773, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AXjwyzQd', '5638765'), + (773, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AXjwyzQd', '5640097'), + (773, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'AXjwyzQd', '5640843'), + (773, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AXjwyzQd', '5641521'), + (773, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AXjwyzQd', '5642818'), + (773, 1745, 'attending', '2022-10-13 18:21:47', '2025-12-17 19:47:12', 'AXjwyzQd', '5643088'), + (773, 1750, 'attending', '2022-11-04 14:53:57', '2025-12-17 19:47:15', 'AXjwyzQd', '5652365'), + (773, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AXjwyzQd', '5652395'), + (773, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AXjwyzQd', '5670445'), + (773, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AXjwyzQd', '5671637'), + (773, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AXjwyzQd', '5672329'), + (773, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AXjwyzQd', '5674057'), + (773, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AXjwyzQd', '5674060'), + (773, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AXjwyzQd', '5677461'), + (773, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AXjwyzQd', '5698046'), + (773, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AXjwyzQd', '5699760'), + (773, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AXjwyzQd', '5741601'), + (773, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AXjwyzQd', '5763458'), + (773, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AXjwyzQd', '5774172'), + (773, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AXjwyzQd', '5818247'), + (773, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AXjwyzQd', '5819471'), + (773, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AXjwyzQd', '5827739'), + (773, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AXjwyzQd', '5844306'), + (773, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AXjwyzQd', '5850159'), + (773, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AXjwyzQd', '5858999'), + (773, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AXjwyzQd', '5871984'), + (773, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AXjwyzQd', '5876354'), + (773, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AXjwyzQd', '5880939'), + (773, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AXjwyzQd', '5880940'), + (773, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AXjwyzQd', '5880942'), + (773, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AXjwyzQd', '5880943'), + (773, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AXjwyzQd', '5887890'), + (773, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AXjwyzQd', '5888598'), + (773, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AXjwyzQd', '5893260'), + (773, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AXjwyzQd', '5899826'), + (773, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AXjwyzQd', '5900199'), + (773, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AXjwyzQd', '5900200'), + (773, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AXjwyzQd', '5900202'), + (773, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AXjwyzQd', '5900203'), + (773, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AXjwyzQd', '5901108'), + (773, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AXjwyzQd', '5901126'), + (773, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AXjwyzQd', '5909655'), + (773, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AXjwyzQd', '5910522'), + (773, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AXjwyzQd', '5910526'), + (773, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AXjwyzQd', '5910528'), + (773, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AXjwyzQd', '5916219'), + (773, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AXjwyzQd', '5936234'), + (773, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AXjwyzQd', '5958351'), + (773, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AXjwyzQd', '5959751'), + (773, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AXjwyzQd', '5959755'), + (773, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AXjwyzQd', '5960055'), + (773, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AXjwyzQd', '5961684'), + (773, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'AXjwyzQd', '5962132'), + (773, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AXjwyzQd', '5962133'), + (773, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AXjwyzQd', '5962134'), + (773, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AXjwyzQd', '5962317'), + (773, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AXjwyzQd', '5962318'), + (773, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AXjwyzQd', '5965933'), + (773, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AXjwyzQd', '5967014'), + (773, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AXjwyzQd', '5972815'), + (773, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AXjwyzQd', '5974016'), + (773, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AXjwyzQd', '5981515'), + (773, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AXjwyzQd', '5993516'), + (773, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AXjwyzQd', '5998939'), + (773, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AXjwyzQd', '6028191'), + (773, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AXjwyzQd', '6040066'), + (773, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AXjwyzQd', '6042717'), + (773, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AXjwyzQd', '6044838'), + (773, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AXjwyzQd', '6044839'), + (773, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXjwyzQd', '6045684'), + (773, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AXjwyzQd', '6050104'), + (773, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AXjwyzQd', '6053195'), + (773, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AXjwyzQd', '6053198'), + (773, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AXjwyzQd', '6056085'), + (773, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AXjwyzQd', '6056916'), + (773, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AXjwyzQd', '6059290'), + (773, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AXjwyzQd', '6060328'), + (773, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AXjwyzQd', '6061037'), + (773, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AXjwyzQd', '6061039'), + (773, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AXjwyzQd', '6067245'), + (773, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AXjwyzQd', '6068094'), + (773, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AXjwyzQd', '6068252'), + (773, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AXjwyzQd', '6068253'), + (773, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AXjwyzQd', '6068254'), + (773, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'AXjwyzQd', '6068280'), + (773, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AXjwyzQd', '6069093'), + (773, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'AXjwyzQd', '6072528'), + (773, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AXjwyzQd', '6079840'), + (773, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AXjwyzQd', '6083398'), + (773, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'AXjwyzQd', '6093504'), + (773, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AXjwyzQd', '6097414'), + (773, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AXjwyzQd', '6097442'), + (773, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AXjwyzQd', '6097684'), + (773, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AXjwyzQd', '6098762'), + (773, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AXjwyzQd', '6101362'), + (773, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AXjwyzQd', '6103752'), + (773, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AXjwyzQd', '6107314'), + (774, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'ArgX9Rn4', '4420747'), + (774, 997, 'attending', '2021-10-23 21:20:24', '2025-12-17 19:47:35', 'ArgX9Rn4', '4420748'), + (774, 998, 'not_attending', '2021-10-30 21:40:41', '2025-12-17 19:47:36', 'ArgX9Rn4', '4420749'), + (774, 1008, 'attending', '2021-10-16 14:28:23', '2025-12-17 19:47:35', 'ArgX9Rn4', '4438810'), + (774, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ArgX9Rn4', '4568602'), + (774, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ArgX9Rn4', '4572153'), + (774, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'ArgX9Rn4', '4585962'), + (774, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ArgX9Rn4', '4596356'), + (774, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ArgX9Rn4', '4598860'), + (774, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ArgX9Rn4', '4598861'), + (774, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ArgX9Rn4', '4602797'), + (774, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ArgX9Rn4', '4637896'), + (774, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ArgX9Rn4', '4642994'), + (774, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ArgX9Rn4', '4642995'), + (774, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ArgX9Rn4', '4642996'), + (774, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ArgX9Rn4', '4642997'), + (774, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ArgX9Rn4', '4645687'), + (774, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ArgX9Rn4', '4645698'), + (774, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ArgX9Rn4', '4645704'), + (774, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ArgX9Rn4', '4645705'), + (774, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ArgX9Rn4', '4668385'), + (774, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ArgX9Rn4', '4694407'), + (774, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'ArgX9Rn4', '4706262'), + (774, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ArgX9Rn4', '4736497'), + (774, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ArgX9Rn4', '4736499'), + (774, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ArgX9Rn4', '4736500'), + (774, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ArgX9Rn4', '4736503'), + (774, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ArgX9Rn4', '4736504'), + (774, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ArgX9Rn4', '4746789'), + (774, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ArgX9Rn4', '4753929'), + (774, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ArgX9Rn4', '5038850'), + (774, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ArgX9Rn4', '5045826'), + (774, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ArgX9Rn4', '5132533'), + (774, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ArgX9Rn4', '5186582'), + (774, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ArgX9Rn4', '5186583'), + (774, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ArgX9Rn4', '5186585'), + (774, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ArgX9Rn4', '5190437'), + (774, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ArgX9Rn4', '5215989'), + (774, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArgX9Rn4', '6045684'), + (775, 646, 'maybe', '2021-05-13 19:07:57', '2025-12-17 19:47:46', '54kjyNlA', '3539921'), + (775, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '54kjyNlA', '3539922'), + (775, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '54kjyNlA', '3539923'), + (775, 802, 'not_attending', '2021-05-12 22:58:29', '2025-12-17 19:47:46', '54kjyNlA', '3803310'), + (775, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '54kjyNlA', '3974109'), + (775, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '54kjyNlA', '3975311'), + (775, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '54kjyNlA', '3975312'), + (775, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54kjyNlA', '3994992'), + (775, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '54kjyNlA', '4014338'), + (775, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '54kjyNlA', '4021848'), + (775, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '54kjyNlA', '4136744'), + (775, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '54kjyNlA', '4136937'), + (775, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '54kjyNlA', '4136938'), + (775, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '54kjyNlA', '4136947'), + (775, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54kjyNlA', '4210314'), + (775, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54kjyNlA', '4225444'), + (775, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54kjyNlA', '4239259'), + (775, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '54kjyNlA', '4240316'), + (775, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '54kjyNlA', '4250163'), + (775, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54kjyNlA', '4275957'), + (775, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54kjyNlA', '4277819'), + (775, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54kjyNlA', '4301723'), + (775, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kjyNlA', '6045684'), + (776, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dODVOKym', '4356801'), + (776, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'dODVOKym', '4420738'), + (776, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'dODVOKym', '4420739'), + (776, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dODVOKym', '4420741'), + (776, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dODVOKym', '4420744'), + (776, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dODVOKym', '4420747'), + (776, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODVOKym', '4461883'), + (776, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODVOKym', '4508342'), + (776, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODVOKym', '4568602'), + (776, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dODVOKym', '4572153'), + (776, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dODVOKym', '4585962'), + (776, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dODVOKym', '4596356'), + (776, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dODVOKym', '4598860'), + (776, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dODVOKym', '4598861'), + (776, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dODVOKym', '4602797'), + (776, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dODVOKym', '4637896'), + (776, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dODVOKym', '4642994'), + (776, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dODVOKym', '4642995'), + (776, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dODVOKym', '4642996'), + (776, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dODVOKym', '4642997'), + (776, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dODVOKym', '4645687'), + (776, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dODVOKym', '4645698'), + (776, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dODVOKym', '4645704'), + (776, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dODVOKym', '4645705'), + (776, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dODVOKym', '4668385'), + (776, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODVOKym', '6045684'), + (777, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'AnaKYpkm', '6632757'), + (777, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AnaKYpkm', '6644187'), + (777, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AnaKYpkm', '6648951'), + (777, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AnaKYpkm', '6648952'), + (777, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'AnaKYpkm', '6651141'), + (777, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AnaKYpkm', '6655401'), + (777, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AnaKYpkm', '6661585'), + (777, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AnaKYpkm', '6661588'), + (777, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AnaKYpkm', '6661589'), + (777, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AnaKYpkm', '6699906'), + (777, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'AnaKYpkm', '6699913'), + (777, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AnaKYpkm', '6701109'), + (777, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AnaKYpkm', '6705219'), + (777, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AnaKYpkm', '6710153'), + (777, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AnaKYpkm', '6711552'), + (777, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AnaKYpkm', '6711553'), + (777, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AnaKYpkm', '6722688'), + (777, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AnaKYpkm', '6730620'), + (777, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AnaKYpkm', '6730642'), + (777, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AnaKYpkm', '6740364'), + (777, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AnaKYpkm', '6743829'), + (777, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AnaKYpkm', '7030380'), + (777, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AnaKYpkm', '7033677'), + (777, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'AnaKYpkm', '7035415'), + (777, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AnaKYpkm', '7044715'), + (777, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AnaKYpkm', '7050318'), + (777, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AnaKYpkm', '7050319'), + (777, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AnaKYpkm', '7050322'), + (777, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AnaKYpkm', '7057804'), + (777, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AnaKYpkm', '7072824'), + (777, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AnaKYpkm', '7074348'), + (777, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AnaKYpkm', '7089267'), + (777, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AnaKYpkm', '7098747'), + (777, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AnaKYpkm', '7113468'), + (777, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AnaKYpkm', '7114856'), + (777, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AnaKYpkm', '7114951'), + (777, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AnaKYpkm', '7114955'), + (777, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AnaKYpkm', '7114956'), + (777, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AnaKYpkm', '7153615'), + (777, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AnaKYpkm', '7159484'), + (777, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AnaKYpkm', '7178446'), + (778, 258, 'not_attending', '2021-06-01 01:29:28', '2025-12-17 19:47:47', '54kpKPNd', '3149489'), + (778, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '54kpKPNd', '3149491'), + (778, 393, 'attending', '2021-06-22 00:33:46', '2025-12-17 19:47:38', '54kpKPNd', '3236448'), + (778, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '54kpKPNd', '3236450'), + (778, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '54kpKPNd', '3974109'), + (778, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '54kpKPNd', '3975311'), + (778, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '54kpKPNd', '3975312'), + (778, 829, 'attending', '2021-05-31 15:46:51', '2025-12-17 19:47:47', '54kpKPNd', '3976202'), + (778, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54kpKPNd', '3994992'), + (778, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '54kpKPNd', '4014338'), + (778, 848, 'not_attending', '2021-08-22 23:17:00', '2025-12-17 19:47:40', '54kpKPNd', '4015720'), + (778, 867, 'attending', '2021-06-26 06:38:26', '2025-12-17 19:47:38', '54kpKPNd', '4021848'), + (778, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '54kpKPNd', '4136744'), + (778, 870, 'attending', '2021-06-30 10:51:48', '2025-12-17 19:47:39', '54kpKPNd', '4136937'), + (778, 871, 'attending', '2021-07-05 18:56:09', '2025-12-17 19:47:39', '54kpKPNd', '4136938'), + (778, 872, 'attending', '2021-07-21 22:03:03', '2025-12-17 19:47:40', '54kpKPNd', '4136947'), + (778, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54kpKPNd', '4210314'), + (778, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54kpKPNd', '4225444'), + (778, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54kpKPNd', '4239259'), + (778, 900, 'attending', '2021-07-24 22:40:38', '2025-12-17 19:47:40', '54kpKPNd', '4240316'), + (778, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '54kpKPNd', '4240317'), + (778, 902, 'attending', '2021-08-06 15:47:31', '2025-12-17 19:47:41', '54kpKPNd', '4240318'), + (778, 903, 'attending', '2021-08-14 21:21:17', '2025-12-17 19:47:42', '54kpKPNd', '4240320'), + (778, 905, 'attending', '2021-07-05 18:55:52', '2025-12-17 19:47:39', '54kpKPNd', '4250163'), + (778, 911, 'attending', '2021-07-13 21:51:40', '2025-12-17 19:47:39', '54kpKPNd', '4264465'), + (778, 918, 'attending', '2021-07-12 23:07:42', '2025-12-17 19:47:39', '54kpKPNd', '4274486'), + (778, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54kpKPNd', '4275957'), + (778, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54kpKPNd', '4277819'), + (778, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54kpKPNd', '4301723'), + (778, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '54kpKPNd', '4302093'), + (778, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '54kpKPNd', '4304151'), + (778, 965, 'not_attending', '2021-08-19 21:51:35', '2025-12-17 19:47:42', '54kpKPNd', '4353703'), + (778, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54kpKPNd', '4356801'), + (778, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '54kpKPNd', '4366186'), + (778, 974, 'attending', '2021-08-22 23:17:09', '2025-12-17 19:47:42', '54kpKPNd', '4366187'), + (778, 981, 'attending', '2021-08-22 21:43:36', '2025-12-17 19:47:42', '54kpKPNd', '4387305'), + (778, 987, 'maybe', '2021-09-29 19:10:11', '2025-12-17 19:47:43', '54kpKPNd', '4402634'), + (778, 988, 'not_attending', '2021-08-27 21:26:46', '2025-12-17 19:47:42', '54kpKPNd', '4402823'), + (778, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '54kpKPNd', '4420735'), + (778, 991, 'attending', '2021-09-11 22:35:19', '2025-12-17 19:47:43', '54kpKPNd', '4420738'), + (778, 992, 'maybe', '2021-09-18 21:37:31', '2025-12-17 19:47:34', '54kpKPNd', '4420739'), + (778, 993, 'attending', '2021-09-25 19:02:21', '2025-12-17 19:47:34', '54kpKPNd', '4420741'), + (778, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '54kpKPNd', '4420744'), + (778, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '54kpKPNd', '4420747'), + (778, 997, 'attending', '2021-10-23 16:41:11', '2025-12-17 19:47:35', '54kpKPNd', '4420748'), + (778, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '54kpKPNd', '4420749'), + (778, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '54kpKPNd', '4461883'), + (778, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '54kpKPNd', '4508342'), + (778, 1074, 'not_attending', '2021-09-29 22:16:09', '2025-12-17 19:47:34', '54kpKPNd', '4528953'), + (778, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '54kpKPNd', '4568602'), + (778, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '54kpKPNd', '4572153'), + (778, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '54kpKPNd', '4585962'), + (778, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '54kpKPNd', '4596356'), + (778, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '54kpKPNd', '4598860'), + (778, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '54kpKPNd', '4598861'), + (778, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '54kpKPNd', '4602797'), + (778, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '54kpKPNd', '4637896'), + (778, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '54kpKPNd', '4642994'), + (778, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '54kpKPNd', '4642995'), + (778, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '54kpKPNd', '4642996'), + (778, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '54kpKPNd', '4642997'), + (778, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '54kpKPNd', '4645687'), + (778, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '54kpKPNd', '4645698'), + (778, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '54kpKPNd', '4645704'), + (778, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '54kpKPNd', '4645705'), + (778, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '54kpKPNd', '4668385'), + (778, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '54kpKPNd', '4694407'), + (778, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '54kpKPNd', '4706262'), + (778, 1174, 'attending', '2022-01-15 19:42:57', '2025-12-17 19:47:31', '54kpKPNd', '4736496'), + (778, 1175, 'attending', '2022-01-22 22:50:10', '2025-12-17 19:47:32', '54kpKPNd', '4736497'), + (778, 1176, 'attending', '2022-02-05 23:45:24', '2025-12-17 19:47:32', '54kpKPNd', '4736498'), + (778, 1177, 'attending', '2022-02-12 22:18:08', '2025-12-17 19:47:32', '54kpKPNd', '4736499'), + (778, 1178, 'attending', '2022-01-27 19:25:46', '2025-12-17 19:47:32', '54kpKPNd', '4736500'), + (778, 1179, 'attending', '2022-02-18 00:11:16', '2025-12-17 19:47:32', '54kpKPNd', '4736501'), + (778, 1180, 'attending', '2022-02-27 00:39:55', '2025-12-17 19:47:33', '54kpKPNd', '4736502'), + (778, 1181, 'attending', '2022-03-02 20:33:54', '2025-12-17 19:47:33', '54kpKPNd', '4736503'), + (778, 1182, 'attending', '2022-03-13 00:11:07', '2025-12-17 19:47:33', '54kpKPNd', '4736504'), + (778, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '54kpKPNd', '4746789'), + (778, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '54kpKPNd', '4753929'), + (778, 1222, 'attending', '2022-02-14 15:03:38', '2025-12-17 19:47:32', '54kpKPNd', '5015628'), + (778, 1223, 'not_attending', '2022-01-30 04:52:48', '2025-12-17 19:47:32', '54kpKPNd', '5015635'), + (778, 1232, 'maybe', '2022-02-09 19:31:45', '2025-12-17 19:47:32', '54kpKPNd', '5038850'), + (778, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '54kpKPNd', '5045826'), + (778, 1238, 'maybe', '2022-02-23 05:42:44', '2025-12-17 19:47:32', '54kpKPNd', '5052236'), + (778, 1239, 'not_attending', '2022-03-03 00:29:12', '2025-12-17 19:47:33', '54kpKPNd', '5052238'), + (778, 1240, 'attending', '2022-03-16 22:29:27', '2025-12-17 19:47:33', '54kpKPNd', '5052239'), + (778, 1241, 'attending', '2022-03-23 22:37:59', '2025-12-17 19:47:25', '54kpKPNd', '5052240'), + (778, 1242, 'attending', '2022-03-30 21:00:43', '2025-12-17 19:47:25', '54kpKPNd', '5052241'), + (778, 1249, 'attending', '2022-03-09 22:44:52', '2025-12-17 19:47:33', '54kpKPNd', '5068530'), + (778, 1254, 'attending', '2022-02-28 21:17:44', '2025-12-17 19:47:33', '54kpKPNd', '5129129'), + (778, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '54kpKPNd', '5132533'), + (778, 1272, 'attending', '2022-03-19 05:41:24', '2025-12-17 19:47:25', '54kpKPNd', '5186582'), + (778, 1273, 'attending', '2022-03-25 23:00:13', '2025-12-17 19:47:25', '54kpKPNd', '5186583'), + (778, 1274, 'attending', '2022-04-02 15:46:37', '2025-12-17 19:47:26', '54kpKPNd', '5186585'), + (778, 1281, 'attending', '2022-04-09 20:53:38', '2025-12-17 19:47:27', '54kpKPNd', '5190437'), + (778, 1284, 'attending', '2022-04-16 21:45:04', '2025-12-17 19:47:27', '54kpKPNd', '5195095'), + (778, 1291, 'attending', '2022-03-25 20:53:26', '2025-12-17 19:47:25', '54kpKPNd', '5200458'), + (778, 1296, 'attending', '2022-03-28 15:08:56', '2025-12-17 19:47:26', '54kpKPNd', '5215985'), + (778, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '54kpKPNd', '5215989'), + (778, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '54kpKPNd', '5223686'), + (778, 1308, 'attending', '2022-04-13 18:43:36', '2025-12-17 19:47:27', '54kpKPNd', '5226703'), + (778, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '54kpKPNd', '5227432'), + (778, 1319, 'attending', '2022-04-24 21:33:31', '2025-12-17 19:47:27', '54kpKPNd', '5238353'), + (778, 1320, 'not_attending', '2022-04-24 21:33:40', '2025-12-17 19:47:27', '54kpKPNd', '5238354'), + (778, 1323, 'not_attending', '2022-04-25 04:11:06', '2025-12-17 19:47:27', '54kpKPNd', '5238357'), + (778, 1326, 'not_attending', '2022-04-25 04:11:00', '2025-12-17 19:47:28', '54kpKPNd', '5238362'), + (778, 1327, 'not_attending', '2022-04-25 04:11:39', '2025-12-17 19:47:27', '54kpKPNd', '5238445'), + (778, 1330, 'attending', '2022-04-18 20:47:04', '2025-12-17 19:47:27', '54kpKPNd', '5242155'), + (778, 1336, 'attending', '2022-04-19 16:05:14', '2025-12-17 19:47:27', '54kpKPNd', '5244915'), + (778, 1340, 'attending', '2022-04-28 22:14:41', '2025-12-17 19:47:27', '54kpKPNd', '5245754'), + (778, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '54kpKPNd', '5247467'), + (778, 1348, 'attending', '2022-04-25 04:12:26', '2025-12-17 19:47:28', '54kpKPNd', '5247605'), + (778, 1356, 'attending', '2022-04-22 01:30:14', '2025-12-17 19:47:27', '54kpKPNd', '5252913'), + (778, 1357, 'attending', '2022-04-25 04:11:33', '2025-12-17 19:47:27', '54kpKPNd', '5256017'), + (778, 1362, 'attending', '2022-04-25 18:19:25', '2025-12-17 19:47:28', '54kpKPNd', '5260800'), + (778, 1371, 'attending', '2022-04-27 22:24:32', '2025-12-17 19:47:27', '54kpKPNd', '5263784'), + (778, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '54kpKPNd', '5269930'), + (778, 1377, 'not_attending', '2022-05-11 14:47:56', '2025-12-17 19:47:28', '54kpKPNd', '5271447'), + (778, 1378, 'attending', '2022-05-11 14:47:41', '2025-12-17 19:47:28', '54kpKPNd', '5271448'), + (778, 1379, 'attending', '2022-05-21 19:52:19', '2025-12-17 19:47:29', '54kpKPNd', '5271449'), + (778, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '54kpKPNd', '5276469'), + (778, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', '54kpKPNd', '5277078'), + (778, 1385, 'attending', '2022-05-11 14:47:36', '2025-12-17 19:47:28', '54kpKPNd', '5277822'), + (778, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '54kpKPNd', '5278159'), + (778, 1407, 'attending', '2022-06-03 22:17:50', '2025-12-17 19:47:30', '54kpKPNd', '5363695'), + (778, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '54kpKPNd', '5365960'), + (778, 1415, 'attending', '2022-06-03 22:17:46', '2025-12-17 19:47:30', '54kpKPNd', '5368973'), + (778, 1422, 'attending', '2022-05-25 18:32:26', '2025-12-17 19:47:30', '54kpKPNd', '5375603'), + (778, 1427, 'attending', '2022-05-25 18:31:01', '2025-12-17 19:47:30', '54kpKPNd', '5376074'), + (778, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '54kpKPNd', '5378247'), + (778, 1431, 'attending', '2022-06-11 20:17:53', '2025-12-17 19:47:30', '54kpKPNd', '5389605'), + (778, 1438, 'attending', '2022-06-01 20:56:44', '2025-12-17 19:47:30', '54kpKPNd', '5395032'), + (778, 1442, 'attending', '2022-06-11 18:50:26', '2025-12-17 19:47:17', '54kpKPNd', '5397265'), + (778, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '54kpKPNd', '5403967'), + (778, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '54kpKPNd', '5404786'), + (778, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '54kpKPNd', '5405203'), + (778, 1476, 'maybe', '2022-06-19 02:13:12', '2025-12-17 19:47:17', '54kpKPNd', '5408130'), + (778, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '54kpKPNd', '5412550'), + (778, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '54kpKPNd', '5415046'), + (778, 1824, 'maybe', '2022-12-21 23:22:23', '2025-12-17 19:47:04', '54kpKPNd', '5774172'), + (778, 1826, 'attending', '2022-12-20 00:33:47', '2025-12-17 19:47:04', '54kpKPNd', '5776768'), + (778, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '54kpKPNd', '5819471'), + (778, 1842, 'attending', '2022-12-23 00:24:31', '2025-12-17 19:47:04', '54kpKPNd', '5827739'), + (778, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '54kpKPNd', '5850159'), + (778, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '54kpKPNd', '5858999'), + (778, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '54kpKPNd', '5871984'), + (778, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '54kpKPNd', '5876354'), + (778, 1865, 'attending', '2023-01-28 20:36:06', '2025-12-17 19:47:06', '54kpKPNd', '5879676'), + (778, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '54kpKPNd', '5880939'), + (778, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '54kpKPNd', '5880940'), + (778, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '54kpKPNd', '5880942'), + (778, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '54kpKPNd', '5880943'), + (778, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '54kpKPNd', '5887890'), + (778, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '54kpKPNd', '5888598'), + (778, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '54kpKPNd', '5893260'), + (778, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '54kpKPNd', '5899826'), + (778, 1886, 'attending', '2023-03-07 23:46:35', '2025-12-17 19:47:09', '54kpKPNd', '5899930'), + (778, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '54kpKPNd', '5900199'), + (778, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '54kpKPNd', '5900200'), + (778, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '54kpKPNd', '5900202'), + (778, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '54kpKPNd', '5900203'), + (778, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '54kpKPNd', '5901108'), + (778, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '54kpKPNd', '5901126'), + (778, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '54kpKPNd', '5909655'), + (778, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '54kpKPNd', '5910522'), + (778, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '54kpKPNd', '5910526'), + (778, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '54kpKPNd', '5910528'), + (778, 1918, 'not_attending', '2023-02-09 18:38:02', '2025-12-17 19:47:07', '54kpKPNd', '5911180'), + (778, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '54kpKPNd', '5916219'), + (778, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '54kpKPNd', '5936234'), + (778, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '54kpKPNd', '5958351'), + (778, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '54kpKPNd', '5959751'), + (778, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '54kpKPNd', '5959755'), + (778, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '54kpKPNd', '5960055'), + (778, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '54kpKPNd', '5961684'), + (778, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '54kpKPNd', '5962132'), + (778, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '54kpKPNd', '5962133'), + (778, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '54kpKPNd', '5962134'), + (778, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '54kpKPNd', '5962317'), + (778, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '54kpKPNd', '5962318'), + (778, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '54kpKPNd', '5965933'), + (778, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '54kpKPNd', '5967014'), + (778, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '54kpKPNd', '5972815'), + (778, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '54kpKPNd', '5974016'), + (778, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '54kpKPNd', '5975052'), + (778, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '54kpKPNd', '5975054'), + (778, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '54kpKPNd', '5981515'), + (778, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '54kpKPNd', '5993516'), + (778, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '54kpKPNd', '5998939'), + (778, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '54kpKPNd', '6028191'), + (778, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '54kpKPNd', '6040066'), + (778, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '54kpKPNd', '6042717'), + (778, 1986, 'attending', '2023-04-03 01:49:35', '2025-12-17 19:46:58', '54kpKPNd', '6044838'), + (778, 1987, 'attending', '2023-04-03 01:49:48', '2025-12-17 19:47:00', '54kpKPNd', '6044839'), + (778, 1988, 'attending', '2023-04-03 01:49:53', '2025-12-17 19:47:01', '54kpKPNd', '6044840'), + (778, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kpKPNd', '6045684'), + (778, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '54kpKPNd', '6050104'), + (778, 1996, 'attending', '2023-04-03 01:49:26', '2025-12-17 19:46:58', '54kpKPNd', '6050667'), + (778, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '54kpKPNd', '6053195'), + (778, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '54kpKPNd', '6053198'), + (778, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '54kpKPNd', '6056085'), + (778, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '54kpKPNd', '6056916'), + (778, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '54kpKPNd', '6059290'), + (778, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '54kpKPNd', '6060328'), + (778, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '54kpKPNd', '6061037'), + (778, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '54kpKPNd', '6061039'), + (778, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '54kpKPNd', '6067245'), + (778, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '54kpKPNd', '6068094'), + (778, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '54kpKPNd', '6068252'), + (778, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '54kpKPNd', '6068253'), + (778, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '54kpKPNd', '6068254'), + (778, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '54kpKPNd', '6068280'), + (778, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '54kpKPNd', '6069093'), + (778, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '54kpKPNd', '6072528'), + (778, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '54kpKPNd', '6079840'), + (778, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '54kpKPNd', '6083398'), + (778, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '54kpKPNd', '6093504'), + (778, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '54kpKPNd', '6097414'), + (778, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '54kpKPNd', '6097442'), + (778, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '54kpKPNd', '6097684'), + (778, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '54kpKPNd', '6098762'), + (778, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '54kpKPNd', '6101361'), + (778, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '54kpKPNd', '6101362'), + (778, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '54kpKPNd', '6103752'), + (778, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '54kpKPNd', '6107314'), + (778, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '54kpKPNd', '6120034'), + (778, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '54kpKPNd', '6136733'), + (778, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '54kpKPNd', '6137989'), + (778, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '54kpKPNd', '6150864'), + (778, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '54kpKPNd', '6155491'), + (778, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '54kpKPNd', '6164417'), + (778, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '54kpKPNd', '6166388'), + (778, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '54kpKPNd', '6176439'), + (778, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '54kpKPNd', '6182410'), + (778, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '54kpKPNd', '6185812'), + (778, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '54kpKPNd', '6187651'), + (778, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '54kpKPNd', '6187963'), + (778, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '54kpKPNd', '6187964'), + (778, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '54kpKPNd', '6187966'), + (778, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '54kpKPNd', '6187967'), + (778, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '54kpKPNd', '6187969'), + (778, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '54kpKPNd', '6334878'), + (778, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '54kpKPNd', '6337236'), + (778, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '54kpKPNd', '6337970'), + (778, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '54kpKPNd', '6338308'), + (778, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '54kpKPNd', '6341710'), + (778, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '54kpKPNd', '6342044'), + (778, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '54kpKPNd', '6342298'), + (778, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '54kpKPNd', '6343294'), + (778, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '54kpKPNd', '6347034'), + (778, 2177, 'attending', '2023-08-12 20:25:32', '2025-12-17 19:46:55', '54kpKPNd', '6347053'), + (778, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '54kpKPNd', '6347056'), + (778, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '54kpKPNd', '6353830'), + (778, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '54kpKPNd', '6353831'), + (778, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '54kpKPNd', '6357867'), + (778, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '54kpKPNd', '6358652'), + (778, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '54kpKPNd', '6358668'), + (778, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '54kpKPNd', '6358669'), + (778, 2204, 'attending', '2023-08-19 19:21:13', '2025-12-17 19:46:55', '54kpKPNd', '6361542'), + (778, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '54kpKPNd', '6361709'), + (778, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '54kpKPNd', '6361710'), + (778, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '54kpKPNd', '6361711'), + (778, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '54kpKPNd', '6361712'), + (778, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '54kpKPNd', '6361713'), + (778, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '54kpKPNd', '6382573'), + (778, 2239, 'attending', '2023-09-02 20:04:54', '2025-12-17 19:46:56', '54kpKPNd', '6387592'), + (778, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '54kpKPNd', '6388604'), + (778, 2242, 'attending', '2023-09-23 21:57:04', '2025-12-17 19:46:45', '54kpKPNd', '6388606'), + (778, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '54kpKPNd', '6394629'), + (778, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '54kpKPNd', '6394631'), + (778, 2253, 'attending', '2023-09-30 21:06:10', '2025-12-17 19:46:45', '54kpKPNd', '6401811'), + (778, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '54kpKPNd', '6440863'), + (778, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '54kpKPNd', '6445440'), + (778, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '54kpKPNd', '6453951'), + (778, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '54kpKPNd', '6461696'), + (778, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '54kpKPNd', '6462129'), + (778, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '54kpKPNd', '6463218'), + (778, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '54kpKPNd', '6472181'), + (778, 2303, 'attending', '2023-10-28 20:12:28', '2025-12-17 19:46:47', '54kpKPNd', '6482691'), + (778, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '54kpKPNd', '6482693'), + (778, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '54kpKPNd', '6484200'), + (778, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '54kpKPNd', '6484680'), + (778, 2310, 'attending', '2023-11-11 23:12:25', '2025-12-17 19:46:47', '54kpKPNd', '6487709'), + (778, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '54kpKPNd', '6507741'), + (778, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '54kpKPNd', '6514659'), + (778, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '54kpKPNd', '6514660'), + (778, 2324, 'attending', '2023-12-09 19:55:03', '2025-12-17 19:46:49', '54kpKPNd', '6514662'), + (778, 2332, 'not_attending', '2023-11-03 20:58:05', '2025-12-17 19:46:47', '54kpKPNd', '6518655'), + (778, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '54kpKPNd', '6519103'), + (778, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '54kpKPNd', '6535681'), + (778, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '54kpKPNd', '6584747'), + (778, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '54kpKPNd', '6587097'), + (778, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '54kpKPNd', '6609022'), + (778, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '54kpKPNd', '6632757'), + (778, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '54kpKPNd', '6644187'), + (778, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '54kpKPNd', '6648951'), + (778, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '54kpKPNd', '6648952'), + (778, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '54kpKPNd', '6655401'), + (778, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '54kpKPNd', '6661585'), + (778, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '54kpKPNd', '6661588'), + (778, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '54kpKPNd', '6661589'), + (778, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '54kpKPNd', '6699906'), + (778, 2408, 'attending', '2024-01-20 02:28:08', '2025-12-17 19:46:40', '54kpKPNd', '6699907'), + (778, 2410, 'attending', '2024-02-11 00:18:10', '2025-12-17 19:46:41', '54kpKPNd', '6699911'), + (778, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '54kpKPNd', '6699913'), + (778, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '54kpKPNd', '6701109'), + (778, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '54kpKPNd', '6704561'), + (778, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '54kpKPNd', '6705219'), + (778, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '54kpKPNd', '6708410'), + (778, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '54kpKPNd', '6710153'), + (778, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '54kpKPNd', '6711552'), + (778, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '54kpKPNd', '6711553'), + (778, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '54kpKPNd', '6722688'), + (778, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '54kpKPNd', '6730620'), + (778, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '54kpKPNd', '6730642'), + (778, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '54kpKPNd', '6740364'), + (778, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '54kpKPNd', '6743829'), + (778, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '54kpKPNd', '7030380'), + (778, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '54kpKPNd', '7033677'), + (778, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '54kpKPNd', '7035415'), + (778, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '54kpKPNd', '7044715'), + (778, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '54kpKPNd', '7050318'), + (778, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '54kpKPNd', '7050319'), + (778, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '54kpKPNd', '7050322'), + (778, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '54kpKPNd', '7057804'), + (778, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '54kpKPNd', '7072824'), + (778, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '54kpKPNd', '7074348'), + (778, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '54kpKPNd', '7074364'), + (778, 2525, 'not_attending', '2024-06-13 02:22:47', '2025-12-17 19:46:28', '54kpKPNd', '7074365'), + (778, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '54kpKPNd', '7089267'), + (778, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '54kpKPNd', '7098747'), + (778, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '54kpKPNd', '7113468'), + (778, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '54kpKPNd', '7114856'), + (778, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '54kpKPNd', '7114951'), + (778, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '54kpKPNd', '7114955'), + (778, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '54kpKPNd', '7114956'), + (778, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '54kpKPNd', '7114957'), + (778, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '54kpKPNd', '7153615'), + (778, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '54kpKPNd', '7159484'), + (778, 2582, 'attending', '2024-04-17 05:43:46', '2025-12-17 19:46:34', '54kpKPNd', '7169765'), + (778, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '54kpKPNd', '7178446'), + (778, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '54kpKPNd', '7220467'), + (778, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '54kpKPNd', '7240354'), + (778, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '54kpKPNd', '7251633'), + (778, 2628, 'attending', '2024-06-01 15:57:43', '2025-12-17 19:46:36', '54kpKPNd', '7264725'), + (778, 2629, 'attending', '2024-06-08 20:00:33', '2025-12-17 19:46:28', '54kpKPNd', '7264726'), + (778, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '54kpKPNd', '7302674'), + (778, 2667, 'attending', '2024-06-05 22:46:32', '2025-12-17 19:46:36', '54kpKPNd', '7307776'), + (778, 2678, 'attending', '2024-06-15 20:10:00', '2025-12-17 19:46:28', '54kpKPNd', '7319489'), + (778, 2687, 'maybe', '2024-06-12 22:09:21', '2025-12-17 19:46:28', '54kpKPNd', '7324019'), + (778, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '54kpKPNd', '7324073'), + (778, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '54kpKPNd', '7324074'), + (778, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '54kpKPNd', '7324075'), + (778, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '54kpKPNd', '7324078'), + (778, 2696, 'attending', '2024-08-24 22:14:42', '2025-12-17 19:46:32', '54kpKPNd', '7324081'), + (778, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '54kpKPNd', '7324082'), + (778, 2703, 'maybe', '2024-06-13 02:23:17', '2025-12-17 19:46:28', '54kpKPNd', '7324873'), + (778, 2713, 'attending', '2024-06-16 18:53:18', '2025-12-17 19:46:28', '54kpKPNd', '7326593'), + (778, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '54kpKPNd', '7331457'), + (778, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '54kpKPNd', '7363643'), + (778, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '54kpKPNd', '7368606'), + (778, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '54kpKPNd', '7397462'), + (778, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '54kpKPNd', '7424275'), + (778, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '54kpKPNd', '7424276'), + (778, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '54kpKPNd', '7432751'), + (778, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '54kpKPNd', '7432752'), + (778, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '54kpKPNd', '7432753'), + (778, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '54kpKPNd', '7432754'), + (778, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '54kpKPNd', '7432755'), + (778, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '54kpKPNd', '7432756'), + (778, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '54kpKPNd', '7432758'), + (778, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '54kpKPNd', '7432759'), + (778, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '54kpKPNd', '7433834'), + (778, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '54kpKPNd', '7470197'), + (778, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '54kpKPNd', '7685613'), + (778, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '54kpKPNd', '7688194'), + (778, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '54kpKPNd', '7688196'), + (778, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '54kpKPNd', '7688289'), + (778, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '54kpKPNd', '7692763'), + (778, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '54kpKPNd', '7697552'), + (778, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '54kpKPNd', '7699878'), + (778, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '54kpKPNd', '7704043'), + (778, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '54kpKPNd', '7712467'), + (778, 2925, 'attending', '2024-12-15 00:07:05', '2025-12-17 19:46:21', '54kpKPNd', '7713584'), + (778, 2926, 'attending', '2024-12-03 04:55:51', '2025-12-17 19:46:21', '54kpKPNd', '7713585'), + (778, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '54kpKPNd', '7713586'), + (778, 2954, 'attending', '2024-12-14 22:16:27', '2025-12-17 19:46:21', '54kpKPNd', '7734260'), + (778, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '54kpKPNd', '7738518'), + (778, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', '54kpKPNd', '7750632'), + (778, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '54kpKPNd', '7750636'), + (778, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '54kpKPNd', '7796540'), + (778, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '54kpKPNd', '7796541'), + (778, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '54kpKPNd', '7796542'), + (778, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '54kpKPNd', '7825913'), + (778, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', '54kpKPNd', '7825920'), + (778, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '54kpKPNd', '7826209'), + (778, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '54kpKPNd', '7834742'), + (778, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '54kpKPNd', '7842108'), + (778, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '54kpKPNd', '7842902'), + (778, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '54kpKPNd', '7842903'), + (778, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '54kpKPNd', '7842904'), + (778, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '54kpKPNd', '7842905'), + (778, 3001, 'attending', '2025-02-21 23:48:06', '2025-12-17 19:46:24', '54kpKPNd', '7854184'), + (778, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '54kpKPNd', '7855719'), + (778, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '54kpKPNd', '7860683'), + (778, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '54kpKPNd', '7860684'), + (778, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '54kpKPNd', '7866095'), + (778, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '54kpKPNd', '7869170'), + (778, 3014, 'attending', '2025-04-05 13:42:25', '2025-12-17 19:46:20', '54kpKPNd', '7869185'), + (778, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '54kpKPNd', '7869188'), + (778, 3018, 'attending', '2025-04-12 15:04:17', '2025-12-17 19:46:20', '54kpKPNd', '7869189'), + (778, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '54kpKPNd', '7869201'), + (778, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '54kpKPNd', '7877465'), + (778, 3053, 'not_attending', '2025-03-17 00:15:05', '2025-12-17 19:46:19', '54kpKPNd', '7884030'), + (778, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '54kpKPNd', '7888250'), + (778, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '54kpKPNd', '7904777'), + (778, 3094, 'attending', '2025-05-10 22:29:47', '2025-12-17 19:46:21', '54kpKPNd', '8342292'), + (778, 3095, 'attending', '2025-05-03 16:36:20', '2025-12-17 19:46:20', '54kpKPNd', '8342293'), + (778, 3099, 'attending', '2025-04-21 17:07:53', '2025-12-17 19:46:20', '54kpKPNd', '8343522'), + (778, 3102, 'attending', '2025-04-29 19:47:14', '2025-12-17 19:46:20', '54kpKPNd', '8346008'), + (778, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '54kpKPNd', '8349164'), + (778, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '54kpKPNd', '8349545'), + (778, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '54kpKPNd', '8353584'), + (778, 3115, 'attending', '2025-05-03 04:16:14', '2025-12-17 19:46:20', '54kpKPNd', '8357635'), + (778, 3126, 'maybe', '2025-05-14 17:02:17', '2025-12-17 19:46:21', '54kpKPNd', '8365614'), + (778, 3130, 'maybe', '2025-05-27 23:40:03', '2025-12-17 19:46:21', '54kpKPNd', '8367403'), + (778, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '54kpKPNd', '8368028'), + (778, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '54kpKPNd', '8368029'), + (778, 3133, 'attending', '2025-05-31 15:42:07', '2025-12-17 19:46:14', '54kpKPNd', '8368030'), + (778, 3141, 'attending', '2025-05-23 15:12:23', '2025-12-17 19:46:21', '54kpKPNd', '8383440'), + (778, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '54kpKPNd', '8388462'), + (778, 3152, 'attending', '2025-06-05 02:08:38', '2025-12-17 19:46:14', '54kpKPNd', '8393582'), + (778, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '54kpKPNd', '8400273'), + (778, 3154, 'attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '54kpKPNd', '8400274'), + (778, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '54kpKPNd', '8400275'), + (778, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '54kpKPNd', '8400276'), + (778, 3159, 'attending', '2025-06-04 04:33:31', '2025-12-17 19:46:15', '54kpKPNd', '8401410'), + (778, 3163, 'not_attending', '2025-06-08 21:32:46', '2025-12-17 19:46:15', '54kpKPNd', '8402899'), + (778, 3165, 'attending', '2025-06-07 22:02:09', '2025-12-17 19:46:14', '54kpKPNd', '8404220'), + (778, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '54kpKPNd', '8404977'), + (778, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '54kpKPNd', '8430783'), + (778, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '54kpKPNd', '8430784'), + (778, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '54kpKPNd', '8430799'), + (778, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '54kpKPNd', '8430800'), + (778, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '54kpKPNd', '8430801'), + (778, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '54kpKPNd', '8438709'), + (778, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '54kpKPNd', '8457738'), + (778, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '54kpKPNd', '8459566'), + (778, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '54kpKPNd', '8459567'), + (778, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '54kpKPNd', '8461032'), + (778, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '54kpKPNd', '8477877'), + (778, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '54kpKPNd', '8485688'), + (778, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '54kpKPNd', '8490587'), + (778, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '54kpKPNd', '8493552'), + (778, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '54kpKPNd', '8493553'), + (778, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '54kpKPNd', '8493554'), + (778, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '54kpKPNd', '8493555'), + (778, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '54kpKPNd', '8493556'), + (778, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '54kpKPNd', '8493557'), + (778, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '54kpKPNd', '8493558'), + (778, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '54kpKPNd', '8493559'), + (778, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '54kpKPNd', '8493560'), + (778, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '54kpKPNd', '8493561'), + (778, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '54kpKPNd', '8493572'), + (779, 1, 'not_attending', '2020-03-19 16:00:29', '2025-12-17 19:47:58', 'w4W5L2qm', '2958042'), + (779, 2, 'attending', '2020-03-21 03:34:59', '2025-12-17 19:47:58', 'w4W5L2qm', '2958044'), + (779, 3, 'not_attending', '2020-03-19 16:01:08', '2025-12-17 19:47:58', 'w4W5L2qm', '2958045'), + (779, 4, 'attending', '2020-03-19 05:29:25', '2025-12-17 19:47:58', 'w4W5L2qm', '2958046'), + (779, 5, 'attending', '2020-03-19 05:29:27', '2025-12-17 19:47:58', 'w4W5L2qm', '2958047'), + (779, 6, 'not_attending', '2020-03-23 18:55:53', '2025-12-17 19:47:58', 'w4W5L2qm', '2958048'), + (779, 7, 'maybe', '2020-03-24 16:02:09', '2025-12-17 19:47:58', 'w4W5L2qm', '2958049'), + (779, 8, 'attending', '2020-03-23 18:55:37', '2025-12-17 19:47:58', 'w4W5L2qm', '2958050'), + (779, 9, 'attending', '2020-03-25 00:06:20', '2025-12-17 19:47:56', 'w4W5L2qm', '2958052'), + (779, 10, 'attending', '2020-03-25 00:06:23', '2025-12-17 19:47:56', 'w4W5L2qm', '2958053'), + (779, 11, 'attending', '2020-03-25 00:07:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2958055'), + (779, 13, 'attending', '2020-03-25 00:07:34', '2025-12-17 19:47:57', 'w4W5L2qm', '2958057'), + (779, 15, 'not_attending', '2020-04-10 16:53:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2958059'), + (779, 16, 'attending', '2020-03-23 18:55:49', '2025-12-17 19:47:56', 'w4W5L2qm', '2958060'), + (779, 17, 'maybe', '2020-03-19 05:29:34', '2025-12-17 19:47:58', 'w4W5L2qm', '2958061'), + (779, 19, 'maybe', '2020-03-31 22:12:02', '2025-12-17 19:47:56', 'w4W5L2qm', '2958063'), + (779, 26, 'maybe', '2020-04-03 00:09:36', '2025-12-17 19:47:57', 'w4W5L2qm', '2958082'), + (779, 28, 'not_attending', '2020-03-29 01:45:50', '2025-12-17 19:47:56', 'w4W5L2qm', '2960421'), + (779, 29, 'maybe', '2020-03-23 18:55:31', '2025-12-17 19:47:56', 'w4W5L2qm', '2961309'), + (779, 30, 'attending', '2020-03-23 20:41:13', '2025-12-17 19:47:57', 'w4W5L2qm', '2961895'), + (779, 36, 'not_attending', '2020-03-31 22:12:06', '2025-12-17 19:47:57', 'w4W5L2qm', '2969208'), + (779, 38, 'maybe', '2020-03-31 22:11:59', '2025-12-17 19:47:56', 'w4W5L2qm', '2969751'), + (779, 39, 'not_attending', '2020-04-01 19:21:40', '2025-12-17 19:47:57', 'w4W5L2qm', '2970637'), + (779, 40, 'attending', '2020-03-30 21:51:30', '2025-12-17 19:47:57', 'w4W5L2qm', '2970718'), + (779, 41, 'maybe', '2020-04-10 16:53:27', '2025-12-17 19:47:57', 'w4W5L2qm', '2971546'), + (779, 44, 'not_attending', '2020-04-10 16:53:22', '2025-12-17 19:47:57', 'w4W5L2qm', '2974534'), + (779, 46, 'not_attending', '2020-04-11 21:31:07', '2025-12-17 19:47:57', 'w4W5L2qm', '2974955'), + (779, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'w4W5L2qm', '2975384'), + (779, 56, 'maybe', '2020-04-10 16:53:16', '2025-12-17 19:47:57', 'w4W5L2qm', '2975385'), + (779, 57, 'attending', '2020-04-22 17:15:00', '2025-12-17 19:47:57', 'w4W5L2qm', '2976575'), + (779, 58, 'attending', '2020-04-18 18:52:03', '2025-12-17 19:47:57', 'w4W5L2qm', '2977127'), + (779, 59, 'maybe', '2020-05-05 20:52:19', '2025-12-17 19:47:57', 'w4W5L2qm', '2977128'), + (779, 60, 'attending', '2020-04-18 18:53:31', '2025-12-17 19:47:57', 'w4W5L2qm', '2977129'), + (779, 61, 'attending', '2020-04-10 16:53:23', '2025-12-17 19:47:57', 'w4W5L2qm', '2977130'), + (779, 62, 'attending', '2020-05-09 19:52:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2977131'), + (779, 63, 'attending', '2020-05-17 18:09:34', '2025-12-17 19:47:57', 'w4W5L2qm', '2977132'), + (779, 64, 'not_attending', '2020-06-02 02:01:43', '2025-12-17 19:47:58', 'w4W5L2qm', '2977133'), + (779, 65, 'not_attending', '2020-05-17 18:09:21', '2025-12-17 19:47:57', 'w4W5L2qm', '2977134'), + (779, 66, 'maybe', '2020-06-02 02:02:24', '2025-12-17 19:47:58', 'w4W5L2qm', '2977135'), + (779, 70, 'not_attending', '2020-04-10 16:53:10', '2025-12-17 19:47:57', 'w4W5L2qm', '2977343'), + (779, 71, 'not_attending', '2020-04-11 21:31:05', '2025-12-17 19:47:57', 'w4W5L2qm', '2977526'), + (779, 72, 'maybe', '2020-05-05 02:45:10', '2025-12-17 19:47:57', 'w4W5L2qm', '2977812'), + (779, 73, 'maybe', '2020-04-11 03:56:28', '2025-12-17 19:47:57', 'w4W5L2qm', '2977931'), + (779, 74, 'attending', '2020-04-11 03:56:34', '2025-12-17 19:47:57', 'w4W5L2qm', '2978244'), + (779, 75, 'attending', '2020-04-18 18:53:26', '2025-12-17 19:47:57', 'w4W5L2qm', '2978245'), + (779, 76, 'attending', '2020-04-29 15:46:17', '2025-12-17 19:47:57', 'w4W5L2qm', '2978246'), + (779, 77, 'attending', '2020-05-05 02:45:21', '2025-12-17 19:47:57', 'w4W5L2qm', '2978247'), + (779, 78, 'not_attending', '2020-05-14 03:30:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2978249'), + (779, 79, 'not_attending', '2020-05-17 18:08:55', '2025-12-17 19:47:57', 'w4W5L2qm', '2978250'), + (779, 80, 'not_attending', '2020-06-06 18:44:15', '2025-12-17 19:47:58', 'w4W5L2qm', '2978251'), + (779, 81, 'attending', '2020-06-13 03:32:28', '2025-12-17 19:47:58', 'w4W5L2qm', '2978252'), + (779, 82, 'attending', '2020-04-22 17:14:39', '2025-12-17 19:47:57', 'w4W5L2qm', '2978433'), + (779, 83, 'not_attending', '2020-05-05 17:10:42', '2025-12-17 19:47:57', 'w4W5L2qm', '2978438'), + (779, 84, 'maybe', '2020-04-18 18:51:56', '2025-12-17 19:47:57', 'w4W5L2qm', '2980871'), + (779, 85, 'not_attending', '2020-04-22 22:03:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2980872'), + (779, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'w4W5L2qm', '2981388'), + (779, 87, 'attending', '2020-04-18 18:53:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2982602'), + (779, 88, 'attending', '2020-04-14 19:04:58', '2025-12-17 19:47:57', 'w4W5L2qm', '2982603'), + (779, 89, 'not_attending', '2020-05-02 15:49:18', '2025-12-17 19:47:57', 'w4W5L2qm', '2982604'), + (779, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'w4W5L2qm', '2986743'), + (779, 94, 'maybe', '2020-04-24 21:24:12', '2025-12-17 19:47:57', 'w4W5L2qm', '2987421'), + (779, 96, 'maybe', '2020-05-01 18:28:35', '2025-12-17 19:47:57', 'w4W5L2qm', '2987453'), + (779, 102, 'attending', '2020-04-23 23:34:36', '2025-12-17 19:47:57', 'w4W5L2qm', '2990784'), + (779, 103, 'maybe', '2020-05-04 23:48:29', '2025-12-17 19:47:57', 'w4W5L2qm', '2991407'), + (779, 104, 'attending', '2020-04-25 02:35:39', '2025-12-17 19:47:57', 'w4W5L2qm', '2991471'), + (779, 106, 'maybe', '2020-05-02 15:49:23', '2025-12-17 19:47:57', 'w4W5L2qm', '2993501'), + (779, 109, 'maybe', '2020-05-12 00:21:21', '2025-12-17 19:47:57', 'w4W5L2qm', '2994480'), + (779, 111, 'attending', '2020-06-05 12:44:48', '2025-12-17 19:47:58', 'w4W5L2qm', '2994907'), + (779, 115, 'attending', '2020-05-05 02:45:24', '2025-12-17 19:47:57', 'w4W5L2qm', '3001217'), + (779, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'w4W5L2qm', '3015486'), + (779, 121, 'not_attending', '2020-05-19 18:42:40', '2025-12-17 19:47:57', 'w4W5L2qm', '3023063'), + (779, 122, 'maybe', '2020-05-17 18:08:29', '2025-12-17 19:47:57', 'w4W5L2qm', '3023491'), + (779, 123, 'not_attending', '2020-05-19 18:42:35', '2025-12-17 19:47:57', 'w4W5L2qm', '3023729'), + (779, 124, 'not_attending', '2020-05-19 18:42:45', '2025-12-17 19:47:57', 'w4W5L2qm', '3023809'), + (779, 125, 'not_attending', '2020-05-19 18:42:22', '2025-12-17 19:47:57', 'w4W5L2qm', '3023987'), + (779, 126, 'not_attending', '2020-05-19 18:42:30', '2025-12-17 19:47:57', 'w4W5L2qm', '3024022'), + (779, 128, 'not_attending', '2020-05-18 17:57:21', '2025-12-17 19:47:57', 'w4W5L2qm', '3027185'), + (779, 130, 'not_attending', '2020-05-25 00:05:58', '2025-12-17 19:47:57', 'w4W5L2qm', '3028781'), + (779, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'w4W5L2qm', '3034321'), + (779, 135, 'not_attending', '2020-05-25 00:05:49', '2025-12-17 19:47:57', 'w4W5L2qm', '3034368'), + (779, 136, 'not_attending', '2020-05-25 00:05:38', '2025-12-17 19:47:57', 'w4W5L2qm', '3035881'), + (779, 143, 'not_attending', '2020-06-07 23:01:26', '2025-12-17 19:47:58', 'w4W5L2qm', '3049983'), + (779, 145, 'attending', '2020-06-13 03:32:25', '2025-12-17 19:47:58', 'w4W5L2qm', '3058680'), + (779, 146, 'not_attending', '2020-06-27 22:51:24', '2025-12-17 19:47:55', 'w4W5L2qm', '3058683'), + (779, 150, 'attending', '2020-07-25 22:02:36', '2025-12-17 19:47:55', 'w4W5L2qm', '3058687'), + (779, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'w4W5L2qm', '3058959'), + (779, 173, 'maybe', '2020-06-16 19:00:01', '2025-12-17 19:47:58', 'w4W5L2qm', '3067093'), + (779, 182, 'not_attending', '2020-06-27 22:51:22', '2025-12-17 19:47:55', 'w4W5L2qm', '3074514'), + (779, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'w4W5L2qm', '3075228'), + (779, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'w4W5L2qm', '3075456'), + (779, 186, 'not_attending', '2020-06-18 21:16:29', '2025-12-17 19:47:55', 'w4W5L2qm', '3083791'), + (779, 187, 'not_attending', '2020-06-18 21:16:20', '2025-12-17 19:47:55', 'w4W5L2qm', '3085151'), + (779, 189, 'maybe', '2020-06-20 02:55:04', '2025-12-17 19:47:58', 'w4W5L2qm', '3087016'), + (779, 191, 'not_attending', '2020-07-09 17:46:12', '2025-12-17 19:47:55', 'w4W5L2qm', '3087259'), + (779, 192, 'not_attending', '2020-07-18 22:13:14', '2025-12-17 19:47:55', 'w4W5L2qm', '3087260'), + (779, 193, 'attending', '2020-07-25 22:02:59', '2025-12-17 19:47:55', 'w4W5L2qm', '3087261'), + (779, 195, 'maybe', '2020-08-08 12:02:33', '2025-12-17 19:47:56', 'w4W5L2qm', '3087264'), + (779, 196, 'maybe', '2020-08-14 14:07:44', '2025-12-17 19:47:56', 'w4W5L2qm', '3087265'), + (779, 197, 'not_attending', '2020-08-14 14:07:49', '2025-12-17 19:47:56', 'w4W5L2qm', '3087266'), + (779, 198, 'not_attending', '2020-08-14 14:07:52', '2025-12-17 19:47:56', 'w4W5L2qm', '3087267'), + (779, 199, 'not_attending', '2020-08-14 14:07:59', '2025-12-17 19:47:56', 'w4W5L2qm', '3087268'), + (779, 201, 'not_attending', '2020-06-20 22:39:49', '2025-12-17 19:47:55', 'w4W5L2qm', '3088653'), + (779, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'w4W5L2qm', '3106813'), + (779, 223, 'not_attending', '2020-08-14 14:08:02', '2025-12-17 19:47:56', 'w4W5L2qm', '3129980'), + (779, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'w4W5L2qm', '3132817'), + (779, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'w4W5L2qm', '3132820'), + (779, 232, 'maybe', '2020-07-20 00:05:02', '2025-12-17 19:47:55', 'w4W5L2qm', '3139770'), + (779, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'w4W5L2qm', '3155321'), + (779, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'w4W5L2qm', '3162006'), + (779, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'w4W5L2qm', '3163442'), + (779, 293, 'not_attending', '2020-08-14 19:29:11', '2025-12-17 19:47:56', 'w4W5L2qm', '3172832'), + (779, 294, 'not_attending', '2020-08-14 19:29:28', '2025-12-17 19:47:56', 'w4W5L2qm', '3172833'), + (779, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'w4W5L2qm', '3172834'), + (779, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'w4W5L2qm', '3172876'), + (779, 298, 'not_attending', '2020-08-14 19:29:39', '2025-12-17 19:47:56', 'w4W5L2qm', '3174556'), + (779, 299, 'not_attending', '2020-08-14 19:28:52', '2025-12-17 19:47:56', 'w4W5L2qm', '3176591'), + (779, 311, 'maybe', '2020-09-19 12:19:56', '2025-12-17 19:47:56', 'w4W5L2qm', '3186057'), + (779, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'w4W5L2qm', '3191735'), + (779, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'w4W5L2qm', '3200209'), + (779, 362, 'maybe', '2020-09-25 21:14:47', '2025-12-17 19:47:52', 'w4W5L2qm', '3214207'), + (779, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'w4W5L2qm', '3217037'), + (779, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'w4W5L2qm', '3218510'), + (779, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'w4W5L2qm', '3228698'), + (779, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'w4W5L2qm', '3228699'), + (779, 387, 'maybe', '2020-10-14 01:00:09', '2025-12-17 19:47:52', 'w4W5L2qm', '3228700'), + (779, 388, 'maybe', '2020-10-14 01:00:15', '2025-12-17 19:47:52', 'w4W5L2qm', '3228701'), + (779, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'w4W5L2qm', '3245751'), + (779, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'w4W5L2qm', '3250232'), + (779, 438, 'not_attending', '2020-10-31 19:00:13', '2025-12-17 19:47:53', 'w4W5L2qm', '3256163'), + (779, 440, 'not_attending', '2020-11-07 18:49:40', '2025-12-17 19:47:53', 'w4W5L2qm', '3256168'), + (779, 441, 'not_attending', '2020-11-07 18:49:42', '2025-12-17 19:47:54', 'w4W5L2qm', '3256169'), + (779, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'w4W5L2qm', '3263578'), + (779, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'w4W5L2qm', '3266138'), + (779, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'w4W5L2qm', '3276428'), + (779, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'w4W5L2qm', '3281467'), + (779, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'w4W5L2qm', '3281470'), + (779, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'w4W5L2qm', '3281829'), + (779, 468, 'not_attending', '2020-11-19 20:00:16', '2025-12-17 19:47:54', 'w4W5L2qm', '3285413'), + (779, 469, 'not_attending', '2020-11-19 20:00:19', '2025-12-17 19:47:54', 'w4W5L2qm', '3285414'), + (779, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'w4W5L2qm', '3297764'), + (779, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'w4W5L2qm', '3313856'), + (779, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'w4W5L2qm', '3314909'), + (779, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'w4W5L2qm', '3314964'), + (779, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'w4W5L2qm', '3323365'), + (779, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'w4W5L2qm', '3329383'), + (779, 526, 'not_attending', '2021-01-03 00:24:45', '2025-12-17 19:47:48', 'w4W5L2qm', '3351539'), + (779, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'w4W5L2qm', '3386848'), + (779, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'w4W5L2qm', '3389527'), + (779, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'w4W5L2qm', '3396499'), + (779, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'w4W5L2qm', '3403650'), + (779, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'w4W5L2qm', '3406988'), + (779, 555, 'not_attending', '2021-01-23 23:08:05', '2025-12-17 19:47:49', 'w4W5L2qm', '3416576'), + (779, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'w4W5L2qm', '3418925'), + (779, 568, 'not_attending', '2021-01-31 00:01:18', '2025-12-17 19:47:50', 'w4W5L2qm', '3430267'), + (779, 569, 'not_attending', '2021-01-25 06:51:07', '2025-12-17 19:47:49', 'w4W5L2qm', '3432673'), + (779, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'w4W5L2qm', '3468125'), + (779, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'w4W5L2qm', '3470303'), + (779, 604, 'not_attending', '2021-02-25 17:31:05', '2025-12-17 19:47:50', 'w4W5L2qm', '3470305'), + (779, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'w4W5L2qm', '3470991'), + (779, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'w4W5L2qm', '3517815'), + (779, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'w4W5L2qm', '3517816'), + (779, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'w4W5L2qm', '3523941'), + (779, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4W5L2qm', '3533850'), + (779, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4W5L2qm', '3536632'), + (779, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'w4W5L2qm', '3536656'), + (779, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'w4W5L2qm', '3539916'), + (779, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'w4W5L2qm', '3539917'), + (779, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'w4W5L2qm', '3539918'), + (779, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'w4W5L2qm', '3539919'), + (779, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'w4W5L2qm', '3539920'), + (779, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'w4W5L2qm', '3539921'), + (779, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4W5L2qm', '3539922'), + (779, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'w4W5L2qm', '3539923'), + (779, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'w4W5L2qm', '3539927'), + (779, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'w4W5L2qm', '3582734'), + (779, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'w4W5L2qm', '3583262'), + (779, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'w4W5L2qm', '3619523'), + (779, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'w4W5L2qm', '3661369'), + (779, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'w4W5L2qm', '3674262'), + (779, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'w4W5L2qm', '3677402'), + (779, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'w4W5L2qm', '3730212'), + (779, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'w4W5L2qm', '3793156'), + (779, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'w4W5L2qm', '3974109'), + (779, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'w4W5L2qm', '3975311'), + (779, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4W5L2qm', '3975312'), + (779, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4W5L2qm', '3994992'), + (779, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4W5L2qm', '4014338'), + (779, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'w4W5L2qm', '4021848'), + (779, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4W5L2qm', '4136744'), + (779, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4W5L2qm', '4136937'), + (779, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4W5L2qm', '4136938'), + (779, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4W5L2qm', '4136947'), + (779, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4W5L2qm', '4210314'), + (779, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4W5L2qm', '4225444'), + (779, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4W5L2qm', '4239259'), + (779, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4W5L2qm', '4240316'), + (779, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4W5L2qm', '4240317'), + (779, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4W5L2qm', '4240318'), + (779, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4W5L2qm', '4240320'), + (779, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4W5L2qm', '4250163'), + (779, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4W5L2qm', '4275957'), + (779, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4W5L2qm', '4277819'), + (779, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4W5L2qm', '4301723'), + (779, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'w4W5L2qm', '4302093'), + (779, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4W5L2qm', '4304151'), + (779, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'w4W5L2qm', '4345519'), + (779, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'w4W5L2qm', '4356801'), + (779, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'w4W5L2qm', '4358025'), + (779, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4W5L2qm', '4366186'), + (779, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'w4W5L2qm', '4366187'), + (779, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'w4W5L2qm', '4402823'), + (779, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'w4W5L2qm', '4420735'), + (779, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'w4W5L2qm', '4420738'), + (779, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'w4W5L2qm', '4420739'), + (779, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'w4W5L2qm', '4420741'), + (779, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'w4W5L2qm', '4420744'), + (779, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'w4W5L2qm', '4420747'), + (779, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'w4W5L2qm', '4420748'), + (779, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4W5L2qm', '4420749'), + (779, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4W5L2qm', '4461883'), + (779, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4W5L2qm', '4508342'), + (779, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4W5L2qm', '4568602'), + (779, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'w4W5L2qm', '4572153'), + (779, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4W5L2qm', '4585962'), + (779, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'w4W5L2qm', '4596356'), + (779, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4W5L2qm', '4598860'), + (779, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4W5L2qm', '4598861'), + (779, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'w4W5L2qm', '4602797'), + (779, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'w4W5L2qm', '4637896'), + (779, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'w4W5L2qm', '4642994'), + (779, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'w4W5L2qm', '4642995'), + (779, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'w4W5L2qm', '4642996'), + (779, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'w4W5L2qm', '4642997'), + (779, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'w4W5L2qm', '4645687'), + (779, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'w4W5L2qm', '4645698'), + (779, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'w4W5L2qm', '4645704'), + (779, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'w4W5L2qm', '4645705'), + (779, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'w4W5L2qm', '4668385'), + (779, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'w4W5L2qm', '4694407'), + (779, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4W5L2qm', '4736497'), + (779, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4W5L2qm', '4736499'), + (779, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4W5L2qm', '4736500'), + (779, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4W5L2qm', '4736503'), + (779, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4W5L2qm', '4736504'), + (779, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'w4W5L2qm', '4746789'), + (779, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'w4W5L2qm', '4753929'), + (779, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4W5L2qm', '5038850'), + (779, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4W5L2qm', '5045826'), + (779, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4W5L2qm', '5132533'), + (779, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4W5L2qm', '5186582'), + (779, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4W5L2qm', '5186583'), + (779, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4W5L2qm', '5186585'), + (779, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4W5L2qm', '5190437'), + (779, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4W5L2qm', '5215989'), + (779, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4W5L2qm', '6045684'), + (781, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd8bw0GBA', '5630961'), + (781, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd8bw0GBA', '5630962'), + (781, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd8bw0GBA', '5630966'), + (781, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd8bw0GBA', '5630967'), + (781, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd8bw0GBA', '5630968'), + (781, 1738, 'not_attending', '2022-10-25 17:37:20', '2025-12-17 19:47:14', 'd8bw0GBA', '5638765'), + (781, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd8bw0GBA', '5640097'), + (781, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd8bw0GBA', '5642818'), + (781, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd8bw0GBA', '5671637'), + (781, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd8bw0GBA', '5672329'), + (781, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd8bw0GBA', '5674057'), + (781, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd8bw0GBA', '5674060'), + (781, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd8bw0GBA', '5677461'), + (781, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd8bw0GBA', '5698046'), + (781, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'd8bw0GBA', '5699760'), + (781, 1786, 'not_attending', '2022-11-08 23:41:29', '2025-12-17 19:47:15', 'd8bw0GBA', '5727232'), + (781, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd8bw0GBA', '5741601'), + (781, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd8bw0GBA', '5763458'), + (781, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd8bw0GBA', '5774172'), + (781, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8bw0GBA', '6045684'), + (782, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dOO121nd', '6514659'), + (782, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOO121nd', '6514660'), + (782, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOO121nd', '6584747'), + (782, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOO121nd', '6587097'), + (782, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', 'dOO121nd', '6596617'), + (782, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOO121nd', '6609022'), + (782, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOO121nd', '6632757'), + (782, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOO121nd', '6644187'), + (782, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOO121nd', '6648951'), + (782, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOO121nd', '6648952'), + (782, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dOO121nd', '6651141'), + (782, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOO121nd', '6655401'), + (782, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOO121nd', '6661585'), + (782, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOO121nd', '6661588'), + (782, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOO121nd', '6661589'), + (782, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOO121nd', '6699906'), + (782, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOO121nd', '6699913'), + (782, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOO121nd', '6701109'), + (782, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOO121nd', '6705219'), + (782, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOO121nd', '6710153'), + (782, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOO121nd', '6711552'), + (782, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOO121nd', '6711553'), + (782, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOO121nd', '6722688'), + (782, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOO121nd', '6730620'), + (782, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOO121nd', '6730642'), + (782, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOO121nd', '6740364'), + (782, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOO121nd', '6743829'), + (782, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOO121nd', '7030380'), + (782, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOO121nd', '7033677'), + (782, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOO121nd', '7035415'), + (782, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOO121nd', '7044715'), + (782, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOO121nd', '7050318'), + (782, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOO121nd', '7050319'), + (782, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOO121nd', '7050322'), + (782, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOO121nd', '7057804'), + (782, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOO121nd', '7072824'), + (782, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOO121nd', '7074348'), + (782, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOO121nd', '7089267'), + (782, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOO121nd', '7098747'), + (782, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOO121nd', '7113468'), + (782, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOO121nd', '7114856'), + (782, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOO121nd', '7114951'), + (782, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOO121nd', '7114955'), + (782, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOO121nd', '7114956'), + (782, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOO121nd', '7153615'), + (782, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOO121nd', '7159484'), + (782, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOO121nd', '7178446'), + (783, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mjnw1xJm', '4694407'), + (783, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mjnw1xJm', '4736497'), + (783, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mjnw1xJm', '4736499'), + (783, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mjnw1xJm', '4736500'), + (783, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mjnw1xJm', '4736503'), + (783, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mjnw1xJm', '4736504'), + (783, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mjnw1xJm', '4746789'), + (783, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mjnw1xJm', '4753929'), + (783, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mjnw1xJm', '5038850'), + (783, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mjnw1xJm', '5045826'), + (783, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mjnw1xJm', '5132533'), + (783, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mjnw1xJm', '5186582'), + (783, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mjnw1xJm', '5186583'), + (783, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mjnw1xJm', '5186585'), + (783, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mjnw1xJm', '5190437'), + (783, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mjnw1xJm', '5215989'), + (783, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mjnw1xJm', '6045684'), + (784, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7114951'), + (784, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7114956'), + (784, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7114957'), + (784, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AYgYJ9Rd', '7153615'), + (784, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AYgYJ9Rd', '7159484'), + (784, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7178446'), + (784, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7220467'), + (784, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7240354'), + (784, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7251633'), + (784, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7265589'), + (784, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7281768'), + (785, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dKPMLzem', '5630966'), + (785, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dKPMLzem', '5630967'), + (785, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dKPMLzem', '5630968'), + (785, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dKPMLzem', '5642818'), + (785, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dKPMLzem', '5670445'), + (785, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dKPMLzem', '5699760'), + (785, 1786, 'not_attending', '2022-11-08 23:41:08', '2025-12-17 19:47:15', 'dKPMLzem', '5727232'), + (785, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dKPMLzem', '5741601'), + (785, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dKPMLzem', '5763458'), + (785, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dKPMLzem', '5774172'), + (785, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dKPMLzem', '5818247'), + (785, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dKPMLzem', '5819471'), + (785, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dKPMLzem', '5827739'), + (785, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dKPMLzem', '5844306'), + (785, 1846, 'not_attending', '2022-12-18 18:53:23', '2025-12-17 19:47:04', 'dKPMLzem', '5845237'), + (785, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dKPMLzem', '5850159'), + (785, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dKPMLzem', '5858999'), + (785, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dKPMLzem', '5871984'), + (785, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dKPMLzem', '5876354'), + (785, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKPMLzem', '6045684'), + (786, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dVBkwjqd', '4210314'), + (786, 901, 'attending', '2021-07-31 17:53:58', '2025-12-17 19:47:40', 'dVBkwjqd', '4240317'), + (786, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'dVBkwjqd', '4240318'), + (786, 903, 'maybe', '2021-08-14 18:13:58', '2025-12-17 19:47:42', 'dVBkwjqd', '4240320'), + (786, 929, 'maybe', '2021-08-05 19:49:21', '2025-12-17 19:47:41', 'dVBkwjqd', '4297223'), + (786, 934, 'attending', '2021-08-04 20:55:27', '2025-12-17 19:47:40', 'dVBkwjqd', '4302093'), + (786, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dVBkwjqd', '4304151'), + (786, 939, 'maybe', '2021-08-01 02:30:25', '2025-12-17 19:47:40', 'dVBkwjqd', '4308354'), + (786, 944, 'attending', '2021-08-08 19:40:02', '2025-12-17 19:47:41', 'dVBkwjqd', '4310980'), + (786, 945, 'maybe', '2021-08-15 19:21:03', '2025-12-17 19:47:42', 'dVBkwjqd', '4310981'), + (786, 947, 'maybe', '2021-08-06 14:31:33', '2025-12-17 19:47:41', 'dVBkwjqd', '4315713'), + (786, 948, 'attending', '2021-08-11 18:14:40', '2025-12-17 19:47:41', 'dVBkwjqd', '4315714'), + (786, 956, 'attending', '2021-08-03 19:50:55', '2025-12-17 19:47:40', 'dVBkwjqd', '4331968'), + (786, 960, 'attending', '2021-08-11 23:14:03', '2025-12-17 19:47:41', 'dVBkwjqd', '4344519'), + (786, 969, 'maybe', '2021-08-11 23:34:29', '2025-12-17 19:47:42', 'dVBkwjqd', '4356699'), + (786, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dVBkwjqd', '4356801'), + (786, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dVBkwjqd', '4366186'), + (786, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dVBkwjqd', '4366187'), + (786, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dVBkwjqd', '4420735'), + (786, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dVBkwjqd', '4420738'), + (786, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dVBkwjqd', '4420739'), + (786, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dVBkwjqd', '4420741'), + (786, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dVBkwjqd', '4420744'), + (786, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dVBkwjqd', '4420747'), + (786, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dVBkwjqd', '4420748'), + (786, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dVBkwjqd', '4420749'), + (786, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dVBkwjqd', '4461883'), + (786, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dVBkwjqd', '4508342'), + (786, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBkwjqd', '6045684'), + (787, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4vrBGVb4', '7869188'), + (787, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4vrBGVb4', '7877465'), + (787, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4vrBGVb4', '7878570'), + (787, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', '4vrBGVb4', '7880977'), + (787, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4vrBGVb4', '7888250'), + (787, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', '4vrBGVb4', '7897784'), + (787, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', '4vrBGVb4', '7903856'), + (787, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', '4vrBGVb4', '8347770'), + (787, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4vrBGVb4', '8349164'), + (787, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4vrBGVb4', '8349545'), + (787, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4vrBGVb4', '8353584'), + (788, 2125, 'attending', '2023-07-04 23:56:05', '2025-12-17 19:46:51', 'daOLN7ZA', '6177485'), + (788, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'daOLN7ZA', '6182410'), + (788, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'daOLN7ZA', '6185812'), + (788, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'daOLN7ZA', '6187651'), + (788, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'daOLN7ZA', '6187963'), + (788, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'daOLN7ZA', '6187964'), + (788, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'daOLN7ZA', '6187966'), + (788, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'daOLN7ZA', '6187967'), + (788, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'daOLN7ZA', '6187969'), + (788, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'daOLN7ZA', '6334878'), + (788, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'daOLN7ZA', '6337236'), + (788, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'daOLN7ZA', '6337970'), + (788, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'daOLN7ZA', '6338308'), + (788, 2157, 'not_attending', '2023-07-12 21:55:24', '2025-12-17 19:46:52', 'daOLN7ZA', '6338342'), + (788, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'daOLN7ZA', '6341710'), + (788, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'daOLN7ZA', '6342044'), + (788, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'daOLN7ZA', '6342298'), + (788, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'daOLN7ZA', '6343294'), + (788, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'daOLN7ZA', '6347034'), + (788, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'daOLN7ZA', '6347056'), + (788, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'daOLN7ZA', '6353830'), + (788, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'daOLN7ZA', '6353831'), + (788, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'daOLN7ZA', '6357867'), + (788, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'daOLN7ZA', '6358652'), + (788, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'daOLN7ZA', '6358668'), + (788, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'daOLN7ZA', '6358669'), + (788, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'daOLN7ZA', '6361709'), + (788, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'daOLN7ZA', '6361710'), + (788, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'daOLN7ZA', '6361711'), + (788, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'daOLN7ZA', '6361712'), + (788, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'daOLN7ZA', '6361713'), + (788, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'daOLN7ZA', '6382573'), + (788, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'daOLN7ZA', '6388604'), + (788, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'daOLN7ZA', '6394629'), + (788, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'daOLN7ZA', '6394631'), + (788, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'daOLN7ZA', '6440863'), + (788, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'daOLN7ZA', '6445440'), + (788, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'daOLN7ZA', '6453951'), + (788, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'daOLN7ZA', '6461696'), + (788, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'daOLN7ZA', '6462129'), + (788, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'daOLN7ZA', '6463218'), + (788, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'daOLN7ZA', '6472181'), + (788, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'daOLN7ZA', '6482693'), + (788, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'daOLN7ZA', '6484200'), + (788, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'daOLN7ZA', '6484680'), + (788, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'daOLN7ZA', '6507741'), + (788, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'daOLN7ZA', '6514659'), + (788, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'daOLN7ZA', '6514660'), + (788, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'daOLN7ZA', '6519103'), + (788, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'daOLN7ZA', '6535681'), + (788, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'daOLN7ZA', '6584747'), + (788, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'daOLN7ZA', '6587097'), + (788, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'daOLN7ZA', '6609022'), + (788, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'daOLN7ZA', '6632757'), + (788, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'daOLN7ZA', '6644187'), + (788, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'daOLN7ZA', '6648951'), + (788, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'daOLN7ZA', '6648952'), + (788, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'daOLN7ZA', '6655401'), + (788, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'daOLN7ZA', '6661585'), + (788, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'daOLN7ZA', '6661588'), + (788, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'daOLN7ZA', '6661589'), + (788, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'daOLN7ZA', '6699906'), + (788, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'daOLN7ZA', '6701109'), + (788, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'daOLN7ZA', '6704561'), + (788, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'daOLN7ZA', '6705219'), + (788, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'daOLN7ZA', '6708410'), + (788, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'daOLN7ZA', '6710153'), + (788, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'daOLN7ZA', '6711552'), + (788, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'daOLN7ZA', '6711553'), + (789, 24, 'attending', '2020-06-21 20:15:26', '2025-12-17 19:47:55', 'bdzpw7VA', '2958068'), + (789, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'bdzpw7VA', '3034321'), + (789, 201, 'not_attending', '2020-06-22 21:19:36', '2025-12-17 19:47:55', 'bdzpw7VA', '3088653'), + (789, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'bdzpw7VA', '3106813'), + (789, 223, 'attending', '2020-09-12 04:27:08', '2025-12-17 19:47:56', 'bdzpw7VA', '3129980'), + (789, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'bdzpw7VA', '3132817'), + (789, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'bdzpw7VA', '3132820'), + (789, 240, 'attending', '2020-09-07 04:15:11', '2025-12-17 19:47:56', 'bdzpw7VA', '3149471'), + (789, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'bdzpw7VA', '3155321'), + (789, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'bdzpw7VA', '3162006'), + (789, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'bdzpw7VA', '3163442'), + (789, 311, 'attending', '2020-09-18 20:09:15', '2025-12-17 19:47:56', 'bdzpw7VA', '3186057'), + (789, 339, 'not_attending', '2020-09-09 19:11:01', '2025-12-17 19:47:56', 'bdzpw7VA', '3204469'), + (789, 347, 'attending', '2020-09-24 22:46:22', '2025-12-17 19:47:51', 'bdzpw7VA', '3207930'), + (789, 348, 'attending', '2020-09-13 03:15:57', '2025-12-17 19:47:52', 'bdzpw7VA', '3209159'), + (789, 350, 'attending', '2020-09-12 04:26:56', '2025-12-17 19:47:56', 'bdzpw7VA', '3209255'), + (789, 362, 'attending', '2020-09-26 02:24:34', '2025-12-17 19:47:52', 'bdzpw7VA', '3214207'), + (789, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'bdzpw7VA', '3217037'), + (789, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'bdzpw7VA', '3218510'), + (789, 366, 'attending', '2020-09-22 20:50:57', '2025-12-17 19:47:56', 'bdzpw7VA', '3219750'), + (789, 373, 'not_attending', '2020-10-22 18:41:08', '2025-12-17 19:47:52', 'bdzpw7VA', '3221413'), + (789, 375, 'attending', '2020-10-08 16:56:27', '2025-12-17 19:47:52', 'bdzpw7VA', '3222825'), + (789, 385, 'attending', '2020-10-03 23:09:20', '2025-12-17 19:47:52', 'bdzpw7VA', '3228698'), + (789, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'bdzpw7VA', '3228699'), + (789, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'bdzpw7VA', '3228700'), + (789, 388, 'attending', '2020-10-24 15:59:55', '2025-12-17 19:47:52', 'bdzpw7VA', '3228701'), + (789, 412, 'attending', '2020-10-05 11:58:38', '2025-12-17 19:47:52', 'bdzpw7VA', '3236636'), + (789, 415, 'attending', '2020-10-12 23:08:24', '2025-12-17 19:47:52', 'bdzpw7VA', '3238044'), + (789, 418, 'attending', '2020-10-12 23:16:36', '2025-12-17 19:47:52', 'bdzpw7VA', '3241728'), + (789, 419, 'attending', '2020-10-12 23:16:49', '2025-12-17 19:47:52', 'bdzpw7VA', '3242234'), + (789, 424, 'attending', '2020-10-14 17:17:50', '2025-12-17 19:47:52', 'bdzpw7VA', '3245751'), + (789, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'bdzpw7VA', '3250232'), + (789, 435, 'attending', '2020-10-20 21:44:45', '2025-12-17 19:47:52', 'bdzpw7VA', '3254790'), + (789, 439, 'attending', '2020-10-28 17:01:44', '2025-12-17 19:47:53', 'bdzpw7VA', '3256164'), + (789, 440, 'attending', '2020-11-07 16:11:48', '2025-12-17 19:47:53', 'bdzpw7VA', '3256168'), + (789, 441, 'attending', '2020-11-14 18:29:07', '2025-12-17 19:47:54', 'bdzpw7VA', '3256169'), + (789, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'bdzpw7VA', '3263578'), + (789, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'bdzpw7VA', '3266138'), + (789, 449, 'attending', '2020-11-04 17:54:23', '2025-12-17 19:47:53', 'bdzpw7VA', '3272055'), + (789, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'bdzpw7VA', '3276428'), + (789, 457, 'not_attending', '2020-11-07 23:11:27', '2025-12-17 19:47:53', 'bdzpw7VA', '3279087'), + (789, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'bdzpw7VA', '3281467'), + (789, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'bdzpw7VA', '3281470'), + (789, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'bdzpw7VA', '3281829'), + (789, 468, 'not_attending', '2020-11-21 23:37:31', '2025-12-17 19:47:54', 'bdzpw7VA', '3285413'), + (789, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'bdzpw7VA', '3285414'), + (789, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'bdzpw7VA', '3297764'), + (789, 493, 'not_attending', '2020-12-06 00:03:45', '2025-12-17 19:47:54', 'bdzpw7VA', '3313856'), + (789, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'bdzpw7VA', '3314909'), + (789, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'bdzpw7VA', '3314964'), + (789, 502, 'attending', '2020-12-13 00:00:39', '2025-12-17 19:47:55', 'bdzpw7VA', '3323365'), + (789, 513, 'not_attending', '2020-12-20 00:52:14', '2025-12-17 19:47:55', 'bdzpw7VA', '3329383'), + (789, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'bdzpw7VA', '3351539'), + (789, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'bdzpw7VA', '3386848'), + (789, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'bdzpw7VA', '3389527'), + (789, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'bdzpw7VA', '3396499'), + (789, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'bdzpw7VA', '3403650'), + (789, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'bdzpw7VA', '3406988'), + (789, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'bdzpw7VA', '3416576'), + (789, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'bdzpw7VA', '3418925'), + (789, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzpw7VA', '6045684'), + (790, 901, 'attending', '2021-07-27 22:19:17', '2025-12-17 19:47:40', 'd3R7WbD4', '4240317'), + (790, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'd3R7WbD4', '4240318'), + (790, 933, 'attending', '2021-07-27 22:20:34', '2025-12-17 19:47:40', 'd3R7WbD4', '4301723'), + (790, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'd3R7WbD4', '4302093'), + (790, 940, 'not_attending', '2021-07-30 16:29:52', '2025-12-17 19:47:40', 'd3R7WbD4', '4309049'), + (790, 947, 'attending', '2021-07-28 04:31:26', '2025-12-17 19:47:41', 'd3R7WbD4', '4315713'), + (790, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3R7WbD4', '6045684'), + (791, 2448, 'attending', '2024-03-29 22:59:36', '2025-12-17 19:46:33', 'dljLEeBA', '6734371'), + (791, 2498, 'attending', '2024-03-20 21:15:20', '2025-12-17 19:46:33', 'dljLEeBA', '7057662'), + (791, 2507, 'not_attending', '2024-03-18 21:23:07', '2025-12-17 19:46:33', 'dljLEeBA', '7072824'), + (791, 2509, 'not_attending', '2024-03-25 02:26:23', '2025-12-17 19:46:33', 'dljLEeBA', '7074349'), + (791, 2512, 'attending', '2024-03-31 02:22:54', '2025-12-17 19:46:33', 'dljLEeBA', '7074352'), + (791, 2513, 'attending', '2024-04-18 04:16:16', '2025-12-17 19:46:34', 'dljLEeBA', '7074353'), + (791, 2516, 'not_attending', '2024-04-29 20:43:43', '2025-12-17 19:46:35', 'dljLEeBA', '7074356'), + (791, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dljLEeBA', '7074364'), + (791, 2528, 'not_attending', '2024-08-04 02:04:59', '2025-12-17 19:46:31', 'dljLEeBA', '7074368'), + (791, 2529, 'maybe', '2024-05-23 20:11:27', '2025-12-17 19:46:35', 'dljLEeBA', '7074369'), + (791, 2536, 'attending', '2024-03-18 02:02:47', '2025-12-17 19:46:33', 'dljLEeBA', '7077689'), + (791, 2538, 'attending', '2024-03-25 02:25:59', '2025-12-17 19:46:33', 'dljLEeBA', '7085485'), + (791, 2539, 'attending', '2024-03-31 02:23:14', '2025-12-17 19:46:33', 'dljLEeBA', '7085486'), + (791, 2542, 'attending', '2024-03-23 22:46:38', '2025-12-17 19:46:33', 'dljLEeBA', '7090025'), + (791, 2547, 'maybe', '2024-03-25 02:24:42', '2025-12-17 19:46:33', 'dljLEeBA', '7096945'), + (791, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dljLEeBA', '7098747'), + (791, 2551, 'attending', '2024-03-28 23:58:15', '2025-12-17 19:46:33', 'dljLEeBA', '7109912'), + (791, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dljLEeBA', '7113468'), + (791, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dljLEeBA', '7114856'), + (791, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dljLEeBA', '7114951'), + (791, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dljLEeBA', '7114955'), + (791, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dljLEeBA', '7114956'), + (791, 2558, 'attending', '2024-04-29 20:43:52', '2025-12-17 19:46:35', 'dljLEeBA', '7114957'), + (791, 2562, 'attending', '2024-04-02 23:23:28', '2025-12-17 19:46:33', 'dljLEeBA', '7134552'), + (791, 2563, 'attending', '2024-04-05 23:15:16', '2025-12-17 19:46:33', 'dljLEeBA', '7134734'), + (791, 2568, 'attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dljLEeBA', '7153615'), + (791, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dljLEeBA', '7159484'), + (791, 2575, 'maybe', '2024-04-12 22:39:09', '2025-12-17 19:46:33', 'dljLEeBA', '7164534'), + (791, 2580, 'maybe', '2024-04-14 01:59:53', '2025-12-17 19:46:34', 'dljLEeBA', '7167272'), + (791, 2584, 'attending', '2024-04-21 01:30:10', '2025-12-17 19:46:34', 'dljLEeBA', '7175057'), + (791, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dljLEeBA', '7178446'), + (791, 2600, 'not_attending', '2024-04-29 20:43:05', '2025-12-17 19:46:35', 'dljLEeBA', '7196794'), + (791, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dljLEeBA', '7220467'), + (791, 2605, 'attending', '2024-04-28 17:40:46', '2025-12-17 19:46:35', 'dljLEeBA', '7229243'), + (791, 2609, 'maybe', '2024-05-06 20:55:01', '2025-12-17 19:46:35', 'dljLEeBA', '7240354'), + (791, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dljLEeBA', '7251633'), + (791, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dljLEeBA', '7263048'), + (791, 2626, 'attending', '2024-05-15 03:10:25', '2025-12-17 19:46:35', 'dljLEeBA', '7264723'), + (791, 2627, 'attending', '2024-05-23 20:11:15', '2025-12-17 19:46:35', 'dljLEeBA', '7264724'), + (791, 2628, 'attending', '2024-05-27 17:05:01', '2025-12-17 19:46:36', 'dljLEeBA', '7264725'), + (791, 2644, 'attending', '2024-05-21 23:19:16', '2025-12-17 19:46:35', 'dljLEeBA', '7279039'), + (791, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dljLEeBA', '7302674'), + (791, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dljLEeBA', '7324073'), + (791, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dljLEeBA', '7324074'), + (791, 2690, 'attending', '2024-07-06 23:54:17', '2025-12-17 19:46:30', 'dljLEeBA', '7324075'), + (791, 2691, 'attending', '2024-07-14 02:00:01', '2025-12-17 19:46:30', 'dljLEeBA', '7324076'), + (791, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dljLEeBA', '7324078'), + (791, 2694, 'attending', '2024-08-04 02:05:09', '2025-12-17 19:46:31', 'dljLEeBA', '7324079'), + (791, 2695, 'not_attending', '2024-08-16 04:38:45', '2025-12-17 19:46:31', 'dljLEeBA', '7324080'), + (791, 2696, 'attending', '2024-08-17 19:03:07', '2025-12-17 19:46:32', 'dljLEeBA', '7324081'), + (791, 2697, 'not_attending', '2024-08-31 03:05:06', '2025-12-17 19:46:32', 'dljLEeBA', '7324082'), + (791, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dljLEeBA', '7331457'), + (791, 2747, 'attending', '2024-07-16 20:42:42', '2025-12-17 19:46:30', 'dljLEeBA', '7353587'), + (791, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dljLEeBA', '7356752'), + (791, 2758, 'attending', '2024-07-14 01:59:44', '2025-12-17 19:46:30', 'dljLEeBA', '7358837'), + (791, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dljLEeBA', '7363595'), + (791, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dljLEeBA', '7363643'), + (791, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dljLEeBA', '7368606'), + (791, 2788, 'maybe', '2024-08-04 02:04:16', '2025-12-17 19:46:31', 'dljLEeBA', '7384036'), + (791, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dljLEeBA', '7397462'), + (791, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dljLEeBA', '7424275'), + (791, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dljLEeBA', '7424276'), + (791, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dljLEeBA', '7432751'), + (791, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dljLEeBA', '7432752'), + (791, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dljLEeBA', '7432753'), + (791, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dljLEeBA', '7432754'), + (791, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dljLEeBA', '7432755'), + (791, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dljLEeBA', '7432756'), + (791, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dljLEeBA', '7432758'), + (791, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dljLEeBA', '7432759'), + (791, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dljLEeBA', '7433834'), + (791, 2856, 'attending', '2024-10-08 18:14:11', '2025-12-17 19:46:26', 'dljLEeBA', '7469386'), + (791, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dljLEeBA', '7470197'), + (791, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dljLEeBA', '7685613'), + (791, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dljLEeBA', '7688194'), + (791, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dljLEeBA', '7688196'), + (791, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dljLEeBA', '7688289'), + (791, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dljLEeBA', '7692763'), + (791, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dljLEeBA', '7697552'), + (791, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dljLEeBA', '7699878'), + (791, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dljLEeBA', '7704043'), + (791, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dljLEeBA', '7712467'), + (791, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dljLEeBA', '7713585'), + (791, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dljLEeBA', '7713586'), + (791, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dljLEeBA', '7738518'), + (791, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dljLEeBA', '7750636'), + (791, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dljLEeBA', '7796540'), + (791, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dljLEeBA', '7796541'), + (791, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dljLEeBA', '7796542'), + (792, 256, 'attending', '2021-05-02 16:54:21', '2025-12-17 19:47:46', 'VmMVyWbA', '3149487'), + (792, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'VmMVyWbA', '3149489'), + (792, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'VmMVyWbA', '3149491'), + (792, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'VmMVyWbA', '3236450'), + (792, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'VmMVyWbA', '3236452'), + (792, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'VmMVyWbA', '3539920'), + (792, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'VmMVyWbA', '3539921'), + (792, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'VmMVyWbA', '3539922'), + (792, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'VmMVyWbA', '3539923'), + (792, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'VmMVyWbA', '3793156'), + (792, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'VmMVyWbA', '3806392'), + (792, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'VmMVyWbA', '3963335'), + (792, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'VmMVyWbA', '3974109'), + (792, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VmMVyWbA', '3975311'), + (792, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VmMVyWbA', '3975312'), + (792, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VmMVyWbA', '3994992'), + (792, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VmMVyWbA', '4014338'), + (792, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmMVyWbA', '4136744'), + (792, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMVyWbA', '6045684'), + (793, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mb1JLe6d', '6361711'), + (793, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mb1JLe6d', '6361713'), + (793, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mb1JLe6d', '6388604'), + (793, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mb1JLe6d', '6394629'), + (793, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mb1JLe6d', '6394631'), + (793, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mb1JLe6d', '6431478'), + (794, 2189, 'maybe', '2023-08-05 03:37:48', '2025-12-17 19:46:54', '4090MrKd', '6357867'), + (794, 2191, 'attending', '2023-08-05 00:08:53', '2025-12-17 19:46:54', '4090MrKd', '6358652'), + (794, 2200, 'attending', '2023-08-10 20:13:20', '2025-12-17 19:46:55', '4090MrKd', '6359850'), + (794, 2203, 'attending', '2023-08-10 20:15:19', '2025-12-17 19:46:55', '4090MrKd', '6361524'), + (794, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', '4090MrKd', '6361709'), + (794, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4090MrKd', '6361710'), + (794, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4090MrKd', '6361711'), + (794, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4090MrKd', '6361712'), + (794, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4090MrKd', '6361713'), + (794, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4090MrKd', '6382573'), + (794, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4090MrKd', '6388604'), + (794, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4090MrKd', '6394629'), + (794, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4090MrKd', '6394631'), + (794, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4090MrKd', '6440863'), + (794, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4090MrKd', '6445440'), + (794, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4090MrKd', '6453951'), + (794, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4090MrKd', '6461696'), + (794, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4090MrKd', '6462129'), + (794, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4090MrKd', '6463218'), + (794, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4090MrKd', '6472181'), + (794, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4090MrKd', '6482693'), + (794, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4090MrKd', '6484200'), + (794, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4090MrKd', '6484680'), + (794, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4090MrKd', '6507741'), + (794, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4090MrKd', '6514659'), + (794, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4090MrKd', '6514660'), + (794, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4090MrKd', '6519103'), + (794, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4090MrKd', '6535681'), + (794, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4090MrKd', '6584747'), + (794, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4090MrKd', '6587097'), + (794, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4090MrKd', '6609022'), + (794, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4090MrKd', '6632757'), + (794, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4090MrKd', '6644187'), + (794, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4090MrKd', '6648951'), + (794, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4090MrKd', '6648952'), + (794, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4090MrKd', '6655401'), + (794, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4090MrKd', '6661585'), + (794, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4090MrKd', '6661588'), + (794, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4090MrKd', '6661589'), + (794, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4090MrKd', '6699906'), + (794, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4090MrKd', '6701109'), + (794, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4090MrKd', '6705219'), + (794, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4090MrKd', '6710153'), + (794, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4090MrKd', '6711552'), + (794, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4090MrKd', '6711553'), + (795, 665, 'not_attending', '2021-09-01 00:30:26', '2025-12-17 19:47:43', 'nda9aXVd', '3547143'), + (795, 667, 'not_attending', '2021-08-28 14:11:27', '2025-12-17 19:47:42', 'nda9aXVd', '3547145'), + (795, 850, 'maybe', '2021-08-22 17:33:27', '2025-12-17 19:47:42', 'nda9aXVd', '4015722'), + (795, 854, 'maybe', '2021-09-03 21:06:26', '2025-12-17 19:47:43', 'nda9aXVd', '4015726'), + (795, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'nda9aXVd', '4136947'), + (795, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nda9aXVd', '4210314'), + (795, 900, 'attending', '2021-07-24 16:57:35', '2025-12-17 19:47:40', 'nda9aXVd', '4240316'), + (795, 901, 'attending', '2021-07-28 01:59:06', '2025-12-17 19:47:40', 'nda9aXVd', '4240317'), + (795, 902, 'attending', '2021-08-02 14:32:50', '2025-12-17 19:47:41', 'nda9aXVd', '4240318'), + (795, 903, 'attending', '2021-08-12 14:39:32', '2025-12-17 19:47:42', 'nda9aXVd', '4240320'), + (795, 916, 'attending', '2021-07-22 22:29:41', '2025-12-17 19:47:40', 'nda9aXVd', '4273772'), + (795, 917, 'attending', '2021-07-16 19:03:11', '2025-12-17 19:47:39', 'nda9aXVd', '4274481'), + (795, 919, 'attending', '2021-07-16 16:29:41', '2025-12-17 19:47:39', 'nda9aXVd', '4275957'), + (795, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nda9aXVd', '4277819'), + (795, 921, 'maybe', '2021-07-16 16:29:34', '2025-12-17 19:47:39', 'nda9aXVd', '4278368'), + (795, 933, 'not_attending', '2021-07-28 22:51:44', '2025-12-17 19:47:40', 'nda9aXVd', '4301723'), + (795, 934, 'not_attending', '2021-08-04 22:01:46', '2025-12-17 19:47:41', 'nda9aXVd', '4302093'), + (795, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nda9aXVd', '4304151'), + (795, 946, 'attending', '2021-08-02 03:00:25', '2025-12-17 19:47:40', 'nda9aXVd', '4314835'), + (795, 951, 'not_attending', '2021-08-28 14:11:32', '2025-12-17 19:47:43', 'nda9aXVd', '4315731'), + (795, 952, 'not_attending', '2021-08-05 21:16:32', '2025-12-17 19:47:41', 'nda9aXVd', '4318286'), + (795, 955, 'attending', '2021-08-06 01:18:21', '2025-12-17 19:47:41', 'nda9aXVd', '4331588'), + (795, 958, 'attending', '2021-08-07 01:12:51', '2025-12-17 19:47:41', 'nda9aXVd', '4342996'), + (795, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'nda9aXVd', '4345519'), + (795, 963, 'attending', '2021-08-12 14:41:39', '2025-12-17 19:47:42', 'nda9aXVd', '4353159'), + (795, 964, 'attending', '2021-08-23 22:57:09', '2025-12-17 19:47:42', 'nda9aXVd', '4353160'), + (795, 965, 'maybe', '2021-08-19 02:55:28', '2025-12-17 19:47:42', 'nda9aXVd', '4353703'), + (795, 971, 'maybe', '2021-09-08 22:57:37', '2025-12-17 19:47:43', 'nda9aXVd', '4356801'), + (795, 972, 'attending', '2021-08-19 02:53:21', '2025-12-17 19:47:42', 'nda9aXVd', '4358025'), + (795, 973, 'maybe', '2021-08-21 22:25:06', '2025-12-17 19:47:42', 'nda9aXVd', '4366186'), + (795, 974, 'attending', '2021-08-24 02:16:25', '2025-12-17 19:47:42', 'nda9aXVd', '4366187'), + (795, 977, 'attending', '2021-08-19 02:53:17', '2025-12-17 19:47:42', 'nda9aXVd', '4378479'), + (795, 980, 'attending', '2021-08-21 18:44:07', '2025-12-17 19:47:42', 'nda9aXVd', '4380358'), + (795, 982, 'not_attending', '2021-08-28 14:11:17', '2025-12-17 19:47:42', 'nda9aXVd', '4389739'), + (795, 987, 'not_attending', '2021-09-01 22:53:11', '2025-12-17 19:47:43', 'nda9aXVd', '4402634'), + (795, 988, 'not_attending', '2021-08-26 15:49:27', '2025-12-17 19:47:42', 'nda9aXVd', '4402823'), + (795, 989, 'not_attending', '2021-09-05 15:08:43', '2025-12-17 19:47:43', 'nda9aXVd', '4414282'), + (795, 990, 'attending', '2021-09-01 00:30:23', '2025-12-17 19:47:43', 'nda9aXVd', '4420735'), + (795, 991, 'not_attending', '2021-09-11 22:48:32', '2025-12-17 19:47:43', 'nda9aXVd', '4420738'), + (795, 992, 'attending', '2021-09-12 14:31:12', '2025-12-17 19:47:33', 'nda9aXVd', '4420739'), + (795, 993, 'not_attending', '2021-09-20 16:14:36', '2025-12-17 19:47:34', 'nda9aXVd', '4420741'), + (795, 994, 'not_attending', '2021-10-02 23:31:18', '2025-12-17 19:47:34', 'nda9aXVd', '4420742'), + (795, 995, 'not_attending', '2021-10-07 10:42:29', '2025-12-17 19:47:34', 'nda9aXVd', '4420744'), + (795, 996, 'not_attending', '2021-10-16 21:51:09', '2025-12-17 19:47:35', 'nda9aXVd', '4420747'), + (795, 997, 'attending', '2021-10-23 21:09:34', '2025-12-17 19:47:35', 'nda9aXVd', '4420748'), + (795, 998, 'attending', '2021-10-30 21:54:59', '2025-12-17 19:47:36', 'nda9aXVd', '4420749'), + (795, 999, 'not_attending', '2021-09-01 00:28:53', '2025-12-17 19:47:43', 'nda9aXVd', '4421150'), + (795, 1000, 'not_attending', '2021-09-01 00:29:44', '2025-12-17 19:47:43', 'nda9aXVd', '4424456'), + (795, 1001, 'maybe', '2021-09-01 00:29:53', '2025-12-17 19:47:43', 'nda9aXVd', '4424687'), + (795, 1003, 'not_attending', '2021-09-05 15:07:39', '2025-12-17 19:47:43', 'nda9aXVd', '4438802'), + (795, 1004, 'not_attending', '2021-09-06 17:30:17', '2025-12-17 19:47:43', 'nda9aXVd', '4438804'), + (795, 1006, 'not_attending', '2021-09-26 18:29:09', '2025-12-17 19:47:34', 'nda9aXVd', '4438808'), + (795, 1013, 'not_attending', '2021-09-07 21:56:29', '2025-12-17 19:47:43', 'nda9aXVd', '4438817'), + (795, 1014, 'not_attending', '2021-09-03 21:06:51', '2025-12-17 19:47:43', 'nda9aXVd', '4439233'), + (795, 1015, 'not_attending', '2021-09-18 21:06:32', '2025-12-17 19:47:43', 'nda9aXVd', '4440800'), + (795, 1016, 'not_attending', '2021-09-09 22:16:02', '2025-12-17 19:47:43', 'nda9aXVd', '4441271'), + (795, 1017, 'attending', '2021-09-03 21:07:03', '2025-12-17 19:47:43', 'nda9aXVd', '4441822'), + (795, 1019, 'not_attending', '2021-09-16 23:04:27', '2025-12-17 19:47:43', 'nda9aXVd', '4450515'), + (795, 1020, 'not_attending', '2021-09-13 23:01:02', '2025-12-17 19:47:43', 'nda9aXVd', '4451787'), + (795, 1021, 'not_attending', '2021-09-20 22:04:32', '2025-12-17 19:47:34', 'nda9aXVd', '4451803'), + (795, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nda9aXVd', '4461883'), + (795, 1032, 'not_attending', '2021-09-26 20:56:45', '2025-12-17 19:47:34', 'nda9aXVd', '4473825'), + (795, 1034, 'maybe', '2021-09-18 18:48:35', '2025-12-17 19:47:43', 'nda9aXVd', '4486265'), + (795, 1036, 'attending', '2021-09-20 16:15:46', '2025-12-17 19:47:34', 'nda9aXVd', '4493166'), + (795, 1050, 'not_attending', '2022-01-26 23:17:06', '2025-12-17 19:47:32', 'nda9aXVd', '4496615'), + (795, 1051, 'not_attending', '2022-01-31 04:52:12', '2025-12-17 19:47:32', 'nda9aXVd', '4496616'), + (795, 1053, 'not_attending', '2022-02-09 13:49:43', '2025-12-17 19:47:32', 'nda9aXVd', '4496618'), + (795, 1058, 'maybe', '2022-02-09 13:51:43', '2025-12-17 19:47:33', 'nda9aXVd', '4496625'), + (795, 1059, 'not_attending', '2022-03-07 21:06:35', '2025-12-17 19:47:33', 'nda9aXVd', '4496626'), + (795, 1060, 'maybe', '2022-03-25 13:07:33', '2025-12-17 19:47:25', 'nda9aXVd', '4496627'), + (795, 1061, 'not_attending', '2022-02-09 13:48:55', '2025-12-17 19:47:32', 'nda9aXVd', '4496628'), + (795, 1062, 'not_attending', '2022-02-27 05:52:25', '2025-12-17 19:47:33', 'nda9aXVd', '4496629'), + (795, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nda9aXVd', '4508342'), + (795, 1068, 'maybe', '2021-09-26 18:28:51', '2025-12-17 19:47:34', 'nda9aXVd', '4511471'), + (795, 1070, 'not_attending', '2021-09-26 18:29:04', '2025-12-17 19:47:34', 'nda9aXVd', '4512562'), + (795, 1071, 'not_attending', '2021-10-04 22:57:39', '2025-12-17 19:47:34', 'nda9aXVd', '4516078'), + (795, 1072, 'not_attending', '2021-10-06 22:12:15', '2025-12-17 19:47:34', 'nda9aXVd', '4516287'), + (795, 1074, 'attending', '2021-09-29 22:07:14', '2025-12-17 19:47:34', 'nda9aXVd', '4528953'), + (795, 1077, 'not_attending', '2021-10-13 22:48:39', '2025-12-17 19:47:34', 'nda9aXVd', '4540903'), + (795, 1079, 'maybe', '2021-10-20 12:46:09', '2025-12-17 19:47:35', 'nda9aXVd', '4563823'), + (795, 1085, 'attending', '2021-12-27 19:16:10', '2025-12-17 19:47:31', 'nda9aXVd', '4568542'), + (795, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nda9aXVd', '4568602'), + (795, 1087, 'not_attending', '2021-10-16 19:45:16', '2025-12-17 19:47:35', 'nda9aXVd', '4572153'), + (795, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'nda9aXVd', '4585962'), + (795, 1094, 'maybe', '2021-10-25 19:33:11', '2025-12-17 19:47:36', 'nda9aXVd', '4587337'), + (795, 1095, 'not_attending', '2021-10-27 22:45:39', '2025-12-17 19:47:36', 'nda9aXVd', '4596356'), + (795, 1097, 'maybe', '2021-11-01 21:52:19', '2025-12-17 19:47:36', 'nda9aXVd', '4598860'), + (795, 1098, 'maybe', '2021-11-10 23:20:18', '2025-12-17 19:47:36', 'nda9aXVd', '4598861'), + (795, 1099, 'maybe', '2021-10-31 01:25:48', '2025-12-17 19:47:36', 'nda9aXVd', '4602797'), + (795, 1100, 'maybe', '2021-11-06 22:49:51', '2025-12-17 19:47:36', 'nda9aXVd', '4607305'), + (795, 1101, 'not_attending', '2021-11-11 23:17:21', '2025-12-17 19:47:36', 'nda9aXVd', '4607339'), + (795, 1106, 'maybe', '2021-11-11 23:17:56', '2025-12-17 19:47:36', 'nda9aXVd', '4620452'), + (795, 1107, 'maybe', '2021-11-14 00:34:33', '2025-12-17 19:47:37', 'nda9aXVd', '4620697'), + (795, 1108, 'maybe', '2021-11-14 00:34:10', '2025-12-17 19:47:37', 'nda9aXVd', '4632276'), + (795, 1110, 'not_attending', '2021-11-20 20:40:34', '2025-12-17 19:47:37', 'nda9aXVd', '4635224'), + (795, 1114, 'maybe', '2021-11-11 23:18:14', '2025-12-17 19:47:36', 'nda9aXVd', '4637896'), + (795, 1116, 'maybe', '2021-11-30 17:35:00', '2025-12-17 19:47:37', 'nda9aXVd', '4642994'), + (795, 1117, 'not_attending', '2021-12-09 00:45:26', '2025-12-17 19:47:38', 'nda9aXVd', '4642995'), + (795, 1118, 'not_attending', '2021-12-16 01:37:59', '2025-12-17 19:47:38', 'nda9aXVd', '4642996'), + (795, 1119, 'maybe', '2021-12-20 18:48:50', '2025-12-17 19:47:31', 'nda9aXVd', '4642997'), + (795, 1126, 'not_attending', '2021-12-10 23:56:17', '2025-12-17 19:47:38', 'nda9aXVd', '4645687'), + (795, 1127, 'maybe', '2021-12-06 19:16:29', '2025-12-17 19:47:38', 'nda9aXVd', '4645698'), + (795, 1128, 'not_attending', '2021-11-21 00:24:24', '2025-12-17 19:47:37', 'nda9aXVd', '4645704'), + (795, 1129, 'not_attending', '2021-11-21 13:18:11', '2025-12-17 19:47:37', 'nda9aXVd', '4645705'), + (795, 1130, 'attending', '2021-12-04 22:17:26', '2025-12-17 19:47:37', 'nda9aXVd', '4658824'), + (795, 1131, 'attending', '2021-12-18 19:13:23', '2025-12-17 19:47:31', 'nda9aXVd', '4658825'), + (795, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nda9aXVd', '4668385'), + (795, 1139, 'maybe', '2021-11-30 17:45:40', '2025-12-17 19:47:37', 'nda9aXVd', '4675604'), + (795, 1140, 'attending', '2021-11-30 17:45:35', '2025-12-17 19:47:37', 'nda9aXVd', '4679701'), + (795, 1142, 'maybe', '2021-12-04 03:46:00', '2025-12-17 19:47:37', 'nda9aXVd', '4681923'), + (795, 1146, 'not_attending', '2021-12-10 23:56:02', '2025-12-17 19:47:38', 'nda9aXVd', '4692841'), + (795, 1147, 'maybe', '2021-12-08 18:29:08', '2025-12-17 19:47:38', 'nda9aXVd', '4692842'), + (795, 1148, 'not_attending', '2021-12-17 22:47:33', '2025-12-17 19:47:31', 'nda9aXVd', '4692843'), + (795, 1149, 'not_attending', '2021-12-08 18:28:45', '2025-12-17 19:47:38', 'nda9aXVd', '4694407'), + (795, 1154, 'maybe', '2022-01-26 20:40:07', '2025-12-17 19:47:32', 'nda9aXVd', '4708708'), + (795, 1155, 'attending', '2021-12-20 05:03:47', '2025-12-17 19:47:31', 'nda9aXVd', '4715119'), + (795, 1163, 'not_attending', '2022-01-08 18:05:26', '2025-12-17 19:47:31', 'nda9aXVd', '4724206'), + (795, 1164, 'attending', '2022-01-03 04:32:05', '2025-12-17 19:47:31', 'nda9aXVd', '4724208'), + (795, 1165, 'attending', '2022-01-03 04:32:09', '2025-12-17 19:47:31', 'nda9aXVd', '4724210'), + (795, 1170, 'not_attending', '2022-01-10 01:27:57', '2025-12-17 19:47:31', 'nda9aXVd', '4731045'), + (795, 1172, 'not_attending', '2022-01-17 22:39:27', '2025-12-17 19:47:32', 'nda9aXVd', '4735348'), + (795, 1173, 'not_attending', '2022-01-08 18:05:22', '2025-12-17 19:47:31', 'nda9aXVd', '4736495'), + (795, 1174, 'attending', '2022-01-15 22:48:09', '2025-12-17 19:47:31', 'nda9aXVd', '4736496'), + (795, 1175, 'attending', '2022-01-21 03:04:44', '2025-12-17 19:47:32', 'nda9aXVd', '4736497'), + (795, 1176, 'attending', '2022-01-31 04:52:15', '2025-12-17 19:47:32', 'nda9aXVd', '4736498'), + (795, 1177, 'attending', '2022-02-06 03:59:01', '2025-12-17 19:47:32', 'nda9aXVd', '4736499'), + (795, 1178, 'not_attending', '2022-01-26 20:40:22', '2025-12-17 19:47:32', 'nda9aXVd', '4736500'), + (795, 1179, 'not_attending', '2022-02-18 00:22:16', '2025-12-17 19:47:32', 'nda9aXVd', '4736501'), + (795, 1180, 'attending', '2022-02-23 21:09:38', '2025-12-17 19:47:33', 'nda9aXVd', '4736502'), + (795, 1181, 'not_attending', '2022-03-04 21:09:57', '2025-12-17 19:47:33', 'nda9aXVd', '4736503'), + (795, 1182, 'not_attending', '2022-03-07 21:06:42', '2025-12-17 19:47:33', 'nda9aXVd', '4736504'), + (795, 1184, 'maybe', '2022-01-09 15:28:13', '2025-12-17 19:47:31', 'nda9aXVd', '4742350'), + (795, 1185, 'not_attending', '2022-01-09 15:28:24', '2025-12-17 19:47:31', 'nda9aXVd', '4746789'), + (795, 1188, 'not_attending', '2022-01-17 22:39:21', '2025-12-17 19:47:32', 'nda9aXVd', '4753929'), + (795, 1189, 'not_attending', '2022-01-17 18:45:52', '2025-12-17 19:47:31', 'nda9aXVd', '4753938'), + (795, 1192, 'not_attending', '2022-01-19 13:40:23', '2025-12-17 19:47:32', 'nda9aXVd', '4758745'), + (795, 1193, 'maybe', '2022-01-19 13:40:32', '2025-12-17 19:47:32', 'nda9aXVd', '4759563'), + (795, 1196, 'not_attending', '2022-01-21 03:04:13', '2025-12-17 19:47:32', 'nda9aXVd', '4765583'), + (795, 1200, 'not_attending', '2022-01-17 22:39:25', '2025-12-17 19:47:32', 'nda9aXVd', '4766830'), + (795, 1202, 'maybe', '2022-01-26 23:16:56', '2025-12-17 19:47:32', 'nda9aXVd', '4769423'), + (795, 1204, 'not_attending', '2022-02-09 13:49:05', '2025-12-17 19:47:32', 'nda9aXVd', '4773576'), + (795, 1205, 'attending', '2022-03-13 21:55:40', '2025-12-17 19:47:33', 'nda9aXVd', '4773577'), + (795, 1207, 'not_attending', '2022-05-01 22:24:32', '2025-12-17 19:47:28', 'nda9aXVd', '4773579'), + (795, 1210, 'not_attending', '2022-01-26 23:17:02', '2025-12-17 19:47:32', 'nda9aXVd', '4776927'), + (795, 1211, 'not_attending', '2022-01-26 23:17:01', '2025-12-17 19:47:32', 'nda9aXVd', '4780754'), + (795, 1212, 'not_attending', '2022-02-02 23:51:57', '2025-12-17 19:47:32', 'nda9aXVd', '4780759'), + (795, 1213, 'not_attending', '2022-01-31 04:52:19', '2025-12-17 19:47:32', 'nda9aXVd', '4780760'), + (795, 1214, 'not_attending', '2022-02-09 13:49:12', '2025-12-17 19:47:32', 'nda9aXVd', '4780761'), + (795, 1216, 'not_attending', '2022-01-26 23:17:08', '2025-12-17 19:47:32', 'nda9aXVd', '4781137'), + (795, 1217, 'not_attending', '2022-01-31 04:52:39', '2025-12-17 19:47:32', 'nda9aXVd', '4781139'), + (795, 1218, 'attending', '2022-01-31 04:49:32', '2025-12-17 19:47:32', 'nda9aXVd', '4788464'), + (795, 1219, 'attending', '2022-01-31 21:29:14', '2025-12-17 19:47:32', 'nda9aXVd', '4788466'), + (795, 1221, 'not_attending', '2022-01-28 15:21:26', '2025-12-17 19:47:32', 'nda9aXVd', '4790261'), + (795, 1222, 'maybe', '2022-02-09 13:49:08', '2025-12-17 19:47:32', 'nda9aXVd', '5015628'), + (795, 1223, 'not_attending', '2022-01-31 04:52:10', '2025-12-17 19:47:32', 'nda9aXVd', '5015635'), + (795, 1224, 'not_attending', '2022-01-31 04:51:59', '2025-12-17 19:47:32', 'nda9aXVd', '5016682'), + (795, 1226, 'not_attending', '2022-02-02 23:51:27', '2025-12-17 19:47:32', 'nda9aXVd', '5019064'), + (795, 1227, 'not_attending', '2022-02-15 00:45:25', '2025-12-17 19:47:32', 'nda9aXVd', '5027602'), + (795, 1228, 'maybe', '2022-02-11 13:00:21', '2025-12-17 19:47:32', 'nda9aXVd', '5028238'), + (795, 1229, 'not_attending', '2022-02-09 13:49:54', '2025-12-17 19:47:32', 'nda9aXVd', '5034963'), + (795, 1231, 'not_attending', '2022-02-09 13:50:37', '2025-12-17 19:47:33', 'nda9aXVd', '5037637'), + (795, 1232, 'maybe', '2022-02-09 13:39:58', '2025-12-17 19:47:32', 'nda9aXVd', '5038850'), + (795, 1233, 'not_attending', '2022-02-09 13:48:49', '2025-12-17 19:47:32', 'nda9aXVd', '5038910'), + (795, 1234, 'not_attending', '2022-02-14 15:45:13', '2025-12-17 19:47:32', 'nda9aXVd', '5042197'), + (795, 1235, 'not_attending', '2022-02-14 15:45:11', '2025-12-17 19:47:32', 'nda9aXVd', '5044505'), + (795, 1236, 'not_attending', '2022-02-14 15:45:51', '2025-12-17 19:47:32', 'nda9aXVd', '5045826'), + (795, 1237, 'not_attending', '2022-02-19 01:43:20', '2025-12-17 19:47:32', 'nda9aXVd', '5050641'), + (795, 1238, 'not_attending', '2022-02-24 00:45:02', '2025-12-17 19:47:32', 'nda9aXVd', '5052236'), + (795, 1239, 'maybe', '2022-02-28 01:59:34', '2025-12-17 19:47:33', 'nda9aXVd', '5052238'), + (795, 1240, 'maybe', '2022-03-11 04:49:49', '2025-12-17 19:47:33', 'nda9aXVd', '5052239'), + (795, 1241, 'maybe', '2022-03-23 11:49:14', '2025-12-17 19:47:25', 'nda9aXVd', '5052240'), + (795, 1242, 'maybe', '2022-03-25 12:45:29', '2025-12-17 19:47:25', 'nda9aXVd', '5052241'), + (795, 1243, 'not_attending', '2022-03-06 20:01:40', '2025-12-17 19:47:33', 'nda9aXVd', '5058336'), + (795, 1245, 'not_attending', '2022-02-28 01:59:35', '2025-12-17 19:47:33', 'nda9aXVd', '5061301'), + (795, 1246, 'not_attending', '2022-02-28 01:59:53', '2025-12-17 19:47:33', 'nda9aXVd', '5064727'), + (795, 1248, 'not_attending', '2022-02-23 21:08:50', '2025-12-17 19:47:33', 'nda9aXVd', '5065064'), + (795, 1249, 'not_attending', '2022-03-11 04:49:29', '2025-12-17 19:47:33', 'nda9aXVd', '5068530'), + (795, 1250, 'not_attending', '2022-02-28 01:59:56', '2025-12-17 19:47:33', 'nda9aXVd', '5069735'), + (795, 1251, 'not_attending', '2022-03-07 21:06:17', '2025-12-17 19:47:33', 'nda9aXVd', '5128466'), + (795, 1252, 'not_attending', '2022-02-28 23:55:10', '2025-12-17 19:47:33', 'nda9aXVd', '5129121'), + (795, 1253, 'maybe', '2022-02-28 02:02:50', '2025-12-17 19:47:33', 'nda9aXVd', '5129122'), + (795, 1254, 'not_attending', '2022-02-28 01:58:56', '2025-12-17 19:47:33', 'nda9aXVd', '5129129'), + (795, 1255, 'maybe', '2022-02-28 01:59:49', '2025-12-17 19:47:33', 'nda9aXVd', '5129140'), + (795, 1256, 'not_attending', '2022-02-28 01:59:38', '2025-12-17 19:47:33', 'nda9aXVd', '5129142'), + (795, 1257, 'not_attending', '2022-02-28 01:59:43', '2025-12-17 19:47:33', 'nda9aXVd', '5129274'), + (795, 1259, 'not_attending', '2022-03-09 14:46:01', '2025-12-17 19:47:33', 'nda9aXVd', '5132533'), + (795, 1262, 'not_attending', '2022-03-09 14:45:18', '2025-12-17 19:47:33', 'nda9aXVd', '5157773'), + (795, 1263, 'not_attending', '2022-03-07 21:05:44', '2025-12-17 19:47:33', 'nda9aXVd', '5158145'), + (795, 1264, 'attending', '2022-03-22 16:58:47', '2025-12-17 19:47:25', 'nda9aXVd', '5160281'), + (795, 1265, 'not_attending', '2022-03-07 21:06:30', '2025-12-17 19:47:33', 'nda9aXVd', '5160862'), + (795, 1266, 'maybe', '2022-03-14 20:54:25', '2025-12-17 19:47:33', 'nda9aXVd', '5166407'), + (795, 1267, 'maybe', '2022-03-16 02:02:49', '2025-12-17 19:47:25', 'nda9aXVd', '5169578'), + (795, 1269, 'maybe', '2022-03-16 02:03:10', '2025-12-17 19:47:25', 'nda9aXVd', '5179439'), + (795, 1270, 'attending', '2022-03-15 02:35:34', '2025-12-17 19:47:25', 'nda9aXVd', '5181277'), + (795, 1271, 'maybe', '2022-03-16 02:03:01', '2025-12-17 19:47:25', 'nda9aXVd', '5181648'), + (795, 1272, 'attending', '2022-03-16 02:03:18', '2025-12-17 19:47:25', 'nda9aXVd', '5186582'), + (795, 1273, 'attending', '2022-03-25 13:06:12', '2025-12-17 19:47:25', 'nda9aXVd', '5186583'), + (795, 1274, 'attending', '2022-04-02 19:26:25', '2025-12-17 19:47:26', 'nda9aXVd', '5186585'), + (795, 1275, 'not_attending', '2022-03-28 11:27:51', '2025-12-17 19:47:26', 'nda9aXVd', '5186587'), + (795, 1276, 'maybe', '2022-03-25 13:07:38', '2025-12-17 19:47:25', 'nda9aXVd', '5186820'), + (795, 1277, 'not_attending', '2022-03-18 16:34:43', '2025-12-17 19:47:25', 'nda9aXVd', '5186865'), + (795, 1278, 'not_attending', '2022-03-17 03:36:55', '2025-12-17 19:47:33', 'nda9aXVd', '5186920'), + (795, 1279, 'attending', '2022-03-16 13:39:25', '2025-12-17 19:47:25', 'nda9aXVd', '5187212'), + (795, 1280, 'not_attending', '2022-03-18 16:34:52', '2025-12-17 19:47:25', 'nda9aXVd', '5189749'), + (795, 1281, 'attending', '2022-04-08 21:32:37', '2025-12-17 19:47:27', 'nda9aXVd', '5190437'), + (795, 1282, 'attending', '2022-03-21 23:42:59', '2025-12-17 19:47:25', 'nda9aXVd', '5191241'), + (795, 1284, 'attending', '2022-04-16 22:57:03', '2025-12-17 19:47:27', 'nda9aXVd', '5195095'), + (795, 1285, 'not_attending', '2022-03-25 13:07:45', '2025-12-17 19:47:25', 'nda9aXVd', '5196763'), + (795, 1287, 'attending', '2022-03-28 22:37:01', '2025-12-17 19:47:25', 'nda9aXVd', '5199425'), + (795, 1288, 'not_attending', '2022-03-25 13:07:52', '2025-12-17 19:47:25', 'nda9aXVd', '5199460'), + (795, 1289, 'not_attending', '2022-03-25 13:07:40', '2025-12-17 19:47:25', 'nda9aXVd', '5200190'), + (795, 1290, 'maybe', '2022-03-25 12:45:22', '2025-12-17 19:47:25', 'nda9aXVd', '5200196'), + (795, 1291, 'not_attending', '2022-03-25 13:07:44', '2025-12-17 19:47:25', 'nda9aXVd', '5200458'), + (795, 1292, 'not_attending', '2022-03-28 11:27:45', '2025-12-17 19:47:25', 'nda9aXVd', '5214043'), + (795, 1293, 'maybe', '2022-04-08 21:33:45', '2025-12-17 19:47:27', 'nda9aXVd', '5214641'), + (795, 1294, 'not_attending', '2022-04-01 18:07:03', '2025-12-17 19:47:26', 'nda9aXVd', '5214686'), + (795, 1296, 'not_attending', '2022-04-01 18:06:36', '2025-12-17 19:47:26', 'nda9aXVd', '5215985'), + (795, 1297, 'not_attending', '2022-03-29 21:44:19', '2025-12-17 19:47:26', 'nda9aXVd', '5215989'), + (795, 1298, 'not_attending', '2022-04-01 19:24:27', '2025-12-17 19:47:25', 'nda9aXVd', '5216645'), + (795, 1299, 'not_attending', '2022-03-31 16:19:51', '2025-12-17 19:47:25', 'nda9aXVd', '5217660'), + (795, 1300, 'not_attending', '2022-03-31 16:20:10', '2025-12-17 19:47:25', 'nda9aXVd', '5217936'), + (795, 1302, 'maybe', '2022-04-08 23:02:28', '2025-12-17 19:47:27', 'nda9aXVd', '5220867'), + (795, 1305, 'maybe', '2022-04-10 23:41:11', '2025-12-17 19:47:27', 'nda9aXVd', '5223673'), + (795, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nda9aXVd', '5223686'), + (795, 1308, 'not_attending', '2022-04-13 23:16:14', '2025-12-17 19:47:27', 'nda9aXVd', '5226703'), + (795, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'nda9aXVd', '5227432'), + (795, 1312, 'not_attending', '2022-04-11 14:33:40', '2025-12-17 19:47:27', 'nda9aXVd', '5231459'), + (795, 1313, 'not_attending', '2022-04-11 14:34:05', '2025-12-17 19:47:27', 'nda9aXVd', '5231461'), + (795, 1314, 'not_attending', '2022-04-11 16:44:26', '2025-12-17 19:47:27', 'nda9aXVd', '5233137'), + (795, 1315, 'maybe', '2022-04-22 19:20:20', '2025-12-17 19:47:27', 'nda9aXVd', '5237522'), + (795, 1316, 'attending', '2022-04-11 14:33:45', '2025-12-17 19:47:27', 'nda9aXVd', '5237536'), + (795, 1317, 'maybe', '2022-04-11 16:45:48', '2025-12-17 19:47:27', 'nda9aXVd', '5237543'), + (795, 1318, 'not_attending', '2022-04-11 14:33:43', '2025-12-17 19:47:27', 'nda9aXVd', '5238343'), + (795, 1319, 'not_attending', '2022-04-11 14:32:57', '2025-12-17 19:47:27', 'nda9aXVd', '5238353'), + (795, 1320, 'not_attending', '2022-04-11 14:33:11', '2025-12-17 19:47:27', 'nda9aXVd', '5238354'), + (795, 1321, 'maybe', '2022-04-22 19:20:16', '2025-12-17 19:47:27', 'nda9aXVd', '5238355'), + (795, 1322, 'attending', '2022-04-14 16:19:20', '2025-12-17 19:47:27', 'nda9aXVd', '5238356'), + (795, 1323, 'not_attending', '2022-04-11 14:32:45', '2025-12-17 19:47:27', 'nda9aXVd', '5238357'), + (795, 1324, 'not_attending', '2022-04-11 14:32:50', '2025-12-17 19:47:27', 'nda9aXVd', '5238360'), + (795, 1325, 'not_attending', '2022-04-21 01:44:42', '2025-12-17 19:47:28', 'nda9aXVd', '5238361'), + (795, 1326, 'not_attending', '2022-04-21 01:44:44', '2025-12-17 19:47:28', 'nda9aXVd', '5238362'), + (795, 1327, 'attending', '2022-04-11 14:31:24', '2025-12-17 19:47:27', 'nda9aXVd', '5238445'), + (795, 1328, 'attending', '2022-04-11 22:11:57', '2025-12-17 19:47:27', 'nda9aXVd', '5238759'), + (795, 1329, 'not_attending', '2022-04-13 18:08:42', '2025-12-17 19:47:27', 'nda9aXVd', '5240135'), + (795, 1330, 'maybe', '2022-04-14 23:04:23', '2025-12-17 19:47:27', 'nda9aXVd', '5242155'), + (795, 1331, 'maybe', '2022-04-14 23:04:28', '2025-12-17 19:47:27', 'nda9aXVd', '5242156'), + (795, 1332, 'maybe', '2022-04-14 23:01:17', '2025-12-17 19:47:27', 'nda9aXVd', '5243274'), + (795, 1333, 'not_attending', '2022-04-14 23:01:13', '2025-12-17 19:47:27', 'nda9aXVd', '5243711'), + (795, 1334, 'attending', '2022-04-14 23:03:50', '2025-12-17 19:47:27', 'nda9aXVd', '5244797'), + (795, 1335, 'not_attending', '2022-04-14 23:03:22', '2025-12-17 19:47:27', 'nda9aXVd', '5244906'), + (795, 1336, 'attending', '2022-04-14 23:00:44', '2025-12-17 19:47:27', 'nda9aXVd', '5244915'), + (795, 1340, 'maybe', '2022-04-25 11:50:31', '2025-12-17 19:47:27', 'nda9aXVd', '5245754'), + (795, 1341, 'attending', '2022-05-01 23:00:34', '2025-12-17 19:47:28', 'nda9aXVd', '5245755'), + (795, 1343, 'not_attending', '2022-05-01 22:24:26', '2025-12-17 19:47:28', 'nda9aXVd', '5247200'), + (795, 1344, 'not_attending', '2022-04-21 01:45:00', '2025-12-17 19:47:28', 'nda9aXVd', '5247465'), + (795, 1345, 'not_attending', '2022-04-21 01:43:21', '2025-12-17 19:47:27', 'nda9aXVd', '5247466'), + (795, 1346, 'not_attending', '2022-04-21 01:43:24', '2025-12-17 19:47:27', 'nda9aXVd', '5247467'), + (795, 1348, 'maybe', '2022-04-21 01:42:20', '2025-12-17 19:47:28', 'nda9aXVd', '5247605'), + (795, 1349, 'not_attending', '2022-04-21 01:42:56', '2025-12-17 19:47:27', 'nda9aXVd', '5249631'), + (795, 1350, 'not_attending', '2022-04-21 01:42:58', '2025-12-17 19:47:27', 'nda9aXVd', '5249763'), + (795, 1351, 'not_attending', '2022-05-02 12:55:32', '2025-12-17 19:47:28', 'nda9aXVd', '5251561'), + (795, 1353, 'not_attending', '2022-04-21 01:43:42', '2025-12-17 19:47:27', 'nda9aXVd', '5251777'), + (795, 1354, 'not_attending', '2022-04-21 22:35:12', '2025-12-17 19:47:27', 'nda9aXVd', '5252569'), + (795, 1355, 'not_attending', '2022-04-27 16:41:23', '2025-12-17 19:47:28', 'nda9aXVd', '5252573'), + (795, 1357, 'maybe', '2022-04-25 16:19:59', '2025-12-17 19:47:27', 'nda9aXVd', '5256017'), + (795, 1359, 'not_attending', '2022-04-27 16:43:13', '2025-12-17 19:47:28', 'nda9aXVd', '5258360'), + (795, 1360, 'maybe', '2022-04-25 11:50:09', '2025-12-17 19:47:27', 'nda9aXVd', '5260197'), + (795, 1361, 'not_attending', '2022-04-27 16:43:00', '2025-12-17 19:47:28', 'nda9aXVd', '5260491'), + (795, 1362, 'not_attending', '2022-04-25 20:28:57', '2025-12-17 19:47:28', 'nda9aXVd', '5260800'), + (795, 1363, 'not_attending', '2022-04-27 16:41:36', '2025-12-17 19:47:28', 'nda9aXVd', '5261577'), + (795, 1364, 'attending', '2022-04-27 16:42:44', '2025-12-17 19:47:28', 'nda9aXVd', '5261598'), + (795, 1365, 'not_attending', '2022-05-01 16:22:55', '2025-12-17 19:47:28', 'nda9aXVd', '5261600'), + (795, 1366, 'not_attending', '2022-04-27 16:41:15', '2025-12-17 19:47:27', 'nda9aXVd', '5262344'), + (795, 1367, 'not_attending', '2022-05-01 16:23:00', '2025-12-17 19:47:28', 'nda9aXVd', '5262345'), + (795, 1368, 'attending', '2022-05-06 01:10:15', '2025-12-17 19:47:28', 'nda9aXVd', '5262783'), + (795, 1369, 'maybe', '2022-04-27 16:43:51', '2025-12-17 19:47:28', 'nda9aXVd', '5262809'), + (795, 1370, 'not_attending', '2022-04-29 16:24:04', '2025-12-17 19:47:28', 'nda9aXVd', '5263775'), + (795, 1372, 'not_attending', '2022-05-03 21:55:15', '2025-12-17 19:47:28', 'nda9aXVd', '5264352'), + (795, 1374, 'attending', '2022-05-01 22:24:28', '2025-12-17 19:47:28', 'nda9aXVd', '5269930'), + (795, 1375, 'attending', '2022-05-05 17:44:34', '2025-12-17 19:47:28', 'nda9aXVd', '5269932'), + (795, 1376, 'maybe', '2022-05-08 02:05:23', '2025-12-17 19:47:28', 'nda9aXVd', '5271446'), + (795, 1377, 'not_attending', '2022-05-08 02:05:35', '2025-12-17 19:47:28', 'nda9aXVd', '5271447'), + (795, 1378, 'not_attending', '2022-05-13 15:50:24', '2025-12-17 19:47:29', 'nda9aXVd', '5271448'), + (795, 1379, 'attending', '2022-05-21 15:30:18', '2025-12-17 19:47:29', 'nda9aXVd', '5271449'), + (795, 1380, 'maybe', '2022-05-13 15:51:04', '2025-12-17 19:47:30', 'nda9aXVd', '5271450'), + (795, 1381, 'not_attending', '2022-05-05 17:45:17', '2025-12-17 19:47:28', 'nda9aXVd', '5271453'), + (795, 1382, 'maybe', '2022-05-05 17:45:55', '2025-12-17 19:47:28', 'nda9aXVd', '5276350'), + (795, 1383, 'maybe', '2022-05-13 21:56:11', '2025-12-17 19:47:28', 'nda9aXVd', '5276469'), + (795, 1384, 'maybe', '2022-05-05 17:45:20', '2025-12-17 19:47:28', 'nda9aXVd', '5277078'), + (795, 1385, 'maybe', '2022-05-08 02:05:16', '2025-12-17 19:47:28', 'nda9aXVd', '5277822'), + (795, 1386, 'not_attending', '2022-05-05 17:45:13', '2025-12-17 19:47:28', 'nda9aXVd', '5278159'), + (795, 1388, 'not_attending', '2022-05-05 17:45:15', '2025-12-17 19:47:28', 'nda9aXVd', '5278201'), + (795, 1389, 'not_attending', '2022-05-05 17:45:34', '2025-12-17 19:47:28', 'nda9aXVd', '5278202'), + (795, 1393, 'not_attending', '2022-06-10 18:34:10', '2025-12-17 19:47:30', 'nda9aXVd', '5280603'), + (795, 1394, 'not_attending', '2022-05-27 11:07:23', '2025-12-17 19:47:30', 'nda9aXVd', '5280667'), + (795, 1396, 'not_attending', '2022-05-13 15:50:31', '2025-12-17 19:47:28', 'nda9aXVd', '5281103'), + (795, 1397, 'maybe', '2022-05-13 15:50:56', '2025-12-17 19:47:29', 'nda9aXVd', '5281104'), + (795, 1399, 'not_attending', '2022-05-08 02:05:20', '2025-12-17 19:47:28', 'nda9aXVd', '5281796'), + (795, 1400, 'not_attending', '2022-05-13 15:50:48', '2025-12-17 19:47:29', 'nda9aXVd', '5284864'), + (795, 1401, 'maybe', '2022-05-13 15:11:37', '2025-12-17 19:47:29', 'nda9aXVd', '5286295'), + (795, 1402, 'not_attending', '2022-05-27 16:48:38', '2025-12-17 19:47:30', 'nda9aXVd', '5287977'), + (795, 1403, 'attending', '2022-05-19 21:44:21', '2025-12-17 19:47:29', 'nda9aXVd', '5288052'), + (795, 1404, 'not_attending', '2022-05-13 15:11:45', '2025-12-17 19:47:29', 'nda9aXVd', '5288114'), + (795, 1405, 'not_attending', '2022-05-13 15:11:49', '2025-12-17 19:47:29', 'nda9aXVd', '5288115'), + (795, 1406, 'maybe', '2022-05-15 18:17:13', '2025-12-17 19:47:29', 'nda9aXVd', '5288619'), + (795, 1407, 'attending', '2022-05-21 22:28:01', '2025-12-17 19:47:30', 'nda9aXVd', '5363695'), + (795, 1408, 'maybe', '2022-05-16 14:24:34', '2025-12-17 19:47:29', 'nda9aXVd', '5365960'), + (795, 1413, 'maybe', '2022-05-19 21:45:17', '2025-12-17 19:47:29', 'nda9aXVd', '5367533'), + (795, 1414, 'maybe', '2022-05-20 22:52:27', '2025-12-17 19:47:29', 'nda9aXVd', '5368445'), + (795, 1415, 'attending', '2022-05-31 01:32:58', '2025-12-17 19:47:30', 'nda9aXVd', '5368973'), + (795, 1416, 'not_attending', '2022-05-28 12:09:09', '2025-12-17 19:47:30', 'nda9aXVd', '5369628'), + (795, 1419, 'maybe', '2022-06-03 00:26:13', '2025-12-17 19:47:30', 'nda9aXVd', '5373081'), + (795, 1420, 'not_attending', '2022-05-27 16:49:02', '2025-12-17 19:47:30', 'nda9aXVd', '5374882'), + (795, 1421, 'not_attending', '2022-05-29 04:14:23', '2025-12-17 19:47:30', 'nda9aXVd', '5374885'), + (795, 1422, 'not_attending', '2022-05-28 19:48:21', '2025-12-17 19:47:30', 'nda9aXVd', '5375603'), + (795, 1423, 'not_attending', '2022-06-15 19:29:47', '2025-12-17 19:47:17', 'nda9aXVd', '5375727'), + (795, 1424, 'maybe', '2022-05-25 15:39:02', '2025-12-17 19:47:30', 'nda9aXVd', '5375772'), + (795, 1427, 'not_attending', '2022-05-25 22:54:13', '2025-12-17 19:47:30', 'nda9aXVd', '5376074'), + (795, 1428, 'not_attending', '2022-06-10 18:19:05', '2025-12-17 19:47:30', 'nda9aXVd', '5378247'), + (795, 1429, 'attending', '2022-05-30 20:28:22', '2025-12-17 19:47:30', 'nda9aXVd', '5388761'), + (795, 1430, 'not_attending', '2022-06-05 02:59:14', '2025-12-17 19:47:30', 'nda9aXVd', '5389402'), + (795, 1431, 'attending', '2022-06-07 23:20:23', '2025-12-17 19:47:30', 'nda9aXVd', '5389605'), + (795, 1432, 'attending', '2022-05-31 19:30:30', '2025-12-17 19:47:30', 'nda9aXVd', '5391566'), + (795, 1433, 'attending', '2022-05-31 19:31:07', '2025-12-17 19:47:30', 'nda9aXVd', '5391667'), + (795, 1434, 'not_attending', '2022-06-01 02:53:30', '2025-12-17 19:47:30', 'nda9aXVd', '5393861'), + (795, 1435, 'attending', '2022-05-31 21:51:44', '2025-12-17 19:47:30', 'nda9aXVd', '5394015'), + (795, 1437, 'not_attending', '2022-06-03 00:56:47', '2025-12-17 19:47:30', 'nda9aXVd', '5394493'), + (795, 1438, 'maybe', '2022-06-01 17:37:51', '2025-12-17 19:47:30', 'nda9aXVd', '5395032'), + (795, 1439, 'maybe', '2022-06-06 17:10:37', '2025-12-17 19:47:30', 'nda9aXVd', '5396072'), + (795, 1440, 'not_attending', '2022-06-03 00:26:26', '2025-12-17 19:47:30', 'nda9aXVd', '5396080'), + (795, 1441, 'not_attending', '2022-06-04 20:46:25', '2025-12-17 19:47:30', 'nda9aXVd', '5397171'), + (795, 1442, 'attending', '2022-06-10 18:35:43', '2025-12-17 19:47:17', 'nda9aXVd', '5397265'), + (795, 1444, 'maybe', '2022-06-07 04:14:08', '2025-12-17 19:47:30', 'nda9aXVd', '5397614'), + (795, 1445, 'maybe', '2022-06-10 18:35:49', '2025-12-17 19:47:17', 'nda9aXVd', '5397615'), + (795, 1446, 'not_attending', '2022-06-09 20:45:46', '2025-12-17 19:47:30', 'nda9aXVd', '5399721'), + (795, 1447, 'not_attending', '2022-06-07 13:46:31', '2025-12-17 19:47:30', 'nda9aXVd', '5401089'), + (795, 1448, 'attending', '2022-06-08 00:03:14', '2025-12-17 19:47:30', 'nda9aXVd', '5401479'), + (795, 1449, 'not_attending', '2022-06-10 18:35:19', '2025-12-17 19:47:31', 'nda9aXVd', '5403335'), + (795, 1450, 'not_attending', '2022-06-10 18:34:07', '2025-12-17 19:47:30', 'nda9aXVd', '5403421'), + (795, 1451, 'attending', '2022-06-10 00:42:24', '2025-12-17 19:47:17', 'nda9aXVd', '5403967'), + (795, 1452, 'not_attending', '2022-06-10 18:34:04', '2025-12-17 19:47:30', 'nda9aXVd', '5404197'), + (795, 1453, 'not_attending', '2022-06-10 18:20:28', '2025-12-17 19:47:31', 'nda9aXVd', '5404745'), + (795, 1454, 'not_attending', '2022-06-10 18:35:09', '2025-12-17 19:47:31', 'nda9aXVd', '5404771'), + (795, 1455, 'not_attending', '2022-06-10 18:35:12', '2025-12-17 19:47:31', 'nda9aXVd', '5404772'), + (795, 1456, 'not_attending', '2022-06-10 18:35:27', '2025-12-17 19:47:17', 'nda9aXVd', '5404779'), + (795, 1457, 'not_attending', '2022-06-10 18:23:16', '2025-12-17 19:47:31', 'nda9aXVd', '5404780'), + (795, 1458, 'attending', '2022-06-19 22:28:57', '2025-12-17 19:47:17', 'nda9aXVd', '5404786'), + (795, 1459, 'attending', '2022-06-10 01:17:41', '2025-12-17 19:47:17', 'nda9aXVd', '5404793'), + (795, 1460, 'attending', '2022-06-13 23:01:46', '2025-12-17 19:47:31', 'nda9aXVd', '5404817'), + (795, 1461, 'not_attending', '2022-06-10 18:35:23', '2025-12-17 19:47:31', 'nda9aXVd', '5405149'), + (795, 1462, 'not_attending', '2022-06-13 16:25:53', '2025-12-17 19:47:17', 'nda9aXVd', '5405203'), + (795, 1463, 'attending', '2022-06-10 18:35:20', '2025-12-17 19:47:31', 'nda9aXVd', '5405208'), + (795, 1464, 'maybe', '2022-06-10 22:11:24', '2025-12-17 19:47:30', 'nda9aXVd', '5405212'), + (795, 1466, 'not_attending', '2022-06-13 16:25:48', '2025-12-17 19:47:17', 'nda9aXVd', '5406427'), + (795, 1468, 'attending', '2022-06-16 01:13:42', '2025-12-17 19:47:19', 'nda9aXVd', '5406832'), + (795, 1469, 'not_attending', '2022-06-13 16:26:08', '2025-12-17 19:47:17', 'nda9aXVd', '5406838'), + (795, 1470, 'not_attending', '2022-06-18 18:57:51', '2025-12-17 19:47:17', 'nda9aXVd', '5407053'), + (795, 1471, 'not_attending', '2022-06-16 01:13:13', '2025-12-17 19:47:17', 'nda9aXVd', '5407063'), + (795, 1472, 'not_attending', '2022-06-16 01:13:23', '2025-12-17 19:47:17', 'nda9aXVd', '5407065'), + (795, 1473, 'maybe', '2022-06-13 16:23:25', '2025-12-17 19:47:31', 'nda9aXVd', '5407267'), + (795, 1474, 'not_attending', '2022-06-16 01:13:32', '2025-12-17 19:47:19', 'nda9aXVd', '5408029'), + (795, 1475, 'attending', '2022-06-16 22:59:38', '2025-12-17 19:47:17', 'nda9aXVd', '5408108'), + (795, 1476, 'maybe', '2022-06-16 01:12:32', '2025-12-17 19:47:17', 'nda9aXVd', '5408130'), + (795, 1477, 'attending', '2022-06-22 00:11:36', '2025-12-17 19:47:17', 'nda9aXVd', '5408766'), + (795, 1478, 'attending', '2022-06-24 03:11:21', '2025-12-17 19:47:17', 'nda9aXVd', '5408794'), + (795, 1479, 'not_attending', '2022-06-17 16:45:05', '2025-12-17 19:47:17', 'nda9aXVd', '5410322'), + (795, 1480, 'not_attending', '2022-06-26 22:45:43', '2025-12-17 19:47:19', 'nda9aXVd', '5411699'), + (795, 1481, 'not_attending', '2022-06-20 17:39:19', '2025-12-17 19:47:17', 'nda9aXVd', '5412237'), + (795, 1482, 'attending', '2022-06-23 18:18:49', '2025-12-17 19:47:19', 'nda9aXVd', '5412550'), + (795, 1483, 'not_attending', '2022-06-20 17:40:12', '2025-12-17 19:47:17', 'nda9aXVd', '5414556'), + (795, 1484, 'not_attending', '2022-06-22 23:44:49', '2025-12-17 19:47:17', 'nda9aXVd', '5415046'), + (795, 1485, 'not_attending', '2022-06-23 17:29:17', '2025-12-17 19:47:17', 'nda9aXVd', '5416276'), + (795, 1486, 'not_attending', '2022-06-26 18:51:21', '2025-12-17 19:47:19', 'nda9aXVd', '5416339'), + (795, 1487, 'not_attending', '2022-06-26 18:51:16', '2025-12-17 19:47:19', 'nda9aXVd', '5419006'), + (795, 1488, 'not_attending', '2022-06-26 18:51:51', '2025-12-17 19:47:19', 'nda9aXVd', '5420154'), + (795, 1489, 'not_attending', '2022-06-26 18:51:53', '2025-12-17 19:47:19', 'nda9aXVd', '5420155'), + (795, 1490, 'not_attending', '2022-06-26 18:52:04', '2025-12-17 19:47:19', 'nda9aXVd', '5420156'), + (795, 1491, 'not_attending', '2022-06-26 18:52:09', '2025-12-17 19:47:19', 'nda9aXVd', '5420158'), + (795, 1492, 'not_attending', '2022-06-26 18:52:06', '2025-12-17 19:47:19', 'nda9aXVd', '5420175'), + (795, 1493, 'attending', '2022-06-25 15:59:15', '2025-12-17 19:47:19', 'nda9aXVd', '5420218'), + (795, 1494, 'not_attending', '2022-06-26 18:52:12', '2025-12-17 19:47:19', 'nda9aXVd', '5421626'), + (795, 1495, 'not_attending', '2022-06-26 18:50:11', '2025-12-17 19:47:19', 'nda9aXVd', '5422086'), + (795, 1496, 'not_attending', '2022-06-26 18:51:18', '2025-12-17 19:47:19', 'nda9aXVd', '5422404'), + (795, 1497, 'not_attending', '2022-06-26 18:51:22', '2025-12-17 19:47:19', 'nda9aXVd', '5422405'), + (795, 1498, 'not_attending', '2022-06-28 15:24:55', '2025-12-17 19:47:19', 'nda9aXVd', '5422406'), + (795, 1499, 'not_attending', '2022-06-26 18:51:31', '2025-12-17 19:47:19', 'nda9aXVd', '5422407'), + (795, 1501, 'not_attending', '2022-06-28 15:24:28', '2025-12-17 19:47:19', 'nda9aXVd', '5424546'), + (795, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nda9aXVd', '5424565'), + (795, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nda9aXVd', '5426882'), + (795, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'nda9aXVd', '5427083'), + (795, 1513, 'not_attending', '2022-07-10 14:43:29', '2025-12-17 19:47:20', 'nda9aXVd', '5441125'), + (795, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nda9aXVd', '5441126'), + (795, 1515, 'attending', '2022-08-03 03:01:45', '2025-12-17 19:47:21', 'nda9aXVd', '5441128'), + (795, 1516, 'attending', '2022-08-11 00:46:10', '2025-12-17 19:47:23', 'nda9aXVd', '5441129'), + (795, 1517, 'attending', '2022-08-26 04:10:52', '2025-12-17 19:47:23', 'nda9aXVd', '5441130'), + (795, 1518, 'attending', '2022-08-22 15:14:43', '2025-12-17 19:47:24', 'nda9aXVd', '5441131'), + (795, 1519, 'attending', '2022-08-22 15:15:04', '2025-12-17 19:47:24', 'nda9aXVd', '5441132'), + (795, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'nda9aXVd', '5446643'), + (795, 1530, 'not_attending', '2022-07-23 19:22:54', '2025-12-17 19:47:20', 'nda9aXVd', '5448612'), + (795, 1532, 'maybe', '2022-07-23 19:23:29', '2025-12-17 19:47:20', 'nda9aXVd', '5448757'), + (795, 1533, 'attending', '2022-07-23 19:23:24', '2025-12-17 19:47:21', 'nda9aXVd', '5448758'), + (795, 1534, 'not_attending', '2022-08-03 03:01:43', '2025-12-17 19:47:21', 'nda9aXVd', '5448759'), + (795, 1538, 'maybe', '2022-07-29 22:04:18', '2025-12-17 19:47:21', 'nda9aXVd', '5449565'), + (795, 1539, 'not_attending', '2022-07-23 19:23:10', '2025-12-17 19:47:21', 'nda9aXVd', '5449671'), + (795, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nda9aXVd', '5453325'), + (795, 1541, 'not_attending', '2022-07-23 19:22:46', '2025-12-17 19:47:20', 'nda9aXVd', '5453542'), + (795, 1542, 'not_attending', '2022-07-23 19:22:44', '2025-12-17 19:47:20', 'nda9aXVd', '5454064'), + (795, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nda9aXVd', '5454516'), + (795, 1544, 'attending', '2022-09-06 00:37:06', '2025-12-17 19:47:11', 'nda9aXVd', '5454517'), + (795, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nda9aXVd', '5454605'), + (795, 1546, 'maybe', '2022-07-23 19:22:52', '2025-12-17 19:47:20', 'nda9aXVd', '5454607'), + (795, 1547, 'not_attending', '2022-07-23 19:22:50', '2025-12-17 19:47:20', 'nda9aXVd', '5454608'), + (795, 1549, 'not_attending', '2022-07-23 19:22:40', '2025-12-17 19:47:20', 'nda9aXVd', '5454789'), + (795, 1550, 'attending', '2022-07-23 19:23:00', '2025-12-17 19:47:20', 'nda9aXVd', '5454803'), + (795, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nda9aXVd', '5455037'), + (795, 1552, 'not_attending', '2022-07-23 19:23:08', '2025-12-17 19:47:20', 'nda9aXVd', '5455149'), + (795, 1556, 'not_attending', '2022-07-23 19:23:30', '2025-12-17 19:47:20', 'nda9aXVd', '5457734'), + (795, 1557, 'not_attending', '2022-07-29 22:04:21', '2025-12-17 19:47:21', 'nda9aXVd', '5458729'), + (795, 1558, 'maybe', '2022-08-22 15:15:09', '2025-12-17 19:47:10', 'nda9aXVd', '5458730'), + (795, 1559, 'maybe', '2022-09-06 00:37:27', '2025-12-17 19:47:11', 'nda9aXVd', '5458731'), + (795, 1560, 'maybe', '2022-08-07 02:46:39', '2025-12-17 19:47:23', 'nda9aXVd', '5458768'), + (795, 1561, 'maybe', '2022-08-07 02:46:31', '2025-12-17 19:47:22', 'nda9aXVd', '5461278'), + (795, 1562, 'not_attending', '2022-08-07 02:46:41', '2025-12-17 19:47:22', 'nda9aXVd', '5469480'), + (795, 1563, 'not_attending', '2022-07-29 22:04:14', '2025-12-17 19:47:21', 'nda9aXVd', '5469889'), + (795, 1564, 'not_attending', '2022-07-29 22:04:16', '2025-12-17 19:47:21', 'nda9aXVd', '5469890'), + (795, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'nda9aXVd', '5471073'), + (795, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nda9aXVd', '5474663'), + (795, 1567, 'not_attending', '2022-08-03 03:09:26', '2025-12-17 19:47:21', 'nda9aXVd', '5477629'), + (795, 1568, 'not_attending', '2022-08-01 16:01:57', '2025-12-17 19:47:21', 'nda9aXVd', '5480628'), + (795, 1569, 'maybe', '2022-08-01 16:02:04', '2025-12-17 19:47:21', 'nda9aXVd', '5481507'), + (795, 1570, 'not_attending', '2022-08-03 03:09:18', '2025-12-17 19:47:21', 'nda9aXVd', '5481830'), + (795, 1571, 'attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nda9aXVd', '5482022'), + (795, 1572, 'not_attending', '2022-08-03 03:10:37', '2025-12-17 19:47:22', 'nda9aXVd', '5482078'), + (795, 1573, 'not_attending', '2022-08-07 02:45:34', '2025-12-17 19:47:22', 'nda9aXVd', '5482152'), + (795, 1574, 'not_attending', '2022-08-07 02:45:42', '2025-12-17 19:47:22', 'nda9aXVd', '5482153'), + (795, 1575, 'maybe', '2022-08-07 02:46:46', '2025-12-17 19:47:23', 'nda9aXVd', '5482250'), + (795, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'nda9aXVd', '5482793'), + (795, 1578, 'not_attending', '2022-08-03 03:09:06', '2025-12-17 19:47:21', 'nda9aXVd', '5483073'), + (795, 1579, 'not_attending', '2022-08-04 03:08:59', '2025-12-17 19:47:22', 'nda9aXVd', '5486019'), + (795, 1580, 'maybe', '2022-08-07 02:45:45', '2025-12-17 19:47:22', 'nda9aXVd', '5488912'), + (795, 1581, 'attending', '2022-08-07 02:45:48', '2025-12-17 19:47:22', 'nda9aXVd', '5490302'), + (795, 1582, 'maybe', '2022-08-11 00:46:08', '2025-12-17 19:47:23', 'nda9aXVd', '5492001'), + (795, 1583, 'not_attending', '2022-08-07 23:00:04', '2025-12-17 19:47:22', 'nda9aXVd', '5492002'), + (795, 1584, 'maybe', '2022-08-26 04:10:54', '2025-12-17 19:47:23', 'nda9aXVd', '5492004'), + (795, 1586, 'not_attending', '2022-08-09 06:39:58', '2025-12-17 19:47:23', 'nda9aXVd', '5492019'), + (795, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nda9aXVd', '5492192'), + (795, 1588, 'maybe', '2022-08-09 06:38:59', '2025-12-17 19:47:22', 'nda9aXVd', '5493139'), + (795, 1589, 'not_attending', '2022-08-17 17:00:14', '2025-12-17 19:47:23', 'nda9aXVd', '5493159'), + (795, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nda9aXVd', '5493200'), + (795, 1591, 'not_attending', '2022-08-14 00:35:48', '2025-12-17 19:47:22', 'nda9aXVd', '5493764'), + (795, 1592, 'not_attending', '2022-08-09 06:38:20', '2025-12-17 19:47:22', 'nda9aXVd', '5494031'), + (795, 1593, 'maybe', '2022-08-11 00:46:26', '2025-12-17 19:47:22', 'nda9aXVd', '5494043'), + (795, 1594, 'attending', '2022-08-09 17:08:45', '2025-12-17 19:47:22', 'nda9aXVd', '5495523'), + (795, 1595, 'not_attending', '2022-08-10 15:55:10', '2025-12-17 19:47:22', 'nda9aXVd', '5495736'), + (795, 1597, 'not_attending', '2022-08-14 00:35:51', '2025-12-17 19:47:22', 'nda9aXVd', '5496566'), + (795, 1598, 'not_attending', '2022-08-14 00:35:56', '2025-12-17 19:47:22', 'nda9aXVd', '5496567'), + (795, 1599, 'maybe', '2022-08-22 15:13:49', '2025-12-17 19:47:23', 'nda9aXVd', '5496568'), + (795, 1600, 'not_attending', '2022-08-22 15:14:27', '2025-12-17 19:47:24', 'nda9aXVd', '5496569'), + (795, 1601, 'not_attending', '2022-08-14 00:35:53', '2025-12-17 19:47:22', 'nda9aXVd', '5496589'), + (795, 1602, 'not_attending', '2022-08-11 16:40:52', '2025-12-17 19:47:22', 'nda9aXVd', '5497383'), + (795, 1603, 'maybe', '2022-08-12 03:12:43', '2025-12-17 19:47:23', 'nda9aXVd', '5497895'), + (795, 1604, 'not_attending', '2022-08-17 16:59:10', '2025-12-17 19:47:22', 'nda9aXVd', '5501504'), + (795, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nda9aXVd', '5502188'), + (795, 1606, 'not_attending', '2022-08-22 15:14:17', '2025-12-17 19:47:23', 'nda9aXVd', '5504585'), + (795, 1607, 'not_attending', '2022-08-17 17:00:16', '2025-12-17 19:47:23', 'nda9aXVd', '5504589'), + (795, 1608, 'maybe', '2022-08-22 15:14:34', '2025-12-17 19:47:24', 'nda9aXVd', '5505059'), + (795, 1609, 'attending', '2022-08-22 15:13:36', '2025-12-17 19:47:23', 'nda9aXVd', '5506590'), + (795, 1610, 'not_attending', '2022-08-22 15:13:53', '2025-12-17 19:47:23', 'nda9aXVd', '5506595'), + (795, 1611, 'maybe', '2022-08-22 15:14:55', '2025-12-17 19:47:24', 'nda9aXVd', '5507652'), + (795, 1612, 'not_attending', '2022-09-06 00:37:42', '2025-12-17 19:47:12', 'nda9aXVd', '5507653'), + (795, 1613, 'not_attending', '2022-10-10 00:52:57', '2025-12-17 19:47:14', 'nda9aXVd', '5507654'), + (795, 1614, 'maybe', '2022-08-22 15:13:18', '2025-12-17 19:47:23', 'nda9aXVd', '5508371'), + (795, 1615, 'maybe', '2022-08-22 15:14:20', '2025-12-17 19:47:23', 'nda9aXVd', '5509055'), + (795, 1616, 'not_attending', '2022-08-22 15:13:02', '2025-12-17 19:47:23', 'nda9aXVd', '5509478'), + (795, 1617, 'not_attending', '2022-08-22 15:14:59', '2025-12-17 19:47:24', 'nda9aXVd', '5512003'), + (795, 1618, 'maybe', '2022-08-26 04:11:06', '2025-12-17 19:47:23', 'nda9aXVd', '5512005'), + (795, 1619, 'attending', '2022-08-23 16:02:40', '2025-12-17 19:47:23', 'nda9aXVd', '5512862'), + (795, 1620, 'not_attending', '2022-08-23 16:02:52', '2025-12-17 19:47:23', 'nda9aXVd', '5513046'), + (795, 1621, 'not_attending', '2022-08-23 16:02:16', '2025-12-17 19:47:23', 'nda9aXVd', '5513531'), + (795, 1622, 'not_attending', '2022-08-23 16:02:46', '2025-12-17 19:47:23', 'nda9aXVd', '5513677'), + (795, 1623, 'attending', '2022-08-23 16:03:03', '2025-12-17 19:47:23', 'nda9aXVd', '5513678'), + (795, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nda9aXVd', '5513985'), + (795, 1625, 'not_attending', '2022-08-26 15:17:42', '2025-12-17 19:47:23', 'nda9aXVd', '5519736'), + (795, 1626, 'not_attending', '2022-08-26 04:10:24', '2025-12-17 19:47:11', 'nda9aXVd', '5519981'), + (795, 1627, 'not_attending', '2022-09-01 15:02:35', '2025-12-17 19:47:24', 'nda9aXVd', '5521552'), + (795, 1628, 'attending', '2022-08-28 18:12:16', '2025-12-17 19:47:23', 'nda9aXVd', '5522500'), + (795, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nda9aXVd', '5522550'), + (795, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nda9aXVd', '5534683'), + (795, 1631, 'attending', '2022-08-27 22:08:18', '2025-12-17 19:47:23', 'nda9aXVd', '5534684'), + (795, 1633, 'not_attending', '2022-09-04 15:48:28', '2025-12-17 19:47:24', 'nda9aXVd', '5536575'), + (795, 1634, 'not_attending', '2022-08-29 15:21:07', '2025-12-17 19:47:23', 'nda9aXVd', '5536950'), + (795, 1635, 'not_attending', '2022-09-06 00:36:34', '2025-12-17 19:47:10', 'nda9aXVd', '5537735'), + (795, 1636, 'attending', '2022-09-04 15:28:33', '2025-12-17 19:47:24', 'nda9aXVd', '5538454'), + (795, 1637, 'not_attending', '2022-09-04 15:29:00', '2025-12-17 19:47:24', 'nda9aXVd', '5539591'), + (795, 1638, 'not_attending', '2022-09-01 15:02:33', '2025-12-17 19:47:24', 'nda9aXVd', '5540402'), + (795, 1639, 'not_attending', '2022-09-01 15:02:44', '2025-12-17 19:47:24', 'nda9aXVd', '5540403'), + (795, 1640, 'not_attending', '2022-09-06 00:36:28', '2025-12-17 19:47:10', 'nda9aXVd', '5540859'), + (795, 1641, 'maybe', '2022-09-01 15:02:04', '2025-12-17 19:47:24', 'nda9aXVd', '5544226'), + (795, 1642, 'maybe', '2022-09-04 15:49:12', '2025-12-17 19:47:24', 'nda9aXVd', '5544227'), + (795, 1643, 'attending', '2022-09-05 15:07:23', '2025-12-17 19:47:11', 'nda9aXVd', '5545856'), + (795, 1644, 'not_attending', '2022-09-06 00:36:48', '2025-12-17 19:47:11', 'nda9aXVd', '5545857'), + (795, 1645, 'maybe', '2022-09-04 15:49:23', '2025-12-17 19:47:25', 'nda9aXVd', '5546559'), + (795, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nda9aXVd', '5546619'), + (795, 1647, 'not_attending', '2022-09-06 00:36:42', '2025-12-17 19:47:11', 'nda9aXVd', '5548660'), + (795, 1648, 'not_attending', '2022-09-04 15:29:04', '2025-12-17 19:47:24', 'nda9aXVd', '5548974'), + (795, 1650, 'not_attending', '2022-09-04 15:48:15', '2025-12-17 19:47:24', 'nda9aXVd', '5549611'), + (795, 1651, 'not_attending', '2022-09-04 15:28:48', '2025-12-17 19:47:24', 'nda9aXVd', '5551425'), + (795, 1652, 'not_attending', '2022-09-06 00:35:50', '2025-12-17 19:47:24', 'nda9aXVd', '5552671'), + (795, 1653, 'not_attending', '2022-09-06 00:37:00', '2025-12-17 19:47:11', 'nda9aXVd', '5554400'), + (795, 1654, 'not_attending', '2022-09-06 00:36:08', '2025-12-17 19:47:25', 'nda9aXVd', '5554471'), + (795, 1655, 'not_attending', '2022-09-05 18:15:44', '2025-12-17 19:47:11', 'nda9aXVd', '5554482'), + (795, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'nda9aXVd', '5555245'), + (795, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nda9aXVd', '5557747'), + (795, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nda9aXVd', '5560255'), + (795, 1663, 'not_attending', '2022-09-10 16:01:15', '2025-12-17 19:47:24', 'nda9aXVd', '5562345'), + (795, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nda9aXVd', '5562906'), + (795, 1665, 'maybe', '2022-09-11 15:41:45', '2025-12-17 19:47:25', 'nda9aXVd', '5563133'), + (795, 1666, 'not_attending', '2022-09-26 19:39:49', '2025-12-17 19:47:11', 'nda9aXVd', '5563208'), + (795, 1667, 'not_attending', '2022-09-18 17:34:58', '2025-12-17 19:47:11', 'nda9aXVd', '5563221'), + (795, 1668, 'not_attending', '2022-09-26 19:40:01', '2025-12-17 19:47:12', 'nda9aXVd', '5563222'), + (795, 1669, 'not_attending', '2022-09-13 11:00:11', '2025-12-17 19:47:10', 'nda9aXVd', '5564033'), + (795, 1670, 'maybe', '2022-09-17 16:50:46', '2025-12-17 19:47:11', 'nda9aXVd', '5575076'), + (795, 1672, 'maybe', '2022-09-17 16:49:32', '2025-12-17 19:47:11', 'nda9aXVd', '5586237'), + (795, 1673, 'not_attending', '2022-09-26 19:39:54', '2025-12-17 19:47:11', 'nda9aXVd', '5592454'), + (795, 1674, 'not_attending', '2022-09-26 19:40:03', '2025-12-17 19:47:12', 'nda9aXVd', '5593112'), + (795, 1675, 'attending', '2022-09-18 21:42:58', '2025-12-17 19:47:11', 'nda9aXVd', '5593342'), + (795, 1676, 'not_attending', '2022-09-22 21:18:49', '2025-12-17 19:47:11', 'nda9aXVd', '5596181'), + (795, 1677, 'not_attending', '2022-09-21 22:52:12', '2025-12-17 19:47:11', 'nda9aXVd', '5600604'), + (795, 1679, 'not_attending', '2022-10-01 16:16:37', '2025-12-17 19:47:12', 'nda9aXVd', '5601099'), + (795, 1680, 'not_attending', '2022-09-26 19:39:47', '2025-12-17 19:47:11', 'nda9aXVd', '5601577'), + (795, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nda9aXVd', '5605544'), + (795, 1698, 'attending', '2022-09-26 19:39:30', '2025-12-17 19:47:11', 'nda9aXVd', '5606366'), + (795, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'nda9aXVd', '5606737'), + (795, 1700, 'not_attending', '2022-09-26 19:39:58', '2025-12-17 19:47:12', 'nda9aXVd', '5606814'), + (795, 1701, 'not_attending', '2022-09-28 11:39:04', '2025-12-17 19:47:11', 'nda9aXVd', '5607857'), + (795, 1702, 'not_attending', '2022-10-01 16:17:06', '2025-12-17 19:47:12', 'nda9aXVd', '5609173'), + (795, 1704, 'not_attending', '2022-10-03 02:45:46', '2025-12-17 19:47:12', 'nda9aXVd', '5610508'), + (795, 1705, 'not_attending', '2022-10-01 16:16:25', '2025-12-17 19:47:12', 'nda9aXVd', '5612209'), + (795, 1707, 'not_attending', '2022-10-01 16:17:16', '2025-12-17 19:47:12', 'nda9aXVd', '5613104'), + (795, 1708, 'maybe', '2022-10-01 16:17:00', '2025-12-17 19:47:12', 'nda9aXVd', '5617648'), + (795, 1709, 'not_attending', '2022-10-10 00:52:27', '2025-12-17 19:47:13', 'nda9aXVd', '5619533'), + (795, 1710, 'not_attending', '2022-10-03 02:45:36', '2025-12-17 19:47:12', 'nda9aXVd', '5621822'), + (795, 1711, 'not_attending', '2022-10-03 02:45:44', '2025-12-17 19:47:12', 'nda9aXVd', '5621883'), + (795, 1712, 'not_attending', '2022-10-03 02:46:18', '2025-12-17 19:47:12', 'nda9aXVd', '5622073'), + (795, 1713, 'not_attending', '2022-10-03 02:46:26', '2025-12-17 19:47:13', 'nda9aXVd', '5622108'), + (795, 1714, 'not_attending', '2022-10-10 00:52:39', '2025-12-17 19:47:14', 'nda9aXVd', '5622347'), + (795, 1715, 'not_attending', '2022-10-03 02:45:56', '2025-12-17 19:47:12', 'nda9aXVd', '5622411'), + (795, 1716, 'maybe', '2022-10-03 02:46:01', '2025-12-17 19:47:12', 'nda9aXVd', '5622429'), + (795, 1717, 'not_attending', '2022-10-03 02:46:30', '2025-12-17 19:47:13', 'nda9aXVd', '5622842'), + (795, 1718, 'not_attending', '2022-10-10 00:51:56', '2025-12-17 19:47:12', 'nda9aXVd', '5630907'), + (795, 1719, 'not_attending', '2022-10-08 22:20:51', '2025-12-17 19:47:12', 'nda9aXVd', '5630958'), + (795, 1720, 'attending', '2022-10-10 00:50:52', '2025-12-17 19:47:12', 'nda9aXVd', '5630959'), + (795, 1721, 'not_attending', '2022-10-10 00:52:22', '2025-12-17 19:47:13', 'nda9aXVd', '5630960'), + (795, 1722, 'not_attending', '2022-10-10 00:52:48', '2025-12-17 19:47:14', 'nda9aXVd', '5630961'), + (795, 1723, 'maybe', '2022-10-10 00:53:05', '2025-12-17 19:47:15', 'nda9aXVd', '5630962'), + (795, 1724, 'attending', '2022-10-31 22:52:10', '2025-12-17 19:47:15', 'nda9aXVd', '5630966'), + (795, 1725, 'not_attending', '2022-11-12 19:21:45', '2025-12-17 19:47:16', 'nda9aXVd', '5630967'), + (795, 1726, 'not_attending', '2022-11-20 22:16:22', '2025-12-17 19:47:16', 'nda9aXVd', '5630968'), + (795, 1727, 'attending', '2022-11-12 19:23:35', '2025-12-17 19:47:16', 'nda9aXVd', '5630969'), + (795, 1728, 'not_attending', '2022-12-06 15:00:38', '2025-12-17 19:47:17', 'nda9aXVd', '5630970'), + (795, 1730, 'not_attending', '2022-10-10 00:50:23', '2025-12-17 19:47:12', 'nda9aXVd', '5634666'), + (795, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nda9aXVd', '5635406'), + (795, 1733, 'not_attending', '2022-10-10 00:50:38', '2025-12-17 19:47:12', 'nda9aXVd', '5635411'), + (795, 1736, 'not_attending', '2022-10-10 00:53:01', '2025-12-17 19:47:15', 'nda9aXVd', '5638456'), + (795, 1737, 'maybe', '2022-11-29 00:47:53', '2025-12-17 19:47:16', 'nda9aXVd', '5638457'), + (795, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nda9aXVd', '5638765'), + (795, 1739, 'maybe', '2022-10-10 00:52:43', '2025-12-17 19:47:14', 'nda9aXVd', '5640097'), + (795, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'nda9aXVd', '5640843'), + (795, 1741, 'not_attending', '2022-10-10 00:50:31', '2025-12-17 19:47:12', 'nda9aXVd', '5641132'), + (795, 1742, 'not_attending', '2022-10-10 00:52:16', '2025-12-17 19:47:13', 'nda9aXVd', '5641245'), + (795, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nda9aXVd', '5641521'), + (795, 1744, 'not_attending', '2022-11-21 16:34:38', '2025-12-17 19:47:16', 'nda9aXVd', '5642818'), + (795, 1745, 'not_attending', '2022-10-15 18:29:12', '2025-12-17 19:47:12', 'nda9aXVd', '5643088'), + (795, 1747, 'not_attending', '2022-10-21 15:23:12', '2025-12-17 19:47:14', 'nda9aXVd', '5648009'), + (795, 1750, 'maybe', '2022-10-25 01:59:53', '2025-12-17 19:47:15', 'nda9aXVd', '5652365'), + (795, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nda9aXVd', '5652395'), + (795, 1752, 'not_attending', '2022-10-15 18:29:18', '2025-12-17 19:47:12', 'nda9aXVd', '5653503'), + (795, 1753, 'not_attending', '2022-10-21 15:22:53', '2025-12-17 19:47:13', 'nda9aXVd', '5656228'), + (795, 1756, 'not_attending', '2022-10-21 15:23:08', '2025-12-17 19:47:13', 'nda9aXVd', '5663338'), + (795, 1757, 'not_attending', '2022-10-25 01:59:49', '2025-12-17 19:47:15', 'nda9aXVd', '5668974'), + (795, 1758, 'not_attending', '2022-10-21 15:22:55', '2025-12-17 19:47:13', 'nda9aXVd', '5668976'), + (795, 1759, 'not_attending', '2022-10-21 15:23:02', '2025-12-17 19:47:13', 'nda9aXVd', '5669097'), + (795, 1761, 'maybe', '2022-11-12 19:21:17', '2025-12-17 19:47:16', 'nda9aXVd', '5670434'), + (795, 1762, 'not_attending', '2022-11-12 19:23:22', '2025-12-17 19:47:16', 'nda9aXVd', '5670445'), + (795, 1763, 'attending', '2022-10-31 22:51:57', '2025-12-17 19:47:15', 'nda9aXVd', '5670803'), + (795, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nda9aXVd', '5671637'), + (795, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nda9aXVd', '5672329'), + (795, 1766, 'maybe', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nda9aXVd', '5674057'), + (795, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nda9aXVd', '5674060'), + (795, 1768, 'maybe', '2022-11-12 19:21:47', '2025-12-17 19:47:16', 'nda9aXVd', '5674062'), + (795, 1769, 'not_attending', '2022-10-31 22:51:19', '2025-12-17 19:47:15', 'nda9aXVd', '5676351'), + (795, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nda9aXVd', '5677461'), + (795, 1773, 'not_attending', '2022-10-30 00:18:13', '2025-12-17 19:47:14', 'nda9aXVd', '5677707'), + (795, 1774, 'not_attending', '2022-10-31 22:51:13', '2025-12-17 19:47:15', 'nda9aXVd', '5677843'), + (795, 1776, 'maybe', '2022-10-31 22:51:53', '2025-12-17 19:47:15', 'nda9aXVd', '5691067'), + (795, 1777, 'not_attending', '2022-10-31 22:51:47', '2025-12-17 19:47:15', 'nda9aXVd', '5693021'), + (795, 1778, 'not_attending', '2022-10-31 22:51:04', '2025-12-17 19:47:15', 'nda9aXVd', '5694251'), + (795, 1779, 'maybe', '2022-10-31 22:51:40', '2025-12-17 19:47:15', 'nda9aXVd', '5694252'), + (795, 1780, 'not_attending', '2022-11-07 13:15:53', '2025-12-17 19:47:15', 'nda9aXVd', '5696082'), + (795, 1781, 'not_attending', '2022-11-02 23:00:21', '2025-12-17 19:47:15', 'nda9aXVd', '5696178'), + (795, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nda9aXVd', '5698046'), + (795, 1783, 'not_attending', '2022-11-12 19:21:13', '2025-12-17 19:47:16', 'nda9aXVd', '5698621'), + (795, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'nda9aXVd', '5699760'), + (795, 1785, 'not_attending', '2022-11-12 19:20:53', '2025-12-17 19:47:15', 'nda9aXVd', '5702414'), + (795, 1786, 'not_attending', '2022-11-07 13:16:16', '2025-12-17 19:47:15', 'nda9aXVd', '5727232'), + (795, 1787, 'not_attending', '2022-11-12 19:21:02', '2025-12-17 19:47:16', 'nda9aXVd', '5727234'), + (795, 1788, 'attending', '2022-11-06 23:51:12', '2025-12-17 19:47:16', 'nda9aXVd', '5727236'), + (795, 1789, 'attending', '2022-11-07 00:35:05', '2025-12-17 19:47:15', 'nda9aXVd', '5727274'), + (795, 1790, 'not_attending', '2022-11-07 13:16:18', '2025-12-17 19:47:15', 'nda9aXVd', '5727424'), + (795, 1792, 'not_attending', '2022-11-12 01:37:40', '2025-12-17 19:47:15', 'nda9aXVd', '5728512'), + (795, 1793, 'not_attending', '2022-11-12 19:22:02', '2025-12-17 19:47:16', 'nda9aXVd', '5736365'), + (795, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nda9aXVd', '5741601'), + (795, 1795, 'not_attending', '2022-11-17 01:04:09', '2025-12-17 19:47:16', 'nda9aXVd', '5754366'), + (795, 1796, 'not_attending', '2022-11-21 16:34:14', '2025-12-17 19:47:16', 'nda9aXVd', '5756755'), + (795, 1797, 'not_attending', '2022-11-29 00:48:36', '2025-12-17 19:47:17', 'nda9aXVd', '5757486'), + (795, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nda9aXVd', '5763458'), + (795, 1799, 'not_attending', '2022-11-20 22:16:25', '2025-12-17 19:47:16', 'nda9aXVd', '5764666'), + (795, 1801, 'maybe', '2022-11-29 00:48:17', '2025-12-17 19:47:16', 'nda9aXVd', '5764668'), + (795, 1802, 'not_attending', '2022-12-06 15:00:33', '2025-12-17 19:47:17', 'nda9aXVd', '5764669'), + (795, 1803, 'maybe', '2022-12-28 01:02:03', '2025-12-17 19:47:05', 'nda9aXVd', '5764673'), + (795, 1804, 'maybe', '2023-01-21 18:04:23', '2025-12-17 19:47:06', 'nda9aXVd', '5764674'), + (795, 1805, 'not_attending', '2023-02-03 20:06:04', '2025-12-17 19:47:06', 'nda9aXVd', '5764675'), + (795, 1806, 'maybe', '2023-01-08 22:19:27', '2025-12-17 19:47:05', 'nda9aXVd', '5764676'), + (795, 1807, 'maybe', '2023-01-08 22:19:25', '2025-12-17 19:47:05', 'nda9aXVd', '5764677'), + (795, 1808, 'not_attending', '2023-02-26 02:54:35', '2025-12-17 19:47:08', 'nda9aXVd', '5764678'), + (795, 1809, 'not_attending', '2023-04-15 11:41:22', '2025-12-17 19:46:59', 'nda9aXVd', '5764679'), + (795, 1810, 'not_attending', '2023-04-18 17:22:35', '2025-12-17 19:47:00', 'nda9aXVd', '5764680'), + (795, 1811, 'not_attending', '2023-05-04 10:47:26', '2025-12-17 19:47:02', 'nda9aXVd', '5764681'), + (795, 1812, 'not_attending', '2023-02-26 03:02:21', '2025-12-17 19:47:09', 'nda9aXVd', '5764682'), + (795, 1813, 'not_attending', '2023-04-18 17:41:38', '2025-12-17 19:47:01', 'nda9aXVd', '5764683'), + (795, 1814, 'not_attending', '2023-02-17 08:18:14', '2025-12-17 19:47:08', 'nda9aXVd', '5764684'), + (795, 1815, 'not_attending', '2023-02-17 08:17:16', '2025-12-17 19:47:07', 'nda9aXVd', '5764685'), + (795, 1816, 'maybe', '2023-05-05 11:23:12', '2025-12-17 19:47:03', 'nda9aXVd', '5764686'), + (795, 1817, 'maybe', '2023-02-26 03:02:28', '2025-12-17 19:46:57', 'nda9aXVd', '5764687'), + (795, 1818, 'maybe', '2023-02-06 16:38:51', '2025-12-17 19:47:07', 'nda9aXVd', '5764688'), + (795, 1819, 'not_attending', '2023-04-05 16:23:43', '2025-12-17 19:46:58', 'nda9aXVd', '5764689'), + (795, 1820, 'maybe', '2023-04-05 16:25:49', '2025-12-17 19:46:58', 'nda9aXVd', '5764690'), + (795, 1821, 'not_attending', '2023-02-26 02:55:18', '2025-12-17 19:46:56', 'nda9aXVd', '5764691'), + (795, 1822, 'not_attending', '2023-05-05 11:22:53', '2025-12-17 19:47:02', 'nda9aXVd', '5764692'), + (795, 1823, 'not_attending', '2022-11-29 00:48:31', '2025-12-17 19:47:16', 'nda9aXVd', '5768880'), + (795, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nda9aXVd', '5774172'), + (795, 1825, 'not_attending', '2022-11-29 00:48:33', '2025-12-17 19:47:16', 'nda9aXVd', '5776760'), + (795, 1826, 'maybe', '2022-12-08 06:54:22', '2025-12-17 19:47:04', 'nda9aXVd', '5776768'), + (795, 1827, 'not_attending', '2022-11-29 00:47:44', '2025-12-17 19:47:16', 'nda9aXVd', '5776786'), + (795, 1828, 'maybe', '2022-11-29 00:47:55', '2025-12-17 19:47:16', 'nda9aXVd', '5778865'), + (795, 1829, 'maybe', '2022-11-29 00:48:25', '2025-12-17 19:47:16', 'nda9aXVd', '5778867'), + (795, 1830, 'not_attending', '2022-11-29 00:47:45', '2025-12-17 19:47:16', 'nda9aXVd', '5778871'), + (795, 1831, 'not_attending', '2022-12-06 15:00:25', '2025-12-17 19:47:16', 'nda9aXVd', '5813239'), + (795, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nda9aXVd', '5818247'), + (795, 1833, 'not_attending', '2022-12-05 04:49:51', '2025-12-17 19:47:16', 'nda9aXVd', '5819465'), + (795, 1834, 'not_attending', '2022-12-06 15:00:35', '2025-12-17 19:47:17', 'nda9aXVd', '5819470'), + (795, 1835, 'maybe', '2022-12-08 06:54:00', '2025-12-17 19:47:05', 'nda9aXVd', '5819471'), + (795, 1836, 'not_attending', '2022-12-05 16:51:03', '2025-12-17 19:47:16', 'nda9aXVd', '5819484'), + (795, 1837, 'not_attending', '2022-12-06 21:40:03', '2025-12-17 19:47:16', 'nda9aXVd', '5820146'), + (795, 1838, 'not_attending', '2022-12-06 15:00:08', '2025-12-17 19:47:16', 'nda9aXVd', '5821722'), + (795, 1839, 'not_attending', '2022-12-08 06:54:17', '2025-12-17 19:47:04', 'nda9aXVd', '5821920'), + (795, 1840, 'not_attending', '2022-12-06 15:00:29', '2025-12-17 19:47:16', 'nda9aXVd', '5822288'), + (795, 1841, 'maybe', '2022-12-09 04:01:31', '2025-12-17 19:47:05', 'nda9aXVd', '5827665'), + (795, 1842, 'not_attending', '2022-12-09 04:01:11', '2025-12-17 19:47:04', 'nda9aXVd', '5827739'), + (795, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nda9aXVd', '5844306'), + (795, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nda9aXVd', '5850159'), + (795, 1848, 'not_attending', '2022-12-28 01:02:00', '2025-12-17 19:47:05', 'nda9aXVd', '5852466'), + (795, 1849, 'maybe', '2022-12-28 01:01:57', '2025-12-17 19:47:05', 'nda9aXVd', '5852467'), + (795, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nda9aXVd', '5858999'), + (795, 1851, 'not_attending', '2023-01-08 22:19:20', '2025-12-17 19:47:05', 'nda9aXVd', '5869316'), + (795, 1852, 'maybe', '2023-01-09 17:39:00', '2025-12-17 19:47:05', 'nda9aXVd', '5869898'), + (795, 1853, 'maybe', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nda9aXVd', '5871984'), + (795, 1855, 'attending', '2023-01-13 13:37:26', '2025-12-17 19:47:05', 'nda9aXVd', '5873968'), + (795, 1856, 'not_attending', '2023-01-14 21:30:13', '2025-12-17 19:47:05', 'nda9aXVd', '5873970'), + (795, 1857, 'attending', '2023-01-21 18:04:13', '2025-12-17 19:47:05', 'nda9aXVd', '5873973'), + (795, 1858, 'not_attending', '2023-01-14 21:30:11', '2025-12-17 19:47:05', 'nda9aXVd', '5875044'), + (795, 1859, 'maybe', '2023-01-14 21:30:44', '2025-12-17 19:47:05', 'nda9aXVd', '5876234'), + (795, 1860, 'not_attending', '2023-01-14 21:30:30', '2025-12-17 19:47:05', 'nda9aXVd', '5876309'), + (795, 1861, 'not_attending', '2023-01-14 21:30:23', '2025-12-17 19:47:05', 'nda9aXVd', '5876354'), + (795, 1862, 'not_attending', '2023-02-03 20:06:09', '2025-12-17 19:47:06', 'nda9aXVd', '5877254'), + (795, 1863, 'maybe', '2023-01-21 18:04:29', '2025-12-17 19:47:06', 'nda9aXVd', '5877255'), + (795, 1865, 'attending', '2023-01-21 18:04:26', '2025-12-17 19:47:06', 'nda9aXVd', '5879676'), + (795, 1866, 'not_attending', '2023-01-21 18:04:17', '2025-12-17 19:47:05', 'nda9aXVd', '5880939'), + (795, 1867, 'not_attending', '2023-02-03 20:06:16', '2025-12-17 19:47:07', 'nda9aXVd', '5880940'), + (795, 1868, 'not_attending', '2023-02-17 08:18:05', '2025-12-17 19:47:07', 'nda9aXVd', '5880942'), + (795, 1869, 'not_attending', '2023-02-26 02:54:49', '2025-12-17 19:47:09', 'nda9aXVd', '5880943'), + (795, 1873, 'not_attending', '2023-01-21 18:04:05', '2025-12-17 19:47:05', 'nda9aXVd', '5885295'), + (795, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nda9aXVd', '5887890'), + (795, 1875, 'not_attending', '2023-01-24 05:04:00', '2025-12-17 19:47:06', 'nda9aXVd', '5887908'), + (795, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nda9aXVd', '5888598'), + (795, 1877, 'not_attending', '2023-01-23 02:40:19', '2025-12-17 19:47:05', 'nda9aXVd', '5888693'), + (795, 1878, 'not_attending', '2023-02-03 20:06:13', '2025-12-17 19:47:07', 'nda9aXVd', '5893000'), + (795, 1879, 'maybe', '2023-01-24 20:52:56', '2025-12-17 19:47:06', 'nda9aXVd', '5893001'), + (795, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nda9aXVd', '5893260'), + (795, 1881, 'not_attending', '2023-02-05 15:40:09', '2025-12-17 19:47:07', 'nda9aXVd', '5894218'), + (795, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nda9aXVd', '5899826'), + (795, 1885, 'not_attending', '2023-02-17 08:18:12', '2025-12-17 19:47:08', 'nda9aXVd', '5899928'), + (795, 1886, 'maybe', '2023-02-26 02:54:51', '2025-12-17 19:47:09', 'nda9aXVd', '5899930'), + (795, 1889, 'maybe', '2023-02-03 20:06:19', '2025-12-17 19:47:07', 'nda9aXVd', '5900199'), + (795, 1890, 'not_attending', '2023-02-17 08:18:08', '2025-12-17 19:47:08', 'nda9aXVd', '5900200'), + (795, 1891, 'maybe', '2023-03-19 21:12:55', '2025-12-17 19:46:56', 'nda9aXVd', '5900202'), + (795, 1892, 'not_attending', '2023-02-26 03:02:32', '2025-12-17 19:46:56', 'nda9aXVd', '5900203'), + (795, 1894, 'not_attending', '2023-02-03 20:05:49', '2025-12-17 19:47:06', 'nda9aXVd', '5901100'), + (795, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nda9aXVd', '5901108'), + (795, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nda9aXVd', '5901126'), + (795, 1897, 'attending', '2023-02-06 16:38:54', '2025-12-17 19:47:07', 'nda9aXVd', '5901128'), + (795, 1899, 'not_attending', '2023-02-03 20:06:23', '2025-12-17 19:47:07', 'nda9aXVd', '5901323'), + (795, 1900, 'not_attending', '2023-02-03 20:05:54', '2025-12-17 19:47:06', 'nda9aXVd', '5901331'), + (795, 1901, 'not_attending', '2023-02-03 20:06:11', '2025-12-17 19:47:07', 'nda9aXVd', '5901606'), + (795, 1902, 'not_attending', '2023-02-03 20:06:03', '2025-12-17 19:47:06', 'nda9aXVd', '5902254'), + (795, 1904, 'not_attending', '2023-02-03 20:06:21', '2025-12-17 19:47:07', 'nda9aXVd', '5903239'), + (795, 1905, 'not_attending', '2023-02-03 20:06:08', '2025-12-17 19:47:06', 'nda9aXVd', '5904479'), + (795, 1906, 'not_attending', '2023-02-26 02:54:56', '2025-12-17 19:47:09', 'nda9aXVd', '5904523'), + (795, 1909, 'not_attending', '2023-02-06 16:38:21', '2025-12-17 19:47:07', 'nda9aXVd', '5906541'), + (795, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nda9aXVd', '5909655'), + (795, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nda9aXVd', '5910522'), + (795, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nda9aXVd', '5910526'), + (795, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nda9aXVd', '5910528'), + (795, 1920, 'attending', '2023-02-09 21:08:06', '2025-12-17 19:47:07', 'nda9aXVd', '5914091'), + (795, 1921, 'attending', '2023-02-09 21:08:04', '2025-12-17 19:47:08', 'nda9aXVd', '5914092'), + (795, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nda9aXVd', '5916219'), + (795, 1923, 'not_attending', '2023-02-16 22:29:20', '2025-12-17 19:47:07', 'nda9aXVd', '5930436'), + (795, 1924, 'not_attending', '2023-02-17 08:18:01', '2025-12-17 19:47:07', 'nda9aXVd', '5931095'), + (795, 1926, 'not_attending', '2023-02-26 02:54:23', '2025-12-17 19:47:08', 'nda9aXVd', '5932620'), + (795, 1927, 'not_attending', '2023-02-26 03:02:38', '2025-12-17 19:47:10', 'nda9aXVd', '5932621'), + (795, 1930, 'not_attending', '2023-02-25 01:56:45', '2025-12-17 19:47:08', 'nda9aXVd', '5933462'), + (795, 1931, 'not_attending', '2023-02-25 01:56:46', '2025-12-17 19:47:08', 'nda9aXVd', '5933464'), + (795, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nda9aXVd', '5936234'), + (795, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nda9aXVd', '5958351'), + (795, 1936, 'not_attending', '2023-02-26 02:53:23', '2025-12-17 19:47:08', 'nda9aXVd', '5959397'), + (795, 1937, 'not_attending', '2023-02-25 01:56:43', '2025-12-17 19:47:08', 'nda9aXVd', '5959584'), + (795, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nda9aXVd', '5959751'), + (795, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nda9aXVd', '5959755'), + (795, 1940, 'maybe', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nda9aXVd', '5960055'), + (795, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nda9aXVd', '5961684'), + (795, 1942, 'maybe', '2023-02-26 02:54:20', '2025-12-17 19:47:08', 'nda9aXVd', '5962085'), + (795, 1943, 'not_attending', '2023-02-26 03:02:46', '2025-12-17 19:47:10', 'nda9aXVd', '5962091'), + (795, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nda9aXVd', '5962132'), + (795, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nda9aXVd', '5962133'), + (795, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nda9aXVd', '5962134'), + (795, 1947, 'not_attending', '2023-02-26 02:54:39', '2025-12-17 19:47:09', 'nda9aXVd', '5962233'), + (795, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nda9aXVd', '5962317'), + (795, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nda9aXVd', '5962318'), + (795, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nda9aXVd', '5965933'), + (795, 1952, 'not_attending', '2023-03-01 18:25:08', '2025-12-17 19:47:08', 'nda9aXVd', '5965937'), + (795, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nda9aXVd', '5967014'), + (795, 1955, 'maybe', '2023-03-25 13:33:30', '2025-12-17 19:46:57', 'nda9aXVd', '5972529'), + (795, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'nda9aXVd', '5972763'), + (795, 1957, 'maybe', '2023-03-06 06:10:48', '2025-12-17 19:47:10', 'nda9aXVd', '5972815'), + (795, 1958, 'not_attending', '2023-03-06 16:54:05', '2025-12-17 19:47:09', 'nda9aXVd', '5972821'), + (795, 1959, 'maybe', '2023-03-13 04:01:28', '2025-12-17 19:46:57', 'nda9aXVd', '5972829'), + (795, 1960, 'maybe', '2023-03-11 02:42:48', '2025-12-17 19:47:09', 'nda9aXVd', '5973267'), + (795, 1961, 'maybe', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nda9aXVd', '5974016'), + (795, 1963, 'not_attending', '2023-03-11 02:43:03', '2025-12-17 19:47:10', 'nda9aXVd', '5975054'), + (795, 1964, 'not_attending', '2023-03-11 02:42:44', '2025-12-17 19:47:09', 'nda9aXVd', '5977129'), + (795, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nda9aXVd', '5981515'), + (795, 1967, 'not_attending', '2023-03-13 04:00:23', '2025-12-17 19:47:10', 'nda9aXVd', '5985650'), + (795, 1968, 'not_attending', '2023-03-13 04:00:36', '2025-12-17 19:47:10', 'nda9aXVd', '5993515'), + (795, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nda9aXVd', '5993516'), + (795, 1970, 'maybe', '2023-03-19 21:12:36', '2025-12-17 19:46:56', 'nda9aXVd', '5993758'), + (795, 1971, 'attending', '2023-03-13 03:53:06', '2025-12-17 19:46:56', 'nda9aXVd', '5993765'), + (795, 1972, 'maybe', '2023-03-17 01:00:37', '2025-12-17 19:46:56', 'nda9aXVd', '5993776'), + (795, 1973, 'maybe', '2023-03-17 01:02:09', '2025-12-17 19:46:56', 'nda9aXVd', '5993777'), + (795, 1974, 'maybe', '2023-03-25 13:33:32', '2025-12-17 19:46:57', 'nda9aXVd', '5993778'), + (795, 1975, 'not_attending', '2023-03-13 23:08:23', '2025-12-17 19:46:57', 'nda9aXVd', '5995351'), + (795, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nda9aXVd', '5998939'), + (795, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nda9aXVd', '6028191'), + (795, 1980, 'not_attending', '2023-03-25 13:33:25', '2025-12-17 19:46:57', 'nda9aXVd', '6036032'), + (795, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nda9aXVd', '6040066'), + (795, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nda9aXVd', '6042717'), + (795, 1985, 'not_attending', '2023-03-27 11:42:33', '2025-12-17 19:46:57', 'nda9aXVd', '6043041'), + (795, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nda9aXVd', '6044838'), + (795, 1987, 'not_attending', '2023-04-15 11:41:35', '2025-12-17 19:47:00', 'nda9aXVd', '6044839'), + (795, 1989, 'maybe', '2023-05-05 11:23:01', '2025-12-17 19:47:03', 'nda9aXVd', '6044842'), + (795, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'nda9aXVd', '6045684'), + (795, 1991, 'not_attending', '2023-04-05 16:23:46', '2025-12-17 19:46:58', 'nda9aXVd', '6047354'), + (795, 1992, 'not_attending', '2023-04-05 16:23:48', '2025-12-17 19:46:58', 'nda9aXVd', '6048742'), + (795, 1993, 'not_attending', '2023-04-05 16:24:01', '2025-12-17 19:46:58', 'nda9aXVd', '6048955'), + (795, 1994, 'maybe', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nda9aXVd', '6050104'), + (795, 1995, 'not_attending', '2023-04-05 16:24:34', '2025-12-17 19:46:58', 'nda9aXVd', '6050663'), + (795, 1996, 'not_attending', '2023-04-05 16:23:50', '2025-12-17 19:46:58', 'nda9aXVd', '6050667'), + (795, 1997, 'not_attending', '2023-04-05 16:24:38', '2025-12-17 19:46:58', 'nda9aXVd', '6051604'), + (795, 1999, 'maybe', '2023-04-15 11:41:50', '2025-12-17 19:47:00', 'nda9aXVd', '6052057'), + (795, 2000, 'not_attending', '2023-04-05 16:24:40', '2025-12-17 19:46:58', 'nda9aXVd', '6052107'), + (795, 2001, 'not_attending', '2023-04-05 16:24:32', '2025-12-17 19:46:58', 'nda9aXVd', '6052569'), + (795, 2002, 'not_attending', '2023-04-18 17:22:04', '2025-12-17 19:47:01', 'nda9aXVd', '6052605'), + (795, 2003, 'not_attending', '2023-05-05 11:23:08', '2025-12-17 19:47:03', 'nda9aXVd', '6052606'), + (795, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nda9aXVd', '6053195'), + (795, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nda9aXVd', '6053198'), + (795, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nda9aXVd', '6056085'), + (795, 2011, 'attending', '2023-04-08 21:15:45', '2025-12-17 19:46:59', 'nda9aXVd', '6056916'), + (795, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nda9aXVd', '6059290'), + (795, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nda9aXVd', '6060328'), + (795, 2014, 'not_attending', '2023-04-15 11:41:17', '2025-12-17 19:46:59', 'nda9aXVd', '6060337'), + (795, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nda9aXVd', '6061037'), + (795, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nda9aXVd', '6061039'), + (795, 2018, 'not_attending', '2023-04-15 11:41:15', '2025-12-17 19:46:59', 'nda9aXVd', '6061171'), + (795, 2019, 'not_attending', '2023-04-15 11:41:49', '2025-12-17 19:47:00', 'nda9aXVd', '6062934'), + (795, 2021, 'maybe', '2023-04-16 14:33:45', '2025-12-17 19:47:00', 'nda9aXVd', '6066316'), + (795, 2022, 'not_attending', '2023-05-05 11:23:32', '2025-12-17 19:47:03', 'nda9aXVd', '6067245'), + (795, 2023, 'maybe', '2023-04-17 13:12:08', '2025-12-17 19:47:00', 'nda9aXVd', '6067396'), + (795, 2024, 'not_attending', '2023-04-17 13:12:28', '2025-12-17 19:47:00', 'nda9aXVd', '6067437'), + (795, 2025, 'maybe', '2023-04-17 13:12:53', '2025-12-17 19:47:00', 'nda9aXVd', '6067457'), + (795, 2026, 'maybe', '2023-04-18 17:21:59', '2025-12-17 19:47:01', 'nda9aXVd', '6068078'), + (795, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nda9aXVd', '6068094'), + (795, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nda9aXVd', '6068252'), + (795, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nda9aXVd', '6068253'), + (795, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nda9aXVd', '6068254'), + (795, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'nda9aXVd', '6068280'), + (795, 2032, 'not_attending', '2023-05-25 23:05:03', '2025-12-17 19:47:04', 'nda9aXVd', '6068281'), + (795, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nda9aXVd', '6069093'), + (795, 2035, 'not_attending', '2023-05-03 20:00:45', '2025-12-17 19:47:02', 'nda9aXVd', '6070142'), + (795, 2038, 'not_attending', '2023-04-27 16:44:11', '2025-12-17 19:47:01', 'nda9aXVd', '6071944'), + (795, 2040, 'not_attending', '2023-04-27 16:44:16', '2025-12-17 19:47:01', 'nda9aXVd', '6072453'), + (795, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nda9aXVd', '6072528'), + (795, 2042, 'not_attending', '2023-04-27 16:43:55', '2025-12-17 19:47:01', 'nda9aXVd', '6072941'), + (795, 2044, 'maybe', '2023-04-27 16:44:54', '2025-12-17 19:47:03', 'nda9aXVd', '6073678'), + (795, 2045, 'not_attending', '2023-04-27 16:44:00', '2025-12-17 19:47:01', 'nda9aXVd', '6075556'), + (795, 2046, 'maybe', '2023-05-05 11:22:48', '2025-12-17 19:47:02', 'nda9aXVd', '6076020'), + (795, 2047, 'not_attending', '2023-05-05 11:22:35', '2025-12-17 19:47:02', 'nda9aXVd', '6076027'), + (795, 2048, 'not_attending', '2023-05-05 11:22:57', '2025-12-17 19:47:03', 'nda9aXVd', '6076415'), + (795, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nda9aXVd', '6079840'), + (795, 2050, 'maybe', '2023-05-05 11:22:38', '2025-12-17 19:47:02', 'nda9aXVd', '6080489'), + (795, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nda9aXVd', '6083398'), + (795, 2052, 'not_attending', '2023-05-05 11:22:32', '2025-12-17 19:47:02', 'nda9aXVd', '6088220'), + (795, 2054, 'not_attending', '2023-05-10 22:01:36', '2025-12-17 19:47:03', 'nda9aXVd', '6093445'), + (795, 2055, 'not_attending', '2023-05-10 22:01:39', '2025-12-17 19:47:03', 'nda9aXVd', '6093473'), + (795, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nda9aXVd', '6093504'), + (795, 2057, 'not_attending', '2023-05-09 11:34:02', '2025-12-17 19:47:02', 'nda9aXVd', '6093692'), + (795, 2058, 'maybe', '2023-05-09 11:34:06', '2025-12-17 19:47:02', 'nda9aXVd', '6096374'), + (795, 2059, 'maybe', '2023-05-10 22:01:11', '2025-12-17 19:47:02', 'nda9aXVd', '6097361'), + (795, 2060, 'maybe', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nda9aXVd', '6097414'), + (795, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nda9aXVd', '6097442'), + (795, 2062, 'maybe', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nda9aXVd', '6097684'), + (795, 2063, 'maybe', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nda9aXVd', '6098762'), + (795, 2064, 'maybe', '2023-06-24 20:22:32', '2025-12-17 19:46:50', 'nda9aXVd', '6099988'), + (795, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nda9aXVd', '6101361'), + (795, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nda9aXVd', '6101362'), + (795, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'nda9aXVd', '6103752'), + (795, 2072, 'attending', '2023-05-15 11:16:27', '2025-12-17 19:47:03', 'nda9aXVd', '6105573'), + (795, 2073, 'maybe', '2023-05-19 18:43:23', '2025-12-17 19:47:03', 'nda9aXVd', '6106002'), + (795, 2074, 'not_attending', '2023-05-22 18:55:52', '2025-12-17 19:47:03', 'nda9aXVd', '6107312'), + (795, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nda9aXVd', '6107314'), + (795, 2076, 'not_attending', '2023-05-19 18:42:58', '2025-12-17 19:47:03', 'nda9aXVd', '6108350'), + (795, 2078, 'not_attending', '2023-05-22 18:56:03', '2025-12-17 19:47:03', 'nda9aXVd', '6114163'), + (795, 2079, 'maybe', '2023-05-22 18:56:14', '2025-12-17 19:47:03', 'nda9aXVd', '6114521'), + (795, 2080, 'not_attending', '2023-05-22 18:56:24', '2025-12-17 19:47:04', 'nda9aXVd', '6114677'), + (795, 2081, 'not_attending', '2023-05-22 18:56:05', '2025-12-17 19:47:03', 'nda9aXVd', '6115611'), + (795, 2083, 'attending', '2023-05-24 18:37:19', '2025-12-17 19:47:04', 'nda9aXVd', '6115629'), + (795, 2084, 'maybe', '2023-05-25 23:04:37', '2025-12-17 19:47:04', 'nda9aXVd', '6117127'), + (795, 2085, 'maybe', '2023-05-25 23:05:05', '2025-12-17 19:47:04', 'nda9aXVd', '6118068'), + (795, 2086, 'maybe', '2023-05-28 14:26:54', '2025-12-17 19:47:04', 'nda9aXVd', '6119877'), + (795, 2087, 'maybe', '2023-05-28 14:26:47', '2025-12-17 19:47:04', 'nda9aXVd', '6120034'), + (795, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nda9aXVd', '6136733'), + (795, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nda9aXVd', '6137989'), + (795, 2103, 'not_attending', '2023-06-19 20:41:07', '2025-12-17 19:46:50', 'nda9aXVd', '6149451'), + (795, 2105, 'attending', '2023-06-18 22:58:24', '2025-12-17 19:46:50', 'nda9aXVd', '6149551'), + (795, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nda9aXVd', '6150864'), + (795, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nda9aXVd', '6155491'), + (795, 2115, 'not_attending', '2023-06-30 16:33:58', '2025-12-17 19:46:50', 'nda9aXVd', '6161437'), + (795, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nda9aXVd', '6164417'), + (795, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nda9aXVd', '6166388'), + (795, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nda9aXVd', '6176439'), + (795, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nda9aXVd', '6182410'), + (795, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nda9aXVd', '6185812'), + (795, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nda9aXVd', '6187651'), + (795, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nda9aXVd', '6187963'), + (795, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nda9aXVd', '6187964'), + (795, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nda9aXVd', '6187966'), + (795, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nda9aXVd', '6187967'), + (795, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nda9aXVd', '6187969'), + (795, 2139, 'maybe', '2023-07-11 20:33:32', '2025-12-17 19:46:52', 'nda9aXVd', '6188027'), + (795, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nda9aXVd', '6334878'), + (795, 2147, 'maybe', '2023-07-11 20:33:42', '2025-12-17 19:46:52', 'nda9aXVd', '6335666'), + (795, 2150, 'not_attending', '2023-07-11 20:33:19', '2025-12-17 19:46:52', 'nda9aXVd', '6335687'), + (795, 2151, 'not_attending', '2023-07-11 20:33:36', '2025-12-17 19:46:52', 'nda9aXVd', '6335700'), + (795, 2152, 'maybe', '2023-07-11 20:33:30', '2025-12-17 19:46:52', 'nda9aXVd', '6337021'), + (795, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nda9aXVd', '6337236'), + (795, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nda9aXVd', '6337970'), + (795, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nda9aXVd', '6338308'), + (795, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'nda9aXVd', '6340845'), + (795, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nda9aXVd', '6341710'), + (795, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nda9aXVd', '6342044'), + (795, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nda9aXVd', '6342298'), + (795, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nda9aXVd', '6343294'), + (795, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nda9aXVd', '6347034'), + (795, 2177, 'maybe', '2023-08-07 20:58:20', '2025-12-17 19:46:55', 'nda9aXVd', '6347053'), + (795, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nda9aXVd', '6347056'), + (795, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nda9aXVd', '6353830'), + (795, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nda9aXVd', '6353831'), + (795, 2187, 'not_attending', '2023-08-07 20:58:12', '2025-12-17 19:46:55', 'nda9aXVd', '6357559'), + (795, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nda9aXVd', '6357867'), + (795, 2190, 'not_attending', '2023-08-07 20:58:05', '2025-12-17 19:46:55', 'nda9aXVd', '6357892'), + (795, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nda9aXVd', '6358652'), + (795, 2193, 'not_attending', '2023-08-07 20:57:53', '2025-12-17 19:46:54', 'nda9aXVd', '6358668'), + (795, 2194, 'not_attending', '2023-08-07 20:58:02', '2025-12-17 19:46:54', 'nda9aXVd', '6358669'), + (795, 2195, 'maybe', '2023-08-07 20:58:27', '2025-12-17 19:46:55', 'nda9aXVd', '6359397'), + (795, 2199, 'maybe', '2023-08-07 20:58:25', '2025-12-17 19:46:55', 'nda9aXVd', '6359849'), + (795, 2200, 'not_attending', '2023-08-07 20:58:09', '2025-12-17 19:46:55', 'nda9aXVd', '6359850'), + (795, 2203, 'not_attending', '2023-08-07 20:58:07', '2025-12-17 19:46:55', 'nda9aXVd', '6361524'), + (795, 2204, 'maybe', '2023-08-15 15:56:06', '2025-12-17 19:46:55', 'nda9aXVd', '6361542'), + (795, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nda9aXVd', '6361709'), + (795, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nda9aXVd', '6361710'), + (795, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nda9aXVd', '6361711'), + (795, 2211, 'maybe', '2023-08-15 15:56:03', '2025-12-17 19:46:55', 'nda9aXVd', '6361712'), + (795, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nda9aXVd', '6361713'), + (795, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nda9aXVd', '6382573'), + (795, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nda9aXVd', '6388604'), + (795, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nda9aXVd', '6394629'), + (795, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nda9aXVd', '6394631'), + (795, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nda9aXVd', '6440863'), + (795, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nda9aXVd', '6445440'), + (795, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nda9aXVd', '6453951'), + (795, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nda9aXVd', '6461696'), + (795, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nda9aXVd', '6462129'), + (795, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nda9aXVd', '6463218'), + (795, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nda9aXVd', '6472181'), + (795, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nda9aXVd', '6482693'), + (795, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nda9aXVd', '6484200'), + (795, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nda9aXVd', '6484680'), + (795, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nda9aXVd', '6507741'), + (795, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nda9aXVd', '6514659'), + (795, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nda9aXVd', '6514660'), + (795, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nda9aXVd', '6519103'), + (795, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nda9aXVd', '6535681'), + (795, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nda9aXVd', '6584747'), + (795, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nda9aXVd', '6587097'), + (795, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nda9aXVd', '6609022'), + (795, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nda9aXVd', '6632757'), + (795, 2376, 'maybe', '2024-01-19 20:06:40', '2025-12-17 19:46:40', 'nda9aXVd', '6642900'), + (795, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nda9aXVd', '6644187'), + (795, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nda9aXVd', '6648951'), + (795, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nda9aXVd', '6648952'), + (795, 2389, 'maybe', '2024-01-19 20:05:50', '2025-12-17 19:46:40', 'nda9aXVd', '6651094'), + (795, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nda9aXVd', '6655401'), + (795, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nda9aXVd', '6661585'), + (795, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nda9aXVd', '6661588'), + (795, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nda9aXVd', '6661589'), + (795, 2406, 'maybe', '2024-01-19 20:06:17', '2025-12-17 19:46:40', 'nda9aXVd', '6692344'), + (795, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nda9aXVd', '6699906'), + (795, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'nda9aXVd', '6699913'), + (795, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nda9aXVd', '6701109'), + (795, 2421, 'maybe', '2024-01-19 20:05:05', '2025-12-17 19:46:40', 'nda9aXVd', '6704598'), + (795, 2423, 'maybe', '2024-01-19 20:05:01', '2025-12-17 19:46:40', 'nda9aXVd', '6705141'), + (795, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nda9aXVd', '6705219'), + (795, 2426, 'maybe', '2024-01-19 20:04:29', '2025-12-17 19:46:40', 'nda9aXVd', '6705569'), + (795, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nda9aXVd', '6710153'), + (795, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nda9aXVd', '6711552'), + (795, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nda9aXVd', '6711553'), + (795, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nda9aXVd', '6722688'), + (795, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nda9aXVd', '6730620'), + (795, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'nda9aXVd', '6730642'), + (795, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nda9aXVd', '6740364'), + (795, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nda9aXVd', '6743829'), + (795, 2462, 'attending', '2024-02-12 20:56:26', '2025-12-17 19:46:41', 'nda9aXVd', '6744701'), + (795, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nda9aXVd', '7030380'), + (795, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nda9aXVd', '7033677'), + (795, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'nda9aXVd', '7035415'), + (795, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nda9aXVd', '7044715'), + (795, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nda9aXVd', '7050318'), + (795, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nda9aXVd', '7050319'), + (795, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nda9aXVd', '7050322'), + (795, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nda9aXVd', '7057804'), + (795, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'nda9aXVd', '7059866'), + (795, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nda9aXVd', '7072824'), + (795, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nda9aXVd', '7074348'), + (795, 2518, 'maybe', '2024-07-23 03:55:37', '2025-12-17 19:46:30', 'nda9aXVd', '7074358'), + (795, 2522, 'maybe', '2024-07-17 01:23:16', '2025-12-17 19:46:30', 'nda9aXVd', '7074362'), + (795, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nda9aXVd', '7074364'), + (795, 2527, 'maybe', '2024-06-27 00:59:25', '2025-12-17 19:46:29', 'nda9aXVd', '7074367'), + (795, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nda9aXVd', '7089267'), + (795, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nda9aXVd', '7098747'), + (795, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nda9aXVd', '7113468'), + (795, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nda9aXVd', '7114856'), + (795, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nda9aXVd', '7114951'), + (795, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nda9aXVd', '7114955'), + (795, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nda9aXVd', '7114956'), + (795, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nda9aXVd', '7114957'), + (795, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'nda9aXVd', '7153615'), + (795, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nda9aXVd', '7159484'), + (795, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nda9aXVd', '7178446'), + (795, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nda9aXVd', '7220467'), + (795, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nda9aXVd', '7240354'), + (795, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nda9aXVd', '7251633'), + (795, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'nda9aXVd', '7263048'), + (795, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'nda9aXVd', '7302674'), + (795, 2688, 'maybe', '2024-06-27 00:59:52', '2025-12-17 19:46:29', 'nda9aXVd', '7324073'), + (795, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nda9aXVd', '7324074'), + (795, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nda9aXVd', '7324075'), + (795, 2691, 'not_attending', '2024-07-13 22:36:26', '2025-12-17 19:46:30', 'nda9aXVd', '7324076'), + (795, 2692, 'maybe', '2024-07-17 01:23:50', '2025-12-17 19:46:30', 'nda9aXVd', '7324077'), + (795, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nda9aXVd', '7324078'), + (795, 2696, 'attending', '2024-08-24 22:08:54', '2025-12-17 19:46:32', 'nda9aXVd', '7324081'), + (795, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nda9aXVd', '7324082'), + (795, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nda9aXVd', '7331457'), + (795, 2745, 'maybe', '2024-07-17 01:23:52', '2025-12-17 19:46:30', 'nda9aXVd', '7348712'), + (795, 2747, 'attending', '2024-07-17 01:23:10', '2025-12-17 19:46:30', 'nda9aXVd', '7353587'), + (795, 2753, 'maybe', '2024-07-08 21:00:58', '2025-12-17 19:46:30', 'nda9aXVd', '7355538'), + (795, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'nda9aXVd', '7356752'), + (795, 2766, 'maybe', '2024-07-23 03:56:05', '2025-12-17 19:46:30', 'nda9aXVd', '7363643'), + (795, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nda9aXVd', '7368606'), + (795, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nda9aXVd', '7397462'), + (795, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nda9aXVd', '7424275'), + (795, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'nda9aXVd', '7424276'), + (795, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nda9aXVd', '7432751'), + (795, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nda9aXVd', '7432752'), + (795, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nda9aXVd', '7432753'), + (795, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nda9aXVd', '7432754'), + (795, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nda9aXVd', '7432755'), + (795, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nda9aXVd', '7432756'), + (795, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nda9aXVd', '7432758'), + (795, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nda9aXVd', '7432759'), + (795, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nda9aXVd', '7433834'), + (795, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nda9aXVd', '7470197'), + (795, 2866, 'maybe', '2024-11-15 23:42:27', '2025-12-17 19:46:27', 'nda9aXVd', '7471201'), + (795, 2867, 'maybe', '2024-11-15 23:42:06', '2025-12-17 19:46:21', 'nda9aXVd', '7471202'), + (795, 2897, 'not_attending', '2024-11-15 23:41:35', '2025-12-17 19:46:27', 'nda9aXVd', '7683650'), + (795, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nda9aXVd', '7685613'), + (795, 2902, 'not_attending', '2024-11-15 23:41:29', '2025-12-17 19:46:27', 'nda9aXVd', '7686381'), + (795, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nda9aXVd', '7688194'), + (795, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nda9aXVd', '7688196'), + (795, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nda9aXVd', '7688289'), + (795, 2909, 'not_attending', '2024-11-15 23:41:27', '2025-12-17 19:46:27', 'nda9aXVd', '7689771'), + (795, 2910, 'not_attending', '2024-11-15 23:41:37', '2025-12-17 19:46:27', 'nda9aXVd', '7689867'), + (795, 2912, 'maybe', '2024-11-15 23:41:50', '2025-12-17 19:46:27', 'nda9aXVd', '7692763'), + (795, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nda9aXVd', '7697552'), + (795, 2915, 'not_attending', '2024-11-21 01:23:35', '2025-12-17 19:46:27', 'nda9aXVd', '7698151'), + (795, 2916, 'not_attending', '2024-11-21 01:23:12', '2025-12-17 19:46:27', 'nda9aXVd', '7699006'), + (795, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nda9aXVd', '7699878'), + (795, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nda9aXVd', '7704043'), + (795, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nda9aXVd', '7712467'), + (795, 2925, 'maybe', '2024-12-07 23:56:15', '2025-12-17 19:46:21', 'nda9aXVd', '7713584'), + (795, 2926, 'maybe', '2024-12-07 03:07:16', '2025-12-17 19:46:21', 'nda9aXVd', '7713585'), + (795, 2927, 'not_attending', '2024-12-07 23:56:21', '2025-12-17 19:46:22', 'nda9aXVd', '7713586'), + (795, 2929, 'maybe', '2024-12-07 23:56:07', '2025-12-17 19:46:21', 'nda9aXVd', '7723465'), + (795, 2930, 'maybe', '2024-12-07 23:56:11', '2025-12-17 19:46:21', 'nda9aXVd', '7724554'), + (795, 2931, 'not_attending', '2024-12-07 23:55:57', '2025-12-17 19:46:21', 'nda9aXVd', '7725490'), + (795, 2932, 'not_attending', '2024-12-07 23:56:00', '2025-12-17 19:46:21', 'nda9aXVd', '7725949'), + (795, 2933, 'not_attending', '2024-12-07 23:56:23', '2025-12-17 19:46:22', 'nda9aXVd', '7725950'), + (795, 2934, 'not_attending', '2025-01-10 04:00:38', '2025-12-17 19:46:22', 'nda9aXVd', '7725952'), + (795, 2937, 'not_attending', '2024-12-07 23:56:16', '2025-12-17 19:46:21', 'nda9aXVd', '7725955'), + (795, 2942, 'maybe', '2025-02-11 07:17:13', '2025-12-17 19:46:24', 'nda9aXVd', '7725960'), + (795, 2944, 'maybe', '2025-02-11 07:17:15', '2025-12-17 19:46:24', 'nda9aXVd', '7725963'), + (795, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nda9aXVd', '7738518'), + (795, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', 'nda9aXVd', '7750632'), + (795, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nda9aXVd', '7750636'), + (795, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nda9aXVd', '7796540'), + (795, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nda9aXVd', '7796541'), + (795, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nda9aXVd', '7796542'), + (795, 2968, 'not_attending', '2025-01-10 04:00:40', '2025-12-17 19:46:22', 'nda9aXVd', '7797967'), + (795, 2971, 'not_attending', '2025-01-18 20:07:19', '2025-12-17 19:46:22', 'nda9aXVd', '7812230'), + (795, 2972, 'maybe', '2025-01-18 20:07:16', '2025-12-17 19:46:22', 'nda9aXVd', '7812563'), + (795, 2989, 'maybe', '2025-02-11 07:17:04', '2025-12-17 19:46:24', 'nda9aXVd', '7842108'), + (795, 2994, 'maybe', '2025-02-11 07:17:19', '2025-12-17 19:46:18', 'nda9aXVd', '7842905'), + (796, 1152, 'not_attending', '2022-01-12 23:01:31', '2025-12-17 19:47:31', 'AXBe2ZZd', '4708705'), + (796, 1173, 'attending', '2022-01-07 17:58:46', '2025-12-17 19:47:31', 'AXBe2ZZd', '4736495'), + (796, 1175, 'attending', '2022-01-22 22:59:42', '2025-12-17 19:47:32', 'AXBe2ZZd', '4736497'), + (796, 1177, 'maybe', '2022-02-12 18:08:02', '2025-12-17 19:47:32', 'AXBe2ZZd', '4736499'), + (796, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'AXBe2ZZd', '4736500'), + (796, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'AXBe2ZZd', '4736503'), + (796, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'AXBe2ZZd', '4736504'), + (796, 1183, 'attending', '2022-01-12 00:06:43', '2025-12-17 19:47:31', 'AXBe2ZZd', '4742171'), + (796, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AXBe2ZZd', '4746789'), + (796, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AXBe2ZZd', '4753929'), + (796, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'AXBe2ZZd', '5038850'), + (796, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AXBe2ZZd', '5045826'), + (796, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'AXBe2ZZd', '5132533'), + (796, 1272, 'not_attending', '2022-03-19 23:02:26', '2025-12-17 19:47:25', 'AXBe2ZZd', '5186582'), + (796, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'AXBe2ZZd', '5186583'), + (796, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'AXBe2ZZd', '5186585'), + (796, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'AXBe2ZZd', '5190437'), + (796, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AXBe2ZZd', '5195095'), + (796, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'AXBe2ZZd', '5215989'), + (796, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AXBe2ZZd', '5223686'), + (796, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AXBe2ZZd', '5227432'), + (796, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AXBe2ZZd', '5247467'), + (796, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AXBe2ZZd', '5260800'), + (796, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AXBe2ZZd', '5269930'), + (796, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AXBe2ZZd', '5271448'), + (796, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'AXBe2ZZd', '5271449'), + (796, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AXBe2ZZd', '5276469'), + (796, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AXBe2ZZd', '5278159'), + (796, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AXBe2ZZd', '5363695'), + (796, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AXBe2ZZd', '5365960'), + (796, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AXBe2ZZd', '5368973'), + (796, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AXBe2ZZd', '5378247'), + (796, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AXBe2ZZd', '5389605'), + (796, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AXBe2ZZd', '5397265'), + (796, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AXBe2ZZd', '5403967'), + (796, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AXBe2ZZd', '5404786'), + (796, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AXBe2ZZd', '5405203'), + (796, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'AXBe2ZZd', '5408794'), + (796, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AXBe2ZZd', '5411699'), + (796, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AXBe2ZZd', '5412550'), + (796, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AXBe2ZZd', '5415046'), + (796, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AXBe2ZZd', '5422086'), + (796, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AXBe2ZZd', '5422406'), + (796, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AXBe2ZZd', '5424565'), + (796, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AXBe2ZZd', '5426882'), + (796, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AXBe2ZZd', '5427083'), + (796, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AXBe2ZZd', '5441125'), + (796, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AXBe2ZZd', '5441126'), + (796, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AXBe2ZZd', '5441128'), + (796, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AXBe2ZZd', '5441131'), + (796, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AXBe2ZZd', '5441132'), + (796, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AXBe2ZZd', '5446643'), + (796, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AXBe2ZZd', '5453325'), + (796, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AXBe2ZZd', '5454516'), + (796, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AXBe2ZZd', '5454605'), + (796, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AXBe2ZZd', '5455037'), + (796, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AXBe2ZZd', '5461278'), + (796, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AXBe2ZZd', '5469480'), + (796, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AXBe2ZZd', '5471073'), + (796, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AXBe2ZZd', '5474663'), + (796, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AXBe2ZZd', '5482022'), + (796, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AXBe2ZZd', '5482793'), + (796, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AXBe2ZZd', '5488912'), + (796, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AXBe2ZZd', '5492192'), + (796, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AXBe2ZZd', '5493139'), + (796, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AXBe2ZZd', '5493200'), + (796, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AXBe2ZZd', '5502188'), + (796, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AXBe2ZZd', '5505059'), + (796, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AXBe2ZZd', '5509055'), + (796, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AXBe2ZZd', '5512862'), + (796, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AXBe2ZZd', '5513985'), + (796, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'AXBe2ZZd', '5519981'), + (796, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AXBe2ZZd', '5522550'), + (796, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AXBe2ZZd', '5534683'), + (796, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AXBe2ZZd', '5546619'), + (796, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AXBe2ZZd', '5555245'), + (796, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AXBe2ZZd', '5557747'), + (796, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AXBe2ZZd', '6045684'), + (797, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMQYVOm', '6514660'), + (797, 2325, 'attending', '2023-12-17 00:40:25', '2025-12-17 19:46:36', 'dxMQYVOm', '6514663'), + (797, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMQYVOm', '6587097'), + (797, 2356, 'attending', '2023-12-07 07:46:45', '2025-12-17 19:46:36', 'dxMQYVOm', '6593340'), + (797, 2357, 'attending', '2023-12-07 07:47:40', '2025-12-17 19:46:36', 'dxMQYVOm', '6593341'), + (797, 2359, 'attending', '2023-12-01 21:53:16', '2025-12-17 19:46:48', 'dxMQYVOm', '6596617'), + (797, 2361, 'not_attending', '2023-12-02 23:55:33', '2025-12-17 19:46:48', 'dxMQYVOm', '6602009'), + (797, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMQYVOm', '6609022'), + (797, 2366, 'not_attending', '2023-12-07 22:53:14', '2025-12-17 19:46:36', 'dxMQYVOm', '6615304'), + (797, 2368, 'attending', '2023-12-10 23:00:12', '2025-12-17 19:46:36', 'dxMQYVOm', '6621445'), + (797, 2370, 'attending', '2023-12-13 15:00:25', '2025-12-17 19:46:36', 'dxMQYVOm', '6623765'), + (797, 2374, 'attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMQYVOm', '6632757'), + (797, 2375, 'attending', '2023-12-20 18:28:15', '2025-12-17 19:46:36', 'dxMQYVOm', '6634548'), + (797, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMQYVOm', '6644187'), + (797, 2382, 'attending', '2024-01-02 22:18:52', '2025-12-17 19:46:37', 'dxMQYVOm', '6646401'), + (797, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMQYVOm', '6648951'), + (797, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMQYVOm', '6648952'), + (797, 2388, 'attending', '2024-01-06 08:09:57', '2025-12-17 19:46:37', 'dxMQYVOm', '6649244'), + (797, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMQYVOm', '6655401'), + (797, 2399, 'attending', '2024-01-13 23:04:31', '2025-12-17 19:46:38', 'dxMQYVOm', '6657583'), + (797, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMQYVOm', '6661585'), + (797, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMQYVOm', '6661588'), + (797, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMQYVOm', '6661589'), + (797, 2405, 'attending', '2024-01-18 17:43:44', '2025-12-17 19:46:38', 'dxMQYVOm', '6667332'), + (797, 2406, 'not_attending', '2024-01-18 17:28:31', '2025-12-17 19:46:40', 'dxMQYVOm', '6692344'), + (797, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMQYVOm', '6699906'), + (797, 2408, 'attending', '2024-01-23 15:53:51', '2025-12-17 19:46:40', 'dxMQYVOm', '6699907'), + (797, 2410, 'attending', '2024-02-10 23:30:13', '2025-12-17 19:46:41', 'dxMQYVOm', '6699911'), + (797, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxMQYVOm', '6699913'), + (797, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMQYVOm', '6701109'), + (797, 2417, 'attending', '2024-01-18 17:28:08', '2025-12-17 19:46:40', 'dxMQYVOm', '6701905'), + (797, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMQYVOm', '6705219'), + (797, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMQYVOm', '6710153'), + (797, 2429, 'attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMQYVOm', '6711552'), + (797, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMQYVOm', '6711553'), + (797, 2431, 'attending', '2024-02-02 00:48:23', '2025-12-17 19:46:41', 'dxMQYVOm', '6712394'), + (797, 2435, 'attending', '2024-01-28 04:47:25', '2025-12-17 19:46:41', 'dxMQYVOm', '6721547'), + (797, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMQYVOm', '6722688'), + (797, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMQYVOm', '6730620'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (797, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMQYVOm', '6730642'), + (797, 2441, 'not_attending', '2024-02-01 02:15:38', '2025-12-17 19:46:41', 'dxMQYVOm', '6731263'), + (797, 2446, 'attending', '2024-03-01 18:09:30', '2025-12-17 19:46:43', 'dxMQYVOm', '6734369'), + (797, 2449, 'attending', '2024-02-05 12:26:31', '2025-12-17 19:46:42', 'dxMQYVOm', '6735833'), + (797, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMQYVOm', '6740364'), + (797, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMQYVOm', '6743829'), + (797, 2461, 'attending', '2024-02-10 23:30:16', '2025-12-17 19:46:41', 'dxMQYVOm', '6744245'), + (797, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMQYVOm', '7030380'), + (797, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMQYVOm', '7033677'), + (797, 2473, 'attending', '2024-02-24 02:55:31', '2025-12-17 19:46:43', 'dxMQYVOm', '7033724'), + (797, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMQYVOm', '7035415'), + (797, 2475, 'attending', '2024-02-24 02:55:35', '2025-12-17 19:46:43', 'dxMQYVOm', '7035643'), + (797, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMQYVOm', '7044715'), + (797, 2482, 'attending', '2024-03-05 20:33:47', '2025-12-17 19:46:44', 'dxMQYVOm', '7044719'), + (797, 2485, 'attending', '2024-02-27 20:15:42', '2025-12-17 19:46:43', 'dxMQYVOm', '7048111'), + (797, 2486, 'attending', '2024-03-01 18:08:26', '2025-12-17 19:46:43', 'dxMQYVOm', '7048277'), + (797, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMQYVOm', '7050318'), + (797, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMQYVOm', '7050319'), + (797, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMQYVOm', '7050322'), + (797, 2495, 'not_attending', '2024-03-04 01:04:52', '2025-12-17 19:46:32', 'dxMQYVOm', '7052982'), + (797, 2498, 'attending', '2024-03-20 22:31:00', '2025-12-17 19:46:33', 'dxMQYVOm', '7057662'), + (797, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMQYVOm', '7057804'), + (797, 2500, 'attending', '2024-03-06 19:14:09', '2025-12-17 19:46:43', 'dxMQYVOm', '7058603'), + (797, 2501, 'attending', '2024-03-05 20:09:41', '2025-12-17 19:46:43', 'dxMQYVOm', '7059866'), + (797, 2502, 'not_attending', '2024-03-06 02:24:43', '2025-12-17 19:46:33', 'dxMQYVOm', '7061202'), + (797, 2504, 'attending', '2024-03-22 16:39:05', '2025-12-17 19:46:33', 'dxMQYVOm', '7063296'), + (797, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMQYVOm', '7072824'), + (797, 2508, 'attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMQYVOm', '7074348'), + (797, 2510, 'attending', '2024-03-21 23:57:44', '2025-12-17 19:46:33', 'dxMQYVOm', '7074350'), + (797, 2512, 'attending', '2024-04-02 22:01:44', '2025-12-17 19:46:33', 'dxMQYVOm', '7074352'), + (797, 2516, 'attending', '2024-05-02 22:55:26', '2025-12-17 19:46:35', 'dxMQYVOm', '7074356'), + (797, 2521, 'attending', '2024-06-21 00:03:38', '2025-12-17 19:46:29', 'dxMQYVOm', '7074361'), + (797, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxMQYVOm', '7074364'), + (797, 2537, 'attending', '2024-03-22 03:26:30', '2025-12-17 19:46:33', 'dxMQYVOm', '7085484'), + (797, 2538, 'attending', '2024-03-27 13:57:35', '2025-12-17 19:46:33', 'dxMQYVOm', '7085485'), + (797, 2539, 'attending', '2024-04-06 15:34:18', '2025-12-17 19:46:33', 'dxMQYVOm', '7085486'), + (797, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMQYVOm', '7089267'), + (797, 2541, 'attending', '2024-03-17 02:27:21', '2025-12-17 19:46:33', 'dxMQYVOm', '7089404'), + (797, 2542, 'not_attending', '2024-03-25 12:38:04', '2025-12-17 19:46:33', 'dxMQYVOm', '7090025'), + (797, 2544, 'attending', '2024-03-22 14:23:49', '2025-12-17 19:46:33', 'dxMQYVOm', '7096941'), + (797, 2545, 'attending', '2024-03-22 14:24:20', '2025-12-17 19:46:33', 'dxMQYVOm', '7096942'), + (797, 2546, 'not_attending', '2024-03-22 14:23:22', '2025-12-17 19:46:33', 'dxMQYVOm', '7096944'), + (797, 2547, 'attending', '2024-03-25 12:38:01', '2025-12-17 19:46:33', 'dxMQYVOm', '7096945'), + (797, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMQYVOm', '7098747'), + (797, 2551, 'attending', '2024-03-27 13:57:15', '2025-12-17 19:46:33', 'dxMQYVOm', '7109912'), + (797, 2552, 'attending', '2024-03-27 21:22:38', '2025-12-17 19:46:33', 'dxMQYVOm', '7111123'), + (797, 2553, 'attending', '2024-03-29 12:05:54', '2025-12-17 19:46:33', 'dxMQYVOm', '7113468'), + (797, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMQYVOm', '7114856'), + (797, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMQYVOm', '7114951'), + (797, 2556, 'attending', '2024-04-02 22:02:28', '2025-12-17 19:46:34', 'dxMQYVOm', '7114955'), + (797, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMQYVOm', '7114956'), + (797, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMQYVOm', '7114957'), + (797, 2560, 'attending', '2024-04-09 15:33:29', '2025-12-17 19:46:33', 'dxMQYVOm', '7130086'), + (797, 2563, 'not_attending', '2024-04-02 21:59:45', '2025-12-17 19:46:33', 'dxMQYVOm', '7134734'), + (797, 2564, 'attending', '2024-04-02 21:59:52', '2025-12-17 19:46:33', 'dxMQYVOm', '7134735'), + (797, 2567, 'attending', '2024-04-04 10:32:29', '2025-12-17 19:46:33', 'dxMQYVOm', '7144962'), + (797, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMQYVOm', '7153615'), + (797, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMQYVOm', '7159484'), + (797, 2573, 'attending', '2024-04-08 22:59:13', '2025-12-17 19:46:34', 'dxMQYVOm', '7160612'), + (797, 2575, 'attending', '2024-04-11 18:36:56', '2025-12-17 19:46:33', 'dxMQYVOm', '7164534'), + (797, 2578, 'attending', '2024-04-11 18:55:36', '2025-12-17 19:46:34', 'dxMQYVOm', '7167016'), + (797, 2580, 'attending', '2024-04-11 18:56:04', '2025-12-17 19:46:34', 'dxMQYVOm', '7167272'), + (797, 2581, 'attending', '2024-04-23 17:19:12', '2025-12-17 19:46:34', 'dxMQYVOm', '7169048'), + (797, 2583, 'attending', '2024-04-14 14:53:08', '2025-12-17 19:46:34', 'dxMQYVOm', '7172946'), + (797, 2584, 'attending', '2024-04-20 03:10:27', '2025-12-17 19:46:34', 'dxMQYVOm', '7175057'), + (797, 2585, 'attending', '2024-04-20 03:10:10', '2025-12-17 19:46:34', 'dxMQYVOm', '7175828'), + (797, 2588, 'attending', '2024-04-17 21:16:06', '2025-12-17 19:46:34', 'dxMQYVOm', '7177233'), + (797, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMQYVOm', '7178446'), + (797, 2594, 'attending', '2024-04-20 04:25:37', '2025-12-17 19:46:34', 'dxMQYVOm', '7182117'), + (797, 2600, 'attending', '2024-04-30 21:11:09', '2025-12-17 19:46:35', 'dxMQYVOm', '7196794'), + (797, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMQYVOm', '7220467'), + (797, 2603, 'attending', '2024-05-15 13:15:29', '2025-12-17 19:46:35', 'dxMQYVOm', '7225669'), + (797, 2607, 'attending', '2024-04-29 21:57:17', '2025-12-17 19:46:35', 'dxMQYVOm', '7240136'), + (797, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMQYVOm', '7240354'), + (797, 2616, 'attending', '2024-05-07 17:16:03', '2025-12-17 19:46:35', 'dxMQYVOm', '7250296'), + (797, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMQYVOm', '7251633'), + (797, 2626, 'attending', '2024-05-18 21:42:48', '2025-12-17 19:46:35', 'dxMQYVOm', '7264723'), + (797, 2628, 'attending', '2024-06-01 23:07:39', '2025-12-17 19:46:36', 'dxMQYVOm', '7264725'), + (797, 2632, 'attending', '2024-05-14 21:12:13', '2025-12-17 19:46:35', 'dxMQYVOm', '7269123'), + (797, 2650, 'attending', '2024-05-24 16:28:50', '2025-12-17 19:46:35', 'dxMQYVOm', '7288199'), + (797, 2652, 'attending', '2024-05-31 16:04:17', '2025-12-17 19:46:36', 'dxMQYVOm', '7288339'), + (797, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMQYVOm', '7302674'), + (797, 2664, 'attending', '2024-06-04 22:05:13', '2025-12-17 19:46:36', 'dxMQYVOm', '7306358'), + (797, 2678, 'attending', '2024-06-12 15:06:03', '2025-12-17 19:46:28', 'dxMQYVOm', '7319489'), + (797, 2679, 'attending', '2024-06-21 00:15:03', '2025-12-17 19:46:29', 'dxMQYVOm', '7319490'), + (797, 2684, 'attending', '2024-06-11 19:41:32', '2025-12-17 19:46:28', 'dxMQYVOm', '7322001'), + (797, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxMQYVOm', '7324073'), + (797, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxMQYVOm', '7324074'), + (797, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxMQYVOm', '7324075'), + (797, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxMQYVOm', '7324078'), + (797, 2695, 'attending', '2024-08-17 21:58:54', '2025-12-17 19:46:31', 'dxMQYVOm', '7324080'), + (797, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxMQYVOm', '7324082'), + (797, 2706, 'attending', '2024-06-19 16:06:09', '2025-12-17 19:46:28', 'dxMQYVOm', '7324947'), + (797, 2708, 'attending', '2024-06-15 15:22:38', '2025-12-17 19:46:28', 'dxMQYVOm', '7325048'), + (797, 2720, 'attending', '2024-06-18 21:13:57', '2025-12-17 19:46:28', 'dxMQYVOm', '7331436'), + (797, 2721, 'attending', '2024-06-18 22:32:13', '2025-12-17 19:46:29', 'dxMQYVOm', '7331456'), + (797, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxMQYVOm', '7331457'), + (797, 2724, 'attending', '2024-06-22 22:02:48', '2025-12-17 19:46:29', 'dxMQYVOm', '7332562'), + (797, 2727, 'attending', '2024-06-21 00:03:28', '2025-12-17 19:46:29', 'dxMQYVOm', '7332865'), + (797, 2729, 'attending', '2024-06-21 22:28:46', '2025-12-17 19:46:29', 'dxMQYVOm', '7335092'), + (797, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxMQYVOm', '7356752'), + (797, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxMQYVOm', '7363643'), + (797, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxMQYVOm', '7368606'), + (797, 2787, 'attending', '2024-08-07 00:09:01', '2025-12-17 19:46:32', 'dxMQYVOm', '7381568'), + (797, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxMQYVOm', '7397462'), + (797, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxMQYVOm', '7424275'), + (797, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxMQYVOm', '7424276'), + (797, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxMQYVOm', '7432751'), + (797, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxMQYVOm', '7432752'), + (797, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxMQYVOm', '7432753'), + (797, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxMQYVOm', '7432754'), + (797, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxMQYVOm', '7432755'), + (797, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxMQYVOm', '7432756'), + (797, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxMQYVOm', '7432758'), + (797, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxMQYVOm', '7432759'), + (797, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxMQYVOm', '7433834'), + (797, 2845, 'attending', '2024-09-21 21:34:39', '2025-12-17 19:46:25', 'dxMQYVOm', '7452129'), + (797, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxMQYVOm', '7470197'), + (797, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxMQYVOm', '7685613'), + (797, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxMQYVOm', '7688194'), + (797, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxMQYVOm', '7688196'), + (797, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxMQYVOm', '7688289'), + (797, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dxMQYVOm', '7692763'), + (797, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxMQYVOm', '7697552'), + (797, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxMQYVOm', '7699878'), + (797, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxMQYVOm', '7704043'), + (797, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxMQYVOm', '7712467'), + (797, 2925, 'attending', '2024-12-14 02:37:56', '2025-12-17 19:46:21', 'dxMQYVOm', '7713584'), + (797, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxMQYVOm', '7713585'), + (797, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxMQYVOm', '7713586'), + (797, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMQYVOm', '7738518'), + (797, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMQYVOm', '7750636'), + (797, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMQYVOm', '7796540'), + (797, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMQYVOm', '7796541'), + (797, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMQYVOm', '7796542'), + (797, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxMQYVOm', '7825913'), + (797, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dxMQYVOm', '7825920'), + (797, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxMQYVOm', '7826209'), + (797, 2984, 'attending', '2025-02-02 04:41:54', '2025-12-17 19:46:23', 'dxMQYVOm', '7830134'), + (797, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxMQYVOm', '7834742'), + (797, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dxMQYVOm', '7842108'), + (797, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxMQYVOm', '7842902'), + (797, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxMQYVOm', '7842903'), + (797, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxMQYVOm', '7842904'), + (797, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxMQYVOm', '7842905'), + (797, 3005, 'attending', '2025-02-19 23:12:45', '2025-12-17 19:46:24', 'dxMQYVOm', '7854604'), + (797, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxMQYVOm', '7855719'), + (797, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxMQYVOm', '7860683'), + (797, 3008, 'attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxMQYVOm', '7860684'), + (797, 3009, 'attending', '2025-03-04 23:51:33', '2025-12-17 19:46:18', 'dxMQYVOm', '7864019'), + (797, 3010, 'attending', '2025-03-05 15:32:50', '2025-12-17 19:46:18', 'dxMQYVOm', '7864879'), + (797, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxMQYVOm', '7866095'), + (797, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxMQYVOm', '7869170'), + (797, 3014, 'attending', '2025-04-05 13:42:00', '2025-12-17 19:46:20', 'dxMQYVOm', '7869185'), + (797, 3016, 'attending', '2025-04-19 22:02:02', '2025-12-17 19:46:20', 'dxMQYVOm', '7869187'), + (797, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxMQYVOm', '7869188'), + (797, 3018, 'attending', '2025-04-08 23:33:55', '2025-12-17 19:46:20', 'dxMQYVOm', '7869189'), + (797, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxMQYVOm', '7869201'), + (797, 3033, 'attending', '2025-03-11 02:32:42', '2025-12-17 19:46:19', 'dxMQYVOm', '7877465'), + (797, 3036, 'attending', '2025-03-13 15:38:41', '2025-12-17 19:46:19', 'dxMQYVOm', '7880952'), + (797, 3041, 'attending', '2025-03-14 14:20:51', '2025-12-17 19:46:19', 'dxMQYVOm', '7881995'), + (797, 3042, 'attending', '2025-03-15 04:44:21', '2025-12-17 19:46:19', 'dxMQYVOm', '7882467'), + (797, 3043, 'attending', '2025-03-15 19:15:31', '2025-12-17 19:46:19', 'dxMQYVOm', '7882587'), + (797, 3044, 'attending', '2025-03-29 20:52:28', '2025-12-17 19:46:19', 'dxMQYVOm', '7882690'), + (797, 3045, 'attending', '2025-04-05 21:02:38', '2025-12-17 19:46:19', 'dxMQYVOm', '7882691'), + (797, 3046, 'attending', '2025-04-08 23:33:57', '2025-12-17 19:46:20', 'dxMQYVOm', '7882692'), + (797, 3053, 'maybe', '2025-03-16 23:27:32', '2025-12-17 19:46:19', 'dxMQYVOm', '7884030'), + (797, 3054, 'maybe', '2025-03-17 03:21:22', '2025-12-17 19:46:19', 'dxMQYVOm', '7884168'), + (797, 3055, 'attending', '2025-03-21 11:36:20', '2025-12-17 19:46:19', 'dxMQYVOm', '7888118'), + (797, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxMQYVOm', '7888250'), + (797, 3058, 'attending', '2025-03-27 15:49:22', '2025-12-17 19:46:19', 'dxMQYVOm', '7891460'), + (797, 3062, 'attending', '2025-03-30 13:23:58', '2025-12-17 19:46:19', 'dxMQYVOm', '7892738'), + (797, 3069, 'attending', '2025-03-30 23:31:27', '2025-12-17 19:46:19', 'dxMQYVOm', '7894828'), + (797, 3072, 'attending', '2025-04-03 21:52:34', '2025-12-17 19:46:19', 'dxMQYVOm', '7895449'), + (797, 3073, 'attending', '2025-04-03 21:52:32', '2025-12-17 19:46:19', 'dxMQYVOm', '7897303'), + (797, 3079, 'attending', '2025-04-06 15:58:14', '2025-12-17 19:46:20', 'dxMQYVOm', '7901439'), + (797, 3082, 'attending', '2025-04-07 19:43:12', '2025-12-17 19:46:20', 'dxMQYVOm', '7902819'), + (797, 3084, 'attending', '2025-04-08 23:32:33', '2025-12-17 19:46:20', 'dxMQYVOm', '7903687'), + (797, 3086, 'attending', '2025-04-09 22:00:38', '2025-12-17 19:46:20', 'dxMQYVOm', '7903852'), + (797, 3090, 'attending', '2025-04-16 17:13:44', '2025-12-17 19:46:20', 'dxMQYVOm', '7914315'), + (797, 3094, 'attending', '2025-04-30 22:03:06', '2025-12-17 19:46:21', 'dxMQYVOm', '8342292'), + (797, 3095, 'attending', '2025-04-30 22:03:04', '2025-12-17 19:46:20', 'dxMQYVOm', '8342293'), + (797, 3097, 'not_attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dxMQYVOm', '8342993'), + (797, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxMQYVOm', '8349164'), + (797, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxMQYVOm', '8349545'), + (797, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxMQYVOm', '8353584'), + (797, 3128, 'attending', '2025-05-11 18:17:21', '2025-12-17 19:46:21', 'dxMQYVOm', '8366077'), + (797, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dxMQYVOm', '8368028'), + (797, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxMQYVOm', '8368029'), + (798, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', '41o5LVRm', '5132533'), + (798, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '41o5LVRm', '5186582'), + (798, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '41o5LVRm', '5186583'), + (798, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '41o5LVRm', '5186585'), + (798, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '41o5LVRm', '5190437'), + (798, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', '41o5LVRm', '5196763'), + (798, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '41o5LVRm', '5199460'), + (798, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41o5LVRm', '5215989'), + (798, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41o5LVRm', '5223686'), + (798, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41o5LVRm', '5227432'), + (798, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41o5LVRm', '6045684'), + (799, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mb2lygEm', '5630960'), + (799, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mb2lygEm', '5630961'), + (799, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mb2lygEm', '5630962'), + (799, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mb2lygEm', '5635406'), + (799, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mb2lygEm', '5638765'), + (799, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mb2lygEm', '5640097'), + (799, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mb2lygEm', '5640843'), + (799, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mb2lygEm', '5641521'), + (799, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mb2lygEm', '5652395'), + (799, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mb2lygEm', '5671637'), + (799, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mb2lygEm', '5672329'), + (799, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mb2lygEm', '5674057'), + (799, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mb2lygEm', '5674060'), + (799, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mb2lygEm', '5677461'), + (799, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mb2lygEm', '6045684'), + (800, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dxK3Op24', '7114956'), + (800, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxK3Op24', '7114957'), + (800, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxK3Op24', '7178446'), + (800, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dxK3Op24', '7220467'), + (800, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxK3Op24', '7240354'), + (800, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxK3Op24', '7251633'), + (800, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'dxK3Op24', '7265589'), + (801, 4, 'attending', '2020-03-21 22:09:07', '2025-12-17 19:47:58', 'oAgeoZMd', '2958046'), + (801, 7, 'not_attending', '2020-03-24 16:06:32', '2025-12-17 19:47:58', 'oAgeoZMd', '2958049'), + (801, 9, 'attending', '2020-03-28 14:00:59', '2025-12-17 19:47:56', 'oAgeoZMd', '2958052'), + (801, 10, 'attending', '2020-03-28 14:01:01', '2025-12-17 19:47:56', 'oAgeoZMd', '2958053'), + (801, 11, 'attending', '2020-03-29 15:24:19', '2025-12-17 19:47:57', 'oAgeoZMd', '2958055'), + (801, 12, 'attending', '2020-04-01 22:22:25', '2025-12-17 19:47:56', 'oAgeoZMd', '2958056'), + (801, 14, 'attending', '2020-04-07 18:47:35', '2025-12-17 19:47:57', 'oAgeoZMd', '2958058'), + (801, 15, 'attending', '2020-04-10 15:04:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2958059'), + (801, 16, 'attending', '2020-03-27 22:26:31', '2025-12-17 19:47:56', 'oAgeoZMd', '2958060'), + (801, 21, 'attending', '2020-04-20 19:54:27', '2025-12-17 19:47:57', 'oAgeoZMd', '2958065'), + (801, 24, 'not_attending', '2020-06-26 20:38:09', '2025-12-17 19:47:55', 'oAgeoZMd', '2958068'), + (801, 28, 'attending', '2020-04-02 22:55:54', '2025-12-17 19:47:56', 'oAgeoZMd', '2960421'), + (801, 29, 'maybe', '2020-03-30 18:34:57', '2025-12-17 19:47:56', 'oAgeoZMd', '2961309'), + (801, 30, 'attending', '2020-03-23 16:40:54', '2025-12-17 19:47:57', 'oAgeoZMd', '2961895'), + (801, 36, 'attending', '2020-03-29 01:48:56', '2025-12-17 19:47:57', 'oAgeoZMd', '2969208'), + (801, 37, 'maybe', '2020-03-30 18:35:06', '2025-12-17 19:47:56', 'oAgeoZMd', '2969680'), + (801, 39, 'attending', '2020-03-30 16:38:05', '2025-12-17 19:47:56', 'oAgeoZMd', '2970637'), + (801, 41, 'attending', '2020-04-03 14:06:09', '2025-12-17 19:47:57', 'oAgeoZMd', '2971546'), + (801, 44, 'not_attending', '2020-04-11 22:17:49', '2025-12-17 19:47:57', 'oAgeoZMd', '2974534'), + (801, 46, 'attending', '2020-04-06 01:37:48', '2025-12-17 19:47:57', 'oAgeoZMd', '2974955'), + (801, 48, 'attending', '2020-05-18 17:14:51', '2025-12-17 19:47:57', 'oAgeoZMd', '2975273'), + (801, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'oAgeoZMd', '2975384'), + (801, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'oAgeoZMd', '2975385'), + (801, 57, 'attending', '2020-04-07 02:39:43', '2025-12-17 19:47:57', 'oAgeoZMd', '2976575'), + (801, 58, 'not_attending', '2020-04-21 21:43:38', '2025-12-17 19:47:57', 'oAgeoZMd', '2977127'), + (801, 59, 'maybe', '2020-05-05 21:47:17', '2025-12-17 19:47:57', 'oAgeoZMd', '2977128'), + (801, 67, 'maybe', '2020-06-15 18:57:01', '2025-12-17 19:47:58', 'oAgeoZMd', '2977136'), + (801, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'oAgeoZMd', '2977343'), + (801, 71, 'attending', '2020-04-09 03:01:38', '2025-12-17 19:47:57', 'oAgeoZMd', '2977526'), + (801, 72, 'attending', '2020-05-01 17:27:14', '2025-12-17 19:47:57', 'oAgeoZMd', '2977812'), + (801, 73, 'attending', '2020-04-16 13:02:18', '2025-12-17 19:47:57', 'oAgeoZMd', '2977931'), + (801, 74, 'attending', '2020-04-11 15:13:30', '2025-12-17 19:47:57', 'oAgeoZMd', '2978244'), + (801, 75, 'attending', '2020-04-19 19:39:53', '2025-12-17 19:47:57', 'oAgeoZMd', '2978245'), + (801, 77, 'attending', '2020-05-02 22:36:58', '2025-12-17 19:47:57', 'oAgeoZMd', '2978247'), + (801, 78, 'attending', '2020-05-19 18:50:04', '2025-12-17 19:47:57', 'oAgeoZMd', '2978249'), + (801, 79, 'attending', '2020-05-24 20:04:34', '2025-12-17 19:47:57', 'oAgeoZMd', '2978250'), + (801, 80, 'attending', '2020-05-31 18:27:09', '2025-12-17 19:47:58', 'oAgeoZMd', '2978251'), + (801, 81, 'attending', '2020-06-13 21:27:42', '2025-12-17 19:47:58', 'oAgeoZMd', '2978252'), + (801, 82, 'attending', '2020-04-10 22:34:46', '2025-12-17 19:47:57', 'oAgeoZMd', '2978433'), + (801, 83, 'attending', '2020-05-08 22:05:03', '2025-12-17 19:47:57', 'oAgeoZMd', '2978438'), + (801, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2980871'), + (801, 85, 'not_attending', '2020-04-22 16:27:25', '2025-12-17 19:47:57', 'oAgeoZMd', '2980872'), + (801, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'oAgeoZMd', '2981388'), + (801, 87, 'attending', '2020-04-19 19:40:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2982602'), + (801, 88, 'attending', '2020-04-14 17:51:06', '2025-12-17 19:47:57', 'oAgeoZMd', '2982603'), + (801, 89, 'attending', '2020-05-01 17:17:37', '2025-12-17 19:47:57', 'oAgeoZMd', '2982604'), + (801, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'oAgeoZMd', '2986743'), + (801, 93, 'not_attending', '2020-04-19 23:36:39', '2025-12-17 19:47:57', 'oAgeoZMd', '2987418'), + (801, 94, 'not_attending', '2020-04-24 19:17:17', '2025-12-17 19:47:57', 'oAgeoZMd', '2987421'), + (801, 96, 'maybe', '2020-05-05 21:47:25', '2025-12-17 19:47:57', 'oAgeoZMd', '2987453'), + (801, 100, 'attending', '2020-04-21 21:45:52', '2025-12-17 19:47:57', 'oAgeoZMd', '2989142'), + (801, 101, 'not_attending', '2020-04-21 22:00:10', '2025-12-17 19:47:57', 'oAgeoZMd', '2989975'), + (801, 103, 'maybe', '2020-05-04 17:15:27', '2025-12-17 19:47:57', 'oAgeoZMd', '2991407'), + (801, 104, 'attending', '2020-04-24 14:20:00', '2025-12-17 19:47:57', 'oAgeoZMd', '2991471'), + (801, 106, 'attending', '2020-05-01 17:15:10', '2025-12-17 19:47:57', 'oAgeoZMd', '2993501'), + (801, 109, 'attending', '2020-04-28 02:11:02', '2025-12-17 19:47:57', 'oAgeoZMd', '2994480'), + (801, 110, 'attending', '2020-05-03 18:49:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2994906'), + (801, 115, 'attending', '2020-05-02 22:36:59', '2025-12-17 19:47:57', 'oAgeoZMd', '3001217'), + (801, 121, 'attending', '2020-05-26 17:02:17', '2025-12-17 19:47:57', 'oAgeoZMd', '3023063'), + (801, 122, 'attending', '2020-05-18 13:25:34', '2025-12-17 19:47:57', 'oAgeoZMd', '3023491'), + (801, 125, 'attending', '2020-05-22 16:53:26', '2025-12-17 19:47:57', 'oAgeoZMd', '3023987'), + (801, 133, 'attending', '2020-06-24 17:02:14', '2025-12-17 19:47:58', 'oAgeoZMd', '3034321'), + (801, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'oAgeoZMd', '3049983'), + (801, 144, 'attending', '2020-06-06 21:42:54', '2025-12-17 19:47:58', 'oAgeoZMd', '3058679'), + (801, 145, 'attending', '2020-06-13 21:27:48', '2025-12-17 19:47:58', 'oAgeoZMd', '3058680'), + (801, 147, 'attending', '2020-08-22 15:03:27', '2025-12-17 19:47:56', 'oAgeoZMd', '3058684'), + (801, 148, 'attending', '2020-07-11 17:25:44', '2025-12-17 19:47:55', 'oAgeoZMd', '3058685'), + (801, 149, 'attending', '2020-07-18 18:36:25', '2025-12-17 19:47:55', 'oAgeoZMd', '3058686'), + (801, 150, 'maybe', '2020-07-23 21:46:49', '2025-12-17 19:47:55', 'oAgeoZMd', '3058687'), + (801, 151, 'attending', '2020-08-29 22:06:30', '2025-12-17 19:47:56', 'oAgeoZMd', '3058688'), + (801, 152, 'not_attending', '2020-09-03 14:33:09', '2025-12-17 19:47:56', 'oAgeoZMd', '3058689'), + (801, 155, 'attending', '2020-08-15 15:50:36', '2025-12-17 19:47:56', 'oAgeoZMd', '3058692'), + (801, 156, 'attending', '2020-09-12 22:04:19', '2025-12-17 19:47:56', 'oAgeoZMd', '3058693'), + (801, 160, 'attending', '2020-10-14 00:43:14', '2025-12-17 19:47:52', 'oAgeoZMd', '3058697'), + (801, 161, 'attending', '2020-10-10 18:31:26', '2025-12-17 19:47:52', 'oAgeoZMd', '3058698'), + (801, 162, 'attending', '2020-10-14 00:43:05', '2025-12-17 19:47:52', 'oAgeoZMd', '3058699'), + (801, 164, 'attending', '2020-11-14 23:21:58', '2025-12-17 19:47:54', 'oAgeoZMd', '3058701'), + (801, 165, 'attending', '2020-11-04 23:19:24', '2025-12-17 19:47:53', 'oAgeoZMd', '3058702'), + (801, 166, 'attending', '2020-11-19 03:36:21', '2025-12-17 19:47:54', 'oAgeoZMd', '3058704'), + (801, 167, 'attending', '2020-11-27 16:33:28', '2025-12-17 19:47:54', 'oAgeoZMd', '3058705'), + (801, 168, 'attending', '2020-06-15 18:57:14', '2025-12-17 19:47:58', 'oAgeoZMd', '3058740'), + (801, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'oAgeoZMd', '3058959'), + (801, 173, 'attending', '2020-06-14 17:27:24', '2025-12-17 19:47:58', 'oAgeoZMd', '3067093'), + (801, 175, 'maybe', '2020-06-15 18:57:16', '2025-12-17 19:47:58', 'oAgeoZMd', '3068305'), + (801, 181, 'maybe', '2020-06-20 00:46:08', '2025-12-17 19:47:58', 'oAgeoZMd', '3074513'), + (801, 182, 'attending', '2020-06-26 19:14:06', '2025-12-17 19:47:55', 'oAgeoZMd', '3074514'), + (801, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'oAgeoZMd', '3075228'), + (801, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'oAgeoZMd', '3075456'), + (801, 186, 'not_attending', '2020-06-24 23:16:57', '2025-12-17 19:47:55', 'oAgeoZMd', '3083791'), + (801, 187, 'attending', '2020-06-18 20:11:42', '2025-12-17 19:47:55', 'oAgeoZMd', '3085151'), + (801, 189, 'attending', '2020-06-20 14:52:07', '2025-12-17 19:47:58', 'oAgeoZMd', '3087016'), + (801, 190, 'not_attending', '2020-07-03 22:02:10', '2025-12-17 19:47:55', 'oAgeoZMd', '3087258'), + (801, 191, 'attending', '2020-07-03 22:02:06', '2025-12-17 19:47:55', 'oAgeoZMd', '3087259'), + (801, 192, 'attending', '2020-07-18 18:36:23', '2025-12-17 19:47:55', 'oAgeoZMd', '3087260'), + (801, 193, 'maybe', '2020-07-23 21:46:56', '2025-12-17 19:47:55', 'oAgeoZMd', '3087261'), + (801, 194, 'not_attending', '2020-08-01 18:34:36', '2025-12-17 19:47:56', 'oAgeoZMd', '3087262'), + (801, 196, 'attending', '2020-08-10 13:50:31', '2025-12-17 19:47:56', 'oAgeoZMd', '3087265'), + (801, 197, 'attending', '2020-08-22 15:03:25', '2025-12-17 19:47:56', 'oAgeoZMd', '3087266'), + (801, 198, 'attending', '2020-08-29 22:06:34', '2025-12-17 19:47:56', 'oAgeoZMd', '3087267'), + (801, 199, 'not_attending', '2020-09-05 21:51:27', '2025-12-17 19:47:56', 'oAgeoZMd', '3087268'), + (801, 201, 'attending', '2020-06-20 22:34:57', '2025-12-17 19:47:55', 'oAgeoZMd', '3088653'), + (801, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'oAgeoZMd', '3106813'), + (801, 210, 'maybe', '2020-06-30 02:49:35', '2025-12-17 19:47:55', 'oAgeoZMd', '3108972'), + (801, 223, 'attending', '2020-09-03 14:44:37', '2025-12-17 19:47:56', 'oAgeoZMd', '3129980'), + (801, 225, 'not_attending', '2020-07-13 21:09:13', '2025-12-17 19:47:55', 'oAgeoZMd', '3132378'), + (801, 226, 'attending', '2020-07-13 19:51:14', '2025-12-17 19:47:55', 'oAgeoZMd', '3132817'), + (801, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'oAgeoZMd', '3132820'), + (801, 228, 'not_attending', '2020-07-15 17:56:39', '2025-12-17 19:47:55', 'oAgeoZMd', '3132821'), + (801, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'oAgeoZMd', '3155321'), + (801, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'oAgeoZMd', '3162006'), + (801, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'oAgeoZMd', '3163442'), + (801, 281, 'attending', '2020-08-08 17:39:56', '2025-12-17 19:47:56', 'oAgeoZMd', '3166945'), + (801, 293, 'not_attending', '2020-08-19 14:20:57', '2025-12-17 19:47:56', 'oAgeoZMd', '3172832'), + (801, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'oAgeoZMd', '3172833'), + (801, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'oAgeoZMd', '3172834'), + (801, 296, 'not_attending', '2020-09-12 02:16:18', '2025-12-17 19:47:56', 'oAgeoZMd', '3172876'), + (801, 298, 'attending', '2020-08-27 21:38:14', '2025-12-17 19:47:56', 'oAgeoZMd', '3174556'), + (801, 306, 'attending', '2020-08-14 20:27:42', '2025-12-17 19:47:56', 'oAgeoZMd', '3179777'), + (801, 311, 'attending', '2020-09-02 16:58:05', '2025-12-17 19:47:56', 'oAgeoZMd', '3186057'), + (801, 312, 'attending', '2020-08-22 00:07:35', '2025-12-17 19:47:56', 'oAgeoZMd', '3187795'), + (801, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'oAgeoZMd', '3191735'), + (801, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'oAgeoZMd', '3200209'), + (801, 344, 'attending', '2020-10-05 21:14:43', '2025-12-17 19:47:53', 'oAgeoZMd', '3206906'), + (801, 359, 'attending', '2020-09-13 23:12:56', '2025-12-17 19:47:56', 'oAgeoZMd', '3212624'), + (801, 361, 'attending', '2020-09-14 19:12:09', '2025-12-17 19:47:56', 'oAgeoZMd', '3213323'), + (801, 362, 'not_attending', '2020-09-25 19:22:09', '2025-12-17 19:47:52', 'oAgeoZMd', '3214207'), + (801, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'oAgeoZMd', '3217037'), + (801, 365, 'not_attending', '2020-09-18 14:55:46', '2025-12-17 19:47:51', 'oAgeoZMd', '3218510'), + (801, 375, 'attending', '2020-10-08 14:55:57', '2025-12-17 19:47:52', 'oAgeoZMd', '3222825'), + (801, 380, 'not_attending', '2020-09-28 02:13:50', '2025-12-17 19:47:52', 'oAgeoZMd', '3226281'), + (801, 385, 'attending', '2020-10-03 22:05:25', '2025-12-17 19:47:52', 'oAgeoZMd', '3228698'), + (801, 386, 'attending', '2020-10-10 18:31:28', '2025-12-17 19:47:52', 'oAgeoZMd', '3228699'), + (801, 387, 'attending', '2020-10-14 00:43:07', '2025-12-17 19:47:52', 'oAgeoZMd', '3228700'), + (801, 388, 'attending', '2020-10-24 03:36:31', '2025-12-17 19:47:52', 'oAgeoZMd', '3228701'), + (801, 411, 'not_attending', '2020-10-11 22:04:58', '2025-12-17 19:47:52', 'oAgeoZMd', '3236596'), + (801, 416, 'not_attending', '2020-10-07 01:26:59', '2025-12-17 19:47:52', 'oAgeoZMd', '3238073'), + (801, 418, 'not_attending', '2020-10-14 18:09:16', '2025-12-17 19:47:52', 'oAgeoZMd', '3241728'), + (801, 420, 'attending', '2020-10-15 15:05:52', '2025-12-17 19:47:52', 'oAgeoZMd', '3245293'), + (801, 421, 'attending', '2020-10-23 16:32:51', '2025-12-17 19:47:52', 'oAgeoZMd', '3245294'), + (801, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'oAgeoZMd', '3245751'), + (801, 425, 'maybe', '2020-10-14 02:05:07', '2025-12-17 19:47:52', 'oAgeoZMd', '3250097'), + (801, 426, 'attending', '2020-10-14 14:18:44', '2025-12-17 19:47:52', 'oAgeoZMd', '3250232'), + (801, 427, 'attending', '2020-10-14 14:18:45', '2025-12-17 19:47:53', 'oAgeoZMd', '3250233'), + (801, 429, 'attending', '2020-11-30 06:24:35', '2025-12-17 19:47:54', 'oAgeoZMd', '3250523'), + (801, 435, 'not_attending', '2020-10-20 17:21:20', '2025-12-17 19:47:52', 'oAgeoZMd', '3254790'), + (801, 438, 'not_attending', '2020-10-29 20:10:12', '2025-12-17 19:47:53', 'oAgeoZMd', '3256163'), + (801, 439, 'attending', '2020-10-28 21:59:32', '2025-12-17 19:47:53', 'oAgeoZMd', '3256164'), + (801, 440, 'attending', '2020-11-04 23:19:26', '2025-12-17 19:47:53', 'oAgeoZMd', '3256168'), + (801, 441, 'attending', '2020-11-11 02:20:59', '2025-12-17 19:47:54', 'oAgeoZMd', '3256169'), + (801, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'oAgeoZMd', '3263578'), + (801, 445, 'attending', '2020-10-25 02:34:17', '2025-12-17 19:47:54', 'oAgeoZMd', '3266138'), + (801, 452, 'attending', '2020-11-16 20:24:13', '2025-12-17 19:47:54', 'oAgeoZMd', '3272981'), + (801, 456, 'not_attending', '2020-11-05 06:07:40', '2025-12-17 19:47:54', 'oAgeoZMd', '3276428'), + (801, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'oAgeoZMd', '3281467'), + (801, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'oAgeoZMd', '3281470'), + (801, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'oAgeoZMd', '3281829'), + (801, 468, 'attending', '2020-11-21 16:15:26', '2025-12-17 19:47:54', 'oAgeoZMd', '3285413'), + (801, 469, 'attending', '2020-11-26 04:03:06', '2025-12-17 19:47:54', 'oAgeoZMd', '3285414'), + (801, 476, 'not_attending', '2020-11-19 03:36:13', '2025-12-17 19:47:54', 'oAgeoZMd', '3286982'), + (801, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'oAgeoZMd', '3297764'), + (801, 493, 'not_attending', '2020-12-04 15:43:38', '2025-12-17 19:47:54', 'oAgeoZMd', '3313856'), + (801, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'oAgeoZMd', '3314909'), + (801, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'oAgeoZMd', '3314964'), + (801, 502, 'not_attending', '2020-12-09 06:28:56', '2025-12-17 19:47:55', 'oAgeoZMd', '3323365'), + (801, 513, 'not_attending', '2020-12-10 21:07:32', '2025-12-17 19:47:55', 'oAgeoZMd', '3329383'), + (801, 526, 'maybe', '2021-01-01 19:30:55', '2025-12-17 19:47:48', 'oAgeoZMd', '3351539'), + (801, 536, 'maybe', '2021-01-07 15:19:16', '2025-12-17 19:47:48', 'oAgeoZMd', '3386848'), + (801, 540, 'not_attending', '2021-01-07 15:18:57', '2025-12-17 19:47:48', 'oAgeoZMd', '3389527'), + (801, 543, 'not_attending', '2021-01-12 23:14:51', '2025-12-17 19:47:48', 'oAgeoZMd', '3396499'), + (801, 548, 'not_attending', '2021-01-12 23:14:49', '2025-12-17 19:47:48', 'oAgeoZMd', '3403650'), + (801, 549, 'not_attending', '2021-01-22 21:53:10', '2025-12-17 19:47:49', 'oAgeoZMd', '3406988'), + (801, 555, 'not_attending', '2021-01-22 21:53:07', '2025-12-17 19:47:49', 'oAgeoZMd', '3416576'), + (801, 558, 'not_attending', '2021-01-22 21:53:06', '2025-12-17 19:47:49', 'oAgeoZMd', '3418925'), + (801, 568, 'maybe', '2021-01-31 00:01:03', '2025-12-17 19:47:50', 'oAgeoZMd', '3430267'), + (801, 569, 'not_attending', '2021-01-27 16:59:57', '2025-12-17 19:47:49', 'oAgeoZMd', '3432673'), + (801, 579, 'attending', '2021-02-01 22:37:18', '2025-12-17 19:47:50', 'oAgeoZMd', '3440978'), + (801, 602, 'not_attending', '2021-02-10 21:43:42', '2025-12-17 19:47:50', 'oAgeoZMd', '3470303'), + (801, 603, 'attending', '2021-02-19 02:45:02', '2025-12-17 19:47:50', 'oAgeoZMd', '3470304'), + (801, 604, 'not_attending', '2021-02-25 18:40:10', '2025-12-17 19:47:50', 'oAgeoZMd', '3470305'), + (801, 605, 'attending', '2021-02-07 17:15:40', '2025-12-17 19:47:50', 'oAgeoZMd', '3470991'), + (801, 621, 'maybe', '2021-03-04 20:04:26', '2025-12-17 19:47:51', 'oAgeoZMd', '3517815'), + (801, 622, 'maybe', '2021-03-12 15:18:48', '2025-12-17 19:47:51', 'oAgeoZMd', '3517816'), + (801, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'oAgeoZMd', '3523941'), + (801, 627, 'not_attending', '2021-03-01 00:03:24', '2025-12-17 19:47:51', 'oAgeoZMd', '3533303'), + (801, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'oAgeoZMd', '3533850'), + (801, 637, 'attending', '2021-03-01 19:03:28', '2025-12-17 19:47:51', 'oAgeoZMd', '3536411'), + (801, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'oAgeoZMd', '3536632'), + (801, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'oAgeoZMd', '3536656'), + (801, 641, 'maybe', '2021-03-28 19:38:52', '2025-12-17 19:47:44', 'oAgeoZMd', '3539916'), + (801, 642, 'attending', '2021-04-09 22:34:49', '2025-12-17 19:47:44', 'oAgeoZMd', '3539917'), + (801, 643, 'not_attending', '2021-04-17 21:29:01', '2025-12-17 19:47:45', 'oAgeoZMd', '3539918'), + (801, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'oAgeoZMd', '3539919'), + (801, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'oAgeoZMd', '3539920'), + (801, 646, 'attending', '2021-05-15 21:37:28', '2025-12-17 19:47:46', 'oAgeoZMd', '3539921'), + (801, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'oAgeoZMd', '3539922'), + (801, 648, 'maybe', '2021-05-27 22:27:42', '2025-12-17 19:47:47', 'oAgeoZMd', '3539923'), + (801, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'oAgeoZMd', '3539927'), + (801, 679, 'attending', '2021-03-14 21:11:31', '2025-12-17 19:47:44', 'oAgeoZMd', '3547168'), + (801, 698, 'not_attending', '2021-03-21 20:14:20', '2025-12-17 19:47:44', 'oAgeoZMd', '3571867'), + (801, 705, 'attending', '2021-03-28 17:47:05', '2025-12-17 19:47:44', 'oAgeoZMd', '3581895'), + (801, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'oAgeoZMd', '3582734'), + (801, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'oAgeoZMd', '3583262'), + (801, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'oAgeoZMd', '3619523'), + (801, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'oAgeoZMd', '3661369'), + (801, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'oAgeoZMd', '3674262'), + (801, 735, 'maybe', '2021-04-06 19:43:31', '2025-12-17 19:47:46', 'oAgeoZMd', '3677402'), + (801, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'oAgeoZMd', '3730212'), + (801, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAgeoZMd', '3793156'), + (801, 823, 'maybe', '2021-06-12 22:07:43', '2025-12-17 19:47:48', 'oAgeoZMd', '3974109'), + (801, 827, 'attending', '2021-06-05 17:03:20', '2025-12-17 19:47:47', 'oAgeoZMd', '3975311'), + (801, 828, 'maybe', '2021-06-10 17:01:38', '2025-12-17 19:47:47', 'oAgeoZMd', '3975312'), + (801, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAgeoZMd', '3994992'), + (801, 844, 'attending', '2021-06-09 23:34:19', '2025-12-17 19:47:38', 'oAgeoZMd', '4014338'), + (801, 867, 'attending', '2021-06-26 16:11:33', '2025-12-17 19:47:38', 'oAgeoZMd', '4021848'), + (801, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAgeoZMd', '4136744'), + (801, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAgeoZMd', '4136937'), + (801, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAgeoZMd', '4136938'), + (801, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAgeoZMd', '4136947'), + (801, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAgeoZMd', '4210314'), + (801, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAgeoZMd', '4225444'), + (801, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAgeoZMd', '4239259'), + (801, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAgeoZMd', '4240316'), + (801, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAgeoZMd', '4240317'), + (801, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAgeoZMd', '4240318'), + (801, 903, 'maybe', '2021-08-14 20:41:35', '2025-12-17 19:47:42', 'oAgeoZMd', '4240320'), + (801, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAgeoZMd', '4250163'), + (801, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAgeoZMd', '4275957'), + (801, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAgeoZMd', '4277819'), + (801, 932, 'attending', '2021-08-22 15:47:00', '2025-12-17 19:47:42', 'oAgeoZMd', '4301664'), + (801, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAgeoZMd', '4301723'), + (801, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAgeoZMd', '4302093'), + (801, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAgeoZMd', '4304151'), + (801, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'oAgeoZMd', '4345519'), + (801, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAgeoZMd', '4356801'), + (801, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'oAgeoZMd', '4358025'), + (801, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAgeoZMd', '4366186'), + (801, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAgeoZMd', '4366187'), + (801, 990, 'attending', '2021-09-05 01:11:14', '2025-12-17 19:47:43', 'oAgeoZMd', '4420735'), + (801, 991, 'maybe', '2021-09-05 01:32:36', '2025-12-17 19:47:43', 'oAgeoZMd', '4420738'), + (801, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAgeoZMd', '4420739'), + (801, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAgeoZMd', '4420741'), + (801, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAgeoZMd', '4420744'), + (801, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAgeoZMd', '4420747'), + (801, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAgeoZMd', '4420748'), + (801, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAgeoZMd', '4420749'), + (801, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAgeoZMd', '4461883'), + (801, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAgeoZMd', '4508342'), + (801, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAgeoZMd', '4568602'), + (801, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'oAgeoZMd', '4572153'), + (801, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'oAgeoZMd', '4585962'), + (801, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'oAgeoZMd', '4596356'), + (801, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'oAgeoZMd', '4598860'), + (801, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'oAgeoZMd', '4598861'), + (801, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'oAgeoZMd', '4602797'), + (801, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'oAgeoZMd', '4637896'), + (801, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'oAgeoZMd', '4642994'), + (801, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'oAgeoZMd', '4642995'), + (801, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'oAgeoZMd', '4642996'), + (801, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'oAgeoZMd', '4642997'), + (801, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'oAgeoZMd', '4645687'), + (801, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'oAgeoZMd', '4645698'), + (801, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'oAgeoZMd', '4645704'), + (801, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'oAgeoZMd', '4645705'), + (801, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'oAgeoZMd', '4668385'), + (801, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAgeoZMd', '4694407'), + (801, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'oAgeoZMd', '4736497'), + (801, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'oAgeoZMd', '4736499'), + (801, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'oAgeoZMd', '4736500'), + (801, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'oAgeoZMd', '4736503'), + (801, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'oAgeoZMd', '4736504'), + (801, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'oAgeoZMd', '4746789'), + (801, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'oAgeoZMd', '4753929'), + (801, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'oAgeoZMd', '5038850'), + (801, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'oAgeoZMd', '5045826'), + (801, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'oAgeoZMd', '5132533'), + (801, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'oAgeoZMd', '5186582'), + (801, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'oAgeoZMd', '5186583'), + (801, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'oAgeoZMd', '5186585'), + (801, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'oAgeoZMd', '5190437'), + (801, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'oAgeoZMd', '5195095'), + (801, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'oAgeoZMd', '5215989'), + (801, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'oAgeoZMd', '5223686'), + (801, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'oAgeoZMd', '5247467'), + (801, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'oAgeoZMd', '5260800'), + (801, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'oAgeoZMd', '5269930'), + (801, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'oAgeoZMd', '5271448'), + (801, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'oAgeoZMd', '5271449'), + (801, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'oAgeoZMd', '5278159'), + (801, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'oAgeoZMd', '5363695'), + (801, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'oAgeoZMd', '5365960'), + (801, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'oAgeoZMd', '5378247'), + (801, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'oAgeoZMd', '5389605'), + (801, 1442, 'attending', '2022-06-13 15:33:55', '2025-12-17 19:47:17', 'oAgeoZMd', '5397265'), + (801, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'oAgeoZMd', '5404786'), + (801, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'oAgeoZMd', '5405203'), + (801, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'oAgeoZMd', '5412550'), + (801, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'oAgeoZMd', '5415046'), + (801, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'oAgeoZMd', '5422086'), + (801, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'oAgeoZMd', '5422406'), + (801, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'oAgeoZMd', '5424565'), + (801, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'oAgeoZMd', '5426882'), + (801, 1511, 'attending', '2022-07-09 13:05:30', '2025-12-17 19:47:19', 'oAgeoZMd', '5437733'), + (801, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'oAgeoZMd', '5441125'), + (801, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'oAgeoZMd', '5441126'), + (801, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'oAgeoZMd', '5441128'), + (801, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'oAgeoZMd', '5441131'), + (801, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'oAgeoZMd', '5441132'), + (801, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'oAgeoZMd', '5453325'), + (801, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'oAgeoZMd', '5454516'), + (801, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'oAgeoZMd', '5454605'), + (801, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'oAgeoZMd', '5455037'), + (801, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'oAgeoZMd', '5461278'), + (801, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'oAgeoZMd', '5469480'), + (801, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'oAgeoZMd', '5474663'), + (801, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'oAgeoZMd', '5482022'), + (801, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'oAgeoZMd', '5488912'), + (801, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'oAgeoZMd', '5492192'), + (801, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'oAgeoZMd', '5493139'), + (801, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'oAgeoZMd', '5493200'), + (801, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'oAgeoZMd', '5502188'), + (801, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'oAgeoZMd', '5505059'), + (801, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'oAgeoZMd', '5509055'), + (801, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'oAgeoZMd', '5512862'), + (801, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'oAgeoZMd', '5513985'), + (801, 1626, 'maybe', '2022-08-26 01:10:26', '2025-12-17 19:47:11', 'oAgeoZMd', '5519981'), + (801, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'oAgeoZMd', '5522550'), + (801, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'oAgeoZMd', '5534683'), + (801, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'oAgeoZMd', '5537735'), + (801, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'oAgeoZMd', '5540859'), + (801, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'oAgeoZMd', '5546619'), + (801, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'oAgeoZMd', '5557747'), + (801, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'oAgeoZMd', '5560255'), + (801, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'oAgeoZMd', '5562906'), + (801, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'oAgeoZMd', '5600604'), + (801, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'oAgeoZMd', '5605544'), + (801, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'oAgeoZMd', '5630960'), + (801, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'oAgeoZMd', '5630961'), + (801, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'oAgeoZMd', '5630962'), + (801, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'oAgeoZMd', '5630966'), + (801, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'oAgeoZMd', '5630967'), + (801, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'oAgeoZMd', '5630968'), + (801, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'oAgeoZMd', '5635406'), + (801, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'oAgeoZMd', '5638765'), + (801, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'oAgeoZMd', '5640097'), + (801, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'oAgeoZMd', '5640843'), + (801, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'oAgeoZMd', '5641521'), + (801, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'oAgeoZMd', '5642818'), + (801, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'oAgeoZMd', '5652395'), + (801, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'oAgeoZMd', '5670445'), + (801, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'oAgeoZMd', '5671637'), + (801, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'oAgeoZMd', '5672329'), + (801, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'oAgeoZMd', '5674057'), + (801, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'oAgeoZMd', '5674060'), + (801, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'oAgeoZMd', '5677461'), + (801, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'oAgeoZMd', '5698046'), + (801, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'oAgeoZMd', '5699760'), + (801, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'oAgeoZMd', '5741601'), + (801, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'oAgeoZMd', '5763458'), + (801, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'oAgeoZMd', '5774172'), + (801, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'oAgeoZMd', '5818247'), + (801, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'oAgeoZMd', '5819471'), + (801, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'oAgeoZMd', '5827739'), + (801, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'oAgeoZMd', '5844306'), + (801, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'oAgeoZMd', '5850159'), + (801, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'oAgeoZMd', '5858999'), + (801, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'oAgeoZMd', '5871984'), + (801, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'oAgeoZMd', '5876354'), + (801, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'oAgeoZMd', '5880939'), + (801, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'oAgeoZMd', '5880940'), + (801, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'oAgeoZMd', '5880942'), + (801, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'oAgeoZMd', '5880943'), + (801, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'oAgeoZMd', '5887890'), + (801, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'oAgeoZMd', '5888598'), + (801, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'oAgeoZMd', '5893260'), + (801, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'oAgeoZMd', '5899826'), + (801, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'oAgeoZMd', '5900199'), + (801, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'oAgeoZMd', '5900200'), + (801, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'oAgeoZMd', '5900202'), + (801, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'oAgeoZMd', '5900203'), + (801, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'oAgeoZMd', '5901108'), + (801, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'oAgeoZMd', '5901126'), + (801, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'oAgeoZMd', '5909655'), + (801, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'oAgeoZMd', '5910522'), + (801, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'oAgeoZMd', '5910526'), + (801, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'oAgeoZMd', '5910528'), + (801, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'oAgeoZMd', '5916219'), + (801, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'oAgeoZMd', '5936234'), + (801, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'oAgeoZMd', '5958351'), + (801, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'oAgeoZMd', '5959751'), + (801, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'oAgeoZMd', '5959755'), + (801, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'oAgeoZMd', '5960055'), + (801, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'oAgeoZMd', '5961684'), + (801, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'oAgeoZMd', '5962132'), + (801, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'oAgeoZMd', '5962133'), + (801, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'oAgeoZMd', '5962134'), + (801, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'oAgeoZMd', '5962317'), + (801, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'oAgeoZMd', '5962318'), + (801, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'oAgeoZMd', '5965933'), + (801, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'oAgeoZMd', '5967014'), + (801, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'oAgeoZMd', '5972815'), + (801, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'oAgeoZMd', '5974016'), + (801, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'oAgeoZMd', '5981515'), + (801, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'oAgeoZMd', '5993516'), + (801, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'oAgeoZMd', '5998939'), + (801, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'oAgeoZMd', '6028191'), + (801, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'oAgeoZMd', '6040066'), + (801, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'oAgeoZMd', '6042717'), + (801, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'oAgeoZMd', '6044838'), + (801, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'oAgeoZMd', '6044839'), + (801, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgeoZMd', '6045684'), + (801, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'oAgeoZMd', '6050104'), + (801, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'oAgeoZMd', '6053195'), + (801, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'oAgeoZMd', '6053198'), + (801, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'oAgeoZMd', '6056085'), + (801, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'oAgeoZMd', '6056916'), + (801, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'oAgeoZMd', '6059290'), + (801, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'oAgeoZMd', '6060328'), + (801, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'oAgeoZMd', '6061037'), + (801, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'oAgeoZMd', '6061039'), + (801, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'oAgeoZMd', '6067245'), + (801, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'oAgeoZMd', '6068094'), + (801, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'oAgeoZMd', '6068252'), + (801, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'oAgeoZMd', '6068253'), + (801, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'oAgeoZMd', '6068254'), + (801, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'oAgeoZMd', '6068280'), + (801, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'oAgeoZMd', '6069093'), + (801, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'oAgeoZMd', '6072528'), + (801, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'oAgeoZMd', '6079840'), + (801, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'oAgeoZMd', '6083398'), + (801, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'oAgeoZMd', '6093504'), + (801, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'oAgeoZMd', '6097414'), + (801, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'oAgeoZMd', '6097442'), + (801, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'oAgeoZMd', '6097684'), + (801, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'oAgeoZMd', '6098762'), + (801, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'oAgeoZMd', '6101361'), + (801, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'oAgeoZMd', '6101362'), + (801, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'oAgeoZMd', '6107314'), + (801, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'oAgeoZMd', '6120034'), + (801, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'oAgeoZMd', '6136733'), + (801, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'oAgeoZMd', '6137989'), + (801, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'oAgeoZMd', '6150864'), + (801, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'oAgeoZMd', '6155491'), + (801, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'oAgeoZMd', '6164417'), + (801, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'oAgeoZMd', '6166388'), + (801, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'oAgeoZMd', '6176439'), + (801, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'oAgeoZMd', '6182410'), + (801, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'oAgeoZMd', '6185812'), + (801, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'oAgeoZMd', '6187651'), + (801, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'oAgeoZMd', '6187963'), + (801, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'oAgeoZMd', '6187964'), + (801, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'oAgeoZMd', '6187966'), + (801, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'oAgeoZMd', '6187967'), + (801, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'oAgeoZMd', '6187969'), + (801, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'oAgeoZMd', '6334878'), + (801, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'oAgeoZMd', '6337236'), + (801, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'oAgeoZMd', '6337970'), + (801, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'oAgeoZMd', '6338308'), + (801, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'oAgeoZMd', '6341710'), + (801, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'oAgeoZMd', '6342044'), + (801, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'oAgeoZMd', '6342298'), + (801, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'oAgeoZMd', '6343294'), + (801, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'oAgeoZMd', '6347034'), + (801, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'oAgeoZMd', '6347056'), + (801, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'oAgeoZMd', '6353830'), + (801, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'oAgeoZMd', '6353831'), + (801, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'oAgeoZMd', '6357867'), + (801, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'oAgeoZMd', '6358652'), + (801, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'oAgeoZMd', '6361709'), + (801, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'oAgeoZMd', '6361710'), + (801, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'oAgeoZMd', '6361711'), + (801, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'oAgeoZMd', '6361712'), + (801, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'oAgeoZMd', '6361713'), + (801, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'oAgeoZMd', '6382573'), + (801, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'oAgeoZMd', '6388604'), + (801, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'oAgeoZMd', '6394629'), + (801, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'oAgeoZMd', '6394631'), + (801, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'oAgeoZMd', '6440863'), + (801, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'oAgeoZMd', '6445440'), + (801, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'oAgeoZMd', '6453951'), + (801, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'oAgeoZMd', '6461696'), + (801, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'oAgeoZMd', '6462129'), + (801, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'oAgeoZMd', '6463218'), + (801, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'oAgeoZMd', '6472181'), + (801, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'oAgeoZMd', '6482693'), + (801, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'oAgeoZMd', '6484200'), + (801, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'oAgeoZMd', '6484680'), + (801, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'oAgeoZMd', '6507741'), + (801, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'oAgeoZMd', '6514659'), + (801, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'oAgeoZMd', '6514660'), + (801, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'oAgeoZMd', '6519103'), + (801, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'oAgeoZMd', '6535681'), + (801, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'oAgeoZMd', '6584747'), + (801, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'oAgeoZMd', '6587097'), + (801, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'oAgeoZMd', '6609022'), + (801, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'oAgeoZMd', '6632757'), + (801, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAgeoZMd', '6644187'), + (801, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAgeoZMd', '6648951'), + (801, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAgeoZMd', '6648952'), + (801, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAgeoZMd', '6655401'), + (801, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAgeoZMd', '6661585'), + (801, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAgeoZMd', '6661588'), + (801, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAgeoZMd', '6661589'), + (801, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAgeoZMd', '6699906'), + (801, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'oAgeoZMd', '6699913'), + (801, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAgeoZMd', '6701109'), + (801, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAgeoZMd', '6705219'), + (801, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAgeoZMd', '6710153'), + (801, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAgeoZMd', '6711552'), + (801, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'oAgeoZMd', '6711553'), + (801, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAgeoZMd', '6722688'), + (801, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAgeoZMd', '6730620'), + (801, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAgeoZMd', '6740364'), + (801, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAgeoZMd', '6743829'), + (801, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAgeoZMd', '7030380'), + (801, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'oAgeoZMd', '7033677'), + (801, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAgeoZMd', '7044715'), + (801, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAgeoZMd', '7050318'), + (801, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAgeoZMd', '7050319'), + (801, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAgeoZMd', '7050322'), + (801, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAgeoZMd', '7057804'), + (801, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAgeoZMd', '7072824'), + (801, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAgeoZMd', '7074348'), + (801, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'oAgeoZMd', '7074364'), + (801, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAgeoZMd', '7089267'), + (801, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAgeoZMd', '7098747'), + (801, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'oAgeoZMd', '7113468'), + (801, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAgeoZMd', '7114856'), + (801, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAgeoZMd', '7114951'), + (801, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAgeoZMd', '7114955'), + (801, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAgeoZMd', '7114956'), + (801, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'oAgeoZMd', '7114957'), + (801, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAgeoZMd', '7159484'), + (801, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAgeoZMd', '7178446'), + (801, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'oAgeoZMd', '7220467'), + (801, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'oAgeoZMd', '7240354'), + (801, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'oAgeoZMd', '7251633'), + (801, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'oAgeoZMd', '7324073'), + (801, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'oAgeoZMd', '7324074'), + (801, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'oAgeoZMd', '7324075'), + (801, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'oAgeoZMd', '7324078'), + (801, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'oAgeoZMd', '7324082'), + (801, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'oAgeoZMd', '7331457'), + (801, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'oAgeoZMd', '7363643'), + (801, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'oAgeoZMd', '7368606'), + (801, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'oAgeoZMd', '7397462'), + (801, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'oAgeoZMd', '7424275'), + (801, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'oAgeoZMd', '7432751'), + (801, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'oAgeoZMd', '7432752'), + (801, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'oAgeoZMd', '7432753'), + (801, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'oAgeoZMd', '7432754'), + (801, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'oAgeoZMd', '7432755'), + (801, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'oAgeoZMd', '7432756'), + (801, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'oAgeoZMd', '7432758'), + (801, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'oAgeoZMd', '7432759'), + (801, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'oAgeoZMd', '7433834'), + (801, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'oAgeoZMd', '7470197'), + (801, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'oAgeoZMd', '7685613'), + (801, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'oAgeoZMd', '7688194'), + (801, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'oAgeoZMd', '7688196'), + (801, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'oAgeoZMd', '7688289'), + (801, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'oAgeoZMd', '7692763'), + (801, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'oAgeoZMd', '7697552'), + (801, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'oAgeoZMd', '7699878'), + (801, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'oAgeoZMd', '7704043'), + (801, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'oAgeoZMd', '7712467'), + (801, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'oAgeoZMd', '7713585'), + (801, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'oAgeoZMd', '7713586'), + (801, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'oAgeoZMd', '7738518'), + (801, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'oAgeoZMd', '7750636'), + (801, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'oAgeoZMd', '7796540'), + (801, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'oAgeoZMd', '7796541'), + (801, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'oAgeoZMd', '7796542'), + (801, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'oAgeoZMd', '7825913'), + (801, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'oAgeoZMd', '7826209'), + (801, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'oAgeoZMd', '7834742'), + (801, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'oAgeoZMd', '7842108'), + (801, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'oAgeoZMd', '7842902'), + (801, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'oAgeoZMd', '7842903'), + (801, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'oAgeoZMd', '7842904'), + (801, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'oAgeoZMd', '7842905'), + (801, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'oAgeoZMd', '7855719'), + (801, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'oAgeoZMd', '7860683'), + (801, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'oAgeoZMd', '7860684'), + (801, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'oAgeoZMd', '7866095'), + (801, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'oAgeoZMd', '7869170'), + (801, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'oAgeoZMd', '7869188'), + (801, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'oAgeoZMd', '7869201'), + (801, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'oAgeoZMd', '7877465'), + (801, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'oAgeoZMd', '7888250'), + (801, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'oAgeoZMd', '7904777'), + (801, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'oAgeoZMd', '8349164'), + (801, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'oAgeoZMd', '8349545'), + (801, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'oAgeoZMd', '8368028'), + (801, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'oAgeoZMd', '8368029'), + (801, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'oAgeoZMd', '8388462'), + (801, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'oAgeoZMd', '8400273'), + (801, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'oAgeoZMd', '8400275'), + (801, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'oAgeoZMd', '8400276'), + (801, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'oAgeoZMd', '8404977'), + (801, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'oAgeoZMd', '8430783'), + (801, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'oAgeoZMd', '8430784'), + (801, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'oAgeoZMd', '8430799'), + (801, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'oAgeoZMd', '8430800'), + (801, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'oAgeoZMd', '8430801'), + (801, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'oAgeoZMd', '8438709'), + (801, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'oAgeoZMd', '8457738'), + (801, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'oAgeoZMd', '8459566'), + (801, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'oAgeoZMd', '8459567'), + (801, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'oAgeoZMd', '8461032'), + (801, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'oAgeoZMd', '8477877'), + (801, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'oAgeoZMd', '8485688'), + (801, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'oAgeoZMd', '8490587'), + (801, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'oAgeoZMd', '8493552'), + (801, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'oAgeoZMd', '8493553'), + (801, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'oAgeoZMd', '8493554'), + (801, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'oAgeoZMd', '8493555'), + (801, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'oAgeoZMd', '8493556'), + (801, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'oAgeoZMd', '8493557'), + (801, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'oAgeoZMd', '8493558'), + (801, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'oAgeoZMd', '8493559'), + (801, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'oAgeoZMd', '8493560'), + (801, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'oAgeoZMd', '8493561'), + (801, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'oAgeoZMd', '8493572'), + (801, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'oAgeoZMd', '8540725'), + (801, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'oAgeoZMd', '8555421'), + (802, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mMp5NZYd', '5630960'), + (802, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mMp5NZYd', '5630961'), + (802, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mMp5NZYd', '5630962'), + (802, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mMp5NZYd', '5630966'), + (802, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', 'mMp5NZYd', '5638765'), + (802, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mMp5NZYd', '5640097'), + (802, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mMp5NZYd', '5652395'), + (802, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mMp5NZYd', '5671637'), + (802, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mMp5NZYd', '5672329'), + (802, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mMp5NZYd', '5674057'), + (802, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mMp5NZYd', '5674060'), + (802, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mMp5NZYd', '5677461'), + (802, 1775, 'attending', '2022-10-28 11:16:49', '2025-12-17 19:47:14', 'mMp5NZYd', '5679063'), + (802, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mMp5NZYd', '5698046'), + (802, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'mMp5NZYd', '5699760'), + (802, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mMp5NZYd', '6045684'), + (803, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxDr08wd', '6045684'), + (804, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'o4PyBMnd', '3149489'), + (804, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'o4PyBMnd', '3149491'), + (804, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'o4PyBMnd', '3236450'), + (804, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'o4PyBMnd', '3236452'), + (804, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'o4PyBMnd', '3539922'), + (804, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'o4PyBMnd', '3539923'), + (804, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'o4PyBMnd', '3963335'), + (804, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'o4PyBMnd', '3975311'), + (804, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'o4PyBMnd', '3975312'), + (804, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'o4PyBMnd', '3994992'), + (804, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'o4PyBMnd', '4014338'), + (804, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'o4PyBMnd', '4136744'), + (804, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PyBMnd', '6045684'), + (805, 2515, 'maybe', '2024-05-02 16:52:25', '2025-12-17 19:46:35', '841XajMA', '7074355'), + (805, 2520, 'attending', '2024-05-14 23:35:38', '2025-12-17 19:46:35', '841XajMA', '7074360'), + (805, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '841XajMA', '7074364'), + (805, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '841XajMA', '7114957'), + (805, 2602, 'attending', '2024-04-28 16:17:23', '2025-12-17 19:46:34', '841XajMA', '7220467'), + (805, 2604, 'maybe', '2024-05-26 20:12:25', '2025-12-17 19:46:36', '841XajMA', '7225670'), + (805, 2605, 'attending', '2024-05-03 16:44:40', '2025-12-17 19:46:35', '841XajMA', '7229243'), + (805, 2606, 'attending', '2024-04-28 15:47:51', '2025-12-17 19:46:35', '841XajMA', '7230496'), + (805, 2608, 'attending', '2024-05-01 13:43:54', '2025-12-17 19:46:35', '841XajMA', '7240272'), + (805, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '841XajMA', '7240354'), + (805, 2613, 'attending', '2024-05-02 16:52:19', '2025-12-17 19:46:35', '841XajMA', '7247644'), + (805, 2614, 'maybe', '2024-05-02 16:52:36', '2025-12-17 19:46:35', '841XajMA', '7247645'), + (805, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '841XajMA', '7251633'), + (805, 2618, 'attending', '2024-05-05 03:10:07', '2025-12-17 19:46:35', '841XajMA', '7251685'), + (805, 2620, 'maybe', '2024-05-15 13:58:34', '2025-12-17 19:46:35', '841XajMA', '7258097'), + (805, 2625, 'not_attending', '2024-05-12 03:05:57', '2025-12-17 19:46:35', '841XajMA', '7263302'), + (805, 2626, 'attending', '2024-05-15 13:59:06', '2025-12-17 19:46:35', '841XajMA', '7264723'), + (805, 2628, 'maybe', '2024-05-26 20:12:48', '2025-12-17 19:46:36', '841XajMA', '7264725'), + (805, 2629, 'attending', '2024-06-08 02:20:13', '2025-12-17 19:46:28', '841XajMA', '7264726'), + (805, 2630, 'attending', '2024-05-14 23:35:24', '2025-12-17 19:46:35', '841XajMA', '7264801'), + (805, 2632, 'not_attending', '2024-05-14 12:44:20', '2025-12-17 19:46:35', '841XajMA', '7269123'), + (805, 2633, 'attending', '2024-05-15 13:58:55', '2025-12-17 19:46:35', '841XajMA', '7270095'), + (805, 2644, 'attending', '2024-05-23 21:21:16', '2025-12-17 19:46:35', '841XajMA', '7279039'), + (805, 2651, 'maybe', '2024-05-24 21:26:58', '2025-12-17 19:46:35', '841XajMA', '7288200'), + (805, 2652, 'maybe', '2024-05-26 20:12:43', '2025-12-17 19:46:36', '841XajMA', '7288339'), + (805, 2655, 'maybe', '2024-05-27 23:43:57', '2025-12-17 19:46:35', '841XajMA', '7291225'), + (805, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '841XajMA', '7302674'), + (805, 2666, 'maybe', '2024-06-06 23:51:16', '2025-12-17 19:46:36', '841XajMA', '7307775'), + (805, 2667, 'maybe', '2024-06-05 12:22:48', '2025-12-17 19:46:36', '841XajMA', '7307776'), + (805, 2668, 'attending', '2024-06-06 02:09:56', '2025-12-17 19:46:36', '841XajMA', '7308821'), + (805, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '841XajMA', '7324073'), + (805, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '841XajMA', '7324074'), + (805, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '841XajMA', '7324075'), + (805, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '841XajMA', '7324078'), + (805, 2696, 'attending', '2024-08-24 11:04:45', '2025-12-17 19:46:32', '841XajMA', '7324081'), + (805, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '841XajMA', '7324082'), + (805, 2699, 'maybe', '2024-06-12 16:47:43', '2025-12-17 19:46:28', '841XajMA', '7324385'), + (805, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '841XajMA', '7331457'), + (805, 2723, 'maybe', '2024-06-20 19:06:43', '2025-12-17 19:46:29', '841XajMA', '7332389'), + (805, 2724, 'attending', '2024-06-26 00:38:49', '2025-12-17 19:46:29', '841XajMA', '7332562'), + (805, 2729, 'maybe', '2024-06-23 16:47:52', '2025-12-17 19:46:29', '841XajMA', '7335092'), + (805, 2763, 'maybe', '2024-07-21 13:23:01', '2025-12-17 19:46:30', '841XajMA', '7363594'), + (805, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '841XajMA', '7363643'), + (805, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '841XajMA', '7368606'), + (805, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '841XajMA', '7397462'), + (805, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '841XajMA', '7424275'), + (805, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '841XajMA', '7424276'), + (805, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '841XajMA', '7432751'), + (805, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '841XajMA', '7432752'), + (805, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '841XajMA', '7432753'), + (805, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '841XajMA', '7432754'), + (805, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '841XajMA', '7432755'), + (805, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '841XajMA', '7432756'), + (805, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '841XajMA', '7432758'), + (805, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '841XajMA', '7432759'), + (805, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '841XajMA', '7433834'), + (805, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '841XajMA', '7470197'), + (805, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '841XajMA', '7685613'), + (805, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '841XajMA', '7688194'), + (805, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '841XajMA', '7688196'), + (805, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '841XajMA', '7688289'), + (805, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '841XajMA', '7692763'), + (805, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '841XajMA', '7697552'), + (805, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '841XajMA', '7699878'), + (806, 258, 'not_attending', '2021-05-29 17:28:18', '2025-12-17 19:47:47', 'rdOJWoP4', '3149489'), + (806, 397, 'not_attending', '2021-05-27 22:05:46', '2025-12-17 19:47:47', 'rdOJWoP4', '3236452'), + (806, 647, 'maybe', '2021-05-22 00:07:46', '2025-12-17 19:47:46', 'rdOJWoP4', '3539922'), + (806, 648, 'maybe', '2021-05-24 22:13:03', '2025-12-17 19:47:47', 'rdOJWoP4', '3539923'), + (806, 725, 'maybe', '2021-05-23 21:39:10', '2025-12-17 19:47:47', 'rdOJWoP4', '3661372'), + (806, 773, 'not_attending', '2021-05-27 18:32:57', '2025-12-17 19:47:46', 'rdOJWoP4', '3729399'), + (806, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'rdOJWoP4', '3963335'), + (806, 821, 'maybe', '2021-05-31 18:22:32', '2025-12-17 19:47:47', 'rdOJWoP4', '3963965'), + (806, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'rdOJWoP4', '3974109'), + (806, 824, 'maybe', '2021-06-03 22:48:05', '2025-12-17 19:47:47', 'rdOJWoP4', '3974112'), + (806, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'rdOJWoP4', '3975311'), + (806, 828, 'not_attending', '2021-06-12 22:59:34', '2025-12-17 19:47:47', 'rdOJWoP4', '3975312'), + (806, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOJWoP4', '3994992'), + (806, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'rdOJWoP4', '4014338'), + (806, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'rdOJWoP4', '4021848'), + (806, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'rdOJWoP4', '4136744'), + (806, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'rdOJWoP4', '4136937'), + (806, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'rdOJWoP4', '4136938'), + (806, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'rdOJWoP4', '4136947'), + (806, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOJWoP4', '4210314'), + (806, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'rdOJWoP4', '4225444'), + (806, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdOJWoP4', '4239259'), + (806, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'rdOJWoP4', '4240316'), + (806, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'rdOJWoP4', '4240317'), + (806, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdOJWoP4', '4240318'), + (806, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'rdOJWoP4', '4240320'), + (806, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdOJWoP4', '4250163'), + (806, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'rdOJWoP4', '4275957'), + (806, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdOJWoP4', '4277819'), + (806, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdOJWoP4', '4301723'), + (806, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'rdOJWoP4', '4302093'), + (806, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOJWoP4', '4304151'), + (806, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'rdOJWoP4', '4345519'), + (806, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOJWoP4', '4356801'), + (806, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'rdOJWoP4', '4358025'), + (806, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'rdOJWoP4', '4366186'), + (806, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdOJWoP4', '4366187'), + (806, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'rdOJWoP4', '4402823'), + (806, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'rdOJWoP4', '4420735'), + (806, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'rdOJWoP4', '4420738'), + (806, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'rdOJWoP4', '4420739'), + (806, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'rdOJWoP4', '4420741'), + (806, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'rdOJWoP4', '4420744'), + (806, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'rdOJWoP4', '4420747'), + (806, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'rdOJWoP4', '4420748'), + (806, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'rdOJWoP4', '4420749'), + (806, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'rdOJWoP4', '4461883'), + (806, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOJWoP4', '6045684'), + (807, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd9oGkMpA', '4736503'), + (807, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd9oGkMpA', '4736504'), + (807, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd9oGkMpA', '5045826'), + (807, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd9oGkMpA', '5132533'), + (807, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd9oGkMpA', '5186582'), + (807, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd9oGkMpA', '5186583'), + (807, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd9oGkMpA', '5186585'), + (807, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9oGkMpA', '5190437'), + (807, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'd9oGkMpA', '5196763'), + (807, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'd9oGkMpA', '5199460'), + (807, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9oGkMpA', '5215989'), + (807, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd9oGkMpA', '6045684'), + (808, 2104, 'attending', '2023-06-19 03:13:45', '2025-12-17 19:46:50', 'dKZnkrY4', '6149499'), + (808, 2108, 'attending', '2023-06-18 17:37:22', '2025-12-17 19:46:50', 'dKZnkrY4', '6150864'), + (808, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKZnkrY4', '6155491'), + (808, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKZnkrY4', '6164417'), + (808, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKZnkrY4', '6166388'), + (808, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKZnkrY4', '6176439'), + (808, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKZnkrY4', '6182410'), + (808, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKZnkrY4', '6185812'), + (808, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKZnkrY4', '6187651'), + (808, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKZnkrY4', '6187963'), + (808, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKZnkrY4', '6187964'), + (808, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKZnkrY4', '6187966'), + (808, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKZnkrY4', '6187967'), + (808, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKZnkrY4', '6187969'), + (808, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKZnkrY4', '6334878'), + (808, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dKZnkrY4', '6337236'), + (808, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKZnkrY4', '6337970'), + (808, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dKZnkrY4', '6338308'), + (808, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dKZnkrY4', '6340845'), + (808, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dKZnkrY4', '6341710'), + (808, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKZnkrY4', '6342044'), + (808, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKZnkrY4', '6342298'), + (808, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dKZnkrY4', '6343294'), + (808, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKZnkrY4', '6347034'), + (808, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKZnkrY4', '6347056'), + (808, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKZnkrY4', '6353830'), + (808, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKZnkrY4', '6353831'), + (808, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKZnkrY4', '6357867'), + (808, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKZnkrY4', '6358652'), + (808, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKZnkrY4', '6361709'), + (808, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKZnkrY4', '6361710'), + (808, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKZnkrY4', '6361711'), + (808, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dKZnkrY4', '6361712'), + (808, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKZnkrY4', '6361713'), + (808, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKZnkrY4', '6382573'), + (808, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dKZnkrY4', '6388604'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (808, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKZnkrY4', '6394629'), + (808, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKZnkrY4', '6394631'), + (808, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKZnkrY4', '6440863'), + (808, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKZnkrY4', '6445440'), + (808, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKZnkrY4', '6453951'), + (808, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKZnkrY4', '6461696'), + (808, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKZnkrY4', '6462129'), + (808, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKZnkrY4', '6463218'), + (808, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dKZnkrY4', '6472181'), + (808, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZnkrY4', '6482693'), + (808, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZnkrY4', '6484200'), + (808, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKZnkrY4', '6484680'), + (808, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZnkrY4', '6507741'), + (808, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZnkrY4', '6514659'), + (808, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZnkrY4', '6514660'), + (808, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZnkrY4', '6519103'), + (808, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZnkrY4', '6535681'), + (808, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZnkrY4', '6584747'), + (808, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZnkrY4', '6587097'), + (808, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZnkrY4', '6609022'), + (808, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZnkrY4', '6632757'), + (808, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZnkrY4', '6644187'), + (808, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZnkrY4', '6648951'), + (808, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZnkrY4', '6648952'), + (808, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZnkrY4', '6655401'), + (808, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZnkrY4', '6661585'), + (808, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZnkrY4', '6661588'), + (808, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZnkrY4', '6661589'), + (808, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZnkrY4', '6699906'), + (808, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZnkrY4', '6701109'), + (808, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZnkrY4', '6705219'), + (808, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZnkrY4', '6710153'), + (808, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZnkrY4', '6711552'), + (808, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZnkrY4', '6711553'), + (809, 252, 'attending', '2021-02-23 22:27:34', '2025-12-17 19:47:50', '1ArjK9lA', '3149483'), + (809, 574, 'not_attending', '2021-03-05 05:02:37', '2025-12-17 19:47:51', '1ArjK9lA', '3435543'), + (809, 604, 'attending', '2021-02-23 22:28:04', '2025-12-17 19:47:50', '1ArjK9lA', '3470305'), + (809, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '1ArjK9lA', '3517815'), + (809, 622, 'attending', '2021-03-14 00:06:45', '2025-12-17 19:47:51', '1ArjK9lA', '3517816'), + (809, 623, 'attending', '2021-02-26 00:25:39', '2025-12-17 19:47:50', '1ArjK9lA', '3523941'), + (809, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '1ArjK9lA', '3533850'), + (809, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '1ArjK9lA', '3536632'), + (809, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '1ArjK9lA', '3536656'), + (809, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '1ArjK9lA', '3539916'), + (809, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '1ArjK9lA', '3539917'), + (809, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '1ArjK9lA', '3539918'), + (809, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '1ArjK9lA', '3539919'), + (809, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '1ArjK9lA', '3539920'), + (809, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '1ArjK9lA', '3539921'), + (809, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '1ArjK9lA', '3539922'), + (809, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '1ArjK9lA', '3539923'), + (809, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '1ArjK9lA', '3539927'), + (809, 705, 'not_attending', '2021-03-28 18:10:07', '2025-12-17 19:47:44', '1ArjK9lA', '3581895'), + (809, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '1ArjK9lA', '3582734'), + (809, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '1ArjK9lA', '3583262'), + (809, 717, 'attending', '2021-03-28 18:10:09', '2025-12-17 19:47:44', '1ArjK9lA', '3619523'), + (809, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '1ArjK9lA', '3661369'), + (809, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '1ArjK9lA', '3674262'), + (809, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '1ArjK9lA', '3677402'), + (809, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '1ArjK9lA', '3730212'), + (809, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArjK9lA', '6045684'), + (810, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dx6OrX1A', '4736499'), + (810, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dx6OrX1A', '4736503'), + (810, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dx6OrX1A', '4736504'), + (810, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dx6OrX1A', '5038850'), + (810, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dx6OrX1A', '5045826'), + (810, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dx6OrX1A', '5132533'), + (810, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dx6OrX1A', '6045684'), + (811, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'nda5rLnd', '3314964'), + (811, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'nda5rLnd', '3323365'), + (811, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'nda5rLnd', '3329383'), + (811, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'nda5rLnd', '3351539'), + (811, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'nda5rLnd', '3386848'), + (811, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'nda5rLnd', '3389527'), + (811, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'nda5rLnd', '3396499'), + (811, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'nda5rLnd', '3403650'), + (811, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nda5rLnd', '3406988'), + (811, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'nda5rLnd', '3416576'), + (811, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'nda5rLnd', '3430267'), + (811, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'nda5rLnd', '3470305'), + (811, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'nda5rLnd', '3470991'), + (811, 621, 'attending', '2021-03-05 15:32:05', '2025-12-17 19:47:51', 'nda5rLnd', '3517815'), + (811, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'nda5rLnd', '3517816'), + (811, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'nda5rLnd', '3523941'), + (811, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'nda5rLnd', '3533850'), + (811, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'nda5rLnd', '3536632'), + (811, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'nda5rLnd', '3536656'), + (811, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'nda5rLnd', '3539916'), + (811, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'nda5rLnd', '3539917'), + (811, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'nda5rLnd', '3539918'), + (811, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'nda5rLnd', '3539919'), + (811, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'nda5rLnd', '3539920'), + (811, 646, 'attending', '2021-05-14 14:10:11', '2025-12-17 19:47:46', 'nda5rLnd', '3539921'), + (811, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'nda5rLnd', '3539922'), + (811, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'nda5rLnd', '3539923'), + (811, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'nda5rLnd', '3539927'), + (811, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'nda5rLnd', '3582734'), + (811, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'nda5rLnd', '3583262'), + (811, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'nda5rLnd', '3619523'), + (811, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'nda5rLnd', '3661369'), + (811, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'nda5rLnd', '3674262'), + (811, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'nda5rLnd', '3677402'), + (811, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'nda5rLnd', '3730212'), + (811, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'nda5rLnd', '3793156'), + (811, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'nda5rLnd', '3974109'), + (811, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'nda5rLnd', '3975311'), + (811, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'nda5rLnd', '3975312'), + (811, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'nda5rLnd', '3994992'), + (811, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'nda5rLnd', '4014338'), + (811, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'nda5rLnd', '4021848'), + (811, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'nda5rLnd', '4136744'), + (811, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'nda5rLnd', '4136937'), + (811, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'nda5rLnd', '4136938'), + (811, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'nda5rLnd', '4136947'), + (811, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nda5rLnd', '4210314'), + (811, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'nda5rLnd', '4225444'), + (811, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'nda5rLnd', '4239259'), + (811, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'nda5rLnd', '4240316'), + (811, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'nda5rLnd', '4240317'), + (811, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'nda5rLnd', '4240318'), + (811, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'nda5rLnd', '4240320'), + (811, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'nda5rLnd', '4250163'), + (811, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'nda5rLnd', '4275957'), + (811, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nda5rLnd', '4277819'), + (811, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'nda5rLnd', '4301723'), + (811, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'nda5rLnd', '4302093'), + (811, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nda5rLnd', '4304151'), + (811, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nda5rLnd', '4356801'), + (811, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'nda5rLnd', '4366186'), + (811, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'nda5rLnd', '4366187'), + (811, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'nda5rLnd', '4420735'), + (811, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nda5rLnd', '4420738'), + (811, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nda5rLnd', '4420739'), + (811, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nda5rLnd', '4420741'), + (811, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nda5rLnd', '4420744'), + (811, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nda5rLnd', '4420747'), + (811, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nda5rLnd', '4420748'), + (811, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nda5rLnd', '4420749'), + (811, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nda5rLnd', '4461883'), + (811, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nda5rLnd', '4508342'), + (811, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nda5rLnd', '4568602'), + (811, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nda5rLnd', '4572153'), + (811, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'nda5rLnd', '4585962'), + (811, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'nda5rLnd', '4596356'), + (811, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nda5rLnd', '4598860'), + (811, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'nda5rLnd', '4598861'), + (811, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'nda5rLnd', '4602797'), + (811, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'nda5rLnd', '4637896'), + (811, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nda5rLnd', '4642994'), + (811, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'nda5rLnd', '4642995'), + (811, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'nda5rLnd', '4642996'), + (811, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'nda5rLnd', '4642997'), + (811, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'nda5rLnd', '4645687'), + (811, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nda5rLnd', '4645698'), + (811, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'nda5rLnd', '4645704'), + (811, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'nda5rLnd', '4645705'), + (811, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nda5rLnd', '4668385'), + (811, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nda5rLnd', '4694407'), + (811, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nda5rLnd', '4736497'), + (811, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nda5rLnd', '4736499'), + (811, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nda5rLnd', '4736500'), + (811, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nda5rLnd', '4736503'), + (811, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nda5rLnd', '4736504'), + (811, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nda5rLnd', '4746789'), + (811, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'nda5rLnd', '4753929'), + (811, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nda5rLnd', '5038850'), + (811, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nda5rLnd', '5045826'), + (811, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nda5rLnd', '5132533'), + (811, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'nda5rLnd', '5186582'), + (811, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nda5rLnd', '5186583'), + (811, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nda5rLnd', '5186585'), + (811, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'nda5rLnd', '5190437'), + (811, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nda5rLnd', '5195095'), + (811, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nda5rLnd', '5215989'), + (811, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nda5rLnd', '5223686'), + (811, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nda5rLnd', '5247467'), + (811, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nda5rLnd', '5260800'), + (811, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nda5rLnd', '5269930'), + (811, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nda5rLnd', '5271448'), + (811, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'nda5rLnd', '5271449'), + (811, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nda5rLnd', '5278159'), + (811, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'nda5rLnd', '5363695'), + (811, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nda5rLnd', '5365960'), + (811, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nda5rLnd', '5378247'), + (811, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'nda5rLnd', '5389605'), + (811, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nda5rLnd', '5397265'), + (811, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nda5rLnd', '5404786'), + (811, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nda5rLnd', '5405203'), + (811, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nda5rLnd', '5412550'), + (811, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nda5rLnd', '5415046'), + (811, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nda5rLnd', '5422086'), + (811, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nda5rLnd', '5422406'), + (811, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nda5rLnd', '5424565'), + (811, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nda5rLnd', '5426882'), + (811, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nda5rLnd', '5441125'), + (811, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nda5rLnd', '5441126'), + (811, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nda5rLnd', '5441128'), + (811, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nda5rLnd', '5441131'), + (811, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nda5rLnd', '5441132'), + (811, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nda5rLnd', '5453325'), + (811, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nda5rLnd', '5454516'), + (811, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nda5rLnd', '5454605'), + (811, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nda5rLnd', '5455037'), + (811, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nda5rLnd', '5461278'), + (811, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nda5rLnd', '5469480'), + (811, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nda5rLnd', '5474663'), + (811, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nda5rLnd', '5482022'), + (811, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nda5rLnd', '5488912'), + (811, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nda5rLnd', '5492192'), + (811, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nda5rLnd', '5493139'), + (811, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nda5rLnd', '5493200'), + (811, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nda5rLnd', '5502188'), + (811, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nda5rLnd', '5505059'), + (811, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nda5rLnd', '5509055'), + (811, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nda5rLnd', '5512862'), + (811, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nda5rLnd', '5513985'), + (811, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nda5rLnd', '5519981'), + (811, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nda5rLnd', '5522550'), + (811, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nda5rLnd', '5534683'), + (811, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nda5rLnd', '5537735'), + (811, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nda5rLnd', '5540859'), + (811, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nda5rLnd', '5546619'), + (811, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nda5rLnd', '5557747'), + (811, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nda5rLnd', '5560255'), + (811, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nda5rLnd', '5562906'), + (811, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nda5rLnd', '5600604'), + (811, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nda5rLnd', '5605544'), + (811, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nda5rLnd', '5630960'), + (811, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nda5rLnd', '5630961'), + (811, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nda5rLnd', '5630962'), + (811, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nda5rLnd', '5630966'), + (811, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nda5rLnd', '5630967'), + (811, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nda5rLnd', '5630968'), + (811, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nda5rLnd', '5635406'), + (811, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nda5rLnd', '5638765'), + (811, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nda5rLnd', '5640097'), + (811, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nda5rLnd', '5640843'), + (811, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nda5rLnd', '5641521'), + (811, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nda5rLnd', '5642818'), + (811, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nda5rLnd', '5652395'), + (811, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nda5rLnd', '5670445'), + (811, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nda5rLnd', '5671637'), + (811, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nda5rLnd', '5672329'), + (811, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nda5rLnd', '5674057'), + (811, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nda5rLnd', '5674060'), + (811, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nda5rLnd', '5677461'), + (811, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nda5rLnd', '5698046'), + (811, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nda5rLnd', '5699760'), + (811, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nda5rLnd', '5741601'), + (811, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nda5rLnd', '5763458'), + (811, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nda5rLnd', '5774172'), + (811, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nda5rLnd', '5818247'), + (811, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nda5rLnd', '5819471'), + (811, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'nda5rLnd', '5827739'), + (811, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nda5rLnd', '5844306'), + (811, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nda5rLnd', '5850159'), + (811, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nda5rLnd', '5858999'), + (811, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nda5rLnd', '5871984'), + (811, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nda5rLnd', '5876354'), + (811, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nda5rLnd', '5880939'), + (811, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nda5rLnd', '5880940'), + (811, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nda5rLnd', '5880942'), + (811, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nda5rLnd', '5880943'), + (811, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nda5rLnd', '5887890'), + (811, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nda5rLnd', '5888598'), + (811, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nda5rLnd', '5893260'), + (811, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nda5rLnd', '5899826'), + (811, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nda5rLnd', '5900199'), + (811, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nda5rLnd', '5900200'), + (811, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nda5rLnd', '5900202'), + (811, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nda5rLnd', '5900203'), + (811, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nda5rLnd', '5901108'), + (811, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nda5rLnd', '5901126'), + (811, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'nda5rLnd', '5901606'), + (811, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nda5rLnd', '5909655'), + (811, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nda5rLnd', '5910522'), + (811, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nda5rLnd', '5910526'), + (811, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nda5rLnd', '5910528'), + (811, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nda5rLnd', '5916219'), + (811, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nda5rLnd', '5936234'), + (811, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nda5rLnd', '5958351'), + (811, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nda5rLnd', '5959751'), + (811, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nda5rLnd', '5959755'), + (811, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nda5rLnd', '5960055'), + (811, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nda5rLnd', '5961684'), + (811, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nda5rLnd', '5962132'), + (811, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nda5rLnd', '5962133'), + (811, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nda5rLnd', '5962134'), + (811, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nda5rLnd', '5962317'), + (811, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nda5rLnd', '5962318'), + (811, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nda5rLnd', '5965933'), + (811, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nda5rLnd', '5967014'), + (811, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nda5rLnd', '5972815'), + (811, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nda5rLnd', '5974016'), + (811, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nda5rLnd', '5981515'), + (811, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nda5rLnd', '5993516'), + (811, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nda5rLnd', '5998939'), + (811, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nda5rLnd', '6028191'), + (811, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nda5rLnd', '6040066'), + (811, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nda5rLnd', '6042717'), + (811, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nda5rLnd', '6044838'), + (811, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nda5rLnd', '6044839'), + (811, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nda5rLnd', '6045684'), + (811, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nda5rLnd', '6050104'), + (811, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nda5rLnd', '6053195'), + (811, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nda5rLnd', '6053198'), + (811, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nda5rLnd', '6056085'), + (811, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nda5rLnd', '6056916'), + (811, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nda5rLnd', '6059290'), + (811, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nda5rLnd', '6060328'), + (811, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nda5rLnd', '6061037'), + (811, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nda5rLnd', '6061039'), + (811, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nda5rLnd', '6067245'), + (811, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nda5rLnd', '6068094'), + (811, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nda5rLnd', '6068252'), + (811, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nda5rLnd', '6068253'), + (811, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nda5rLnd', '6068254'), + (811, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nda5rLnd', '6068280'), + (811, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nda5rLnd', '6069093'), + (811, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nda5rLnd', '6072528'), + (811, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nda5rLnd', '6079840'), + (811, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nda5rLnd', '6083398'), + (811, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nda5rLnd', '6093504'), + (811, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nda5rLnd', '6097414'), + (811, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nda5rLnd', '6097442'), + (811, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nda5rLnd', '6097684'), + (811, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nda5rLnd', '6098762'), + (811, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nda5rLnd', '6101361'), + (811, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nda5rLnd', '6101362'), + (811, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nda5rLnd', '6107314'), + (811, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nda5rLnd', '6120034'), + (811, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nda5rLnd', '6136733'), + (811, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nda5rLnd', '6137989'), + (811, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nda5rLnd', '6150864'), + (811, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nda5rLnd', '6155491'), + (811, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nda5rLnd', '6164417'), + (811, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nda5rLnd', '6166388'), + (811, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nda5rLnd', '6176439'), + (811, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nda5rLnd', '6182410'), + (811, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nda5rLnd', '6185812'), + (811, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nda5rLnd', '6187651'), + (811, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nda5rLnd', '6187963'), + (811, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nda5rLnd', '6187964'), + (811, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nda5rLnd', '6187966'), + (811, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nda5rLnd', '6187967'), + (811, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nda5rLnd', '6187969'), + (811, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nda5rLnd', '6334878'), + (811, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nda5rLnd', '6337236'), + (811, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nda5rLnd', '6337970'), + (811, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nda5rLnd', '6338308'), + (811, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nda5rLnd', '6341710'), + (811, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nda5rLnd', '6342044'), + (811, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nda5rLnd', '6342298'), + (811, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nda5rLnd', '6343294'), + (811, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nda5rLnd', '6347034'), + (811, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nda5rLnd', '6347056'), + (811, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nda5rLnd', '6353830'), + (811, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nda5rLnd', '6353831'), + (811, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nda5rLnd', '6357867'), + (811, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nda5rLnd', '6358652'), + (811, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nda5rLnd', '6361709'), + (811, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nda5rLnd', '6361710'), + (811, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nda5rLnd', '6361711'), + (811, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nda5rLnd', '6361712'), + (811, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nda5rLnd', '6361713'), + (811, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nda5rLnd', '6382573'), + (811, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nda5rLnd', '6388604'), + (811, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nda5rLnd', '6394629'), + (811, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nda5rLnd', '6394631'), + (811, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nda5rLnd', '6440863'), + (811, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nda5rLnd', '6445440'), + (811, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nda5rLnd', '6453951'), + (811, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nda5rLnd', '6461696'), + (811, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nda5rLnd', '6462129'), + (811, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nda5rLnd', '6463218'), + (811, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nda5rLnd', '6472181'), + (811, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nda5rLnd', '6482693'), + (811, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'nda5rLnd', '6484200'), + (811, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nda5rLnd', '6484680'), + (811, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nda5rLnd', '6507741'), + (811, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nda5rLnd', '6514659'), + (811, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nda5rLnd', '6514660'), + (811, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nda5rLnd', '6519103'), + (811, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nda5rLnd', '6535681'), + (811, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nda5rLnd', '6584747'), + (811, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nda5rLnd', '6587097'), + (811, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nda5rLnd', '6609022'), + (811, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nda5rLnd', '6632757'), + (811, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nda5rLnd', '6644187'), + (811, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nda5rLnd', '6648951'), + (811, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nda5rLnd', '6648952'), + (811, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nda5rLnd', '6655401'), + (811, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nda5rLnd', '6661585'), + (811, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nda5rLnd', '6661588'), + (811, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nda5rLnd', '6661589'), + (811, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nda5rLnd', '6699906'), + (811, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nda5rLnd', '6699913'), + (811, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nda5rLnd', '6701109'), + (811, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nda5rLnd', '6705219'), + (811, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nda5rLnd', '6710153'), + (811, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nda5rLnd', '6711552'), + (811, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'nda5rLnd', '6711553'), + (811, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nda5rLnd', '6722688'), + (811, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nda5rLnd', '6730620'), + (811, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nda5rLnd', '6740364'), + (811, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nda5rLnd', '6743829'), + (811, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nda5rLnd', '7030380'), + (811, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nda5rLnd', '7033677'), + (811, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nda5rLnd', '7044715'), + (811, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nda5rLnd', '7050318'), + (811, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nda5rLnd', '7050319'), + (811, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nda5rLnd', '7050322'), + (811, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nda5rLnd', '7057804'), + (811, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nda5rLnd', '7072824'), + (811, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nda5rLnd', '7074348'), + (811, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nda5rLnd', '7074364'), + (811, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'nda5rLnd', '7089267'), + (811, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nda5rLnd', '7098747'), + (811, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nda5rLnd', '7113468'), + (811, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nda5rLnd', '7114856'), + (811, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nda5rLnd', '7114951'), + (811, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nda5rLnd', '7114955'), + (811, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nda5rLnd', '7114956'), + (811, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nda5rLnd', '7114957'), + (811, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nda5rLnd', '7159484'), + (811, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nda5rLnd', '7178446'), + (811, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nda5rLnd', '7220467'), + (811, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nda5rLnd', '7240354'), + (811, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nda5rLnd', '7251633'), + (811, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nda5rLnd', '7324073'), + (811, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nda5rLnd', '7324074'), + (811, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nda5rLnd', '7324075'), + (811, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nda5rLnd', '7324078'), + (811, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nda5rLnd', '7324082'), + (811, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nda5rLnd', '7331457'), + (811, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nda5rLnd', '7363643'), + (811, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nda5rLnd', '7368606'), + (811, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nda5rLnd', '7397462'), + (811, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nda5rLnd', '7424275'), + (811, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nda5rLnd', '7432751'), + (811, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nda5rLnd', '7432752'), + (811, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nda5rLnd', '7432753'), + (811, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nda5rLnd', '7432754'), + (811, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nda5rLnd', '7432755'), + (811, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nda5rLnd', '7432756'), + (811, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nda5rLnd', '7432758'), + (811, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nda5rLnd', '7432759'), + (811, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nda5rLnd', '7433834'), + (811, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nda5rLnd', '7470197'), + (811, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nda5rLnd', '7685613'), + (811, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nda5rLnd', '7688194'), + (811, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nda5rLnd', '7688196'), + (811, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nda5rLnd', '7688289'), + (811, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nda5rLnd', '7692763'), + (811, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nda5rLnd', '7697552'), + (811, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nda5rLnd', '7699878'), + (811, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nda5rLnd', '7704043'), + (811, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nda5rLnd', '7712467'), + (811, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nda5rLnd', '7713585'), + (811, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nda5rLnd', '7713586'), + (811, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nda5rLnd', '7738518'), + (811, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nda5rLnd', '7750636'), + (811, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nda5rLnd', '7796540'), + (811, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nda5rLnd', '7796541'), + (811, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nda5rLnd', '7796542'), + (811, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nda5rLnd', '7825913'), + (811, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nda5rLnd', '7826209'), + (811, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nda5rLnd', '7834742'), + (811, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nda5rLnd', '7842108'), + (811, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nda5rLnd', '7842902'), + (811, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nda5rLnd', '7842903'), + (811, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nda5rLnd', '7842904'), + (811, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nda5rLnd', '7842905'), + (811, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nda5rLnd', '7855719'), + (811, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nda5rLnd', '7860683'), + (811, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nda5rLnd', '7860684'), + (811, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nda5rLnd', '7866095'), + (811, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nda5rLnd', '7869170'), + (811, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nda5rLnd', '7869188'), + (811, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nda5rLnd', '7869201'), + (811, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nda5rLnd', '7877465'), + (811, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nda5rLnd', '7888250'), + (811, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nda5rLnd', '7904777'), + (811, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nda5rLnd', '8349164'), + (811, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nda5rLnd', '8349545'), + (811, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nda5rLnd', '8368028'), + (811, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nda5rLnd', '8368029'), + (811, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nda5rLnd', '8388462'), + (811, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nda5rLnd', '8400273'), + (811, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nda5rLnd', '8400275'), + (811, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nda5rLnd', '8400276'), + (811, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nda5rLnd', '8404977'), + (811, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nda5rLnd', '8430783'), + (811, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nda5rLnd', '8430784'), + (811, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nda5rLnd', '8430799'), + (811, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nda5rLnd', '8430800'), + (811, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nda5rLnd', '8430801'), + (811, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nda5rLnd', '8438709'), + (811, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nda5rLnd', '8457738'), + (811, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nda5rLnd', '8459566'), + (811, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nda5rLnd', '8459567'), + (811, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nda5rLnd', '8461032'), + (811, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nda5rLnd', '8477877'), + (811, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nda5rLnd', '8485688'), + (811, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nda5rLnd', '8490587'), + (811, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nda5rLnd', '8493552'), + (811, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nda5rLnd', '8493553'), + (811, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nda5rLnd', '8493554'), + (811, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nda5rLnd', '8493555'), + (811, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nda5rLnd', '8493556'), + (811, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nda5rLnd', '8493557'), + (811, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nda5rLnd', '8493558'), + (811, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nda5rLnd', '8493559'), + (811, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nda5rLnd', '8493560'), + (811, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nda5rLnd', '8493561'), + (811, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nda5rLnd', '8493572'), + (811, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nda5rLnd', '8540725'), + (811, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nda5rLnd', '8555421'), + (812, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'w4WkZoP4', '3468125'), + (812, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'w4WkZoP4', '3470303'), + (812, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'w4WkZoP4', '3470305'), + (812, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'w4WkZoP4', '3470991'), + (812, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'w4WkZoP4', '3517815'), + (812, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'w4WkZoP4', '3517816'), + (812, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'w4WkZoP4', '3523941'), + (812, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4WkZoP4', '3533850'), + (812, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4WkZoP4', '3536632'), + (812, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'w4WkZoP4', '3536656'), + (812, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'w4WkZoP4', '3539916'), + (812, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'w4WkZoP4', '3539917'), + (812, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'w4WkZoP4', '3539918'), + (812, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'w4WkZoP4', '3539919'), + (812, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'w4WkZoP4', '3539920'), + (812, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'w4WkZoP4', '3539921'), + (812, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4WkZoP4', '3539922'), + (812, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'w4WkZoP4', '3539923'), + (812, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'w4WkZoP4', '3539927'), + (812, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'w4WkZoP4', '3582734'), + (812, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'w4WkZoP4', '3619523'), + (812, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WkZoP4', '6045684'), + (813, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'lAe9LlzA', '4225444'), + (813, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'lAe9LlzA', '4275957'), + (813, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAe9LlzA', '6045684'), + (814, 409, 'maybe', '2020-12-10 21:40:39', '2025-12-17 19:47:54', 'oAQyv3LA', '3236467'), + (814, 493, 'not_attending', '2020-12-04 15:43:42', '2025-12-17 19:47:54', 'oAQyv3LA', '3313856'), + (814, 499, 'attending', '2020-12-11 21:51:12', '2025-12-17 19:47:55', 'oAQyv3LA', '3314909'), + (814, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'oAQyv3LA', '3314964'), + (814, 502, 'maybe', '2020-12-12 05:04:10', '2025-12-17 19:47:55', 'oAQyv3LA', '3323365'), + (814, 503, 'maybe', '2020-12-09 21:55:55', '2025-12-17 19:47:55', 'oAQyv3LA', '3323366'), + (814, 504, 'maybe', '2020-12-09 21:55:46', '2025-12-17 19:47:55', 'oAQyv3LA', '3323368'), + (814, 506, 'maybe', '2020-12-13 22:31:18', '2025-12-17 19:47:55', 'oAQyv3LA', '3323375'), + (814, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'oAQyv3LA', '3324148'), + (814, 511, 'maybe', '2020-12-15 18:42:04', '2025-12-17 19:47:55', 'oAQyv3LA', '3325335'), + (814, 513, 'maybe', '2020-12-15 18:42:14', '2025-12-17 19:47:55', 'oAQyv3LA', '3329383'), + (814, 520, 'maybe', '2020-12-15 18:41:46', '2025-12-17 19:47:55', 'oAQyv3LA', '3337453'), + (814, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'oAQyv3LA', '3351539'), + (814, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'oAQyv3LA', '3386848'), + (814, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'oAQyv3LA', '3389527'), + (814, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'oAQyv3LA', '3396499'), + (814, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'oAQyv3LA', '3403650'), + (814, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'oAQyv3LA', '3406988'), + (814, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'oAQyv3LA', '3408338'), + (814, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'oAQyv3LA', '3416576'), + (814, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQyv3LA', '6045684'), + (815, 2303, 'attending', '2023-10-28 02:43:44', '2025-12-17 19:46:47', 'dVD9ygpA', '6482691'), + (815, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVD9ygpA', '6482693'), + (815, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVD9ygpA', '6484200'), + (815, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'dVD9ygpA', '6484680'), + (815, 2310, 'maybe', '2023-11-11 23:31:04', '2025-12-17 19:46:47', 'dVD9ygpA', '6487709'), + (815, 2315, 'maybe', '2023-11-01 19:27:25', '2025-12-17 19:46:47', 'dVD9ygpA', '6493666'), + (815, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVD9ygpA', '6507741'), + (815, 2321, 'attending', '2023-10-30 21:42:31', '2025-12-17 19:46:47', 'dVD9ygpA', '6512075'), + (815, 2322, 'attending', '2023-11-12 06:46:20', '2025-12-17 19:46:48', 'dVD9ygpA', '6514659'), + (815, 2323, 'attending', '2023-11-28 03:37:47', '2025-12-17 19:46:48', 'dVD9ygpA', '6514660'), + (815, 2324, 'attending', '2023-12-06 23:48:09', '2025-12-17 19:46:49', 'dVD9ygpA', '6514662'), + (815, 2325, 'attending', '2023-12-11 17:26:45', '2025-12-17 19:46:36', 'dVD9ygpA', '6514663'), + (815, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVD9ygpA', '6519103'), + (815, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVD9ygpA', '6535681'), + (815, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVD9ygpA', '6584747'), + (815, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVD9ygpA', '6587097'), + (815, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVD9ygpA', '6609022'), + (815, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVD9ygpA', '6632757'), + (815, 2378, 'maybe', '2023-12-31 03:40:05', '2025-12-17 19:46:37', 'dVD9ygpA', '6644006'), + (815, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVD9ygpA', '6644187'), + (815, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVD9ygpA', '6648951'), + (815, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVD9ygpA', '6648952'), + (815, 2392, 'maybe', '2024-01-06 02:04:34', '2025-12-17 19:46:37', 'dVD9ygpA', '6654412'), + (815, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVD9ygpA', '6655401'), + (815, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVD9ygpA', '6661585'), + (815, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVD9ygpA', '6661588'), + (815, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVD9ygpA', '6661589'), + (815, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVD9ygpA', '6699906'), + (815, 2408, 'attending', '2024-01-22 03:07:51', '2025-12-17 19:46:40', 'dVD9ygpA', '6699907'), + (815, 2409, 'attending', '2024-01-31 15:35:04', '2025-12-17 19:46:41', 'dVD9ygpA', '6699909'), + (815, 2410, 'attending', '2024-02-07 03:12:26', '2025-12-17 19:46:41', 'dVD9ygpA', '6699911'), + (815, 2411, 'attending', '2024-02-14 15:36:02', '2025-12-17 19:46:41', 'dVD9ygpA', '6699913'), + (815, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVD9ygpA', '6701109'), + (815, 2417, 'maybe', '2024-01-18 15:54:37', '2025-12-17 19:46:40', 'dVD9ygpA', '6701905'), + (815, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dVD9ygpA', '6704561'), + (815, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVD9ygpA', '6705219'), + (815, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dVD9ygpA', '6708410'), + (815, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVD9ygpA', '6710153'), + (815, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVD9ygpA', '6711552'), + (815, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVD9ygpA', '6711553'), + (815, 2431, 'attending', '2024-01-23 23:29:33', '2025-12-17 19:46:41', 'dVD9ygpA', '6712394'), + (815, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVD9ygpA', '6722688'), + (815, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVD9ygpA', '6730620'), + (815, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVD9ygpA', '6730642'), + (815, 2451, 'maybe', '2024-02-08 17:13:24', '2025-12-17 19:46:41', 'dVD9ygpA', '6740333'), + (815, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dVD9ygpA', '6740364'), + (815, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVD9ygpA', '6743829'), + (815, 2463, 'attending', '2024-02-11 07:09:50', '2025-12-17 19:46:41', 'dVD9ygpA', '6746394'), + (815, 2464, 'maybe', '2024-02-11 21:26:48', '2025-12-17 19:46:41', 'dVD9ygpA', '6746982'), + (815, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVD9ygpA', '7030380'), + (815, 2469, 'attending', '2024-02-16 23:52:09', '2025-12-17 19:46:42', 'dVD9ygpA', '7030632'), + (815, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dVD9ygpA', '7033677'), + (815, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dVD9ygpA', '7035415'), + (815, 2481, 'attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dVD9ygpA', '7044715'), + (815, 2486, 'attending', '2024-02-28 04:11:06', '2025-12-17 19:46:43', 'dVD9ygpA', '7048277'), + (815, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVD9ygpA', '7050318'), + (815, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVD9ygpA', '7050319'), + (815, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVD9ygpA', '7050322'), + (815, 2499, 'attending', '2024-03-04 19:52:30', '2025-12-17 19:46:43', 'dVD9ygpA', '7057804'), + (815, 2503, 'attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'dVD9ygpA', '7062500'), + (815, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVD9ygpA', '7072824'), + (815, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVD9ygpA', '7074348'), + (815, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dVD9ygpA', '7074364'), + (815, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVD9ygpA', '7089267'), + (815, 2547, 'attending', '2024-03-22 01:47:48', '2025-12-17 19:46:33', 'dVD9ygpA', '7096945'), + (815, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dVD9ygpA', '7098747'), + (815, 2551, 'not_attending', '2024-03-28 16:11:38', '2025-12-17 19:46:33', 'dVD9ygpA', '7109912'), + (815, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dVD9ygpA', '7113468'), + (815, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVD9ygpA', '7114856'), + (815, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dVD9ygpA', '7114951'), + (815, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVD9ygpA', '7114955'), + (815, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVD9ygpA', '7114956'), + (815, 2558, 'attending', '2024-04-29 22:44:12', '2025-12-17 19:46:35', 'dVD9ygpA', '7114957'), + (815, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVD9ygpA', '7153615'), + (815, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVD9ygpA', '7159484'), + (815, 2585, 'attending', '2024-04-24 21:08:31', '2025-12-17 19:46:34', 'dVD9ygpA', '7175828'), + (815, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVD9ygpA', '7178446'), + (815, 2594, 'attending', '2024-04-20 18:43:11', '2025-12-17 19:46:34', 'dVD9ygpA', '7182117'), + (815, 2597, 'attending', '2024-04-21 22:46:10', '2025-12-17 19:46:34', 'dVD9ygpA', '7186726'), + (815, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dVD9ygpA', '7220467'), + (815, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dVD9ygpA', '7240354'), + (815, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dVD9ygpA', '7251633'), + (815, 2626, 'attending', '2024-05-15 17:49:26', '2025-12-17 19:46:35', 'dVD9ygpA', '7264723'), + (815, 2627, 'attending', '2024-05-23 14:06:43', '2025-12-17 19:46:35', 'dVD9ygpA', '7264724'), + (815, 2628, 'attending', '2024-05-30 18:45:07', '2025-12-17 19:46:36', 'dVD9ygpA', '7264725'), + (815, 2629, 'attending', '2024-06-07 00:40:23', '2025-12-17 19:46:28', 'dVD9ygpA', '7264726'), + (815, 2633, 'maybe', '2024-05-15 17:49:07', '2025-12-17 19:46:35', 'dVD9ygpA', '7270095'), + (815, 2655, 'maybe', '2024-05-27 01:49:00', '2025-12-17 19:46:35', 'dVD9ygpA', '7291225'), + (815, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dVD9ygpA', '7302674'), + (815, 2678, 'maybe', '2024-06-15 22:31:04', '2025-12-17 19:46:28', 'dVD9ygpA', '7319489'), + (815, 2686, 'maybe', '2024-06-11 19:28:24', '2025-12-17 19:46:29', 'dVD9ygpA', '7323802'), + (815, 2688, 'attending', '2024-06-25 00:21:42', '2025-12-17 19:46:29', 'dVD9ygpA', '7324073'), + (815, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dVD9ygpA', '7324074'), + (815, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dVD9ygpA', '7324075'), + (815, 2691, 'attending', '2024-07-19 04:07:09', '2025-12-17 19:46:30', 'dVD9ygpA', '7324076'), + (815, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dVD9ygpA', '7324078'), + (815, 2694, 'not_attending', '2024-08-10 13:24:25', '2025-12-17 19:46:31', 'dVD9ygpA', '7324079'), + (815, 2695, 'maybe', '2024-08-17 07:53:22', '2025-12-17 19:46:32', 'dVD9ygpA', '7324080'), + (815, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dVD9ygpA', '7324082'), + (815, 2698, 'not_attending', '2024-09-04 15:49:19', '2025-12-17 19:46:24', 'dVD9ygpA', '7324083'), + (815, 2710, 'maybe', '2024-06-19 19:31:57', '2025-12-17 19:46:29', 'dVD9ygpA', '7325108'), + (815, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dVD9ygpA', '7331457'), + (815, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dVD9ygpA', '7363643'), + (815, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dVD9ygpA', '7368606'), + (815, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dVD9ygpA', '7397462'), + (815, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dVD9ygpA', '7424275'), + (815, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dVD9ygpA', '7424276'), + (815, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dVD9ygpA', '7432751'), + (815, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dVD9ygpA', '7432752'), + (815, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dVD9ygpA', '7432753'), + (815, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dVD9ygpA', '7432754'), + (815, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dVD9ygpA', '7432755'), + (815, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dVD9ygpA', '7432756'), + (815, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dVD9ygpA', '7432758'), + (815, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dVD9ygpA', '7432759'), + (815, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dVD9ygpA', '7433834'), + (815, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dVD9ygpA', '7470197'), + (815, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dVD9ygpA', '7685613'), + (815, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dVD9ygpA', '7688194'), + (815, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dVD9ygpA', '7688196'), + (815, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dVD9ygpA', '7688289'), + (815, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dVD9ygpA', '7692763'), + (815, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dVD9ygpA', '7697552'), + (815, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dVD9ygpA', '7699878'), + (815, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dVD9ygpA', '7704043'), + (815, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dVD9ygpA', '7712467'), + (815, 2925, 'maybe', '2024-12-12 08:05:08', '2025-12-17 19:46:21', 'dVD9ygpA', '7713584'), + (815, 2926, 'maybe', '2024-12-06 07:06:13', '2025-12-17 19:46:21', 'dVD9ygpA', '7713585'), + (815, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dVD9ygpA', '7713586'), + (815, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dVD9ygpA', '7738518'), + (815, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dVD9ygpA', '7750636'), + (815, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dVD9ygpA', '7796540'), + (815, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dVD9ygpA', '7796541'), + (815, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dVD9ygpA', '7796542'), + (815, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dVD9ygpA', '7825913'), + (815, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dVD9ygpA', '7826209'), + (815, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dVD9ygpA', '7834742'), + (815, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dVD9ygpA', '7842108'), + (815, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dVD9ygpA', '7842902'), + (815, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dVD9ygpA', '7842903'), + (815, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dVD9ygpA', '7842904'), + (815, 2994, 'maybe', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dVD9ygpA', '7842905'), + (815, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dVD9ygpA', '7855719'), + (815, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dVD9ygpA', '7860683'), + (815, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dVD9ygpA', '7860684'), + (815, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dVD9ygpA', '7866095'), + (815, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dVD9ygpA', '7869170'), + (815, 3016, 'maybe', '2025-04-19 21:31:55', '2025-12-17 19:46:20', 'dVD9ygpA', '7869187'), + (815, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dVD9ygpA', '7869188'), + (815, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dVD9ygpA', '7869201'), + (815, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dVD9ygpA', '7877465'), + (815, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dVD9ygpA', '7888250'), + (815, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVD9ygpA', '8349164'), + (815, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVD9ygpA', '8349545'), + (815, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVD9ygpA', '8353584'), + (816, 599, 'attending', '2021-02-17 01:06:18', '2025-12-17 19:47:50', 'pmb61Q6m', '3468117'), + (816, 603, 'attending', '2021-02-16 07:02:01', '2025-12-17 19:47:50', 'pmb61Q6m', '3470304'), + (816, 604, 'not_attending', '2021-02-27 18:29:38', '2025-12-17 19:47:50', 'pmb61Q6m', '3470305'), + (816, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'pmb61Q6m', '3470991'), + (816, 610, 'attending', '2021-02-15 23:15:49', '2025-12-17 19:47:50', 'pmb61Q6m', '3482159'), + (816, 618, 'attending', '2021-02-19 21:23:23', '2025-12-17 19:47:50', 'pmb61Q6m', '3503991'), + (816, 621, 'not_attending', '2021-03-05 09:47:32', '2025-12-17 19:47:51', 'pmb61Q6m', '3517815'), + (816, 622, 'attending', '2021-03-09 20:47:59', '2025-12-17 19:47:51', 'pmb61Q6m', '3517816'), + (816, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'pmb61Q6m', '3523941'), + (816, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmb61Q6m', '3533850'), + (816, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmb61Q6m', '3536632'), + (816, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmb61Q6m', '3536656'), + (816, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'pmb61Q6m', '3539916'), + (816, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'pmb61Q6m', '3539917'), + (816, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmb61Q6m', '3539918'), + (816, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'pmb61Q6m', '3539919'), + (816, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmb61Q6m', '3539920'), + (816, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'pmb61Q6m', '3539921'), + (816, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmb61Q6m', '3539922'), + (816, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmb61Q6m', '3539923'), + (816, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmb61Q6m', '3539927'), + (816, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmb61Q6m', '3582734'), + (816, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmb61Q6m', '3583262'), + (816, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmb61Q6m', '3619523'), + (816, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmb61Q6m', '3661369'), + (816, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmb61Q6m', '3674262'), + (816, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmb61Q6m', '3677402'), + (816, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmb61Q6m', '3730212'), + (816, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'pmb61Q6m', '3793156'), + (816, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmb61Q6m', '3974109'), + (816, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmb61Q6m', '3975311'), + (816, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmb61Q6m', '3975312'), + (816, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmb61Q6m', '3994992'), + (816, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmb61Q6m', '4014338'), + (816, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmb61Q6m', '4021848'), + (816, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmb61Q6m', '4136744'), + (816, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'pmb61Q6m', '4136937'), + (816, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmb61Q6m', '4136938'), + (816, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmb61Q6m', '4136947'), + (816, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmb61Q6m', '4210314'), + (816, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmb61Q6m', '4225444'), + (816, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmb61Q6m', '4239259'), + (816, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmb61Q6m', '4240316'), + (816, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmb61Q6m', '4240317'), + (816, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmb61Q6m', '4240318'), + (816, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmb61Q6m', '4240320'), + (816, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmb61Q6m', '4250163'), + (816, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmb61Q6m', '4275957'), + (816, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmb61Q6m', '4277819'), + (816, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmb61Q6m', '4301723'), + (816, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'pmb61Q6m', '4302093'), + (816, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmb61Q6m', '4304151'), + (816, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'pmb61Q6m', '4345519'), + (816, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'pmb61Q6m', '4358025'), + (816, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmb61Q6m', '4366186'), + (816, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmb61Q6m', '4366187'), + (816, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmb61Q6m', '6045684'), + (817, 1119, 'attending', '2021-12-22 02:54:38', '2025-12-17 19:47:31', '4oMY95Mm', '4642997'), + (817, 1125, 'attending', '2021-12-20 20:50:35', '2025-12-17 19:47:31', '4oMY95Mm', '4644027'), + (817, 1131, 'attending', '2021-12-18 05:01:54', '2025-12-17 19:47:31', '4oMY95Mm', '4658825'), + (817, 1148, 'attending', '2021-12-17 23:48:32', '2025-12-17 19:47:31', '4oMY95Mm', '4692843'), + (817, 1151, 'maybe', '2021-12-20 23:51:32', '2025-12-17 19:47:31', '4oMY95Mm', '4708704'), + (817, 1152, 'attending', '2022-01-13 00:50:55', '2025-12-17 19:47:31', '4oMY95Mm', '4708705'), + (817, 1155, 'attending', '2021-12-20 23:49:36', '2025-12-17 19:47:31', '4oMY95Mm', '4715119'), + (817, 1158, 'not_attending', '2021-12-21 05:16:10', '2025-12-17 19:47:31', '4oMY95Mm', '4715311'), + (817, 1162, 'attending', '2021-12-30 18:17:54', '2025-12-17 19:47:31', '4oMY95Mm', '4718771'), + (817, 1164, 'attending', '2021-12-30 03:14:07', '2025-12-17 19:47:31', '4oMY95Mm', '4724208'), + (817, 1165, 'attending', '2021-12-30 03:14:09', '2025-12-17 19:47:31', '4oMY95Mm', '4724210'), + (817, 1172, 'not_attending', '2022-01-19 01:02:06', '2025-12-17 19:47:32', '4oMY95Mm', '4735348'), + (817, 1173, 'attending', '2022-01-08 23:00:36', '2025-12-17 19:47:31', '4oMY95Mm', '4736495'), + (817, 1174, 'attending', '2022-01-15 20:03:12', '2025-12-17 19:47:31', '4oMY95Mm', '4736496'), + (817, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMY95Mm', '4736497'), + (817, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMY95Mm', '4736499'), + (817, 1178, 'attending', '2022-01-29 23:51:03', '2025-12-17 19:47:32', '4oMY95Mm', '4736500'), + (817, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMY95Mm', '4736503'), + (817, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMY95Mm', '4736504'), + (817, 1185, 'maybe', '2022-01-09 08:03:58', '2025-12-17 19:47:31', '4oMY95Mm', '4746789'), + (817, 1186, 'attending', '2022-01-09 08:33:04', '2025-12-17 19:47:31', '4oMY95Mm', '4747800'), + (817, 1187, 'maybe', '2022-01-11 01:40:54', '2025-12-17 19:47:31', '4oMY95Mm', '4753907'), + (817, 1188, 'maybe', '2022-01-13 19:13:35', '2025-12-17 19:47:32', '4oMY95Mm', '4753929'), + (817, 1189, 'maybe', '2022-01-13 19:13:11', '2025-12-17 19:47:31', '4oMY95Mm', '4753938'), + (817, 1198, 'maybe', '2022-01-19 20:50:13', '2025-12-17 19:47:32', '4oMY95Mm', '4766801'), + (817, 1199, 'maybe', '2022-01-19 20:50:15', '2025-12-17 19:47:32', '4oMY95Mm', '4766802'), + (817, 1200, 'not_attending', '2022-01-18 23:13:08', '2025-12-17 19:47:32', '4oMY95Mm', '4766830'), + (817, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMY95Mm', '5038850'), + (817, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMY95Mm', '5045826'), + (817, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMY95Mm', '5132533'), + (817, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMY95Mm', '5186582'), + (817, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMY95Mm', '5186583'), + (817, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMY95Mm', '5186585'), + (817, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMY95Mm', '5190437'), + (817, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4oMY95Mm', '5195095'), + (817, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMY95Mm', '5215989'), + (817, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4oMY95Mm', '5223686'), + (817, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4oMY95Mm', '5227432'), + (817, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4oMY95Mm', '5247467'), + (817, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4oMY95Mm', '5260800'), + (817, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4oMY95Mm', '5269930'), + (817, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4oMY95Mm', '5271448'), + (817, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4oMY95Mm', '5271449'), + (817, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4oMY95Mm', '5276469'), + (817, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', '4oMY95Mm', '5277078'), + (817, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4oMY95Mm', '5278159'), + (817, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4oMY95Mm', '5363695'), + (817, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMY95Mm', '5365960'), + (817, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMY95Mm', '5368973'), + (817, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMY95Mm', '5378247'), + (817, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4oMY95Mm', '5389605'), + (817, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4oMY95Mm', '5397265'), + (817, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMY95Mm', '5403967'), + (817, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMY95Mm', '5404786'), + (817, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMY95Mm', '5405203'), + (817, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMY95Mm', '5411699'), + (817, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4oMY95Mm', '5412550'), + (817, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMY95Mm', '5415046'), + (817, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4oMY95Mm', '5422086'), + (817, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4oMY95Mm', '5422406'), + (817, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMY95Mm', '5424565'), + (817, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMY95Mm', '5426882'), + (817, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMY95Mm', '5427083'), + (817, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4oMY95Mm', '5441125'), + (817, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4oMY95Mm', '5441126'), + (817, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMY95Mm', '5441128'), + (817, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMY95Mm', '5446643'), + (817, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMY95Mm', '5453325'), + (817, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMY95Mm', '5454516'), + (817, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMY95Mm', '5454605'), + (817, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMY95Mm', '5455037'), + (817, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4oMY95Mm', '5461278'), + (817, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMY95Mm', '5469480'), + (817, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4oMY95Mm', '5471073'), + (817, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMY95Mm', '5474663'), + (817, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMY95Mm', '5482022'), + (817, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMY95Mm', '5482793'), + (817, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4oMY95Mm', '5488912'), + (817, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4oMY95Mm', '5492192'), + (817, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4oMY95Mm', '5493139'), + (817, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4oMY95Mm', '5493200'), + (817, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4oMY95Mm', '5502188'), + (817, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4oMY95Mm', '5512862'), + (817, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4oMY95Mm', '5513985'), + (817, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4oMY95Mm', '6045684'), + (818, 221, 'attending', '2020-09-16 21:06:18', '2025-12-17 19:47:56', 'GmjMOQbd', '3129265'), + (818, 223, 'attending', '2020-09-12 18:40:16', '2025-12-17 19:47:56', 'GmjMOQbd', '3129980'), + (818, 311, 'not_attending', '2020-09-18 04:11:09', '2025-12-17 19:47:56', 'GmjMOQbd', '3186057'), + (818, 340, 'not_attending', '2020-09-18 04:10:20', '2025-12-17 19:47:56', 'GmjMOQbd', '3204470'), + (818, 341, 'attending', '2020-09-25 23:55:21', '2025-12-17 19:47:52', 'GmjMOQbd', '3204471'), + (818, 342, 'not_attending', '2020-10-02 20:06:24', '2025-12-17 19:47:52', 'GmjMOQbd', '3204472'), + (818, 346, 'attending', '2020-09-15 22:38:57', '2025-12-17 19:47:56', 'GmjMOQbd', '3207515'), + (818, 348, 'not_attending', '2020-09-29 22:25:06', '2025-12-17 19:47:52', 'GmjMOQbd', '3209159'), + (818, 350, 'attending', '2020-09-11 23:59:13', '2025-12-17 19:47:56', 'GmjMOQbd', '3209255'), + (818, 362, 'not_attending', '2020-09-26 22:46:19', '2025-12-17 19:47:52', 'GmjMOQbd', '3214207'), + (818, 363, 'not_attending', '2020-09-18 18:47:24', '2025-12-17 19:47:52', 'GmjMOQbd', '3217037'), + (818, 365, 'maybe', '2020-09-18 18:48:23', '2025-12-17 19:47:51', 'GmjMOQbd', '3218510'), + (818, 375, 'attending', '2020-10-08 22:54:09', '2025-12-17 19:47:52', 'GmjMOQbd', '3222825'), + (818, 382, 'not_attending', '2020-10-14 00:19:59', '2025-12-17 19:47:52', 'GmjMOQbd', '3226873'), + (818, 385, 'not_attending', '2020-10-03 19:57:11', '2025-12-17 19:47:52', 'GmjMOQbd', '3228698'), + (818, 386, 'attending', '2020-10-10 19:53:12', '2025-12-17 19:47:52', 'GmjMOQbd', '3228699'), + (818, 387, 'not_attending', '2020-10-17 20:19:45', '2025-12-17 19:47:52', 'GmjMOQbd', '3228700'), + (818, 388, 'not_attending', '2020-10-25 03:56:44', '2025-12-17 19:47:52', 'GmjMOQbd', '3228701'), + (818, 414, 'not_attending', '2020-10-18 22:04:10', '2025-12-17 19:47:52', 'GmjMOQbd', '3237277'), + (818, 416, 'not_attending', '2020-10-08 21:17:13', '2025-12-17 19:47:52', 'GmjMOQbd', '3238073'), + (818, 424, 'maybe', '2020-10-12 02:25:18', '2025-12-17 19:47:52', 'GmjMOQbd', '3245751'), + (818, 426, 'maybe', '2020-10-15 14:16:44', '2025-12-17 19:47:52', 'GmjMOQbd', '3250232'), + (818, 438, 'not_attending', '2020-10-31 22:21:42', '2025-12-17 19:47:53', 'GmjMOQbd', '3256163'), + (818, 440, 'attending', '2020-11-07 22:03:48', '2025-12-17 19:47:53', 'GmjMOQbd', '3256168'), + (818, 441, 'not_attending', '2020-11-14 23:22:39', '2025-12-17 19:47:54', 'GmjMOQbd', '3256169'), + (818, 443, 'not_attending', '2020-10-25 03:57:12', '2025-12-17 19:47:53', 'GmjMOQbd', '3263578'), + (818, 445, 'not_attending', '2020-11-12 20:16:17', '2025-12-17 19:47:54', 'GmjMOQbd', '3266138'), + (818, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GmjMOQbd', '3276428'), + (818, 459, 'not_attending', '2020-11-08 05:46:40', '2025-12-17 19:47:54', 'GmjMOQbd', '3281467'), + (818, 462, 'not_attending', '2020-11-11 22:16:27', '2025-12-17 19:47:54', 'GmjMOQbd', '3281470'), + (818, 466, 'not_attending', '2020-11-08 21:37:08', '2025-12-17 19:47:54', 'GmjMOQbd', '3281829'), + (818, 468, 'not_attending', '2020-11-21 22:59:57', '2025-12-17 19:47:54', 'GmjMOQbd', '3285413'), + (818, 469, 'not_attending', '2020-11-29 00:20:35', '2025-12-17 19:47:54', 'GmjMOQbd', '3285414'), + (818, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GmjMOQbd', '3297764'), + (818, 493, 'not_attending', '2020-12-06 01:13:41', '2025-12-17 19:47:54', 'GmjMOQbd', '3313856'), + (818, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GmjMOQbd', '3314909'), + (818, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GmjMOQbd', '3314964'), + (818, 502, 'not_attending', '2020-12-12 23:44:25', '2025-12-17 19:47:55', 'GmjMOQbd', '3323365'), + (818, 513, 'not_attending', '2020-12-19 23:16:06', '2025-12-17 19:47:55', 'GmjMOQbd', '3329383'), + (818, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GmjMOQbd', '3351539'), + (818, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GmjMOQbd', '3386848'), + (818, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GmjMOQbd', '3389527'), + (818, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GmjMOQbd', '3396499'), + (818, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GmjMOQbd', '3403650'), + (818, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GmjMOQbd', '3406988'), + (818, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GmjMOQbd', '3416576'), + (818, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'GmjMOQbd', '3418925'), + (818, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjMOQbd', '6045684'), + (819, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'daPe9lp4', '5630960'), + (819, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'daPe9lp4', '5630961'), + (819, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'daPe9lp4', '5630962'), + (819, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'daPe9lp4', '5630966'), + (819, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'daPe9lp4', '5638765'), + (819, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'daPe9lp4', '5640097'), + (819, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'daPe9lp4', '5640843'), + (819, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'daPe9lp4', '5641521'), + (819, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'daPe9lp4', '5652395'), + (819, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'daPe9lp4', '5671637'), + (819, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'daPe9lp4', '5672329'), + (819, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'daPe9lp4', '5674057'), + (819, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'daPe9lp4', '5674060'), + (819, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'daPe9lp4', '5677461'), + (819, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'daPe9lp4', '5698046'), + (819, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'daPe9lp4', '5699760'), + (819, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daPe9lp4', '6045684'), + (820, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Arxk10Xd', '7904777'), + (820, 3096, 'maybe', '2025-04-24 19:53:04', '2025-12-17 19:46:20', 'Arxk10Xd', '8342987'), + (820, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'Arxk10Xd', '8347770'), + (820, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Arxk10Xd', '8349164'), + (820, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Arxk10Xd', '8349545'), + (820, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'Arxk10Xd', '8353584'), + (820, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Arxk10Xd', '8368028'), + (820, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Arxk10Xd', '8368029'), + (820, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Arxk10Xd', '8388462'), + (820, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Arxk10Xd', '8400273'), + (820, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'Arxk10Xd', '8400274'), + (820, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Arxk10Xd', '8400275'), + (820, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'Arxk10Xd', '8400276'), + (820, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Arxk10Xd', '8404977'), + (820, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'Arxk10Xd', '8430783'), + (820, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Arxk10Xd', '8430784'), + (820, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Arxk10Xd', '8430799'), + (820, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Arxk10Xd', '8430800'), + (820, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Arxk10Xd', '8430801'), + (820, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Arxk10Xd', '8438709'), + (820, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Arxk10Xd', '8457738'), + (820, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Arxk10Xd', '8459566'), + (820, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Arxk10Xd', '8459567'), + (820, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Arxk10Xd', '8461032'), + (820, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Arxk10Xd', '8477877'), + (820, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Arxk10Xd', '8485688'), + (821, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'rdOKrVEd', '6155491'), + (821, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'rdOKrVEd', '6164417'), + (821, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'rdOKrVEd', '6166388'), + (821, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'rdOKrVEd', '6176439'), + (821, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'rdOKrVEd', '6177485'), + (821, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'rdOKrVEd', '6182410'), + (821, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'rdOKrVEd', '6185812'), + (821, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'rdOKrVEd', '6187651'), + (821, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'rdOKrVEd', '6187963'), + (821, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'rdOKrVEd', '6187964'), + (821, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'rdOKrVEd', '6187966'), + (821, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'rdOKrVEd', '6187967'), + (821, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'rdOKrVEd', '6187969'), + (821, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'rdOKrVEd', '6334878'), + (821, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', 'rdOKrVEd', '6334903'), + (821, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'rdOKrVEd', '6337236'), + (821, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'rdOKrVEd', '6337970'), + (821, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'rdOKrVEd', '6338308'), + (821, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'rdOKrVEd', '6341710'), + (821, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'rdOKrVEd', '6342044'), + (821, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'rdOKrVEd', '6342298'), + (821, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'rdOKrVEd', '6342591'), + (821, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'rdOKrVEd', '6343294'), + (821, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'rdOKrVEd', '6347034'), + (821, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'rdOKrVEd', '6347056'), + (821, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'rdOKrVEd', '6353830'), + (821, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'rdOKrVEd', '6353831'), + (821, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'rdOKrVEd', '6357867'), + (821, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'rdOKrVEd', '6358652'), + (821, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'rdOKrVEd', '6361709'), + (821, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'rdOKrVEd', '6361710'), + (821, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'rdOKrVEd', '6361711'), + (821, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'rdOKrVEd', '6361712'), + (821, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'rdOKrVEd', '6361713'), + (821, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'rdOKrVEd', '6382573'), + (821, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'rdOKrVEd', '6388604'), + (821, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'rdOKrVEd', '6394629'), + (821, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'rdOKrVEd', '6394631'), + (821, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'rdOKrVEd', '6431478'), + (822, 1242, 'attending', '2022-03-30 22:27:15', '2025-12-17 19:47:25', 'AgxeLXR4', '5052241'), + (822, 1274, 'attending', '2022-04-02 20:12:28', '2025-12-17 19:47:26', 'AgxeLXR4', '5186585'), + (822, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgxeLXR4', '5195095'), + (822, 1288, 'attending', '2022-03-27 16:57:21', '2025-12-17 19:47:25', 'AgxeLXR4', '5199460'), + (822, 1294, 'maybe', '2022-04-03 15:44:50', '2025-12-17 19:47:26', 'AgxeLXR4', '5214686'), + (822, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AgxeLXR4', '5215989'), + (822, 1300, 'maybe', '2022-03-31 20:09:28', '2025-12-17 19:47:25', 'AgxeLXR4', '5217936'), + (822, 1302, 'maybe', '2022-04-03 15:43:52', '2025-12-17 19:47:27', 'AgxeLXR4', '5220867'), + (822, 1305, 'maybe', '2022-04-10 03:43:27', '2025-12-17 19:47:27', 'AgxeLXR4', '5223673'), + (822, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgxeLXR4', '5223686'), + (822, 1308, 'maybe', '2022-04-11 17:55:45', '2025-12-17 19:47:27', 'AgxeLXR4', '5226703'), + (822, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgxeLXR4', '5227432'), + (822, 1316, 'maybe', '2022-04-11 17:56:26', '2025-12-17 19:47:27', 'AgxeLXR4', '5237536'), + (822, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgxeLXR4', '5247467'), + (822, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgxeLXR4', '5260800'), + (822, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgxeLXR4', '5269930'), + (822, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgxeLXR4', '5271448'), + (822, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AgxeLXR4', '5271449'), + (822, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgxeLXR4', '5276469'), + (822, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgxeLXR4', '5278159'), + (822, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AgxeLXR4', '5363695'), + (822, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AgxeLXR4', '5365960'), + (822, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AgxeLXR4', '5368973'), + (822, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AgxeLXR4', '5378247'), + (822, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AgxeLXR4', '5389605'), + (822, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AgxeLXR4', '5397265'), + (822, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AgxeLXR4', '5403967'), + (822, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgxeLXR4', '5404786'), + (822, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgxeLXR4', '5405203'), + (822, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'AgxeLXR4', '5408794'), + (822, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AgxeLXR4', '5411699'), + (822, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AgxeLXR4', '5412550'), + (822, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AgxeLXR4', '5415046'), + (822, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgxeLXR4', '5422086'), + (822, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgxeLXR4', '5422406'), + (822, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgxeLXR4', '5424565'), + (822, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgxeLXR4', '5426882'), + (822, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgxeLXR4', '5427083'), + (822, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AgxeLXR4', '5441125'), + (822, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AgxeLXR4', '5441126'), + (822, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AgxeLXR4', '5441128'), + (822, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgxeLXR4', '5446643'), + (822, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgxeLXR4', '5453325'), + (822, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgxeLXR4', '5454516'), + (822, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgxeLXR4', '5454605'), + (822, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgxeLXR4', '5455037'), + (822, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgxeLXR4', '5461278'), + (822, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgxeLXR4', '5469480'), + (822, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgxeLXR4', '5471073'), + (822, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AgxeLXR4', '5474663'), + (822, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgxeLXR4', '5482022'), + (822, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgxeLXR4', '5482793'), + (822, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgxeLXR4', '5488912'), + (822, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgxeLXR4', '5492192'), + (822, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgxeLXR4', '5493139'), + (822, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgxeLXR4', '5493200'), + (822, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgxeLXR4', '5502188'), + (822, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgxeLXR4', '5512862'), + (822, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgxeLXR4', '5513985'), + (822, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxeLXR4', '6045684'), + (823, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mRQYOzYd', '5630960'), + (823, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mRQYOzYd', '5630961'), + (823, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mRQYOzYd', '5630962'), + (823, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mRQYOzYd', '5630966'), + (823, 1730, 'not_attending', '2022-10-08 07:04:45', '2025-12-17 19:47:12', 'mRQYOzYd', '5634666'), + (823, 1731, 'not_attending', '2022-10-07 22:40:32', '2025-12-17 19:47:12', 'mRQYOzYd', '5635226'), + (823, 1732, 'not_attending', '2022-10-07 20:13:50', '2025-12-17 19:47:12', 'mRQYOzYd', '5635406'), + (823, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mRQYOzYd', '5638765'), + (823, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mRQYOzYd', '5640097'), + (823, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mRQYOzYd', '5640843'), + (823, 1741, 'not_attending', '2022-10-10 04:46:14', '2025-12-17 19:47:12', 'mRQYOzYd', '5641132'), + (823, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mRQYOzYd', '5641521'), + (823, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mRQYOzYd', '5652395'), + (823, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mRQYOzYd', '5671637'), + (823, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mRQYOzYd', '5672329'), + (823, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mRQYOzYd', '5674057'), + (823, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mRQYOzYd', '5674060'), + (823, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mRQYOzYd', '5677461'), + (823, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mRQYOzYd', '5698046'), + (823, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mRQYOzYd', '5699760'), + (823, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRQYOzYd', '6045684'), + (824, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '2d28Q65A', '5195095'), + (824, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '2d28Q65A', '5247467'), + (824, 1362, 'attending', '2022-04-29 18:54:14', '2025-12-17 19:47:28', '2d28Q65A', '5260800'), + (824, 1374, 'not_attending', '2022-05-28 03:05:34', '2025-12-17 19:47:28', '2d28Q65A', '5269930'), + (824, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '2d28Q65A', '5271448'), + (824, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '2d28Q65A', '5271449'), + (824, 1380, 'attending', '2022-05-28 03:05:45', '2025-12-17 19:47:30', '2d28Q65A', '5271450'), + (824, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '2d28Q65A', '5276469'), + (824, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '2d28Q65A', '5278159'), + (824, 1407, 'not_attending', '2022-06-04 10:06:58', '2025-12-17 19:47:30', '2d28Q65A', '5363695'), + (824, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '2d28Q65A', '5365960'), + (824, 1415, 'maybe', '2022-05-31 21:42:45', '2025-12-17 19:47:30', '2d28Q65A', '5368973'), + (824, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '2d28Q65A', '5378247'), + (824, 1431, 'attending', '2022-06-11 00:29:13', '2025-12-17 19:47:30', '2d28Q65A', '5389605'), + (824, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '2d28Q65A', '5397265'), + (824, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '2d28Q65A', '5403967'), + (824, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '2d28Q65A', '5404786'), + (824, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '2d28Q65A', '5405203'), + (824, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '2d28Q65A', '5408794'), + (824, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '2d28Q65A', '5411699'), + (824, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '2d28Q65A', '5412550'), + (824, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '2d28Q65A', '5415046'), + (824, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '2d28Q65A', '5422086'), + (824, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '2d28Q65A', '5422406'), + (824, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '2d28Q65A', '5424565'), + (824, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '2d28Q65A', '5426882'), + (824, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '2d28Q65A', '5427083'), + (824, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '2d28Q65A', '5441125'), + (824, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '2d28Q65A', '5441126'), + (824, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '2d28Q65A', '5441128'), + (824, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '2d28Q65A', '5446643'), + (824, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '2d28Q65A', '5453325'), + (824, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '2d28Q65A', '5454516'), + (824, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '2d28Q65A', '5454605'), + (824, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '2d28Q65A', '5455037'), + (824, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '2d28Q65A', '5461278'), + (824, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '2d28Q65A', '5469480'), + (824, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '2d28Q65A', '5471073'), + (824, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '2d28Q65A', '5474663'), + (824, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '2d28Q65A', '5482022'), + (824, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '2d28Q65A', '5482793'), + (824, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '2d28Q65A', '5488912'), + (824, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '2d28Q65A', '5492192'), + (824, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '2d28Q65A', '5493139'), + (824, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '2d28Q65A', '5493200'), + (824, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '2d28Q65A', '5502188'), + (824, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '2d28Q65A', '5512862'), + (824, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '2d28Q65A', '5513985'), + (824, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d28Q65A', '6045684'), + (825, 3234, 'not_attending', '2025-08-15 02:56:47', '2025-12-17 19:46:17', 'Arnl9YnA', '8488773'), + (825, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Arnl9YnA', '8490587'), + (825, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Arnl9YnA', '8493552'), + (825, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Arnl9YnA', '8493553'), + (825, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Arnl9YnA', '8493554'), + (825, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Arnl9YnA', '8493555'), + (825, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Arnl9YnA', '8493556'), + (825, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Arnl9YnA', '8493557'), + (825, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Arnl9YnA', '8493558'), + (825, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Arnl9YnA', '8493559'), + (825, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Arnl9YnA', '8493560'), + (825, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'Arnl9YnA', '8493561'), + (825, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Arnl9YnA', '8493572'), + (825, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'Arnl9YnA', '8529058'), + (826, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dxPJ3y1d', '5600604'), + (826, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dxPJ3y1d', '5605544'), + (826, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dxPJ3y1d', '5630960'), + (826, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dxPJ3y1d', '5635406'), + (826, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dxPJ3y1d', '5638765'), + (826, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dxPJ3y1d', '5640843'), + (826, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dxPJ3y1d', '5641521'), + (826, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dxPJ3y1d', '5652395'), + (826, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxPJ3y1d', '6045684'), + (827, 1518, 'attending', '2022-08-29 00:08:44', '2025-12-17 19:47:24', 'dBLQEWPA', '5441131'), + (827, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dBLQEWPA', '5441132'), + (827, 1544, 'attending', '2022-09-17 21:55:43', '2025-12-17 19:47:11', 'dBLQEWPA', '5454517'), + (827, 1558, 'attending', '2022-09-11 02:42:10', '2025-12-17 19:47:10', 'dBLQEWPA', '5458730'), + (827, 1559, 'attending', '2022-09-28 22:00:15', '2025-12-17 19:47:11', 'dBLQEWPA', '5458731'), + (827, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dBLQEWPA', '5505059'), + (827, 1610, 'maybe', '2022-08-30 19:14:10', '2025-12-17 19:47:23', 'dBLQEWPA', '5506595'), + (827, 1615, 'attending', '2022-08-30 19:12:05', '2025-12-17 19:47:23', 'dBLQEWPA', '5509055'), + (827, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'dBLQEWPA', '5513985'), + (827, 1626, 'attending', '2022-09-30 17:31:54', '2025-12-17 19:47:11', 'dBLQEWPA', '5519981'), + (827, 1629, 'attending', '2022-09-19 04:20:03', '2025-12-17 19:47:11', 'dBLQEWPA', '5522550'), + (827, 1630, 'attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'dBLQEWPA', '5534683'), + (827, 1634, 'attending', '2022-08-29 00:10:35', '2025-12-17 19:47:23', 'dBLQEWPA', '5536950'), + (827, 1635, 'attending', '2022-09-11 02:42:03', '2025-12-17 19:47:10', 'dBLQEWPA', '5537735'), + (827, 1636, 'attending', '2022-09-04 03:20:25', '2025-12-17 19:47:24', 'dBLQEWPA', '5538454'), + (827, 1640, 'attending', '2022-09-11 02:42:06', '2025-12-17 19:47:10', 'dBLQEWPA', '5540859'), + (827, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dBLQEWPA', '5546619'), + (827, 1647, 'attending', '2022-09-13 21:15:56', '2025-12-17 19:47:11', 'dBLQEWPA', '5548660'), + (827, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dBLQEWPA', '5555245'), + (827, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dBLQEWPA', '5557747'), + (827, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dBLQEWPA', '5560255'), + (827, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dBLQEWPA', '5562906'), + (827, 1666, 'attending', '2022-09-15 20:55:22', '2025-12-17 19:47:11', 'dBLQEWPA', '5563208'), + (827, 1668, 'attending', '2022-09-17 21:55:54', '2025-12-17 19:47:12', 'dBLQEWPA', '5563222'), + (827, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dBLQEWPA', '5600604'), + (827, 1679, 'attending', '2022-10-01 15:28:23', '2025-12-17 19:47:12', 'dBLQEWPA', '5601099'), + (827, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dBLQEWPA', '5605544'), + (827, 1699, 'not_attending', '2022-09-26 12:19:02', '2025-12-17 19:47:12', 'dBLQEWPA', '5606737'), + (827, 1708, 'maybe', '2022-10-05 02:37:28', '2025-12-17 19:47:12', 'dBLQEWPA', '5617648'), + (827, 1711, 'maybe', '2022-10-02 21:11:33', '2025-12-17 19:47:12', 'dBLQEWPA', '5621883'), + (827, 1712, 'attending', '2022-10-02 21:11:35', '2025-12-17 19:47:12', 'dBLQEWPA', '5622073'), + (827, 1713, 'attending', '2022-10-02 21:11:36', '2025-12-17 19:47:13', 'dBLQEWPA', '5622108'), + (827, 1714, 'maybe', '2022-10-02 21:11:39', '2025-12-17 19:47:14', 'dBLQEWPA', '5622347'), + (827, 1717, 'attending', '2022-10-21 10:43:16', '2025-12-17 19:47:13', 'dBLQEWPA', '5622842'), + (827, 1718, 'attending', '2022-10-05 01:07:48', '2025-12-17 19:47:12', 'dBLQEWPA', '5630907'), + (827, 1719, 'maybe', '2022-10-08 15:54:21', '2025-12-17 19:47:12', 'dBLQEWPA', '5630958'), + (827, 1721, 'attending', '2022-10-22 13:59:14', '2025-12-17 19:47:13', 'dBLQEWPA', '5630960'), + (827, 1722, 'attending', '2022-10-23 03:04:49', '2025-12-17 19:47:14', 'dBLQEWPA', '5630961'), + (827, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dBLQEWPA', '5630962'), + (827, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dBLQEWPA', '5630966'), + (827, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dBLQEWPA', '5630967'), + (827, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dBLQEWPA', '5630968'), + (827, 1727, 'attending', '2022-12-04 00:41:54', '2025-12-17 19:47:16', 'dBLQEWPA', '5630969'), + (827, 1728, 'attending', '2022-12-11 20:39:49', '2025-12-17 19:47:17', 'dBLQEWPA', '5630970'), + (827, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dBLQEWPA', '5635406'), + (827, 1737, 'attending', '2022-11-30 22:52:07', '2025-12-17 19:47:16', 'dBLQEWPA', '5638457'), + (827, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dBLQEWPA', '5638765'), + (827, 1739, 'not_attending', '2022-10-23 03:04:41', '2025-12-17 19:47:14', 'dBLQEWPA', '5640097'), + (827, 1740, 'not_attending', '2022-10-09 21:07:09', '2025-12-17 19:47:13', 'dBLQEWPA', '5640843'), + (827, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dBLQEWPA', '5641521'), + (827, 1744, 'attending', '2022-11-21 20:35:50', '2025-12-17 19:47:16', 'dBLQEWPA', '5642818'), + (827, 1747, 'not_attending', '2022-10-25 16:14:59', '2025-12-17 19:47:14', 'dBLQEWPA', '5648009'), + (827, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dBLQEWPA', '5652395'), + (827, 1753, 'attending', '2022-10-22 13:59:08', '2025-12-17 19:47:13', 'dBLQEWPA', '5656228'), + (827, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dBLQEWPA', '5670445'), + (827, 1763, 'attending', '2022-11-11 05:17:58', '2025-12-17 19:47:15', 'dBLQEWPA', '5670803'), + (827, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dBLQEWPA', '5671637'), + (827, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dBLQEWPA', '5672329'), + (827, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dBLQEWPA', '5674057'), + (827, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dBLQEWPA', '5674060'), + (827, 1770, 'not_attending', '2022-10-28 20:32:49', '2025-12-17 19:47:14', 'dBLQEWPA', '5676936'), + (827, 1772, 'maybe', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'dBLQEWPA', '5677461'), + (827, 1776, 'attending', '2022-11-09 23:48:31', '2025-12-17 19:47:15', 'dBLQEWPA', '5691067'), + (827, 1781, 'attending', '2022-11-02 17:16:59', '2025-12-17 19:47:15', 'dBLQEWPA', '5696178'), + (827, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dBLQEWPA', '5698046'), + (827, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dBLQEWPA', '5699760'), + (827, 1791, 'not_attending', '2022-11-08 05:22:20', '2025-12-17 19:47:15', 'dBLQEWPA', '5728511'), + (827, 1793, 'maybe', '2022-11-21 20:35:57', '2025-12-17 19:47:16', 'dBLQEWPA', '5736365'), + (827, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dBLQEWPA', '5741601'), + (827, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dBLQEWPA', '5763458'), + (827, 1806, 'not_attending', '2023-01-21 04:14:14', '2025-12-17 19:47:05', 'dBLQEWPA', '5764676'), + (827, 1807, 'attending', '2023-01-14 23:31:17', '2025-12-17 19:47:05', 'dBLQEWPA', '5764677'), + (827, 1808, 'attending', '2023-03-04 11:14:42', '2025-12-17 19:47:08', 'dBLQEWPA', '5764678'), + (827, 1810, 'attending', '2023-04-22 21:09:51', '2025-12-17 19:47:00', 'dBLQEWPA', '5764680'), + (827, 1812, 'attending', '2023-03-11 18:27:32', '2025-12-17 19:47:09', 'dBLQEWPA', '5764682'), + (827, 1813, 'attending', '2023-04-29 16:49:21', '2025-12-17 19:47:01', 'dBLQEWPA', '5764683'), + (827, 1814, 'attending', '2023-02-24 21:33:33', '2025-12-17 19:47:08', 'dBLQEWPA', '5764684'), + (827, 1816, 'attending', '2023-05-20 02:36:22', '2025-12-17 19:47:03', 'dBLQEWPA', '5764686'), + (827, 1821, 'maybe', '2023-03-17 00:11:58', '2025-12-17 19:46:56', 'dBLQEWPA', '5764691'), + (827, 1822, 'attending', '2023-05-13 02:19:13', '2025-12-17 19:47:02', 'dBLQEWPA', '5764692'), + (827, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dBLQEWPA', '5774172'), + (827, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dBLQEWPA', '5818247'), + (827, 1834, 'attending', '2022-12-10 17:52:35', '2025-12-17 19:47:17', 'dBLQEWPA', '5819470'), + (827, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dBLQEWPA', '5819471'), + (827, 1837, 'attending', '2022-12-05 20:05:49', '2025-12-17 19:47:16', 'dBLQEWPA', '5820146'), + (827, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dBLQEWPA', '5827739'), + (827, 1843, 'maybe', '2022-12-17 22:03:14', '2025-12-17 19:47:04', 'dBLQEWPA', '5844304'), + (827, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dBLQEWPA', '5844306'), + (827, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dBLQEWPA', '5850159'), + (827, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dBLQEWPA', '5858999'), + (827, 1852, 'attending', '2023-01-09 07:01:13', '2025-12-17 19:47:05', 'dBLQEWPA', '5869898'), + (827, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dBLQEWPA', '5871984'), + (827, 1859, 'attending', '2023-01-20 17:14:56', '2025-12-17 19:47:05', 'dBLQEWPA', '5876234'), + (827, 1861, 'attending', '2023-01-17 05:11:00', '2025-12-17 19:47:05', 'dBLQEWPA', '5876354'), + (827, 1864, 'not_attending', '2023-01-21 04:14:15', '2025-12-17 19:47:05', 'dBLQEWPA', '5879675'), + (827, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dBLQEWPA', '5880939'), + (827, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dBLQEWPA', '5880940'), + (827, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dBLQEWPA', '5880942'), + (827, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dBLQEWPA', '5880943'), + (827, 1872, 'maybe', '2023-01-19 04:49:59', '2025-12-17 19:47:05', 'dBLQEWPA', '5883546'), + (827, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dBLQEWPA', '5887890'), + (827, 1875, 'maybe', '2023-01-26 01:40:50', '2025-12-17 19:47:06', 'dBLQEWPA', '5887908'), + (827, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dBLQEWPA', '5888598'), + (827, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dBLQEWPA', '5893260'), + (827, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dBLQEWPA', '5899826'), + (827, 1885, 'attending', '2023-02-24 21:33:23', '2025-12-17 19:47:08', 'dBLQEWPA', '5899928'), + (827, 1886, 'attending', '2023-03-08 19:18:49', '2025-12-17 19:47:09', 'dBLQEWPA', '5899930'), + (827, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dBLQEWPA', '5900199'), + (827, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dBLQEWPA', '5900200'), + (827, 1891, 'attending', '2023-03-20 19:38:43', '2025-12-17 19:46:56', 'dBLQEWPA', '5900202'), + (827, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dBLQEWPA', '5900203'), + (827, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dBLQEWPA', '5901108'), + (827, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dBLQEWPA', '5901126'), + (827, 1898, 'not_attending', '2023-02-01 23:52:29', '2025-12-17 19:47:06', 'dBLQEWPA', '5901263'), + (827, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dBLQEWPA', '5909655'), + (827, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dBLQEWPA', '5910522'), + (827, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dBLQEWPA', '5910526'), + (827, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dBLQEWPA', '5910528'), + (827, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dBLQEWPA', '5916219'), + (827, 1923, 'attending', '2023-02-16 19:40:45', '2025-12-17 19:47:07', 'dBLQEWPA', '5930436'), + (827, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dBLQEWPA', '5936234'), + (827, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dBLQEWPA', '5958351'), + (827, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dBLQEWPA', '5959751'), + (827, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dBLQEWPA', '5959755'), + (827, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dBLQEWPA', '5960055'), + (827, 1941, 'maybe', '2023-02-25 03:31:22', '2025-12-17 19:47:09', 'dBLQEWPA', '5961684'), + (827, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dBLQEWPA', '5962132'), + (827, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dBLQEWPA', '5962133'), + (827, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dBLQEWPA', '5962134'), + (827, 1947, 'attending', '2023-03-05 22:43:30', '2025-12-17 19:47:09', 'dBLQEWPA', '5962233'), + (827, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dBLQEWPA', '5962317'), + (827, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dBLQEWPA', '5962318'), + (827, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dBLQEWPA', '5965933'), + (827, 1953, 'maybe', '2023-03-05 20:34:38', '2025-12-17 19:47:09', 'dBLQEWPA', '5966307'), + (827, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dBLQEWPA', '5967014'), + (827, 1955, 'maybe', '2023-03-29 18:56:59', '2025-12-17 19:46:57', 'dBLQEWPA', '5972529'), + (827, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dBLQEWPA', '5972763'), + (827, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dBLQEWPA', '5972815'), + (827, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dBLQEWPA', '5974016'), + (827, 1965, 'attending', '2023-03-10 22:07:13', '2025-12-17 19:47:09', 'dBLQEWPA', '5981515'), + (827, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dBLQEWPA', '5993516'), + (827, 1970, 'attending', '2023-03-20 19:38:24', '2025-12-17 19:46:56', 'dBLQEWPA', '5993758'), + (827, 1972, 'attending', '2023-03-19 02:55:05', '2025-12-17 19:46:56', 'dBLQEWPA', '5993776'), + (827, 1974, 'not_attending', '2023-03-20 19:38:14', '2025-12-17 19:46:57', 'dBLQEWPA', '5993778'), + (827, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dBLQEWPA', '5998939'), + (827, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dBLQEWPA', '6028191'), + (827, 1979, 'attending', '2023-03-18 01:07:49', '2025-12-17 19:46:56', 'dBLQEWPA', '6030009'), + (827, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dBLQEWPA', '6040066'), + (827, 1984, 'attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dBLQEWPA', '6042717'), + (827, 1986, 'maybe', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dBLQEWPA', '6044838'), + (827, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dBLQEWPA', '6044839'), + (827, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBLQEWPA', '6045684'), + (827, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dBLQEWPA', '6050104'), + (827, 2002, 'maybe', '2023-04-28 19:53:15', '2025-12-17 19:47:01', 'dBLQEWPA', '6052605'), + (827, 2005, 'attending', '2023-04-04 22:14:57', '2025-12-17 19:46:58', 'dBLQEWPA', '6053195'), + (827, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dBLQEWPA', '6053198'), + (827, 2008, 'attending', '2023-04-07 20:07:56', '2025-12-17 19:46:58', 'dBLQEWPA', '6055808'), + (827, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dBLQEWPA', '6056085'), + (827, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dBLQEWPA', '6056916'), + (827, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dBLQEWPA', '6059290'), + (827, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dBLQEWPA', '6060328'), + (827, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dBLQEWPA', '6061037'), + (827, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dBLQEWPA', '6061039'), + (827, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'dBLQEWPA', '6061099'), + (827, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dBLQEWPA', '6067245'), + (827, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dBLQEWPA', '6068094'), + (827, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dBLQEWPA', '6068252'), + (827, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dBLQEWPA', '6068253'), + (827, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dBLQEWPA', '6068254'), + (827, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dBLQEWPA', '6068280'), + (827, 2032, 'attending', '2023-05-20 16:34:22', '2025-12-17 19:47:04', 'dBLQEWPA', '6068281'), + (827, 2033, 'attending', '2023-04-19 00:09:08', '2025-12-17 19:47:00', 'dBLQEWPA', '6069093'), + (827, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dBLQEWPA', '6072528'), + (827, 2043, 'attending', '2023-04-26 18:49:13', '2025-12-17 19:47:01', 'dBLQEWPA', '6073023'), + (827, 2044, 'maybe', '2023-05-23 22:33:51', '2025-12-17 19:47:03', 'dBLQEWPA', '6073678'), + (827, 2048, 'attending', '2023-04-28 13:39:46', '2025-12-17 19:47:03', 'dBLQEWPA', '6076415'), + (827, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dBLQEWPA', '6079840'), + (827, 2051, 'attending', '2023-05-01 04:19:32', '2025-12-17 19:47:02', 'dBLQEWPA', '6083398'), + (827, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dBLQEWPA', '6093504'), + (827, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dBLQEWPA', '6097414'), + (827, 2061, 'attending', '2023-05-09 00:06:35', '2025-12-17 19:47:02', 'dBLQEWPA', '6097442'), + (827, 2062, 'attending', '2023-05-09 01:04:07', '2025-12-17 19:47:02', 'dBLQEWPA', '6097684'), + (827, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dBLQEWPA', '6098762'), + (827, 2064, 'attending', '2023-05-27 19:35:33', '2025-12-17 19:46:50', 'dBLQEWPA', '6099988'), + (827, 2065, 'attending', '2023-05-27 19:35:31', '2025-12-17 19:46:49', 'dBLQEWPA', '6101169'), + (827, 2066, 'attending', '2023-05-11 22:23:31', '2025-12-17 19:47:04', 'dBLQEWPA', '6101361'), + (827, 2067, 'attending', '2023-05-11 22:28:47', '2025-12-17 19:47:03', 'dBLQEWPA', '6101362'), + (827, 2074, 'attending', '2023-05-19 00:24:02', '2025-12-17 19:47:03', 'dBLQEWPA', '6107312'), + (827, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dBLQEWPA', '6107314'), + (827, 2076, 'not_attending', '2023-05-20 02:36:20', '2025-12-17 19:47:03', 'dBLQEWPA', '6108350'), + (827, 2081, 'attending', '2023-05-23 22:30:29', '2025-12-17 19:47:03', 'dBLQEWPA', '6115611'), + (827, 2083, 'maybe', '2023-05-23 22:30:30', '2025-12-17 19:47:04', 'dBLQEWPA', '6115629'), + (827, 2087, 'attending', '2023-05-26 21:01:47', '2025-12-17 19:47:04', 'dBLQEWPA', '6120034'), + (827, 2091, 'attending', '2023-06-04 17:41:14', '2025-12-17 19:47:04', 'dBLQEWPA', '6130657'), + (827, 2092, 'attending', '2023-06-03 20:51:20', '2025-12-17 19:47:04', 'dBLQEWPA', '6132543'), + (827, 2094, 'maybe', '2023-06-09 16:07:55', '2025-12-17 19:47:04', 'dBLQEWPA', '6135924'), + (827, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dBLQEWPA', '6136733'), + (827, 2096, 'attending', '2023-06-06 18:53:25', '2025-12-17 19:47:04', 'dBLQEWPA', '6137989'), + (827, 2108, 'attending', '2023-06-18 16:30:53', '2025-12-17 19:46:50', 'dBLQEWPA', '6150864'), + (827, 2109, 'attending', '2023-06-19 19:28:10', '2025-12-17 19:46:50', 'dBLQEWPA', '6152821'), + (827, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dBLQEWPA', '6155491'), + (827, 2116, 'maybe', '2023-07-06 20:35:36', '2025-12-17 19:46:51', 'dBLQEWPA', '6163389'), + (827, 2118, 'attending', '2023-06-25 16:16:43', '2025-12-17 19:46:50', 'dBLQEWPA', '6164417'), + (827, 2120, 'attending', '2023-06-26 21:35:50', '2025-12-17 19:46:50', 'dBLQEWPA', '6166388'), + (827, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dBLQEWPA', '6176439'), + (827, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dBLQEWPA', '6180853'), + (827, 2128, 'attending', '2023-07-02 18:16:50', '2025-12-17 19:46:50', 'dBLQEWPA', '6182410'), + (827, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dBLQEWPA', '6185812'), + (827, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dBLQEWPA', '6187651'), + (827, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dBLQEWPA', '6187963'), + (827, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dBLQEWPA', '6187964'), + (827, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dBLQEWPA', '6187966'), + (827, 2137, 'maybe', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dBLQEWPA', '6187967'), + (827, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dBLQEWPA', '6187969'), + (827, 2143, 'attending', '2023-07-08 18:41:33', '2025-12-17 19:46:51', 'dBLQEWPA', '6334348'), + (827, 2144, 'attending', '2023-07-08 22:23:33', '2025-12-17 19:46:52', 'dBLQEWPA', '6334878'), + (827, 2146, 'maybe', '2023-07-18 16:19:29', '2025-12-17 19:46:53', 'dBLQEWPA', '6335638'), + (827, 2147, 'maybe', '2023-07-09 20:53:18', '2025-12-17 19:46:52', 'dBLQEWPA', '6335666'), + (827, 2149, 'attending', '2023-07-19 05:10:38', '2025-12-17 19:46:53', 'dBLQEWPA', '6335682'), + (827, 2152, 'maybe', '2023-07-13 23:25:32', '2025-12-17 19:46:52', 'dBLQEWPA', '6337021'), + (827, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dBLQEWPA', '6337236'), + (827, 2155, 'attending', '2023-07-18 16:16:57', '2025-12-17 19:46:53', 'dBLQEWPA', '6337970'), + (827, 2156, 'attending', '2023-07-12 21:16:26', '2025-12-17 19:46:52', 'dBLQEWPA', '6338308'), + (827, 2158, 'attending', '2023-07-23 07:21:36', '2025-12-17 19:46:53', 'dBLQEWPA', '6338353'), + (827, 2159, 'attending', '2023-07-18 16:19:34', '2025-12-17 19:46:53', 'dBLQEWPA', '6338355'), + (827, 2160, 'attending', '2023-07-17 18:49:27', '2025-12-17 19:46:54', 'dBLQEWPA', '6338358'), + (827, 2161, 'attending', '2023-07-15 19:31:05', '2025-12-17 19:46:52', 'dBLQEWPA', '6340748'), + (827, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dBLQEWPA', '6340845'), + (827, 2163, 'attending', '2023-07-16 20:05:15', '2025-12-17 19:46:52', 'dBLQEWPA', '6341710'), + (827, 2165, 'attending', '2023-08-02 05:17:03', '2025-12-17 19:46:54', 'dBLQEWPA', '6342044'), + (827, 2166, 'not_attending', '2023-07-23 07:09:59', '2025-12-17 19:46:54', 'dBLQEWPA', '6342115'), + (827, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dBLQEWPA', '6342298'), + (827, 2172, 'attending', '2023-07-18 16:19:16', '2025-12-17 19:46:53', 'dBLQEWPA', '6342591'), + (827, 2174, 'attending', '2023-07-19 05:14:37', '2025-12-17 19:46:53', 'dBLQEWPA', '6343294'), + (827, 2175, 'attending', '2023-07-22 18:59:10', '2025-12-17 19:46:53', 'dBLQEWPA', '6346982'), + (827, 2176, 'attending', '2023-07-23 07:36:49', '2025-12-17 19:46:54', 'dBLQEWPA', '6347034'), + (827, 2177, 'attending', '2023-08-07 03:56:23', '2025-12-17 19:46:55', 'dBLQEWPA', '6347053'), + (827, 2178, 'attending', '2023-07-23 07:34:05', '2025-12-17 19:46:53', 'dBLQEWPA', '6347056'), + (827, 2182, 'not_attending', '2023-07-26 20:15:58', '2025-12-17 19:46:53', 'dBLQEWPA', '6349618'), + (827, 2183, 'not_attending', '2023-07-29 17:42:20', '2025-12-17 19:46:54', 'dBLQEWPA', '6353008'), + (827, 2184, 'attending', '2023-07-29 20:37:46', '2025-12-17 19:46:54', 'dBLQEWPA', '6353825'), + (827, 2185, 'maybe', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dBLQEWPA', '6353830'), + (827, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dBLQEWPA', '6353831'), + (827, 2187, 'not_attending', '2023-08-02 05:17:20', '2025-12-17 19:46:55', 'dBLQEWPA', '6357559'), + (827, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dBLQEWPA', '6357867'), + (827, 2191, 'attending', '2023-08-03 20:26:42', '2025-12-17 19:46:54', 'dBLQEWPA', '6358652'), + (827, 2196, 'attending', '2023-09-08 23:31:01', '2025-12-17 19:46:56', 'dBLQEWPA', '6359398'), + (827, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'dBLQEWPA', '6359940'), + (827, 2202, 'not_attending', '2023-08-06 18:29:36', '2025-12-17 19:46:54', 'dBLQEWPA', '6360509'), + (827, 2204, 'attending', '2023-08-19 13:59:52', '2025-12-17 19:46:55', 'dBLQEWPA', '6361542'), + (827, 2208, 'attending', '2023-08-09 00:58:17', '2025-12-17 19:46:54', 'dBLQEWPA', '6361709'), + (827, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dBLQEWPA', '6361710'), + (827, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dBLQEWPA', '6361711'), + (827, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dBLQEWPA', '6361712'), + (827, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dBLQEWPA', '6361713'), + (827, 2216, 'not_attending', '2023-08-14 17:00:48', '2025-12-17 19:46:55', 'dBLQEWPA', '6364123'), + (827, 2217, 'attending', '2023-08-14 19:05:08', '2025-12-17 19:46:55', 'dBLQEWPA', '6364333'), + (827, 2219, 'maybe', '2023-08-14 22:42:38', '2025-12-17 19:46:55', 'dBLQEWPA', '6367309'), + (827, 2226, 'not_attending', '2023-08-17 16:37:51', '2025-12-17 19:46:55', 'dBLQEWPA', '6370006'), + (827, 2227, 'maybe', '2023-08-20 22:57:43', '2025-12-17 19:46:55', 'dBLQEWPA', '6370581'), + (827, 2228, 'not_attending', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'dBLQEWPA', '6372777'), + (827, 2232, 'attending', '2023-08-23 20:26:46', '2025-12-17 19:46:55', 'dBLQEWPA', '6374818'), + (827, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dBLQEWPA', '6382573'), + (827, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'dBLQEWPA', '6383149'), + (827, 2239, 'attending', '2023-09-02 04:12:37', '2025-12-17 19:46:56', 'dBLQEWPA', '6387592'), + (827, 2240, 'attending', '2023-09-02 04:12:40', '2025-12-17 19:46:56', 'dBLQEWPA', '6388603'), + (827, 2241, 'attending', '2023-09-02 04:12:42', '2025-12-17 19:46:44', 'dBLQEWPA', '6388604'), + (827, 2242, 'not_attending', '2023-09-02 04:13:05', '2025-12-17 19:46:45', 'dBLQEWPA', '6388606'), + (827, 2247, 'attending', '2023-09-06 16:48:44', '2025-12-17 19:46:56', 'dBLQEWPA', '6394628'), + (827, 2248, 'attending', '2023-09-09 21:46:04', '2025-12-17 19:46:44', 'dBLQEWPA', '6394629'), + (827, 2249, 'attending', '2023-09-09 21:46:10', '2025-12-17 19:46:45', 'dBLQEWPA', '6394630'), + (827, 2250, 'attending', '2023-09-09 21:46:14', '2025-12-17 19:46:45', 'dBLQEWPA', '6394631'), + (827, 2253, 'not_attending', '2023-09-11 05:54:47', '2025-12-17 19:46:45', 'dBLQEWPA', '6401811'), + (827, 2257, 'attending', '2023-09-16 17:15:39', '2025-12-17 19:46:44', 'dBLQEWPA', '6408068'), + (827, 2265, 'attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', 'dBLQEWPA', '6439625'), + (827, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dBLQEWPA', '6440863'), + (827, 2272, 'attending', '2023-10-03 01:31:41', '2025-12-17 19:46:45', 'dBLQEWPA', '6445440'), + (827, 2276, 'attending', '2023-10-08 04:06:43', '2025-12-17 19:46:46', 'dBLQEWPA', '6453951'), + (827, 2279, 'maybe', '2023-10-12 20:33:45', '2025-12-17 19:46:46', 'dBLQEWPA', '6455460'), + (827, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dBLQEWPA', '6461696'), + (827, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dBLQEWPA', '6462129'), + (827, 2290, 'attending', '2023-10-18 03:53:16', '2025-12-17 19:46:46', 'dBLQEWPA', '6462214'), + (827, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dBLQEWPA', '6463218'), + (827, 2299, 'attending', '2023-10-21 02:10:35', '2025-12-17 19:46:46', 'dBLQEWPA', '6472181'), + (827, 2304, 'attending', '2023-10-29 02:17:22', '2025-12-17 19:46:47', 'dBLQEWPA', '6482693'), + (827, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dBLQEWPA', '6484200'), + (827, 2307, 'attending', '2023-10-22 18:40:44', '2025-12-17 19:46:46', 'dBLQEWPA', '6484680'), + (827, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dBLQEWPA', '6507741'), + (827, 2322, 'attending', '2023-11-01 04:45:49', '2025-12-17 19:46:48', 'dBLQEWPA', '6514659'), + (827, 2323, 'attending', '2023-11-01 04:45:45', '2025-12-17 19:46:48', 'dBLQEWPA', '6514660'), + (827, 2324, 'attending', '2023-11-01 04:45:43', '2025-12-17 19:46:49', 'dBLQEWPA', '6514662'), + (827, 2325, 'attending', '2023-11-01 04:45:42', '2025-12-17 19:46:36', 'dBLQEWPA', '6514663'), + (827, 2333, 'attending', '2023-11-05 03:00:45', '2025-12-17 19:46:47', 'dBLQEWPA', '6519103'), + (827, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dBLQEWPA', '6535681'), + (827, 2345, 'maybe', '2023-11-29 21:02:18', '2025-12-17 19:46:48', 'dBLQEWPA', '6582414'), + (827, 2350, 'attending', '2023-11-22 19:12:05', '2025-12-17 19:46:48', 'dBLQEWPA', '6584352'), + (827, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dBLQEWPA', '6584747'), + (827, 2352, 'attending', '2023-11-21 09:50:58', '2025-12-17 19:46:48', 'dBLQEWPA', '6587097'), + (827, 2363, 'attending', '2023-12-04 23:38:16', '2025-12-17 19:46:49', 'dBLQEWPA', '6609022'), + (827, 2370, 'attending', '2023-12-12 05:32:50', '2025-12-17 19:46:36', 'dBLQEWPA', '6623765'), + (827, 2373, 'attending', '2023-12-22 01:59:34', '2025-12-17 19:46:38', 'dBLQEWPA', '6632678'), + (827, 2374, 'attending', '2023-12-18 22:28:35', '2025-12-17 19:46:36', 'dBLQEWPA', '6632757'), + (827, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dBLQEWPA', '6644187'), + (827, 2386, 'attending', '2024-01-02 23:53:39', '2025-12-17 19:46:37', 'dBLQEWPA', '6648951'), + (827, 2387, 'attending', '2024-01-04 03:39:49', '2025-12-17 19:46:37', 'dBLQEWPA', '6648952'), + (827, 2388, 'attending', '2024-01-03 02:35:05', '2025-12-17 19:46:37', 'dBLQEWPA', '6649244'), + (827, 2393, 'not_attending', '2024-01-10 23:19:04', '2025-12-17 19:46:38', 'dBLQEWPA', '6654468'), + (827, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dBLQEWPA', '6655401'), + (827, 2399, 'attending', '2024-01-10 23:38:52', '2025-12-17 19:46:38', 'dBLQEWPA', '6657583'), + (827, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dBLQEWPA', '6661585'), + (827, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dBLQEWPA', '6661588'), + (827, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dBLQEWPA', '6661589'), + (827, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dBLQEWPA', '6699906'), + (827, 2408, 'attending', '2024-01-15 03:42:02', '2025-12-17 19:46:40', 'dBLQEWPA', '6699907'), + (827, 2409, 'attending', '2024-01-15 03:52:26', '2025-12-17 19:46:41', 'dBLQEWPA', '6699909'), + (827, 2410, 'attending', '2024-01-15 03:52:28', '2025-12-17 19:46:41', 'dBLQEWPA', '6699911'), + (827, 2411, 'attending', '2024-01-15 04:03:05', '2025-12-17 19:46:41', 'dBLQEWPA', '6699913'), + (827, 2413, 'maybe', '2024-02-18 18:34:20', '2025-12-17 19:46:42', 'dBLQEWPA', '6700719'), + (827, 2414, 'attending', '2024-01-16 01:26:44', '2025-12-17 19:46:40', 'dBLQEWPA', '6701000'), + (827, 2415, 'attending', '2024-01-20 17:45:21', '2025-12-17 19:46:40', 'dBLQEWPA', '6701001'), + (827, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dBLQEWPA', '6701109'), + (827, 2419, 'maybe', '2024-01-24 20:49:06', '2025-12-17 19:46:41', 'dBLQEWPA', '6704505'), + (827, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dBLQEWPA', '6705219'), + (827, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dBLQEWPA', '6710153'), + (827, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dBLQEWPA', '6711552'), + (827, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dBLQEWPA', '6711553'), + (827, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dBLQEWPA', '6722688'), + (827, 2438, 'attending', '2024-02-08 00:34:34', '2025-12-17 19:46:41', 'dBLQEWPA', '6730201'), + (827, 2439, 'attending', '2024-01-31 02:58:26', '2025-12-17 19:46:41', 'dBLQEWPA', '6730620'), + (827, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dBLQEWPA', '6730642'), + (827, 2450, 'attending', '2024-02-05 17:50:23', '2025-12-17 19:46:41', 'dBLQEWPA', '6738807'), + (827, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dBLQEWPA', '6740364'), + (827, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dBLQEWPA', '6743829'), + (827, 2461, 'attending', '2024-02-10 05:06:11', '2025-12-17 19:46:41', 'dBLQEWPA', '6744245'), + (827, 2466, 'attending', '2024-02-14 23:58:57', '2025-12-17 19:46:41', 'dBLQEWPA', '7026777'), + (827, 2467, 'attending', '2024-02-22 00:44:55', '2025-12-17 19:46:43', 'dBLQEWPA', '7029987'), + (827, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dBLQEWPA', '7030380'), + (827, 2471, 'attending', '2024-02-23 07:11:08', '2025-12-17 19:46:42', 'dBLQEWPA', '7032425'), + (827, 2472, 'attending', '2024-02-19 22:45:48', '2025-12-17 19:46:42', 'dBLQEWPA', '7033677'), + (827, 2474, 'attending', '2024-02-20 23:54:27', '2025-12-17 19:46:43', 'dBLQEWPA', '7035415'), + (827, 2475, 'not_attending', '2024-02-20 23:58:54', '2025-12-17 19:46:43', 'dBLQEWPA', '7035643'), + (827, 2476, 'maybe', '2024-02-20 23:58:51', '2025-12-17 19:46:43', 'dBLQEWPA', '7035691'), + (827, 2478, 'attending', '2024-02-20 23:53:29', '2025-12-17 19:46:43', 'dBLQEWPA', '7036478'), + (827, 2480, 'attending', '2024-02-24 08:26:58', '2025-12-17 19:46:43', 'dBLQEWPA', '7042160'), + (827, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dBLQEWPA', '7044715'), + (827, 2486, 'not_attending', '2024-02-27 06:26:10', '2025-12-17 19:46:43', 'dBLQEWPA', '7048277'), + (827, 2489, 'attending', '2024-02-27 23:01:34', '2025-12-17 19:46:43', 'dBLQEWPA', '7050161'), + (827, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dBLQEWPA', '7050318'), + (827, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dBLQEWPA', '7050319'), + (827, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dBLQEWPA', '7050322'), + (827, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dBLQEWPA', '7057804'), + (827, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dBLQEWPA', '7059866'), + (827, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dBLQEWPA', '7072824'), + (827, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dBLQEWPA', '7074348'), + (827, 2512, 'not_attending', '2024-04-01 18:57:10', '2025-12-17 19:46:33', 'dBLQEWPA', '7074352'), + (827, 2513, 'maybe', '2024-04-11 22:53:38', '2025-12-17 19:46:34', 'dBLQEWPA', '7074353'), + (827, 2539, 'maybe', '2024-04-01 18:56:51', '2025-12-17 19:46:33', 'dBLQEWPA', '7085486'), + (827, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dBLQEWPA', '7089267'), + (827, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dBLQEWPA', '7098747'), + (827, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dBLQEWPA', '7113468'), + (827, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dBLQEWPA', '7114856'), + (827, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'dBLQEWPA', '7114951'), + (827, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dBLQEWPA', '7114955'), + (827, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dBLQEWPA', '7114956'), + (827, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dBLQEWPA', '7114957'), + (827, 2563, 'not_attending', '2024-04-11 22:53:10', '2025-12-17 19:46:33', 'dBLQEWPA', '7134734'), + (827, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dBLQEWPA', '7153615'), + (827, 2571, 'maybe', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dBLQEWPA', '7159484'), + (827, 2590, 'attending', '2024-04-16 19:59:28', '2025-12-17 19:46:34', 'dBLQEWPA', '7178446'), + (827, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dBLQEWPA', '7220467'), + (827, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBLQEWPA', '7240354'), + (827, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBLQEWPA', '7251633'), + (827, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBLQEWPA', '7263048'), + (828, 1824, 'attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'mLDJpvJm', '5774172'), + (828, 1825, 'attending', '2022-12-07 16:45:17', '2025-12-17 19:47:16', 'mLDJpvJm', '5776760'), + (828, 1829, 'attending', '2022-12-03 22:14:24', '2025-12-17 19:47:16', 'mLDJpvJm', '5778867'), + (828, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'mLDJpvJm', '5818247'), + (828, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mLDJpvJm', '5819471'), + (828, 1836, 'maybe', '2022-12-07 16:44:44', '2025-12-17 19:47:16', 'mLDJpvJm', '5819484'), + (828, 1842, 'maybe', '2022-12-17 20:16:14', '2025-12-17 19:47:04', 'mLDJpvJm', '5827739'), + (828, 1843, 'attending', '2022-12-17 20:14:54', '2025-12-17 19:47:04', 'mLDJpvJm', '5844304'), + (828, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mLDJpvJm', '5844306'), + (828, 1845, 'attending', '2022-12-17 21:27:26', '2025-12-17 19:47:05', 'mLDJpvJm', '5844406'), + (828, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mLDJpvJm', '5850159'), + (828, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mLDJpvJm', '5858999'), + (828, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mLDJpvJm', '5871984'), + (828, 1860, 'maybe', '2023-01-13 17:05:03', '2025-12-17 19:47:05', 'mLDJpvJm', '5876309'), + (828, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mLDJpvJm', '5876354'), + (828, 1864, 'attending', '2023-01-18 23:59:55', '2025-12-17 19:47:05', 'mLDJpvJm', '5879675'), + (828, 1865, 'attending', '2023-01-26 20:50:31', '2025-12-17 19:47:06', 'mLDJpvJm', '5879676'), + (828, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mLDJpvJm', '5880939'), + (828, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mLDJpvJm', '5880940'), + (828, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mLDJpvJm', '5880942'), + (828, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mLDJpvJm', '5880943'), + (828, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mLDJpvJm', '5887890'), + (828, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mLDJpvJm', '5888598'), + (828, 1879, 'maybe', '2023-01-29 20:12:12', '2025-12-17 19:47:06', 'mLDJpvJm', '5893001'), + (828, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mLDJpvJm', '5893260'), + (828, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mLDJpvJm', '5899826'), + (828, 1888, 'maybe', '2023-02-13 23:18:49', '2025-12-17 19:47:07', 'mLDJpvJm', '5900197'), + (828, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mLDJpvJm', '5900199'), + (828, 1890, 'maybe', '2023-02-20 15:05:02', '2025-12-17 19:47:08', 'mLDJpvJm', '5900200'), + (828, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mLDJpvJm', '5900202'), + (828, 1892, 'maybe', '2023-03-09 19:40:23', '2025-12-17 19:46:56', 'mLDJpvJm', '5900203'), + (828, 1895, 'maybe', '2023-01-31 22:15:47', '2025-12-17 19:47:06', 'mLDJpvJm', '5901108'), + (828, 1896, 'maybe', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mLDJpvJm', '5901126'), + (828, 1898, 'maybe', '2023-01-31 23:58:18', '2025-12-17 19:47:06', 'mLDJpvJm', '5901263'), + (828, 1899, 'attending', '2023-02-09 16:05:46', '2025-12-17 19:47:07', 'mLDJpvJm', '5901323'), + (828, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mLDJpvJm', '5909655'), + (828, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mLDJpvJm', '5910522'), + (828, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mLDJpvJm', '5910526'), + (828, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mLDJpvJm', '5910528'), + (828, 1922, 'maybe', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mLDJpvJm', '5916219'), + (828, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mLDJpvJm', '5936234'), + (828, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mLDJpvJm', '5958351'), + (828, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mLDJpvJm', '5959751'), + (828, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mLDJpvJm', '5959755'), + (828, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mLDJpvJm', '5960055'), + (828, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mLDJpvJm', '5961684'), + (828, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mLDJpvJm', '5962132'), + (828, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mLDJpvJm', '5962133'), + (828, 1946, 'maybe', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mLDJpvJm', '5962134'), + (828, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mLDJpvJm', '5962317'), + (828, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mLDJpvJm', '5962318'), + (828, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'mLDJpvJm', '5965933'), + (828, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mLDJpvJm', '5967014'), + (828, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mLDJpvJm', '5972815'), + (828, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mLDJpvJm', '5974016'), + (828, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'mLDJpvJm', '5975052'), + (828, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'mLDJpvJm', '5975054'), + (828, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mLDJpvJm', '5981515'), + (828, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mLDJpvJm', '5993516'), + (828, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mLDJpvJm', '5998939'), + (828, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mLDJpvJm', '6028191'), + (828, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mLDJpvJm', '6040066'), + (828, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mLDJpvJm', '6042717'), + (828, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mLDJpvJm', '6044838'), + (828, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mLDJpvJm', '6044839'), + (828, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mLDJpvJm', '6045684'), + (828, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mLDJpvJm', '6050104'), + (828, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mLDJpvJm', '6053195'), + (828, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mLDJpvJm', '6053198'), + (828, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mLDJpvJm', '6056085'), + (828, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mLDJpvJm', '6056916'), + (828, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mLDJpvJm', '6059290'), + (828, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mLDJpvJm', '6060328'), + (828, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mLDJpvJm', '6061037'), + (828, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mLDJpvJm', '6061039'), + (828, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mLDJpvJm', '6067245'), + (828, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mLDJpvJm', '6068094'), + (828, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mLDJpvJm', '6068252'), + (828, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mLDJpvJm', '6068253'), + (828, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mLDJpvJm', '6068254'), + (828, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mLDJpvJm', '6068280'), + (828, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mLDJpvJm', '6069093'), + (828, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mLDJpvJm', '6072528'), + (828, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'mLDJpvJm', '6075556'), + (828, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mLDJpvJm', '6079840'), + (828, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mLDJpvJm', '6083398'), + (828, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mLDJpvJm', '6093504'), + (828, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mLDJpvJm', '6097414'), + (828, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mLDJpvJm', '6097442'), + (828, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mLDJpvJm', '6097684'), + (828, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mLDJpvJm', '6098762'), + (828, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mLDJpvJm', '6101361'), + (828, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mLDJpvJm', '6101362'), + (828, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mLDJpvJm', '6107314'), + (828, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mLDJpvJm', '6120034'), + (828, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mLDJpvJm', '6136733'), + (828, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mLDJpvJm', '6137989'), + (828, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mLDJpvJm', '6150864'), + (828, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mLDJpvJm', '6155491'), + (828, 2116, 'maybe', '2023-07-04 18:28:40', '2025-12-17 19:46:51', 'mLDJpvJm', '6163389'), + (828, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mLDJpvJm', '6164417'), + (828, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mLDJpvJm', '6166388'), + (828, 2121, 'maybe', '2023-06-28 18:49:32', '2025-12-17 19:46:50', 'mLDJpvJm', '6176439'), + (828, 2126, 'maybe', '2023-07-02 12:40:56', '2025-12-17 19:46:51', 'mLDJpvJm', '6177548'), + (828, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'mLDJpvJm', '6182410'), + (828, 2130, 'attending', '2023-07-04 18:28:32', '2025-12-17 19:46:51', 'mLDJpvJm', '6183891'), + (828, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mLDJpvJm', '6185812'), + (828, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mLDJpvJm', '6187651'), + (828, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mLDJpvJm', '6187963'), + (828, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mLDJpvJm', '6187964'), + (828, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mLDJpvJm', '6187966'), + (828, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mLDJpvJm', '6187967'), + (828, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mLDJpvJm', '6187969'), + (828, 2142, 'maybe', '2023-07-17 18:49:08', '2025-12-17 19:46:52', 'mLDJpvJm', '6333850'), + (828, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mLDJpvJm', '6334878'), + (828, 2152, 'maybe', '2023-07-14 15:54:45', '2025-12-17 19:46:52', 'mLDJpvJm', '6337021'), + (828, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mLDJpvJm', '6337236'), + (828, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mLDJpvJm', '6337970'), + (828, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mLDJpvJm', '6338308'), + (828, 2157, 'not_attending', '2023-07-12 21:56:12', '2025-12-17 19:46:52', 'mLDJpvJm', '6338342'), + (828, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mLDJpvJm', '6341710'), + (828, 2165, 'attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mLDJpvJm', '6342044'), + (828, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mLDJpvJm', '6342298'), + (828, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mLDJpvJm', '6343294'), + (828, 2176, 'maybe', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mLDJpvJm', '6347034'), + (828, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mLDJpvJm', '6347056'), + (828, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mLDJpvJm', '6353830'), + (828, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mLDJpvJm', '6353831'), + (828, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mLDJpvJm', '6357867'), + (828, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mLDJpvJm', '6358652'), + (828, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'mLDJpvJm', '6358668'), + (828, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'mLDJpvJm', '6358669'), + (828, 2195, 'attending', '2023-08-24 22:14:36', '2025-12-17 19:46:55', 'mLDJpvJm', '6359397'), + (828, 2198, 'attending', '2023-09-22 15:24:15', '2025-12-17 19:46:45', 'mLDJpvJm', '6359400'), + (828, 2200, 'attending', '2023-08-09 23:20:00', '2025-12-17 19:46:55', 'mLDJpvJm', '6359850'), + (828, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mLDJpvJm', '6361709'), + (828, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mLDJpvJm', '6361710'), + (828, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mLDJpvJm', '6361711'), + (828, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mLDJpvJm', '6361712'), + (828, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mLDJpvJm', '6361713'), + (828, 2213, 'attending', '2023-08-15 22:00:34', '2025-12-17 19:46:55', 'mLDJpvJm', '6362935'), + (828, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mLDJpvJm', '6382573'), + (828, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mLDJpvJm', '6388604'), + (828, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mLDJpvJm', '6394629'), + (828, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mLDJpvJm', '6394631'), + (828, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mLDJpvJm', '6440863'), + (828, 2272, 'maybe', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mLDJpvJm', '6445440'), + (828, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mLDJpvJm', '6453951'), + (828, 2284, 'maybe', '2023-10-13 20:32:18', '2025-12-17 19:46:46', 'mLDJpvJm', '6460928'), + (828, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mLDJpvJm', '6461696'), + (828, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mLDJpvJm', '6462129'), + (828, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mLDJpvJm', '6463218'), + (828, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mLDJpvJm', '6472181'), + (828, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mLDJpvJm', '6482693'), + (828, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mLDJpvJm', '6484200'), + (828, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mLDJpvJm', '6484680'), + (828, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mLDJpvJm', '6507741'), + (828, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mLDJpvJm', '6514659'), + (828, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mLDJpvJm', '6514660'), + (828, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mLDJpvJm', '6519103'), + (828, 2337, 'attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mLDJpvJm', '6535681'), + (828, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mLDJpvJm', '6584747'), + (828, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mLDJpvJm', '6587097'), + (828, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mLDJpvJm', '6609022'), + (828, 2371, 'maybe', '2023-12-15 03:22:24', '2025-12-17 19:46:36', 'mLDJpvJm', '6624495'), + (828, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mLDJpvJm', '6632757'), + (828, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mLDJpvJm', '6644187'), + (828, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mLDJpvJm', '6648951'), + (828, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mLDJpvJm', '6648952'), + (828, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mLDJpvJm', '6655401'), + (828, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mLDJpvJm', '6661585'), + (828, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mLDJpvJm', '6661588'), + (828, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mLDJpvJm', '6661589'), + (828, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mLDJpvJm', '6699906'), + (828, 2409, 'attending', '2024-02-03 01:57:48', '2025-12-17 19:46:41', 'mLDJpvJm', '6699909'), + (828, 2411, 'maybe', '2024-02-16 00:53:21', '2025-12-17 19:46:42', 'mLDJpvJm', '6699913'), + (828, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mLDJpvJm', '6701109'), + (828, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'mLDJpvJm', '6704561'), + (828, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mLDJpvJm', '6705219'), + (828, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'mLDJpvJm', '6708410'), + (828, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mLDJpvJm', '6710153'), + (828, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mLDJpvJm', '6711552'), + (828, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mLDJpvJm', '6711553'), + (828, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mLDJpvJm', '6722688'), + (828, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mLDJpvJm', '6730620'), + (828, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mLDJpvJm', '6730642'), + (828, 2445, 'maybe', '2024-02-16 00:53:08', '2025-12-17 19:46:41', 'mLDJpvJm', '6734368'), + (828, 2446, 'maybe', '2024-02-29 14:36:18', '2025-12-17 19:46:43', 'mLDJpvJm', '6734369'), + (828, 2447, 'maybe', '2024-03-15 00:22:34', '2025-12-17 19:46:32', 'mLDJpvJm', '6734370'), + (828, 2448, 'attending', '2024-03-27 18:12:28', '2025-12-17 19:46:33', 'mLDJpvJm', '6734371'), + (828, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mLDJpvJm', '6740364'), + (828, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mLDJpvJm', '6743829'), + (828, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mLDJpvJm', '7030380'), + (828, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mLDJpvJm', '7033677'), + (828, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mLDJpvJm', '7035415'), + (828, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mLDJpvJm', '7044715'), + (828, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mLDJpvJm', '7050318'), + (828, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mLDJpvJm', '7050319'), + (828, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mLDJpvJm', '7050322'), + (828, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mLDJpvJm', '7057804'), + (828, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mLDJpvJm', '7072824'), + (828, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mLDJpvJm', '7074348'), + (828, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mLDJpvJm', '7074364'), + (828, 2527, 'not_attending', '2024-06-24 15:17:28', '2025-12-17 19:46:29', 'mLDJpvJm', '7074367'), + (828, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mLDJpvJm', '7089267'), + (828, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mLDJpvJm', '7098747'), + (828, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mLDJpvJm', '7113468'), + (828, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mLDJpvJm', '7114856'), + (828, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mLDJpvJm', '7114951'), + (828, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mLDJpvJm', '7114955'), + (828, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mLDJpvJm', '7114956'), + (828, 2558, 'maybe', '2024-04-30 19:15:13', '2025-12-17 19:46:35', 'mLDJpvJm', '7114957'), + (828, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mLDJpvJm', '7153615'), + (828, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mLDJpvJm', '7159484'), + (828, 2575, 'maybe', '2024-04-12 01:09:30', '2025-12-17 19:46:33', 'mLDJpvJm', '7164534'), + (828, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mLDJpvJm', '7178446'), + (828, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mLDJpvJm', '7220467'), + (828, 2603, 'maybe', '2024-05-14 22:51:06', '2025-12-17 19:46:35', 'mLDJpvJm', '7225669'), + (828, 2604, 'attending', '2024-05-25 15:45:45', '2025-12-17 19:46:36', 'mLDJpvJm', '7225670'), + (828, 2607, 'attending', '2024-04-30 19:14:48', '2025-12-17 19:46:35', 'mLDJpvJm', '7240136'), + (828, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mLDJpvJm', '7240354'), + (828, 2616, 'attending', '2024-05-06 15:23:15', '2025-12-17 19:46:35', 'mLDJpvJm', '7250296'), + (828, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mLDJpvJm', '7251633'), + (828, 2626, 'not_attending', '2024-05-17 22:40:45', '2025-12-17 19:46:35', 'mLDJpvJm', '7264723'), + (828, 2627, 'attending', '2024-05-21 19:09:18', '2025-12-17 19:46:35', 'mLDJpvJm', '7264724'), + (828, 2628, 'attending', '2024-05-30 21:05:09', '2025-12-17 19:46:36', 'mLDJpvJm', '7264725'), + (828, 2650, 'attending', '2024-05-24 17:29:03', '2025-12-17 19:46:35', 'mLDJpvJm', '7288199'), + (828, 2651, 'maybe', '2024-05-24 17:28:41', '2025-12-17 19:46:35', 'mLDJpvJm', '7288200'), + (828, 2652, 'not_attending', '2024-05-30 21:04:57', '2025-12-17 19:46:36', 'mLDJpvJm', '7288339'), + (828, 2655, 'attending', '2024-05-26 22:55:02', '2025-12-17 19:46:35', 'mLDJpvJm', '7291225'), + (828, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mLDJpvJm', '7302674'), + (828, 2668, 'attending', '2024-06-05 18:48:40', '2025-12-17 19:46:36', 'mLDJpvJm', '7308821'), + (828, 2678, 'maybe', '2024-06-11 13:31:25', '2025-12-17 19:46:28', 'mLDJpvJm', '7319489'), + (828, 2686, 'attending', '2024-06-20 16:30:42', '2025-12-17 19:46:29', 'mLDJpvJm', '7323802'), + (828, 2688, 'attending', '2024-06-24 15:17:48', '2025-12-17 19:46:29', 'mLDJpvJm', '7324073'), + (828, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mLDJpvJm', '7324074'), + (828, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mLDJpvJm', '7324075'), + (828, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mLDJpvJm', '7324078'), + (828, 2695, 'not_attending', '2024-08-15 23:40:37', '2025-12-17 19:46:31', 'mLDJpvJm', '7324080'), + (828, 2696, 'attending', '2024-08-20 02:49:50', '2025-12-17 19:46:32', 'mLDJpvJm', '7324081'), + (828, 2697, 'attending', '2024-08-26 12:28:05', '2025-12-17 19:46:32', 'mLDJpvJm', '7324082'), + (828, 2700, 'attending', '2024-06-13 16:52:45', '2025-12-17 19:46:28', 'mLDJpvJm', '7324388'), + (828, 2706, 'maybe', '2024-06-19 17:17:18', '2025-12-17 19:46:28', 'mLDJpvJm', '7324947'), + (828, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mLDJpvJm', '7331457'), + (828, 2724, 'attending', '2024-06-21 16:36:30', '2025-12-17 19:46:29', 'mLDJpvJm', '7332562'), + (828, 2726, 'attending', '2024-06-19 19:17:45', '2025-12-17 19:46:29', 'mLDJpvJm', '7332853'), + (828, 2742, 'maybe', '2024-07-01 23:31:47', '2025-12-17 19:46:29', 'mLDJpvJm', '7345167'), + (828, 2745, 'maybe', '2024-07-24 22:43:23', '2025-12-17 19:46:30', 'mLDJpvJm', '7348712'), + (828, 2746, 'maybe', '2024-07-08 02:04:59', '2025-12-17 19:46:29', 'mLDJpvJm', '7348713'), + (828, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mLDJpvJm', '7356752'), + (828, 2766, 'attending', '2024-07-26 11:17:56', '2025-12-17 19:46:30', 'mLDJpvJm', '7363643'), + (828, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mLDJpvJm', '7368606'), + (828, 2800, 'maybe', '2024-08-15 23:40:23', '2025-12-17 19:46:31', 'mLDJpvJm', '7397405'), + (828, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mLDJpvJm', '7397462'), + (828, 2806, 'attending', '2024-09-16 23:46:13', '2025-12-17 19:46:25', 'mLDJpvJm', '7404888'), + (828, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mLDJpvJm', '7424275'), + (828, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mLDJpvJm', '7424276'), + (828, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mLDJpvJm', '7432751'), + (828, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mLDJpvJm', '7432752'), + (828, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mLDJpvJm', '7432753'), + (828, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mLDJpvJm', '7432754'), + (828, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mLDJpvJm', '7432755'), + (828, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mLDJpvJm', '7432756'), + (828, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mLDJpvJm', '7432758'), + (828, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mLDJpvJm', '7432759'), + (828, 2832, 'attending', '2024-09-09 23:36:36', '2025-12-17 19:46:24', 'mLDJpvJm', '7433324'), + (828, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mLDJpvJm', '7433834'), + (828, 2838, 'maybe', '2024-09-26 14:09:32', '2025-12-17 19:46:25', 'mLDJpvJm', '7439182'), + (828, 2839, 'attending', '2024-09-23 19:18:45', '2025-12-17 19:46:25', 'mLDJpvJm', '7439262'), + (828, 2858, 'not_attending', '2024-10-15 22:00:20', '2025-12-17 19:46:26', 'mLDJpvJm', '7469388'), + (828, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mLDJpvJm', '7470197'), + (828, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mLDJpvJm', '7685613'), + (828, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mLDJpvJm', '7688194'), + (828, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mLDJpvJm', '7688196'), + (828, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mLDJpvJm', '7688289'), + (828, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mLDJpvJm', '7692763'), + (828, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mLDJpvJm', '7697552'), + (828, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mLDJpvJm', '7699878'), + (828, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mLDJpvJm', '7704043'), + (828, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mLDJpvJm', '7712467'), + (828, 2926, 'attending', '2024-12-05 07:30:24', '2025-12-17 19:46:21', 'mLDJpvJm', '7713585'), + (828, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mLDJpvJm', '7713586'), + (828, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mLDJpvJm', '7738518'), + (828, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mLDJpvJm', '7750636'), + (828, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mLDJpvJm', '7796540'), + (828, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mLDJpvJm', '7796541'), + (828, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mLDJpvJm', '7796542'), + (829, 2518, 'attending', '2024-07-25 20:48:03', '2025-12-17 19:46:30', 'Vmyl5z1d', '7074358'), + (829, 2691, 'not_attending', '2024-07-20 01:54:43', '2025-12-17 19:46:30', 'Vmyl5z1d', '7324076'), + (829, 2692, 'not_attending', '2024-07-27 21:57:02', '2025-12-17 19:46:30', 'Vmyl5z1d', '7324077'), + (829, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Vmyl5z1d', '7324078'), + (829, 2694, 'not_attending', '2024-08-09 23:44:47', '2025-12-17 19:46:31', 'Vmyl5z1d', '7324079'), + (829, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Vmyl5z1d', '7324082'), + (829, 2711, 'attending', '2024-07-19 23:18:22', '2025-12-17 19:46:30', 'Vmyl5z1d', '7326524'), + (829, 2763, 'not_attending', '2024-07-20 01:55:15', '2025-12-17 19:46:30', 'Vmyl5z1d', '7363594'), + (829, 2764, 'not_attending', '2024-07-27 21:58:10', '2025-12-17 19:46:30', 'Vmyl5z1d', '7363595'), + (829, 2766, 'not_attending', '2024-07-27 21:59:00', '2025-12-17 19:46:30', 'Vmyl5z1d', '7363643'), + (829, 2767, 'not_attending', '2024-07-20 01:55:23', '2025-12-17 19:46:30', 'Vmyl5z1d', '7364726'), + (829, 2768, 'not_attending', '2024-07-20 01:55:01', '2025-12-17 19:46:30', 'Vmyl5z1d', '7366031'), + (829, 2769, 'attending', '2024-07-19 21:03:36', '2025-12-17 19:46:30', 'Vmyl5z1d', '7366803'), + (829, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Vmyl5z1d', '7368606'), + (829, 2776, 'attending', '2024-07-25 20:47:03', '2025-12-17 19:46:30', 'Vmyl5z1d', '7370690'), + (829, 2781, 'not_attending', '2024-07-27 21:58:48', '2025-12-17 19:46:30', 'Vmyl5z1d', '7373194'), + (829, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Vmyl5z1d', '7397462'), + (829, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Vmyl5z1d', '7424275'), + (829, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Vmyl5z1d', '7424276'), + (829, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Vmyl5z1d', '7432751'), + (829, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Vmyl5z1d', '7432752'), + (829, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Vmyl5z1d', '7432753'), + (829, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432754'), + (829, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432755'), + (829, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432756'), + (829, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432758'), + (829, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432759'), + (829, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'Vmyl5z1d', '7433834'), + (829, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Vmyl5z1d', '7470197'), + (829, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Vmyl5z1d', '7685613'), + (829, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Vmyl5z1d', '7688194'), + (829, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Vmyl5z1d', '7688196'), + (829, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Vmyl5z1d', '7688289'), + (830, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AXZDx1Zd', '7113468'), + (830, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AXZDx1Zd', '7114856'), + (830, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'AXZDx1Zd', '7114951'), + (830, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'AXZDx1Zd', '7114956'), + (830, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AXZDx1Zd', '7114957'), + (830, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AXZDx1Zd', '7153615'), + (830, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AXZDx1Zd', '7159484'), + (830, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AXZDx1Zd', '7178446'), + (830, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AXZDx1Zd', '7220467'), + (830, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AXZDx1Zd', '7240354'), + (830, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AXZDx1Zd', '7251633'), + (830, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'AXZDx1Zd', '7265589'), + (831, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '54kwV8z4', '3236465'), + (831, 622, 'attending', '2021-03-14 00:00:00', '2025-12-17 19:47:51', '54kwV8z4', '3517816'), + (831, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '54kwV8z4', '3539916'), + (831, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '54kwV8z4', '3539918'), + (831, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '54kwV8z4', '3539919'), + (831, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '54kwV8z4', '3539920'), + (831, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '54kwV8z4', '3539921'), + (831, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '54kwV8z4', '3539927'), + (831, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54kwV8z4', '3582734'), + (831, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '54kwV8z4', '3583262'), + (831, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '54kwV8z4', '3619523'), + (831, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '54kwV8z4', '3661369'), + (831, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54kwV8z4', '3674262'), + (831, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54kwV8z4', '3677402'), + (831, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54kwV8z4', '3730212'), + (831, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '54kwV8z4', '3793156'), + (831, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '54kwV8z4', '3803310'), + (831, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '54kwV8z4', '3806392'), + (831, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kwV8z4', '6045684'), + (832, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '8mRbE7Em', '3468125'), + (832, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '8mRbE7Em', '3470303'), + (832, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '8mRbE7Em', '3470305'), + (832, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '8mRbE7Em', '3470991'), + (832, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '8mRbE7Em', '3517815'), + (832, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '8mRbE7Em', '3517816'), + (832, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '8mRbE7Em', '3523941'), + (832, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '8mRbE7Em', '3533850'), + (832, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8mRbE7Em', '3536632'), + (832, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8mRbE7Em', '3536656'), + (832, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '8mRbE7Em', '3539916'), + (832, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '8mRbE7Em', '3539917'), + (832, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '8mRbE7Em', '3539918'), + (832, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '8mRbE7Em', '3539919'), + (832, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '8mRbE7Em', '3539920'), + (832, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '8mRbE7Em', '3539921'), + (832, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '8mRbE7Em', '3539922'), + (832, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8mRbE7Em', '3539923'), + (832, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8mRbE7Em', '3539927'), + (832, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8mRbE7Em', '3582734'), + (832, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8mRbE7Em', '3619523'), + (832, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRbE7Em', '6045684'), + (833, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dKRoqz54', '5247467'), + (833, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dKRoqz54', '5260800'), + (833, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dKRoqz54', '5269930'), + (833, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dKRoqz54', '5271448'), + (833, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dKRoqz54', '5271449'), + (833, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dKRoqz54', '5276469'), + (833, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dKRoqz54', '5278159'), + (833, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dKRoqz54', '5363695'), + (833, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dKRoqz54', '5365960'), + (833, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dKRoqz54', '5368973'), + (833, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dKRoqz54', '5378247'), + (833, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dKRoqz54', '5389605'), + (833, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dKRoqz54', '5397265'), + (833, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKRoqz54', '6045684'), + (834, 1504, 'attending', '2022-07-13 02:00:39', '2025-12-17 19:47:19', 'd8DojRNd', '5426882'), + (834, 1513, 'attending', '2022-07-14 00:00:27', '2025-12-17 19:47:19', 'd8DojRNd', '5441125'), + (834, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd8DojRNd', '5441126'), + (834, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd8DojRNd', '5441128'), + (834, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd8DojRNd', '5446643'), + (834, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'd8DojRNd', '5449068'), + (834, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd8DojRNd', '5453325'), + (834, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd8DojRNd', '5454516'), + (834, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd8DojRNd', '5454605'), + (834, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd8DojRNd', '5455037'), + (834, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd8DojRNd', '5461278'), + (834, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd8DojRNd', '5469480'), + (834, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd8DojRNd', '5471073'), + (834, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'd8DojRNd', '5474663'), + (834, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd8DojRNd', '5482022'), + (834, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd8DojRNd', '5482793'), + (834, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd8DojRNd', '5488912'), + (834, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd8DojRNd', '5492192'), + (834, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd8DojRNd', '5493139'), + (834, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd8DojRNd', '5493200'), + (834, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd8DojRNd', '5502188'), + (834, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd8DojRNd', '5512862'), + (834, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd8DojRNd', '5513985'), + (834, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8DojRNd', '6045684'), + (835, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'xAY89qnm', '3149491'), + (835, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'xAY89qnm', '3149493'), + (835, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'xAY89qnm', '3236448'), + (835, 395, 'maybe', '2021-06-07 13:34:58', '2025-12-17 19:47:47', 'xAY89qnm', '3236450'), + (835, 793, 'attending', '2021-06-02 14:10:06', '2025-12-17 19:47:47', 'xAY89qnm', '3793537'), + (835, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xAY89qnm', '3974109'), + (835, 827, 'not_attending', '2021-06-06 14:57:23', '2025-12-17 19:47:47', 'xAY89qnm', '3975311'), + (835, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xAY89qnm', '3975312'), + (835, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xAY89qnm', '3994992'), + (835, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xAY89qnm', '4014338'), + (835, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xAY89qnm', '4021848'), + (835, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xAY89qnm', '4136744'), + (835, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'xAY89qnm', '4136937'), + (835, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xAY89qnm', '4136938'), + (835, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xAY89qnm', '4136947'), + (835, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xAY89qnm', '4225444'), + (835, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'xAY89qnm', '4229417'), + (835, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'xAY89qnm', '4229418'), + (835, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xAY89qnm', '4239259'), + (835, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xAY89qnm', '4250163'), + (835, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'xAY89qnm', '4420744'), + (835, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'xAY89qnm', '4420747'), + (835, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'xAY89qnm', '4568602'), + (835, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'xAY89qnm', '4572153'), + (835, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xAY89qnm', '4585962'), + (835, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'xAY89qnm', '4596356'), + (835, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xAY89qnm', '4598860'), + (835, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xAY89qnm', '4598861'), + (835, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'xAY89qnm', '4602797'), + (835, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'xAY89qnm', '4637896'), + (835, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xAY89qnm', '4642994'), + (835, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'xAY89qnm', '4642995'), + (835, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xAY89qnm', '4642996'), + (835, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'xAY89qnm', '4642997'), + (835, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'xAY89qnm', '4645687'), + (835, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xAY89qnm', '4645698'), + (835, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'xAY89qnm', '4645704'), + (835, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'xAY89qnm', '4645705'), + (835, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'xAY89qnm', '4668385'), + (835, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'xAY89qnm', '4694407'), + (835, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'xAY89qnm', '4736497'), + (835, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'xAY89qnm', '4736499'), + (835, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'xAY89qnm', '4736500'), + (835, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'xAY89qnm', '4736503'), + (835, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'xAY89qnm', '4736504'), + (835, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xAY89qnm', '4746789'), + (835, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xAY89qnm', '4753929'), + (835, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xAY89qnm', '5038850'), + (835, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xAY89qnm', '5045826'), + (835, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xAY89qnm', '5132533'), + (835, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'xAY89qnm', '5186582'), + (835, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'xAY89qnm', '5186583'), + (835, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'xAY89qnm', '5186585'), + (835, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'xAY89qnm', '5190437'), + (835, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'xAY89qnm', '5195095'), + (835, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xAY89qnm', '5215989'), + (835, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'xAY89qnm', '5223686'), + (835, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'xAY89qnm', '5247467'), + (835, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'xAY89qnm', '5260800'), + (835, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'xAY89qnm', '5269930'), + (835, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'xAY89qnm', '5271448'), + (835, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'xAY89qnm', '5271449'), + (835, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'xAY89qnm', '5278159'), + (835, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'xAY89qnm', '5363695'), + (835, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'xAY89qnm', '5365960'), + (835, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'xAY89qnm', '5378247'), + (835, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'xAY89qnm', '5389605'), + (835, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'xAY89qnm', '5397265'), + (835, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'xAY89qnm', '5404786'), + (835, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'xAY89qnm', '5405203'), + (835, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'xAY89qnm', '5412550'), + (835, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'xAY89qnm', '5415046'), + (835, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'xAY89qnm', '5422086'), + (835, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'xAY89qnm', '5422406'), + (835, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'xAY89qnm', '5424565'), + (835, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'xAY89qnm', '5426882'), + (835, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'xAY89qnm', '5441125'), + (835, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'xAY89qnm', '5441126'), + (835, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'xAY89qnm', '5441128'), + (835, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'xAY89qnm', '5441131'), + (835, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'xAY89qnm', '5441132'), + (835, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'xAY89qnm', '5453325'), + (835, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'xAY89qnm', '5454516'), + (835, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'xAY89qnm', '5454605'), + (835, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'xAY89qnm', '5455037'), + (835, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'xAY89qnm', '5461278'), + (835, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'xAY89qnm', '5469480'), + (835, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'xAY89qnm', '5474663'), + (835, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'xAY89qnm', '5482022'), + (835, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'xAY89qnm', '5488912'), + (835, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'xAY89qnm', '5492192'), + (835, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'xAY89qnm', '5493139'), + (835, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'xAY89qnm', '5493200'), + (835, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'xAY89qnm', '5502188'), + (835, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'xAY89qnm', '5505059'), + (835, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'xAY89qnm', '5509055'), + (835, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'xAY89qnm', '5512862'), + (835, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'xAY89qnm', '5513985'), + (835, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'xAY89qnm', '5519981'), + (835, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'xAY89qnm', '5522550'), + (835, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'xAY89qnm', '5534683'), + (835, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'xAY89qnm', '5537735'), + (835, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'xAY89qnm', '5540859'), + (835, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'xAY89qnm', '5546619'), + (835, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'xAY89qnm', '5557747'), + (835, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'xAY89qnm', '5560255'), + (835, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'xAY89qnm', '5562906'), + (835, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'xAY89qnm', '5600604'), + (835, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'xAY89qnm', '5605544'), + (835, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'xAY89qnm', '5630960'), + (835, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'xAY89qnm', '5630961'), + (835, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'xAY89qnm', '5630962'), + (835, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'xAY89qnm', '5630966'), + (835, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'xAY89qnm', '5630967'), + (835, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'xAY89qnm', '5630968'), + (835, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'xAY89qnm', '5635406'), + (835, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'xAY89qnm', '5638765'), + (835, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'xAY89qnm', '5640097'), + (835, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'xAY89qnm', '5640843'), + (835, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'xAY89qnm', '5641521'), + (835, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'xAY89qnm', '5642818'), + (835, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'xAY89qnm', '5652395'), + (835, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'xAY89qnm', '5670445'), + (835, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'xAY89qnm', '5671637'), + (835, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'xAY89qnm', '5672329'), + (835, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'xAY89qnm', '5674057'), + (835, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'xAY89qnm', '5674060'), + (835, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'xAY89qnm', '5677461'), + (835, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'xAY89qnm', '5698046'), + (835, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'xAY89qnm', '5699760'), + (835, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'xAY89qnm', '5741601'), + (835, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'xAY89qnm', '5763458'), + (835, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'xAY89qnm', '5774172'), + (835, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'xAY89qnm', '5818247'), + (835, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'xAY89qnm', '5819471'), + (835, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'xAY89qnm', '5827739'), + (835, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xAY89qnm', '5844306'), + (835, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xAY89qnm', '5850159'), + (835, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xAY89qnm', '5858999'), + (835, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xAY89qnm', '5871984'), + (835, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xAY89qnm', '5876354'), + (835, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xAY89qnm', '5880939'), + (835, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xAY89qnm', '5880940'), + (835, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xAY89qnm', '5880942'), + (835, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xAY89qnm', '5880943'), + (835, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xAY89qnm', '5887890'), + (835, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xAY89qnm', '5888598'), + (835, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xAY89qnm', '5893260'), + (835, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xAY89qnm', '5899826'), + (835, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xAY89qnm', '5900199'), + (835, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xAY89qnm', '5900200'), + (835, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xAY89qnm', '5900202'), + (835, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xAY89qnm', '5900203'), + (835, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xAY89qnm', '5901108'), + (835, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xAY89qnm', '5901126'), + (835, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'xAY89qnm', '5901606'), + (835, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xAY89qnm', '5909655'), + (835, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xAY89qnm', '5910522'), + (835, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xAY89qnm', '5910526'), + (835, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xAY89qnm', '5910528'), + (835, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xAY89qnm', '5916219'), + (835, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xAY89qnm', '5936234'), + (835, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xAY89qnm', '5958351'), + (835, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xAY89qnm', '5959751'), + (835, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xAY89qnm', '5959755'), + (835, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xAY89qnm', '5960055'), + (835, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xAY89qnm', '5961684'), + (835, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'xAY89qnm', '5962132'), + (835, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'xAY89qnm', '5962133'), + (835, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xAY89qnm', '5962134'), + (835, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xAY89qnm', '5962317'), + (835, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xAY89qnm', '5962318'), + (835, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'xAY89qnm', '5965933'), + (835, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xAY89qnm', '5967014'), + (835, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xAY89qnm', '5972815'), + (835, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xAY89qnm', '5974016'), + (835, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xAY89qnm', '5981515'), + (835, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xAY89qnm', '5993516'), + (835, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xAY89qnm', '5998939'), + (835, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xAY89qnm', '6028191'), + (835, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xAY89qnm', '6040066'), + (835, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xAY89qnm', '6042717'), + (835, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xAY89qnm', '6044838'), + (835, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xAY89qnm', '6044839'), + (835, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAY89qnm', '6045684'), + (835, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xAY89qnm', '6050104'), + (835, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xAY89qnm', '6053195'), + (835, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xAY89qnm', '6053198'), + (835, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xAY89qnm', '6056085'), + (835, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xAY89qnm', '6056916'), + (835, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xAY89qnm', '6059290'), + (835, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xAY89qnm', '6060328'), + (835, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xAY89qnm', '6061037'), + (835, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xAY89qnm', '6061039'), + (835, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xAY89qnm', '6067245'), + (835, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xAY89qnm', '6068094'), + (835, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xAY89qnm', '6068252'), + (835, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xAY89qnm', '6068253'), + (835, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xAY89qnm', '6068254'), + (835, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'xAY89qnm', '6068280'), + (835, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xAY89qnm', '6069093'), + (835, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xAY89qnm', '6072528'), + (835, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xAY89qnm', '6079840'), + (835, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xAY89qnm', '6083398'), + (835, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xAY89qnm', '6093504'), + (835, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xAY89qnm', '6097414'), + (835, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xAY89qnm', '6097442'), + (835, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xAY89qnm', '6097684'), + (835, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xAY89qnm', '6098762'), + (835, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xAY89qnm', '6101361'), + (835, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xAY89qnm', '6101362'), + (835, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xAY89qnm', '6107314'), + (835, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xAY89qnm', '6120034'), + (835, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'xAY89qnm', '6136733'), + (835, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xAY89qnm', '6137989'), + (835, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xAY89qnm', '6150864'), + (835, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xAY89qnm', '6155491'), + (835, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xAY89qnm', '6164417'), + (835, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xAY89qnm', '6166388'), + (835, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xAY89qnm', '6176439'), + (835, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xAY89qnm', '6182410'), + (835, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xAY89qnm', '6185812'), + (835, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xAY89qnm', '6187651'), + (835, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xAY89qnm', '6187963'), + (835, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xAY89qnm', '6187964'), + (835, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xAY89qnm', '6187966'), + (835, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xAY89qnm', '6187967'), + (835, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xAY89qnm', '6187969'), + (835, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xAY89qnm', '6334878'), + (835, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xAY89qnm', '6337236'), + (835, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xAY89qnm', '6337970'), + (835, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xAY89qnm', '6338308'), + (835, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xAY89qnm', '6341710'), + (835, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xAY89qnm', '6342044'), + (835, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xAY89qnm', '6342298'), + (835, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xAY89qnm', '6343294'), + (835, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xAY89qnm', '6347034'), + (835, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xAY89qnm', '6347056'), + (835, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xAY89qnm', '6353830'), + (835, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xAY89qnm', '6353831'), + (835, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xAY89qnm', '6357867'), + (835, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xAY89qnm', '6358652'), + (835, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xAY89qnm', '6361709'), + (835, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xAY89qnm', '6361710'), + (835, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xAY89qnm', '6361711'), + (835, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xAY89qnm', '6361712'), + (835, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xAY89qnm', '6361713'), + (835, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'xAY89qnm', '6382573'), + (835, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'xAY89qnm', '6388604'), + (835, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xAY89qnm', '6394629'), + (835, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xAY89qnm', '6394631'), + (835, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xAY89qnm', '6440863'), + (835, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xAY89qnm', '6445440'), + (835, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xAY89qnm', '6453951'), + (835, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xAY89qnm', '6461696'), + (835, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xAY89qnm', '6462129'), + (835, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xAY89qnm', '6463218'), + (835, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'xAY89qnm', '6472181'), + (835, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'xAY89qnm', '6482693'), + (835, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'xAY89qnm', '6484200'), + (835, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xAY89qnm', '6484680'), + (835, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xAY89qnm', '6507741'), + (835, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'xAY89qnm', '6514659'), + (835, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xAY89qnm', '6514660'), + (835, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xAY89qnm', '6519103'), + (835, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xAY89qnm', '6535681'), + (835, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xAY89qnm', '6584747'), + (835, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xAY89qnm', '6587097'), + (835, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xAY89qnm', '6609022'), + (835, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xAY89qnm', '6632757'), + (835, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xAY89qnm', '6644187'), + (835, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xAY89qnm', '6648951'), + (835, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xAY89qnm', '6648952'), + (835, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xAY89qnm', '6655401'), + (835, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xAY89qnm', '6661585'), + (835, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xAY89qnm', '6661588'), + (835, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xAY89qnm', '6661589'), + (835, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xAY89qnm', '6699906'), + (835, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'xAY89qnm', '6699913'), + (835, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xAY89qnm', '6701109'), + (835, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xAY89qnm', '6705219'), + (835, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xAY89qnm', '6710153'), + (835, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xAY89qnm', '6711552'), + (835, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xAY89qnm', '6711553'), + (835, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xAY89qnm', '6722688'), + (835, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xAY89qnm', '6730620'), + (835, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xAY89qnm', '6740364'), + (835, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xAY89qnm', '6743829'), + (835, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xAY89qnm', '7030380'), + (835, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xAY89qnm', '7033677'), + (835, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xAY89qnm', '7044715'), + (835, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xAY89qnm', '7050318'), + (835, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xAY89qnm', '7050319'), + (835, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xAY89qnm', '7050322'), + (835, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xAY89qnm', '7057804'), + (835, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xAY89qnm', '7072824'), + (835, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xAY89qnm', '7074348'), + (835, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xAY89qnm', '7074364'), + (835, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'xAY89qnm', '7089267'), + (835, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xAY89qnm', '7098747'), + (835, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xAY89qnm', '7113468'), + (835, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xAY89qnm', '7114856'), + (835, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xAY89qnm', '7114951'), + (835, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xAY89qnm', '7114955'), + (835, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xAY89qnm', '7114956'), + (835, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xAY89qnm', '7114957'), + (835, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xAY89qnm', '7159484'), + (835, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xAY89qnm', '7178446'), + (835, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'xAY89qnm', '7220467'), + (835, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xAY89qnm', '7240354'), + (835, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xAY89qnm', '7251633'), + (835, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xAY89qnm', '7324073'), + (835, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xAY89qnm', '7324074'), + (835, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xAY89qnm', '7324075'), + (835, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'xAY89qnm', '7324078'), + (835, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xAY89qnm', '7324082'), + (835, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xAY89qnm', '7331457'), + (835, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xAY89qnm', '7363643'), + (835, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xAY89qnm', '7368606'), + (835, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xAY89qnm', '7397462'), + (835, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xAY89qnm', '7424275'), + (835, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xAY89qnm', '7432751'), + (835, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xAY89qnm', '7432752'), + (835, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xAY89qnm', '7432753'), + (835, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xAY89qnm', '7432754'), + (835, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xAY89qnm', '7432755'), + (835, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xAY89qnm', '7432756'), + (835, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xAY89qnm', '7432758'), + (835, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xAY89qnm', '7432759'), + (835, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xAY89qnm', '7433834'), + (835, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'xAY89qnm', '7470197'), + (835, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xAY89qnm', '7685613'), + (835, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xAY89qnm', '7688194'), + (835, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xAY89qnm', '7688196'), + (835, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xAY89qnm', '7688289'), + (835, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xAY89qnm', '7692763'), + (835, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xAY89qnm', '7697552'), + (835, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xAY89qnm', '7699878'), + (835, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'xAY89qnm', '7704043'), + (835, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'xAY89qnm', '7712467'), + (835, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'xAY89qnm', '7713585'), + (835, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'xAY89qnm', '7713586'), + (835, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xAY89qnm', '7738518'), + (835, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xAY89qnm', '7750636'), + (835, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xAY89qnm', '7796540'), + (835, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xAY89qnm', '7796541'), + (835, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xAY89qnm', '7796542'), + (835, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xAY89qnm', '7825913'), + (835, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xAY89qnm', '7826209'), + (835, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xAY89qnm', '7834742'), + (835, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'xAY89qnm', '7842108'), + (835, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xAY89qnm', '7842902'), + (835, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xAY89qnm', '7842903'), + (835, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xAY89qnm', '7842904'), + (835, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xAY89qnm', '7842905'), + (835, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xAY89qnm', '7855719'), + (835, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xAY89qnm', '7860683'), + (835, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xAY89qnm', '7860684'), + (835, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xAY89qnm', '7866095'), + (835, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xAY89qnm', '7869170'), + (835, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xAY89qnm', '7869188'), + (835, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xAY89qnm', '7869201'), + (835, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xAY89qnm', '7877465'), + (835, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xAY89qnm', '7888250'), + (835, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xAY89qnm', '7904777'), + (835, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xAY89qnm', '8349164'), + (835, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xAY89qnm', '8349545'), + (835, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xAY89qnm', '8368028'), + (835, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'xAY89qnm', '8368029'), + (835, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xAY89qnm', '8388462'), + (835, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xAY89qnm', '8400273'), + (835, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'xAY89qnm', '8400275'), + (835, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'xAY89qnm', '8400276'), + (835, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xAY89qnm', '8404977'), + (835, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xAY89qnm', '8430783'), + (835, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xAY89qnm', '8430784'), + (835, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xAY89qnm', '8430799'), + (835, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xAY89qnm', '8430800'), + (835, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xAY89qnm', '8430801'), + (835, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'xAY89qnm', '8438709'), + (835, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xAY89qnm', '8457738'), + (835, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xAY89qnm', '8459566'), + (835, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xAY89qnm', '8459567'), + (835, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xAY89qnm', '8461032'), + (835, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xAY89qnm', '8477877'), + (835, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xAY89qnm', '8485688'), + (835, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xAY89qnm', '8490587'), + (835, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xAY89qnm', '8493552'), + (835, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xAY89qnm', '8493553'), + (835, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xAY89qnm', '8493554'), + (835, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xAY89qnm', '8493555'), + (835, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xAY89qnm', '8493556'), + (835, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xAY89qnm', '8493557'), + (835, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xAY89qnm', '8493558'), + (835, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xAY89qnm', '8493559'), + (835, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xAY89qnm', '8493560'), + (835, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'xAY89qnm', '8493561'), + (835, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xAY89qnm', '8493572'), + (835, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAY89qnm', '8540725'), + (835, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAY89qnm', '8555421'), + (836, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'NmLq3RgA', '3149489'), + (836, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'NmLq3RgA', '3236450'), + (836, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'NmLq3RgA', '3236452'), + (836, 646, 'not_attending', '2021-05-13 05:48:59', '2025-12-17 19:47:46', 'NmLq3RgA', '3539921'), + (836, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'NmLq3RgA', '3539922'), + (836, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'NmLq3RgA', '3539923'), + (836, 806, 'attending', '2021-05-15 05:17:28', '2025-12-17 19:47:46', 'NmLq3RgA', '3806392'), + (836, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'NmLq3RgA', '3963335'), + (836, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLq3RgA', '3975311'), + (836, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLq3RgA', '3994992'), + (836, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLq3RgA', '6045684'), + (837, 1274, 'not_attending', '2022-04-02 15:58:37', '2025-12-17 19:47:26', 'dKRvyp54', '5186585'), + (837, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dKRvyp54', '5195095'), + (837, 1305, 'maybe', '2022-04-05 19:20:14', '2025-12-17 19:47:27', 'dKRvyp54', '5223673'), + (837, 1306, 'attending', '2022-04-05 16:36:42', '2025-12-17 19:47:26', 'dKRvyp54', '5223682'), + (837, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dKRvyp54', '5223686'), + (837, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dKRvyp54', '5227432'), + (837, 1316, 'attending', '2022-04-14 02:39:47', '2025-12-17 19:47:27', 'dKRvyp54', '5237536'), + (837, 1332, 'attending', '2022-04-14 02:42:38', '2025-12-17 19:47:27', 'dKRvyp54', '5243274'), + (837, 1337, 'attending', '2022-04-18 14:54:20', '2025-12-17 19:47:27', 'dKRvyp54', '5245036'), + (837, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dKRvyp54', '5247467'), + (837, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dKRvyp54', '5260800'), + (837, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dKRvyp54', '5269930'), + (837, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dKRvyp54', '5271448'), + (837, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dKRvyp54', '5271449'), + (837, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dKRvyp54', '5276469'), + (837, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dKRvyp54', '5278159'), + (837, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dKRvyp54', '5363695'), + (837, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dKRvyp54', '5365960'), + (837, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dKRvyp54', '5368973'), + (837, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dKRvyp54', '5378247'), + (837, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dKRvyp54', '5389605'), + (837, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dKRvyp54', '5397265'), + (837, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dKRvyp54', '5403967'), + (837, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dKRvyp54', '5404786'), + (837, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dKRvyp54', '5405203'), + (837, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dKRvyp54', '5408794'), + (837, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dKRvyp54', '5411699'), + (837, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dKRvyp54', '5412550'), + (837, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dKRvyp54', '5415046'), + (837, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dKRvyp54', '5422086'), + (837, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dKRvyp54', '5422406'), + (837, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dKRvyp54', '5424565'), + (837, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dKRvyp54', '5426882'), + (837, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dKRvyp54', '5427083'), + (837, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dKRvyp54', '5441125'), + (837, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dKRvyp54', '5441126'), + (837, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dKRvyp54', '5441128'), + (837, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dKRvyp54', '5446643'), + (837, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dKRvyp54', '5453325'), + (837, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dKRvyp54', '5454516'), + (837, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dKRvyp54', '5454605'), + (837, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dKRvyp54', '5455037'), + (837, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dKRvyp54', '5461278'), + (837, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dKRvyp54', '5469480'), + (837, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dKRvyp54', '5471073'), + (837, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dKRvyp54', '5474663'), + (837, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dKRvyp54', '5482022'), + (837, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dKRvyp54', '5482793'), + (837, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dKRvyp54', '5488912'), + (837, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dKRvyp54', '5492192'), + (837, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dKRvyp54', '5493139'), + (837, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dKRvyp54', '5493200'), + (837, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dKRvyp54', '5502188'), + (837, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dKRvyp54', '5512862'), + (837, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dKRvyp54', '5513985'), + (837, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKRvyp54', '6045684'), + (838, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'lAekNrPd', '3149489'), + (838, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'lAekNrPd', '3149491'), + (838, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'lAekNrPd', '3236450'), + (838, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'lAekNrPd', '3236452'), + (838, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'lAekNrPd', '3236465'), + (838, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'lAekNrPd', '3539918'), + (838, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'lAekNrPd', '3539919'), + (838, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'lAekNrPd', '3539920'), + (838, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'lAekNrPd', '3539921'), + (838, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'lAekNrPd', '3539922'), + (838, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'lAekNrPd', '3539923'), + (838, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'lAekNrPd', '3583262'), + (838, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'lAekNrPd', '3730212'), + (838, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'lAekNrPd', '3793156'), + (838, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'lAekNrPd', '3803310'), + (838, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'lAekNrPd', '3806392'), + (838, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'lAekNrPd', '3963335'), + (838, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'lAekNrPd', '3975311'), + (838, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'lAekNrPd', '3975312'), + (838, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'lAekNrPd', '3994992'), + (838, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'lAekNrPd', '4014338'), + (838, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAekNrPd', '6045684'), + (839, 1856, 'maybe', '2023-01-17 23:45:31', '2025-12-17 19:47:05', 'AY2jJ9W4', '5873970'), + (839, 1857, 'maybe', '2023-01-18 19:27:35', '2025-12-17 19:47:05', 'AY2jJ9W4', '5873973'), + (839, 1862, 'maybe', '2023-01-30 22:14:37', '2025-12-17 19:47:06', 'AY2jJ9W4', '5877254'), + (839, 1863, 'attending', '2023-01-23 23:23:55', '2025-12-17 19:47:06', 'AY2jJ9W4', '5877255'), + (839, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'AY2jJ9W4', '5880939'), + (839, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AY2jJ9W4', '5880940'), + (839, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AY2jJ9W4', '5880942'), + (839, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AY2jJ9W4', '5887890'), + (839, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AY2jJ9W4', '5888598'), + (839, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AY2jJ9W4', '5893260'), + (839, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AY2jJ9W4', '5899826'), + (839, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AY2jJ9W4', '5900199'), + (839, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AY2jJ9W4', '5900200'), + (839, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901055'), + (839, 1894, 'maybe', '2023-02-02 03:20:47', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901100'), + (839, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901108'), + (839, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901126'), + (839, 1901, 'maybe', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901606'), + (839, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AY2jJ9W4', '5909655'), + (839, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AY2jJ9W4', '5910522'), + (839, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AY2jJ9W4', '5910526'), + (839, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AY2jJ9W4', '5910528'), + (839, 1920, 'attending', '2023-02-10 12:35:08', '2025-12-17 19:47:07', 'AY2jJ9W4', '5914091'), + (839, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AY2jJ9W4', '5916219'), + (839, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AY2jJ9W4', '5936234'), + (839, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'AY2jJ9W4', '5936691'), + (839, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AY2jJ9W4', '5958351'), + (839, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AY2jJ9W4', '5959751'), + (839, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AY2jJ9W4', '5959755'), + (839, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AY2jJ9W4', '5960055'), + (839, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AY2jJ9W4', '5961684'), + (839, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'AY2jJ9W4', '5962132'), + (839, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AY2jJ9W4', '5962133'), + (839, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AY2jJ9W4', '5962134'), + (839, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AY2jJ9W4', '5962317'), + (839, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AY2jJ9W4', '5962318'), + (839, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AY2jJ9W4', '6045684'), + (840, 1419, 'attending', '2022-06-06 23:46:45', '2025-12-17 19:47:30', 'AgxWpzq4', '5373081'), + (840, 1423, 'attending', '2022-06-08 18:24:22', '2025-12-17 19:47:17', 'AgxWpzq4', '5375727'), + (840, 1428, 'attending', '2022-06-08 06:24:00', '2025-12-17 19:47:30', 'AgxWpzq4', '5378247'), + (840, 1430, 'attending', '2022-06-08 06:23:53', '2025-12-17 19:47:30', 'AgxWpzq4', '5389402'), + (840, 1431, 'attending', '2022-06-08 06:24:04', '2025-12-17 19:47:30', 'AgxWpzq4', '5389605'), + (840, 1442, 'attending', '2022-06-08 18:24:24', '2025-12-17 19:47:17', 'AgxWpzq4', '5397265'), + (840, 1446, 'attending', '2022-06-08 06:23:50', '2025-12-17 19:47:30', 'AgxWpzq4', '5399721'), + (840, 1448, 'attending', '2022-06-07 02:24:50', '2025-12-17 19:47:30', 'AgxWpzq4', '5401479'), + (840, 1449, 'not_attending', '2022-06-13 22:19:10', '2025-12-17 19:47:31', 'AgxWpzq4', '5403335'), + (840, 1451, 'attending', '2022-06-09 19:05:54', '2025-12-17 19:47:17', 'AgxWpzq4', '5403967'), + (840, 1454, 'not_attending', '2022-06-13 02:27:15', '2025-12-17 19:47:31', 'AgxWpzq4', '5404771'), + (840, 1455, 'not_attending', '2022-06-13 22:18:34', '2025-12-17 19:47:31', 'AgxWpzq4', '5404772'), + (840, 1456, 'attending', '2022-06-13 03:36:44', '2025-12-17 19:47:17', 'AgxWpzq4', '5404779'), + (840, 1457, 'not_attending', '2022-06-12 05:26:35', '2025-12-17 19:47:31', 'AgxWpzq4', '5404780'), + (840, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgxWpzq4', '5404786'), + (840, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgxWpzq4', '5405203'), + (840, 1463, 'attending', '2022-06-13 03:37:59', '2025-12-17 19:47:31', 'AgxWpzq4', '5405208'), + (840, 1464, 'attending', '2022-06-10 21:47:43', '2025-12-17 19:47:30', 'AgxWpzq4', '5405212'), + (840, 1473, 'attending', '2022-06-13 22:19:18', '2025-12-17 19:47:31', 'AgxWpzq4', '5407267'), + (840, 1478, 'not_attending', '2022-06-24 19:34:42', '2025-12-17 19:47:19', 'AgxWpzq4', '5408794'), + (840, 1480, 'attending', '2022-06-20 01:38:48', '2025-12-17 19:47:19', 'AgxWpzq4', '5411699'), + (840, 1481, 'attending', '2022-06-20 01:38:26', '2025-12-17 19:47:17', 'AgxWpzq4', '5412237'), + (840, 1482, 'not_attending', '2022-06-25 22:21:03', '2025-12-17 19:47:19', 'AgxWpzq4', '5412550'), + (840, 1484, 'maybe', '2022-06-22 16:30:32', '2025-12-17 19:47:17', 'AgxWpzq4', '5415046'), + (840, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgxWpzq4', '5422086'), + (840, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgxWpzq4', '5422406'), + (840, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgxWpzq4', '5424565'), + (840, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgxWpzq4', '5426882'), + (840, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgxWpzq4', '5427083'), + (840, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'AgxWpzq4', '5441125'), + (840, 1514, 'attending', '2022-07-21 17:55:44', '2025-12-17 19:47:20', 'AgxWpzq4', '5441126'), + (840, 1515, 'attending', '2022-08-03 18:35:57', '2025-12-17 19:47:21', 'AgxWpzq4', '5441128'), + (840, 1516, 'attending', '2022-08-18 02:13:27', '2025-12-17 19:47:23', 'AgxWpzq4', '5441129'), + (840, 1517, 'attending', '2022-08-23 15:06:25', '2025-12-17 19:47:23', 'AgxWpzq4', '5441130'), + (840, 1518, 'attending', '2022-08-29 00:25:45', '2025-12-17 19:47:24', 'AgxWpzq4', '5441131'), + (840, 1519, 'attending', '2022-08-29 00:26:53', '2025-12-17 19:47:24', 'AgxWpzq4', '5441132'), + (840, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgxWpzq4', '5446643'), + (840, 1538, 'attending', '2022-07-30 19:38:44', '2025-12-17 19:47:21', 'AgxWpzq4', '5449565'), + (840, 1539, 'attending', '2022-07-21 17:56:26', '2025-12-17 19:47:21', 'AgxWpzq4', '5449671'), + (840, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgxWpzq4', '5453325'), + (840, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgxWpzq4', '5454516'), + (840, 1544, 'attending', '2022-09-11 06:48:29', '2025-12-17 19:47:11', 'AgxWpzq4', '5454517'), + (840, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgxWpzq4', '5454605'), + (840, 1547, 'attending', '2022-07-26 21:46:08', '2025-12-17 19:47:20', 'AgxWpzq4', '5454608'), + (840, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgxWpzq4', '5455037'), + (840, 1557, 'attending', '2022-08-03 17:53:58', '2025-12-17 19:47:21', 'AgxWpzq4', '5458729'), + (840, 1558, 'attending', '2022-08-29 00:27:03', '2025-12-17 19:47:10', 'AgxWpzq4', '5458730'), + (840, 1559, 'attending', '2022-09-11 06:48:36', '2025-12-17 19:47:11', 'AgxWpzq4', '5458731'), + (840, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgxWpzq4', '5461278'), + (840, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgxWpzq4', '5469480'), + (840, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgxWpzq4', '5471073'), + (840, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AgxWpzq4', '5474663'), + (840, 1569, 'attending', '2022-08-03 18:35:36', '2025-12-17 19:47:21', 'AgxWpzq4', '5481507'), + (840, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgxWpzq4', '5482022'), + (840, 1573, 'attending', '2022-08-03 18:36:10', '2025-12-17 19:47:22', 'AgxWpzq4', '5482152'), + (840, 1575, 'attending', '2022-08-23 15:06:19', '2025-12-17 19:47:23', 'AgxWpzq4', '5482250'), + (840, 1577, 'attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgxWpzq4', '5482793'), + (840, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgxWpzq4', '5488912'), + (840, 1581, 'attending', '2022-08-11 07:12:38', '2025-12-17 19:47:22', 'AgxWpzq4', '5490302'), + (840, 1586, 'maybe', '2022-08-11 03:28:17', '2025-12-17 19:47:23', 'AgxWpzq4', '5492019'), + (840, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgxWpzq4', '5492192'), + (840, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgxWpzq4', '5493139'), + (840, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgxWpzq4', '5493200'), + (840, 1592, 'attending', '2022-08-09 02:32:20', '2025-12-17 19:47:22', 'AgxWpzq4', '5494031'), + (840, 1595, 'attending', '2022-08-12 19:32:17', '2025-12-17 19:47:22', 'AgxWpzq4', '5495736'), + (840, 1597, 'attending', '2022-08-13 20:56:38', '2025-12-17 19:47:22', 'AgxWpzq4', '5496566'), + (840, 1603, 'attending', '2022-08-12 03:28:51', '2025-12-17 19:47:23', 'AgxWpzq4', '5497895'), + (840, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgxWpzq4', '5502188'), + (840, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AgxWpzq4', '5505059'), + (840, 1612, 'maybe', '2022-09-20 23:26:42', '2025-12-17 19:47:12', 'AgxWpzq4', '5507653'), + (840, 1615, 'attending', '2022-08-29 00:25:09', '2025-12-17 19:47:23', 'AgxWpzq4', '5509055'), + (840, 1617, 'attending', '2022-08-29 00:26:51', '2025-12-17 19:47:24', 'AgxWpzq4', '5512003'), + (840, 1618, 'attending', '2022-08-28 06:49:04', '2025-12-17 19:47:23', 'AgxWpzq4', '5512005'), + (840, 1619, 'attending', '2022-08-23 07:08:34', '2025-12-17 19:47:23', 'AgxWpzq4', '5512862'), + (840, 1620, 'attending', '2022-08-23 15:05:53', '2025-12-17 19:47:23', 'AgxWpzq4', '5513046'), + (840, 1621, 'not_attending', '2022-08-23 15:05:24', '2025-12-17 19:47:23', 'AgxWpzq4', '5513531'), + (840, 1623, 'attending', '2022-08-23 15:06:16', '2025-12-17 19:47:23', 'AgxWpzq4', '5513678'), + (840, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgxWpzq4', '5513985'), + (840, 1626, 'attending', '2022-08-26 18:44:43', '2025-12-17 19:47:11', 'AgxWpzq4', '5519981'), + (840, 1627, 'attending', '2022-08-28 04:09:35', '2025-12-17 19:47:24', 'AgxWpzq4', '5521552'), + (840, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AgxWpzq4', '5522550'), + (840, 1630, 'attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AgxWpzq4', '5534683'), + (840, 1635, 'attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AgxWpzq4', '5537735'), + (840, 1636, 'attending', '2022-09-04 19:03:05', '2025-12-17 19:47:24', 'AgxWpzq4', '5538454'), + (840, 1637, 'not_attending', '2022-09-06 20:44:27', '2025-12-17 19:47:24', 'AgxWpzq4', '5539591'), + (840, 1640, 'attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AgxWpzq4', '5540859'), + (840, 1642, 'attending', '2022-09-10 16:14:01', '2025-12-17 19:47:24', 'AgxWpzq4', '5544227'), + (840, 1645, 'attending', '2022-09-09 20:46:20', '2025-12-17 19:47:25', 'AgxWpzq4', '5546559'), + (840, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AgxWpzq4', '5546619'), + (840, 1647, 'attending', '2022-09-12 14:22:44', '2025-12-17 19:47:11', 'AgxWpzq4', '5548660'), + (840, 1648, 'attending', '2022-09-09 21:07:05', '2025-12-17 19:47:24', 'AgxWpzq4', '5548974'), + (840, 1650, 'attending', '2022-09-04 19:01:59', '2025-12-17 19:47:24', 'AgxWpzq4', '5549611'), + (840, 1652, 'attending', '2022-09-10 16:14:06', '2025-12-17 19:47:24', 'AgxWpzq4', '5552671'), + (840, 1653, 'attending', '2022-09-15 06:41:15', '2025-12-17 19:47:11', 'AgxWpzq4', '5554400'), + (840, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AgxWpzq4', '5555245'), + (840, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AgxWpzq4', '5557747'), + (840, 1661, 'not_attending', '2022-09-09 00:19:23', '2025-12-17 19:47:24', 'AgxWpzq4', '5560254'), + (840, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AgxWpzq4', '5560255'), + (840, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AgxWpzq4', '5562906'), + (840, 1665, 'attending', '2022-09-12 14:21:52', '2025-12-17 19:47:25', 'AgxWpzq4', '5563133'), + (840, 1666, 'attending', '2022-09-27 04:15:17', '2025-12-17 19:47:11', 'AgxWpzq4', '5563208'), + (840, 1667, 'attending', '2022-09-11 06:48:17', '2025-12-17 19:47:11', 'AgxWpzq4', '5563221'), + (840, 1668, 'attending', '2022-09-11 06:48:26', '2025-12-17 19:47:12', 'AgxWpzq4', '5563222'), + (840, 1670, 'attending', '2022-09-15 06:38:33', '2025-12-17 19:47:11', 'AgxWpzq4', '5575076'), + (840, 1671, 'not_attending', '2022-09-15 19:59:06', '2025-12-17 19:47:10', 'AgxWpzq4', '5585041'), + (840, 1672, 'attending', '2022-09-17 20:00:04', '2025-12-17 19:47:11', 'AgxWpzq4', '5586237'), + (840, 1673, 'attending', '2022-09-24 17:14:21', '2025-12-17 19:47:11', 'AgxWpzq4', '5592454'), + (840, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AgxWpzq4', '5600604'), + (840, 1679, 'maybe', '2022-10-03 22:16:07', '2025-12-17 19:47:12', 'AgxWpzq4', '5601099'), + (840, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AgxWpzq4', '5605544'), + (840, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'AgxWpzq4', '5606737'), + (840, 1703, 'attending', '2022-09-30 18:01:00', '2025-12-17 19:47:12', 'AgxWpzq4', '5609176'), + (840, 1708, 'maybe', '2022-10-03 22:16:11', '2025-12-17 19:47:12', 'AgxWpzq4', '5617648'), + (840, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', 'AgxWpzq4', '5630907'), + (840, 1719, 'attending', '2022-10-08 15:36:36', '2025-12-17 19:47:12', 'AgxWpzq4', '5630958'), + (840, 1720, 'attending', '2022-10-15 21:46:46', '2025-12-17 19:47:12', 'AgxWpzq4', '5630959'), + (840, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AgxWpzq4', '5630960'), + (840, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AgxWpzq4', '5630961'), + (840, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AgxWpzq4', '5630962'), + (840, 1724, 'attending', '2022-11-04 19:09:50', '2025-12-17 19:47:15', 'AgxWpzq4', '5630966'), + (840, 1725, 'attending', '2022-11-04 19:09:54', '2025-12-17 19:47:16', 'AgxWpzq4', '5630967'), + (840, 1726, 'not_attending', '2022-11-04 19:09:55', '2025-12-17 19:47:16', 'AgxWpzq4', '5630968'), + (840, 1727, 'attending', '2022-11-04 19:09:57', '2025-12-17 19:47:16', 'AgxWpzq4', '5630969'), + (840, 1728, 'attending', '2022-12-11 20:47:15', '2025-12-17 19:47:17', 'AgxWpzq4', '5630970'), + (840, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AgxWpzq4', '5635406'), + (840, 1737, 'attending', '2022-11-30 06:52:46', '2025-12-17 19:47:16', 'AgxWpzq4', '5638457'), + (840, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AgxWpzq4', '5638765'), + (840, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AgxWpzq4', '5640097'), + (840, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AgxWpzq4', '5640843'), + (840, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AgxWpzq4', '5641521'), + (840, 1744, 'attending', '2022-11-23 09:28:39', '2025-12-17 19:47:16', 'AgxWpzq4', '5642818'), + (840, 1750, 'attending', '2022-11-02 09:05:31', '2025-12-17 19:47:15', 'AgxWpzq4', '5652365'), + (840, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AgxWpzq4', '5652395'), + (840, 1753, 'attending', '2022-10-19 01:07:34', '2025-12-17 19:47:13', 'AgxWpzq4', '5656228'), + (840, 1759, 'attending', '2022-10-22 21:27:20', '2025-12-17 19:47:13', 'AgxWpzq4', '5669097'), + (840, 1761, 'attending', '2022-11-17 08:10:30', '2025-12-17 19:47:16', 'AgxWpzq4', '5670434'), + (840, 1762, 'attending', '2022-11-02 01:54:28', '2025-12-17 19:47:16', 'AgxWpzq4', '5670445'), + (840, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AgxWpzq4', '5671637'), + (840, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AgxWpzq4', '5672329'), + (840, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AgxWpzq4', '5674057'), + (840, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AgxWpzq4', '5674060'), + (840, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'AgxWpzq4', '5677461'), + (840, 1774, 'attending', '2022-10-29 11:34:26', '2025-12-17 19:47:15', 'AgxWpzq4', '5677843'), + (840, 1776, 'attending', '2022-11-08 05:33:38', '2025-12-17 19:47:15', 'AgxWpzq4', '5691067'), + (840, 1777, 'attending', '2022-11-01 19:04:19', '2025-12-17 19:47:15', 'AgxWpzq4', '5693021'), + (840, 1779, 'attending', '2022-11-04 19:09:42', '2025-12-17 19:47:15', 'AgxWpzq4', '5694252'), + (840, 1781, 'attending', '2022-11-02 04:46:19', '2025-12-17 19:47:15', 'AgxWpzq4', '5696178'), + (840, 1782, 'attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AgxWpzq4', '5698046'), + (840, 1783, 'attending', '2022-11-03 19:28:46', '2025-12-17 19:47:16', 'AgxWpzq4', '5698621'), + (840, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'AgxWpzq4', '5699760'), + (840, 1785, 'maybe', '2022-11-05 22:44:05', '2025-12-17 19:47:15', 'AgxWpzq4', '5702414'), + (840, 1786, 'attending', '2022-11-07 00:56:59', '2025-12-17 19:47:15', 'AgxWpzq4', '5727232'), + (840, 1791, 'attending', '2022-11-07 18:13:04', '2025-12-17 19:47:15', 'AgxWpzq4', '5728511'), + (840, 1792, 'attending', '2022-11-07 18:13:19', '2025-12-17 19:47:15', 'AgxWpzq4', '5728512'), + (840, 1793, 'attending', '2022-11-26 00:11:11', '2025-12-17 19:47:16', 'AgxWpzq4', '5736365'), + (840, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AgxWpzq4', '5741601'), + (840, 1796, 'attending', '2022-11-18 02:45:27', '2025-12-17 19:47:16', 'AgxWpzq4', '5756755'), + (840, 1797, 'attending', '2022-12-10 00:18:54', '2025-12-17 19:47:17', 'AgxWpzq4', '5757486'), + (840, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AgxWpzq4', '5763458'), + (840, 1800, 'attending', '2022-11-19 22:42:22', '2025-12-17 19:47:16', 'AgxWpzq4', '5764667'), + (840, 1802, 'attending', '2022-12-10 23:59:54', '2025-12-17 19:47:17', 'AgxWpzq4', '5764669'), + (840, 1804, 'attending', '2023-01-13 09:29:28', '2025-12-17 19:47:06', 'AgxWpzq4', '5764674'), + (840, 1805, 'attending', '2023-01-13 09:29:30', '2025-12-17 19:47:06', 'AgxWpzq4', '5764675'), + (840, 1806, 'attending', '2023-01-13 09:29:27', '2025-12-17 19:47:05', 'AgxWpzq4', '5764676'), + (840, 1807, 'attending', '2023-01-13 09:29:25', '2025-12-17 19:47:05', 'AgxWpzq4', '5764677'), + (840, 1808, 'attending', '2023-02-26 06:52:52', '2025-12-17 19:47:08', 'AgxWpzq4', '5764678'), + (840, 1810, 'attending', '2023-04-22 16:52:54', '2025-12-17 19:47:00', 'AgxWpzq4', '5764680'), + (840, 1812, 'attending', '2023-02-26 06:52:57', '2025-12-17 19:47:09', 'AgxWpzq4', '5764682'), + (840, 1813, 'attending', '2023-04-23 06:12:56', '2025-12-17 19:47:01', 'AgxWpzq4', '5764683'), + (840, 1814, 'attending', '2023-02-24 08:52:55', '2025-12-17 19:47:08', 'AgxWpzq4', '5764684'), + (840, 1815, 'attending', '2023-02-18 07:47:08', '2025-12-17 19:47:07', 'AgxWpzq4', '5764685'), + (840, 1817, 'attending', '2023-02-26 06:53:18', '2025-12-17 19:46:57', 'AgxWpzq4', '5764687'), + (840, 1819, 'attending', '2023-02-26 06:53:32', '2025-12-17 19:46:58', 'AgxWpzq4', '5764689'), + (840, 1820, 'attending', '2023-02-26 06:53:34', '2025-12-17 19:46:58', 'AgxWpzq4', '5764690'), + (840, 1821, 'attending', '2023-02-26 06:53:14', '2025-12-17 19:46:56', 'AgxWpzq4', '5764691'), + (840, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AgxWpzq4', '5774172'), + (840, 1825, 'attending', '2022-12-08 21:50:52', '2025-12-17 19:47:16', 'AgxWpzq4', '5776760'), + (840, 1828, 'maybe', '2022-12-01 18:45:41', '2025-12-17 19:47:16', 'AgxWpzq4', '5778865'), + (840, 1832, 'attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'AgxWpzq4', '5818247'), + (840, 1833, 'attending', '2022-12-05 04:48:50', '2025-12-17 19:47:16', 'AgxWpzq4', '5819465'), + (840, 1834, 'attending', '2022-12-05 20:42:49', '2025-12-17 19:47:17', 'AgxWpzq4', '5819470'), + (840, 1835, 'attending', '2022-12-05 20:42:56', '2025-12-17 19:47:05', 'AgxWpzq4', '5819471'), + (840, 1837, 'attending', '2022-12-07 03:16:02', '2025-12-17 19:47:16', 'AgxWpzq4', '5820146'), + (840, 1841, 'attending', '2023-01-02 21:09:02', '2025-12-17 19:47:05', 'AgxWpzq4', '5827665'), + (840, 1842, 'attending', '2022-12-22 22:04:37', '2025-12-17 19:47:04', 'AgxWpzq4', '5827739'), + (840, 1843, 'attending', '2022-12-17 23:30:28', '2025-12-17 19:47:04', 'AgxWpzq4', '5844304'), + (840, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AgxWpzq4', '5844306'), + (840, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AgxWpzq4', '5850159'), + (840, 1849, 'attending', '2023-01-04 04:27:15', '2025-12-17 19:47:05', 'AgxWpzq4', '5852467'), + (840, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AgxWpzq4', '5858999'), + (840, 1851, 'not_attending', '2023-01-08 22:12:45', '2025-12-17 19:47:05', 'AgxWpzq4', '5869316'), + (840, 1852, 'attending', '2023-01-11 10:40:54', '2025-12-17 19:47:05', 'AgxWpzq4', '5869898'), + (840, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AgxWpzq4', '5871984'), + (840, 1855, 'attending', '2023-01-13 09:29:20', '2025-12-17 19:47:05', 'AgxWpzq4', '5873968'), + (840, 1856, 'not_attending', '2023-01-13 09:29:16', '2025-12-17 19:47:05', 'AgxWpzq4', '5873970'), + (840, 1857, 'attending', '2023-01-13 09:29:18', '2025-12-17 19:47:05', 'AgxWpzq4', '5873973'), + (840, 1859, 'attending', '2023-01-13 09:29:34', '2025-12-17 19:47:05', 'AgxWpzq4', '5876234'), + (840, 1861, 'attending', '2023-01-19 00:21:35', '2025-12-17 19:47:05', 'AgxWpzq4', '5876354'), + (840, 1863, 'attending', '2023-01-14 21:27:54', '2025-12-17 19:47:06', 'AgxWpzq4', '5877255'), + (840, 1864, 'attending', '2023-01-19 04:49:08', '2025-12-17 19:47:05', 'AgxWpzq4', '5879675'), + (840, 1865, 'attending', '2023-01-19 04:49:10', '2025-12-17 19:47:06', 'AgxWpzq4', '5879676'), + (840, 1866, 'attending', '2023-01-17 03:43:23', '2025-12-17 19:47:05', 'AgxWpzq4', '5880939'), + (840, 1867, 'attending', '2023-01-17 03:43:28', '2025-12-17 19:47:07', 'AgxWpzq4', '5880940'), + (840, 1868, 'attending', '2023-01-17 03:43:39', '2025-12-17 19:47:07', 'AgxWpzq4', '5880942'), + (840, 1869, 'attending', '2023-01-17 03:43:42', '2025-12-17 19:47:09', 'AgxWpzq4', '5880943'), + (840, 1872, 'attending', '2023-01-19 04:48:58', '2025-12-17 19:47:05', 'AgxWpzq4', '5883546'), + (840, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AgxWpzq4', '5887890'), + (840, 1875, 'attending', '2023-01-23 11:12:35', '2025-12-17 19:47:06', 'AgxWpzq4', '5887908'), + (840, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AgxWpzq4', '5888598'), + (840, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AgxWpzq4', '5893260'), + (840, 1881, 'attending', '2023-02-06 08:52:33', '2025-12-17 19:47:07', 'AgxWpzq4', '5894218'), + (840, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AgxWpzq4', '5899826'), + (840, 1885, 'attending', '2023-02-24 02:21:04', '2025-12-17 19:47:08', 'AgxWpzq4', '5899928'), + (840, 1886, 'attending', '2023-03-06 04:55:46', '2025-12-17 19:47:09', 'AgxWpzq4', '5899930'), + (840, 1888, 'attending', '2023-02-13 19:33:07', '2025-12-17 19:47:07', 'AgxWpzq4', '5900197'), + (840, 1889, 'attending', '2023-02-09 00:20:33', '2025-12-17 19:47:07', 'AgxWpzq4', '5900199'), + (840, 1890, 'attending', '2023-02-21 11:17:01', '2025-12-17 19:47:08', 'AgxWpzq4', '5900200'), + (840, 1891, 'attending', '2023-02-26 06:53:36', '2025-12-17 19:46:56', 'AgxWpzq4', '5900202'), + (840, 1892, 'attending', '2023-03-16 21:50:54', '2025-12-17 19:46:56', 'AgxWpzq4', '5900203'), + (840, 1895, 'attending', '2023-01-31 22:03:10', '2025-12-17 19:47:06', 'AgxWpzq4', '5901108'), + (840, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AgxWpzq4', '5901126'), + (840, 1897, 'attending', '2023-02-10 18:31:42', '2025-12-17 19:47:07', 'AgxWpzq4', '5901128'), + (840, 1898, 'attending', '2023-01-31 23:55:49', '2025-12-17 19:47:06', 'AgxWpzq4', '5901263'), + (840, 1899, 'attending', '2023-02-05 06:37:15', '2025-12-17 19:47:07', 'AgxWpzq4', '5901323'), + (840, 1902, 'attending', '2023-02-01 19:54:02', '2025-12-17 19:47:06', 'AgxWpzq4', '5902254'), + (840, 1906, 'attending', '2023-02-25 20:59:07', '2025-12-17 19:47:09', 'AgxWpzq4', '5904523'), + (840, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AgxWpzq4', '5909655'), + (840, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AgxWpzq4', '5910522'), + (840, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AgxWpzq4', '5910526'), + (840, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AgxWpzq4', '5910528'), + (840, 1920, 'attending', '2023-02-12 19:25:17', '2025-12-17 19:47:07', 'AgxWpzq4', '5914091'), + (840, 1922, 'attending', '2023-02-12 02:48:06', '2025-12-17 19:47:07', 'AgxWpzq4', '5916219'), + (840, 1923, 'attending', '2023-02-16 05:27:32', '2025-12-17 19:47:07', 'AgxWpzq4', '5930436'), + (840, 1930, 'maybe', '2023-02-24 04:01:00', '2025-12-17 19:47:08', 'AgxWpzq4', '5933462'), + (840, 1931, 'attending', '2023-02-24 04:01:02', '2025-12-17 19:47:08', 'AgxWpzq4', '5933464'), + (840, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AgxWpzq4', '5936234'), + (840, 1934, 'attending', '2023-02-20 19:06:51', '2025-12-17 19:47:08', 'AgxWpzq4', '5936691'), + (840, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AgxWpzq4', '5958351'), + (840, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AgxWpzq4', '5959751'), + (840, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AgxWpzq4', '5959755'), + (840, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AgxWpzq4', '5960055'), + (840, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AgxWpzq4', '5961684'), + (840, 1943, 'attending', '2023-03-14 18:35:42', '2025-12-17 19:47:10', 'AgxWpzq4', '5962091'), + (840, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'AgxWpzq4', '5962132'), + (840, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'AgxWpzq4', '5962133'), + (840, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AgxWpzq4', '5962134'), + (840, 1947, 'attending', '2023-02-26 00:00:13', '2025-12-17 19:47:09', 'AgxWpzq4', '5962233'), + (840, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AgxWpzq4', '5962317'), + (840, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AgxWpzq4', '5962318'), + (840, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'AgxWpzq4', '5965933'), + (840, 1953, 'attending', '2023-03-05 05:18:38', '2025-12-17 19:47:09', 'AgxWpzq4', '5966307'), + (840, 1954, 'attending', '2023-03-03 03:03:16', '2025-12-17 19:47:08', 'AgxWpzq4', '5967014'), + (840, 1955, 'attending', '2023-03-29 11:30:35', '2025-12-17 19:46:57', 'AgxWpzq4', '5972529'), + (840, 1956, 'attending', '2023-03-06 04:28:44', '2025-12-17 19:47:09', 'AgxWpzq4', '5972763'), + (840, 1957, 'attending', '2023-03-06 05:38:29', '2025-12-17 19:47:10', 'AgxWpzq4', '5972815'), + (840, 1959, 'attending', '2023-03-13 05:12:17', '2025-12-17 19:46:57', 'AgxWpzq4', '5972829'), + (840, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AgxWpzq4', '5974016'), + (840, 1964, 'attending', '2023-03-08 23:51:15', '2025-12-17 19:47:09', 'AgxWpzq4', '5977129'), + (840, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AgxWpzq4', '5981515'), + (840, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AgxWpzq4', '5993516'), + (840, 1972, 'attending', '2023-03-13 05:09:13', '2025-12-17 19:46:56', 'AgxWpzq4', '5993776'), + (840, 1973, 'attending', '2023-03-13 05:09:10', '2025-12-17 19:46:56', 'AgxWpzq4', '5993777'), + (840, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AgxWpzq4', '5998939'), + (840, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AgxWpzq4', '6028191'), + (840, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AgxWpzq4', '6040066'), + (840, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AgxWpzq4', '6042717'), + (840, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AgxWpzq4', '6044838'), + (840, 1987, 'maybe', '2023-04-16 23:16:19', '2025-12-17 19:47:00', 'AgxWpzq4', '6044839'), + (840, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxWpzq4', '6045684'), + (840, 1991, 'maybe', '2023-04-01 14:26:30', '2025-12-17 19:46:58', 'AgxWpzq4', '6047354'), + (840, 1992, 'attending', '2023-04-01 14:26:19', '2025-12-17 19:46:58', 'AgxWpzq4', '6048742'), + (840, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AgxWpzq4', '6050104'), + (840, 2001, 'attending', '2023-04-04 20:10:13', '2025-12-17 19:46:58', 'AgxWpzq4', '6052569'), + (840, 2002, 'attending', '2023-04-28 12:01:14', '2025-12-17 19:47:01', 'AgxWpzq4', '6052605'), + (840, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AgxWpzq4', '6053195'), + (840, 2006, 'attending', '2023-04-07 22:30:52', '2025-12-17 19:46:59', 'AgxWpzq4', '6053198'), + (840, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'AgxWpzq4', '6056085'), + (840, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AgxWpzq4', '6056916'), + (840, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AgxWpzq4', '6059290'), + (840, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AgxWpzq4', '6060328'), + (840, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AgxWpzq4', '6061037'), + (840, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AgxWpzq4', '6061039'), + (840, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'AgxWpzq4', '6061099'), + (840, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AgxWpzq4', '6067245'), + (840, 2025, 'attending', '2023-04-23 06:13:00', '2025-12-17 19:47:00', 'AgxWpzq4', '6067457'), + (840, 2026, 'attending', '2023-04-17 23:57:01', '2025-12-17 19:47:01', 'AgxWpzq4', '6068078'), + (840, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AgxWpzq4', '6068094'), + (840, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AgxWpzq4', '6068252'), + (840, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AgxWpzq4', '6068253'), + (840, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AgxWpzq4', '6068254'), + (840, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AgxWpzq4', '6068280'), + (840, 2032, 'attending', '2023-05-31 22:29:27', '2025-12-17 19:47:04', 'AgxWpzq4', '6068281'), + (840, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AgxWpzq4', '6069093'), + (840, 2039, 'attending', '2023-04-23 21:09:23', '2025-12-17 19:47:01', 'AgxWpzq4', '6072398'), + (840, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'AgxWpzq4', '6072528'), + (840, 2043, 'attending', '2023-04-25 18:45:16', '2025-12-17 19:47:01', 'AgxWpzq4', '6073023'), + (840, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', 'AgxWpzq4', '6073678'), + (840, 2046, 'attending', '2023-05-10 04:05:34', '2025-12-17 19:47:02', 'AgxWpzq4', '6076020'), + (840, 2048, 'attending', '2023-04-30 19:00:20', '2025-12-17 19:47:03', 'AgxWpzq4', '6076415'), + (840, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AgxWpzq4', '6079840'), + (840, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AgxWpzq4', '6083398'), + (840, 2052, 'attending', '2023-05-05 16:16:38', '2025-12-17 19:47:02', 'AgxWpzq4', '6088220'), + (840, 2053, 'attending', '2023-05-09 01:59:53', '2025-12-17 19:47:02', 'AgxWpzq4', '6092644'), + (840, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AgxWpzq4', '6093504'), + (840, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AgxWpzq4', '6097414'), + (840, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AgxWpzq4', '6097442'), + (840, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AgxWpzq4', '6097684'), + (840, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AgxWpzq4', '6098762'), + (840, 2064, 'attending', '2023-06-02 17:57:25', '2025-12-17 19:46:50', 'AgxWpzq4', '6099988'), + (840, 2065, 'attending', '2023-06-02 17:57:22', '2025-12-17 19:46:49', 'AgxWpzq4', '6101169'), + (840, 2066, 'attending', '2023-06-02 17:57:16', '2025-12-17 19:47:04', 'AgxWpzq4', '6101361'), + (840, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AgxWpzq4', '6101362'), + (840, 2070, 'attending', '2023-05-15 18:25:32', '2025-12-17 19:47:03', 'AgxWpzq4', '6103752'), + (840, 2074, 'attending', '2023-05-18 17:18:50', '2025-12-17 19:47:03', 'AgxWpzq4', '6107312'), + (840, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AgxWpzq4', '6107314'), + (840, 2077, 'attending', '2023-06-17 14:43:05', '2025-12-17 19:46:49', 'AgxWpzq4', '6110217'), + (840, 2084, 'maybe', '2023-05-27 01:55:10', '2025-12-17 19:47:04', 'AgxWpzq4', '6117127'), + (840, 2086, 'attending', '2023-05-26 18:00:53', '2025-12-17 19:47:04', 'AgxWpzq4', '6119877'), + (840, 2087, 'attending', '2023-05-26 22:01:36', '2025-12-17 19:47:04', 'AgxWpzq4', '6120034'), + (840, 2091, 'maybe', '2023-06-02 17:57:07', '2025-12-17 19:47:04', 'AgxWpzq4', '6130657'), + (840, 2092, 'attending', '2023-06-03 20:51:10', '2025-12-17 19:47:04', 'AgxWpzq4', '6132543'), + (840, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'AgxWpzq4', '6135924'), + (840, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AgxWpzq4', '6136733'), + (840, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AgxWpzq4', '6137989'), + (840, 2104, 'attending', '2023-06-19 03:13:40', '2025-12-17 19:46:50', 'AgxWpzq4', '6149499'), + (840, 2105, 'attending', '2023-06-17 06:17:57', '2025-12-17 19:46:50', 'AgxWpzq4', '6149551'), + (840, 2106, 'maybe', '2023-06-19 16:28:15', '2025-12-17 19:46:50', 'AgxWpzq4', '6150479'), + (840, 2107, 'maybe', '2023-06-19 16:28:21', '2025-12-17 19:46:50', 'AgxWpzq4', '6150480'), + (840, 2108, 'attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AgxWpzq4', '6150864'), + (840, 2110, 'attending', '2023-06-20 17:43:22', '2025-12-17 19:46:50', 'AgxWpzq4', '6155491'), + (840, 2112, 'not_attending', '2023-06-21 16:26:36', '2025-12-17 19:46:50', 'AgxWpzq4', '6156213'), + (840, 2114, 'maybe', '2023-06-24 21:55:35', '2025-12-17 19:46:50', 'AgxWpzq4', '6158648'), + (840, 2118, 'attending', '2023-06-25 17:30:37', '2025-12-17 19:46:50', 'AgxWpzq4', '6164417'), + (840, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AgxWpzq4', '6166388'), + (840, 2121, 'attending', '2023-06-27 20:11:26', '2025-12-17 19:46:50', 'AgxWpzq4', '6176439'), + (840, 2125, 'attending', '2023-06-29 19:29:06', '2025-12-17 19:46:51', 'AgxWpzq4', '6177485'), + (840, 2127, 'attending', '2023-07-01 18:42:09', '2025-12-17 19:46:50', 'AgxWpzq4', '6180853'), + (840, 2128, 'maybe', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AgxWpzq4', '6182410'), + (840, 2129, 'not_attending', '2023-07-05 22:47:06', '2025-12-17 19:46:51', 'AgxWpzq4', '6182825'), + (840, 2131, 'attending', '2023-07-05 17:28:13', '2025-12-17 19:46:51', 'AgxWpzq4', '6185812'), + (840, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AgxWpzq4', '6187651'), + (840, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AgxWpzq4', '6187963'), + (840, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AgxWpzq4', '6187964'), + (840, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AgxWpzq4', '6187966'), + (840, 2137, 'maybe', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AgxWpzq4', '6187967'), + (840, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AgxWpzq4', '6187969'), + (840, 2142, 'attending', '2023-07-07 22:14:12', '2025-12-17 19:46:52', 'AgxWpzq4', '6333850'), + (840, 2143, 'attending', '2023-07-08 17:16:10', '2025-12-17 19:46:51', 'AgxWpzq4', '6334348'), + (840, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AgxWpzq4', '6334878'), + (840, 2145, 'attending', '2023-07-10 08:07:01', '2025-12-17 19:46:52', 'AgxWpzq4', '6334903'), + (840, 2146, 'attending', '2023-07-18 02:37:09', '2025-12-17 19:46:53', 'AgxWpzq4', '6335638'), + (840, 2149, 'attending', '2023-07-09 22:37:17', '2025-12-17 19:46:53', 'AgxWpzq4', '6335682'), + (840, 2152, 'attending', '2023-07-11 02:18:01', '2025-12-17 19:46:52', 'AgxWpzq4', '6337021'), + (840, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AgxWpzq4', '6337236'), + (840, 2155, 'attending', '2023-07-12 20:20:12', '2025-12-17 19:46:53', 'AgxWpzq4', '6337970'), + (840, 2156, 'attending', '2023-07-12 21:21:34', '2025-12-17 19:46:52', 'AgxWpzq4', '6338308'), + (840, 2158, 'attending', '2023-07-17 20:01:03', '2025-12-17 19:46:53', 'AgxWpzq4', '6338353'), + (840, 2159, 'attending', '2023-07-15 05:52:41', '2025-12-17 19:46:53', 'AgxWpzq4', '6338355'), + (840, 2160, 'attending', '2023-07-15 05:52:42', '2025-12-17 19:46:54', 'AgxWpzq4', '6338358'), + (840, 2161, 'attending', '2023-07-15 19:11:39', '2025-12-17 19:46:52', 'AgxWpzq4', '6340748'), + (840, 2162, 'attending', '2023-07-16 06:33:07', '2025-12-17 19:46:53', 'AgxWpzq4', '6340845'), + (840, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AgxWpzq4', '6341710'), + (840, 2165, 'attending', '2023-07-20 19:13:28', '2025-12-17 19:46:54', 'AgxWpzq4', '6342044'), + (840, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AgxWpzq4', '6342298'), + (840, 2172, 'attending', '2023-07-18 02:39:07', '2025-12-17 19:46:53', 'AgxWpzq4', '6342591'), + (840, 2174, 'maybe', '2023-07-23 07:08:14', '2025-12-17 19:46:53', 'AgxWpzq4', '6343294'), + (840, 2175, 'attending', '2023-07-22 18:59:04', '2025-12-17 19:46:53', 'AgxWpzq4', '6346982'), + (840, 2176, 'maybe', '2023-07-23 07:08:15', '2025-12-17 19:46:54', 'AgxWpzq4', '6347034'), + (840, 2177, 'not_attending', '2023-08-06 05:55:23', '2025-12-17 19:46:55', 'AgxWpzq4', '6347053'), + (840, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AgxWpzq4', '6347056'), + (840, 2183, 'attending', '2023-07-28 18:36:05', '2025-12-17 19:46:54', 'AgxWpzq4', '6353008'), + (840, 2184, 'attending', '2023-07-29 20:37:39', '2025-12-17 19:46:54', 'AgxWpzq4', '6353825'), + (840, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AgxWpzq4', '6353830'), + (840, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AgxWpzq4', '6353831'), + (840, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AgxWpzq4', '6357867'), + (840, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AgxWpzq4', '6358652'), + (840, 2192, 'attending', '2023-08-04 04:31:50', '2025-12-17 19:46:54', 'AgxWpzq4', '6358666'), + (840, 2199, 'attending', '2023-08-09 16:55:57', '2025-12-17 19:46:55', 'AgxWpzq4', '6359849'), + (840, 2200, 'attending', '2023-08-06 05:54:58', '2025-12-17 19:46:55', 'AgxWpzq4', '6359850'), + (840, 2203, 'attending', '2023-08-07 20:14:49', '2025-12-17 19:46:55', 'AgxWpzq4', '6361524'), + (840, 2204, 'attending', '2023-08-09 16:56:15', '2025-12-17 19:46:55', 'AgxWpzq4', '6361542'), + (840, 2208, 'attending', '2023-08-09 14:38:38', '2025-12-17 19:46:54', 'AgxWpzq4', '6361709'), + (840, 2209, 'attending', '2023-08-09 16:56:00', '2025-12-17 19:46:55', 'AgxWpzq4', '6361710'), + (840, 2210, 'attending', '2023-08-09 16:56:01', '2025-12-17 19:46:55', 'AgxWpzq4', '6361711'), + (840, 2211, 'attending', '2023-08-09 16:56:06', '2025-12-17 19:46:55', 'AgxWpzq4', '6361712'), + (840, 2212, 'attending', '2023-09-09 21:07:04', '2025-12-17 19:46:45', 'AgxWpzq4', '6361713'), + (840, 2216, 'attending', '2023-08-11 16:04:44', '2025-12-17 19:46:55', 'AgxWpzq4', '6364123'), + (840, 2217, 'attending', '2023-08-13 04:49:45', '2025-12-17 19:46:55', 'AgxWpzq4', '6364333'), + (840, 2226, 'attending', '2023-08-17 23:18:46', '2025-12-17 19:46:55', 'AgxWpzq4', '6370006'), + (840, 2228, 'attending', '2023-08-19 20:04:44', '2025-12-17 19:46:55', 'AgxWpzq4', '6372777'), + (840, 2231, 'attending', '2023-08-21 17:45:41', '2025-12-17 19:46:55', 'AgxWpzq4', '6374748'), + (840, 2232, 'attending', '2023-08-25 15:05:24', '2025-12-17 19:46:55', 'AgxWpzq4', '6374818'), + (840, 2234, 'attending', '2023-08-26 19:38:33', '2025-12-17 19:46:56', 'AgxWpzq4', '6382559'), + (840, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'AgxWpzq4', '6382573'), + (840, 2236, 'attending', '2023-08-27 06:20:05', '2025-12-17 19:46:55', 'AgxWpzq4', '6382618'), + (840, 2237, 'attending', '2023-08-26 20:09:01', '2025-12-17 19:46:55', 'AgxWpzq4', '6383149'), + (840, 2239, 'attending', '2023-09-01 20:05:27', '2025-12-17 19:46:56', 'AgxWpzq4', '6387592'), + (840, 2240, 'attending', '2023-09-07 20:07:15', '2025-12-17 19:46:56', 'AgxWpzq4', '6388603'), + (840, 2241, 'attending', '2023-09-07 20:07:13', '2025-12-17 19:46:44', 'AgxWpzq4', '6388604'), + (840, 2242, 'attending', '2023-09-07 20:07:10', '2025-12-17 19:46:45', 'AgxWpzq4', '6388606'), + (840, 2244, 'attending', '2023-09-05 16:49:14', '2025-12-17 19:46:44', 'AgxWpzq4', '6393700'), + (840, 2247, 'attending', '2023-09-06 22:56:27', '2025-12-17 19:46:56', 'AgxWpzq4', '6394628'), + (840, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AgxWpzq4', '6394629'), + (840, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AgxWpzq4', '6394631'), + (840, 2253, 'attending', '2023-09-15 04:46:53', '2025-12-17 19:46:45', 'AgxWpzq4', '6401811'), + (840, 2255, 'attending', '2023-09-12 08:52:07', '2025-12-17 19:46:45', 'AgxWpzq4', '6403562'), + (840, 2257, 'attending', '2023-09-16 19:42:24', '2025-12-17 19:46:44', 'AgxWpzq4', '6408068'), + (840, 2265, 'attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', 'AgxWpzq4', '6439625'), + (840, 2266, 'attending', '2023-10-03 23:06:54', '2025-12-17 19:46:45', 'AgxWpzq4', '6439635'), + (840, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AgxWpzq4', '6440863'), + (840, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AgxWpzq4', '6445440'), + (840, 2274, 'attending', '2023-10-03 22:55:02', '2025-12-17 19:46:45', 'AgxWpzq4', '6448287'), + (840, 2275, 'attending', '2023-10-07 19:28:33', '2025-12-17 19:46:45', 'AgxWpzq4', '6453777'), + (840, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AgxWpzq4', '6453951'), + (840, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AgxWpzq4', '6461696'), + (840, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AgxWpzq4', '6462129'), + (840, 2290, 'maybe', '2023-10-18 00:11:48', '2025-12-17 19:46:46', 'AgxWpzq4', '6462214'), + (840, 2292, 'maybe', '2023-10-22 19:25:57', '2025-12-17 19:46:47', 'AgxWpzq4', '6462216'), + (840, 2293, 'attending', '2023-10-11 22:08:06', '2025-12-17 19:46:46', 'AgxWpzq4', '6463218'), + (840, 2299, 'attending', '2023-10-20 22:34:17', '2025-12-17 19:46:46', 'AgxWpzq4', '6472181'), + (840, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', 'AgxWpzq4', '6474276'), + (840, 2302, 'not_attending', '2023-10-22 12:26:52', '2025-12-17 19:46:46', 'AgxWpzq4', '6482535'), + (840, 2303, 'attending', '2023-10-22 12:34:55', '2025-12-17 19:46:47', 'AgxWpzq4', '6482691'), + (840, 2304, 'attending', '2023-10-22 12:34:57', '2025-12-17 19:46:47', 'AgxWpzq4', '6482693'), + (840, 2305, 'attending', '2023-10-21 21:46:45', '2025-12-17 19:46:46', 'AgxWpzq4', '6483945'), + (840, 2306, 'attending', '2023-11-14 23:05:59', '2025-12-17 19:46:47', 'AgxWpzq4', '6484200'), + (840, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'AgxWpzq4', '6484680'), + (840, 2310, 'maybe', '2023-10-25 13:23:13', '2025-12-17 19:46:47', 'AgxWpzq4', '6487709'), + (840, 2313, 'attending', '2023-10-28 17:55:46', '2025-12-17 19:46:47', 'AgxWpzq4', '6492612'), + (840, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AgxWpzq4', '6507741'), + (840, 2322, 'attending', '2023-11-09 10:27:45', '2025-12-17 19:46:48', 'AgxWpzq4', '6514659'), + (840, 2323, 'attending', '2023-11-09 10:27:44', '2025-12-17 19:46:48', 'AgxWpzq4', '6514660'), + (840, 2324, 'attending', '2023-11-09 10:27:46', '2025-12-17 19:46:49', 'AgxWpzq4', '6514662'), + (840, 2325, 'attending', '2023-11-09 10:27:50', '2025-12-17 19:46:36', 'AgxWpzq4', '6514663'), + (840, 2328, 'attending', '2023-11-01 21:51:55', '2025-12-17 19:46:47', 'AgxWpzq4', '6515504'), + (840, 2330, 'maybe', '2023-11-04 22:26:18', '2025-12-17 19:46:47', 'AgxWpzq4', '6517941'), + (840, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AgxWpzq4', '6519103'), + (840, 2335, 'attending', '2023-11-07 20:24:36', '2025-12-17 19:46:47', 'AgxWpzq4', '6534890'), + (840, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AgxWpzq4', '6535681'), + (840, 2338, 'not_attending', '2023-11-24 10:08:15', '2025-12-17 19:46:48', 'AgxWpzq4', '6538868'), + (840, 2342, 'attending', '2023-11-13 19:03:21', '2025-12-17 19:46:47', 'AgxWpzq4', '6545076'), + (840, 2343, 'maybe', '2023-11-15 07:44:49', '2025-12-17 19:46:48', 'AgxWpzq4', '6574728'), + (840, 2346, 'attending', '2023-11-18 22:27:49', '2025-12-17 19:46:48', 'AgxWpzq4', '6582418'), + (840, 2350, 'attending', '2023-11-21 04:41:04', '2025-12-17 19:46:48', 'AgxWpzq4', '6584352'), + (840, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AgxWpzq4', '6584747'), + (840, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AgxWpzq4', '6587097'), + (840, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AgxWpzq4', '6609022'), + (840, 2373, 'attending', '2023-12-18 19:16:45', '2025-12-17 19:46:38', 'AgxWpzq4', '6632678'), + (840, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AgxWpzq4', '6632757'), + (840, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AgxWpzq4', '6644187'), + (840, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AgxWpzq4', '6648951'), + (840, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AgxWpzq4', '6648952'), + (840, 2388, 'attending', '2024-01-06 11:15:17', '2025-12-17 19:46:37', 'AgxWpzq4', '6649244'), + (840, 2390, 'attending', '2024-01-03 21:50:22', '2025-12-17 19:46:37', 'AgxWpzq4', '6651141'), + (840, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AgxWpzq4', '6655401'), + (840, 2399, 'attending', '2024-01-09 09:41:56', '2025-12-17 19:46:37', 'AgxWpzq4', '6657583'), + (840, 2400, 'maybe', '2024-01-08 19:48:23', '2025-12-17 19:46:37', 'AgxWpzq4', '6659378'), + (840, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AgxWpzq4', '6661585'), + (840, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AgxWpzq4', '6661588'), + (840, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AgxWpzq4', '6661589'), + (840, 2407, 'attending', '2024-01-15 03:36:33', '2025-12-17 19:46:40', 'AgxWpzq4', '6699906'), + (840, 2408, 'attending', '2024-01-15 03:47:21', '2025-12-17 19:46:40', 'AgxWpzq4', '6699907'), + (840, 2409, 'attending', '2024-01-15 03:47:22', '2025-12-17 19:46:41', 'AgxWpzq4', '6699909'), + (840, 2410, 'attending', '2024-01-15 03:50:04', '2025-12-17 19:46:41', 'AgxWpzq4', '6699911'), + (840, 2411, 'attending', '2024-01-15 04:15:43', '2025-12-17 19:46:41', 'AgxWpzq4', '6699913'), + (840, 2412, 'attending', '2024-01-15 21:49:00', '2025-12-17 19:46:43', 'AgxWpzq4', '6700717'), + (840, 2413, 'attending', '2024-01-15 21:53:45', '2025-12-17 19:46:42', 'AgxWpzq4', '6700719'), + (840, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AgxWpzq4', '6701109'), + (840, 2424, 'attending', '2024-01-19 01:47:27', '2025-12-17 19:46:40', 'AgxWpzq4', '6705143'), + (840, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AgxWpzq4', '6705219'), + (840, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AgxWpzq4', '6710153'), + (840, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AgxWpzq4', '6711552'), + (840, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'AgxWpzq4', '6711553'), + (840, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AgxWpzq4', '6722688'), + (840, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AgxWpzq4', '6730620'), + (840, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AgxWpzq4', '6730642'), + (840, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AgxWpzq4', '6740364'), + (840, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AgxWpzq4', '6743829'), + (840, 2467, 'attending', '2024-02-16 01:31:57', '2025-12-17 19:46:43', 'AgxWpzq4', '7029987'), + (840, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AgxWpzq4', '7030380'), + (840, 2471, 'attending', '2024-02-19 05:55:14', '2025-12-17 19:46:42', 'AgxWpzq4', '7032425'), + (840, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AgxWpzq4', '7033677'), + (840, 2474, 'attending', '2024-02-20 21:12:09', '2025-12-17 19:46:43', 'AgxWpzq4', '7035415'), + (840, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AgxWpzq4', '7044715'), + (840, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AgxWpzq4', '7050318'), + (840, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AgxWpzq4', '7050319'), + (840, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AgxWpzq4', '7050322'), + (840, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AgxWpzq4', '7057804'), + (840, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AgxWpzq4', '7072824'), + (840, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AgxWpzq4', '7074348'), + (840, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AgxWpzq4', '7074364'), + (840, 2537, 'attending', '2024-03-16 06:13:19', '2025-12-17 19:46:33', 'AgxWpzq4', '7085484'), + (840, 2538, 'attending', '2024-03-16 06:14:09', '2025-12-17 19:46:33', 'AgxWpzq4', '7085485'), + (840, 2539, 'attending', '2024-03-16 06:14:10', '2025-12-17 19:46:33', 'AgxWpzq4', '7085486'), + (840, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AgxWpzq4', '7089267'), + (840, 2543, 'attending', '2024-03-24 02:18:13', '2025-12-17 19:46:33', 'AgxWpzq4', '7091456'), + (840, 2548, 'attending', '2024-03-23 18:28:53', '2025-12-17 19:46:33', 'AgxWpzq4', '7098747'), + (840, 2549, 'attending', '2024-03-24 19:56:20', '2025-12-17 19:46:33', 'AgxWpzq4', '7099657'), + (840, 2553, 'attending', '2024-03-29 18:43:09', '2025-12-17 19:46:33', 'AgxWpzq4', '7113468'), + (840, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AgxWpzq4', '7114856'), + (840, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AgxWpzq4', '7114951'), + (840, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AgxWpzq4', '7114955'), + (840, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AgxWpzq4', '7114956'), + (840, 2558, 'attending', '2024-04-04 06:32:54', '2025-12-17 19:46:35', 'AgxWpzq4', '7114957'), + (840, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AgxWpzq4', '7153615'), + (840, 2569, 'attending', '2024-04-05 19:19:33', '2025-12-17 19:46:33', 'AgxWpzq4', '7154056'), + (840, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AgxWpzq4', '7159484'), + (840, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AgxWpzq4', '7178446'), + (840, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AgxWpzq4', '7220467'), + (840, 2609, 'attending', '2024-05-06 16:41:05', '2025-12-17 19:46:35', 'AgxWpzq4', '7240354'), + (840, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AgxWpzq4', '7251633'), + (840, 2622, 'attending', '2024-05-09 05:24:02', '2025-12-17 19:46:35', 'AgxWpzq4', '7262064'), + (840, 2626, 'attending', '2024-05-17 04:38:48', '2025-12-17 19:46:35', 'AgxWpzq4', '7264723'), + (840, 2627, 'attending', '2024-05-17 04:38:46', '2025-12-17 19:46:35', 'AgxWpzq4', '7264724'), + (840, 2628, 'attending', '2024-05-17 04:38:49', '2025-12-17 19:46:36', 'AgxWpzq4', '7264725'), + (840, 2629, 'attending', '2024-05-17 04:38:51', '2025-12-17 19:46:28', 'AgxWpzq4', '7264726'), + (840, 2645, 'attending', '2024-05-20 22:11:18', '2025-12-17 19:46:35', 'AgxWpzq4', '7279964'), + (840, 2647, 'attending', '2024-05-20 19:20:39', '2025-12-17 19:46:28', 'AgxWpzq4', '7282057'), + (840, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AgxWpzq4', '7302674'), + (840, 2688, 'attending', '2024-06-25 17:17:33', '2025-12-17 19:46:29', 'AgxWpzq4', '7324073'), + (840, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AgxWpzq4', '7324074'), + (840, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AgxWpzq4', '7324075'), + (840, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AgxWpzq4', '7324078'), + (840, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AgxWpzq4', '7324082'), + (840, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AgxWpzq4', '7331457'), + (840, 2726, 'not_attending', '2024-06-19 19:17:45', '2025-12-17 19:46:29', 'AgxWpzq4', '7332853'), + (840, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AgxWpzq4', '7356752'), + (840, 2766, 'attending', '2024-07-21 22:07:22', '2025-12-17 19:46:30', 'AgxWpzq4', '7363643'), + (840, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AgxWpzq4', '7368606'), + (840, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AgxWpzq4', '7397462'), + (840, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AgxWpzq4', '7424275'), + (840, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AgxWpzq4', '7424276'), + (840, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AgxWpzq4', '7432751'), + (840, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AgxWpzq4', '7432752'), + (840, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AgxWpzq4', '7432753'), + (840, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AgxWpzq4', '7432754'), + (840, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AgxWpzq4', '7432755'), + (840, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AgxWpzq4', '7432756'), + (840, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AgxWpzq4', '7432758'), + (840, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AgxWpzq4', '7432759'), + (840, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AgxWpzq4', '7433834'), + (840, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AgxWpzq4', '7470197'), + (840, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AgxWpzq4', '7685613'), + (840, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AgxWpzq4', '7688194'), + (840, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AgxWpzq4', '7688196'), + (840, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AgxWpzq4', '7688289'), + (841, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'd5jREKOm', '7291219'), + (841, 2657, 'not_attending', '2024-05-29 15:52:43', '2025-12-17 19:46:36', 'd5jREKOm', '7294438'), + (841, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'd5jREKOm', '7301638'), + (842, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'ndlplxld', '3470305'), + (842, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ndlplxld', '3517815'), + (842, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ndlplxld', '3517816'), + (842, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ndlplxld', '3523941'), + (842, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ndlplxld', '3533850'), + (842, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ndlplxld', '3536632'), + (842, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ndlplxld', '3536656'), + (842, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ndlplxld', '3539916'), + (842, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ndlplxld', '3539917'), + (842, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ndlplxld', '3539918'), + (842, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ndlplxld', '3539919'), + (842, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ndlplxld', '3539920'), + (842, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ndlplxld', '3539921'), + (842, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ndlplxld', '3539922'), + (842, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndlplxld', '3539923'), + (842, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndlplxld', '3539927'), + (842, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndlplxld', '3582734'), + (842, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndlplxld', '3619523'), + (842, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlplxld', '6045684'), + (843, 950, 'maybe', '2021-08-20 14:34:32', '2025-12-17 19:47:42', 'AgkZVeMA', '4315730'), + (843, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'AgkZVeMA', '4356801'), + (843, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'AgkZVeMA', '4366186'), + (843, 974, 'maybe', '2021-08-27 01:03:27', '2025-12-17 19:47:43', 'AgkZVeMA', '4366187'), + (843, 978, 'not_attending', '2021-08-21 22:30:35', '2025-12-17 19:47:42', 'AgkZVeMA', '4378509'), + (843, 981, 'attending', '2021-08-27 21:59:40', '2025-12-17 19:47:42', 'AgkZVeMA', '4387305'), + (843, 983, 'not_attending', '2021-08-30 15:33:21', '2025-12-17 19:47:42', 'AgkZVeMA', '4390051'), + (843, 988, 'not_attending', '2021-08-25 14:58:04', '2025-12-17 19:47:42', 'AgkZVeMA', '4402823'), + (843, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'AgkZVeMA', '4420735'), + (843, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'AgkZVeMA', '4420738'), + (843, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'AgkZVeMA', '4420739'), + (843, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'AgkZVeMA', '4420741'), + (843, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'AgkZVeMA', '4420744'), + (843, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'AgkZVeMA', '4420747'), + (843, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'AgkZVeMA', '4420748'), + (843, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'AgkZVeMA', '4420749'), + (843, 1002, 'attending', '2021-08-30 15:22:55', '2025-12-17 19:47:43', 'AgkZVeMA', '4424932'), + (843, 1013, 'not_attending', '2021-09-04 17:06:37', '2025-12-17 19:47:43', 'AgkZVeMA', '4438817'), + (843, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AgkZVeMA', '4461883'), + (843, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AgkZVeMA', '4508342'), + (843, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AgkZVeMA', '4568602'), + (843, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AgkZVeMA', '6045684'), + (844, 1154, 'maybe', '2022-01-25 04:16:03', '2025-12-17 19:47:32', 'd8Go37v4', '4708708'), + (844, 1175, 'attending', '2022-01-22 23:29:09', '2025-12-17 19:47:32', 'd8Go37v4', '4736497'), + (844, 1177, 'not_attending', '2022-02-13 00:06:27', '2025-12-17 19:47:32', 'd8Go37v4', '4736499'), + (844, 1178, 'attending', '2022-01-29 21:56:57', '2025-12-17 19:47:32', 'd8Go37v4', '4736500'), + (844, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd8Go37v4', '4736503'), + (844, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd8Go37v4', '4736504'), + (844, 1193, 'attending', '2022-01-18 10:58:23', '2025-12-17 19:47:32', 'd8Go37v4', '4759563'), + (844, 1197, 'not_attending', '2022-01-25 04:15:40', '2025-12-17 19:47:32', 'd8Go37v4', '4766799'), + (844, 1198, 'attending', '2022-01-22 05:58:41', '2025-12-17 19:47:32', 'd8Go37v4', '4766801'), + (844, 1199, 'attending', '2022-01-25 04:15:33', '2025-12-17 19:47:32', 'd8Go37v4', '4766802'), + (844, 1200, 'attending', '2022-01-19 02:14:20', '2025-12-17 19:47:32', 'd8Go37v4', '4766830'), + (844, 1201, 'attending', '2022-01-18 10:58:08', '2025-12-17 19:47:32', 'd8Go37v4', '4766841'), + (844, 1202, 'maybe', '2022-01-25 04:16:00', '2025-12-17 19:47:32', 'd8Go37v4', '4769423'), + (844, 1210, 'maybe', '2022-01-25 04:16:12', '2025-12-17 19:47:32', 'd8Go37v4', '4776927'), + (844, 1216, 'maybe', '2022-01-25 14:53:56', '2025-12-17 19:47:32', 'd8Go37v4', '4781137'), + (844, 1217, 'attending', '2022-01-30 20:34:53', '2025-12-17 19:47:32', 'd8Go37v4', '4781139'), + (844, 1218, 'maybe', '2022-02-01 01:14:54', '2025-12-17 19:47:32', 'd8Go37v4', '4788464'), + (844, 1219, 'maybe', '2022-01-31 04:28:33', '2025-12-17 19:47:32', 'd8Go37v4', '4788466'), + (844, 1220, 'maybe', '2022-01-28 00:56:11', '2025-12-17 19:47:32', 'd8Go37v4', '4790257'), + (844, 1221, 'maybe', '2022-01-28 00:56:22', '2025-12-17 19:47:32', 'd8Go37v4', '4790261'), + (844, 1223, 'not_attending', '2022-02-05 22:05:44', '2025-12-17 19:47:32', 'd8Go37v4', '5015635'), + (844, 1224, 'maybe', '2022-01-31 04:28:46', '2025-12-17 19:47:32', 'd8Go37v4', '5016682'), + (844, 1226, 'not_attending', '2022-02-01 23:21:56', '2025-12-17 19:47:32', 'd8Go37v4', '5019064'), + (844, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd8Go37v4', '5038850'), + (844, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd8Go37v4', '5045826'), + (844, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd8Go37v4', '5132533'), + (844, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd8Go37v4', '5186582'), + (844, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd8Go37v4', '5186583'), + (844, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd8Go37v4', '5186585'), + (844, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd8Go37v4', '5190437'), + (844, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd8Go37v4', '5215989'), + (844, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd8Go37v4', '6045684'), + (845, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4ojJnrZA', '7240354'), + (845, 2611, 'attending', '2024-05-06 10:11:22', '2025-12-17 19:46:35', '4ojJnrZA', '7247642'), + (845, 2613, 'attending', '2024-05-07 10:03:36', '2025-12-17 19:46:35', '4ojJnrZA', '7247644'), + (845, 2614, 'attending', '2024-05-07 10:03:45', '2025-12-17 19:46:35', '4ojJnrZA', '7247645'), + (845, 2617, 'attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4ojJnrZA', '7251633'), + (845, 2620, 'not_attending', '2024-05-08 19:30:32', '2025-12-17 19:46:35', '4ojJnrZA', '7258097'), + (845, 2621, 'attending', '2024-05-07 01:27:41', '2025-12-17 19:46:35', '4ojJnrZA', '7258170'), + (845, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4ojJnrZA', '7263048'), + (845, 2624, 'not_attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', '4ojJnrZA', '7263301'), + (846, 1176, 'attending', '2022-02-05 23:42:10', '2025-12-17 19:47:32', 'mq1VBn1m', '4736498'), + (846, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mq1VBn1m', '4736499'), + (846, 1179, 'attending', '2022-02-19 16:52:31', '2025-12-17 19:47:32', 'mq1VBn1m', '4736501'), + (846, 1180, 'attending', '2022-02-27 00:08:33', '2025-12-17 19:47:33', 'mq1VBn1m', '4736502'), + (846, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mq1VBn1m', '4736503'), + (846, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mq1VBn1m', '4736504'), + (846, 1212, 'attending', '2022-01-27 15:52:36', '2025-12-17 19:47:32', 'mq1VBn1m', '4780759'), + (846, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mq1VBn1m', '5038850'), + (846, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mq1VBn1m', '5045826'), + (846, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mq1VBn1m', '5132533'), + (846, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mq1VBn1m', '5186582'), + (846, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mq1VBn1m', '5186583'), + (846, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mq1VBn1m', '5186585'), + (846, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mq1VBn1m', '5190437'), + (846, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mq1VBn1m', '5195095'), + (846, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mq1VBn1m', '5215989'), + (846, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mq1VBn1m', '5223686'), + (846, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mq1VBn1m', '5227432'), + (846, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mq1VBn1m', '5247467'), + (846, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mq1VBn1m', '5260800'), + (846, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mq1VBn1m', '5269930'), + (846, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mq1VBn1m', '5271448'), + (846, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mq1VBn1m', '5271449'), + (846, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mq1VBn1m', '5276469'), + (846, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mq1VBn1m', '5278159'), + (846, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mq1VBn1m', '5363695'), + (846, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mq1VBn1m', '5365960'), + (846, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mq1VBn1m', '5368973'), + (846, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mq1VBn1m', '5378247'), + (846, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mq1VBn1m', '5389605'), + (846, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mq1VBn1m', '5397265'), + (846, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mq1VBn1m', '5403967'), + (846, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mq1VBn1m', '5404786'), + (846, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mq1VBn1m', '5405203'), + (846, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mq1VBn1m', '5408794'), + (846, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mq1VBn1m', '5411699'), + (846, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mq1VBn1m', '5412550'), + (846, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mq1VBn1m', '5415046'), + (846, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mq1VBn1m', '5422086'), + (846, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mq1VBn1m', '5422406'), + (846, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mq1VBn1m', '5424565'), + (846, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mq1VBn1m', '5426882'), + (846, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mq1VBn1m', '5427083'), + (846, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mq1VBn1m', '5441125'), + (846, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mq1VBn1m', '5441126'), + (846, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mq1VBn1m', '5441128'), + (846, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mq1VBn1m', '5441131'), + (846, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mq1VBn1m', '5441132'), + (846, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mq1VBn1m', '5446643'), + (846, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mq1VBn1m', '5453325'), + (846, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mq1VBn1m', '5454516'), + (846, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mq1VBn1m', '5454605'), + (846, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mq1VBn1m', '5455037'), + (846, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mq1VBn1m', '5461278'), + (846, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mq1VBn1m', '5469480'), + (846, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mq1VBn1m', '5471073'), + (846, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mq1VBn1m', '5474663'), + (846, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mq1VBn1m', '5482022'), + (846, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mq1VBn1m', '5482793'), + (846, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mq1VBn1m', '5488912'), + (846, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mq1VBn1m', '5492192'), + (846, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mq1VBn1m', '5493139'), + (846, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mq1VBn1m', '5493200'), + (846, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mq1VBn1m', '5502188'), + (846, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mq1VBn1m', '5505059'), + (846, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mq1VBn1m', '5509055'), + (846, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mq1VBn1m', '5512862'), + (846, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mq1VBn1m', '5513985'), + (846, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'mq1VBn1m', '5519981'), + (846, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mq1VBn1m', '5522550'), + (846, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mq1VBn1m', '5534683'), + (846, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mq1VBn1m', '5546619'), + (846, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mq1VBn1m', '5555245'), + (846, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mq1VBn1m', '5557747'), + (846, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mq1VBn1m', '6045684'), + (847, 157, 'not_attending', '2020-09-14 00:02:09', '2025-12-17 19:47:56', '841kEKMm', '3058694'), + (847, 158, 'not_attending', '2020-09-26 00:13:14', '2025-12-17 19:47:52', '841kEKMm', '3058695'), + (847, 160, 'not_attending', '2020-10-17 22:33:50', '2025-12-17 19:47:52', '841kEKMm', '3058697'), + (847, 161, 'not_attending', '2020-10-09 23:54:19', '2025-12-17 19:47:52', '841kEKMm', '3058698'), + (847, 162, 'not_attending', '2020-10-11 18:40:10', '2025-12-17 19:47:52', '841kEKMm', '3058699'), + (847, 163, 'not_attending', '2020-10-28 13:16:09', '2025-12-17 19:47:53', '841kEKMm', '3058700'), + (847, 221, 'not_attending', '2020-09-13 22:56:08', '2025-12-17 19:47:56', '841kEKMm', '3129265'), + (847, 223, 'attending', '2020-09-12 23:07:51', '2025-12-17 19:47:56', '841kEKMm', '3129980'), + (847, 241, 'not_attending', '2020-10-01 23:31:56', '2025-12-17 19:47:52', '841kEKMm', '3149472'), + (847, 242, 'not_attending', '2020-09-13 22:56:41', '2025-12-17 19:47:56', '841kEKMm', '3149473'), + (847, 244, 'not_attending', '2020-10-17 22:33:30', '2025-12-17 19:47:52', '841kEKMm', '3149475'), + (847, 296, 'not_attending', '2020-09-15 16:44:33', '2025-12-17 19:47:56', '841kEKMm', '3172876'), + (847, 311, 'not_attending', '2020-09-13 22:55:51', '2025-12-17 19:47:56', '841kEKMm', '3186057'), + (847, 323, 'not_attending', '2020-09-15 16:44:37', '2025-12-17 19:47:56', '841kEKMm', '3197081'), + (847, 326, 'not_attending', '2020-09-26 00:13:07', '2025-12-17 19:47:52', '841kEKMm', '3197084'), + (847, 328, 'not_attending', '2020-09-28 12:13:02', '2025-12-17 19:47:52', '841kEKMm', '3197086'), + (847, 329, 'not_attending', '2020-09-28 12:14:26', '2025-12-17 19:47:52', '841kEKMm', '3197087'), + (847, 333, 'not_attending', '2020-10-01 23:31:58', '2025-12-17 19:47:52', '841kEKMm', '3199782'), + (847, 336, 'not_attending', '2020-09-15 16:40:38', '2025-12-17 19:47:56', '841kEKMm', '3200495'), + (847, 340, 'attending', '2020-09-18 22:03:35', '2025-12-17 19:47:56', '841kEKMm', '3204470'), + (847, 341, 'not_attending', '2020-09-24 19:34:02', '2025-12-17 19:47:52', '841kEKMm', '3204471'), + (847, 342, 'not_attending', '2020-10-02 19:43:21', '2025-12-17 19:47:52', '841kEKMm', '3204472'), + (847, 343, 'not_attending', '2020-09-21 00:52:54', '2025-12-17 19:47:56', '841kEKMm', '3206759'), + (847, 344, 'not_attending', '2020-10-17 22:34:18', '2025-12-17 19:47:53', '841kEKMm', '3206906'), + (847, 346, 'not_attending', '2020-09-15 16:40:35', '2025-12-17 19:47:56', '841kEKMm', '3207515'), + (847, 347, 'not_attending', '2020-09-21 00:53:21', '2025-12-17 19:47:51', '841kEKMm', '3207930'), + (847, 348, 'not_attending', '2020-09-27 02:35:41', '2025-12-17 19:47:52', '841kEKMm', '3209159'), + (847, 349, 'not_attending', '2020-09-15 16:40:41', '2025-12-17 19:47:56', '841kEKMm', '3209194'), + (847, 350, 'attending', '2020-09-12 23:07:54', '2025-12-17 19:47:56', '841kEKMm', '3209255'), + (847, 351, 'not_attending', '2020-09-15 16:44:09', '2025-12-17 19:47:56', '841kEKMm', '3209257'), + (847, 352, 'not_attending', '2020-09-13 22:56:00', '2025-12-17 19:47:56', '841kEKMm', '3210514'), + (847, 354, 'not_attending', '2020-09-20 16:43:41', '2025-12-17 19:47:56', '841kEKMm', '3212570'), + (847, 357, 'not_attending', '2020-09-28 12:13:00', '2025-12-17 19:47:52', '841kEKMm', '3212573'), + (847, 358, 'not_attending', '2020-09-19 18:45:33', '2025-12-17 19:47:56', '841kEKMm', '3212579'), + (847, 359, 'not_attending', '2020-09-20 16:43:39', '2025-12-17 19:47:56', '841kEKMm', '3212624'), + (847, 360, 'not_attending', '2020-09-15 16:41:12', '2025-12-17 19:47:56', '841kEKMm', '3212671'), + (847, 361, 'not_attending', '2020-09-15 16:41:24', '2025-12-17 19:47:56', '841kEKMm', '3213323'), + (847, 362, 'attending', '2020-09-26 22:38:31', '2025-12-17 19:47:52', '841kEKMm', '3214207'), + (847, 363, 'not_attending', '2020-09-27 02:35:27', '2025-12-17 19:47:52', '841kEKMm', '3217037'), + (847, 365, 'not_attending', '2020-09-20 14:30:58', '2025-12-17 19:47:52', '841kEKMm', '3218510'), + (847, 366, 'not_attending', '2020-09-22 21:32:24', '2025-12-17 19:47:56', '841kEKMm', '3219750'), + (847, 367, 'not_attending', '2020-09-24 21:19:42', '2025-12-17 19:47:51', '841kEKMm', '3219751'), + (847, 368, 'not_attending', '2020-09-28 12:14:19', '2025-12-17 19:47:52', '841kEKMm', '3221403'), + (847, 369, 'not_attending', '2020-10-09 23:54:46', '2025-12-17 19:47:52', '841kEKMm', '3221404'), + (847, 370, 'not_attending', '2020-10-13 12:17:12', '2025-12-17 19:47:52', '841kEKMm', '3221405'), + (847, 372, 'not_attending', '2020-10-17 22:33:31', '2025-12-17 19:47:52', '841kEKMm', '3221407'), + (847, 373, 'not_attending', '2020-10-17 22:33:44', '2025-12-17 19:47:52', '841kEKMm', '3221413'), + (847, 375, 'not_attending', '2020-10-08 22:59:50', '2025-12-17 19:47:52', '841kEKMm', '3222825'), + (847, 378, 'not_attending', '2020-09-27 02:35:18', '2025-12-17 19:47:52', '841kEKMm', '3223725'), + (847, 379, 'not_attending', '2020-10-01 23:31:51', '2025-12-17 19:47:52', '841kEKMm', '3226266'), + (847, 380, 'not_attending', '2020-09-30 22:15:14', '2025-12-17 19:47:52', '841kEKMm', '3226281'), + (847, 383, 'not_attending', '2020-09-28 12:14:22', '2025-12-17 19:47:52', '841kEKMm', '3227946'), + (847, 385, 'attending', '2020-10-03 16:57:24', '2025-12-17 19:47:52', '841kEKMm', '3228698'), + (847, 386, 'not_attending', '2020-10-10 23:10:54', '2025-12-17 19:47:52', '841kEKMm', '3228699'), + (847, 387, 'not_attending', '2020-10-17 22:32:33', '2025-12-17 19:47:52', '841kEKMm', '3228700'), + (847, 388, 'not_attending', '2020-10-24 22:46:13', '2025-12-17 19:47:52', '841kEKMm', '3228701'), + (847, 389, 'not_attending', '2020-09-30 22:15:06', '2025-12-17 19:47:52', '841kEKMm', '3231284'), + (847, 390, 'not_attending', '2020-10-01 23:31:49', '2025-12-17 19:47:52', '841kEKMm', '3231510'), + (847, 392, 'not_attending', '2020-10-28 13:15:51', '2025-12-17 19:47:53', '841kEKMm', '3236447'), + (847, 411, 'maybe', '2020-10-09 23:54:26', '2025-12-17 19:47:52', '841kEKMm', '3236596'), + (847, 413, 'not_attending', '2020-10-17 22:33:36', '2025-12-17 19:47:52', '841kEKMm', '3236670'), + (847, 414, 'not_attending', '2020-10-17 22:33:25', '2025-12-17 19:47:52', '841kEKMm', '3237277'), + (847, 415, 'not_attending', '2020-10-09 23:54:42', '2025-12-17 19:47:52', '841kEKMm', '3238044'), + (847, 416, 'not_attending', '2020-10-07 23:45:18', '2025-12-17 19:47:52', '841kEKMm', '3238073'), + (847, 417, 'not_attending', '2020-10-13 12:17:09', '2025-12-17 19:47:52', '841kEKMm', '3238779'), + (847, 418, 'not_attending', '2020-10-13 12:17:05', '2025-12-17 19:47:52', '841kEKMm', '3241728'), + (847, 420, 'not_attending', '2020-10-13 12:17:24', '2025-12-17 19:47:52', '841kEKMm', '3245293'), + (847, 421, 'not_attending', '2020-10-17 22:33:38', '2025-12-17 19:47:52', '841kEKMm', '3245294'), + (847, 424, 'not_attending', '2020-10-13 13:52:43', '2025-12-17 19:47:52', '841kEKMm', '3245751'), + (847, 425, 'not_attending', '2020-10-14 14:38:50', '2025-12-17 19:47:52', '841kEKMm', '3250097'), + (847, 426, 'not_attending', '2020-10-17 22:33:21', '2025-12-17 19:47:52', '841kEKMm', '3250232'), + (847, 430, 'not_attending', '2020-10-17 22:33:34', '2025-12-17 19:47:52', '841kEKMm', '3253094'), + (847, 433, 'not_attending', '2020-11-06 15:31:24', '2025-12-17 19:47:53', '841kEKMm', '3254417'), + (847, 435, 'not_attending', '2020-10-17 22:33:46', '2025-12-17 19:47:52', '841kEKMm', '3254790'), + (847, 436, 'not_attending', '2020-10-20 17:24:26', '2025-12-17 19:47:52', '841kEKMm', '3256119'), + (847, 437, 'not_attending', '2020-10-28 13:14:57', '2025-12-17 19:47:53', '841kEKMm', '3256160'), + (847, 438, 'not_attending', '2020-10-31 22:45:41', '2025-12-17 19:47:53', '841kEKMm', '3256163'), + (847, 439, 'not_attending', '2020-10-28 13:14:50', '2025-12-17 19:47:53', '841kEKMm', '3256164'), + (847, 440, 'not_attending', '2020-11-08 02:10:17', '2025-12-17 19:47:53', '841kEKMm', '3256168'), + (847, 441, 'maybe', '2020-11-10 03:06:43', '2025-12-17 19:47:54', '841kEKMm', '3256169'), + (847, 443, 'not_attending', '2020-10-24 23:10:07', '2025-12-17 19:47:53', '841kEKMm', '3263578'), + (847, 444, 'not_attending', '2020-10-30 20:13:10', '2025-12-17 19:47:53', '841kEKMm', '3263745'), + (847, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', '841kEKMm', '3266138'), + (847, 446, 'not_attending', '2020-10-27 17:06:00', '2025-12-17 19:47:53', '841kEKMm', '3267163'), + (847, 447, 'not_attending', '2020-10-28 13:14:52', '2025-12-17 19:47:53', '841kEKMm', '3267895'), + (847, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '841kEKMm', '3276428'), + (847, 459, 'not_attending', '2020-11-09 03:22:24', '2025-12-17 19:47:54', '841kEKMm', '3281467'), + (847, 462, 'maybe', '2020-11-09 03:22:21', '2025-12-17 19:47:54', '841kEKMm', '3281470'), + (847, 463, 'not_attending', '2020-11-14 02:44:29', '2025-12-17 19:47:54', '841kEKMm', '3281553'), + (847, 464, 'maybe', '2020-11-19 03:15:58', '2025-12-17 19:47:54', '841kEKMm', '3281554'), + (847, 466, 'not_attending', '2020-11-09 03:22:28', '2025-12-17 19:47:54', '841kEKMm', '3281829'), + (847, 468, 'not_attending', '2020-11-22 02:28:39', '2025-12-17 19:47:54', '841kEKMm', '3285413'), + (847, 469, 'maybe', '2020-11-23 03:30:44', '2025-12-17 19:47:54', '841kEKMm', '3285414'), + (847, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '841kEKMm', '3297764'), + (847, 487, 'not_attending', '2020-11-30 13:31:12', '2025-12-17 19:47:54', '841kEKMm', '3311122'), + (847, 493, 'not_attending', '2020-12-06 00:46:50', '2025-12-17 19:47:54', '841kEKMm', '3313856'), + (847, 499, 'not_attending', '2020-12-12 00:24:02', '2025-12-17 19:47:55', '841kEKMm', '3314909'), + (847, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '841kEKMm', '3314964'), + (847, 502, 'not_attending', '2020-12-13 00:56:22', '2025-12-17 19:47:55', '841kEKMm', '3323365'), + (847, 507, 'not_attending', '2020-12-22 00:19:38', '2025-12-17 19:47:48', '841kEKMm', '3324148'), + (847, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '841kEKMm', '3329383'), + (847, 516, 'attending', '2020-12-23 13:05:25', '2025-12-17 19:47:48', '841kEKMm', '3334530'), + (847, 523, 'attending', '2020-12-22 00:19:48', '2025-12-17 19:47:48', '841kEKMm', '3342960'), + (847, 525, 'not_attending', '2020-12-22 00:19:40', '2025-12-17 19:47:48', '841kEKMm', '3350467'), + (847, 526, 'maybe', '2020-12-22 00:20:20', '2025-12-17 19:47:48', '841kEKMm', '3351539'), + (847, 532, 'not_attending', '2021-01-09 01:43:51', '2025-12-17 19:47:48', '841kEKMm', '3381412'), + (847, 534, 'not_attending', '2021-01-07 14:53:38', '2025-12-17 19:47:48', '841kEKMm', '3384157'), + (847, 535, 'maybe', '2021-01-07 14:53:18', '2025-12-17 19:47:48', '841kEKMm', '3384729'), + (847, 536, 'not_attending', '2021-01-10 01:57:26', '2025-12-17 19:47:48', '841kEKMm', '3386848'), + (847, 540, 'not_attending', '2021-01-07 14:54:29', '2025-12-17 19:47:48', '841kEKMm', '3389527'), + (847, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '841kEKMm', '3396499'), + (847, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '841kEKMm', '3403650'), + (847, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '841kEKMm', '3406988'), + (847, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '841kEKMm', '3416576'), + (847, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '841kEKMm', '3418925'), + (847, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', '841kEKMm', '3430267'), + (847, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '841kEKMm', '3470303'), + (847, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '841kEKMm', '3470305'), + (847, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '841kEKMm', '3470991'), + (847, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '841kEKMm', '3517815'), + (847, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '841kEKMm', '3517816'), + (847, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '841kEKMm', '3523941'), + (847, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '841kEKMm', '3533850'), + (847, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '841kEKMm', '3536632'), + (847, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '841kEKMm', '3536656'), + (847, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '841kEKMm', '3539916'), + (847, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '841kEKMm', '3539917'), + (847, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '841kEKMm', '3539918'), + (847, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '841kEKMm', '3539919'), + (847, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '841kEKMm', '3539920'), + (847, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '841kEKMm', '3539921'), + (847, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '841kEKMm', '3539922'), + (847, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '841kEKMm', '3539923'), + (847, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '841kEKMm', '3539927'), + (847, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '841kEKMm', '3582734'), + (847, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '841kEKMm', '3583262'), + (847, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '841kEKMm', '3619523'), + (847, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '841kEKMm', '3661369'), + (847, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '841kEKMm', '3674262'), + (847, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '841kEKMm', '3677402'), + (847, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '841kEKMm', '3730212'), + (847, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '841kEKMm', '3793156'), + (847, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '841kEKMm', '3974109'), + (847, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '841kEKMm', '3975311'), + (847, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '841kEKMm', '3975312'), + (847, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '841kEKMm', '3994992'), + (847, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '841kEKMm', '4014338'), + (847, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '841kEKMm', '4021848'), + (847, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '841kEKMm', '4136744'), + (847, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '841kEKMm', '4136937'), + (847, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '841kEKMm', '4136938'), + (847, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '841kEKMm', '4136947'), + (847, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '841kEKMm', '4210314'), + (847, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '841kEKMm', '4225444'), + (847, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '841kEKMm', '4239259'), + (847, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '841kEKMm', '4240316'), + (847, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '841kEKMm', '4240317'), + (847, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '841kEKMm', '4240318'), + (847, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '841kEKMm', '4240320'), + (847, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '841kEKMm', '4250163'), + (847, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '841kEKMm', '4275957'), + (847, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '841kEKMm', '4277819'), + (847, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '841kEKMm', '4301723'), + (847, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '841kEKMm', '4302093'), + (847, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '841kEKMm', '4304151'), + (847, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '841kEKMm', '4356801'), + (847, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '841kEKMm', '4366186'), + (847, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '841kEKMm', '4366187'), + (847, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '841kEKMm', '4420735'), + (847, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '841kEKMm', '4420738'), + (847, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '841kEKMm', '4420739'), + (847, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '841kEKMm', '4420741'), + (847, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '841kEKMm', '4420744'), + (847, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '841kEKMm', '4420747'), + (847, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '841kEKMm', '4420748'), + (847, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '841kEKMm', '4420749'), + (847, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '841kEKMm', '4461883'), + (847, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '841kEKMm', '4508342'), + (847, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '841kEKMm', '4568602'), + (847, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '841kEKMm', '4572153'), + (847, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '841kEKMm', '4585962'), + (847, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '841kEKMm', '4596356'), + (847, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '841kEKMm', '4598860'), + (847, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '841kEKMm', '4598861'), + (847, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '841kEKMm', '4602797'), + (847, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '841kEKMm', '4637896'), + (847, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '841kEKMm', '4642994'), + (847, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '841kEKMm', '4642995'), + (847, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '841kEKMm', '4642996'), + (847, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '841kEKMm', '4642997'), + (847, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '841kEKMm', '4645687'), + (847, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '841kEKMm', '4645698'), + (847, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '841kEKMm', '4645704'), + (847, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '841kEKMm', '4645705'), + (847, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '841kEKMm', '4668385'), + (847, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '841kEKMm', '4694407'), + (847, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '841kEKMm', '4736497'), + (847, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '841kEKMm', '4736499'), + (847, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '841kEKMm', '4736500'), + (847, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '841kEKMm', '4736503'), + (847, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '841kEKMm', '4736504'), + (847, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '841kEKMm', '4746789'), + (847, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '841kEKMm', '4753929'), + (847, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '841kEKMm', '5038850'), + (847, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '841kEKMm', '5045826'), + (847, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '841kEKMm', '5132533'), + (847, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '841kEKMm', '5186582'), + (847, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '841kEKMm', '5186583'), + (847, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '841kEKMm', '5186585'), + (847, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '841kEKMm', '5190437'), + (847, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '841kEKMm', '5195095'), + (847, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '841kEKMm', '5215989'), + (847, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '841kEKMm', '5223686'), + (847, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '841kEKMm', '5247467'), + (847, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '841kEKMm', '5260800'), + (847, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '841kEKMm', '5269930'), + (847, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '841kEKMm', '5271448'), + (847, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '841kEKMm', '5271449'), + (847, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '841kEKMm', '5278159'), + (847, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '841kEKMm', '5363695'), + (847, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '841kEKMm', '5365960'), + (847, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '841kEKMm', '5378247'), + (847, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '841kEKMm', '5389605'), + (847, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '841kEKMm', '5397265'), + (847, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '841kEKMm', '5404786'), + (847, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '841kEKMm', '5405203'), + (847, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '841kEKMm', '5412550'), + (847, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '841kEKMm', '5415046'), + (847, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '841kEKMm', '5422086'), + (847, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '841kEKMm', '5422406'), + (847, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '841kEKMm', '5424565'), + (847, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '841kEKMm', '5426882'), + (847, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '841kEKMm', '5441125'), + (847, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '841kEKMm', '5441126'), + (847, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '841kEKMm', '5441128'), + (847, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '841kEKMm', '5441131'), + (847, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '841kEKMm', '5441132'), + (847, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '841kEKMm', '5453325'), + (847, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '841kEKMm', '5454516'), + (847, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '841kEKMm', '5454605'), + (847, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '841kEKMm', '5455037'), + (847, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '841kEKMm', '5461278'), + (847, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '841kEKMm', '5469480'), + (847, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '841kEKMm', '5474663'), + (847, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '841kEKMm', '5482022'), + (847, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '841kEKMm', '5488912'), + (847, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '841kEKMm', '5492192'), + (847, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '841kEKMm', '5493139'), + (847, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '841kEKMm', '5493200'), + (847, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '841kEKMm', '5502188'), + (847, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '841kEKMm', '5505059'), + (847, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '841kEKMm', '5509055'), + (847, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '841kEKMm', '5512862'), + (847, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '841kEKMm', '5513985'), + (847, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '841kEKMm', '5519981'), + (847, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '841kEKMm', '5522550'), + (847, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '841kEKMm', '5534683'), + (847, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '841kEKMm', '5537735'), + (847, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '841kEKMm', '5540859'), + (847, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '841kEKMm', '5546619'), + (847, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '841kEKMm', '5557747'), + (847, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '841kEKMm', '5560255'), + (847, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '841kEKMm', '5562906'), + (847, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '841kEKMm', '5600604'), + (847, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '841kEKMm', '5605544'), + (847, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '841kEKMm', '5630960'), + (847, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '841kEKMm', '5630961'), + (847, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '841kEKMm', '5630962'), + (847, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '841kEKMm', '5630966'), + (847, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '841kEKMm', '5630967'), + (847, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '841kEKMm', '5630968'), + (847, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '841kEKMm', '5635406'), + (847, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '841kEKMm', '5638765'), + (847, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '841kEKMm', '5640097'), + (847, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '841kEKMm', '5640843'), + (847, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '841kEKMm', '5641521'), + (847, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '841kEKMm', '5642818'), + (847, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '841kEKMm', '5652395'), + (847, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '841kEKMm', '5670445'), + (847, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '841kEKMm', '5671637'), + (847, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '841kEKMm', '5672329'), + (847, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '841kEKMm', '5674057'), + (847, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '841kEKMm', '5674060'), + (847, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '841kEKMm', '5677461'), + (847, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '841kEKMm', '5698046'), + (847, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '841kEKMm', '5699760'), + (847, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '841kEKMm', '5741601'), + (847, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '841kEKMm', '5763458'), + (847, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '841kEKMm', '5774172'), + (847, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '841kEKMm', '5818247'), + (847, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '841kEKMm', '5819471'), + (847, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '841kEKMm', '5827739'), + (847, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '841kEKMm', '5844306'), + (847, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '841kEKMm', '5850159'), + (847, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '841kEKMm', '5858999'), + (847, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '841kEKMm', '5871984'), + (847, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '841kEKMm', '5876354'), + (847, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '841kEKMm', '5880939'), + (847, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '841kEKMm', '5880940'), + (847, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '841kEKMm', '5880942'), + (847, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '841kEKMm', '5880943'), + (847, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '841kEKMm', '5887890'), + (847, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '841kEKMm', '5888598'), + (847, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '841kEKMm', '5893260'), + (847, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '841kEKMm', '5899826'), + (847, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '841kEKMm', '5900199'), + (847, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '841kEKMm', '5900200'), + (847, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '841kEKMm', '5900202'), + (847, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '841kEKMm', '5900203'), + (847, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '841kEKMm', '5901108'), + (847, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '841kEKMm', '5901126'), + (847, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '841kEKMm', '5901606'), + (847, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '841kEKMm', '5909655'), + (847, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '841kEKMm', '5910522'), + (847, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '841kEKMm', '5910526'), + (847, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '841kEKMm', '5910528'), + (847, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '841kEKMm', '5916219'), + (847, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '841kEKMm', '5936234'), + (847, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '841kEKMm', '5958351'), + (847, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '841kEKMm', '5959751'), + (847, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '841kEKMm', '5959755'), + (847, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '841kEKMm', '5960055'), + (847, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '841kEKMm', '5961684'), + (847, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '841kEKMm', '5962132'), + (847, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '841kEKMm', '5962133'), + (847, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '841kEKMm', '5962134'), + (847, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '841kEKMm', '5962317'), + (847, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '841kEKMm', '5962318'), + (847, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '841kEKMm', '5965933'), + (847, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '841kEKMm', '5967014'), + (847, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '841kEKMm', '5972815'), + (847, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '841kEKMm', '5974016'), + (847, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '841kEKMm', '5981515'), + (847, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '841kEKMm', '5993516'), + (847, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '841kEKMm', '5998939'), + (847, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '841kEKMm', '6028191'), + (847, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '841kEKMm', '6040066'), + (847, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '841kEKMm', '6042717'), + (847, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '841kEKMm', '6044838'), + (847, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '841kEKMm', '6044839'), + (847, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841kEKMm', '6045684'), + (847, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '841kEKMm', '6050104'), + (847, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '841kEKMm', '6053195'), + (847, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '841kEKMm', '6053198'), + (847, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '841kEKMm', '6056085'), + (847, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '841kEKMm', '6056916'), + (847, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '841kEKMm', '6059290'), + (847, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '841kEKMm', '6060328'), + (847, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '841kEKMm', '6061037'), + (847, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '841kEKMm', '6061039'), + (847, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '841kEKMm', '6067245'), + (847, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '841kEKMm', '6068094'), + (847, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '841kEKMm', '6068252'), + (847, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '841kEKMm', '6068253'), + (847, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '841kEKMm', '6068254'), + (847, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '841kEKMm', '6068280'), + (847, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '841kEKMm', '6069093'), + (847, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '841kEKMm', '6072528'), + (847, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '841kEKMm', '6079840'), + (847, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '841kEKMm', '6083398'), + (847, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '841kEKMm', '6093504'), + (847, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '841kEKMm', '6097414'), + (847, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '841kEKMm', '6097442'), + (847, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '841kEKMm', '6097684'), + (847, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '841kEKMm', '6098762'), + (847, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '841kEKMm', '6101361'), + (847, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '841kEKMm', '6101362'), + (847, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '841kEKMm', '6107314'), + (847, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '841kEKMm', '6120034'), + (847, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '841kEKMm', '6136733'), + (847, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '841kEKMm', '6137989'), + (847, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '841kEKMm', '6150864'), + (847, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '841kEKMm', '6155491'), + (847, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '841kEKMm', '6164417'), + (847, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '841kEKMm', '6166388'), + (847, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '841kEKMm', '6176439'), + (847, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '841kEKMm', '6182410'), + (847, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '841kEKMm', '6185812'), + (847, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '841kEKMm', '6187651'), + (847, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '841kEKMm', '6187963'), + (847, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '841kEKMm', '6187964'), + (847, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '841kEKMm', '6187966'), + (847, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '841kEKMm', '6187967'), + (847, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '841kEKMm', '6187969'), + (847, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '841kEKMm', '6334878'), + (847, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '841kEKMm', '6337236'), + (847, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '841kEKMm', '6337970'), + (847, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '841kEKMm', '6338308'), + (847, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '841kEKMm', '6341710'), + (847, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '841kEKMm', '6342044'), + (847, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '841kEKMm', '6342298'), + (847, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '841kEKMm', '6343294'), + (847, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '841kEKMm', '6347034'), + (847, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '841kEKMm', '6347056'), + (847, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '841kEKMm', '6353830'), + (847, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '841kEKMm', '6353831'), + (847, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '841kEKMm', '6357867'), + (847, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '841kEKMm', '6358652'), + (847, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '841kEKMm', '6361709'), + (847, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '841kEKMm', '6361710'), + (847, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '841kEKMm', '6361711'), + (847, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '841kEKMm', '6361712'), + (847, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '841kEKMm', '6361713'), + (847, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '841kEKMm', '6382573'), + (847, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '841kEKMm', '6388604'), + (847, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '841kEKMm', '6394629'), + (847, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '841kEKMm', '6394631'), + (847, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '841kEKMm', '6440863'), + (847, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '841kEKMm', '6445440'), + (847, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '841kEKMm', '6453951'), + (847, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '841kEKMm', '6461696'), + (847, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '841kEKMm', '6462129'), + (847, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '841kEKMm', '6463218'), + (847, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '841kEKMm', '6472181'), + (847, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '841kEKMm', '6482693'), + (847, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '841kEKMm', '6484200'), + (847, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '841kEKMm', '6484680'), + (847, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '841kEKMm', '6507741'), + (847, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '841kEKMm', '6514659'), + (847, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '841kEKMm', '6514660'), + (847, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '841kEKMm', '6519103'), + (847, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '841kEKMm', '6535681'), + (847, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '841kEKMm', '6584747'), + (847, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '841kEKMm', '6587097'), + (847, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '841kEKMm', '6609022'), + (847, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '841kEKMm', '6632757'), + (847, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '841kEKMm', '6644187'), + (847, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '841kEKMm', '6648951'), + (847, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '841kEKMm', '6648952'), + (847, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '841kEKMm', '6655401'), + (847, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '841kEKMm', '6661585'), + (847, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '841kEKMm', '6661588'), + (847, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '841kEKMm', '6661589'), + (847, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '841kEKMm', '6699906'), + (847, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '841kEKMm', '6699913'), + (847, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '841kEKMm', '6701109'), + (847, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '841kEKMm', '6705219'), + (847, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '841kEKMm', '6710153'), + (847, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '841kEKMm', '6711552'), + (847, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '841kEKMm', '6711553'), + (847, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '841kEKMm', '6722688'), + (847, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '841kEKMm', '6730620'), + (847, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '841kEKMm', '6740364'), + (847, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '841kEKMm', '6743829'), + (847, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '841kEKMm', '7030380'), + (847, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '841kEKMm', '7033677'), + (847, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '841kEKMm', '7044715'), + (847, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '841kEKMm', '7050318'), + (847, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '841kEKMm', '7050319'), + (847, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '841kEKMm', '7050322'), + (847, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '841kEKMm', '7057804'), + (847, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '841kEKMm', '7072824'), + (847, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '841kEKMm', '7074348'), + (847, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '841kEKMm', '7074364'), + (847, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '841kEKMm', '7089267'), + (847, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '841kEKMm', '7098747'), + (847, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '841kEKMm', '7113468'), + (847, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '841kEKMm', '7114856'), + (847, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '841kEKMm', '7114951'), + (847, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '841kEKMm', '7114955'), + (847, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '841kEKMm', '7114956'), + (847, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '841kEKMm', '7114957'), + (847, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '841kEKMm', '7159484'), + (847, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '841kEKMm', '7178446'), + (847, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '841kEKMm', '7220467'), + (847, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '841kEKMm', '7240354'), + (847, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '841kEKMm', '7251633'), + (847, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '841kEKMm', '7324073'), + (847, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '841kEKMm', '7324074'), + (847, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '841kEKMm', '7324075'), + (847, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '841kEKMm', '7324078'), + (847, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '841kEKMm', '7324082'), + (847, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '841kEKMm', '7331457'), + (847, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '841kEKMm', '7363643'), + (847, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '841kEKMm', '7368606'), + (847, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '841kEKMm', '7397462'), + (847, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '841kEKMm', '7424275'), + (847, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '841kEKMm', '7432751'), + (847, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '841kEKMm', '7432752'), + (847, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '841kEKMm', '7432753'), + (847, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '841kEKMm', '7432754'), + (847, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '841kEKMm', '7432755'), + (847, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '841kEKMm', '7432756'), + (847, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '841kEKMm', '7432758'), + (847, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '841kEKMm', '7432759'), + (847, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '841kEKMm', '7433834'), + (847, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '841kEKMm', '7470197'), + (847, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '841kEKMm', '7685613'), + (847, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '841kEKMm', '7688194'), + (847, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '841kEKMm', '7688196'), + (847, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '841kEKMm', '7688289'), + (847, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '841kEKMm', '7692763'), + (847, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '841kEKMm', '7697552'), + (847, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '841kEKMm', '7699878'), + (847, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '841kEKMm', '7704043'), + (847, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '841kEKMm', '7712467'), + (847, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '841kEKMm', '7713585'), + (847, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '841kEKMm', '7713586'), + (847, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '841kEKMm', '7738518'), + (847, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '841kEKMm', '7750636'), + (847, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '841kEKMm', '7796540'), + (847, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '841kEKMm', '7796541'), + (847, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '841kEKMm', '7796542'), + (847, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '841kEKMm', '7825913'), + (847, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '841kEKMm', '7826209'), + (847, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '841kEKMm', '7834742'), + (847, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '841kEKMm', '7842108'), + (847, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '841kEKMm', '7842902'), + (847, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '841kEKMm', '7842903'), + (847, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '841kEKMm', '7842904'), + (847, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '841kEKMm', '7842905'), + (847, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '841kEKMm', '7855719'), + (847, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '841kEKMm', '7860683'), + (847, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '841kEKMm', '7860684'), + (847, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '841kEKMm', '7866095'), + (847, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '841kEKMm', '7869170'), + (847, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '841kEKMm', '7869188'), + (847, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '841kEKMm', '7869201'), + (847, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '841kEKMm', '7877465'), + (847, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '841kEKMm', '7888250'), + (847, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '841kEKMm', '7904777'), + (847, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '841kEKMm', '8349164'), + (847, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '841kEKMm', '8349545'), + (847, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '841kEKMm', '8368028'), + (847, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '841kEKMm', '8368029'), + (847, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '841kEKMm', '8388462'), + (847, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '841kEKMm', '8400273'), + (847, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '841kEKMm', '8400275'), + (847, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '841kEKMm', '8400276'), + (847, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '841kEKMm', '8404977'), + (847, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '841kEKMm', '8430783'), + (847, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '841kEKMm', '8430784'), + (847, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '841kEKMm', '8430799'), + (847, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '841kEKMm', '8430800'), + (847, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '841kEKMm', '8430801'), + (847, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '841kEKMm', '8438709'), + (847, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '841kEKMm', '8457738'), + (847, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '841kEKMm', '8459566'), + (847, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '841kEKMm', '8459567'), + (847, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '841kEKMm', '8461032'), + (847, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '841kEKMm', '8477877'), + (847, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '841kEKMm', '8485688'), + (847, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '841kEKMm', '8490587'), + (847, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '841kEKMm', '8493552'), + (847, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '841kEKMm', '8493553'), + (847, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '841kEKMm', '8493554'), + (847, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '841kEKMm', '8493555'), + (847, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '841kEKMm', '8493556'), + (847, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '841kEKMm', '8493557'), + (847, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '841kEKMm', '8493558'), + (847, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '841kEKMm', '8493559'), + (847, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '841kEKMm', '8493560'), + (847, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '841kEKMm', '8493561'), + (847, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '841kEKMm', '8493572'), + (847, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '841kEKMm', '8540725'), + (847, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '841kEKMm', '8555421'), + (848, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'm7Qjkb54', '4210314'), + (848, 902, 'attending', '2021-08-06 01:38:03', '2025-12-17 19:47:41', 'm7Qjkb54', '4240318'), + (848, 903, 'attending', '2021-08-14 23:02:33', '2025-12-17 19:47:42', 'm7Qjkb54', '4240320'), + (848, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'm7Qjkb54', '4302093'), + (848, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'm7Qjkb54', '4304151'), + (848, 947, 'not_attending', '2021-08-09 19:20:34', '2025-12-17 19:47:41', 'm7Qjkb54', '4315713'), + (848, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'm7Qjkb54', '4345519'), + (848, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'm7Qjkb54', '4356801'), + (848, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'm7Qjkb54', '4358025'), + (848, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'm7Qjkb54', '4366186'), + (848, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'm7Qjkb54', '4366187'), + (848, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'm7Qjkb54', '4402823'), + (848, 990, 'attending', '2021-09-03 20:44:59', '2025-12-17 19:47:43', 'm7Qjkb54', '4420735'), + (848, 991, 'attending', '2021-09-11 22:01:51', '2025-12-17 19:47:43', 'm7Qjkb54', '4420738'), + (848, 992, 'attending', '2021-09-18 21:38:52', '2025-12-17 19:47:33', 'm7Qjkb54', '4420739'), + (848, 993, 'maybe', '2021-09-25 20:47:04', '2025-12-17 19:47:34', 'm7Qjkb54', '4420741'), + (848, 995, 'attending', '2021-10-09 19:17:06', '2025-12-17 19:47:34', 'm7Qjkb54', '4420744'), + (848, 996, 'attending', '2021-10-16 17:22:43', '2025-12-17 19:47:35', 'm7Qjkb54', '4420747'), + (848, 997, 'attending', '2021-10-23 00:03:37', '2025-12-17 19:47:35', 'm7Qjkb54', '4420748'), + (848, 998, 'attending', '2021-10-28 20:45:41', '2025-12-17 19:47:36', 'm7Qjkb54', '4420749'), + (848, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm7Qjkb54', '4461883'), + (848, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm7Qjkb54', '4508342'), + (848, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm7Qjkb54', '4568602'), + (848, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm7Qjkb54', '4572153'), + (848, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'm7Qjkb54', '4585962'), + (848, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm7Qjkb54', '4596356'), + (848, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm7Qjkb54', '4598860'), + (848, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm7Qjkb54', '4598861'), + (848, 1099, 'maybe', '2021-11-06 21:40:44', '2025-12-17 19:47:36', 'm7Qjkb54', '4602797'), + (848, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm7Qjkb54', '4637896'), + (848, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm7Qjkb54', '4642994'), + (848, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm7Qjkb54', '4642995'), + (848, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm7Qjkb54', '4642996'), + (848, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm7Qjkb54', '4642997'), + (848, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm7Qjkb54', '4645687'), + (848, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm7Qjkb54', '4645698'), + (848, 1128, 'attending', '2021-11-20 07:51:35', '2025-12-17 19:47:37', 'm7Qjkb54', '4645704'), + (848, 1129, 'attending', '2021-11-27 21:10:38', '2025-12-17 19:47:37', 'm7Qjkb54', '4645705'), + (848, 1130, 'attending', '2021-12-04 22:20:36', '2025-12-17 19:47:37', 'm7Qjkb54', '4658824'), + (848, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm7Qjkb54', '4668385'), + (848, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'm7Qjkb54', '4694407'), + (848, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm7Qjkb54', '4736497'), + (848, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm7Qjkb54', '4736499'), + (848, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm7Qjkb54', '4736500'), + (848, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm7Qjkb54', '4736503'), + (848, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm7Qjkb54', '4736504'), + (848, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm7Qjkb54', '4746789'), + (848, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm7Qjkb54', '4753929'), + (848, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm7Qjkb54', '5038850'), + (848, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm7Qjkb54', '5045826'), + (848, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm7Qjkb54', '5132533'), + (848, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm7Qjkb54', '5186582'), + (848, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm7Qjkb54', '5186583'), + (848, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm7Qjkb54', '5186585'), + (848, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm7Qjkb54', '5190437'), + (848, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm7Qjkb54', '5215989'), + (848, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm7Qjkb54', '6045684'), + (849, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd56WXgrm', '6337970'), + (849, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd56WXgrm', '6342044'), + (849, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'd56WXgrm', '6342591'), + (849, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'd56WXgrm', '6343294'), + (849, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd56WXgrm', '6347034'), + (849, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd56WXgrm', '6347056'), + (849, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd56WXgrm', '6353830'), + (849, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd56WXgrm', '6353831'), + (849, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd56WXgrm', '6357867'), + (849, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd56WXgrm', '6358652'), + (849, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd56WXgrm', '6361709'), + (849, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd56WXgrm', '6361710'), + (849, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd56WXgrm', '6361711'), + (849, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd56WXgrm', '6361712'), + (849, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd56WXgrm', '6361713'), + (849, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd56WXgrm', '6382573'), + (849, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd56WXgrm', '6388604'), + (849, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd56WXgrm', '6394629'), + (849, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd56WXgrm', '6394631'), + (849, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd56WXgrm', '6431478'), + (850, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArjgwZA', '7869188'), + (850, 3057, 'attending', '2025-03-24 18:19:49', '2025-12-17 19:46:19', '1ArjgwZA', '7890059'), + (850, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1ArjgwZA', '7904777'), + (850, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArjgwZA', '8349164'), + (850, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArjgwZA', '8349545'), + (850, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '1ArjgwZA', '8353584'), + (850, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1ArjgwZA', '8368028'), + (850, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1ArjgwZA', '8368029'), + (850, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1ArjgwZA', '8388462'), + (850, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1ArjgwZA', '8400273'), + (850, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '1ArjgwZA', '8400274'), + (850, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1ArjgwZA', '8400275'), + (850, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '1ArjgwZA', '8400276'), + (850, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1ArjgwZA', '8404977'), + (850, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1ArjgwZA', '8430783'), + (850, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1ArjgwZA', '8430784'), + (850, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1ArjgwZA', '8430799'), + (850, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1ArjgwZA', '8430800'), + (850, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1ArjgwZA', '8430801'), + (850, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1ArjgwZA', '8438709'), + (850, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1ArjgwZA', '8457738'), + (850, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1ArjgwZA', '8459566'), + (850, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1ArjgwZA', '8459567'), + (850, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1ArjgwZA', '8461032'), + (850, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1ArjgwZA', '8477877'), + (850, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1ArjgwZA', '8485688'), + (851, 1700, 'maybe', '2022-10-01 19:53:53', '2025-12-17 19:47:12', '4vjVNj14', '5606814'), + (851, 1713, 'attending', '2022-10-20 22:09:46', '2025-12-17 19:47:13', '4vjVNj14', '5622108'), + (851, 1718, 'attending', '2022-10-18 22:02:56', '2025-12-17 19:47:12', '4vjVNj14', '5630907'), + (851, 1719, 'attending', '2022-10-08 02:00:56', '2025-12-17 19:47:12', '4vjVNj14', '5630958'), + (851, 1720, 'attending', '2022-10-15 03:13:31', '2025-12-17 19:47:12', '4vjVNj14', '5630959'), + (851, 1721, 'attending', '2022-10-16 23:37:29', '2025-12-17 19:47:13', '4vjVNj14', '5630960'), + (851, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4vjVNj14', '5630961'), + (851, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4vjVNj14', '5630962'), + (851, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4vjVNj14', '5630966'), + (851, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4vjVNj14', '5630967'), + (851, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4vjVNj14', '5630968'), + (851, 1727, 'attending', '2022-12-03 04:15:04', '2025-12-17 19:47:16', '4vjVNj14', '5630969'), + (851, 1730, 'maybe', '2022-10-06 20:10:36', '2025-12-17 19:47:12', '4vjVNj14', '5634666'), + (851, 1731, 'attending', '2022-10-07 22:29:34', '2025-12-17 19:47:12', '4vjVNj14', '5635226'), + (851, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4vjVNj14', '5635406'), + (851, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4vjVNj14', '5638765'), + (851, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4vjVNj14', '5640097'), + (851, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4vjVNj14', '5640843'), + (851, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4vjVNj14', '5641521'), + (851, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4vjVNj14', '5642818'), + (851, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4vjVNj14', '5652395'), + (851, 1761, 'attending', '2022-11-18 22:39:52', '2025-12-17 19:47:16', '4vjVNj14', '5670434'), + (851, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4vjVNj14', '5670445'), + (851, 1763, 'maybe', '2022-11-11 19:28:43', '2025-12-17 19:47:15', '4vjVNj14', '5670803'), + (851, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4vjVNj14', '5671637'), + (851, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4vjVNj14', '5672329'), + (851, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4vjVNj14', '5674057'), + (851, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4vjVNj14', '5674060'), + (851, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4vjVNj14', '5677461'), + (851, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4vjVNj14', '5698046'), + (851, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4vjVNj14', '5699760'), + (851, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4vjVNj14', '5741601'), + (851, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4vjVNj14', '5763458'), + (851, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4vjVNj14', '5774172'), + (851, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4vjVNj14', '5818247'), + (851, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4vjVNj14', '5819471'), + (851, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4vjVNj14', '5827739'), + (851, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4vjVNj14', '5844306'), + (851, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4vjVNj14', '5850159'), + (851, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4vjVNj14', '5858999'), + (851, 1852, 'attending', '2023-01-12 00:23:17', '2025-12-17 19:47:05', '4vjVNj14', '5869898'), + (851, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4vjVNj14', '5871984'), + (851, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4vjVNj14', '5876354'), + (851, 1864, 'attending', '2023-01-21 05:01:29', '2025-12-17 19:47:05', '4vjVNj14', '5879675'), + (851, 1865, 'attending', '2023-01-28 07:29:25', '2025-12-17 19:47:06', '4vjVNj14', '5879676'), + (851, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4vjVNj14', '5880939'), + (851, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4vjVNj14', '5880940'), + (851, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4vjVNj14', '5880942'), + (851, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4vjVNj14', '5880943'), + (851, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4vjVNj14', '5887890'), + (851, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4vjVNj14', '5888598'), + (851, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4vjVNj14', '5893260'), + (851, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4vjVNj14', '5899826'), + (851, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4vjVNj14', '5900199'), + (851, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4vjVNj14', '5900200'), + (851, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4vjVNj14', '5900202'), + (851, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4vjVNj14', '5900203'), + (851, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4vjVNj14', '5901108'), + (851, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4vjVNj14', '5901126'), + (851, 1897, 'attending', '2023-02-10 19:20:08', '2025-12-17 19:47:07', '4vjVNj14', '5901128'), + (851, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4vjVNj14', '5909655'), + (851, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4vjVNj14', '5910522'), + (851, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4vjVNj14', '5910526'), + (851, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4vjVNj14', '5910528'), + (851, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4vjVNj14', '5916219'), + (851, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4vjVNj14', '5936234'), + (851, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4vjVNj14', '5958351'), + (851, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4vjVNj14', '5959751'), + (851, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4vjVNj14', '5959755'), + (851, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4vjVNj14', '5960055'), + (851, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4vjVNj14', '5961684'), + (851, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '4vjVNj14', '5962132'), + (851, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '4vjVNj14', '5962133'), + (851, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4vjVNj14', '5962134'), + (851, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4vjVNj14', '5962317'), + (851, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4vjVNj14', '5962318'), + (851, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4vjVNj14', '5965933'), + (851, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4vjVNj14', '5967014'), + (851, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4vjVNj14', '5972815'), + (851, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4vjVNj14', '5974016'), + (851, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4vjVNj14', '5981515'), + (851, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4vjVNj14', '5993516'), + (851, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4vjVNj14', '5998939'), + (851, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4vjVNj14', '6028191'), + (851, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4vjVNj14', '6040066'), + (851, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4vjVNj14', '6042717'), + (851, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4vjVNj14', '6044838'), + (851, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4vjVNj14', '6044839'), + (851, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4vjVNj14', '6045684'), + (851, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4vjVNj14', '6050104'), + (851, 2003, 'maybe', '2023-05-19 23:02:23', '2025-12-17 19:47:03', '4vjVNj14', '6052606'), + (851, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4vjVNj14', '6053195'), + (851, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4vjVNj14', '6053198'), + (851, 2008, 'attending', '2023-04-07 22:48:53', '2025-12-17 19:46:58', '4vjVNj14', '6055808'), + (851, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4vjVNj14', '6056085'), + (851, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4vjVNj14', '6056916'), + (851, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4vjVNj14', '6059290'), + (851, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4vjVNj14', '6060328'), + (851, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4vjVNj14', '6061037'), + (851, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4vjVNj14', '6061039'), + (851, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4vjVNj14', '6067245'), + (851, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4vjVNj14', '6068094'), + (851, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4vjVNj14', '6068252'), + (851, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4vjVNj14', '6068253'), + (851, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4vjVNj14', '6068254'), + (851, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '4vjVNj14', '6068280'), + (851, 2032, 'not_attending', '2023-06-03 06:34:48', '2025-12-17 19:47:04', '4vjVNj14', '6068281'), + (851, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4vjVNj14', '6069093'), + (851, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4vjVNj14', '6072528'), + (851, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4vjVNj14', '6079840'), + (851, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4vjVNj14', '6083398'), + (851, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4vjVNj14', '6093504'), + (851, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4vjVNj14', '6097414'), + (851, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4vjVNj14', '6097442'), + (851, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4vjVNj14', '6097684'), + (851, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4vjVNj14', '6098762'), + (851, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4vjVNj14', '6101361'), + (851, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4vjVNj14', '6101362'), + (851, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4vjVNj14', '6103752'), + (851, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4vjVNj14', '6107314'), + (851, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4vjVNj14', '6120034'), + (851, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4vjVNj14', '6136733'), + (851, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4vjVNj14', '6137989'), + (851, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4vjVNj14', '6150864'), + (851, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4vjVNj14', '6155491'), + (851, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4vjVNj14', '6164417'), + (851, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4vjVNj14', '6166388'), + (851, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4vjVNj14', '6176439'), + (851, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4vjVNj14', '6182410'), + (851, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4vjVNj14', '6185812'), + (851, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4vjVNj14', '6187651'), + (851, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4vjVNj14', '6187963'), + (851, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4vjVNj14', '6187964'), + (851, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4vjVNj14', '6187966'), + (851, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4vjVNj14', '6187967'), + (851, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4vjVNj14', '6187969'), + (851, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4vjVNj14', '6334878'), + (851, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4vjVNj14', '6337236'), + (851, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4vjVNj14', '6337970'), + (851, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4vjVNj14', '6338308'), + (851, 2160, 'attending', '2023-07-29 16:15:49', '2025-12-17 19:46:54', '4vjVNj14', '6338358'), + (851, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4vjVNj14', '6340845'), + (851, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4vjVNj14', '6341710'), + (851, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4vjVNj14', '6342044'), + (851, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4vjVNj14', '6342298'), + (851, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4vjVNj14', '6343294'), + (851, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4vjVNj14', '6347034'), + (851, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4vjVNj14', '6347056'), + (851, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4vjVNj14', '6353830'), + (851, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4vjVNj14', '6353831'), + (851, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4vjVNj14', '6357867'), + (851, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4vjVNj14', '6358652'), + (851, 2196, 'attending', '2023-09-08 22:49:53', '2025-12-17 19:46:56', '4vjVNj14', '6359398'), + (851, 2197, 'attending', '2023-09-15 21:03:54', '2025-12-17 19:46:44', '4vjVNj14', '6359399'), + (851, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4vjVNj14', '6361709'), + (851, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4vjVNj14', '6361710'), + (851, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4vjVNj14', '6361711'), + (851, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4vjVNj14', '6361712'), + (851, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4vjVNj14', '6361713'), + (851, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4vjVNj14', '6382573'), + (851, 2240, 'attending', '2023-09-09 21:05:06', '2025-12-17 19:46:56', '4vjVNj14', '6388603'), + (851, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4vjVNj14', '6388604'), + (851, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4vjVNj14', '6394629'), + (851, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4vjVNj14', '6394631'), + (851, 2258, 'attending', '2023-09-24 20:10:02', '2025-12-17 19:46:45', '4vjVNj14', '6419492'), + (851, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4vjVNj14', '6440863'), + (851, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4vjVNj14', '6445440'), + (851, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4vjVNj14', '6453951'), + (851, 2286, 'attending', '2023-12-01 22:22:43', '2025-12-17 19:46:48', '4vjVNj14', '6460930'), + (851, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4vjVNj14', '6461696'), + (851, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4vjVNj14', '6462129'), + (851, 2290, 'attending', '2023-10-19 00:21:39', '2025-12-17 19:46:46', '4vjVNj14', '6462214'), + (851, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4vjVNj14', '6463218'), + (851, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4vjVNj14', '6472181'), + (851, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4vjVNj14', '6482693'), + (851, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4vjVNj14', '6484200'), + (851, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '4vjVNj14', '6484680'), + (851, 2317, 'attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4vjVNj14', '6507741'), + (851, 2322, 'attending', '2023-11-18 07:36:49', '2025-12-17 19:46:48', '4vjVNj14', '6514659'), + (851, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4vjVNj14', '6514660'), + (851, 2325, 'attending', '2023-12-16 22:47:13', '2025-12-17 19:46:36', '4vjVNj14', '6514663'), + (851, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4vjVNj14', '6519103'), + (851, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4vjVNj14', '6535681'), + (851, 2338, 'maybe', '2023-11-26 01:23:18', '2025-12-17 19:46:48', '4vjVNj14', '6538868'), + (851, 2345, 'attending', '2023-11-30 00:12:12', '2025-12-17 19:46:48', '4vjVNj14', '6582414'), + (851, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4vjVNj14', '6584747'), + (851, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4vjVNj14', '6587097'), + (851, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4vjVNj14', '6609022'), + (851, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4vjVNj14', '6632757'), + (851, 2375, 'attending', '2023-12-21 00:09:47', '2025-12-17 19:46:36', '4vjVNj14', '6634548'), + (851, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4vjVNj14', '6644187'), + (851, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4vjVNj14', '6648951'), + (851, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4vjVNj14', '6648952'), + (851, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4vjVNj14', '6655401'), + (851, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4vjVNj14', '6661585'), + (851, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4vjVNj14', '6661588'), + (851, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4vjVNj14', '6661589'), + (851, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4vjVNj14', '6699906'), + (851, 2408, 'attending', '2024-01-27 02:59:28', '2025-12-17 19:46:40', '4vjVNj14', '6699907'), + (851, 2409, 'attending', '2024-02-03 00:27:20', '2025-12-17 19:46:41', '4vjVNj14', '6699909'), + (851, 2410, 'attending', '2024-02-10 05:17:54', '2025-12-17 19:46:41', '4vjVNj14', '6699911'), + (851, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '4vjVNj14', '6699913'), + (851, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4vjVNj14', '6701109'), + (851, 2424, 'attending', '2024-01-20 03:50:08', '2025-12-17 19:46:40', '4vjVNj14', '6705143'), + (851, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4vjVNj14', '6705219'), + (851, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4vjVNj14', '6710153'), + (851, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4vjVNj14', '6711552'), + (851, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '4vjVNj14', '6711553'), + (851, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4vjVNj14', '6722688'), + (851, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4vjVNj14', '6730620'), + (851, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4vjVNj14', '6730642'), + (851, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4vjVNj14', '6740364'), + (851, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4vjVNj14', '6743829'), + (851, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4vjVNj14', '7030380'), + (851, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4vjVNj14', '7033677'), + (851, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4vjVNj14', '7035415'), + (851, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4vjVNj14', '7044715'), + (851, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4vjVNj14', '7050318'), + (851, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4vjVNj14', '7050319'), + (851, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4vjVNj14', '7050322'), + (851, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4vjVNj14', '7057804'), + (851, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '4vjVNj14', '7059866'), + (851, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4vjVNj14', '7072824'), + (851, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4vjVNj14', '7074348'), + (851, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4vjVNj14', '7074364'), + (851, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4vjVNj14', '7089267'), + (851, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4vjVNj14', '7098747'), + (851, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4vjVNj14', '7113468'), + (851, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4vjVNj14', '7114856'), + (851, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', '4vjVNj14', '7114951'), + (851, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4vjVNj14', '7114955'), + (851, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4vjVNj14', '7114956'), + (851, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4vjVNj14', '7114957'), + (851, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4vjVNj14', '7153615'), + (851, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4vjVNj14', '7159484'), + (851, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4vjVNj14', '7178446'), + (851, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4vjVNj14', '7220467'), + (851, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4vjVNj14', '7240354'), + (851, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4vjVNj14', '7251633'), + (851, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4vjVNj14', '7263048'), + (851, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4vjVNj14', '7302674'), + (851, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4vjVNj14', '7324073'), + (851, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4vjVNj14', '7324074'), + (851, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4vjVNj14', '7324075'), + (851, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4vjVNj14', '7324078'), + (851, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4vjVNj14', '7324082'), + (851, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4vjVNj14', '7331457'), + (851, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4vjVNj14', '7356752'), + (851, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4vjVNj14', '7363643'), + (851, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4vjVNj14', '7368606'), + (851, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4vjVNj14', '7397462'), + (851, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4vjVNj14', '7424275'), + (851, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4vjVNj14', '7424276'), + (851, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4vjVNj14', '7432751'), + (851, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4vjVNj14', '7432752'), + (851, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4vjVNj14', '7432753'), + (851, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4vjVNj14', '7432754'), + (851, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4vjVNj14', '7432755'), + (851, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4vjVNj14', '7432756'), + (851, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4vjVNj14', '7432758'), + (851, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4vjVNj14', '7432759'), + (851, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4vjVNj14', '7433834'), + (851, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4vjVNj14', '7470197'), + (851, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4vjVNj14', '7685613'), + (851, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4vjVNj14', '7688194'), + (851, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4vjVNj14', '7688196'), + (851, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4vjVNj14', '7688289'), + (852, 871, 'attending', '2021-07-09 13:44:45', '2025-12-17 19:47:39', 'x4oRDGnA', '4136938'), + (852, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'x4oRDGnA', '4136947'), + (852, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oRDGnA', '4210314'), + (852, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oRDGnA', '4225444'), + (852, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'x4oRDGnA', '4229420'), + (852, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'x4oRDGnA', '4229423'), + (852, 900, 'attending', '2021-07-24 16:23:33', '2025-12-17 19:47:40', 'x4oRDGnA', '4240316'), + (852, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oRDGnA', '4240317'), + (852, 902, 'attending', '2021-08-07 16:34:58', '2025-12-17 19:47:41', 'x4oRDGnA', '4240318'), + (852, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'x4oRDGnA', '4240320'), + (852, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oRDGnA', '4275957'), + (852, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oRDGnA', '4277819'), + (852, 923, 'attending', '2021-07-19 20:23:39', '2025-12-17 19:47:40', 'x4oRDGnA', '4292773'), + (852, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oRDGnA', '4301723'), + (852, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'x4oRDGnA', '4302093'), + (852, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oRDGnA', '4304151'), + (852, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'x4oRDGnA', '4345519'), + (852, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'x4oRDGnA', '4356801'), + (852, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'x4oRDGnA', '4358025'), + (852, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'x4oRDGnA', '4366186'), + (852, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'x4oRDGnA', '4366187'), + (852, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'x4oRDGnA', '4402823'), + (852, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'x4oRDGnA', '4420735'), + (852, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'x4oRDGnA', '4420738'), + (852, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'x4oRDGnA', '4420739'), + (852, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'x4oRDGnA', '4420741'), + (852, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'x4oRDGnA', '4420744'), + (852, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'x4oRDGnA', '4420747'), + (852, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'x4oRDGnA', '4420748'), + (852, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'x4oRDGnA', '4420749'), + (852, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'x4oRDGnA', '4461883'), + (852, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oRDGnA', '6045684'), + (853, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oxGnYMd', '6045684'), + (854, 245, 'attending', '2020-12-01 21:16:13', '2025-12-17 19:47:54', 'Pm7o7GYm', '3149476'), + (854, 249, 'not_attending', '2020-11-17 03:54:21', '2025-12-17 19:47:54', 'Pm7o7GYm', '3149480'), + (854, 468, 'attending', '2020-11-21 23:36:26', '2025-12-17 19:47:54', 'Pm7o7GYm', '3285413'), + (854, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'Pm7o7GYm', '3285414'), + (854, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Pm7o7GYm', '3297764'), + (854, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Pm7o7GYm', '3313856'), + (854, 495, 'not_attending', '2020-12-07 19:19:59', '2025-12-17 19:47:54', 'Pm7o7GYm', '3314009'), + (854, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Pm7o7GYm', '3314909'), + (854, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Pm7o7GYm', '3314964'), + (854, 502, 'attending', '2020-12-12 19:15:53', '2025-12-17 19:47:55', 'Pm7o7GYm', '3323365'), + (854, 509, 'attending', '2021-01-21 03:05:41', '2025-12-17 19:47:49', 'Pm7o7GYm', '3324232'), + (854, 511, 'maybe', '2020-12-14 21:11:45', '2025-12-17 19:47:55', 'Pm7o7GYm', '3325335'), + (854, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Pm7o7GYm', '3329383'), + (854, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Pm7o7GYm', '3351539'), + (854, 533, 'attending', '2021-01-06 23:21:09', '2025-12-17 19:47:48', 'Pm7o7GYm', '3382812'), + (854, 536, 'attending', '2021-01-09 00:03:07', '2025-12-17 19:47:48', 'Pm7o7GYm', '3386848'), + (854, 537, 'attending', '2021-01-09 21:29:08', '2025-12-17 19:47:48', 'Pm7o7GYm', '3387153'), + (854, 540, 'maybe', '2021-01-07 03:04:20', '2025-12-17 19:47:48', 'Pm7o7GYm', '3389527'), + (854, 543, 'attending', '2021-01-15 18:06:08', '2025-12-17 19:47:48', 'Pm7o7GYm', '3396499'), + (854, 548, 'attending', '2021-01-14 00:24:30', '2025-12-17 19:47:48', 'Pm7o7GYm', '3403650'), + (854, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Pm7o7GYm', '3406988'), + (854, 554, 'attending', '2021-01-20 22:40:48', '2025-12-17 19:47:49', 'Pm7o7GYm', '3408338'), + (854, 555, 'attending', '2021-01-20 22:39:29', '2025-12-17 19:47:49', 'Pm7o7GYm', '3416576'), + (854, 559, 'attending', '2021-01-28 23:55:20', '2025-12-17 19:47:49', 'Pm7o7GYm', '3421439'), + (854, 562, 'attending', '2021-01-23 19:36:05', '2025-12-17 19:47:49', 'Pm7o7GYm', '3424911'), + (854, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Pm7o7GYm', '3426074'), + (854, 567, 'attending', '2021-01-24 04:46:36', '2025-12-17 19:47:50', 'Pm7o7GYm', '3428895'), + (854, 568, 'attending', '2021-01-27 23:53:50', '2025-12-17 19:47:50', 'Pm7o7GYm', '3430267'), + (854, 579, 'attending', '2021-02-03 21:14:29', '2025-12-17 19:47:50', 'Pm7o7GYm', '3440978'), + (854, 581, 'attending', '2021-02-01 14:18:31', '2025-12-17 19:47:50', 'Pm7o7GYm', '3445029'), + (854, 594, 'attending', '2021-03-01 17:39:07', '2025-12-17 19:47:51', 'Pm7o7GYm', '3467759'), + (854, 598, 'attending', '2021-02-07 21:49:17', '2025-12-17 19:47:50', 'Pm7o7GYm', '3468003'), + (854, 602, 'not_attending', '2021-02-12 14:29:10', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470303'), + (854, 603, 'attending', '2021-02-14 05:09:33', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470304'), + (854, 604, 'attending', '2021-02-21 17:57:35', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470305'), + (854, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470991'), + (854, 608, 'attending', '2021-02-09 19:05:22', '2025-12-17 19:47:50', 'Pm7o7GYm', '3475332'), + (854, 611, 'attending', '2021-02-15 17:01:53', '2025-12-17 19:47:50', 'Pm7o7GYm', '3482659'), + (854, 615, 'attending', '2021-02-19 17:20:01', '2025-12-17 19:47:50', 'Pm7o7GYm', '3490045'), + (854, 621, 'attending', '2021-03-04 21:43:12', '2025-12-17 19:47:51', 'Pm7o7GYm', '3517815'), + (854, 622, 'attending', '2021-03-09 19:11:21', '2025-12-17 19:47:51', 'Pm7o7GYm', '3517816'), + (854, 623, 'maybe', '2021-02-28 20:22:33', '2025-12-17 19:47:51', 'Pm7o7GYm', '3523941'), + (854, 625, 'attending', '2021-02-28 21:42:19', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533296'), + (854, 626, 'attending', '2021-02-28 21:42:17', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533298'), + (854, 627, 'attending', '2021-03-10 01:47:29', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533303'), + (854, 628, 'not_attending', '2021-03-14 21:37:11', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533305'), + (854, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533850'), + (854, 637, 'maybe', '2021-03-01 17:34:03', '2025-12-17 19:47:51', 'Pm7o7GYm', '3536411'), + (854, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Pm7o7GYm', '3536632'), + (854, 639, 'maybe', '2021-03-07 05:41:01', '2025-12-17 19:47:51', 'Pm7o7GYm', '3536656'), + (854, 640, 'attending', '2021-03-03 01:19:30', '2025-12-17 19:47:51', 'Pm7o7GYm', '3538866'), + (854, 641, 'not_attending', '2021-03-28 04:28:59', '2025-12-17 19:47:44', 'Pm7o7GYm', '3539916'), + (854, 642, 'attending', '2021-04-08 14:43:10', '2025-12-17 19:47:44', 'Pm7o7GYm', '3539917'), + (854, 643, 'attending', '2021-04-14 20:32:19', '2025-12-17 19:47:45', 'Pm7o7GYm', '3539918'), + (854, 644, 'attending', '2021-04-24 02:03:40', '2025-12-17 19:47:45', 'Pm7o7GYm', '3539919'), + (854, 645, 'attending', '2021-05-08 14:32:15', '2025-12-17 19:47:46', 'Pm7o7GYm', '3539920'), + (854, 646, 'attending', '2021-05-14 14:05:18', '2025-12-17 19:47:46', 'Pm7o7GYm', '3539921'), + (854, 647, 'attending', '2021-05-21 21:18:54', '2025-12-17 19:47:46', 'Pm7o7GYm', '3539922'), + (854, 648, 'not_attending', '2021-05-15 19:44:27', '2025-12-17 19:47:47', 'Pm7o7GYm', '3539923'), + (854, 649, 'not_attending', '2021-03-19 23:17:20', '2025-12-17 19:47:51', 'Pm7o7GYm', '3539927'), + (854, 650, 'attending', '2021-03-26 03:25:48', '2025-12-17 19:47:44', 'Pm7o7GYm', '3539928'), + (854, 680, 'maybe', '2021-03-10 23:19:42', '2025-12-17 19:47:51', 'Pm7o7GYm', '3547700'), + (854, 684, 'maybe', '2021-03-12 06:05:27', '2025-12-17 19:47:51', 'Pm7o7GYm', '3549257'), + (854, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Pm7o7GYm', '3582734'), + (854, 707, 'attending', '2021-04-25 21:05:55', '2025-12-17 19:47:46', 'Pm7o7GYm', '3583262'), + (854, 711, 'maybe', '2021-03-26 03:26:07', '2025-12-17 19:47:44', 'Pm7o7GYm', '3588075'), + (854, 717, 'maybe', '2021-03-25 20:43:21', '2025-12-17 19:47:44', 'Pm7o7GYm', '3619523'), + (854, 724, 'maybe', '2021-04-11 16:41:09', '2025-12-17 19:47:46', 'Pm7o7GYm', '3661369'), + (854, 725, 'attending', '2021-05-18 00:13:54', '2025-12-17 19:47:47', 'Pm7o7GYm', '3661372'), + (854, 728, 'attending', '2021-04-14 20:32:03', '2025-12-17 19:47:44', 'Pm7o7GYm', '3668073'), + (854, 729, 'attending', '2021-04-28 21:09:41', '2025-12-17 19:47:46', 'Pm7o7GYm', '3668075'), + (854, 730, 'maybe', '2021-04-04 20:45:48', '2025-12-17 19:47:46', 'Pm7o7GYm', '3668076'), + (854, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7o7GYm', '3674262'), + (854, 732, 'maybe', '2021-04-05 00:09:59', '2025-12-17 19:47:45', 'Pm7o7GYm', '3674268'), + (854, 734, 'attending', '2021-04-04 20:41:09', '2025-12-17 19:47:44', 'Pm7o7GYm', '3676806'), + (854, 735, 'maybe', '2021-04-05 00:35:27', '2025-12-17 19:47:46', 'Pm7o7GYm', '3677402'), + (854, 766, 'attending', '2021-05-12 01:35:42', '2025-12-17 19:47:46', 'Pm7o7GYm', '3721383'), + (854, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7o7GYm', '3730212'), + (854, 777, 'not_attending', '2021-05-01 15:15:45', '2025-12-17 19:47:46', 'Pm7o7GYm', '3746248'), + (854, 785, 'maybe', '2021-05-12 22:54:17', '2025-12-17 19:47:46', 'Pm7o7GYm', '3779779'), + (854, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7o7GYm', '3793156'), + (854, 816, 'attending', '2021-05-19 22:28:41', '2025-12-17 19:47:46', 'Pm7o7GYm', '3826524'), + (854, 823, 'attending', '2021-06-19 14:43:50', '2025-12-17 19:47:48', 'Pm7o7GYm', '3974109'), + (854, 827, 'not_attending', '2021-06-04 21:47:21', '2025-12-17 19:47:47', 'Pm7o7GYm', '3975311'), + (854, 828, 'attending', '2021-06-12 14:10:30', '2025-12-17 19:47:47', 'Pm7o7GYm', '3975312'), + (854, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7o7GYm', '3994992'), + (854, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Pm7o7GYm', '4014338'), + (854, 867, 'attending', '2021-06-25 19:19:10', '2025-12-17 19:47:38', 'Pm7o7GYm', '4021848'), + (854, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Pm7o7GYm', '4136744'), + (854, 870, 'not_attending', '2021-06-27 23:26:20', '2025-12-17 19:47:39', 'Pm7o7GYm', '4136937'), + (854, 871, 'attending', '2021-07-07 22:20:05', '2025-12-17 19:47:39', 'Pm7o7GYm', '4136938'), + (854, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Pm7o7GYm', '4136947'), + (854, 884, 'not_attending', '2021-08-15 19:09:35', '2025-12-17 19:47:42', 'Pm7o7GYm', '4210314'), + (854, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Pm7o7GYm', '4225444'), + (854, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Pm7o7GYm', '4239259'), + (854, 900, 'attending', '2021-07-19 16:06:59', '2025-12-17 19:47:40', 'Pm7o7GYm', '4240316'), + (854, 901, 'attending', '2021-07-26 20:40:05', '2025-12-17 19:47:40', 'Pm7o7GYm', '4240317'), + (854, 902, 'not_attending', '2021-08-04 19:02:43', '2025-12-17 19:47:41', 'Pm7o7GYm', '4240318'), + (854, 903, 'not_attending', '2021-08-13 15:06:44', '2025-12-17 19:47:42', 'Pm7o7GYm', '4240320'), + (854, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Pm7o7GYm', '4250163'), + (854, 916, 'attending', '2021-07-22 22:21:08', '2025-12-17 19:47:40', 'Pm7o7GYm', '4273772'), + (854, 919, 'not_attending', '2021-07-14 15:08:09', '2025-12-17 19:47:39', 'Pm7o7GYm', '4275957'), + (854, 920, 'maybe', '2021-07-21 20:44:31', '2025-12-17 19:47:40', 'Pm7o7GYm', '4277819'), + (854, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Pm7o7GYm', '4301723'), + (854, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Pm7o7GYm', '4302093'), + (854, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Pm7o7GYm', '4304151'), + (854, 937, 'maybe', '2021-07-24 13:46:58', '2025-12-17 19:47:40', 'Pm7o7GYm', '4306596'), + (854, 940, 'attending', '2021-07-30 11:22:08', '2025-12-17 19:47:40', 'Pm7o7GYm', '4309049'), + (854, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Pm7o7GYm', '4356801'), + (854, 973, 'not_attending', '2021-08-21 19:03:52', '2025-12-17 19:47:42', 'Pm7o7GYm', '4366186'), + (854, 974, 'attending', '2021-08-23 16:31:59', '2025-12-17 19:47:42', 'Pm7o7GYm', '4366187'), + (854, 990, 'attending', '2021-09-01 12:53:28', '2025-12-17 19:47:43', 'Pm7o7GYm', '4420735'), + (854, 991, 'attending', '2021-09-08 12:24:58', '2025-12-17 19:47:43', 'Pm7o7GYm', '4420738'), + (854, 992, 'not_attending', '2021-09-13 02:51:54', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420739'), + (854, 993, 'not_attending', '2021-09-22 19:03:52', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420741'), + (854, 994, 'attending', '2021-10-02 02:41:54', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420742'), + (854, 995, 'attending', '2021-10-09 16:07:31', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420744'), + (854, 996, 'attending', '2021-10-16 03:49:57', '2025-12-17 19:47:35', 'Pm7o7GYm', '4420747'), + (854, 997, 'attending', '2021-10-23 15:29:39', '2025-12-17 19:47:35', 'Pm7o7GYm', '4420748'), + (854, 998, 'not_attending', '2021-10-27 01:07:01', '2025-12-17 19:47:36', 'Pm7o7GYm', '4420749'), + (854, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Pm7o7GYm', '4461883'), + (854, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Pm7o7GYm', '4508342'), + (854, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Pm7o7GYm', '4568602'), + (854, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Pm7o7GYm', '4572153'), + (854, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Pm7o7GYm', '4585962'), + (854, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'Pm7o7GYm', '4596356'), + (854, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Pm7o7GYm', '4598860'), + (854, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Pm7o7GYm', '4598861'), + (854, 1099, 'not_attending', '2021-11-01 02:52:12', '2025-12-17 19:47:36', 'Pm7o7GYm', '4602797'), + (854, 1114, 'attending', '2021-11-12 16:06:15', '2025-12-17 19:47:36', 'Pm7o7GYm', '4637896'), + (854, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Pm7o7GYm', '4642994'), + (854, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Pm7o7GYm', '4642995'), + (854, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Pm7o7GYm', '4642996'), + (854, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Pm7o7GYm', '4642997'), + (854, 1126, 'not_attending', '2021-12-09 12:57:04', '2025-12-17 19:47:38', 'Pm7o7GYm', '4645687'), + (854, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Pm7o7GYm', '4645698'), + (854, 1128, 'not_attending', '2021-11-19 20:31:43', '2025-12-17 19:47:37', 'Pm7o7GYm', '4645704'), + (854, 1129, 'not_attending', '2021-11-19 20:31:52', '2025-12-17 19:47:37', 'Pm7o7GYm', '4645705'), + (854, 1130, 'not_attending', '2021-12-04 20:25:27', '2025-12-17 19:47:37', 'Pm7o7GYm', '4658824'), + (854, 1131, 'not_attending', '2021-12-09 12:57:21', '2025-12-17 19:47:31', 'Pm7o7GYm', '4658825'), + (854, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Pm7o7GYm', '4668385'), + (854, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Pm7o7GYm', '4694407'), + (854, 1173, 'attending', '2022-01-04 15:30:11', '2025-12-17 19:47:31', 'Pm7o7GYm', '4736495'), + (854, 1174, 'attending', '2022-01-14 15:11:09', '2025-12-17 19:47:31', 'Pm7o7GYm', '4736496'), + (854, 1175, 'attending', '2022-01-22 22:31:24', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736497'), + (854, 1176, 'not_attending', '2022-02-12 22:27:25', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736498'), + (854, 1177, 'attending', '2022-02-12 16:56:52', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736499'), + (854, 1178, 'attending', '2022-01-28 16:00:20', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736500'), + (854, 1179, 'attending', '2022-02-18 20:23:21', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736501'), + (854, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Pm7o7GYm', '4736503'), + (854, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Pm7o7GYm', '4736504'), + (854, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Pm7o7GYm', '4746789'), + (854, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Pm7o7GYm', '4753929'), + (854, 1190, 'attending', '2022-01-11 23:09:18', '2025-12-17 19:47:31', 'Pm7o7GYm', '4757377'), + (854, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Pm7o7GYm', '5038850'), + (854, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Pm7o7GYm', '5045826'), + (854, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Pm7o7GYm', '5132533'), + (854, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Pm7o7GYm', '5186582'), + (854, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Pm7o7GYm', '5186583'), + (854, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Pm7o7GYm', '5186585'), + (854, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Pm7o7GYm', '5190437'), + (854, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Pm7o7GYm', '5195095'), + (854, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Pm7o7GYm', '5215989'), + (854, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Pm7o7GYm', '5223686'), + (854, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'Pm7o7GYm', '5227432'), + (854, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Pm7o7GYm', '5247467'), + (854, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Pm7o7GYm', '5260800'), + (854, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Pm7o7GYm', '5269930'), + (854, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Pm7o7GYm', '5271448'), + (854, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'Pm7o7GYm', '5271449'), + (854, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'Pm7o7GYm', '5276469'), + (854, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Pm7o7GYm', '5278159'), + (854, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Pm7o7GYm', '5363695'), + (854, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Pm7o7GYm', '5365960'), + (854, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'Pm7o7GYm', '5368973'), + (854, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Pm7o7GYm', '5378247'), + (854, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Pm7o7GYm', '5389605'), + (854, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Pm7o7GYm', '5397265'), + (854, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7o7GYm', '6045684'), + (855, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dKOv1DBd', '7424276'), + (855, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'dKOv1DBd', '7432756'), + (855, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'dKOv1DBd', '7432758'), + (855, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'dKOv1DBd', '7682072'), + (855, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'dKOv1DBd', '7685613'), + (855, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dKOv1DBd', '7688194'), + (855, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dKOv1DBd', '7688196'), + (855, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dKOv1DBd', '7688289'), + (855, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dKOv1DBd', '7692763'), + (855, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dKOv1DBd', '7697552'), + (855, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dKOv1DBd', '7699878'), + (855, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dKOv1DBd', '7704043'), + (855, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dKOv1DBd', '7712467'), + (855, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dKOv1DBd', '7713585'), + (855, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dKOv1DBd', '7713586'), + (855, 2947, 'not_attending', '2024-12-09 03:10:21', '2025-12-17 19:46:21', 'dKOv1DBd', '7727445'), + (855, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'dKOv1DBd', '7738518'), + (855, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dKOv1DBd', '7750636'), + (855, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dKOv1DBd', '7796540'), + (855, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dKOv1DBd', '7796541'), + (855, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dKOv1DBd', '7796542'), + (855, 2967, 'not_attending', '2025-01-07 14:55:51', '2025-12-17 19:46:22', 'dKOv1DBd', '7797181'), + (855, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dKOv1DBd', '7825913'), + (855, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dKOv1DBd', '7826209'), + (855, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dKOv1DBd', '7834742'), + (855, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dKOv1DBd', '7842108'), + (855, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dKOv1DBd', '7842902'), + (855, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dKOv1DBd', '7842903'), + (855, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dKOv1DBd', '7842904'), + (855, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dKOv1DBd', '7842905'), + (855, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'dKOv1DBd', '7844784'), + (855, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dKOv1DBd', '7855719'), + (855, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dKOv1DBd', '7860683'), + (855, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dKOv1DBd', '7860684'), + (855, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dKOv1DBd', '7866095'), + (855, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dKOv1DBd', '7869170'), + (855, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dKOv1DBd', '7869201'), + (855, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'dKOv1DBd', '7872088'), + (856, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', 'daJp8Epm', '5426882'), + (856, 1512, 'attending', '2022-07-15 03:42:45', '2025-12-17 19:47:19', 'daJp8Epm', '5441112'), + (856, 1513, 'attending', '2022-07-15 04:56:24', '2025-12-17 19:47:19', 'daJp8Epm', '5441125'), + (856, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'daJp8Epm', '5441126'), + (856, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'daJp8Epm', '5441128'), + (856, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'daJp8Epm', '5441131'), + (856, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'daJp8Epm', '5441132'), + (856, 1527, 'not_attending', '2022-07-19 03:06:53', '2025-12-17 19:47:20', 'daJp8Epm', '5446425'), + (856, 1528, 'not_attending', '2022-07-17 17:31:19', '2025-12-17 19:47:20', 'daJp8Epm', '5446643'), + (856, 1536, 'attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'daJp8Epm', '5449068'), + (856, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'daJp8Epm', '5453325'), + (856, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'daJp8Epm', '5454516'), + (856, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'daJp8Epm', '5454605'), + (856, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'daJp8Epm', '5455037'), + (856, 1556, 'not_attending', '2022-07-22 01:53:44', '2025-12-17 19:47:20', 'daJp8Epm', '5457734'), + (856, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'daJp8Epm', '5461278'), + (856, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'daJp8Epm', '5469480'), + (856, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'daJp8Epm', '5471073'), + (856, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'daJp8Epm', '5474663'), + (856, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'daJp8Epm', '5482022'), + (856, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'daJp8Epm', '5482793'), + (856, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'daJp8Epm', '5488912'), + (856, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'daJp8Epm', '5492192'), + (856, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'daJp8Epm', '5493139'), + (856, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'daJp8Epm', '5493200'), + (856, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'daJp8Epm', '5502188'), + (856, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'daJp8Epm', '5505059'), + (856, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'daJp8Epm', '5509055'), + (856, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'daJp8Epm', '5512862'), + (856, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'daJp8Epm', '5513985'), + (856, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'daJp8Epm', '5519981'), + (856, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'daJp8Epm', '5522550'), + (856, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'daJp8Epm', '5534683'), + (856, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'daJp8Epm', '5546619'), + (856, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'daJp8Epm', '5555245'), + (856, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'daJp8Epm', '5557747'), + (856, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daJp8Epm', '6045684'), + (857, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AgPbGry4', '5441131'), + (857, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'AgPbGry4', '5441132'), + (857, 1561, 'attending', '2022-08-12 09:07:38', '2025-12-17 19:47:22', 'AgPbGry4', '5461278'), + (857, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgPbGry4', '5502188'), + (857, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AgPbGry4', '5505059'), + (857, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AgPbGry4', '5509055'), + (857, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgPbGry4', '5512862'), + (857, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgPbGry4', '5513985'), + (857, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AgPbGry4', '5522550'), + (857, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AgPbGry4', '5534683'), + (857, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AgPbGry4', '5537735'), + (857, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AgPbGry4', '5540859'), + (857, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AgPbGry4', '5546619'), + (857, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AgPbGry4', '5555245'), + (857, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AgPbGry4', '5557747'), + (857, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AgPbGry4', '5560255'), + (857, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AgPbGry4', '5562906'), + (857, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AgPbGry4', '5600604'), + (857, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AgPbGry4', '5605544'), + (857, 1699, 'not_attending', '2022-09-26 12:18:45', '2025-12-17 19:47:12', 'AgPbGry4', '5606737'), + (857, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AgPbGry4', '5630960'), + (857, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AgPbGry4', '5630961'), + (857, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AgPbGry4', '5630962'), + (857, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AgPbGry4', '5630966'), + (857, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AgPbGry4', '5630967'), + (857, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AgPbGry4', '5630968'), + (857, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AgPbGry4', '5635406'), + (857, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AgPbGry4', '5638765'), + (857, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AgPbGry4', '5640097'), + (857, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'AgPbGry4', '5640843'), + (857, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AgPbGry4', '5641521'), + (857, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AgPbGry4', '5642818'), + (857, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AgPbGry4', '5652395'), + (857, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AgPbGry4', '5670445'), + (857, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AgPbGry4', '5671637'), + (857, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AgPbGry4', '5672329'), + (857, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AgPbGry4', '5674057'), + (857, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AgPbGry4', '5674060'), + (857, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AgPbGry4', '5677461'), + (857, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AgPbGry4', '5698046'), + (857, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AgPbGry4', '5699760'), + (857, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AgPbGry4', '5741601'), + (857, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AgPbGry4', '5763458'), + (857, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AgPbGry4', '5774172'), + (857, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AgPbGry4', '5818247'), + (857, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AgPbGry4', '5819471'), + (857, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AgPbGry4', '5827739'), + (857, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AgPbGry4', '5844306'), + (857, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AgPbGry4', '5850159'), + (857, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AgPbGry4', '5858999'), + (857, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AgPbGry4', '5871984'), + (857, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AgPbGry4', '5876354'), + (857, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AgPbGry4', '5880939'), + (857, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AgPbGry4', '5887890'), + (857, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AgPbGry4', '5888598'), + (857, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AgPbGry4', '5893260'), + (857, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgPbGry4', '6045684'), + (858, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'xAYLkKRm', '3285414'), + (858, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'xAYLkKRm', '3313856'), + (858, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'xAYLkKRm', '3314909'), + (858, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'xAYLkKRm', '3314964'), + (858, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'xAYLkKRm', '3323365'), + (858, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'xAYLkKRm', '3329383'), + (858, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'xAYLkKRm', '3351539'), + (858, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'xAYLkKRm', '3386848'), + (858, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'xAYLkKRm', '3389527'), + (858, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'xAYLkKRm', '3396499'), + (858, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'xAYLkKRm', '3403650'), + (858, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'xAYLkKRm', '3406988'), + (858, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'xAYLkKRm', '3408338'), + (858, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'xAYLkKRm', '3416576'), + (858, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYLkKRm', '6045684'), + (859, 1824, 'not_attending', '2022-11-30 14:58:07', '2025-12-17 19:47:04', '41YKlP84', '5774172'), + (859, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '41YKlP84', '6045684'), + (860, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'VdxBlnXA', '3468125'), + (860, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VdxBlnXA', '3470303'), + (860, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'VdxBlnXA', '3470305'), + (860, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VdxBlnXA', '3470991'), + (860, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VdxBlnXA', '3517815'), + (860, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VdxBlnXA', '3517816'), + (860, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'VdxBlnXA', '3523941'), + (860, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VdxBlnXA', '3533850'), + (860, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VdxBlnXA', '3536632'), + (860, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VdxBlnXA', '3536656'), + (860, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VdxBlnXA', '3539916'), + (860, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VdxBlnXA', '3539917'), + (860, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VdxBlnXA', '3539918'), + (860, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VdxBlnXA', '3539919'), + (860, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VdxBlnXA', '3539920'), + (860, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VdxBlnXA', '3539921'), + (860, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VdxBlnXA', '3539922'), + (860, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VdxBlnXA', '3539923'), + (860, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VdxBlnXA', '3539927'), + (860, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VdxBlnXA', '3582734'), + (860, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VdxBlnXA', '3619523'), + (860, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxBlnXA', '6045684'), + (861, 1123, 'not_attending', '2021-12-09 16:46:52', '2025-12-17 19:47:38', 'd9nJYMem', '4644024'), + (861, 1124, 'attending', '2021-12-10 17:13:20', '2025-12-17 19:47:38', 'd9nJYMem', '4644025'), + (861, 1146, 'not_attending', '2021-12-10 17:11:10', '2025-12-17 19:47:38', 'd9nJYMem', '4692841'), + (861, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd9nJYMem', '4736497'), + (861, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'd9nJYMem', '4736500'), + (861, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'd9nJYMem', '4746789'), + (861, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'd9nJYMem', '4753929'), + (861, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd9nJYMem', '5038850'), + (861, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd9nJYMem', '6045684'), + (862, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4DQwr0yd', '5441131'), + (862, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4DQwr0yd', '5441132'), + (862, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4DQwr0yd', '5509055'), + (862, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', '4DQwr0yd', '5513985'), + (862, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', '4DQwr0yd', '5534683'), + (862, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4DQwr0yd', '5537735'), + (862, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4DQwr0yd', '5540859'), + (862, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4DQwr0yd', '5546619'), + (862, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4DQwr0yd', '5555245'), + (862, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4DQwr0yd', '5557747'), + (862, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4DQwr0yd', '5560255'), + (862, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4DQwr0yd', '5562906'), + (862, 1675, 'attending', '2022-09-18 20:06:02', '2025-12-17 19:47:11', '4DQwr0yd', '5593342'), + (862, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4DQwr0yd', '5600604'), + (862, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4DQwr0yd', '5605544'), + (862, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', '4DQwr0yd', '5606737'), + (862, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4DQwr0yd', '5630960'), + (862, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4DQwr0yd', '5630961'), + (862, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4DQwr0yd', '5630962'), + (862, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4DQwr0yd', '5630966'), + (862, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4DQwr0yd', '5630967'), + (862, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4DQwr0yd', '5630968'), + (862, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4DQwr0yd', '5635406'), + (862, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4DQwr0yd', '5638765'), + (862, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4DQwr0yd', '5640097'), + (862, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4DQwr0yd', '5640843'), + (862, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4DQwr0yd', '5641521'), + (862, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4DQwr0yd', '5642818'), + (862, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4DQwr0yd', '5652395'), + (862, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4DQwr0yd', '5670445'), + (862, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4DQwr0yd', '5671637'), + (862, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4DQwr0yd', '5672329'), + (862, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4DQwr0yd', '5674057'), + (862, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4DQwr0yd', '5674060'), + (862, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4DQwr0yd', '5677461'), + (862, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4DQwr0yd', '5698046'), + (862, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4DQwr0yd', '5699760'), + (862, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4DQwr0yd', '5741601'), + (862, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4DQwr0yd', '5763458'), + (862, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4DQwr0yd', '5774172'), + (862, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4DQwr0yd', '5818247'), + (862, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4DQwr0yd', '5819471'), + (862, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4DQwr0yd', '5827739'), + (862, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4DQwr0yd', '5844306'), + (862, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4DQwr0yd', '5850159'), + (862, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4DQwr0yd', '5858999'), + (862, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4DQwr0yd', '5871984'), + (862, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4DQwr0yd', '5876354'), + (862, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4DQwr0yd', '5880939'), + (862, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4DQwr0yd', '5887890'), + (862, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4DQwr0yd', '5888598'), + (862, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4DQwr0yd', '5893260'), + (862, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DQwr0yd', '6045684'), + (863, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZkjEErd', '6045684'), + (864, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'rdOeYxEA', '4136947'), + (864, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOeYxEA', '4210314'), + (864, 887, 'not_attending', '2021-07-13 21:31:19', '2025-12-17 19:47:39', 'rdOeYxEA', '4225444'), + (864, 895, 'attending', '2021-07-10 03:58:23', '2025-12-17 19:47:39', 'rdOeYxEA', '4229424'), + (864, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'rdOeYxEA', '4240316'), + (864, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'rdOeYxEA', '4240317'), + (864, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdOeYxEA', '4240318'), + (864, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'rdOeYxEA', '4240320'), + (864, 908, 'not_attending', '2021-07-13 21:31:28', '2025-12-17 19:47:39', 'rdOeYxEA', '4257613'), + (864, 912, 'not_attending', '2021-07-13 21:31:05', '2025-12-17 19:47:39', 'rdOeYxEA', '4271104'), + (864, 918, 'not_attending', '2021-07-12 21:44:48', '2025-12-17 19:47:39', 'rdOeYxEA', '4274486'), + (864, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'rdOeYxEA', '4275957'), + (864, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdOeYxEA', '4277819'), + (864, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdOeYxEA', '4301723'), + (864, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'rdOeYxEA', '4302093'), + (864, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOeYxEA', '4304151'), + (864, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOeYxEA', '4356801'), + (864, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'rdOeYxEA', '4366186'), + (864, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdOeYxEA', '4366187'), + (864, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'rdOeYxEA', '4420735'), + (864, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'rdOeYxEA', '4420738'), + (864, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'rdOeYxEA', '4420739'), + (864, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'rdOeYxEA', '4420741'), + (864, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'rdOeYxEA', '4420744'), + (864, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'rdOeYxEA', '4420747'), + (864, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'rdOeYxEA', '4420748'), + (864, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'rdOeYxEA', '4420749'), + (864, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'rdOeYxEA', '4461883'), + (864, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'rdOeYxEA', '4508342'), + (864, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'rdOeYxEA', '4568602'), + (864, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'rdOeYxEA', '4572153'), + (864, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'rdOeYxEA', '4585962'), + (864, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'rdOeYxEA', '4596356'), + (864, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'rdOeYxEA', '4598860'), + (864, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'rdOeYxEA', '4598861'), + (864, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'rdOeYxEA', '4602797'), + (864, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'rdOeYxEA', '4637896'), + (864, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'rdOeYxEA', '4642994'), + (864, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'rdOeYxEA', '4642995'), + (864, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'rdOeYxEA', '4642996'), + (864, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'rdOeYxEA', '4642997'), + (864, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'rdOeYxEA', '4645687'), + (864, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'rdOeYxEA', '4645698'), + (864, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'rdOeYxEA', '4645704'), + (864, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'rdOeYxEA', '4645705'), + (864, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'rdOeYxEA', '4668385'), + (864, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'rdOeYxEA', '4694407'), + (864, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'rdOeYxEA', '4736497'), + (864, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'rdOeYxEA', '4736499'), + (864, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'rdOeYxEA', '4736500'), + (864, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'rdOeYxEA', '4736503'), + (864, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'rdOeYxEA', '4736504'), + (864, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'rdOeYxEA', '4746789'), + (864, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'rdOeYxEA', '4753929'), + (864, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'rdOeYxEA', '5038850'), + (864, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'rdOeYxEA', '5045826'), + (864, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'rdOeYxEA', '5132533'), + (864, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'rdOeYxEA', '5186582'), + (864, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'rdOeYxEA', '5186583'), + (864, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'rdOeYxEA', '5186585'), + (864, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'rdOeYxEA', '5190437'), + (864, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'rdOeYxEA', '5195095'), + (864, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'rdOeYxEA', '5215989'), + (864, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'rdOeYxEA', '5223686'), + (864, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'rdOeYxEA', '5247467'), + (864, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'rdOeYxEA', '5260800'), + (864, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'rdOeYxEA', '5269930'), + (864, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'rdOeYxEA', '5271448'), + (864, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'rdOeYxEA', '5271449'), + (864, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'rdOeYxEA', '5278159'), + (864, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'rdOeYxEA', '5363695'), + (864, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'rdOeYxEA', '5365960'), + (864, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'rdOeYxEA', '5378247'), + (864, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'rdOeYxEA', '5389605'), + (864, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'rdOeYxEA', '5397265'), + (864, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'rdOeYxEA', '5404786'), + (864, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'rdOeYxEA', '5405203'), + (864, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'rdOeYxEA', '5412550'), + (864, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'rdOeYxEA', '5415046'), + (864, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'rdOeYxEA', '5422086'), + (864, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'rdOeYxEA', '5422406'), + (864, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'rdOeYxEA', '5424565'), + (864, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'rdOeYxEA', '5426882'), + (864, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'rdOeYxEA', '5441125'), + (864, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'rdOeYxEA', '5441126'), + (864, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'rdOeYxEA', '5441128'), + (864, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'rdOeYxEA', '5441131'), + (864, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'rdOeYxEA', '5441132'), + (864, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'rdOeYxEA', '5453325'), + (864, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'rdOeYxEA', '5454516'), + (864, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'rdOeYxEA', '5454605'), + (864, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'rdOeYxEA', '5455037'), + (864, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'rdOeYxEA', '5461278'), + (864, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'rdOeYxEA', '5469480'), + (864, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'rdOeYxEA', '5474663'), + (864, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'rdOeYxEA', '5482022'), + (864, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'rdOeYxEA', '5488912'), + (864, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'rdOeYxEA', '5492192'), + (864, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'rdOeYxEA', '5493139'), + (864, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'rdOeYxEA', '5493200'), + (864, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'rdOeYxEA', '5502188'), + (864, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'rdOeYxEA', '5505059'), + (864, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'rdOeYxEA', '5509055'), + (864, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'rdOeYxEA', '5512862'), + (864, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'rdOeYxEA', '5513985'), + (864, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'rdOeYxEA', '5519981'), + (864, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'rdOeYxEA', '5522550'), + (864, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'rdOeYxEA', '5534683'), + (864, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'rdOeYxEA', '5537735'), + (864, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'rdOeYxEA', '5540859'), + (864, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'rdOeYxEA', '5546619'), + (864, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'rdOeYxEA', '5557747'), + (864, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'rdOeYxEA', '5560255'), + (864, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'rdOeYxEA', '5562906'), + (864, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'rdOeYxEA', '5600604'), + (864, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'rdOeYxEA', '5605544'), + (864, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'rdOeYxEA', '5630960'), + (864, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'rdOeYxEA', '5630961'), + (864, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'rdOeYxEA', '5630962'), + (864, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'rdOeYxEA', '5630966'), + (864, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'rdOeYxEA', '5630967'), + (864, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'rdOeYxEA', '5630968'), + (864, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'rdOeYxEA', '5635406'), + (864, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'rdOeYxEA', '5638765'), + (864, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'rdOeYxEA', '5640097'), + (864, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'rdOeYxEA', '5640843'), + (864, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'rdOeYxEA', '5641521'), + (864, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'rdOeYxEA', '5642818'), + (864, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'rdOeYxEA', '5652395'), + (864, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'rdOeYxEA', '5670445'), + (864, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'rdOeYxEA', '5671637'), + (864, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'rdOeYxEA', '5672329'), + (864, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'rdOeYxEA', '5674057'), + (864, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'rdOeYxEA', '5674060'), + (864, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'rdOeYxEA', '5677461'), + (864, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'rdOeYxEA', '5698046'), + (864, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'rdOeYxEA', '5699760'), + (864, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'rdOeYxEA', '5741601'), + (864, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'rdOeYxEA', '5763458'), + (864, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'rdOeYxEA', '5774172'), + (864, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'rdOeYxEA', '5818247'), + (864, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'rdOeYxEA', '5819471'), + (864, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'rdOeYxEA', '5827739'), + (864, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'rdOeYxEA', '5844306'), + (864, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'rdOeYxEA', '5850159'), + (864, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'rdOeYxEA', '5858999'), + (864, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'rdOeYxEA', '5871984'), + (864, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'rdOeYxEA', '5876354'), + (864, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'rdOeYxEA', '5880939'), + (864, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'rdOeYxEA', '5880940'), + (864, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'rdOeYxEA', '5880942'), + (864, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'rdOeYxEA', '5880943'), + (864, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'rdOeYxEA', '5887890'), + (864, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'rdOeYxEA', '5888598'), + (864, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'rdOeYxEA', '5893260'), + (864, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'rdOeYxEA', '5899826'), + (864, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'rdOeYxEA', '5900199'), + (864, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'rdOeYxEA', '5900200'), + (864, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'rdOeYxEA', '5900202'), + (864, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'rdOeYxEA', '5900203'), + (864, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'rdOeYxEA', '5901108'), + (864, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'rdOeYxEA', '5901126'), + (864, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'rdOeYxEA', '5909655'), + (864, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'rdOeYxEA', '5910522'), + (864, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'rdOeYxEA', '5910526'), + (864, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'rdOeYxEA', '5910528'), + (864, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'rdOeYxEA', '5916219'), + (864, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'rdOeYxEA', '5936234'), + (864, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'rdOeYxEA', '5958351'), + (864, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'rdOeYxEA', '5959751'), + (864, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'rdOeYxEA', '5959755'), + (864, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'rdOeYxEA', '5960055'), + (864, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'rdOeYxEA', '5961684'), + (864, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'rdOeYxEA', '5962132'), + (864, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'rdOeYxEA', '5962133'), + (864, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'rdOeYxEA', '5962134'), + (864, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'rdOeYxEA', '5962317'), + (864, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'rdOeYxEA', '5962318'), + (864, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'rdOeYxEA', '5965933'), + (864, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'rdOeYxEA', '5967014'), + (864, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'rdOeYxEA', '5972815'), + (864, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'rdOeYxEA', '5974016'), + (864, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'rdOeYxEA', '5981515'), + (864, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'rdOeYxEA', '5993516'), + (864, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'rdOeYxEA', '5998939'), + (864, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'rdOeYxEA', '6028191'), + (864, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'rdOeYxEA', '6040066'), + (864, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'rdOeYxEA', '6042717'), + (864, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'rdOeYxEA', '6044838'), + (864, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'rdOeYxEA', '6044839'), + (864, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOeYxEA', '6045684'), + (864, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'rdOeYxEA', '6050104'), + (864, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'rdOeYxEA', '6053195'), + (864, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'rdOeYxEA', '6053198'), + (864, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'rdOeYxEA', '6056085'), + (864, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'rdOeYxEA', '6056916'), + (864, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'rdOeYxEA', '6059290'), + (864, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'rdOeYxEA', '6060328'), + (864, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'rdOeYxEA', '6061037'), + (864, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'rdOeYxEA', '6061039'), + (864, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'rdOeYxEA', '6067245'), + (864, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'rdOeYxEA', '6068094'), + (864, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'rdOeYxEA', '6068252'), + (864, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'rdOeYxEA', '6068253'), + (864, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'rdOeYxEA', '6068254'), + (864, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'rdOeYxEA', '6068280'), + (864, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'rdOeYxEA', '6069093'), + (864, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'rdOeYxEA', '6072528'), + (864, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'rdOeYxEA', '6079840'), + (864, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'rdOeYxEA', '6083398'), + (864, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'rdOeYxEA', '6093504'), + (864, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'rdOeYxEA', '6097414'), + (864, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'rdOeYxEA', '6097442'), + (864, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'rdOeYxEA', '6097684'), + (864, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'rdOeYxEA', '6098762'), + (864, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'rdOeYxEA', '6101361'), + (864, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'rdOeYxEA', '6101362'), + (864, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'rdOeYxEA', '6107314'), + (864, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'rdOeYxEA', '6120034'), + (864, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'rdOeYxEA', '6136733'), + (864, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'rdOeYxEA', '6137989'), + (864, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'rdOeYxEA', '6150864'), + (864, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'rdOeYxEA', '6155491'), + (864, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'rdOeYxEA', '6164417'), + (864, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'rdOeYxEA', '6166388'), + (864, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'rdOeYxEA', '6176439'), + (864, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'rdOeYxEA', '6182410'), + (864, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'rdOeYxEA', '6185812'), + (864, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'rdOeYxEA', '6187651'), + (864, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'rdOeYxEA', '6187963'), + (864, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'rdOeYxEA', '6187964'), + (864, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'rdOeYxEA', '6187966'), + (864, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'rdOeYxEA', '6187967'), + (864, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'rdOeYxEA', '6187969'), + (864, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'rdOeYxEA', '6334878'), + (864, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'rdOeYxEA', '6337236'), + (864, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'rdOeYxEA', '6337970'), + (864, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'rdOeYxEA', '6338308'), + (864, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'rdOeYxEA', '6341710'), + (864, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'rdOeYxEA', '6342044'), + (864, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'rdOeYxEA', '6342298'), + (864, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'rdOeYxEA', '6343294'), + (864, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'rdOeYxEA', '6347034'), + (864, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'rdOeYxEA', '6347056'), + (864, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'rdOeYxEA', '6353830'), + (864, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'rdOeYxEA', '6353831'), + (864, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'rdOeYxEA', '6357867'), + (864, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'rdOeYxEA', '6358652'), + (864, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'rdOeYxEA', '6361709'), + (864, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'rdOeYxEA', '6361710'), + (864, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'rdOeYxEA', '6361711'), + (864, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'rdOeYxEA', '6361712'), + (864, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'rdOeYxEA', '6361713'), + (864, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'rdOeYxEA', '6382573'), + (864, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'rdOeYxEA', '6388604'), + (864, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'rdOeYxEA', '6394629'), + (864, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'rdOeYxEA', '6394631'), + (864, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'rdOeYxEA', '6440863'), + (864, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'rdOeYxEA', '6445440'), + (864, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'rdOeYxEA', '6453951'), + (864, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'rdOeYxEA', '6461696'), + (864, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'rdOeYxEA', '6462129'), + (864, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'rdOeYxEA', '6463218'), + (864, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'rdOeYxEA', '6472181'), + (864, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'rdOeYxEA', '6482693'), + (864, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'rdOeYxEA', '6484200'), + (864, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'rdOeYxEA', '6484680'), + (864, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'rdOeYxEA', '6507741'), + (864, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'rdOeYxEA', '6514659'), + (864, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'rdOeYxEA', '6514660'), + (864, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'rdOeYxEA', '6519103'), + (864, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'rdOeYxEA', '6535681'), + (864, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'rdOeYxEA', '6584747'), + (864, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'rdOeYxEA', '6587097'), + (864, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'rdOeYxEA', '6609022'), + (864, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'rdOeYxEA', '6632757'), + (864, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'rdOeYxEA', '6644187'), + (864, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'rdOeYxEA', '6648951'), + (864, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'rdOeYxEA', '6648952'), + (864, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'rdOeYxEA', '6655401'), + (864, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'rdOeYxEA', '6661585'), + (864, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'rdOeYxEA', '6661588'), + (864, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'rdOeYxEA', '6661589'), + (864, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'rdOeYxEA', '6699906'), + (864, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'rdOeYxEA', '6699913'), + (864, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'rdOeYxEA', '6701109'), + (864, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'rdOeYxEA', '6705219'), + (864, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'rdOeYxEA', '6710153'), + (864, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'rdOeYxEA', '6711552'), + (864, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'rdOeYxEA', '6711553'), + (864, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'rdOeYxEA', '6722688'), + (864, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'rdOeYxEA', '6730620'), + (864, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'rdOeYxEA', '6740364'), + (864, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'rdOeYxEA', '6743829'), + (864, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'rdOeYxEA', '7030380'), + (864, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'rdOeYxEA', '7033677'), + (864, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'rdOeYxEA', '7044715'), + (864, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'rdOeYxEA', '7050318'), + (864, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'rdOeYxEA', '7050319'), + (864, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'rdOeYxEA', '7050322'), + (864, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'rdOeYxEA', '7057804'), + (864, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'rdOeYxEA', '7072824'), + (864, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'rdOeYxEA', '7074348'), + (864, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'rdOeYxEA', '7074364'), + (864, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'rdOeYxEA', '7089267'), + (864, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'rdOeYxEA', '7098747'), + (864, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'rdOeYxEA', '7113468'), + (864, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'rdOeYxEA', '7114856'), + (864, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'rdOeYxEA', '7114951'), + (864, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'rdOeYxEA', '7114955'), + (864, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'rdOeYxEA', '7114956'), + (864, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'rdOeYxEA', '7114957'), + (864, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'rdOeYxEA', '7159484'), + (864, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'rdOeYxEA', '7178446'), + (864, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'rdOeYxEA', '7220467'), + (864, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'rdOeYxEA', '7240354'), + (864, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'rdOeYxEA', '7251633'), + (864, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'rdOeYxEA', '7324073'), + (864, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'rdOeYxEA', '7324074'), + (864, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'rdOeYxEA', '7324075'), + (864, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'rdOeYxEA', '7324078'), + (864, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'rdOeYxEA', '7324082'), + (864, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'rdOeYxEA', '7331457'), + (864, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'rdOeYxEA', '7363643'), + (864, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'rdOeYxEA', '7368606'), + (864, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'rdOeYxEA', '7397462'), + (864, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'rdOeYxEA', '7424275'), + (864, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'rdOeYxEA', '7432751'), + (864, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'rdOeYxEA', '7432752'), + (864, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'rdOeYxEA', '7432753'), + (864, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'rdOeYxEA', '7432754'), + (864, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'rdOeYxEA', '7432755'), + (864, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'rdOeYxEA', '7432756'), + (864, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'rdOeYxEA', '7432758'), + (864, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'rdOeYxEA', '7432759'), + (864, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'rdOeYxEA', '7433834'), + (864, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'rdOeYxEA', '7470197'), + (864, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'rdOeYxEA', '7685613'), + (864, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'rdOeYxEA', '7688194'), + (864, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'rdOeYxEA', '7688196'), + (864, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'rdOeYxEA', '7688289'), + (864, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'rdOeYxEA', '7692763'), + (864, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'rdOeYxEA', '7697552'), + (864, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'rdOeYxEA', '7699878'), + (864, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'rdOeYxEA', '7704043'), + (864, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'rdOeYxEA', '7712467'), + (864, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'rdOeYxEA', '7713585'), + (864, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'rdOeYxEA', '7713586'), + (864, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'rdOeYxEA', '7738518'), + (864, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'rdOeYxEA', '7750636'), + (864, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'rdOeYxEA', '7796540'), + (864, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'rdOeYxEA', '7796541'), + (864, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'rdOeYxEA', '7796542'), + (864, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'rdOeYxEA', '7825913'), + (864, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'rdOeYxEA', '7826209'), + (864, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'rdOeYxEA', '7834742'), + (864, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'rdOeYxEA', '7842108'), + (864, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'rdOeYxEA', '7842902'), + (864, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'rdOeYxEA', '7842903'), + (864, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'rdOeYxEA', '7842904'), + (864, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'rdOeYxEA', '7842905'), + (864, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'rdOeYxEA', '7855719'), + (864, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'rdOeYxEA', '7860683'), + (864, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'rdOeYxEA', '7860684'), + (864, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'rdOeYxEA', '7866095'), + (864, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'rdOeYxEA', '7869170'), + (864, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'rdOeYxEA', '7869188'), + (864, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'rdOeYxEA', '7869201'), + (864, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'rdOeYxEA', '7877465'), + (864, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'rdOeYxEA', '7888250'), + (864, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'rdOeYxEA', '7904777'), + (864, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'rdOeYxEA', '8349164'), + (864, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'rdOeYxEA', '8349545'), + (864, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'rdOeYxEA', '8368028'), + (864, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'rdOeYxEA', '8368029'), + (864, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'rdOeYxEA', '8388462'), + (864, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'rdOeYxEA', '8400273'), + (864, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'rdOeYxEA', '8400275'), + (864, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'rdOeYxEA', '8400276'), + (864, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'rdOeYxEA', '8404977'), + (864, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'rdOeYxEA', '8430783'), + (864, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'rdOeYxEA', '8430784'), + (864, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'rdOeYxEA', '8430799'), + (864, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'rdOeYxEA', '8430800'), + (864, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'rdOeYxEA', '8430801'), + (864, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'rdOeYxEA', '8438709'), + (864, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'rdOeYxEA', '8457738'), + (864, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'rdOeYxEA', '8459566'), + (864, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'rdOeYxEA', '8459567'), + (864, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'rdOeYxEA', '8461032'), + (864, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'rdOeYxEA', '8477877'), + (864, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'rdOeYxEA', '8485688'), + (864, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'rdOeYxEA', '8490587'), + (864, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'rdOeYxEA', '8493552'), + (864, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'rdOeYxEA', '8493553'), + (864, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'rdOeYxEA', '8493554'), + (864, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'rdOeYxEA', '8493555'), + (864, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'rdOeYxEA', '8493556'), + (864, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'rdOeYxEA', '8493557'), + (864, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'rdOeYxEA', '8493558'), + (864, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'rdOeYxEA', '8493559'), + (864, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'rdOeYxEA', '8493560'), + (864, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'rdOeYxEA', '8493561'), + (864, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'rdOeYxEA', '8493572'), + (864, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'rdOeYxEA', '8540725'), + (864, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'rdOeYxEA', '8555421'), + (865, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4EKjz8Zm', '8485688'), + (865, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4EKjz8Zm', '8490587'), + (865, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4EKjz8Zm', '8493552'), + (865, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4EKjz8Zm', '8493553'), + (865, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4EKjz8Zm', '8493554'), + (865, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4EKjz8Zm', '8493555'), + (865, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4EKjz8Zm', '8493556'), + (865, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4EKjz8Zm', '8493557'), + (865, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4EKjz8Zm', '8493558'), + (865, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4EKjz8Zm', '8493559'), + (865, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4EKjz8Zm', '8493560'), + (865, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '4EKjz8Zm', '8493561'), + (865, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4EKjz8Zm', '8493572'), + (865, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', '4EKjz8Zm', '8529058'), + (866, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'd9oEzweA', '5186585'), + (866, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9oEzweA', '5190437'), + (866, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'd9oEzweA', '5195095'), + (866, 1285, 'maybe', '2022-03-26 00:53:57', '2025-12-17 19:47:25', 'd9oEzweA', '5196763'), + (866, 1288, 'attending', '2022-03-26 00:54:10', '2025-12-17 19:47:25', 'd9oEzweA', '5199460'), + (866, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9oEzweA', '5215989'), + (866, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd9oEzweA', '5223686'), + (866, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd9oEzweA', '5227432'), + (866, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'd9oEzweA', '5247467'), + (866, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd9oEzweA', '5260800'), + (866, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd9oEzweA', '5269930'), + (866, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd9oEzweA', '5271448'), + (866, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'd9oEzweA', '5271449'), + (866, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd9oEzweA', '5276469'), + (866, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd9oEzweA', '5278159'), + (866, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd9oEzweA', '5363695'), + (866, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd9oEzweA', '5365960'), + (866, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd9oEzweA', '5368973'), + (866, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd9oEzweA', '5378247'), + (866, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd9oEzweA', '5389605'), + (866, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd9oEzweA', '5397265'), + (866, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd9oEzweA', '5403967'), + (866, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd9oEzweA', '5404786'), + (866, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd9oEzweA', '5405203'), + (866, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'd9oEzweA', '5408794'), + (866, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd9oEzweA', '5411699'), + (866, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd9oEzweA', '5412550'), + (866, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd9oEzweA', '5415046'), + (866, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd9oEzweA', '5422086'), + (866, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd9oEzweA', '5422406'), + (866, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd9oEzweA', '5424565'), + (866, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd9oEzweA', '5426882'), + (866, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd9oEzweA', '5427083'), + (866, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd9oEzweA', '5441125'), + (866, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd9oEzweA', '5441126'), + (866, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd9oEzweA', '5441128'), + (866, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd9oEzweA', '5441131'), + (866, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'd9oEzweA', '5441132'), + (866, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd9oEzweA', '5446643'), + (866, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd9oEzweA', '5453325'), + (866, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd9oEzweA', '5454516'), + (866, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd9oEzweA', '5454605'), + (866, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd9oEzweA', '5455037'), + (866, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd9oEzweA', '5461278'), + (866, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd9oEzweA', '5469480'), + (866, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd9oEzweA', '5471073'), + (866, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd9oEzweA', '5474663'), + (866, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd9oEzweA', '5482022'), + (866, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd9oEzweA', '5482793'), + (866, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd9oEzweA', '5488912'), + (866, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd9oEzweA', '5492192'), + (866, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd9oEzweA', '5493139'), + (866, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd9oEzweA', '5493200'), + (866, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd9oEzweA', '5502188'), + (866, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd9oEzweA', '5505059'), + (866, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd9oEzweA', '5509055'), + (866, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd9oEzweA', '5512862'), + (866, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd9oEzweA', '5513985'), + (866, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd9oEzweA', '5519981'), + (866, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd9oEzweA', '5522550'), + (866, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd9oEzweA', '5534683'), + (866, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd9oEzweA', '5546619'), + (866, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd9oEzweA', '5555245'), + (866, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd9oEzweA', '5557747'), + (866, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9oEzweA', '6045684'), + (867, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4DMQRx3d', '7324082'), + (867, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4DMQRx3d', '7397462'), + (867, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4DMQRx3d', '7424275'), + (867, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4DMQRx3d', '7432751'), + (867, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4DMQRx3d', '7432752'), + (867, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4DMQRx3d', '7432753'), + (867, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4DMQRx3d', '7432754'), + (867, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4DMQRx3d', '7432755'), + (867, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4DMQRx3d', '7432756'), + (867, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4DMQRx3d', '7432758'), + (867, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4DMQRx3d', '7432759'), + (867, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4DMQRx3d', '7433834'), + (867, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4DMQRx3d', '7470197'), + (867, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4DMQRx3d', '7685613'), + (867, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4DMQRx3d', '7688194'), + (867, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4DMQRx3d', '7688196'), + (867, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4DMQRx3d', '7688289'), + (868, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Pm72e15d', '3236465'), + (868, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'Pm72e15d', '3539916'), + (868, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Pm72e15d', '3539918'), + (868, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Pm72e15d', '3539919'), + (868, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm72e15d', '3539920'), + (868, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm72e15d', '3539921'), + (868, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm72e15d', '3583262'), + (868, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm72e15d', '3661369'), + (868, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm72e15d', '3674262'), + (868, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm72e15d', '3677402'), + (868, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm72e15d', '3730212'), + (868, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm72e15d', '3793156'), + (868, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Pm72e15d', '3803310'), + (868, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Pm72e15d', '3806392'), + (868, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm72e15d', '6045684'), + (869, 1340, 'not_attending', '2022-04-28 01:59:35', '2025-12-17 19:47:27', 'mpQ6axqA', '5245754'), + (869, 1350, 'not_attending', '2022-04-20 14:17:09', '2025-12-17 19:47:27', 'mpQ6axqA', '5249763'), + (869, 1353, 'attending', '2022-04-21 00:06:17', '2025-12-17 19:47:27', 'mpQ6axqA', '5251777'), + (869, 1360, 'maybe', '2022-04-27 00:30:11', '2025-12-17 19:47:27', 'mpQ6axqA', '5260197'), + (869, 1362, 'attending', '2022-04-30 20:03:13', '2025-12-17 19:47:28', 'mpQ6axqA', '5260800'), + (869, 1364, 'maybe', '2022-05-02 17:48:45', '2025-12-17 19:47:28', 'mpQ6axqA', '5261598'), + (869, 1368, 'attending', '2022-05-05 18:06:52', '2025-12-17 19:47:28', 'mpQ6axqA', '5262783'), + (869, 1371, 'attending', '2022-04-27 21:19:41', '2025-12-17 19:47:27', 'mpQ6axqA', '5263784'), + (869, 1372, 'attending', '2022-05-04 20:12:07', '2025-12-17 19:47:28', 'mpQ6axqA', '5264352'), + (869, 1374, 'not_attending', '2022-05-07 17:28:22', '2025-12-17 19:47:28', 'mpQ6axqA', '5269930'), + (869, 1376, 'not_attending', '2022-05-12 20:03:13', '2025-12-17 19:47:28', 'mpQ6axqA', '5271446'), + (869, 1377, 'not_attending', '2022-05-12 20:03:17', '2025-12-17 19:47:28', 'mpQ6axqA', '5271447'), + (869, 1378, 'attending', '2022-05-14 01:36:19', '2025-12-17 19:47:29', 'mpQ6axqA', '5271448'), + (869, 1379, 'not_attending', '2022-05-22 14:53:54', '2025-12-17 19:47:30', 'mpQ6axqA', '5271449'), + (869, 1380, 'attending', '2022-05-28 14:43:35', '2025-12-17 19:47:30', 'mpQ6axqA', '5271450'), + (869, 1382, 'not_attending', '2022-05-09 21:53:56', '2025-12-17 19:47:28', 'mpQ6axqA', '5276350'), + (869, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mpQ6axqA', '5276469'), + (869, 1385, 'attending', '2022-05-11 21:08:23', '2025-12-17 19:47:28', 'mpQ6axqA', '5277822'), + (869, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mpQ6axqA', '5278159'), + (869, 1391, 'attending', '2022-05-08 18:02:36', '2025-12-17 19:47:28', 'mpQ6axqA', '5279531'), + (869, 1392, 'attending', '2022-05-10 22:45:25', '2025-12-17 19:47:28', 'mpQ6axqA', '5279532'), + (869, 1394, 'maybe', '2022-05-22 14:54:54', '2025-12-17 19:47:30', 'mpQ6axqA', '5280667'), + (869, 1401, 'attending', '2022-05-18 16:33:08', '2025-12-17 19:47:29', 'mpQ6axqA', '5286295'), + (869, 1403, 'attending', '2022-05-20 21:09:07', '2025-12-17 19:47:29', 'mpQ6axqA', '5288052'), + (869, 1407, 'attending', '2022-06-02 03:00:01', '2025-12-17 19:47:30', 'mpQ6axqA', '5363695'), + (869, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mpQ6axqA', '5365960'), + (869, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mpQ6axqA', '5368973'), + (869, 1416, 'not_attending', '2022-05-28 14:48:03', '2025-12-17 19:47:30', 'mpQ6axqA', '5369628'), + (869, 1419, 'attending', '2022-06-08 18:30:48', '2025-12-17 19:47:30', 'mpQ6axqA', '5373081'), + (869, 1421, 'not_attending', '2022-05-30 21:01:01', '2025-12-17 19:47:30', 'mpQ6axqA', '5374885'), + (869, 1423, 'maybe', '2022-06-15 14:01:31', '2025-12-17 19:47:17', 'mpQ6axqA', '5375727'), + (869, 1424, 'attending', '2022-05-23 22:50:04', '2025-12-17 19:47:30', 'mpQ6axqA', '5375772'), + (869, 1427, 'attending', '2022-05-25 19:19:08', '2025-12-17 19:47:30', 'mpQ6axqA', '5376074'), + (869, 1428, 'attending', '2022-06-10 13:10:52', '2025-12-17 19:47:30', 'mpQ6axqA', '5378247'), + (869, 1429, 'attending', '2022-05-29 13:02:49', '2025-12-17 19:47:30', 'mpQ6axqA', '5388761'), + (869, 1431, 'attending', '2022-06-10 13:12:57', '2025-12-17 19:47:30', 'mpQ6axqA', '5389605'), + (869, 1435, 'not_attending', '2022-05-31 21:59:31', '2025-12-17 19:47:30', 'mpQ6axqA', '5394015'), + (869, 1436, 'not_attending', '2022-06-02 23:15:45', '2025-12-17 19:47:30', 'mpQ6axqA', '5394292'), + (869, 1438, 'attending', '2022-06-01 18:39:10', '2025-12-17 19:47:30', 'mpQ6axqA', '5395032'), + (869, 1440, 'not_attending', '2022-06-07 22:43:53', '2025-12-17 19:47:30', 'mpQ6axqA', '5396080'), + (869, 1442, 'attending', '2022-06-18 02:01:29', '2025-12-17 19:47:17', 'mpQ6axqA', '5397265'), + (869, 1447, 'not_attending', '2022-06-08 22:19:07', '2025-12-17 19:47:30', 'mpQ6axqA', '5401089'), + (869, 1451, 'attending', '2022-06-14 13:51:55', '2025-12-17 19:47:17', 'mpQ6axqA', '5403967'), + (869, 1455, 'attending', '2022-06-10 13:12:06', '2025-12-17 19:47:31', 'mpQ6axqA', '5404772'), + (869, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mpQ6axqA', '5404786'), + (869, 1462, 'not_attending', '2022-06-13 12:38:49', '2025-12-17 19:47:17', 'mpQ6axqA', '5405203'), + (869, 1463, 'attending', '2022-06-14 23:01:13', '2025-12-17 19:47:31', 'mpQ6axqA', '5405208'), + (869, 1464, 'attending', '2022-06-10 19:43:25', '2025-12-17 19:47:30', 'mpQ6axqA', '5405212'), + (869, 1469, 'attending', '2022-06-20 21:52:58', '2025-12-17 19:47:17', 'mpQ6axqA', '5406838'), + (869, 1470, 'attending', '2022-06-13 12:37:55', '2025-12-17 19:47:17', 'mpQ6axqA', '5407053'), + (869, 1471, 'attending', '2022-06-21 23:06:29', '2025-12-17 19:47:17', 'mpQ6axqA', '5407063'), + (869, 1472, 'attending', '2022-06-18 21:05:11', '2025-12-17 19:47:17', 'mpQ6axqA', '5407065'), + (869, 1473, 'attending', '2022-06-14 13:57:35', '2025-12-17 19:47:31', 'mpQ6axqA', '5407267'), + (869, 1475, 'attending', '2022-06-15 14:01:19', '2025-12-17 19:47:17', 'mpQ6axqA', '5408108'), + (869, 1478, 'not_attending', '2022-06-24 17:38:13', '2025-12-17 19:47:19', 'mpQ6axqA', '5408794'), + (869, 1480, 'not_attending', '2022-06-21 23:27:10', '2025-12-17 19:47:19', 'mpQ6axqA', '5411699'), + (869, 1481, 'attending', '2022-06-19 16:21:39', '2025-12-17 19:47:17', 'mpQ6axqA', '5412237'), + (869, 1482, 'attending', '2022-06-19 16:19:17', '2025-12-17 19:47:19', 'mpQ6axqA', '5412550'), + (869, 1484, 'attending', '2022-06-21 15:12:24', '2025-12-17 19:47:17', 'mpQ6axqA', '5415046'), + (869, 1488, 'attending', '2022-07-04 01:39:12', '2025-12-17 19:47:19', 'mpQ6axqA', '5420154'), + (869, 1489, 'attending', '2022-06-30 22:09:12', '2025-12-17 19:47:19', 'mpQ6axqA', '5420155'), + (869, 1491, 'attending', '2022-06-30 22:09:26', '2025-12-17 19:47:19', 'mpQ6axqA', '5420158'), + (869, 1492, 'attending', '2022-06-30 22:09:16', '2025-12-17 19:47:19', 'mpQ6axqA', '5420175'), + (869, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mpQ6axqA', '5422086'), + (869, 1497, 'attending', '2022-06-28 19:07:19', '2025-12-17 19:47:19', 'mpQ6axqA', '5422405'), + (869, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mpQ6axqA', '5422406'), + (869, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mpQ6axqA', '5424565'), + (869, 1504, 'attending', '2022-07-12 18:15:44', '2025-12-17 19:47:19', 'mpQ6axqA', '5426882'), + (869, 1505, 'attending', '2022-07-03 13:24:51', '2025-12-17 19:47:19', 'mpQ6axqA', '5427083'), + (869, 1508, 'attending', '2022-07-09 14:40:53', '2025-12-17 19:47:19', 'mpQ6axqA', '5433453'), + (869, 1509, 'attending', '2022-07-03 13:22:15', '2025-12-17 19:47:19', 'mpQ6axqA', '5434019'), + (869, 1511, 'attending', '2022-07-07 01:55:37', '2025-12-17 19:47:19', 'mpQ6axqA', '5437733'), + (869, 1513, 'attending', '2022-07-11 13:17:48', '2025-12-17 19:47:19', 'mpQ6axqA', '5441125'), + (869, 1514, 'attending', '2022-07-19 02:55:13', '2025-12-17 19:47:20', 'mpQ6axqA', '5441126'), + (869, 1515, 'attending', '2022-07-26 18:26:10', '2025-12-17 19:47:21', 'mpQ6axqA', '5441128'), + (869, 1516, 'attending', '2022-08-15 16:24:56', '2025-12-17 19:47:23', 'mpQ6axqA', '5441129'), + (869, 1517, 'attending', '2022-08-21 13:17:47', '2025-12-17 19:47:23', 'mpQ6axqA', '5441130'), + (869, 1518, 'attending', '2022-08-28 17:55:48', '2025-12-17 19:47:24', 'mpQ6axqA', '5441131'), + (869, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mpQ6axqA', '5441132'), + (869, 1521, 'not_attending', '2022-07-10 15:30:09', '2025-12-17 19:47:19', 'mpQ6axqA', '5442180'), + (869, 1524, 'attending', '2022-07-11 15:51:19', '2025-12-17 19:47:19', 'mpQ6axqA', '5443300'), + (869, 1525, 'attending', '2022-07-12 21:47:51', '2025-12-17 19:47:19', 'mpQ6axqA', '5444962'), + (869, 1526, 'not_attending', '2022-07-13 00:53:48', '2025-12-17 19:47:20', 'mpQ6axqA', '5445059'), + (869, 1528, 'attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mpQ6axqA', '5446643'), + (869, 1535, 'maybe', '2022-07-16 12:56:22', '2025-12-17 19:47:20', 'mpQ6axqA', '5448830'), + (869, 1537, 'attending', '2022-07-17 13:44:23', '2025-12-17 19:47:20', 'mpQ6axqA', '5449117'), + (869, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mpQ6axqA', '5453325'), + (869, 1541, 'attending', '2022-07-25 18:51:13', '2025-12-17 19:47:20', 'mpQ6axqA', '5453542'), + (869, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mpQ6axqA', '5454516'), + (869, 1544, 'not_attending', '2022-09-11 22:47:10', '2025-12-17 19:47:11', 'mpQ6axqA', '5454517'), + (869, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mpQ6axqA', '5454605'), + (869, 1546, 'attending', '2022-07-21 23:06:57', '2025-12-17 19:47:20', 'mpQ6axqA', '5454607'), + (869, 1550, 'attending', '2022-07-21 23:06:47', '2025-12-17 19:47:20', 'mpQ6axqA', '5454803'), + (869, 1551, 'attending', '2022-07-19 22:16:28', '2025-12-17 19:47:20', 'mpQ6axqA', '5455037'), + (869, 1554, 'attending', '2022-07-20 12:55:08', '2025-12-17 19:47:20', 'mpQ6axqA', '5455230'), + (869, 1556, 'not_attending', '2022-07-23 13:52:06', '2025-12-17 19:47:20', 'mpQ6axqA', '5457734'), + (869, 1557, 'attending', '2022-07-29 16:01:03', '2025-12-17 19:47:21', 'mpQ6axqA', '5458729'), + (869, 1558, 'attending', '2022-09-06 18:10:52', '2025-12-17 19:47:10', 'mpQ6axqA', '5458730'), + (869, 1559, 'attending', '2022-09-26 22:43:55', '2025-12-17 19:47:11', 'mpQ6axqA', '5458731'), + (869, 1561, 'attending', '2022-07-27 21:29:30', '2025-12-17 19:47:22', 'mpQ6axqA', '5461278'), + (869, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mpQ6axqA', '5469480'), + (869, 1565, 'attending', '2022-07-27 01:30:12', '2025-12-17 19:47:21', 'mpQ6axqA', '5471073'), + (869, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mpQ6axqA', '5474663'), + (869, 1571, 'attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mpQ6axqA', '5482022'), + (869, 1573, 'not_attending', '2022-08-01 20:45:32', '2025-12-17 19:47:22', 'mpQ6axqA', '5482152'), + (869, 1574, 'not_attending', '2022-08-01 20:45:40', '2025-12-17 19:47:22', 'mpQ6axqA', '5482153'), + (869, 1575, 'attending', '2022-08-21 13:17:10', '2025-12-17 19:47:23', 'mpQ6axqA', '5482250'), + (869, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mpQ6axqA', '5482793'), + (869, 1579, 'maybe', '2022-08-04 13:40:45', '2025-12-17 19:47:22', 'mpQ6axqA', '5486019'), + (869, 1580, 'attending', '2022-08-06 19:53:26', '2025-12-17 19:47:22', 'mpQ6axqA', '5488912'), + (869, 1581, 'attending', '2022-08-10 00:06:09', '2025-12-17 19:47:22', 'mpQ6axqA', '5490302'), + (869, 1582, 'maybe', '2022-08-08 02:14:12', '2025-12-17 19:47:23', 'mpQ6axqA', '5492001'), + (869, 1583, 'attending', '2022-08-07 22:07:50', '2025-12-17 19:47:22', 'mpQ6axqA', '5492002'), + (869, 1584, 'not_attending', '2022-08-08 22:03:50', '2025-12-17 19:47:23', 'mpQ6axqA', '5492004'), + (869, 1585, 'attending', '2022-08-07 21:31:48', '2025-12-17 19:47:22', 'mpQ6axqA', '5492013'), + (869, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mpQ6axqA', '5492192'), + (869, 1588, 'attending', '2022-08-08 19:49:57', '2025-12-17 19:47:22', 'mpQ6axqA', '5493139'), + (869, 1589, 'attending', '2022-08-18 19:36:39', '2025-12-17 19:47:23', 'mpQ6axqA', '5493159'), + (869, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'mpQ6axqA', '5493200'), + (869, 1595, 'attending', '2022-08-09 23:20:49', '2025-12-17 19:47:22', 'mpQ6axqA', '5495736'), + (869, 1598, 'attending', '2022-08-10 20:51:01', '2025-12-17 19:47:22', 'mpQ6axqA', '5496567'), + (869, 1603, 'attending', '2022-08-14 04:14:03', '2025-12-17 19:47:23', 'mpQ6axqA', '5497895'), + (869, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mpQ6axqA', '5502188'), + (869, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mpQ6axqA', '5505059'), + (869, 1609, 'maybe', '2022-08-27 11:55:37', '2025-12-17 19:47:23', 'mpQ6axqA', '5506590'), + (869, 1610, 'attending', '2022-08-27 11:55:45', '2025-12-17 19:47:23', 'mpQ6axqA', '5506595'), + (869, 1615, 'attending', '2022-08-26 00:36:57', '2025-12-17 19:47:23', 'mpQ6axqA', '5509055'), + (869, 1618, 'not_attending', '2022-08-26 00:28:55', '2025-12-17 19:47:23', 'mpQ6axqA', '5512005'), + (869, 1619, 'maybe', '2022-08-23 18:27:31', '2025-12-17 19:47:23', 'mpQ6axqA', '5512862'), + (869, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mpQ6axqA', '5513985'), + (869, 1626, 'attending', '2022-08-26 18:44:43', '2025-12-17 19:47:11', 'mpQ6axqA', '5519981'), + (869, 1629, 'maybe', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mpQ6axqA', '5522550'), + (869, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mpQ6axqA', '5534683'), + (869, 1635, 'not_attending', '2022-09-09 17:55:41', '2025-12-17 19:47:10', 'mpQ6axqA', '5537735'), + (869, 1636, 'attending', '2022-09-03 18:37:50', '2025-12-17 19:47:24', 'mpQ6axqA', '5538454'), + (869, 1638, 'attending', '2022-08-30 23:37:17', '2025-12-17 19:47:24', 'mpQ6axqA', '5540402'), + (869, 1639, 'attending', '2022-08-30 23:37:10', '2025-12-17 19:47:24', 'mpQ6axqA', '5540403'), + (869, 1640, 'attending', '2022-09-07 00:11:21', '2025-12-17 19:47:10', 'mpQ6axqA', '5540859'), + (869, 1642, 'not_attending', '2022-09-01 19:42:10', '2025-12-17 19:47:24', 'mpQ6axqA', '5544227'), + (869, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mpQ6axqA', '5546619'), + (869, 1648, 'not_attending', '2022-09-03 18:37:30', '2025-12-17 19:47:24', 'mpQ6axqA', '5548974'), + (869, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mpQ6axqA', '5555245'), + (869, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mpQ6axqA', '5557747'), + (869, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpQ6axqA', '5560255'), + (869, 1664, 'attending', '2022-09-10 18:47:40', '2025-12-17 19:47:25', 'mpQ6axqA', '5562906'), + (869, 1666, 'attending', '2022-09-26 22:42:41', '2025-12-17 19:47:11', 'mpQ6axqA', '5563208'), + (869, 1667, 'not_attending', '2022-09-21 19:44:00', '2025-12-17 19:47:11', 'mpQ6axqA', '5563221'), + (869, 1668, 'not_attending', '2022-09-18 21:10:49', '2025-12-17 19:47:12', 'mpQ6axqA', '5563222'), + (869, 1673, 'not_attending', '2022-09-21 19:45:19', '2025-12-17 19:47:11', 'mpQ6axqA', '5592454'), + (869, 1677, 'attending', '2022-09-22 01:31:37', '2025-12-17 19:47:11', 'mpQ6axqA', '5600604'), + (869, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpQ6axqA', '5605544'), + (869, 1699, 'attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'mpQ6axqA', '5606737'), + (869, 1704, 'attending', '2022-10-06 22:18:27', '2025-12-17 19:47:12', 'mpQ6axqA', '5610508'), + (869, 1708, 'attending', '2022-10-02 15:04:02', '2025-12-17 19:47:12', 'mpQ6axqA', '5617648'), + (869, 1711, 'attending', '2022-10-02 21:11:40', '2025-12-17 19:47:12', 'mpQ6axqA', '5621883'), + (869, 1714, 'attending', '2022-10-02 21:11:48', '2025-12-17 19:47:14', 'mpQ6axqA', '5622347'), + (869, 1717, 'not_attending', '2022-10-18 20:07:59', '2025-12-17 19:47:13', 'mpQ6axqA', '5622842'), + (869, 1718, 'not_attending', '2022-10-18 20:07:29', '2025-12-17 19:47:12', 'mpQ6axqA', '5630907'), + (869, 1719, 'attending', '2022-10-05 20:14:24', '2025-12-17 19:47:12', 'mpQ6axqA', '5630958'), + (869, 1720, 'not_attending', '2022-10-09 11:55:38', '2025-12-17 19:47:12', 'mpQ6axqA', '5630959'), + (869, 1721, 'maybe', '2022-10-09 11:55:41', '2025-12-17 19:47:13', 'mpQ6axqA', '5630960'), + (869, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mpQ6axqA', '5630961'), + (869, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mpQ6axqA', '5630962'), + (869, 1724, 'maybe', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mpQ6axqA', '5630966'), + (869, 1725, 'attending', '2022-11-12 00:02:40', '2025-12-17 19:47:16', 'mpQ6axqA', '5630967'), + (869, 1726, 'maybe', '2022-11-16 00:30:35', '2025-12-17 19:47:16', 'mpQ6axqA', '5630968'), + (869, 1727, 'maybe', '2022-12-03 03:40:13', '2025-12-17 19:47:16', 'mpQ6axqA', '5630969'), + (869, 1728, 'maybe', '2022-11-27 16:28:15', '2025-12-17 19:47:17', 'mpQ6axqA', '5630970'), + (869, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpQ6axqA', '5635406'), + (869, 1736, 'attending', '2022-10-31 17:00:33', '2025-12-17 19:47:15', 'mpQ6axqA', '5638456'), + (869, 1737, 'attending', '2022-11-28 19:49:03', '2025-12-17 19:47:16', 'mpQ6axqA', '5638457'), + (869, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpQ6axqA', '5638765'), + (869, 1739, 'attending', '2022-10-24 17:50:20', '2025-12-17 19:47:14', 'mpQ6axqA', '5640097'), + (869, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mpQ6axqA', '5640843'), + (869, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mpQ6axqA', '5641521'), + (869, 1744, 'attending', '2022-11-16 00:29:54', '2025-12-17 19:47:16', 'mpQ6axqA', '5642818'), + (869, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mpQ6axqA', '5652395'), + (869, 1761, 'attending', '2022-11-08 21:52:32', '2025-12-17 19:47:16', 'mpQ6axqA', '5670434'), + (869, 1762, 'attending', '2022-11-27 16:26:35', '2025-12-17 19:47:16', 'mpQ6axqA', '5670445'), + (869, 1763, 'attending', '2022-11-07 15:19:09', '2025-12-17 19:47:15', 'mpQ6axqA', '5670803'), + (869, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mpQ6axqA', '5671637'), + (869, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mpQ6axqA', '5672329'), + (869, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mpQ6axqA', '5674057'), + (869, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mpQ6axqA', '5674060'), + (869, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mpQ6axqA', '5677461'), + (869, 1774, 'not_attending', '2022-11-01 21:52:53', '2025-12-17 19:47:15', 'mpQ6axqA', '5677843'), + (869, 1776, 'not_attending', '2022-11-07 15:18:18', '2025-12-17 19:47:15', 'mpQ6axqA', '5691067'), + (869, 1777, 'maybe', '2022-11-01 21:51:34', '2025-12-17 19:47:15', 'mpQ6axqA', '5693021'), + (869, 1779, 'attending', '2022-11-01 22:17:52', '2025-12-17 19:47:15', 'mpQ6axqA', '5694252'), + (869, 1781, 'attending', '2022-11-02 02:25:31', '2025-12-17 19:47:15', 'mpQ6axqA', '5696178'), + (869, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mpQ6axqA', '5698046'), + (869, 1784, 'maybe', '2022-11-12 16:04:42', '2025-12-17 19:47:15', 'mpQ6axqA', '5699760'), + (869, 1792, 'attending', '2022-11-07 15:04:11', '2025-12-17 19:47:15', 'mpQ6axqA', '5728512'), + (869, 1793, 'attending', '2022-11-16 00:30:24', '2025-12-17 19:47:16', 'mpQ6axqA', '5736365'), + (869, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mpQ6axqA', '5741601'), + (869, 1797, 'maybe', '2022-12-06 01:21:43', '2025-12-17 19:47:17', 'mpQ6axqA', '5757486'), + (869, 1798, 'maybe', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mpQ6axqA', '5763458'), + (869, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mpQ6axqA', '5774172'), + (869, 1825, 'maybe', '2022-11-27 16:26:17', '2025-12-17 19:47:16', 'mpQ6axqA', '5776760'), + (869, 1828, 'not_attending', '2022-11-28 22:04:15', '2025-12-17 19:47:16', 'mpQ6axqA', '5778865'), + (869, 1829, 'not_attending', '2022-12-01 04:56:02', '2025-12-17 19:47:16', 'mpQ6axqA', '5778867'), + (869, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mpQ6axqA', '5818247'), + (869, 1834, 'not_attending', '2022-12-06 01:21:56', '2025-12-17 19:47:17', 'mpQ6axqA', '5819470'), + (869, 1835, 'attending', '2022-12-06 01:21:51', '2025-12-17 19:47:05', 'mpQ6axqA', '5819471'), + (869, 1837, 'attending', '2022-12-06 01:21:27', '2025-12-17 19:47:16', 'mpQ6axqA', '5820146'), + (869, 1838, 'maybe', '2022-12-06 13:58:39', '2025-12-17 19:47:16', 'mpQ6axqA', '5821722'), + (869, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mpQ6axqA', '5827739'), + (869, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mpQ6axqA', '5844306'), + (869, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mpQ6axqA', '5850159'), + (869, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mpQ6axqA', '5858999'), + (869, 1852, 'maybe', '2023-01-09 15:04:14', '2025-12-17 19:47:05', 'mpQ6axqA', '5869898'), + (869, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mpQ6axqA', '5871984'), + (869, 1859, 'not_attending', '2023-01-16 02:14:19', '2025-12-17 19:47:05', 'mpQ6axqA', '5876234'), + (869, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mpQ6axqA', '5876354'), + (869, 1864, 'maybe', '2023-01-20 02:22:29', '2025-12-17 19:47:05', 'mpQ6axqA', '5879675'), + (869, 1865, 'maybe', '2023-01-21 20:06:24', '2025-12-17 19:47:06', 'mpQ6axqA', '5879676'), + (869, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mpQ6axqA', '5880939'), + (869, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mpQ6axqA', '5880940'), + (869, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mpQ6axqA', '5880942'), + (869, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mpQ6axqA', '5880943'), + (869, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mpQ6axqA', '5887890'), + (869, 1875, 'maybe', '2023-01-27 14:11:27', '2025-12-17 19:47:06', 'mpQ6axqA', '5887908'), + (869, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mpQ6axqA', '5888598'), + (869, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mpQ6axqA', '5893260'), + (869, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mpQ6axqA', '5899826'), + (869, 1885, 'maybe', '2023-02-24 01:30:51', '2025-12-17 19:47:08', 'mpQ6axqA', '5899928'), + (869, 1888, 'maybe', '2023-02-14 01:09:53', '2025-12-17 19:47:07', 'mpQ6axqA', '5900197'), + (869, 1889, 'attending', '2023-02-06 02:33:12', '2025-12-17 19:47:07', 'mpQ6axqA', '5900199'), + (869, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mpQ6axqA', '5900200'), + (869, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mpQ6axqA', '5900202'), + (869, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mpQ6axqA', '5900203'), + (869, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mpQ6axqA', '5901108'), + (869, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mpQ6axqA', '5901126'), + (869, 1897, 'attending', '2023-02-06 02:33:29', '2025-12-17 19:47:07', 'mpQ6axqA', '5901128'), + (869, 1898, 'attending', '2023-02-01 22:52:56', '2025-12-17 19:47:06', 'mpQ6axqA', '5901263'), + (869, 1899, 'not_attending', '2023-02-06 02:33:22', '2025-12-17 19:47:07', 'mpQ6axqA', '5901323'), + (869, 1910, 'maybe', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mpQ6axqA', '5909655'), + (869, 1912, 'not_attending', '2023-02-14 01:09:43', '2025-12-17 19:47:07', 'mpQ6axqA', '5909808'), + (869, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mpQ6axqA', '5910522'), + (869, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mpQ6axqA', '5910526'), + (869, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mpQ6axqA', '5910528'), + (869, 1922, 'attending', '2023-02-14 01:10:26', '2025-12-17 19:47:07', 'mpQ6axqA', '5916219'), + (869, 1927, 'maybe', '2023-03-10 01:37:11', '2025-12-17 19:47:10', 'mpQ6axqA', '5932621'), + (869, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mpQ6axqA', '5936234'), + (869, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mpQ6axqA', '5958351'), + (869, 1938, 'maybe', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mpQ6axqA', '5959751'), + (869, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mpQ6axqA', '5959755'), + (869, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mpQ6axqA', '5960055'), + (869, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mpQ6axqA', '5961684'), + (869, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mpQ6axqA', '5962132'), + (869, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mpQ6axqA', '5962133'), + (869, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mpQ6axqA', '5962134'), + (869, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mpQ6axqA', '5962317'), + (869, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mpQ6axqA', '5962318'), + (869, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mpQ6axqA', '5965933'), + (869, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mpQ6axqA', '5967014'), + (869, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mpQ6axqA', '5972815'), + (869, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mpQ6axqA', '5974016'), + (869, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mpQ6axqA', '5981515'), + (869, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mpQ6axqA', '5993516'), + (869, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mpQ6axqA', '5998939'), + (869, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mpQ6axqA', '6028191'), + (869, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mpQ6axqA', '6040066'), + (869, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mpQ6axqA', '6042717'), + (869, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mpQ6axqA', '6044838'), + (869, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mpQ6axqA', '6044839'), + (869, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpQ6axqA', '6045684'), + (869, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mpQ6axqA', '6050104'), + (869, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mpQ6axqA', '6053195'), + (869, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mpQ6axqA', '6053198'), + (869, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mpQ6axqA', '6056085'), + (869, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mpQ6axqA', '6056916'), + (869, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mpQ6axqA', '6059290'), + (869, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mpQ6axqA', '6060328'), + (869, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mpQ6axqA', '6061037'), + (869, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mpQ6axqA', '6061039'), + (869, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mpQ6axqA', '6067245'), + (869, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mpQ6axqA', '6068094'), + (869, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mpQ6axqA', '6068252'), + (869, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mpQ6axqA', '6068253'), + (869, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mpQ6axqA', '6068254'), + (869, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mpQ6axqA', '6068280'), + (869, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mpQ6axqA', '6069093'), + (869, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mpQ6axqA', '6072528'), + (869, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mpQ6axqA', '6079840'), + (869, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mpQ6axqA', '6083398'), + (869, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mpQ6axqA', '6093504'), + (869, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mpQ6axqA', '6097414'), + (869, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mpQ6axqA', '6097442'), + (869, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mpQ6axqA', '6097684'), + (869, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mpQ6axqA', '6098762'), + (869, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mpQ6axqA', '6101361'), + (869, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mpQ6axqA', '6101362'), + (869, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mpQ6axqA', '6103752'), + (869, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mpQ6axqA', '6107314'), + (869, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mpQ6axqA', '6120034'), + (869, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mpQ6axqA', '6136733'), + (869, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mpQ6axqA', '6137989'), + (869, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mpQ6axqA', '6150864'), + (869, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mpQ6axqA', '6155491'), + (869, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mpQ6axqA', '6164417'), + (869, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mpQ6axqA', '6166388'), + (869, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mpQ6axqA', '6176439'), + (869, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mpQ6axqA', '6182410'), + (869, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mpQ6axqA', '6185812'), + (869, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mpQ6axqA', '6187651'), + (869, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mpQ6axqA', '6187963'), + (869, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mpQ6axqA', '6187964'), + (869, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mpQ6axqA', '6187966'), + (869, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mpQ6axqA', '6187967'), + (869, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mpQ6axqA', '6187969'), + (869, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mpQ6axqA', '6334878'), + (869, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mpQ6axqA', '6337236'), + (869, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mpQ6axqA', '6337970'), + (869, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mpQ6axqA', '6338308'), + (869, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mpQ6axqA', '6340845'), + (869, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mpQ6axqA', '6341710'), + (869, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mpQ6axqA', '6342044'), + (869, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mpQ6axqA', '6342298'), + (869, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mpQ6axqA', '6343294'), + (869, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mpQ6axqA', '6347034'), + (869, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mpQ6axqA', '6347056'), + (869, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mpQ6axqA', '6353830'), + (869, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mpQ6axqA', '6353831'), + (869, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mpQ6axqA', '6357867'), + (869, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mpQ6axqA', '6358652'), + (869, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mpQ6axqA', '6361709'), + (869, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mpQ6axqA', '6361710'), + (869, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mpQ6axqA', '6361711'), + (869, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mpQ6axqA', '6361712'), + (869, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mpQ6axqA', '6361713'), + (869, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mpQ6axqA', '6382573'), + (869, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mpQ6axqA', '6388604'), + (869, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mpQ6axqA', '6394629'), + (869, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mpQ6axqA', '6394631'), + (869, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mpQ6axqA', '6440863'), + (869, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mpQ6axqA', '6445440'), + (869, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mpQ6axqA', '6453951'), + (869, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mpQ6axqA', '6461696'), + (869, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mpQ6axqA', '6462129'), + (869, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mpQ6axqA', '6463218'), + (869, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mpQ6axqA', '6472181'), + (869, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mpQ6axqA', '6482693'), + (869, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mpQ6axqA', '6484200'), + (869, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mpQ6axqA', '6484680'), + (869, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mpQ6axqA', '6507741'), + (869, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mpQ6axqA', '6514659'), + (869, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mpQ6axqA', '6514660'), + (869, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mpQ6axqA', '6519103'), + (869, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mpQ6axqA', '6535681'), + (869, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mpQ6axqA', '6584747'), + (869, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mpQ6axqA', '6587097'), + (869, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mpQ6axqA', '6609022'), + (869, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mpQ6axqA', '6632757'), + (869, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mpQ6axqA', '6644187'), + (869, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mpQ6axqA', '6648951'), + (869, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mpQ6axqA', '6648952'), + (869, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mpQ6axqA', '6655401'), + (869, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mpQ6axqA', '6661585'), + (869, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mpQ6axqA', '6661588'), + (869, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mpQ6axqA', '6661589'), + (869, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mpQ6axqA', '6699906'), + (869, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mpQ6axqA', '6701109'), + (869, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mpQ6axqA', '6705219'), + (869, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mpQ6axqA', '6710153'), + (869, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mpQ6axqA', '6711552'), + (869, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'mpQ6axqA', '6711553'), + (870, 1724, 'attending', '2022-11-10 04:42:58', '2025-12-17 19:47:15', 'daDEYVl4', '5630966'), + (870, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'daDEYVl4', '5630967'), + (870, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'daDEYVl4', '5630968'), + (870, 1727, 'attending', '2022-11-26 21:32:25', '2025-12-17 19:47:16', 'daDEYVl4', '5630969'), + (870, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'daDEYVl4', '5642818'), + (870, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'daDEYVl4', '5670445'), + (870, 1780, 'not_attending', '2022-11-10 03:41:27', '2025-12-17 19:47:15', 'daDEYVl4', '5696082'), + (870, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'daDEYVl4', '5699760'), + (870, 1786, 'attending', '2022-11-10 03:37:22', '2025-12-17 19:47:15', 'daDEYVl4', '5727232'), + (870, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'daDEYVl4', '5741601'), + (870, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'daDEYVl4', '5763458'), + (870, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'daDEYVl4', '5774172'), + (870, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'daDEYVl4', '5818247'), + (870, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'daDEYVl4', '5819471'), + (870, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'daDEYVl4', '5827739'), + (870, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'daDEYVl4', '5844306'), + (870, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'daDEYVl4', '5850159'), + (870, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'daDEYVl4', '5858999'), + (870, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'daDEYVl4', '5871984'), + (870, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'daDEYVl4', '5876354'), + (870, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'daDEYVl4', '5880939'), + (870, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'daDEYVl4', '5887890'), + (870, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'daDEYVl4', '5888598'), + (870, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'daDEYVl4', '5893260'), + (870, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'daDEYVl4', '6044839'), + (870, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daDEYVl4', '6045684'), + (870, 2013, 'attending', '2023-04-14 17:47:35', '2025-12-17 19:46:59', 'daDEYVl4', '6060328'), + (870, 2015, 'not_attending', '2023-04-20 02:17:20', '2025-12-17 19:47:00', 'daDEYVl4', '6061037'), + (870, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'daDEYVl4', '6061039'), + (870, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'daDEYVl4', '6067245'), + (870, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'daDEYVl4', '6068094'), + (870, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'daDEYVl4', '6068252'), + (870, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'daDEYVl4', '6068253'), + (870, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'daDEYVl4', '6068254'), + (870, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'daDEYVl4', '6068280'), + (870, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'daDEYVl4', '6069093'), + (870, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'daDEYVl4', '6072528'), + (870, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'daDEYVl4', '6079840'), + (870, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'daDEYVl4', '6083398'), + (870, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'daDEYVl4', '6093504'), + (870, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'daDEYVl4', '6097414'), + (870, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'daDEYVl4', '6097442'), + (870, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'daDEYVl4', '6097684'), + (870, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'daDEYVl4', '6098762'), + (870, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'daDEYVl4', '6101361'), + (870, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'daDEYVl4', '6101362'), + (870, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'daDEYVl4', '6103752'), + (870, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'daDEYVl4', '6107314'), + (870, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'daDEYVl4', '6120034'), + (870, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'daDEYVl4', '6136733'), + (870, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'daDEYVl4', '6137989'), + (870, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'daDEYVl4', '6150864'), + (870, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'daDEYVl4', '6155491'), + (870, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'daDEYVl4', '6164417'), + (870, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'daDEYVl4', '6166388'), + (870, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'daDEYVl4', '6176439'), + (870, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'daDEYVl4', '6182410'), + (870, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'daDEYVl4', '6185812'), + (870, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'daDEYVl4', '6187651'), + (870, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'daDEYVl4', '6187963'), + (870, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'daDEYVl4', '6187964'), + (870, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'daDEYVl4', '6187966'), + (870, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'daDEYVl4', '6187967'), + (870, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'daDEYVl4', '6187969'), + (870, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'daDEYVl4', '6334878'), + (870, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'daDEYVl4', '6337236'), + (870, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'daDEYVl4', '6337970'), + (870, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'daDEYVl4', '6338308'), + (870, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'daDEYVl4', '6341710'), + (870, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'daDEYVl4', '6342044'), + (870, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'daDEYVl4', '6342298'), + (870, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'daDEYVl4', '6343294'), + (870, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'daDEYVl4', '6347034'), + (870, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'daDEYVl4', '6347056'), + (870, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'daDEYVl4', '6353830'), + (870, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'daDEYVl4', '6353831'), + (870, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'daDEYVl4', '6357867'), + (870, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'daDEYVl4', '6358652'), + (870, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'daDEYVl4', '6361709'), + (870, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'daDEYVl4', '6361710'), + (870, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'daDEYVl4', '6361711'), + (870, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'daDEYVl4', '6361712'), + (870, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'daDEYVl4', '6361713'), + (870, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'daDEYVl4', '6382573'), + (870, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'daDEYVl4', '6388604'), + (870, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'daDEYVl4', '6394629'), + (870, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'daDEYVl4', '6394631'), + (870, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'daDEYVl4', '6440863'), + (870, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'daDEYVl4', '6445440'), + (870, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'daDEYVl4', '6453951'), + (870, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'daDEYVl4', '6461696'), + (870, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'daDEYVl4', '6462129'), + (870, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'daDEYVl4', '6463218'), + (870, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'daDEYVl4', '6472181'), + (870, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'daDEYVl4', '6482693'), + (870, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'daDEYVl4', '6484200'), + (870, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'daDEYVl4', '6484680'), + (870, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'daDEYVl4', '6507741'), + (870, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'daDEYVl4', '6514659'), + (870, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'daDEYVl4', '6514660'), + (870, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'daDEYVl4', '6519103'), + (870, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'daDEYVl4', '6535681'), + (870, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'daDEYVl4', '6584747'), + (870, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'daDEYVl4', '6587097'), + (870, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'daDEYVl4', '6609022'), + (870, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'daDEYVl4', '6632757'), + (870, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'daDEYVl4', '6644187'), + (870, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'daDEYVl4', '6648951'), + (870, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'daDEYVl4', '6648952'), + (870, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'daDEYVl4', '6655401'), + (870, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'daDEYVl4', '6661585'), + (870, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'daDEYVl4', '6661588'), + (870, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'daDEYVl4', '6661589'), + (870, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'daDEYVl4', '6699906'), + (870, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'daDEYVl4', '6699913'), + (870, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'daDEYVl4', '6701109'), + (870, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'daDEYVl4', '6705219'), + (870, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'daDEYVl4', '6710153'), + (870, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'daDEYVl4', '6711552'), + (870, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'daDEYVl4', '6711553'), + (870, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'daDEYVl4', '6722688'), + (870, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'daDEYVl4', '6730620'), + (870, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'daDEYVl4', '6740364'), + (870, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'daDEYVl4', '6743829'), + (870, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'daDEYVl4', '7030380'), + (870, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'daDEYVl4', '7033677'), + (870, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'daDEYVl4', '7044715'), + (870, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'daDEYVl4', '7050318'), + (870, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'daDEYVl4', '7050319'), + (870, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'daDEYVl4', '7050322'), + (870, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'daDEYVl4', '7057804'), + (870, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'daDEYVl4', '7072824'), + (870, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'daDEYVl4', '7074348'), + (870, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'daDEYVl4', '7074364'), + (870, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'daDEYVl4', '7089267'), + (870, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'daDEYVl4', '7098747'), + (870, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'daDEYVl4', '7113468'), + (870, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'daDEYVl4', '7114856'), + (870, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'daDEYVl4', '7114951'), + (870, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'daDEYVl4', '7114955'), + (870, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'daDEYVl4', '7114956'), + (870, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'daDEYVl4', '7114957'), + (870, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'daDEYVl4', '7159484'), + (870, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'daDEYVl4', '7178446'), + (870, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'daDEYVl4', '7220467'), + (870, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'daDEYVl4', '7240354'), + (870, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'daDEYVl4', '7251633'), + (870, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'daDEYVl4', '7324073'), + (870, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'daDEYVl4', '7324074'), + (870, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'daDEYVl4', '7324075'), + (870, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'daDEYVl4', '7324078'), + (870, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'daDEYVl4', '7324082'), + (870, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'daDEYVl4', '7331457'), + (870, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'daDEYVl4', '7363643'), + (870, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'daDEYVl4', '7368606'), + (870, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'daDEYVl4', '7397462'), + (870, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'daDEYVl4', '7424275'), + (870, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'daDEYVl4', '7432751'), + (870, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'daDEYVl4', '7432752'), + (870, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'daDEYVl4', '7432753'), + (870, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'daDEYVl4', '7432754'), + (870, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'daDEYVl4', '7432755'), + (870, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'daDEYVl4', '7432756'), + (870, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'daDEYVl4', '7432758'), + (870, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'daDEYVl4', '7432759'), + (870, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'daDEYVl4', '7433834'), + (870, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'daDEYVl4', '7470197'), + (870, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'daDEYVl4', '7685613'), + (870, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'daDEYVl4', '7688194'), + (870, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'daDEYVl4', '7688196'), + (870, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'daDEYVl4', '7688289'), + (870, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'daDEYVl4', '7692763'), + (870, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'daDEYVl4', '7697552'), + (870, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'daDEYVl4', '7699878'), + (870, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'daDEYVl4', '7704043'), + (870, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'daDEYVl4', '7712467'), + (870, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'daDEYVl4', '7713585'), + (870, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'daDEYVl4', '7713586'), + (870, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'daDEYVl4', '7738518'), + (870, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'daDEYVl4', '7750636'), + (870, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'daDEYVl4', '7796540'), + (870, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'daDEYVl4', '7796541'), + (870, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'daDEYVl4', '7796542'), + (870, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'daDEYVl4', '7825913'), + (870, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'daDEYVl4', '7826209'), + (870, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'daDEYVl4', '7834742'), + (870, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'daDEYVl4', '7842108'), + (870, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'daDEYVl4', '7842902'), + (870, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'daDEYVl4', '7842903'), + (870, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'daDEYVl4', '7842904'), + (870, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'daDEYVl4', '7842905'), + (870, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'daDEYVl4', '7855719'), + (870, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'daDEYVl4', '7860683'), + (870, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'daDEYVl4', '7860684'), + (870, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'daDEYVl4', '7866095'), + (870, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'daDEYVl4', '7869170'), + (870, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'daDEYVl4', '7869188'), + (870, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'daDEYVl4', '7869201'), + (870, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'daDEYVl4', '7877465'), + (870, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'daDEYVl4', '7888250'), + (870, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'daDEYVl4', '7904777'), + (870, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'daDEYVl4', '8349164'), + (870, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'daDEYVl4', '8349545'), + (870, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'daDEYVl4', '8368028'), + (870, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'daDEYVl4', '8368029'), + (870, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'daDEYVl4', '8388462'), + (870, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'daDEYVl4', '8400273'), + (870, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'daDEYVl4', '8400275'), + (870, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'daDEYVl4', '8400276'), + (870, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'daDEYVl4', '8404977'), + (870, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'daDEYVl4', '8430783'), + (870, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'daDEYVl4', '8430784'), + (870, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'daDEYVl4', '8430799'), + (870, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'daDEYVl4', '8430800'), + (870, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'daDEYVl4', '8430801'), + (870, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'daDEYVl4', '8438709'), + (870, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'daDEYVl4', '8457738'), + (870, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'daDEYVl4', '8459566'), + (870, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'daDEYVl4', '8459567'), + (870, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'daDEYVl4', '8461032'), + (870, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'daDEYVl4', '8477877'), + (870, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'daDEYVl4', '8485688'), + (870, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'daDEYVl4', '8490587'), + (870, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'daDEYVl4', '8493552'), + (870, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'daDEYVl4', '8493553'), + (870, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'daDEYVl4', '8493554'), + (870, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'daDEYVl4', '8493555'), + (870, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'daDEYVl4', '8493556'), + (870, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'daDEYVl4', '8493557'), + (870, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'daDEYVl4', '8493558'), + (870, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'daDEYVl4', '8493559'), + (870, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'daDEYVl4', '8493560'), + (870, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'daDEYVl4', '8493561'), + (870, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'daDEYVl4', '8493572'), + (870, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'daDEYVl4', '8540725'), + (870, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'daDEYVl4', '8555421'), + (871, 1380, 'attending', '2022-05-28 22:30:36', '2025-12-17 19:47:30', 'mbZ6E6zm', '5271450'), + (871, 1407, 'attending', '2022-06-04 05:26:52', '2025-12-17 19:47:30', 'mbZ6E6zm', '5363695'), + (871, 1415, 'attending', '2022-05-24 18:56:36', '2025-12-17 19:47:30', 'mbZ6E6zm', '5368973'), + (871, 1417, 'attending', '2022-05-23 21:46:29', '2025-12-17 19:47:30', 'mbZ6E6zm', '5370465'), + (871, 1427, 'maybe', '2022-05-24 18:57:16', '2025-12-17 19:47:30', 'mbZ6E6zm', '5376074'), + (871, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mbZ6E6zm', '5378247'), + (871, 1431, 'attending', '2022-06-11 22:47:09', '2025-12-17 19:47:30', 'mbZ6E6zm', '5389605'), + (871, 1438, 'attending', '2022-06-01 22:34:34', '2025-12-17 19:47:30', 'mbZ6E6zm', '5395032'), + (871, 1442, 'attending', '2022-06-18 22:58:01', '2025-12-17 19:47:17', 'mbZ6E6zm', '5397265'), + (871, 1451, 'attending', '2022-06-18 22:57:37', '2025-12-17 19:47:17', 'mbZ6E6zm', '5403967'), + (871, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mbZ6E6zm', '5404786'), + (871, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mbZ6E6zm', '5405203'), + (871, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mbZ6E6zm', '5408794'), + (871, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mbZ6E6zm', '5411699'), + (871, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mbZ6E6zm', '5412550'), + (871, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mbZ6E6zm', '5415046'), + (871, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mbZ6E6zm', '5422086'), + (871, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mbZ6E6zm', '5422406'), + (871, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mbZ6E6zm', '5424565'), + (871, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mbZ6E6zm', '5426882'), + (871, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mbZ6E6zm', '5427083'), + (871, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'mbZ6E6zm', '5441125'), + (871, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mbZ6E6zm', '5441126'), + (871, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mbZ6E6zm', '5441128'), + (871, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mbZ6E6zm', '5446643'), + (871, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mbZ6E6zm', '5453325'), + (871, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mbZ6E6zm', '5454516'), + (871, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mbZ6E6zm', '5454605'), + (871, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mbZ6E6zm', '5455037'), + (871, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mbZ6E6zm', '5461278'), + (871, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mbZ6E6zm', '5469480'), + (871, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mbZ6E6zm', '5471073'), + (871, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mbZ6E6zm', '5474663'), + (871, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mbZ6E6zm', '5482022'), + (871, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mbZ6E6zm', '5482793'), + (871, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mbZ6E6zm', '5488912'), + (871, 1586, 'maybe', '2022-08-14 23:32:49', '2025-12-17 19:47:23', 'mbZ6E6zm', '5492019'), + (871, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mbZ6E6zm', '5492192'), + (871, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mbZ6E6zm', '5493139'), + (871, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mbZ6E6zm', '5493200'), + (871, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mbZ6E6zm', '5502188'), + (871, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mbZ6E6zm', '5512862'), + (871, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mbZ6E6zm', '5513985'), + (871, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZ6E6zm', '6045684'), + (872, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '406g6vRm', '5880942'), + (872, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '406g6vRm', '5880943'), + (872, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '406g6vRm', '5900200'), + (872, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '406g6vRm', '5900202'), + (872, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '406g6vRm', '5900203'), + (872, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', '406g6vRm', '5910522'), + (872, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '406g6vRm', '5910526'), + (872, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '406g6vRm', '5910528'), + (872, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '406g6vRm', '5916219'), + (872, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '406g6vRm', '5936234'), + (872, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '406g6vRm', '5936691'), + (872, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '406g6vRm', '5958351'), + (872, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '406g6vRm', '5959751'), + (872, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '406g6vRm', '5959755'), + (872, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '406g6vRm', '5960055'), + (872, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '406g6vRm', '5961684'), + (872, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '406g6vRm', '5962132'), + (872, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '406g6vRm', '5962133'), + (872, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '406g6vRm', '5962134'), + (872, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '406g6vRm', '5962317'), + (872, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '406g6vRm', '5962318'), + (872, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '406g6vRm', '5965933'), + (872, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '406g6vRm', '5967014'), + (872, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '406g6vRm', '5972815'), + (872, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '406g6vRm', '5974016'), + (872, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '406g6vRm', '5981515'), + (872, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '406g6vRm', '5993516'), + (872, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '406g6vRm', '5998939'), + (872, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '406g6vRm', '6028191'), + (872, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '406g6vRm', '6040066'), + (872, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '406g6vRm', '6042717'), + (872, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '406g6vRm', '6045684'), + (873, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Lmp0wDWm', '6045684'), + (874, 256, 'not_attending', '2021-05-04 21:40:26', '2025-12-17 19:47:46', 'xd9ZbRym', '3149487'), + (874, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'xd9ZbRym', '3539920'), + (874, 646, 'attending', '2021-05-15 14:32:29', '2025-12-17 19:47:46', 'xd9ZbRym', '3539921'), + (874, 647, 'attending', '2021-05-22 16:21:20', '2025-12-17 19:47:46', 'xd9ZbRym', '3539922'), + (874, 648, 'maybe', '2021-05-29 22:06:30', '2025-12-17 19:47:47', 'xd9ZbRym', '3539923'), + (874, 761, 'not_attending', '2021-05-14 21:56:50', '2025-12-17 19:47:46', 'xd9ZbRym', '3716041'), + (874, 766, 'maybe', '2021-05-12 07:57:59', '2025-12-17 19:47:46', 'xd9ZbRym', '3721383'), + (874, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'xd9ZbRym', '3793156'), + (874, 802, 'attending', '2021-05-12 07:58:03', '2025-12-17 19:47:46', 'xd9ZbRym', '3803310'), + (874, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xd9ZbRym', '3974109'), + (874, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xd9ZbRym', '3975311'), + (874, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xd9ZbRym', '3975312'), + (874, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xd9ZbRym', '3994992'), + (874, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd9ZbRym', '4014338'), + (874, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xd9ZbRym', '4021848'), + (874, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd9ZbRym', '4136744'), + (874, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'xd9ZbRym', '4136937'), + (874, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd9ZbRym', '4136938'), + (874, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd9ZbRym', '4136947'), + (874, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'xd9ZbRym', '4210314'), + (874, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd9ZbRym', '4225444'), + (874, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd9ZbRym', '4239259'), + (874, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'xd9ZbRym', '4240316'), + (874, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'xd9ZbRym', '4240317'), + (874, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'xd9ZbRym', '4240318'), + (874, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'xd9ZbRym', '4240320'), + (874, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd9ZbRym', '4250163'), + (874, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'xd9ZbRym', '4275957'), + (874, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xd9ZbRym', '4277819'), + (874, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xd9ZbRym', '4301723'), + (874, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xd9ZbRym', '4302093'), + (874, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xd9ZbRym', '4304151'), + (874, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'xd9ZbRym', '4345519'), + (874, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'xd9ZbRym', '4356801'), + (874, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xd9ZbRym', '4358025'), + (874, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'xd9ZbRym', '4366186'), + (874, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'xd9ZbRym', '4366187'), + (874, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'xd9ZbRym', '4402823'), + (874, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'xd9ZbRym', '4420735'), + (874, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'xd9ZbRym', '4420738'), + (874, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'xd9ZbRym', '4420739'), + (874, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'xd9ZbRym', '4420741'), + (874, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'xd9ZbRym', '4420744'), + (874, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'xd9ZbRym', '4420747'), + (874, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'xd9ZbRym', '4420748'), + (874, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'xd9ZbRym', '4420749'), + (874, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'xd9ZbRym', '4461883'), + (874, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'xd9ZbRym', '4508342'), + (874, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'xd9ZbRym', '4568602'), + (874, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'xd9ZbRym', '4572153'), + (874, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xd9ZbRym', '4585962'), + (874, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'xd9ZbRym', '4596356'), + (874, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xd9ZbRym', '4598860'), + (874, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xd9ZbRym', '4598861'), + (874, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'xd9ZbRym', '4602797'), + (874, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'xd9ZbRym', '4637896'), + (874, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xd9ZbRym', '4642994'), + (874, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'xd9ZbRym', '4642995'), + (874, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xd9ZbRym', '4642996'), + (874, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'xd9ZbRym', '4642997'), + (874, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'xd9ZbRym', '4645687'), + (874, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xd9ZbRym', '4645698'), + (874, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'xd9ZbRym', '4645704'), + (874, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'xd9ZbRym', '4645705'), + (874, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'xd9ZbRym', '4668385'), + (874, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'xd9ZbRym', '4694407'), + (874, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'xd9ZbRym', '4736497'), + (874, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'xd9ZbRym', '4736499'), + (874, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'xd9ZbRym', '4736500'), + (874, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'xd9ZbRym', '4736503'), + (874, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'xd9ZbRym', '4736504'), + (874, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xd9ZbRym', '4746789'), + (874, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xd9ZbRym', '4753929'), + (874, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xd9ZbRym', '5038850'), + (874, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xd9ZbRym', '5045826'), + (874, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xd9ZbRym', '5132533'), + (874, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'xd9ZbRym', '5186582'), + (874, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'xd9ZbRym', '5186583'), + (874, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'xd9ZbRym', '5186585'), + (874, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'xd9ZbRym', '5190437'), + (874, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xd9ZbRym', '5215989'), + (874, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9ZbRym', '6045684'), + (875, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ZdNeWDo4', '4136938'), + (875, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'ZdNeWDo4', '4229418'), + (875, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNeWDo4', '6045684'), + (876, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ndaKkoVA', '3975312'), + (876, 844, 'not_attending', '2021-06-12 01:01:54', '2025-12-17 19:47:38', 'ndaKkoVA', '4014338'), + (876, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaKkoVA', '6045684'), + (877, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4oo036Z4', '5880940'), + (877, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4oo036Z4', '5880942'), + (877, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4oo036Z4', '5880943'), + (877, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4oo036Z4', '5900199'), + (877, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4oo036Z4', '5900200'), + (877, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4oo036Z4', '5900202'), + (877, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4oo036Z4', '5900203'), + (877, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', '4oo036Z4', '5901055'), + (877, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4oo036Z4', '5901108'), + (877, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4oo036Z4', '5901126'), + (877, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '4oo036Z4', '5901606'), + (877, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4oo036Z4', '5909655'), + (877, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4oo036Z4', '5910522'), + (877, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4oo036Z4', '5910526'), + (877, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4oo036Z4', '5910528'), + (877, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4oo036Z4', '5916219'), + (877, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4oo036Z4', '5936234'), + (877, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '4oo036Z4', '5936691'), + (877, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4oo036Z4', '5958351'), + (877, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4oo036Z4', '5959751'), + (877, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4oo036Z4', '5959755'), + (877, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4oo036Z4', '5960055'), + (877, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4oo036Z4', '5961684'), + (877, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4oo036Z4', '5962132'), + (877, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4oo036Z4', '5962133'), + (877, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4oo036Z4', '5962134'), + (877, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4oo036Z4', '5962317'), + (877, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4oo036Z4', '5962318'), + (877, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4oo036Z4', '5965933'), + (877, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4oo036Z4', '5967014'), + (877, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4oo036Z4', '5972815'), + (877, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4oo036Z4', '5974016'), + (877, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4oo036Z4', '5981515'), + (877, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4oo036Z4', '5993516'), + (877, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4oo036Z4', '5998939'), + (877, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4oo036Z4', '6028191'), + (877, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4oo036Z4', '6040066'), + (877, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4oo036Z4', '6042717'), + (877, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oo036Z4', '6045684'), + (878, 2867, 'attending', '2024-11-25 00:48:11', '2025-12-17 19:46:21', 'ArxK7R8d', '7471202'), + (878, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ArxK7R8d', '7712467'), + (878, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ArxK7R8d', '7713585'), + (878, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ArxK7R8d', '7713586'), + (878, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'ArxK7R8d', '7738518'), + (878, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ArxK7R8d', '7750636'), + (878, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ArxK7R8d', '7796540'), + (878, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ArxK7R8d', '7796541'), + (878, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ArxK7R8d', '7796542'), + (878, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ArxK7R8d', '7825913'), + (878, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ArxK7R8d', '7826209'), + (878, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ArxK7R8d', '7834742'), + (878, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ArxK7R8d', '7842108'), + (878, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ArxK7R8d', '7842902'), + (878, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ArxK7R8d', '7842903'), + (878, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ArxK7R8d', '7842904'), + (878, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ArxK7R8d', '7842905'), + (878, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ArxK7R8d', '7855719'), + (878, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ArxK7R8d', '7860683'), + (878, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ArxK7R8d', '7860684'), + (878, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ArxK7R8d', '7866095'), + (878, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ArxK7R8d', '7869170'), + (878, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ArxK7R8d', '7869188'), + (878, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ArxK7R8d', '7869201'), + (878, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ArxK7R8d', '7877465'), + (878, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'ArxK7R8d', '7878570'), + (878, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ArxK7R8d', '7888250'), + (878, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ArxK7R8d', '8349164'), + (878, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ArxK7R8d', '8349545'), + (878, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ArxK7R8d', '8353584'), + (879, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'o4PZQEGm', '3149493'), + (879, 393, 'not_attending', '2021-06-24 22:36:54', '2025-12-17 19:47:38', 'o4PZQEGm', '3236448'), + (879, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'o4PZQEGm', '4021848'), + (879, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PZQEGm', '6045684'), + (880, 991, 'not_attending', '2021-09-11 21:32:48', '2025-12-17 19:47:43', 'myD7bnWd', '4420738'), + (880, 1003, 'attending', '2021-09-10 19:03:02', '2025-12-17 19:47:43', 'myD7bnWd', '4438802'), + (880, 1004, 'attending', '2021-09-10 21:12:49', '2025-12-17 19:47:43', 'myD7bnWd', '4438804'), + (880, 1023, 'not_attending', '2021-09-11 04:00:24', '2025-12-17 19:47:43', 'myD7bnWd', '4461883'), + (880, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myD7bnWd', '6045684'), + (881, 1893, 'attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'd8V7NJvA', '5901055'), + (881, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'd8V7NJvA', '5901108'), + (881, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd8V7NJvA', '5901126'), + (881, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'd8V7NJvA', '5901606'), + (881, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8V7NJvA', '6045684'), + (882, 162, 'not_attending', '2020-10-15 19:17:29', '2025-12-17 19:47:52', 'kdK0nLZm', '3058699'), + (882, 243, 'not_attending', '2020-11-03 21:35:13', '2025-12-17 19:47:53', 'kdK0nLZm', '3149474'), + (882, 244, 'not_attending', '2020-10-20 22:00:32', '2025-12-17 19:47:52', 'kdK0nLZm', '3149475'), + (882, 245, 'not_attending', '2020-12-01 22:24:08', '2025-12-17 19:47:54', 'kdK0nLZm', '3149476'), + (882, 249, 'not_attending', '2020-11-17 20:56:38', '2025-12-17 19:47:54', 'kdK0nLZm', '3149480'), + (882, 344, 'attending', '2020-11-02 00:07:58', '2025-12-17 19:47:53', 'kdK0nLZm', '3206906'), + (882, 374, 'maybe', '2020-10-25 02:21:46', '2025-12-17 19:47:53', 'kdK0nLZm', '3221415'), + (882, 377, 'not_attending', '2020-10-25 02:22:48', '2025-12-17 19:47:53', 'kdK0nLZm', '3222828'), + (882, 382, 'attending', '2020-10-13 18:50:33', '2025-12-17 19:47:52', 'kdK0nLZm', '3226873'), + (882, 386, 'attending', '2020-10-10 21:33:30', '2025-12-17 19:47:52', 'kdK0nLZm', '3228699'), + (882, 387, 'attending', '2020-10-17 23:02:55', '2025-12-17 19:47:52', 'kdK0nLZm', '3228700'), + (882, 388, 'attending', '2020-10-24 17:16:13', '2025-12-17 19:47:52', 'kdK0nLZm', '3228701'), + (882, 391, 'not_attending', '2020-10-15 19:17:06', '2025-12-17 19:47:52', 'kdK0nLZm', '3236446'), + (882, 392, 'maybe', '2020-10-25 02:22:25', '2025-12-17 19:47:53', 'kdK0nLZm', '3236447'), + (882, 410, 'maybe', '2020-11-26 21:19:24', '2025-12-17 19:47:54', 'kdK0nLZm', '3236469'), + (882, 411, 'not_attending', '2020-10-11 22:38:47', '2025-12-17 19:47:52', 'kdK0nLZm', '3236596'), + (882, 414, 'attending', '2020-10-18 17:39:21', '2025-12-17 19:47:52', 'kdK0nLZm', '3237277'), + (882, 415, 'attending', '2020-10-12 22:38:10', '2025-12-17 19:47:52', 'kdK0nLZm', '3238044'), + (882, 416, 'attending', '2020-10-09 21:31:32', '2025-12-17 19:47:52', 'kdK0nLZm', '3238073'), + (882, 418, 'maybe', '2020-10-13 03:21:22', '2025-12-17 19:47:52', 'kdK0nLZm', '3241728'), + (882, 419, 'maybe', '2020-10-13 18:50:40', '2025-12-17 19:47:52', 'kdK0nLZm', '3242234'), + (882, 420, 'attending', '2020-10-15 19:17:00', '2025-12-17 19:47:52', 'kdK0nLZm', '3245293'), + (882, 421, 'attending', '2020-10-23 01:41:13', '2025-12-17 19:47:52', 'kdK0nLZm', '3245294'), + (882, 422, 'attending', '2020-10-25 02:22:28', '2025-12-17 19:47:53', 'kdK0nLZm', '3245295'), + (882, 423, 'maybe', '2020-11-06 00:45:31', '2025-12-17 19:47:53', 'kdK0nLZm', '3245296'), + (882, 424, 'maybe', '2020-10-12 02:17:58', '2025-12-17 19:47:52', 'kdK0nLZm', '3245751'), + (882, 425, 'maybe', '2020-10-14 03:18:51', '2025-12-17 19:47:52', 'kdK0nLZm', '3250097'), + (882, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'kdK0nLZm', '3250232'), + (882, 428, 'attending', '2020-10-26 21:47:38', '2025-12-17 19:47:53', 'kdK0nLZm', '3250332'), + (882, 429, 'maybe', '2020-11-29 08:13:36', '2025-12-17 19:47:54', 'kdK0nLZm', '3250523'), + (882, 430, 'attending', '2020-10-21 19:28:21', '2025-12-17 19:47:52', 'kdK0nLZm', '3253094'), + (882, 431, 'attending', '2020-10-25 02:22:05', '2025-12-17 19:47:53', 'kdK0nLZm', '3253225'), + (882, 432, 'maybe', '2020-11-04 20:39:14', '2025-12-17 19:47:53', 'kdK0nLZm', '3254416'), + (882, 435, 'attending', '2020-10-22 19:04:40', '2025-12-17 19:47:52', 'kdK0nLZm', '3254790'), + (882, 437, 'maybe', '2020-10-25 02:22:19', '2025-12-17 19:47:53', 'kdK0nLZm', '3256160'), + (882, 438, 'attending', '2020-10-25 02:23:09', '2025-12-17 19:47:53', 'kdK0nLZm', '3256163'), + (882, 439, 'attending', '2020-10-25 02:22:16', '2025-12-17 19:47:53', 'kdK0nLZm', '3256164'), + (882, 440, 'attending', '2020-11-05 22:48:10', '2025-12-17 19:47:53', 'kdK0nLZm', '3256168'), + (882, 441, 'attending', '2020-11-15 00:36:03', '2025-12-17 19:47:54', 'kdK0nLZm', '3256169'), + (882, 443, 'attending', '2020-10-25 02:21:37', '2025-12-17 19:47:53', 'kdK0nLZm', '3263578'), + (882, 444, 'maybe', '2020-10-25 02:22:58', '2025-12-17 19:47:53', 'kdK0nLZm', '3263745'), + (882, 445, 'maybe', '2020-11-13 00:58:05', '2025-12-17 19:47:54', 'kdK0nLZm', '3266138'), + (882, 446, 'maybe', '2020-10-27 23:22:09', '2025-12-17 19:47:53', 'kdK0nLZm', '3267163'), + (882, 447, 'attending', '2020-10-28 03:17:25', '2025-12-17 19:47:53', 'kdK0nLZm', '3267895'), + (882, 448, 'attending', '2020-10-30 23:51:03', '2025-12-17 19:47:53', 'kdK0nLZm', '3271831'), + (882, 449, 'maybe', '2020-11-08 23:11:07', '2025-12-17 19:47:53', 'kdK0nLZm', '3272055'), + (882, 451, 'maybe', '2020-11-02 17:39:35', '2025-12-17 19:47:53', 'kdK0nLZm', '3272186'), + (882, 452, 'attending', '2020-11-26 21:22:09', '2025-12-17 19:47:54', 'kdK0nLZm', '3272981'), + (882, 454, 'maybe', '2020-11-14 00:41:35', '2025-12-17 19:47:54', 'kdK0nLZm', '3275665'), + (882, 455, 'attending', '2020-11-05 22:44:23', '2025-12-17 19:47:53', 'kdK0nLZm', '3276391'), + (882, 456, 'maybe', '2020-11-05 22:44:01', '2025-12-17 19:47:54', 'kdK0nLZm', '3276428'), + (882, 457, 'maybe', '2020-11-07 05:52:54', '2025-12-17 19:47:53', 'kdK0nLZm', '3279087'), + (882, 459, 'attending', '2020-11-08 18:45:23', '2025-12-17 19:47:54', 'kdK0nLZm', '3281467'), + (882, 460, 'maybe', '2020-11-19 20:05:11', '2025-12-17 19:47:54', 'kdK0nLZm', '3281468'), + (882, 461, 'attending', '2020-11-08 18:45:38', '2025-12-17 19:47:53', 'kdK0nLZm', '3281469'), + (882, 462, 'attending', '2020-11-08 18:45:13', '2025-12-17 19:47:53', 'kdK0nLZm', '3281470'), + (882, 465, 'maybe', '2020-11-26 21:19:29', '2025-12-17 19:47:54', 'kdK0nLZm', '3281555'), + (882, 466, 'maybe', '2020-11-22 04:09:41', '2025-12-17 19:47:54', 'kdK0nLZm', '3281829'), + (882, 467, 'not_attending', '2020-11-17 20:56:33', '2025-12-17 19:47:54', 'kdK0nLZm', '3282756'), + (882, 468, 'attending', '2020-11-10 23:24:35', '2025-12-17 19:47:54', 'kdK0nLZm', '3285413'), + (882, 469, 'attending', '2020-11-26 21:19:35', '2025-12-17 19:47:54', 'kdK0nLZm', '3285414'), + (882, 474, 'attending', '2020-11-11 23:25:56', '2025-12-17 19:47:54', 'kdK0nLZm', '3286570'), + (882, 475, 'attending', '2020-11-25 19:34:59', '2025-12-17 19:47:54', 'kdK0nLZm', '3286760'), + (882, 476, 'attending', '2020-11-15 05:40:19', '2025-12-17 19:47:54', 'kdK0nLZm', '3286982'), + (882, 477, 'not_attending', '2020-12-04 00:07:28', '2025-12-17 19:47:54', 'kdK0nLZm', '3289559'), + (882, 478, 'maybe', '2020-11-17 20:56:24', '2025-12-17 19:47:54', 'kdK0nLZm', '3290899'), + (882, 481, 'maybe', '2020-11-19 23:44:24', '2025-12-17 19:47:54', 'kdK0nLZm', '3297764'), + (882, 483, 'attending', '2020-11-23 20:59:21', '2025-12-17 19:47:54', 'kdK0nLZm', '3297791'), + (882, 484, 'attending', '2020-11-20 18:47:07', '2025-12-17 19:47:54', 'kdK0nLZm', '3297792'), + (882, 486, 'attending', '2020-11-24 20:57:28', '2025-12-17 19:47:54', 'kdK0nLZm', '3300281'), + (882, 487, 'maybe', '2020-11-30 18:24:02', '2025-12-17 19:47:54', 'kdK0nLZm', '3311122'), + (882, 488, 'maybe', '2020-11-30 20:09:45', '2025-12-17 19:47:54', 'kdK0nLZm', '3312757'), + (882, 489, 'attending', '2020-11-28 00:25:06', '2025-12-17 19:47:54', 'kdK0nLZm', '3313022'), + (882, 492, 'maybe', '2020-12-03 18:41:44', '2025-12-17 19:47:54', 'kdK0nLZm', '3313731'), + (882, 493, 'attending', '2020-11-29 04:22:56', '2025-12-17 19:47:54', 'kdK0nLZm', '3313856'), + (882, 497, 'maybe', '2020-12-13 07:11:36', '2025-12-17 19:47:55', 'kdK0nLZm', '3314270'), + (882, 499, 'attending', '2020-11-30 20:09:32', '2025-12-17 19:47:55', 'kdK0nLZm', '3314909'), + (882, 500, 'not_attending', '2020-12-19 22:02:28', '2025-12-17 19:47:55', 'kdK0nLZm', '3314964'), + (882, 501, 'not_attending', '2020-12-08 23:22:39', '2025-12-17 19:47:54', 'kdK0nLZm', '3317834'), + (882, 502, 'maybe', '2020-12-12 23:57:41', '2025-12-17 19:47:55', 'kdK0nLZm', '3323365'), + (882, 505, 'maybe', '2020-12-13 07:12:00', '2025-12-17 19:47:55', 'kdK0nLZm', '3323369'), + (882, 506, 'maybe', '2020-12-13 07:11:23', '2025-12-17 19:47:55', 'kdK0nLZm', '3323375'), + (882, 511, 'maybe', '2020-12-19 00:04:04', '2025-12-17 19:47:55', 'kdK0nLZm', '3325335'), + (882, 513, 'maybe', '2020-12-13 07:11:55', '2025-12-17 19:47:55', 'kdK0nLZm', '3329383'), + (882, 515, 'maybe', '2020-12-12 18:15:14', '2025-12-17 19:47:55', 'kdK0nLZm', '3331196'), + (882, 520, 'maybe', '2020-12-21 20:16:09', '2025-12-17 19:47:55', 'kdK0nLZm', '3337453'), + (882, 525, 'not_attending', '2020-12-22 21:05:52', '2025-12-17 19:47:48', 'kdK0nLZm', '3350467'), + (882, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'kdK0nLZm', '3351539'), + (882, 536, 'maybe', '2021-01-16 02:39:29', '2025-12-17 19:47:48', 'kdK0nLZm', '3386848'), + (882, 540, 'maybe', '2021-01-16 02:39:43', '2025-12-17 19:47:48', 'kdK0nLZm', '3389527'), + (882, 543, 'maybe', '2021-01-16 02:39:41', '2025-12-17 19:47:48', 'kdK0nLZm', '3396499'), + (882, 548, 'maybe', '2021-01-16 02:39:39', '2025-12-17 19:47:48', 'kdK0nLZm', '3403650'), + (882, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdK0nLZm', '3406988'), + (882, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'kdK0nLZm', '3416576'), + (882, 571, 'attending', '2021-02-12 19:51:24', '2025-12-17 19:47:50', 'kdK0nLZm', '3435539'), + (882, 602, 'maybe', '2021-02-14 02:26:42', '2025-12-17 19:47:50', 'kdK0nLZm', '3470303'), + (882, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdK0nLZm', '3470305'), + (882, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'kdK0nLZm', '3470991'), + (882, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdK0nLZm', '3517815'), + (882, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdK0nLZm', '3517816'), + (882, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdK0nLZm', '3523941'), + (882, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdK0nLZm', '3533850'), + (882, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdK0nLZm', '3536632'), + (882, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdK0nLZm', '3536656'), + (882, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdK0nLZm', '3539916'), + (882, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdK0nLZm', '3539917'), + (882, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdK0nLZm', '3539918'), + (882, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdK0nLZm', '3539919'), + (882, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdK0nLZm', '3539920'), + (882, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdK0nLZm', '3539921'), + (882, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdK0nLZm', '3539922'), + (882, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdK0nLZm', '3539923'), + (882, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdK0nLZm', '3539927'), + (882, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdK0nLZm', '3582734'), + (882, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdK0nLZm', '3583262'), + (882, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdK0nLZm', '3619523'), + (882, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdK0nLZm', '3661369'), + (882, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdK0nLZm', '3674262'), + (882, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdK0nLZm', '3677402'), + (882, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdK0nLZm', '3730212'), + (882, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdK0nLZm', '3793156'), + (882, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'kdK0nLZm', '3974109'), + (882, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdK0nLZm', '3975311'), + (882, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdK0nLZm', '3975312'), + (882, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdK0nLZm', '3994992'), + (882, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdK0nLZm', '4014338'), + (882, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdK0nLZm', '4021848'), + (882, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdK0nLZm', '4136744'), + (882, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdK0nLZm', '4136937'), + (882, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdK0nLZm', '4136938'), + (882, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdK0nLZm', '4136947'), + (882, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdK0nLZm', '4210314'), + (882, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdK0nLZm', '4225444'), + (882, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdK0nLZm', '4239259'), + (882, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdK0nLZm', '4240316'), + (882, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdK0nLZm', '4240317'), + (882, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdK0nLZm', '4240318'), + (882, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdK0nLZm', '4240320'), + (882, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdK0nLZm', '4250163'), + (882, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdK0nLZm', '4275957'), + (882, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdK0nLZm', '4277819'), + (882, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdK0nLZm', '4301723'), + (882, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdK0nLZm', '4302093'), + (882, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdK0nLZm', '4304151'), + (882, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdK0nLZm', '4356801'), + (882, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdK0nLZm', '4366186'), + (882, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdK0nLZm', '4366187'), + (882, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdK0nLZm', '4420735'), + (882, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdK0nLZm', '4420738'), + (882, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdK0nLZm', '4420739'), + (882, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'kdK0nLZm', '4420741'), + (882, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdK0nLZm', '4420744'), + (882, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdK0nLZm', '4420747'), + (882, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdK0nLZm', '4420748'), + (882, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdK0nLZm', '4420749'), + (882, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdK0nLZm', '4461883'), + (882, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdK0nLZm', '4508342'), + (882, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdK0nLZm', '4568602'), + (882, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdK0nLZm', '4572153'), + (882, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdK0nLZm', '4585962'), + (882, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'kdK0nLZm', '4596356'), + (882, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdK0nLZm', '4598860'), + (882, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdK0nLZm', '4598861'), + (882, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdK0nLZm', '4602797'), + (882, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdK0nLZm', '4637896'), + (882, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdK0nLZm', '4642994'), + (882, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdK0nLZm', '4642995'), + (882, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdK0nLZm', '4642996'), + (882, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdK0nLZm', '4642997'), + (882, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdK0nLZm', '4645687'), + (882, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdK0nLZm', '4645698'), + (882, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdK0nLZm', '4645704'), + (882, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdK0nLZm', '4645705'), + (882, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdK0nLZm', '4668385'), + (882, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdK0nLZm', '4694407'), + (882, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdK0nLZm', '4736497'), + (882, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdK0nLZm', '4736499'), + (882, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdK0nLZm', '4736500'), + (882, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdK0nLZm', '4736503'), + (882, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdK0nLZm', '4736504'), + (882, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdK0nLZm', '4746789'), + (882, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'kdK0nLZm', '4753929'), + (882, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdK0nLZm', '5038850'), + (882, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdK0nLZm', '5045826'), + (882, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdK0nLZm', '5132533'), + (882, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdK0nLZm', '5186582'), + (882, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdK0nLZm', '5186583'), + (882, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdK0nLZm', '5186585'), + (882, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdK0nLZm', '5190437'), + (882, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdK0nLZm', '5195095'), + (882, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdK0nLZm', '5215989'), + (882, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdK0nLZm', '5223686'), + (882, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdK0nLZm', '5247467'), + (882, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdK0nLZm', '5260800'), + (882, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdK0nLZm', '5269930'), + (882, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdK0nLZm', '5271448'), + (882, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'kdK0nLZm', '5271449'), + (882, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdK0nLZm', '5278159'), + (882, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdK0nLZm', '5363695'), + (882, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdK0nLZm', '5365960'), + (882, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdK0nLZm', '5378247'), + (882, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'kdK0nLZm', '5389605'), + (882, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdK0nLZm', '5397265'), + (882, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdK0nLZm', '5404786'), + (882, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdK0nLZm', '5405203'), + (882, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdK0nLZm', '5412550'), + (882, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdK0nLZm', '5415046'), + (882, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdK0nLZm', '5422086'), + (882, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdK0nLZm', '5422406'), + (882, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdK0nLZm', '5424565'), + (882, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdK0nLZm', '5426882'), + (882, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdK0nLZm', '5441125'), + (882, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdK0nLZm', '5441126'), + (882, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdK0nLZm', '5441128'), + (882, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdK0nLZm', '5441131'), + (882, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdK0nLZm', '5441132'), + (882, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdK0nLZm', '5453325'), + (882, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdK0nLZm', '5454516'), + (882, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdK0nLZm', '5454605'), + (882, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdK0nLZm', '5455037'), + (882, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdK0nLZm', '5461278'), + (882, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdK0nLZm', '5469480'), + (882, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdK0nLZm', '5474663'), + (882, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdK0nLZm', '5482022'), + (882, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdK0nLZm', '5488912'), + (882, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdK0nLZm', '5492192'), + (882, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdK0nLZm', '5493139'), + (882, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdK0nLZm', '5493200'), + (882, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdK0nLZm', '5502188'), + (882, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdK0nLZm', '5505059'), + (882, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdK0nLZm', '5509055'), + (882, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdK0nLZm', '5512862'), + (882, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdK0nLZm', '5513985'), + (882, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdK0nLZm', '5519981'), + (882, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdK0nLZm', '5522550'), + (882, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdK0nLZm', '5534683'), + (882, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdK0nLZm', '5537735'), + (882, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdK0nLZm', '5540859'), + (882, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdK0nLZm', '5546619'), + (882, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdK0nLZm', '5557747'), + (882, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdK0nLZm', '5560255'), + (882, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdK0nLZm', '5562906'), + (882, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdK0nLZm', '5600604'), + (882, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdK0nLZm', '5605544'), + (882, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdK0nLZm', '5630960'), + (882, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdK0nLZm', '5630961'), + (882, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdK0nLZm', '5630962'), + (882, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdK0nLZm', '5630966'), + (882, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdK0nLZm', '5630967'), + (882, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdK0nLZm', '5630968'), + (882, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdK0nLZm', '5635406'), + (882, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdK0nLZm', '5638765'), + (882, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdK0nLZm', '5640097'), + (882, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdK0nLZm', '5640843'), + (882, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdK0nLZm', '5641521'), + (882, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdK0nLZm', '5642818'), + (882, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdK0nLZm', '5652395'), + (882, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdK0nLZm', '5670445'), + (882, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdK0nLZm', '5671637'), + (882, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdK0nLZm', '5672329'), + (882, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdK0nLZm', '5674057'), + (882, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdK0nLZm', '5674060'), + (882, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdK0nLZm', '5677461'), + (882, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdK0nLZm', '5698046'), + (882, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdK0nLZm', '5699760'), + (882, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdK0nLZm', '5741601'), + (882, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdK0nLZm', '5763458'), + (882, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdK0nLZm', '5774172'), + (882, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdK0nLZm', '5818247'), + (882, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdK0nLZm', '5819471'), + (882, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdK0nLZm', '5827739'), + (882, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdK0nLZm', '5844306'), + (882, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdK0nLZm', '5850159'), + (882, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdK0nLZm', '5858999'), + (882, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdK0nLZm', '5871984'), + (882, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdK0nLZm', '5876354'), + (882, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdK0nLZm', '5880939'), + (882, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdK0nLZm', '5880940'), + (882, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdK0nLZm', '5880942'), + (882, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdK0nLZm', '5880943'), + (882, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdK0nLZm', '5887890'), + (882, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdK0nLZm', '5888598'), + (882, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdK0nLZm', '5893260'), + (882, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdK0nLZm', '5899826'), + (882, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdK0nLZm', '5900199'), + (882, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdK0nLZm', '5900200'), + (882, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdK0nLZm', '5900202'), + (882, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdK0nLZm', '5900203'), + (882, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdK0nLZm', '5901108'), + (882, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdK0nLZm', '5901126'), + (882, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdK0nLZm', '5909655'), + (882, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdK0nLZm', '5910522'), + (882, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdK0nLZm', '5910526'), + (882, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdK0nLZm', '5910528'), + (882, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdK0nLZm', '5916219'), + (882, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdK0nLZm', '5936234'), + (882, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdK0nLZm', '5958351'), + (882, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdK0nLZm', '5959751'), + (882, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdK0nLZm', '5959755'), + (882, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdK0nLZm', '5960055'), + (882, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdK0nLZm', '5961684'), + (882, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdK0nLZm', '5962132'), + (882, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdK0nLZm', '5962133'), + (882, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdK0nLZm', '5962134'), + (882, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdK0nLZm', '5962317'), + (882, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdK0nLZm', '5962318'), + (882, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdK0nLZm', '5965933'), + (882, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdK0nLZm', '5967014'), + (882, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdK0nLZm', '5972815'), + (882, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdK0nLZm', '5974016'), + (882, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdK0nLZm', '5981515'), + (882, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdK0nLZm', '5993516'), + (882, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdK0nLZm', '5998939'), + (882, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdK0nLZm', '6028191'), + (882, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdK0nLZm', '6040066'), + (882, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdK0nLZm', '6042717'), + (882, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdK0nLZm', '6044838'), + (882, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdK0nLZm', '6044839'), + (882, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0nLZm', '6045684'), + (882, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdK0nLZm', '6050104'), + (882, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdK0nLZm', '6053195'), + (882, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdK0nLZm', '6053198'), + (882, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdK0nLZm', '6056085'), + (882, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdK0nLZm', '6056916'), + (882, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdK0nLZm', '6059290'), + (882, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdK0nLZm', '6060328'), + (882, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdK0nLZm', '6061037'), + (882, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdK0nLZm', '6061039'), + (882, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdK0nLZm', '6067245'), + (882, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdK0nLZm', '6068094'), + (882, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdK0nLZm', '6068252'), + (882, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdK0nLZm', '6068253'), + (882, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdK0nLZm', '6068254'), + (882, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdK0nLZm', '6068280'), + (882, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdK0nLZm', '6069093'), + (882, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdK0nLZm', '6072528'), + (882, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdK0nLZm', '6079840'), + (882, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdK0nLZm', '6083398'), + (882, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdK0nLZm', '6093504'), + (882, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdK0nLZm', '6097414'), + (882, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdK0nLZm', '6097442'), + (882, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdK0nLZm', '6097684'), + (882, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdK0nLZm', '6098762'), + (882, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdK0nLZm', '6101361'), + (882, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdK0nLZm', '6101362'), + (882, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdK0nLZm', '6107314'), + (882, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdK0nLZm', '6120034'), + (882, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'kdK0nLZm', '6136733'), + (882, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdK0nLZm', '6137989'), + (882, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdK0nLZm', '6150864'), + (882, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdK0nLZm', '6155491'), + (882, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdK0nLZm', '6164417'), + (882, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdK0nLZm', '6166388'), + (882, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdK0nLZm', '6176439'), + (882, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdK0nLZm', '6182410'), + (882, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdK0nLZm', '6185812'), + (882, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdK0nLZm', '6187651'), + (882, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdK0nLZm', '6187963'), + (882, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdK0nLZm', '6187964'), + (882, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdK0nLZm', '6187966'), + (882, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdK0nLZm', '6187967'), + (882, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdK0nLZm', '6187969'), + (882, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdK0nLZm', '6334878'), + (882, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdK0nLZm', '6337236'), + (882, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdK0nLZm', '6337970'), + (882, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdK0nLZm', '6338308'), + (882, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdK0nLZm', '6341710'), + (882, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdK0nLZm', '6342044'), + (882, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdK0nLZm', '6342298'), + (882, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdK0nLZm', '6343294'), + (882, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdK0nLZm', '6347034'), + (882, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdK0nLZm', '6347056'), + (882, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdK0nLZm', '6353830'), + (882, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdK0nLZm', '6353831'), + (882, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdK0nLZm', '6357867'), + (882, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdK0nLZm', '6358652'), + (882, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdK0nLZm', '6361709'), + (882, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdK0nLZm', '6361710'), + (882, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdK0nLZm', '6361711'), + (882, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdK0nLZm', '6361712'), + (882, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdK0nLZm', '6361713'), + (882, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdK0nLZm', '6382573'), + (882, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdK0nLZm', '6388604'), + (882, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdK0nLZm', '6394629'), + (882, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdK0nLZm', '6394631'), + (882, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdK0nLZm', '6440863'), + (882, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdK0nLZm', '6445440'), + (882, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdK0nLZm', '6453951'), + (882, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdK0nLZm', '6461696'), + (882, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdK0nLZm', '6462129'), + (882, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdK0nLZm', '6463218'), + (882, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdK0nLZm', '6472181'), + (882, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdK0nLZm', '6482693'), + (882, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdK0nLZm', '6484200'), + (882, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdK0nLZm', '6484680'), + (882, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdK0nLZm', '6507741'), + (882, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdK0nLZm', '6514659'), + (882, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdK0nLZm', '6514660'), + (882, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdK0nLZm', '6519103'), + (882, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdK0nLZm', '6535681'), + (882, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdK0nLZm', '6584747'), + (882, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdK0nLZm', '6587097'), + (882, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdK0nLZm', '6609022'), + (882, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'kdK0nLZm', '6632757'), + (882, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdK0nLZm', '6644187'), + (882, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdK0nLZm', '6648951'), + (882, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdK0nLZm', '6648952'), + (882, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdK0nLZm', '6655401'), + (882, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdK0nLZm', '6661585'), + (882, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdK0nLZm', '6661588'), + (882, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdK0nLZm', '6661589'), + (882, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdK0nLZm', '6699906'), + (882, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdK0nLZm', '6699913'), + (882, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdK0nLZm', '6701109'), + (882, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdK0nLZm', '6705219'), + (882, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdK0nLZm', '6710153'), + (882, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdK0nLZm', '6711552'), + (882, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdK0nLZm', '6711553'), + (882, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdK0nLZm', '6722688'), + (882, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdK0nLZm', '6730620'), + (882, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdK0nLZm', '6740364'), + (882, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdK0nLZm', '6743829'), + (882, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdK0nLZm', '7030380'), + (882, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'kdK0nLZm', '7033677'), + (882, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdK0nLZm', '7044715'), + (882, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdK0nLZm', '7050318'), + (882, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdK0nLZm', '7050319'), + (882, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdK0nLZm', '7050322'), + (882, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdK0nLZm', '7057804'), + (882, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdK0nLZm', '7072824'), + (882, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdK0nLZm', '7074348'), + (882, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdK0nLZm', '7074364'), + (882, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdK0nLZm', '7089267'), + (882, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdK0nLZm', '7098747'), + (882, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdK0nLZm', '7113468'), + (882, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdK0nLZm', '7114856'), + (882, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdK0nLZm', '7114951'), + (882, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdK0nLZm', '7114955'), + (882, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdK0nLZm', '7114956'), + (882, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdK0nLZm', '7114957'), + (882, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdK0nLZm', '7159484'), + (882, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdK0nLZm', '7178446'), + (882, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdK0nLZm', '7220467'), + (882, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdK0nLZm', '7240354'), + (882, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdK0nLZm', '7251633'), + (882, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdK0nLZm', '7324073'), + (882, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdK0nLZm', '7324074'), + (882, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdK0nLZm', '7324075'), + (882, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdK0nLZm', '7324078'), + (882, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdK0nLZm', '7324082'), + (882, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdK0nLZm', '7331457'), + (882, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdK0nLZm', '7363643'), + (882, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdK0nLZm', '7368606'), + (882, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdK0nLZm', '7397462'), + (882, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdK0nLZm', '7424275'), + (882, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdK0nLZm', '7432751'), + (882, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdK0nLZm', '7432752'), + (882, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdK0nLZm', '7432753'), + (882, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdK0nLZm', '7432754'), + (882, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdK0nLZm', '7432755'), + (882, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdK0nLZm', '7432756'), + (882, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdK0nLZm', '7432758'), + (882, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdK0nLZm', '7432759'), + (882, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdK0nLZm', '7433834'), + (882, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'kdK0nLZm', '7470197'), + (882, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdK0nLZm', '7685613'), + (882, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdK0nLZm', '7688194'), + (882, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdK0nLZm', '7688196'), + (882, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdK0nLZm', '7688289'), + (882, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdK0nLZm', '7692763'), + (882, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdK0nLZm', '7697552'), + (882, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdK0nLZm', '7699878'), + (882, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdK0nLZm', '7704043'), + (882, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdK0nLZm', '7712467'), + (882, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdK0nLZm', '7713585'), + (882, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdK0nLZm', '7713586'), + (882, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdK0nLZm', '7738518'), + (882, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdK0nLZm', '7750636'), + (882, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdK0nLZm', '7796540'), + (882, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdK0nLZm', '7796541'), + (882, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdK0nLZm', '7796542'), + (882, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdK0nLZm', '7825913'), + (882, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdK0nLZm', '7826209'), + (882, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdK0nLZm', '7834742'), + (882, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'kdK0nLZm', '7842108'), + (882, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdK0nLZm', '7842902'), + (882, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdK0nLZm', '7842903'), + (882, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdK0nLZm', '7842904'), + (882, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdK0nLZm', '7842905'), + (882, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdK0nLZm', '7855719'), + (882, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdK0nLZm', '7860683'), + (882, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdK0nLZm', '7860684'), + (882, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdK0nLZm', '7866095'), + (882, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdK0nLZm', '7869170'), + (882, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdK0nLZm', '7869188'), + (882, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdK0nLZm', '7869201'), + (882, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdK0nLZm', '7877465'), + (882, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdK0nLZm', '7888250'), + (882, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdK0nLZm', '7904777'), + (882, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdK0nLZm', '8349164'), + (882, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdK0nLZm', '8349545'), + (882, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdK0nLZm', '8368028'), + (882, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdK0nLZm', '8368029'), + (882, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdK0nLZm', '8388462'), + (882, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdK0nLZm', '8400273'), + (882, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdK0nLZm', '8400275'), + (882, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'kdK0nLZm', '8400276'), + (882, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdK0nLZm', '8404977'), + (882, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdK0nLZm', '8430783'), + (882, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdK0nLZm', '8430784'), + (882, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdK0nLZm', '8430799'), + (882, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdK0nLZm', '8430800'), + (882, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdK0nLZm', '8430801'), + (882, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdK0nLZm', '8438709'), + (882, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdK0nLZm', '8457738'), + (882, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdK0nLZm', '8459566'), + (882, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdK0nLZm', '8459567'), + (882, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdK0nLZm', '8461032'), + (882, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdK0nLZm', '8477877'), + (882, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdK0nLZm', '8485688'), + (882, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdK0nLZm', '8490587'), + (882, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdK0nLZm', '8493552'), + (882, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdK0nLZm', '8493553'), + (882, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdK0nLZm', '8493554'), + (882, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdK0nLZm', '8493555'), + (882, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdK0nLZm', '8493556'), + (882, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdK0nLZm', '8493557'), + (882, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdK0nLZm', '8493558'), + (882, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdK0nLZm', '8493559'), + (882, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdK0nLZm', '8493560'), + (882, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdK0nLZm', '8493561'), + (882, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdK0nLZm', '8493572'), + (882, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdK0nLZm', '8540725'), + (882, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdK0nLZm', '8555421'), + (883, 1374, 'attending', '2022-05-07 22:56:01', '2025-12-17 19:47:28', 'mbZOZKEm', '5269930'), + (883, 1378, 'attending', '2022-05-07 14:40:16', '2025-12-17 19:47:28', 'mbZOZKEm', '5271448'), + (883, 1379, 'maybe', '2022-05-21 12:49:07', '2025-12-17 19:47:30', 'mbZOZKEm', '5271449'), + (883, 1380, 'not_attending', '2022-05-29 00:01:04', '2025-12-17 19:47:30', 'mbZOZKEm', '5271450'), + (883, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mbZOZKEm', '5276469'), + (883, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mbZOZKEm', '5278159'), + (883, 1407, 'attending', '2022-06-04 12:15:34', '2025-12-17 19:47:30', 'mbZOZKEm', '5363695'), + (883, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mbZOZKEm', '5365960'), + (883, 1415, 'attending', '2022-05-23 06:58:13', '2025-12-17 19:47:30', 'mbZOZKEm', '5368973'), + (883, 1427, 'attending', '2022-05-25 15:10:23', '2025-12-17 19:47:30', 'mbZOZKEm', '5376074'), + (883, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mbZOZKEm', '5378247'), + (883, 1431, 'attending', '2022-06-11 12:58:32', '2025-12-17 19:47:30', 'mbZOZKEm', '5389605'), + (883, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mbZOZKEm', '5397265'), + (883, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mbZOZKEm', '5403967'), + (883, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mbZOZKEm', '5404786'), + (883, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mbZOZKEm', '5405203'), + (883, 1471, 'attending', '2022-06-20 10:22:01', '2025-12-17 19:47:17', 'mbZOZKEm', '5407063'), + (883, 1475, 'attending', '2022-06-16 13:00:19', '2025-12-17 19:47:17', 'mbZOZKEm', '5408108'), + (883, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mbZOZKEm', '5408794'), + (883, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mbZOZKEm', '5411699'), + (883, 1482, 'attending', '2022-06-20 10:21:46', '2025-12-17 19:47:19', 'mbZOZKEm', '5412550'), + (883, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mbZOZKEm', '5415046'), + (883, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mbZOZKEm', '5422086'), + (883, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mbZOZKEm', '5422406'), + (883, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mbZOZKEm', '5424565'), + (883, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mbZOZKEm', '5426882'), + (883, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mbZOZKEm', '5427083'), + (883, 1511, 'attending', '2022-07-09 16:15:21', '2025-12-17 19:47:19', 'mbZOZKEm', '5437733'), + (883, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'mbZOZKEm', '5441125'), + (883, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mbZOZKEm', '5441126'), + (883, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mbZOZKEm', '5441128'), + (883, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mbZOZKEm', '5441131'), + (883, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mbZOZKEm', '5441132'), + (883, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mbZOZKEm', '5446643'), + (883, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mbZOZKEm', '5453325'), + (883, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mbZOZKEm', '5454516'), + (883, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mbZOZKEm', '5454605'), + (883, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mbZOZKEm', '5455037'), + (883, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mbZOZKEm', '5461278'), + (883, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mbZOZKEm', '5469480'), + (883, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mbZOZKEm', '5471073'), + (883, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mbZOZKEm', '5474663'), + (883, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mbZOZKEm', '5482022'), + (883, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mbZOZKEm', '5482793'), + (883, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mbZOZKEm', '5488912'), + (883, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mbZOZKEm', '5492192'), + (883, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mbZOZKEm', '5493139'), + (883, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mbZOZKEm', '5493200'), + (883, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mbZOZKEm', '5502188'), + (883, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mbZOZKEm', '5505059'), + (883, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mbZOZKEm', '5509055'), + (883, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mbZOZKEm', '5512862'), + (883, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mbZOZKEm', '5513985'), + (883, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mbZOZKEm', '5519981'), + (883, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mbZOZKEm', '5522550'), + (883, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mbZOZKEm', '5534683'), + (883, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mbZOZKEm', '5537735'), + (883, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mbZOZKEm', '5540859'), + (883, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mbZOZKEm', '5546619'), + (883, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mbZOZKEm', '5555245'), + (883, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mbZOZKEm', '5557747'), + (883, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mbZOZKEm', '5560255'), + (883, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mbZOZKEm', '5562906'), + (883, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mbZOZKEm', '5600604'), + (883, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mbZOZKEm', '5605544'), + (883, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'mbZOZKEm', '5606737'), + (883, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mbZOZKEm', '5630960'), + (883, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mbZOZKEm', '5630961'), + (883, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mbZOZKEm', '5630962'), + (883, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mbZOZKEm', '5630966'), + (883, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mbZOZKEm', '5630967'), + (883, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mbZOZKEm', '5630968'), + (883, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mbZOZKEm', '5635406'), + (883, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mbZOZKEm', '5638765'), + (883, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mbZOZKEm', '5640097'), + (883, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mbZOZKEm', '5640843'), + (883, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mbZOZKEm', '5641521'), + (883, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mbZOZKEm', '5642818'), + (883, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mbZOZKEm', '5652395'), + (883, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mbZOZKEm', '5670445'), + (883, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mbZOZKEm', '5671637'), + (883, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mbZOZKEm', '5672329'), + (883, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mbZOZKEm', '5674057'), + (883, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mbZOZKEm', '5674060'), + (883, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mbZOZKEm', '5677461'), + (883, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mbZOZKEm', '5698046'), + (883, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mbZOZKEm', '5699760'), + (883, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mbZOZKEm', '5741601'), + (883, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mbZOZKEm', '5763458'), + (883, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mbZOZKEm', '5774172'), + (883, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mbZOZKEm', '5818247'), + (883, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mbZOZKEm', '5819471'), + (883, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mbZOZKEm', '5827739'), + (883, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mbZOZKEm', '5844306'), + (883, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mbZOZKEm', '5850159'), + (883, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mbZOZKEm', '5858999'), + (883, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mbZOZKEm', '5871984'), + (883, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mbZOZKEm', '5876354'), + (883, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mbZOZKEm', '5880939'), + (883, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mbZOZKEm', '5887890'), + (883, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mbZOZKEm', '5888598'), + (883, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mbZOZKEm', '5893260'), + (883, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZOZKEm', '6045684'), + (884, 255, 'maybe', '2021-03-19 18:35:01', '2025-12-17 19:47:43', '64vwwwkd', '3149486'), + (884, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '64vwwwkd', '3236465'), + (884, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '64vwwwkd', '3539916'), + (884, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '64vwwwkd', '3539918'), + (884, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '64vwwwkd', '3539919'), + (884, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '64vwwwkd', '3539920'), + (884, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '64vwwwkd', '3539921'), + (884, 649, 'maybe', '2021-03-19 18:34:36', '2025-12-17 19:47:51', '64vwwwkd', '3539927'), + (884, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '64vwwwkd', '3582734'), + (884, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '64vwwwkd', '3583262'), + (884, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '64vwwwkd', '3619523'), + (884, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '64vwwwkd', '3661369'), + (884, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '64vwwwkd', '3674262'), + (884, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '64vwwwkd', '3677402'), + (884, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '64vwwwkd', '3730212'), + (884, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '64vwwwkd', '3793156'), + (884, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '64vwwwkd', '3803310'), + (884, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '64vwwwkd', '3806392'), + (884, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64vwwwkd', '6045684'), + (885, 993, 'not_attending', '2021-09-25 19:05:27', '2025-12-17 19:47:34', 'Ae75vozd', '4420741'), + (885, 994, 'not_attending', '2021-10-02 22:32:36', '2025-12-17 19:47:34', 'Ae75vozd', '4420742'), + (885, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'Ae75vozd', '4420744'), + (885, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'Ae75vozd', '4420747'), + (885, 1006, 'maybe', '2021-09-25 19:42:19', '2025-12-17 19:47:34', 'Ae75vozd', '4438808'), + (885, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Ae75vozd', '4568602'), + (885, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Ae75vozd', '4572153'), + (885, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'Ae75vozd', '4585962'), + (885, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Ae75vozd', '4596356'), + (885, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Ae75vozd', '4598860'), + (885, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Ae75vozd', '4598861'), + (885, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Ae75vozd', '4602797'), + (885, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Ae75vozd', '4637896'), + (885, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Ae75vozd', '4642994'), + (885, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Ae75vozd', '4642995'), + (885, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Ae75vozd', '4642996'), + (885, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Ae75vozd', '4642997'), + (885, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Ae75vozd', '4645687'), + (885, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Ae75vozd', '4645698'), + (885, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Ae75vozd', '4645704'), + (885, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Ae75vozd', '4645705'), + (885, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae75vozd', '4668385'), + (885, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ae75vozd', '6045684'), + (886, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'o4PKJyGA', '3470303'), + (886, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'o4PKJyGA', '3470305'), + (886, 605, 'maybe', '2021-02-08 21:49:34', '2025-12-17 19:47:50', 'o4PKJyGA', '3470991'), + (886, 610, 'attending', '2021-02-11 13:29:04', '2025-12-17 19:47:50', 'o4PKJyGA', '3482159'), + (886, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'o4PKJyGA', '3517815'), + (886, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'o4PKJyGA', '3523941'), + (886, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'o4PKJyGA', '3533850'), + (886, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'o4PKJyGA', '3536632'), + (886, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'o4PKJyGA', '3536656'), + (886, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'o4PKJyGA', '3539916'), + (886, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'o4PKJyGA', '3539917'), + (886, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'o4PKJyGA', '3539918'), + (886, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'o4PKJyGA', '3539919'), + (886, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'o4PKJyGA', '3539920'), + (886, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'o4PKJyGA', '3539921'), + (886, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'o4PKJyGA', '3539922'), + (886, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'o4PKJyGA', '3539923'), + (886, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PKJyGA', '6045684'), + (887, 251, 'attending', '2021-01-22 06:19:32', '2025-12-17 19:47:49', 'bdzyrkL4', '3149482'), + (887, 400, 'attending', '2021-01-27 22:22:11', '2025-12-17 19:47:50', 'bdzyrkL4', '3236455'), + (887, 555, 'not_attending', '2021-01-22 16:36:49', '2025-12-17 19:47:49', 'bdzyrkL4', '3416576'), + (887, 558, 'attending', '2021-01-22 04:33:03', '2025-12-17 19:47:49', 'bdzyrkL4', '3418925'), + (887, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'bdzyrkL4', '3426074'), + (887, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'bdzyrkL4', '3430267'), + (887, 570, 'maybe', '2021-02-05 03:34:54', '2025-12-17 19:47:50', 'bdzyrkL4', '3435538'), + (887, 591, 'maybe', '2021-02-08 17:59:46', '2025-12-17 19:47:50', 'bdzyrkL4', '3465880'), + (887, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'bdzyrkL4', '3468125'), + (887, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'bdzyrkL4', '3470303'), + (887, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'bdzyrkL4', '3470305'), + (887, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'bdzyrkL4', '3470991'), + (887, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'bdzyrkL4', '3517815'), + (887, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'bdzyrkL4', '3517816'), + (887, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'bdzyrkL4', '3523941'), + (887, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'bdzyrkL4', '3533850'), + (887, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'bdzyrkL4', '3536632'), + (887, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'bdzyrkL4', '3536656'), + (887, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'bdzyrkL4', '3539916'), + (887, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'bdzyrkL4', '3539917'), + (887, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'bdzyrkL4', '3539918'), + (887, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'bdzyrkL4', '3539919'), + (887, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'bdzyrkL4', '3539920'), + (887, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'bdzyrkL4', '3539921'), + (887, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'bdzyrkL4', '3539922'), + (887, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'bdzyrkL4', '3539923'), + (887, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'bdzyrkL4', '3539927'), + (887, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'bdzyrkL4', '3582734'), + (887, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdzyrkL4', '3583262'), + (887, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'bdzyrkL4', '3619523'), + (887, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdzyrkL4', '3661369'), + (887, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'bdzyrkL4', '3674262'), + (887, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdzyrkL4', '3677402'), + (887, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'bdzyrkL4', '3730212'), + (887, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzyrkL4', '6045684'), + (915, 4, 'attending', '2020-03-21 19:29:15', '2025-12-17 19:47:58', '6AXQDZ64', '2958046'), + (915, 5, 'attending', '2020-03-21 19:29:14', '2025-12-17 19:47:58', '6AXQDZ64', '2958047'), + (915, 9, 'attending', '2020-03-28 21:12:36', '2025-12-17 19:47:56', '6AXQDZ64', '2958052'), + (915, 10, 'attending', '2020-03-28 21:12:42', '2025-12-17 19:47:56', '6AXQDZ64', '2958053'), + (915, 29, 'maybe', '2020-03-22 18:22:21', '2025-12-17 19:47:56', '6AXQDZ64', '2961309'), + (915, 30, 'attending', '2020-03-23 17:16:01', '2025-12-17 19:47:57', '6AXQDZ64', '2961895'), + (915, 36, 'maybe', '2020-03-29 08:55:11', '2025-12-17 19:47:57', '6AXQDZ64', '2969208'), + (915, 39, 'maybe', '2020-03-30 23:01:08', '2025-12-17 19:47:57', '6AXQDZ64', '2970637'), + (915, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', '6AXQDZ64', '2971546'), + (915, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '6AXQDZ64', '2974534'), + (915, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', '6AXQDZ64', '2974955'), + (915, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', '6AXQDZ64', '2975384'), + (915, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', '6AXQDZ64', '2975385'), + (915, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', '6AXQDZ64', '2976575'), + (915, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '6AXQDZ64', '2977343'), + (915, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '6AXQDZ64', '2977812'), + (915, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', '6AXQDZ64', '2977931'), + (915, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', '6AXQDZ64', '2978244'), + (915, 75, 'not_attending', '2020-04-19 19:31:11', '2025-12-17 19:47:57', '6AXQDZ64', '2978245'), + (915, 76, 'not_attending', '2020-05-01 17:16:21', '2025-12-17 19:47:57', '6AXQDZ64', '2978246'), + (915, 77, 'not_attending', '2020-05-04 13:58:20', '2025-12-17 19:47:57', '6AXQDZ64', '2978247'), + (915, 78, 'not_attending', '2020-05-19 18:49:52', '2025-12-17 19:47:57', '6AXQDZ64', '2978249'), + (915, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', '6AXQDZ64', '2978250'), + (915, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', '6AXQDZ64', '2978433'), + (915, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '6AXQDZ64', '2978438'), + (915, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '6AXQDZ64', '2980871'), + (915, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '6AXQDZ64', '2981388'), + (915, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '6AXQDZ64', '2986743'), + (915, 104, 'not_attending', '2020-04-24 13:42:22', '2025-12-17 19:47:57', '6AXQDZ64', '2991471'), + (915, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', '6AXQDZ64', '2993501'), + (915, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '6AXQDZ64', '2994480'), + (915, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', '6AXQDZ64', '3001217'), + (915, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', '6AXQDZ64', '3023063'), + (915, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '6AXQDZ64', '3034321'), + (915, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '6AXQDZ64', '3035881'), + (915, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '6AXQDZ64', '3049983'), + (915, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '6AXQDZ64', '3058959'), + (915, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', '6AXQDZ64', '3067093'), + (915, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '6AXQDZ64', '3075228'), + (915, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '6AXQDZ64', '3075456'), + (915, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '6AXQDZ64', '3083791'), + (915, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '6AXQDZ64', '3085151'), + (915, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '6AXQDZ64', '3087265'), + (915, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', '6AXQDZ64', '3087266'), + (915, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', '6AXQDZ64', '3087267'), + (915, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', '6AXQDZ64', '3087268'), + (915, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '6AXQDZ64', '3088653'), + (915, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '6AXQDZ64', '3106813'), + (915, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '6AXQDZ64', '3132817'), + (915, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '6AXQDZ64', '3132820'), + (915, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '6AXQDZ64', '3155321'), + (915, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '6AXQDZ64', '3162006'), + (915, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '6AXQDZ64', '3163442'), + (915, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '6AXQDZ64', '3172832'), + (915, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '6AXQDZ64', '3172833'), + (915, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '6AXQDZ64', '3172834'), + (915, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '6AXQDZ64', '3172876'), + (915, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXQDZ64', '6045684'), + (916, 21, 'attending', '2020-04-21 23:52:06', '2025-12-17 19:47:57', 'amGX6NqA', '2958065'), + (916, 57, 'not_attending', '2020-04-27 14:12:02', '2025-12-17 19:47:57', 'amGX6NqA', '2976575'), + (916, 66, 'maybe', '2020-06-08 18:45:47', '2025-12-17 19:47:58', 'amGX6NqA', '2977135'), + (916, 72, 'not_attending', '2020-05-07 23:13:47', '2025-12-17 19:47:57', 'amGX6NqA', '2977812'), + (916, 76, 'not_attending', '2020-05-02 04:05:11', '2025-12-17 19:47:57', 'amGX6NqA', '2978246'), + (916, 77, 'attending', '2020-05-04 14:03:48', '2025-12-17 19:47:57', 'amGX6NqA', '2978247'), + (916, 78, 'attending', '2020-05-12 15:29:52', '2025-12-17 19:47:57', 'amGX6NqA', '2978249'), + (916, 79, 'attending', '2020-05-14 01:19:07', '2025-12-17 19:47:57', 'amGX6NqA', '2978250'), + (916, 80, 'attending', '2020-05-14 01:19:16', '2025-12-17 19:47:58', 'amGX6NqA', '2978251'), + (916, 81, 'attending', '2020-05-14 01:19:19', '2025-12-17 19:47:58', 'amGX6NqA', '2978252'), + (916, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'amGX6NqA', '2978438'), + (916, 95, 'attending', '2020-04-30 01:38:05', '2025-12-17 19:47:57', 'amGX6NqA', '2987452'), + (916, 96, 'attending', '2020-05-01 01:30:31', '2025-12-17 19:47:57', 'amGX6NqA', '2987453'), + (916, 97, 'attending', '2020-05-01 01:28:27', '2025-12-17 19:47:57', 'amGX6NqA', '2987454'), + (916, 98, 'maybe', '2020-05-21 04:32:22', '2025-12-17 19:47:57', 'amGX6NqA', '2987455'), + (916, 99, 'attending', '2020-05-02 16:09:03', '2025-12-17 19:47:57', 'amGX6NqA', '2988545'), + (916, 102, 'attending', '2020-04-26 22:08:11', '2025-12-17 19:47:57', 'amGX6NqA', '2990784'), + (916, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', 'amGX6NqA', '2991471'), + (916, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'amGX6NqA', '2993501'), + (916, 109, 'maybe', '2020-05-13 19:19:41', '2025-12-17 19:47:57', 'amGX6NqA', '2994480'), + (916, 115, 'attending', '2020-05-11 16:26:11', '2025-12-17 19:47:57', 'amGX6NqA', '3001217'), + (916, 116, 'not_attending', '2020-05-04 22:48:17', '2025-12-17 19:47:57', 'amGX6NqA', '3006242'), + (916, 120, 'attending', '2020-05-10 21:57:44', '2025-12-17 19:47:57', 'amGX6NqA', '3018282'), + (916, 121, 'maybe', '2020-05-26 19:29:06', '2025-12-17 19:47:57', 'amGX6NqA', '3023063'), + (916, 122, 'maybe', '2020-05-18 16:02:42', '2025-12-17 19:47:57', 'amGX6NqA', '3023491'), + (916, 123, 'maybe', '2020-05-25 02:48:20', '2025-12-17 19:47:57', 'amGX6NqA', '3023729'), + (916, 124, 'maybe', '2020-05-16 16:11:57', '2025-12-17 19:47:57', 'amGX6NqA', '3023809'), + (916, 125, 'maybe', '2020-05-15 18:19:18', '2025-12-17 19:47:57', 'amGX6NqA', '3023987'), + (916, 126, 'not_attending', '2020-05-25 02:48:06', '2025-12-17 19:47:57', 'amGX6NqA', '3024022'), + (916, 127, 'attending', '2020-05-17 15:54:08', '2025-12-17 19:47:57', 'amGX6NqA', '3025623'), + (916, 129, 'maybe', '2020-05-30 16:16:42', '2025-12-17 19:47:58', 'amGX6NqA', '3028743'), + (916, 130, 'maybe', '2020-05-27 01:51:16', '2025-12-17 19:47:57', 'amGX6NqA', '3028781'), + (916, 133, 'not_attending', '2020-06-24 21:54:47', '2025-12-17 19:47:58', 'amGX6NqA', '3034321'), + (916, 134, 'attending', '2020-05-24 03:19:32', '2025-12-17 19:47:57', 'amGX6NqA', '3034367'), + (916, 135, 'attending', '2020-05-24 03:19:37', '2025-12-17 19:47:57', 'amGX6NqA', '3034368'), + (916, 136, 'attending', '2020-05-24 20:26:07', '2025-12-17 19:47:57', 'amGX6NqA', '3035881'), + (916, 137, 'maybe', '2020-05-30 16:16:34', '2025-12-17 19:47:58', 'amGX6NqA', '3042188'), + (916, 138, 'maybe', '2020-05-29 18:39:20', '2025-12-17 19:47:58', 'amGX6NqA', '3042932'), + (916, 139, 'maybe', '2020-05-31 04:01:44', '2025-12-17 19:47:58', 'amGX6NqA', '3046190'), + (916, 140, 'maybe', '2020-05-31 04:05:36', '2025-12-17 19:47:57', 'amGX6NqA', '3046980'), + (916, 142, 'attending', '2020-05-31 23:36:37', '2025-12-17 19:47:57', 'amGX6NqA', '3049860'), + (916, 143, 'maybe', '2020-06-07 22:52:15', '2025-12-17 19:47:58', 'amGX6NqA', '3049983'), + (916, 168, 'attending', '2020-06-06 17:58:32', '2025-12-17 19:47:58', 'amGX6NqA', '3058740'), + (916, 169, 'attending', '2020-06-06 17:58:27', '2025-12-17 19:47:58', 'amGX6NqA', '3058741'), + (916, 171, 'attending', '2020-06-12 23:43:16', '2025-12-17 19:47:58', 'amGX6NqA', '3058743'), + (916, 172, 'attending', '2020-06-07 16:14:00', '2025-12-17 19:47:58', 'amGX6NqA', '3058959'), + (916, 173, 'maybe', '2020-06-15 01:03:21', '2025-12-17 19:47:58', 'amGX6NqA', '3067093'), + (916, 174, 'attending', '2020-06-08 18:44:21', '2025-12-17 19:47:58', 'amGX6NqA', '3067927'), + (916, 175, 'maybe', '2020-06-17 22:30:32', '2025-12-17 19:47:58', 'amGX6NqA', '3068305'), + (916, 176, 'attending', '2020-06-15 19:42:34', '2025-12-17 19:47:58', 'amGX6NqA', '3073192'), + (916, 177, 'attending', '2020-06-14 18:00:45', '2025-12-17 19:47:58', 'amGX6NqA', '3073193'), + (916, 178, 'attending', '2020-06-14 18:00:39', '2025-12-17 19:47:58', 'amGX6NqA', '3073195'), + (916, 179, 'attending', '2020-06-14 18:00:42', '2025-12-17 19:47:58', 'amGX6NqA', '3073687'), + (916, 181, 'attending', '2020-06-16 14:19:18', '2025-12-17 19:47:58', 'amGX6NqA', '3074513'), + (916, 182, 'not_attending', '2020-06-23 20:54:42', '2025-12-17 19:47:55', 'amGX6NqA', '3074514'), + (916, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'amGX6NqA', '3075228'), + (916, 185, 'attending', '2020-06-16 02:36:54', '2025-12-17 19:47:58', 'amGX6NqA', '3075456'), + (916, 186, 'maybe', '2020-06-22 02:59:09', '2025-12-17 19:47:55', 'amGX6NqA', '3083791'), + (916, 187, 'not_attending', '2020-06-23 20:54:47', '2025-12-17 19:47:55', 'amGX6NqA', '3085151'), + (916, 188, 'maybe', '2020-06-19 23:10:42', '2025-12-17 19:47:58', 'amGX6NqA', '3086646'), + (916, 191, 'attending', '2020-07-07 17:16:26', '2025-12-17 19:47:55', 'amGX6NqA', '3087259'), + (916, 192, 'attending', '2020-07-13 19:11:46', '2025-12-17 19:47:55', 'amGX6NqA', '3087260'), + (916, 193, 'attending', '2020-07-19 18:34:50', '2025-12-17 19:47:55', 'amGX6NqA', '3087261'), + (916, 194, 'attending', '2020-07-29 03:24:43', '2025-12-17 19:47:56', 'amGX6NqA', '3087262'), + (916, 195, 'not_attending', '2020-08-06 18:30:56', '2025-12-17 19:47:56', 'amGX6NqA', '3087264'), + (916, 196, 'attending', '2020-08-10 04:08:28', '2025-12-17 19:47:56', 'amGX6NqA', '3087265'), + (916, 197, 'not_attending', '2020-08-21 14:48:46', '2025-12-17 19:47:56', 'amGX6NqA', '3087266'), + (916, 198, 'attending', '2020-08-27 02:22:25', '2025-12-17 19:47:56', 'amGX6NqA', '3087267'), + (916, 199, 'attending', '2020-08-31 23:50:01', '2025-12-17 19:47:56', 'amGX6NqA', '3087268'), + (916, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'amGX6NqA', '3088653'), + (916, 202, 'maybe', '2020-07-05 18:48:19', '2025-12-17 19:47:55', 'amGX6NqA', '3090353'), + (916, 203, 'attending', '2020-06-22 14:43:03', '2025-12-17 19:47:58', 'amGX6NqA', '3091624'), + (916, 209, 'attending', '2020-06-30 00:15:00', '2025-12-17 19:47:55', 'amGX6NqA', '3106813'), + (916, 212, 'maybe', '2020-07-12 17:08:50', '2025-12-17 19:47:55', 'amGX6NqA', '3118517'), + (916, 217, 'attending', '2020-07-08 02:46:20', '2025-12-17 19:47:55', 'amGX6NqA', '3126684'), + (916, 223, 'attending', '2020-09-10 16:14:05', '2025-12-17 19:47:56', 'amGX6NqA', '3129980'), + (916, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'amGX6NqA', '3132817'), + (916, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'amGX6NqA', '3132820'), + (916, 228, 'maybe', '2020-07-14 14:12:42', '2025-12-17 19:47:55', 'amGX6NqA', '3132821'), + (916, 249, 'attending', '2020-11-18 00:46:02', '2025-12-17 19:47:54', 'amGX6NqA', '3149480'), + (916, 270, 'attending', '2020-08-08 02:08:12', '2025-12-17 19:47:56', 'amGX6NqA', '3154457'), + (916, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'amGX6NqA', '3155321'), + (916, 273, 'maybe', '2020-08-06 21:10:16', '2025-12-17 19:47:56', 'amGX6NqA', '3162006'), + (916, 275, 'attending', '2020-08-03 20:37:10', '2025-12-17 19:47:56', 'amGX6NqA', '3163405'), + (916, 277, 'attending', '2020-08-03 21:53:34', '2025-12-17 19:47:56', 'amGX6NqA', '3163442'), + (916, 280, 'maybe', '2020-08-08 21:48:13', '2025-12-17 19:47:56', 'amGX6NqA', '3166942'), + (916, 283, 'not_attending', '2020-08-08 00:12:00', '2025-12-17 19:47:56', 'amGX6NqA', '3169555'), + (916, 284, 'attending', '2020-08-06 23:06:39', '2025-12-17 19:47:56', 'amGX6NqA', '3169556'), + (916, 285, 'attending', '2020-08-25 00:08:01', '2025-12-17 19:47:56', 'amGX6NqA', '3170245'), + (916, 286, 'attending', '2020-08-27 00:10:34', '2025-12-17 19:47:56', 'amGX6NqA', '3170246'), + (916, 287, 'maybe', '2020-08-28 15:33:56', '2025-12-17 19:47:56', 'amGX6NqA', '3170247'), + (916, 288, 'maybe', '2020-09-02 22:20:00', '2025-12-17 19:47:56', 'amGX6NqA', '3170249'), + (916, 289, 'maybe', '2020-09-04 03:36:37', '2025-12-17 19:47:56', 'amGX6NqA', '3170250'), + (916, 291, 'maybe', '2020-09-10 21:26:25', '2025-12-17 19:47:56', 'amGX6NqA', '3170252'), + (916, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'amGX6NqA', '3172832'), + (916, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'amGX6NqA', '3172833'), + (916, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'amGX6NqA', '3172834'), + (916, 296, 'maybe', '2020-09-06 17:54:33', '2025-12-17 19:47:56', 'amGX6NqA', '3172876'), + (916, 301, 'attending', '2020-08-28 00:03:08', '2025-12-17 19:47:56', 'amGX6NqA', '3178027'), + (916, 302, 'attending', '2020-08-14 17:09:19', '2025-12-17 19:47:56', 'amGX6NqA', '3178028'), + (916, 307, 'attending', '2020-08-17 15:44:58', '2025-12-17 19:47:56', 'amGX6NqA', '3182590'), + (916, 308, 'not_attending', '2020-09-01 12:54:33', '2025-12-17 19:47:56', 'amGX6NqA', '3183341'), + (916, 311, 'attending', '2020-09-18 15:01:38', '2025-12-17 19:47:56', 'amGX6NqA', '3186057'), + (916, 313, 'not_attending', '2020-08-23 22:09:21', '2025-12-17 19:47:56', 'amGX6NqA', '3188127'), + (916, 316, 'attending', '2020-08-26 02:07:24', '2025-12-17 19:47:56', 'amGX6NqA', '3191519'), + (916, 317, 'maybe', '2020-08-27 02:22:07', '2025-12-17 19:47:56', 'amGX6NqA', '3191735'), + (916, 318, 'attending', '2020-09-01 23:53:57', '2025-12-17 19:47:56', 'amGX6NqA', '3193885'), + (916, 319, 'attending', '2020-08-31 19:56:37', '2025-12-17 19:47:56', 'amGX6NqA', '3194179'), + (916, 320, 'attending', '2020-08-30 03:02:20', '2025-12-17 19:47:56', 'amGX6NqA', '3195552'), + (916, 323, 'maybe', '2020-09-17 15:37:03', '2025-12-17 19:47:56', 'amGX6NqA', '3197081'), + (916, 324, 'attending', '2020-09-18 22:36:42', '2025-12-17 19:47:56', 'amGX6NqA', '3197082'), + (916, 325, 'attending', '2020-09-22 05:06:39', '2025-12-17 19:47:51', 'amGX6NqA', '3197083'), + (916, 326, 'maybe', '2020-09-25 23:15:21', '2025-12-17 19:47:52', 'amGX6NqA', '3197084'), + (916, 331, 'maybe', '2020-09-04 03:37:22', '2025-12-17 19:47:56', 'amGX6NqA', '3198871'), + (916, 335, 'maybe', '2020-09-02 15:45:08', '2025-12-17 19:47:56', 'amGX6NqA', '3200209'), + (916, 336, 'maybe', '2020-09-13 03:48:05', '2025-12-17 19:47:56', 'amGX6NqA', '3200495'), + (916, 337, 'attending', '2020-09-04 02:39:19', '2025-12-17 19:47:56', 'amGX6NqA', '3201771'), + (916, 340, 'maybe', '2020-09-15 16:38:53', '2025-12-17 19:47:56', 'amGX6NqA', '3204470'), + (916, 343, 'maybe', '2020-09-21 23:28:13', '2025-12-17 19:47:56', 'amGX6NqA', '3206759'), + (916, 354, 'maybe', '2020-09-13 21:33:41', '2025-12-17 19:47:56', 'amGX6NqA', '3212570'), + (916, 358, 'attending', '2020-09-19 18:45:28', '2025-12-17 19:47:56', 'amGX6NqA', '3212579'), + (916, 360, 'maybe', '2020-09-15 17:01:41', '2025-12-17 19:47:56', 'amGX6NqA', '3212671'), + (916, 362, 'not_attending', '2020-09-26 01:33:47', '2025-12-17 19:47:52', 'amGX6NqA', '3214207'), + (916, 363, 'maybe', '2020-09-26 03:43:07', '2025-12-17 19:47:52', 'amGX6NqA', '3217037'), + (916, 364, 'maybe', '2020-09-17 03:42:13', '2025-12-17 19:47:56', 'amGX6NqA', '3217106'), + (916, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'amGX6NqA', '3218510'), + (916, 368, 'not_attending', '2020-09-29 21:01:53', '2025-12-17 19:47:52', 'amGX6NqA', '3221403'), + (916, 374, 'attending', '2020-10-26 23:31:37', '2025-12-17 19:47:53', 'amGX6NqA', '3221415'), + (916, 377, 'maybe', '2020-10-29 18:15:12', '2025-12-17 19:47:53', 'amGX6NqA', '3222828'), + (916, 385, 'attending', '2020-10-01 02:30:44', '2025-12-17 19:47:52', 'amGX6NqA', '3228698'), + (916, 386, 'attending', '2020-10-10 15:21:28', '2025-12-17 19:47:52', 'amGX6NqA', '3228699'), + (916, 387, 'not_attending', '2020-10-13 03:22:59', '2025-12-17 19:47:52', 'amGX6NqA', '3228700'), + (916, 388, 'attending', '2020-10-22 22:34:03', '2025-12-17 19:47:52', 'amGX6NqA', '3228701'), + (916, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'amGX6NqA', '3245751'), + (916, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'amGX6NqA', '3250232'), + (916, 427, 'maybe', '2020-10-30 00:52:56', '2025-12-17 19:47:53', 'amGX6NqA', '3250233'), + (916, 432, 'maybe', '2020-11-04 18:17:00', '2025-12-17 19:47:53', 'amGX6NqA', '3254416'), + (916, 438, 'maybe', '2020-10-31 17:15:11', '2025-12-17 19:47:53', 'amGX6NqA', '3256163'), + (916, 440, 'maybe', '2020-11-07 23:16:08', '2025-12-17 19:47:53', 'amGX6NqA', '3256168'), + (916, 441, 'not_attending', '2020-11-14 16:17:01', '2025-12-17 19:47:54', 'amGX6NqA', '3256169'), + (916, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'amGX6NqA', '3263578'), + (916, 446, 'attending', '2020-10-27 22:55:59', '2025-12-17 19:47:53', 'amGX6NqA', '3267163'), + (916, 451, 'maybe', '2020-11-02 02:00:27', '2025-12-17 19:47:53', 'amGX6NqA', '3272186'), + (916, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'amGX6NqA', '3276428'), + (916, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'amGX6NqA', '3281467'), + (916, 462, 'not_attending', '2020-11-11 22:50:57', '2025-12-17 19:47:54', 'amGX6NqA', '3281470'), + (916, 464, 'maybe', '2020-11-16 17:53:56', '2025-12-17 19:47:54', 'amGX6NqA', '3281554'), + (916, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'amGX6NqA', '3281829'), + (916, 467, 'maybe', '2020-11-12 22:50:10', '2025-12-17 19:47:54', 'amGX6NqA', '3282756'), + (916, 468, 'attending', '2020-11-21 17:14:12', '2025-12-17 19:47:54', 'amGX6NqA', '3285413'), + (916, 469, 'attending', '2020-11-28 23:01:27', '2025-12-17 19:47:54', 'amGX6NqA', '3285414'), + (916, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'amGX6NqA', '3297764'), + (916, 487, 'maybe', '2020-11-25 23:49:22', '2025-12-17 19:47:54', 'amGX6NqA', '3311122'), + (916, 493, 'not_attending', '2020-12-05 23:39:46', '2025-12-17 19:47:54', 'amGX6NqA', '3313856'), + (916, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'amGX6NqA', '3314909'), + (916, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'amGX6NqA', '3314964'), + (916, 502, 'not_attending', '2020-12-12 15:44:37', '2025-12-17 19:47:55', 'amGX6NqA', '3323365'), + (916, 513, 'not_attending', '2020-12-19 23:56:56', '2025-12-17 19:47:55', 'amGX6NqA', '3329383'), + (916, 526, 'maybe', '2021-01-02 20:42:25', '2025-12-17 19:47:48', 'amGX6NqA', '3351539'), + (916, 536, 'attending', '2021-01-08 21:05:05', '2025-12-17 19:47:48', 'amGX6NqA', '3386848'), + (916, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'amGX6NqA', '3389527'), + (916, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'amGX6NqA', '3396499'), + (916, 548, 'not_attending', '2021-01-17 00:26:56', '2025-12-17 19:47:48', 'amGX6NqA', '3403650'), + (916, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'amGX6NqA', '3406988'), + (916, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'amGX6NqA', '3408338'), + (916, 555, 'maybe', '2021-01-23 20:05:21', '2025-12-17 19:47:49', 'amGX6NqA', '3416576'), + (916, 568, 'attending', '2021-01-29 01:13:13', '2025-12-17 19:47:50', 'amGX6NqA', '3430267'), + (916, 579, 'not_attending', '2021-02-06 22:39:04', '2025-12-17 19:47:50', 'amGX6NqA', '3440978'), + (916, 602, 'not_attending', '2021-02-13 22:52:49', '2025-12-17 19:47:50', 'amGX6NqA', '3470303'), + (916, 603, 'maybe', '2021-02-20 20:59:32', '2025-12-17 19:47:50', 'amGX6NqA', '3470304'), + (916, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'amGX6NqA', '3470305'), + (916, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'amGX6NqA', '3470991'), + (916, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'amGX6NqA', '3517815'), + (916, 622, 'attending', '2021-03-11 15:00:04', '2025-12-17 19:47:51', 'amGX6NqA', '3517816'), + (916, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'amGX6NqA', '3523941'), + (916, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'amGX6NqA', '3533850'), + (916, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'amGX6NqA', '3536632'), + (916, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'amGX6NqA', '3536656'), + (916, 641, 'attending', '2021-04-02 16:31:44', '2025-12-17 19:47:44', 'amGX6NqA', '3539916'), + (916, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'amGX6NqA', '3539917'), + (916, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'amGX6NqA', '3539918'), + (916, 644, 'not_attending', '2021-04-24 16:09:07', '2025-12-17 19:47:46', 'amGX6NqA', '3539919'), + (916, 645, 'not_attending', '2021-05-08 21:10:30', '2025-12-17 19:47:46', 'amGX6NqA', '3539920'), + (916, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'amGX6NqA', '3539921'), + (916, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'amGX6NqA', '3539922'), + (916, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'amGX6NqA', '3539923'), + (916, 649, 'not_attending', '2021-03-20 22:46:52', '2025-12-17 19:47:51', 'amGX6NqA', '3539927'), + (916, 650, 'not_attending', '2021-03-27 16:26:16', '2025-12-17 19:47:44', 'amGX6NqA', '3539928'), + (916, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'amGX6NqA', '3582734'), + (916, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'amGX6NqA', '3583262'), + (916, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'amGX6NqA', '3619523'), + (916, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'amGX6NqA', '3661369'), + (916, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'amGX6NqA', '3674262'), + (916, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'amGX6NqA', '3677402'), + (916, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'amGX6NqA', '3730212'), + (916, 777, 'not_attending', '2021-05-01 16:11:29', '2025-12-17 19:47:46', 'amGX6NqA', '3746248'), + (916, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'amGX6NqA', '3793156'), + (916, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amGX6NqA', '3974109'), + (916, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGX6NqA', '3975311'), + (916, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amGX6NqA', '3975312'), + (916, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amGX6NqA', '3994992'), + (916, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGX6NqA', '4014338'), + (916, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amGX6NqA', '4021848'), + (916, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amGX6NqA', '4136744'), + (916, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'amGX6NqA', '4136937'), + (916, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'amGX6NqA', '4136938'), + (916, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amGX6NqA', '4136947'), + (916, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGX6NqA', '4210314'), + (916, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGX6NqA', '4225444'), + (916, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amGX6NqA', '4239259'), + (916, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGX6NqA', '4240316'), + (916, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'amGX6NqA', '4240317'), + (916, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'amGX6NqA', '4240318'), + (916, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'amGX6NqA', '4240320'), + (916, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amGX6NqA', '4250163'), + (916, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGX6NqA', '4275957'), + (916, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amGX6NqA', '4277819'), + (916, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amGX6NqA', '4301723'), + (916, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'amGX6NqA', '4302093'), + (916, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amGX6NqA', '4304151'), + (916, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'amGX6NqA', '4366186'), + (916, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'amGX6NqA', '4366187'), + (916, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGX6NqA', '6045684'), + (917, 2646, 'not_attending', '2024-05-20 19:29:25', '2025-12-17 19:46:35', 'dJQn8Wq4', '7281768'), + (918, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4WBMYObA', '7074364'), + (918, 2647, 'attending', '2024-06-09 19:16:31', '2025-12-17 19:46:28', '4WBMYObA', '7282057'), + (918, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', '4WBMYObA', '7302674'), + (918, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4WBMYObA', '7324073'), + (918, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4WBMYObA', '7324074'), + (918, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4WBMYObA', '7324075'), + (918, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4WBMYObA', '7324078'), + (918, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4WBMYObA', '7324082'), + (918, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4WBMYObA', '7331457'), + (918, 2726, 'attending', '2024-06-20 22:12:09', '2025-12-17 19:46:29', '4WBMYObA', '7332853'), + (918, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4WBMYObA', '7356752'), + (918, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4WBMYObA', '7363643'), + (918, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4WBMYObA', '7368606'), + (918, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4WBMYObA', '7397462'), + (918, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4WBMYObA', '7424275'), + (918, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4WBMYObA', '7424276'), + (918, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4WBMYObA', '7432751'), + (918, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4WBMYObA', '7432752'), + (918, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4WBMYObA', '7432753'), + (918, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4WBMYObA', '7432754'), + (918, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4WBMYObA', '7432755'), + (918, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4WBMYObA', '7432756'), + (918, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4WBMYObA', '7432758'), + (918, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4WBMYObA', '7432759'), + (918, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4WBMYObA', '7433834'), + (918, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4WBMYObA', '7470197'), + (918, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4WBMYObA', '7685613'), + (918, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4WBMYObA', '7688194'), + (918, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4WBMYObA', '7688196'), + (918, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4WBMYObA', '7688289'), + (919, 2994, 'not_attending', '2025-03-05 05:48:24', '2025-12-17 19:46:18', 'dlnBLwYA', '7842905'), + (919, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dlnBLwYA', '7860683'), + (919, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dlnBLwYA', '7860684'), + (919, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dlnBLwYA', '7866095'), + (919, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dlnBLwYA', '7869170'), + (919, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dlnBLwYA', '7869188'), + (919, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dlnBLwYA', '7869201'), + (919, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'dlnBLwYA', '7872088'), + (919, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dlnBLwYA', '7877465'), + (919, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dlnBLwYA', '7878570'), + (919, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'dlnBLwYA', '7880977'), + (919, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dlnBLwYA', '7888250'), + (919, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dlnBLwYA', '7903856'), + (919, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dlnBLwYA', '8347770'), + (919, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dlnBLwYA', '8349164'), + (919, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dlnBLwYA', '8349545'), + (919, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dlnBLwYA', '8353584'), + (920, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '6AXqWOQ4', '3539921'), + (920, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '6AXqWOQ4', '3539922'), + (920, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '6AXqWOQ4', '3539923'), + (920, 812, 'maybe', '2021-05-17 17:18:06', '2025-12-17 19:47:46', '6AXqWOQ4', '3808031'), + (920, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXqWOQ4', '3974109'), + (920, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXqWOQ4', '3975311'), + (920, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXqWOQ4', '3975312'), + (920, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXqWOQ4', '3994992'), + (920, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXqWOQ4', '4014338'), + (920, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXqWOQ4', '4021848'), + (920, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXqWOQ4', '4136744'), + (920, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXqWOQ4', '4136937'), + (920, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXqWOQ4', '4136938'), + (920, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXqWOQ4', '4136947'), + (920, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXqWOQ4', '4210314'), + (920, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXqWOQ4', '4225444'), + (920, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXqWOQ4', '4239259'), + (920, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXqWOQ4', '4240316'), + (920, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXqWOQ4', '4240317'), + (920, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXqWOQ4', '4240318'), + (920, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXqWOQ4', '4240320'), + (920, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXqWOQ4', '4250163'), + (920, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXqWOQ4', '4275957'), + (920, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXqWOQ4', '4277819'), + (920, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXqWOQ4', '4301723'), + (920, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXqWOQ4', '4302093'), + (920, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXqWOQ4', '4304151'), + (920, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXqWOQ4', '4366186'), + (920, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXqWOQ4', '4366187'), + (920, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXqWOQ4', '6045684'), + (921, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41olEapm', '6045684'), + (922, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'pmbxKLg4', '3236452'), + (922, 648, 'not_attending', '2021-05-26 01:43:55', '2025-12-17 19:47:47', 'pmbxKLg4', '3539923'), + (922, 789, 'not_attending', '2021-05-29 22:06:14', '2025-12-17 19:47:47', 'pmbxKLg4', '3785818'), + (922, 815, 'attending', '2021-05-28 22:17:35', '2025-12-17 19:47:47', 'pmbxKLg4', '3818136'), + (922, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbxKLg4', '3974109'), + (922, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmbxKLg4', '3975311'), + (922, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmbxKLg4', '3975312'), + (922, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbxKLg4', '3994992'), + (922, 841, 'attending', '2021-06-15 23:02:19', '2025-12-17 19:47:48', 'pmbxKLg4', '4007434'), + (922, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmbxKLg4', '4014338'), + (922, 866, 'attending', '2021-06-13 12:25:34', '2025-12-17 19:47:38', 'pmbxKLg4', '4020424'), + (922, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmbxKLg4', '4021848'), + (922, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmbxKLg4', '4136744'), + (922, 870, 'maybe', '2021-07-03 17:25:25', '2025-12-17 19:47:39', 'pmbxKLg4', '4136937'), + (922, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmbxKLg4', '4136938'), + (922, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbxKLg4', '4136947'), + (922, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbxKLg4', '4210314'), + (922, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbxKLg4', '4225444'), + (922, 890, 'attending', '2021-06-28 00:19:27', '2025-12-17 19:47:38', 'pmbxKLg4', '4228666'), + (922, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbxKLg4', '4239259'), + (922, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmbxKLg4', '4240316'), + (922, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbxKLg4', '4240317'), + (922, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbxKLg4', '4240318'), + (922, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbxKLg4', '4240320'), + (922, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbxKLg4', '4250163'), + (922, 916, 'not_attending', '2021-07-22 13:07:18', '2025-12-17 19:47:40', 'pmbxKLg4', '4273772'), + (922, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmbxKLg4', '4275957'), + (922, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbxKLg4', '4277819'), + (922, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbxKLg4', '4301723'), + (922, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbxKLg4', '4302093'), + (922, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbxKLg4', '4304151'), + (922, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbxKLg4', '4356801'), + (922, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbxKLg4', '4366186'), + (922, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbxKLg4', '4366187'), + (922, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbxKLg4', '4420735'), + (922, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbxKLg4', '4420738'), + (922, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbxKLg4', '4420739'), + (922, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbxKLg4', '4420741'), + (922, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbxKLg4', '4420744'), + (922, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbxKLg4', '4420747'), + (922, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbxKLg4', '4420748'), + (922, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbxKLg4', '4420749'), + (922, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbxKLg4', '4461883'), + (922, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbxKLg4', '4508342'), + (922, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbxKLg4', '4568602'), + (922, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbxKLg4', '6045684'), + (923, 1517, 'maybe', '2022-08-24 03:36:33', '2025-12-17 19:47:23', 'dOj68D54', '5441130'), + (923, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dOj68D54', '5441131'), + (923, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dOj68D54', '5441132'), + (923, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dOj68D54', '5505059'), + (923, 1609, 'attending', '2022-08-25 01:38:41', '2025-12-17 19:47:23', 'dOj68D54', '5506590'), + (923, 1610, 'not_attending', '2022-08-25 01:39:43', '2025-12-17 19:47:23', 'dOj68D54', '5506595'), + (923, 1614, 'attending', '2022-08-23 19:14:56', '2025-12-17 19:47:23', 'dOj68D54', '5508371'), + (923, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dOj68D54', '5509055'), + (923, 1619, 'attending', '2022-08-24 03:35:55', '2025-12-17 19:47:23', 'dOj68D54', '5512862'), + (923, 1624, 'not_attending', '2022-08-24 04:07:31', '2025-12-17 19:47:24', 'dOj68D54', '5513985'), + (923, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'dOj68D54', '5519981'), + (923, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dOj68D54', '5522550'), + (923, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dOj68D54', '5534683'), + (923, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dOj68D54', '5537735'), + (923, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dOj68D54', '5540859'), + (923, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dOj68D54', '5546619'), + (923, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dOj68D54', '5555245'), + (923, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dOj68D54', '5557747'), + (923, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dOj68D54', '5560255'), + (923, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dOj68D54', '5562906'), + (923, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dOj68D54', '5600604'), + (923, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dOj68D54', '5605544'), + (923, 1699, 'not_attending', '2022-09-26 12:18:55', '2025-12-17 19:47:12', 'dOj68D54', '5606737'), + (923, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dOj68D54', '5630960'), + (923, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dOj68D54', '5630961'), + (923, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dOj68D54', '5630962'), + (923, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOj68D54', '5630966'), + (923, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOj68D54', '5630967'), + (923, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOj68D54', '5630968'), + (923, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dOj68D54', '5635406'), + (923, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dOj68D54', '5638765'), + (923, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dOj68D54', '5640097'), + (923, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dOj68D54', '5640843'), + (923, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dOj68D54', '5641521'), + (923, 1744, 'attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOj68D54', '5642818'), + (923, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dOj68D54', '5652395'), + (923, 1757, 'attending', '2022-10-31 16:44:13', '2025-12-17 19:47:15', 'dOj68D54', '5668974'), + (923, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOj68D54', '5670445'), + (923, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dOj68D54', '5671637'), + (923, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dOj68D54', '5672329'), + (923, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dOj68D54', '5674057'), + (923, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dOj68D54', '5674060'), + (923, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dOj68D54', '5677461'), + (923, 1780, 'attending', '2022-11-10 17:50:26', '2025-12-17 19:47:15', 'dOj68D54', '5696082'), + (923, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOj68D54', '5698046'), + (923, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dOj68D54', '5699760'), + (923, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOj68D54', '5741601'), + (923, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOj68D54', '5763458'), + (923, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOj68D54', '5774172'), + (923, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOj68D54', '5818247'), + (923, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOj68D54', '5819471'), + (923, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOj68D54', '5827739'), + (923, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOj68D54', '5844306'), + (923, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOj68D54', '5850159'), + (923, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOj68D54', '5858999'), + (923, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOj68D54', '5871984'), + (923, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOj68D54', '5876354'), + (923, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOj68D54', '5880939'), + (923, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOj68D54', '5887890'), + (923, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOj68D54', '5888598'), + (923, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOj68D54', '5893260'), + (923, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOj68D54', '6045684'), + (924, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mq1pqQXm', '4736497'), + (924, 1177, 'attending', '2022-02-27 01:05:16', '2025-12-17 19:47:32', 'mq1pqQXm', '4736499'), + (924, 1178, 'attending', '2022-01-30 01:10:05', '2025-12-17 19:47:32', 'mq1pqQXm', '4736500'), + (924, 1179, 'attending', '2022-02-19 15:51:59', '2025-12-17 19:47:32', 'mq1pqQXm', '4736501'), + (924, 1181, 'attending', '2022-03-06 01:08:34', '2025-12-17 19:47:33', 'mq1pqQXm', '4736503'), + (924, 1182, 'attending', '2022-03-10 17:21:32', '2025-12-17 19:47:33', 'mq1pqQXm', '4736504'), + (924, 1222, 'attending', '2022-02-16 23:23:23', '2025-12-17 19:47:32', 'mq1pqQXm', '5015628'), + (924, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mq1pqQXm', '5038850'), + (924, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mq1pqQXm', '5045826'), + (924, 1238, 'attending', '2022-02-21 18:00:00', '2025-12-17 19:47:32', 'mq1pqQXm', '5052236'), + (924, 1239, 'attending', '2022-03-03 01:00:37', '2025-12-17 19:47:33', 'mq1pqQXm', '5052238'), + (924, 1240, 'attending', '2022-03-10 17:37:22', '2025-12-17 19:47:33', 'mq1pqQXm', '5052239'), + (924, 1241, 'attending', '2022-03-20 15:02:59', '2025-12-17 19:47:25', 'mq1pqQXm', '5052240'), + (924, 1243, 'attending', '2022-03-06 20:49:55', '2025-12-17 19:47:33', 'mq1pqQXm', '5058336'), + (924, 1249, 'attending', '2022-03-07 21:16:21', '2025-12-17 19:47:33', 'mq1pqQXm', '5068530'), + (924, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mq1pqQXm', '5132533'), + (924, 1265, 'attending', '2022-03-10 17:21:24', '2025-12-17 19:47:33', 'mq1pqQXm', '5160862'), + (924, 1266, 'attending', '2022-03-10 17:37:10', '2025-12-17 19:47:33', 'mq1pqQXm', '5166407'), + (924, 1267, 'attending', '2022-03-17 15:05:49', '2025-12-17 19:47:25', 'mq1pqQXm', '5169578'), + (924, 1269, 'attending', '2022-03-18 02:59:21', '2025-12-17 19:47:25', 'mq1pqQXm', '5179439'), + (924, 1270, 'attending', '2022-03-15 19:05:26', '2025-12-17 19:47:25', 'mq1pqQXm', '5181277'), + (924, 1271, 'attending', '2022-03-18 02:59:12', '2025-12-17 19:47:25', 'mq1pqQXm', '5181648'), + (924, 1272, 'attending', '2022-03-16 01:13:09', '2025-12-17 19:47:25', 'mq1pqQXm', '5186582'), + (924, 1273, 'attending', '2022-03-20 15:03:02', '2025-12-17 19:47:25', 'mq1pqQXm', '5186583'), + (924, 1274, 'attending', '2022-04-01 16:01:20', '2025-12-17 19:47:26', 'mq1pqQXm', '5186585'), + (924, 1280, 'attending', '2022-03-17 15:05:38', '2025-12-17 19:47:25', 'mq1pqQXm', '5189749'), + (924, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mq1pqQXm', '5190437'), + (924, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mq1pqQXm', '5195095'), + (924, 1291, 'not_attending', '2022-03-25 17:16:26', '2025-12-17 19:47:25', 'mq1pqQXm', '5200458'), + (924, 1294, 'attending', '2022-04-01 16:01:29', '2025-12-17 19:47:26', 'mq1pqQXm', '5214686'), + (924, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mq1pqQXm', '5215989'), + (924, 1302, 'attending', '2022-04-07 18:17:38', '2025-12-17 19:47:27', 'mq1pqQXm', '5220867'), + (924, 1304, 'attending', '2022-04-04 22:02:49', '2025-12-17 19:47:26', 'mq1pqQXm', '5223468'), + (924, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mq1pqQXm', '5223686'), + (924, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mq1pqQXm', '5227432'), + (924, 1337, 'attending', '2022-04-19 23:18:30', '2025-12-17 19:47:27', 'mq1pqQXm', '5245036'), + (924, 1346, 'attending', '2022-04-22 18:32:40', '2025-12-17 19:47:27', 'mq1pqQXm', '5247467'), + (924, 1360, 'attending', '2022-04-26 23:42:19', '2025-12-17 19:47:27', 'mq1pqQXm', '5260197'), + (924, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mq1pqQXm', '5260800'), + (924, 1371, 'attending', '2022-04-27 19:00:03', '2025-12-17 19:47:27', 'mq1pqQXm', '5263784'), + (924, 1372, 'attending', '2022-05-03 03:52:43', '2025-12-17 19:47:28', 'mq1pqQXm', '5264352'), + (924, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mq1pqQXm', '5269930'), + (924, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mq1pqQXm', '5271448'), + (924, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mq1pqQXm', '5271449'), + (924, 1380, 'attending', '2022-05-26 19:26:05', '2025-12-17 19:47:30', 'mq1pqQXm', '5271450'), + (924, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mq1pqQXm', '5276469'), + (924, 1385, 'attending', '2022-05-11 22:58:24', '2025-12-17 19:47:28', 'mq1pqQXm', '5277822'), + (924, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mq1pqQXm', '5278159'), + (924, 1407, 'attending', '2022-05-30 20:26:00', '2025-12-17 19:47:30', 'mq1pqQXm', '5363695'), + (924, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mq1pqQXm', '5365960'), + (924, 1410, 'not_attending', '2022-05-19 20:39:59', '2025-12-17 19:47:29', 'mq1pqQXm', '5367530'), + (924, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mq1pqQXm', '5368973'), + (924, 1423, 'attending', '2022-06-15 20:13:22', '2025-12-17 19:47:17', 'mq1pqQXm', '5375727'), + (924, 1424, 'attending', '2022-05-26 19:26:00', '2025-12-17 19:47:30', 'mq1pqQXm', '5375772'), + (924, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mq1pqQXm', '5378247'), + (924, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mq1pqQXm', '5389605'), + (924, 1442, 'attending', '2022-06-18 18:19:05', '2025-12-17 19:47:17', 'mq1pqQXm', '5397265'), + (924, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mq1pqQXm', '5403967'), + (924, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mq1pqQXm', '5404786'), + (924, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mq1pqQXm', '5405203'), + (924, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mq1pqQXm', '5408794'), + (924, 1480, 'attending', '2022-06-23 05:57:07', '2025-12-17 19:47:19', 'mq1pqQXm', '5411699'), + (924, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mq1pqQXm', '5412550'), + (924, 1484, 'attending', '2022-06-22 20:31:30', '2025-12-17 19:47:17', 'mq1pqQXm', '5415046'), + (924, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mq1pqQXm', '5422086'), + (924, 1498, 'attending', '2022-07-02 21:12:30', '2025-12-17 19:47:19', 'mq1pqQXm', '5422406'), + (924, 1501, 'attending', '2022-06-29 20:24:52', '2025-12-17 19:47:19', 'mq1pqQXm', '5424546'), + (924, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mq1pqQXm', '5424565'), + (924, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mq1pqQXm', '5426882'), + (924, 1505, 'attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mq1pqQXm', '5427083'), + (924, 1511, 'maybe', '2022-07-08 02:16:35', '2025-12-17 19:47:19', 'mq1pqQXm', '5437733'), + (924, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mq1pqQXm', '5441125'), + (924, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mq1pqQXm', '5441126'), + (924, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mq1pqQXm', '5441128'), + (924, 1517, 'attending', '2022-08-27 20:10:45', '2025-12-17 19:47:23', 'mq1pqQXm', '5441130'), + (924, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mq1pqQXm', '5441131'), + (924, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mq1pqQXm', '5441132'), + (924, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mq1pqQXm', '5446643'), + (924, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mq1pqQXm', '5453325'), + (924, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mq1pqQXm', '5454516'), + (924, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mq1pqQXm', '5454605'), + (924, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mq1pqQXm', '5455037'), + (924, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mq1pqQXm', '5461278'), + (924, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mq1pqQXm', '5469480'), + (924, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mq1pqQXm', '5471073'), + (924, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mq1pqQXm', '5474663'), + (924, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mq1pqQXm', '5482022'), + (924, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mq1pqQXm', '5482793'), + (924, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mq1pqQXm', '5488912'), + (924, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mq1pqQXm', '5492192'), + (924, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mq1pqQXm', '5493139'), + (924, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mq1pqQXm', '5493200'), + (924, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mq1pqQXm', '5502188'), + (924, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mq1pqQXm', '5505059'), + (924, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mq1pqQXm', '5509055'), + (924, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mq1pqQXm', '5512862'), + (924, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mq1pqQXm', '5513985'), + (924, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'mq1pqQXm', '5534683'), + (924, 1635, 'attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mq1pqQXm', '5537735'), + (924, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mq1pqQXm', '5540859'), + (924, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mq1pqQXm', '5546619'), + (924, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mq1pqQXm', '5555245'), + (924, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mq1pqQXm', '5557747'), + (924, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mq1pqQXm', '5560255'), + (924, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mq1pqQXm', '5562906'), + (924, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mq1pqQXm', '5600604'), + (924, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mq1pqQXm', '5605544'), + (924, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'mq1pqQXm', '5606737'), + (924, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mq1pqQXm', '5630960'), + (924, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mq1pqQXm', '5630961'), + (924, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mq1pqQXm', '5630962'), + (924, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mq1pqQXm', '5630966'), + (924, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mq1pqQXm', '5630967'), + (924, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mq1pqQXm', '5630968'), + (924, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mq1pqQXm', '5635406'), + (924, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mq1pqQXm', '5638765'), + (924, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mq1pqQXm', '5640097'), + (924, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mq1pqQXm', '5640843'), + (924, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mq1pqQXm', '5641521'), + (924, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mq1pqQXm', '5642818'), + (924, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mq1pqQXm', '5652395'), + (924, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mq1pqQXm', '5670445'), + (924, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mq1pqQXm', '5671637'), + (924, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mq1pqQXm', '5672329'), + (924, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mq1pqQXm', '5674057'), + (924, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mq1pqQXm', '5674060'), + (924, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mq1pqQXm', '5677461'), + (924, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mq1pqQXm', '5698046'), + (924, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mq1pqQXm', '5699760'), + (924, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mq1pqQXm', '5741601'), + (924, 1797, 'attending', '2022-12-10 01:49:55', '2025-12-17 19:47:17', 'mq1pqQXm', '5757486'), + (924, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mq1pqQXm', '5763458'), + (924, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mq1pqQXm', '5774172'), + (924, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mq1pqQXm', '5818247'), + (924, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mq1pqQXm', '5819471'), + (924, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mq1pqQXm', '5827739'), + (924, 1843, 'attending', '2022-12-17 22:11:45', '2025-12-17 19:47:04', 'mq1pqQXm', '5844304'), + (924, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mq1pqQXm', '5844306'), + (924, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mq1pqQXm', '5850159'), + (924, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mq1pqQXm', '5858999'), + (924, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mq1pqQXm', '5871984'), + (924, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mq1pqQXm', '5876354'), + (924, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mq1pqQXm', '5880939'), + (924, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mq1pqQXm', '5887890'), + (924, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mq1pqQXm', '5888598'), + (924, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mq1pqQXm', '5893260'), + (924, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mq1pqQXm', '6045684'), + (924, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mq1pqQXm', '6067245'), + (924, 2056, 'attending', '2023-05-13 21:19:42', '2025-12-17 19:47:02', 'mq1pqQXm', '6093504'), + (924, 2060, 'not_attending', '2023-05-20 22:43:24', '2025-12-17 19:47:03', 'mq1pqQXm', '6097414'), + (924, 2061, 'not_attending', '2023-05-11 23:34:43', '2025-12-17 19:47:02', 'mq1pqQXm', '6097442'), + (924, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mq1pqQXm', '6101362'), + (924, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mq1pqQXm', '6103752'), + (924, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mq1pqQXm', '6107314'), + (924, 2110, 'attending', '2023-06-21 22:52:42', '2025-12-17 19:46:50', 'mq1pqQXm', '6155491'), + (924, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mq1pqQXm', '6164417'), + (924, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mq1pqQXm', '6166388'), + (924, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mq1pqQXm', '6176439'), + (924, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mq1pqQXm', '6182410'), + (924, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mq1pqQXm', '6185812'), + (924, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mq1pqQXm', '6187651'), + (924, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mq1pqQXm', '6187963'), + (924, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mq1pqQXm', '6187964'), + (924, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mq1pqQXm', '6187966'), + (924, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mq1pqQXm', '6187967'), + (924, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mq1pqQXm', '6187969'), + (924, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mq1pqQXm', '6334878'), + (924, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mq1pqQXm', '6337236'), + (924, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mq1pqQXm', '6337970'), + (924, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mq1pqQXm', '6338308'), + (924, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mq1pqQXm', '6341710'), + (924, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mq1pqQXm', '6342044'), + (924, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mq1pqQXm', '6342298'), + (924, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mq1pqQXm', '6343294'), + (924, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mq1pqQXm', '6347034'), + (924, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mq1pqQXm', '6347056'), + (924, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mq1pqQXm', '6353830'), + (924, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mq1pqQXm', '6353831'), + (924, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mq1pqQXm', '6357867'), + (924, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mq1pqQXm', '6358652'), + (924, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mq1pqQXm', '6361709'), + (924, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mq1pqQXm', '6361710'), + (924, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mq1pqQXm', '6361711'), + (924, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mq1pqQXm', '6361712'), + (924, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mq1pqQXm', '6361713'), + (924, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mq1pqQXm', '6382573'), + (924, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mq1pqQXm', '6388604'), + (924, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mq1pqQXm', '6394629'), + (924, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mq1pqQXm', '6394631'), + (924, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mq1pqQXm', '6440863'), + (924, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mq1pqQXm', '6445440'), + (924, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mq1pqQXm', '6453951'), + (924, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mq1pqQXm', '6461696'), + (924, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mq1pqQXm', '6462129'), + (924, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mq1pqQXm', '6463218'), + (924, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mq1pqQXm', '6472181'), + (924, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mq1pqQXm', '6482693'), + (924, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mq1pqQXm', '6484200'), + (924, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mq1pqQXm', '6484680'), + (924, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mq1pqQXm', '6507741'), + (924, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mq1pqQXm', '6514659'), + (924, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mq1pqQXm', '6514660'), + (924, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mq1pqQXm', '6519103'), + (924, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mq1pqQXm', '6535681'), + (924, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mq1pqQXm', '6584747'), + (924, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mq1pqQXm', '6587097'), + (924, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mq1pqQXm', '6609022'), + (924, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mq1pqQXm', '6632757'), + (924, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mq1pqQXm', '6644187'), + (924, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mq1pqQXm', '6648951'), + (924, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mq1pqQXm', '6648952'), + (924, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mq1pqQXm', '6655401'), + (924, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mq1pqQXm', '6661585'), + (924, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mq1pqQXm', '6661588'), + (924, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mq1pqQXm', '6661589'), + (924, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mq1pqQXm', '6699906'), + (924, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mq1pqQXm', '6699913'), + (924, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mq1pqQXm', '6701109'), + (924, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mq1pqQXm', '6705219'), + (924, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mq1pqQXm', '6710153'), + (924, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mq1pqQXm', '6711552'), + (924, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mq1pqQXm', '6711553'), + (924, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mq1pqQXm', '6722688'), + (924, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mq1pqQXm', '6730620'), + (924, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mq1pqQXm', '6740364'), + (924, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mq1pqQXm', '6743829'), + (924, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mq1pqQXm', '7030380'), + (924, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mq1pqQXm', '7033677'), + (924, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mq1pqQXm', '7044715'), + (924, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mq1pqQXm', '7050318'), + (924, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mq1pqQXm', '7050319'), + (924, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mq1pqQXm', '7050322'), + (924, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mq1pqQXm', '7057804'), + (924, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mq1pqQXm', '7072824'), + (924, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mq1pqQXm', '7074348'), + (924, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mq1pqQXm', '7074364'), + (924, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mq1pqQXm', '7089267'), + (924, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mq1pqQXm', '7098747'), + (924, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mq1pqQXm', '7113468'), + (924, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mq1pqQXm', '7114856'), + (924, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mq1pqQXm', '7114951'), + (924, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mq1pqQXm', '7114955'), + (924, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mq1pqQXm', '7114956'), + (924, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mq1pqQXm', '7114957'), + (924, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mq1pqQXm', '7159484'), + (924, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mq1pqQXm', '7178446'), + (924, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mq1pqQXm', '7220467'), + (924, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mq1pqQXm', '7240354'), + (924, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mq1pqQXm', '7251633'), + (924, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mq1pqQXm', '7324073'), + (924, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mq1pqQXm', '7324074'), + (924, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mq1pqQXm', '7324075'), + (924, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mq1pqQXm', '7324078'), + (924, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mq1pqQXm', '7324082'), + (924, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mq1pqQXm', '7331457'), + (924, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mq1pqQXm', '7363643'), + (924, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mq1pqQXm', '7368606'), + (924, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mq1pqQXm', '7397462'), + (924, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mq1pqQXm', '7424275'), + (924, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mq1pqQXm', '7432751'), + (924, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mq1pqQXm', '7432752'), + (924, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mq1pqQXm', '7432753'), + (924, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mq1pqQXm', '7432754'), + (924, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mq1pqQXm', '7432755'), + (924, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mq1pqQXm', '7432756'), + (924, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mq1pqQXm', '7432758'), + (924, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mq1pqQXm', '7432759'), + (924, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mq1pqQXm', '7433834'), + (924, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mq1pqQXm', '7470197'), + (924, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mq1pqQXm', '7685613'), + (924, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mq1pqQXm', '7688194'), + (924, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mq1pqQXm', '7688196'), + (924, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mq1pqQXm', '7688289'), + (924, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mq1pqQXm', '7692763'), + (924, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mq1pqQXm', '7697552'), + (924, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mq1pqQXm', '7699878'), + (924, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mq1pqQXm', '7704043'), + (924, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mq1pqQXm', '7712467'), + (924, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mq1pqQXm', '7713585'), + (924, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mq1pqQXm', '7713586'), + (924, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mq1pqQXm', '7738518'), + (924, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mq1pqQXm', '7750636'), + (924, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mq1pqQXm', '7796540'), + (924, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mq1pqQXm', '7796541'), + (924, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mq1pqQXm', '7796542'), + (924, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mq1pqQXm', '7825913'), + (924, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mq1pqQXm', '7826209'), + (924, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mq1pqQXm', '7834742'), + (924, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mq1pqQXm', '7842108'), + (924, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mq1pqQXm', '7842902'), + (924, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mq1pqQXm', '7842903'), + (924, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mq1pqQXm', '7842904'), + (924, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mq1pqQXm', '7842905'), + (924, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mq1pqQXm', '7855719'), + (924, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mq1pqQXm', '7860683'), + (924, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mq1pqQXm', '7860684'), + (924, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mq1pqQXm', '7866095'), + (924, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mq1pqQXm', '7869170'), + (924, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mq1pqQXm', '7869188'), + (924, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mq1pqQXm', '7869201'), + (924, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mq1pqQXm', '7877465'), + (924, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mq1pqQXm', '7888250'), + (924, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mq1pqQXm', '7904777'), + (924, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mq1pqQXm', '8349164'), + (924, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mq1pqQXm', '8349545'), + (924, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mq1pqQXm', '8368028'), + (924, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mq1pqQXm', '8368029'), + (924, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mq1pqQXm', '8388462'), + (924, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mq1pqQXm', '8400273'), + (924, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mq1pqQXm', '8400275'), + (924, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mq1pqQXm', '8400276'), + (924, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mq1pqQXm', '8404977'), + (924, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mq1pqQXm', '8430783'), + (924, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mq1pqQXm', '8430784'), + (924, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mq1pqQXm', '8430799'), + (924, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mq1pqQXm', '8430800'), + (924, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mq1pqQXm', '8430801'), + (924, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mq1pqQXm', '8438709'), + (924, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mq1pqQXm', '8457738'), + (924, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mq1pqQXm', '8459566'), + (924, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mq1pqQXm', '8459567'), + (924, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mq1pqQXm', '8461032'), + (924, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mq1pqQXm', '8477877'), + (924, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mq1pqQXm', '8485688'), + (924, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mq1pqQXm', '8490587'), + (924, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mq1pqQXm', '8493552'), + (924, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mq1pqQXm', '8493553'), + (924, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mq1pqQXm', '8493554'), + (924, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mq1pqQXm', '8493555'), + (924, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mq1pqQXm', '8493556'), + (924, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mq1pqQXm', '8493557'), + (924, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mq1pqQXm', '8493558'), + (924, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mq1pqQXm', '8493559'), + (924, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mq1pqQXm', '8493560'), + (924, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mq1pqQXm', '8493561'), + (924, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mq1pqQXm', '8493572'), + (924, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mq1pqQXm', '8540725'), + (924, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mq1pqQXm', '8555421'), + (925, 499, 'attending', '2020-12-11 23:32:13', '2025-12-17 19:47:55', 'x4oNZgGA', '3314909'), + (925, 500, 'not_attending', '2020-12-19 01:10:46', '2025-12-17 19:47:55', 'x4oNZgGA', '3314964'), + (925, 502, 'not_attending', '2020-12-12 16:13:14', '2025-12-17 19:47:55', 'x4oNZgGA', '3323365'), + (925, 513, 'attending', '2020-12-19 18:19:50', '2025-12-17 19:47:55', 'x4oNZgGA', '3329383'), + (925, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'x4oNZgGA', '3351539'), + (925, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'x4oNZgGA', '3386848'), + (925, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'x4oNZgGA', '3389527'), + (925, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'x4oNZgGA', '3396499'), + (925, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'x4oNZgGA', '3403650'), + (925, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'x4oNZgGA', '3406988'), + (925, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'x4oNZgGA', '3416576'), + (925, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'x4oNZgGA', '3418925'), + (925, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'x4oNZgGA', '3430267'), + (925, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'x4oNZgGA', '3432673'), + (925, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'x4oNZgGA', '3468125'), + (925, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'x4oNZgGA', '3470303'), + (925, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'x4oNZgGA', '3470305'), + (925, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'x4oNZgGA', '3470991'), + (925, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'x4oNZgGA', '3517815'), + (925, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'x4oNZgGA', '3517816'), + (925, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'x4oNZgGA', '3523941'), + (925, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'x4oNZgGA', '3533850'), + (925, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'x4oNZgGA', '3536632'), + (925, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'x4oNZgGA', '3536656'), + (925, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'x4oNZgGA', '3539916'), + (925, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'x4oNZgGA', '3539917'), + (925, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'x4oNZgGA', '3539918'), + (925, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'x4oNZgGA', '3539919'), + (925, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'x4oNZgGA', '3539920'), + (925, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'x4oNZgGA', '3539921'), + (925, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'x4oNZgGA', '3539922'), + (925, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'x4oNZgGA', '3539923'), + (925, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'x4oNZgGA', '3539927'), + (925, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'x4oNZgGA', '3582734'), + (925, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'x4oNZgGA', '3583262'), + (925, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'x4oNZgGA', '3619523'), + (925, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'x4oNZgGA', '3661369'), + (925, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'x4oNZgGA', '3674262'), + (925, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'x4oNZgGA', '3677402'), + (925, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'x4oNZgGA', '3730212'), + (925, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oNZgGA', '6045684'), + (926, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'v4DLM6o4', '3236448'), + (926, 823, 'not_attending', '2021-06-17 18:43:07', '2025-12-17 19:47:48', 'v4DLM6o4', '3974109'), + (926, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DLM6o4', '6045684'), + (927, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', '4PPRXBG4', '4136947'), + (927, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '4PPRXBG4', '4210314'), + (927, 900, 'attending', '2021-07-20 18:37:09', '2025-12-17 19:47:40', '4PPRXBG4', '4240316'), + (927, 901, 'not_attending', '2021-07-31 20:06:06', '2025-12-17 19:47:40', '4PPRXBG4', '4240317'), + (927, 902, 'attending', '2021-08-04 20:42:26', '2025-12-17 19:47:41', '4PPRXBG4', '4240318'), + (927, 903, 'not_attending', '2021-08-14 18:00:09', '2025-12-17 19:47:42', '4PPRXBG4', '4240320'), + (927, 919, 'not_attending', '2021-07-17 18:19:26', '2025-12-17 19:47:39', '4PPRXBG4', '4275957'), + (927, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '4PPRXBG4', '4277819'), + (927, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '4PPRXBG4', '4301723'), + (927, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '4PPRXBG4', '4302093'), + (927, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4PPRXBG4', '4304151'), + (927, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '4PPRXBG4', '4345519'), + (927, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4PPRXBG4', '4356801'), + (927, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '4PPRXBG4', '4358025'), + (927, 973, 'not_attending', '2021-08-21 15:51:21', '2025-12-17 19:47:42', '4PPRXBG4', '4366186'), + (927, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '4PPRXBG4', '4366187'), + (927, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4PPRXBG4', '4402823'), + (927, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4PPRXBG4', '4420735'), + (927, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4PPRXBG4', '4420738'), + (927, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4PPRXBG4', '4420739'), + (927, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4PPRXBG4', '4420741'), + (927, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4PPRXBG4', '4420744'), + (927, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4PPRXBG4', '4420747'), + (927, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4PPRXBG4', '4420748'), + (927, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4PPRXBG4', '4420749'), + (927, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4PPRXBG4', '4461883'), + (927, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4PPRXBG4', '4508342'), + (927, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4PPRXBG4', '4568602'), + (927, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4PPRXBG4', '6045684'), + (928, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '8412WDwd', '3236465'), + (928, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '8412WDwd', '3539916'), + (928, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '8412WDwd', '3539918'), + (928, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '8412WDwd', '3539919'), + (928, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '8412WDwd', '3539920'), + (928, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '8412WDwd', '3539921'), + (928, 650, 'not_attending', '2021-03-27 21:01:49', '2025-12-17 19:47:44', '8412WDwd', '3539928'), + (928, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8412WDwd', '3583262'), + (928, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8412WDwd', '3619523'), + (928, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8412WDwd', '3661369'), + (928, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8412WDwd', '3674262'), + (928, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8412WDwd', '3677402'), + (928, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '8412WDwd', '3730212'), + (928, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8412WDwd', '3793156'), + (928, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '8412WDwd', '3803310'), + (928, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '8412WDwd', '3806392'), + (928, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8412WDwd', '6045684'), + (929, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'dKRvvVZ4', '5186585'), + (929, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dKRvvVZ4', '5195095'), + (929, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dKRvvVZ4', '5223686'), + (929, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dKRvvVZ4', '5227432'), + (929, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dKRvvVZ4', '5247467'), + (929, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dKRvvVZ4', '5260800'), + (929, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dKRvvVZ4', '5269930'), + (929, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dKRvvVZ4', '5271448'), + (929, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dKRvvVZ4', '5271449'), + (929, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dKRvvVZ4', '5276469'), + (929, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dKRvvVZ4', '5278159'), + (929, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKRvvVZ4', '6045684'), + (930, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mLDJDMJm', '5670445'), + (930, 1824, 'not_attending', '2022-11-30 14:58:07', '2025-12-17 19:47:04', 'mLDJDMJm', '5774172'), + (930, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'mLDJDMJm', '5818247'), + (930, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mLDJDMJm', '5819471'), + (930, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mLDJDMJm', '5827739'), + (930, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mLDJDMJm', '5844306'), + (930, 1846, 'not_attending', '2022-12-18 18:54:16', '2025-12-17 19:47:04', 'mLDJDMJm', '5845237'), + (930, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mLDJDMJm', '5850159'), + (930, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mLDJDMJm', '5858999'), + (930, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mLDJDMJm', '5871984'), + (930, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mLDJDMJm', '5876354'), + (930, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mLDJDMJm', '6045684'), + (931, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ndlwGx54', '3517815'), + (931, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ndlwGx54', '3517816'), + (931, 639, 'not_attending', '2021-03-07 04:16:32', '2025-12-17 19:47:51', 'ndlwGx54', '3536656'), + (931, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'ndlwGx54', '3539916'), + (931, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndlwGx54', '3539927'), + (931, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndlwGx54', '3582734'), + (931, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndlwGx54', '3619523'), + (931, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ndlwGx54', '3674262'), + (931, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ndlwGx54', '3677402'), + (931, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlwGx54', '6045684'), + (932, 7, 'attending', '2020-03-24 01:35:21', '2025-12-17 19:47:58', 'GmjeNObd', '2958049'), + (932, 8, 'maybe', '2020-03-24 01:35:44', '2025-12-17 19:47:58', 'GmjeNObd', '2958050'), + (932, 9, 'not_attending', '2020-03-24 01:36:05', '2025-12-17 19:47:56', 'GmjeNObd', '2958052'), + (932, 10, 'attending', '2020-03-24 01:36:07', '2025-12-17 19:47:56', 'GmjeNObd', '2958053'), + (932, 12, 'not_attending', '2020-04-01 00:32:14', '2025-12-17 19:47:56', 'GmjeNObd', '2958056'), + (932, 14, 'maybe', '2020-04-09 21:07:59', '2025-12-17 19:47:57', 'GmjeNObd', '2958058'), + (932, 15, 'not_attending', '2020-04-13 16:05:49', '2025-12-17 19:47:57', 'GmjeNObd', '2958059'), + (932, 16, 'not_attending', '2020-03-26 04:03:40', '2025-12-17 19:47:56', 'GmjeNObd', '2958060'), + (932, 18, 'attending', '2020-04-17 21:43:57', '2025-12-17 19:47:57', 'GmjeNObd', '2958062'), + (932, 19, 'not_attending', '2020-04-01 00:32:20', '2025-12-17 19:47:56', 'GmjeNObd', '2958063'), + (932, 21, 'not_attending', '2020-04-30 18:37:50', '2025-12-17 19:47:57', 'GmjeNObd', '2958065'), + (932, 28, 'not_attending', '2020-04-01 00:31:41', '2025-12-17 19:47:56', 'GmjeNObd', '2960421'), + (932, 29, 'maybe', '2020-03-23 15:45:42', '2025-12-17 19:47:56', 'GmjeNObd', '2961309'), + (932, 30, 'maybe', '2020-03-23 22:32:07', '2025-12-17 19:47:57', 'GmjeNObd', '2961895'), + (932, 31, 'attending', '2020-03-25 22:28:47', '2025-12-17 19:47:58', 'GmjeNObd', '2963118'), + (932, 34, 'not_attending', '2020-03-26 04:02:46', '2025-12-17 19:47:56', 'GmjeNObd', '2966259'), + (932, 36, 'maybe', '2020-04-04 22:10:26', '2025-12-17 19:47:57', 'GmjeNObd', '2969208'), + (932, 38, 'not_attending', '2020-04-01 00:32:19', '2025-12-17 19:47:56', 'GmjeNObd', '2969751'), + (932, 39, 'maybe', '2020-04-04 17:05:31', '2025-12-17 19:47:57', 'GmjeNObd', '2970637'), + (932, 41, 'attending', '2020-04-16 19:04:55', '2025-12-17 19:47:57', 'GmjeNObd', '2971546'), + (932, 42, 'attending', '2020-04-04 18:29:33', '2025-12-17 19:47:57', 'GmjeNObd', '2973471'), + (932, 43, 'not_attending', '2020-04-19 05:01:00', '2025-12-17 19:47:57', 'GmjeNObd', '2974519'), + (932, 44, 'attending', '2020-04-11 04:29:47', '2025-12-17 19:47:57', 'GmjeNObd', '2974534'), + (932, 45, 'attending', '2020-04-06 04:48:35', '2025-12-17 19:47:57', 'GmjeNObd', '2974760'), + (932, 46, 'attending', '2020-04-11 21:26:31', '2025-12-17 19:47:57', 'GmjeNObd', '2974955'), + (932, 48, 'not_attending', '2020-05-19 18:43:09', '2025-12-17 19:47:57', 'GmjeNObd', '2975273'), + (932, 52, 'not_attending', '2020-06-15 21:23:06', '2025-12-17 19:47:58', 'GmjeNObd', '2975277'), + (932, 55, 'attending', '2020-04-06 16:46:32', '2025-12-17 19:47:57', 'GmjeNObd', '2975384'), + (932, 56, 'attending', '2020-04-11 21:27:23', '2025-12-17 19:47:57', 'GmjeNObd', '2975385'), + (932, 57, 'not_attending', '2020-04-27 16:05:23', '2025-12-17 19:47:57', 'GmjeNObd', '2976575'), + (932, 60, 'not_attending', '2020-04-24 19:26:32', '2025-12-17 19:47:57', 'GmjeNObd', '2977129'), + (932, 61, 'attending', '2020-04-13 16:01:38', '2025-12-17 19:47:57', 'GmjeNObd', '2977130'), + (932, 63, 'not_attending', '2020-05-19 18:43:08', '2025-12-17 19:47:57', 'GmjeNObd', '2977132'), + (932, 67, 'not_attending', '2020-06-15 21:23:03', '2025-12-17 19:47:58', 'GmjeNObd', '2977136'), + (932, 70, 'attending', '2020-04-08 02:13:20', '2025-12-17 19:47:57', 'GmjeNObd', '2977343'), + (932, 71, 'attending', '2020-04-11 21:27:17', '2025-12-17 19:47:57', 'GmjeNObd', '2977526'), + (932, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'GmjeNObd', '2977812'), + (932, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'GmjeNObd', '2977931'), + (932, 74, 'attending', '2020-04-17 23:40:07', '2025-12-17 19:47:57', 'GmjeNObd', '2978244'), + (932, 75, 'attending', '2020-04-23 00:28:27', '2025-12-17 19:47:57', 'GmjeNObd', '2978245'), + (932, 76, 'attending', '2020-04-30 18:38:08', '2025-12-17 19:47:57', 'GmjeNObd', '2978246'), + (932, 77, 'attending', '2020-05-05 22:51:39', '2025-12-17 19:47:57', 'GmjeNObd', '2978247'), + (932, 78, 'attending', '2020-05-19 18:43:35', '2025-12-17 19:47:57', 'GmjeNObd', '2978249'), + (932, 79, 'attending', '2020-05-25 18:47:09', '2025-12-17 19:47:57', 'GmjeNObd', '2978250'), + (932, 80, 'maybe', '2020-06-02 23:47:01', '2025-12-17 19:47:58', 'GmjeNObd', '2978251'), + (932, 81, 'attending', '2020-06-07 06:52:21', '2025-12-17 19:47:58', 'GmjeNObd', '2978252'), + (932, 82, 'not_attending', '2020-04-24 19:25:56', '2025-12-17 19:47:57', 'GmjeNObd', '2978433'), + (932, 83, 'attending', '2020-05-07 22:05:12', '2025-12-17 19:47:57', 'GmjeNObd', '2978438'), + (932, 84, 'attending', '2020-04-19 20:51:24', '2025-12-17 19:47:57', 'GmjeNObd', '2980871'), + (932, 86, 'attending', '2020-04-13 18:45:13', '2025-12-17 19:47:57', 'GmjeNObd', '2981388'), + (932, 87, 'not_attending', '2020-04-24 19:26:11', '2025-12-17 19:47:57', 'GmjeNObd', '2982602'), + (932, 88, 'attending', '2020-04-17 23:40:11', '2025-12-17 19:47:57', 'GmjeNObd', '2982603'), + (932, 89, 'maybe', '2020-04-27 16:05:57', '2025-12-17 19:47:57', 'GmjeNObd', '2982604'), + (932, 91, 'maybe', '2020-04-30 18:38:01', '2025-12-17 19:47:57', 'GmjeNObd', '2985130'), + (932, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'GmjeNObd', '2986743'), + (932, 94, 'not_attending', '2020-04-24 19:26:14', '2025-12-17 19:47:57', 'GmjeNObd', '2987421'), + (932, 95, 'maybe', '2020-04-24 19:26:44', '2025-12-17 19:47:57', 'GmjeNObd', '2987452'), + (932, 96, 'maybe', '2020-05-06 21:58:45', '2025-12-17 19:47:57', 'GmjeNObd', '2987453'), + (932, 98, 'not_attending', '2020-05-19 18:43:24', '2025-12-17 19:47:57', 'GmjeNObd', '2987455'), + (932, 100, 'not_attending', '2020-04-24 19:25:48', '2025-12-17 19:47:57', 'GmjeNObd', '2989142'), + (932, 101, 'maybe', '2020-04-21 21:59:46', '2025-12-17 19:47:57', 'GmjeNObd', '2989975'), + (932, 102, 'maybe', '2020-04-24 19:26:36', '2025-12-17 19:47:57', 'GmjeNObd', '2990784'), + (932, 103, 'attending', '2020-05-04 16:17:57', '2025-12-17 19:47:57', 'GmjeNObd', '2991407'), + (932, 104, 'not_attending', '2020-04-25 22:12:31', '2025-12-17 19:47:57', 'GmjeNObd', '2991471'), + (932, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'GmjeNObd', '2993501'), + (932, 108, 'maybe', '2020-05-17 06:37:15', '2025-12-17 19:47:57', 'GmjeNObd', '2993504'), + (932, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'GmjeNObd', '2994480'), + (932, 111, 'attending', '2020-06-07 02:43:08', '2025-12-17 19:47:58', 'GmjeNObd', '2994907'), + (932, 112, 'not_attending', '2020-07-04 18:32:03', '2025-12-17 19:47:55', 'GmjeNObd', '2994908'), + (932, 114, 'maybe', '2020-04-28 15:57:15', '2025-12-17 19:47:57', 'GmjeNObd', '2994911'), + (932, 115, 'attending', '2020-05-16 18:58:16', '2025-12-17 19:47:57', 'GmjeNObd', '3001217'), + (932, 118, 'attending', '2020-05-05 21:31:57', '2025-12-17 19:47:57', 'GmjeNObd', '3007644'), + (932, 119, 'attending', '2020-05-09 17:42:26', '2025-12-17 19:47:57', 'GmjeNObd', '3015486'), + (932, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'GmjeNObd', '3023063'), + (932, 125, 'attending', '2020-05-22 03:08:05', '2025-12-17 19:47:57', 'GmjeNObd', '3023987'), + (932, 127, 'attending', '2020-05-17 03:12:47', '2025-12-17 19:47:57', 'GmjeNObd', '3025623'), + (932, 128, 'not_attending', '2020-05-19 18:43:32', '2025-12-17 19:47:57', 'GmjeNObd', '3027185'), + (932, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'GmjeNObd', '3034321'), + (932, 136, 'attending', '2020-05-24 20:14:24', '2025-12-17 19:47:57', 'GmjeNObd', '3035881'), + (932, 139, 'not_attending', '2020-06-15 21:23:36', '2025-12-17 19:47:58', 'GmjeNObd', '3046190'), + (932, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'GmjeNObd', '3049983'), + (932, 156, 'not_attending', '2020-09-08 01:40:54', '2025-12-17 19:47:56', 'GmjeNObd', '3058693'), + (932, 157, 'maybe', '2020-09-13 03:31:15', '2025-12-17 19:47:56', 'GmjeNObd', '3058694'), + (932, 158, 'maybe', '2020-09-13 03:31:49', '2025-12-17 19:47:52', 'GmjeNObd', '3058695'), + (932, 159, 'maybe', '2020-09-29 14:27:22', '2025-12-17 19:47:52', 'GmjeNObd', '3058696'), + (932, 160, 'maybe', '2020-10-12 23:05:15', '2025-12-17 19:47:52', 'GmjeNObd', '3058697'), + (932, 161, 'maybe', '2020-09-29 14:27:50', '2025-12-17 19:47:52', 'GmjeNObd', '3058698'), + (932, 162, 'maybe', '2020-10-12 23:03:44', '2025-12-17 19:47:52', 'GmjeNObd', '3058699'), + (932, 168, 'maybe', '2020-06-15 21:23:18', '2025-12-17 19:47:58', 'GmjeNObd', '3058740'), + (932, 169, 'not_attending', '2020-06-15 21:22:56', '2025-12-17 19:47:58', 'GmjeNObd', '3058741'), + (932, 171, 'maybe', '2020-06-11 20:53:01', '2025-12-17 19:47:58', 'GmjeNObd', '3058743'), + (932, 172, 'attending', '2020-06-07 05:14:20', '2025-12-17 19:47:58', 'GmjeNObd', '3058959'), + (932, 173, 'not_attending', '2020-06-15 21:23:52', '2025-12-17 19:47:58', 'GmjeNObd', '3067093'), + (932, 174, 'attending', '2020-06-08 22:17:06', '2025-12-17 19:47:58', 'GmjeNObd', '3067927'), + (932, 175, 'not_attending', '2020-06-15 21:23:13', '2025-12-17 19:47:58', 'GmjeNObd', '3068305'), + (932, 177, 'maybe', '2020-06-15 21:23:27', '2025-12-17 19:47:58', 'GmjeNObd', '3073193'), + (932, 178, 'attending', '2020-06-15 21:22:44', '2025-12-17 19:47:58', 'GmjeNObd', '3073195'), + (932, 179, 'not_attending', '2020-06-15 21:24:03', '2025-12-17 19:47:58', 'GmjeNObd', '3073687'), + (932, 180, 'not_attending', '2020-06-15 21:23:34', '2025-12-17 19:47:58', 'GmjeNObd', '3074048'), + (932, 181, 'maybe', '2020-06-15 21:23:59', '2025-12-17 19:47:58', 'GmjeNObd', '3074513'), + (932, 182, 'maybe', '2020-06-22 18:36:37', '2025-12-17 19:47:55', 'GmjeNObd', '3074514'), + (932, 183, 'maybe', '2020-06-22 18:36:01', '2025-12-17 19:47:58', 'GmjeNObd', '3075228'), + (932, 185, 'attending', '2020-06-15 21:25:42', '2025-12-17 19:47:58', 'GmjeNObd', '3075456'), + (932, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'GmjeNObd', '3083791'), + (932, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'GmjeNObd', '3085151'), + (932, 190, 'maybe', '2020-06-28 23:29:43', '2025-12-17 19:47:55', 'GmjeNObd', '3087258'), + (932, 191, 'attending', '2020-07-07 23:35:01', '2025-12-17 19:47:55', 'GmjeNObd', '3087259'), + (932, 192, 'maybe', '2020-07-15 00:21:45', '2025-12-17 19:47:55', 'GmjeNObd', '3087260'), + (932, 193, 'attending', '2020-07-24 05:32:56', '2025-12-17 19:47:55', 'GmjeNObd', '3087261'), + (932, 194, 'attending', '2020-08-01 21:54:46', '2025-12-17 19:47:56', 'GmjeNObd', '3087262'), + (932, 196, 'maybe', '2020-08-12 23:37:36', '2025-12-17 19:47:56', 'GmjeNObd', '3087265'), + (932, 197, 'maybe', '2020-08-20 22:27:13', '2025-12-17 19:47:56', 'GmjeNObd', '3087266'), + (932, 198, 'attending', '2020-08-27 15:57:32', '2025-12-17 19:47:56', 'GmjeNObd', '3087267'), + (932, 199, 'not_attending', '2020-09-02 21:10:51', '2025-12-17 19:47:56', 'GmjeNObd', '3087268'), + (932, 201, 'attending', '2020-06-25 01:52:26', '2025-12-17 19:47:55', 'GmjeNObd', '3088653'), + (932, 202, 'not_attending', '2020-07-04 18:32:13', '2025-12-17 19:47:55', 'GmjeNObd', '3090353'), + (932, 204, 'attending', '2020-06-28 23:27:34', '2025-12-17 19:47:55', 'GmjeNObd', '3102758'), + (932, 209, 'attending', '2020-06-28 23:28:12', '2025-12-17 19:47:55', 'GmjeNObd', '3106813'), + (932, 216, 'attending', '2020-07-07 23:35:12', '2025-12-17 19:47:55', 'GmjeNObd', '3126500'), + (932, 221, 'maybe', '2020-09-13 03:31:09', '2025-12-17 19:47:56', 'GmjeNObd', '3129265'), + (932, 223, 'attending', '2020-09-08 01:40:58', '2025-12-17 19:47:56', 'GmjeNObd', '3129980'), + (932, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'GmjeNObd', '3132817'), + (932, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'GmjeNObd', '3132820'), + (932, 228, 'attending', '2020-07-15 00:21:30', '2025-12-17 19:47:55', 'GmjeNObd', '3132821'), + (932, 241, 'maybe', '2020-09-29 14:27:33', '2025-12-17 19:47:52', 'GmjeNObd', '3149472'), + (932, 242, 'maybe', '2020-09-13 03:31:27', '2025-12-17 19:47:56', 'GmjeNObd', '3149473'), + (932, 244, 'maybe', '2020-10-12 23:04:10', '2025-12-17 19:47:52', 'GmjeNObd', '3149475'), + (932, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'GmjeNObd', '3155321'), + (932, 273, 'attending', '2020-08-03 17:20:44', '2025-12-17 19:47:56', 'GmjeNObd', '3162006'), + (932, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'GmjeNObd', '3163442'), + (932, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'GmjeNObd', '3169555'), + (932, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', 'GmjeNObd', '3169556'), + (932, 288, 'maybe', '2020-09-02 21:11:08', '2025-12-17 19:47:56', 'GmjeNObd', '3170249'), + (932, 290, 'not_attending', '2020-09-08 01:40:12', '2025-12-17 19:47:56', 'GmjeNObd', '3170251'), + (932, 291, 'not_attending', '2020-09-08 01:40:35', '2025-12-17 19:47:56', 'GmjeNObd', '3170252'), + (932, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'GmjeNObd', '3172832'), + (932, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'GmjeNObd', '3172833'), + (932, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'GmjeNObd', '3172834'), + (932, 296, 'maybe', '2020-09-08 01:40:48', '2025-12-17 19:47:56', 'GmjeNObd', '3172876'), + (932, 301, 'attending', '2020-08-26 18:44:30', '2025-12-17 19:47:56', 'GmjeNObd', '3178027'), + (932, 311, 'maybe', '2020-09-08 01:42:00', '2025-12-17 19:47:56', 'GmjeNObd', '3186057'), + (932, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'GmjeNObd', '3191735'), + (932, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', 'GmjeNObd', '3193885'), + (932, 320, 'maybe', '2020-09-02 21:11:00', '2025-12-17 19:47:56', 'GmjeNObd', '3195552'), + (932, 322, 'maybe', '2020-09-08 01:41:30', '2025-12-17 19:47:56', 'GmjeNObd', '3197080'), + (932, 323, 'maybe', '2020-09-08 01:41:35', '2025-12-17 19:47:56', 'GmjeNObd', '3197081'), + (932, 324, 'maybe', '2020-09-13 03:31:21', '2025-12-17 19:47:56', 'GmjeNObd', '3197082'), + (932, 325, 'maybe', '2020-09-13 03:31:34', '2025-12-17 19:47:51', 'GmjeNObd', '3197083'), + (932, 326, 'maybe', '2020-09-13 03:31:45', '2025-12-17 19:47:52', 'GmjeNObd', '3197084'), + (932, 327, 'maybe', '2020-09-23 18:40:57', '2025-12-17 19:47:52', 'GmjeNObd', '3197085'), + (932, 328, 'maybe', '2020-09-23 18:41:05', '2025-12-17 19:47:52', 'GmjeNObd', '3197086'), + (932, 329, 'maybe', '2020-09-29 14:27:15', '2025-12-17 19:47:52', 'GmjeNObd', '3197087'), + (932, 331, 'not_attending', '2020-09-02 21:11:58', '2025-12-17 19:47:56', 'GmjeNObd', '3198871'), + (932, 332, 'maybe', '2020-09-08 01:40:23', '2025-12-17 19:47:56', 'GmjeNObd', '3198873'), + (932, 333, 'maybe', '2020-09-29 14:27:36', '2025-12-17 19:47:52', 'GmjeNObd', '3199782'), + (932, 334, 'maybe', '2020-09-29 14:27:41', '2025-12-17 19:47:52', 'GmjeNObd', '3199784'), + (932, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'GmjeNObd', '3200209'), + (932, 336, 'maybe', '2020-09-08 01:41:24', '2025-12-17 19:47:56', 'GmjeNObd', '3200495'), + (932, 340, 'maybe', '2020-09-13 03:31:02', '2025-12-17 19:47:56', 'GmjeNObd', '3204470'), + (932, 341, 'maybe', '2020-09-13 03:31:37', '2025-12-17 19:47:52', 'GmjeNObd', '3204471'), + (932, 342, 'maybe', '2020-09-29 14:27:17', '2025-12-17 19:47:52', 'GmjeNObd', '3204472'), + (932, 343, 'maybe', '2020-09-13 03:31:30', '2025-12-17 19:47:56', 'GmjeNObd', '3206759'), + (932, 345, 'maybe', '2020-09-13 03:30:26', '2025-12-17 19:47:56', 'GmjeNObd', '3207423'), + (932, 346, 'maybe', '2020-09-13 03:30:52', '2025-12-17 19:47:56', 'GmjeNObd', '3207515'), + (932, 347, 'maybe', '2020-09-24 18:21:58', '2025-12-17 19:47:51', 'GmjeNObd', '3207930'), + (932, 348, 'maybe', '2020-09-23 18:41:01', '2025-12-17 19:47:52', 'GmjeNObd', '3209159'), + (932, 349, 'maybe', '2020-09-13 03:30:56', '2025-12-17 19:47:56', 'GmjeNObd', '3209194'), + (932, 350, 'attending', '2020-09-12 19:37:04', '2025-12-17 19:47:56', 'GmjeNObd', '3209255'), + (932, 351, 'maybe', '2020-09-13 03:31:05', '2025-12-17 19:47:56', 'GmjeNObd', '3209257'), + (932, 352, 'maybe', '2020-09-13 03:30:33', '2025-12-17 19:47:56', 'GmjeNObd', '3210514'), + (932, 356, 'maybe', '2020-09-23 18:41:14', '2025-12-17 19:47:51', 'GmjeNObd', '3212572'), + (932, 357, 'maybe', '2020-09-23 18:41:07', '2025-12-17 19:47:52', 'GmjeNObd', '3212573'), + (932, 362, 'attending', '2020-09-23 18:40:37', '2025-12-17 19:47:52', 'GmjeNObd', '3214207'), + (932, 363, 'attending', '2020-09-16 22:03:19', '2025-12-17 19:47:52', 'GmjeNObd', '3217037'), + (932, 364, 'attending', '2020-09-21 20:57:29', '2025-12-17 19:47:56', 'GmjeNObd', '3217106'), + (932, 365, 'maybe', '2020-09-23 18:40:20', '2025-12-17 19:47:52', 'GmjeNObd', '3218510'), + (932, 367, 'not_attending', '2020-09-23 18:41:19', '2025-12-17 19:47:51', 'GmjeNObd', '3219751'), + (932, 368, 'maybe', '2020-09-29 14:27:11', '2025-12-17 19:47:52', 'GmjeNObd', '3221403'), + (932, 369, 'maybe', '2020-10-07 21:16:32', '2025-12-17 19:47:52', 'GmjeNObd', '3221404'), + (932, 370, 'maybe', '2020-10-07 21:16:39', '2025-12-17 19:47:52', 'GmjeNObd', '3221405'), + (932, 371, 'maybe', '2020-10-07 21:16:48', '2025-12-17 19:47:52', 'GmjeNObd', '3221406'), + (932, 372, 'maybe', '2020-10-12 23:04:11', '2025-12-17 19:47:52', 'GmjeNObd', '3221407'), + (932, 373, 'maybe', '2020-10-12 23:05:13', '2025-12-17 19:47:52', 'GmjeNObd', '3221413'), + (932, 374, 'maybe', '2020-10-25 23:25:04', '2025-12-17 19:47:53', 'GmjeNObd', '3221415'), + (932, 375, 'maybe', '2020-09-29 14:27:39', '2025-12-17 19:47:52', 'GmjeNObd', '3222825'), + (932, 376, 'maybe', '2020-10-07 21:16:46', '2025-12-17 19:47:52', 'GmjeNObd', '3222827'), + (932, 377, 'maybe', '2020-10-25 23:25:14', '2025-12-17 19:47:53', 'GmjeNObd', '3222828'), + (932, 378, 'maybe', '2020-09-23 18:40:53', '2025-12-17 19:47:52', 'GmjeNObd', '3223725'), + (932, 379, 'not_attending', '2020-09-29 14:27:28', '2025-12-17 19:47:52', 'GmjeNObd', '3226266'), + (932, 382, 'maybe', '2020-10-07 21:16:35', '2025-12-17 19:47:52', 'GmjeNObd', '3226873'), + (932, 383, 'maybe', '2020-09-29 14:27:04', '2025-12-17 19:47:52', 'GmjeNObd', '3227946'), + (932, 384, 'maybe', '2020-09-29 14:26:29', '2025-12-17 19:47:52', 'GmjeNObd', '3228696'), + (932, 385, 'maybe', '2020-09-29 14:58:57', '2025-12-17 19:47:52', 'GmjeNObd', '3228698'), + (932, 386, 'maybe', '2020-09-29 14:27:48', '2025-12-17 19:47:52', 'GmjeNObd', '3228699'), + (932, 387, 'maybe', '2020-10-16 23:49:15', '2025-12-17 19:47:52', 'GmjeNObd', '3228700'), + (932, 388, 'attending', '2020-10-24 22:31:34', '2025-12-17 19:47:52', 'GmjeNObd', '3228701'), + (932, 391, 'maybe', '2020-10-07 21:16:42', '2025-12-17 19:47:52', 'GmjeNObd', '3236446'), + (932, 392, 'maybe', '2020-10-25 23:25:12', '2025-12-17 19:47:53', 'GmjeNObd', '3236447'), + (932, 411, 'maybe', '2020-10-07 21:16:25', '2025-12-17 19:47:52', 'GmjeNObd', '3236596'), + (932, 412, 'maybe', '2020-10-07 21:16:15', '2025-12-17 19:47:52', 'GmjeNObd', '3236636'), + (932, 413, 'maybe', '2020-10-12 23:04:16', '2025-12-17 19:47:52', 'GmjeNObd', '3236670'), + (932, 414, 'maybe', '2020-10-12 23:03:47', '2025-12-17 19:47:52', 'GmjeNObd', '3237277'), + (932, 415, 'maybe', '2020-10-07 21:16:29', '2025-12-17 19:47:52', 'GmjeNObd', '3238044'), + (932, 416, 'maybe', '2020-10-07 21:16:19', '2025-12-17 19:47:52', 'GmjeNObd', '3238073'), + (932, 417, 'maybe', '2020-10-12 23:03:32', '2025-12-17 19:47:52', 'GmjeNObd', '3238779'), + (932, 418, 'maybe', '2020-10-12 23:03:34', '2025-12-17 19:47:52', 'GmjeNObd', '3241728'), + (932, 419, 'maybe', '2020-10-12 23:03:20', '2025-12-17 19:47:52', 'GmjeNObd', '3242234'), + (932, 420, 'maybe', '2020-10-12 23:03:38', '2025-12-17 19:47:52', 'GmjeNObd', '3245293'), + (932, 421, 'maybe', '2020-10-12 23:04:20', '2025-12-17 19:47:52', 'GmjeNObd', '3245294'), + (932, 422, 'maybe', '2020-10-25 23:25:11', '2025-12-17 19:47:53', 'GmjeNObd', '3245295'), + (932, 424, 'maybe', '2020-10-12 23:04:02', '2025-12-17 19:47:52', 'GmjeNObd', '3245751'), + (932, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GmjeNObd', '3250232'), + (932, 428, 'maybe', '2020-10-25 23:25:03', '2025-12-17 19:47:53', 'GmjeNObd', '3250332'), + (932, 431, 'maybe', '2020-10-25 23:25:06', '2025-12-17 19:47:53', 'GmjeNObd', '3253225'), + (932, 437, 'maybe', '2020-10-25 23:25:09', '2025-12-17 19:47:53', 'GmjeNObd', '3256160'), + (932, 439, 'maybe', '2020-10-25 23:25:08', '2025-12-17 19:47:53', 'GmjeNObd', '3256164'), + (932, 440, 'attending', '2020-11-07 23:58:51', '2025-12-17 19:47:53', 'GmjeNObd', '3256168'), + (932, 441, 'maybe', '2020-11-07 23:59:10', '2025-12-17 19:47:54', 'GmjeNObd', '3256169'), + (932, 443, 'attending', '2020-10-23 21:29:31', '2025-12-17 19:47:52', 'GmjeNObd', '3263578'), + (932, 444, 'maybe', '2020-10-25 23:25:15', '2025-12-17 19:47:53', 'GmjeNObd', '3263745'), + (932, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GmjeNObd', '3276428'), + (932, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'GmjeNObd', '3281467'), + (932, 460, 'maybe', '2020-11-19 22:48:55', '2025-12-17 19:47:54', 'GmjeNObd', '3281468'), + (932, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GmjeNObd', '3281470'), + (932, 464, 'maybe', '2020-11-19 22:49:00', '2025-12-17 19:47:54', 'GmjeNObd', '3281554'), + (932, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GmjeNObd', '3281829'), + (932, 468, 'maybe', '2020-11-19 22:49:04', '2025-12-17 19:47:54', 'GmjeNObd', '3285413'), + (932, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'GmjeNObd', '3285414'), + (932, 481, 'attending', '2020-11-19 22:50:22', '2025-12-17 19:47:54', 'GmjeNObd', '3297764'), + (932, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'GmjeNObd', '3313856'), + (932, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GmjeNObd', '3314909'), + (932, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GmjeNObd', '3314964'), + (932, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'GmjeNObd', '3323365'), + (932, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GmjeNObd', '3329383'), + (932, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GmjeNObd', '3351539'), + (932, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GmjeNObd', '3386848'), + (932, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GmjeNObd', '3389527'), + (932, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GmjeNObd', '3396499'), + (932, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GmjeNObd', '3403650'), + (932, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GmjeNObd', '3406988'), + (932, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'GmjeNObd', '3408338'), + (932, 555, 'attending', '2021-01-23 19:27:37', '2025-12-17 19:47:49', 'GmjeNObd', '3416576'), + (932, 564, 'attending', '2021-01-22 21:42:51', '2025-12-17 19:47:49', 'GmjeNObd', '3426074'), + (932, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'GmjeNObd', '3430267'), + (932, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'GmjeNObd', '3470303'), + (932, 604, 'attending', '2021-02-27 23:59:00', '2025-12-17 19:47:50', 'GmjeNObd', '3470305'), + (932, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GmjeNObd', '3470991'), + (932, 621, 'attending', '2021-03-06 22:48:05', '2025-12-17 19:47:51', 'GmjeNObd', '3517815'), + (932, 622, 'attending', '2021-03-10 23:58:11', '2025-12-17 19:47:51', 'GmjeNObd', '3517816'), + (932, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'GmjeNObd', '3523941'), + (932, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GmjeNObd', '3533850'), + (932, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GmjeNObd', '3536632'), + (932, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GmjeNObd', '3536656'), + (932, 641, 'attending', '2021-04-03 21:05:12', '2025-12-17 19:47:44', 'GmjeNObd', '3539916'), + (932, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'GmjeNObd', '3539917'), + (932, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'GmjeNObd', '3539918'), + (932, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'GmjeNObd', '3539919'), + (932, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'GmjeNObd', '3539920'), + (932, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'GmjeNObd', '3539921'), + (932, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'GmjeNObd', '3539922'), + (932, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'GmjeNObd', '3539923'), + (932, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GmjeNObd', '3539927'), + (932, 680, 'attending', '2021-03-10 23:57:55', '2025-12-17 19:47:51', 'GmjeNObd', '3547700'), + (932, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GmjeNObd', '3582734'), + (932, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GmjeNObd', '3583262'), + (932, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GmjeNObd', '3619523'), + (932, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GmjeNObd', '3661369'), + (932, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GmjeNObd', '3674262'), + (932, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GmjeNObd', '3677402'), + (932, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GmjeNObd', '3730212'), + (932, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GmjeNObd', '3793156'), + (932, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjeNObd', '3974109'), + (932, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjeNObd', '3975311'), + (932, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjeNObd', '3975312'), + (932, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjeNObd', '3994992'), + (932, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjeNObd', '4014338'), + (932, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GmjeNObd', '4021848'), + (932, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjeNObd', '4136744'), + (932, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GmjeNObd', '4136937'), + (932, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GmjeNObd', '4136938'), + (932, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjeNObd', '4136947'), + (932, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjeNObd', '4239259'), + (932, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GmjeNObd', '4250163'), + (932, 1516, 'attending', '2022-08-16 23:23:39', '2025-12-17 19:47:23', 'GmjeNObd', '5441129'), + (932, 1517, 'attending', '2022-08-26 21:53:15', '2025-12-17 19:47:23', 'GmjeNObd', '5441130'), + (932, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjeNObd', '5441131'), + (932, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjeNObd', '5441132'), + (932, 1544, 'attending', '2022-09-15 22:23:54', '2025-12-17 19:47:11', 'GmjeNObd', '5454517'), + (932, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjeNObd', '5461278'), + (932, 1575, 'attending', '2022-08-26 21:53:48', '2025-12-17 19:47:23', 'GmjeNObd', '5482250'), + (932, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjeNObd', '5488912'), + (932, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjeNObd', '5492192'), + (932, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjeNObd', '5493139'), + (932, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjeNObd', '5493200'), + (932, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjeNObd', '5502188'), + (932, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjeNObd', '5505059'), + (932, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GmjeNObd', '5509055'), + (932, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjeNObd', '5512862'), + (932, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjeNObd', '5513985'), + (932, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GmjeNObd', '5519981'), + (932, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjeNObd', '5522550'), + (932, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjeNObd', '5534683'), + (932, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjeNObd', '5537735'), + (932, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjeNObd', '5540859'), + (932, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjeNObd', '5546619'), + (932, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GmjeNObd', '5555245'), + (932, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjeNObd', '5557747'), + (932, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjeNObd', '5560255'), + (932, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjeNObd', '5562906'), + (932, 1667, 'maybe', '2022-09-24 19:37:15', '2025-12-17 19:47:11', 'GmjeNObd', '5563221'), + (932, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjeNObd', '5600604'), + (932, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjeNObd', '5605544'), + (932, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'GmjeNObd', '5606737'), + (932, 1719, 'not_attending', '2022-10-08 21:29:37', '2025-12-17 19:47:12', 'GmjeNObd', '5630958'), + (932, 1720, 'attending', '2022-10-08 21:29:42', '2025-12-17 19:47:12', 'GmjeNObd', '5630959'), + (932, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GmjeNObd', '5630960'), + (932, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjeNObd', '5630961'), + (932, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjeNObd', '5630962'), + (932, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GmjeNObd', '5630966'), + (932, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GmjeNObd', '5630967'), + (932, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjeNObd', '5630968'), + (932, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjeNObd', '5635406'), + (932, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjeNObd', '5638765'), + (932, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjeNObd', '5640097'), + (932, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjeNObd', '5640843'), + (932, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjeNObd', '5641521'), + (932, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GmjeNObd', '5642818'), + (932, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjeNObd', '5652395'), + (932, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GmjeNObd', '5670445'), + (932, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjeNObd', '5671637'), + (932, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjeNObd', '5672329'), + (932, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjeNObd', '5674057'), + (932, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjeNObd', '5674060'), + (932, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'GmjeNObd', '5677461'), + (932, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjeNObd', '5698046'), + (932, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GmjeNObd', '5699760'), + (932, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjeNObd', '5741601'), + (932, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjeNObd', '5763458'), + (932, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjeNObd', '5774172'), + (932, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GmjeNObd', '5818247'), + (932, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjeNObd', '5819471'), + (932, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GmjeNObd', '5827739'), + (932, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjeNObd', '5844306'), + (932, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjeNObd', '5850159'), + (932, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjeNObd', '5858999'), + (932, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjeNObd', '5871984'), + (932, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjeNObd', '5876354'), + (932, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjeNObd', '5880939'), + (932, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjeNObd', '5880940'), + (932, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GmjeNObd', '5880942'), + (932, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjeNObd', '5880943'), + (932, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjeNObd', '5887890'), + (932, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjeNObd', '5888598'), + (932, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjeNObd', '5893260'), + (932, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjeNObd', '5899826'), + (932, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjeNObd', '5900199'), + (932, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjeNObd', '5900200'), + (932, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjeNObd', '5900202'), + (932, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjeNObd', '5900203'), + (932, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GmjeNObd', '5901108'), + (932, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjeNObd', '5901126'), + (932, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjeNObd', '5909655'), + (932, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjeNObd', '5910522'), + (932, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjeNObd', '5910526'), + (932, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjeNObd', '5910528'), + (932, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjeNObd', '5916219'), + (932, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GmjeNObd', '5936234'), + (932, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjeNObd', '5958351'), + (932, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjeNObd', '5959751'), + (932, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjeNObd', '5959755'), + (932, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjeNObd', '5960055'), + (932, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjeNObd', '5961684'), + (932, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GmjeNObd', '5962132'), + (932, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GmjeNObd', '5962133'), + (932, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjeNObd', '5962134'), + (932, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjeNObd', '5962317'), + (932, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjeNObd', '5962318'), + (932, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GmjeNObd', '5965933'), + (932, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjeNObd', '5967014'), + (932, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjeNObd', '5972815'), + (932, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjeNObd', '5974016'), + (932, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjeNObd', '5981515'), + (932, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjeNObd', '5993516'), + (932, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjeNObd', '5998939'), + (932, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjeNObd', '6028191'), + (932, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjeNObd', '6040066'), + (932, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjeNObd', '6042717'), + (932, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjeNObd', '6044838'), + (932, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GmjeNObd', '6044839'), + (932, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjeNObd', '6045684'), + (932, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjeNObd', '6050104'), + (932, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjeNObd', '6053195'), + (932, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjeNObd', '6053198'), + (932, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjeNObd', '6056085'), + (932, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjeNObd', '6056916'), + (932, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjeNObd', '6059290'), + (932, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjeNObd', '6060328'), + (932, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjeNObd', '6061037'), + (932, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjeNObd', '6061039'), + (932, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjeNObd', '6067245'), + (932, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjeNObd', '6068094'), + (932, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjeNObd', '6068252'), + (932, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjeNObd', '6068253'), + (932, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjeNObd', '6068254'), + (932, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GmjeNObd', '6068280'), + (932, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjeNObd', '6069093'), + (932, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GmjeNObd', '6072528'), + (932, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjeNObd', '6079840'), + (932, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjeNObd', '6083398'), + (932, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GmjeNObd', '6093504'), + (932, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjeNObd', '6097414'), + (932, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjeNObd', '6097442'), + (932, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjeNObd', '6097684'), + (932, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjeNObd', '6098762'), + (932, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjeNObd', '6101361'), + (932, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjeNObd', '6101362'), + (932, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjeNObd', '6107314'), + (932, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GmjeNObd', '6120034'), + (932, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GmjeNObd', '6136733'), + (932, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjeNObd', '6137989'), + (932, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjeNObd', '6150864'), + (932, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjeNObd', '6155491'), + (932, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjeNObd', '6164417'), + (932, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjeNObd', '6166388'), + (932, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjeNObd', '6176439'), + (932, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GmjeNObd', '6182410'), + (932, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjeNObd', '6185812'), + (932, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjeNObd', '6187651'), + (932, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjeNObd', '6187963'), + (932, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjeNObd', '6187964'), + (932, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjeNObd', '6187966'), + (932, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjeNObd', '6187967'), + (932, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjeNObd', '6187969'), + (932, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjeNObd', '6334878'), + (932, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjeNObd', '6337236'), + (932, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjeNObd', '6337970'), + (932, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjeNObd', '6338308'), + (932, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjeNObd', '6341710'), + (932, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjeNObd', '6342044'), + (932, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjeNObd', '6342298'), + (932, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GmjeNObd', '6343294'), + (932, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjeNObd', '6347034'), + (932, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjeNObd', '6347056'), + (932, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjeNObd', '6353830'), + (932, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjeNObd', '6353831'), + (932, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjeNObd', '6357867'), + (932, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjeNObd', '6358652'), + (932, 2204, 'attending', '2023-08-19 20:31:09', '2025-12-17 19:46:55', 'GmjeNObd', '6361542'), + (932, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjeNObd', '6361709'), + (932, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjeNObd', '6361710'), + (932, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjeNObd', '6361711'), + (932, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjeNObd', '6361712'), + (932, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjeNObd', '6361713'), + (932, 2232, 'attending', '2023-08-26 20:59:39', '2025-12-17 19:46:55', 'GmjeNObd', '6374818'), + (932, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'GmjeNObd', '6382573'), + (932, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'GmjeNObd', '6388604'), + (932, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GmjeNObd', '6394629'), + (932, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjeNObd', '6394631'), + (932, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjeNObd', '6440863'), + (932, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjeNObd', '6445440'), + (932, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjeNObd', '6453951'), + (932, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjeNObd', '6461696'), + (932, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjeNObd', '6462129'), + (932, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjeNObd', '6463218'), + (932, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GmjeNObd', '6472181'), + (932, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjeNObd', '6482693'), + (932, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GmjeNObd', '6484200'), + (932, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'GmjeNObd', '6484680'), + (932, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjeNObd', '6507741'), + (932, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GmjeNObd', '6514659'), + (932, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GmjeNObd', '6514660'), + (932, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjeNObd', '6519103'), + (932, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjeNObd', '6535681'), + (932, 2338, 'attending', '2023-11-26 00:05:24', '2025-12-17 19:46:48', 'GmjeNObd', '6538868'), + (932, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjeNObd', '6584747'), + (932, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjeNObd', '6587097'), + (932, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjeNObd', '6609022'), + (932, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'GmjeNObd', '6632757'), + (932, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjeNObd', '6644187'), + (932, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjeNObd', '6648951'), + (932, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GmjeNObd', '6648952'), + (932, 2388, 'attending', '2024-01-07 00:31:40', '2025-12-17 19:46:37', 'GmjeNObd', '6649244'), + (932, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjeNObd', '6655401'), + (932, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjeNObd', '6661585'), + (932, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjeNObd', '6661588'), + (932, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjeNObd', '6661589'), + (932, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjeNObd', '6699906'), + (932, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GmjeNObd', '6699913'), + (932, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjeNObd', '6701109'), + (932, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjeNObd', '6705219'), + (932, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjeNObd', '6710153'), + (932, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjeNObd', '6711552'), + (932, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GmjeNObd', '6711553'), + (932, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjeNObd', '6722688'), + (932, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjeNObd', '6730620'), + (932, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjeNObd', '6740364'), + (932, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjeNObd', '6743829'), + (932, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjeNObd', '7030380'), + (932, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'GmjeNObd', '7033677'), + (932, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjeNObd', '7044715'), + (932, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjeNObd', '7050318'), + (932, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjeNObd', '7050319'), + (932, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjeNObd', '7050322'), + (932, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjeNObd', '7057804'), + (932, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjeNObd', '7072824'), + (932, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjeNObd', '7074348'), + (932, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GmjeNObd', '7089267'), + (932, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjeNObd', '7098747'), + (932, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GmjeNObd', '7113468'), + (932, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjeNObd', '7114856'), + (932, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjeNObd', '7114951'), + (932, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjeNObd', '7114955'), + (932, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjeNObd', '7114956'), + (932, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GmjeNObd', '7114957'), + (932, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjeNObd', '7159484'), + (932, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjeNObd', '7178446'), + (932, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GmjeNObd', '7220467'), + (932, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjeNObd', '7240354'), + (932, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjeNObd', '7251633'), + (932, 2626, 'attending', '2024-05-17 02:21:52', '2025-12-17 19:46:35', 'GmjeNObd', '7264723'), + (932, 2627, 'attending', '2024-05-20 23:48:57', '2025-12-17 19:46:35', 'GmjeNObd', '7264724'), + (932, 2628, 'attending', '2024-06-01 20:58:12', '2025-12-17 19:46:36', 'GmjeNObd', '7264725'), + (932, 2629, 'attending', '2024-06-08 21:53:14', '2025-12-17 19:46:28', 'GmjeNObd', '7264726'), + (932, 2647, 'attending', '2024-06-09 20:02:11', '2025-12-17 19:46:28', 'GmjeNObd', '7282057'), + (932, 2649, 'not_attending', '2024-05-28 19:55:33', '2025-12-17 19:46:35', 'GmjeNObd', '7282950'), + (932, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'GmjeNObd', '7302674'), + (932, 2678, 'attending', '2024-06-15 22:44:21', '2025-12-17 19:46:28', 'GmjeNObd', '7319489'), + (932, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjeNObd', '7324073'), + (932, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjeNObd', '7324074'), + (933, 1379, 'not_attending', '2022-05-21 22:15:48', '2025-12-17 19:47:30', 'mR695gEm', '5271449'), + (933, 1380, 'not_attending', '2022-05-26 21:39:17', '2025-12-17 19:47:30', 'mR695gEm', '5271450'), + (933, 1400, 'attending', '2022-05-10 02:23:25', '2025-12-17 19:47:29', 'mR695gEm', '5284864'), + (933, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mR695gEm', '5363695'), + (933, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mR695gEm', '5365960'), + (933, 1410, 'not_attending', '2022-05-17 17:52:29', '2025-12-17 19:47:29', 'mR695gEm', '5367530'), + (933, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mR695gEm', '5368973'), + (933, 1424, 'attending', '2022-05-23 23:11:30', '2025-12-17 19:47:30', 'mR695gEm', '5375772'), + (933, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mR695gEm', '5378247'), + (933, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mR695gEm', '5389605'), + (933, 1442, 'not_attending', '2022-06-18 15:35:52', '2025-12-17 19:47:17', 'mR695gEm', '5397265'), + (933, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mR695gEm', '5403967'), + (933, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mR695gEm', '5404786'), + (933, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mR695gEm', '5405203'), + (933, 1476, 'attending', '2022-06-19 19:21:12', '2025-12-17 19:47:17', 'mR695gEm', '5408130'), + (933, 1478, 'not_attending', '2022-06-24 13:45:06', '2025-12-17 19:47:19', 'mR695gEm', '5408794'), + (933, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mR695gEm', '5411699'), + (933, 1482, 'attending', '2022-06-24 13:45:12', '2025-12-17 19:47:19', 'mR695gEm', '5412550'), + (933, 1484, 'not_attending', '2022-06-21 12:39:39', '2025-12-17 19:47:17', 'mR695gEm', '5415046'), + (933, 1488, 'not_attending', '2022-07-05 22:36:07', '2025-12-17 19:47:19', 'mR695gEm', '5420154'), + (933, 1490, 'maybe', '2022-07-01 13:17:12', '2025-12-17 19:47:19', 'mR695gEm', '5420156'), + (933, 1495, 'maybe', '2022-07-01 13:21:03', '2025-12-17 19:47:19', 'mR695gEm', '5422086'), + (933, 1496, 'attending', '2022-06-26 20:19:47', '2025-12-17 19:47:19', 'mR695gEm', '5422404'), + (933, 1497, 'attending', '2022-06-26 20:19:53', '2025-12-17 19:47:19', 'mR695gEm', '5422405'), + (933, 1498, 'not_attending', '2022-07-02 22:45:58', '2025-12-17 19:47:19', 'mR695gEm', '5422406'), + (933, 1500, 'maybe', '2022-07-01 13:17:16', '2025-12-17 19:47:19', 'mR695gEm', '5423915'), + (933, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mR695gEm', '5424565'), + (933, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mR695gEm', '5426882'), + (933, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mR695gEm', '5427083'), + (933, 1509, 'attending', '2022-07-06 22:03:12', '2025-12-17 19:47:19', 'mR695gEm', '5434019'), + (933, 1511, 'attending', '2022-07-07 02:19:33', '2025-12-17 19:47:19', 'mR695gEm', '5437733'), + (933, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mR695gEm', '5441125'), + (933, 1514, 'attending', '2022-07-19 14:27:44', '2025-12-17 19:47:20', 'mR695gEm', '5441126'), + (933, 1515, 'attending', '2022-08-04 13:38:38', '2025-12-17 19:47:21', 'mR695gEm', '5441128'), + (933, 1516, 'attending', '2022-08-19 18:23:09', '2025-12-17 19:47:23', 'mR695gEm', '5441129'), + (933, 1517, 'attending', '2022-08-26 11:35:34', '2025-12-17 19:47:23', 'mR695gEm', '5441130'), + (933, 1518, 'attending', '2022-08-30 18:45:03', '2025-12-17 19:47:24', 'mR695gEm', '5441131'), + (933, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mR695gEm', '5441132'), + (933, 1522, 'not_attending', '2022-07-16 18:07:54', '2025-12-17 19:47:20', 'mR695gEm', '5442832'), + (933, 1528, 'attending', '2022-07-14 13:56:59', '2025-12-17 19:47:20', 'mR695gEm', '5446643'), + (933, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mR695gEm', '5453325'), + (933, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mR695gEm', '5454516'), + (933, 1544, 'attending', '2022-09-11 18:50:00', '2025-12-17 19:47:11', 'mR695gEm', '5454517'), + (933, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mR695gEm', '5454605'), + (933, 1546, 'attending', '2022-07-27 17:34:02', '2025-12-17 19:47:20', 'mR695gEm', '5454607'), + (933, 1547, 'attending', '2022-07-23 18:55:13', '2025-12-17 19:47:20', 'mR695gEm', '5454608'), + (933, 1550, 'attending', '2022-07-22 02:21:21', '2025-12-17 19:47:20', 'mR695gEm', '5454803'), + (933, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mR695gEm', '5455037'), + (933, 1553, 'attending', '2022-07-19 23:02:15', '2025-12-17 19:47:20', 'mR695gEm', '5455164'), + (933, 1557, 'not_attending', '2022-08-01 04:08:56', '2025-12-17 19:47:21', 'mR695gEm', '5458729'), + (933, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mR695gEm', '5461278'), + (933, 1562, 'maybe', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mR695gEm', '5469480'), + (933, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mR695gEm', '5471073'), + (933, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mR695gEm', '5474663'), + (933, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mR695gEm', '5482022'), + (933, 1574, 'maybe', '2022-08-07 17:43:18', '2025-12-17 19:47:22', 'mR695gEm', '5482153'), + (933, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mR695gEm', '5482793'), + (933, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mR695gEm', '5488912'), + (933, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mR695gEm', '5492192'), + (933, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mR695gEm', '5493139'), + (933, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mR695gEm', '5493200'), + (933, 1592, 'maybe', '2022-08-09 21:46:35', '2025-12-17 19:47:22', 'mR695gEm', '5494031'), + (933, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mR695gEm', '5502188'), + (933, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mR695gEm', '5505059'), + (933, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mR695gEm', '5509055'), + (933, 1618, 'attending', '2022-08-28 20:32:32', '2025-12-17 19:47:23', 'mR695gEm', '5512005'), + (933, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mR695gEm', '5512862'), + (933, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mR695gEm', '5513985'), + (933, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mR695gEm', '5519981'), + (933, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mR695gEm', '5522550'), + (933, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mR695gEm', '5534683'), + (933, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'mR695gEm', '5537735'), + (933, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mR695gEm', '5540859'), + (933, 1644, 'not_attending', '2022-09-18 17:16:14', '2025-12-17 19:47:11', 'mR695gEm', '5545857'), + (933, 1645, 'maybe', '2022-09-10 00:37:46', '2025-12-17 19:47:25', 'mR695gEm', '5546559'), + (933, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mR695gEm', '5546619'), + (933, 1652, 'attending', '2022-09-09 00:16:08', '2025-12-17 19:47:24', 'mR695gEm', '5552671'), + (933, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mR695gEm', '5555245'), + (933, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mR695gEm', '5557747'), + (933, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mR695gEm', '5560255'), + (933, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mR695gEm', '5562906'), + (933, 1667, 'attending', '2022-09-22 15:45:17', '2025-12-17 19:47:11', 'mR695gEm', '5563221'), + (933, 1668, 'not_attending', '2022-09-29 11:20:33', '2025-12-17 19:47:12', 'mR695gEm', '5563222'), + (933, 1670, 'not_attending', '2022-09-17 13:06:54', '2025-12-17 19:47:11', 'mR695gEm', '5575076'), + (933, 1677, 'maybe', '2022-09-22 15:45:50', '2025-12-17 19:47:11', 'mR695gEm', '5600604'), + (933, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mR695gEm', '5605544'), + (933, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'mR695gEm', '5606737'), + (933, 1714, 'maybe', '2022-10-24 16:26:32', '2025-12-17 19:47:14', 'mR695gEm', '5622347'), + (933, 1718, 'maybe', '2022-10-18 13:19:09', '2025-12-17 19:47:12', 'mR695gEm', '5630907'), + (933, 1719, 'not_attending', '2022-10-06 15:56:40', '2025-12-17 19:47:12', 'mR695gEm', '5630958'), + (933, 1720, 'attending', '2022-10-15 15:42:12', '2025-12-17 19:47:12', 'mR695gEm', '5630959'), + (933, 1721, 'not_attending', '2022-10-17 03:54:40', '2025-12-17 19:47:13', 'mR695gEm', '5630960'), + (933, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mR695gEm', '5630961'), + (933, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mR695gEm', '5630962'), + (933, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mR695gEm', '5630966'), + (933, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mR695gEm', '5630967'), + (933, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mR695gEm', '5630968'), + (933, 1727, 'attending', '2022-12-01 22:46:14', '2025-12-17 19:47:16', 'mR695gEm', '5630969'), + (933, 1728, 'maybe', '2022-12-09 15:10:22', '2025-12-17 19:47:17', 'mR695gEm', '5630970'), + (933, 1730, 'attending', '2022-10-06 15:58:45', '2025-12-17 19:47:12', 'mR695gEm', '5634666'), + (933, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mR695gEm', '5635406'), + (933, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mR695gEm', '5638765'), + (933, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mR695gEm', '5640097'), + (933, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mR695gEm', '5640843'), + (933, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mR695gEm', '5641521'), + (933, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mR695gEm', '5642818'), + (933, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mR695gEm', '5652395'), + (933, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mR695gEm', '5670445'), + (933, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mR695gEm', '5671637'), + (933, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mR695gEm', '5672329'), + (933, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mR695gEm', '5674057'), + (933, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mR695gEm', '5674060'), + (933, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mR695gEm', '5677461'), + (933, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mR695gEm', '5698046'), + (933, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mR695gEm', '5699760'), + (933, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mR695gEm', '5741601'), + (933, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mR695gEm', '5763458'), + (933, 1812, 'attending', '2023-03-10 12:54:14', '2025-12-17 19:47:09', 'mR695gEm', '5764682'), + (933, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mR695gEm', '5774172'), + (933, 1829, 'maybe', '2022-12-01 22:46:37', '2025-12-17 19:47:16', 'mR695gEm', '5778867'), + (933, 1830, 'maybe', '2022-11-29 22:34:45', '2025-12-17 19:47:16', 'mR695gEm', '5778871'), + (933, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mR695gEm', '5818247'), + (933, 1834, 'attending', '2022-12-10 11:56:16', '2025-12-17 19:47:17', 'mR695gEm', '5819470'), + (933, 1835, 'attending', '2023-01-03 03:36:48', '2025-12-17 19:47:05', 'mR695gEm', '5819471'), + (933, 1841, 'attending', '2023-01-03 03:36:53', '2025-12-17 19:47:05', 'mR695gEm', '5827665'), + (933, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'mR695gEm', '5827739'), + (933, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mR695gEm', '5844306'), + (933, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mR695gEm', '5850159'), + (933, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mR695gEm', '5858999'), + (933, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mR695gEm', '5871984'), + (933, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mR695gEm', '5876354'), + (933, 1864, 'attending', '2023-01-17 03:40:40', '2025-12-17 19:47:05', 'mR695gEm', '5879675'), + (933, 1865, 'attending', '2023-01-27 14:23:06', '2025-12-17 19:47:06', 'mR695gEm', '5879676'), + (933, 1866, 'attending', '2023-01-17 03:40:32', '2025-12-17 19:47:05', 'mR695gEm', '5880939'), + (933, 1868, 'attending', '2023-02-22 00:24:50', '2025-12-17 19:47:07', 'mR695gEm', '5880942'), + (933, 1873, 'attending', '2023-01-20 00:49:51', '2025-12-17 19:47:05', 'mR695gEm', '5885295'), + (933, 1874, 'maybe', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mR695gEm', '5887890'), + (933, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mR695gEm', '5888598'), + (933, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mR695gEm', '5893260'), + (933, 1881, 'attending', '2023-02-12 19:57:47', '2025-12-17 19:47:07', 'mR695gEm', '5894218'), + (933, 1884, 'attending', '2023-01-30 21:30:15', '2025-12-17 19:47:06', 'mR695gEm', '5899826'), + (933, 1885, 'maybe', '2023-02-23 15:09:17', '2025-12-17 19:47:08', 'mR695gEm', '5899928'), + (933, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mR695gEm', '5900199'), + (933, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mR695gEm', '5900200'), + (933, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mR695gEm', '5900202'), + (933, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mR695gEm', '5900203'), + (933, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mR695gEm', '5901108'), + (933, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mR695gEm', '5901126'), + (933, 1897, 'attending', '2023-02-10 18:29:31', '2025-12-17 19:47:07', 'mR695gEm', '5901128'), + (933, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mR695gEm', '5909655'), + (933, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mR695gEm', '5910522'), + (933, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mR695gEm', '5910526'), + (933, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mR695gEm', '5910528'), + (933, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mR695gEm', '5916219'), + (933, 1929, 'maybe', '2023-02-19 22:05:54', '2025-12-17 19:47:07', 'mR695gEm', '5932628'), + (933, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mR695gEm', '5936234'), + (933, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mR695gEm', '5958351'), + (933, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mR695gEm', '5959751'), + (933, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mR695gEm', '5959755'), + (933, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mR695gEm', '5960055'), + (933, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mR695gEm', '5961684'), + (933, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mR695gEm', '5962132'), + (933, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mR695gEm', '5962133'), + (933, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mR695gEm', '5962134'), + (933, 1947, 'not_attending', '2023-02-26 00:00:13', '2025-12-17 19:47:09', 'mR695gEm', '5962233'), + (933, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mR695gEm', '5962317'), + (933, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mR695gEm', '5962318'), + (933, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mR695gEm', '5965933'), + (933, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mR695gEm', '5967014'), + (933, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'mR695gEm', '5972763'), + (933, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mR695gEm', '5972815'), + (933, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mR695gEm', '5974016'), + (933, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mR695gEm', '5981515'), + (933, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mR695gEm', '5993516'), + (933, 1972, 'not_attending', '2023-03-17 00:30:57', '2025-12-17 19:46:56', 'mR695gEm', '5993776'), + (933, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mR695gEm', '5998939'), + (933, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mR695gEm', '6028191'), + (933, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mR695gEm', '6040066'), + (933, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mR695gEm', '6042717'), + (933, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR695gEm', '6045684'), + (933, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mR695gEm', '6050104'), + (933, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mR695gEm', '6053195'), + (933, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mR695gEm', '6053198'), + (933, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mR695gEm', '6056085'), + (933, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mR695gEm', '6056916'), + (933, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mR695gEm', '6059290'), + (933, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mR695gEm', '6060328'), + (933, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mR695gEm', '6061037'), + (933, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mR695gEm', '6061039'), + (933, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mR695gEm', '6067245'), + (933, 2025, 'attending', '2023-04-17 20:33:17', '2025-12-17 19:47:00', 'mR695gEm', '6067457'), + (933, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mR695gEm', '6068094'), + (933, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mR695gEm', '6068252'), + (933, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mR695gEm', '6068253'), + (933, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mR695gEm', '6068254'), + (933, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'mR695gEm', '6068280'), + (933, 2032, 'attending', '2023-06-02 18:56:58', '2025-12-17 19:47:04', 'mR695gEm', '6068281'), + (933, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mR695gEm', '6069093'), + (933, 2039, 'not_attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'mR695gEm', '6072398'), + (933, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mR695gEm', '6072528'), + (933, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mR695gEm', '6079840'), + (933, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mR695gEm', '6083398'), + (933, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mR695gEm', '6093504'), + (933, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mR695gEm', '6097414'), + (933, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mR695gEm', '6097442'), + (933, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mR695gEm', '6097684'), + (933, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mR695gEm', '6098762'), + (933, 2064, 'not_attending', '2023-06-24 22:26:36', '2025-12-17 19:46:50', 'mR695gEm', '6099988'), + (933, 2065, 'not_attending', '2023-06-17 18:08:40', '2025-12-17 19:46:49', 'mR695gEm', '6101169'), + (933, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mR695gEm', '6101361'), + (933, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mR695gEm', '6101362'), + (933, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mR695gEm', '6103752'), + (933, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mR695gEm', '6107314'), + (933, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mR695gEm', '6120034'), + (933, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mR695gEm', '6136733'), + (933, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mR695gEm', '6137989'), + (933, 2108, 'maybe', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mR695gEm', '6150864'), + (933, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mR695gEm', '6155491'), + (933, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mR695gEm', '6164417'), + (933, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mR695gEm', '6166388'), + (933, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mR695gEm', '6176439'), + (933, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mR695gEm', '6182410'), + (933, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mR695gEm', '6185812'), + (933, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mR695gEm', '6187651'), + (933, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mR695gEm', '6187963'), + (933, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mR695gEm', '6187964'), + (933, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mR695gEm', '6187966'), + (933, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mR695gEm', '6187967'), + (933, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mR695gEm', '6187969'), + (933, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mR695gEm', '6334878'), + (933, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mR695gEm', '6337236'), + (933, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mR695gEm', '6337970'), + (933, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mR695gEm', '6338308'), + (933, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mR695gEm', '6340845'), + (933, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mR695gEm', '6341710'), + (933, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mR695gEm', '6342044'), + (933, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mR695gEm', '6342298'), + (933, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mR695gEm', '6343294'), + (933, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mR695gEm', '6347034'), + (933, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mR695gEm', '6347056'), + (933, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mR695gEm', '6353830'), + (933, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mR695gEm', '6353831'), + (933, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mR695gEm', '6357867'), + (933, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mR695gEm', '6358652'), + (933, 2199, 'maybe', '2023-08-16 17:31:49', '2025-12-17 19:46:55', 'mR695gEm', '6359849'), + (933, 2200, 'maybe', '2023-08-10 21:32:08', '2025-12-17 19:46:55', 'mR695gEm', '6359850'), + (933, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mR695gEm', '6361709'), + (933, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mR695gEm', '6361710'), + (933, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mR695gEm', '6361711'), + (933, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mR695gEm', '6361712'), + (933, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mR695gEm', '6361713'), + (933, 2215, 'maybe', '2023-08-11 19:59:18', '2025-12-17 19:46:55', 'mR695gEm', '6363479'), + (933, 2232, 'attending', '2023-08-26 18:11:20', '2025-12-17 19:46:55', 'mR695gEm', '6374818'), + (933, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mR695gEm', '6382573'), + (933, 2239, 'attending', '2023-08-31 22:07:01', '2025-12-17 19:46:56', 'mR695gEm', '6387592'), + (933, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mR695gEm', '6388604'), + (933, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mR695gEm', '6394629'), + (933, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mR695gEm', '6394631'), + (933, 2253, 'attending', '2023-09-30 22:19:18', '2025-12-17 19:46:45', 'mR695gEm', '6401811'), + (933, 2262, 'maybe', '2023-10-01 14:01:28', '2025-12-17 19:46:45', 'mR695gEm', '6427423'), + (933, 2267, 'maybe', '2023-10-02 18:36:42', '2025-12-17 19:46:45', 'mR695gEm', '6440034'), + (933, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mR695gEm', '6440863'), + (933, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mR695gEm', '6445440'), + (933, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mR695gEm', '6453951'), + (933, 2277, 'maybe', '2023-10-08 17:12:58', '2025-12-17 19:46:46', 'mR695gEm', '6455211'), + (933, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mR695gEm', '6461696'), + (933, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mR695gEm', '6462129'), + (933, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mR695gEm', '6463218'), + (933, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mR695gEm', '6472181'), + (933, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mR695gEm', '6482693'), + (933, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mR695gEm', '6484200'), + (933, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mR695gEm', '6484680'), + (933, 2310, 'attending', '2023-11-09 17:51:42', '2025-12-17 19:46:47', 'mR695gEm', '6487709'), + (933, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mR695gEm', '6507741'), + (933, 2322, 'attending', '2023-11-17 22:24:50', '2025-12-17 19:46:48', 'mR695gEm', '6514659'), + (933, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mR695gEm', '6514660'), + (933, 2324, 'attending', '2023-12-09 20:23:44', '2025-12-17 19:46:49', 'mR695gEm', '6514662'), + (933, 2325, 'attending', '2023-12-13 16:45:46', '2025-12-17 19:46:36', 'mR695gEm', '6514663'), + (933, 2326, 'maybe', '2023-11-06 21:16:23', '2025-12-17 19:46:48', 'mR695gEm', '6514805'), + (933, 2332, 'attending', '2023-11-03 20:51:14', '2025-12-17 19:46:47', 'mR695gEm', '6518655'), + (933, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mR695gEm', '6519103'), + (933, 2335, 'not_attending', '2023-11-09 17:49:01', '2025-12-17 19:46:47', 'mR695gEm', '6534890'), + (933, 2337, 'not_attending', '2023-11-08 01:11:38', '2025-12-17 19:46:48', 'mR695gEm', '6535681'), + (933, 2340, 'attending', '2023-11-22 00:01:38', '2025-12-17 19:46:48', 'mR695gEm', '6540279'), + (933, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mR695gEm', '6584747'), + (933, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mR695gEm', '6587097'), + (933, 2355, 'attending', '2023-12-04 23:06:28', '2025-12-17 19:46:49', 'mR695gEm', '6593339'), + (933, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mR695gEm', '6609022'), + (933, 2365, 'attending', '2023-12-23 03:15:23', '2025-12-17 19:46:37', 'mR695gEm', '6613093'), + (933, 2368, 'not_attending', '2023-12-14 16:29:37', '2025-12-17 19:46:36', 'mR695gEm', '6621445'), + (933, 2371, 'maybe', '2023-12-15 21:17:04', '2025-12-17 19:46:36', 'mR695gEm', '6624495'), + (933, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mR695gEm', '6632757'), + (933, 2379, 'attending', '2024-01-03 17:29:47', '2025-12-17 19:46:37', 'mR695gEm', '6644187'), + (933, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mR695gEm', '6648951'), + (933, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mR695gEm', '6648952'), + (933, 2388, 'attending', '2024-01-06 16:02:35', '2025-12-17 19:46:37', 'mR695gEm', '6649244'), + (933, 2395, 'attending', '2024-01-17 00:22:42', '2025-12-17 19:46:38', 'mR695gEm', '6654471'), + (933, 2396, 'attending', '2024-01-16 14:31:43', '2025-12-17 19:46:38', 'mR695gEm', '6655401'), + (933, 2399, 'attending', '2024-01-11 17:19:50', '2025-12-17 19:46:38', 'mR695gEm', '6657583'), + (933, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mR695gEm', '6661585'), + (933, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mR695gEm', '6661588'), + (933, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mR695gEm', '6661589'), + (933, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mR695gEm', '6699906'), + (933, 2408, 'attending', '2024-01-25 20:34:55', '2025-12-17 19:46:40', 'mR695gEm', '6699907'), + (933, 2409, 'attending', '2024-01-31 00:21:53', '2025-12-17 19:46:41', 'mR695gEm', '6699909'), + (933, 2410, 'attending', '2024-02-08 00:35:50', '2025-12-17 19:46:41', 'mR695gEm', '6699911'), + (933, 2411, 'not_attending', '2024-02-16 16:39:59', '2025-12-17 19:46:42', 'mR695gEm', '6699913'), + (933, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mR695gEm', '6701109'), + (933, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mR695gEm', '6705219'), + (933, 2428, 'not_attending', '2024-01-21 05:55:21', '2025-12-17 19:46:40', 'mR695gEm', '6710153'), + (933, 2429, 'attending', '2024-01-24 00:52:26', '2025-12-17 19:46:40', 'mR695gEm', '6711552'), + (933, 2430, 'attending', '2024-01-25 22:13:44', '2025-12-17 19:46:40', 'mR695gEm', '6711553'), + (933, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mR695gEm', '6722688'), + (933, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mR695gEm', '6730620'), + (933, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mR695gEm', '6730642'), + (933, 2444, 'attending', '2024-02-09 19:20:40', '2025-12-17 19:46:41', 'mR695gEm', '6734367'), + (933, 2445, 'attending', '2024-02-17 00:17:26', '2025-12-17 19:46:41', 'mR695gEm', '6734368'), + (933, 2446, 'attending', '2024-03-01 21:02:10', '2025-12-17 19:46:43', 'mR695gEm', '6734369'), + (933, 2449, 'attending', '2024-02-20 01:08:50', '2025-12-17 19:46:42', 'mR695gEm', '6735833'), + (933, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mR695gEm', '6740364'), + (933, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mR695gEm', '6743829'), + (933, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mR695gEm', '7030380'), + (933, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mR695gEm', '7033677'), + (933, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mR695gEm', '7035415'), + (933, 2477, 'not_attending', '2024-02-23 00:49:26', '2025-12-17 19:46:42', 'mR695gEm', '7035692'), + (933, 2480, 'maybe', '2024-02-24 08:29:33', '2025-12-17 19:46:43', 'mR695gEm', '7042160'), + (933, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mR695gEm', '7044715'), + (933, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mR695gEm', '7050318'), + (933, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mR695gEm', '7050319'), + (933, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mR695gEm', '7050322'), + (933, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mR695gEm', '7057804'), + (933, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'mR695gEm', '7059866'), + (933, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mR695gEm', '7072824'), + (933, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mR695gEm', '7074348'), + (933, 2510, 'attending', '2024-03-21 22:02:41', '2025-12-17 19:46:33', 'mR695gEm', '7074350'), + (933, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mR695gEm', '7074364'), + (933, 2526, 'attending', '2024-07-30 16:01:42', '2025-12-17 19:46:31', 'mR695gEm', '7074366'), + (933, 2532, 'attending', '2024-09-03 16:00:17', '2025-12-17 19:46:32', 'mR695gEm', '7074383'), + (933, 2537, 'attending', '2024-03-22 14:09:56', '2025-12-17 19:46:33', 'mR695gEm', '7085484'), + (933, 2538, 'attending', '2024-03-24 16:41:52', '2025-12-17 19:46:33', 'mR695gEm', '7085485'), + (933, 2539, 'attending', '2024-04-01 20:17:12', '2025-12-17 19:46:33', 'mR695gEm', '7085486'), + (933, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mR695gEm', '7089267'), + (933, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mR695gEm', '7098747'), + (933, 2553, 'attending', '2024-03-29 18:00:00', '2025-12-17 19:46:33', 'mR695gEm', '7113468'), + (933, 2554, 'attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mR695gEm', '7114856'), + (933, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mR695gEm', '7114951'), + (933, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mR695gEm', '7114955'), + (933, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mR695gEm', '7114956'), + (933, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mR695gEm', '7114957'), + (933, 2560, 'maybe', '2024-04-09 12:34:20', '2025-12-17 19:46:33', 'mR695gEm', '7130086'), + (933, 2564, 'attending', '2024-04-06 20:05:56', '2025-12-17 19:46:33', 'mR695gEm', '7134735'), + (933, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mR695gEm', '7153615'), + (933, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mR695gEm', '7159484'), + (933, 2572, 'attending', '2024-04-13 20:27:37', '2025-12-17 19:46:33', 'mR695gEm', '7159522'), + (933, 2573, 'maybe', '2024-04-15 16:36:32', '2025-12-17 19:46:34', 'mR695gEm', '7160612'), + (933, 2576, 'attending', '2024-04-26 14:34:02', '2025-12-17 19:46:34', 'mR695gEm', '7164538'), + (933, 2582, 'attending', '2024-04-12 21:56:24', '2025-12-17 19:46:34', 'mR695gEm', '7169765'), + (933, 2584, 'attending', '2024-04-21 17:50:52', '2025-12-17 19:46:34', 'mR695gEm', '7175057'), + (933, 2585, 'attending', '2024-04-24 00:15:52', '2025-12-17 19:46:34', 'mR695gEm', '7175828'), + (933, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mR695gEm', '7178446'), + (933, 2598, 'attending', '2024-04-22 01:03:09', '2025-12-17 19:46:34', 'mR695gEm', '7186731'), + (933, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mR695gEm', '7220467'), + (933, 2607, 'not_attending', '2024-05-01 14:49:16', '2025-12-17 19:46:35', 'mR695gEm', '7240136'), + (933, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mR695gEm', '7240354'), + (933, 2610, 'not_attending', '2024-05-02 00:06:50', '2025-12-17 19:46:35', 'mR695gEm', '7241797'), + (933, 2612, 'attending', '2024-05-08 17:04:21', '2025-12-17 19:46:35', 'mR695gEm', '7247643'), + (933, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mR695gEm', '7251633'), + (933, 2619, 'maybe', '2024-05-07 13:38:54', '2025-12-17 19:46:35', 'mR695gEm', '7252965'), + (933, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mR695gEm', '7263048'), + (933, 2626, 'attending', '2024-05-13 18:44:53', '2025-12-17 19:46:35', 'mR695gEm', '7264723'), + (933, 2627, 'not_attending', '2024-05-25 01:22:26', '2025-12-17 19:46:35', 'mR695gEm', '7264724'), + (933, 2628, 'attending', '2024-06-01 21:09:20', '2025-12-17 19:46:36', 'mR695gEm', '7264725'), + (933, 2629, 'not_attending', '2024-06-08 02:12:10', '2025-12-17 19:46:28', 'mR695gEm', '7264726'), + (933, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mR695gEm', '7302674'), + (933, 2678, 'attending', '2024-06-13 12:34:30', '2025-12-17 19:46:28', 'mR695gEm', '7319489'), + (933, 2679, 'attending', '2024-06-22 02:47:01', '2025-12-17 19:46:29', 'mR695gEm', '7319490'), + (933, 2685, 'attending', '2024-06-12 19:52:34', '2025-12-17 19:46:28', 'mR695gEm', '7322675'), + (933, 2688, 'attending', '2024-06-27 00:39:58', '2025-12-17 19:46:29', 'mR695gEm', '7324073'), + (933, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mR695gEm', '7324074'), + (933, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mR695gEm', '7324075'), + (933, 2691, 'attending', '2024-07-20 18:12:11', '2025-12-17 19:46:30', 'mR695gEm', '7324076'), + (933, 2692, 'attending', '2024-07-26 23:37:31', '2025-12-17 19:46:30', 'mR695gEm', '7324077'), + (933, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mR695gEm', '7324078'), + (933, 2694, 'not_attending', '2024-08-09 20:14:31', '2025-12-17 19:46:31', 'mR695gEm', '7324079'), + (933, 2697, 'attending', '2024-08-31 14:54:33', '2025-12-17 19:46:32', 'mR695gEm', '7324082'), + (933, 2699, 'attending', '2024-06-12 18:54:56', '2025-12-17 19:46:28', 'mR695gEm', '7324385'), + (933, 2701, 'attending', '2024-06-28 15:28:37', '2025-12-17 19:46:29', 'mR695gEm', '7324391'), + (933, 2703, 'maybe', '2024-06-13 12:34:14', '2025-12-17 19:46:28', 'mR695gEm', '7324873'), + (933, 2711, 'maybe', '2024-07-19 13:27:17', '2025-12-17 19:46:30', 'mR695gEm', '7326524'), + (933, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mR695gEm', '7331457'), + (933, 2723, 'maybe', '2024-06-21 20:39:21', '2025-12-17 19:46:29', 'mR695gEm', '7332389'), + (933, 2724, 'maybe', '2024-06-26 15:39:55', '2025-12-17 19:46:29', 'mR695gEm', '7332562'), + (933, 2737, 'maybe', '2024-07-02 18:28:14', '2025-12-17 19:46:29', 'mR695gEm', '7344070'), + (933, 2742, 'attending', '2024-07-02 17:02:54', '2025-12-17 19:46:29', 'mR695gEm', '7345167'), + (933, 2747, 'maybe', '2024-07-17 20:03:45', '2025-12-17 19:46:30', 'mR695gEm', '7353587'), + (933, 2755, 'maybe', '2024-07-09 15:58:18', '2025-12-17 19:46:29', 'mR695gEm', '7357808'), + (933, 2756, 'attending', '2024-07-10 01:53:33', '2025-12-17 19:46:29', 'mR695gEm', '7358329'), + (933, 2761, 'not_attending', '2024-07-17 13:42:54', '2025-12-17 19:46:30', 'mR695gEm', '7363412'), + (933, 2762, 'attending', '2024-07-14 15:31:49', '2025-12-17 19:46:30', 'mR695gEm', '7363413'), + (933, 2765, 'attending', '2024-07-16 20:56:24', '2025-12-17 19:46:30', 'mR695gEm', '7363604'), + (933, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mR695gEm', '7363643'), + (933, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mR695gEm', '7368606'), + (933, 2775, 'attending', '2024-07-25 15:40:58', '2025-12-17 19:46:30', 'mR695gEm', '7368642'), + (933, 2800, 'maybe', '2024-08-16 19:40:53', '2025-12-17 19:46:31', 'mR695gEm', '7397405'), + (933, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mR695gEm', '7397462'), + (933, 2821, 'attending', '2024-10-12 04:29:38', '2025-12-17 19:46:26', 'mR695gEm', '7424275'), + (933, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mR695gEm', '7424276'), + (933, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mR695gEm', '7432751'), + (933, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mR695gEm', '7432752'), + (933, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mR695gEm', '7432753'), + (933, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mR695gEm', '7432754'), + (933, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mR695gEm', '7432755'), + (933, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mR695gEm', '7432756'), + (933, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mR695gEm', '7432758'), + (933, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mR695gEm', '7432759'), + (933, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mR695gEm', '7433834'), + (933, 2857, 'maybe', '2024-10-24 18:57:59', '2025-12-17 19:46:26', 'mR695gEm', '7469387'), + (933, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mR695gEm', '7470197'), + (933, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mR695gEm', '7685613'), + (933, 2899, 'maybe', '2024-11-11 03:00:49', '2025-12-17 19:46:27', 'mR695gEm', '7685616'), + (933, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mR695gEm', '7688194'), + (933, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mR695gEm', '7688196'), + (933, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mR695gEm', '7688289'), + (933, 2908, 'not_attending', '2024-11-11 01:15:02', '2025-12-17 19:46:27', 'mR695gEm', '7689420'), + (933, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'mR695gEm', '7692763'), + (933, 2913, 'attending', '2024-11-16 19:01:34', '2025-12-17 19:46:27', 'mR695gEm', '7697552'), + (933, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mR695gEm', '7699878'), + (933, 2919, 'attending', '2024-11-22 18:50:56', '2025-12-17 19:46:27', 'mR695gEm', '7704043'), + (933, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mR695gEm', '7712467'), + (933, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mR695gEm', '7713585'), + (933, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mR695gEm', '7713586'), + (933, 2931, 'attending', '2024-12-07 20:13:09', '2025-12-17 19:46:21', 'mR695gEm', '7725490'), + (933, 2958, 'attending', '2024-12-18 21:23:29', '2025-12-17 19:46:21', 'mR695gEm', '7738518'), + (933, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mR695gEm', '7750636'), + (933, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mR695gEm', '7796540'), + (933, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mR695gEm', '7796541'), + (933, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mR695gEm', '7796542'), + (933, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mR695gEm', '7825913'), + (933, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mR695gEm', '7826209'), + (933, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mR695gEm', '7834742'), + (933, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mR695gEm', '7842108'), + (933, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mR695gEm', '7842902'), + (933, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mR695gEm', '7842903'), + (933, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mR695gEm', '7842904'), + (933, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mR695gEm', '7842905'), + (933, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'mR695gEm', '7842906'), + (933, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'mR695gEm', '7842909'), + (933, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mR695gEm', '7855719'), + (933, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mR695gEm', '7860683'), + (933, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mR695gEm', '7860684'), + (933, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mR695gEm', '7866095'), + (933, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mR695gEm', '7869170'), + (933, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mR695gEm', '7869188'), + (933, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'mR695gEm', '7869194'), + (933, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'mR695gEm', '7869195'), + (933, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mR695gEm', '7869201'), + (933, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mR695gEm', '7877465'), + (933, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'mR695gEm', '7878570'), + (933, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mR695gEm', '7888250'), + (933, 3068, 'not_attending', '2025-03-30 22:47:02', '2025-12-17 19:46:19', 'mR695gEm', '7894823'), + (933, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mR695gEm', '8349164'), + (933, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mR695gEm', '8349545'), + (933, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mR695gEm', '8353584'), + (934, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dlO2Qkl4', '4210314'), + (934, 901, 'not_attending', '2021-07-31 16:26:33', '2025-12-17 19:47:40', 'dlO2Qkl4', '4240317'), + (934, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'dlO2Qkl4', '4240318'), + (934, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'dlO2Qkl4', '4240320'), + (934, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'dlO2Qkl4', '4302093'), + (934, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dlO2Qkl4', '4304151'), + (934, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dlO2Qkl4', '4345519'), + (934, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dlO2Qkl4', '4356801'), + (934, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'dlO2Qkl4', '4358025'), + (934, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dlO2Qkl4', '4366186'), + (934, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dlO2Qkl4', '4366187'), + (934, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'dlO2Qkl4', '4402823'), + (934, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dlO2Qkl4', '4420735'), + (934, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dlO2Qkl4', '4420738'), + (934, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dlO2Qkl4', '4420739'), + (934, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dlO2Qkl4', '4420741'), + (934, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dlO2Qkl4', '4420744'), + (934, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dlO2Qkl4', '4420747'), + (934, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dlO2Qkl4', '4420748'), + (934, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dlO2Qkl4', '4420749'), + (934, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dlO2Qkl4', '4461883'), + (934, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlO2Qkl4', '4508342'), + (934, 1361, 'attending', '2022-05-02 21:34:07', '2025-12-17 19:47:28', 'dlO2Qkl4', '5260491'), + (934, 1369, 'attending', '2022-05-10 22:44:46', '2025-12-17 19:47:28', 'dlO2Qkl4', '5262809'), + (934, 1372, 'attending', '2022-05-04 20:57:59', '2025-12-17 19:47:28', 'dlO2Qkl4', '5264352'), + (934, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dlO2Qkl4', '5269930'), + (934, 1375, 'attending', '2022-05-05 22:53:02', '2025-12-17 19:47:28', 'dlO2Qkl4', '5269932'), + (934, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dlO2Qkl4', '5271448'), + (934, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dlO2Qkl4', '5271449'), + (934, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dlO2Qkl4', '5276469'), + (934, 1384, 'attending', '2022-05-06 00:54:29', '2025-12-17 19:47:28', 'dlO2Qkl4', '5277078'), + (934, 1386, 'attending', '2022-05-06 00:54:34', '2025-12-17 19:47:28', 'dlO2Qkl4', '5278159'), + (934, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dlO2Qkl4', '5363695'), + (934, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dlO2Qkl4', '5365960'), + (934, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dlO2Qkl4', '5368973'), + (934, 1422, 'attending', '2022-05-23 18:39:18', '2025-12-17 19:47:30', 'dlO2Qkl4', '5375603'), + (934, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dlO2Qkl4', '5378247'), + (934, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'dlO2Qkl4', '5389605'), + (934, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dlO2Qkl4', '5397265'), + (934, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dlO2Qkl4', '5403967'), + (934, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dlO2Qkl4', '5404786'), + (934, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dlO2Qkl4', '5405203'), + (934, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dlO2Qkl4', '5411699'), + (934, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dlO2Qkl4', '5412550'), + (934, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dlO2Qkl4', '5415046'), + (934, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dlO2Qkl4', '5422086'), + (934, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dlO2Qkl4', '5422406'), + (934, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dlO2Qkl4', '5424565'), + (934, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dlO2Qkl4', '5426882'), + (934, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dlO2Qkl4', '5427083'), + (934, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dlO2Qkl4', '5441125'), + (934, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dlO2Qkl4', '5441126'), + (934, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dlO2Qkl4', '5441128'), + (934, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dlO2Qkl4', '5446643'), + (934, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dlO2Qkl4', '5453325'), + (934, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dlO2Qkl4', '5454516'), + (934, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dlO2Qkl4', '5454605'), + (934, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dlO2Qkl4', '5455037'), + (934, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dlO2Qkl4', '5461278'), + (934, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dlO2Qkl4', '5469480'), + (934, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dlO2Qkl4', '5471073'), + (934, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dlO2Qkl4', '5474663'), + (934, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dlO2Qkl4', '5482022'), + (934, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dlO2Qkl4', '5482793'), + (934, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dlO2Qkl4', '5488912'), + (934, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dlO2Qkl4', '5492192'), + (934, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dlO2Qkl4', '5493139'), + (934, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dlO2Qkl4', '5493200'), + (934, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dlO2Qkl4', '5502188'), + (934, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dlO2Qkl4', '5512862'), + (934, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dlO2Qkl4', '5513985'), + (934, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dlO2Qkl4', '6045684'), + (935, 1415, 'not_attending', '2022-05-20 03:46:21', '2025-12-17 19:47:30', '41WP2Vbm', '5368973'), + (935, 1419, 'attending', '2022-06-08 07:03:20', '2025-12-17 19:47:30', '41WP2Vbm', '5373081'), + (935, 1423, 'attending', '2022-06-15 20:04:33', '2025-12-17 19:47:17', '41WP2Vbm', '5375727'), + (935, 1427, 'not_attending', '2022-05-25 18:10:54', '2025-12-17 19:47:30', '41WP2Vbm', '5376074'), + (935, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41WP2Vbm', '5378247'), + (935, 1431, 'attending', '2022-06-08 07:03:53', '2025-12-17 19:47:30', '41WP2Vbm', '5389605'), + (935, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41WP2Vbm', '5397265'), + (935, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WP2Vbm', '5403967'), + (935, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WP2Vbm', '5404786'), + (935, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WP2Vbm', '5405203'), + (935, 1478, 'not_attending', '2022-06-15 20:05:21', '2025-12-17 19:47:19', '41WP2Vbm', '5408794'), + (935, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WP2Vbm', '5411699'), + (935, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WP2Vbm', '5412550'), + (935, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WP2Vbm', '5415046'), + (935, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WP2Vbm', '5422086'), + (935, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WP2Vbm', '5422406'), + (935, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WP2Vbm', '5424565'), + (935, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WP2Vbm', '5426882'), + (935, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WP2Vbm', '5427083'), + (935, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '41WP2Vbm', '5441125'), + (935, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WP2Vbm', '5441126'), + (935, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WP2Vbm', '5441128'), + (935, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '41WP2Vbm', '5441131'), + (935, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '41WP2Vbm', '5441132'), + (935, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WP2Vbm', '5446643'), + (935, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WP2Vbm', '5453325'), + (935, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WP2Vbm', '5454516'), + (935, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WP2Vbm', '5454605'), + (935, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WP2Vbm', '5455037'), + (935, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WP2Vbm', '5461278'), + (935, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WP2Vbm', '5469480'), + (935, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WP2Vbm', '5471073'), + (935, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41WP2Vbm', '5474663'), + (935, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WP2Vbm', '5482022'), + (935, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WP2Vbm', '5482793'), + (935, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WP2Vbm', '5488912'), + (935, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WP2Vbm', '5492192'), + (935, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WP2Vbm', '5493139'), + (935, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WP2Vbm', '5493200'), + (935, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WP2Vbm', '5502188'), + (935, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41WP2Vbm', '5505059'), + (935, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41WP2Vbm', '5509055'), + (935, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WP2Vbm', '5512862'), + (935, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WP2Vbm', '5513985'), + (935, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '41WP2Vbm', '5519981'), + (935, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41WP2Vbm', '5522550'), + (935, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41WP2Vbm', '5534683'), + (935, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41WP2Vbm', '5546619'), + (935, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41WP2Vbm', '5555245'), + (935, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41WP2Vbm', '5557747'), + (935, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WP2Vbm', '6045684'), + (936, 1281, 'not_attending', '2022-04-09 22:15:36', '2025-12-17 19:47:27', 'R40XbQV4', '5190437'), + (936, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'R40XbQV4', '5195095'), + (936, 1318, 'maybe', '2022-04-14 06:01:16', '2025-12-17 19:47:27', 'R40XbQV4', '5238343'), + (936, 1321, 'not_attending', '2022-04-21 23:37:25', '2025-12-17 19:47:27', 'R40XbQV4', '5238355'), + (936, 1322, 'attending', '2022-04-11 16:40:17', '2025-12-17 19:47:27', 'R40XbQV4', '5238356'), + (936, 1323, 'not_attending', '2022-04-27 00:15:44', '2025-12-17 19:47:27', 'R40XbQV4', '5238357'), + (936, 1325, 'not_attending', '2022-04-11 16:46:22', '2025-12-17 19:47:28', 'R40XbQV4', '5238361'), + (936, 1326, 'not_attending', '2022-04-11 16:46:44', '2025-12-17 19:47:28', 'R40XbQV4', '5238362'), + (936, 1327, 'not_attending', '2022-04-14 05:58:36', '2025-12-17 19:47:27', 'R40XbQV4', '5238445'), + (936, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'R40XbQV4', '5247467'), + (936, 1352, 'not_attending', '2022-05-05 22:56:16', '2025-12-17 19:47:28', 'R40XbQV4', '5251618'), + (936, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'R40XbQV4', '5260800'), + (936, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'R40XbQV4', '5269930'), + (936, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'R40XbQV4', '5271448'), + (936, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'R40XbQV4', '5271449'), + (936, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'R40XbQV4', '5276469'), + (936, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'R40XbQV4', '5277078'), + (936, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'R40XbQV4', '5278159'), + (936, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'R40XbQV4', '5363695'), + (936, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'R40XbQV4', '5365960'), + (936, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'R40XbQV4', '5368973'), + (936, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'R40XbQV4', '5378247'), + (936, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'R40XbQV4', '5389605'), + (936, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'R40XbQV4', '5397265'), + (936, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'R40XbQV4', '5403967'), + (936, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'R40XbQV4', '5404786'), + (936, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'R40XbQV4', '5405203'), + (936, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'R40XbQV4', '5411699'), + (936, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'R40XbQV4', '5412550'), + (936, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'R40XbQV4', '5415046'), + (936, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'R40XbQV4', '5422086'), + (936, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'R40XbQV4', '5422406'), + (936, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'R40XbQV4', '5424565'), + (936, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'R40XbQV4', '5426882'), + (936, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'R40XbQV4', '5427083'), + (936, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'R40XbQV4', '5441125'), + (936, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'R40XbQV4', '5441126'), + (936, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'R40XbQV4', '5441128'), + (936, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'R40XbQV4', '5446643'), + (936, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'R40XbQV4', '5453325'), + (936, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'R40XbQV4', '5454516'), + (936, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'R40XbQV4', '5454605'), + (936, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'R40XbQV4', '5455037'), + (936, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'R40XbQV4', '5461278'), + (936, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'R40XbQV4', '5469480'), + (936, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'R40XbQV4', '5471073'), + (936, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'R40XbQV4', '5474663'), + (936, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'R40XbQV4', '5482022'), + (936, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'R40XbQV4', '5482793'), + (936, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'R40XbQV4', '5488912'), + (936, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'R40XbQV4', '5492192'), + (936, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'R40XbQV4', '5493139'), + (936, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'R40XbQV4', '5493200'), + (936, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'R40XbQV4', '5502188'), + (936, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'R40XbQV4', '5512862'), + (936, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'R40XbQV4', '5513985'), + (936, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'R40XbQV4', '6045684'), + (937, 1315, 'not_attending', '2022-04-21 20:25:37', '2025-12-17 19:47:27', 'd2jMg0Xd', '5237522'), + (937, 1336, 'attending', '2022-04-19 22:23:37', '2025-12-17 19:47:27', 'd2jMg0Xd', '5244915'), + (937, 1350, 'attending', '2022-04-21 20:24:54', '2025-12-17 19:47:27', 'd2jMg0Xd', '5249763'), + (937, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd2jMg0Xd', '5260800'), + (937, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd2jMg0Xd', '5269930'), + (937, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd2jMg0Xd', '5271448'), + (937, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'd2jMg0Xd', '5271449'), + (937, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd2jMg0Xd', '5276469'), + (937, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd2jMg0Xd', '5278159'), + (937, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2jMg0Xd', '6045684'), + (938, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '403vyByA', '7074364'), + (938, 2661, 'attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', '403vyByA', '7302674'), + (938, 2678, 'attending', '2024-06-15 19:41:21', '2025-12-17 19:46:28', '403vyByA', '7319489'), + (938, 2679, 'attending', '2024-06-20 01:22:42', '2025-12-17 19:46:29', '403vyByA', '7319490'), + (938, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '403vyByA', '7324073'), + (938, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '403vyByA', '7324074'), + (938, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '403vyByA', '7324075'), + (938, 2691, 'attending', '2024-07-20 22:19:12', '2025-12-17 19:46:30', '403vyByA', '7324076'), + (938, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '403vyByA', '7324078'), + (938, 2695, 'attending', '2024-08-16 05:07:21', '2025-12-17 19:46:31', '403vyByA', '7324080'), + (938, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '403vyByA', '7324082'), + (938, 2706, 'attending', '2024-06-19 17:17:16', '2025-12-17 19:46:28', '403vyByA', '7324947'), + (938, 2714, 'attending', '2024-06-15 19:41:09', '2025-12-17 19:46:28', '403vyByA', '7326981'), + (938, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '403vyByA', '7331457'), + (938, 2723, 'attending', '2024-06-21 21:46:10', '2025-12-17 19:46:29', '403vyByA', '7332389'), + (938, 2724, 'attending', '2024-06-26 19:39:57', '2025-12-17 19:46:29', '403vyByA', '7332562'), + (938, 2731, 'attending', '2024-06-22 23:08:59', '2025-12-17 19:46:29', '403vyByA', '7335303'), + (938, 2747, 'maybe', '2024-07-17 20:01:27', '2025-12-17 19:46:30', '403vyByA', '7353587'), + (938, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '403vyByA', '7356752'), + (938, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '403vyByA', '7363643'), + (938, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '403vyByA', '7368606'), + (938, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '403vyByA', '7397462'), + (938, 2821, 'attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '403vyByA', '7424275'), + (938, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '403vyByA', '7424276'), + (938, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '403vyByA', '7432751'), + (938, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '403vyByA', '7432752'), + (938, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '403vyByA', '7432753'), + (938, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '403vyByA', '7432754'), + (938, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '403vyByA', '7432755'), + (938, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '403vyByA', '7432756'), + (938, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '403vyByA', '7432758'), + (938, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '403vyByA', '7432759'), + (938, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '403vyByA', '7433834'), + (938, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '403vyByA', '7470197'), + (938, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '403vyByA', '7685613'), + (938, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '403vyByA', '7688194'), + (938, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '403vyByA', '7688196'), + (938, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '403vyByA', '7688289'), + (938, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '403vyByA', '7692763'), + (938, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '403vyByA', '7697552'), + (938, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '403vyByA', '7699878'), + (938, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '403vyByA', '7704043'), + (938, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '403vyByA', '7712467'), + (938, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '403vyByA', '7713585'), + (938, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '403vyByA', '7713586'), + (938, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '403vyByA', '7738518'), + (938, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '403vyByA', '7750636'), + (938, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '403vyByA', '7796540'), + (938, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '403vyByA', '7796541'), + (938, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '403vyByA', '7796542'), + (939, 926, 'maybe', '2021-08-18 22:38:29', '2025-12-17 19:47:42', 'dODObNWm', '4297211'), + (939, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dODObNWm', '4356801'), + (939, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'dODObNWm', '4366186'), + (939, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'dODObNWm', '4366187'), + (939, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dODObNWm', '4420735'), + (939, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dODObNWm', '4420738'), + (939, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dODObNWm', '4420739'), + (939, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dODObNWm', '4420741'), + (939, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dODObNWm', '4420744'), + (939, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dODObNWm', '4420747'), + (939, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dODObNWm', '4420748'), + (939, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dODObNWm', '4420749'), + (939, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODObNWm', '4461883'), + (939, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODObNWm', '4508342'), + (939, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODObNWm', '4568602'), + (939, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dODObNWm', '4572153'), + (939, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dODObNWm', '4585962'), + (939, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dODObNWm', '4596356'), + (939, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dODObNWm', '4598860'), + (939, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dODObNWm', '4598861'), + (939, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dODObNWm', '4602797'), + (939, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dODObNWm', '4637896'), + (939, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dODObNWm', '4642994'), + (939, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dODObNWm', '4642995'), + (939, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dODObNWm', '4642996'), + (939, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dODObNWm', '4642997'), + (939, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dODObNWm', '4645687'), + (939, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dODObNWm', '4645698'), + (939, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dODObNWm', '4645704'), + (939, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dODObNWm', '4645705'), + (939, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dODObNWm', '4668385'), + (939, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODObNWm', '6045684'), + (940, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'An2RlrXA', '5900202'), + (940, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'An2RlrXA', '5900203'), + (940, 1917, 'not_attending', '2023-03-15 21:03:13', '2025-12-17 19:47:10', 'An2RlrXA', '5910528'), + (940, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'An2RlrXA', '5962317'), + (940, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'An2RlrXA', '5962318'), + (940, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'An2RlrXA', '5965933'), + (940, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'An2RlrXA', '5998939'), + (940, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'An2RlrXA', '6028191'), + (940, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'An2RlrXA', '6040066'), + (940, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'An2RlrXA', '6042717'), + (940, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'An2RlrXA', '6044838'), + (940, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'An2RlrXA', '6044839'), + (940, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'An2RlrXA', '6045684'), + (940, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'An2RlrXA', '6048955'), + (940, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'An2RlrXA', '6050104'), + (940, 2002, 'attending', '2023-04-28 12:18:29', '2025-12-17 19:47:01', 'An2RlrXA', '6052605'), + (940, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'An2RlrXA', '6053195'), + (940, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'An2RlrXA', '6053198'), + (940, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'An2RlrXA', '6056085'), + (940, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'An2RlrXA', '6056916'), + (940, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'An2RlrXA', '6059290'), + (940, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'An2RlrXA', '6060328'), + (940, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'An2RlrXA', '6061037'), + (940, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'An2RlrXA', '6061039'), + (940, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'An2RlrXA', '6067245'), + (940, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'An2RlrXA', '6068094'), + (940, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'An2RlrXA', '6068252'), + (940, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'An2RlrXA', '6068253'), + (940, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'An2RlrXA', '6068254'), + (940, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'An2RlrXA', '6068280'), + (940, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'An2RlrXA', '6069093'), + (940, 2038, 'not_attending', '2023-04-28 22:30:12', '2025-12-17 19:47:01', 'An2RlrXA', '6071944'), + (940, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'An2RlrXA', '6072528'), + (940, 2042, 'attending', '2023-04-27 14:22:11', '2025-12-17 19:47:01', 'An2RlrXA', '6072941'), + (940, 2045, 'not_attending', '2023-04-30 19:25:05', '2025-12-17 19:47:01', 'An2RlrXA', '6075556'), + (940, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'An2RlrXA', '6079840'), + (940, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'An2RlrXA', '6083398'), + (940, 2053, 'maybe', '2023-05-08 23:25:44', '2025-12-17 19:47:02', 'An2RlrXA', '6092644'), + (940, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'An2RlrXA', '6093504'), + (940, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'An2RlrXA', '6097414'), + (940, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'An2RlrXA', '6097442'), + (940, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'An2RlrXA', '6097684'), + (940, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'An2RlrXA', '6098762'), + (940, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'An2RlrXA', '6101361'), + (940, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'An2RlrXA', '6101362'), + (940, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'An2RlrXA', '6103752'), + (940, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'An2RlrXA', '6107314'), + (940, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'An2RlrXA', '6120034'), + (940, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'An2RlrXA', '6136733'), + (940, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'An2RlrXA', '6137989'), + (940, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'An2RlrXA', '6150864'), + (940, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'An2RlrXA', '6155491'), + (940, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'An2RlrXA', '6164417'), + (940, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'An2RlrXA', '6166388'), + (940, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'An2RlrXA', '6176439'), + (940, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'An2RlrXA', '6182410'), + (940, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'An2RlrXA', '6185812'), + (940, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'An2RlrXA', '6187651'), + (940, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'An2RlrXA', '6187963'), + (940, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'An2RlrXA', '6187964'), + (940, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'An2RlrXA', '6187966'), + (940, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'An2RlrXA', '6187967'), + (940, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'An2RlrXA', '6187969'), + (940, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'An2RlrXA', '6334878'), + (940, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'An2RlrXA', '6337236'), + (940, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'An2RlrXA', '6337970'), + (940, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'An2RlrXA', '6338308'), + (940, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'An2RlrXA', '6340845'), + (940, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'An2RlrXA', '6341710'), + (940, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'An2RlrXA', '6342044'), + (940, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'An2RlrXA', '6342298'), + (940, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'An2RlrXA', '6343294'), + (940, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'An2RlrXA', '6347034'), + (940, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'An2RlrXA', '6347056'), + (940, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'An2RlrXA', '6353830'), + (940, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'An2RlrXA', '6353831'), + (940, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'An2RlrXA', '6357867'), + (940, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'An2RlrXA', '6358652'), + (940, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'An2RlrXA', '6361709'), + (940, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'An2RlrXA', '6361710'), + (940, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'An2RlrXA', '6361711'), + (940, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'An2RlrXA', '6361712'), + (940, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'An2RlrXA', '6361713'), + (940, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'An2RlrXA', '6382573'), + (940, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'An2RlrXA', '6388604'), + (940, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'An2RlrXA', '6394629'), + (940, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'An2RlrXA', '6394631'), + (940, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'An2RlrXA', '6440863'), + (940, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'An2RlrXA', '6445440'), + (940, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'An2RlrXA', '6453951'), + (940, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'An2RlrXA', '6461696'), + (940, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'An2RlrXA', '6462129'), + (940, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'An2RlrXA', '6463218'), + (940, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'An2RlrXA', '6472181'), + (940, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'An2RlrXA', '6482693'), + (940, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'An2RlrXA', '6484200'), + (940, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'An2RlrXA', '6484680'), + (940, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'An2RlrXA', '6507741'), + (940, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'An2RlrXA', '6514659'), + (940, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'An2RlrXA', '6514660'), + (940, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'An2RlrXA', '6519103'), + (940, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'An2RlrXA', '6535681'), + (940, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'An2RlrXA', '6584747'), + (940, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'An2RlrXA', '6587097'), + (940, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'An2RlrXA', '6609022'), + (940, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'An2RlrXA', '6632757'), + (940, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'An2RlrXA', '6644187'), + (940, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'An2RlrXA', '6648951'), + (940, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'An2RlrXA', '6648952'), + (940, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'An2RlrXA', '6655401'), + (940, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'An2RlrXA', '6661585'), + (940, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'An2RlrXA', '6661588'), + (940, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'An2RlrXA', '6661589'), + (940, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'An2RlrXA', '6699906'), + (940, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'An2RlrXA', '6701109'), + (940, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'An2RlrXA', '6705219'), + (940, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'An2RlrXA', '6710153'), + (940, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'An2RlrXA', '6711552'), + (940, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'An2RlrXA', '6711553'), + (940, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'An2RlrXA', '6722688'), + (940, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'An2RlrXA', '6730620'), + (940, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'An2RlrXA', '6730642'), + (941, 1104, 'attending', '2021-11-14 04:23:08', '2025-12-17 19:47:36', 'd9nJKGqm', '4618310'), + (941, 1114, 'attending', '2021-11-13 19:47:20', '2025-12-17 19:47:36', 'd9nJKGqm', '4637896'), + (941, 1121, 'attending', '2021-11-17 21:33:37', '2025-12-17 19:47:37', 'd9nJKGqm', '4644022'), + (941, 1123, 'attending', '2021-12-07 16:37:12', '2025-12-17 19:47:38', 'd9nJKGqm', '4644024'), + (941, 1124, 'attending', '2021-12-07 16:37:05', '2025-12-17 19:47:38', 'd9nJKGqm', '4644025'), + (941, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd9nJKGqm', '4645687'), + (941, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd9nJKGqm', '4645698'), + (941, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd9nJKGqm', '4645704'), + (941, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd9nJKGqm', '4645705'), + (941, 1134, 'attending', '2021-11-26 16:41:25', '2025-12-17 19:47:37', 'd9nJKGqm', '4668385'), + (941, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'd9nJKGqm', '4694407'), + (941, 1173, 'attending', '2022-01-04 22:20:34', '2025-12-17 19:47:31', 'd9nJKGqm', '4736495'), + (941, 1174, 'attending', '2022-01-15 18:27:45', '2025-12-17 19:47:31', 'd9nJKGqm', '4736496'), + (941, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd9nJKGqm', '4736497'), + (941, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd9nJKGqm', '4736499'), + (941, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'd9nJKGqm', '4736500'), + (941, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd9nJKGqm', '4736503'), + (941, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd9nJKGqm', '4736504'), + (941, 1183, 'attending', '2022-01-11 21:25:01', '2025-12-17 19:47:31', 'd9nJKGqm', '4742171'), + (941, 1185, 'attending', '2022-01-14 23:15:13', '2025-12-17 19:47:31', 'd9nJKGqm', '4746789'), + (941, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'd9nJKGqm', '4753929'), + (941, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd9nJKGqm', '5038850'), + (941, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd9nJKGqm', '5045826'), + (941, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd9nJKGqm', '5132533'), + (941, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd9nJKGqm', '5186582'), + (941, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd9nJKGqm', '5186583'), + (941, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd9nJKGqm', '5186585'), + (941, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9nJKGqm', '5190437'), + (941, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9nJKGqm', '5215989'), + (941, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd9nJKGqm', '5630968'), + (941, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd9nJKGqm', '5642818'), + (941, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd9nJKGqm', '5670445'), + (941, 1788, 'attending', '2022-11-20 00:08:55', '2025-12-17 19:47:16', 'd9nJKGqm', '5727236'), + (941, 1798, 'attending', '2022-11-24 05:06:01', '2025-12-17 19:47:16', 'd9nJKGqm', '5763458'), + (941, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd9nJKGqm', '5774172'), + (941, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'd9nJKGqm', '5818247'), + (941, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd9nJKGqm', '5819471'), + (941, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd9nJKGqm', '5827739'), + (941, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd9nJKGqm', '5844306'), + (941, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd9nJKGqm', '5850159'), + (941, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd9nJKGqm', '5858999'), + (941, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd9nJKGqm', '5871984'), + (941, 1859, 'not_attending', '2023-01-18 13:14:10', '2025-12-17 19:47:05', 'd9nJKGqm', '5876234'), + (941, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd9nJKGqm', '5876354'), + (941, 1866, 'attending', '2023-01-23 02:16:35', '2025-12-17 19:47:05', 'd9nJKGqm', '5880939'), + (941, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'd9nJKGqm', '5880940'), + (941, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd9nJKGqm', '5880942'), + (941, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd9nJKGqm', '5880943'), + (941, 1871, 'attending', '2023-01-18 13:14:32', '2025-12-17 19:47:05', 'd9nJKGqm', '5883502'), + (941, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd9nJKGqm', '5887890'), + (941, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd9nJKGqm', '5888598'), + (941, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd9nJKGqm', '5893260'), + (941, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'd9nJKGqm', '5899826'), + (941, 1888, 'attending', '2023-02-18 01:08:06', '2025-12-17 19:47:07', 'd9nJKGqm', '5900197'), + (941, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'd9nJKGqm', '5900199'), + (941, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd9nJKGqm', '5900200'), + (941, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd9nJKGqm', '5900202'), + (941, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd9nJKGqm', '5900203'), + (941, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'd9nJKGqm', '5901108'), + (941, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd9nJKGqm', '5901126'), + (941, 1898, 'attending', '2023-02-01 18:27:06', '2025-12-17 19:47:06', 'd9nJKGqm', '5901263'), + (941, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'd9nJKGqm', '5909655'), + (941, 1912, 'attending', '2023-02-16 20:23:59', '2025-12-17 19:47:07', 'd9nJKGqm', '5909808'), + (941, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'd9nJKGqm', '5910522'), + (941, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'd9nJKGqm', '5910526'), + (941, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'd9nJKGqm', '5910528'), + (941, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd9nJKGqm', '5916219'), + (941, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd9nJKGqm', '5936234'), + (941, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd9nJKGqm', '5958351'), + (941, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd9nJKGqm', '5959751'), + (941, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd9nJKGqm', '5959755'), + (941, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd9nJKGqm', '5960055'), + (941, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd9nJKGqm', '5961684'), + (941, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd9nJKGqm', '5962132'), + (941, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd9nJKGqm', '5962133'), + (941, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd9nJKGqm', '5962134'), + (941, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd9nJKGqm', '5962317'), + (941, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd9nJKGqm', '5962318'), + (941, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd9nJKGqm', '5965933'), + (941, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd9nJKGqm', '5967014'), + (941, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd9nJKGqm', '5972815'), + (941, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd9nJKGqm', '5974016'), + (941, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'd9nJKGqm', '5975052'), + (941, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'd9nJKGqm', '5975054'), + (941, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd9nJKGqm', '5981515'), + (941, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd9nJKGqm', '5993516'), + (941, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd9nJKGqm', '5998939'), + (941, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd9nJKGqm', '6028191'), + (941, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd9nJKGqm', '6040066'), + (941, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd9nJKGqm', '6042717'), + (941, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd9nJKGqm', '6044838'), + (941, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd9nJKGqm', '6044839'), + (941, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9nJKGqm', '6045684'), + (941, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd9nJKGqm', '6050104'), + (941, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd9nJKGqm', '6053195'), + (941, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd9nJKGqm', '6053198'), + (941, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd9nJKGqm', '6056085'), + (941, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd9nJKGqm', '6056916'), + (941, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd9nJKGqm', '6059290'), + (941, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd9nJKGqm', '6060328'), + (941, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd9nJKGqm', '6061037'), + (941, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd9nJKGqm', '6061039'), + (941, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd9nJKGqm', '6067245'), + (941, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd9nJKGqm', '6068094'), + (941, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd9nJKGqm', '6068252'), + (941, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd9nJKGqm', '6068253'), + (941, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd9nJKGqm', '6068254'), + (941, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd9nJKGqm', '6068280'), + (941, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd9nJKGqm', '6069093'), + (941, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'd9nJKGqm', '6072528'), + (941, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'd9nJKGqm', '6075556'), + (941, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd9nJKGqm', '6079840'), + (941, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd9nJKGqm', '6083398'), + (941, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'd9nJKGqm', '6093504'), + (941, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd9nJKGqm', '6097414'), + (941, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd9nJKGqm', '6097442'), + (941, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd9nJKGqm', '6097684'), + (941, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd9nJKGqm', '6098762'), + (941, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'd9nJKGqm', '6101361'), + (941, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd9nJKGqm', '6101362'), + (941, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd9nJKGqm', '6107314'), + (941, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd9nJKGqm', '6120034'), + (941, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'd9nJKGqm', '6136733'), + (941, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'd9nJKGqm', '6137989'), + (941, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'd9nJKGqm', '6150864'), + (941, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'd9nJKGqm', '6155491'), + (941, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd9nJKGqm', '6164417'), + (941, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd9nJKGqm', '6166388'), + (941, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd9nJKGqm', '6176439'), + (941, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'd9nJKGqm', '6182410'), + (941, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd9nJKGqm', '6185812'), + (941, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd9nJKGqm', '6187651'), + (941, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd9nJKGqm', '6187963'), + (941, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd9nJKGqm', '6187964'), + (941, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd9nJKGqm', '6187966'), + (941, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd9nJKGqm', '6187967'), + (941, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd9nJKGqm', '6187969'), + (941, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd9nJKGqm', '6334878'), + (941, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd9nJKGqm', '6337236'), + (941, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd9nJKGqm', '6337970'), + (941, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd9nJKGqm', '6338308'), + (941, 2157, 'not_attending', '2023-07-12 21:55:48', '2025-12-17 19:46:52', 'd9nJKGqm', '6338342'), + (941, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd9nJKGqm', '6341710'), + (941, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd9nJKGqm', '6342044'), + (941, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd9nJKGqm', '6342298'), + (941, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'd9nJKGqm', '6343294'), + (941, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd9nJKGqm', '6347034'), + (941, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd9nJKGqm', '6347056'), + (941, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd9nJKGqm', '6353830'), + (941, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd9nJKGqm', '6353831'), + (941, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd9nJKGqm', '6357867'), + (941, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd9nJKGqm', '6358652'), + (941, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'd9nJKGqm', '6358668'), + (941, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'd9nJKGqm', '6358669'), + (941, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd9nJKGqm', '6361709'), + (941, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd9nJKGqm', '6361710'), + (941, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd9nJKGqm', '6361711'), + (941, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd9nJKGqm', '6361712'), + (941, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd9nJKGqm', '6361713'), + (941, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd9nJKGqm', '6382573'), + (941, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd9nJKGqm', '6388604'), + (941, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd9nJKGqm', '6394629'), + (941, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd9nJKGqm', '6394631'), + (941, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd9nJKGqm', '6440863'), + (941, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd9nJKGqm', '6445440'), + (941, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd9nJKGqm', '6453951'), + (941, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd9nJKGqm', '6461696'), + (941, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd9nJKGqm', '6462129'), + (941, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd9nJKGqm', '6463218'), + (941, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd9nJKGqm', '6472181'), + (941, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd9nJKGqm', '6482693'), + (941, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd9nJKGqm', '6484200'), + (941, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'd9nJKGqm', '6484680'), + (941, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd9nJKGqm', '6507741'), + (941, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd9nJKGqm', '6514659'), + (941, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd9nJKGqm', '6514660'), + (941, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd9nJKGqm', '6519103'), + (941, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd9nJKGqm', '6535681'), + (941, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd9nJKGqm', '6584747'), + (941, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd9nJKGqm', '6587097'), + (941, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd9nJKGqm', '6609022'), + (941, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd9nJKGqm', '6632757'), + (941, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd9nJKGqm', '6644187'), + (941, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd9nJKGqm', '6648951'), + (941, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd9nJKGqm', '6648952'), + (941, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd9nJKGqm', '6655401'), + (941, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd9nJKGqm', '6661585'), + (941, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd9nJKGqm', '6661588'), + (941, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd9nJKGqm', '6661589'), + (941, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd9nJKGqm', '6699906'), + (941, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd9nJKGqm', '6701109'), + (941, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'd9nJKGqm', '6704561'), + (941, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd9nJKGqm', '6705219'), + (941, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'd9nJKGqm', '6708410'), + (941, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd9nJKGqm', '6710153'), + (941, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd9nJKGqm', '6711552'), + (941, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd9nJKGqm', '6711553'), + (942, 850, 'maybe', '2021-08-25 20:41:04', '2025-12-17 19:47:42', 'dVBkpPrd', '4015722'), + (942, 857, 'maybe', '2021-11-23 16:37:25', '2025-12-17 19:47:37', 'dVBkpPrd', '4015731'), + (942, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dVBkpPrd', '4210314'), + (942, 902, 'attending', '2021-08-07 04:59:57', '2025-12-17 19:47:41', 'dVBkpPrd', '4240318'), + (942, 903, 'attending', '2021-08-09 23:46:39', '2025-12-17 19:47:42', 'dVBkpPrd', '4240320'), + (942, 926, 'attending', '2021-08-17 20:43:21', '2025-12-17 19:47:42', 'dVBkpPrd', '4297211'), + (942, 935, 'attending', '2021-08-11 21:52:20', '2025-12-17 19:47:41', 'dVBkpPrd', '4304151'), + (942, 947, 'attending', '2021-08-04 07:54:23', '2025-12-17 19:47:41', 'dVBkpPrd', '4315713'), + (942, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dVBkpPrd', '4345519'), + (942, 963, 'attending', '2021-08-15 03:10:52', '2025-12-17 19:47:42', 'dVBkpPrd', '4353159'), + (942, 964, 'attending', '2021-08-15 03:19:46', '2025-12-17 19:47:42', 'dVBkpPrd', '4353160'), + (942, 971, 'attending', '2021-09-08 20:35:38', '2025-12-17 19:47:43', 'dVBkpPrd', '4356801'), + (942, 972, 'maybe', '2021-08-20 21:06:02', '2025-12-17 19:47:42', 'dVBkpPrd', '4358025'), + (942, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dVBkpPrd', '4366186'), + (942, 974, 'attending', '2021-08-23 22:01:25', '2025-12-17 19:47:42', 'dVBkpPrd', '4366187'), + (942, 985, 'attending', '2021-08-21 02:32:48', '2025-12-17 19:47:42', 'dVBkpPrd', '4391748'), + (942, 987, 'attending', '2021-09-01 22:47:35', '2025-12-17 19:47:43', 'dVBkpPrd', '4402634'), + (942, 988, 'attending', '2021-08-24 02:50:47', '2025-12-17 19:47:42', 'dVBkpPrd', '4402823'), + (942, 989, 'maybe', '2021-09-09 02:06:38', '2025-12-17 19:47:43', 'dVBkpPrd', '4414282'), + (942, 990, 'attending', '2021-08-29 04:06:36', '2025-12-17 19:47:43', 'dVBkpPrd', '4420735'), + (942, 991, 'attending', '2021-08-29 23:02:23', '2025-12-17 19:47:43', 'dVBkpPrd', '4420738'), + (942, 992, 'attending', '2021-09-07 23:26:07', '2025-12-17 19:47:33', 'dVBkpPrd', '4420739'), + (942, 993, 'attending', '2021-09-14 04:53:43', '2025-12-17 19:47:34', 'dVBkpPrd', '4420741'), + (942, 994, 'attending', '2021-10-02 02:32:09', '2025-12-17 19:47:34', 'dVBkpPrd', '4420742'), + (942, 995, 'attending', '2021-09-26 20:14:52', '2025-12-17 19:47:34', 'dVBkpPrd', '4420744'), + (942, 996, 'attending', '2021-09-26 20:15:01', '2025-12-17 19:47:35', 'dVBkpPrd', '4420747'), + (942, 997, 'attending', '2021-09-28 07:20:36', '2025-12-17 19:47:35', 'dVBkpPrd', '4420748'), + (942, 998, 'attending', '2021-09-28 07:20:51', '2025-12-17 19:47:36', 'dVBkpPrd', '4420749'), + (942, 1001, 'maybe', '2021-08-30 21:56:25', '2025-12-17 19:47:43', 'dVBkpPrd', '4424687'), + (942, 1015, 'maybe', '2021-09-17 23:00:57', '2025-12-17 19:47:43', 'dVBkpPrd', '4440800'), + (942, 1016, 'maybe', '2021-09-06 21:01:24', '2025-12-17 19:47:43', 'dVBkpPrd', '4441271'), + (942, 1017, 'attending', '2021-09-03 20:33:46', '2025-12-17 19:47:43', 'dVBkpPrd', '4441822'), + (942, 1019, 'attending', '2021-09-06 21:04:03', '2025-12-17 19:47:43', 'dVBkpPrd', '4450515'), + (942, 1020, 'attending', '2021-09-06 21:01:33', '2025-12-17 19:47:43', 'dVBkpPrd', '4451787'), + (942, 1021, 'attending', '2021-09-06 21:02:49', '2025-12-17 19:47:34', 'dVBkpPrd', '4451803'), + (942, 1022, 'attending', '2021-09-14 00:51:12', '2025-12-17 19:47:43', 'dVBkpPrd', '4458628'), + (942, 1023, 'maybe', '2021-09-12 03:56:31', '2025-12-17 19:47:43', 'dVBkpPrd', '4461883'), + (942, 1025, 'maybe', '2021-09-14 16:29:35', '2025-12-17 19:47:43', 'dVBkpPrd', '4462052'), + (942, 1027, 'attending', '2021-09-14 00:46:28', '2025-12-17 19:47:34', 'dVBkpPrd', '4472982'), + (942, 1028, 'attending', '2021-09-20 09:52:02', '2025-12-17 19:47:34', 'dVBkpPrd', '4472983'), + (942, 1029, 'attending', '2021-09-14 05:02:25', '2025-12-17 19:47:43', 'dVBkpPrd', '4473063'), + (942, 1036, 'attending', '2021-09-20 09:50:34', '2025-12-17 19:47:34', 'dVBkpPrd', '4493166'), + (942, 1037, 'attending', '2021-09-18 21:37:21', '2025-12-17 19:47:34', 'dVBkpPrd', '4493233'), + (942, 1040, 'attending', '2021-12-11 06:07:35', '2025-12-17 19:47:38', 'dVBkpPrd', '4496605'), + (942, 1049, 'attending', '2022-01-20 22:55:42', '2025-12-17 19:47:32', 'dVBkpPrd', '4496614'), + (942, 1050, 'attending', '2022-01-22 20:43:40', '2025-12-17 19:47:32', 'dVBkpPrd', '4496615'), + (942, 1051, 'attending', '2022-02-01 20:25:16', '2025-12-17 19:47:32', 'dVBkpPrd', '4496616'), + (942, 1052, 'attending', '2022-01-10 04:13:38', '2025-12-17 19:47:31', 'dVBkpPrd', '4496617'), + (942, 1053, 'attending', '2022-02-15 19:57:28', '2025-12-17 19:47:32', 'dVBkpPrd', '4496618'), + (942, 1054, 'not_attending', '2022-03-19 03:20:23', '2025-12-17 19:47:25', 'dVBkpPrd', '4496619'), + (942, 1055, 'attending', '2021-12-13 23:03:27', '2025-12-17 19:47:31', 'dVBkpPrd', '4496621'), + (942, 1056, 'attending', '2022-01-04 02:59:02', '2025-12-17 19:47:31', 'dVBkpPrd', '4496622'), + (942, 1059, 'attending', '2022-03-10 19:24:39', '2025-12-17 19:47:33', 'dVBkpPrd', '4496626'), + (942, 1060, 'attending', '2022-03-19 03:20:48', '2025-12-17 19:47:25', 'dVBkpPrd', '4496627'), + (942, 1061, 'attending', '2022-02-07 05:23:32', '2025-12-17 19:47:32', 'dVBkpPrd', '4496628'), + (942, 1062, 'attending', '2022-03-04 22:34:14', '2025-12-17 19:47:33', 'dVBkpPrd', '4496629'), + (942, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dVBkpPrd', '4508342'), + (942, 1068, 'not_attending', '2021-09-28 03:59:08', '2025-12-17 19:47:34', 'dVBkpPrd', '4511471'), + (942, 1070, 'maybe', '2021-09-27 10:00:23', '2025-12-17 19:47:34', 'dVBkpPrd', '4512562'), + (942, 1071, 'attending', '2021-10-02 06:17:16', '2025-12-17 19:47:34', 'dVBkpPrd', '4516078'), + (942, 1072, 'attending', '2021-10-03 20:01:33', '2025-12-17 19:47:34', 'dVBkpPrd', '4516287'), + (942, 1073, 'attending', '2021-09-28 03:58:57', '2025-12-17 19:47:34', 'dVBkpPrd', '4518993'), + (942, 1074, 'maybe', '2021-09-29 03:30:49', '2025-12-17 19:47:34', 'dVBkpPrd', '4528953'), + (942, 1076, 'attending', '2021-10-03 20:01:42', '2025-12-17 19:47:34', 'dVBkpPrd', '4539147'), + (942, 1077, 'attending', '2021-10-12 19:44:22', '2025-12-17 19:47:34', 'dVBkpPrd', '4540903'), + (942, 1078, 'attending', '2021-10-05 03:15:38', '2025-12-17 19:47:34', 'dVBkpPrd', '4541281'), + (942, 1079, 'attending', '2021-10-19 18:41:58', '2025-12-17 19:47:35', 'dVBkpPrd', '4563823'), + (942, 1082, 'attending', '2021-10-11 23:03:17', '2025-12-17 19:47:35', 'dVBkpPrd', '4566762'), + (942, 1083, 'maybe', '2021-10-11 23:29:11', '2025-12-17 19:47:34', 'dVBkpPrd', '4566768'), + (942, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dVBkpPrd', '4568602'), + (942, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVBkpPrd', '4572153'), + (942, 1088, 'attending', '2021-10-16 05:15:55', '2025-12-17 19:47:35', 'dVBkpPrd', '4574382'), + (942, 1092, 'attending', '2021-10-19 21:36:48', '2025-12-17 19:47:35', 'dVBkpPrd', '4582837'), + (942, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dVBkpPrd', '4585962'), + (942, 1095, 'attending', '2021-10-26 21:28:24', '2025-12-17 19:47:35', 'dVBkpPrd', '4596356'), + (942, 1096, 'attending', '2021-10-27 01:16:33', '2025-12-17 19:47:36', 'dVBkpPrd', '4596453'), + (942, 1097, 'attending', '2021-10-28 08:59:29', '2025-12-17 19:47:36', 'dVBkpPrd', '4598860'), + (942, 1098, 'attending', '2021-11-03 05:40:54', '2025-12-17 19:47:36', 'dVBkpPrd', '4598861'), + (942, 1099, 'attending', '2021-11-03 05:40:46', '2025-12-17 19:47:36', 'dVBkpPrd', '4602797'), + (942, 1100, 'maybe', '2021-11-08 10:02:21', '2025-12-17 19:47:36', 'dVBkpPrd', '4607305'), + (942, 1103, 'maybe', '2021-11-07 04:23:48', '2025-12-17 19:47:36', 'dVBkpPrd', '4616350'), + (942, 1106, 'attending', '2021-11-09 03:41:41', '2025-12-17 19:47:36', 'dVBkpPrd', '4620452'), + (942, 1108, 'attending', '2021-11-17 21:44:59', '2025-12-17 19:47:37', 'dVBkpPrd', '4632276'), + (942, 1114, 'attending', '2021-11-12 05:23:00', '2025-12-17 19:47:36', 'dVBkpPrd', '4637896'), + (942, 1116, 'attending', '2021-11-13 02:31:07', '2025-12-17 19:47:37', 'dVBkpPrd', '4642994'), + (942, 1117, 'attending', '2021-11-13 02:31:22', '2025-12-17 19:47:37', 'dVBkpPrd', '4642995'), + (942, 1118, 'not_attending', '2021-12-16 00:47:46', '2025-12-17 19:47:38', 'dVBkpPrd', '4642996'), + (942, 1119, 'attending', '2021-11-13 02:31:35', '2025-12-17 19:47:31', 'dVBkpPrd', '4642997'), + (942, 1120, 'not_attending', '2021-11-15 23:14:14', '2025-12-17 19:47:37', 'dVBkpPrd', '4644021'), + (942, 1121, 'maybe', '2021-11-19 05:51:41', '2025-12-17 19:47:37', 'dVBkpPrd', '4644022'), + (942, 1122, 'maybe', '2021-12-02 22:58:23', '2025-12-17 19:47:37', 'dVBkpPrd', '4644023'), + (942, 1124, 'attending', '2021-12-13 23:00:14', '2025-12-17 19:47:38', 'dVBkpPrd', '4644025'), + (942, 1125, 'not_attending', '2021-12-21 23:55:22', '2025-12-17 19:47:31', 'dVBkpPrd', '4644027'), + (942, 1126, 'attending', '2021-12-06 07:38:27', '2025-12-17 19:47:38', 'dVBkpPrd', '4645687'), + (942, 1127, 'attending', '2021-12-04 00:45:09', '2025-12-17 19:47:38', 'dVBkpPrd', '4645698'), + (942, 1128, 'attending', '2021-11-14 22:36:20', '2025-12-17 19:47:37', 'dVBkpPrd', '4645704'), + (942, 1129, 'attending', '2021-11-19 05:52:49', '2025-12-17 19:47:37', 'dVBkpPrd', '4645705'), + (942, 1130, 'attending', '2021-11-26 07:27:07', '2025-12-17 19:47:37', 'dVBkpPrd', '4658824'), + (942, 1131, 'attending', '2021-12-06 21:05:55', '2025-12-17 19:47:31', 'dVBkpPrd', '4658825'), + (942, 1132, 'attending', '2021-11-21 15:10:27', '2025-12-17 19:47:37', 'dVBkpPrd', '4660657'), + (942, 1134, 'attending', '2021-11-24 11:00:05', '2025-12-17 19:47:37', 'dVBkpPrd', '4668385'), + (942, 1135, 'attending', '2021-11-25 07:17:37', '2025-12-17 19:47:37', 'dVBkpPrd', '4670469'), + (942, 1138, 'attending', '2021-11-29 21:40:52', '2025-12-17 19:47:37', 'dVBkpPrd', '4675407'), + (942, 1139, 'maybe', '2021-11-29 04:04:44', '2025-12-17 19:47:37', 'dVBkpPrd', '4675604'), + (942, 1142, 'attending', '2021-12-01 23:31:43', '2025-12-17 19:47:37', 'dVBkpPrd', '4681923'), + (942, 1143, 'attending', '2021-12-01 21:49:11', '2025-12-17 19:47:37', 'dVBkpPrd', '4683667'), + (942, 1145, 'maybe', '2021-12-10 00:46:31', '2025-12-17 19:47:38', 'dVBkpPrd', '4691157'), + (942, 1146, 'not_attending', '2021-12-10 23:46:53', '2025-12-17 19:47:38', 'dVBkpPrd', '4692841'), + (942, 1147, 'maybe', '2021-12-08 00:57:10', '2025-12-17 19:47:38', 'dVBkpPrd', '4692842'), + (942, 1148, 'attending', '2021-12-13 23:03:41', '2025-12-17 19:47:31', 'dVBkpPrd', '4692843'), + (942, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dVBkpPrd', '4694407'), + (942, 1151, 'attending', '2021-12-23 03:55:43', '2025-12-17 19:47:31', 'dVBkpPrd', '4708704'), + (942, 1152, 'attending', '2022-01-06 22:46:51', '2025-12-17 19:47:31', 'dVBkpPrd', '4708705'), + (942, 1153, 'attending', '2022-01-11 03:58:58', '2025-12-17 19:47:32', 'dVBkpPrd', '4708707'), + (942, 1154, 'attending', '2022-01-25 09:08:35', '2025-12-17 19:47:32', 'dVBkpPrd', '4708708'), + (942, 1155, 'maybe', '2021-12-20 22:42:32', '2025-12-17 19:47:31', 'dVBkpPrd', '4715119'), + (942, 1156, 'not_attending', '2021-12-20 22:43:11', '2025-12-17 19:47:31', 'dVBkpPrd', '4715207'), + (942, 1158, 'maybe', '2021-12-19 01:24:46', '2025-12-17 19:47:31', 'dVBkpPrd', '4715311'), + (942, 1163, 'maybe', '2021-12-27 23:01:07', '2025-12-17 19:47:31', 'dVBkpPrd', '4724206'), + (942, 1164, 'attending', '2021-12-28 03:07:15', '2025-12-17 19:47:31', 'dVBkpPrd', '4724208'), + (942, 1165, 'attending', '2021-12-28 03:07:19', '2025-12-17 19:47:31', 'dVBkpPrd', '4724210'), + (942, 1166, 'not_attending', '2022-01-11 00:55:40', '2025-12-17 19:47:31', 'dVBkpPrd', '4725109'), + (942, 1170, 'attending', '2022-01-05 05:23:09', '2025-12-17 19:47:31', 'dVBkpPrd', '4731045'), + (942, 1172, 'attending', '2022-01-19 00:59:31', '2025-12-17 19:47:32', 'dVBkpPrd', '4735348'), + (942, 1173, 'attending', '2022-01-04 02:58:55', '2025-12-17 19:47:31', 'dVBkpPrd', '4736495'), + (942, 1174, 'attending', '2022-01-05 05:23:33', '2025-12-17 19:47:31', 'dVBkpPrd', '4736496'), + (942, 1175, 'attending', '2022-01-08 22:18:57', '2025-12-17 19:47:32', 'dVBkpPrd', '4736497'), + (942, 1176, 'attending', '2022-01-05 05:23:56', '2025-12-17 19:47:32', 'dVBkpPrd', '4736498'), + (942, 1177, 'attending', '2022-02-05 08:21:47', '2025-12-17 19:47:32', 'dVBkpPrd', '4736499'), + (942, 1178, 'attending', '2022-01-16 19:24:32', '2025-12-17 19:47:32', 'dVBkpPrd', '4736500'), + (942, 1179, 'attending', '2022-02-13 06:12:33', '2025-12-17 19:47:32', 'dVBkpPrd', '4736501'), + (942, 1180, 'attending', '2022-02-27 00:28:33', '2025-12-17 19:47:33', 'dVBkpPrd', '4736502'), + (942, 1181, 'attending', '2022-02-13 06:12:40', '2025-12-17 19:47:33', 'dVBkpPrd', '4736503'), + (942, 1182, 'attending', '2022-02-13 06:12:47', '2025-12-17 19:47:33', 'dVBkpPrd', '4736504'), + (942, 1183, 'maybe', '2022-01-08 02:47:57', '2025-12-17 19:47:31', 'dVBkpPrd', '4742171'), + (942, 1184, 'maybe', '2022-01-06 22:46:45', '2025-12-17 19:47:31', 'dVBkpPrd', '4742350'), + (942, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVBkpPrd', '4746789'), + (942, 1188, 'attending', '2022-01-11 03:58:44', '2025-12-17 19:47:31', 'dVBkpPrd', '4753929'), + (942, 1190, 'maybe', '2022-01-13 23:17:32', '2025-12-17 19:47:31', 'dVBkpPrd', '4757377'), + (942, 1200, 'not_attending', '2022-01-18 23:55:45', '2025-12-17 19:47:32', 'dVBkpPrd', '4766830'), + (942, 1210, 'attending', '2022-01-29 01:39:38', '2025-12-17 19:47:32', 'dVBkpPrd', '4776927'), + (942, 1214, 'maybe', '2022-02-17 20:24:28', '2025-12-17 19:47:32', 'dVBkpPrd', '4780761'), + (942, 1217, 'attending', '2022-01-25 08:45:48', '2025-12-17 19:47:32', 'dVBkpPrd', '4781139'), + (942, 1219, 'attending', '2022-01-27 07:43:50', '2025-12-17 19:47:32', 'dVBkpPrd', '4788466'), + (942, 1222, 'maybe', '2022-02-13 21:18:55', '2025-12-17 19:47:32', 'dVBkpPrd', '5015628'), + (942, 1224, 'maybe', '2022-02-03 22:49:40', '2025-12-17 19:47:32', 'dVBkpPrd', '5016682'), + (942, 1228, 'maybe', '2022-02-07 05:23:27', '2025-12-17 19:47:32', 'dVBkpPrd', '5028238'), + (942, 1229, 'maybe', '2022-02-13 06:12:27', '2025-12-17 19:47:32', 'dVBkpPrd', '5034963'), + (942, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dVBkpPrd', '5038850'), + (942, 1234, 'attending', '2022-02-11 09:54:53', '2025-12-17 19:47:32', 'dVBkpPrd', '5042197'), + (942, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dVBkpPrd', '5045826'), + (942, 1237, 'attending', '2022-02-18 19:14:31', '2025-12-17 19:47:32', 'dVBkpPrd', '5050641'), + (942, 1238, 'attending', '2022-02-24 00:49:12', '2025-12-17 19:47:32', 'dVBkpPrd', '5052236'), + (942, 1239, 'attending', '2022-03-03 00:10:03', '2025-12-17 19:47:33', 'dVBkpPrd', '5052238'), + (942, 1240, 'not_attending', '2022-03-16 22:44:38', '2025-12-17 19:47:33', 'dVBkpPrd', '5052239'), + (942, 1241, 'attending', '2022-03-15 21:34:41', '2025-12-17 19:47:25', 'dVBkpPrd', '5052240'), + (942, 1242, 'attending', '2022-03-22 21:36:57', '2025-12-17 19:47:25', 'dVBkpPrd', '5052241'), + (942, 1246, 'not_attending', '2022-03-03 23:21:42', '2025-12-17 19:47:33', 'dVBkpPrd', '5064727'), + (942, 1248, 'maybe', '2022-02-24 00:12:18', '2025-12-17 19:47:33', 'dVBkpPrd', '5065064'), + (942, 1249, 'maybe', '2022-03-05 20:18:35', '2025-12-17 19:47:33', 'dVBkpPrd', '5068530'), + (942, 1253, 'maybe', '2022-03-05 23:02:45', '2025-12-17 19:47:33', 'dVBkpPrd', '5129122'), + (942, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVBkpPrd', '5132533'), + (942, 1261, 'maybe', '2022-03-05 23:01:29', '2025-12-17 19:47:33', 'dVBkpPrd', '5154274'), + (942, 1262, 'maybe', '2022-03-05 23:04:23', '2025-12-17 19:47:33', 'dVBkpPrd', '5157773'), + (942, 1264, 'maybe', '2022-03-11 22:05:35', '2025-12-17 19:47:25', 'dVBkpPrd', '5160281'), + (942, 1266, 'attending', '2022-03-14 21:49:54', '2025-12-17 19:47:33', 'dVBkpPrd', '5166407'), + (942, 1267, 'maybe', '2022-03-13 23:41:28', '2025-12-17 19:47:25', 'dVBkpPrd', '5169578'), + (942, 1268, 'not_attending', '2022-03-15 21:32:51', '2025-12-17 19:47:33', 'dVBkpPrd', '5176296'), + (942, 1270, 'not_attending', '2022-03-16 21:36:19', '2025-12-17 19:47:25', 'dVBkpPrd', '5181277'), + (942, 1272, 'not_attending', '2022-03-19 03:20:15', '2025-12-17 19:47:25', 'dVBkpPrd', '5186582'), + (942, 1273, 'attending', '2022-03-15 21:33:29', '2025-12-17 19:47:25', 'dVBkpPrd', '5186583'), + (942, 1274, 'attending', '2022-03-15 21:33:41', '2025-12-17 19:47:26', 'dVBkpPrd', '5186585'), + (942, 1275, 'attending', '2022-03-29 04:49:37', '2025-12-17 19:47:26', 'dVBkpPrd', '5186587'), + (942, 1276, 'attending', '2022-03-21 22:08:38', '2025-12-17 19:47:25', 'dVBkpPrd', '5186820'), + (942, 1278, 'maybe', '2022-03-17 16:32:50', '2025-12-17 19:47:33', 'dVBkpPrd', '5186920'), + (942, 1279, 'not_attending', '2022-03-19 03:20:35', '2025-12-17 19:47:25', 'dVBkpPrd', '5187212'), + (942, 1281, 'attending', '2022-03-29 04:49:48', '2025-12-17 19:47:27', 'dVBkpPrd', '5190437'), + (942, 1284, 'maybe', '2022-04-03 07:02:52', '2025-12-17 19:47:27', 'dVBkpPrd', '5195095'), + (942, 1288, 'maybe', '2022-03-27 20:24:13', '2025-12-17 19:47:25', 'dVBkpPrd', '5199460'), + (942, 1293, 'attending', '2022-03-27 20:23:48', '2025-12-17 19:47:27', 'dVBkpPrd', '5214641'), + (942, 1294, 'attending', '2022-03-29 19:51:17', '2025-12-17 19:47:26', 'dVBkpPrd', '5214686'), + (942, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVBkpPrd', '5215989'), + (942, 1304, 'maybe', '2022-04-06 21:08:32', '2025-12-17 19:47:26', 'dVBkpPrd', '5223468'), + (942, 1305, 'attending', '2022-04-09 07:38:54', '2025-12-17 19:47:27', 'dVBkpPrd', '5223673'), + (942, 1306, 'maybe', '2022-04-05 03:38:16', '2025-12-17 19:47:26', 'dVBkpPrd', '5223682'), + (942, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVBkpPrd', '5223686'), + (942, 1308, 'maybe', '2022-04-13 17:04:59', '2025-12-17 19:47:27', 'dVBkpPrd', '5226703'), + (942, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVBkpPrd', '5227432'), + (942, 1313, 'attending', '2022-04-10 20:55:26', '2025-12-17 19:47:27', 'dVBkpPrd', '5231461'), + (942, 1315, 'maybe', '2022-04-22 21:59:42', '2025-12-17 19:47:27', 'dVBkpPrd', '5237522'), + (942, 1319, 'maybe', '2022-04-11 15:33:27', '2025-12-17 19:47:27', 'dVBkpPrd', '5238353'), + (942, 1321, 'maybe', '2022-04-11 15:34:31', '2025-12-17 19:47:27', 'dVBkpPrd', '5238355'), + (942, 1325, 'attending', '2022-04-11 15:15:29', '2025-12-17 19:47:28', 'dVBkpPrd', '5238361'), + (942, 1326, 'attending', '2022-04-11 15:32:41', '2025-12-17 19:47:28', 'dVBkpPrd', '5238362'), + (942, 1327, 'attending', '2022-04-11 15:15:06', '2025-12-17 19:47:27', 'dVBkpPrd', '5238445'), + (942, 1328, 'maybe', '2022-04-13 07:21:31', '2025-12-17 19:47:27', 'dVBkpPrd', '5238759'), + (942, 1330, 'maybe', '2022-04-18 22:00:33', '2025-12-17 19:47:27', 'dVBkpPrd', '5242155'), + (942, 1331, 'maybe', '2022-04-20 05:49:35', '2025-12-17 19:47:27', 'dVBkpPrd', '5242156'), + (942, 1336, 'maybe', '2022-04-16 03:57:56', '2025-12-17 19:47:27', 'dVBkpPrd', '5244915'), + (942, 1337, 'not_attending', '2022-04-19 18:11:12', '2025-12-17 19:47:27', 'dVBkpPrd', '5245036'), + (942, 1340, 'maybe', '2022-04-25 16:42:09', '2025-12-17 19:47:27', 'dVBkpPrd', '5245754'), + (942, 1344, 'attending', '2022-04-28 19:43:33', '2025-12-17 19:47:28', 'dVBkpPrd', '5247465'), + (942, 1345, 'attending', '2022-04-21 21:51:33', '2025-12-17 19:47:27', 'dVBkpPrd', '5247466'), + (942, 1346, 'attending', '2022-04-17 22:13:13', '2025-12-17 19:47:27', 'dVBkpPrd', '5247467'), + (942, 1354, 'not_attending', '2022-04-23 08:16:50', '2025-12-17 19:47:27', 'dVBkpPrd', '5252569'), + (942, 1359, 'not_attending', '2022-05-04 11:32:04', '2025-12-17 19:47:28', 'dVBkpPrd', '5258360'), + (942, 1362, 'attending', '2022-04-26 07:59:26', '2025-12-17 19:47:28', 'dVBkpPrd', '5260800'), + (942, 1365, 'maybe', '2022-04-27 18:32:12', '2025-12-17 19:47:28', 'dVBkpPrd', '5261600'), + (942, 1368, 'maybe', '2022-04-27 18:32:53', '2025-12-17 19:47:28', 'dVBkpPrd', '5262783'), + (942, 1371, 'maybe', '2022-04-27 18:28:52', '2025-12-17 19:47:27', 'dVBkpPrd', '5263784'), + (942, 1372, 'not_attending', '2022-05-04 21:13:25', '2025-12-17 19:47:28', 'dVBkpPrd', '5264352'), + (942, 1374, 'attending', '2022-05-01 17:47:21', '2025-12-17 19:47:28', 'dVBkpPrd', '5269930'), + (942, 1375, 'not_attending', '2022-05-02 18:01:19', '2025-12-17 19:47:28', 'dVBkpPrd', '5269932'), + (942, 1378, 'attending', '2022-05-04 11:32:30', '2025-12-17 19:47:28', 'dVBkpPrd', '5271448'), + (942, 1379, 'attending', '2022-05-04 11:32:35', '2025-12-17 19:47:29', 'dVBkpPrd', '5271449'), + (942, 1380, 'not_attending', '2022-05-25 05:41:23', '2025-12-17 19:47:30', 'dVBkpPrd', '5271450'), + (942, 1383, 'attending', '2022-05-13 17:08:21', '2025-12-17 19:47:28', 'dVBkpPrd', '5276469'), + (942, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVBkpPrd', '5278159'), + (942, 1390, 'not_attending', '2022-05-10 02:15:45', '2025-12-17 19:47:28', 'dVBkpPrd', '5279509'), + (942, 1394, 'not_attending', '2022-05-26 20:18:59', '2025-12-17 19:47:30', 'dVBkpPrd', '5280667'), + (942, 1397, 'attending', '2022-05-18 19:03:03', '2025-12-17 19:47:29', 'dVBkpPrd', '5281104'), + (942, 1403, 'maybe', '2022-05-20 20:51:05', '2025-12-17 19:47:29', 'dVBkpPrd', '5288052'), + (942, 1407, 'not_attending', '2022-06-04 21:46:28', '2025-12-17 19:47:30', 'dVBkpPrd', '5363695'), + (942, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVBkpPrd', '5365960'), + (942, 1410, 'attending', '2022-05-17 01:59:56', '2025-12-17 19:47:29', 'dVBkpPrd', '5367530'), + (942, 1411, 'attending', '2022-05-17 02:00:15', '2025-12-17 19:47:29', 'dVBkpPrd', '5367531'), + (942, 1412, 'not_attending', '2022-05-19 19:16:38', '2025-12-17 19:47:29', 'dVBkpPrd', '5367532'), + (942, 1413, 'not_attending', '2022-05-20 21:21:21', '2025-12-17 19:47:29', 'dVBkpPrd', '5367533'), + (942, 1415, 'attending', '2022-05-18 22:27:04', '2025-12-17 19:47:30', 'dVBkpPrd', '5368973'), + (942, 1420, 'attending', '2022-05-27 20:38:04', '2025-12-17 19:47:30', 'dVBkpPrd', '5374882'), + (942, 1421, 'maybe', '2022-05-29 17:26:29', '2025-12-17 19:47:30', 'dVBkpPrd', '5374885'), + (942, 1427, 'not_attending', '2022-05-25 20:33:26', '2025-12-17 19:47:30', 'dVBkpPrd', '5376074'), + (942, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVBkpPrd', '5378247'), + (942, 1429, 'maybe', '2022-05-29 17:23:47', '2025-12-17 19:47:30', 'dVBkpPrd', '5388761'), + (942, 1431, 'not_attending', '2022-06-09 22:23:34', '2025-12-17 19:47:31', 'dVBkpPrd', '5389605'), + (942, 1435, 'attending', '2022-06-02 20:56:32', '2025-12-17 19:47:30', 'dVBkpPrd', '5394015'), + (942, 1442, 'not_attending', '2022-06-13 00:14:20', '2025-12-17 19:47:17', 'dVBkpPrd', '5397265'), + (942, 1443, 'not_attending', '2022-06-04 21:47:12', '2025-12-17 19:47:30', 'dVBkpPrd', '5397613'), + (942, 1444, 'not_attending', '2022-06-09 22:23:37', '2025-12-17 19:47:30', 'dVBkpPrd', '5397614'), + (942, 1451, 'maybe', '2022-06-12 04:05:42', '2025-12-17 19:47:17', 'dVBkpPrd', '5403967'), + (942, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVBkpPrd', '5404786'), + (942, 1462, 'not_attending', '2022-06-13 00:13:03', '2025-12-17 19:47:17', 'dVBkpPrd', '5405203'), + (942, 1478, 'maybe', '2022-06-23 21:03:14', '2025-12-17 19:47:19', 'dVBkpPrd', '5408794'), + (942, 1480, 'not_attending', '2022-06-23 21:04:13', '2025-12-17 19:47:19', 'dVBkpPrd', '5411699'), + (942, 1482, 'not_attending', '2022-06-21 21:57:01', '2025-12-17 19:47:19', 'dVBkpPrd', '5412550'), + (942, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dVBkpPrd', '5415046'), + (942, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVBkpPrd', '5422086'), + (942, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dVBkpPrd', '5422406'), + (942, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVBkpPrd', '5424565'), + (942, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVBkpPrd', '5426882'), + (942, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dVBkpPrd', '5427083'), + (942, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dVBkpPrd', '5441125'), + (942, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dVBkpPrd', '5441126'), + (942, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVBkpPrd', '5441128'), + (942, 1516, 'not_attending', '2022-08-16 22:13:03', '2025-12-17 19:47:23', 'dVBkpPrd', '5441129'), + (942, 1517, 'not_attending', '2022-08-16 22:15:00', '2025-12-17 19:47:23', 'dVBkpPrd', '5441130'), + (942, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVBkpPrd', '5441131'), + (942, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVBkpPrd', '5441132'), + (942, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVBkpPrd', '5446643'), + (942, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVBkpPrd', '5453325'), + (942, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVBkpPrd', '5454516'), + (942, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVBkpPrd', '5454605'), + (942, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVBkpPrd', '5455037'), + (942, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVBkpPrd', '5461278'), + (942, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVBkpPrd', '5469480'), + (942, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVBkpPrd', '5471073'), + (942, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVBkpPrd', '5474663'), + (942, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVBkpPrd', '5482022'), + (942, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVBkpPrd', '5482793'), + (942, 1580, 'attending', '2022-08-07 20:02:34', '2025-12-17 19:47:22', 'dVBkpPrd', '5488912'), + (942, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVBkpPrd', '5492192'), + (942, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVBkpPrd', '5493139'), + (942, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVBkpPrd', '5493200'), + (942, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVBkpPrd', '5502188'), + (942, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVBkpPrd', '5505059'), + (942, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVBkpPrd', '5509055'), + (942, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVBkpPrd', '5512862'), + (942, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVBkpPrd', '5513985'), + (942, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'dVBkpPrd', '5519981'), + (942, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVBkpPrd', '5522550'), + (942, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVBkpPrd', '5534683'), + (942, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dVBkpPrd', '5537735'), + (942, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVBkpPrd', '5540859'), + (942, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVBkpPrd', '5546619'), + (942, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVBkpPrd', '5555245'), + (942, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVBkpPrd', '5557747'), + (942, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVBkpPrd', '5560255'), + (942, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVBkpPrd', '5562906'), + (942, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVBkpPrd', '5600604'), + (942, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVBkpPrd', '5605544'), + (942, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'dVBkpPrd', '5606737'), + (942, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVBkpPrd', '5630960'), + (942, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVBkpPrd', '5630961'), + (942, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVBkpPrd', '5630962'), + (942, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVBkpPrd', '5630966'), + (942, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVBkpPrd', '5630967'), + (942, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVBkpPrd', '5630968'), + (942, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVBkpPrd', '5635406'), + (942, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVBkpPrd', '5638765'), + (942, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVBkpPrd', '5640097'), + (942, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVBkpPrd', '5640843'), + (942, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVBkpPrd', '5641521'), + (942, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVBkpPrd', '5642818'), + (942, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVBkpPrd', '5652395'), + (942, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVBkpPrd', '5670445'), + (942, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVBkpPrd', '5671637'), + (942, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVBkpPrd', '5672329'), + (942, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVBkpPrd', '5674057'), + (942, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVBkpPrd', '5674060'), + (942, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVBkpPrd', '5677461'), + (942, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVBkpPrd', '5698046'), + (942, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVBkpPrd', '5699760'), + (942, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVBkpPrd', '5741601'), + (942, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVBkpPrd', '5763458'), + (942, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVBkpPrd', '5774172'), + (942, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'dVBkpPrd', '5818247'), + (942, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVBkpPrd', '5819471'), + (942, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVBkpPrd', '5827739'), + (942, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVBkpPrd', '5844306'), + (942, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVBkpPrd', '5850159'), + (942, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVBkpPrd', '5858999'), + (942, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVBkpPrd', '5871984'), + (942, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVBkpPrd', '5876354'), + (942, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dVBkpPrd', '5880939'), + (942, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVBkpPrd', '5887890'), + (942, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVBkpPrd', '5888598'), + (942, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVBkpPrd', '5893260'), + (942, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBkpPrd', '6045684'), + (943, 853, 'attending', '2021-08-11 17:28:24', '2025-12-17 19:47:41', '4v8oWW5m', '4015725'), + (943, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', '4v8oWW5m', '4210314'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (943, 902, 'attending', '2021-08-06 12:20:16', '2025-12-17 19:47:41', '4v8oWW5m', '4240318'), + (943, 903, 'attending', '2021-08-13 21:25:56', '2025-12-17 19:47:42', '4v8oWW5m', '4240320'), + (943, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4v8oWW5m', '4304151'), + (943, 947, 'attending', '2021-08-04 23:39:16', '2025-12-17 19:47:41', '4v8oWW5m', '4315713'), + (943, 948, 'attending', '2021-08-09 10:32:29', '2025-12-17 19:47:41', '4v8oWW5m', '4315714'), + (943, 952, 'attending', '2021-08-05 19:59:41', '2025-12-17 19:47:41', '4v8oWW5m', '4318286'), + (943, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4v8oWW5m', '4356801'), + (943, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '4v8oWW5m', '4358025'), + (943, 973, 'attending', '2021-08-19 23:01:09', '2025-12-17 19:47:42', '4v8oWW5m', '4366186'), + (943, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '4v8oWW5m', '4366187'), + (943, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4v8oWW5m', '4402823'), + (943, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4v8oWW5m', '4420735'), + (943, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4v8oWW5m', '4420738'), + (943, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4v8oWW5m', '4420739'), + (943, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4v8oWW5m', '4420741'), + (943, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4v8oWW5m', '4420744'), + (943, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4v8oWW5m', '4420747'), + (943, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4v8oWW5m', '4420748'), + (943, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4v8oWW5m', '4420749'), + (943, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4v8oWW5m', '4461883'), + (943, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4v8oWW5m', '4508342'), + (943, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4v8oWW5m', '4568602'), + (943, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4v8oWW5m', '6045684'), + (944, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AeBNK1W4', '7113468'), + (944, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AeBNK1W4', '7114856'), + (944, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'AeBNK1W4', '7114951'), + (944, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'AeBNK1W4', '7114956'), + (944, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AeBNK1W4', '7114957'), + (944, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AeBNK1W4', '7153615'), + (944, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AeBNK1W4', '7159484'), + (944, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AeBNK1W4', '7178446'), + (944, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AeBNK1W4', '7220467'), + (944, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AeBNK1W4', '7240354'), + (944, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AeBNK1W4', '7251633'), + (944, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'AeBNK1W4', '7265589'), + (945, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd9LbGPg4', '5880942'), + (945, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd9LbGPg4', '5880943'), + (945, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd9LbGPg4', '5900200'), + (945, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd9LbGPg4', '5900202'), + (945, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd9LbGPg4', '5900203'), + (945, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', 'd9LbGPg4', '5910522'), + (945, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'd9LbGPg4', '5910526'), + (945, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'd9LbGPg4', '5910528'), + (945, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd9LbGPg4', '5916219'), + (945, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd9LbGPg4', '5936234'), + (945, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'd9LbGPg4', '5936691'), + (945, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd9LbGPg4', '5958351'), + (945, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd9LbGPg4', '5959751'), + (945, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd9LbGPg4', '5959755'), + (945, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd9LbGPg4', '5960055'), + (945, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd9LbGPg4', '5961684'), + (945, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd9LbGPg4', '5962132'), + (945, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd9LbGPg4', '5962133'), + (945, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd9LbGPg4', '5962134'), + (945, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd9LbGPg4', '5962317'), + (945, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd9LbGPg4', '5962318'), + (945, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd9LbGPg4', '5965933'), + (945, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd9LbGPg4', '5967014'), + (945, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd9LbGPg4', '5972815'), + (945, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd9LbGPg4', '5974016'), + (945, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd9LbGPg4', '5981515'), + (945, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd9LbGPg4', '5993516'), + (945, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd9LbGPg4', '5998939'), + (945, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd9LbGPg4', '6028191'), + (945, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd9LbGPg4', '6040066'), + (945, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd9LbGPg4', '6042717'), + (945, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9LbGPg4', '6045684'), + (946, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6obYezA', '5269930'), + (946, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6obYezA', '5271448'), + (946, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'm6obYezA', '5271449'), + (946, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'm6obYezA', '5276469'), + (946, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6obYezA', '5278159'), + (946, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'm6obYezA', '5363695'), + (946, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'm6obYezA', '5365960'), + (946, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'm6obYezA', '5368973'), + (946, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'm6obYezA', '5378247'), + (946, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'm6obYezA', '5389605'), + (946, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'm6obYezA', '5397265'), + (946, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'm6obYezA', '5403967'), + (946, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'm6obYezA', '5404786'), + (946, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'm6obYezA', '5405203'), + (946, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'm6obYezA', '5411699'), + (946, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'm6obYezA', '5412550'), + (946, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6obYezA', '5415046'), + (946, 1487, 'maybe', '2022-06-27 23:52:10', '2025-12-17 19:47:19', 'm6obYezA', '5419006'), + (946, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6obYezA', '5422086'), + (946, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6obYezA', '5422406'), + (946, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6obYezA', '5424565'), + (946, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6obYezA', '5426882'), + (946, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'm6obYezA', '5427083'), + (946, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'm6obYezA', '5441125'), + (946, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6obYezA', '5441126'), + (946, 1515, 'attending', '2022-08-03 03:57:34', '2025-12-17 19:47:21', 'm6obYezA', '5441128'), + (946, 1516, 'attending', '2022-08-18 22:44:50', '2025-12-17 19:47:23', 'm6obYezA', '5441129'), + (946, 1517, 'maybe', '2022-08-27 23:04:27', '2025-12-17 19:47:23', 'm6obYezA', '5441130'), + (946, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6obYezA', '5441131'), + (946, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6obYezA', '5441132'), + (946, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6obYezA', '5446643'), + (946, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6obYezA', '5453325'), + (946, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6obYezA', '5454516'), + (946, 1544, 'attending', '2022-09-14 05:04:22', '2025-12-17 19:47:11', 'm6obYezA', '5454517'), + (946, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6obYezA', '5454605'), + (946, 1549, 'attending', '2022-07-22 07:55:59', '2025-12-17 19:47:20', 'm6obYezA', '5454789'), + (946, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6obYezA', '5455037'), + (946, 1556, 'not_attending', '2022-07-22 07:56:45', '2025-12-17 19:47:20', 'm6obYezA', '5457734'), + (946, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6obYezA', '5461278'), + (946, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6obYezA', '5469480'), + (946, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6obYezA', '5471073'), + (946, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'm6obYezA', '5474663'), + (946, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6obYezA', '5482022'), + (946, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6obYezA', '5482793'), + (946, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6obYezA', '5488912'), + (946, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6obYezA', '5492192'), + (946, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6obYezA', '5493139'), + (946, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6obYezA', '5493200'), + (946, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6obYezA', '5502188'), + (946, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6obYezA', '5505059'), + (946, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6obYezA', '5509055'), + (946, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6obYezA', '5512862'), + (946, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6obYezA', '5513985'), + (946, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'm6obYezA', '5519981'), + (946, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6obYezA', '5522550'), + (946, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6obYezA', '5534683'), + (946, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6obYezA', '5537735'), + (946, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6obYezA', '5540859'), + (946, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6obYezA', '5546619'), + (946, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6obYezA', '5555245'), + (946, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6obYezA', '5557747'), + (946, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6obYezA', '5560255'), + (946, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6obYezA', '5562906'), + (946, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6obYezA', '5600604'), + (946, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6obYezA', '5605544'), + (946, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'm6obYezA', '5606737'), + (946, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6obYezA', '5630960'), + (946, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6obYezA', '5630961'), + (946, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6obYezA', '5630962'), + (946, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6obYezA', '5630966'), + (946, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6obYezA', '5630967'), + (946, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm6obYezA', '5630968'), + (946, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6obYezA', '5635406'), + (946, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6obYezA', '5638765'), + (946, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6obYezA', '5640097'), + (946, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6obYezA', '5640843'), + (946, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6obYezA', '5641521'), + (946, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6obYezA', '5642818'), + (946, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6obYezA', '5652395'), + (946, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6obYezA', '5670445'), + (946, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6obYezA', '5671637'), + (946, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6obYezA', '5672329'), + (946, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6obYezA', '5674057'), + (946, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6obYezA', '5674060'), + (946, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6obYezA', '5677461'), + (946, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6obYezA', '5698046'), + (946, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6obYezA', '5699760'), + (946, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6obYezA', '5741601'), + (946, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6obYezA', '5763458'), + (946, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6obYezA', '5774172'), + (946, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'm6obYezA', '5818247'), + (946, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6obYezA', '5819471'), + (946, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6obYezA', '5827739'), + (946, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6obYezA', '5844306'), + (946, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6obYezA', '5850159'), + (946, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6obYezA', '5858999'), + (946, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6obYezA', '5871984'), + (946, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6obYezA', '5876354'), + (946, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm6obYezA', '5880939'), + (946, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm6obYezA', '5880940'), + (946, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm6obYezA', '5880942'), + (946, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm6obYezA', '5880943'), + (946, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6obYezA', '5887890'), + (946, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6obYezA', '5888598'), + (946, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6obYezA', '5893260'), + (946, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm6obYezA', '5899826'), + (946, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm6obYezA', '5900199'), + (946, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm6obYezA', '5900200'), + (946, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm6obYezA', '5900202'), + (946, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm6obYezA', '5900203'), + (946, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm6obYezA', '5901108'), + (946, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm6obYezA', '5901126'), + (946, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm6obYezA', '5909655'), + (946, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm6obYezA', '5910522'), + (946, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm6obYezA', '5910526'), + (946, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm6obYezA', '5910528'), + (946, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm6obYezA', '5916219'), + (946, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm6obYezA', '5936234'), + (946, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm6obYezA', '5958351'), + (946, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm6obYezA', '5959751'), + (946, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm6obYezA', '5959755'), + (946, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm6obYezA', '5960055'), + (946, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm6obYezA', '5961684'), + (946, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm6obYezA', '5962132'), + (946, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm6obYezA', '5962133'), + (946, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm6obYezA', '5962134'), + (946, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm6obYezA', '5962317'), + (946, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm6obYezA', '5962318'), + (946, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm6obYezA', '5965933'), + (946, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm6obYezA', '5967014'), + (946, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm6obYezA', '5972815'), + (946, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm6obYezA', '5974016'), + (946, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'm6obYezA', '5975052'), + (946, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'm6obYezA', '5975054'), + (946, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm6obYezA', '5981515'), + (946, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm6obYezA', '5993516'), + (946, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm6obYezA', '5998939'), + (946, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm6obYezA', '6028191'), + (946, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm6obYezA', '6040066'), + (946, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm6obYezA', '6042717'), + (946, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm6obYezA', '6044838'), + (946, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm6obYezA', '6044839'), + (946, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6obYezA', '6045684'), + (946, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm6obYezA', '6050104'), + (946, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm6obYezA', '6053195'), + (946, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm6obYezA', '6053198'), + (946, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm6obYezA', '6056085'), + (946, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm6obYezA', '6056916'), + (946, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm6obYezA', '6059290'), + (946, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm6obYezA', '6060328'), + (946, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm6obYezA', '6061037'), + (946, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm6obYezA', '6061039'), + (946, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm6obYezA', '6067245'), + (946, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm6obYezA', '6068094'), + (946, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm6obYezA', '6068252'), + (946, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm6obYezA', '6068253'), + (946, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm6obYezA', '6068254'), + (946, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm6obYezA', '6068280'), + (946, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm6obYezA', '6069093'), + (946, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'm6obYezA', '6072528'), + (946, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'm6obYezA', '6075556'), + (946, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm6obYezA', '6079840'), + (946, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm6obYezA', '6083398'), + (946, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm6obYezA', '6093504'), + (946, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm6obYezA', '6097414'), + (946, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm6obYezA', '6097442'), + (946, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm6obYezA', '6097684'), + (946, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm6obYezA', '6098762'), + (946, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm6obYezA', '6101362'), + (946, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm6obYezA', '6107314'), + (947, 243, 'not_attending', '2020-11-03 23:16:02', '2025-12-17 19:47:53', 'xd9VKoJm', '3149474'), + (947, 245, 'not_attending', '2020-11-30 16:15:05', '2025-12-17 19:47:54', 'xd9VKoJm', '3149476'), + (947, 249, 'not_attending', '2020-11-17 03:54:21', '2025-12-17 19:47:54', 'xd9VKoJm', '3149480'), + (947, 388, 'not_attending', '2020-10-24 20:04:53', '2025-12-17 19:47:52', 'xd9VKoJm', '3228701'), + (947, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'xd9VKoJm', '3236467'), + (947, 440, 'not_attending', '2020-11-03 03:35:37', '2025-12-17 19:47:53', 'xd9VKoJm', '3256168'), + (947, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'xd9VKoJm', '3263578'), + (947, 450, 'not_attending', '2020-10-31 20:27:08', '2025-12-17 19:47:53', 'xd9VKoJm', '3272102'), + (947, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'xd9VKoJm', '3276428'), + (947, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'xd9VKoJm', '3281467'), + (947, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'xd9VKoJm', '3281470'), + (947, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'xd9VKoJm', '3281829'), + (947, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'xd9VKoJm', '3285413'), + (947, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'xd9VKoJm', '3285414'), + (947, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'xd9VKoJm', '3297764'), + (947, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'xd9VKoJm', '3313856'), + (947, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'xd9VKoJm', '3314909'), + (947, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'xd9VKoJm', '3314964'), + (947, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'xd9VKoJm', '3323365'), + (947, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'xd9VKoJm', '3324148'), + (947, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'xd9VKoJm', '3329383'), + (947, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'xd9VKoJm', '3351539'), + (947, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'xd9VKoJm', '3386848'), + (947, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'xd9VKoJm', '3389527'), + (947, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'xd9VKoJm', '3396499'), + (947, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'xd9VKoJm', '3403650'), + (947, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'xd9VKoJm', '3406988'), + (947, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'xd9VKoJm', '3416576'), + (947, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'xd9VKoJm', '3430267'), + (947, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'xd9VKoJm', '3468125'), + (947, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'xd9VKoJm', '3470303'), + (947, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'xd9VKoJm', '3470305'), + (947, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'xd9VKoJm', '3470991'), + (947, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'xd9VKoJm', '3517815'), + (947, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'xd9VKoJm', '3523941'), + (947, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'xd9VKoJm', '3533850'), + (947, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'xd9VKoJm', '3536632'), + (947, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'xd9VKoJm', '3536656'), + (947, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'xd9VKoJm', '3539916'), + (947, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'xd9VKoJm', '3539917'), + (947, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'xd9VKoJm', '3539918'), + (947, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'xd9VKoJm', '3539919'), + (947, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'xd9VKoJm', '3539920'), + (947, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'xd9VKoJm', '3539921'), + (947, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'xd9VKoJm', '3539922'), + (947, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'xd9VKoJm', '3539923'), + (947, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9VKoJm', '6045684'), + (948, 629, 'attending', '2021-03-17 01:33:54', '2025-12-17 19:47:51', 'kdKrxDe4', '3533307'), + (948, 637, 'attending', '2021-03-21 01:04:58', '2025-12-17 19:47:51', 'kdKrxDe4', '3536411'), + (948, 638, 'attending', '2021-04-04 02:17:40', '2025-12-17 19:47:44', 'kdKrxDe4', '3536632'), + (948, 639, 'attending', '2021-03-21 01:05:04', '2025-12-17 19:47:51', 'kdKrxDe4', '3536656'), + (948, 641, 'attending', '2021-03-18 00:51:18', '2025-12-17 19:47:44', 'kdKrxDe4', '3539916'), + (948, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'kdKrxDe4', '3539918'), + (948, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'kdKrxDe4', '3539919'), + (948, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdKrxDe4', '3539927'), + (948, 650, 'attending', '2021-03-25 19:50:43', '2025-12-17 19:47:44', 'kdKrxDe4', '3539928'), + (948, 656, 'attending', '2021-03-21 01:04:44', '2025-12-17 19:47:51', 'kdKrxDe4', '3547130'), + (948, 661, 'attending', '2021-03-18 00:51:16', '2025-12-17 19:47:44', 'kdKrxDe4', '3547137'), + (948, 688, 'attending', '2021-03-16 20:32:25', '2025-12-17 19:47:51', 'kdKrxDe4', '3553729'), + (948, 690, 'attending', '2021-03-21 01:07:39', '2025-12-17 19:47:43', 'kdKrxDe4', '3559954'), + (948, 697, 'attending', '2021-03-18 00:52:32', '2025-12-17 19:47:44', 'kdKrxDe4', '3567537'), + (948, 706, 'attending', '2021-03-19 21:38:06', '2025-12-17 19:47:45', 'kdKrxDe4', '3582734'), + (948, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKrxDe4', '3583262'), + (948, 708, 'attending', '2021-03-22 12:10:54', '2025-12-17 19:47:44', 'kdKrxDe4', '3587850'), + (948, 715, 'not_attending', '2021-03-31 21:47:35', '2025-12-17 19:47:44', 'kdKrxDe4', '3604146'), + (948, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKrxDe4', '3619523'), + (948, 722, 'attending', '2021-04-02 15:26:46', '2025-12-17 19:47:44', 'kdKrxDe4', '3646347'), + (948, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKrxDe4', '3661369'), + (948, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKrxDe4', '3674262'), + (948, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKrxDe4', '3677402'), + (948, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKrxDe4', '6045684'), + (949, 245, 'attending', '2020-11-30 15:45:31', '2025-12-17 19:47:54', 'pmbkZ0RA', '3149476'), + (949, 493, 'not_attending', '2020-12-04 18:37:04', '2025-12-17 19:47:54', 'pmbkZ0RA', '3313856'), + (949, 496, 'attending', '2020-12-08 00:15:15', '2025-12-17 19:47:54', 'pmbkZ0RA', '3314269'), + (949, 497, 'attending', '2020-12-17 22:32:23', '2025-12-17 19:47:55', 'pmbkZ0RA', '3314270'), + (949, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'pmbkZ0RA', '3314964'), + (949, 501, 'attending', '2020-12-08 00:15:00', '2025-12-17 19:47:54', 'pmbkZ0RA', '3317834'), + (949, 502, 'attending', '2020-12-12 22:14:50', '2025-12-17 19:47:55', 'pmbkZ0RA', '3323365'), + (949, 513, 'not_attending', '2020-12-20 00:23:50', '2025-12-17 19:47:55', 'pmbkZ0RA', '3329383'), + (949, 526, 'attending', '2021-01-01 17:04:52', '2025-12-17 19:47:48', 'pmbkZ0RA', '3351539'), + (949, 532, 'not_attending', '2021-01-08 20:12:23', '2025-12-17 19:47:48', 'pmbkZ0RA', '3381412'), + (949, 536, 'attending', '2021-01-08 20:09:08', '2025-12-17 19:47:48', 'pmbkZ0RA', '3386848'), + (949, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'pmbkZ0RA', '3389527'), + (949, 542, 'not_attending', '2021-01-11 20:16:25', '2025-12-17 19:47:48', 'pmbkZ0RA', '3395013'), + (949, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'pmbkZ0RA', '3396499'), + (949, 548, 'attending', '2021-01-15 19:21:45', '2025-12-17 19:47:48', 'pmbkZ0RA', '3403650'), + (949, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'pmbkZ0RA', '3406988'), + (949, 555, 'not_attending', '2021-01-21 20:31:12', '2025-12-17 19:47:49', 'pmbkZ0RA', '3416576'), + (949, 558, 'not_attending', '2021-01-21 20:31:10', '2025-12-17 19:47:49', 'pmbkZ0RA', '3418925'), + (949, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'pmbkZ0RA', '3426074'), + (949, 568, 'maybe', '2021-01-31 00:01:30', '2025-12-17 19:47:50', 'pmbkZ0RA', '3430267'), + (949, 569, 'not_attending', '2021-01-25 06:51:08', '2025-12-17 19:47:49', 'pmbkZ0RA', '3432673'), + (949, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'pmbkZ0RA', '3468125'), + (949, 602, 'not_attending', '2021-02-13 21:49:01', '2025-12-17 19:47:50', 'pmbkZ0RA', '3470303'), + (949, 604, 'not_attending', '2021-02-27 18:55:58', '2025-12-17 19:47:50', 'pmbkZ0RA', '3470305'), + (949, 605, 'not_attending', '2021-02-14 18:40:34', '2025-12-17 19:47:50', 'pmbkZ0RA', '3470991'), + (949, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'pmbkZ0RA', '3517815'), + (949, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'pmbkZ0RA', '3517816'), + (949, 623, 'not_attending', '2021-02-27 18:55:53', '2025-12-17 19:47:51', 'pmbkZ0RA', '3523941'), + (949, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmbkZ0RA', '3533850'), + (949, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmbkZ0RA', '3536632'), + (949, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmbkZ0RA', '3536656'), + (949, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'pmbkZ0RA', '3539916'), + (949, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'pmbkZ0RA', '3539917'), + (949, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmbkZ0RA', '3539918'), + (949, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539919'), + (949, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539920'), + (949, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539921'), + (949, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539922'), + (949, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmbkZ0RA', '3539923'), + (949, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmbkZ0RA', '3539927'), + (949, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmbkZ0RA', '3582734'), + (949, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmbkZ0RA', '3583262'), + (949, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmbkZ0RA', '3619523'), + (949, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmbkZ0RA', '3661369'), + (949, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmbkZ0RA', '3674262'), + (949, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmbkZ0RA', '3677402'), + (949, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmbkZ0RA', '3730212'), + (949, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbkZ0RA', '6045684'), + (950, 2999, 'not_attending', '2025-02-13 02:18:52', '2025-12-17 19:46:23', 'Aen0O0j4', '7844784'), + (951, 951, 'not_attending', '2021-08-29 21:00:17', '2025-12-17 19:47:43', 'dlOnPVX4', '4315731'), + (951, 971, 'maybe', '2021-09-07 15:01:38', '2025-12-17 19:47:43', 'dlOnPVX4', '4356801'), + (951, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'dlOnPVX4', '4366187'), + (951, 990, 'attending', '2021-08-31 23:35:43', '2025-12-17 19:47:43', 'dlOnPVX4', '4420735'), + (951, 991, 'attending', '2021-09-11 22:10:18', '2025-12-17 19:47:43', 'dlOnPVX4', '4420738'), + (951, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dlOnPVX4', '4420739'), + (951, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dlOnPVX4', '4420741'), + (951, 994, 'attending', '2021-10-02 21:47:23', '2025-12-17 19:47:34', 'dlOnPVX4', '4420742'), + (951, 995, 'attending', '2021-10-09 16:58:46', '2025-12-17 19:47:34', 'dlOnPVX4', '4420744'), + (951, 996, 'attending', '2021-10-16 20:15:45', '2025-12-17 19:47:35', 'dlOnPVX4', '4420747'), + (951, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dlOnPVX4', '4420748'), + (951, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dlOnPVX4', '4420749'), + (951, 1002, 'attending', '2021-08-30 14:46:59', '2025-12-17 19:47:43', 'dlOnPVX4', '4424932'), + (951, 1016, 'attending', '2021-09-07 15:02:52', '2025-12-17 19:47:43', 'dlOnPVX4', '4441271'), + (951, 1017, 'maybe', '2021-09-05 19:43:19', '2025-12-17 19:47:43', 'dlOnPVX4', '4441822'), + (951, 1019, 'attending', '2021-09-07 15:03:10', '2025-12-17 19:47:43', 'dlOnPVX4', '4450515'), + (951, 1020, 'not_attending', '2021-09-13 20:34:58', '2025-12-17 19:47:43', 'dlOnPVX4', '4451787'), + (951, 1021, 'attending', '2021-09-07 15:03:06', '2025-12-17 19:47:34', 'dlOnPVX4', '4451803'), + (951, 1022, 'attending', '2021-09-15 21:54:02', '2025-12-17 19:47:43', 'dlOnPVX4', '4458628'), + (951, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dlOnPVX4', '4461883'), + (951, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlOnPVX4', '4508342'), + (951, 1072, 'attending', '2021-10-05 01:37:15', '2025-12-17 19:47:34', 'dlOnPVX4', '4516287'), + (951, 1078, 'not_attending', '2021-10-07 20:33:10', '2025-12-17 19:47:34', 'dlOnPVX4', '4541281'), + (951, 1079, 'attending', '2021-10-20 15:42:21', '2025-12-17 19:47:35', 'dlOnPVX4', '4563823'), + (951, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dlOnPVX4', '4568602'), + (951, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dlOnPVX4', '4572153'), + (951, 1092, 'attending', '2021-10-21 03:31:13', '2025-12-17 19:47:35', 'dlOnPVX4', '4582837'), + (951, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dlOnPVX4', '4585962'), + (951, 1094, 'attending', '2021-10-27 15:43:41', '2025-12-17 19:47:36', 'dlOnPVX4', '4587337'), + (951, 1095, 'attending', '2021-10-27 13:43:32', '2025-12-17 19:47:35', 'dlOnPVX4', '4596356'), + (951, 1096, 'not_attending', '2021-10-27 13:43:20', '2025-12-17 19:47:36', 'dlOnPVX4', '4596453'), + (951, 1097, 'attending', '2021-11-01 02:10:41', '2025-12-17 19:47:36', 'dlOnPVX4', '4598860'), + (951, 1098, 'attending', '2021-11-10 18:33:15', '2025-12-17 19:47:36', 'dlOnPVX4', '4598861'), + (951, 1099, 'attending', '2021-11-06 14:01:17', '2025-12-17 19:47:36', 'dlOnPVX4', '4602797'), + (951, 1103, 'attending', '2021-11-13 21:16:06', '2025-12-17 19:47:36', 'dlOnPVX4', '4616350'), + (951, 1108, 'attending', '2021-11-13 21:15:40', '2025-12-17 19:47:37', 'dlOnPVX4', '4632276'), + (951, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dlOnPVX4', '4637896'), + (951, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dlOnPVX4', '4642994'), + (951, 1117, 'attending', '2021-12-06 01:31:40', '2025-12-17 19:47:37', 'dlOnPVX4', '4642995'), + (951, 1118, 'attending', '2021-12-14 20:16:29', '2025-12-17 19:47:38', 'dlOnPVX4', '4642996'), + (951, 1119, 'not_attending', '2021-12-23 00:28:36', '2025-12-17 19:47:31', 'dlOnPVX4', '4642997'), + (951, 1126, 'attending', '2021-12-06 01:31:59', '2025-12-17 19:47:38', 'dlOnPVX4', '4645687'), + (951, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dlOnPVX4', '4645698'), + (951, 1128, 'attending', '2021-11-20 18:01:15', '2025-12-17 19:47:37', 'dlOnPVX4', '4645704'), + (951, 1129, 'attending', '2021-11-21 04:00:16', '2025-12-17 19:47:37', 'dlOnPVX4', '4645705'), + (951, 1130, 'attending', '2021-12-04 23:15:21', '2025-12-17 19:47:37', 'dlOnPVX4', '4658824'), + (951, 1131, 'attending', '2021-12-13 01:05:26', '2025-12-17 19:47:31', 'dlOnPVX4', '4658825'), + (951, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dlOnPVX4', '4668385'), + (951, 1143, 'attending', '2021-12-02 00:00:09', '2025-12-17 19:47:37', 'dlOnPVX4', '4683667'), + (951, 1147, 'attending', '2021-12-14 20:16:26', '2025-12-17 19:47:38', 'dlOnPVX4', '4692842'), + (951, 1148, 'attending', '2021-12-14 20:16:37', '2025-12-17 19:47:31', 'dlOnPVX4', '4692843'), + (951, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dlOnPVX4', '4694407'), + (951, 1151, 'attending', '2021-12-19 17:28:58', '2025-12-17 19:47:31', 'dlOnPVX4', '4708704'), + (951, 1152, 'attending', '2022-01-10 21:24:47', '2025-12-17 19:47:31', 'dlOnPVX4', '4708705'), + (951, 1153, 'attending', '2022-01-26 18:08:33', '2025-12-17 19:47:32', 'dlOnPVX4', '4708707'), + (951, 1155, 'attending', '2021-12-19 17:28:34', '2025-12-17 19:47:31', 'dlOnPVX4', '4715119'), + (951, 1156, 'not_attending', '2021-12-21 23:55:51', '2025-12-17 19:47:31', 'dlOnPVX4', '4715207'), + (951, 1164, 'attending', '2021-12-28 22:28:52', '2025-12-17 19:47:31', 'dlOnPVX4', '4724208'), + (951, 1165, 'attending', '2021-12-28 22:28:54', '2025-12-17 19:47:31', 'dlOnPVX4', '4724210'), + (951, 1170, 'attending', '2022-01-08 19:19:49', '2025-12-17 19:47:31', 'dlOnPVX4', '4731045'), + (951, 1175, 'attending', '2022-01-22 21:52:25', '2025-12-17 19:47:32', 'dlOnPVX4', '4736497'), + (951, 1176, 'maybe', '2022-02-02 19:53:39', '2025-12-17 19:47:32', 'dlOnPVX4', '4736498'), + (951, 1177, 'attending', '2022-02-12 23:47:47', '2025-12-17 19:47:32', 'dlOnPVX4', '4736499'), + (951, 1178, 'attending', '2022-01-22 23:13:25', '2025-12-17 19:47:32', 'dlOnPVX4', '4736500'), + (951, 1179, 'attending', '2022-02-13 17:25:45', '2025-12-17 19:47:32', 'dlOnPVX4', '4736501'), + (951, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dlOnPVX4', '4736503'), + (951, 1182, 'attending', '2022-03-09 18:27:51', '2025-12-17 19:47:33', 'dlOnPVX4', '4736504'), + (951, 1184, 'attending', '2022-01-08 19:19:46', '2025-12-17 19:47:31', 'dlOnPVX4', '4742350'), + (951, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dlOnPVX4', '4746789'), + (951, 1188, 'attending', '2022-01-11 16:10:53', '2025-12-17 19:47:31', 'dlOnPVX4', '4753929'), + (951, 1190, 'maybe', '2022-01-12 20:24:21', '2025-12-17 19:47:31', 'dlOnPVX4', '4757377'), + (951, 1192, 'attending', '2022-01-16 22:01:19', '2025-12-17 19:47:32', 'dlOnPVX4', '4758745'), + (951, 1200, 'attending', '2022-01-17 23:05:15', '2025-12-17 19:47:32', 'dlOnPVX4', '4766830'), + (951, 1202, 'maybe', '2022-01-22 23:14:49', '2025-12-17 19:47:32', 'dlOnPVX4', '4769423'), + (951, 1206, 'not_attending', '2022-04-07 20:35:36', '2025-12-17 19:47:27', 'dlOnPVX4', '4773578'), + (951, 1219, 'attending', '2022-01-31 19:37:31', '2025-12-17 19:47:32', 'dlOnPVX4', '4788466'), + (951, 1222, 'attending', '2022-02-13 17:25:57', '2025-12-17 19:47:32', 'dlOnPVX4', '5015628'), + (951, 1224, 'attending', '2022-01-31 19:37:29', '2025-12-17 19:47:32', 'dlOnPVX4', '5016682'), + (951, 1228, 'attending', '2022-02-06 20:45:53', '2025-12-17 19:47:32', 'dlOnPVX4', '5028238'), + (951, 1229, 'not_attending', '2022-02-19 00:54:27', '2025-12-17 19:47:32', 'dlOnPVX4', '5034963'), + (951, 1232, 'attending', '2022-02-08 23:36:56', '2025-12-17 19:47:32', 'dlOnPVX4', '5038850'), + (951, 1236, 'maybe', '2022-02-14 14:44:10', '2025-12-17 19:47:32', 'dlOnPVX4', '5045826'), + (951, 1239, 'attending', '2022-03-02 23:45:17', '2025-12-17 19:47:33', 'dlOnPVX4', '5052238'), + (951, 1240, 'attending', '2022-03-12 23:31:49', '2025-12-17 19:47:33', 'dlOnPVX4', '5052239'), + (951, 1241, 'attending', '2022-03-17 23:06:55', '2025-12-17 19:47:25', 'dlOnPVX4', '5052240'), + (951, 1249, 'attending', '2022-03-09 18:27:58', '2025-12-17 19:47:33', 'dlOnPVX4', '5068530'), + (951, 1252, 'maybe', '2022-03-04 23:22:03', '2025-12-17 19:47:33', 'dlOnPVX4', '5129121'), + (951, 1259, 'attending', '2022-03-02 23:45:01', '2025-12-17 19:47:33', 'dlOnPVX4', '5132533'), + (951, 1264, 'attending', '2022-03-12 23:31:53', '2025-12-17 19:47:25', 'dlOnPVX4', '5160281'), + (951, 1266, 'not_attending', '2022-03-14 21:48:59', '2025-12-17 19:47:33', 'dlOnPVX4', '5166407'), + (951, 1269, 'attending', '2022-03-14 20:00:27', '2025-12-17 19:47:25', 'dlOnPVX4', '5179439'), + (951, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dlOnPVX4', '5186582'), + (951, 1273, 'attending', '2022-03-17 23:06:58', '2025-12-17 19:47:25', 'dlOnPVX4', '5186583'), + (951, 1274, 'not_attending', '2022-04-02 19:53:27', '2025-12-17 19:47:26', 'dlOnPVX4', '5186585'), + (951, 1276, 'attending', '2022-03-25 21:59:58', '2025-12-17 19:47:25', 'dlOnPVX4', '5186820'), + (951, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dlOnPVX4', '5190437'), + (951, 1284, 'attending', '2022-04-10 15:17:07', '2025-12-17 19:47:27', 'dlOnPVX4', '5195095'), + (951, 1289, 'attending', '2022-03-28 18:12:52', '2025-12-17 19:47:25', 'dlOnPVX4', '5200190'), + (951, 1290, 'attending', '2022-03-28 18:12:50', '2025-12-17 19:47:25', 'dlOnPVX4', '5200196'), + (951, 1293, 'attending', '2022-04-03 14:11:52', '2025-12-17 19:47:27', 'dlOnPVX4', '5214641'), + (951, 1297, 'attending', '2022-03-28 18:12:59', '2025-12-17 19:47:25', 'dlOnPVX4', '5215989'), + (951, 1298, 'attending', '2022-03-31 16:32:38', '2025-12-17 19:47:25', 'dlOnPVX4', '5216645'), + (951, 1300, 'attending', '2022-03-31 12:05:21', '2025-12-17 19:47:25', 'dlOnPVX4', '5217936'), + (951, 1302, 'not_attending', '2022-04-08 23:14:25', '2025-12-17 19:47:27', 'dlOnPVX4', '5220867'), + (951, 1304, 'maybe', '2022-04-06 13:08:17', '2025-12-17 19:47:26', 'dlOnPVX4', '5223468'), + (951, 1306, 'attending', '2022-04-05 21:32:57', '2025-12-17 19:47:26', 'dlOnPVX4', '5223682'), + (951, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dlOnPVX4', '5223686'), + (951, 1308, 'attending', '2022-04-10 15:17:05', '2025-12-17 19:47:27', 'dlOnPVX4', '5226703'), + (951, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dlOnPVX4', '5227432'), + (951, 1312, 'not_attending', '2022-04-15 00:27:49', '2025-12-17 19:47:27', 'dlOnPVX4', '5231459'), + (951, 1313, 'attending', '2022-04-08 23:14:02', '2025-12-17 19:47:27', 'dlOnPVX4', '5231461'), + (951, 1314, 'not_attending', '2022-04-11 18:37:18', '2025-12-17 19:47:27', 'dlOnPVX4', '5233137'), + (951, 1319, 'attending', '2022-04-13 19:46:06', '2025-12-17 19:47:27', 'dlOnPVX4', '5238353'), + (951, 1320, 'not_attending', '2022-04-11 18:33:43', '2025-12-17 19:47:27', 'dlOnPVX4', '5238354'), + (951, 1325, 'attending', '2022-04-21 14:30:24', '2025-12-17 19:47:28', 'dlOnPVX4', '5238361'), + (951, 1326, 'attending', '2022-04-21 14:30:27', '2025-12-17 19:47:28', 'dlOnPVX4', '5238362'), + (951, 1328, 'attending', '2022-04-12 22:46:31', '2025-12-17 19:47:27', 'dlOnPVX4', '5238759'), + (951, 1330, 'attending', '2022-04-13 00:12:36', '2025-12-17 19:47:27', 'dlOnPVX4', '5242155'), + (951, 1334, 'not_attending', '2022-04-14 19:25:43', '2025-12-17 19:47:27', 'dlOnPVX4', '5244797'), + (951, 1336, 'attending', '2022-04-15 00:27:41', '2025-12-17 19:47:27', 'dlOnPVX4', '5244915'), + (951, 1337, 'attending', '2022-04-19 17:45:43', '2025-12-17 19:47:27', 'dlOnPVX4', '5245036'), + (951, 1345, 'not_attending', '2022-04-23 20:32:58', '2025-12-17 19:47:27', 'dlOnPVX4', '5247466'), + (951, 1346, 'attending', '2022-04-19 21:41:59', '2025-12-17 19:47:27', 'dlOnPVX4', '5247467'), + (951, 1362, 'attending', '2022-04-25 17:45:35', '2025-12-17 19:47:28', 'dlOnPVX4', '5260800'), + (951, 1364, 'attending', '2022-04-30 18:41:44', '2025-12-17 19:47:28', 'dlOnPVX4', '5261598'), + (951, 1365, 'attending', '2022-04-29 19:40:38', '2025-12-17 19:47:28', 'dlOnPVX4', '5261600'), + (951, 1371, 'attending', '2022-04-27 21:16:59', '2025-12-17 19:47:27', 'dlOnPVX4', '5263784'), + (951, 1374, 'attending', '2022-05-05 17:52:20', '2025-12-17 19:47:28', 'dlOnPVX4', '5269930'), + (951, 1378, 'maybe', '2022-05-11 21:20:21', '2025-12-17 19:47:29', 'dlOnPVX4', '5271448'), + (951, 1379, 'attending', '2022-05-15 23:18:18', '2025-12-17 19:47:29', 'dlOnPVX4', '5271449'), + (951, 1381, 'attending', '2022-05-03 15:41:58', '2025-12-17 19:47:28', 'dlOnPVX4', '5271453'), + (951, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dlOnPVX4', '5276469'), + (951, 1385, 'attending', '2022-05-11 19:56:20', '2025-12-17 19:47:28', 'dlOnPVX4', '5277822'), + (951, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dlOnPVX4', '5278159'), + (951, 1390, 'not_attending', '2022-05-14 15:53:44', '2025-12-17 19:47:28', 'dlOnPVX4', '5279509'), + (951, 1395, 'attending', '2022-05-07 16:30:45', '2025-12-17 19:47:28', 'dlOnPVX4', '5281102'), + (951, 1401, 'attending', '2022-05-16 17:43:22', '2025-12-17 19:47:29', 'dlOnPVX4', '5286295'), + (951, 1407, 'attending', '2022-05-15 23:18:04', '2025-12-17 19:47:30', 'dlOnPVX4', '5363695'), + (951, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dlOnPVX4', '5365960'), + (951, 1409, 'attending', '2022-05-16 21:53:32', '2025-12-17 19:47:30', 'dlOnPVX4', '5367032'), + (951, 1412, 'not_attending', '2022-05-19 23:14:36', '2025-12-17 19:47:29', 'dlOnPVX4', '5367532'), + (951, 1414, 'attending', '2022-05-20 01:22:15', '2025-12-17 19:47:29', 'dlOnPVX4', '5368445'), + (951, 1415, 'attending', '2022-06-03 17:30:57', '2025-12-17 19:47:30', 'dlOnPVX4', '5368973'), + (951, 1416, 'attending', '2022-05-28 16:21:13', '2025-12-17 19:47:30', 'dlOnPVX4', '5369628'), + (951, 1419, 'attending', '2022-06-03 17:31:14', '2025-12-17 19:47:30', 'dlOnPVX4', '5373081'), + (951, 1423, 'attending', '2022-06-09 21:54:48', '2025-12-17 19:47:17', 'dlOnPVX4', '5375727'), + (951, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dlOnPVX4', '5378247'), + (951, 1431, 'attending', '2022-06-07 13:24:29', '2025-12-17 19:47:30', 'dlOnPVX4', '5389605'), + (951, 1436, 'not_attending', '2022-06-02 21:19:01', '2025-12-17 19:47:30', 'dlOnPVX4', '5394292'), + (951, 1438, 'attending', '2022-06-01 17:54:43', '2025-12-17 19:47:30', 'dlOnPVX4', '5395032'), + (951, 1442, 'attending', '2022-06-18 18:26:46', '2025-12-17 19:47:17', 'dlOnPVX4', '5397265'), + (951, 1443, 'attending', '2022-06-03 17:30:48', '2025-12-17 19:47:30', 'dlOnPVX4', '5397613'), + (951, 1451, 'attending', '2022-06-09 21:54:50', '2025-12-17 19:47:17', 'dlOnPVX4', '5403967'), + (951, 1454, 'not_attending', '2022-06-13 00:57:53', '2025-12-17 19:47:31', 'dlOnPVX4', '5404771'), + (951, 1455, 'maybe', '2022-06-10 16:36:54', '2025-12-17 19:47:31', 'dlOnPVX4', '5404772'), + (951, 1458, 'not_attending', '2022-06-19 19:18:38', '2025-12-17 19:47:17', 'dlOnPVX4', '5404786'), + (951, 1460, 'attending', '2022-06-13 16:35:24', '2025-12-17 19:47:31', 'dlOnPVX4', '5404817'), + (951, 1462, 'maybe', '2022-06-10 19:00:22', '2025-12-17 19:47:17', 'dlOnPVX4', '5405203'), + (951, 1475, 'attending', '2022-06-16 22:43:11', '2025-12-17 19:47:17', 'dlOnPVX4', '5408108'), + (951, 1477, 'maybe', '2022-06-21 23:25:06', '2025-12-17 19:47:17', 'dlOnPVX4', '5408766'), + (951, 1479, 'not_attending', '2022-06-17 14:27:53', '2025-12-17 19:47:17', 'dlOnPVX4', '5410322'), + (951, 1480, 'attending', '2022-06-18 18:26:37', '2025-12-17 19:47:19', 'dlOnPVX4', '5411699'), + (951, 1481, 'not_attending', '2022-06-20 21:22:40', '2025-12-17 19:47:17', 'dlOnPVX4', '5412237'), + (951, 1482, 'attending', '2022-06-20 13:31:54', '2025-12-17 19:47:19', 'dlOnPVX4', '5412550'), + (951, 1483, 'attending', '2022-06-20 22:19:56', '2025-12-17 19:47:17', 'dlOnPVX4', '5414556'), + (951, 1484, 'attending', '2022-06-20 21:22:02', '2025-12-17 19:47:17', 'dlOnPVX4', '5415046'), + (951, 1490, 'not_attending', '2022-07-05 23:02:40', '2025-12-17 19:47:19', 'dlOnPVX4', '5420156'), + (951, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dlOnPVX4', '5422086'), + (951, 1496, 'attending', '2022-06-28 13:52:49', '2025-12-17 19:47:19', 'dlOnPVX4', '5422404'), + (951, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dlOnPVX4', '5422406'), + (951, 1501, 'attending', '2022-06-28 15:35:25', '2025-12-17 19:47:19', 'dlOnPVX4', '5424546'), + (951, 1502, 'attending', '2022-06-28 17:22:04', '2025-12-17 19:47:19', 'dlOnPVX4', '5424565'), + (951, 1504, 'attending', '2022-07-05 23:03:18', '2025-12-17 19:47:19', 'dlOnPVX4', '5426882'), + (951, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dlOnPVX4', '5427083'), + (951, 1508, 'attending', '2022-07-02 20:51:53', '2025-12-17 19:47:19', 'dlOnPVX4', '5433453'), + (951, 1511, 'attending', '2022-07-09 20:14:21', '2025-12-17 19:47:19', 'dlOnPVX4', '5437733'), + (951, 1513, 'attending', '2022-07-09 13:36:22', '2025-12-17 19:47:19', 'dlOnPVX4', '5441125'), + (951, 1514, 'attending', '2022-07-09 20:14:27', '2025-12-17 19:47:20', 'dlOnPVX4', '5441126'), + (951, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dlOnPVX4', '5441128'), + (951, 1516, 'attending', '2022-08-19 23:07:06', '2025-12-17 19:47:23', 'dlOnPVX4', '5441129'), + (951, 1517, 'attending', '2022-08-27 16:03:26', '2025-12-17 19:47:23', 'dlOnPVX4', '5441130'), + (951, 1518, 'attending', '2022-08-25 15:08:54', '2025-12-17 19:47:24', 'dlOnPVX4', '5441131'), + (951, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dlOnPVX4', '5441132'), + (951, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dlOnPVX4', '5446643'), + (951, 1540, 'not_attending', '2022-07-18 13:12:46', '2025-12-17 19:47:20', 'dlOnPVX4', '5453325'), + (951, 1541, 'attending', '2022-07-18 19:51:25', '2025-12-17 19:47:20', 'dlOnPVX4', '5453542'), + (951, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dlOnPVX4', '5454516'), + (951, 1544, 'attending', '2022-09-17 03:51:09', '2025-12-17 19:47:11', 'dlOnPVX4', '5454517'), + (951, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dlOnPVX4', '5454605'), + (951, 1551, 'attending', '2022-07-19 21:32:07', '2025-12-17 19:47:20', 'dlOnPVX4', '5455037'), + (951, 1558, 'attending', '2022-09-11 22:55:32', '2025-12-17 19:47:10', 'dlOnPVX4', '5458730'), + (951, 1559, 'attending', '2022-09-28 18:54:59', '2025-12-17 19:47:11', 'dlOnPVX4', '5458731'), + (951, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dlOnPVX4', '5461278'), + (951, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dlOnPVX4', '5469480'), + (951, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dlOnPVX4', '5471073'), + (951, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dlOnPVX4', '5474663'), + (951, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dlOnPVX4', '5482022'), + (951, 1572, 'attending', '2022-08-02 14:40:13', '2025-12-17 19:47:22', 'dlOnPVX4', '5482078'), + (951, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dlOnPVX4', '5482793'), + (951, 1578, 'attending', '2022-08-02 14:32:55', '2025-12-17 19:47:21', 'dlOnPVX4', '5483073'), + (951, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dlOnPVX4', '5488912'), + (951, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dlOnPVX4', '5492192'), + (951, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dlOnPVX4', '5493139'), + (951, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dlOnPVX4', '5493200'), + (951, 1592, 'attending', '2022-08-09 17:54:36', '2025-12-17 19:47:22', 'dlOnPVX4', '5494031'), + (951, 1593, 'attending', '2022-08-09 17:54:54', '2025-12-17 19:47:22', 'dlOnPVX4', '5494043'), + (951, 1602, 'attending', '2022-08-13 16:46:37', '2025-12-17 19:47:22', 'dlOnPVX4', '5497383'), + (951, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dlOnPVX4', '5502188'), + (951, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dlOnPVX4', '5505059'), + (951, 1615, 'attending', '2022-08-27 16:03:33', '2025-12-17 19:47:23', 'dlOnPVX4', '5509055'), + (951, 1619, 'attending', '2022-08-23 17:40:34', '2025-12-17 19:47:23', 'dlOnPVX4', '5512862'), + (951, 1621, 'not_attending', '2022-08-23 17:40:19', '2025-12-17 19:47:23', 'dlOnPVX4', '5513531'), + (951, 1623, 'not_attending', '2022-08-23 17:40:22', '2025-12-17 19:47:23', 'dlOnPVX4', '5513678'), + (951, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dlOnPVX4', '5513985'), + (951, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'dlOnPVX4', '5519981'), + (951, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dlOnPVX4', '5522550'), + (951, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dlOnPVX4', '5534683'), + (951, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dlOnPVX4', '5537735'), + (951, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dlOnPVX4', '5540859'), + (951, 1642, 'not_attending', '2022-09-07 16:36:00', '2025-12-17 19:47:24', 'dlOnPVX4', '5544227'), + (951, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dlOnPVX4', '5546619'), + (951, 1648, 'not_attending', '2022-09-07 16:35:53', '2025-12-17 19:47:24', 'dlOnPVX4', '5548974'), + (951, 1652, 'not_attending', '2022-09-07 16:36:03', '2025-12-17 19:47:24', 'dlOnPVX4', '5552671'), + (951, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dlOnPVX4', '5555245'), + (951, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dlOnPVX4', '5557747'), + (951, 1661, 'maybe', '2022-09-09 16:00:05', '2025-12-17 19:47:24', 'dlOnPVX4', '5560254'), + (951, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dlOnPVX4', '5560255'), + (951, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dlOnPVX4', '5562906'), + (951, 1674, 'attending', '2022-09-18 17:35:01', '2025-12-17 19:47:12', 'dlOnPVX4', '5593112'), + (951, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dlOnPVX4', '5600604'), + (951, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dlOnPVX4', '5605544'), + (951, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'dlOnPVX4', '5606737'), + (951, 1705, 'attending', '2022-10-02 19:07:39', '2025-12-17 19:47:12', 'dlOnPVX4', '5612209'), + (951, 1708, 'attending', '2022-10-05 20:28:54', '2025-12-17 19:47:12', 'dlOnPVX4', '5617648'), + (951, 1713, 'maybe', '2022-10-15 19:51:55', '2025-12-17 19:47:13', 'dlOnPVX4', '5622108'), + (951, 1714, 'attending', '2022-10-23 19:53:19', '2025-12-17 19:47:14', 'dlOnPVX4', '5622347'), + (951, 1719, 'attending', '2022-10-05 20:28:46', '2025-12-17 19:47:12', 'dlOnPVX4', '5630958'), + (951, 1720, 'maybe', '2022-10-15 19:48:05', '2025-12-17 19:47:12', 'dlOnPVX4', '5630959'), + (951, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dlOnPVX4', '5630960'), + (951, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dlOnPVX4', '5630961'), + (951, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dlOnPVX4', '5630962'), + (951, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dlOnPVX4', '5630966'), + (951, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dlOnPVX4', '5630967'), + (951, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dlOnPVX4', '5630968'), + (951, 1727, 'attending', '2022-12-03 23:50:46', '2025-12-17 19:47:16', 'dlOnPVX4', '5630969'), + (951, 1728, 'attending', '2022-11-30 17:27:43', '2025-12-17 19:47:17', 'dlOnPVX4', '5630970'), + (951, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dlOnPVX4', '5635406'), + (951, 1736, 'attending', '2022-11-01 20:15:14', '2025-12-17 19:47:15', 'dlOnPVX4', '5638456'), + (951, 1737, 'attending', '2022-11-29 17:42:05', '2025-12-17 19:47:16', 'dlOnPVX4', '5638457'), + (951, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dlOnPVX4', '5638765'), + (951, 1739, 'attending', '2022-10-12 22:21:15', '2025-12-17 19:47:14', 'dlOnPVX4', '5640097'), + (951, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dlOnPVX4', '5640843'), + (951, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dlOnPVX4', '5641521'), + (951, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dlOnPVX4', '5642818'), + (951, 1750, 'attending', '2022-11-01 17:40:59', '2025-12-17 19:47:15', 'dlOnPVX4', '5652365'), + (951, 1751, 'attending', '2022-10-15 19:51:35', '2025-12-17 19:47:13', 'dlOnPVX4', '5652395'), + (951, 1758, 'attending', '2022-10-21 13:36:52', '2025-12-17 19:47:13', 'dlOnPVX4', '5668976'), + (951, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dlOnPVX4', '5670445'), + (951, 1763, 'attending', '2022-11-11 15:01:58', '2025-12-17 19:47:15', 'dlOnPVX4', '5670803'), + (951, 1764, 'attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dlOnPVX4', '5671637'), + (951, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dlOnPVX4', '5672329'), + (951, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dlOnPVX4', '5674057'), + (951, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dlOnPVX4', '5674060'), + (951, 1768, 'attending', '2022-11-19 16:41:35', '2025-12-17 19:47:16', 'dlOnPVX4', '5674062'), + (951, 1770, 'attending', '2022-10-28 16:44:38', '2025-12-17 19:47:14', 'dlOnPVX4', '5676936'), + (951, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dlOnPVX4', '5677461'), + (951, 1781, 'attending', '2022-11-02 15:38:43', '2025-12-17 19:47:15', 'dlOnPVX4', '5696178'), + (951, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dlOnPVX4', '5698046'), + (951, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dlOnPVX4', '5699760'), + (951, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dlOnPVX4', '5741601'), + (951, 1796, 'attending', '2022-11-18 17:10:05', '2025-12-17 19:47:16', 'dlOnPVX4', '5756755'), + (951, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dlOnPVX4', '5763458'), + (951, 1804, 'attending', '2023-01-24 23:04:25', '2025-12-17 19:47:06', 'dlOnPVX4', '5764674'), + (951, 1805, 'attending', '2023-01-31 00:38:06', '2025-12-17 19:47:06', 'dlOnPVX4', '5764675'), + (951, 1812, 'attending', '2023-03-11 21:36:49', '2025-12-17 19:47:09', 'dlOnPVX4', '5764682'), + (951, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dlOnPVX4', '5774172'), + (951, 1828, 'attending', '2022-11-29 17:42:14', '2025-12-17 19:47:16', 'dlOnPVX4', '5778865'), + (951, 1829, 'attending', '2022-12-01 13:44:40', '2025-12-17 19:47:16', 'dlOnPVX4', '5778867'), + (951, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'dlOnPVX4', '5818247'), + (951, 1834, 'attending', '2022-12-08 16:06:39', '2025-12-17 19:47:17', 'dlOnPVX4', '5819470'), + (951, 1835, 'maybe', '2022-12-08 16:06:44', '2025-12-17 19:47:05', 'dlOnPVX4', '5819471'), + (951, 1841, 'attending', '2023-01-02 18:54:43', '2025-12-17 19:47:05', 'dlOnPVX4', '5827665'), + (951, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dlOnPVX4', '5827739'), + (951, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dlOnPVX4', '5844306'), + (951, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dlOnPVX4', '5850159'), + (951, 1848, 'attending', '2022-12-27 23:57:38', '2025-12-17 19:47:05', 'dlOnPVX4', '5852466'), + (951, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dlOnPVX4', '5858999'), + (951, 1852, 'attending', '2023-01-11 00:52:09', '2025-12-17 19:47:05', 'dlOnPVX4', '5869898'), + (951, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dlOnPVX4', '5871984'), + (951, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dlOnPVX4', '5876354'), + (951, 1865, 'attending', '2023-01-24 23:04:23', '2025-12-17 19:47:06', 'dlOnPVX4', '5879676'), + (951, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dlOnPVX4', '5880939'), + (951, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dlOnPVX4', '5880940'), + (951, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dlOnPVX4', '5880942'), + (951, 1869, 'attending', '2023-02-26 21:45:47', '2025-12-17 19:47:09', 'dlOnPVX4', '5880943'), + (951, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dlOnPVX4', '5887890'), + (951, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dlOnPVX4', '5888598'), + (951, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dlOnPVX4', '5893260'), + (951, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dlOnPVX4', '5899826'), + (951, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dlOnPVX4', '5900199'), + (951, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dlOnPVX4', '5900200'), + (951, 1891, 'attending', '2023-03-22 17:10:09', '2025-12-17 19:46:56', 'dlOnPVX4', '5900202'), + (951, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dlOnPVX4', '5900203'), + (951, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dlOnPVX4', '5901108'), + (951, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dlOnPVX4', '5901126'), + (951, 1897, 'attending', '2023-02-10 18:30:33', '2025-12-17 19:47:07', 'dlOnPVX4', '5901128'), + (951, 1898, 'attending', '2023-02-01 19:56:48', '2025-12-17 19:47:06', 'dlOnPVX4', '5901263'), + (951, 1900, 'attending', '2023-02-01 19:57:06', '2025-12-17 19:47:06', 'dlOnPVX4', '5901331'), + (951, 1902, 'attending', '2023-02-01 19:56:50', '2025-12-17 19:47:06', 'dlOnPVX4', '5902254'), + (951, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dlOnPVX4', '5909655'), + (951, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dlOnPVX4', '5910522'), + (951, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dlOnPVX4', '5910526'), + (951, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dlOnPVX4', '5910528'), + (951, 1922, 'not_attending', '2023-02-12 23:05:39', '2025-12-17 19:47:07', 'dlOnPVX4', '5916219'), + (951, 1924, 'not_attending', '2023-02-16 23:48:00', '2025-12-17 19:47:07', 'dlOnPVX4', '5931095'), + (951, 1927, 'attending', '2023-02-26 21:46:06', '2025-12-17 19:47:10', 'dlOnPVX4', '5932621'), + (951, 1930, 'attending', '2023-02-20 20:55:00', '2025-12-17 19:47:08', 'dlOnPVX4', '5933462'), + (951, 1931, 'attending', '2023-02-20 20:54:49', '2025-12-17 19:47:08', 'dlOnPVX4', '5933464'), + (951, 1933, 'attending', '2023-02-20 20:55:22', '2025-12-17 19:47:08', 'dlOnPVX4', '5936234'), + (951, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dlOnPVX4', '5958351'), + (951, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dlOnPVX4', '5959751'), + (951, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dlOnPVX4', '5959755'), + (951, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dlOnPVX4', '5960055'), + (951, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dlOnPVX4', '5961684'), + (951, 1943, 'attending', '2023-03-10 15:31:17', '2025-12-17 19:47:10', 'dlOnPVX4', '5962091'), + (951, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dlOnPVX4', '5962132'), + (951, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dlOnPVX4', '5962133'), + (951, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dlOnPVX4', '5962134'), + (951, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dlOnPVX4', '5962317'), + (951, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dlOnPVX4', '5962318'), + (951, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dlOnPVX4', '5965933'), + (951, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dlOnPVX4', '5967014'), + (951, 1956, 'attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dlOnPVX4', '5972763'), + (951, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dlOnPVX4', '5972815'), + (951, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dlOnPVX4', '5974016'), + (951, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dlOnPVX4', '5981515'), + (951, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dlOnPVX4', '5993516'), + (951, 1977, 'attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dlOnPVX4', '5998939'), + (951, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dlOnPVX4', '6028191'), + (951, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dlOnPVX4', '6040066'), + (951, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dlOnPVX4', '6042717'), + (951, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dlOnPVX4', '6044838'), + (951, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dlOnPVX4', '6044839'), + (951, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dlOnPVX4', '6045684'), + (951, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dlOnPVX4', '6050104'), + (951, 2001, 'attending', '2023-04-05 16:55:17', '2025-12-17 19:46:58', 'dlOnPVX4', '6052569'), + (951, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dlOnPVX4', '6053195'), + (951, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dlOnPVX4', '6053198'), + (951, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dlOnPVX4', '6056085'), + (951, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dlOnPVX4', '6056916'), + (951, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dlOnPVX4', '6059290'), + (951, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dlOnPVX4', '6060328'), + (951, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dlOnPVX4', '6061037'), + (951, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dlOnPVX4', '6061039'), + (951, 2017, 'attending', '2023-04-12 22:47:58', '2025-12-17 19:46:59', 'dlOnPVX4', '6061099'), + (951, 2019, 'attending', '2023-04-18 18:53:39', '2025-12-17 19:47:00', 'dlOnPVX4', '6062934'), + (951, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dlOnPVX4', '6067245'), + (951, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dlOnPVX4', '6068094'), + (951, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dlOnPVX4', '6068252'), + (951, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dlOnPVX4', '6068253'), + (951, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dlOnPVX4', '6068254'), + (951, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dlOnPVX4', '6068280'), + (951, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dlOnPVX4', '6069093'), + (951, 2040, 'attending', '2023-04-28 00:02:30', '2025-12-17 19:47:01', 'dlOnPVX4', '6072453'), + (951, 2041, 'attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dlOnPVX4', '6072528'), + (951, 2043, 'attending', '2023-04-26 14:45:54', '2025-12-17 19:47:01', 'dlOnPVX4', '6073023'), + (951, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dlOnPVX4', '6079840'), + (951, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dlOnPVX4', '6083398'), + (951, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dlOnPVX4', '6093504'), + (951, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dlOnPVX4', '6097414'), + (951, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dlOnPVX4', '6097442'), + (951, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dlOnPVX4', '6097684'), + (951, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dlOnPVX4', '6098762'), + (951, 2064, 'not_attending', '2023-06-24 19:26:58', '2025-12-17 19:46:50', 'dlOnPVX4', '6099988'), + (951, 2065, 'attending', '2023-06-16 21:50:08', '2025-12-17 19:46:49', 'dlOnPVX4', '6101169'), + (951, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dlOnPVX4', '6101361'), + (951, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dlOnPVX4', '6101362'), + (951, 2070, 'attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dlOnPVX4', '6103752'), + (951, 2074, 'attending', '2023-05-22 18:09:48', '2025-12-17 19:47:03', 'dlOnPVX4', '6107312'), + (951, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dlOnPVX4', '6107314'), + (951, 2076, 'attending', '2023-05-19 14:53:20', '2025-12-17 19:47:03', 'dlOnPVX4', '6108350'), + (951, 2080, 'attending', '2023-05-22 18:09:54', '2025-12-17 19:47:04', 'dlOnPVX4', '6114677'), + (951, 2081, 'attending', '2023-05-22 22:18:04', '2025-12-17 19:47:03', 'dlOnPVX4', '6115611'), + (951, 2084, 'attending', '2023-05-25 22:00:07', '2025-12-17 19:47:04', 'dlOnPVX4', '6117127'), + (951, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dlOnPVX4', '6120034'), + (951, 2093, 'attending', '2023-06-12 18:52:46', '2025-12-17 19:47:04', 'dlOnPVX4', '6132598'), + (951, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dlOnPVX4', '6136733'), + (951, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dlOnPVX4', '6137989'), + (951, 2099, 'attending', '2023-06-12 18:52:50', '2025-12-17 19:46:49', 'dlOnPVX4', '6143012'), + (951, 2103, 'attending', '2023-06-16 21:50:02', '2025-12-17 19:46:50', 'dlOnPVX4', '6149451'), + (951, 2105, 'attending', '2023-06-17 20:59:00', '2025-12-17 19:46:50', 'dlOnPVX4', '6149551'), + (951, 2106, 'attending', '2023-06-18 20:01:50', '2025-12-17 19:46:50', 'dlOnPVX4', '6150479'), + (951, 2107, 'attending', '2023-06-18 20:01:57', '2025-12-17 19:46:50', 'dlOnPVX4', '6150480'), + (951, 2108, 'attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dlOnPVX4', '6150864'), + (951, 2109, 'attending', '2023-06-19 16:29:37', '2025-12-17 19:46:50', 'dlOnPVX4', '6152821'), + (951, 2110, 'attending', '2023-06-21 06:36:03', '2025-12-17 19:46:50', 'dlOnPVX4', '6155491'), + (951, 2116, 'not_attending', '2023-07-07 19:47:49', '2025-12-17 19:46:51', 'dlOnPVX4', '6163389'), + (951, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dlOnPVX4', '6164417'), + (951, 2119, 'attending', '2023-06-27 18:58:21', '2025-12-17 19:46:50', 'dlOnPVX4', '6165461'), + (951, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dlOnPVX4', '6166388'), + (951, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dlOnPVX4', '6176439'), + (951, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dlOnPVX4', '6180853'), + (951, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dlOnPVX4', '6182410'), + (951, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dlOnPVX4', '6185812'), + (951, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dlOnPVX4', '6187651'), + (951, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dlOnPVX4', '6187963'), + (951, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dlOnPVX4', '6187964'), + (951, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dlOnPVX4', '6187966'), + (951, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dlOnPVX4', '6187967'), + (951, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dlOnPVX4', '6187969'), + (951, 2139, 'attending', '2023-07-07 19:48:06', '2025-12-17 19:46:52', 'dlOnPVX4', '6188027'), + (951, 2140, 'attending', '2023-07-07 19:48:15', '2025-12-17 19:46:52', 'dlOnPVX4', '6188074'), + (951, 2142, 'attending', '2023-07-17 21:47:04', '2025-12-17 19:46:52', 'dlOnPVX4', '6333850'), + (951, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dlOnPVX4', '6334878'), + (951, 2146, 'attending', '2023-07-21 14:42:46', '2025-12-17 19:46:53', 'dlOnPVX4', '6335638'), + (951, 2149, 'attending', '2023-07-13 18:26:47', '2025-12-17 19:46:53', 'dlOnPVX4', '6335682'), + (951, 2152, 'not_attending', '2023-07-12 15:45:44', '2025-12-17 19:46:52', 'dlOnPVX4', '6337021'), + (951, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dlOnPVX4', '6337236'), + (951, 2155, 'maybe', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dlOnPVX4', '6337970'), + (951, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dlOnPVX4', '6338308'), + (951, 2158, 'attending', '2023-07-17 21:47:39', '2025-12-17 19:46:53', 'dlOnPVX4', '6338353'), + (951, 2159, 'attending', '2023-07-20 01:55:36', '2025-12-17 19:46:53', 'dlOnPVX4', '6338355'), + (951, 2160, 'attending', '2023-07-20 01:55:43', '2025-12-17 19:46:54', 'dlOnPVX4', '6338358'), + (951, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dlOnPVX4', '6340845'), + (951, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dlOnPVX4', '6341710'), + (951, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dlOnPVX4', '6342044'), + (951, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dlOnPVX4', '6342298'), + (951, 2171, 'attending', '2023-07-17 21:48:44', '2025-12-17 19:46:54', 'dlOnPVX4', '6342328'), + (951, 2174, 'not_attending', '2023-07-20 23:01:18', '2025-12-17 19:46:53', 'dlOnPVX4', '6343294'), + (951, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dlOnPVX4', '6347034'), + (951, 2177, 'attending', '2023-08-12 14:15:31', '2025-12-17 19:46:55', 'dlOnPVX4', '6347053'), + (951, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dlOnPVX4', '6347056'), + (951, 2183, 'attending', '2023-07-28 19:09:26', '2025-12-17 19:46:54', 'dlOnPVX4', '6353008'), + (951, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dlOnPVX4', '6353830'), + (951, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dlOnPVX4', '6353831'), + (951, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dlOnPVX4', '6357867'), + (951, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dlOnPVX4', '6358652'), + (951, 2199, 'attending', '2023-08-15 23:17:45', '2025-12-17 19:46:55', 'dlOnPVX4', '6359849'), + (951, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'dlOnPVX4', '6359940'), + (951, 2204, 'attending', '2023-08-16 15:44:19', '2025-12-17 19:46:55', 'dlOnPVX4', '6361542'), + (951, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dlOnPVX4', '6361709'), + (951, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dlOnPVX4', '6361710'), + (951, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dlOnPVX4', '6361711'), + (951, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dlOnPVX4', '6361712'), + (951, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dlOnPVX4', '6361713'), + (951, 2225, 'maybe', '2023-08-21 13:03:52', '2025-12-17 19:46:55', 'dlOnPVX4', '6368434'), + (951, 2231, 'attending', '2023-08-21 13:03:27', '2025-12-17 19:46:55', 'dlOnPVX4', '6374748'), + (951, 2232, 'attending', '2023-08-23 12:50:37', '2025-12-17 19:46:55', 'dlOnPVX4', '6374818'), + (951, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dlOnPVX4', '6382573'), + (951, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'dlOnPVX4', '6383149'), + (951, 2239, 'not_attending', '2023-08-31 22:00:58', '2025-12-17 19:46:56', 'dlOnPVX4', '6387592'), + (951, 2240, 'maybe', '2023-09-03 22:19:13', '2025-12-17 19:46:56', 'dlOnPVX4', '6388603'), + (951, 2241, 'attending', '2023-09-03 22:19:16', '2025-12-17 19:46:44', 'dlOnPVX4', '6388604'), + (951, 2242, 'maybe', '2023-09-06 19:14:35', '2025-12-17 19:46:45', 'dlOnPVX4', '6388606'), + (951, 2244, 'not_attending', '2023-09-09 16:38:19', '2025-12-17 19:46:44', 'dlOnPVX4', '6393700'), + (951, 2247, 'attending', '2023-09-06 19:14:21', '2025-12-17 19:46:56', 'dlOnPVX4', '6394628'), + (951, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dlOnPVX4', '6394629'), + (951, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dlOnPVX4', '6394631'), + (951, 2252, 'attending', '2023-09-06 19:15:46', '2025-12-17 19:46:45', 'dlOnPVX4', '6396837'), + (951, 2253, 'maybe', '2023-09-10 15:34:30', '2025-12-17 19:46:45', 'dlOnPVX4', '6401811'), + (951, 2257, 'attending', '2023-09-16 18:21:10', '2025-12-17 19:46:44', 'dlOnPVX4', '6408068'), + (951, 2263, 'maybe', '2023-10-03 17:50:26', '2025-12-17 19:46:45', 'dlOnPVX4', '6429351'), + (951, 2266, 'not_attending', '2023-10-02 17:01:45', '2025-12-17 19:46:45', 'dlOnPVX4', '6439635'), + (951, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dlOnPVX4', '6440863'), + (951, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dlOnPVX4', '6445440'), + (951, 2275, 'attending', '2023-10-07 19:57:44', '2025-12-17 19:46:45', 'dlOnPVX4', '6453777'), + (951, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dlOnPVX4', '6453951'), + (951, 2285, 'attending', '2023-10-27 17:47:15', '2025-12-17 19:46:47', 'dlOnPVX4', '6460929'), + (951, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dlOnPVX4', '6461696'), + (951, 2288, 'attending', '2023-10-11 20:55:13', '2025-12-17 19:46:46', 'dlOnPVX4', '6462068'), + (951, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dlOnPVX4', '6462129'), + (951, 2290, 'attending', '2023-10-11 20:55:28', '2025-12-17 19:46:46', 'dlOnPVX4', '6462214'), + (951, 2292, 'attending', '2023-10-19 20:29:22', '2025-12-17 19:46:47', 'dlOnPVX4', '6462216'), + (951, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dlOnPVX4', '6463218'), + (951, 2296, 'attending', '2023-10-15 20:47:36', '2025-12-17 19:46:47', 'dlOnPVX4', '6468393'), + (951, 2299, 'attending', '2023-10-19 20:29:00', '2025-12-17 19:46:46', 'dlOnPVX4', '6472181'), + (951, 2300, 'not_attending', '2023-10-15 20:50:04', '2025-12-17 19:46:47', 'dlOnPVX4', '6472185'), + (951, 2301, 'attending', '2023-10-19 20:29:13', '2025-12-17 19:46:46', 'dlOnPVX4', '6474276'), + (951, 2303, 'attending', '2023-10-28 17:19:10', '2025-12-17 19:46:47', 'dlOnPVX4', '6482691'), + (951, 2304, 'attending', '2023-10-30 23:18:52', '2025-12-17 19:46:47', 'dlOnPVX4', '6482693'), + (951, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dlOnPVX4', '6484200'), + (951, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dlOnPVX4', '6484680'), + (951, 2310, 'attending', '2023-11-02 15:51:58', '2025-12-17 19:46:47', 'dlOnPVX4', '6487709'), + (951, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dlOnPVX4', '6507741'), + (951, 2318, 'attending', '2023-10-30 17:10:06', '2025-12-17 19:46:47', 'dlOnPVX4', '6508566'), + (951, 2322, 'attending', '2023-11-02 15:51:50', '2025-12-17 19:46:48', 'dlOnPVX4', '6514659'), + (951, 2323, 'attending', '2023-11-02 15:52:01', '2025-12-17 19:46:48', 'dlOnPVX4', '6514660'), + (951, 2324, 'attending', '2023-11-02 15:52:03', '2025-12-17 19:46:49', 'dlOnPVX4', '6514662'), + (951, 2325, 'not_attending', '2023-12-16 02:14:40', '2025-12-17 19:46:36', 'dlOnPVX4', '6514663'), + (951, 2326, 'not_attending', '2023-11-06 17:00:27', '2025-12-17 19:46:48', 'dlOnPVX4', '6514805'), + (951, 2329, 'attending', '2023-11-02 15:48:22', '2025-12-17 19:46:47', 'dlOnPVX4', '6517138'), + (951, 2330, 'attending', '2023-11-06 17:00:34', '2025-12-17 19:46:47', 'dlOnPVX4', '6517941'), + (951, 2331, 'attending', '2023-11-15 00:36:30', '2025-12-17 19:46:47', 'dlOnPVX4', '6518640'), + (951, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dlOnPVX4', '6519103'), + (951, 2335, 'not_attending', '2023-11-09 16:19:47', '2025-12-17 19:46:47', 'dlOnPVX4', '6534890'), + (951, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dlOnPVX4', '6535681'), + (951, 2338, 'attending', '2023-11-17 21:44:57', '2025-12-17 19:46:48', 'dlOnPVX4', '6538868'), + (951, 2345, 'attending', '2023-11-29 20:39:39', '2025-12-17 19:46:48', 'dlOnPVX4', '6582414'), + (951, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlOnPVX4', '6584747'), + (951, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlOnPVX4', '6587097'), + (951, 2362, 'attending', '2023-12-04 18:32:09', '2025-12-17 19:46:49', 'dlOnPVX4', '6605708'), + (951, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlOnPVX4', '6609022'), + (951, 2365, 'attending', '2023-12-22 15:55:45', '2025-12-17 19:46:37', 'dlOnPVX4', '6613093'), + (951, 2370, 'not_attending', '2023-12-12 18:02:23', '2025-12-17 19:46:36', 'dlOnPVX4', '6623765'), + (951, 2373, 'attending', '2023-12-26 16:24:32', '2025-12-17 19:46:38', 'dlOnPVX4', '6632678'), + (951, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlOnPVX4', '6632757'), + (951, 2377, 'attending', '2023-12-29 21:52:17', '2025-12-17 19:46:37', 'dlOnPVX4', '6643448'), + (951, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlOnPVX4', '6644187'), + (951, 2380, 'attending', '2023-12-30 21:40:57', '2025-12-17 19:46:37', 'dlOnPVX4', '6645105'), + (951, 2381, 'maybe', '2024-01-02 17:11:44', '2025-12-17 19:46:37', 'dlOnPVX4', '6646398'), + (951, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlOnPVX4', '6648951'), + (951, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlOnPVX4', '6648952'), + (951, 2388, 'attending', '2024-01-03 02:47:25', '2025-12-17 19:46:37', 'dlOnPVX4', '6649244'), + (951, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dlOnPVX4', '6655401'), + (951, 2399, 'attending', '2024-01-07 18:24:15', '2025-12-17 19:46:37', 'dlOnPVX4', '6657583'), + (951, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlOnPVX4', '6661585'), + (951, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlOnPVX4', '6661588'), + (951, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlOnPVX4', '6661589'), + (951, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlOnPVX4', '6699906'), + (951, 2408, 'attending', '2024-01-23 19:47:18', '2025-12-17 19:46:40', 'dlOnPVX4', '6699907'), + (951, 2409, 'attending', '2024-01-23 19:47:20', '2025-12-17 19:46:41', 'dlOnPVX4', '6699909'), + (951, 2410, 'attending', '2024-01-23 19:47:22', '2025-12-17 19:46:41', 'dlOnPVX4', '6699911'), + (951, 2411, 'maybe', '2024-02-01 17:03:07', '2025-12-17 19:46:41', 'dlOnPVX4', '6699913'), + (951, 2413, 'maybe', '2024-02-07 22:14:42', '2025-12-17 19:46:42', 'dlOnPVX4', '6700719'), + (951, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlOnPVX4', '6701109'), + (951, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlOnPVX4', '6705219'), + (951, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlOnPVX4', '6710153'), + (951, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlOnPVX4', '6711552'), + (951, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dlOnPVX4', '6711553'), + (951, 2431, 'attending', '2024-01-23 19:47:35', '2025-12-17 19:46:41', 'dlOnPVX4', '6712394'), + (951, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlOnPVX4', '6722688'), + (951, 2438, 'attending', '2024-02-01 17:03:00', '2025-12-17 19:46:41', 'dlOnPVX4', '6730201'), + (951, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlOnPVX4', '6730620'), + (951, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlOnPVX4', '6730642'), + (951, 2451, 'not_attending', '2024-02-07 22:15:10', '2025-12-17 19:46:41', 'dlOnPVX4', '6740333'), + (951, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlOnPVX4', '6740364'), + (951, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlOnPVX4', '6743829'), + (951, 2462, 'attending', '2024-02-11 05:16:18', '2025-12-17 19:46:41', 'dlOnPVX4', '6744701'), + (951, 2467, 'attending', '2024-02-16 03:56:12', '2025-12-17 19:46:43', 'dlOnPVX4', '7029987'), + (951, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlOnPVX4', '7030380'), + (951, 2471, 'attending', '2024-02-23 03:35:57', '2025-12-17 19:46:42', 'dlOnPVX4', '7032425'), + (951, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlOnPVX4', '7033677'), + (951, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlOnPVX4', '7035415'), + (951, 2477, 'attending', '2024-02-22 22:23:05', '2025-12-17 19:46:42', 'dlOnPVX4', '7035692'), + (951, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlOnPVX4', '7044715'), + (951, 2487, 'maybe', '2024-03-07 15:27:03', '2025-12-17 19:46:33', 'dlOnPVX4', '7049279'), + (951, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlOnPVX4', '7050318'), + (951, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlOnPVX4', '7050319'), + (951, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlOnPVX4', '7050322'), + (951, 2493, 'attending', '2024-03-01 00:58:55', '2025-12-17 19:46:32', 'dlOnPVX4', '7052471'), + (951, 2494, 'attending', '2024-03-01 00:58:56', '2025-12-17 19:46:32', 'dlOnPVX4', '7052472'), + (951, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlOnPVX4', '7057804'), + (951, 2500, 'maybe', '2024-03-06 23:12:03', '2025-12-17 19:46:43', 'dlOnPVX4', '7058603'), + (951, 2501, 'attending', '2024-03-05 14:55:12', '2025-12-17 19:46:43', 'dlOnPVX4', '7059866'), + (951, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlOnPVX4', '7072824'), + (951, 2508, 'attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlOnPVX4', '7074348'), + (951, 2509, 'attending', '2024-03-12 16:30:09', '2025-12-17 19:46:33', 'dlOnPVX4', '7074349'), + (951, 2511, 'attending', '2024-03-29 16:57:53', '2025-12-17 19:46:33', 'dlOnPVX4', '7074351'), + (951, 2512, 'attending', '2024-04-01 17:43:38', '2025-12-17 19:46:33', 'dlOnPVX4', '7074352'), + (951, 2514, 'attending', '2024-04-22 14:08:55', '2025-12-17 19:46:34', 'dlOnPVX4', '7074354'), + (951, 2516, 'attending', '2024-04-24 20:24:43', '2025-12-17 19:46:35', 'dlOnPVX4', '7074356'), + (951, 2522, 'attending', '2024-07-15 17:32:21', '2025-12-17 19:46:30', 'dlOnPVX4', '7074362'), + (951, 2523, 'attending', '2024-05-30 22:44:15', '2025-12-17 19:46:36', 'dlOnPVX4', '7074363'), + (951, 2524, 'attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dlOnPVX4', '7074364'), + (951, 2525, 'attending', '2024-06-04 14:10:32', '2025-12-17 19:46:28', 'dlOnPVX4', '7074365'), + (951, 2526, 'attending', '2024-08-01 23:50:38', '2025-12-17 19:46:31', 'dlOnPVX4', '7074366'), + (951, 2530, 'attending', '2024-08-14 22:53:53', '2025-12-17 19:46:31', 'dlOnPVX4', '7074373'), + (951, 2531, 'attending', '2024-08-29 21:13:03', '2025-12-17 19:46:32', 'dlOnPVX4', '7074378'), + (951, 2539, 'attending', '2024-04-01 19:09:19', '2025-12-17 19:46:33', 'dlOnPVX4', '7085486'), + (951, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlOnPVX4', '7089267'), + (951, 2543, 'attending', '2024-04-03 14:16:41', '2025-12-17 19:46:33', 'dlOnPVX4', '7091456'), + (951, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlOnPVX4', '7098747'), + (951, 2553, 'attending', '2024-03-30 01:59:23', '2025-12-17 19:46:33', 'dlOnPVX4', '7113468'), + (951, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlOnPVX4', '7114856'), + (951, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlOnPVX4', '7114951'), + (951, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlOnPVX4', '7114955'), + (951, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlOnPVX4', '7114956'), + (951, 2558, 'attending', '2024-04-08 15:27:54', '2025-12-17 19:46:35', 'dlOnPVX4', '7114957'), + (951, 2563, 'attending', '2024-04-07 20:47:20', '2025-12-17 19:46:33', 'dlOnPVX4', '7134734'), + (951, 2564, 'attending', '2024-04-06 20:14:39', '2025-12-17 19:46:33', 'dlOnPVX4', '7134735'), + (951, 2566, 'attending', '2024-04-03 14:16:25', '2025-12-17 19:46:34', 'dlOnPVX4', '7140664'), + (951, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlOnPVX4', '7153615'), + (951, 2569, 'attending', '2024-04-07 16:45:08', '2025-12-17 19:46:33', 'dlOnPVX4', '7154056'), + (951, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dlOnPVX4', '7159484'), + (951, 2581, 'maybe', '2024-04-22 14:09:25', '2025-12-17 19:46:34', 'dlOnPVX4', '7169048'), + (951, 2585, 'maybe', '2024-04-22 14:09:12', '2025-12-17 19:46:34', 'dlOnPVX4', '7175828'), + (951, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dlOnPVX4', '7178446'), + (951, 2592, 'attending', '2024-04-20 21:22:01', '2025-12-17 19:46:34', 'dlOnPVX4', '7180959'), + (951, 2596, 'attending', '2024-04-22 14:08:53', '2025-12-17 19:46:34', 'dlOnPVX4', '7183788'), + (951, 2601, 'attending', '2024-04-24 20:24:11', '2025-12-17 19:46:34', 'dlOnPVX4', '7197023'), + (951, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dlOnPVX4', '7220467'), + (951, 2604, 'attending', '2024-05-29 15:42:14', '2025-12-17 19:46:36', 'dlOnPVX4', '7225670'), + (951, 2609, 'attending', '2024-05-01 22:33:45', '2025-12-17 19:46:35', 'dlOnPVX4', '7240354'), + (951, 2610, 'not_attending', '2024-04-30 22:40:05', '2025-12-17 19:46:35', 'dlOnPVX4', '7241797'), + (951, 2616, 'attending', '2024-05-06 17:33:12', '2025-12-17 19:46:35', 'dlOnPVX4', '7250296'), + (951, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dlOnPVX4', '7251633'), + (951, 2623, 'attending', '2024-05-10 13:57:53', '2025-12-17 19:46:35', 'dlOnPVX4', '7263048'), + (951, 2626, 'not_attending', '2024-05-12 15:23:55', '2025-12-17 19:46:35', 'dlOnPVX4', '7264723'), + (951, 2627, 'not_attending', '2024-05-12 15:23:59', '2025-12-17 19:46:35', 'dlOnPVX4', '7264724'), + (951, 2628, 'attending', '2024-05-12 15:24:02', '2025-12-17 19:46:36', 'dlOnPVX4', '7264725'), + (951, 2629, 'attending', '2024-05-12 15:24:04', '2025-12-17 19:46:28', 'dlOnPVX4', '7264726'), + (951, 2647, 'attending', '2024-05-29 15:42:51', '2025-12-17 19:46:28', 'dlOnPVX4', '7282057'), + (951, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dlOnPVX4', '7302674'), + (951, 2675, 'attending', '2024-07-31 19:31:30', '2025-12-17 19:46:31', 'dlOnPVX4', '7319481'), + (951, 2676, 'not_attending', '2024-08-04 21:22:40', '2025-12-17 19:46:32', 'dlOnPVX4', '7319482'), + (951, 2677, 'attending', '2024-09-01 21:13:02', '2025-12-17 19:46:26', 'dlOnPVX4', '7319483'), + (951, 2679, 'attending', '2024-06-22 23:16:23', '2025-12-17 19:46:29', 'dlOnPVX4', '7319490'), + (951, 2684, 'attending', '2024-06-10 19:03:12', '2025-12-17 19:46:28', 'dlOnPVX4', '7322001'), + (951, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dlOnPVX4', '7324073'), + (951, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dlOnPVX4', '7324074'), + (951, 2690, 'attending', '2024-07-02 22:21:16', '2025-12-17 19:46:30', 'dlOnPVX4', '7324075'), + (951, 2691, 'attending', '2024-07-02 22:21:17', '2025-12-17 19:46:30', 'dlOnPVX4', '7324076'), + (951, 2692, 'attending', '2024-07-26 23:37:12', '2025-12-17 19:46:30', 'dlOnPVX4', '7324077'), + (951, 2693, 'attending', '2024-08-01 18:19:03', '2025-12-17 19:46:31', 'dlOnPVX4', '7324078'), + (951, 2694, 'attending', '2024-08-01 18:19:04', '2025-12-17 19:46:31', 'dlOnPVX4', '7324079'), + (951, 2695, 'attending', '2024-08-01 18:19:06', '2025-12-17 19:46:31', 'dlOnPVX4', '7324080'), + (951, 2696, 'attending', '2024-08-01 18:19:08', '2025-12-17 19:46:32', 'dlOnPVX4', '7324081'), + (951, 2697, 'maybe', '2024-08-01 18:19:10', '2025-12-17 19:46:32', 'dlOnPVX4', '7324082'), + (951, 2698, 'not_attending', '2024-08-01 18:19:12', '2025-12-17 19:46:24', 'dlOnPVX4', '7324083'), + (951, 2722, 'attending', '2024-07-08 16:48:43', '2025-12-17 19:46:29', 'dlOnPVX4', '7331457'), + (951, 2754, 'attending', '2024-07-08 16:51:31', '2025-12-17 19:46:30', 'dlOnPVX4', '7356752'), + (951, 2755, 'not_attending', '2024-07-10 23:22:47', '2025-12-17 19:46:29', 'dlOnPVX4', '7357808'), + (951, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dlOnPVX4', '7363643'), + (951, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dlOnPVX4', '7368606'), + (951, 2780, 'attending', '2024-07-26 21:26:03', '2025-12-17 19:46:30', 'dlOnPVX4', '7371849'), + (951, 2785, 'attending', '2024-07-31 19:31:27', '2025-12-17 19:46:31', 'dlOnPVX4', '7380988'), + (951, 2786, 'maybe', '2024-07-31 19:35:04', '2025-12-17 19:46:31', 'dlOnPVX4', '7381403'), + (951, 2787, 'attending', '2024-07-31 19:47:51', '2025-12-17 19:46:32', 'dlOnPVX4', '7381568'), + (951, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dlOnPVX4', '7397462'), + (951, 2821, 'not_attending', '2024-09-16 18:31:15', '2025-12-17 19:46:26', 'dlOnPVX4', '7424275'), + (951, 2822, 'attending', '2024-09-30 22:44:40', '2025-12-17 19:46:26', 'dlOnPVX4', '7424276'), + (951, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dlOnPVX4', '7432751'), + (951, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dlOnPVX4', '7432752'), + (951, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dlOnPVX4', '7432753'), + (951, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dlOnPVX4', '7432754'), + (951, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dlOnPVX4', '7432755'), + (951, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dlOnPVX4', '7432756'), + (951, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dlOnPVX4', '7432758'), + (951, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dlOnPVX4', '7432759'), + (951, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dlOnPVX4', '7433834'), + (951, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dlOnPVX4', '7470197'), + (951, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dlOnPVX4', '7685613'), + (951, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dlOnPVX4', '7688194'), + (951, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dlOnPVX4', '7688196'), + (951, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dlOnPVX4', '7688289'), + (951, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dlOnPVX4', '7692763'), + (951, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dlOnPVX4', '7697552'), + (951, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dlOnPVX4', '7699878'), + (951, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dlOnPVX4', '7704043'), + (951, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dlOnPVX4', '7712467'), + (951, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dlOnPVX4', '7713585'), + (951, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dlOnPVX4', '7713586'), + (951, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dlOnPVX4', '7738518'), + (952, 993, 'attending', '2021-09-25 21:12:14', '2025-12-17 19:47:34', 'Pm7QVLP4', '4420741'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (952, 994, 'attending', '2021-10-02 22:10:19', '2025-12-17 19:47:34', 'Pm7QVLP4', '4420742'), + (952, 995, 'attending', '2021-10-04 17:06:22', '2025-12-17 19:47:34', 'Pm7QVLP4', '4420744'), + (952, 996, 'attending', '2021-10-16 21:32:11', '2025-12-17 19:47:35', 'Pm7QVLP4', '4420747'), + (952, 997, 'attending', '2021-10-23 15:19:04', '2025-12-17 19:47:35', 'Pm7QVLP4', '4420748'), + (952, 998, 'maybe', '2021-10-30 20:46:03', '2025-12-17 19:47:36', 'Pm7QVLP4', '4420749'), + (952, 1006, 'attending', '2021-09-29 21:54:27', '2025-12-17 19:47:34', 'Pm7QVLP4', '4438808'), + (952, 1071, 'maybe', '2021-10-04 23:17:31', '2025-12-17 19:47:34', 'Pm7QVLP4', '4516078'), + (952, 1072, 'attending', '2021-10-06 21:37:34', '2025-12-17 19:47:34', 'Pm7QVLP4', '4516287'), + (952, 1074, 'attending', '2021-09-29 21:54:16', '2025-12-17 19:47:34', 'Pm7QVLP4', '4528953'), + (952, 1083, 'attending', '2021-10-14 22:30:20', '2025-12-17 19:47:34', 'Pm7QVLP4', '4566768'), + (952, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Pm7QVLP4', '4568602'), + (952, 1087, 'maybe', '2021-10-16 00:08:47', '2025-12-17 19:47:35', 'Pm7QVLP4', '4572153'), + (952, 1089, 'attending', '2021-10-18 23:04:04', '2025-12-17 19:47:35', 'Pm7QVLP4', '4574712'), + (952, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'Pm7QVLP4', '4585962'), + (952, 1094, 'maybe', '2021-10-29 13:53:59', '2025-12-17 19:47:36', 'Pm7QVLP4', '4587337'), + (952, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Pm7QVLP4', '4596356'), + (952, 1096, 'attending', '2021-10-28 21:56:36', '2025-12-17 19:47:36', 'Pm7QVLP4', '4596453'), + (952, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Pm7QVLP4', '4598860'), + (952, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Pm7QVLP4', '4598861'), + (952, 1099, 'attending', '2021-11-06 20:22:22', '2025-12-17 19:47:36', 'Pm7QVLP4', '4602797'), + (952, 1114, 'not_attending', '2021-11-13 19:51:44', '2025-12-17 19:47:36', 'Pm7QVLP4', '4637896'), + (952, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Pm7QVLP4', '4642994'), + (952, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Pm7QVLP4', '4642995'), + (952, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Pm7QVLP4', '4642996'), + (952, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Pm7QVLP4', '4642997'), + (952, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Pm7QVLP4', '4645687'), + (952, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Pm7QVLP4', '4645698'), + (952, 1128, 'attending', '2021-11-20 22:06:21', '2025-12-17 19:47:37', 'Pm7QVLP4', '4645704'), + (952, 1129, 'not_attending', '2021-11-27 16:53:45', '2025-12-17 19:47:37', 'Pm7QVLP4', '4645705'), + (952, 1130, 'maybe', '2021-12-04 20:49:12', '2025-12-17 19:47:37', 'Pm7QVLP4', '4658824'), + (952, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Pm7QVLP4', '4668385'), + (952, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Pm7QVLP4', '4694407'), + (952, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Pm7QVLP4', '4736497'), + (952, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Pm7QVLP4', '4736499'), + (952, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Pm7QVLP4', '4736500'), + (952, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Pm7QVLP4', '4736503'), + (952, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Pm7QVLP4', '4736504'), + (952, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Pm7QVLP4', '4746789'), + (952, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Pm7QVLP4', '4753929'), + (952, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Pm7QVLP4', '5038850'), + (952, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Pm7QVLP4', '5045826'), + (952, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Pm7QVLP4', '5132533'), + (952, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Pm7QVLP4', '5186582'), + (952, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Pm7QVLP4', '5186583'), + (952, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Pm7QVLP4', '5186585'), + (952, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Pm7QVLP4', '5190437'), + (952, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Pm7QVLP4', '5215989'), + (952, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Pm7QVLP4', '6045684'), + (953, 971, 'attending', '2021-09-08 18:11:45', '2025-12-17 19:47:43', '4ZkLvKWd', '4356801'), + (953, 989, 'attending', '2021-09-10 19:52:07', '2025-12-17 19:47:43', '4ZkLvKWd', '4414282'), + (953, 991, 'attending', '2021-09-10 18:07:39', '2025-12-17 19:47:43', '4ZkLvKWd', '4420738'), + (953, 992, 'attending', '2021-09-20 17:14:26', '2025-12-17 19:47:33', '4ZkLvKWd', '4420739'), + (953, 993, 'not_attending', '2021-09-25 22:27:29', '2025-12-17 19:47:34', '4ZkLvKWd', '4420741'), + (953, 995, 'maybe', '2021-10-09 18:12:22', '2025-12-17 19:47:34', '4ZkLvKWd', '4420744'), + (953, 996, 'not_attending', '2021-10-22 21:51:41', '2025-12-17 19:47:35', '4ZkLvKWd', '4420747'), + (953, 997, 'not_attending', '2021-10-17 18:47:29', '2025-12-17 19:47:35', '4ZkLvKWd', '4420748'), + (953, 998, 'attending', '2021-10-28 02:17:24', '2025-12-17 19:47:36', '4ZkLvKWd', '4420749'), + (953, 1004, 'attending', '2021-09-09 22:48:20', '2025-12-17 19:47:43', '4ZkLvKWd', '4438804'), + (953, 1009, 'not_attending', '2021-10-10 20:58:58', '2025-12-17 19:47:34', '4ZkLvKWd', '4438811'), + (953, 1015, 'attending', '2021-09-18 19:05:03', '2025-12-17 19:47:43', '4ZkLvKWd', '4440800'), + (953, 1016, 'attending', '2021-09-09 22:58:47', '2025-12-17 19:47:43', '4ZkLvKWd', '4441271'), + (953, 1019, 'attending', '2021-09-10 22:09:10', '2025-12-17 19:47:43', '4ZkLvKWd', '4450515'), + (953, 1020, 'attending', '2021-09-12 21:12:52', '2025-12-17 19:47:43', '4ZkLvKWd', '4451787'), + (953, 1021, 'maybe', '2021-09-20 20:00:12', '2025-12-17 19:47:34', '4ZkLvKWd', '4451803'), + (953, 1022, 'attending', '2021-09-15 03:10:37', '2025-12-17 19:47:43', '4ZkLvKWd', '4458628'), + (953, 1023, 'attending', '2021-09-12 21:12:47', '2025-12-17 19:47:43', '4ZkLvKWd', '4461883'), + (953, 1025, 'not_attending', '2021-09-14 00:47:36', '2025-12-17 19:47:43', '4ZkLvKWd', '4462052'), + (953, 1026, 'not_attending', '2021-09-17 02:20:25', '2025-12-17 19:47:43', '4ZkLvKWd', '4472951'), + (953, 1027, 'not_attending', '2021-09-21 03:27:33', '2025-12-17 19:47:34', '4ZkLvKWd', '4472982'), + (953, 1029, 'maybe', '2021-09-17 23:00:40', '2025-12-17 19:47:43', '4ZkLvKWd', '4473063'), + (953, 1030, 'not_attending', '2021-09-16 19:47:35', '2025-12-17 19:47:34', '4ZkLvKWd', '4473064'), + (953, 1031, 'attending', '2021-09-20 18:09:36', '2025-12-17 19:47:34', '4ZkLvKWd', '4473789'), + (953, 1034, 'not_attending', '2021-09-16 19:46:57', '2025-12-17 19:47:43', '4ZkLvKWd', '4486265'), + (953, 1035, 'attending', '2021-09-19 03:35:53', '2025-12-17 19:47:34', '4ZkLvKWd', '4492184'), + (953, 1036, 'not_attending', '2021-09-21 03:26:40', '2025-12-17 19:47:34', '4ZkLvKWd', '4493166'), + (953, 1037, 'attending', '2021-09-21 03:26:49', '2025-12-17 19:47:34', '4ZkLvKWd', '4493233'), + (953, 1064, 'not_attending', '2021-09-21 03:24:57', '2025-12-17 19:47:34', '4ZkLvKWd', '4499526'), + (953, 1067, 'attending', '2021-09-24 20:11:52', '2025-12-17 19:47:34', '4ZkLvKWd', '4508342'), + (953, 1068, 'attending', '2021-09-27 06:57:30', '2025-12-17 19:47:34', '4ZkLvKWd', '4511471'), + (953, 1070, 'attending', '2021-10-01 22:50:55', '2025-12-17 19:47:34', '4ZkLvKWd', '4512562'), + (953, 1071, 'not_attending', '2021-10-04 17:54:59', '2025-12-17 19:47:34', '4ZkLvKWd', '4516078'), + (953, 1072, 'attending', '2021-10-06 22:14:27', '2025-12-17 19:47:34', '4ZkLvKWd', '4516287'), + (953, 1074, 'attending', '2021-09-29 18:27:31', '2025-12-17 19:47:34', '4ZkLvKWd', '4528953'), + (953, 1075, 'not_attending', '2021-10-08 20:13:05', '2025-12-17 19:47:34', '4ZkLvKWd', '4536351'), + (953, 1076, 'not_attending', '2021-10-08 20:13:12', '2025-12-17 19:47:34', '4ZkLvKWd', '4539147'), + (953, 1077, 'attending', '2021-10-10 20:59:17', '2025-12-17 19:47:34', '4ZkLvKWd', '4540903'), + (953, 1078, 'attending', '2021-10-07 21:55:30', '2025-12-17 19:47:34', '4ZkLvKWd', '4541281'), + (953, 1079, 'attending', '2021-10-20 21:29:53', '2025-12-17 19:47:35', '4ZkLvKWd', '4563823'), + (953, 1080, 'not_attending', '2021-10-10 20:58:50', '2025-12-17 19:47:34', '4ZkLvKWd', '4564599'), + (953, 1081, 'not_attending', '2021-10-10 20:59:11', '2025-12-17 19:47:34', '4ZkLvKWd', '4564602'), + (953, 1082, 'attending', '2021-10-15 22:39:11', '2025-12-17 19:47:35', '4ZkLvKWd', '4566762'), + (953, 1083, 'not_attending', '2021-10-14 17:00:17', '2025-12-17 19:47:34', '4ZkLvKWd', '4566768'), + (953, 1086, 'not_attending', '2021-10-13 22:06:41', '2025-12-17 19:47:35', '4ZkLvKWd', '4568602'), + (953, 1087, 'attending', '2021-10-15 18:01:11', '2025-12-17 19:47:35', '4ZkLvKWd', '4572153'), + (953, 1089, 'maybe', '2021-10-17 18:48:28', '2025-12-17 19:47:35', '4ZkLvKWd', '4574712'), + (953, 1090, 'not_attending', '2021-10-17 18:47:22', '2025-12-17 19:47:35', '4ZkLvKWd', '4574713'), + (953, 1091, 'not_attending', '2021-10-17 18:48:22', '2025-12-17 19:47:35', '4ZkLvKWd', '4575829'), + (953, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4ZkLvKWd', '4585962'), + (953, 1094, 'attending', '2021-10-28 02:17:51', '2025-12-17 19:47:36', '4ZkLvKWd', '4587337'), + (953, 1095, 'attending', '2021-10-27 17:50:00', '2025-12-17 19:47:35', '4ZkLvKWd', '4596356'), + (953, 1096, 'attending', '2021-10-29 22:42:44', '2025-12-17 19:47:36', '4ZkLvKWd', '4596453'), + (953, 1097, 'not_attending', '2021-11-03 23:34:41', '2025-12-17 19:47:36', '4ZkLvKWd', '4598860'), + (953, 1098, 'attending', '2021-11-01 19:10:10', '2025-12-17 19:47:36', '4ZkLvKWd', '4598861'), + (953, 1099, 'maybe', '2021-11-04 18:34:57', '2025-12-17 19:47:36', '4ZkLvKWd', '4602797'), + (953, 1100, 'not_attending', '2021-11-09 01:56:53', '2025-12-17 19:47:36', '4ZkLvKWd', '4607305'), + (953, 1101, 'not_attending', '2021-11-12 04:27:09', '2025-12-17 19:47:36', '4ZkLvKWd', '4607339'), + (953, 1103, 'not_attending', '2021-11-13 21:31:33', '2025-12-17 19:47:36', '4ZkLvKWd', '4616350'), + (953, 1107, 'not_attending', '2021-11-17 01:44:45', '2025-12-17 19:47:37', '4ZkLvKWd', '4620697'), + (953, 1108, 'attending', '2021-11-16 00:15:37', '2025-12-17 19:47:37', '4ZkLvKWd', '4632276'), + (953, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4ZkLvKWd', '4637896'), + (953, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4ZkLvKWd', '4642994'), + (953, 1117, 'maybe', '2021-12-06 01:57:56', '2025-12-17 19:47:38', '4ZkLvKWd', '4642995'), + (953, 1118, 'attending', '2021-12-11 22:22:33', '2025-12-17 19:47:38', '4ZkLvKWd', '4642996'), + (953, 1119, 'attending', '2021-12-19 23:33:17', '2025-12-17 19:47:31', '4ZkLvKWd', '4642997'), + (953, 1126, 'not_attending', '2021-12-11 22:22:13', '2025-12-17 19:47:38', '4ZkLvKWd', '4645687'), + (953, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4ZkLvKWd', '4645698'), + (953, 1128, 'attending', '2021-11-21 00:37:23', '2025-12-17 19:47:37', '4ZkLvKWd', '4645704'), + (953, 1129, 'maybe', '2021-11-27 23:29:16', '2025-12-17 19:47:37', '4ZkLvKWd', '4645705'), + (953, 1131, 'maybe', '2021-12-18 23:41:31', '2025-12-17 19:47:31', '4ZkLvKWd', '4658825'), + (953, 1132, 'attending', '2021-11-22 06:42:58', '2025-12-17 19:47:37', '4ZkLvKWd', '4660657'), + (953, 1134, 'attending', '2021-11-24 22:13:59', '2025-12-17 19:47:37', '4ZkLvKWd', '4668385'), + (953, 1135, 'maybe', '2021-11-25 06:18:14', '2025-12-17 19:47:37', '4ZkLvKWd', '4670469'), + (953, 1139, 'attending', '2021-12-03 23:48:50', '2025-12-17 19:47:37', '4ZkLvKWd', '4675604'), + (953, 1140, 'attending', '2021-12-03 23:36:16', '2025-12-17 19:47:37', '4ZkLvKWd', '4679701'), + (953, 1144, 'attending', '2021-12-06 01:57:47', '2025-12-17 19:47:37', '4ZkLvKWd', '4687090'), + (953, 1147, 'attending', '2021-12-14 21:12:31', '2025-12-17 19:47:38', '4ZkLvKWd', '4692842'), + (953, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4ZkLvKWd', '4694407'), + (953, 1151, 'attending', '2022-01-02 06:20:19', '2025-12-17 19:47:31', '4ZkLvKWd', '4708704'), + (953, 1152, 'attending', '2022-01-12 00:10:10', '2025-12-17 19:47:31', '4ZkLvKWd', '4708705'), + (953, 1153, 'attending', '2022-01-26 22:32:21', '2025-12-17 19:47:32', '4ZkLvKWd', '4708707'), + (953, 1154, 'attending', '2022-01-24 20:36:09', '2025-12-17 19:47:32', '4ZkLvKWd', '4708708'), + (953, 1156, 'attending', '2021-12-19 23:33:00', '2025-12-17 19:47:31', '4ZkLvKWd', '4715207'), + (953, 1157, 'not_attending', '2021-12-19 23:34:20', '2025-12-17 19:47:31', '4ZkLvKWd', '4715208'), + (953, 1158, 'not_attending', '2021-12-19 23:32:53', '2025-12-17 19:47:31', '4ZkLvKWd', '4715311'), + (953, 1159, 'not_attending', '2022-01-02 06:20:15', '2025-12-17 19:47:31', '4ZkLvKWd', '4717532'), + (953, 1162, 'not_attending', '2022-01-08 00:31:33', '2025-12-17 19:47:31', '4ZkLvKWd', '4718771'), + (953, 1163, 'maybe', '2022-01-08 00:32:15', '2025-12-17 19:47:31', '4ZkLvKWd', '4724206'), + (953, 1164, 'attending', '2022-01-02 06:19:55', '2025-12-17 19:47:31', '4ZkLvKWd', '4724208'), + (953, 1165, 'attending', '2022-01-02 06:20:00', '2025-12-17 19:47:31', '4ZkLvKWd', '4724210'), + (953, 1168, 'attending', '2022-01-05 02:12:14', '2025-12-17 19:47:31', '4ZkLvKWd', '4731043'), + (953, 1169, 'not_attending', '2022-01-07 23:55:49', '2025-12-17 19:47:31', '4ZkLvKWd', '4731044'), + (953, 1170, 'not_attending', '2022-01-09 23:43:18', '2025-12-17 19:47:31', '4ZkLvKWd', '4731045'), + (953, 1171, 'not_attending', '2022-01-02 06:20:09', '2025-12-17 19:47:31', '4ZkLvKWd', '4733292'), + (953, 1173, 'attending', '2022-01-09 00:55:04', '2025-12-17 19:47:31', '4ZkLvKWd', '4736495'), + (953, 1175, 'attending', '2022-01-23 00:04:01', '2025-12-17 19:47:32', '4ZkLvKWd', '4736497'), + (953, 1176, 'not_attending', '2022-02-05 20:40:49', '2025-12-17 19:47:32', '4ZkLvKWd', '4736498'), + (953, 1177, 'not_attending', '2022-02-05 20:40:57', '2025-12-17 19:47:32', '4ZkLvKWd', '4736499'), + (953, 1178, 'attending', '2022-01-29 21:56:53', '2025-12-17 19:47:32', '4ZkLvKWd', '4736500'), + (953, 1179, 'not_attending', '2022-02-05 20:41:28', '2025-12-17 19:47:32', '4ZkLvKWd', '4736501'), + (953, 1180, 'not_attending', '2022-02-05 20:41:22', '2025-12-17 19:47:33', '4ZkLvKWd', '4736502'), + (953, 1181, 'attending', '2022-03-06 00:00:05', '2025-12-17 19:47:33', '4ZkLvKWd', '4736503'), + (953, 1182, 'attending', '2022-03-11 21:23:13', '2025-12-17 19:47:33', '4ZkLvKWd', '4736504'), + (953, 1184, 'maybe', '2022-01-09 23:43:56', '2025-12-17 19:47:31', '4ZkLvKWd', '4742350'), + (953, 1185, 'maybe', '2022-01-09 23:43:42', '2025-12-17 19:47:31', '4ZkLvKWd', '4746789'), + (953, 1188, 'attending', '2022-01-12 00:09:51', '2025-12-17 19:47:31', '4ZkLvKWd', '4753929'), + (953, 1190, 'attending', '2022-01-12 00:10:02', '2025-12-17 19:47:31', '4ZkLvKWd', '4757377'), + (953, 1198, 'attending', '2022-01-24 20:35:33', '2025-12-17 19:47:32', '4ZkLvKWd', '4766801'), + (953, 1199, 'attending', '2022-01-24 20:35:40', '2025-12-17 19:47:32', '4ZkLvKWd', '4766802'), + (953, 1202, 'not_attending', '2022-01-26 22:32:30', '2025-12-17 19:47:32', '4ZkLvKWd', '4769423'), + (953, 1214, 'not_attending', '2022-02-13 04:39:21', '2025-12-17 19:47:32', '4ZkLvKWd', '4780761'), + (953, 1215, 'not_attending', '2022-02-13 04:39:32', '2025-12-17 19:47:33', '4ZkLvKWd', '4780763'), + (953, 1219, 'attending', '2022-01-31 22:19:22', '2025-12-17 19:47:32', '4ZkLvKWd', '4788466'), + (953, 1220, 'maybe', '2022-01-27 23:53:27', '2025-12-17 19:47:32', '4ZkLvKWd', '4790257'), + (953, 1222, 'not_attending', '2022-02-05 20:41:18', '2025-12-17 19:47:32', '4ZkLvKWd', '5015628'), + (953, 1224, 'maybe', '2022-01-31 22:19:47', '2025-12-17 19:47:32', '4ZkLvKWd', '5016682'), + (953, 1227, 'not_attending', '2022-02-05 20:41:44', '2025-12-17 19:47:32', '4ZkLvKWd', '5027602'), + (953, 1228, 'not_attending', '2022-02-05 20:41:05', '2025-12-17 19:47:32', '4ZkLvKWd', '5028238'), + (953, 1229, 'not_attending', '2022-02-13 04:39:16', '2025-12-17 19:47:32', '4ZkLvKWd', '5034963'), + (953, 1231, 'not_attending', '2022-02-13 04:39:27', '2025-12-17 19:47:33', '4ZkLvKWd', '5037637'), + (953, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4ZkLvKWd', '5038850'), + (953, 1234, 'not_attending', '2022-02-13 04:39:03', '2025-12-17 19:47:32', '4ZkLvKWd', '5042197'), + (953, 1235, 'not_attending', '2022-02-13 04:39:00', '2025-12-17 19:47:32', '4ZkLvKWd', '5044505'), + (953, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4ZkLvKWd', '5045826'), + (953, 1237, 'not_attending', '2022-02-18 08:27:24', '2025-12-17 19:47:32', '4ZkLvKWd', '5050641'), + (953, 1238, 'not_attending', '2022-02-24 03:12:55', '2025-12-17 19:47:32', '4ZkLvKWd', '5052236'), + (953, 1239, 'not_attending', '2022-03-03 00:40:07', '2025-12-17 19:47:33', '4ZkLvKWd', '5052238'), + (953, 1240, 'not_attending', '2022-03-16 21:17:45', '2025-12-17 19:47:33', '4ZkLvKWd', '5052239'), + (953, 1241, 'attending', '2022-03-23 22:48:04', '2025-12-17 19:47:25', '4ZkLvKWd', '5052240'), + (953, 1242, 'attending', '2022-03-27 17:04:55', '2025-12-17 19:47:25', '4ZkLvKWd', '5052241'), + (953, 1244, 'not_attending', '2022-02-24 03:13:39', '2025-12-17 19:47:33', '4ZkLvKWd', '5060490'), + (953, 1246, 'not_attending', '2022-03-03 00:40:13', '2025-12-17 19:47:33', '4ZkLvKWd', '5064727'), + (953, 1247, 'not_attending', '2022-02-24 03:13:20', '2025-12-17 19:47:33', '4ZkLvKWd', '5065027'), + (953, 1248, 'not_attending', '2022-02-24 03:13:29', '2025-12-17 19:47:33', '4ZkLvKWd', '5065064'), + (953, 1249, 'attending', '2022-03-09 15:24:18', '2025-12-17 19:47:33', '4ZkLvKWd', '5068530'), + (953, 1250, 'not_attending', '2022-03-03 00:40:23', '2025-12-17 19:47:33', '4ZkLvKWd', '5069735'), + (953, 1251, 'not_attending', '2022-03-03 00:42:09', '2025-12-17 19:47:33', '4ZkLvKWd', '5128466'), + (953, 1252, 'not_attending', '2022-03-03 00:40:34', '2025-12-17 19:47:33', '4ZkLvKWd', '5129121'), + (953, 1253, 'not_attending', '2022-03-03 00:41:45', '2025-12-17 19:47:33', '4ZkLvKWd', '5129122'), + (953, 1258, 'not_attending', '2022-03-03 00:40:18', '2025-12-17 19:47:33', '4ZkLvKWd', '5132531'), + (953, 1259, 'not_attending', '2022-03-03 00:42:00', '2025-12-17 19:47:33', '4ZkLvKWd', '5132533'), + (953, 1261, 'not_attending', '2022-03-08 00:03:53', '2025-12-17 19:47:33', '4ZkLvKWd', '5154274'), + (953, 1264, 'maybe', '2022-03-22 22:38:56', '2025-12-17 19:47:25', '4ZkLvKWd', '5160281'), + (953, 1265, 'attending', '2022-03-11 21:23:16', '2025-12-17 19:47:33', '4ZkLvKWd', '5160862'), + (953, 1266, 'attending', '2022-03-13 18:33:37', '2025-12-17 19:47:33', '4ZkLvKWd', '5166407'), + (953, 1267, 'not_attending', '2022-03-15 07:55:53', '2025-12-17 19:47:25', '4ZkLvKWd', '5169578'), + (953, 1268, 'not_attending', '2022-03-15 21:19:53', '2025-12-17 19:47:33', '4ZkLvKWd', '5176296'), + (953, 1269, 'not_attending', '2022-03-17 21:06:03', '2025-12-17 19:47:25', '4ZkLvKWd', '5179439'), + (953, 1270, 'attending', '2022-03-20 22:36:44', '2025-12-17 19:47:25', '4ZkLvKWd', '5181277'), + (953, 1272, 'attending', '2022-03-19 20:54:25', '2025-12-17 19:47:25', '4ZkLvKWd', '5186582'), + (953, 1273, 'attending', '2022-03-24 23:15:26', '2025-12-17 19:47:25', '4ZkLvKWd', '5186583'), + (953, 1274, 'attending', '2022-03-27 17:05:23', '2025-12-17 19:47:26', '4ZkLvKWd', '5186585'), + (953, 1275, 'not_attending', '2022-03-27 17:05:33', '2025-12-17 19:47:26', '4ZkLvKWd', '5186587'), + (953, 1276, 'attending', '2022-03-27 17:04:09', '2025-12-17 19:47:25', '4ZkLvKWd', '5186820'), + (953, 1279, 'not_attending', '2022-03-20 22:37:00', '2025-12-17 19:47:25', '4ZkLvKWd', '5187212'), + (953, 1281, 'maybe', '2022-04-09 21:14:18', '2025-12-17 19:47:27', '4ZkLvKWd', '5190437'), + (953, 1282, 'not_attending', '2022-03-21 23:04:45', '2025-12-17 19:47:25', '4ZkLvKWd', '5191241'), + (953, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4ZkLvKWd', '5195095'), + (953, 1285, 'not_attending', '2022-03-24 23:15:16', '2025-12-17 19:47:25', '4ZkLvKWd', '5196763'), + (953, 1287, 'not_attending', '2022-03-27 17:04:23', '2025-12-17 19:47:25', '4ZkLvKWd', '5199425'), + (953, 1288, 'not_attending', '2022-03-27 17:04:44', '2025-12-17 19:47:25', '4ZkLvKWd', '5199460'), + (953, 1290, 'not_attending', '2022-03-27 17:04:40', '2025-12-17 19:47:25', '4ZkLvKWd', '5200196'), + (953, 1291, 'not_attending', '2022-03-24 23:15:10', '2025-12-17 19:47:25', '4ZkLvKWd', '5200458'), + (953, 1293, 'maybe', '2022-03-27 22:11:33', '2025-12-17 19:47:27', '4ZkLvKWd', '5214641'), + (953, 1294, 'attending', '2022-04-03 01:56:48', '2025-12-17 19:47:26', '4ZkLvKWd', '5214686'), + (953, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4ZkLvKWd', '5215989'), + (953, 1300, 'not_attending', '2022-03-31 23:48:17', '2025-12-17 19:47:25', '4ZkLvKWd', '5217936'), + (953, 1301, 'attending', '2022-03-31 23:48:30', '2025-12-17 19:47:26', '4ZkLvKWd', '5218175'), + (953, 1302, 'maybe', '2022-04-08 18:19:33', '2025-12-17 19:47:27', '4ZkLvKWd', '5220867'), + (953, 1304, 'attending', '2022-04-06 19:07:47', '2025-12-17 19:47:26', '4ZkLvKWd', '5223468'), + (953, 1305, 'attending', '2022-04-09 21:14:29', '2025-12-17 19:47:27', '4ZkLvKWd', '5223673'), + (953, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4ZkLvKWd', '5223686'), + (953, 1308, 'not_attending', '2022-04-13 20:02:06', '2025-12-17 19:47:27', '4ZkLvKWd', '5226703'), + (953, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4ZkLvKWd', '5227432'), + (953, 1314, 'not_attending', '2022-04-11 03:01:15', '2025-12-17 19:47:27', '4ZkLvKWd', '5233137'), + (953, 1315, 'attending', '2022-04-22 22:24:43', '2025-12-17 19:47:27', '4ZkLvKWd', '5237522'), + (953, 1316, 'not_attending', '2022-04-13 20:02:18', '2025-12-17 19:47:27', '4ZkLvKWd', '5237536'), + (953, 1321, 'not_attending', '2022-04-22 20:08:41', '2025-12-17 19:47:27', '4ZkLvKWd', '5238355'), + (953, 1322, 'not_attending', '2022-04-26 20:58:22', '2025-12-17 19:47:27', '4ZkLvKWd', '5238356'), + (953, 1331, 'maybe', '2022-04-27 20:21:30', '2025-12-17 19:47:27', '4ZkLvKWd', '5242156'), + (953, 1337, 'attending', '2022-04-20 21:08:55', '2025-12-17 19:47:27', '4ZkLvKWd', '5245036'), + (953, 1340, 'not_attending', '2022-04-27 20:21:39', '2025-12-17 19:47:27', '4ZkLvKWd', '5245754'), + (953, 1346, 'attending', '2022-04-23 21:59:35', '2025-12-17 19:47:27', '4ZkLvKWd', '5247467'), + (953, 1349, 'not_attending', '2022-04-27 20:21:17', '2025-12-17 19:47:27', '4ZkLvKWd', '5249631'), + (953, 1360, 'not_attending', '2022-04-26 20:58:13', '2025-12-17 19:47:27', '4ZkLvKWd', '5260197'), + (953, 1362, 'maybe', '2022-04-29 01:20:13', '2025-12-17 19:47:28', '4ZkLvKWd', '5260800'), + (953, 1363, 'not_attending', '2022-04-27 20:22:16', '2025-12-17 19:47:28', '4ZkLvKWd', '5261577'), + (953, 1366, 'not_attending', '2022-04-27 20:21:45', '2025-12-17 19:47:27', '4ZkLvKWd', '5262344'), + (953, 1370, 'not_attending', '2022-04-29 01:20:09', '2025-12-17 19:47:28', '4ZkLvKWd', '5263775'), + (953, 1371, 'attending', '2022-04-27 20:18:11', '2025-12-17 19:47:27', '4ZkLvKWd', '5263784'), + (953, 1372, 'maybe', '2022-05-03 18:57:36', '2025-12-17 19:47:28', '4ZkLvKWd', '5264352'), + (953, 1374, 'attending', '2022-05-07 04:34:37', '2025-12-17 19:47:28', '4ZkLvKWd', '5269930'), + (953, 1376, 'not_attending', '2022-05-11 21:37:39', '2025-12-17 19:47:28', '4ZkLvKWd', '5271446'), + (953, 1377, 'not_attending', '2022-05-13 22:30:20', '2025-12-17 19:47:28', '4ZkLvKWd', '5271447'), + (953, 1378, 'not_attending', '2022-05-07 22:21:07', '2025-12-17 19:47:29', '4ZkLvKWd', '5271448'), + (953, 1379, 'not_attending', '2022-05-21 19:19:18', '2025-12-17 19:47:30', '4ZkLvKWd', '5271449'), + (953, 1382, 'maybe', '2022-05-09 21:38:17', '2025-12-17 19:47:28', '4ZkLvKWd', '5276350'), + (953, 1383, 'attending', '2022-05-13 22:32:57', '2025-12-17 19:47:28', '4ZkLvKWd', '5276469'), + (953, 1385, 'maybe', '2022-05-11 21:37:27', '2025-12-17 19:47:28', '4ZkLvKWd', '5277822'), + (953, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4ZkLvKWd', '5278159'), + (953, 1393, 'not_attending', '2022-06-08 16:33:25', '2025-12-17 19:47:30', '4ZkLvKWd', '5280603'), + (953, 1399, 'not_attending', '2022-05-11 21:37:43', '2025-12-17 19:47:28', '4ZkLvKWd', '5281796'), + (953, 1407, 'attending', '2022-06-04 21:04:41', '2025-12-17 19:47:30', '4ZkLvKWd', '5363695'), + (953, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4ZkLvKWd', '5365960'), + (953, 1415, 'attending', '2022-06-03 05:20:58', '2025-12-17 19:47:30', '4ZkLvKWd', '5368973'), + (953, 1416, 'not_attending', '2022-05-29 23:05:38', '2025-12-17 19:47:30', '4ZkLvKWd', '5369628'), + (953, 1419, 'attending', '2022-06-08 16:32:59', '2025-12-17 19:47:30', '4ZkLvKWd', '5373081'), + (953, 1421, 'not_attending', '2022-05-30 21:45:49', '2025-12-17 19:47:30', '4ZkLvKWd', '5374885'), + (953, 1423, 'not_attending', '2022-06-15 22:37:08', '2025-12-17 19:47:17', '4ZkLvKWd', '5375727'), + (953, 1424, 'maybe', '2022-05-26 19:50:50', '2025-12-17 19:47:30', '4ZkLvKWd', '5375772'), + (953, 1427, 'maybe', '2022-05-24 22:14:16', '2025-12-17 19:47:30', '4ZkLvKWd', '5376074'), + (953, 1428, 'maybe', '2022-06-08 16:33:32', '2025-12-17 19:47:30', '4ZkLvKWd', '5378247'), + (953, 1429, 'not_attending', '2022-05-30 21:45:43', '2025-12-17 19:47:30', '4ZkLvKWd', '5388761'), + (953, 1430, 'not_attending', '2022-06-08 16:33:13', '2025-12-17 19:47:30', '4ZkLvKWd', '5389402'), + (953, 1431, 'attending', '2022-06-10 18:55:25', '2025-12-17 19:47:30', '4ZkLvKWd', '5389605'), + (953, 1432, 'not_attending', '2022-06-03 05:21:58', '2025-12-17 19:47:30', '4ZkLvKWd', '5391566'), + (953, 1433, 'not_attending', '2022-06-03 05:22:01', '2025-12-17 19:47:30', '4ZkLvKWd', '5391667'), + (953, 1435, 'attending', '2022-06-02 20:55:39', '2025-12-17 19:47:30', '4ZkLvKWd', '5394015'), + (953, 1439, 'not_attending', '2022-06-06 22:25:13', '2025-12-17 19:47:30', '4ZkLvKWd', '5396072'), + (953, 1440, 'not_attending', '2022-06-07 22:21:15', '2025-12-17 19:47:30', '4ZkLvKWd', '5396080'), + (953, 1441, 'maybe', '2022-06-05 22:31:23', '2025-12-17 19:47:30', '4ZkLvKWd', '5397171'), + (953, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4ZkLvKWd', '5397265'), + (953, 1446, 'maybe', '2022-06-08 16:33:10', '2025-12-17 19:47:30', '4ZkLvKWd', '5399721'), + (953, 1447, 'not_attending', '2022-06-08 16:33:20', '2025-12-17 19:47:30', '4ZkLvKWd', '5401089'), + (953, 1448, 'not_attending', '2022-06-07 22:21:22', '2025-12-17 19:47:30', '4ZkLvKWd', '5401479'), + (953, 1451, 'attending', '2022-06-15 22:36:00', '2025-12-17 19:47:17', '4ZkLvKWd', '5403967'), + (953, 1453, 'not_attending', '2022-06-11 22:10:07', '2025-12-17 19:47:31', '4ZkLvKWd', '5404745'), + (953, 1454, 'not_attending', '2022-06-11 22:10:01', '2025-12-17 19:47:31', '4ZkLvKWd', '5404771'), + (953, 1457, 'not_attending', '2022-06-11 22:09:57', '2025-12-17 19:47:31', '4ZkLvKWd', '5404780'), + (953, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4ZkLvKWd', '5404786'), + (953, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4ZkLvKWd', '5405203'), + (953, 1478, 'maybe', '2022-06-23 22:33:50', '2025-12-17 19:47:19', '4ZkLvKWd', '5408794'), + (953, 1479, 'not_attending', '2022-06-17 21:17:27', '2025-12-17 19:47:17', '4ZkLvKWd', '5410322'), + (953, 1480, 'maybe', '2022-06-29 22:14:07', '2025-12-17 19:47:19', '4ZkLvKWd', '5411699'), + (953, 1482, 'attending', '2022-06-25 22:27:42', '2025-12-17 19:47:19', '4ZkLvKWd', '5412550'), + (953, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4ZkLvKWd', '5415046'), + (953, 1495, 'not_attending', '2022-06-29 22:14:04', '2025-12-17 19:47:19', '4ZkLvKWd', '5422086'), + (953, 1498, 'not_attending', '2022-06-29 22:13:59', '2025-12-17 19:47:19', '4ZkLvKWd', '5422406'), + (953, 1501, 'not_attending', '2022-06-29 22:14:33', '2025-12-17 19:47:19', '4ZkLvKWd', '5424546'), + (953, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4ZkLvKWd', '5424565'), + (953, 1504, 'maybe', '2022-07-05 18:51:44', '2025-12-17 19:47:19', '4ZkLvKWd', '5426882'), + (953, 1505, 'not_attending', '2022-07-05 01:12:39', '2025-12-17 19:47:19', '4ZkLvKWd', '5427083'), + (953, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4ZkLvKWd', '5441125'), + (953, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4ZkLvKWd', '5441126'), + (953, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4ZkLvKWd', '5441128'), + (953, 1516, 'attending', '2022-08-20 19:04:05', '2025-12-17 19:47:23', '4ZkLvKWd', '5441129'), + (953, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4ZkLvKWd', '5446643'), + (953, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4ZkLvKWd', '5453325'), + (953, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4ZkLvKWd', '5454516'), + (953, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4ZkLvKWd', '5454605'), + (953, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4ZkLvKWd', '5455037'), + (953, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4ZkLvKWd', '5461278'), + (953, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4ZkLvKWd', '5469480'), + (953, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4ZkLvKWd', '5471073'), + (953, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4ZkLvKWd', '5474663'), + (953, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4ZkLvKWd', '5482022'), + (953, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4ZkLvKWd', '5482793'), + (953, 1580, 'maybe', '2022-08-10 02:37:45', '2025-12-17 19:47:22', '4ZkLvKWd', '5488912'), + (953, 1581, 'maybe', '2022-08-10 02:37:54', '2025-12-17 19:47:22', '4ZkLvKWd', '5490302'), + (953, 1582, 'not_attending', '2022-08-20 19:04:12', '2025-12-17 19:47:23', '4ZkLvKWd', '5492001'), + (953, 1585, 'attending', '2022-08-07 23:25:19', '2025-12-17 19:47:22', '4ZkLvKWd', '5492013'), + (953, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4ZkLvKWd', '5492192'), + (953, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4ZkLvKWd', '5493139'), + (953, 1589, 'maybe', '2022-08-20 19:04:23', '2025-12-17 19:47:23', '4ZkLvKWd', '5493159'), + (953, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4ZkLvKWd', '5493200'), + (953, 1595, 'not_attending', '2022-08-12 21:02:03', '2025-12-17 19:47:22', '4ZkLvKWd', '5495736'), + (953, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4ZkLvKWd', '5502188'), + (953, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4ZkLvKWd', '5512862'), + (953, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4ZkLvKWd', '5513985'), + (953, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4ZkLvKWd', '6045684'), + (954, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dzO27l1m', '4694407'), + (954, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dzO27l1m', '4736497'), + (954, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dzO27l1m', '4736499'), + (954, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dzO27l1m', '4736500'), + (954, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dzO27l1m', '4736503'), + (954, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dzO27l1m', '4736504'), + (954, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dzO27l1m', '4746789'), + (954, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dzO27l1m', '4753929'), + (954, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dzO27l1m', '5038850'), + (954, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dzO27l1m', '5045826'), + (954, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dzO27l1m', '5132533'), + (954, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dzO27l1m', '6045684'), + (955, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4ZkENLLd', '4356801'), + (955, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', '4ZkENLLd', '4366187'), + (955, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4ZkENLLd', '4420735'), + (955, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4ZkENLLd', '4420738'), + (955, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4ZkENLLd', '4420739'), + (955, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4ZkENLLd', '4420741'), + (955, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4ZkENLLd', '4420744'), + (955, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4ZkENLLd', '4420747'), + (955, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4ZkENLLd', '4420748'), + (955, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4ZkENLLd', '4420749'), + (955, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4ZkENLLd', '4461883'), + (955, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4ZkENLLd', '6045684'), + (956, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6YlDZRd', '6045684'), + (957, 1507, 'attending', '2022-07-29 01:04:26', '2025-12-17 19:47:19', '4vEyyVkA', '5433100'), + (957, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4vEyyVkA', '5441128'), + (957, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4vEyyVkA', '5441131'), + (957, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4vEyyVkA', '5441132'), + (957, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4vEyyVkA', '5461278'), + (957, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4vEyyVkA', '5469480'), + (957, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', '4vEyyVkA', '5471073'), + (957, 1567, 'attending', '2022-07-31 05:29:35', '2025-12-17 19:47:21', '4vEyyVkA', '5477629'), + (957, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4vEyyVkA', '5482022'), + (957, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4vEyyVkA', '5482793'), + (957, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4vEyyVkA', '5488912'), + (957, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4vEyyVkA', '5492192'), + (957, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4vEyyVkA', '5493139'), + (957, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4vEyyVkA', '5493200'), + (957, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4vEyyVkA', '5502188'), + (957, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4vEyyVkA', '5505059'), + (957, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4vEyyVkA', '5509055'), + (957, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4vEyyVkA', '5512862'), + (957, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4vEyyVkA', '5513985'), + (957, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4vEyyVkA', '5522550'), + (957, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4vEyyVkA', '5534683'), + (957, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4vEyyVkA', '5537735'), + (957, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4vEyyVkA', '5540859'), + (957, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4vEyyVkA', '5546619'), + (957, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4vEyyVkA', '5555245'), + (957, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4vEyyVkA', '5557747'), + (957, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4vEyyVkA', '5560255'), + (957, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4vEyyVkA', '5562906'), + (957, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4vEyyVkA', '5600604'), + (957, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4vEyyVkA', '5605544'), + (957, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', '4vEyyVkA', '5606737'), + (957, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4vEyyVkA', '5635406'), + (957, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4vEyyVkA', '5638765'), + (957, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '4vEyyVkA', '5640843'), + (957, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4vEyyVkA', '6045684'), + (958, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', '4EQLVPn4', '5186585'), + (958, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4EQLVPn4', '5195095'), + (958, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4EQLVPn4', '5215989'), + (958, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4EQLVPn4', '5223686'), + (958, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4EQLVPn4', '5227432'), + (958, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4EQLVPn4', '5247467'), + (958, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4EQLVPn4', '5260800'), + (958, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4EQLVPn4', '5269930'), + (958, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4EQLVPn4', '5271448'), + (958, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4EQLVPn4', '5271449'), + (958, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4EQLVPn4', '5276469'), + (958, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4EQLVPn4', '5278159'), + (958, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4EQLVPn4', '6045684'), + (959, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'mLzPbxy4', '4637896'), + (959, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mLzPbxy4', '4642994'), + (959, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'mLzPbxy4', '4642995'), + (959, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mLzPbxy4', '4642996'), + (959, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mLzPbxy4', '4642997'), + (959, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mLzPbxy4', '4645687'), + (959, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mLzPbxy4', '4645698'), + (959, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mLzPbxy4', '4645704'), + (959, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mLzPbxy4', '4645705'), + (959, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mLzPbxy4', '4668385'), + (959, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mLzPbxy4', '4694407'), + (959, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mLzPbxy4', '4736497'), + (959, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mLzPbxy4', '4736499'), + (959, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mLzPbxy4', '4736500'), + (959, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mLzPbxy4', '4736503'), + (959, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mLzPbxy4', '4736504'), + (959, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mLzPbxy4', '4746789'), + (959, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mLzPbxy4', '4753929'), + (959, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mLzPbxy4', '5038850'), + (959, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mLzPbxy4', '5045826'), + (959, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mLzPbxy4', '5132533'), + (959, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mLzPbxy4', '6045684'), + (960, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4ZgwX0Xd', '5900202'), + (960, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4ZgwX0Xd', '5900203'), + (960, 1917, 'maybe', '2023-03-12 16:07:19', '2025-12-17 19:47:10', '4ZgwX0Xd', '5910528'), + (960, 1943, 'not_attending', '2023-03-11 01:08:02', '2025-12-17 19:47:10', '4ZgwX0Xd', '5962091'), + (960, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '4ZgwX0Xd', '5962317'), + (960, 1949, 'maybe', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4ZgwX0Xd', '5962318'), + (960, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4ZgwX0Xd', '5965933'), + (960, 1957, 'maybe', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4ZgwX0Xd', '5972815'), + (960, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4ZgwX0Xd', '5981515'), + (960, 1969, 'attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4ZgwX0Xd', '5993516'), + (960, 1971, 'attending', '2023-03-20 18:42:19', '2025-12-17 19:46:56', '4ZgwX0Xd', '5993765'), + (960, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4ZgwX0Xd', '5998939'), + (960, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4ZgwX0Xd', '6028191'), + (960, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4ZgwX0Xd', '6040066'), + (960, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4ZgwX0Xd', '6042717'), + (960, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4ZgwX0Xd', '6044838'), + (960, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4ZgwX0Xd', '6044839'), + (960, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZgwX0Xd', '6045684'), + (960, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4ZgwX0Xd', '6050104'), + (960, 2005, 'maybe', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4ZgwX0Xd', '6053195'), + (960, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4ZgwX0Xd', '6053198'), + (960, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4ZgwX0Xd', '6056085'), + (960, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4ZgwX0Xd', '6056916'), + (960, 2012, 'attending', '2023-04-10 23:15:12', '2025-12-17 19:46:59', '4ZgwX0Xd', '6059290'), + (960, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4ZgwX0Xd', '6060328'), + (960, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4ZgwX0Xd', '6061037'), + (960, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4ZgwX0Xd', '6061039'), + (960, 2018, 'attending', '2023-04-12 00:51:19', '2025-12-17 19:46:59', '4ZgwX0Xd', '6061171'), + (960, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4ZgwX0Xd', '6067245'), + (960, 2027, 'maybe', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4ZgwX0Xd', '6068094'), + (960, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4ZgwX0Xd', '6068252'), + (960, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4ZgwX0Xd', '6068253'), + (960, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4ZgwX0Xd', '6068254'), + (960, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4ZgwX0Xd', '6068280'), + (960, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4ZgwX0Xd', '6069093'), + (960, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4ZgwX0Xd', '6072528'), + (960, 2045, 'maybe', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4ZgwX0Xd', '6075556'), + (960, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4ZgwX0Xd', '6079840'), + (960, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4ZgwX0Xd', '6083398'), + (960, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4ZgwX0Xd', '6093504'), + (960, 2060, 'maybe', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4ZgwX0Xd', '6097414'), + (960, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4ZgwX0Xd', '6097442'), + (960, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4ZgwX0Xd', '6097684'), + (960, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4ZgwX0Xd', '6098762'), + (960, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4ZgwX0Xd', '6101362'), + (960, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4ZgwX0Xd', '6107314'), + (961, 1379, 'not_attending', '2022-05-21 01:26:15', '2025-12-17 19:47:30', 'myDlkJgd', '5271449'), + (961, 1380, 'attending', '2022-05-25 23:02:38', '2025-12-17 19:47:30', 'myDlkJgd', '5271450'), + (961, 1407, 'attending', '2022-05-29 15:43:57', '2025-12-17 19:47:30', 'myDlkJgd', '5363695'), + (961, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'myDlkJgd', '5365960'), + (961, 1409, 'not_attending', '2022-05-20 21:25:16', '2025-12-17 19:47:30', 'myDlkJgd', '5367032'), + (961, 1415, 'attending', '2022-05-29 15:43:53', '2025-12-17 19:47:30', 'myDlkJgd', '5368973'), + (961, 1419, 'attending', '2022-06-05 21:05:05', '2025-12-17 19:47:30', 'myDlkJgd', '5373081'), + (961, 1423, 'attending', '2022-06-10 18:53:14', '2025-12-17 19:47:17', 'myDlkJgd', '5375727'), + (961, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'myDlkJgd', '5378247'), + (961, 1431, 'not_attending', '2022-06-07 19:20:34', '2025-12-17 19:47:31', 'myDlkJgd', '5389605'), + (961, 1433, 'attending', '2022-05-31 22:02:56', '2025-12-17 19:47:30', 'myDlkJgd', '5391667'), + (961, 1437, 'attending', '2022-06-02 00:18:51', '2025-12-17 19:47:30', 'myDlkJgd', '5394493'), + (961, 1440, 'attending', '2022-06-05 21:04:18', '2025-12-17 19:47:30', 'myDlkJgd', '5396080'), + (961, 1442, 'attending', '2022-06-10 18:53:50', '2025-12-17 19:47:17', 'myDlkJgd', '5397265'), + (961, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'myDlkJgd', '5403967'), + (961, 1454, 'not_attending', '2022-06-13 02:23:01', '2025-12-17 19:47:31', 'myDlkJgd', '5404771'), + (961, 1455, 'not_attending', '2022-06-13 22:19:16', '2025-12-17 19:47:31', 'myDlkJgd', '5404772'), + (961, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'myDlkJgd', '5404786'), + (961, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'myDlkJgd', '5405203'), + (961, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'myDlkJgd', '5408794'), + (961, 1480, 'attending', '2022-06-26 16:36:40', '2025-12-17 19:47:19', 'myDlkJgd', '5411699'), + (961, 1482, 'attending', '2022-06-20 15:05:28', '2025-12-17 19:47:19', 'myDlkJgd', '5412550'), + (961, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'myDlkJgd', '5415046'), + (961, 1491, 'not_attending', '2022-07-02 18:34:02', '2025-12-17 19:47:19', 'myDlkJgd', '5420158'), + (961, 1492, 'not_attending', '2022-07-05 14:03:04', '2025-12-17 19:47:19', 'myDlkJgd', '5420175'), + (961, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'myDlkJgd', '5422086'), + (961, 1496, 'attending', '2022-06-26 16:39:42', '2025-12-17 19:47:19', 'myDlkJgd', '5422404'), + (961, 1497, 'attending', '2022-06-26 16:39:45', '2025-12-17 19:47:19', 'myDlkJgd', '5422405'), + (961, 1498, 'attending', '2022-06-26 16:40:54', '2025-12-17 19:47:19', 'myDlkJgd', '5422406'), + (961, 1500, 'not_attending', '2022-07-05 14:02:52', '2025-12-17 19:47:19', 'myDlkJgd', '5423915'), + (961, 1501, 'not_attending', '2022-06-29 23:43:05', '2025-12-17 19:47:19', 'myDlkJgd', '5424546'), + (961, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'myDlkJgd', '5424565'), + (961, 1504, 'not_attending', '2022-07-11 16:09:10', '2025-12-17 19:47:19', 'myDlkJgd', '5426882'), + (961, 1505, 'not_attending', '2022-07-02 18:34:40', '2025-12-17 19:47:19', 'myDlkJgd', '5427083'), + (961, 1508, 'attending', '2022-07-11 16:08:52', '2025-12-17 19:47:19', 'myDlkJgd', '5433453'), + (961, 1513, 'not_attending', '2022-07-09 16:05:36', '2025-12-17 19:47:20', 'myDlkJgd', '5441125'), + (961, 1514, 'attending', '2022-07-17 16:01:23', '2025-12-17 19:47:20', 'myDlkJgd', '5441126'), + (961, 1515, 'not_attending', '2022-08-01 03:34:17', '2025-12-17 19:47:21', 'myDlkJgd', '5441128'), + (961, 1516, 'attending', '2022-08-15 01:53:39', '2025-12-17 19:47:23', 'myDlkJgd', '5441129'), + (961, 1517, 'attending', '2022-08-24 16:14:16', '2025-12-17 19:47:23', 'myDlkJgd', '5441130'), + (961, 1522, 'not_attending', '2022-07-17 16:00:42', '2025-12-17 19:47:20', 'myDlkJgd', '5442832'), + (961, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'myDlkJgd', '5446643'), + (961, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'myDlkJgd', '5453325'), + (961, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'myDlkJgd', '5454516'), + (961, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'myDlkJgd', '5454605'), + (961, 1546, 'not_attending', '2022-07-25 16:08:55', '2025-12-17 19:47:20', 'myDlkJgd', '5454607'), + (961, 1547, 'not_attending', '2022-07-25 03:05:59', '2025-12-17 19:47:20', 'myDlkJgd', '5454608'), + (961, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'myDlkJgd', '5455037'), + (961, 1553, 'attending', '2022-07-19 23:06:36', '2025-12-17 19:47:20', 'myDlkJgd', '5455164'), + (961, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'myDlkJgd', '5461278'), + (961, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'myDlkJgd', '5469480'), + (961, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'myDlkJgd', '5471073'), + (961, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'myDlkJgd', '5474663'), + (961, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'myDlkJgd', '5482022'), + (961, 1573, 'not_attending', '2022-08-07 17:33:03', '2025-12-17 19:47:22', 'myDlkJgd', '5482152'), + (961, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'myDlkJgd', '5482793'), + (961, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'myDlkJgd', '5488912'), + (961, 1583, 'attending', '2022-08-08 03:29:25', '2025-12-17 19:47:22', 'myDlkJgd', '5492002'), + (961, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'myDlkJgd', '5492192'), + (961, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'myDlkJgd', '5493139'), + (961, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'myDlkJgd', '5493200'), + (961, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'myDlkJgd', '5502188'), + (961, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'myDlkJgd', '5512862'), + (961, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'myDlkJgd', '5513985'), + (961, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myDlkJgd', '6045684'), + (962, 646, 'not_attending', '2021-05-12 14:13:28', '2025-12-17 19:47:46', '2d2EloM4', '3539921'), + (962, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '2d2EloM4', '3539922'), + (962, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '2d2EloM4', '3806392'), + (962, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2EloM4', '6045684'), + (963, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4WP72Xjd', '4736497'), + (963, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4WP72Xjd', '4736500'), + (963, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4WP72Xjd', '4746789'), + (963, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4WP72Xjd', '4753929'), + (963, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WP72Xjd', '6045684'), + (964, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVgJGDrm', '5880943'), + (964, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVgJGDrm', '5900202'), + (964, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVgJGDrm', '5900203'), + (964, 1916, 'not_attending', '2023-03-01 16:36:14', '2025-12-17 19:47:08', 'dVgJGDrm', '5910526'), + (964, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dVgJGDrm', '5910528'), + (964, 1943, 'attending', '2023-03-03 19:09:19', '2025-12-17 19:47:10', 'dVgJGDrm', '5962091'), + (964, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dVgJGDrm', '5962317'), + (964, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dVgJGDrm', '5962318'), + (964, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVgJGDrm', '5965933'), + (964, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVgJGDrm', '5967014'), + (964, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVgJGDrm', '5972815'), + (964, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVgJGDrm', '5974016'), + (964, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVgJGDrm', '5981515'), + (964, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVgJGDrm', '5993516'), + (964, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVgJGDrm', '5998939'), + (964, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVgJGDrm', '6028191'), + (964, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVgJGDrm', '6040066'), + (964, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVgJGDrm', '6042717'), + (964, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVgJGDrm', '6044838'), + (964, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVgJGDrm', '6044839'), + (964, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVgJGDrm', '6045684'), + (964, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'dVgJGDrm', '6048955'), + (964, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVgJGDrm', '6050104'), + (964, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVgJGDrm', '6053195'), + (964, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVgJGDrm', '6053198'), + (964, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVgJGDrm', '6056085'), + (964, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVgJGDrm', '6056916'), + (964, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVgJGDrm', '6059290'), + (964, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVgJGDrm', '6060328'), + (964, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVgJGDrm', '6061037'), + (964, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVgJGDrm', '6061039'), + (964, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVgJGDrm', '6067245'), + (964, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVgJGDrm', '6068094'), + (964, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVgJGDrm', '6068252'), + (964, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVgJGDrm', '6068253'), + (964, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVgJGDrm', '6068254'), + (964, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVgJGDrm', '6068280'), + (964, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVgJGDrm', '6069093'), + (964, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVgJGDrm', '6072528'), + (964, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVgJGDrm', '6079840'), + (964, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVgJGDrm', '6083398'), + (964, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVgJGDrm', '6093504'), + (964, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVgJGDrm', '6097414'), + (964, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVgJGDrm', '6097442'), + (964, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVgJGDrm', '6097684'), + (964, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVgJGDrm', '6098762'), + (964, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVgJGDrm', '6101362'), + (964, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVgJGDrm', '6107314'), + (964, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dVgJGDrm', '6120034'), + (965, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DYbJZLd', '6045684'), + (966, 258, 'not_attending', '2021-06-01 01:29:28', '2025-12-17 19:47:47', '0mqjJWlA', '3149489'), + (966, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '0mqjJWlA', '3149491'), + (966, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', '0mqjJWlA', '3149493'), + (966, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', '0mqjJWlA', '3236448'), + (966, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '0mqjJWlA', '3236450'), + (966, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '0mqjJWlA', '3974109'), + (966, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '0mqjJWlA', '3975311'), + (966, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '0mqjJWlA', '3975312'), + (966, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '0mqjJWlA', '3994992'), + (966, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '0mqjJWlA', '4014338'), + (966, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '0mqjJWlA', '4021848'), + (966, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '0mqjJWlA', '4136744'), + (966, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '0mqjJWlA', '4136937'), + (966, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '0mqjJWlA', '4136938'), + (966, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '0mqjJWlA', '4136947'), + (966, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '0mqjJWlA', '4225444'), + (966, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '0mqjJWlA', '4229417'), + (966, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '0mqjJWlA', '4229418'), + (966, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '0mqjJWlA', '4239259'), + (966, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '0mqjJWlA', '4250163'), + (966, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqjJWlA', '6045684'), + (967, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'd2OXVO8m', '5962318'), + (967, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'd2OXVO8m', '6028191'), + (967, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd2OXVO8m', '6044838'), + (967, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd2OXVO8m', '6044839'), + (967, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2OXVO8m', '6045684'), + (967, 1993, 'attending', '2023-04-03 17:09:14', '2025-12-17 19:46:58', 'd2OXVO8m', '6048955'), + (967, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd2OXVO8m', '6050104'), + (967, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd2OXVO8m', '6053195'), + (967, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd2OXVO8m', '6053198'), + (967, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd2OXVO8m', '6056085'), + (967, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd2OXVO8m', '6056916'), + (967, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd2OXVO8m', '6059290'), + (967, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd2OXVO8m', '6060328'), + (967, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd2OXVO8m', '6061037'), + (967, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd2OXVO8m', '6061039'), + (967, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd2OXVO8m', '6067245'), + (967, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd2OXVO8m', '6068094'), + (967, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd2OXVO8m', '6068252'), + (967, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd2OXVO8m', '6068253'), + (967, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd2OXVO8m', '6068254'), + (967, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd2OXVO8m', '6068280'), + (967, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd2OXVO8m', '6069093'), + (967, 2034, 'attending', '2023-04-21 16:37:52', '2025-12-17 19:47:00', 'd2OXVO8m', '6069372'), + (967, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd2OXVO8m', '6072528'), + (967, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd2OXVO8m', '6079840'), + (967, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd2OXVO8m', '6083398'), + (967, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd2OXVO8m', '6093504'), + (967, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd2OXVO8m', '6097414'), + (967, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd2OXVO8m', '6097442'), + (967, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd2OXVO8m', '6097684'), + (967, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd2OXVO8m', '6098762'), + (967, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd2OXVO8m', '6101362'), + (967, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd2OXVO8m', '6107314'), + (967, 2085, 'attending', '2023-05-29 20:40:31', '2025-12-17 19:47:04', 'd2OXVO8m', '6118068'), + (967, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd2OXVO8m', '6120034'), + (968, 645, 'not_attending', '2021-04-25 17:27:14', '2025-12-17 19:47:46', 'oAgeGNqd', '3539920'), + (968, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'oAgeGNqd', '3539921'), + (968, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'oAgeGNqd', '3539922'), + (968, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'oAgeGNqd', '3539923'), + (968, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'oAgeGNqd', '3583262'), + (968, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAgeGNqd', '3793156'), + (968, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAgeGNqd', '3975311'), + (968, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAgeGNqd', '3994992'), + (968, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgeGNqd', '6045684'), + (969, 1514, 'maybe', '2022-07-20 00:56:32', '2025-12-17 19:47:20', '4orbn6JA', '5441126'), + (969, 1515, 'attending', '2022-08-04 23:57:07', '2025-12-17 19:47:21', '4orbn6JA', '5441128'), + (969, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4orbn6JA', '5441131'), + (969, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4orbn6JA', '5441132'), + (969, 1522, 'attending', '2022-07-19 13:46:15', '2025-12-17 19:47:20', '4orbn6JA', '5442832'), + (969, 1536, 'attending', '2022-07-18 23:09:03', '2025-12-17 19:47:20', '4orbn6JA', '5449068'), + (969, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4orbn6JA', '5453325'), + (969, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4orbn6JA', '5454516'), + (969, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4orbn6JA', '5454605'), + (969, 1546, 'maybe', '2022-07-24 14:48:48', '2025-12-17 19:47:20', '4orbn6JA', '5454607'), + (969, 1551, 'attending', '2022-07-19 21:43:14', '2025-12-17 19:47:20', '4orbn6JA', '5455037'), + (969, 1557, 'maybe', '2022-08-03 22:52:52', '2025-12-17 19:47:21', '4orbn6JA', '5458729'), + (969, 1561, 'maybe', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4orbn6JA', '5461278'), + (969, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4orbn6JA', '5469480'), + (969, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4orbn6JA', '5471073'), + (969, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '4orbn6JA', '5474663'), + (969, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4orbn6JA', '5482022'), + (969, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4orbn6JA', '5482793'), + (969, 1580, 'maybe', '2022-08-10 15:28:20', '2025-12-17 19:47:22', '4orbn6JA', '5488912'), + (969, 1581, 'maybe', '2022-08-11 18:07:17', '2025-12-17 19:47:22', '4orbn6JA', '5490302'), + (969, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4orbn6JA', '5492192'), + (969, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4orbn6JA', '5493139'), + (969, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4orbn6JA', '5493200'), + (969, 1595, 'maybe', '2022-08-12 18:11:28', '2025-12-17 19:47:22', '4orbn6JA', '5495736'), + (969, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4orbn6JA', '5502188'), + (969, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4orbn6JA', '5505059'), + (969, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4orbn6JA', '5509055'), + (969, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4orbn6JA', '5512862'), + (969, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4orbn6JA', '5513985'), + (969, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '4orbn6JA', '5519981'), + (969, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4orbn6JA', '5522550'), + (969, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4orbn6JA', '5534683'), + (969, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4orbn6JA', '5537735'), + (969, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4orbn6JA', '5540859'), + (969, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4orbn6JA', '5546619'), + (969, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4orbn6JA', '5555245'), + (969, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4orbn6JA', '5557747'), + (969, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4orbn6JA', '5560255'), + (969, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4orbn6JA', '5562906'), + (969, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4orbn6JA', '5600604'), + (969, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4orbn6JA', '5605544'), + (969, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', '4orbn6JA', '5606737'), + (969, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4orbn6JA', '5635406'), + (969, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4orbn6JA', '5638765'), + (969, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '4orbn6JA', '5640843'), + (969, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4orbn6JA', '5641521'), + (969, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4orbn6JA', '5652395'), + (969, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4orbn6JA', '6045684'), + (970, 1419, 'maybe', '2022-06-08 23:09:14', '2025-12-17 19:47:30', '41WD6j8m', '5373081'), + (970, 1442, 'not_attending', '2022-06-12 02:47:11', '2025-12-17 19:47:17', '41WD6j8m', '5397265'), + (970, 1448, 'attending', '2022-06-07 02:24:55', '2025-12-17 19:47:30', '41WD6j8m', '5401479'), + (970, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WD6j8m', '5403967'), + (970, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WD6j8m', '5404786'), + (970, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WD6j8m', '5405203'), + (970, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '41WD6j8m', '5408794'), + (970, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WD6j8m', '5411699'), + (970, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WD6j8m', '5412550'), + (970, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WD6j8m', '5415046'), + (970, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WD6j8m', '5422086'), + (970, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WD6j8m', '5422406'), + (970, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WD6j8m', '5424565'), + (970, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WD6j8m', '5426882'), + (970, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WD6j8m', '5427083'), + (970, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41WD6j8m', '5441125'), + (970, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WD6j8m', '5441126'), + (970, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WD6j8m', '5441128'), + (970, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WD6j8m', '5446643'), + (970, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WD6j8m', '5453325'), + (970, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WD6j8m', '5454516'), + (970, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WD6j8m', '5454605'), + (970, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WD6j8m', '5455037'), + (970, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WD6j8m', '5461278'), + (970, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WD6j8m', '5469480'), + (970, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WD6j8m', '5471073'), + (970, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '41WD6j8m', '5474663'), + (970, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WD6j8m', '5482022'), + (970, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WD6j8m', '5482793'), + (970, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WD6j8m', '5488912'), + (970, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WD6j8m', '5492192'), + (970, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WD6j8m', '5493139'), + (970, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WD6j8m', '5493200'), + (970, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WD6j8m', '5502188'), + (970, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WD6j8m', '5512862'), + (970, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WD6j8m', '5513985'), + (970, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WD6j8m', '6045684'), + (971, 1207, 'attending', '2022-05-08 09:09:32', '2025-12-17 19:47:28', 'ArQK5rBm', '4773579'), + (971, 1322, 'attending', '2022-04-25 17:33:58', '2025-12-17 19:47:27', 'ArQK5rBm', '5238356'), + (971, 1323, 'not_attending', '2022-04-25 08:55:12', '2025-12-17 19:47:27', 'ArQK5rBm', '5238357'), + (971, 1324, 'attending', '2022-04-27 19:55:01', '2025-12-17 19:47:27', 'ArQK5rBm', '5238360'), + (971, 1325, 'not_attending', '2022-04-29 21:52:36', '2025-12-17 19:47:28', 'ArQK5rBm', '5238361'), + (971, 1326, 'not_attending', '2022-04-29 21:52:53', '2025-12-17 19:47:28', 'ArQK5rBm', '5238362'), + (971, 1327, 'not_attending', '2022-04-25 19:48:02', '2025-12-17 19:47:27', 'ArQK5rBm', '5238445'), + (971, 1337, 'not_attending', '2022-05-09 09:21:08', '2025-12-17 19:47:27', 'ArQK5rBm', '5245036'), + (971, 1340, 'maybe', '2022-04-27 06:49:20', '2025-12-17 19:47:27', 'ArQK5rBm', '5245754'), + (971, 1341, 'not_attending', '2022-05-01 19:52:30', '2025-12-17 19:47:28', 'ArQK5rBm', '5245755'), + (971, 1343, 'not_attending', '2022-05-02 03:27:59', '2025-12-17 19:47:28', 'ArQK5rBm', '5247200'), + (971, 1344, 'not_attending', '2022-04-29 01:23:34', '2025-12-17 19:47:28', 'ArQK5rBm', '5247465'), + (971, 1346, 'attending', '2022-04-22 20:32:10', '2025-12-17 19:47:27', 'ArQK5rBm', '5247467'), + (971, 1348, 'attending', '2022-04-29 21:57:46', '2025-12-17 19:47:28', 'ArQK5rBm', '5247605'), + (971, 1351, 'attending', '2022-04-29 17:02:01', '2025-12-17 19:47:28', 'ArQK5rBm', '5251561'), + (971, 1352, 'not_attending', '2022-05-05 17:27:57', '2025-12-17 19:47:28', 'ArQK5rBm', '5251618'), + (971, 1353, 'attending', '2022-04-22 20:32:09', '2025-12-17 19:47:27', 'ArQK5rBm', '5251777'), + (971, 1355, 'not_attending', '2022-04-28 11:56:51', '2025-12-17 19:47:28', 'ArQK5rBm', '5252573'), + (971, 1357, 'not_attending', '2022-04-25 12:02:04', '2025-12-17 19:47:27', 'ArQK5rBm', '5256017'), + (971, 1358, 'not_attending', '2022-04-25 17:33:56', '2025-12-17 19:47:27', 'ArQK5rBm', '5258022'), + (971, 1359, 'not_attending', '2022-05-04 21:39:38', '2025-12-17 19:47:28', 'ArQK5rBm', '5258360'), + (971, 1360, 'maybe', '2022-04-25 17:34:07', '2025-12-17 19:47:27', 'ArQK5rBm', '5260197'), + (971, 1361, 'not_attending', '2022-04-30 05:23:50', '2025-12-17 19:47:28', 'ArQK5rBm', '5260491'), + (971, 1362, 'attending', '2022-04-25 17:32:30', '2025-12-17 19:47:28', 'ArQK5rBm', '5260800'), + (971, 1363, 'maybe', '2022-04-27 06:52:10', '2025-12-17 19:47:28', 'ArQK5rBm', '5261577'), + (971, 1364, 'not_attending', '2022-05-03 20:57:39', '2025-12-17 19:47:28', 'ArQK5rBm', '5261598'), + (971, 1365, 'maybe', '2022-05-01 15:21:47', '2025-12-17 19:47:28', 'ArQK5rBm', '5261600'), + (971, 1366, 'attending', '2022-04-26 18:35:26', '2025-12-17 19:47:27', 'ArQK5rBm', '5262344'), + (971, 1367, 'attending', '2022-04-29 01:23:30', '2025-12-17 19:47:28', 'ArQK5rBm', '5262345'), + (971, 1368, 'attending', '2022-05-02 03:27:57', '2025-12-17 19:47:28', 'ArQK5rBm', '5262783'), + (971, 1369, 'not_attending', '2022-05-07 10:27:33', '2025-12-17 19:47:28', 'ArQK5rBm', '5262809'), + (971, 1370, 'not_attending', '2022-04-29 16:58:07', '2025-12-17 19:47:28', 'ArQK5rBm', '5263775'), + (971, 1371, 'attending', '2022-04-27 19:54:27', '2025-12-17 19:47:27', 'ArQK5rBm', '5263784'), + (971, 1372, 'attending', '2022-05-01 09:09:09', '2025-12-17 19:47:28', 'ArQK5rBm', '5264352'), + (971, 1374, 'not_attending', '2022-05-07 19:05:28', '2025-12-17 19:47:28', 'ArQK5rBm', '5269930'), + (971, 1375, 'attending', '2022-04-30 20:04:38', '2025-12-17 19:47:28', 'ArQK5rBm', '5269932'), + (971, 1376, 'not_attending', '2022-05-12 09:02:00', '2025-12-17 19:47:28', 'ArQK5rBm', '5271446'), + (971, 1377, 'not_attending', '2022-05-12 09:02:04', '2025-12-17 19:47:28', 'ArQK5rBm', '5271447'), + (971, 1378, 'not_attending', '2022-05-12 09:02:16', '2025-12-17 19:47:29', 'ArQK5rBm', '5271448'), + (971, 1379, 'maybe', '2022-05-20 18:00:03', '2025-12-17 19:47:30', 'ArQK5rBm', '5271449'), + (971, 1380, 'maybe', '2022-05-28 07:24:35', '2025-12-17 19:47:30', 'ArQK5rBm', '5271450'), + (971, 1381, 'not_attending', '2022-05-02 03:27:55', '2025-12-17 19:47:28', 'ArQK5rBm', '5271453'), + (971, 1382, 'attending', '2022-05-04 07:25:45', '2025-12-17 19:47:28', 'ArQK5rBm', '5276350'), + (971, 1383, 'not_attending', '2022-05-12 09:02:07', '2025-12-17 19:47:28', 'ArQK5rBm', '5276469'), + (971, 1384, 'not_attending', '2022-05-05 10:34:04', '2025-12-17 19:47:28', 'ArQK5rBm', '5277078'), + (971, 1385, 'attending', '2022-05-08 22:08:12', '2025-12-17 19:47:28', 'ArQK5rBm', '5277822'), + (971, 1386, 'maybe', '2022-05-05 14:59:08', '2025-12-17 19:47:28', 'ArQK5rBm', '5278159'), + (971, 1387, 'attending', '2022-05-07 10:27:32', '2025-12-17 19:47:28', 'ArQK5rBm', '5278173'), + (971, 1388, 'not_attending', '2022-05-05 21:39:09', '2025-12-17 19:47:28', 'ArQK5rBm', '5278201'), + (971, 1389, 'not_attending', '2022-05-07 18:56:18', '2025-12-17 19:47:28', 'ArQK5rBm', '5278202'), + (971, 1390, 'not_attending', '2022-05-12 09:02:09', '2025-12-17 19:47:28', 'ArQK5rBm', '5279509'), + (971, 1391, 'attending', '2022-05-07 18:43:23', '2025-12-17 19:47:28', 'ArQK5rBm', '5279531'), + (971, 1392, 'not_attending', '2022-05-09 19:51:10', '2025-12-17 19:47:28', 'ArQK5rBm', '5279532'), + (971, 1394, 'attending', '2022-05-23 06:02:01', '2025-12-17 19:47:30', 'ArQK5rBm', '5280667'), + (971, 1395, 'not_attending', '2022-05-07 19:05:43', '2025-12-17 19:47:28', 'ArQK5rBm', '5281102'), + (971, 1396, 'not_attending', '2022-05-12 09:02:12', '2025-12-17 19:47:28', 'ArQK5rBm', '5281103'), + (971, 1398, 'not_attending', '2022-05-08 22:08:00', '2025-12-17 19:47:28', 'ArQK5rBm', '5281795'), + (971, 1399, 'not_attending', '2022-05-12 09:02:01', '2025-12-17 19:47:28', 'ArQK5rBm', '5281796'), + (971, 1400, 'attending', '2022-05-12 09:02:29', '2025-12-17 19:47:29', 'ArQK5rBm', '5284864'), + (971, 1402, 'not_attending', '2022-05-23 06:00:51', '2025-12-17 19:47:30', 'ArQK5rBm', '5287977'), + (971, 1405, 'attending', '2022-05-19 20:14:26', '2025-12-17 19:47:29', 'ArQK5rBm', '5288115'), + (971, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ArQK5rBm', '5363695'), + (971, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQK5rBm', '5365960'), + (971, 1410, 'not_attending', '2022-05-19 19:56:34', '2025-12-17 19:47:29', 'ArQK5rBm', '5367530'), + (971, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQK5rBm', '5368973'), + (971, 1416, 'maybe', '2022-05-28 07:24:35', '2025-12-17 19:47:30', 'ArQK5rBm', '5369628'), + (971, 1417, 'not_attending', '2022-05-23 06:00:40', '2025-12-17 19:47:30', 'ArQK5rBm', '5370465'), + (971, 1418, 'attending', '2022-05-24 22:00:18', '2025-12-17 19:47:30', 'ArQK5rBm', '5372162'), + (971, 1422, 'maybe', '2022-05-28 07:25:02', '2025-12-17 19:47:30', 'ArQK5rBm', '5375603'), + (971, 1423, 'not_attending', '2022-06-14 20:21:45', '2025-12-17 19:47:17', 'ArQK5rBm', '5375727'), + (971, 1428, 'not_attending', '2022-06-10 17:44:36', '2025-12-17 19:47:30', 'ArQK5rBm', '5378247'), + (971, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ArQK5rBm', '5389605'), + (971, 1432, 'maybe', '2022-06-02 09:09:26', '2025-12-17 19:47:30', 'ArQK5rBm', '5391566'), + (971, 1433, 'maybe', '2022-06-03 07:53:37', '2025-12-17 19:47:30', 'ArQK5rBm', '5391667'), + (971, 1442, 'not_attending', '2022-06-18 22:28:28', '2025-12-17 19:47:17', 'ArQK5rBm', '5397265'), + (971, 1445, 'not_attending', '2022-06-17 22:28:02', '2025-12-17 19:47:17', 'ArQK5rBm', '5397615'), + (971, 1449, 'attending', '2022-06-14 20:21:22', '2025-12-17 19:47:31', 'ArQK5rBm', '5403335'), + (971, 1450, 'attending', '2022-06-10 16:31:44', '2025-12-17 19:47:30', 'ArQK5rBm', '5403421'), + (971, 1451, 'not_attending', '2022-06-17 22:25:52', '2025-12-17 19:47:17', 'ArQK5rBm', '5403967'), + (971, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ArQK5rBm', '5404786'), + (971, 1462, 'not_attending', '2022-06-17 20:28:06', '2025-12-17 19:47:17', 'ArQK5rBm', '5405203'), + (971, 1463, 'not_attending', '2022-06-14 20:21:24', '2025-12-17 19:47:31', 'ArQK5rBm', '5405208'), + (971, 1469, 'attending', '2022-06-17 22:28:36', '2025-12-17 19:47:17', 'ArQK5rBm', '5406838'), + (971, 1470, 'not_attending', '2022-06-18 21:24:43', '2025-12-17 19:47:17', 'ArQK5rBm', '5407053'), + (971, 1473, 'maybe', '2022-06-14 20:21:19', '2025-12-17 19:47:31', 'ArQK5rBm', '5407267'), + (971, 1476, 'maybe', '2022-06-17 22:28:20', '2025-12-17 19:47:17', 'ArQK5rBm', '5408130'), + (971, 1478, 'attending', '2022-06-15 10:11:33', '2025-12-17 19:47:17', 'ArQK5rBm', '5408794'), + (971, 1479, 'not_attending', '2022-06-17 22:28:04', '2025-12-17 19:47:17', 'ArQK5rBm', '5410322'), + (971, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ArQK5rBm', '5411699'), + (971, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ArQK5rBm', '5412550'), + (971, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ArQK5rBm', '5415046'), + (971, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ArQK5rBm', '5422086'), + (971, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ArQK5rBm', '5422406'), + (971, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ArQK5rBm', '5424565'), + (971, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQK5rBm', '5426882'), + (971, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ArQK5rBm', '5427083'), + (971, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'ArQK5rBm', '5441125'), + (971, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ArQK5rBm', '5441126'), + (971, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ArQK5rBm', '5441128'), + (971, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ArQK5rBm', '5441131'), + (971, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'ArQK5rBm', '5441132'), + (971, 1526, 'maybe', '2022-07-18 18:54:04', '2025-12-17 19:47:20', 'ArQK5rBm', '5445059'), + (971, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQK5rBm', '5446643'), + (971, 1536, 'maybe', '2022-07-18 18:53:51', '2025-12-17 19:47:20', 'ArQK5rBm', '5449068'), + (971, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQK5rBm', '5453325'), + (971, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQK5rBm', '5454516'), + (971, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQK5rBm', '5454605'), + (971, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQK5rBm', '5455037'), + (971, 1558, 'attending', '2022-09-08 15:24:43', '2025-12-17 19:47:10', 'ArQK5rBm', '5458730'), + (971, 1559, 'attending', '2022-09-08 15:26:45', '2025-12-17 19:47:11', 'ArQK5rBm', '5458731'), + (971, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQK5rBm', '5461278'), + (971, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQK5rBm', '5469480'), + (971, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQK5rBm', '5471073'), + (971, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ArQK5rBm', '5474663'), + (971, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQK5rBm', '5482022'), + (971, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQK5rBm', '5482793'), + (971, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQK5rBm', '5488912'), + (971, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQK5rBm', '5492192'), + (971, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQK5rBm', '5493139'), + (971, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQK5rBm', '5493200'), + (971, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQK5rBm', '5502188'), + (971, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ArQK5rBm', '5505059'), + (971, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ArQK5rBm', '5509055'), + (971, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ArQK5rBm', '5512862'), + (971, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ArQK5rBm', '5513985'), + (971, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ArQK5rBm', '5519981'), + (971, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ArQK5rBm', '5522550'), + (971, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ArQK5rBm', '5534683'), + (971, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'ArQK5rBm', '5537735'), + (971, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ArQK5rBm', '5540859'), + (971, 1643, 'maybe', '2022-09-08 15:26:34', '2025-12-17 19:47:11', 'ArQK5rBm', '5545856'), + (971, 1644, 'maybe', '2022-09-08 15:26:18', '2025-12-17 19:47:11', 'ArQK5rBm', '5545857'), + (971, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ArQK5rBm', '5546619'), + (971, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ArQK5rBm', '5555245'), + (971, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ArQK5rBm', '5557747'), + (971, 1662, 'maybe', '2022-09-13 18:39:45', '2025-12-17 19:47:11', 'ArQK5rBm', '5560255'), + (971, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ArQK5rBm', '5562906'), + (971, 1667, 'maybe', '2022-09-21 21:56:44', '2025-12-17 19:47:11', 'ArQK5rBm', '5563221'), + (971, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ArQK5rBm', '5600604'), + (971, 1679, 'not_attending', '2022-09-29 03:11:59', '2025-12-17 19:47:12', 'ArQK5rBm', '5601099'), + (971, 1680, 'maybe', '2022-09-21 21:57:16', '2025-12-17 19:47:11', 'ArQK5rBm', '5601577'), + (971, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ArQK5rBm', '5605544'), + (971, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'ArQK5rBm', '5606737'), + (971, 1700, 'attending', '2022-10-01 16:14:36', '2025-12-17 19:47:12', 'ArQK5rBm', '5606814'), + (971, 1701, 'not_attending', '2022-09-29 03:12:35', '2025-12-17 19:47:11', 'ArQK5rBm', '5607857'), + (971, 1703, 'maybe', '2022-09-29 03:11:05', '2025-12-17 19:47:12', 'ArQK5rBm', '5609176'), + (971, 1708, 'attending', '2022-10-04 17:48:59', '2025-12-17 19:47:12', 'ArQK5rBm', '5617648'), + (971, 1716, 'not_attending', '2022-10-11 21:33:23', '2025-12-17 19:47:12', 'ArQK5rBm', '5622429'), + (971, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ArQK5rBm', '5630960'), + (971, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ArQK5rBm', '5630961'), + (971, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ArQK5rBm', '5630962'), + (971, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ArQK5rBm', '5630966'), + (971, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ArQK5rBm', '5630967'), + (971, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ArQK5rBm', '5630968'), + (971, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ArQK5rBm', '5635406'), + (971, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ArQK5rBm', '5638765'), + (971, 1739, 'attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ArQK5rBm', '5640097'), + (971, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ArQK5rBm', '5640843'), + (971, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ArQK5rBm', '5641521'), + (971, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ArQK5rBm', '5642818'), + (971, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ArQK5rBm', '5652395'), + (971, 1757, 'maybe', '2022-10-31 13:27:14', '2025-12-17 19:47:15', 'ArQK5rBm', '5668974'), + (971, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ArQK5rBm', '5670445'), + (971, 1763, 'attending', '2022-11-10 00:42:18', '2025-12-17 19:47:15', 'ArQK5rBm', '5670803'), + (971, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ArQK5rBm', '5671637'), + (971, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ArQK5rBm', '5672329'), + (971, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ArQK5rBm', '5674057'), + (971, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ArQK5rBm', '5674060'), + (971, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ArQK5rBm', '5677461'), + (971, 1773, 'attending', '2022-10-29 16:26:04', '2025-12-17 19:47:14', 'ArQK5rBm', '5677707'), + (971, 1776, 'not_attending', '2022-11-09 00:06:55', '2025-12-17 19:47:15', 'ArQK5rBm', '5691067'), + (971, 1780, 'maybe', '2022-11-02 05:35:15', '2025-12-17 19:47:15', 'ArQK5rBm', '5696082'), + (971, 1781, 'maybe', '2022-11-02 22:22:55', '2025-12-17 19:47:15', 'ArQK5rBm', '5696178'), + (971, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ArQK5rBm', '5698046'), + (971, 1783, 'attending', '2022-11-10 00:41:53', '2025-12-17 19:47:16', 'ArQK5rBm', '5698621'), + (971, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ArQK5rBm', '5699760'), + (971, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ArQK5rBm', '5741601'), + (971, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ArQK5rBm', '5763458'), + (971, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ArQK5rBm', '5774172'), + (971, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'ArQK5rBm', '5818247'), + (971, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ArQK5rBm', '5819471'), + (971, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ArQK5rBm', '5827739'), + (971, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ArQK5rBm', '5844306'), + (971, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ArQK5rBm', '5850159'), + (971, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ArQK5rBm', '5858999'), + (971, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ArQK5rBm', '5871984'), + (971, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ArQK5rBm', '5876354'), + (971, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'ArQK5rBm', '5880939'), + (971, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ArQK5rBm', '5887890'), + (971, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ArQK5rBm', '5888598'), + (971, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ArQK5rBm', '5893260'), + (971, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQK5rBm', '6045684'), + (972, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dODKNwym', '4356801'), + (972, 974, 'attending', '2021-08-28 22:41:12', '2025-12-17 19:47:42', 'dODKNwym', '4366187'), + (972, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dODKNwym', '4420735'), + (972, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dODKNwym', '4420738'), + (972, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dODKNwym', '4420739'), + (972, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dODKNwym', '4420741'), + (972, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dODKNwym', '4420744'), + (972, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dODKNwym', '4420747'), + (972, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dODKNwym', '4420748'), + (972, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dODKNwym', '4420749'), + (972, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODKNwym', '4461883'), + (972, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODKNwym', '4508342'), + (972, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODKNwym', '4568602'), + (972, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODKNwym', '6045684'), + (973, 971, 'maybe', '2021-09-08 19:12:56', '2025-12-17 19:47:43', 'dODnKK5m', '4356801'), + (973, 991, 'maybe', '2021-09-07 20:17:53', '2025-12-17 19:47:43', 'dODnKK5m', '4420738'), + (973, 992, 'not_attending', '2021-09-08 19:11:11', '2025-12-17 19:47:34', 'dODnKK5m', '4420739'), + (973, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dODnKK5m', '4420741'), + (973, 995, 'maybe', '2021-10-04 21:41:58', '2025-12-17 19:47:34', 'dODnKK5m', '4420744'), + (973, 996, 'maybe', '2021-10-09 16:22:22', '2025-12-17 19:47:35', 'dODnKK5m', '4420747'), + (973, 1003, 'attending', '2021-09-06 15:44:19', '2025-12-17 19:47:43', 'dODnKK5m', '4438802'), + (973, 1019, 'maybe', '2021-09-06 15:44:46', '2025-12-17 19:47:43', 'dODnKK5m', '4450515'), + (973, 1020, 'maybe', '2021-09-06 15:50:31', '2025-12-17 19:47:43', 'dODnKK5m', '4451787'), + (973, 1021, 'maybe', '2021-09-06 15:46:42', '2025-12-17 19:47:34', 'dODnKK5m', '4451803'), + (973, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODnKK5m', '4461883'), + (973, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODnKK5m', '4508342'), + (973, 1072, 'not_attending', '2021-10-06 15:13:38', '2025-12-17 19:47:34', 'dODnKK5m', '4516287'), + (973, 1074, 'not_attending', '2021-09-29 15:22:49', '2025-12-17 19:47:34', 'dODnKK5m', '4528953'), + (973, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODnKK5m', '4568602'), + (973, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODnKK5m', '6045684'), + (974, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AX2M2Jvd', '5880943'), + (974, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AX2M2Jvd', '5900202'), + (974, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AX2M2Jvd', '5900203'), + (974, 1916, 'not_attending', '2023-03-01 16:36:14', '2025-12-17 19:47:08', 'AX2M2Jvd', '5910526'), + (974, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'AX2M2Jvd', '5910528'), + (974, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'AX2M2Jvd', '5962317'), + (974, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'AX2M2Jvd', '5962318'), + (974, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AX2M2Jvd', '5965933'), + (974, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AX2M2Jvd', '5967014'), + (974, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AX2M2Jvd', '5972815'), + (974, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AX2M2Jvd', '5974016'), + (974, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AX2M2Jvd', '5981515'), + (974, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AX2M2Jvd', '5993516'), + (974, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AX2M2Jvd', '5998939'), + (974, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AX2M2Jvd', '6028191'), + (974, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AX2M2Jvd', '6040066'), + (974, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AX2M2Jvd', '6042717'), + (974, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AX2M2Jvd', '6044838'), + (974, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AX2M2Jvd', '6044839'), + (974, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AX2M2Jvd', '6045684'), + (974, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AX2M2Jvd', '6050104'), + (974, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AX2M2Jvd', '6053195'), + (974, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AX2M2Jvd', '6053198'), + (974, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AX2M2Jvd', '6056085'), + (974, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AX2M2Jvd', '6056916'), + (974, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AX2M2Jvd', '6059290'), + (974, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AX2M2Jvd', '6060328'), + (974, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AX2M2Jvd', '6061037'), + (974, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AX2M2Jvd', '6068094'), + (974, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AX2M2Jvd', '6068252'), + (974, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AX2M2Jvd', '6068253'), + (974, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AX2M2Jvd', '6068254'), + (974, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'AX2M2Jvd', '6068280'), + (974, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AX2M2Jvd', '6069093'), + (975, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'd2rggqVd', '8529058'), + (975, 3278, 'not_attending', '2025-09-30 15:01:05', '2025-12-17 19:46:13', 'd2rggqVd', '8535533'), + (976, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AXZ9NBZd', '7074364'), + (976, 2628, 'attending', '2024-06-01 21:30:04', '2025-12-17 19:46:36', 'AXZ9NBZd', '7264725'), + (976, 2657, 'attending', '2024-05-29 19:04:14', '2025-12-17 19:46:36', 'AXZ9NBZd', '7294438'), + (976, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AXZ9NBZd', '7302674'), + (976, 2678, 'attending', '2024-06-15 22:44:02', '2025-12-17 19:46:28', 'AXZ9NBZd', '7319489'), + (976, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AXZ9NBZd', '7324073'), + (976, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AXZ9NBZd', '7324074'), + (976, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AXZ9NBZd', '7324075'), + (976, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AXZ9NBZd', '7324078'), + (976, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AXZ9NBZd', '7324082'), + (976, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AXZ9NBZd', '7331457'), + (976, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AXZ9NBZd', '7356752'), + (976, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AXZ9NBZd', '7363643'), + (976, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AXZ9NBZd', '7368606'), + (976, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AXZ9NBZd', '7397462'), + (976, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AXZ9NBZd', '7424275'), + (976, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AXZ9NBZd', '7424276'), + (976, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AXZ9NBZd', '7432751'), + (976, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AXZ9NBZd', '7432752'), + (976, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AXZ9NBZd', '7432753'), + (976, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432754'), + (976, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432755'), + (976, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432756'), + (976, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432758'), + (976, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432759'), + (976, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AXZ9NBZd', '7433834'), + (976, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AXZ9NBZd', '7470197'), + (976, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AXZ9NBZd', '7685613'), + (976, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AXZ9NBZd', '7688194'), + (976, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AXZ9NBZd', '7688196'), + (976, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AXZ9NBZd', '7688289'), + (977, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4E2rVMZd', '6044839'), + (977, 1994, 'not_attending', '2023-04-05 21:32:02', '2025-12-17 19:46:59', '4E2rVMZd', '6050104'), + (977, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4E2rVMZd', '6053195'), + (977, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4E2rVMZd', '6053198'), + (977, 2007, 'attending', '2023-04-06 23:54:47', '2025-12-17 19:46:58', '4E2rVMZd', '6055291'), + (977, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4E2rVMZd', '6056085'), + (977, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4E2rVMZd', '6056916'), + (977, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4E2rVMZd', '6059290'), + (977, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4E2rVMZd', '6060328'), + (977, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4E2rVMZd', '6061037'), + (977, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4E2rVMZd', '6061039'), + (977, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4E2rVMZd', '6067245'), + (977, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4E2rVMZd', '6068094'), + (977, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4E2rVMZd', '6068252'), + (977, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4E2rVMZd', '6068253'), + (977, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4E2rVMZd', '6068254'), + (977, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4E2rVMZd', '6068280'), + (977, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4E2rVMZd', '6069093'), + (977, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4E2rVMZd', '6072528'), + (977, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4E2rVMZd', '6079840'), + (977, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4E2rVMZd', '6083398'), + (977, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4E2rVMZd', '6093504'), + (977, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4E2rVMZd', '6097414'), + (977, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4E2rVMZd', '6097442'), + (977, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4E2rVMZd', '6097684'), + (977, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4E2rVMZd', '6098762'), + (977, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4E2rVMZd', '6101362'), + (977, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4E2rVMZd', '6107314'), + (977, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4E2rVMZd', '6120034'), + (978, 47, 'maybe', '2020-05-05 18:02:56', '2025-12-17 19:47:57', 'GAneQwbm', '2975272'), + (978, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'GAneQwbm', '2977812'), + (978, 76, 'attending', '2020-05-02 20:27:37', '2025-12-17 19:47:57', 'GAneQwbm', '2978246'), + (978, 77, 'not_attending', '2020-05-09 22:28:58', '2025-12-17 19:47:57', 'GAneQwbm', '2978247'), + (978, 78, 'not_attending', '2020-05-23 22:03:12', '2025-12-17 19:47:57', 'GAneQwbm', '2978249'), + (978, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'GAneQwbm', '2978250'), + (978, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'GAneQwbm', '2978438'), + (978, 105, 'maybe', '2020-05-10 15:07:42', '2025-12-17 19:47:57', 'GAneQwbm', '2993500'), + (978, 106, 'attending', '2020-05-03 14:34:46', '2025-12-17 19:47:57', 'GAneQwbm', '2993501'), + (978, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'GAneQwbm', '2994480'), + (978, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'GAneQwbm', '3023063'), + (978, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'GAneQwbm', '3034321'), + (978, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'GAneQwbm', '3035881'), + (978, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'GAneQwbm', '3049983'), + (978, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'GAneQwbm', '3058959'), + (978, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'GAneQwbm', '3067093'), + (978, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'GAneQwbm', '3075228'), + (978, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'GAneQwbm', '3075456'), + (978, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'GAneQwbm', '3083791'), + (978, 187, 'not_attending', '2020-06-28 19:31:11', '2025-12-17 19:47:55', 'GAneQwbm', '3085151'), + (978, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'GAneQwbm', '3087265'), + (978, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', 'GAneQwbm', '3087266'), + (978, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'GAneQwbm', '3087267'), + (978, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'GAneQwbm', '3087268'), + (978, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'GAneQwbm', '3088653'), + (978, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'GAneQwbm', '3106813'), + (978, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'GAneQwbm', '3129980'), + (978, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'GAneQwbm', '3132817'), + (978, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'GAneQwbm', '3132820'), + (978, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'GAneQwbm', '3155321'), + (978, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'GAneQwbm', '3162006'), + (978, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'GAneQwbm', '3163442'), + (978, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'GAneQwbm', '3172832'), + (978, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'GAneQwbm', '3172833'), + (978, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'GAneQwbm', '3172834'), + (978, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'GAneQwbm', '3172876'), + (978, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'GAneQwbm', '3186057'), + (978, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'GAneQwbm', '3191735'), + (978, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'GAneQwbm', '3200209'), + (978, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', 'GAneQwbm', '3214207'), + (978, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'GAneQwbm', '3217037'), + (978, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'GAneQwbm', '3218510'), + (978, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'GAneQwbm', '3228698'), + (978, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'GAneQwbm', '3228699'), + (978, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'GAneQwbm', '3228700'), + (978, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'GAneQwbm', '3228701'), + (978, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'GAneQwbm', '3245751'), + (978, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GAneQwbm', '3250232'), + (978, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'GAneQwbm', '3256168'), + (978, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GAneQwbm', '3263578'), + (978, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GAneQwbm', '3276428'), + (978, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GAneQwbm', '3281470'), + (978, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GAneQwbm', '3281829'), + (978, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'GAneQwbm', '3285413'), + (978, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'GAneQwbm', '3285414'), + (978, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GAneQwbm', '3297764'), + (978, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'GAneQwbm', '3313856'), + (978, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GAneQwbm', '3314909'), + (978, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GAneQwbm', '3314964'), + (978, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'GAneQwbm', '3323365'), + (978, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GAneQwbm', '3329383'), + (978, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GAneQwbm', '3351539'), + (978, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GAneQwbm', '3386848'), + (978, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GAneQwbm', '3389527'), + (978, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GAneQwbm', '3396499'), + (978, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GAneQwbm', '3403650'), + (978, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GAneQwbm', '3406988'), + (978, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GAneQwbm', '3416576'), + (978, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'GAneQwbm', '3430267'), + (978, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'GAneQwbm', '3470305'), + (978, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GAneQwbm', '3470991'), + (978, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'GAneQwbm', '3517815'), + (978, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'GAneQwbm', '3517816'), + (978, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'GAneQwbm', '3523941'), + (978, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GAneQwbm', '3533850'), + (978, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GAneQwbm', '3536632'), + (978, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GAneQwbm', '3536656'), + (978, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'GAneQwbm', '3539916'), + (978, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'GAneQwbm', '3539917'), + (978, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'GAneQwbm', '3539918'), + (978, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'GAneQwbm', '3539919'), + (978, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'GAneQwbm', '3539920'), + (978, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'GAneQwbm', '3539921'), + (978, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'GAneQwbm', '3539922'), + (978, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'GAneQwbm', '3539923'), + (978, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GAneQwbm', '3539927'), + (978, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GAneQwbm', '3582734'), + (978, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GAneQwbm', '3583262'), + (978, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GAneQwbm', '3619523'), + (978, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GAneQwbm', '3661369'), + (978, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GAneQwbm', '3674262'), + (978, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GAneQwbm', '3677402'), + (978, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GAneQwbm', '3730212'), + (978, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GAneQwbm', '3793156'), + (978, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GAneQwbm', '3974109'), + (978, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GAneQwbm', '3975311'), + (978, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GAneQwbm', '3975312'), + (978, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GAneQwbm', '3994992'), + (978, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GAneQwbm', '4014338'), + (978, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GAneQwbm', '4021848'), + (978, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GAneQwbm', '4136744'), + (978, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GAneQwbm', '4136937'), + (978, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GAneQwbm', '4136938'), + (978, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GAneQwbm', '4136947'), + (978, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GAneQwbm', '4210314'), + (978, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GAneQwbm', '4225444'), + (978, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GAneQwbm', '4239259'), + (978, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GAneQwbm', '4240316'), + (978, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GAneQwbm', '4240317'), + (978, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GAneQwbm', '4240318'), + (978, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GAneQwbm', '4240320'), + (978, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GAneQwbm', '4250163'), + (978, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GAneQwbm', '4275957'), + (978, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GAneQwbm', '4277819'), + (978, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GAneQwbm', '4301723'), + (978, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GAneQwbm', '4302093'), + (978, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GAneQwbm', '4304151'), + (978, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GAneQwbm', '4356801'), + (978, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GAneQwbm', '4366186'), + (978, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GAneQwbm', '4366187'), + (978, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GAneQwbm', '4420735'), + (978, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GAneQwbm', '4420738'), + (978, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GAneQwbm', '4420739'), + (978, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GAneQwbm', '4420741'), + (978, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GAneQwbm', '4420744'), + (978, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GAneQwbm', '4420747'), + (978, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GAneQwbm', '4420748'), + (978, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GAneQwbm', '4420749'), + (978, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GAneQwbm', '4461883'), + (978, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GAneQwbm', '4508342'), + (978, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GAneQwbm', '4568602'), + (978, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GAneQwbm', '4572153'), + (978, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GAneQwbm', '4585962'), + (978, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'GAneQwbm', '4596356'), + (978, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GAneQwbm', '4598860'), + (978, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'GAneQwbm', '4598861'), + (978, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GAneQwbm', '4602797'), + (978, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'GAneQwbm', '4637896'), + (978, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'GAneQwbm', '4642994'), + (978, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'GAneQwbm', '4642995'), + (978, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GAneQwbm', '4642996'), + (978, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GAneQwbm', '4642997'), + (978, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'GAneQwbm', '4645687'), + (978, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GAneQwbm', '4645698'), + (978, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'GAneQwbm', '4645704'), + (978, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'GAneQwbm', '4645705'), + (978, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GAneQwbm', '4668385'), + (978, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GAneQwbm', '4694407'), + (978, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GAneQwbm', '4736497'), + (978, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GAneQwbm', '4736499'), + (978, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GAneQwbm', '4736500'), + (978, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GAneQwbm', '4736503'), + (978, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'GAneQwbm', '4736504'), + (978, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GAneQwbm', '4746789'), + (978, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'GAneQwbm', '4753929'), + (978, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GAneQwbm', '5038850'), + (978, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GAneQwbm', '5045826'), + (978, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GAneQwbm', '5132533'), + (978, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GAneQwbm', '5186582'), + (978, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GAneQwbm', '5186583'), + (978, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'GAneQwbm', '5186585'), + (978, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GAneQwbm', '5190437'), + (978, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GAneQwbm', '5195095'), + (978, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GAneQwbm', '5215989'), + (978, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GAneQwbm', '5223686'), + (978, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GAneQwbm', '5247467'), + (978, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'GAneQwbm', '5260800'), + (978, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GAneQwbm', '5269930'), + (978, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GAneQwbm', '5271448'), + (978, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'GAneQwbm', '5271449'), + (978, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GAneQwbm', '5278159'), + (978, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'GAneQwbm', '5363695'), + (978, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GAneQwbm', '5365960'), + (978, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GAneQwbm', '5378247'), + (978, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GAneQwbm', '5389605'), + (978, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GAneQwbm', '5397265'), + (978, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GAneQwbm', '5404786'), + (978, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GAneQwbm', '5405203'), + (978, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GAneQwbm', '5412550'), + (978, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GAneQwbm', '5415046'), + (978, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GAneQwbm', '5422086'), + (978, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GAneQwbm', '5422406'), + (978, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GAneQwbm', '5424565'), + (978, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GAneQwbm', '5426882'), + (978, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GAneQwbm', '5441125'), + (978, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GAneQwbm', '5441126'), + (978, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GAneQwbm', '5441128'), + (978, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GAneQwbm', '5441131'), + (978, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GAneQwbm', '5441132'), + (978, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GAneQwbm', '5453325'), + (978, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GAneQwbm', '5454516'), + (978, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GAneQwbm', '5454605'), + (978, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GAneQwbm', '5455037'), + (978, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GAneQwbm', '5461278'), + (978, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GAneQwbm', '5469480'), + (978, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GAneQwbm', '5474663'), + (978, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GAneQwbm', '5482022'), + (978, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GAneQwbm', '5488912'), + (978, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GAneQwbm', '5492192'), + (978, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GAneQwbm', '5493139'), + (978, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GAneQwbm', '5493200'), + (978, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GAneQwbm', '5502188'), + (978, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GAneQwbm', '5505059'), + (978, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GAneQwbm', '5509055'), + (978, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GAneQwbm', '5512862'), + (978, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GAneQwbm', '5513985'), + (978, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GAneQwbm', '5519981'), + (978, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GAneQwbm', '5522550'), + (978, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GAneQwbm', '5534683'), + (978, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GAneQwbm', '5537735'), + (978, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GAneQwbm', '5540859'), + (978, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GAneQwbm', '5546619'), + (978, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GAneQwbm', '5557747'), + (978, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GAneQwbm', '5560255'), + (978, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GAneQwbm', '5562906'), + (978, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GAneQwbm', '5600604'), + (978, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GAneQwbm', '5605544'), + (978, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GAneQwbm', '5630960'), + (978, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GAneQwbm', '5630961'), + (978, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GAneQwbm', '5630962'), + (978, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GAneQwbm', '5630966'), + (978, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GAneQwbm', '5630967'), + (978, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GAneQwbm', '5630968'), + (978, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GAneQwbm', '5635406'), + (978, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GAneQwbm', '5638765'), + (978, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GAneQwbm', '5640097'), + (978, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GAneQwbm', '5640843'), + (978, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GAneQwbm', '5641521'), + (978, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GAneQwbm', '5642818'), + (978, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GAneQwbm', '5652395'), + (978, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GAneQwbm', '5670445'), + (978, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GAneQwbm', '5671637'), + (978, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GAneQwbm', '5672329'), + (978, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GAneQwbm', '5674057'), + (978, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GAneQwbm', '5674060'), + (978, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GAneQwbm', '5677461'), + (978, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GAneQwbm', '5698046'), + (978, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GAneQwbm', '5699760'), + (978, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GAneQwbm', '5741601'), + (978, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GAneQwbm', '5763458'), + (978, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GAneQwbm', '5774172'), + (978, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GAneQwbm', '5818247'), + (978, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GAneQwbm', '5819471'), + (978, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GAneQwbm', '5827739'), + (978, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GAneQwbm', '5844306'), + (978, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GAneQwbm', '5850159'), + (978, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GAneQwbm', '5858999'), + (978, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GAneQwbm', '5871984'), + (978, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GAneQwbm', '5876354'), + (978, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GAneQwbm', '5880939'), + (978, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GAneQwbm', '5880940'), + (978, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GAneQwbm', '5880942'), + (978, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GAneQwbm', '5880943'), + (978, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GAneQwbm', '5887890'), + (978, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GAneQwbm', '5888598'), + (978, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GAneQwbm', '5893260'), + (978, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GAneQwbm', '5899826'), + (978, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GAneQwbm', '5900199'), + (978, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GAneQwbm', '5900200'), + (978, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GAneQwbm', '5900202'), + (978, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GAneQwbm', '5900203'), + (978, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GAneQwbm', '5901108'), + (978, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GAneQwbm', '5901126'), + (978, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'GAneQwbm', '5901606'), + (978, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GAneQwbm', '5909655'), + (978, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GAneQwbm', '5910522'), + (978, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GAneQwbm', '5910526'), + (978, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GAneQwbm', '5910528'), + (978, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GAneQwbm', '5916219'), + (978, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GAneQwbm', '5936234'), + (978, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GAneQwbm', '5958351'), + (978, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GAneQwbm', '5959751'), + (978, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GAneQwbm', '5959755'), + (978, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GAneQwbm', '5960055'), + (978, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GAneQwbm', '5961684'), + (978, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GAneQwbm', '5962132'), + (978, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GAneQwbm', '5962133'), + (978, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GAneQwbm', '5962134'), + (978, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GAneQwbm', '5962317'), + (978, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GAneQwbm', '5962318'), + (978, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GAneQwbm', '5965933'), + (978, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GAneQwbm', '5967014'), + (978, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GAneQwbm', '5972815'), + (978, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GAneQwbm', '5974016'), + (978, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GAneQwbm', '5981515'), + (978, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GAneQwbm', '5993516'), + (978, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GAneQwbm', '5998939'), + (978, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GAneQwbm', '6028191'), + (978, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GAneQwbm', '6040066'), + (978, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GAneQwbm', '6042717'), + (978, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GAneQwbm', '6044838'), + (978, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GAneQwbm', '6044839'), + (978, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GAneQwbm', '6045684'), + (978, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GAneQwbm', '6050104'), + (978, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GAneQwbm', '6053195'), + (978, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GAneQwbm', '6053198'), + (978, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GAneQwbm', '6056085'), + (978, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GAneQwbm', '6056916'), + (978, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GAneQwbm', '6059290'), + (978, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GAneQwbm', '6060328'), + (978, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GAneQwbm', '6061037'), + (978, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GAneQwbm', '6061039'), + (978, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GAneQwbm', '6067245'), + (978, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GAneQwbm', '6068094'), + (978, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GAneQwbm', '6068252'), + (978, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GAneQwbm', '6068253'), + (978, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GAneQwbm', '6068254'), + (978, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GAneQwbm', '6068280'), + (978, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GAneQwbm', '6069093'), + (978, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GAneQwbm', '6072528'), + (978, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GAneQwbm', '6079840'), + (978, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GAneQwbm', '6083398'), + (978, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GAneQwbm', '6093504'), + (978, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GAneQwbm', '6097414'), + (978, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GAneQwbm', '6097442'), + (978, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GAneQwbm', '6097684'), + (978, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GAneQwbm', '6098762'), + (978, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GAneQwbm', '6101361'), + (978, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GAneQwbm', '6101362'), + (978, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GAneQwbm', '6107314'), + (978, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GAneQwbm', '6120034'), + (978, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GAneQwbm', '6136733'), + (978, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GAneQwbm', '6137989'), + (978, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GAneQwbm', '6150864'), + (978, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GAneQwbm', '6155491'), + (978, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GAneQwbm', '6164417'), + (978, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GAneQwbm', '6166388'), + (978, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GAneQwbm', '6176439'), + (978, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GAneQwbm', '6182410'), + (978, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GAneQwbm', '6185812'), + (978, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GAneQwbm', '6187651'), + (978, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GAneQwbm', '6187963'), + (978, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GAneQwbm', '6187964'), + (978, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GAneQwbm', '6187966'), + (978, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GAneQwbm', '6187967'), + (978, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GAneQwbm', '6187969'), + (978, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GAneQwbm', '6334878'), + (978, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GAneQwbm', '6337236'), + (978, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GAneQwbm', '6337970'), + (978, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GAneQwbm', '6338308'), + (978, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GAneQwbm', '6341710'), + (978, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GAneQwbm', '6342044'), + (978, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GAneQwbm', '6342298'), + (978, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GAneQwbm', '6343294'), + (978, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GAneQwbm', '6347034'), + (978, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GAneQwbm', '6347056'), + (978, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GAneQwbm', '6353830'), + (978, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GAneQwbm', '6353831'), + (978, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GAneQwbm', '6357867'), + (978, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GAneQwbm', '6358652'), + (978, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GAneQwbm', '6361709'), + (978, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GAneQwbm', '6361710'), + (978, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GAneQwbm', '6361711'), + (978, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GAneQwbm', '6361712'), + (978, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GAneQwbm', '6361713'), + (978, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'GAneQwbm', '6382573'), + (978, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GAneQwbm', '6388604'), + (978, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GAneQwbm', '6394629'), + (978, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GAneQwbm', '6394631'), + (978, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GAneQwbm', '6440863'), + (978, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GAneQwbm', '6445440'), + (978, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GAneQwbm', '6453951'), + (978, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GAneQwbm', '6461696'), + (978, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GAneQwbm', '6462129'), + (978, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GAneQwbm', '6463218'), + (978, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GAneQwbm', '6472181'), + (978, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GAneQwbm', '6482693'), + (978, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GAneQwbm', '6484200'), + (978, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GAneQwbm', '6484680'), + (978, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GAneQwbm', '6507741'), + (978, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GAneQwbm', '6514659'), + (978, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GAneQwbm', '6514660'), + (978, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GAneQwbm', '6519103'), + (978, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GAneQwbm', '6535681'), + (978, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GAneQwbm', '6584747'), + (978, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GAneQwbm', '6587097'), + (978, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GAneQwbm', '6609022'), + (978, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'GAneQwbm', '6632757'), + (978, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GAneQwbm', '6644187'), + (978, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GAneQwbm', '6648951'), + (978, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GAneQwbm', '6648952'), + (978, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GAneQwbm', '6655401'), + (978, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GAneQwbm', '6661585'), + (978, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GAneQwbm', '6661588'), + (978, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GAneQwbm', '6661589'), + (978, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GAneQwbm', '6699906'), + (978, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GAneQwbm', '6699913'), + (978, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GAneQwbm', '6701109'), + (978, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GAneQwbm', '6705219'), + (978, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GAneQwbm', '6710153'), + (978, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GAneQwbm', '6711552'), + (978, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GAneQwbm', '6711553'), + (978, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GAneQwbm', '6722688'), + (978, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GAneQwbm', '6730620'), + (978, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GAneQwbm', '6740364'), + (978, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GAneQwbm', '6743829'), + (978, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GAneQwbm', '7030380'), + (978, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'GAneQwbm', '7033677'), + (978, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GAneQwbm', '7044715'), + (978, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GAneQwbm', '7050318'), + (978, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GAneQwbm', '7050319'), + (978, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GAneQwbm', '7050322'), + (978, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GAneQwbm', '7057804'), + (978, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GAneQwbm', '7072824'), + (978, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GAneQwbm', '7074348'), + (978, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAneQwbm', '7074364'), + (978, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GAneQwbm', '7089267'), + (978, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GAneQwbm', '7098747'), + (978, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GAneQwbm', '7113468'), + (978, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GAneQwbm', '7114856'), + (978, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GAneQwbm', '7114951'), + (978, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GAneQwbm', '7114955'), + (978, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GAneQwbm', '7114956'), + (978, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GAneQwbm', '7114957'), + (978, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GAneQwbm', '7159484'), + (978, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GAneQwbm', '7178446'), + (978, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GAneQwbm', '7220467'), + (978, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GAneQwbm', '7240354'), + (978, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GAneQwbm', '7251633'), + (978, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GAneQwbm', '7324073'), + (978, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAneQwbm', '7324074'), + (978, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAneQwbm', '7324075'), + (978, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GAneQwbm', '7324078'), + (978, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GAneQwbm', '7324082'), + (978, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GAneQwbm', '7331457'), + (978, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GAneQwbm', '7363643'), + (978, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAneQwbm', '7368606'), + (978, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GAneQwbm', '7397462'), + (978, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GAneQwbm', '7424275'), + (978, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAneQwbm', '7432751'), + (978, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAneQwbm', '7432752'), + (978, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAneQwbm', '7432753'), + (978, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAneQwbm', '7432754'), + (978, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAneQwbm', '7432755'), + (978, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAneQwbm', '7432756'), + (978, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAneQwbm', '7432758'), + (978, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAneQwbm', '7432759'), + (978, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAneQwbm', '7433834'), + (978, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'GAneQwbm', '7470197'), + (978, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GAneQwbm', '7685613'), + (978, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAneQwbm', '7688194'), + (978, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAneQwbm', '7688196'), + (978, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAneQwbm', '7688289'), + (978, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAneQwbm', '7692763'), + (978, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAneQwbm', '7697552'), + (978, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAneQwbm', '7699878'), + (978, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GAneQwbm', '7704043'), + (978, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GAneQwbm', '7712467'), + (978, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GAneQwbm', '7713585'), + (978, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAneQwbm', '7713586'), + (978, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAneQwbm', '7738518'), + (978, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAneQwbm', '7750636'), + (978, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAneQwbm', '7796540'), + (978, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAneQwbm', '7796541'), + (978, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAneQwbm', '7796542'), + (978, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAneQwbm', '7825913'), + (978, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GAneQwbm', '7826209'), + (978, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAneQwbm', '7834742'), + (978, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GAneQwbm', '7842108'), + (978, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAneQwbm', '7842902'), + (978, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAneQwbm', '7842903'), + (978, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAneQwbm', '7842904'), + (978, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAneQwbm', '7842905'), + (978, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAneQwbm', '7855719'), + (978, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAneQwbm', '7860683'), + (978, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAneQwbm', '7860684'), + (978, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAneQwbm', '7866095'), + (978, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GAneQwbm', '7869170'), + (978, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GAneQwbm', '7869188'), + (978, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAneQwbm', '7869201'), + (978, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAneQwbm', '7877465'), + (978, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAneQwbm', '7888250'), + (978, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GAneQwbm', '7904777'), + (978, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAneQwbm', '8349164'), + (978, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAneQwbm', '8349545'), + (978, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GAneQwbm', '8368028'), + (978, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GAneQwbm', '8368029'), + (978, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAneQwbm', '8388462'), + (978, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GAneQwbm', '8400273'), + (978, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GAneQwbm', '8400275'), + (978, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'GAneQwbm', '8400276'), + (978, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GAneQwbm', '8404977'), + (978, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GAneQwbm', '8430783'), + (978, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GAneQwbm', '8430784'), + (978, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GAneQwbm', '8430799'), + (978, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GAneQwbm', '8430800'), + (978, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GAneQwbm', '8430801'), + (978, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GAneQwbm', '8438709'), + (978, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAneQwbm', '8457738'), + (978, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GAneQwbm', '8459566'), + (978, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GAneQwbm', '8459567'), + (978, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GAneQwbm', '8461032'), + (978, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAneQwbm', '8477877'), + (978, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAneQwbm', '8485688'), + (978, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAneQwbm', '8490587'), + (978, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAneQwbm', '8493552'), + (978, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAneQwbm', '8493553'), + (978, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAneQwbm', '8493554'), + (978, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAneQwbm', '8493555'), + (978, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAneQwbm', '8493556'), + (978, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAneQwbm', '8493557'), + (978, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAneQwbm', '8493558'), + (978, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAneQwbm', '8493559'), + (978, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAneQwbm', '8493560'), + (978, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GAneQwbm', '8493561'), + (978, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAneQwbm', '8493572'), + (978, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAneQwbm', '8540725'), + (978, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAneQwbm', '8555421'), + (979, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', '4oMXO5Ym', '4420747'), + (979, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4oMXO5Ym', '4568602'), + (979, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4oMXO5Ym', '4572153'), + (979, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMXO5Ym', '4585962'), + (979, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4oMXO5Ym', '4596356'), + (979, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4oMXO5Ym', '4598860'), + (979, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4oMXO5Ym', '4598861'), + (979, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4oMXO5Ym', '4602797'), + (979, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4oMXO5Ym', '4637896'), + (979, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4oMXO5Ym', '4642994'), + (979, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4oMXO5Ym', '4642995'), + (979, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4oMXO5Ym', '4642996'), + (979, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4oMXO5Ym', '4642997'), + (979, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4oMXO5Ym', '4645687'), + (979, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4oMXO5Ym', '4645698'), + (979, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4oMXO5Ym', '4645704'), + (979, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4oMXO5Ym', '4645705'), + (979, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4oMXO5Ym', '4668385'), + (979, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMXO5Ym', '6045684'), + (980, 872, 'not_attending', '2021-07-20 02:29:51', '2025-12-17 19:47:40', 'mLzGroL4', '4136947'), + (980, 884, 'attending', '2021-08-15 19:22:08', '2025-12-17 19:47:42', 'mLzGroL4', '4210314'), + (980, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'mLzGroL4', '4229420'), + (980, 894, 'maybe', '2021-07-19 20:23:44', '2025-12-17 19:47:39', 'mLzGroL4', '4229423'), + (980, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'mLzGroL4', '4240316'), + (980, 901, 'attending', '2021-07-28 16:28:57', '2025-12-17 19:47:40', 'mLzGroL4', '4240317'), + (980, 902, 'attending', '2021-08-07 19:54:13', '2025-12-17 19:47:41', 'mLzGroL4', '4240318'), + (980, 903, 'attending', '2021-08-14 22:23:12', '2025-12-17 19:47:42', 'mLzGroL4', '4240320'), + (980, 916, 'attending', '2021-07-22 23:22:50', '2025-12-17 19:47:40', 'mLzGroL4', '4273772'), + (980, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'mLzGroL4', '4277819'), + (980, 923, 'attending', '2021-07-22 19:58:27', '2025-12-17 19:47:40', 'mLzGroL4', '4292773'), + (980, 933, 'maybe', '2021-07-30 06:26:27', '2025-12-17 19:47:40', 'mLzGroL4', '4301723'), + (980, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'mLzGroL4', '4302093'), + (980, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'mLzGroL4', '4304151'), + (980, 946, 'attending', '2021-08-02 21:46:38', '2025-12-17 19:47:40', 'mLzGroL4', '4314835'), + (980, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'mLzGroL4', '4345519'), + (980, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'mLzGroL4', '4356801'), + (980, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'mLzGroL4', '4358025'), + (980, 973, 'maybe', '2021-08-21 21:00:28', '2025-12-17 19:47:42', 'mLzGroL4', '4366186'), + (980, 974, 'attending', '2021-08-28 19:46:29', '2025-12-17 19:47:42', 'mLzGroL4', '4366187'), + (980, 988, 'not_attending', '2021-08-28 19:40:56', '2025-12-17 19:47:42', 'mLzGroL4', '4402823'), + (980, 990, 'not_attending', '2021-09-04 19:07:02', '2025-12-17 19:47:43', 'mLzGroL4', '4420735'), + (980, 991, 'attending', '2021-09-11 20:09:40', '2025-12-17 19:47:43', 'mLzGroL4', '4420738'), + (980, 992, 'attending', '2021-09-18 05:00:55', '2025-12-17 19:47:33', 'mLzGroL4', '4420739'), + (980, 993, 'not_attending', '2021-09-26 04:26:27', '2025-12-17 19:47:34', 'mLzGroL4', '4420741'), + (980, 995, 'maybe', '2021-09-01 05:45:07', '2025-12-17 19:47:34', 'mLzGroL4', '4420744'), + (980, 996, 'maybe', '2021-09-01 05:45:09', '2025-12-17 19:47:35', 'mLzGroL4', '4420747'), + (980, 997, 'maybe', '2021-09-01 05:45:12', '2025-12-17 19:47:35', 'mLzGroL4', '4420748'), + (980, 998, 'maybe', '2021-09-01 05:45:16', '2025-12-17 19:47:36', 'mLzGroL4', '4420749'), + (980, 1023, 'maybe', '2021-09-11 20:09:07', '2025-12-17 19:47:43', 'mLzGroL4', '4461883'), + (980, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'mLzGroL4', '4508342'), + (980, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mLzGroL4', '4568602'), + (980, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mLzGroL4', '6045684'), + (981, 1181, 'attending', '2022-02-28 23:33:34', '2025-12-17 19:47:33', 'mGMb37P4', '4736503'), + (981, 1239, 'attending', '2022-02-28 23:32:46', '2025-12-17 19:47:33', 'mGMb37P4', '5052238'), + (981, 1240, 'attending', '2022-03-01 19:21:18', '2025-12-17 19:47:33', 'mGMb37P4', '5052239'), + (981, 1241, 'attending', '2022-03-01 19:21:19', '2025-12-17 19:47:25', 'mGMb37P4', '5052240'), + (981, 1242, 'attending', '2022-03-01 19:21:21', '2025-12-17 19:47:25', 'mGMb37P4', '5052241'), + (981, 1249, 'attending', '2022-03-01 19:21:16', '2025-12-17 19:47:33', 'mGMb37P4', '5068530'), + (981, 1250, 'not_attending', '2022-03-04 23:07:40', '2025-12-17 19:47:33', 'mGMb37P4', '5069735'), + (981, 1251, 'attending', '2022-02-27 21:01:02', '2025-12-17 19:47:33', 'mGMb37P4', '5128466'), + (981, 1252, 'not_attending', '2022-03-05 00:57:36', '2025-12-17 19:47:33', 'mGMb37P4', '5129121'), + (981, 1253, 'attending', '2022-03-01 19:21:30', '2025-12-17 19:47:33', 'mGMb37P4', '5129122'), + (981, 1257, 'attending', '2022-02-28 02:22:11', '2025-12-17 19:47:33', 'mGMb37P4', '5129274'), + (981, 1258, 'attending', '2022-02-28 23:33:03', '2025-12-17 19:47:33', 'mGMb37P4', '5132531'), + (981, 1259, 'attending', '2022-02-28 23:32:17', '2025-12-17 19:47:33', 'mGMb37P4', '5132533'), + (981, 1260, 'not_attending', '2022-03-01 23:33:40', '2025-12-17 19:47:33', 'mGMb37P4', '5142082'), + (981, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mGMb37P4', '6045684'), + (982, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4PNaOJZm', '5260800'), + (982, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4PNaOJZm', '5269930'), + (982, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4PNaOJZm', '5271448'), + (982, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4PNaOJZm', '5271449'), + (982, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4PNaOJZm', '5276469'), + (982, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4PNaOJZm', '5278159'), + (982, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4PNaOJZm', '5363695'), + (982, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4PNaOJZm', '5365960'), + (982, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4PNaOJZm', '5368973'), + (982, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4PNaOJZm', '5378247'), + (982, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4PNaOJZm', '5389605'), + (982, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4PNaOJZm', '5397265'), + (982, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNaOJZm', '6045684'), + (983, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdKXPlam', '3470305'), + (983, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'kdKXPlam', '3470991'), + (983, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdKXPlam', '3517815'), + (983, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKXPlam', '3523941'), + (983, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKXPlam', '3533850'), + (983, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKXPlam', '3536632'), + (983, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKXPlam', '3536656'), + (983, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdKXPlam', '3539916'), + (983, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdKXPlam', '3539917'), + (983, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKXPlam', '3539918'), + (983, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKXPlam', '3539919'), + (983, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKXPlam', '3539920'), + (983, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKXPlam', '3539921'), + (983, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKXPlam', '3539922'), + (983, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKXPlam', '3539923'), + (983, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKXPlam', '6045684'), + (984, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgLn6V4', '6045684'), + (985, 3210, 'attending', '2025-08-25 23:48:29', '2025-12-17 19:46:18', 'ndloDNY4', '8471162'), + (985, 3256, 'attending', '2025-08-28 21:15:17', '2025-12-17 19:46:11', 'ndloDNY4', '8501354'), + (985, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'ndloDNY4', '8540725'), + (985, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndloDNY4', '8555421'), + (986, 1442, 'not_attending', '2022-06-18 02:29:06', '2025-12-17 19:47:17', 'm6ok8yzA', '5397265'), + (986, 1451, 'not_attending', '2022-06-15 23:14:01', '2025-12-17 19:47:17', 'm6ok8yzA', '5403967'), + (986, 1466, 'attending', '2022-06-16 17:49:52', '2025-12-17 19:47:17', 'm6ok8yzA', '5406427'), + (986, 1469, 'attending', '2022-06-16 17:53:13', '2025-12-17 19:47:17', 'm6ok8yzA', '5406838'), + (986, 1472, 'attending', '2022-06-16 17:53:05', '2025-12-17 19:47:17', 'm6ok8yzA', '5407065'), + (986, 1474, 'attending', '2022-06-16 17:53:43', '2025-12-17 19:47:19', 'm6ok8yzA', '5408029'), + (986, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'm6ok8yzA', '5411699'), + (986, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'm6ok8yzA', '5412550'), + (986, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6ok8yzA', '5415046'), + (986, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6ok8yzA', '5422086'), + (986, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6ok8yzA', '5422406'), + (986, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6ok8yzA', '5424565'), + (986, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6ok8yzA', '5426882'), + (986, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'm6ok8yzA', '5427083'), + (986, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'm6ok8yzA', '5441125'), + (986, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6ok8yzA', '5441126'), + (986, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'm6ok8yzA', '5441128'), + (986, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6ok8yzA', '5441131'), + (986, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6ok8yzA', '5441132'), + (986, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6ok8yzA', '5446643'), + (986, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6ok8yzA', '5453325'), + (986, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6ok8yzA', '5454516'), + (986, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6ok8yzA', '5454605'), + (986, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6ok8yzA', '5455037'), + (986, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6ok8yzA', '5461278'), + (986, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6ok8yzA', '5469480'), + (986, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6ok8yzA', '5471073'), + (986, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'm6ok8yzA', '5474663'), + (986, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6ok8yzA', '5482022'), + (986, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6ok8yzA', '5482793'), + (986, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6ok8yzA', '5488912'), + (986, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6ok8yzA', '5492192'), + (986, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6ok8yzA', '5493139'), + (986, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6ok8yzA', '5493200'), + (986, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6ok8yzA', '5502188'), + (986, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6ok8yzA', '5505059'), + (986, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6ok8yzA', '5509055'), + (986, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6ok8yzA', '5512862'), + (986, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6ok8yzA', '5513985'), + (986, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'm6ok8yzA', '5519981'), + (986, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6ok8yzA', '5522550'), + (986, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6ok8yzA', '5534683'), + (986, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6ok8yzA', '5546619'), + (986, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6ok8yzA', '5555245'), + (986, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6ok8yzA', '5557747'), + (986, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6ok8yzA', '6045684'), + (987, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'bdz21yad', '3149489'), + (987, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'bdz21yad', '3149491'), + (987, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'bdz21yad', '3236450'), + (987, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'bdz21yad', '3236452'), + (987, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'bdz21yad', '3539921'), + (987, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'bdz21yad', '3539922'), + (987, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'bdz21yad', '3539923'), + (987, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'bdz21yad', '3806392'), + (987, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'bdz21yad', '3963335'), + (987, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'bdz21yad', '3975311'), + (987, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'bdz21yad', '3975312'), + (987, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'bdz21yad', '3994992'), + (987, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'bdz21yad', '4014338'), + (987, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'bdz21yad', '4136744'), + (987, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz21yad', '6045684'), + (988, 1471, 'maybe', '2022-06-21 20:54:21', '2025-12-17 19:47:17', 'mbZvVkRm', '5407063'), + (988, 1480, 'attending', '2022-06-26 22:37:43', '2025-12-17 19:47:19', 'mbZvVkRm', '5411699'), + (988, 1482, 'attending', '2022-06-25 16:58:07', '2025-12-17 19:47:19', 'mbZvVkRm', '5412550'), + (988, 1484, 'maybe', '2022-06-22 08:12:02', '2025-12-17 19:47:17', 'mbZvVkRm', '5415046'), + (988, 1485, 'not_attending', '2022-06-21 20:52:32', '2025-12-17 19:47:17', 'mbZvVkRm', '5416276'), + (988, 1487, 'attending', '2022-06-27 22:40:29', '2025-12-17 19:47:19', 'mbZvVkRm', '5419006'), + (988, 1488, 'attending', '2022-07-05 22:51:36', '2025-12-17 19:47:19', 'mbZvVkRm', '5420154'), + (988, 1490, 'attending', '2022-07-07 21:50:55', '2025-12-17 19:47:19', 'mbZvVkRm', '5420156'), + (988, 1492, 'attending', '2022-07-07 23:59:35', '2025-12-17 19:47:19', 'mbZvVkRm', '5420175'), + (988, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mbZvVkRm', '5422086'), + (988, 1497, 'attending', '2022-06-30 12:44:37', '2025-12-17 19:47:19', 'mbZvVkRm', '5422405'), + (988, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mbZvVkRm', '5422406'), + (988, 1500, 'maybe', '2022-07-07 16:14:34', '2025-12-17 19:47:19', 'mbZvVkRm', '5423915'), + (988, 1502, 'attending', '2022-07-08 21:54:49', '2025-12-17 19:47:19', 'mbZvVkRm', '5424565'), + (988, 1504, 'not_attending', '2022-07-14 12:54:40', '2025-12-17 19:47:19', 'mbZvVkRm', '5426882'), + (988, 1505, 'attending', '2022-07-04 21:13:38', '2025-12-17 19:47:19', 'mbZvVkRm', '5427083'), + (988, 1508, 'maybe', '2022-07-13 12:57:30', '2025-12-17 19:47:19', 'mbZvVkRm', '5433453'), + (988, 1509, 'attending', '2022-07-06 22:47:39', '2025-12-17 19:47:19', 'mbZvVkRm', '5434019'), + (988, 1513, 'maybe', '2022-07-09 06:46:30', '2025-12-17 19:47:20', 'mbZvVkRm', '5441125'), + (988, 1514, 'attending', '2022-07-21 18:20:17', '2025-12-17 19:47:20', 'mbZvVkRm', '5441126'), + (988, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mbZvVkRm', '5441128'), + (988, 1516, 'maybe', '2022-08-20 20:54:30', '2025-12-17 19:47:23', 'mbZvVkRm', '5441129'), + (988, 1517, 'attending', '2022-08-27 10:27:30', '2025-12-17 19:47:23', 'mbZvVkRm', '5441130'), + (988, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mbZvVkRm', '5441131'), + (988, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mbZvVkRm', '5441132'), + (988, 1522, 'maybe', '2022-07-19 21:27:26', '2025-12-17 19:47:20', 'mbZvVkRm', '5442832'), + (988, 1523, 'attending', '2022-07-11 06:43:00', '2025-12-17 19:47:19', 'mbZvVkRm', '5442868'), + (988, 1527, 'not_attending', '2022-07-13 15:29:00', '2025-12-17 19:47:20', 'mbZvVkRm', '5446425'), + (988, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mbZvVkRm', '5446643'), + (988, 1530, 'not_attending', '2022-07-17 01:28:02', '2025-12-17 19:47:20', 'mbZvVkRm', '5448612'), + (988, 1535, 'maybe', '2022-07-19 21:27:19', '2025-12-17 19:47:20', 'mbZvVkRm', '5448830'), + (988, 1540, 'attending', '2022-07-18 17:38:47', '2025-12-17 19:47:20', 'mbZvVkRm', '5453325'), + (988, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mbZvVkRm', '5454516'), + (988, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mbZvVkRm', '5454605'), + (988, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mbZvVkRm', '5455037'), + (988, 1553, 'attending', '2022-07-21 01:58:15', '2025-12-17 19:47:20', 'mbZvVkRm', '5455164'), + (988, 1556, 'attending', '2022-07-22 01:46:44', '2025-12-17 19:47:20', 'mbZvVkRm', '5457734'), + (988, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mbZvVkRm', '5461278'), + (988, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mbZvVkRm', '5469480'), + (988, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mbZvVkRm', '5471073'), + (988, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mbZvVkRm', '5474663'), + (988, 1569, 'maybe', '2022-08-05 02:34:11', '2025-12-17 19:47:21', 'mbZvVkRm', '5481507'), + (988, 1571, 'maybe', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mbZvVkRm', '5482022'), + (988, 1575, 'attending', '2022-08-26 06:02:38', '2025-12-17 19:47:23', 'mbZvVkRm', '5482250'), + (988, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mbZvVkRm', '5482793'), + (988, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mbZvVkRm', '5488912'), + (988, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mbZvVkRm', '5492192'), + (988, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mbZvVkRm', '5493139'), + (988, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mbZvVkRm', '5493200'), + (988, 1601, 'maybe', '2022-08-16 18:06:41', '2025-12-17 19:47:22', 'mbZvVkRm', '5496589'), + (988, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mbZvVkRm', '5502188'), + (988, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mbZvVkRm', '5505059'), + (988, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mbZvVkRm', '5509055'), + (988, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mbZvVkRm', '5512862'), + (988, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mbZvVkRm', '5513985'), + (988, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mbZvVkRm', '5534683'), + (988, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mbZvVkRm', '5537735'), + (988, 1636, 'attending', '2022-09-04 15:47:01', '2025-12-17 19:47:24', 'mbZvVkRm', '5538454'), + (988, 1639, 'not_attending', '2022-09-02 19:50:47', '2025-12-17 19:47:24', 'mbZvVkRm', '5540403'), + (988, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mbZvVkRm', '5540859'), + (988, 1644, 'not_attending', '2022-09-19 21:34:23', '2025-12-17 19:47:11', 'mbZvVkRm', '5545857'), + (988, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mbZvVkRm', '5546619'), + (988, 1650, 'attending', '2022-09-04 18:50:47', '2025-12-17 19:47:24', 'mbZvVkRm', '5549611'), + (988, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mbZvVkRm', '5555245'), + (988, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mbZvVkRm', '5557747'), + (988, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mbZvVkRm', '5560255'), + (988, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mbZvVkRm', '5562906'), + (988, 1670, 'attending', '2022-09-18 13:14:02', '2025-12-17 19:47:11', 'mbZvVkRm', '5575076'), + (988, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mbZvVkRm', '5600604'), + (988, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mbZvVkRm', '5605544'), + (988, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'mbZvVkRm', '5606737'), + (988, 1701, 'maybe', '2022-09-26 22:58:49', '2025-12-17 19:47:11', 'mbZvVkRm', '5607857'), + (988, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mbZvVkRm', '5630960'), + (988, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mbZvVkRm', '5630961'), + (988, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mbZvVkRm', '5630962'), + (988, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mbZvVkRm', '5630966'), + (988, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mbZvVkRm', '5630967'), + (988, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mbZvVkRm', '5630968'), + (988, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mbZvVkRm', '5635406'), + (988, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mbZvVkRm', '5638765'), + (988, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mbZvVkRm', '5640097'), + (988, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mbZvVkRm', '5640843'), + (988, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mbZvVkRm', '5641521'), + (988, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mbZvVkRm', '5642818'), + (988, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mbZvVkRm', '5652395'), + (988, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mbZvVkRm', '5670445'), + (988, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mbZvVkRm', '5671637'), + (988, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mbZvVkRm', '5672329'), + (988, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mbZvVkRm', '5674057'), + (988, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mbZvVkRm', '5674060'), + (988, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mbZvVkRm', '5677461'), + (988, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mbZvVkRm', '5698046'), + (988, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mbZvVkRm', '5699760'), + (988, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mbZvVkRm', '5741601'), + (988, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mbZvVkRm', '5763458'), + (988, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mbZvVkRm', '5774172'), + (988, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mbZvVkRm', '5818247'), + (988, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mbZvVkRm', '5819471'), + (988, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mbZvVkRm', '5827739'), + (988, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mbZvVkRm', '5844306'), + (988, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mbZvVkRm', '5850159'), + (988, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mbZvVkRm', '5858999'), + (988, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mbZvVkRm', '5871984'), + (988, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mbZvVkRm', '5876354'), + (988, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mbZvVkRm', '5880939'), + (988, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mbZvVkRm', '5887890'), + (988, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mbZvVkRm', '5888598'), + (988, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mbZvVkRm', '5893260'), + (988, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZvVkRm', '6045684'), + (989, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dO6GO8e4', '7074364'), + (989, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'dO6GO8e4', '7301638'), + (989, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dO6GO8e4', '7324073'), + (989, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dO6GO8e4', '7324074'), + (989, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dO6GO8e4', '7324075'), + (989, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dO6GO8e4', '7324078'), + (989, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'dO6GO8e4', '7324867'), + (989, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dO6GO8e4', '7331457'), + (989, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'dO6GO8e4', '7332564'), + (989, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'dO6GO8e4', '7335193'), + (989, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'dO6GO8e4', '7359624'), + (989, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dO6GO8e4', '7363643'), + (989, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dO6GO8e4', '7368606'), + (990, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'bdz6r0Ld', '4136937'), + (990, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'bdz6r0Ld', '4136938'), + (990, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'bdz6r0Ld', '4136947'), + (990, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'bdz6r0Ld', '4210314'), + (990, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'bdz6r0Ld', '4225444'), + (990, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'bdz6r0Ld', '4229417'), + (990, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'bdz6r0Ld', '4229418'), + (990, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'bdz6r0Ld', '4229420'), + (990, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'bdz6r0Ld', '4229423'), + (990, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'bdz6r0Ld', '4239259'), + (990, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'bdz6r0Ld', '4240316'), + (990, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'bdz6r0Ld', '4240317'), + (990, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'bdz6r0Ld', '4240318'), + (990, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'bdz6r0Ld', '4240320'), + (990, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'bdz6r0Ld', '4250163'), + (990, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'bdz6r0Ld', '4275957'), + (990, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'bdz6r0Ld', '4277819'), + (990, 923, 'not_attending', '2021-07-20 02:30:40', '2025-12-17 19:47:40', 'bdz6r0Ld', '4292773'), + (990, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'bdz6r0Ld', '4301723'), + (990, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'bdz6r0Ld', '4302093'), + (990, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'bdz6r0Ld', '4304151'), + (990, 940, 'not_attending', '2021-07-30 16:29:38', '2025-12-17 19:47:40', 'bdz6r0Ld', '4309049'), + (990, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'bdz6r0Ld', '4315713'), + (990, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'bdz6r0Ld', '4315714'), + (990, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'bdz6r0Ld', '4315726'), + (990, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'bdz6r0Ld', '4356801'), + (990, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'bdz6r0Ld', '4366186'), + (990, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'bdz6r0Ld', '4366187'), + (990, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'bdz6r0Ld', '4420735'), + (990, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'bdz6r0Ld', '4420738'), + (990, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'bdz6r0Ld', '4420739'), + (990, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'bdz6r0Ld', '4420741'), + (990, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'bdz6r0Ld', '4420744'), + (990, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'bdz6r0Ld', '4420747'), + (990, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'bdz6r0Ld', '4420748'), + (990, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'bdz6r0Ld', '4420749'), + (990, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz6r0Ld', '6045684'), + (991, 993, 'attending', '2021-09-24 03:42:42', '2025-12-17 19:47:34', 'pmbxDWz4', '4420741'), + (991, 994, 'attending', '2021-10-02 02:41:44', '2025-12-17 19:47:34', 'pmbxDWz4', '4420742'), + (991, 995, 'attending', '2021-09-28 23:09:05', '2025-12-17 19:47:34', 'pmbxDWz4', '4420744'), + (991, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'pmbxDWz4', '4420747'), + (991, 1005, 'attending', '2021-09-21 09:08:39', '2025-12-17 19:47:34', 'pmbxDWz4', '4438807'), + (991, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbxDWz4', '4508342'), + (991, 1070, 'maybe', '2021-10-01 22:41:42', '2025-12-17 19:47:34', 'pmbxDWz4', '4512562'), + (991, 1072, 'attending', '2021-10-02 02:42:36', '2025-12-17 19:47:34', 'pmbxDWz4', '4516287'), + (991, 1074, 'attending', '2021-09-29 22:24:18', '2025-12-17 19:47:34', 'pmbxDWz4', '4528953'), + (991, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbxDWz4', '4568602'), + (991, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbxDWz4', '4572153'), + (991, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'pmbxDWz4', '4585962'), + (991, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'pmbxDWz4', '4596356'), + (991, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbxDWz4', '4598860'), + (991, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbxDWz4', '4598861'), + (991, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbxDWz4', '4602797'), + (991, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbxDWz4', '4637896'), + (991, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbxDWz4', '4642994'), + (991, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'pmbxDWz4', '4642995'), + (991, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbxDWz4', '4642996'), + (991, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbxDWz4', '4642997'), + (991, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbxDWz4', '4645687'), + (991, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbxDWz4', '4645698'), + (991, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbxDWz4', '4645704'), + (991, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbxDWz4', '4645705'), + (991, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbxDWz4', '4668385'), + (991, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbxDWz4', '4694407'), + (991, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbxDWz4', '4736497'), + (991, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbxDWz4', '4736499'), + (991, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbxDWz4', '4736500'), + (991, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbxDWz4', '4736503'), + (991, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbxDWz4', '4736504'), + (991, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbxDWz4', '4746789'), + (991, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbxDWz4', '4753929'), + (991, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbxDWz4', '5038850'), + (991, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbxDWz4', '5045826'), + (991, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbxDWz4', '5132533'), + (991, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbxDWz4', '5186582'), + (991, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbxDWz4', '5186583'), + (991, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbxDWz4', '5186585'), + (991, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbxDWz4', '5190437'), + (991, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbxDWz4', '5215989'), + (991, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'pmbxDWz4', '6045684'), + (992, 406, 'attending', '2021-04-01 17:59:50', '2025-12-17 19:47:44', 'NmLaxygA', '3236464'), + (992, 641, 'maybe', '2021-04-03 15:17:49', '2025-12-17 19:47:44', 'NmLaxygA', '3539916'), + (992, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'NmLaxygA', '3539918'), + (992, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'NmLaxygA', '3539919'), + (992, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'NmLaxygA', '3539920'), + (992, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'NmLaxygA', '3539921'), + (992, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'NmLaxygA', '3539922'), + (992, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'NmLaxygA', '3539923'), + (992, 700, 'attending', '2021-03-30 10:50:53', '2025-12-17 19:47:44', 'NmLaxygA', '3575725'), + (992, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLaxygA', '3583262'), + (992, 715, 'maybe', '2021-03-31 21:57:32', '2025-12-17 19:47:44', 'NmLaxygA', '3604146'), + (992, 723, 'not_attending', '2021-04-04 03:31:47', '2025-12-17 19:47:44', 'NmLaxygA', '3649179'), + (992, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLaxygA', '3661369'), + (992, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLaxygA', '3674262'), + (992, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'NmLaxygA', '3677402'), + (992, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLaxygA', '3730212'), + (992, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLaxygA', '3793156'), + (992, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLaxygA', '6045684'), + (993, 2306, 'attending', '2023-11-15 05:00:50', '2025-12-17 19:46:47', 'dw2bPaM4', '6484200'), + (993, 2322, 'attending', '2023-11-15 18:30:59', '2025-12-17 19:46:48', 'dw2bPaM4', '6514659'), + (993, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dw2bPaM4', '6514660'), + (993, 2338, 'attending', '2023-11-19 17:20:09', '2025-12-17 19:46:48', 'dw2bPaM4', '6538868'), + (993, 2340, 'not_attending', '2023-11-16 22:27:10', '2025-12-17 19:46:48', 'dw2bPaM4', '6540279'), + (993, 2342, 'attending', '2023-11-14 02:11:29', '2025-12-17 19:46:47', 'dw2bPaM4', '6545076'), + (993, 2344, 'not_attending', '2023-11-18 17:20:03', '2025-12-17 19:46:48', 'dw2bPaM4', '6581040'), + (993, 2345, 'maybe', '2023-11-19 17:20:24', '2025-12-17 19:46:48', 'dw2bPaM4', '6582414'), + (993, 2348, 'attending', '2023-11-19 17:06:13', '2025-12-17 19:46:48', 'dw2bPaM4', '6583064'), + (993, 2349, 'not_attending', '2023-11-19 17:19:59', '2025-12-17 19:46:48', 'dw2bPaM4', '6583065'), + (993, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dw2bPaM4', '6584747'), + (993, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dw2bPaM4', '6587097'), + (993, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dw2bPaM4', '6609022'), + (993, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dw2bPaM4', '6632757'), + (993, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dw2bPaM4', '6644187'), + (993, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dw2bPaM4', '6648951'), + (993, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dw2bPaM4', '6648952'), + (993, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dw2bPaM4', '6655401'), + (993, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dw2bPaM4', '6661585'), + (993, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dw2bPaM4', '6661588'), + (993, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dw2bPaM4', '6661589'), + (993, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dw2bPaM4', '6699906'), + (993, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dw2bPaM4', '6699913'), + (993, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dw2bPaM4', '6701109'), + (993, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dw2bPaM4', '6704561'), + (993, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dw2bPaM4', '6705219'), + (993, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dw2bPaM4', '6708410'), + (993, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dw2bPaM4', '6710153'), + (993, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dw2bPaM4', '6711552'), + (993, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dw2bPaM4', '6711553'), + (993, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dw2bPaM4', '6722688'), + (993, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dw2bPaM4', '6730620'), + (993, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dw2bPaM4', '6730642'), + (993, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dw2bPaM4', '6740364'), + (993, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dw2bPaM4', '6743829'), + (993, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dw2bPaM4', '7030380'), + (993, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dw2bPaM4', '7033677'), + (993, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dw2bPaM4', '7035415'), + (993, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dw2bPaM4', '7044715'), + (993, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dw2bPaM4', '7050318'), + (993, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dw2bPaM4', '7050319'), + (993, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dw2bPaM4', '7050322'), + (993, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dw2bPaM4', '7057804'), + (993, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dw2bPaM4', '7072824'), + (993, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dw2bPaM4', '7074348'), + (993, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dw2bPaM4', '7089267'), + (993, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dw2bPaM4', '7098747'), + (993, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dw2bPaM4', '7113468'), + (993, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dw2bPaM4', '7114856'), + (993, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dw2bPaM4', '7114951'), + (993, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dw2bPaM4', '7114955'), + (993, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dw2bPaM4', '7114956'), + (993, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dw2bPaM4', '7153615'), + (993, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dw2bPaM4', '7159484'), + (994, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'ndlzWnwA', '3468125'), + (994, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'ndlzWnwA', '3470303'), + (994, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'ndlzWnwA', '3470305'), + (994, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'ndlzWnwA', '3470991'), + (994, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ndlzWnwA', '3517815'), + (994, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ndlzWnwA', '3523941'), + (994, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ndlzWnwA', '3533850'), + (994, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ndlzWnwA', '3536632'), + (994, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ndlzWnwA', '3536656'), + (994, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ndlzWnwA', '3539916'), + (994, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ndlzWnwA', '3539917'), + (994, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ndlzWnwA', '3539918'), + (994, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ndlzWnwA', '3539919'), + (994, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ndlzWnwA', '3539920'), + (994, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ndlzWnwA', '3539921'), + (994, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ndlzWnwA', '3539922'), + (994, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndlzWnwA', '3539923'), + (994, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlzWnwA', '6045684'), + (995, 1655, 'attending', '2022-09-23 01:28:12', '2025-12-17 19:47:11', 'm7zEyzMd', '5554482'), + (995, 1668, 'maybe', '2022-09-29 00:18:17', '2025-12-17 19:47:12', 'm7zEyzMd', '5563222'), + (995, 1673, 'attending', '2022-09-29 00:17:55', '2025-12-17 19:47:11', 'm7zEyzMd', '5592454'), + (995, 1674, 'maybe', '2022-09-24 20:15:02', '2025-12-17 19:47:12', 'm7zEyzMd', '5593112'), + (995, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm7zEyzMd', '5605544'), + (995, 1698, 'attending', '2022-09-26 20:17:27', '2025-12-17 19:47:11', 'm7zEyzMd', '5606366'), + (995, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm7zEyzMd', '5630960'), + (995, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm7zEyzMd', '5630961'), + (995, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm7zEyzMd', '5630962'), + (995, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm7zEyzMd', '5630966'), + (995, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm7zEyzMd', '5630967'), + (995, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm7zEyzMd', '5630968'), + (995, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm7zEyzMd', '5635406'), + (995, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm7zEyzMd', '5638765'), + (995, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm7zEyzMd', '5640097'), + (995, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm7zEyzMd', '5640843'), + (995, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm7zEyzMd', '5641521'), + (995, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm7zEyzMd', '5642818'), + (995, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm7zEyzMd', '5652395'), + (995, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm7zEyzMd', '5670445'), + (995, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm7zEyzMd', '5671637'), + (995, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm7zEyzMd', '5672329'), + (995, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm7zEyzMd', '5674057'), + (995, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm7zEyzMd', '5674060'), + (995, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm7zEyzMd', '5677461'), + (995, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm7zEyzMd', '5698046'), + (995, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm7zEyzMd', '5699760'), + (995, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm7zEyzMd', '5741601'), + (995, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm7zEyzMd', '5763458'), + (995, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm7zEyzMd', '5774172'), + (995, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'm7zEyzMd', '5818247'), + (995, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm7zEyzMd', '5819471'), + (995, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm7zEyzMd', '5827739'), + (995, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm7zEyzMd', '5844306'), + (995, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm7zEyzMd', '5850159'), + (995, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm7zEyzMd', '5858999'), + (995, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm7zEyzMd', '5871984'), + (995, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm7zEyzMd', '5876354'), + (995, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm7zEyzMd', '5880939'), + (995, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm7zEyzMd', '5880940'), + (995, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm7zEyzMd', '5880942'), + (995, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm7zEyzMd', '5880943'), + (995, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm7zEyzMd', '5887890'), + (995, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm7zEyzMd', '5888598'), + (995, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm7zEyzMd', '5893260'), + (995, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm7zEyzMd', '5899826'), + (995, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm7zEyzMd', '5900199'), + (995, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm7zEyzMd', '5900200'), + (995, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm7zEyzMd', '5900202'), + (995, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm7zEyzMd', '5900203'), + (995, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm7zEyzMd', '5901108'), + (995, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm7zEyzMd', '5901126'), + (995, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm7zEyzMd', '5909655'), + (995, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm7zEyzMd', '5910522'), + (995, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm7zEyzMd', '5910526'), + (995, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm7zEyzMd', '5910528'), + (995, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm7zEyzMd', '5916219'), + (995, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm7zEyzMd', '5936234'), + (995, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm7zEyzMd', '5958351'), + (995, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm7zEyzMd', '5959751'), + (995, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm7zEyzMd', '5959755'), + (995, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm7zEyzMd', '5960055'), + (995, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm7zEyzMd', '5961684'), + (995, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm7zEyzMd', '5962132'), + (995, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm7zEyzMd', '5962133'), + (995, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm7zEyzMd', '5962134'), + (995, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm7zEyzMd', '5962317'), + (995, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm7zEyzMd', '5962318'), + (995, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm7zEyzMd', '5965933'), + (995, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm7zEyzMd', '5967014'), + (995, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm7zEyzMd', '5972815'), + (995, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm7zEyzMd', '5974016'), + (995, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm7zEyzMd', '5981515'), + (995, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm7zEyzMd', '5993516'), + (995, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm7zEyzMd', '5998939'), + (995, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm7zEyzMd', '6028191'), + (995, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7zEyzMd', '6045684'), + (996, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4ol91zMd', '6472181'), + (996, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4ol91zMd', '6482693'), + (996, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4ol91zMd', '6484200'), + (996, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4ol91zMd', '6484680'), + (996, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4ol91zMd', '6507741'), + (996, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4ol91zMd', '6514659'), + (996, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4ol91zMd', '6514660'), + (996, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4ol91zMd', '6519103'), + (996, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4ol91zMd', '6535681'), + (996, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', '4ol91zMd', '6545076'), + (996, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4ol91zMd', '6584747'), + (996, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4ol91zMd', '6587097'), + (996, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4ol91zMd', '6609022'), + (996, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4ol91zMd', '6632757'), + (996, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4ol91zMd', '6644187'), + (996, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4ol91zMd', '6648951'), + (996, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4ol91zMd', '6648952'), + (996, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4ol91zMd', '6655401'), + (996, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4ol91zMd', '6661585'), + (996, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4ol91zMd', '6661588'), + (996, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4ol91zMd', '6661589'), + (996, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4ol91zMd', '6699906'), + (996, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4ol91zMd', '6699913'), + (996, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4ol91zMd', '6701109'), + (996, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4ol91zMd', '6705219'), + (996, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4ol91zMd', '6710153'), + (996, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4ol91zMd', '6711552'), + (996, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4ol91zMd', '6711553'), + (996, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4ol91zMd', '6722688'), + (996, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4ol91zMd', '6730620'), + (996, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4ol91zMd', '6730642'), + (996, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4ol91zMd', '6740364'), + (996, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4ol91zMd', '6743829'), + (996, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4ol91zMd', '7030380'), + (996, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4ol91zMd', '7033677'), + (996, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4ol91zMd', '7035415'), + (996, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4ol91zMd', '7044715'), + (996, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4ol91zMd', '7050318'), + (996, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4ol91zMd', '7050319'), + (996, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4ol91zMd', '7050322'), + (996, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4ol91zMd', '7057804'), + (996, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4ol91zMd', '7072824'), + (996, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4ol91zMd', '7074348'), + (996, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4ol91zMd', '7089267'), + (996, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4ol91zMd', '7098747'), + (996, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4ol91zMd', '7113468'), + (996, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4ol91zMd', '7114856'), + (996, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4ol91zMd', '7114951'), + (996, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4ol91zMd', '7114955'), + (996, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4ol91zMd', '7114956'), + (996, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4ol91zMd', '7153615'), + (996, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4ol91zMd', '7159484'), + (996, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4ol91zMd', '7178446'), + (997, 645, 'attending', '2021-05-02 17:36:48', '2025-12-17 19:47:46', 'amGR3Jkd', '3539920'), + (997, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'amGR3Jkd', '3539921'), + (997, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'amGR3Jkd', '3539922'), + (997, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'amGR3Jkd', '3539923'), + (997, 739, 'maybe', '2021-05-01 05:44:58', '2025-12-17 19:47:46', 'amGR3Jkd', '3680616'), + (997, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'amGR3Jkd', '3793156'), + (997, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amGR3Jkd', '3974109'), + (997, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGR3Jkd', '3975311'), + (997, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amGR3Jkd', '3975312'), + (997, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amGR3Jkd', '3994992'), + (997, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGR3Jkd', '4014338'), + (997, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amGR3Jkd', '4021848'), + (997, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amGR3Jkd', '4136744'), + (997, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'amGR3Jkd', '4136937'), + (997, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'amGR3Jkd', '4136938'), + (997, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amGR3Jkd', '4136947'), + (997, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGR3Jkd', '4210314'), + (997, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGR3Jkd', '4225444'), + (997, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amGR3Jkd', '4239259'), + (997, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGR3Jkd', '4240316'), + (997, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'amGR3Jkd', '4240317'), + (997, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'amGR3Jkd', '4240318'), + (997, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'amGR3Jkd', '4240320'), + (997, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amGR3Jkd', '4250163'), + (997, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGR3Jkd', '4275957'), + (997, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amGR3Jkd', '4277819'), + (997, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amGR3Jkd', '4301723'), + (997, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'amGR3Jkd', '4302093'), + (997, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amGR3Jkd', '4304151'), + (997, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'amGR3Jkd', '4356801'), + (997, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'amGR3Jkd', '4366186'), + (997, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'amGR3Jkd', '4366187'), + (997, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'amGR3Jkd', '4420735'), + (997, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'amGR3Jkd', '4420738'), + (997, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'amGR3Jkd', '4420739'), + (997, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'amGR3Jkd', '4420741'), + (997, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'amGR3Jkd', '4420744'), + (997, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'amGR3Jkd', '4420747'), + (997, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'amGR3Jkd', '4420748'), + (997, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'amGR3Jkd', '4420749'), + (997, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'amGR3Jkd', '4461883'), + (997, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'amGR3Jkd', '4508342'), + (997, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'amGR3Jkd', '4568602'), + (997, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'amGR3Jkd', '4572153'), + (997, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'amGR3Jkd', '4585962'), + (997, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'amGR3Jkd', '4596356'), + (997, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'amGR3Jkd', '4598860'), + (997, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'amGR3Jkd', '4598861'), + (997, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'amGR3Jkd', '4602797'), + (997, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'amGR3Jkd', '4637896'), + (997, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'amGR3Jkd', '4642994'), + (997, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'amGR3Jkd', '4642995'), + (997, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'amGR3Jkd', '4642996'), + (997, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'amGR3Jkd', '4642997'), + (997, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'amGR3Jkd', '4645687'), + (997, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'amGR3Jkd', '4645698'), + (997, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'amGR3Jkd', '4645704'), + (997, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'amGR3Jkd', '4645705'), + (997, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'amGR3Jkd', '4668385'), + (997, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amGR3Jkd', '4694407'), + (997, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'amGR3Jkd', '4706262'), + (997, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'amGR3Jkd', '4736497'), + (997, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amGR3Jkd', '4736499'), + (997, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'amGR3Jkd', '4736500'), + (997, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'amGR3Jkd', '4736503'), + (997, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amGR3Jkd', '4736504'), + (997, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'amGR3Jkd', '4746789'), + (997, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amGR3Jkd', '4753929'), + (997, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amGR3Jkd', '5038850'), + (997, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amGR3Jkd', '5045826'), + (997, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amGR3Jkd', '5132533'), + (997, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'amGR3Jkd', '5186582'), + (997, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'amGR3Jkd', '5186583'), + (997, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amGR3Jkd', '5186585'), + (997, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amGR3Jkd', '5190437'), + (997, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGR3Jkd', '6045684'), + (998, 870, 'not_attending', '2021-07-03 01:49:22', '2025-12-17 19:47:39', 'N4EeZ1w4', '4136937'), + (998, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'N4EeZ1w4', '4136938'), + (998, 891, 'attending', '2021-07-02 01:28:14', '2025-12-17 19:47:38', 'N4EeZ1w4', '4229417'), + (998, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'N4EeZ1w4', '4229418'), + (998, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'N4EeZ1w4', '4239259'), + (998, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'N4EeZ1w4', '4250163'), + (998, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4EeZ1w4', '6045684'), + (999, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd3R6VJ24', '6484200'), + (999, 2322, 'attending', '2023-11-16 03:55:25', '2025-12-17 19:46:48', 'd3R6VJ24', '6514659'), + (999, 2323, 'not_attending', '2023-11-19 04:46:57', '2025-12-17 19:46:49', 'd3R6VJ24', '6514660'), + (999, 2324, 'attending', '2023-12-04 21:51:27', '2025-12-17 19:46:49', 'd3R6VJ24', '6514662'), + (999, 2325, 'attending', '2023-12-15 19:52:37', '2025-12-17 19:46:36', 'd3R6VJ24', '6514663'), + (999, 2338, 'maybe', '2023-11-21 01:16:34', '2025-12-17 19:46:48', 'd3R6VJ24', '6538868'), + (999, 2339, 'not_attending', '2023-11-13 23:24:20', '2025-12-17 19:46:47', 'd3R6VJ24', '6539128'), + (999, 2340, 'maybe', '2023-11-20 22:49:42', '2025-12-17 19:46:48', 'd3R6VJ24', '6540279'), + (999, 2342, 'attending', '2023-11-13 19:47:41', '2025-12-17 19:46:47', 'd3R6VJ24', '6545076'), + (999, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd3R6VJ24', '6584747'), + (999, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd3R6VJ24', '6587097'), + (999, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd3R6VJ24', '6609022'), + (999, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd3R6VJ24', '6632757'), + (999, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd3R6VJ24', '6644187'), + (999, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd3R6VJ24', '6648951'), + (999, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd3R6VJ24', '6648952'), + (999, 2391, 'attending', '2024-01-11 00:06:48', '2025-12-17 19:46:37', 'd3R6VJ24', '6654138'), + (999, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd3R6VJ24', '6655401'), + (999, 2399, 'attending', '2024-01-13 03:51:38', '2025-12-17 19:46:38', 'd3R6VJ24', '6657583'), + (999, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd3R6VJ24', '6661585'), + (999, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd3R6VJ24', '6661588'), + (999, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd3R6VJ24', '6661589'), + (999, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd3R6VJ24', '6699906'), + (999, 2408, 'attending', '2024-01-21 04:43:09', '2025-12-17 19:46:40', 'd3R6VJ24', '6699907'), + (999, 2410, 'attending', '2024-02-09 21:29:51', '2025-12-17 19:46:41', 'd3R6VJ24', '6699911'), + (999, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd3R6VJ24', '6699913'), + (999, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd3R6VJ24', '6701109'), + (999, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd3R6VJ24', '6705219'), + (999, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd3R6VJ24', '6710153'), + (999, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd3R6VJ24', '6711552'), + (999, 2430, 'maybe', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'd3R6VJ24', '6711553'), + (999, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd3R6VJ24', '6722688'), + (999, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd3R6VJ24', '6730620'), + (999, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd3R6VJ24', '6730642'), + (999, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd3R6VJ24', '6740364'), + (999, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd3R6VJ24', '6743829'), + (999, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd3R6VJ24', '7030380'), + (999, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd3R6VJ24', '7033677'), + (999, 2474, 'maybe', '2024-02-21 01:50:48', '2025-12-17 19:46:43', 'd3R6VJ24', '7035415'), + (999, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd3R6VJ24', '7044715'), + (999, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd3R6VJ24', '7050318'), + (999, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd3R6VJ24', '7050319'), + (999, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd3R6VJ24', '7050322'), + (999, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd3R6VJ24', '7057804'), + (999, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'd3R6VJ24', '7059866'), + (999, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd3R6VJ24', '7072824'), + (999, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd3R6VJ24', '7074348'), + (999, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd3R6VJ24', '7074364'), + (999, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd3R6VJ24', '7089267'), + (999, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd3R6VJ24', '7098747'), + (999, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd3R6VJ24', '7113468'), + (999, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd3R6VJ24', '7114856'), + (999, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd3R6VJ24', '7114951'), + (999, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd3R6VJ24', '7114955'), + (999, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd3R6VJ24', '7114956'), + (999, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd3R6VJ24', '7114957'), + (999, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd3R6VJ24', '7153615'), + (999, 2570, 'maybe', '2024-04-08 17:00:18', '2025-12-17 19:46:33', 'd3R6VJ24', '7159187'), + (999, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd3R6VJ24', '7159484'), + (999, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd3R6VJ24', '7178446'), + (999, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd3R6VJ24', '7220467'), + (999, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd3R6VJ24', '7240354'), + (999, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd3R6VJ24', '7251633'), + (999, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd3R6VJ24', '7324073'), + (999, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd3R6VJ24', '7324074'), + (999, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd3R6VJ24', '7324075'), + (999, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd3R6VJ24', '7324078'), + (999, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd3R6VJ24', '7324082'), + (999, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd3R6VJ24', '7331457'), + (999, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd3R6VJ24', '7363643'), + (999, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd3R6VJ24', '7368606'), + (999, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd3R6VJ24', '7397462'), + (999, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd3R6VJ24', '7424275'), + (999, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd3R6VJ24', '7424276'), + (999, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd3R6VJ24', '7432751'), + (999, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd3R6VJ24', '7432752'), + (999, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd3R6VJ24', '7432753'), + (999, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd3R6VJ24', '7432754'), + (999, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd3R6VJ24', '7432755'), + (999, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd3R6VJ24', '7432756'), + (999, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd3R6VJ24', '7432758'), + (999, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd3R6VJ24', '7432759'), + (999, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd3R6VJ24', '7433834'), + (999, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd3R6VJ24', '7470197'), + (999, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd3R6VJ24', '7685613'), + (999, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd3R6VJ24', '7688194'), + (999, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd3R6VJ24', '7688196'), + (999, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd3R6VJ24', '7688289'), + (999, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd3R6VJ24', '7692763'), + (999, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd3R6VJ24', '7697552'), + (999, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd3R6VJ24', '7699878'), + (999, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd3R6VJ24', '7704043'), + (999, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd3R6VJ24', '7712467'), + (999, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd3R6VJ24', '7713585'), + (999, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd3R6VJ24', '7713586'), + (999, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd3R6VJ24', '7738518'), + (999, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd3R6VJ24', '7750636'), + (999, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd3R6VJ24', '7796540'), + (999, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd3R6VJ24', '7796541'), + (999, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd3R6VJ24', '7796542'), + (999, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd3R6VJ24', '7825913'), + (999, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd3R6VJ24', '7826209'), + (999, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd3R6VJ24', '7834742'), + (999, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd3R6VJ24', '7842108'), + (999, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd3R6VJ24', '7842902'), + (999, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd3R6VJ24', '7842903'), + (999, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd3R6VJ24', '7842904'), + (999, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd3R6VJ24', '7842905'), + (999, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd3R6VJ24', '7855719'), + (999, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd3R6VJ24', '7860683'), + (999, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd3R6VJ24', '7860684'), + (999, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd3R6VJ24', '7866095'), + (999, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd3R6VJ24', '7869170'), + (999, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd3R6VJ24', '7869188'), + (999, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd3R6VJ24', '7869201'), + (999, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd3R6VJ24', '7877465'), + (999, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd3R6VJ24', '7888250'), + (999, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd3R6VJ24', '7904777'), + (999, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd3R6VJ24', '8349164'), + (999, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd3R6VJ24', '8349545'), + (999, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd3R6VJ24', '8353584'), + (999, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd3R6VJ24', '8368028'), + (999, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd3R6VJ24', '8368029'), + (999, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd3R6VJ24', '8388462'), + (999, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd3R6VJ24', '8400273'), + (999, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd3R6VJ24', '8400274'), + (999, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd3R6VJ24', '8400275'), + (999, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd3R6VJ24', '8400276'), + (999, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd3R6VJ24', '8404977'), + (999, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd3R6VJ24', '8430783'), + (999, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd3R6VJ24', '8430784'), + (999, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd3R6VJ24', '8430799'), + (999, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd3R6VJ24', '8430800'), + (999, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd3R6VJ24', '8430801'), + (999, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd3R6VJ24', '8438709'), + (999, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd3R6VJ24', '8457738'), + (999, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd3R6VJ24', '8459566'), + (999, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd3R6VJ24', '8459567'), + (999, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd3R6VJ24', '8461032'), + (999, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd3R6VJ24', '8477877'), + (999, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd3R6VJ24', '8485688'), + (999, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd3R6VJ24', '8490587'), + (999, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd3R6VJ24', '8493552'), + (999, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd3R6VJ24', '8493553'), + (999, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd3R6VJ24', '8493554'), + (999, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd3R6VJ24', '8493555'), + (999, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd3R6VJ24', '8493556'), + (999, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd3R6VJ24', '8493557'), + (999, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd3R6VJ24', '8493558'), + (999, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd3R6VJ24', '8493559'), + (999, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd3R6VJ24', '8493560'), + (999, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd3R6VJ24', '8493561'), + (999, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd3R6VJ24', '8493572'), + (999, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd3R6VJ24', '8540725'), + (999, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd3R6VJ24', '8555421'), + (1000, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mjVOrW5m', '7869188'), + (1000, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mjVOrW5m', '7888250'), + (1000, 3057, 'not_attending', '2025-03-24 18:19:49', '2025-12-17 19:46:19', 'mjVOrW5m', '7890059'), + (1000, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mjVOrW5m', '7904777'), + (1000, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjVOrW5m', '8349164'), + (1000, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjVOrW5m', '8349545'), + (1000, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mjVOrW5m', '8353584'), + (1000, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjVOrW5m', '8368028'), + (1000, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjVOrW5m', '8368029'), + (1000, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjVOrW5m', '8388462'), + (1000, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjVOrW5m', '8400273'), + (1000, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mjVOrW5m', '8400274'), + (1000, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjVOrW5m', '8400275'), + (1000, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mjVOrW5m', '8400276'), + (1000, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjVOrW5m', '8404977'), + (1000, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mjVOrW5m', '8430783'), + (1000, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjVOrW5m', '8430784'), + (1000, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjVOrW5m', '8430799'), + (1000, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjVOrW5m', '8430800'), + (1000, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjVOrW5m', '8430801'), + (1000, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mjVOrW5m', '8438709'), + (1000, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjVOrW5m', '8457738'), + (1000, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjVOrW5m', '8459566'), + (1000, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjVOrW5m', '8459567'), + (1000, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjVOrW5m', '8461032'), + (1000, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjVOrW5m', '8477877'), + (1000, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mjVOrW5m', '8485688'), + (1001, 1273, 'attending', '2022-03-26 14:21:56', '2025-12-17 19:47:25', 'AgxD25n4', '5186583'), + (1001, 1274, 'attending', '2022-04-01 12:59:42', '2025-12-17 19:47:26', 'AgxD25n4', '5186585'), + (1001, 1281, 'not_attending', '2022-04-09 22:15:36', '2025-12-17 19:47:27', 'AgxD25n4', '5190437'), + (1001, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgxD25n4', '5195095'), + (1001, 1285, 'attending', '2022-03-25 20:07:12', '2025-12-17 19:47:25', 'AgxD25n4', '5196763'), + (1001, 1290, 'attending', '2022-03-29 18:02:43', '2025-12-17 19:47:25', 'AgxD25n4', '5200196'), + (1001, 1291, 'maybe', '2022-03-25 20:07:17', '2025-12-17 19:47:25', 'AgxD25n4', '5200458'), + (1001, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AgxD25n4', '5215989'), + (1001, 1301, 'not_attending', '2022-04-01 12:59:30', '2025-12-17 19:47:26', 'AgxD25n4', '5218175'), + (1001, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgxD25n4', '5223686'), + (1001, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgxD25n4', '5227432'), + (1001, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgxD25n4', '5247467'), + (1001, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgxD25n4', '5260800'), + (1001, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgxD25n4', '5269930'), + (1001, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgxD25n4', '5271448'), + (1001, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AgxD25n4', '5271449'), + (1001, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgxD25n4', '5276469'), + (1001, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'AgxD25n4', '5277078'), + (1001, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgxD25n4', '5278159'), + (1001, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AgxD25n4', '5363695'), + (1001, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AgxD25n4', '5365960'), + (1001, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AgxD25n4', '5368973'), + (1001, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AgxD25n4', '5378247'), + (1001, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AgxD25n4', '5389605'), + (1001, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AgxD25n4', '5397265'), + (1001, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AgxD25n4', '5403967'), + (1001, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgxD25n4', '5404786'), + (1001, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgxD25n4', '5405203'), + (1001, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AgxD25n4', '5411699'), + (1001, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AgxD25n4', '5412550'), + (1001, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AgxD25n4', '5415046'), + (1001, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgxD25n4', '5422086'), + (1001, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgxD25n4', '5422406'), + (1001, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgxD25n4', '5424565'), + (1001, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgxD25n4', '5426882'), + (1001, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgxD25n4', '5427083'), + (1001, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AgxD25n4', '5441125'), + (1001, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AgxD25n4', '5441126'), + (1001, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AgxD25n4', '5441128'), + (1001, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgxD25n4', '5446643'), + (1001, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgxD25n4', '5453325'), + (1001, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgxD25n4', '5454516'), + (1001, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgxD25n4', '5454605'), + (1001, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgxD25n4', '5455037'), + (1001, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgxD25n4', '5461278'), + (1001, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgxD25n4', '5469480'), + (1001, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgxD25n4', '5471073'), + (1001, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AgxD25n4', '5474663'), + (1001, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgxD25n4', '5482022'), + (1001, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgxD25n4', '5482793'), + (1001, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgxD25n4', '5488912'), + (1001, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgxD25n4', '5492192'), + (1001, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgxD25n4', '5493139'), + (1001, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgxD25n4', '5493200'), + (1001, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgxD25n4', '5502188'), + (1001, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgxD25n4', '5512862'), + (1001, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgxD25n4', '5513985'), + (1001, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxD25n4', '6045684'), + (1002, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', '841vvvRd', '3149489'), + (1002, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '841vvvRd', '3149491'), + (1002, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '841vvvRd', '3236450'), + (1002, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', '841vvvRd', '3236452'), + (1002, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '841vvvRd', '3539921'), + (1002, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '841vvvRd', '3539922'), + (1002, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '841vvvRd', '3539923'), + (1002, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '841vvvRd', '3806392'), + (1002, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', '841vvvRd', '3963335'), + (1002, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '841vvvRd', '3975311'), + (1002, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '841vvvRd', '3975312'), + (1002, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '841vvvRd', '3994992'), + (1002, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '841vvvRd', '4014338'), + (1002, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '841vvvRd', '4136744'), + (1002, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841vvvRd', '6045684'), + (1003, 535, 'attending', '2021-01-09 19:52:30', '2025-12-17 19:47:48', 'O4Z5pM9A', '3384729'), + (1003, 536, 'attending', '2021-01-08 05:40:21', '2025-12-17 19:47:48', 'O4Z5pM9A', '3386848'), + (1003, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'O4Z5pM9A', '3396499'), + (1003, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'O4Z5pM9A', '3403650'), + (1003, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'O4Z5pM9A', '3406988'), + (1003, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'O4Z5pM9A', '3416576'), + (1003, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'O4Z5pM9A', '3426074'), + (1003, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'O4Z5pM9A', '3430267'), + (1003, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'O4Z5pM9A', '3468125'), + (1003, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'O4Z5pM9A', '3470303'), + (1003, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'O4Z5pM9A', '3470991'), + (1003, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4Z5pM9A', '6045684'), + (1004, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd90BPKE4', '6337236'), + (1004, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd90BPKE4', '6337970'), + (1004, 2156, 'not_attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'd90BPKE4', '6338308'), + (1004, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd90BPKE4', '6341710'), + (1004, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd90BPKE4', '6342044'), + (1004, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd90BPKE4', '6342298'), + (1004, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'd90BPKE4', '6342591'), + (1004, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd90BPKE4', '6343294'), + (1004, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd90BPKE4', '6347034'), + (1004, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd90BPKE4', '6347056'), + (1004, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd90BPKE4', '6353830'), + (1004, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd90BPKE4', '6353831'), + (1004, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd90BPKE4', '6357867'), + (1004, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd90BPKE4', '6358652'), + (1004, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd90BPKE4', '6361709'), + (1004, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd90BPKE4', '6361710'), + (1004, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd90BPKE4', '6361711'), + (1004, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd90BPKE4', '6361712'), + (1004, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd90BPKE4', '6361713'), + (1004, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd90BPKE4', '6382573'), + (1004, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd90BPKE4', '6388604'), + (1004, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd90BPKE4', '6394629'), + (1004, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd90BPKE4', '6394631'), + (1004, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd90BPKE4', '6431478'), + (1005, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3V9LjY4', '6045684'), + (1006, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', '4WWw56j4', '6334903'), + (1006, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4WWw56j4', '6337236'), + (1006, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4WWw56j4', '6337970'), + (1006, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4WWw56j4', '6338308'), + (1006, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4WWw56j4', '6340845'), + (1006, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4WWw56j4', '6341710'), + (1006, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4WWw56j4', '6342044'), + (1006, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4WWw56j4', '6342298'), + (1006, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4WWw56j4', '6343294'), + (1006, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4WWw56j4', '6347034'), + (1006, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4WWw56j4', '6347056'), + (1006, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4WWw56j4', '6353830'), + (1006, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4WWw56j4', '6353831'), + (1006, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4WWw56j4', '6357867'), + (1006, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4WWw56j4', '6358652'), + (1006, 2204, 'attending', '2023-08-18 15:46:58', '2025-12-17 19:46:55', '4WWw56j4', '6361542'), + (1006, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4WWw56j4', '6361709'), + (1006, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4WWw56j4', '6361710'), + (1006, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4WWw56j4', '6361711'), + (1006, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4WWw56j4', '6361712'), + (1006, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4WWw56j4', '6361713'), + (1006, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4WWw56j4', '6382573'), + (1006, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4WWw56j4', '6388604'), + (1006, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4WWw56j4', '6394629'), + (1006, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4WWw56j4', '6394631'), + (1006, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4WWw56j4', '6440863'), + (1006, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4WWw56j4', '6445440'), + (1006, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4WWw56j4', '6453951'), + (1006, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4WWw56j4', '6461696'), + (1006, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4WWw56j4', '6462129'), + (1006, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4WWw56j4', '6463218'), + (1006, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4WWw56j4', '6472181'), + (1006, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4WWw56j4', '6482693'), + (1006, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4WWw56j4', '6484200'), + (1006, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4WWw56j4', '6484680'), + (1006, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4WWw56j4', '6507741'), + (1006, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4WWw56j4', '6514659'), + (1006, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4WWw56j4', '6514660'), + (1006, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4WWw56j4', '6519103'), + (1006, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4WWw56j4', '6535681'), + (1006, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4WWw56j4', '6584747'), + (1006, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4WWw56j4', '6587097'), + (1006, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4WWw56j4', '6609022'), + (1006, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4WWw56j4', '6632757'), + (1006, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4WWw56j4', '6644187'), + (1006, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4WWw56j4', '6648951'), + (1006, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4WWw56j4', '6648952'), + (1006, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4WWw56j4', '6655401'), + (1006, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4WWw56j4', '6661585'), + (1006, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4WWw56j4', '6661588'), + (1006, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4WWw56j4', '6661589'), + (1006, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4WWw56j4', '6699906'), + (1006, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4WWw56j4', '6701109'), + (1006, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4WWw56j4', '6705219'), + (1006, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4WWw56j4', '6710153'), + (1006, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4WWw56j4', '6711552'), + (1006, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4WWw56j4', '6711553'), + (1007, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'VmMkrJJ4', '3149489'), + (1007, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'VmMkrJJ4', '3149491'), + (1007, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'VmMkrJJ4', '3149493'), + (1007, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'VmMkrJJ4', '3236448'), + (1007, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'VmMkrJJ4', '3236450'), + (1007, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'VmMkrJJ4', '3236452'), + (1007, 648, 'attending', '2021-05-26 16:09:26', '2025-12-17 19:47:47', 'VmMkrJJ4', '3539923'), + (1007, 777, 'attending', '2021-05-26 20:41:53', '2025-12-17 19:47:46', 'VmMkrJJ4', '3746248'), + (1007, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'VmMkrJJ4', '3963335'), + (1007, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'VmMkrJJ4', '3974109'), + (1007, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VmMkrJJ4', '3975311'), + (1007, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VmMkrJJ4', '3975312'), + (1007, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VmMkrJJ4', '3994992'), + (1007, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VmMkrJJ4', '4014338'), + (1007, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'VmMkrJJ4', '4021848'), + (1007, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmMkrJJ4', '4136744'), + (1007, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'VmMkrJJ4', '4136937'), + (1007, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VmMkrJJ4', '4136947'), + (1007, 891, 'attending', '2021-07-01 20:55:16', '2025-12-17 19:47:38', 'VmMkrJJ4', '4229417'), + (1007, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VmMkrJJ4', '4239259'), + (1007, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMkrJJ4', '6045684'), + (1008, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd81gn6km', '6361713'), + (1008, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd81gn6km', '6388604'), + (1008, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd81gn6km', '6394629'), + (1008, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd81gn6km', '6394631'), + (1008, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd81gn6km', '6431478'), + (1009, 1797, 'attending', '2022-12-08 04:37:28', '2025-12-17 19:47:17', 'mGOk1anm', '5757486'), + (1009, 1824, 'not_attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'mGOk1anm', '5774172'), + (1009, 1832, 'not_attending', '2022-12-03 19:14:16', '2025-12-17 19:47:16', 'mGOk1anm', '5818247'), + (1009, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mGOk1anm', '5819471'), + (1009, 1836, 'attending', '2022-12-05 07:45:13', '2025-12-17 19:47:16', 'mGOk1anm', '5819484'), + (1009, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'mGOk1anm', '5827739'), + (1009, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mGOk1anm', '5844306'), + (1009, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mGOk1anm', '5850159'), + (1009, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mGOk1anm', '5858999'), + (1009, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mGOk1anm', '5871984'), + (1009, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mGOk1anm', '5876354'), + (1009, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mGOk1anm', '5880939'), + (1009, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mGOk1anm', '5887890'), + (1009, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mGOk1anm', '5888598'), + (1009, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mGOk1anm', '5893260'), + (1009, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mGOk1anm', '6045684'), + (1010, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dKP6GPem', '5652395'), + (1010, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKP6GPem', '6045684'), + (1011, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdKlG99m', '3470305'), + (1011, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'kdKlG99m', '3470991'), + (1011, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdKlG99m', '3517815'), + (1011, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdKlG99m', '3517816'), + (1011, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKlG99m', '3523941'), + (1011, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKlG99m', '3533850'), + (1011, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKlG99m', '3536632'), + (1011, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKlG99m', '3536656'), + (1011, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdKlG99m', '3539916'), + (1011, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdKlG99m', '3539917'), + (1011, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKlG99m', '3539918'), + (1011, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKlG99m', '3539919'), + (1011, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKlG99m', '3539920'), + (1011, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKlG99m', '3539921'), + (1011, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKlG99m', '3539922'), + (1011, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKlG99m', '3539923'), + (1011, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdKlG99m', '3539927'), + (1011, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKlG99m', '3582734'), + (1011, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKlG99m', '3619523'), + (1011, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKlG99m', '6045684'), + (1012, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dxOr5nD4', '5880942'), + (1012, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dxOr5nD4', '5880943'), + (1012, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dxOr5nD4', '5900200'), + (1012, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dxOr5nD4', '5900202'), + (1012, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dxOr5nD4', '5900203'), + (1012, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'dxOr5nD4', '5910526'), + (1012, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dxOr5nD4', '5910528'), + (1012, 1921, 'not_attending', '2023-02-18 05:13:57', '2025-12-17 19:47:08', 'dxOr5nD4', '5914092'), + (1012, 1925, 'attending', '2023-02-23 23:22:43', '2025-12-17 19:47:08', 'dxOr5nD4', '5932619'), + (1012, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dxOr5nD4', '5936234'), + (1012, 1934, 'attending', '2023-02-22 15:15:46', '2025-12-17 19:47:08', 'dxOr5nD4', '5936691'), + (1012, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dxOr5nD4', '5958351'), + (1012, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dxOr5nD4', '5959751'), + (1012, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dxOr5nD4', '5959755'), + (1012, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dxOr5nD4', '5960055'), + (1012, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dxOr5nD4', '5961684'), + (1012, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dxOr5nD4', '5962132'), + (1012, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dxOr5nD4', '5962133'), + (1012, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dxOr5nD4', '5962134'), + (1012, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dxOr5nD4', '5962317'), + (1012, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dxOr5nD4', '5962318'), + (1012, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dxOr5nD4', '5965933'), + (1012, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dxOr5nD4', '5967014'), + (1012, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dxOr5nD4', '5972815'), + (1012, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dxOr5nD4', '5974016'), + (1012, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dxOr5nD4', '5981515'), + (1012, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dxOr5nD4', '5993516'), + (1012, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dxOr5nD4', '5998939'), + (1012, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dxOr5nD4', '6028191'), + (1012, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dxOr5nD4', '6040066'), + (1012, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dxOr5nD4', '6042717'), + (1012, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dxOr5nD4', '6044838'), + (1012, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dxOr5nD4', '6044839'), + (1012, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxOr5nD4', '6045684'), + (1012, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dxOr5nD4', '6050104'), + (1012, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dxOr5nD4', '6053195'), + (1012, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dxOr5nD4', '6053198'), + (1012, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dxOr5nD4', '6056085'), + (1012, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dxOr5nD4', '6056916'), + (1012, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dxOr5nD4', '6059290'), + (1012, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dxOr5nD4', '6060328'), + (1012, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dxOr5nD4', '6061037'), + (1012, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dxOr5nD4', '6061039'), + (1012, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dxOr5nD4', '6067245'), + (1012, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dxOr5nD4', '6068094'), + (1012, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dxOr5nD4', '6068252'), + (1012, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dxOr5nD4', '6068253'), + (1012, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dxOr5nD4', '6068254'), + (1012, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dxOr5nD4', '6068280'), + (1012, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dxOr5nD4', '6069093'), + (1012, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dxOr5nD4', '6072528'), + (1012, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dxOr5nD4', '6079840'), + (1012, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dxOr5nD4', '6083398'), + (1012, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dxOr5nD4', '6093504'), + (1012, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dxOr5nD4', '6097414'), + (1012, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dxOr5nD4', '6097442'), + (1012, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dxOr5nD4', '6097684'), + (1012, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dxOr5nD4', '6098762'), + (1012, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dxOr5nD4', '6101362'), + (1012, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dxOr5nD4', '6103752'), + (1012, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dxOr5nD4', '6107314'), + (1013, 1315, 'attending', '2022-04-22 22:46:43', '2025-12-17 19:47:27', '41WMnERm', '5237522'), + (1013, 1337, 'maybe', '2022-04-20 22:39:19', '2025-12-17 19:47:27', '41WMnERm', '5245036'), + (1013, 1350, 'attending', '2022-04-20 22:40:54', '2025-12-17 19:47:27', '41WMnERm', '5249763'), + (1013, 1362, 'attending', '2022-04-30 19:21:52', '2025-12-17 19:47:28', '41WMnERm', '5260800'), + (1013, 1371, 'attending', '2022-04-27 22:39:52', '2025-12-17 19:47:27', '41WMnERm', '5263784'), + (1013, 1372, 'attending', '2022-05-04 20:49:37', '2025-12-17 19:47:28', '41WMnERm', '5264352'), + (1013, 1374, 'attending', '2022-05-07 21:25:18', '2025-12-17 19:47:28', '41WMnERm', '5269930'), + (1013, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41WMnERm', '5271448'), + (1013, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '41WMnERm', '5271449'), + (1013, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '41WMnERm', '5276469'), + (1013, 1385, 'attending', '2022-05-11 22:29:38', '2025-12-17 19:47:28', '41WMnERm', '5277822'), + (1013, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41WMnERm', '5278159'), + (1013, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41WMnERm', '5363695'), + (1013, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41WMnERm', '5365960'), + (1013, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '41WMnERm', '5368973'), + (1013, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41WMnERm', '5378247'), + (1013, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '41WMnERm', '5389605'), + (1013, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41WMnERm', '5397265'), + (1013, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WMnERm', '5403967'), + (1013, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WMnERm', '5404786'), + (1013, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WMnERm', '5405203'), + (1013, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '41WMnERm', '5408794'), + (1013, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WMnERm', '5411699'), + (1013, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WMnERm', '5412550'), + (1013, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WMnERm', '5415046'), + (1013, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WMnERm', '5422086'), + (1013, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WMnERm', '5422406'), + (1013, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WMnERm', '5424565'), + (1013, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WMnERm', '5426882'), + (1013, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WMnERm', '5427083'), + (1013, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '41WMnERm', '5441125'), + (1013, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WMnERm', '5441126'), + (1013, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WMnERm', '5441128'), + (1013, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WMnERm', '5446643'), + (1013, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WMnERm', '5453325'), + (1013, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WMnERm', '5454516'), + (1013, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WMnERm', '5454605'), + (1013, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WMnERm', '5455037'), + (1013, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WMnERm', '5461278'), + (1013, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WMnERm', '5469480'), + (1013, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WMnERm', '5471073'), + (1013, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41WMnERm', '5474663'), + (1013, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WMnERm', '5482022'), + (1013, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WMnERm', '5482793'), + (1013, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WMnERm', '5488912'), + (1013, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WMnERm', '5492192'), + (1013, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WMnERm', '5493139'), + (1013, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WMnERm', '5493200'), + (1013, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WMnERm', '5502188'), + (1013, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WMnERm', '5512862'), + (1013, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WMnERm', '5513985'), + (1013, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WMnERm', '6045684'), + (1014, 2136, 'attending', '2023-07-21 15:05:04', '2025-12-17 19:46:53', 'AXV3GXvd', '6187966'), + (1014, 2137, 'attending', '2023-07-21 15:06:57', '2025-12-17 19:46:54', 'AXV3GXvd', '6187967'), + (1014, 2146, 'attending', '2023-07-21 14:06:26', '2025-12-17 19:46:53', 'AXV3GXvd', '6335638'), + (1014, 2148, 'attending', '2023-07-21 15:04:40', '2025-12-17 19:46:53', 'AXV3GXvd', '6335667'), + (1014, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AXV3GXvd', '6337236'), + (1014, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AXV3GXvd', '6337970'), + (1014, 2156, 'not_attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'AXV3GXvd', '6338308'), + (1014, 2158, 'attending', '2023-07-21 14:04:11', '2025-12-17 19:46:53', 'AXV3GXvd', '6338353'), + (1014, 2159, 'attending', '2023-07-22 22:17:14', '2025-12-17 19:46:53', 'AXV3GXvd', '6338355'), + (1014, 2160, 'maybe', '2023-07-24 22:42:18', '2025-12-17 19:46:54', 'AXV3GXvd', '6338358'), + (1014, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AXV3GXvd', '6341710'), + (1014, 2164, 'maybe', '2023-07-24 22:42:45', '2025-12-17 19:46:54', 'AXV3GXvd', '6341797'), + (1014, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AXV3GXvd', '6342044'), + (1014, 2166, 'attending', '2023-07-21 15:05:27', '2025-12-17 19:46:54', 'AXV3GXvd', '6342115'), + (1014, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AXV3GXvd', '6342298'), + (1014, 2171, 'maybe', '2023-07-21 15:05:39', '2025-12-17 19:46:54', 'AXV3GXvd', '6342328'), + (1014, 2172, 'attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'AXV3GXvd', '6342591'), + (1014, 2173, 'attending', '2023-07-20 23:34:57', '2025-12-17 19:46:53', 'AXV3GXvd', '6342769'), + (1014, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AXV3GXvd', '6343294'), + (1014, 2175, 'attending', '2023-07-22 21:19:33', '2025-12-17 19:46:53', 'AXV3GXvd', '6346982'), + (1014, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AXV3GXvd', '6347034'), + (1014, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AXV3GXvd', '6347056'), + (1014, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AXV3GXvd', '6353830'), + (1014, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AXV3GXvd', '6353831'), + (1014, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AXV3GXvd', '6357867'), + (1014, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AXV3GXvd', '6358652'), + (1014, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AXV3GXvd', '6361709'), + (1014, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AXV3GXvd', '6361710'), + (1014, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AXV3GXvd', '6361711'), + (1014, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AXV3GXvd', '6361712'), + (1014, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AXV3GXvd', '6361713'), + (1014, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AXV3GXvd', '6382573'), + (1014, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'AXV3GXvd', '6388604'), + (1014, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AXV3GXvd', '6394629'), + (1014, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AXV3GXvd', '6394631'), + (1014, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AXV3GXvd', '6440863'), + (1014, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AXV3GXvd', '6445440'), + (1014, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AXV3GXvd', '6453951'), + (1014, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AXV3GXvd', '6461696'), + (1014, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AXV3GXvd', '6462129'), + (1014, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AXV3GXvd', '6463218'), + (1014, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AXV3GXvd', '6472181'), + (1014, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AXV3GXvd', '6482693'), + (1014, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'AXV3GXvd', '6484200'), + (1014, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AXV3GXvd', '6484680'), + (1014, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AXV3GXvd', '6507741'), + (1014, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AXV3GXvd', '6514659'), + (1014, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AXV3GXvd', '6514660'), + (1014, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AXV3GXvd', '6519103'), + (1014, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AXV3GXvd', '6535681'), + (1014, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AXV3GXvd', '6584747'), + (1014, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AXV3GXvd', '6587097'), + (1014, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AXV3GXvd', '6609022'), + (1014, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AXV3GXvd', '6632757'), + (1014, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AXV3GXvd', '6644187'), + (1014, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AXV3GXvd', '6648951'), + (1014, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AXV3GXvd', '6648952'), + (1014, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AXV3GXvd', '6655401'), + (1014, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AXV3GXvd', '6661585'), + (1014, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AXV3GXvd', '6661588'), + (1014, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AXV3GXvd', '6661589'), + (1014, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AXV3GXvd', '6699906'), + (1014, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AXV3GXvd', '6701109'), + (1014, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AXV3GXvd', '6705219'), + (1014, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AXV3GXvd', '6710153'), + (1014, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AXV3GXvd', '6711552'), + (1014, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AXV3GXvd', '6711553'), + (1015, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'daBnr1Dm', '4366187'), + (1015, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'daBnr1Dm', '4420735'), + (1015, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'daBnr1Dm', '4420738'), + (1015, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'daBnr1Dm', '4420739'), + (1015, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'daBnr1Dm', '4420741'), + (1015, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'daBnr1Dm', '4420744'), + (1015, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'daBnr1Dm', '4420747'), + (1015, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'daBnr1Dm', '4420748'), + (1015, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'daBnr1Dm', '4420749'), + (1015, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daBnr1Dm', '6045684'), + (1016, 884, 'maybe', '2021-08-11 10:50:25', '2025-12-17 19:47:42', 'dwYoWLaA', '4210314'), + (1016, 902, 'attending', '2021-08-07 17:33:01', '2025-12-17 19:47:41', 'dwYoWLaA', '4240318'), + (1016, 903, 'attending', '2021-08-11 10:50:11', '2025-12-17 19:47:42', 'dwYoWLaA', '4240320'), + (1016, 930, 'attending', '2021-08-08 21:28:56', '2025-12-17 19:47:41', 'dwYoWLaA', '4300787'), + (1016, 934, 'attending', '2021-08-04 21:18:05', '2025-12-17 19:47:40', 'dwYoWLaA', '4302093'), + (1016, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dwYoWLaA', '4304151'), + (1016, 947, 'attending', '2021-08-06 20:10:48', '2025-12-17 19:47:41', 'dwYoWLaA', '4315713'), + (1016, 952, 'attending', '2021-08-05 17:37:05', '2025-12-17 19:47:41', 'dwYoWLaA', '4318286'), + (1016, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dwYoWLaA', '4345519'), + (1016, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dwYoWLaA', '4356801'), + (1016, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'dwYoWLaA', '4358025'), + (1016, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dwYoWLaA', '4366186'), + (1016, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dwYoWLaA', '4366187'), + (1016, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'dwYoWLaA', '4402823'), + (1016, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dwYoWLaA', '4420735'), + (1016, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dwYoWLaA', '4420738'), + (1016, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dwYoWLaA', '4420739'), + (1016, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dwYoWLaA', '4420741'), + (1016, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dwYoWLaA', '4420744'), + (1016, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dwYoWLaA', '4420747'), + (1016, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dwYoWLaA', '4420748'), + (1016, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dwYoWLaA', '4420749'), + (1016, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dwYoWLaA', '4461883'), + (1016, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dwYoWLaA', '4508342'), + (1016, 1723, 'attending', '2022-11-05 21:11:50', '2025-12-17 19:47:15', 'dwYoWLaA', '5630962'), + (1016, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dwYoWLaA', '5630966'), + (1016, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dwYoWLaA', '5630967'), + (1016, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dwYoWLaA', '5630968'), + (1016, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dwYoWLaA', '5642818'), + (1016, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dwYoWLaA', '5670445'), + (1016, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dwYoWLaA', '5699760'), + (1016, 1786, 'maybe', '2022-11-08 23:41:18', '2025-12-17 19:47:15', 'dwYoWLaA', '5727232'), + (1016, 1787, 'attending', '2022-11-13 23:23:40', '2025-12-17 19:47:16', 'dwYoWLaA', '5727234'), + (1016, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dwYoWLaA', '5741601'), + (1016, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dwYoWLaA', '5763458'), + (1016, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dwYoWLaA', '5774172'), + (1016, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'dwYoWLaA', '5818247'), + (1016, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dwYoWLaA', '5819471'), + (1016, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dwYoWLaA', '5827739'), + (1016, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dwYoWLaA', '5844306'), + (1016, 1846, 'not_attending', '2022-12-18 18:53:15', '2025-12-17 19:47:04', 'dwYoWLaA', '5845237'), + (1016, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dwYoWLaA', '5850159'), + (1016, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dwYoWLaA', '5858999'), + (1016, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dwYoWLaA', '5871984'), + (1016, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dwYoWLaA', '5876354'), + (1016, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dwYoWLaA', '6045684'), + (1017, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd9Xg3GX4', '7424275'), + (1017, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd9Xg3GX4', '7424276'), + (1017, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'd9Xg3GX4', '7432756'), + (1017, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'd9Xg3GX4', '7432758'), + (1017, 2880, 'attending', '2024-10-11 17:49:59', '2025-12-17 19:46:26', 'd9Xg3GX4', '7636316'), + (1017, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd9Xg3GX4', '7685613'), + (1017, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd9Xg3GX4', '7688194'), + (1017, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd9Xg3GX4', '7688196'), + (1017, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd9Xg3GX4', '7688289'), + (1017, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd9Xg3GX4', '7692763'), + (1017, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd9Xg3GX4', '7697552'), + (1017, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd9Xg3GX4', '7699878'), + (1017, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd9Xg3GX4', '7704043'), + (1017, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd9Xg3GX4', '7712467'), + (1017, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd9Xg3GX4', '7713585'), + (1017, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd9Xg3GX4', '7713586'), + (1017, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'd9Xg3GX4', '7738518'), + (1017, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd9Xg3GX4', '7750636'), + (1017, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd9Xg3GX4', '7796540'), + (1017, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd9Xg3GX4', '7796541'), + (1017, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd9Xg3GX4', '7796542'), + (1017, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd9Xg3GX4', '7825913'), + (1017, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd9Xg3GX4', '7826209'), + (1017, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd9Xg3GX4', '7834742'), + (1017, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd9Xg3GX4', '7842108'), + (1017, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd9Xg3GX4', '7842902'), + (1017, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd9Xg3GX4', '7842903'), + (1017, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd9Xg3GX4', '7842904'), + (1017, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd9Xg3GX4', '7842905'), + (1017, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd9Xg3GX4', '7855719'), + (1017, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd9Xg3GX4', '7860683'), + (1017, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd9Xg3GX4', '7860684'), + (1017, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd9Xg3GX4', '7866095'), + (1017, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd9Xg3GX4', '7869170'), + (1017, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd9Xg3GX4', '7869188'), + (1017, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd9Xg3GX4', '7869201'), + (1017, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd9Xg3GX4', '7877465'), + (1017, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'd9Xg3GX4', '7878570'), + (1017, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd9Xg3GX4', '7888250'), + (1017, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd9Xg3GX4', '8349164'), + (1017, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd9Xg3GX4', '8349545'), + (1017, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd9Xg3GX4', '8353584'), + (1018, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Gmjwwe0A', '3236465'), + (1018, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'Gmjwwe0A', '3539916'), + (1018, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Gmjwwe0A', '3539918'), + (1018, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Gmjwwe0A', '3539919'), + (1018, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Gmjwwe0A', '3539920'), + (1018, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Gmjwwe0A', '3539921'), + (1018, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Gmjwwe0A', '3539927'), + (1018, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Gmjwwe0A', '3582734'), + (1018, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Gmjwwe0A', '3583262'), + (1018, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Gmjwwe0A', '3619523'), + (1018, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Gmjwwe0A', '3661369'), + (1018, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Gmjwwe0A', '3674262'), + (1018, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Gmjwwe0A', '3677402'), + (1018, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Gmjwwe0A', '3730212'), + (1018, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Gmjwwe0A', '3793156'), + (1018, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Gmjwwe0A', '3803310'), + (1018, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Gmjwwe0A', '3806392'), + (1018, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Gmjwwe0A', '6045684'), + (1019, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxMx6p1m', '6482693'), + (1019, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dxMx6p1m', '6484200'), + (1019, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'dxMx6p1m', '6484680'), + (1019, 2310, 'attending', '2023-11-11 18:00:00', '2025-12-17 19:46:47', 'dxMx6p1m', '6487709'), + (1019, 2315, 'attending', '2023-11-07 00:49:55', '2025-12-17 19:46:47', 'dxMx6p1m', '6493666'), + (1019, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxMx6p1m', '6507741'), + (1019, 2320, 'attending', '2023-11-07 04:03:28', '2025-12-17 19:46:47', 'dxMx6p1m', '6508647'), + (1019, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxMx6p1m', '6514659'), + (1019, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMx6p1m', '6514660'), + (1019, 2324, 'not_attending', '2023-12-05 22:45:10', '2025-12-17 19:46:49', 'dxMx6p1m', '6514662'), + (1019, 2325, 'attending', '2023-12-16 18:39:41', '2025-12-17 19:46:36', 'dxMx6p1m', '6514663'), + (1019, 2331, 'maybe', '2023-11-14 01:36:21', '2025-12-17 19:46:47', 'dxMx6p1m', '6518640'), + (1019, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxMx6p1m', '6519103'), + (1019, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dxMx6p1m', '6535681'), + (1019, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxMx6p1m', '6584747'), + (1019, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMx6p1m', '6587097'), + (1019, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMx6p1m', '6609022'), + (1019, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMx6p1m', '6632757'), + (1019, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMx6p1m', '6644187'), + (1019, 2382, 'maybe', '2024-01-03 18:03:07', '2025-12-17 19:46:37', 'dxMx6p1m', '6646401'), + (1019, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMx6p1m', '6648951'), + (1019, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMx6p1m', '6648952'), + (1019, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMx6p1m', '6655401'), + (1019, 2399, 'attending', '2024-01-10 18:36:27', '2025-12-17 19:46:38', 'dxMx6p1m', '6657583'), + (1019, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMx6p1m', '6661585'), + (1019, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMx6p1m', '6661588'), + (1019, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMx6p1m', '6661589'), + (1019, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMx6p1m', '6699906'), + (1019, 2408, 'attending', '2024-01-25 16:49:38', '2025-12-17 19:46:40', 'dxMx6p1m', '6699907'), + (1019, 2409, 'attending', '2024-01-28 19:07:09', '2025-12-17 19:46:41', 'dxMx6p1m', '6699909'), + (1019, 2410, 'attending', '2024-02-10 22:33:10', '2025-12-17 19:46:41', 'dxMx6p1m', '6699911'), + (1019, 2411, 'not_attending', '2024-02-08 17:09:49', '2025-12-17 19:46:42', 'dxMx6p1m', '6699913'), + (1019, 2412, 'maybe', '2024-02-20 02:04:10', '2025-12-17 19:46:43', 'dxMx6p1m', '6700717'), + (1019, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMx6p1m', '6701109'), + (1019, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMx6p1m', '6705219'), + (1019, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMx6p1m', '6710153'), + (1019, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMx6p1m', '6711552'), + (1019, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMx6p1m', '6711553'), + (1019, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMx6p1m', '6722688'), + (1019, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMx6p1m', '6730620'), + (1019, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMx6p1m', '6730642'), + (1019, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMx6p1m', '6740364'), + (1019, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMx6p1m', '6743829'), + (1019, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMx6p1m', '7030380'), + (1019, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMx6p1m', '7033677'), + (1019, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMx6p1m', '7035415'), + (1019, 2475, 'attending', '2024-02-28 02:50:30', '2025-12-17 19:46:43', 'dxMx6p1m', '7035643'), + (1019, 2476, 'attending', '2024-02-28 00:13:04', '2025-12-17 19:46:43', 'dxMx6p1m', '7035691'), + (1019, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMx6p1m', '7044715'), + (1019, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMx6p1m', '7050318'), + (1019, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMx6p1m', '7050319'), + (1019, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMx6p1m', '7050322'), + (1019, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMx6p1m', '7057804'), + (1019, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dxMx6p1m', '7059866'), + (1019, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMx6p1m', '7072824'), + (1019, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMx6p1m', '7074348'), + (1019, 2511, 'attending', '2024-04-10 01:24:21', '2025-12-17 19:46:33', 'dxMx6p1m', '7074351'), + (1019, 2521, 'attending', '2024-06-17 20:05:44', '2025-12-17 19:46:29', 'dxMx6p1m', '7074361'), + (1019, 2522, 'attending', '2024-07-14 23:32:11', '2025-12-17 19:46:30', 'dxMx6p1m', '7074362'), + (1019, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxMx6p1m', '7074364'), + (1019, 2525, 'attending', '2024-06-13 19:38:37', '2025-12-17 19:46:28', 'dxMx6p1m', '7074365'), + (1019, 2527, 'attending', '2024-06-24 02:49:41', '2025-12-17 19:46:29', 'dxMx6p1m', '7074367'), + (1019, 2530, 'maybe', '2024-08-15 00:59:19', '2025-12-17 19:46:31', 'dxMx6p1m', '7074373'), + (1019, 2537, 'attending', '2024-03-23 15:36:56', '2025-12-17 19:46:33', 'dxMx6p1m', '7085484'), + (1019, 2539, 'attending', '2024-04-06 04:17:14', '2025-12-17 19:46:33', 'dxMx6p1m', '7085486'), + (1019, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMx6p1m', '7089267'), + (1019, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMx6p1m', '7098747'), + (1019, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxMx6p1m', '7113468'), + (1019, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMx6p1m', '7114856'), + (1019, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMx6p1m', '7114951'), + (1019, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxMx6p1m', '7114955'), + (1019, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMx6p1m', '7114956'), + (1019, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMx6p1m', '7114957'), + (1019, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMx6p1m', '7153615'), + (1019, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMx6p1m', '7159484'), + (1019, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMx6p1m', '7178446'), + (1019, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMx6p1m', '7220467'), + (1019, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMx6p1m', '7240354'), + (1019, 2611, 'attending', '2024-05-06 16:26:54', '2025-12-17 19:46:35', 'dxMx6p1m', '7247642'), + (1019, 2614, 'attending', '2024-05-09 15:09:58', '2025-12-17 19:46:35', 'dxMx6p1m', '7247645'), + (1019, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMx6p1m', '7251633'), + (1019, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dxMx6p1m', '7263048'), + (1019, 2625, 'maybe', '2024-05-11 01:02:45', '2025-12-17 19:46:35', 'dxMx6p1m', '7263302'), + (1019, 2626, 'attending', '2024-05-18 15:28:03', '2025-12-17 19:46:35', 'dxMx6p1m', '7264723'), + (1019, 2627, 'attending', '2024-05-25 16:16:56', '2025-12-17 19:46:35', 'dxMx6p1m', '7264724'), + (1019, 2628, 'attending', '2024-06-01 15:06:45', '2025-12-17 19:46:36', 'dxMx6p1m', '7264725'), + (1019, 2629, 'attending', '2024-06-08 18:30:08', '2025-12-17 19:46:28', 'dxMx6p1m', '7264726'), + (1019, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMx6p1m', '7302674'), + (1019, 2666, 'maybe', '2024-06-06 20:41:07', '2025-12-17 19:46:36', 'dxMx6p1m', '7307775'), + (1019, 2678, 'not_attending', '2024-06-12 21:52:22', '2025-12-17 19:46:28', 'dxMx6p1m', '7319489'), + (1019, 2679, 'attending', '2024-06-11 02:18:04', '2025-12-17 19:46:29', 'dxMx6p1m', '7319490'), + (1019, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'dxMx6p1m', '7324019'), + (1019, 2688, 'attending', '2024-06-23 04:52:01', '2025-12-17 19:46:29', 'dxMx6p1m', '7324073'), + (1019, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxMx6p1m', '7324074'), + (1019, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxMx6p1m', '7324075'), + (1019, 2691, 'attending', '2024-07-14 23:32:31', '2025-12-17 19:46:30', 'dxMx6p1m', '7324076'), + (1019, 2692, 'attending', '2024-07-27 21:14:28', '2025-12-17 19:46:30', 'dxMx6p1m', '7324077'), + (1019, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxMx6p1m', '7324078'), + (1019, 2694, 'attending', '2024-08-08 23:35:42', '2025-12-17 19:46:31', 'dxMx6p1m', '7324079'), + (1019, 2695, 'attending', '2024-08-15 00:59:25', '2025-12-17 19:46:31', 'dxMx6p1m', '7324080'), + (1019, 2696, 'attending', '2024-08-22 16:07:38', '2025-12-17 19:46:32', 'dxMx6p1m', '7324081'), + (1019, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxMx6p1m', '7324082'), + (1019, 2698, 'not_attending', '2024-09-01 20:15:07', '2025-12-17 19:46:24', 'dxMx6p1m', '7324083'), + (1019, 2720, 'attending', '2024-06-18 21:16:39', '2025-12-17 19:46:28', 'dxMx6p1m', '7331436'), + (1019, 2721, 'attending', '2024-06-23 04:34:55', '2025-12-17 19:46:29', 'dxMx6p1m', '7331456'), + (1019, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxMx6p1m', '7331457'), + (1019, 2743, 'attending', '2024-07-01 22:17:43', '2025-12-17 19:46:29', 'dxMx6p1m', '7345688'), + (1019, 2747, 'maybe', '2024-07-17 20:56:22', '2025-12-17 19:46:30', 'dxMx6p1m', '7353587'), + (1019, 2753, 'maybe', '2024-07-16 11:38:48', '2025-12-17 19:46:30', 'dxMx6p1m', '7355538'), + (1019, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxMx6p1m', '7356752'), + (1019, 2755, 'maybe', '2024-07-09 23:12:25', '2025-12-17 19:46:29', 'dxMx6p1m', '7357808'), + (1019, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dxMx6p1m', '7358733'), + (1019, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dxMx6p1m', '7363595'), + (1019, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxMx6p1m', '7363643'), + (1019, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxMx6p1m', '7368606'), + (1019, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxMx6p1m', '7397462'), + (1019, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxMx6p1m', '7424275'), + (1019, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxMx6p1m', '7424276'), + (1019, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxMx6p1m', '7432751'), + (1019, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxMx6p1m', '7432752'), + (1019, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxMx6p1m', '7432753'), + (1019, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxMx6p1m', '7432754'), + (1019, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxMx6p1m', '7432755'), + (1019, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxMx6p1m', '7432756'), + (1019, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxMx6p1m', '7432758'), + (1019, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxMx6p1m', '7432759'), + (1019, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxMx6p1m', '7433834'), + (1019, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxMx6p1m', '7470197'), + (1019, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxMx6p1m', '7685613'), + (1019, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxMx6p1m', '7688194'), + (1019, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxMx6p1m', '7688196'), + (1019, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxMx6p1m', '7688289'), + (1019, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dxMx6p1m', '7692763'), + (1019, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxMx6p1m', '7697552'), + (1019, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxMx6p1m', '7699878'), + (1019, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxMx6p1m', '7704043'), + (1019, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxMx6p1m', '7712467'), + (1019, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxMx6p1m', '7713585'), + (1019, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxMx6p1m', '7713586'), + (1019, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMx6p1m', '7738518'), + (1019, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMx6p1m', '7750636'), + (1019, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMx6p1m', '7796540'), + (1019, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMx6p1m', '7796541'), + (1019, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMx6p1m', '7796542'), + (1020, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', '0mq8QOLd', '3149489'), + (1020, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', '0mq8QOLd', '3149491'), + (1020, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '0mq8QOLd', '3236450'), + (1020, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', '0mq8QOLd', '3236452'), + (1020, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '0mq8QOLd', '3236465'), + (1020, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '0mq8QOLd', '3539918'), + (1020, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '0mq8QOLd', '3539919'), + (1020, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '0mq8QOLd', '3539920'), + (1020, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '0mq8QOLd', '3539921'), + (1020, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '0mq8QOLd', '3539922'), + (1020, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '0mq8QOLd', '3539923'), + (1020, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', '0mq8QOLd', '3583262'), + (1020, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '0mq8QOLd', '3730212'), + (1020, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '0mq8QOLd', '3793156'), + (1020, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '0mq8QOLd', '3803310'), + (1020, 806, 'not_attending', '2021-05-14 05:25:38', '2025-12-17 19:47:46', '0mq8QOLd', '3806392'), + (1020, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', '0mq8QOLd', '3963335'), + (1020, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '0mq8QOLd', '3974109'), + (1020, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '0mq8QOLd', '3975311'), + (1020, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '0mq8QOLd', '3975312'), + (1020, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '0mq8QOLd', '3994992'), + (1020, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '0mq8QOLd', '4014338'), + (1020, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '0mq8QOLd', '4136744'), + (1020, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mq8QOLd', '6045684'), + (1021, 2136, 'attending', '2023-07-25 22:04:43', '2025-12-17 19:46:53', '41GBnN8m', '6187966'), + (1021, 2137, 'attending', '2023-07-27 03:34:56', '2025-12-17 19:46:54', '41GBnN8m', '6187967'), + (1021, 2148, 'attending', '2023-07-24 02:24:48', '2025-12-17 19:46:53', '41GBnN8m', '6335667'), + (1021, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '41GBnN8m', '6337236'), + (1021, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '41GBnN8m', '6337970'), + (1021, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '41GBnN8m', '6338308'), + (1021, 2159, 'attending', '2023-07-22 16:16:14', '2025-12-17 19:46:53', '41GBnN8m', '6338355'), + (1021, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '41GBnN8m', '6341710'), + (1021, 2165, 'attending', '2023-07-27 03:35:13', '2025-12-17 19:46:54', '41GBnN8m', '6342044'), + (1021, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '41GBnN8m', '6342298'), + (1021, 2171, 'attending', '2023-07-27 03:34:11', '2025-12-17 19:46:54', '41GBnN8m', '6342328'), + (1021, 2172, 'attending', '2023-07-20 23:11:02', '2025-12-17 19:46:53', '41GBnN8m', '6342591'), + (1021, 2173, 'not_attending', '2023-07-20 05:21:44', '2025-12-17 19:46:53', '41GBnN8m', '6342769'), + (1021, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '41GBnN8m', '6343294'), + (1021, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '41GBnN8m', '6347034'), + (1021, 2177, 'maybe', '2023-07-27 03:41:25', '2025-12-17 19:46:55', '41GBnN8m', '6347053'), + (1021, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '41GBnN8m', '6347056'), + (1021, 2180, 'attending', '2023-07-27 03:33:36', '2025-12-17 19:46:54', '41GBnN8m', '6348788'), + (1021, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '41GBnN8m', '6353830'), + (1021, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '41GBnN8m', '6353831'), + (1021, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '41GBnN8m', '6357867'), + (1021, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '41GBnN8m', '6358652'), + (1021, 2193, 'maybe', '2023-08-06 16:42:12', '2025-12-17 19:46:54', '41GBnN8m', '6358668'), + (1021, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '41GBnN8m', '6361709'), + (1021, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '41GBnN8m', '6361710'), + (1021, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '41GBnN8m', '6361711'), + (1021, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '41GBnN8m', '6361712'), + (1021, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '41GBnN8m', '6361713'), + (1021, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '41GBnN8m', '6382573'), + (1021, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '41GBnN8m', '6388604'), + (1021, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '41GBnN8m', '6394629'), + (1021, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '41GBnN8m', '6394631'), + (1021, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '41GBnN8m', '6440863'), + (1021, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '41GBnN8m', '6445440'), + (1021, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '41GBnN8m', '6453951'), + (1021, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '41GBnN8m', '6461696'), + (1021, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '41GBnN8m', '6462129'), + (1021, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '41GBnN8m', '6463218'), + (1021, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '41GBnN8m', '6472181'), + (1021, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41GBnN8m', '6482693'), + (1021, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '41GBnN8m', '6484200'), + (1021, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '41GBnN8m', '6484680'), + (1021, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41GBnN8m', '6507741'), + (1021, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41GBnN8m', '6514659'), + (1021, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41GBnN8m', '6514660'), + (1021, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41GBnN8m', '6519103'), + (1021, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41GBnN8m', '6535681'), + (1021, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41GBnN8m', '6584747'), + (1021, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41GBnN8m', '6587097'), + (1021, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41GBnN8m', '6609022'), + (1021, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41GBnN8m', '6632757'), + (1021, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41GBnN8m', '6644187'), + (1021, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41GBnN8m', '6648951'), + (1021, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41GBnN8m', '6648952'), + (1021, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41GBnN8m', '6655401'), + (1021, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41GBnN8m', '6661585'), + (1021, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41GBnN8m', '6661588'), + (1021, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41GBnN8m', '6661589'), + (1021, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41GBnN8m', '6699906'), + (1021, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41GBnN8m', '6699913'), + (1021, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41GBnN8m', '6701109'), + (1021, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41GBnN8m', '6705219'), + (1021, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41GBnN8m', '6710153'), + (1021, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41GBnN8m', '6711552'), + (1021, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '41GBnN8m', '6711553'), + (1021, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41GBnN8m', '6722688'), + (1021, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41GBnN8m', '6730620'), + (1021, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '41GBnN8m', '6730642'), + (1021, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41GBnN8m', '6740364'), + (1021, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41GBnN8m', '6743829'), + (1021, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41GBnN8m', '7030380'), + (1021, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41GBnN8m', '7033677'), + (1021, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '41GBnN8m', '7035415'), + (1021, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '41GBnN8m', '7044715'), + (1021, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '41GBnN8m', '7050318'), + (1021, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '41GBnN8m', '7050319'), + (1021, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '41GBnN8m', '7050322'), + (1021, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '41GBnN8m', '7057804'), + (1021, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', '41GBnN8m', '7059866'), + (1021, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '41GBnN8m', '7072824'), + (1021, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '41GBnN8m', '7074348'), + (1021, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '41GBnN8m', '7089267'), + (1021, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '41GBnN8m', '7098747'), + (1021, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '41GBnN8m', '7113468'), + (1021, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '41GBnN8m', '7114856'), + (1021, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '41GBnN8m', '7114951'), + (1021, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '41GBnN8m', '7114955'), + (1021, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '41GBnN8m', '7114956'), + (1021, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '41GBnN8m', '7153615'), + (1021, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '41GBnN8m', '7159484'), + (1021, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '41GBnN8m', '7178446'), + (1022, 1379, 'not_attending', '2022-05-19 23:42:22', '2025-12-17 19:47:30', '4oMoxJwm', '5271449'), + (1022, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMoxJwm', '5365960'), + (1022, 1409, 'attending', '2022-05-18 22:24:41', '2025-12-17 19:47:30', '4oMoxJwm', '5367032'), + (1022, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMoxJwm', '5368973'), + (1022, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMoxJwm', '5378247'), + (1022, 1429, 'attending', '2022-05-30 18:26:04', '2025-12-17 19:47:30', '4oMoxJwm', '5388761'), + (1022, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4oMoxJwm', '5389605'), + (1022, 1442, 'attending', '2022-06-04 13:24:44', '2025-12-17 19:47:17', '4oMoxJwm', '5397265'), + (1022, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMoxJwm', '5403967'), + (1022, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMoxJwm', '5404786'), + (1022, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMoxJwm', '5405203'), + (1022, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMoxJwm', '5411699'), + (1022, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4oMoxJwm', '5412550'), + (1022, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMoxJwm', '5415046'), + (1022, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4oMoxJwm', '5422086'), + (1022, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4oMoxJwm', '5422406'), + (1022, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMoxJwm', '5424565'), + (1022, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMoxJwm', '5426882'), + (1022, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMoxJwm', '5427083'), + (1022, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '4oMoxJwm', '5441125'), + (1022, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4oMoxJwm', '5441126'), + (1022, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMoxJwm', '5441128'), + (1022, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMoxJwm', '5446643'), + (1022, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMoxJwm', '5453325'), + (1022, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMoxJwm', '5454516'), + (1022, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMoxJwm', '5454605'), + (1022, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMoxJwm', '5455037'), + (1022, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4oMoxJwm', '5461278'), + (1022, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMoxJwm', '5469480'), + (1022, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4oMoxJwm', '5471073'), + (1022, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMoxJwm', '5474663'), + (1022, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMoxJwm', '5482022'), + (1022, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMoxJwm', '5482793'), + (1022, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4oMoxJwm', '5488912'), + (1022, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4oMoxJwm', '5492192'), + (1022, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4oMoxJwm', '5493139'), + (1022, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4oMoxJwm', '5493200'), + (1022, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4oMoxJwm', '5502188'), + (1022, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4oMoxJwm', '5512862'), + (1022, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4oMoxJwm', '5513985'), + (1022, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMoxJwm', '6045684'), + (1023, 1259, 'attending', '2022-03-12 00:18:08', '2025-12-17 19:47:33', '41WV1yEm', '5132533'), + (1023, 1272, 'attending', '2022-03-15 22:36:43', '2025-12-17 19:47:25', '41WV1yEm', '5186582'), + (1023, 1273, 'attending', '2022-03-15 22:36:52', '2025-12-17 19:47:25', '41WV1yEm', '5186583'), + (1023, 1274, 'attending', '2022-03-15 22:36:48', '2025-12-17 19:47:26', '41WV1yEm', '5186585'), + (1023, 1281, 'maybe', '2022-03-17 22:39:33', '2025-12-17 19:47:27', '41WV1yEm', '5190437'), + (1023, 1284, 'attending', '2022-04-13 22:59:05', '2025-12-17 19:47:27', '41WV1yEm', '5195095'), + (1023, 1291, 'not_attending', '2022-04-03 01:35:15', '2025-12-17 19:47:25', '41WV1yEm', '5200458'), + (1023, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41WV1yEm', '5215989'), + (1023, 1307, 'not_attending', '2022-04-05 08:34:07', '2025-12-17 19:47:27', '41WV1yEm', '5223686'), + (1023, 1309, 'not_attending', '2022-04-07 06:19:09', '2025-12-17 19:47:26', '41WV1yEm', '5227432'), + (1023, 1318, 'not_attending', '2022-04-11 12:03:32', '2025-12-17 19:47:27', '41WV1yEm', '5238343'), + (1023, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '41WV1yEm', '5247467'), + (1023, 1354, 'not_attending', '2022-04-22 01:12:22', '2025-12-17 19:47:27', '41WV1yEm', '5252569'), + (1023, 1362, 'not_attending', '2022-04-28 22:25:27', '2025-12-17 19:47:28', '41WV1yEm', '5260800'), + (1023, 1374, 'maybe', '2022-05-03 07:23:26', '2025-12-17 19:47:28', '41WV1yEm', '5269930'), + (1023, 1375, 'attending', '2022-05-05 22:32:58', '2025-12-17 19:47:28', '41WV1yEm', '5269932'), + (1023, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41WV1yEm', '5271448'), + (1023, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '41WV1yEm', '5271449'), + (1023, 1380, 'maybe', '2022-05-28 08:18:41', '2025-12-17 19:47:30', '41WV1yEm', '5271450'), + (1023, 1383, 'attending', '2022-05-04 06:41:13', '2025-12-17 19:47:28', '41WV1yEm', '5276469'), + (1023, 1384, 'not_attending', '2022-05-05 22:29:08', '2025-12-17 19:47:28', '41WV1yEm', '5277078'), + (1023, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41WV1yEm', '5278159'), + (1023, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41WV1yEm', '5363695'), + (1023, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41WV1yEm', '5365960'), + (1023, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '41WV1yEm', '5368973'), + (1023, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41WV1yEm', '5378247'), + (1023, 1431, 'not_attending', '2022-06-03 22:06:23', '2025-12-17 19:47:31', '41WV1yEm', '5389605'), + (1023, 1442, 'not_attending', '2022-06-03 22:06:27', '2025-12-17 19:47:17', '41WV1yEm', '5397265'), + (1023, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WV1yEm', '5403967'), + (1023, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WV1yEm', '5404786'), + (1023, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WV1yEm', '5405203'), + (1023, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WV1yEm', '5411699'), + (1023, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WV1yEm', '5412550'), + (1023, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WV1yEm', '5415046'), + (1023, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WV1yEm', '5422086'), + (1023, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WV1yEm', '5422406'), + (1023, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WV1yEm', '5424565'), + (1023, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WV1yEm', '5426882'), + (1023, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WV1yEm', '5427083'), + (1023, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41WV1yEm', '5441125'), + (1023, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WV1yEm', '5441126'), + (1023, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WV1yEm', '5441128'), + (1023, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '41WV1yEm', '5441131'), + (1023, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41WV1yEm', '5441132'), + (1023, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WV1yEm', '5446643'), + (1023, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WV1yEm', '5453325'), + (1023, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WV1yEm', '5454516'), + (1023, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WV1yEm', '5454605'), + (1023, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WV1yEm', '5455037'), + (1023, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WV1yEm', '5461278'), + (1023, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WV1yEm', '5469480'), + (1023, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WV1yEm', '5471073'), + (1023, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41WV1yEm', '5474663'), + (1023, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WV1yEm', '5482022'), + (1023, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WV1yEm', '5482793'), + (1023, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WV1yEm', '5488912'), + (1023, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WV1yEm', '5492192'), + (1023, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WV1yEm', '5493139'), + (1023, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WV1yEm', '5493200'), + (1023, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WV1yEm', '5502188'), + (1023, 1608, 'attending', '2022-08-29 07:07:38', '2025-12-17 19:47:24', '41WV1yEm', '5505059'), + (1023, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41WV1yEm', '5509055'), + (1023, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WV1yEm', '5512862'), + (1023, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WV1yEm', '5513985'), + (1023, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '41WV1yEm', '5519981'), + (1023, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41WV1yEm', '5522550'), + (1023, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41WV1yEm', '5534683'), + (1023, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '41WV1yEm', '5537735'), + (1023, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41WV1yEm', '5540859'), + (1023, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41WV1yEm', '5546619'), + (1023, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41WV1yEm', '5555245'), + (1023, 1659, 'attending', '2022-09-23 01:35:16', '2025-12-17 19:47:11', '41WV1yEm', '5557747'), + (1023, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41WV1yEm', '5560255'), + (1023, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41WV1yEm', '5562906'), + (1023, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41WV1yEm', '5600604'), + (1023, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41WV1yEm', '5605544'), + (1023, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', '41WV1yEm', '5606737'), + (1023, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41WV1yEm', '5630960'), + (1023, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41WV1yEm', '5630961'), + (1023, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41WV1yEm', '5630962'), + (1023, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41WV1yEm', '5630966'), + (1023, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41WV1yEm', '5630967'), + (1023, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41WV1yEm', '5630968'), + (1023, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41WV1yEm', '5635406'), + (1023, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41WV1yEm', '5638765'), + (1023, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41WV1yEm', '5640097'), + (1023, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41WV1yEm', '5640843'), + (1023, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41WV1yEm', '5641521'), + (1023, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41WV1yEm', '5642818'), + (1023, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41WV1yEm', '5652395'), + (1023, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41WV1yEm', '5670445'), + (1023, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41WV1yEm', '5671637'), + (1023, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41WV1yEm', '5672329'), + (1023, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41WV1yEm', '5674057'), + (1023, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41WV1yEm', '5674060'), + (1023, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41WV1yEm', '5677461'), + (1023, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41WV1yEm', '5698046'), + (1023, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41WV1yEm', '5699760'), + (1023, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41WV1yEm', '5741601'), + (1023, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41WV1yEm', '5763458'), + (1023, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41WV1yEm', '5774172'), + (1023, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '41WV1yEm', '5818247'), + (1023, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41WV1yEm', '5819471'), + (1023, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41WV1yEm', '5827739'), + (1023, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41WV1yEm', '5844306'), + (1023, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41WV1yEm', '5850159'), + (1023, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41WV1yEm', '5858999'), + (1023, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41WV1yEm', '5871984'), + (1023, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41WV1yEm', '5876354'), + (1023, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41WV1yEm', '5880939'), + (1023, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41WV1yEm', '5887890'), + (1023, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41WV1yEm', '5888598'), + (1023, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41WV1yEm', '5893260'), + (1023, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WV1yEm', '6045684'), + (1024, 259, 'attending', '2021-05-14 03:22:26', '2025-12-17 19:47:46', 'VmyZvY1A', '3149490'), + (1024, 646, 'not_attending', '2021-05-14 06:14:34', '2025-12-17 19:47:46', 'VmyZvY1A', '3539921'), + (1024, 647, 'attending', '2021-05-17 06:36:36', '2025-12-17 19:47:46', 'VmyZvY1A', '3539922'), + (1024, 648, 'not_attending', '2021-05-24 23:13:37', '2025-12-17 19:47:47', 'VmyZvY1A', '3539923'), + (1024, 741, 'not_attending', '2021-05-20 06:24:48', '2025-12-17 19:47:46', 'VmyZvY1A', '3680618'), + (1024, 742, 'not_attending', '2021-06-17 07:08:01', '2025-12-17 19:47:48', 'VmyZvY1A', '3680622'), + (1024, 744, 'attending', '2021-05-20 06:31:38', '2025-12-17 19:47:47', 'VmyZvY1A', '3680624'), + (1024, 746, 'not_attending', '2021-07-07 23:01:51', '2025-12-17 19:47:39', 'VmyZvY1A', '3680626'), + (1024, 761, 'attending', '2021-05-14 19:05:19', '2025-12-17 19:47:46', 'VmyZvY1A', '3716041'), + (1024, 797, 'not_attending', '2021-05-20 06:30:34', '2025-12-17 19:47:47', 'VmyZvY1A', '3796195'), + (1024, 804, 'not_attending', '2021-05-20 06:29:51', '2025-12-17 19:47:47', 'VmyZvY1A', '3804775'), + (1024, 806, 'not_attending', '2021-05-14 06:14:08', '2025-12-17 19:47:46', 'VmyZvY1A', '3806392'), + (1024, 815, 'attending', '2021-05-28 04:17:35', '2025-12-17 19:47:47', 'VmyZvY1A', '3818136'), + (1024, 821, 'attending', '2021-05-28 06:23:45', '2025-12-17 19:47:47', 'VmyZvY1A', '3963965'), + (1024, 823, 'attending', '2021-06-19 21:23:52', '2025-12-17 19:47:48', 'VmyZvY1A', '3974109'), + (1024, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VmyZvY1A', '3975311'), + (1024, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VmyZvY1A', '3975312'), + (1024, 837, 'not_attending', '2021-06-17 07:07:51', '2025-12-17 19:47:48', 'VmyZvY1A', '3992545'), + (1024, 838, 'not_attending', '2021-06-09 06:35:30', '2025-12-17 19:47:47', 'VmyZvY1A', '3994992'), + (1024, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VmyZvY1A', '4014338'), + (1024, 848, 'not_attending', '2021-07-21 21:15:02', '2025-12-17 19:47:40', 'VmyZvY1A', '4015720'), + (1024, 866, 'not_attending', '2021-06-17 07:08:06', '2025-12-17 19:47:38', 'VmyZvY1A', '4020424'), + (1024, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'VmyZvY1A', '4021848'), + (1024, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmyZvY1A', '4136744'), + (1024, 870, 'not_attending', '2021-07-03 22:51:42', '2025-12-17 19:47:39', 'VmyZvY1A', '4136937'), + (1024, 871, 'not_attending', '2021-07-10 22:38:01', '2025-12-17 19:47:39', 'VmyZvY1A', '4136938'), + (1024, 872, 'not_attending', '2021-07-21 21:15:14', '2025-12-17 19:47:40', 'VmyZvY1A', '4136947'), + (1024, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'VmyZvY1A', '4210314'), + (1024, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VmyZvY1A', '4225444'), + (1024, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VmyZvY1A', '4239259'), + (1024, 900, 'not_attending', '2021-07-21 21:14:55', '2025-12-17 19:47:40', 'VmyZvY1A', '4240316'), + (1024, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'VmyZvY1A', '4240317'), + (1024, 902, 'not_attending', '2021-08-06 21:22:09', '2025-12-17 19:47:41', 'VmyZvY1A', '4240318'), + (1024, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'VmyZvY1A', '4240320'), + (1024, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VmyZvY1A', '4250163'), + (1024, 909, 'not_attending', '2021-07-10 22:37:43', '2025-12-17 19:47:39', 'VmyZvY1A', '4258187'), + (1024, 919, 'maybe', '2021-07-17 06:48:30', '2025-12-17 19:47:39', 'VmyZvY1A', '4275957'), + (1024, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'VmyZvY1A', '4277819'), + (1024, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'VmyZvY1A', '4301723'), + (1024, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VmyZvY1A', '4302093'), + (1024, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VmyZvY1A', '4304151'), + (1024, 943, 'not_attending', '2021-08-06 21:22:25', '2025-12-17 19:47:41', 'VmyZvY1A', '4310979'), + (1024, 944, 'not_attending', '2021-08-06 21:22:42', '2025-12-17 19:47:41', 'VmyZvY1A', '4310980'), + (1024, 966, 'not_attending', '2021-08-19 19:01:05', '2025-12-17 19:47:42', 'VmyZvY1A', '4356162'), + (1024, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VmyZvY1A', '4356801'), + (1024, 973, 'not_attending', '2021-08-19 19:02:10', '2025-12-17 19:47:42', 'VmyZvY1A', '4366186'), + (1024, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'VmyZvY1A', '4366187'), + (1024, 976, 'maybe', '2021-08-19 19:00:04', '2025-12-17 19:47:42', 'VmyZvY1A', '4373933'), + (1024, 978, 'not_attending', '2021-08-19 19:01:51', '2025-12-17 19:47:42', 'VmyZvY1A', '4378509'), + (1024, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'VmyZvY1A', '4420735'), + (1024, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'VmyZvY1A', '4420738'), + (1024, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'VmyZvY1A', '4420739'), + (1024, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'VmyZvY1A', '4420741'), + (1024, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'VmyZvY1A', '4420744'), + (1024, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'VmyZvY1A', '4420747'), + (1024, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'VmyZvY1A', '4420748'), + (1024, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'VmyZvY1A', '4420749'), + (1024, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VmyZvY1A', '4461883'), + (1024, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'VmyZvY1A', '4508342'), + (1024, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'VmyZvY1A', '4568602'), + (1024, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'VmyZvY1A', '4572153'), + (1024, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VmyZvY1A', '4585962'), + (1024, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VmyZvY1A', '4596356'), + (1024, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VmyZvY1A', '4598860'), + (1024, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'VmyZvY1A', '4598861'), + (1024, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'VmyZvY1A', '4602797'), + (1024, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'VmyZvY1A', '4637896'), + (1024, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'VmyZvY1A', '4642994'), + (1024, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'VmyZvY1A', '4642995'), + (1024, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'VmyZvY1A', '4642996'), + (1024, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'VmyZvY1A', '4642997'), + (1024, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'VmyZvY1A', '4645687'), + (1024, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'VmyZvY1A', '4645698'), + (1024, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'VmyZvY1A', '4645704'), + (1024, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'VmyZvY1A', '4645705'), + (1024, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VmyZvY1A', '4668385'), + (1024, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VmyZvY1A', '4694407'), + (1024, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'VmyZvY1A', '4706262'), + (1024, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'VmyZvY1A', '4736497'), + (1024, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'VmyZvY1A', '4736499'), + (1024, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'VmyZvY1A', '4736500'), + (1024, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'VmyZvY1A', '4736503'), + (1024, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'VmyZvY1A', '4736504'), + (1024, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VmyZvY1A', '4746789'), + (1024, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'VmyZvY1A', '4753929'), + (1024, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VmyZvY1A', '5038850'), + (1024, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VmyZvY1A', '5045826'), + (1024, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VmyZvY1A', '5132533'), + (1024, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'VmyZvY1A', '5186582'), + (1024, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'VmyZvY1A', '5186583'), + (1024, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'VmyZvY1A', '5186585'), + (1024, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'VmyZvY1A', '5190437'), + (1024, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmyZvY1A', '6045684'), + (1025, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd56zRMOm', '6445440'), + (1025, 2274, 'not_attending', '2023-10-04 19:10:55', '2025-12-17 19:46:45', 'd56zRMOm', '6448287'), + (1025, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd56zRMOm', '6453951'), + (1025, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd56zRMOm', '6461696'), + (1025, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd56zRMOm', '6462129'), + (1025, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd56zRMOm', '6463218'), + (1025, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd56zRMOm', '6472181'), + (1025, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd56zRMOm', '6482693'), + (1025, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd56zRMOm', '6484200'), + (1025, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd56zRMOm', '6484680'), + (1025, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd56zRMOm', '6507741'), + (1025, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd56zRMOm', '6514659'), + (1025, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd56zRMOm', '6514660'), + (1025, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd56zRMOm', '6519103'), + (1025, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd56zRMOm', '6535681'), + (1025, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'd56zRMOm', '6545076'), + (1025, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd56zRMOm', '6584747'), + (1025, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd56zRMOm', '6587097'), + (1025, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd56zRMOm', '6609022'), + (1025, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd56zRMOm', '6632757'), + (1025, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd56zRMOm', '6644187'), + (1025, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd56zRMOm', '6648951'), + (1025, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd56zRMOm', '6648952'), + (1025, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'd56zRMOm', '6651141'), + (1025, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd56zRMOm', '6655401'), + (1025, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd56zRMOm', '6661585'), + (1025, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd56zRMOm', '6661588'), + (1025, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd56zRMOm', '6661589'), + (1025, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd56zRMOm', '6699906'), + (1025, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd56zRMOm', '6699913'), + (1025, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd56zRMOm', '6701109'), + (1025, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd56zRMOm', '6705219'), + (1025, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd56zRMOm', '6710153'), + (1025, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd56zRMOm', '6711552'), + (1025, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd56zRMOm', '6711553'), + (1025, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd56zRMOm', '6722688'), + (1025, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd56zRMOm', '6730620'), + (1025, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd56zRMOm', '6730642'), + (1025, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd56zRMOm', '6740364'), + (1025, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd56zRMOm', '6743829'), + (1025, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd56zRMOm', '7030380'), + (1025, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd56zRMOm', '7033677'), + (1025, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd56zRMOm', '7035415'), + (1025, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd56zRMOm', '7044715'), + (1025, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd56zRMOm', '7050318'), + (1025, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd56zRMOm', '7050319'), + (1025, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd56zRMOm', '7050322'), + (1025, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd56zRMOm', '7057804'), + (1025, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd56zRMOm', '7072824'), + (1025, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd56zRMOm', '7074348'), + (1025, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd56zRMOm', '7089267'), + (1025, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd56zRMOm', '7098747'), + (1025, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd56zRMOm', '7113468'), + (1025, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd56zRMOm', '7114856'), + (1025, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd56zRMOm', '7114951'), + (1025, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd56zRMOm', '7114955'), + (1025, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd56zRMOm', '7114956'), + (1025, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd56zRMOm', '7153615'), + (1025, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd56zRMOm', '7159484'), + (1025, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd56zRMOm', '7178446'), + (1026, 1010, 'attending', '2021-11-05 22:52:44', '2025-12-17 19:47:36', '4kRQerLA', '4438812'), + (1026, 1011, 'not_attending', '2021-10-29 11:20:28', '2025-12-17 19:47:36', '4kRQerLA', '4438814'), + (1026, 1012, 'not_attending', '2021-10-30 15:35:52', '2025-12-17 19:47:36', '4kRQerLA', '4438816'), + (1026, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4kRQerLA', '4596356'), + (1026, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4kRQerLA', '4598860'), + (1026, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4kRQerLA', '4598861'), + (1026, 1099, 'maybe', '2021-11-06 04:38:33', '2025-12-17 19:47:36', '4kRQerLA', '4602797'), + (1026, 1109, 'attending', '2021-11-13 03:39:55', '2025-12-17 19:47:37', '4kRQerLA', '4635221'), + (1026, 1110, 'attending', '2021-11-13 03:39:58', '2025-12-17 19:47:37', '4kRQerLA', '4635224'), + (1026, 1113, 'not_attending', '2021-11-27 19:33:38', '2025-12-17 19:47:37', '4kRQerLA', '4635421'), + (1026, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4kRQerLA', '4637896'), + (1026, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4kRQerLA', '4642994'), + (1026, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4kRQerLA', '4642995'), + (1026, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4kRQerLA', '4642996'), + (1026, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4kRQerLA', '4642997'), + (1026, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4kRQerLA', '4645687'), + (1026, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4kRQerLA', '4645698'), + (1026, 1128, 'attending', '2021-11-20 22:59:46', '2025-12-17 19:47:37', '4kRQerLA', '4645704'), + (1026, 1129, 'attending', '2021-11-21 03:51:03', '2025-12-17 19:47:37', '4kRQerLA', '4645705'), + (1026, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4kRQerLA', '4668385'), + (1026, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4kRQerLA', '4694407'), + (1026, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '4kRQerLA', '4706262'), + (1026, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4kRQerLA', '4736497'), + (1026, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4kRQerLA', '4736499'), + (1026, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4kRQerLA', '4736500'), + (1026, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kRQerLA', '4736503'), + (1026, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kRQerLA', '4736504'), + (1026, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4kRQerLA', '4746789'), + (1026, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4kRQerLA', '4753929'), + (1026, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4kRQerLA', '5038850'), + (1026, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4kRQerLA', '5045826'), + (1026, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kRQerLA', '5132533'), + (1026, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4kRQerLA', '5186582'), + (1026, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4kRQerLA', '5186583'), + (1026, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4kRQerLA', '5186585'), + (1026, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4kRQerLA', '5190437'), + (1026, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4kRQerLA', '5215989'), + (1026, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kRQerLA', '6045684'), + (1027, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'N4Er0JRd', '3149491'), + (1027, 395, 'not_attending', '2021-06-07 16:53:08', '2025-12-17 19:47:47', 'N4Er0JRd', '3236450'), + (1027, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'N4Er0JRd', '3975312'), + (1027, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'N4Er0JRd', '4014338'), + (1027, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4Er0JRd', '6045684'), + (1028, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd8b7vrVA', '5630960'), + (1028, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd8b7vrVA', '5630961'), + (1028, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd8b7vrVA', '5630962'), + (1028, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd8b7vrVA', '5630966'), + (1028, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'd8b7vrVA', '5638765'), + (1028, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd8b7vrVA', '5640097'), + (1028, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd8b7vrVA', '5652395'), + (1028, 1752, 'attending', '2022-10-15 02:50:43', '2025-12-17 19:47:12', 'd8b7vrVA', '5653503'), + (1028, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd8b7vrVA', '5671637'), + (1028, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd8b7vrVA', '5672329'), + (1028, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd8b7vrVA', '5674057'), + (1028, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd8b7vrVA', '5674060'), + (1028, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd8b7vrVA', '5677461'), + (1028, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd8b7vrVA', '5698046'), + (1028, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'd8b7vrVA', '5699760'), + (1028, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8b7vrVA', '6045684'), + (1029, 401, 'attending', '2021-05-07 22:57:01', '2025-12-17 19:47:46', 'R40yKWEd', '3236456'), + (1029, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'R40yKWEd', '3539920'), + (1029, 646, 'maybe', '2021-05-12 17:40:36', '2025-12-17 19:47:46', 'R40yKWEd', '3539921'), + (1029, 647, 'attending', '2021-05-21 02:41:05', '2025-12-17 19:47:46', 'R40yKWEd', '3539922'), + (1029, 648, 'attending', '2021-05-26 16:57:59', '2025-12-17 19:47:47', 'R40yKWEd', '3539923'), + (1029, 805, 'maybe', '2021-06-07 19:24:44', '2025-12-17 19:47:47', 'R40yKWEd', '3804777'), + (1029, 808, 'attending', '2021-05-20 17:10:09', '2025-12-17 19:47:46', 'R40yKWEd', '3807358'), + (1029, 815, 'not_attending', '2021-05-27 15:47:13', '2025-12-17 19:47:47', 'R40yKWEd', '3818136'), + (1029, 818, 'attending', '2021-05-27 15:47:42', '2025-12-17 19:47:47', 'R40yKWEd', '3833015'), + (1029, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40yKWEd', '3974109'), + (1029, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'R40yKWEd', '3975311'), + (1029, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40yKWEd', '3975312'), + (1029, 834, 'not_attending', '2021-06-10 22:46:15', '2025-12-17 19:47:47', 'R40yKWEd', '3990439'), + (1029, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'R40yKWEd', '3994992'), + (1029, 841, 'attending', '2021-06-14 19:39:34', '2025-12-17 19:47:48', 'R40yKWEd', '4007434'), + (1029, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40yKWEd', '4014338'), + (1029, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'R40yKWEd', '4021848'), + (1029, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40yKWEd', '4136744'), + (1029, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40yKWEd', '4136937'), + (1029, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40yKWEd', '4136938'), + (1029, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40yKWEd', '4136947'), + (1029, 873, 'attending', '2021-06-16 16:17:49', '2025-12-17 19:47:48', 'R40yKWEd', '4138297'), + (1029, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'R40yKWEd', '4210314'), + (1029, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40yKWEd', '4225444'), + (1029, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40yKWEd', '4239259'), + (1029, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'R40yKWEd', '4240316'), + (1029, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'R40yKWEd', '4240317'), + (1029, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'R40yKWEd', '4240318'), + (1029, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'R40yKWEd', '4240320'), + (1029, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40yKWEd', '4250163'), + (1029, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'R40yKWEd', '4275957'), + (1029, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'R40yKWEd', '4277819'), + (1029, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'R40yKWEd', '4301723'), + (1029, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'R40yKWEd', '4302093'), + (1029, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'R40yKWEd', '4304151'), + (1029, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'R40yKWEd', '4345519'), + (1029, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'R40yKWEd', '4358025'), + (1029, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'R40yKWEd', '4366186'), + (1029, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'R40yKWEd', '4366187'), + (1029, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40yKWEd', '6045684'), + (1030, 1175, 'attending', '2022-01-22 23:36:40', '2025-12-17 19:47:32', 'mbqWlw6d', '4736497'), + (1030, 1176, 'maybe', '2022-02-05 23:58:36', '2025-12-17 19:47:32', 'mbqWlw6d', '4736498'), + (1030, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mbqWlw6d', '4736499'), + (1030, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mbqWlw6d', '4736500'), + (1030, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mbqWlw6d', '4736503'), + (1030, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mbqWlw6d', '4736504'), + (1030, 1211, 'maybe', '2022-01-27 11:29:43', '2025-12-17 19:47:32', 'mbqWlw6d', '4780754'), + (1030, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mbqWlw6d', '5038850'), + (1030, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mbqWlw6d', '5045826'), + (1030, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mbqWlw6d', '5132533'), + (1030, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mbqWlw6d', '6045684'), + (1031, 1125, 'attending', '2021-12-18 12:00:53', '2025-12-17 19:47:31', 'NmLjz6g4', '4644027'), + (1031, 1171, 'attending', '2022-01-02 04:33:58', '2025-12-17 19:47:31', 'NmLjz6g4', '4733292'), + (1031, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmLjz6g4', '4736497'), + (1031, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmLjz6g4', '4736500'), + (1031, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLjz6g4', '4746789'), + (1031, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmLjz6g4', '4753929'), + (1031, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLjz6g4', '6045684'), + (1032, 2199, 'not_attending', '2023-08-16 08:29:32', '2025-12-17 19:46:55', 'd2wKPkZm', '6359849'), + (1032, 2203, 'attending', '2023-08-08 02:39:09', '2025-12-17 19:46:55', 'd2wKPkZm', '6361524'), + (1032, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'd2wKPkZm', '6361709'), + (1032, 2209, 'attending', '2023-08-22 00:33:33', '2025-12-17 19:46:55', 'd2wKPkZm', '6361710'), + (1032, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd2wKPkZm', '6361711'), + (1032, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd2wKPkZm', '6361712'), + (1032, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd2wKPkZm', '6361713'), + (1032, 2215, 'attending', '2023-08-11 20:36:50', '2025-12-17 19:46:55', 'd2wKPkZm', '6363479'), + (1032, 2232, 'not_attending', '2023-08-25 22:28:26', '2025-12-17 19:46:55', 'd2wKPkZm', '6374818'), + (1032, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd2wKPkZm', '6382573'), + (1032, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd2wKPkZm', '6388604'), + (1032, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd2wKPkZm', '6394629'), + (1032, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd2wKPkZm', '6394631'), + (1032, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd2wKPkZm', '6440863'), + (1032, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd2wKPkZm', '6445440'), + (1032, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd2wKPkZm', '6453951'), + (1032, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd2wKPkZm', '6461696'), + (1032, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd2wKPkZm', '6462129'), + (1032, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd2wKPkZm', '6463218'), + (1032, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd2wKPkZm', '6472181'), + (1032, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd2wKPkZm', '6482693'), + (1032, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd2wKPkZm', '6484200'), + (1032, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd2wKPkZm', '6484680'), + (1032, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd2wKPkZm', '6507741'), + (1032, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd2wKPkZm', '6514659'), + (1032, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd2wKPkZm', '6514660'), + (1032, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd2wKPkZm', '6519103'), + (1032, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd2wKPkZm', '6535681'), + (1032, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd2wKPkZm', '6584747'), + (1032, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd2wKPkZm', '6587097'), + (1032, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd2wKPkZm', '6609022'), + (1032, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd2wKPkZm', '6632757'), + (1032, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd2wKPkZm', '6644187'), + (1032, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd2wKPkZm', '6648951'), + (1032, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd2wKPkZm', '6648952'), + (1032, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd2wKPkZm', '6655401'), + (1032, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd2wKPkZm', '6661585'), + (1032, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd2wKPkZm', '6661588'), + (1032, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd2wKPkZm', '6661589'), + (1032, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd2wKPkZm', '6699906'), + (1032, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd2wKPkZm', '6699913'), + (1032, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd2wKPkZm', '6701109'), + (1032, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd2wKPkZm', '6705219'), + (1032, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd2wKPkZm', '6710153'), + (1032, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd2wKPkZm', '6711552'), + (1032, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd2wKPkZm', '6711553'), + (1032, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd2wKPkZm', '6722688'), + (1032, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd2wKPkZm', '6730620'), + (1032, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd2wKPkZm', '6730642'), + (1032, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd2wKPkZm', '6740364'), + (1032, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd2wKPkZm', '6743829'), + (1032, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd2wKPkZm', '7030380'), + (1032, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd2wKPkZm', '7033677'), + (1032, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd2wKPkZm', '7035415'), + (1032, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd2wKPkZm', '7044715'), + (1032, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd2wKPkZm', '7050318'), + (1032, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd2wKPkZm', '7050319'), + (1032, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd2wKPkZm', '7050322'), + (1032, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd2wKPkZm', '7057804'), + (1032, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'd2wKPkZm', '7059866'), + (1032, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd2wKPkZm', '7072824'), + (1032, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd2wKPkZm', '7074348'), + (1032, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd2wKPkZm', '7089267'), + (1032, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd2wKPkZm', '7098747'), + (1032, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd2wKPkZm', '7113468'), + (1032, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd2wKPkZm', '7114856'), + (1032, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd2wKPkZm', '7114951'), + (1032, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd2wKPkZm', '7114955'), + (1032, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd2wKPkZm', '7114956'), + (1032, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd2wKPkZm', '7153615'), + (1032, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd2wKPkZm', '7159484'), + (1032, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd2wKPkZm', '7178446'), + (1033, 2075, 'not_attending', '2023-07-01 12:40:40', '2025-12-17 19:46:50', 'dJNwVJ6d', '6107314'), + (1033, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dJNwVJ6d', '6176439'), + (1033, 2125, 'attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'dJNwVJ6d', '6177485'), + (1033, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dJNwVJ6d', '6182410'), + (1033, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dJNwVJ6d', '6185812'), + (1033, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dJNwVJ6d', '6187651'), + (1033, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dJNwVJ6d', '6187963'), + (1033, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dJNwVJ6d', '6187964'), + (1033, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dJNwVJ6d', '6187966'), + (1033, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dJNwVJ6d', '6187967'), + (1033, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dJNwVJ6d', '6187969'), + (1033, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dJNwVJ6d', '6334878'), + (1033, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dJNwVJ6d', '6337236'), + (1033, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dJNwVJ6d', '6337970'), + (1033, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dJNwVJ6d', '6338308'), + (1033, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dJNwVJ6d', '6340845'), + (1033, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dJNwVJ6d', '6341710'), + (1033, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dJNwVJ6d', '6342044'), + (1033, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dJNwVJ6d', '6342298'), + (1033, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dJNwVJ6d', '6343294'), + (1033, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dJNwVJ6d', '6347034'), + (1033, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dJNwVJ6d', '6347056'), + (1033, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dJNwVJ6d', '6353830'), + (1033, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dJNwVJ6d', '6353831'), + (1033, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dJNwVJ6d', '6357867'), + (1033, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dJNwVJ6d', '6358652'), + (1033, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dJNwVJ6d', '6361709'), + (1033, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dJNwVJ6d', '6361710'), + (1033, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dJNwVJ6d', '6361711'), + (1033, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dJNwVJ6d', '6361712'), + (1033, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dJNwVJ6d', '6361713'), + (1033, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dJNwVJ6d', '6382573'), + (1033, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dJNwVJ6d', '6388604'), + (1033, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dJNwVJ6d', '6394629'), + (1033, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dJNwVJ6d', '6394631'), + (1033, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dJNwVJ6d', '6440863'), + (1033, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dJNwVJ6d', '6445440'), + (1033, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dJNwVJ6d', '6453951'), + (1033, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dJNwVJ6d', '6461696'), + (1033, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dJNwVJ6d', '6462129'), + (1033, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dJNwVJ6d', '6463218'), + (1033, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dJNwVJ6d', '6472181'), + (1033, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dJNwVJ6d', '6482693'), + (1033, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dJNwVJ6d', '6484200'), + (1033, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dJNwVJ6d', '6484680'), + (1033, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dJNwVJ6d', '6507741'), + (1033, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dJNwVJ6d', '6514659'), + (1033, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dJNwVJ6d', '6514660'), + (1033, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dJNwVJ6d', '6519103'), + (1033, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dJNwVJ6d', '6535681'), + (1033, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dJNwVJ6d', '6584747'), + (1033, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dJNwVJ6d', '6587097'), + (1033, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dJNwVJ6d', '6609022'), + (1033, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dJNwVJ6d', '6632757'), + (1033, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dJNwVJ6d', '6644187'), + (1033, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dJNwVJ6d', '6648951'), + (1033, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dJNwVJ6d', '6648952'), + (1033, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dJNwVJ6d', '6655401'), + (1033, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dJNwVJ6d', '6661585'), + (1033, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dJNwVJ6d', '6661588'), + (1033, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dJNwVJ6d', '6661589'), + (1033, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dJNwVJ6d', '6699906'), + (1033, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dJNwVJ6d', '6699913'), + (1033, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dJNwVJ6d', '6701109'), + (1033, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dJNwVJ6d', '6705219'), + (1033, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dJNwVJ6d', '6710153'), + (1033, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dJNwVJ6d', '6711552'), + (1033, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dJNwVJ6d', '6711553'), + (1033, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dJNwVJ6d', '6722688'), + (1033, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dJNwVJ6d', '6730620'), + (1033, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dJNwVJ6d', '6730642'), + (1033, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dJNwVJ6d', '6740364'), + (1033, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dJNwVJ6d', '6743829'), + (1033, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dJNwVJ6d', '7030380'), + (1033, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dJNwVJ6d', '7033677'), + (1033, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dJNwVJ6d', '7035415'), + (1033, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dJNwVJ6d', '7044715'), + (1033, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dJNwVJ6d', '7050318'), + (1033, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dJNwVJ6d', '7050319'), + (1033, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dJNwVJ6d', '7050322'), + (1033, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dJNwVJ6d', '7057804'), + (1033, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dJNwVJ6d', '7059866'), + (1033, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dJNwVJ6d', '7072824'), + (1033, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dJNwVJ6d', '7074348'), + (1033, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dJNwVJ6d', '7089267'), + (1033, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dJNwVJ6d', '7098747'), + (1033, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dJNwVJ6d', '7113468'), + (1033, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dJNwVJ6d', '7114856'), + (1033, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dJNwVJ6d', '7114951'), + (1033, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dJNwVJ6d', '7114955'), + (1033, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dJNwVJ6d', '7114956'), + (1033, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dJNwVJ6d', '7153615'), + (1033, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dJNwVJ6d', '7159484'), + (1033, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dJNwVJ6d', '7178446'), + (1034, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v8qbebm', '6045684'), + (1035, 857, 'maybe', '2021-11-24 04:52:30', '2025-12-17 19:47:37', '41oPGr8m', '4015731'), + (1035, 1010, 'attending', '2021-11-05 22:58:48', '2025-12-17 19:47:36', '41oPGr8m', '4438812'), + (1035, 1012, 'not_attending', '2021-11-06 05:12:21', '2025-12-17 19:47:36', '41oPGr8m', '4438816'), + (1035, 1049, 'attending', '2022-01-22 22:33:29', '2025-12-17 19:47:32', '41oPGr8m', '4496614'), + (1035, 1050, 'maybe', '2022-01-27 07:33:40', '2025-12-17 19:47:32', '41oPGr8m', '4496615'), + (1035, 1051, 'attending', '2022-02-05 21:32:24', '2025-12-17 19:47:32', '41oPGr8m', '4496616'), + (1035, 1052, 'attending', '2022-01-14 03:16:07', '2025-12-17 19:47:31', '41oPGr8m', '4496617'), + (1035, 1053, 'attending', '2022-02-19 22:48:28', '2025-12-17 19:47:32', '41oPGr8m', '4496618'), + (1035, 1054, 'attending', '2022-03-19 21:16:59', '2025-12-17 19:47:25', '41oPGr8m', '4496619'), + (1035, 1056, 'attending', '2022-01-08 22:40:57', '2025-12-17 19:47:31', '41oPGr8m', '4496622'), + (1035, 1058, 'attending', '2022-02-26 22:20:59', '2025-12-17 19:47:33', '41oPGr8m', '4496625'), + (1035, 1061, 'maybe', '2022-02-08 20:20:56', '2025-12-17 19:47:32', '41oPGr8m', '4496628'), + (1035, 1062, 'maybe', '2022-03-03 04:38:13', '2025-12-17 19:47:33', '41oPGr8m', '4496629'), + (1035, 1085, 'maybe', '2021-12-22 18:11:07', '2025-12-17 19:47:31', '41oPGr8m', '4568542'), + (1035, 1099, 'attending', '2021-11-05 04:23:50', '2025-12-17 19:47:36', '41oPGr8m', '4602797'), + (1035, 1108, 'maybe', '2021-11-24 03:16:12', '2025-12-17 19:47:37', '41oPGr8m', '4632276'), + (1035, 1109, 'attending', '2021-11-20 21:49:58', '2025-12-17 19:47:37', '41oPGr8m', '4635221'), + (1035, 1110, 'attending', '2021-11-20 21:49:51', '2025-12-17 19:47:37', '41oPGr8m', '4635224'), + (1035, 1111, 'not_attending', '2021-12-06 09:09:28', '2025-12-17 19:47:31', '41oPGr8m', '4635279'), + (1035, 1112, 'attending', '2021-12-04 05:31:23', '2025-12-17 19:47:37', '41oPGr8m', '4635420'), + (1035, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '41oPGr8m', '4637896'), + (1035, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '41oPGr8m', '4642994'), + (1035, 1117, 'attending', '2021-12-08 23:39:55', '2025-12-17 19:47:37', '41oPGr8m', '4642995'), + (1035, 1118, 'attending', '2021-12-15 21:54:32', '2025-12-17 19:47:38', '41oPGr8m', '4642996'), + (1035, 1119, 'attending', '2021-12-22 18:10:37', '2025-12-17 19:47:31', '41oPGr8m', '4642997'), + (1035, 1126, 'attending', '2021-12-07 00:09:08', '2025-12-17 19:47:38', '41oPGr8m', '4645687'), + (1035, 1127, 'maybe', '2021-12-12 20:35:27', '2025-12-17 19:47:38', '41oPGr8m', '4645698'), + (1035, 1128, 'attending', '2021-11-20 21:50:02', '2025-12-17 19:47:37', '41oPGr8m', '4645704'), + (1035, 1129, 'attending', '2021-11-25 18:26:49', '2025-12-17 19:47:37', '41oPGr8m', '4645705'), + (1035, 1130, 'attending', '2021-12-04 15:12:59', '2025-12-17 19:47:37', '41oPGr8m', '4658824'), + (1035, 1131, 'attending', '2021-12-07 00:18:43', '2025-12-17 19:47:31', '41oPGr8m', '4658825'), + (1035, 1132, 'maybe', '2021-11-22 00:17:06', '2025-12-17 19:47:37', '41oPGr8m', '4660657'), + (1035, 1133, 'attending', '2021-11-24 00:40:18', '2025-12-17 19:47:37', '41oPGr8m', '4661671'), + (1035, 1134, 'attending', '2021-11-25 00:22:19', '2025-12-17 19:47:37', '41oPGr8m', '4668385'), + (1035, 1139, 'maybe', '2021-12-01 22:22:26', '2025-12-17 19:47:37', '41oPGr8m', '4675604'), + (1035, 1140, 'attending', '2021-12-04 01:19:59', '2025-12-17 19:47:37', '41oPGr8m', '4679701'), + (1035, 1142, 'attending', '2021-12-06 09:09:45', '2025-12-17 19:47:37', '41oPGr8m', '4681923'), + (1035, 1143, 'attending', '2021-12-01 22:21:11', '2025-12-17 19:47:37', '41oPGr8m', '4683667'), + (1035, 1145, 'attending', '2021-12-06 18:14:32', '2025-12-17 19:47:38', '41oPGr8m', '4691157'), + (1035, 1146, 'attending', '2021-12-10 21:18:01', '2025-12-17 19:47:38', '41oPGr8m', '4692841'), + (1035, 1147, 'maybe', '2021-12-07 00:18:28', '2025-12-17 19:47:38', '41oPGr8m', '4692842'), + (1035, 1148, 'maybe', '2021-12-07 00:18:34', '2025-12-17 19:47:31', '41oPGr8m', '4692843'), + (1035, 1149, 'maybe', '2021-12-10 21:18:33', '2025-12-17 19:47:38', '41oPGr8m', '4694407'), + (1035, 1150, 'attending', '2021-12-16 19:48:25', '2025-12-17 19:47:38', '41oPGr8m', '4706262'), + (1035, 1151, 'maybe', '2021-12-27 23:37:14', '2025-12-17 19:47:31', '41oPGr8m', '4708704'), + (1035, 1155, 'maybe', '2021-12-18 20:15:47', '2025-12-17 19:47:31', '41oPGr8m', '4715119'), + (1035, 1156, 'attending', '2021-12-18 21:32:31', '2025-12-17 19:47:31', '41oPGr8m', '4715207'), + (1035, 1158, 'maybe', '2021-12-19 01:24:44', '2025-12-17 19:47:31', '41oPGr8m', '4715311'), + (1035, 1159, 'attending', '2022-01-05 00:36:09', '2025-12-17 19:47:31', '41oPGr8m', '4717532'), + (1035, 1162, 'not_attending', '2022-01-08 00:25:22', '2025-12-17 19:47:31', '41oPGr8m', '4718771'), + (1035, 1163, 'maybe', '2021-12-27 23:37:30', '2025-12-17 19:47:31', '41oPGr8m', '4724206'), + (1035, 1164, 'maybe', '2021-12-27 23:37:02', '2025-12-17 19:47:31', '41oPGr8m', '4724208'), + (1035, 1165, 'maybe', '2021-12-27 23:37:07', '2025-12-17 19:47:31', '41oPGr8m', '4724210'), + (1035, 1166, 'maybe', '2022-01-03 02:07:16', '2025-12-17 19:47:31', '41oPGr8m', '4725109'), + (1035, 1170, 'maybe', '2022-01-03 02:07:06', '2025-12-17 19:47:31', '41oPGr8m', '4731045'), + (1035, 1173, 'attending', '2022-01-08 22:40:54', '2025-12-17 19:47:31', '41oPGr8m', '4736495'), + (1035, 1174, 'attending', '2022-01-14 03:16:04', '2025-12-17 19:47:31', '41oPGr8m', '4736496'), + (1035, 1175, 'attending', '2022-01-21 21:42:51', '2025-12-17 19:47:32', '41oPGr8m', '4736497'), + (1035, 1176, 'attending', '2022-01-31 21:31:20', '2025-12-17 19:47:32', '41oPGr8m', '4736498'), + (1035, 1177, 'attending', '2022-02-11 23:04:01', '2025-12-17 19:47:32', '41oPGr8m', '4736499'), + (1035, 1178, 'attending', '2022-01-29 21:45:45', '2025-12-17 19:47:32', '41oPGr8m', '4736500'), + (1035, 1179, 'attending', '2022-02-15 19:37:26', '2025-12-17 19:47:32', '41oPGr8m', '4736501'), + (1035, 1180, 'attending', '2022-02-26 22:21:06', '2025-12-17 19:47:33', '41oPGr8m', '4736502'), + (1035, 1181, 'attending', '2022-03-05 23:25:25', '2025-12-17 19:47:33', '41oPGr8m', '4736503'), + (1035, 1182, 'attending', '2022-03-06 10:06:43', '2025-12-17 19:47:33', '41oPGr8m', '4736504'), + (1035, 1185, 'maybe', '2022-01-09 05:48:32', '2025-12-17 19:47:31', '41oPGr8m', '4746789'), + (1035, 1188, 'not_attending', '2022-01-17 22:31:00', '2025-12-17 19:47:32', '41oPGr8m', '4753929'), + (1035, 1193, 'maybe', '2022-01-20 09:31:31', '2025-12-17 19:47:32', '41oPGr8m', '4759563'), + (1035, 1196, 'maybe', '2022-01-21 21:42:32', '2025-12-17 19:47:32', '41oPGr8m', '4765583'), + (1035, 1198, 'attending', '2022-01-24 23:07:36', '2025-12-17 19:47:32', '41oPGr8m', '4766801'), + (1035, 1199, 'attending', '2022-01-24 23:11:53', '2025-12-17 19:47:32', '41oPGr8m', '4766802'), + (1035, 1203, 'not_attending', '2022-01-23 22:48:06', '2025-12-17 19:47:32', '41oPGr8m', '4773535'), + (1035, 1204, 'not_attending', '2022-02-11 23:04:17', '2025-12-17 19:47:32', '41oPGr8m', '4773576'), + (1035, 1208, 'maybe', '2022-01-25 01:02:29', '2025-12-17 19:47:32', '41oPGr8m', '4774419'), + (1035, 1215, 'attending', '2022-02-25 23:59:01', '2025-12-17 19:47:33', '41oPGr8m', '4780763'), + (1035, 1221, 'attending', '2022-01-29 22:02:02', '2025-12-17 19:47:32', '41oPGr8m', '4790261'), + (1035, 1223, 'attending', '2022-02-05 21:28:30', '2025-12-17 19:47:32', '41oPGr8m', '5015635'), + (1035, 1225, 'attending', '2022-02-04 18:19:29', '2025-12-17 19:47:32', '41oPGr8m', '5019063'), + (1035, 1227, 'maybe', '2022-02-10 17:35:43', '2025-12-17 19:47:32', '41oPGr8m', '5027602'), + (1035, 1228, 'not_attending', '2022-02-11 23:03:55', '2025-12-17 19:47:32', '41oPGr8m', '5028238'), + (1035, 1229, 'maybe', '2022-02-12 20:29:59', '2025-12-17 19:47:32', '41oPGr8m', '5034963'), + (1035, 1230, 'maybe', '2022-02-08 20:20:26', '2025-12-17 19:47:32', '41oPGr8m', '5037632'), + (1035, 1231, 'not_attending', '2022-02-12 20:30:22', '2025-12-17 19:47:33', '41oPGr8m', '5037637'), + (1035, 1232, 'attending', '2022-02-09 23:26:08', '2025-12-17 19:47:32', '41oPGr8m', '5038850'), + (1035, 1235, 'not_attending', '2022-02-12 20:30:29', '2025-12-17 19:47:32', '41oPGr8m', '5044505'), + (1035, 1236, 'not_attending', '2022-02-15 19:37:09', '2025-12-17 19:47:32', '41oPGr8m', '5045826'), + (1035, 1239, 'attending', '2022-03-02 21:19:34', '2025-12-17 19:47:33', '41oPGr8m', '5052238'), + (1035, 1240, 'attending', '2022-03-16 15:46:04', '2025-12-17 19:47:33', '41oPGr8m', '5052239'), + (1035, 1241, 'maybe', '2022-03-23 16:49:13', '2025-12-17 19:47:25', '41oPGr8m', '5052240'), + (1035, 1243, 'attending', '2022-03-06 05:48:24', '2025-12-17 19:47:33', '41oPGr8m', '5058336'), + (1035, 1244, 'attending', '2022-02-21 04:29:42', '2025-12-17 19:47:33', '41oPGr8m', '5060490'), + (1035, 1245, 'attending', '2022-03-02 21:19:37', '2025-12-17 19:47:33', '41oPGr8m', '5061301'), + (1035, 1249, 'attending', '2022-03-09 20:22:57', '2025-12-17 19:47:33', '41oPGr8m', '5068530'), + (1035, 1253, 'maybe', '2022-02-28 20:22:49', '2025-12-17 19:47:33', '41oPGr8m', '5129122'), + (1035, 1254, 'maybe', '2022-03-03 04:38:09', '2025-12-17 19:47:33', '41oPGr8m', '5129129'), + (1035, 1259, 'attending', '2022-03-09 20:22:39', '2025-12-17 19:47:33', '41oPGr8m', '5132533'), + (1035, 1262, 'attending', '2022-03-10 23:00:57', '2025-12-17 19:47:33', '41oPGr8m', '5157773'), + (1035, 1269, 'maybe', '2022-03-16 15:46:35', '2025-12-17 19:47:25', '41oPGr8m', '5179439'), + (1035, 1272, 'attending', '2022-03-16 15:48:05', '2025-12-17 19:47:25', '41oPGr8m', '5186582'), + (1035, 1273, 'attending', '2022-03-16 15:47:53', '2025-12-17 19:47:25', '41oPGr8m', '5186583'), + (1035, 1274, 'attending', '2022-03-16 15:47:42', '2025-12-17 19:47:26', '41oPGr8m', '5186585'), + (1035, 1277, 'attending', '2022-03-16 15:46:20', '2025-12-17 19:47:25', '41oPGr8m', '5186865'), + (1035, 1281, 'maybe', '2022-03-17 16:01:02', '2025-12-17 19:47:27', '41oPGr8m', '5190437'), + (1035, 1284, 'not_attending', '2022-04-16 12:50:22', '2025-12-17 19:47:27', '41oPGr8m', '5195095'), + (1035, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41oPGr8m', '5215989'), + (1035, 1304, 'attending', '2022-04-06 22:24:07', '2025-12-17 19:47:26', '41oPGr8m', '5223468'), + (1035, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41oPGr8m', '5223686'), + (1035, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41oPGr8m', '5227432'), + (1035, 1311, 'maybe', '2022-04-08 22:17:19', '2025-12-17 19:47:27', '41oPGr8m', '5231430'), + (1035, 1313, 'not_attending', '2022-04-11 21:32:14', '2025-12-17 19:47:27', '41oPGr8m', '5231461'), + (1035, 1317, 'attending', '2022-04-11 22:04:45', '2025-12-17 19:47:27', '41oPGr8m', '5237543'), + (1035, 1325, 'not_attending', '2022-04-18 10:35:32', '2025-12-17 19:47:28', '41oPGr8m', '5238361'), + (1035, 1326, 'not_attending', '2022-04-18 10:35:35', '2025-12-17 19:47:28', '41oPGr8m', '5238362'), + (1035, 1330, 'maybe', '2022-04-18 10:34:22', '2025-12-17 19:47:27', '41oPGr8m', '5242155'), + (1035, 1346, 'not_attending', '2022-04-22 16:15:04', '2025-12-17 19:47:27', '41oPGr8m', '5247467'), + (1035, 1348, 'attending', '2022-05-01 21:59:51', '2025-12-17 19:47:28', '41oPGr8m', '5247605'), + (1035, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', '41oPGr8m', '5249631'), + (1035, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '41oPGr8m', '5260800'), + (1035, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '41oPGr8m', '5269930'), + (1035, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41oPGr8m', '5271448'), + (1035, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '41oPGr8m', '5271449'), + (1035, 1380, 'attending', '2022-05-27 15:58:42', '2025-12-17 19:47:30', '41oPGr8m', '5271450'), + (1035, 1383, 'attending', '2022-05-13 19:39:20', '2025-12-17 19:47:28', '41oPGr8m', '5276469'), + (1035, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41oPGr8m', '5278159'), + (1035, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41oPGr8m', '5363695'), + (1035, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41oPGr8m', '5365960'), + (1035, 1415, 'not_attending', '2022-05-19 19:14:24', '2025-12-17 19:47:30', '41oPGr8m', '5368973'), + (1035, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41oPGr8m', '5378247'), + (1035, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '41oPGr8m', '5389605'), + (1035, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41oPGr8m', '5397265'), + (1035, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41oPGr8m', '5403967'), + (1035, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41oPGr8m', '5404786'), + (1035, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41oPGr8m', '5405203'), + (1035, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41oPGr8m', '5411699'), + (1035, 1482, 'attending', '2022-06-24 18:12:12', '2025-12-17 19:47:19', '41oPGr8m', '5412550'), + (1035, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41oPGr8m', '5415046'), + (1035, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41oPGr8m', '5422086'), + (1035, 1498, 'maybe', '2022-07-02 21:28:54', '2025-12-17 19:47:19', '41oPGr8m', '5422406'), + (1035, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41oPGr8m', '5424565'), + (1035, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41oPGr8m', '5426882'), + (1035, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41oPGr8m', '5427083'), + (1035, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41oPGr8m', '5441125'), + (1035, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41oPGr8m', '5441126'), + (1035, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41oPGr8m', '5441128'), + (1035, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '41oPGr8m', '5441131'), + (1035, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41oPGr8m', '5441132'), + (1035, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41oPGr8m', '5446643'), + (1035, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41oPGr8m', '5453325'), + (1035, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41oPGr8m', '5454516'), + (1035, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41oPGr8m', '5454605'), + (1035, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41oPGr8m', '5455037'), + (1035, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41oPGr8m', '5461278'), + (1035, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41oPGr8m', '5469480'), + (1035, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41oPGr8m', '5471073'), + (1035, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41oPGr8m', '5474663'), + (1035, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41oPGr8m', '5482022'), + (1035, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41oPGr8m', '5482793'), + (1035, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41oPGr8m', '5488912'), + (1035, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41oPGr8m', '5492192'), + (1035, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41oPGr8m', '5493139'), + (1035, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41oPGr8m', '5493200'), + (1035, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41oPGr8m', '5502188'), + (1035, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41oPGr8m', '5505059'), + (1035, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41oPGr8m', '5509055'), + (1035, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41oPGr8m', '5512862'), + (1035, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41oPGr8m', '5513985'), + (1035, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', '41oPGr8m', '5519981'), + (1035, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41oPGr8m', '5522550'), + (1035, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41oPGr8m', '5534683'), + (1035, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '41oPGr8m', '5537735'), + (1035, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41oPGr8m', '5540859'), + (1035, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41oPGr8m', '5546619'), + (1035, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41oPGr8m', '5555245'), + (1035, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41oPGr8m', '5557747'), + (1035, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41oPGr8m', '5560255'), + (1035, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41oPGr8m', '5562906'), + (1035, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41oPGr8m', '5600604'), + (1035, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41oPGr8m', '5605544'), + (1035, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', '41oPGr8m', '5606737'), + (1035, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41oPGr8m', '5630960'), + (1035, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41oPGr8m', '5630961'), + (1035, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41oPGr8m', '5630962'), + (1035, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41oPGr8m', '5630966'), + (1035, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41oPGr8m', '5630967'), + (1035, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41oPGr8m', '5630968'), + (1035, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41oPGr8m', '5635406'), + (1035, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41oPGr8m', '5638765'), + (1035, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41oPGr8m', '5640097'), + (1035, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41oPGr8m', '5640843'), + (1035, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41oPGr8m', '5641521'), + (1035, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41oPGr8m', '5642818'), + (1035, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41oPGr8m', '5652395'), + (1035, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41oPGr8m', '5670445'), + (1035, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41oPGr8m', '5671637'), + (1035, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41oPGr8m', '5672329'), + (1035, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41oPGr8m', '5674057'), + (1035, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41oPGr8m', '5674060'), + (1035, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41oPGr8m', '5677461'), + (1035, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41oPGr8m', '5698046'), + (1035, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41oPGr8m', '5699760'), + (1035, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41oPGr8m', '5741601'), + (1035, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41oPGr8m', '5763458'), + (1035, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41oPGr8m', '5774172'), + (1035, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '41oPGr8m', '5818247'), + (1035, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41oPGr8m', '5819471'), + (1035, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41oPGr8m', '5827739'), + (1035, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41oPGr8m', '5844306'), + (1035, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41oPGr8m', '5850159'), + (1035, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41oPGr8m', '5858999'), + (1035, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41oPGr8m', '5871984'), + (1035, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41oPGr8m', '5876354'), + (1035, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '41oPGr8m', '5880939'), + (1035, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41oPGr8m', '5887890'), + (1035, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41oPGr8m', '5888598'), + (1035, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41oPGr8m', '5893260'), + (1035, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41oPGr8m', '6045684'), + (1036, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mbZNWRzm', '4736503'), + (1036, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mbZNWRzm', '4736504'), + (1036, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mbZNWRzm', '5132533'), + (1036, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mbZNWRzm', '5186582'), + (1036, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mbZNWRzm', '5186583'), + (1036, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mbZNWRzm', '5186585'), + (1036, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mbZNWRzm', '5190437'), + (1036, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mbZNWRzm', '5215989'), + (1036, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mbZNWRzm', '6045684'), + (1037, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4Pz0ORvm', '7842108'), + (1037, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4Pz0ORvm', '7842902'), + (1037, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4Pz0ORvm', '7842903'), + (1037, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4Pz0ORvm', '7842904'), + (1037, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4Pz0ORvm', '7842905'), + (1037, 2999, 'not_attending', '2025-02-13 02:18:52', '2025-12-17 19:46:23', '4Pz0ORvm', '7844784'), + (1037, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4Pz0ORvm', '7855719'), + (1037, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4Pz0ORvm', '7860683'), + (1037, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4Pz0ORvm', '7860684'), + (1037, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4Pz0ORvm', '7866095'), + (1037, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4Pz0ORvm', '7869170'), + (1037, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4Pz0ORvm', '7869201'), + (1037, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', '4Pz0ORvm', '7872088'), + (1038, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'm6Yj0JQd', '4210314'), + (1038, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'm6Yj0JQd', '4229420'), + (1038, 900, 'not_attending', '2021-07-21 14:13:52', '2025-12-17 19:47:40', 'm6Yj0JQd', '4240316'), + (1038, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'm6Yj0JQd', '4240317'), + (1038, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'm6Yj0JQd', '4240318'), + (1038, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'm6Yj0JQd', '4240320'), + (1038, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'm6Yj0JQd', '4277819'), + (1038, 923, 'attending', '2021-07-24 01:30:43', '2025-12-17 19:47:40', 'm6Yj0JQd', '4292773'), + (1038, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'm6Yj0JQd', '4301723'), + (1038, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'm6Yj0JQd', '4302093'), + (1038, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'm6Yj0JQd', '4304151'), + (1038, 940, 'not_attending', '2021-07-30 16:29:27', '2025-12-17 19:47:40', 'm6Yj0JQd', '4309049'), + (1038, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'm6Yj0JQd', '4315713'), + (1038, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'm6Yj0JQd', '4315714'), + (1038, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'm6Yj0JQd', '4315726'), + (1038, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'm6Yj0JQd', '4356801'), + (1038, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'm6Yj0JQd', '4366186'), + (1038, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'm6Yj0JQd', '4366187'), + (1038, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'm6Yj0JQd', '4420735'), + (1038, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'm6Yj0JQd', '4420738'), + (1038, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'm6Yj0JQd', '4420739'), + (1038, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'm6Yj0JQd', '4420741'), + (1038, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'm6Yj0JQd', '4420744'), + (1038, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'm6Yj0JQd', '4420747'), + (1038, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'm6Yj0JQd', '4420748'), + (1038, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'm6Yj0JQd', '4420749'), + (1038, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm6Yj0JQd', '4461883'), + (1038, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm6Yj0JQd', '4508342'), + (1038, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm6Yj0JQd', '4568602'), + (1038, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm6Yj0JQd', '4572153'), + (1038, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'm6Yj0JQd', '4585962'), + (1038, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm6Yj0JQd', '4596356'), + (1038, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm6Yj0JQd', '4598860'), + (1038, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm6Yj0JQd', '4598861'), + (1038, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm6Yj0JQd', '4602797'), + (1038, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm6Yj0JQd', '4637896'), + (1038, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm6Yj0JQd', '4642994'), + (1038, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm6Yj0JQd', '4642995'), + (1038, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm6Yj0JQd', '4642996'), + (1038, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm6Yj0JQd', '4642997'), + (1038, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm6Yj0JQd', '4645687'), + (1038, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm6Yj0JQd', '4645698'), + (1038, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm6Yj0JQd', '4645704'), + (1038, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm6Yj0JQd', '4645705'), + (1038, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm6Yj0JQd', '4668385'), + (1038, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6Yj0JQd', '6045684'), + (1039, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4EQlP9n4', '8438709'), + (1039, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4EQlP9n4', '8457738'), + (1039, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4EQlP9n4', '8459566'), + (1039, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4EQlP9n4', '8459567'), + (1039, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4EQlP9n4', '8461032'), + (1039, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4EQlP9n4', '8477877'), + (1039, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4EQlP9n4', '8485688'), + (1039, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4EQlP9n4', '8490587'), + (1039, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4EQlP9n4', '8493552'), + (1039, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4EQlP9n4', '8493553'), + (1039, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4EQlP9n4', '8493554'), + (1039, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4EQlP9n4', '8493555'), + (1039, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4EQlP9n4', '8493556'), + (1039, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4EQlP9n4', '8493557'), + (1039, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4EQlP9n4', '8493558'), + (1039, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4EQlP9n4', '8493559'), + (1039, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4EQlP9n4', '8493560'), + (1039, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4EQlP9n4', '8493561'), + (1039, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4EQlP9n4', '8493572'), + (1040, 998, 'not_attending', '2021-10-29 23:59:55', '2025-12-17 19:47:36', '4kRMMjwA', '4420749'), + (1040, 1011, 'attending', '2021-10-28 22:17:31', '2025-12-17 19:47:36', '4kRMMjwA', '4438814'), + (1040, 1074, 'not_attending', '2021-10-27 04:15:00', '2025-12-17 19:47:34', '4kRMMjwA', '4528953'), + (1040, 1085, 'attending', '2021-12-18 22:59:27', '2025-12-17 19:47:31', '4kRMMjwA', '4568542'), + (1040, 1095, 'not_attending', '2021-10-27 04:15:25', '2025-12-17 19:47:35', '4kRMMjwA', '4596356'), + (1040, 1096, 'not_attending', '2021-10-29 12:39:02', '2025-12-17 19:47:36', '4kRMMjwA', '4596453'), + (1040, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4kRMMjwA', '4598860'), + (1040, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4kRMMjwA', '4598861'), + (1040, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4kRMMjwA', '4602797'), + (1040, 1100, 'attending', '2021-11-04 00:26:30', '2025-12-17 19:47:36', '4kRMMjwA', '4607305'), + (1040, 1101, 'not_attending', '2021-11-11 23:13:16', '2025-12-17 19:47:36', '4kRMMjwA', '4607339'), + (1040, 1109, 'attending', '2021-11-11 03:45:59', '2025-12-17 19:47:37', '4kRMMjwA', '4635221'), + (1040, 1110, 'attending', '2021-11-11 03:45:58', '2025-12-17 19:47:37', '4kRMMjwA', '4635224'), + (1040, 1111, 'attending', '2021-11-11 03:46:03', '2025-12-17 19:47:31', '4kRMMjwA', '4635279'), + (1040, 1112, 'attending', '2021-11-30 05:28:41', '2025-12-17 19:47:37', '4kRMMjwA', '4635420'), + (1040, 1113, 'attending', '2021-11-21 00:18:42', '2025-12-17 19:47:37', '4kRMMjwA', '4635421'), + (1040, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4kRMMjwA', '4637896'), + (1040, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4kRMMjwA', '4642994'), + (1040, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4kRMMjwA', '4642995'), + (1040, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4kRMMjwA', '4642996'), + (1040, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4kRMMjwA', '4642997'), + (1040, 1126, 'not_attending', '2021-12-12 00:01:57', '2025-12-17 19:47:38', '4kRMMjwA', '4645687'), + (1040, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4kRMMjwA', '4645698'), + (1040, 1128, 'not_attending', '2021-11-20 17:40:18', '2025-12-17 19:47:37', '4kRMMjwA', '4645704'), + (1040, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4kRMMjwA', '4645705'), + (1040, 1130, 'not_attending', '2021-12-05 00:23:48', '2025-12-17 19:47:37', '4kRMMjwA', '4658824'), + (1040, 1131, 'attending', '2021-12-18 18:05:30', '2025-12-17 19:47:31', '4kRMMjwA', '4658825'), + (1040, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4kRMMjwA', '4668385'), + (1040, 1140, 'attending', '2021-11-30 05:28:34', '2025-12-17 19:47:37', '4kRMMjwA', '4679701'), + (1040, 1144, 'not_attending', '2021-12-07 19:50:07', '2025-12-17 19:47:37', '4kRMMjwA', '4687090'), + (1040, 1147, 'not_attending', '2021-12-13 16:30:05', '2025-12-17 19:47:38', '4kRMMjwA', '4692842'), + (1040, 1148, 'not_attending', '2021-12-13 16:30:08', '2025-12-17 19:47:31', '4kRMMjwA', '4692843'), + (1040, 1149, 'not_attending', '2021-12-09 00:14:51', '2025-12-17 19:47:38', '4kRMMjwA', '4694407'), + (1040, 1150, 'attending', '2021-12-13 16:29:04', '2025-12-17 19:47:38', '4kRMMjwA', '4706262'), + (1040, 1152, 'attending', '2022-01-12 21:51:41', '2025-12-17 19:47:31', '4kRMMjwA', '4708705'), + (1040, 1153, 'not_attending', '2022-01-19 23:27:41', '2025-12-17 19:47:32', '4kRMMjwA', '4708707'), + (1040, 1166, 'attending', '2022-01-07 16:45:14', '2025-12-17 19:47:31', '4kRMMjwA', '4725109'), + (1040, 1174, 'not_attending', '2022-01-15 22:29:50', '2025-12-17 19:47:31', '4kRMMjwA', '4736496'), + (1040, 1175, 'attending', '2022-01-22 22:23:37', '2025-12-17 19:47:32', '4kRMMjwA', '4736497'), + (1040, 1176, 'not_attending', '2022-02-05 16:57:43', '2025-12-17 19:47:32', '4kRMMjwA', '4736498'), + (1040, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4kRMMjwA', '4736499'), + (1040, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4kRMMjwA', '4736500'), + (1040, 1179, 'not_attending', '2022-02-19 19:16:11', '2025-12-17 19:47:32', '4kRMMjwA', '4736501'), + (1040, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kRMMjwA', '4736503'), + (1040, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kRMMjwA', '4736504'), + (1040, 1185, 'attending', '2022-01-13 23:58:13', '2025-12-17 19:47:31', '4kRMMjwA', '4746789'), + (1040, 1188, 'not_attending', '2022-01-18 20:00:14', '2025-12-17 19:47:32', '4kRMMjwA', '4753929'), + (1040, 1209, 'attending', '2022-01-23 05:27:13', '2025-12-17 19:47:32', '4kRMMjwA', '4776926'), + (1040, 1210, 'maybe', '2022-01-23 05:28:24', '2025-12-17 19:47:32', '4kRMMjwA', '4776927'), + (1040, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4kRMMjwA', '5038850'), + (1040, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4kRMMjwA', '5045826'), + (1040, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kRMMjwA', '5132533'), + (1040, 1272, 'attending', '2022-03-17 15:07:06', '2025-12-17 19:47:25', '4kRMMjwA', '5186582'), + (1040, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4kRMMjwA', '5186583'), + (1040, 1274, 'attending', '2022-03-31 01:25:32', '2025-12-17 19:47:26', '4kRMMjwA', '5186585'), + (1040, 1281, 'not_attending', '2022-04-09 18:34:32', '2025-12-17 19:47:27', '4kRMMjwA', '5190437'), + (1040, 1284, 'not_attending', '2022-04-16 06:02:09', '2025-12-17 19:47:27', '4kRMMjwA', '5195095'), + (1040, 1297, 'not_attending', '2022-03-31 01:25:20', '2025-12-17 19:47:26', '4kRMMjwA', '5215989'), + (1040, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4kRMMjwA', '5223686'), + (1040, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4kRMMjwA', '5227432'), + (1040, 1311, 'maybe', '2022-04-09 18:34:56', '2025-12-17 19:47:27', '4kRMMjwA', '5231430'), + (1040, 1313, 'not_attending', '2022-04-12 21:56:38', '2025-12-17 19:47:27', '4kRMMjwA', '5231461'), + (1040, 1316, 'attending', '2022-04-12 13:13:15', '2025-12-17 19:47:27', '4kRMMjwA', '5237536'), + (1040, 1346, 'not_attending', '2022-04-19 16:05:11', '2025-12-17 19:47:27', '4kRMMjwA', '5247467'), + (1040, 1349, 'attending', '2022-04-19 16:05:23', '2025-12-17 19:47:27', '4kRMMjwA', '5249631'), + (1040, 1354, 'not_attending', '2022-04-21 20:58:09', '2025-12-17 19:47:27', '4kRMMjwA', '5252569'), + (1040, 1356, 'not_attending', '2022-04-22 17:34:33', '2025-12-17 19:47:27', '4kRMMjwA', '5252913'), + (1040, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4kRMMjwA', '5260800'), + (1040, 1366, 'attending', '2022-04-26 17:03:49', '2025-12-17 19:47:27', '4kRMMjwA', '5262344'), + (1040, 1367, 'attending', '2022-04-26 17:03:39', '2025-12-17 19:47:28', '4kRMMjwA', '5262345'), + (1040, 1374, 'attending', '2022-05-06 21:46:28', '2025-12-17 19:47:28', '4kRMMjwA', '5269930'), + (1040, 1378, 'attending', '2022-05-13 16:05:51', '2025-12-17 19:47:28', '4kRMMjwA', '5271448'), + (1040, 1379, 'attending', '2022-05-19 23:53:42', '2025-12-17 19:47:29', '4kRMMjwA', '5271449'), + (1040, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4kRMMjwA', '5276469'), + (1040, 1386, 'not_attending', '2022-05-06 21:46:08', '2025-12-17 19:47:28', '4kRMMjwA', '5278159'), + (1040, 1407, 'attending', '2022-06-03 03:10:43', '2025-12-17 19:47:30', '4kRMMjwA', '5363695'), + (1040, 1408, 'not_attending', '2022-05-19 23:51:32', '2025-12-17 19:47:29', '4kRMMjwA', '5365960'), + (1040, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4kRMMjwA', '5368973'), + (1040, 1422, 'not_attending', '2022-05-28 19:44:36', '2025-12-17 19:47:30', '4kRMMjwA', '5375603'), + (1040, 1425, 'attending', '2022-05-24 01:47:39', '2025-12-17 19:47:30', '4kRMMjwA', '5375861'), + (1040, 1427, 'attending', '2022-05-25 22:12:24', '2025-12-17 19:47:30', '4kRMMjwA', '5376074'), + (1040, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4kRMMjwA', '5378247'), + (1040, 1431, 'attending', '2022-06-09 16:55:17', '2025-12-17 19:47:30', '4kRMMjwA', '5389605'), + (1040, 1442, 'attending', '2022-06-16 21:38:26', '2025-12-17 19:47:17', '4kRMMjwA', '5397265'), + (1040, 1449, 'not_attending', '2022-06-08 19:25:08', '2025-12-17 19:47:31', '4kRMMjwA', '5403335'), + (1040, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4kRMMjwA', '5403967'), + (1040, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4kRMMjwA', '5404786'), + (1040, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4kRMMjwA', '5405203'), + (1040, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4kRMMjwA', '5411699'), + (1040, 1482, 'attending', '2022-06-23 01:25:09', '2025-12-17 19:47:19', '4kRMMjwA', '5412550'), + (1040, 1484, 'not_attending', '2022-06-23 01:25:06', '2025-12-17 19:47:17', '4kRMMjwA', '5415046'), + (1040, 1485, 'attending', '2022-06-24 14:24:39', '2025-12-17 19:47:17', '4kRMMjwA', '5416276'), + (1040, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4kRMMjwA', '5422086'), + (1040, 1498, 'not_attending', '2022-07-02 17:21:14', '2025-12-17 19:47:19', '4kRMMjwA', '5422406'), + (1040, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4kRMMjwA', '5424565'), + (1040, 1503, 'attending', '2022-06-29 18:19:14', '2025-12-17 19:47:19', '4kRMMjwA', '5426820'), + (1040, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4kRMMjwA', '5426882'), + (1040, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4kRMMjwA', '5427083'), + (1040, 1511, 'attending', '2022-07-08 03:53:02', '2025-12-17 19:47:19', '4kRMMjwA', '5437733'), + (1040, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4kRMMjwA', '5441125'), + (1040, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4kRMMjwA', '5441126'), + (1040, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4kRMMjwA', '5441128'), + (1040, 1516, 'not_attending', '2022-08-19 02:04:58', '2025-12-17 19:47:23', '4kRMMjwA', '5441129'), + (1040, 1517, 'not_attending', '2022-08-27 14:22:55', '2025-12-17 19:47:23', '4kRMMjwA', '5441130'), + (1040, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4kRMMjwA', '5441131'), + (1040, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '4kRMMjwA', '5441132'), + (1040, 1523, 'attending', '2022-07-11 18:50:15', '2025-12-17 19:47:19', '4kRMMjwA', '5442868'), + (1040, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4kRMMjwA', '5446643'), + (1040, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4kRMMjwA', '5453325'), + (1040, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4kRMMjwA', '5454516'), + (1040, 1544, 'attending', '2022-09-15 14:21:03', '2025-12-17 19:47:11', '4kRMMjwA', '5454517'), + (1040, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4kRMMjwA', '5454605'), + (1040, 1551, 'attending', '2022-07-19 21:13:39', '2025-12-17 19:47:20', '4kRMMjwA', '5455037'), + (1040, 1554, 'attending', '2022-07-20 01:17:27', '2025-12-17 19:47:20', '4kRMMjwA', '5455230'), + (1040, 1558, 'attending', '2022-09-04 12:08:55', '2025-12-17 19:47:10', '4kRMMjwA', '5458730'), + (1040, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4kRMMjwA', '5461278'), + (1040, 1562, 'attending', '2022-07-27 18:42:25', '2025-12-17 19:47:22', '4kRMMjwA', '5469480'), + (1040, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4kRMMjwA', '5471073'), + (1040, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4kRMMjwA', '5474663'), + (1040, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4kRMMjwA', '5482022'), + (1040, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4kRMMjwA', '5482793'), + (1040, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4kRMMjwA', '5488912'), + (1040, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4kRMMjwA', '5492192'), + (1040, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4kRMMjwA', '5493139'), + (1040, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4kRMMjwA', '5493200'), + (1040, 1601, 'attending', '2022-08-10 21:46:43', '2025-12-17 19:47:22', '4kRMMjwA', '5496589'), + (1040, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4kRMMjwA', '5502188'), + (1040, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4kRMMjwA', '5505059'), + (1040, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4kRMMjwA', '5509055'), + (1040, 1616, 'attending', '2022-08-21 18:42:03', '2025-12-17 19:47:23', '4kRMMjwA', '5509478'), + (1040, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4kRMMjwA', '5512862'), + (1040, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4kRMMjwA', '5513985'), + (1040, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', '4kRMMjwA', '5519981'), + (1040, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4kRMMjwA', '5522550'), + (1040, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4kRMMjwA', '5534683'), + (1040, 1632, 'attending', '2022-08-27 14:25:50', '2025-12-17 19:47:23', '4kRMMjwA', '5534954'), + (1040, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4kRMMjwA', '5537735'), + (1040, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4kRMMjwA', '5540859'), + (1040, 1646, 'attending', '2022-09-02 00:03:17', '2025-12-17 19:47:24', '4kRMMjwA', '5546619'), + (1040, 1651, 'attending', '2022-09-04 13:58:41', '2025-12-17 19:47:24', '4kRMMjwA', '5551425'), + (1040, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4kRMMjwA', '5555245'), + (1040, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4kRMMjwA', '5557747'), + (1040, 1660, 'attending', '2022-09-08 02:43:56', '2025-12-17 19:47:24', '4kRMMjwA', '5558979'), + (1040, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4kRMMjwA', '5560255'), + (1040, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4kRMMjwA', '5562906'), + (1040, 1667, 'not_attending', '2022-09-24 21:33:39', '2025-12-17 19:47:11', '4kRMMjwA', '5563221'), + (1040, 1668, 'not_attending', '2022-10-01 18:10:14', '2025-12-17 19:47:12', '4kRMMjwA', '5563222'), + (1040, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4kRMMjwA', '5600604'), + (1040, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4kRMMjwA', '5605544'), + (1040, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', '4kRMMjwA', '5606737'), + (1040, 1701, 'attending', '2022-09-26 21:36:20', '2025-12-17 19:47:11', '4kRMMjwA', '5607857'), + (1040, 1708, 'attending', '2022-10-05 23:37:03', '2025-12-17 19:47:12', '4kRMMjwA', '5617648'), + (1040, 1710, 'attending', '2022-10-02 19:21:17', '2025-12-17 19:47:12', '4kRMMjwA', '5621822'), + (1040, 1717, 'attending', '2022-10-21 13:58:58', '2025-12-17 19:47:13', '4kRMMjwA', '5622842'), + (1040, 1718, 'not_attending', '2022-10-13 03:38:21', '2025-12-17 19:47:12', '4kRMMjwA', '5630907'), + (1040, 1719, 'attending', '2022-10-07 14:50:48', '2025-12-17 19:47:12', '4kRMMjwA', '5630958'), + (1040, 1720, 'attending', '2022-10-13 03:38:03', '2025-12-17 19:47:12', '4kRMMjwA', '5630959'), + (1040, 1721, 'not_attending', '2022-10-20 14:52:34', '2025-12-17 19:47:13', '4kRMMjwA', '5630960'), + (1040, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4kRMMjwA', '5630961'), + (1040, 1723, 'not_attending', '2022-10-31 23:15:25', '2025-12-17 19:47:15', '4kRMMjwA', '5630962'), + (1040, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4kRMMjwA', '5630966'), + (1040, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4kRMMjwA', '5630967'), + (1040, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4kRMMjwA', '5630968'), + (1040, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4kRMMjwA', '5635406'), + (1040, 1733, 'attending', '2022-10-11 15:28:11', '2025-12-17 19:47:12', '4kRMMjwA', '5635411'), + (1040, 1736, 'not_attending', '2022-10-31 23:15:34', '2025-12-17 19:47:15', '4kRMMjwA', '5638456'), + (1040, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4kRMMjwA', '5638765'), + (1040, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4kRMMjwA', '5640097'), + (1040, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4kRMMjwA', '5640843'), + (1040, 1743, 'attending', '2022-10-10 11:21:35', '2025-12-17 19:47:12', '4kRMMjwA', '5641521'), + (1040, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4kRMMjwA', '5642818'), + (1040, 1746, 'attending', '2022-10-13 03:38:33', '2025-12-17 19:47:12', '4kRMMjwA', '5647518'), + (1040, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4kRMMjwA', '5652395'), + (1040, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4kRMMjwA', '5670445'), + (1040, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4kRMMjwA', '5671637'), + (1040, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4kRMMjwA', '5672329'), + (1040, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4kRMMjwA', '5674057'), + (1040, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4kRMMjwA', '5674060'), + (1040, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4kRMMjwA', '5677461'), + (1040, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4kRMMjwA', '5698046'), + (1040, 1784, 'attending', '2022-11-04 11:40:23', '2025-12-17 19:47:15', '4kRMMjwA', '5699760'), + (1040, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4kRMMjwA', '5741601'), + (1040, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4kRMMjwA', '5763458'), + (1040, 1806, 'not_attending', '2023-01-11 23:28:22', '2025-12-17 19:47:05', '4kRMMjwA', '5764676'), + (1040, 1807, 'not_attending', '2023-01-11 23:28:16', '2025-12-17 19:47:05', '4kRMMjwA', '5764677'), + (1040, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4kRMMjwA', '5774172'), + (1040, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '4kRMMjwA', '5818247'), + (1040, 1834, 'not_attending', '2022-12-10 20:05:03', '2025-12-17 19:47:17', '4kRMMjwA', '5819470'), + (1040, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4kRMMjwA', '5819471'), + (1040, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '4kRMMjwA', '5827739'), + (1040, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4kRMMjwA', '5844306'), + (1040, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4kRMMjwA', '5850159'), + (1040, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4kRMMjwA', '5858999'), + (1040, 1852, 'not_attending', '2023-01-11 23:28:14', '2025-12-17 19:47:05', '4kRMMjwA', '5869898'), + (1040, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4kRMMjwA', '5871984'), + (1040, 1860, 'maybe', '2023-01-13 23:24:29', '2025-12-17 19:47:05', '4kRMMjwA', '5876309'), + (1040, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4kRMMjwA', '5876354'), + (1040, 1864, 'not_attending', '2023-01-21 19:54:27', '2025-12-17 19:47:05', '4kRMMjwA', '5879675'), + (1040, 1865, 'not_attending', '2023-01-27 23:50:24', '2025-12-17 19:47:06', '4kRMMjwA', '5879676'), + (1040, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '4kRMMjwA', '5880939'), + (1040, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4kRMMjwA', '5880940'), + (1040, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4kRMMjwA', '5887890'), + (1040, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4kRMMjwA', '5888598'), + (1040, 1878, 'not_attending', '2023-02-06 13:26:14', '2025-12-17 19:47:07', '4kRMMjwA', '5893000'), + (1040, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4kRMMjwA', '5893260'), + (1040, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4kRMMjwA', '5899826'), + (1040, 1888, 'attending', '2023-02-18 00:01:09', '2025-12-17 19:47:07', '4kRMMjwA', '5900197'), + (1040, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4kRMMjwA', '5900199'), + (1040, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4kRMMjwA', '5900200'), + (1040, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4kRMMjwA', '5901108'), + (1040, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4kRMMjwA', '5901126'), + (1040, 1897, 'not_attending', '2023-02-11 00:49:46', '2025-12-17 19:47:07', '4kRMMjwA', '5901128'), + (1040, 1910, 'attending', '2023-02-08 02:47:47', '2025-12-17 19:47:07', '4kRMMjwA', '5909655'), + (1040, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4kRMMjwA', '5910522'), + (1040, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4kRMMjwA', '5910526'), + (1040, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4kRMMjwA', '5910528'), + (1040, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4kRMMjwA', '5916219'), + (1040, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4kRMMjwA', '5936234'), + (1040, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kRMMjwA', '6045684'), + (1041, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oOZWZJ4', '6045684'), + (1042, 243, 'maybe', '2020-11-03 15:56:15', '2025-12-17 19:47:53', 'ndaxNQp4', '3149474'), + (1042, 244, 'maybe', '2020-10-20 12:07:40', '2025-12-17 19:47:52', 'ndaxNQp4', '3149475'), + (1042, 373, 'maybe', '2020-10-24 12:24:15', '2025-12-17 19:47:52', 'ndaxNQp4', '3221413'), + (1042, 388, 'maybe', '2020-10-24 12:24:22', '2025-12-17 19:47:52', 'ndaxNQp4', '3228701'), + (1042, 394, 'attending', '2021-01-02 08:37:22', '2025-12-17 19:47:48', 'ndaxNQp4', '3236449'), + (1042, 399, 'not_attending', '2020-11-06 00:54:49', '2025-12-17 19:47:54', 'ndaxNQp4', '3236454'), + (1042, 409, 'not_attending', '2020-12-11 00:52:01', '2025-12-17 19:47:54', 'ndaxNQp4', '3236467'), + (1042, 429, 'attending', '2020-11-20 21:57:38', '2025-12-17 19:47:54', 'ndaxNQp4', '3250523'), + (1042, 433, 'maybe', '2020-11-06 01:16:53', '2025-12-17 19:47:53', 'ndaxNQp4', '3254417'), + (1042, 440, 'attending', '2020-11-07 16:13:58', '2025-12-17 19:47:53', 'ndaxNQp4', '3256168'), + (1042, 441, 'attending', '2020-11-03 09:09:11', '2025-12-17 19:47:54', 'ndaxNQp4', '3256169'), + (1042, 443, 'maybe', '2020-10-25 11:21:53', '2025-12-17 19:47:53', 'ndaxNQp4', '3263578'), + (1042, 445, 'not_attending', '2020-11-12 00:41:39', '2025-12-17 19:47:54', 'ndaxNQp4', '3266138'), + (1042, 450, 'not_attending', '2020-10-31 20:27:08', '2025-12-17 19:47:53', 'ndaxNQp4', '3272102'), + (1042, 452, 'attending', '2020-11-11 22:06:41', '2025-12-17 19:47:54', 'ndaxNQp4', '3272981'), + (1042, 453, 'attending', '2020-11-11 21:58:39', '2025-12-17 19:47:54', 'ndaxNQp4', '3274032'), + (1042, 454, 'maybe', '2020-11-13 16:30:58', '2025-12-17 19:47:54', 'ndaxNQp4', '3275665'), + (1042, 456, 'attending', '2020-11-05 14:44:04', '2025-12-17 19:47:54', 'ndaxNQp4', '3276428'), + (1042, 457, 'maybe', '2020-11-07 14:58:11', '2025-12-17 19:47:53', 'ndaxNQp4', '3279087'), + (1042, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ndaxNQp4', '3281467'), + (1042, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'ndaxNQp4', '3281470'), + (1042, 463, 'maybe', '2020-11-13 16:30:41', '2025-12-17 19:47:54', 'ndaxNQp4', '3281553'), + (1042, 464, 'attending', '2020-11-11 22:06:31', '2025-12-17 19:47:54', 'ndaxNQp4', '3281554'), + (1042, 465, 'attending', '2020-11-11 22:06:35', '2025-12-17 19:47:54', 'ndaxNQp4', '3281555'), + (1042, 466, 'maybe', '2020-11-23 23:20:05', '2025-12-17 19:47:54', 'ndaxNQp4', '3281829'), + (1042, 468, 'attending', '2020-11-11 21:57:12', '2025-12-17 19:47:54', 'ndaxNQp4', '3285413'), + (1042, 469, 'maybe', '2020-11-28 06:13:03', '2025-12-17 19:47:54', 'ndaxNQp4', '3285414'), + (1042, 470, 'attending', '2020-11-11 22:07:04', '2025-12-17 19:47:54', 'ndaxNQp4', '3285443'), + (1042, 471, 'maybe', '2020-11-18 22:57:29', '2025-12-17 19:47:54', 'ndaxNQp4', '3285445'), + (1042, 472, 'attending', '2020-11-12 00:41:35', '2025-12-17 19:47:54', 'ndaxNQp4', '3286541'), + (1042, 473, 'attending', '2020-11-12 00:42:01', '2025-12-17 19:47:54', 'ndaxNQp4', '3286569'), + (1042, 475, 'attending', '2020-11-13 16:32:13', '2025-12-17 19:47:54', 'ndaxNQp4', '3286760'), + (1042, 477, 'maybe', '2020-12-05 01:48:14', '2025-12-17 19:47:54', 'ndaxNQp4', '3289559'), + (1042, 478, 'attending', '2020-11-16 20:21:13', '2025-12-17 19:47:54', 'ndaxNQp4', '3290899'), + (1042, 481, 'maybe', '2020-11-23 23:20:09', '2025-12-17 19:47:54', 'ndaxNQp4', '3297764'), + (1042, 482, 'attending', '2020-11-25 00:59:18', '2025-12-17 19:47:54', 'ndaxNQp4', '3297769'), + (1042, 484, 'maybe', '2020-11-21 00:17:16', '2025-12-17 19:47:54', 'ndaxNQp4', '3297792'), + (1042, 493, 'maybe', '2020-12-05 22:33:07', '2025-12-17 19:47:54', 'ndaxNQp4', '3313856'), + (1042, 495, 'attending', '2020-12-04 23:39:07', '2025-12-17 19:47:54', 'ndaxNQp4', '3314009'), + (1042, 496, 'attending', '2020-12-08 01:10:00', '2025-12-17 19:47:54', 'ndaxNQp4', '3314269'), + (1042, 497, 'attending', '2020-12-08 01:10:48', '2025-12-17 19:47:55', 'ndaxNQp4', '3314270'), + (1042, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ndaxNQp4', '3314909'), + (1042, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaxNQp4', '3314964'), + (1042, 502, 'attending', '2020-12-08 01:10:26', '2025-12-17 19:47:55', 'ndaxNQp4', '3323365'), + (1042, 511, 'attending', '2020-12-08 02:08:45', '2025-12-17 19:47:55', 'ndaxNQp4', '3325335'), + (1042, 513, 'maybe', '2020-12-20 00:58:27', '2025-12-17 19:47:55', 'ndaxNQp4', '3329383'), + (1042, 518, 'attending', '2021-01-02 08:37:41', '2025-12-17 19:47:48', 'ndaxNQp4', '3337138'), + (1042, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndaxNQp4', '3351539'), + (1042, 528, 'attending', '2021-01-02 08:35:39', '2025-12-17 19:47:48', 'ndaxNQp4', '3363022'), + (1042, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndaxNQp4', '3386848'), + (1042, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndaxNQp4', '3389527'), + (1042, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndaxNQp4', '3396499'), + (1042, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndaxNQp4', '3403650'), + (1042, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaxNQp4', '3406988'), + (1042, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndaxNQp4', '3416576'), + (1042, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaxNQp4', '6045684'), + (1043, 856, 'attending', '2021-09-09 02:34:51', '2025-12-17 19:47:43', 'm6YW7Eqd', '4015730'), + (1043, 971, 'maybe', '2021-09-08 22:50:20', '2025-12-17 19:47:43', 'm6YW7Eqd', '4356801'), + (1043, 991, 'attending', '2021-09-09 02:32:37', '2025-12-17 19:47:43', 'm6YW7Eqd', '4420738'), + (1043, 992, 'not_attending', '2021-09-25 19:43:34', '2025-12-17 19:47:34', 'm6YW7Eqd', '4420739'), + (1043, 993, 'attending', '2021-09-25 19:43:31', '2025-12-17 19:47:34', 'm6YW7Eqd', '4420741'), + (1043, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'm6YW7Eqd', '4420744'), + (1043, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'm6YW7Eqd', '4420747'), + (1043, 1004, 'not_attending', '2021-09-14 22:58:24', '2025-12-17 19:47:43', 'm6YW7Eqd', '4438804'), + (1043, 1005, 'attending', '2021-09-18 23:15:49', '2025-12-17 19:47:34', 'm6YW7Eqd', '4438807'), + (1043, 1016, 'attending', '2021-09-09 22:53:09', '2025-12-17 19:47:43', 'm6YW7Eqd', '4441271'), + (1043, 1019, 'attending', '2021-09-09 02:32:25', '2025-12-17 19:47:43', 'm6YW7Eqd', '4450515'), + (1043, 1020, 'attending', '2021-09-09 02:33:00', '2025-12-17 19:47:43', 'm6YW7Eqd', '4451787'), + (1043, 1021, 'attending', '2021-09-09 02:34:20', '2025-12-17 19:47:34', 'm6YW7Eqd', '4451803'), + (1043, 1022, 'attending', '2021-09-11 15:53:47', '2025-12-17 19:47:43', 'm6YW7Eqd', '4458628'), + (1043, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm6YW7Eqd', '4461883'), + (1043, 1030, 'not_attending', '2021-09-26 14:11:30', '2025-12-17 19:47:34', 'm6YW7Eqd', '4473064'), + (1043, 1032, 'maybe', '2021-09-26 20:20:11', '2025-12-17 19:47:34', 'm6YW7Eqd', '4473825'), + (1043, 1066, 'attending', '2021-09-24 18:56:53', '2025-12-17 19:47:34', 'm6YW7Eqd', '4506039'), + (1043, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm6YW7Eqd', '4508342'), + (1043, 1068, 'attending', '2021-09-26 19:31:53', '2025-12-17 19:47:34', 'm6YW7Eqd', '4511471'), + (1043, 1069, 'attending', '2021-09-24 18:56:51', '2025-12-17 19:47:34', 'm6YW7Eqd', '4512090'), + (1043, 1074, 'attending', '2021-09-29 22:22:52', '2025-12-17 19:47:34', 'm6YW7Eqd', '4528953'), + (1043, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm6YW7Eqd', '4568602'), + (1043, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm6YW7Eqd', '4572153'), + (1043, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'm6YW7Eqd', '4585962'), + (1043, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm6YW7Eqd', '4596356'), + (1043, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm6YW7Eqd', '4598860'), + (1043, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm6YW7Eqd', '4598861'), + (1043, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm6YW7Eqd', '4602797'), + (1043, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm6YW7Eqd', '4637896'), + (1043, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm6YW7Eqd', '4642994'), + (1043, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm6YW7Eqd', '4642995'), + (1043, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm6YW7Eqd', '4642996'), + (1043, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm6YW7Eqd', '4642997'), + (1043, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm6YW7Eqd', '4645687'), + (1043, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm6YW7Eqd', '4645698'), + (1043, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm6YW7Eqd', '4645704'), + (1043, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm6YW7Eqd', '4645705'), + (1043, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm6YW7Eqd', '4668385'), + (1043, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'm6YW7Eqd', '4694407'), + (1043, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm6YW7Eqd', '4736497'), + (1043, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm6YW7Eqd', '4736499'), + (1043, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm6YW7Eqd', '4736500'), + (1043, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm6YW7Eqd', '4736503'), + (1043, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm6YW7Eqd', '4736504'), + (1043, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm6YW7Eqd', '4746789'), + (1043, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm6YW7Eqd', '4753929'), + (1043, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm6YW7Eqd', '5038850'), + (1043, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm6YW7Eqd', '5045826'), + (1043, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6YW7Eqd', '5132533'), + (1043, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm6YW7Eqd', '5186582'), + (1043, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6YW7Eqd', '5186583'), + (1043, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6YW7Eqd', '5186585'), + (1043, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6YW7Eqd', '5190437'), + (1043, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'm6YW7Eqd', '5195095'), + (1043, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6YW7Eqd', '5215989'), + (1043, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'm6YW7Eqd', '5223686'), + (1043, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'm6YW7Eqd', '5247467'), + (1043, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'm6YW7Eqd', '5260800'), + (1043, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6YW7Eqd', '5269930'), + (1043, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6YW7Eqd', '5271448'), + (1043, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'm6YW7Eqd', '5271449'), + (1043, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6YW7Eqd', '5278159'), + (1043, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'm6YW7Eqd', '5363695'), + (1043, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'm6YW7Eqd', '5365960'), + (1043, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'm6YW7Eqd', '5378247'), + (1043, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'm6YW7Eqd', '5389605'), + (1043, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'm6YW7Eqd', '5397265'), + (1043, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'm6YW7Eqd', '5404786'), + (1043, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'm6YW7Eqd', '5405203'), + (1043, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'm6YW7Eqd', '5412550'), + (1043, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6YW7Eqd', '5415046'), + (1043, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6YW7Eqd', '5422086'), + (1043, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6YW7Eqd', '5422406'), + (1043, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6YW7Eqd', '5424565'), + (1043, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6YW7Eqd', '5426882'), + (1043, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'm6YW7Eqd', '5441125'), + (1043, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6YW7Eqd', '5441126'), + (1043, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'm6YW7Eqd', '5441128'), + (1043, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6YW7Eqd', '5441131'), + (1043, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'm6YW7Eqd', '5441132'), + (1043, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6YW7Eqd', '5453325'), + (1043, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6YW7Eqd', '5454516'), + (1043, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6YW7Eqd', '5454605'), + (1043, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6YW7Eqd', '5455037'), + (1043, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6YW7Eqd', '5461278'), + (1043, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6YW7Eqd', '5469480'), + (1043, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'm6YW7Eqd', '5474663'), + (1043, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6YW7Eqd', '5482022'), + (1043, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6YW7Eqd', '5488912'), + (1043, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6YW7Eqd', '5492192'), + (1043, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6YW7Eqd', '5493139'), + (1043, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6YW7Eqd', '5493200'), + (1043, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6YW7Eqd', '5502188'), + (1043, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6YW7Eqd', '5505059'), + (1043, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6YW7Eqd', '5509055'), + (1043, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6YW7Eqd', '5512862'), + (1043, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6YW7Eqd', '5513985'), + (1043, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'm6YW7Eqd', '5519981'), + (1043, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6YW7Eqd', '5522550'), + (1043, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6YW7Eqd', '5534683'), + (1043, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'm6YW7Eqd', '5537735'), + (1043, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6YW7Eqd', '5540859'), + (1043, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6YW7Eqd', '5546619'), + (1043, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6YW7Eqd', '5557747'), + (1043, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6YW7Eqd', '5560255'), + (1043, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6YW7Eqd', '5562906'), + (1043, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6YW7Eqd', '5600604'), + (1043, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6YW7Eqd', '5605544'), + (1043, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'm6YW7Eqd', '5606737'), + (1043, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6YW7Eqd', '5630960'), + (1043, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6YW7Eqd', '5630961'), + (1043, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6YW7Eqd', '5630962'), + (1043, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6YW7Eqd', '5630966'), + (1043, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6YW7Eqd', '5630967'), + (1043, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm6YW7Eqd', '5630968'), + (1043, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6YW7Eqd', '5635406'), + (1043, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6YW7Eqd', '5638765'), + (1043, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6YW7Eqd', '5640097'), + (1043, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6YW7Eqd', '5640843'), + (1043, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6YW7Eqd', '5641521'), + (1043, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6YW7Eqd', '5642818'), + (1043, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6YW7Eqd', '5652395'), + (1043, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6YW7Eqd', '5670445'), + (1043, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6YW7Eqd', '5671637'), + (1043, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6YW7Eqd', '5672329'), + (1043, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6YW7Eqd', '5674057'), + (1043, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6YW7Eqd', '5674060'), + (1043, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6YW7Eqd', '5677461'), + (1043, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6YW7Eqd', '5698046'), + (1043, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6YW7Eqd', '5699760'), + (1043, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6YW7Eqd', '5741601'), + (1043, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6YW7Eqd', '5763458'), + (1043, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6YW7Eqd', '5774172'), + (1043, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'm6YW7Eqd', '5818247'), + (1043, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6YW7Eqd', '5819471'), + (1043, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6YW7Eqd', '5827739'), + (1043, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6YW7Eqd', '5844306'), + (1043, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6YW7Eqd', '5850159'), + (1043, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6YW7Eqd', '5858999'), + (1043, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6YW7Eqd', '5871984'), + (1043, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6YW7Eqd', '5876354'), + (1043, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'm6YW7Eqd', '5880939'), + (1043, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm6YW7Eqd', '5880940'), + (1043, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm6YW7Eqd', '5880942'), + (1043, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm6YW7Eqd', '5880943'), + (1043, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6YW7Eqd', '5887890'), + (1043, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6YW7Eqd', '5888598'), + (1043, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6YW7Eqd', '5893260'), + (1043, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm6YW7Eqd', '5899826'), + (1043, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm6YW7Eqd', '5900199'), + (1043, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm6YW7Eqd', '5900200'), + (1043, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm6YW7Eqd', '5900202'), + (1043, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm6YW7Eqd', '5900203'), + (1043, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm6YW7Eqd', '5901108'), + (1043, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm6YW7Eqd', '5901126'), + (1043, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm6YW7Eqd', '5909655'), + (1043, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm6YW7Eqd', '5910522'), + (1043, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm6YW7Eqd', '5910526'), + (1043, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm6YW7Eqd', '5910528'), + (1043, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm6YW7Eqd', '5916219'), + (1043, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm6YW7Eqd', '5936234'), + (1043, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm6YW7Eqd', '5958351'), + (1043, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm6YW7Eqd', '5959751'), + (1043, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm6YW7Eqd', '5959755'), + (1043, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm6YW7Eqd', '5960055'), + (1043, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm6YW7Eqd', '5961684'), + (1043, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm6YW7Eqd', '5962132'), + (1043, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm6YW7Eqd', '5962133'), + (1043, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm6YW7Eqd', '5962134'), + (1043, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm6YW7Eqd', '5962317'), + (1043, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm6YW7Eqd', '5962318'), + (1043, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm6YW7Eqd', '5965933'), + (1043, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm6YW7Eqd', '5967014'), + (1043, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm6YW7Eqd', '5972815'), + (1043, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm6YW7Eqd', '5974016'), + (1043, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm6YW7Eqd', '5981515'), + (1043, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm6YW7Eqd', '5993516'), + (1043, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm6YW7Eqd', '5998939'), + (1043, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm6YW7Eqd', '6028191'), + (1043, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm6YW7Eqd', '6040066'), + (1043, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm6YW7Eqd', '6042717'), + (1043, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm6YW7Eqd', '6044838'), + (1043, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm6YW7Eqd', '6044839'), + (1043, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6YW7Eqd', '6045684'), + (1043, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm6YW7Eqd', '6050104'), + (1043, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm6YW7Eqd', '6053195'), + (1043, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm6YW7Eqd', '6053198'), + (1043, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm6YW7Eqd', '6056085'), + (1043, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm6YW7Eqd', '6056916'), + (1043, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm6YW7Eqd', '6059290'), + (1043, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm6YW7Eqd', '6060328'), + (1043, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm6YW7Eqd', '6061037'), + (1043, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm6YW7Eqd', '6061039'), + (1043, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm6YW7Eqd', '6067245'), + (1043, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm6YW7Eqd', '6068094'), + (1043, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm6YW7Eqd', '6068252'), + (1043, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm6YW7Eqd', '6068253'), + (1043, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm6YW7Eqd', '6068254'), + (1043, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm6YW7Eqd', '6068280'), + (1043, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm6YW7Eqd', '6069093'), + (1043, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'm6YW7Eqd', '6072528'), + (1043, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm6YW7Eqd', '6079840'), + (1043, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm6YW7Eqd', '6083398'), + (1043, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm6YW7Eqd', '6093504'), + (1043, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm6YW7Eqd', '6097414'), + (1043, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm6YW7Eqd', '6097442'), + (1043, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm6YW7Eqd', '6097684'), + (1043, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm6YW7Eqd', '6098762'), + (1043, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'm6YW7Eqd', '6101361'), + (1043, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm6YW7Eqd', '6101362'), + (1043, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm6YW7Eqd', '6107314'), + (1043, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'm6YW7Eqd', '6120034'), + (1043, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'm6YW7Eqd', '6136733'), + (1043, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'm6YW7Eqd', '6137989'), + (1043, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'm6YW7Eqd', '6150864'), + (1043, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'm6YW7Eqd', '6155491'), + (1043, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'm6YW7Eqd', '6164417'), + (1043, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'm6YW7Eqd', '6166388'), + (1043, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'm6YW7Eqd', '6176439'), + (1043, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'm6YW7Eqd', '6182410'), + (1043, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'm6YW7Eqd', '6185812'), + (1043, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'm6YW7Eqd', '6187651'), + (1043, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'm6YW7Eqd', '6187963'), + (1043, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'm6YW7Eqd', '6187964'), + (1043, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'm6YW7Eqd', '6187966'), + (1043, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'm6YW7Eqd', '6187967'), + (1043, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'm6YW7Eqd', '6187969'), + (1043, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'm6YW7Eqd', '6334878'), + (1043, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'm6YW7Eqd', '6337236'), + (1043, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'm6YW7Eqd', '6337970'), + (1043, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'm6YW7Eqd', '6338308'), + (1043, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'm6YW7Eqd', '6341710'), + (1043, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'm6YW7Eqd', '6342044'), + (1043, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'm6YW7Eqd', '6342298'), + (1043, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'm6YW7Eqd', '6343294'), + (1043, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'm6YW7Eqd', '6347034'), + (1043, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'm6YW7Eqd', '6347056'), + (1043, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'm6YW7Eqd', '6353830'), + (1043, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'm6YW7Eqd', '6353831'), + (1043, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'm6YW7Eqd', '6357867'), + (1043, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'm6YW7Eqd', '6358652'), + (1043, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'm6YW7Eqd', '6361709'), + (1043, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'm6YW7Eqd', '6361710'), + (1043, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'm6YW7Eqd', '6361711'), + (1043, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'm6YW7Eqd', '6361712'), + (1043, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm6YW7Eqd', '6361713'), + (1043, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'm6YW7Eqd', '6382573'), + (1043, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'm6YW7Eqd', '6388604'), + (1043, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm6YW7Eqd', '6394629'), + (1043, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm6YW7Eqd', '6394631'), + (1043, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'm6YW7Eqd', '6440863'), + (1043, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'm6YW7Eqd', '6445440'), + (1043, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'm6YW7Eqd', '6453951'), + (1043, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'm6YW7Eqd', '6461696'), + (1043, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'm6YW7Eqd', '6462129'), + (1043, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'm6YW7Eqd', '6463218'), + (1043, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'm6YW7Eqd', '6472181'), + (1043, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'm6YW7Eqd', '6482693'), + (1043, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'm6YW7Eqd', '6484200'), + (1043, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'm6YW7Eqd', '6484680'), + (1043, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'm6YW7Eqd', '6507741'), + (1043, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'm6YW7Eqd', '6514659'), + (1043, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'm6YW7Eqd', '6514660'), + (1043, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'm6YW7Eqd', '6519103'), + (1043, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'm6YW7Eqd', '6535681'), + (1043, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'm6YW7Eqd', '6584747'), + (1043, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'm6YW7Eqd', '6587097'), + (1043, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'm6YW7Eqd', '6609022'), + (1043, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'm6YW7Eqd', '6632757'), + (1043, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'm6YW7Eqd', '6644187'), + (1043, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'm6YW7Eqd', '6648951'), + (1043, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'm6YW7Eqd', '6648952'), + (1043, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'm6YW7Eqd', '6655401'), + (1043, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'm6YW7Eqd', '6661585'), + (1043, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'm6YW7Eqd', '6661588'), + (1043, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'm6YW7Eqd', '6661589'), + (1043, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'm6YW7Eqd', '6699906'), + (1043, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'm6YW7Eqd', '6699913'), + (1043, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'm6YW7Eqd', '6701109'), + (1043, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'm6YW7Eqd', '6705219'), + (1043, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'm6YW7Eqd', '6710153'), + (1043, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'm6YW7Eqd', '6711552'), + (1043, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'm6YW7Eqd', '6711553'), + (1043, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'm6YW7Eqd', '6722688'), + (1043, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'm6YW7Eqd', '6730620'), + (1043, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'm6YW7Eqd', '6740364'), + (1043, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'm6YW7Eqd', '6743829'), + (1043, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'm6YW7Eqd', '7030380'), + (1043, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'm6YW7Eqd', '7033677'), + (1043, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'm6YW7Eqd', '7044715'), + (1043, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'm6YW7Eqd', '7050318'), + (1043, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'm6YW7Eqd', '7050319'), + (1043, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'm6YW7Eqd', '7050322'), + (1043, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'm6YW7Eqd', '7057804'), + (1043, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'm6YW7Eqd', '7072824'), + (1043, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'm6YW7Eqd', '7074348'), + (1043, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'm6YW7Eqd', '7074364'), + (1043, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'm6YW7Eqd', '7089267'), + (1043, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'm6YW7Eqd', '7098747'), + (1043, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'm6YW7Eqd', '7113468'), + (1043, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'm6YW7Eqd', '7114856'), + (1043, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'm6YW7Eqd', '7114951'), + (1043, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'm6YW7Eqd', '7114955'), + (1043, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'm6YW7Eqd', '7114956'), + (1043, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'm6YW7Eqd', '7114957'), + (1043, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'm6YW7Eqd', '7159484'), + (1043, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'm6YW7Eqd', '7178446'), + (1043, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'm6YW7Eqd', '7220467'), + (1043, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'm6YW7Eqd', '7240354'), + (1043, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'm6YW7Eqd', '7251633'), + (1043, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'm6YW7Eqd', '7324073'), + (1043, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'm6YW7Eqd', '7324074'), + (1043, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'm6YW7Eqd', '7324075'), + (1043, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'm6YW7Eqd', '7324078'), + (1043, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'm6YW7Eqd', '7324082'), + (1043, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'm6YW7Eqd', '7331457'), + (1043, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'm6YW7Eqd', '7363643'), + (1043, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'm6YW7Eqd', '7368606'), + (1043, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'm6YW7Eqd', '7397462'), + (1043, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'm6YW7Eqd', '7424275'), + (1043, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'm6YW7Eqd', '7432751'), + (1043, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'm6YW7Eqd', '7432752'), + (1043, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'm6YW7Eqd', '7432753'), + (1043, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432754'), + (1043, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432755'), + (1043, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432756'), + (1043, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432758'), + (1043, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432759'), + (1043, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'm6YW7Eqd', '7433834'), + (1043, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'm6YW7Eqd', '7470197'), + (1043, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'm6YW7Eqd', '7685613'), + (1043, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6YW7Eqd', '7688194'), + (1043, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6YW7Eqd', '7688196'), + (1043, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6YW7Eqd', '7688289'), + (1043, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'm6YW7Eqd', '7692763'), + (1043, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'm6YW7Eqd', '7697552'), + (1043, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'm6YW7Eqd', '7699878'), + (1043, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'm6YW7Eqd', '7704043'), + (1043, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6YW7Eqd', '7712467'), + (1043, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6YW7Eqd', '7713585'), + (1043, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6YW7Eqd', '7713586'), + (1043, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'm6YW7Eqd', '7738518'), + (1043, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6YW7Eqd', '7750636'), + (1043, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6YW7Eqd', '7796540'), + (1043, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6YW7Eqd', '7796541'), + (1043, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6YW7Eqd', '7796542'), + (1043, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6YW7Eqd', '7825913'), + (1043, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6YW7Eqd', '7826209'), + (1043, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6YW7Eqd', '7834742'), + (1043, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6YW7Eqd', '7842108'), + (1043, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6YW7Eqd', '7842902'), + (1043, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6YW7Eqd', '7842903'), + (1043, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6YW7Eqd', '7842904'), + (1043, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6YW7Eqd', '7842905'), + (1043, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6YW7Eqd', '7855719'), + (1043, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6YW7Eqd', '7860683'), + (1043, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6YW7Eqd', '7860684'), + (1043, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6YW7Eqd', '7866095'), + (1043, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6YW7Eqd', '7869170'), + (1043, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'm6YW7Eqd', '7869188'), + (1043, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6YW7Eqd', '7869201'), + (1043, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'm6YW7Eqd', '7877465'), + (1043, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'm6YW7Eqd', '7888250'), + (1043, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'm6YW7Eqd', '7904777'), + (1043, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'm6YW7Eqd', '8349164'), + (1043, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'm6YW7Eqd', '8349545'), + (1043, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'm6YW7Eqd', '8368028'), + (1043, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'm6YW7Eqd', '8368029'), + (1043, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'm6YW7Eqd', '8388462'), + (1043, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'm6YW7Eqd', '8400273'), + (1043, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'm6YW7Eqd', '8400275'), + (1043, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'm6YW7Eqd', '8400276'), + (1043, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'm6YW7Eqd', '8404977'), + (1043, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'm6YW7Eqd', '8430783'), + (1043, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'm6YW7Eqd', '8430784'), + (1043, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'm6YW7Eqd', '8430799'), + (1043, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'm6YW7Eqd', '8430800'), + (1043, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'm6YW7Eqd', '8430801'), + (1043, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'm6YW7Eqd', '8438709'), + (1043, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'm6YW7Eqd', '8457738'), + (1043, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'm6YW7Eqd', '8459566'), + (1043, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'm6YW7Eqd', '8459567'), + (1043, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'm6YW7Eqd', '8461032'), + (1043, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'm6YW7Eqd', '8477877'), + (1043, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'm6YW7Eqd', '8485688'), + (1043, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'm6YW7Eqd', '8490587'), + (1043, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'm6YW7Eqd', '8493552'), + (1043, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'm6YW7Eqd', '8493553'), + (1043, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'm6YW7Eqd', '8493554'), + (1043, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'm6YW7Eqd', '8493555'), + (1043, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'm6YW7Eqd', '8493556'), + (1043, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'm6YW7Eqd', '8493557'), + (1043, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'm6YW7Eqd', '8493558'), + (1043, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'm6YW7Eqd', '8493559'), + (1043, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'm6YW7Eqd', '8493560'), + (1043, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'm6YW7Eqd', '8493561'), + (1043, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'm6YW7Eqd', '8493572'), + (1043, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'm6YW7Eqd', '8540725'), + (1043, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'm6YW7Eqd', '8555421'), + (1044, 245, 'not_attending', '2020-11-30 16:15:05', '2025-12-17 19:47:54', 'pmbMYjgd', '3149476'), + (1044, 249, 'not_attending', '2020-11-17 03:54:21', '2025-12-17 19:47:54', 'pmbMYjgd', '3149480'), + (1044, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'pmbMYjgd', '3236467'), + (1044, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'pmbMYjgd', '3285413'), + (1044, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'pmbMYjgd', '3285414'), + (1044, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'pmbMYjgd', '3297764'), + (1044, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'pmbMYjgd', '3313856'), + (1044, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'pmbMYjgd', '3314909'), + (1044, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'pmbMYjgd', '3314964'), + (1044, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'pmbMYjgd', '3323365'), + (1044, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'pmbMYjgd', '3324148'), + (1044, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'pmbMYjgd', '3329383'), + (1044, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'pmbMYjgd', '3351539'), + (1044, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'pmbMYjgd', '3386848'), + (1044, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'pmbMYjgd', '3389527'), + (1044, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'pmbMYjgd', '3396499'), + (1044, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'pmbMYjgd', '3403650'), + (1044, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'pmbMYjgd', '3406988'), + (1044, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'pmbMYjgd', '3416576'), + (1044, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'pmbMYjgd', '3426074'), + (1044, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'pmbMYjgd', '3430267'), + (1044, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'pmbMYjgd', '3468125'), + (1044, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'pmbMYjgd', '3470303'), + (1044, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'pmbMYjgd', '3470305'), + (1044, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'pmbMYjgd', '3470991'), + (1044, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'pmbMYjgd', '3517815'), + (1044, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'pmbMYjgd', '3517816'), + (1044, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'pmbMYjgd', '3523941'), + (1044, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmbMYjgd', '3533850'), + (1044, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmbMYjgd', '3536632'), + (1044, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmbMYjgd', '3536656'), + (1044, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'pmbMYjgd', '3539916'), + (1044, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'pmbMYjgd', '3539917'), + (1044, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmbMYjgd', '3539918'), + (1044, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'pmbMYjgd', '3539919'), + (1044, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmbMYjgd', '3539920'), + (1044, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'pmbMYjgd', '3539921'), + (1044, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmbMYjgd', '3539922'), + (1044, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmbMYjgd', '3539923'), + (1044, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmbMYjgd', '3539927'), + (1044, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmbMYjgd', '3582734'), + (1044, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmbMYjgd', '3583262'), + (1044, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmbMYjgd', '3619523'), + (1044, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmbMYjgd', '3661369'), + (1044, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmbMYjgd', '3674262'), + (1044, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmbMYjgd', '3677402'), + (1044, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmbMYjgd', '3730212'), + (1044, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'pmbMYjgd', '3793156'), + (1044, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbMYjgd', '3974109'), + (1044, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmbMYjgd', '3975311'), + (1044, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmbMYjgd', '3975312'), + (1044, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbMYjgd', '3994992'), + (1044, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmbMYjgd', '4014338'), + (1044, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmbMYjgd', '4021848'), + (1044, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmbMYjgd', '4136744'), + (1044, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'pmbMYjgd', '4136937'), + (1044, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmbMYjgd', '4136938'), + (1044, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbMYjgd', '4136947'), + (1044, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbMYjgd', '4210314'), + (1044, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbMYjgd', '4225444'), + (1044, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbMYjgd', '4239259'), + (1044, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmbMYjgd', '4240316'), + (1044, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbMYjgd', '4240317'), + (1044, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbMYjgd', '4240318'), + (1044, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbMYjgd', '4240320'), + (1044, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbMYjgd', '4250163'), + (1044, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmbMYjgd', '4275957'), + (1044, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbMYjgd', '4277819'), + (1044, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbMYjgd', '4301723'), + (1044, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbMYjgd', '4302093'), + (1044, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbMYjgd', '4304151'), + (1044, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbMYjgd', '4356801'), + (1044, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbMYjgd', '4366186'), + (1044, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbMYjgd', '4366187'), + (1044, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbMYjgd', '4420735'), + (1044, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbMYjgd', '4420738'), + (1044, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbMYjgd', '4420739'), + (1044, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbMYjgd', '4420741'), + (1044, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbMYjgd', '4420744'), + (1044, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbMYjgd', '4420747'), + (1044, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbMYjgd', '4420748'), + (1044, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbMYjgd', '4420749'), + (1044, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbMYjgd', '4461883'), + (1044, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbMYjgd', '4508342'), + (1044, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbMYjgd', '4568602'), + (1044, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbMYjgd', '4572153'), + (1044, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'pmbMYjgd', '4585962'), + (1044, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'pmbMYjgd', '4596356'), + (1044, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbMYjgd', '4598860'), + (1044, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbMYjgd', '4598861'), + (1044, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbMYjgd', '4602797'), + (1044, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbMYjgd', '4637896'), + (1044, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbMYjgd', '4642994'), + (1044, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'pmbMYjgd', '4642995'), + (1044, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbMYjgd', '4642996'), + (1044, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbMYjgd', '4642997'), + (1044, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbMYjgd', '4645687'), + (1044, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbMYjgd', '4645698'), + (1044, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbMYjgd', '4645704'), + (1044, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbMYjgd', '4645705'), + (1044, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbMYjgd', '4668385'), + (1044, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbMYjgd', '4694407'), + (1044, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbMYjgd', '4736497'), + (1044, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbMYjgd', '4736499'), + (1044, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbMYjgd', '4736500'), + (1044, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbMYjgd', '4736503'), + (1044, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbMYjgd', '4736504'), + (1044, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbMYjgd', '4746789'), + (1044, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbMYjgd', '4753929'), + (1044, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbMYjgd', '5038850'), + (1044, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbMYjgd', '5045826'), + (1044, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbMYjgd', '5132533'), + (1044, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbMYjgd', '5186582'), + (1044, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbMYjgd', '5186583'), + (1044, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbMYjgd', '5186585'), + (1044, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbMYjgd', '5190437'), + (1044, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'pmbMYjgd', '5195095'), + (1044, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbMYjgd', '5215989'), + (1044, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'pmbMYjgd', '5223686'), + (1044, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'pmbMYjgd', '5247467'), + (1044, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'pmbMYjgd', '5260800'), + (1044, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'pmbMYjgd', '5269930'), + (1044, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'pmbMYjgd', '5271448'), + (1044, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'pmbMYjgd', '5271449'), + (1044, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'pmbMYjgd', '5278159'), + (1044, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'pmbMYjgd', '5363695'), + (1044, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'pmbMYjgd', '5365960'), + (1044, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'pmbMYjgd', '5378247'), + (1044, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'pmbMYjgd', '5389605'), + (1044, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'pmbMYjgd', '5397265'), + (1044, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'pmbMYjgd', '5404786'), + (1044, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'pmbMYjgd', '5405203'), + (1044, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'pmbMYjgd', '5412550'), + (1044, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'pmbMYjgd', '5415046'), + (1044, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'pmbMYjgd', '5422086'), + (1044, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'pmbMYjgd', '5422406'), + (1044, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'pmbMYjgd', '5424565'), + (1044, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'pmbMYjgd', '5426882'), + (1044, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'pmbMYjgd', '5441125'), + (1044, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'pmbMYjgd', '5441126'), + (1044, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'pmbMYjgd', '5441128'), + (1044, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'pmbMYjgd', '5441131'), + (1044, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'pmbMYjgd', '5441132'), + (1044, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'pmbMYjgd', '5453325'), + (1044, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'pmbMYjgd', '5454516'), + (1044, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'pmbMYjgd', '5454605'), + (1044, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'pmbMYjgd', '5455037'), + (1044, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'pmbMYjgd', '5461278'), + (1044, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'pmbMYjgd', '5469480'), + (1044, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'pmbMYjgd', '5474663'), + (1044, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'pmbMYjgd', '5482022'), + (1044, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'pmbMYjgd', '5488912'), + (1044, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'pmbMYjgd', '5492192'), + (1044, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'pmbMYjgd', '5493139'), + (1044, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'pmbMYjgd', '5493200'), + (1044, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'pmbMYjgd', '5502188'), + (1044, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'pmbMYjgd', '5505059'), + (1044, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'pmbMYjgd', '5509055'), + (1044, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'pmbMYjgd', '5512862'), + (1044, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'pmbMYjgd', '5513985'), + (1044, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'pmbMYjgd', '5519981'), + (1044, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'pmbMYjgd', '5522550'), + (1044, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'pmbMYjgd', '5534683'), + (1044, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'pmbMYjgd', '5537735'), + (1044, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'pmbMYjgd', '5540859'), + (1044, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'pmbMYjgd', '5546619'), + (1044, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'pmbMYjgd', '5557747'), + (1044, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'pmbMYjgd', '5560255'), + (1044, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'pmbMYjgd', '5562906'), + (1044, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'pmbMYjgd', '5600604'), + (1044, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'pmbMYjgd', '5605544'), + (1044, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'pmbMYjgd', '5630960'), + (1044, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'pmbMYjgd', '5630961'), + (1044, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'pmbMYjgd', '5630962'), + (1044, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'pmbMYjgd', '5630966'), + (1044, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'pmbMYjgd', '5630967'), + (1044, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'pmbMYjgd', '5630968'), + (1044, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'pmbMYjgd', '5635406'), + (1044, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'pmbMYjgd', '5638765'), + (1044, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'pmbMYjgd', '5640097'), + (1044, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'pmbMYjgd', '5640843'), + (1044, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'pmbMYjgd', '5641521'), + (1044, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'pmbMYjgd', '5642818'), + (1044, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'pmbMYjgd', '5652395'), + (1044, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'pmbMYjgd', '5670445'), + (1044, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'pmbMYjgd', '5671637'), + (1044, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'pmbMYjgd', '5672329'), + (1044, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'pmbMYjgd', '5674057'), + (1044, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'pmbMYjgd', '5674060'), + (1044, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'pmbMYjgd', '5677461'), + (1044, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'pmbMYjgd', '5698046'), + (1044, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'pmbMYjgd', '5699760'), + (1044, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'pmbMYjgd', '5741601'), + (1044, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'pmbMYjgd', '5763458'), + (1044, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'pmbMYjgd', '5774172'), + (1044, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'pmbMYjgd', '5818247'), + (1044, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'pmbMYjgd', '5819471'), + (1044, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'pmbMYjgd', '5827739'), + (1044, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'pmbMYjgd', '5844306'), + (1044, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'pmbMYjgd', '5850159'), + (1044, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'pmbMYjgd', '5858999'), + (1044, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'pmbMYjgd', '5871984'), + (1044, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'pmbMYjgd', '5876354'), + (1044, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'pmbMYjgd', '5880939'), + (1044, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'pmbMYjgd', '5880940'), + (1044, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'pmbMYjgd', '5880942'), + (1044, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'pmbMYjgd', '5880943'), + (1044, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'pmbMYjgd', '5887890'), + (1044, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'pmbMYjgd', '5888598'), + (1044, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'pmbMYjgd', '5893260'), + (1044, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'pmbMYjgd', '5899826'), + (1044, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'pmbMYjgd', '5900199'), + (1044, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'pmbMYjgd', '5900200'), + (1044, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'pmbMYjgd', '5900202'), + (1044, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'pmbMYjgd', '5900203'), + (1044, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'pmbMYjgd', '5901108'), + (1044, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'pmbMYjgd', '5901126'), + (1044, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'pmbMYjgd', '5901606'), + (1044, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'pmbMYjgd', '5909655'), + (1044, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'pmbMYjgd', '5910522'), + (1044, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'pmbMYjgd', '5910526'), + (1044, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'pmbMYjgd', '5910528'), + (1044, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'pmbMYjgd', '5916219'), + (1044, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'pmbMYjgd', '5936234'), + (1044, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'pmbMYjgd', '5958351'), + (1044, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'pmbMYjgd', '5959751'), + (1044, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'pmbMYjgd', '5959755'), + (1044, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'pmbMYjgd', '5960055'), + (1044, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'pmbMYjgd', '5961684'), + (1044, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'pmbMYjgd', '5962132'), + (1044, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'pmbMYjgd', '5962133'), + (1044, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'pmbMYjgd', '5962134'), + (1044, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'pmbMYjgd', '5962317'), + (1044, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'pmbMYjgd', '5962318'), + (1044, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'pmbMYjgd', '5965933'), + (1044, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'pmbMYjgd', '5967014'), + (1044, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'pmbMYjgd', '5972815'), + (1044, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'pmbMYjgd', '5974016'), + (1044, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'pmbMYjgd', '5981515'), + (1044, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'pmbMYjgd', '5993516'), + (1044, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'pmbMYjgd', '5998939'), + (1044, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'pmbMYjgd', '6028191'), + (1044, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'pmbMYjgd', '6040066'), + (1044, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'pmbMYjgd', '6042717'), + (1044, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'pmbMYjgd', '6044838'), + (1044, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'pmbMYjgd', '6044839'), + (1044, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbMYjgd', '6045684'), + (1044, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'pmbMYjgd', '6050104'), + (1044, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'pmbMYjgd', '6053195'), + (1044, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'pmbMYjgd', '6053198'), + (1044, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'pmbMYjgd', '6056085'), + (1044, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'pmbMYjgd', '6056916'), + (1044, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'pmbMYjgd', '6059290'), + (1044, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'pmbMYjgd', '6060328'), + (1044, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'pmbMYjgd', '6061037'), + (1044, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'pmbMYjgd', '6061039'), + (1044, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'pmbMYjgd', '6067245'), + (1044, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'pmbMYjgd', '6068094'), + (1044, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'pmbMYjgd', '6068252'), + (1044, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'pmbMYjgd', '6068253'), + (1044, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'pmbMYjgd', '6068254'), + (1044, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'pmbMYjgd', '6068280'), + (1044, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'pmbMYjgd', '6069093'), + (1044, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'pmbMYjgd', '6072528'), + (1044, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'pmbMYjgd', '6079840'), + (1044, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'pmbMYjgd', '6083398'), + (1044, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'pmbMYjgd', '6093504'), + (1044, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'pmbMYjgd', '6097414'), + (1044, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'pmbMYjgd', '6097442'), + (1044, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'pmbMYjgd', '6097684'), + (1044, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'pmbMYjgd', '6098762'), + (1044, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'pmbMYjgd', '6101361'), + (1044, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'pmbMYjgd', '6101362'), + (1044, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'pmbMYjgd', '6107314'), + (1044, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'pmbMYjgd', '6120034'), + (1044, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'pmbMYjgd', '6136733'), + (1044, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'pmbMYjgd', '6137989'), + (1044, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'pmbMYjgd', '6150864'), + (1044, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'pmbMYjgd', '6155491'), + (1044, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'pmbMYjgd', '6164417'), + (1044, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'pmbMYjgd', '6166388'), + (1044, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'pmbMYjgd', '6176439'), + (1044, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'pmbMYjgd', '6182410'), + (1044, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'pmbMYjgd', '6185812'), + (1044, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'pmbMYjgd', '6187651'), + (1044, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'pmbMYjgd', '6187963'), + (1044, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'pmbMYjgd', '6187964'), + (1044, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'pmbMYjgd', '6187966'), + (1044, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'pmbMYjgd', '6187967'), + (1044, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'pmbMYjgd', '6187969'), + (1044, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'pmbMYjgd', '6334878'), + (1044, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'pmbMYjgd', '6337236'), + (1044, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'pmbMYjgd', '6337970'), + (1044, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'pmbMYjgd', '6338308'), + (1044, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'pmbMYjgd', '6341710'), + (1044, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'pmbMYjgd', '6342044'), + (1044, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'pmbMYjgd', '6342298'), + (1044, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'pmbMYjgd', '6343294'), + (1044, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'pmbMYjgd', '6347034'), + (1044, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'pmbMYjgd', '6347056'), + (1044, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'pmbMYjgd', '6353830'), + (1044, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'pmbMYjgd', '6353831'), + (1044, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'pmbMYjgd', '6357867'), + (1044, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'pmbMYjgd', '6358652'), + (1044, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'pmbMYjgd', '6361709'), + (1044, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'pmbMYjgd', '6361710'), + (1044, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'pmbMYjgd', '6361711'), + (1044, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'pmbMYjgd', '6361712'), + (1044, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'pmbMYjgd', '6361713'), + (1044, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'pmbMYjgd', '6382573'), + (1044, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'pmbMYjgd', '6388604'), + (1044, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'pmbMYjgd', '6394629'), + (1044, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'pmbMYjgd', '6394631'), + (1044, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'pmbMYjgd', '6440863'), + (1044, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'pmbMYjgd', '6445440'), + (1044, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'pmbMYjgd', '6453951'), + (1044, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'pmbMYjgd', '6461696'), + (1044, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'pmbMYjgd', '6462129'), + (1044, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'pmbMYjgd', '6463218'), + (1044, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'pmbMYjgd', '6472181'), + (1044, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'pmbMYjgd', '6482693'), + (1044, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'pmbMYjgd', '6484200'), + (1044, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'pmbMYjgd', '6484680'), + (1044, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'pmbMYjgd', '6507741'), + (1044, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'pmbMYjgd', '6514659'), + (1044, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'pmbMYjgd', '6514660'), + (1044, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'pmbMYjgd', '6519103'), + (1044, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'pmbMYjgd', '6535681'), + (1044, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'pmbMYjgd', '6584747'), + (1044, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'pmbMYjgd', '6587097'), + (1044, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'pmbMYjgd', '6609022'), + (1044, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'pmbMYjgd', '6632757'), + (1044, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'pmbMYjgd', '6644187'), + (1044, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'pmbMYjgd', '6648951'), + (1044, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'pmbMYjgd', '6648952'), + (1044, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'pmbMYjgd', '6655401'), + (1044, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'pmbMYjgd', '6661585'), + (1044, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'pmbMYjgd', '6661588'), + (1044, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'pmbMYjgd', '6661589'), + (1044, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'pmbMYjgd', '6699906'), + (1044, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'pmbMYjgd', '6699913'), + (1044, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'pmbMYjgd', '6701109'), + (1044, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'pmbMYjgd', '6705219'), + (1044, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'pmbMYjgd', '6710153'), + (1044, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'pmbMYjgd', '6711552'), + (1044, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'pmbMYjgd', '6711553'), + (1044, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'pmbMYjgd', '6722688'), + (1044, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'pmbMYjgd', '6730620'), + (1044, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'pmbMYjgd', '6740364'), + (1044, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'pmbMYjgd', '6743829'), + (1044, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'pmbMYjgd', '7030380'), + (1044, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'pmbMYjgd', '7033677'), + (1044, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'pmbMYjgd', '7044715'), + (1044, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'pmbMYjgd', '7050318'), + (1044, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'pmbMYjgd', '7050319'), + (1044, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'pmbMYjgd', '7050322'), + (1044, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'pmbMYjgd', '7057804'), + (1044, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'pmbMYjgd', '7072824'), + (1044, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'pmbMYjgd', '7074348'), + (1044, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'pmbMYjgd', '7074364'), + (1044, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'pmbMYjgd', '7089267'), + (1044, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'pmbMYjgd', '7098747'), + (1044, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'pmbMYjgd', '7113468'), + (1044, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'pmbMYjgd', '7114856'), + (1044, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'pmbMYjgd', '7114951'), + (1044, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'pmbMYjgd', '7114955'), + (1044, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'pmbMYjgd', '7114956'), + (1044, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'pmbMYjgd', '7114957'), + (1044, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'pmbMYjgd', '7159484'), + (1044, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'pmbMYjgd', '7178446'), + (1044, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'pmbMYjgd', '7220467'), + (1044, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'pmbMYjgd', '7240354'), + (1044, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'pmbMYjgd', '7251633'), + (1044, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'pmbMYjgd', '7324073'), + (1044, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'pmbMYjgd', '7324074'), + (1044, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'pmbMYjgd', '7324075'), + (1044, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'pmbMYjgd', '7324078'), + (1044, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'pmbMYjgd', '7324082'), + (1044, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'pmbMYjgd', '7331457'), + (1044, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'pmbMYjgd', '7363643'), + (1044, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'pmbMYjgd', '7368606'), + (1044, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'pmbMYjgd', '7397462'), + (1044, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'pmbMYjgd', '7424275'), + (1044, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'pmbMYjgd', '7432751'), + (1044, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'pmbMYjgd', '7432752'), + (1044, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'pmbMYjgd', '7432753'), + (1044, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'pmbMYjgd', '7432754'), + (1044, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'pmbMYjgd', '7432755'), + (1044, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'pmbMYjgd', '7432756'), + (1044, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'pmbMYjgd', '7432758'), + (1044, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'pmbMYjgd', '7432759'), + (1044, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'pmbMYjgd', '7433834'), + (1044, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'pmbMYjgd', '7470197'), + (1044, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'pmbMYjgd', '7685613'), + (1044, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'pmbMYjgd', '7688194'), + (1044, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'pmbMYjgd', '7688196'), + (1044, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'pmbMYjgd', '7688289'), + (1044, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'pmbMYjgd', '7692763'), + (1044, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'pmbMYjgd', '7697552'), + (1044, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'pmbMYjgd', '7699878'), + (1044, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'pmbMYjgd', '7704043'), + (1044, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'pmbMYjgd', '7712467'), + (1044, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'pmbMYjgd', '7713585'), + (1044, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'pmbMYjgd', '7713586'), + (1044, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'pmbMYjgd', '7738518'), + (1044, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'pmbMYjgd', '7750636'), + (1044, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'pmbMYjgd', '7796540'), + (1044, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'pmbMYjgd', '7796541'), + (1044, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'pmbMYjgd', '7796542'), + (1044, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'pmbMYjgd', '7825913'), + (1044, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'pmbMYjgd', '7826209'), + (1044, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'pmbMYjgd', '7834742'), + (1044, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'pmbMYjgd', '7842108'), + (1044, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'pmbMYjgd', '7842902'), + (1044, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'pmbMYjgd', '7842903'), + (1044, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'pmbMYjgd', '7842904'), + (1044, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'pmbMYjgd', '7842905'), + (1044, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'pmbMYjgd', '7855719'), + (1044, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'pmbMYjgd', '7860683'), + (1044, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'pmbMYjgd', '7860684'), + (1044, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'pmbMYjgd', '7866095'), + (1044, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'pmbMYjgd', '7869170'), + (1044, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'pmbMYjgd', '7869188'), + (1044, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'pmbMYjgd', '7869201'), + (1044, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'pmbMYjgd', '7877465'), + (1044, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'pmbMYjgd', '7888250'), + (1044, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'pmbMYjgd', '7904777'), + (1044, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'pmbMYjgd', '8349164'), + (1044, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'pmbMYjgd', '8349545'), + (1044, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'pmbMYjgd', '8368028'), + (1044, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'pmbMYjgd', '8368029'), + (1044, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'pmbMYjgd', '8388462'), + (1044, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'pmbMYjgd', '8400273'), + (1044, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'pmbMYjgd', '8400275'), + (1044, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'pmbMYjgd', '8400276'), + (1044, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'pmbMYjgd', '8404977'), + (1044, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'pmbMYjgd', '8430783'), + (1044, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'pmbMYjgd', '8430784'), + (1044, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'pmbMYjgd', '8430799'), + (1044, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'pmbMYjgd', '8430800'), + (1044, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'pmbMYjgd', '8430801'), + (1044, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'pmbMYjgd', '8438709'), + (1044, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'pmbMYjgd', '8457738'), + (1044, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'pmbMYjgd', '8459566'), + (1044, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'pmbMYjgd', '8459567'), + (1044, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'pmbMYjgd', '8461032'), + (1044, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'pmbMYjgd', '8477877'), + (1044, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'pmbMYjgd', '8485688'), + (1044, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'pmbMYjgd', '8490587'), + (1044, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'pmbMYjgd', '8493552'), + (1044, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'pmbMYjgd', '8493553'), + (1044, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'pmbMYjgd', '8493554'), + (1044, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'pmbMYjgd', '8493555'), + (1044, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'pmbMYjgd', '8493556'), + (1044, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'pmbMYjgd', '8493557'), + (1044, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'pmbMYjgd', '8493558'), + (1044, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'pmbMYjgd', '8493559'), + (1044, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'pmbMYjgd', '8493560'), + (1044, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'pmbMYjgd', '8493561'), + (1044, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'pmbMYjgd', '8493572'), + (1044, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'pmbMYjgd', '8540725'), + (1044, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'pmbMYjgd', '8555421'), + (1045, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd5j1rN5m', '7074364'), + (1045, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'd5j1rN5m', '7291219'), + (1045, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'd5j1rN5m', '7301638'), + (1045, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd5j1rN5m', '7324073'), + (1045, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd5j1rN5m', '7324074'), + (1045, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd5j1rN5m', '7324075'), + (1045, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd5j1rN5m', '7324078'), + (1045, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd5j1rN5m', '7331457'), + (1045, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'd5j1rN5m', '7335193'), + (1045, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'd5j1rN5m', '7359624'), + (1045, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd5j1rN5m', '7363643'), + (1045, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd5j1rN5m', '7368606'), + (1046, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mb10vYRd', '6337970'), + (1046, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mb10vYRd', '6342044'), + (1046, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mb10vYRd', '6343294'), + (1046, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mb10vYRd', '6347034'), + (1046, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mb10vYRd', '6347056'), + (1046, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mb10vYRd', '6353830'), + (1046, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mb10vYRd', '6353831'), + (1046, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mb10vYRd', '6357867'), + (1046, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mb10vYRd', '6358652'), + (1046, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'mb10vYRd', '6361709'), + (1046, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mb10vYRd', '6361710'), + (1046, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mb10vYRd', '6361711'), + (1046, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mb10vYRd', '6361712'), + (1046, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mb10vYRd', '6361713'), + (1046, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mb10vYRd', '6382573'), + (1046, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mb10vYRd', '6388604'), + (1046, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mb10vYRd', '6394629'), + (1046, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mb10vYRd', '6394631'), + (1046, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mb10vYRd', '6431478'), + (1047, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AYRakkR4', '6337970'), + (1047, 2159, 'attending', '2023-07-22 21:52:03', '2025-12-17 19:46:53', 'AYRakkR4', '6338355'), + (1047, 2160, 'attending', '2023-07-29 16:34:48', '2025-12-17 19:46:54', 'AYRakkR4', '6338358'), + (1047, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AYRakkR4', '6342044'), + (1047, 2172, 'attending', '2023-07-20 02:43:20', '2025-12-17 19:46:53', 'AYRakkR4', '6342591'), + (1047, 2173, 'not_attending', '2023-07-20 00:59:43', '2025-12-17 19:46:53', 'AYRakkR4', '6342769'), + (1047, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AYRakkR4', '6343294'), + (1047, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AYRakkR4', '6347034'), + (1047, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AYRakkR4', '6347056'), + (1047, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AYRakkR4', '6353830'), + (1047, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AYRakkR4', '6353831'), + (1047, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AYRakkR4', '6357867'), + (1048, 245, 'attending', '2020-11-30 18:54:48', '2025-12-17 19:47:54', 'o4Po0QwA', '3149476'), + (1048, 246, 'attending', '2020-12-15 19:26:37', '2025-12-17 19:47:55', 'o4Po0QwA', '3149477'), + (1048, 409, 'attending', '2020-12-07 21:25:21', '2025-12-17 19:47:54', 'o4Po0QwA', '3236467'), + (1048, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'o4Po0QwA', '3285414'), + (1048, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'o4Po0QwA', '3297764'), + (1048, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'o4Po0QwA', '3313856'), + (1048, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'o4Po0QwA', '3314909'), + (1048, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'o4Po0QwA', '3314964'), + (1048, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'o4Po0QwA', '3323365'), + (1048, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'o4Po0QwA', '3324148'), + (1048, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'o4Po0QwA', '3329383'), + (1048, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'o4Po0QwA', '3351539'), + (1048, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'o4Po0QwA', '3386848'), + (1048, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'o4Po0QwA', '3389527'), + (1048, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'o4Po0QwA', '3396499'), + (1048, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'o4Po0QwA', '3403650'), + (1048, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'o4Po0QwA', '3406988'), + (1048, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'o4Po0QwA', '3416576'), + (1048, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'o4Po0QwA', '3418925'), + (1048, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4Po0QwA', '6045684'), + (1049, 255, 'maybe', '2021-03-23 23:10:55', '2025-12-17 19:47:43', 'bdzMMpD4', '3149486'), + (1049, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'bdzMMpD4', '3236465'), + (1049, 641, 'maybe', '2021-04-03 15:37:40', '2025-12-17 19:47:44', 'bdzMMpD4', '3539916'), + (1049, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'bdzMMpD4', '3539918'), + (1049, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'bdzMMpD4', '3539919'), + (1049, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'bdzMMpD4', '3539920'), + (1049, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'bdzMMpD4', '3539921'), + (1049, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'bdzMMpD4', '3539927'), + (1049, 689, 'attending', '2021-03-23 23:11:04', '2025-12-17 19:47:44', 'bdzMMpD4', '3555564'), + (1049, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'bdzMMpD4', '3582734'), + (1049, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdzMMpD4', '3583262'), + (1049, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'bdzMMpD4', '3619523'), + (1049, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdzMMpD4', '3661369'), + (1049, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'bdzMMpD4', '3674262'), + (1049, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdzMMpD4', '3677402'), + (1049, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'bdzMMpD4', '3730212'), + (1049, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'bdzMMpD4', '3793156'), + (1049, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'bdzMMpD4', '3803310'), + (1049, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'bdzMMpD4', '3806392'), + (1049, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzMMpD4', '6045684'), + (1050, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AnaYGVYm', '6361713'), + (1050, 2253, 'not_attending', '2023-09-27 22:18:44', '2025-12-17 19:46:45', 'AnaYGVYm', '6401811'), + (1050, 2264, 'attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'AnaYGVYm', '6431478'), + (1050, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AnaYGVYm', '6440863'), + (1050, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AnaYGVYm', '6445440'), + (1050, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AnaYGVYm', '6453951'), + (1050, 2284, 'maybe', '2023-10-12 14:42:43', '2025-12-17 19:46:46', 'AnaYGVYm', '6460928'), + (1050, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AnaYGVYm', '6461696'), + (1050, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AnaYGVYm', '6462129'), + (1050, 2290, 'not_attending', '2023-10-11 23:48:45', '2025-12-17 19:46:46', 'AnaYGVYm', '6462214'), + (1050, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AnaYGVYm', '6463218'), + (1050, 2296, 'maybe', '2023-10-18 22:32:39', '2025-12-17 19:46:47', 'AnaYGVYm', '6468393'), + (1050, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AnaYGVYm', '6472181'), + (1050, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AnaYGVYm', '6482693'), + (1050, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'AnaYGVYm', '6484200'), + (1050, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'AnaYGVYm', '6484680'), + (1050, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AnaYGVYm', '6507741'), + (1050, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AnaYGVYm', '6514659'), + (1050, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AnaYGVYm', '6514660'), + (1050, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AnaYGVYm', '6519103'), + (1050, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AnaYGVYm', '6535681'), + (1050, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AnaYGVYm', '6584747'), + (1050, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AnaYGVYm', '6587097'), + (1050, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AnaYGVYm', '6609022'), + (1050, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AnaYGVYm', '6632757'), + (1050, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AnaYGVYm', '6644187'), + (1050, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AnaYGVYm', '6648951'), + (1050, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AnaYGVYm', '6648952'), + (1050, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AnaYGVYm', '6655401'), + (1050, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AnaYGVYm', '6661585'), + (1050, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AnaYGVYm', '6661588'), + (1050, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AnaYGVYm', '6661589'), + (1050, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AnaYGVYm', '6699906'), + (1050, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AnaYGVYm', '6701109'), + (1050, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AnaYGVYm', '6705219'), + (1050, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AnaYGVYm', '6710153'), + (1050, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AnaYGVYm', '6711552'), + (1050, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AnaYGVYm', '6711553'), + (1051, 1242, 'attending', '2022-04-30 22:53:32', '2025-12-17 19:47:25', '4PNL6PZm', '5052241'), + (1051, 1348, 'attending', '2022-05-01 18:39:16', '2025-12-17 19:47:28', '4PNL6PZm', '5247605'), + (1051, 1355, 'attending', '2022-04-29 18:10:47', '2025-12-17 19:47:27', '4PNL6PZm', '5252573'), + (1051, 1362, 'not_attending', '2022-04-30 02:25:09', '2025-12-17 19:47:28', '4PNL6PZm', '5260800'), + (1051, 1365, 'attending', '2022-05-01 18:38:26', '2025-12-17 19:47:28', '4PNL6PZm', '5261600'), + (1051, 1367, 'not_attending', '2022-05-01 18:39:01', '2025-12-17 19:47:28', '4PNL6PZm', '5262345'), + (1051, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4PNL6PZm', '5269930'), + (1051, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4PNL6PZm', '5271448'), + (1051, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4PNL6PZm', '5271449'), + (1051, 1383, 'not_attending', '2022-05-04 23:14:02', '2025-12-17 19:47:28', '4PNL6PZm', '5276469'), + (1051, 1384, 'not_attending', '2022-05-08 21:45:44', '2025-12-17 19:47:28', '4PNL6PZm', '5277078'), + (1051, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4PNL6PZm', '5278159'), + (1051, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4PNL6PZm', '5363695'), + (1051, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4PNL6PZm', '5365960'), + (1051, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4PNL6PZm', '5368973'), + (1051, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4PNL6PZm', '5378247'), + (1051, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4PNL6PZm', '5389605'), + (1051, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4PNL6PZm', '5397265'), + (1051, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4PNL6PZm', '5403967'), + (1051, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4PNL6PZm', '5404786'), + (1051, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4PNL6PZm', '5405203'), + (1051, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4PNL6PZm', '5411699'), + (1051, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4PNL6PZm', '5412550'), + (1051, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4PNL6PZm', '5415046'), + (1051, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4PNL6PZm', '5422086'), + (1051, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4PNL6PZm', '5422406'), + (1051, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4PNL6PZm', '5424565'), + (1051, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4PNL6PZm', '5426882'), + (1051, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4PNL6PZm', '5427083'), + (1051, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '4PNL6PZm', '5441125'), + (1051, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4PNL6PZm', '5441126'), + (1051, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4PNL6PZm', '5441128'), + (1051, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4PNL6PZm', '5441131'), + (1051, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4PNL6PZm', '5441132'), + (1051, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4PNL6PZm', '5446643'), + (1051, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4PNL6PZm', '5453325'), + (1051, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4PNL6PZm', '5454516'), + (1051, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4PNL6PZm', '5454605'), + (1051, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4PNL6PZm', '5455037'), + (1051, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4PNL6PZm', '5461278'), + (1051, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4PNL6PZm', '5469480'), + (1051, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4PNL6PZm', '5471073'), + (1051, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4PNL6PZm', '5474663'), + (1051, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4PNL6PZm', '5482022'), + (1051, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4PNL6PZm', '5482793'), + (1051, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4PNL6PZm', '5488912'), + (1051, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4PNL6PZm', '5492192'), + (1051, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4PNL6PZm', '5493139'), + (1051, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4PNL6PZm', '5493200'), + (1051, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4PNL6PZm', '5502188'), + (1051, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4PNL6PZm', '5505059'), + (1051, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4PNL6PZm', '5509055'), + (1051, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4PNL6PZm', '5512862'), + (1051, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4PNL6PZm', '5513985'), + (1051, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '4PNL6PZm', '5519981'), + (1051, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4PNL6PZm', '5522550'), + (1051, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4PNL6PZm', '5534683'), + (1051, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4PNL6PZm', '5546619'), + (1051, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4PNL6PZm', '5555245'), + (1051, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4PNL6PZm', '5557747'), + (1051, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNL6PZm', '6045684'), + (1052, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '8dBNlzvd', '3517816'), + (1052, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8dBNlzvd', '3539927'), + (1052, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8dBNlzvd', '3582734'), + (1052, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dBNlzvd', '6045684'), + (1053, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'nda6Q9am', '3149489'), + (1053, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'nda6Q9am', '3149491'), + (1053, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'nda6Q9am', '3236450'), + (1053, 644, 'maybe', '2021-05-29 15:49:48', '2025-12-17 19:47:46', 'nda6Q9am', '3539919'), + (1053, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'nda6Q9am', '3975311'), + (1053, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'nda6Q9am', '3994992'), + (1053, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'nda6Q9am', '4014338'), + (1053, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nda6Q9am', '6045684'), + (1054, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'AgkYqBrA', '4736497'), + (1054, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'AgkYqBrA', '4736499'), + (1054, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'AgkYqBrA', '4736500'), + (1054, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'AgkYqBrA', '4736503'), + (1054, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'AgkYqBrA', '4736504'), + (1054, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AgkYqBrA', '4746789'), + (1054, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AgkYqBrA', '4753929'), + (1054, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'AgkYqBrA', '5038850'), + (1054, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AgkYqBrA', '5045826'), + (1054, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'AgkYqBrA', '5132533'), + (1054, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AgkYqBrA', '6045684'), + (1055, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dzbaOMbd', '7113468'), + (1055, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dzbaOMbd', '7114856'), + (1055, 2555, 'not_attending', '2024-04-13 21:48:38', '2025-12-17 19:46:34', 'dzbaOMbd', '7114951'), + (1055, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dzbaOMbd', '7114956'), + (1055, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dzbaOMbd', '7114957'), + (1055, 2561, 'attending', '2024-04-01 22:20:07', '2025-12-17 19:46:33', 'dzbaOMbd', '7131267'), + (1055, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dzbaOMbd', '7153615'), + (1055, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dzbaOMbd', '7159484'), + (1055, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzbaOMbd', '7178446'), + (1055, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dzbaOMbd', '7220467'), + (1055, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dzbaOMbd', '7240354'), + (1055, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dzbaOMbd', '7251633'), + (1055, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dzbaOMbd', '7302674'), + (1056, 1114, 'maybe', '2021-11-13 00:51:29', '2025-12-17 19:47:36', 'd9nPZvEm', '4637896'), + (1056, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'd9nPZvEm', '4642994'), + (1056, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'd9nPZvEm', '4642995'), + (1056, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'd9nPZvEm', '4642996'), + (1056, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'd9nPZvEm', '4642997'), + (1056, 1120, 'maybe', '2021-11-14 22:33:17', '2025-12-17 19:47:37', 'd9nPZvEm', '4644021'), + (1056, 1124, 'maybe', '2021-12-07 17:03:13', '2025-12-17 19:47:38', 'd9nPZvEm', '4644025'), + (1056, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd9nPZvEm', '4645687'), + (1056, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd9nPZvEm', '4645698'), + (1056, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd9nPZvEm', '4645704'), + (1056, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd9nPZvEm', '4645705'), + (1056, 1131, 'maybe', '2021-12-18 22:59:27', '2025-12-17 19:47:31', 'd9nPZvEm', '4658825'), + (1056, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'd9nPZvEm', '4668385'), + (1056, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'd9nPZvEm', '4694407'), + (1056, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'd9nPZvEm', '4706262'), + (1056, 1162, 'maybe', '2022-01-03 16:27:59', '2025-12-17 19:47:31', 'd9nPZvEm', '4718771'), + (1056, 1173, 'maybe', '2022-01-03 19:49:35', '2025-12-17 19:47:31', 'd9nPZvEm', '4736495'), + (1056, 1174, 'maybe', '2022-01-11 18:23:08', '2025-12-17 19:47:31', 'd9nPZvEm', '4736496'), + (1056, 1175, 'maybe', '2022-01-16 23:50:40', '2025-12-17 19:47:32', 'd9nPZvEm', '4736497'), + (1056, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd9nPZvEm', '4736499'), + (1056, 1178, 'maybe', '2022-01-26 21:34:27', '2025-12-17 19:47:32', 'd9nPZvEm', '4736500'), + (1056, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd9nPZvEm', '4736503'), + (1056, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd9nPZvEm', '4736504'), + (1056, 1185, 'not_attending', '2022-01-14 14:25:45', '2025-12-17 19:47:31', 'd9nPZvEm', '4746789'), + (1056, 1188, 'maybe', '2022-01-11 18:22:38', '2025-12-17 19:47:32', 'd9nPZvEm', '4753929'), + (1056, 1210, 'not_attending', '2022-01-22 22:53:32', '2025-12-17 19:47:32', 'd9nPZvEm', '4776927'), + (1056, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd9nPZvEm', '5038850'), + (1056, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd9nPZvEm', '5045826'), + (1056, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd9nPZvEm', '5132533'), + (1056, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd9nPZvEm', '5186582'), + (1056, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd9nPZvEm', '5186583'), + (1056, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd9nPZvEm', '5186585'), + (1056, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9nPZvEm', '5190437'), + (1056, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9nPZvEm', '5215989'), + (1056, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9nPZvEm', '6045684'), + (1057, 634, 'attending', '2021-03-30 02:17:50', '2025-12-17 19:47:44', 'ydwwbMjd', '3534718'), + (1057, 635, 'attending', '2021-04-07 23:35:59', '2025-12-17 19:47:44', 'ydwwbMjd', '3534719'), + (1057, 636, 'attending', '2021-04-16 11:31:15', '2025-12-17 19:47:45', 'ydwwbMjd', '3534720'), + (1057, 641, 'attending', '2021-03-31 04:22:11', '2025-12-17 19:47:44', 'ydwwbMjd', '3539916'), + (1057, 642, 'attending', '2021-04-10 15:47:40', '2025-12-17 19:47:44', 'ydwwbMjd', '3539917'), + (1057, 643, 'attending', '2021-04-15 13:14:06', '2025-12-17 19:47:45', 'ydwwbMjd', '3539918'), + (1057, 644, 'attending', '2021-04-18 16:11:05', '2025-12-17 19:47:45', 'ydwwbMjd', '3539919'), + (1057, 645, 'attending', '2021-04-22 14:37:24', '2025-12-17 19:47:46', 'ydwwbMjd', '3539920'), + (1057, 646, 'attending', '2021-05-09 13:59:33', '2025-12-17 19:47:46', 'ydwwbMjd', '3539921'), + (1057, 647, 'attending', '2021-05-17 10:52:14', '2025-12-17 19:47:46', 'ydwwbMjd', '3539922'), + (1057, 648, 'attending', '2021-05-23 02:24:26', '2025-12-17 19:47:47', 'ydwwbMjd', '3539923'), + (1057, 689, 'attending', '2021-03-21 20:23:54', '2025-12-17 19:47:44', 'ydwwbMjd', '3555564'), + (1057, 703, 'not_attending', '2021-04-11 21:43:11', '2025-12-17 19:47:44', 'ydwwbMjd', '3578388'), + (1057, 704, 'attending', '2021-03-31 16:47:58', '2025-12-17 19:47:44', 'ydwwbMjd', '3581429'), + (1057, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ydwwbMjd', '3583262'), + (1057, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydwwbMjd', '3619523'), + (1057, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydwwbMjd', '3661369'), + (1057, 728, 'not_attending', '2021-04-14 22:02:03', '2025-12-17 19:47:44', 'ydwwbMjd', '3668073'), + (1057, 729, 'not_attending', '2021-04-28 14:28:03', '2025-12-17 19:47:46', 'ydwwbMjd', '3668075'), + (1057, 730, 'not_attending', '2021-04-28 14:28:11', '2025-12-17 19:47:46', 'ydwwbMjd', '3668076'), + (1057, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydwwbMjd', '3674262'), + (1057, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydwwbMjd', '3677402'), + (1057, 738, 'attending', '2021-04-22 14:37:42', '2025-12-17 19:47:45', 'ydwwbMjd', '3680615'), + (1057, 739, 'attending', '2021-05-05 02:08:56', '2025-12-17 19:47:46', 'ydwwbMjd', '3680616'), + (1057, 741, 'attending', '2021-05-20 13:58:51', '2025-12-17 19:47:46', 'ydwwbMjd', '3680618'), + (1057, 748, 'attending', '2021-04-07 23:35:41', '2025-12-17 19:47:44', 'ydwwbMjd', '3685353'), + (1057, 752, 'attending', '2021-04-11 15:39:58', '2025-12-17 19:47:44', 'ydwwbMjd', '3699422'), + (1057, 756, 'not_attending', '2021-04-23 01:09:54', '2025-12-17 19:47:46', 'ydwwbMjd', '3704795'), + (1057, 758, 'attending', '2021-04-16 11:31:54', '2025-12-17 19:47:45', 'ydwwbMjd', '3713700'), + (1057, 759, 'attending', '2021-04-16 11:32:14', '2025-12-17 19:47:45', 'ydwwbMjd', '3713701'), + (1057, 761, 'attending', '2021-05-14 13:20:52', '2025-12-17 19:47:46', 'ydwwbMjd', '3716041'), + (1057, 768, 'attending', '2021-04-23 01:09:21', '2025-12-17 19:47:46', 'ydwwbMjd', '3724124'), + (1057, 769, 'attending', '2021-04-23 01:09:27', '2025-12-17 19:47:46', 'ydwwbMjd', '3724127'), + (1057, 770, 'attending', '2021-04-23 01:09:38', '2025-12-17 19:47:46', 'ydwwbMjd', '3724559'), + (1057, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydwwbMjd', '3730212'), + (1057, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydwwbMjd', '3793156'), + (1057, 796, 'attending', '2021-05-10 20:06:48', '2025-12-17 19:47:46', 'ydwwbMjd', '3793862'), + (1057, 797, 'attending', '2021-05-25 20:42:21', '2025-12-17 19:47:47', 'ydwwbMjd', '3796195'), + (1057, 804, 'attending', '2021-05-16 02:53:10', '2025-12-17 19:47:47', 'ydwwbMjd', '3804775'), + (1057, 809, 'attending', '2021-05-16 02:52:06', '2025-12-17 19:47:46', 'ydwwbMjd', '3807964'), + (1057, 815, 'attending', '2021-05-28 11:19:07', '2025-12-17 19:47:47', 'ydwwbMjd', '3818136'), + (1057, 823, 'attending', '2021-06-16 11:47:44', '2025-12-17 19:47:48', 'ydwwbMjd', '3974109'), + (1057, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydwwbMjd', '3975311'), + (1057, 828, 'attending', '2021-06-12 12:07:29', '2025-12-17 19:47:47', 'ydwwbMjd', '3975312'), + (1057, 832, 'not_attending', '2021-05-31 00:06:27', '2025-12-17 19:47:47', 'ydwwbMjd', '3976650'), + (1057, 833, 'attending', '2021-06-07 11:13:25', '2025-12-17 19:47:47', 'ydwwbMjd', '3990438'), + (1057, 838, 'attending', '2021-06-06 21:44:34', '2025-12-17 19:47:47', 'ydwwbMjd', '3994992'), + (1057, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ydwwbMjd', '4014338'), + (1057, 866, 'attending', '2021-06-21 13:07:20', '2025-12-17 19:47:38', 'ydwwbMjd', '4020424'), + (1057, 867, 'attending', '2021-06-25 18:07:04', '2025-12-17 19:47:38', 'ydwwbMjd', '4021848'), + (1057, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ydwwbMjd', '4136744'), + (1057, 870, 'attending', '2021-06-27 14:27:00', '2025-12-17 19:47:38', 'ydwwbMjd', '4136937'), + (1057, 871, 'attending', '2021-07-04 05:51:35', '2025-12-17 19:47:39', 'ydwwbMjd', '4136938'), + (1057, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwwbMjd', '4136947'), + (1057, 879, 'not_attending', '2021-06-26 14:10:07', '2025-12-17 19:47:38', 'ydwwbMjd', '4147806'), + (1057, 884, 'attending', '2021-07-17 05:01:46', '2025-12-17 19:47:42', 'ydwwbMjd', '4210314'), + (1057, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwwbMjd', '4225444'), + (1057, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydwwbMjd', '4239259'), + (1057, 900, 'attending', '2021-07-23 22:14:40', '2025-12-17 19:47:40', 'ydwwbMjd', '4240316'), + (1057, 901, 'attending', '2021-07-25 18:57:42', '2025-12-17 19:47:40', 'ydwwbMjd', '4240317'), + (1057, 902, 'attending', '2021-08-06 01:10:31', '2025-12-17 19:47:41', 'ydwwbMjd', '4240318'), + (1057, 903, 'attending', '2021-08-11 11:14:51', '2025-12-17 19:47:42', 'ydwwbMjd', '4240320'), + (1057, 905, 'attending', '2021-07-06 12:18:25', '2025-12-17 19:47:39', 'ydwwbMjd', '4250163'), + (1057, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ydwwbMjd', '4275957'), + (1057, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydwwbMjd', '4277819'), + (1057, 922, 'attending', '2021-07-14 02:24:58', '2025-12-17 19:47:40', 'ydwwbMjd', '4280811'), + (1057, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydwwbMjd', '4301723'), + (1057, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ydwwbMjd', '4302093'), + (1057, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydwwbMjd', '4304151'), + (1057, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ydwwbMjd', '4356801'), + (1057, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ydwwbMjd', '4366186'), + (1057, 974, 'attending', '2021-08-18 23:35:00', '2025-12-17 19:47:42', 'ydwwbMjd', '4366187'), + (1057, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ydwwbMjd', '4420735'), + (1057, 991, 'attending', '2021-09-08 01:17:22', '2025-12-17 19:47:43', 'ydwwbMjd', '4420738'), + (1057, 992, 'attending', '2021-09-15 23:15:24', '2025-12-17 19:47:33', 'ydwwbMjd', '4420739'), + (1057, 993, 'attending', '2021-09-22 18:59:50', '2025-12-17 19:47:34', 'ydwwbMjd', '4420741'), + (1057, 995, 'attending', '2021-10-04 19:34:14', '2025-12-17 19:47:34', 'ydwwbMjd', '4420744'), + (1057, 996, 'attending', '2021-10-16 02:13:53', '2025-12-17 19:47:35', 'ydwwbMjd', '4420747'), + (1057, 997, 'attending', '2021-10-23 15:27:03', '2025-12-17 19:47:35', 'ydwwbMjd', '4420748'), + (1057, 998, 'attending', '2021-10-26 01:37:02', '2025-12-17 19:47:36', 'ydwwbMjd', '4420749'), + (1057, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ydwwbMjd', '4461883'), + (1057, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ydwwbMjd', '4508342'), + (1057, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ydwwbMjd', '4568602'), + (1057, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ydwwbMjd', '4572153'), + (1057, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ydwwbMjd', '4585962'), + (1057, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ydwwbMjd', '4596356'), + (1057, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ydwwbMjd', '4598860'), + (1057, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ydwwbMjd', '4598861'), + (1057, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ydwwbMjd', '4602797'), + (1057, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ydwwbMjd', '4645687'), + (1057, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ydwwbMjd', '4645698'), + (1057, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ydwwbMjd', '4645704'), + (1057, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ydwwbMjd', '4645705'), + (1057, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ydwwbMjd', '4668385'), + (1057, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ydwwbMjd', '4694407'), + (1057, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'ydwwbMjd', '4706262'), + (1057, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwwbMjd', '6045684'), + (1058, 573, 'maybe', '2021-02-23 20:02:13', '2025-12-17 19:47:50', 'NmLPbEJm', '3435542'), + (1058, 594, 'attending', '2021-02-27 19:41:47', '2025-12-17 19:47:51', 'NmLPbEJm', '3467759'), + (1058, 595, 'not_attending', '2021-03-09 00:13:59', '2025-12-17 19:47:51', 'NmLPbEJm', '3467761'), + (1058, 603, 'maybe', '2021-02-20 23:28:09', '2025-12-17 19:47:50', 'NmLPbEJm', '3470304'), + (1058, 604, 'maybe', '2021-02-27 19:41:22', '2025-12-17 19:47:50', 'NmLPbEJm', '3470305'), + (1058, 610, 'attending', '2021-02-14 03:57:24', '2025-12-17 19:47:50', 'NmLPbEJm', '3482159'), + (1058, 612, 'attending', '2021-02-16 03:54:25', '2025-12-17 19:47:50', 'NmLPbEJm', '3490040'), + (1058, 613, 'maybe', '2021-02-23 20:01:52', '2025-12-17 19:47:50', 'NmLPbEJm', '3490041'), + (1058, 614, 'attending', '2021-03-03 23:29:07', '2025-12-17 19:47:51', 'NmLPbEJm', '3490042'), + (1058, 615, 'attending', '2021-02-18 22:19:57', '2025-12-17 19:47:50', 'NmLPbEJm', '3490045'), + (1058, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'NmLPbEJm', '3517815'), + (1058, 622, 'attending', '2021-03-12 03:22:50', '2025-12-17 19:47:51', 'NmLPbEJm', '3517816'), + (1058, 623, 'attending', '2021-02-27 19:41:17', '2025-12-17 19:47:50', 'NmLPbEJm', '3523941'), + (1058, 628, 'attending', '2021-03-14 04:21:30', '2025-12-17 19:47:51', 'NmLPbEJm', '3533305'), + (1058, 631, 'attending', '2021-03-07 23:51:50', '2025-12-17 19:47:51', 'NmLPbEJm', '3533850'), + (1058, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'NmLPbEJm', '3536632'), + (1058, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'NmLPbEJm', '3536656'), + (1058, 640, 'attending', '2021-03-03 23:29:18', '2025-12-17 19:47:51', 'NmLPbEJm', '3538866'), + (1058, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'NmLPbEJm', '3539916'), + (1058, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'NmLPbEJm', '3539917'), + (1058, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'NmLPbEJm', '3539918'), + (1058, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'NmLPbEJm', '3539919'), + (1058, 645, 'attending', '2021-05-03 17:58:33', '2025-12-17 19:47:46', 'NmLPbEJm', '3539920'), + (1058, 646, 'attending', '2021-05-15 22:32:25', '2025-12-17 19:47:46', 'NmLPbEJm', '3539921'), + (1058, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'NmLPbEJm', '3539922'), + (1058, 648, 'attending', '2021-05-29 21:34:03', '2025-12-17 19:47:47', 'NmLPbEJm', '3539923'), + (1058, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'NmLPbEJm', '3539927'), + (1058, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'NmLPbEJm', '3582734'), + (1058, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLPbEJm', '3583262'), + (1058, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLPbEJm', '3619523'), + (1058, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLPbEJm', '3661369'), + (1058, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLPbEJm', '3674262'), + (1058, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'NmLPbEJm', '3677402'), + (1058, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLPbEJm', '3730212'), + (1058, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLPbEJm', '3793156'), + (1058, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'NmLPbEJm', '3974109'), + (1058, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLPbEJm', '3975311'), + (1058, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'NmLPbEJm', '3975312'), + (1058, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLPbEJm', '3994992'), + (1058, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLPbEJm', '4014338'), + (1058, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'NmLPbEJm', '4021848'), + (1058, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLPbEJm', '4136744'), + (1058, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'NmLPbEJm', '4136937'), + (1058, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'NmLPbEJm', '4136938'), + (1058, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'NmLPbEJm', '4136947'), + (1058, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLPbEJm', '4225444'), + (1058, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLPbEJm', '4239259'), + (1058, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmLPbEJm', '4250163'), + (1058, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLPbEJm', '6045684'), + (1059, 407, 'maybe', '2021-04-15 00:59:10', '2025-12-17 19:47:44', 'xAYxbq9m', '3236465'), + (1059, 643, 'not_attending', '2021-04-16 03:26:51', '2025-12-17 19:47:45', 'xAYxbq9m', '3539918'), + (1059, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'xAYxbq9m', '3539919'), + (1059, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'xAYxbq9m', '3539920'), + (1059, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'xAYxbq9m', '3539921'), + (1059, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xAYxbq9m', '3539922'), + (1059, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'xAYxbq9m', '3539923'), + (1059, 706, 'maybe', '2021-04-16 02:03:02', '2025-12-17 19:47:45', 'xAYxbq9m', '3582734'), + (1059, 707, 'not_attending', '2021-04-19 21:57:13', '2025-12-17 19:47:46', 'xAYxbq9m', '3583262'), + (1059, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'xAYxbq9m', '3730212'), + (1059, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'xAYxbq9m', '3793156'), + (1059, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xAYxbq9m', '3975311'), + (1059, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xAYxbq9m', '3994992'), + (1059, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYxbq9m', '6045684'), + (1060, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRlpDQ4', '6045684'), + (1061, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4ooDMYw4', '5880940'), + (1061, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4ooDMYw4', '5880942'), + (1061, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4ooDMYw4', '5880943'), + (1061, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4ooDMYw4', '5900199'), + (1061, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4ooDMYw4', '5900200'), + (1061, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4ooDMYw4', '5900202'), + (1061, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4ooDMYw4', '5900203'), + (1061, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4ooDMYw4', '5909655'), + (1061, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4ooDMYw4', '5910522'), + (1061, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4ooDMYw4', '5910526'), + (1061, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4ooDMYw4', '5910528'), + (1061, 1920, 'attending', '2023-02-10 03:08:00', '2025-12-17 19:47:07', '4ooDMYw4', '5914091'), + (1061, 1921, 'attending', '2023-02-14 05:48:02', '2025-12-17 19:47:08', '4ooDMYw4', '5914092'), + (1061, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4ooDMYw4', '5916219'), + (1061, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4ooDMYw4', '5936234'), + (1061, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '4ooDMYw4', '5936691'), + (1061, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4ooDMYw4', '5958351'), + (1061, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4ooDMYw4', '5959751'), + (1061, 1939, 'attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4ooDMYw4', '5959755'), + (1061, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4ooDMYw4', '5960055'), + (1061, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4ooDMYw4', '5961684'), + (1061, 1943, 'attending', '2023-03-07 11:58:53', '2025-12-17 19:47:10', '4ooDMYw4', '5962091'), + (1061, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4ooDMYw4', '5962132'), + (1061, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4ooDMYw4', '5962133'), + (1061, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4ooDMYw4', '5962134'), + (1061, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4ooDMYw4', '5962317'), + (1061, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4ooDMYw4', '5962318'), + (1061, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4ooDMYw4', '5965933'), + (1061, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4ooDMYw4', '5967014'), + (1061, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4ooDMYw4', '5972815'), + (1061, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4ooDMYw4', '5974016'), + (1061, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4ooDMYw4', '5981515'), + (1061, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4ooDMYw4', '5993516'), + (1061, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4ooDMYw4', '5998939'), + (1061, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4ooDMYw4', '6028191'), + (1061, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4ooDMYw4', '6040066'), + (1061, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4ooDMYw4', '6042717'), + (1061, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ooDMYw4', '6045684'), + (1062, 646, 'not_attending', '2021-05-12 19:39:44', '2025-12-17 19:47:46', '1ArL9Wwd', '3539921'), + (1062, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '1ArL9Wwd', '3539922'), + (1062, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '1ArL9Wwd', '3539923'), + (1062, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '1ArL9Wwd', '3974109'), + (1062, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '1ArL9Wwd', '3975311'), + (1062, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '1ArL9Wwd', '3975312'), + (1062, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '1ArL9Wwd', '3994992'), + (1062, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '1ArL9Wwd', '4014338'), + (1062, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '1ArL9Wwd', '4021848'), + (1062, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '1ArL9Wwd', '4136744'), + (1062, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '1ArL9Wwd', '4136937'), + (1062, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '1ArL9Wwd', '4136938'), + (1062, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '1ArL9Wwd', '4136947'), + (1062, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '1ArL9Wwd', '4210314'), + (1062, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '1ArL9Wwd', '4225444'), + (1062, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '1ArL9Wwd', '4239259'), + (1062, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '1ArL9Wwd', '4240316'), + (1062, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '1ArL9Wwd', '4240317'), + (1062, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '1ArL9Wwd', '4240318'), + (1062, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '1ArL9Wwd', '4240320'), + (1062, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '1ArL9Wwd', '4250163'), + (1062, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '1ArL9Wwd', '4275957'), + (1062, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '1ArL9Wwd', '4277819'), + (1062, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '1ArL9Wwd', '4301723'), + (1062, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '1ArL9Wwd', '4302093'), + (1062, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '1ArL9Wwd', '4304151'), + (1062, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '1ArL9Wwd', '4356801'), + (1062, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '1ArL9Wwd', '4366186'), + (1062, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '1ArL9Wwd', '4366187'), + (1062, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '1ArL9Wwd', '4420735'), + (1062, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '1ArL9Wwd', '4420738'), + (1062, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '1ArL9Wwd', '4420739'), + (1062, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '1ArL9Wwd', '4420741'), + (1062, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '1ArL9Wwd', '4420744'), + (1062, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '1ArL9Wwd', '4420747'), + (1062, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '1ArL9Wwd', '4420748'), + (1062, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '1ArL9Wwd', '4420749'), + (1062, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '1ArL9Wwd', '4461883'), + (1062, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '1ArL9Wwd', '4508342'), + (1062, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '1ArL9Wwd', '4568602'), + (1062, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '1ArL9Wwd', '4572153'), + (1062, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '1ArL9Wwd', '4585962'), + (1062, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '1ArL9Wwd', '4596356'), + (1062, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '1ArL9Wwd', '4598860'), + (1062, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '1ArL9Wwd', '4598861'), + (1062, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '1ArL9Wwd', '4602797'), + (1062, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '1ArL9Wwd', '4637896'), + (1062, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '1ArL9Wwd', '4642994'), + (1062, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '1ArL9Wwd', '4642995'), + (1062, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '1ArL9Wwd', '4642996'), + (1062, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '1ArL9Wwd', '4642997'), + (1062, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '1ArL9Wwd', '4645687'), + (1062, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '1ArL9Wwd', '4645698'), + (1062, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '1ArL9Wwd', '4645704'), + (1062, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '1ArL9Wwd', '4645705'), + (1062, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '1ArL9Wwd', '4668385'), + (1062, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '1ArL9Wwd', '4694407'), + (1062, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '1ArL9Wwd', '4706262'), + (1062, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '1ArL9Wwd', '4736497'), + (1062, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '1ArL9Wwd', '4736499'), + (1062, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '1ArL9Wwd', '4736500'), + (1062, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '1ArL9Wwd', '4736503'), + (1062, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '1ArL9Wwd', '4736504'), + (1062, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '1ArL9Wwd', '4746789'), + (1062, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '1ArL9Wwd', '4753929'), + (1062, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '1ArL9Wwd', '5038850'), + (1062, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '1ArL9Wwd', '5045826'), + (1062, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '1ArL9Wwd', '5132533'), + (1062, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '1ArL9Wwd', '5186582'), + (1062, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '1ArL9Wwd', '5186583'), + (1062, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '1ArL9Wwd', '5186585'), + (1062, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '1ArL9Wwd', '5190437'), + (1062, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '1ArL9Wwd', '5215989'), + (1062, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArL9Wwd', '6045684'), + (1063, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'lAe1EMWA', '3470305'), + (1063, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'lAe1EMWA', '3470991'), + (1063, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'lAe1EMWA', '3517815'), + (1063, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'lAe1EMWA', '3523941'), + (1063, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'lAe1EMWA', '3533850'), + (1063, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'lAe1EMWA', '3536632'), + (1063, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'lAe1EMWA', '3536656'), + (1063, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'lAe1EMWA', '3539916'), + (1063, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'lAe1EMWA', '3539917'), + (1063, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'lAe1EMWA', '3539918'), + (1063, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'lAe1EMWA', '3539919'), + (1063, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'lAe1EMWA', '3539920'), + (1063, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'lAe1EMWA', '3539921'), + (1063, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'lAe1EMWA', '3539922'), + (1063, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'lAe1EMWA', '3539923'), + (1063, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAe1EMWA', '6045684'), + (1064, 258, 'attending', '2021-06-01 03:51:14', '2025-12-17 19:47:47', 'N4ErGrDd', '3149489'), + (1064, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'N4ErGrDd', '3974109'), + (1064, 824, 'attending', '2021-06-03 22:06:56', '2025-12-17 19:47:47', 'N4ErGrDd', '3974112'), + (1064, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'N4ErGrDd', '3975311'), + (1064, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'N4ErGrDd', '3975312'), + (1064, 830, 'attending', '2021-06-03 22:06:52', '2025-12-17 19:47:47', 'N4ErGrDd', '3976648'), + (1064, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'N4ErGrDd', '3994992'), + (1064, 841, 'attending', '2021-06-14 20:00:37', '2025-12-17 19:47:48', 'N4ErGrDd', '4007434'), + (1064, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'N4ErGrDd', '4014338'), + (1064, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'N4ErGrDd', '4136744'), + (1064, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'N4ErGrDd', '4136947'), + (1064, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4ErGrDd', '6045684'), + (1065, 1355, 'attending', '2022-04-29 04:45:27', '2025-12-17 19:47:27', 'mR6vj3Pm', '5252573'), + (1065, 1362, 'attending', '2022-04-27 21:46:16', '2025-12-17 19:47:28', 'mR6vj3Pm', '5260800'), + (1065, 1374, 'not_attending', '2022-05-07 20:14:49', '2025-12-17 19:47:28', 'mR6vj3Pm', '5269930'), + (1065, 1378, 'not_attending', '2022-05-14 22:13:38', '2025-12-17 19:47:29', 'mR6vj3Pm', '5271448'), + (1065, 1379, 'maybe', '2022-05-06 21:07:29', '2025-12-17 19:47:30', 'mR6vj3Pm', '5271449'), + (1065, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mR6vj3Pm', '5276469'), + (1065, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mR6vj3Pm', '5278159'), + (1065, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mR6vj3Pm', '5363695'), + (1065, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mR6vj3Pm', '5365960'), + (1065, 1415, 'maybe', '2022-05-19 18:57:59', '2025-12-17 19:47:30', 'mR6vj3Pm', '5368973'), + (1065, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mR6vj3Pm', '5378247'), + (1065, 1431, 'attending', '2022-06-09 18:17:27', '2025-12-17 19:47:30', 'mR6vj3Pm', '5389605'), + (1065, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mR6vj3Pm', '5397265'), + (1065, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mR6vj3Pm', '5403967'), + (1065, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mR6vj3Pm', '5404786'), + (1065, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mR6vj3Pm', '5405203'), + (1065, 1470, 'maybe', '2022-06-13 00:07:44', '2025-12-17 19:47:17', 'mR6vj3Pm', '5407053'), + (1065, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mR6vj3Pm', '5408794'), + (1065, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR6vj3Pm', '6045684'), + (1066, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '0mqwqKX4', '3236465'), + (1066, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '0mqwqKX4', '3539916'), + (1066, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '0mqwqKX4', '3539918'), + (1066, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '0mqwqKX4', '3539919'), + (1066, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '0mqwqKX4', '3539920'), + (1066, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '0mqwqKX4', '3539921'), + (1066, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '0mqwqKX4', '3539927'), + (1066, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '0mqwqKX4', '3582734'), + (1066, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '0mqwqKX4', '3583262'), + (1066, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '0mqwqKX4', '3619523'), + (1066, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '0mqwqKX4', '3661369'), + (1066, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '0mqwqKX4', '3674262'), + (1066, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '0mqwqKX4', '3677402'), + (1066, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '0mqwqKX4', '3730212'), + (1066, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '0mqwqKX4', '3793156'), + (1066, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '0mqwqKX4', '3803310'), + (1066, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '0mqwqKX4', '3806392'), + (1066, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqwqKX4', '6045684'), + (1067, 2518, 'not_attending', '2024-07-23 00:48:29', '2025-12-17 19:46:30', 'GAneN0Jm', '7074358'), + (1067, 2521, 'maybe', '2024-06-16 19:43:36', '2025-12-17 19:46:29', 'GAneN0Jm', '7074361'), + (1067, 2522, 'maybe', '2024-07-14 14:18:27', '2025-12-17 19:46:30', 'GAneN0Jm', '7074362'), + (1067, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAneN0Jm', '7074364'), + (1067, 2525, 'maybe', '2024-06-12 02:38:29', '2025-12-17 19:46:28', 'GAneN0Jm', '7074365'), + (1067, 2526, 'maybe', '2024-07-30 17:45:25', '2025-12-17 19:46:31', 'GAneN0Jm', '7074366'), + (1067, 2527, 'maybe', '2024-06-24 14:40:05', '2025-12-17 19:46:29', 'GAneN0Jm', '7074367'), + (1067, 2528, 'not_attending', '2024-08-06 02:07:41', '2025-12-17 19:46:31', 'GAneN0Jm', '7074368'), + (1067, 2530, 'not_attending', '2024-08-13 02:47:49', '2025-12-17 19:46:31', 'GAneN0Jm', '7074373'), + (1067, 2531, 'not_attending', '2024-08-28 01:17:34', '2025-12-17 19:46:32', 'GAneN0Jm', '7074378'), + (1067, 2532, 'not_attending', '2024-08-31 21:59:35', '2025-12-17 19:46:32', 'GAneN0Jm', '7074383'), + (1067, 2533, 'not_attending', '2024-08-18 15:53:57', '2025-12-17 19:46:32', 'GAneN0Jm', '7074384'), + (1067, 2629, 'maybe', '2024-06-08 18:08:04', '2025-12-17 19:46:28', 'GAneN0Jm', '7264726'), + (1067, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'GAneN0Jm', '7291219'), + (1067, 2661, 'maybe', '2024-06-13 02:26:08', '2025-12-17 19:46:28', 'GAneN0Jm', '7302674'), + (1067, 2671, 'maybe', '2024-06-09 21:35:16', '2025-12-17 19:46:28', 'GAneN0Jm', '7318256'), + (1067, 2673, 'attending', '2024-06-09 22:31:37', '2025-12-17 19:46:28', 'GAneN0Jm', '7319473'), + (1067, 2675, 'maybe', '2024-07-30 03:24:49', '2025-12-17 19:46:31', 'GAneN0Jm', '7319481'), + (1067, 2677, 'maybe', '2024-10-06 12:41:22', '2025-12-17 19:46:26', 'GAneN0Jm', '7319483'), + (1067, 2678, 'attending', '2024-06-15 11:45:44', '2025-12-17 19:46:28', 'GAneN0Jm', '7319489'), + (1067, 2679, 'attending', '2024-06-12 02:38:21', '2025-12-17 19:46:29', 'GAneN0Jm', '7319490'), + (1067, 2682, 'attending', '2024-06-10 15:01:15', '2025-12-17 19:46:28', 'GAneN0Jm', '7321862'), + (1067, 2683, 'attending', '2024-06-12 02:38:41', '2025-12-17 19:46:28', 'GAneN0Jm', '7321978'), + (1067, 2688, 'attending', '2024-06-22 21:48:22', '2025-12-17 19:46:29', 'GAneN0Jm', '7324073'), + (1067, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAneN0Jm', '7324074'), + (1067, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAneN0Jm', '7324075'), + (1067, 2691, 'attending', '2024-07-14 23:43:37', '2025-12-17 19:46:30', 'GAneN0Jm', '7324076'), + (1067, 2692, 'attending', '2024-07-14 23:43:52', '2025-12-17 19:46:30', 'GAneN0Jm', '7324077'), + (1067, 2693, 'attending', '2024-07-29 16:22:26', '2025-12-17 19:46:31', 'GAneN0Jm', '7324078'), + (1067, 2694, 'attending', '2024-08-06 23:13:30', '2025-12-17 19:46:31', 'GAneN0Jm', '7324079'), + (1067, 2695, 'attending', '2024-08-13 02:48:02', '2025-12-17 19:46:31', 'GAneN0Jm', '7324080'), + (1067, 2696, 'attending', '2024-08-19 15:41:30', '2025-12-17 19:46:32', 'GAneN0Jm', '7324081'), + (1067, 2697, 'not_attending', '2024-08-28 01:17:48', '2025-12-17 19:46:32', 'GAneN0Jm', '7324082'), + (1067, 2698, 'maybe', '2024-08-31 21:59:51', '2025-12-17 19:46:24', 'GAneN0Jm', '7324083'), + (1067, 2700, 'maybe', '2024-06-14 18:55:52', '2025-12-17 19:46:28', 'GAneN0Jm', '7324388'), + (1067, 2705, 'maybe', '2024-06-29 17:24:01', '2025-12-17 19:46:29', 'GAneN0Jm', '7324944'), + (1067, 2708, 'attending', '2024-06-14 23:07:26', '2025-12-17 19:46:28', 'GAneN0Jm', '7325048'), + (1067, 2711, 'maybe', '2024-07-19 16:34:35', '2025-12-17 19:46:30', 'GAneN0Jm', '7326524'), + (1067, 2712, 'maybe', '2024-08-01 19:55:35', '2025-12-17 19:46:31', 'GAneN0Jm', '7326525'), + (1067, 2720, 'maybe', '2024-06-18 20:56:46', '2025-12-17 19:46:28', 'GAneN0Jm', '7331436'), + (1067, 2721, 'maybe', '2024-06-19 16:30:16', '2025-12-17 19:46:29', 'GAneN0Jm', '7331456'), + (1067, 2722, 'maybe', '2024-07-05 21:07:28', '2025-12-17 19:46:29', 'GAneN0Jm', '7331457'), + (1067, 2724, 'maybe', '2024-06-26 22:18:14', '2025-12-17 19:46:29', 'GAneN0Jm', '7332562'), + (1067, 2729, 'maybe', '2024-06-21 21:28:22', '2025-12-17 19:46:29', 'GAneN0Jm', '7335092'), + (1067, 2733, 'maybe', '2024-06-26 02:57:59', '2025-12-17 19:46:29', 'GAneN0Jm', '7338853'), + (1067, 2741, 'maybe', '2024-06-30 23:33:56', '2025-12-17 19:46:30', 'GAneN0Jm', '7344592'), + (1067, 2743, 'maybe', '2024-07-05 18:01:50', '2025-12-17 19:46:29', 'GAneN0Jm', '7345688'), + (1067, 2745, 'maybe', '2024-07-23 00:48:51', '2025-12-17 19:46:30', 'GAneN0Jm', '7348712'), + (1067, 2747, 'maybe', '2024-07-14 23:43:19', '2025-12-17 19:46:30', 'GAneN0Jm', '7353587'), + (1067, 2753, 'maybe', '2024-07-08 23:41:42', '2025-12-17 19:46:30', 'GAneN0Jm', '7355538'), + (1067, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'GAneN0Jm', '7356752'), + (1067, 2755, 'attending', '2024-07-10 20:41:35', '2025-12-17 19:46:29', 'GAneN0Jm', '7357808'), + (1067, 2766, 'maybe', '2024-07-22 22:18:10', '2025-12-17 19:46:30', 'GAneN0Jm', '7363643'), + (1067, 2767, 'maybe', '2024-07-21 19:59:26', '2025-12-17 19:46:30', 'GAneN0Jm', '7364726'), + (1067, 2772, 'not_attending', '2024-07-23 20:15:14', '2025-12-17 19:46:30', 'GAneN0Jm', '7368267'), + (1067, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAneN0Jm', '7368606'), + (1067, 2785, 'maybe', '2024-07-30 15:45:03', '2025-12-17 19:46:31', 'GAneN0Jm', '7380988'), + (1067, 2787, 'not_attending', '2024-08-03 13:57:02', '2025-12-17 19:46:32', 'GAneN0Jm', '7381568'), + (1067, 2792, 'not_attending', '2024-08-08 14:15:15', '2025-12-17 19:46:31', 'GAneN0Jm', '7390763'), + (1067, 2800, 'not_attending', '2024-08-13 02:47:56', '2025-12-17 19:46:31', 'GAneN0Jm', '7397405'), + (1067, 2801, 'maybe', '2024-08-18 15:54:47', '2025-12-17 19:46:32', 'GAneN0Jm', '7397462'), + (1067, 2803, 'not_attending', '2024-08-14 12:52:16', '2025-12-17 19:46:32', 'GAneN0Jm', '7397869'), + (1067, 2806, 'maybe', '2024-09-15 21:24:43', '2025-12-17 19:46:25', 'GAneN0Jm', '7404888'), + (1067, 2808, 'maybe', '2024-08-28 20:26:44', '2025-12-17 19:46:32', 'GAneN0Jm', '7412860'), + (1067, 2811, 'not_attending', '2024-08-31 19:34:41', '2025-12-17 19:46:32', 'GAneN0Jm', '7418895'), + (1067, 2814, 'attending', '2024-09-06 23:53:54', '2025-12-17 19:46:24', 'GAneN0Jm', '7424267'), + (1067, 2816, 'maybe', '2024-09-17 02:56:43', '2025-12-17 19:46:25', 'GAneN0Jm', '7424269'), + (1067, 2817, 'maybe', '2024-09-29 01:52:07', '2025-12-17 19:46:25', 'GAneN0Jm', '7424270'), + (1067, 2818, 'attending', '2024-10-07 20:50:37', '2025-12-17 19:46:26', 'GAneN0Jm', '7424272'), + (1067, 2821, 'not_attending', '2024-10-07 20:50:26', '2025-12-17 19:46:26', 'GAneN0Jm', '7424275'), + (1067, 2822, 'maybe', '2024-11-09 21:46:02', '2025-12-17 19:46:26', 'GAneN0Jm', '7424276'), + (1067, 2824, 'maybe', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAneN0Jm', '7432751'), + (1067, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAneN0Jm', '7432752'), + (1067, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAneN0Jm', '7432753'), + (1067, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAneN0Jm', '7432754'), + (1067, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAneN0Jm', '7432755'), + (1067, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAneN0Jm', '7432756'), + (1067, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAneN0Jm', '7432758'), + (1067, 2831, 'maybe', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAneN0Jm', '7432759'), + (1067, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAneN0Jm', '7433834'), + (1067, 2834, 'not_attending', '2024-09-11 22:00:40', '2025-12-17 19:46:25', 'GAneN0Jm', '7433852'), + (1067, 2835, 'maybe', '2024-09-11 22:00:33', '2025-12-17 19:46:24', 'GAneN0Jm', '7437354'), + (1067, 2836, 'maybe', '2024-09-13 21:02:29', '2025-12-17 19:46:25', 'GAneN0Jm', '7438708'), + (1067, 2837, 'maybe', '2024-09-12 18:57:43', '2025-12-17 19:46:25', 'GAneN0Jm', '7438711'), + (1067, 2838, 'maybe', '2024-09-24 10:12:27', '2025-12-17 19:46:25', 'GAneN0Jm', '7439182'), + (1067, 2839, 'maybe', '2024-09-25 00:42:54', '2025-12-17 19:46:25', 'GAneN0Jm', '7439262'), + (1067, 2840, 'maybe', '2024-09-15 21:24:36', '2025-12-17 19:46:25', 'GAneN0Jm', '7444429'), + (1067, 2843, 'not_attending', '2024-09-26 20:12:33', '2025-12-17 19:46:25', 'GAneN0Jm', '7450219'), + (1067, 2850, 'not_attending', '2024-10-01 20:45:06', '2025-12-17 19:46:25', 'GAneN0Jm', '7457153'), + (1067, 2854, 'maybe', '2024-10-03 00:23:09', '2025-12-17 19:46:26', 'GAneN0Jm', '7465684'), + (1067, 2856, 'not_attending', '2024-10-10 23:02:17', '2025-12-17 19:46:26', 'GAneN0Jm', '7469386'), + (1067, 2857, 'maybe', '2024-10-18 22:57:07', '2025-12-17 19:46:26', 'GAneN0Jm', '7469387'), + (1067, 2858, 'maybe', '2024-10-17 00:52:01', '2025-12-17 19:46:26', 'GAneN0Jm', '7469388'), + (1067, 2859, 'not_attending', '2024-10-29 21:41:46', '2025-12-17 19:46:26', 'GAneN0Jm', '7469389'), + (1067, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'GAneN0Jm', '7470197'), + (1067, 2865, 'maybe', '2024-10-29 21:41:55', '2025-12-17 19:46:26', 'GAneN0Jm', '7471200'), + (1067, 2868, 'not_attending', '2024-10-07 21:55:58', '2025-12-17 19:46:26', 'GAneN0Jm', '7474506'), + (1067, 2874, 'not_attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'GAneN0Jm', '7482239'), + (1067, 2876, 'not_attending', '2024-10-08 17:12:14', '2025-12-17 19:46:26', 'GAneN0Jm', '7490980'), + (1067, 2883, 'maybe', '2024-10-20 22:01:19', '2025-12-17 19:46:26', 'GAneN0Jm', '7649157'), + (1067, 2885, 'maybe', '2024-10-17 13:05:27', '2025-12-17 19:46:26', 'GAneN0Jm', '7649944'), + (1067, 2888, 'not_attending', '2024-10-20 22:01:09', '2025-12-17 19:46:26', 'GAneN0Jm', '7654822'), + (1067, 2892, 'not_attending', '2024-10-29 21:41:37', '2025-12-17 19:46:26', 'GAneN0Jm', '7672064'), + (1067, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'GAneN0Jm', '7685613'), + (1067, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAneN0Jm', '7688194'), + (1067, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAneN0Jm', '7688196'), + (1067, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAneN0Jm', '7688289'), + (1067, 2909, 'maybe', '2024-11-11 23:05:12', '2025-12-17 19:46:27', 'GAneN0Jm', '7689771'), + (1067, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAneN0Jm', '7692763'), + (1067, 2913, 'maybe', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAneN0Jm', '7697552'), + (1067, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAneN0Jm', '7699878'), + (1067, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GAneN0Jm', '7712467'), + (1067, 2926, 'maybe', '2024-12-06 23:50:51', '2025-12-17 19:46:21', 'GAneN0Jm', '7713585'), + (1067, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAneN0Jm', '7713586'), + (1067, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAneN0Jm', '7738518'), + (1067, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAneN0Jm', '7750636'), + (1067, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAneN0Jm', '7796540'), + (1067, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAneN0Jm', '7796541'), + (1067, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAneN0Jm', '7796542'), + (1067, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAneN0Jm', '7825913'), + (1067, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GAneN0Jm', '7826209'), + (1067, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAneN0Jm', '7834742'), + (1067, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GAneN0Jm', '7842108'), + (1067, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAneN0Jm', '7842902'), + (1067, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAneN0Jm', '7842903'), + (1067, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAneN0Jm', '7842904'), + (1067, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAneN0Jm', '7842905'), + (1067, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAneN0Jm', '7855719'), + (1067, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAneN0Jm', '7860683'), + (1067, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAneN0Jm', '7860684'), + (1067, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAneN0Jm', '7866095'), + (1067, 3013, 'maybe', '2025-03-05 23:22:47', '2025-12-17 19:46:18', 'GAneN0Jm', '7869170'), + (1067, 3017, 'not_attending', '2025-03-19 18:26:30', '2025-12-17 19:46:19', 'GAneN0Jm', '7869188'), + (1067, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAneN0Jm', '7869201'), + (1067, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAneN0Jm', '7877465'), + (1067, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAneN0Jm', '7888250'), + (1067, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GAneN0Jm', '7904777'), + (1067, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAneN0Jm', '8349164'), + (1067, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAneN0Jm', '8349545'), + (1067, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GAneN0Jm', '8368028'), + (1067, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GAneN0Jm', '8368029'), + (1067, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAneN0Jm', '8388462'), + (1067, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GAneN0Jm', '8400273'), + (1067, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GAneN0Jm', '8400275'), + (1067, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'GAneN0Jm', '8400276'), + (1067, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GAneN0Jm', '8404977'), + (1067, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GAneN0Jm', '8430783'), + (1067, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GAneN0Jm', '8430784'), + (1067, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GAneN0Jm', '8430799'), + (1067, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GAneN0Jm', '8430800'), + (1067, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GAneN0Jm', '8430801'), + (1067, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GAneN0Jm', '8438709'), + (1067, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAneN0Jm', '8457738'), + (1067, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GAneN0Jm', '8459566'), + (1067, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GAneN0Jm', '8459567'), + (1067, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GAneN0Jm', '8461032'), + (1067, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAneN0Jm', '8477877'), + (1067, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAneN0Jm', '8485688'), + (1067, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAneN0Jm', '8490587'), + (1067, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAneN0Jm', '8493552'), + (1067, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAneN0Jm', '8493553'), + (1067, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAneN0Jm', '8493554'), + (1067, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAneN0Jm', '8493555'), + (1067, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAneN0Jm', '8493556'), + (1067, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAneN0Jm', '8493557'), + (1067, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAneN0Jm', '8493558'), + (1067, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAneN0Jm', '8493559'), + (1067, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAneN0Jm', '8493560'), + (1067, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GAneN0Jm', '8493561'), + (1067, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAneN0Jm', '8493572'), + (1067, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAneN0Jm', '8540725'), + (1067, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAneN0Jm', '8555421'), + (1068, 926, 'attending', '2021-08-18 19:12:09', '2025-12-17 19:47:42', 'NmLGzPJd', '4297211'), + (1068, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLGzPJd', '4356801'), + (1068, 973, 'attending', '2021-08-16 05:20:51', '2025-12-17 19:47:42', 'NmLGzPJd', '4366186'), + (1068, 974, 'maybe', '2021-08-28 11:22:36', '2025-12-17 19:47:43', 'NmLGzPJd', '4366187'), + (1068, 975, 'attending', '2021-08-16 04:47:52', '2025-12-17 19:47:42', 'NmLGzPJd', '4367341'), + (1068, 978, 'attending', '2021-08-21 22:02:13', '2025-12-17 19:47:42', 'NmLGzPJd', '4378509'), + (1068, 985, 'attending', '2021-08-21 02:33:16', '2025-12-17 19:47:42', 'NmLGzPJd', '4391748'), + (1068, 988, 'maybe', '2021-08-24 02:44:24', '2025-12-17 19:47:42', 'NmLGzPJd', '4402823'), + (1068, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'NmLGzPJd', '4420735'), + (1068, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'NmLGzPJd', '4420738'), + (1068, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'NmLGzPJd', '4420739'), + (1068, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'NmLGzPJd', '4420741'), + (1068, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'NmLGzPJd', '4420744'), + (1068, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'NmLGzPJd', '4420747'), + (1068, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'NmLGzPJd', '4420748'), + (1068, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'NmLGzPJd', '4420749'), + (1068, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'NmLGzPJd', '4461883'), + (1068, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLGzPJd', '4508342'), + (1068, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLGzPJd', '4568602'), + (1068, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLGzPJd', '4572153'), + (1068, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'NmLGzPJd', '4585962'), + (1068, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'NmLGzPJd', '4596356'), + (1068, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLGzPJd', '4598860'), + (1068, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLGzPJd', '4598861'), + (1068, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmLGzPJd', '4602797'), + (1068, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmLGzPJd', '4637896'), + (1068, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLGzPJd', '4642994'), + (1068, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'NmLGzPJd', '4642995'), + (1068, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLGzPJd', '4642996'), + (1068, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLGzPJd', '4642997'), + (1068, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmLGzPJd', '4645687'), + (1068, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmLGzPJd', '4645698'), + (1068, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLGzPJd', '4645704'), + (1068, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLGzPJd', '4645705'), + (1068, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLGzPJd', '4668385'), + (1068, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLGzPJd', '4694407'), + (1068, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmLGzPJd', '4736497'), + (1068, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'NmLGzPJd', '4736499'), + (1068, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmLGzPJd', '4736500'), + (1068, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'NmLGzPJd', '4736503'), + (1068, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'NmLGzPJd', '4736504'), + (1068, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLGzPJd', '4746789'), + (1068, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmLGzPJd', '4753929'), + (1068, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmLGzPJd', '5038850'), + (1068, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmLGzPJd', '5045826'), + (1068, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLGzPJd', '5132533'), + (1068, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'NmLGzPJd', '5186582'), + (1068, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'NmLGzPJd', '5186583'), + (1068, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'NmLGzPJd', '5186585'), + (1068, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'NmLGzPJd', '5190437'), + (1068, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'NmLGzPJd', '5195095'), + (1068, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmLGzPJd', '5215989'), + (1068, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLGzPJd', '5223686'), + (1068, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLGzPJd', '5227432'), + (1068, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'NmLGzPJd', '5247467'), + (1068, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'NmLGzPJd', '5260800'), + (1068, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'NmLGzPJd', '5269930'), + (1068, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'NmLGzPJd', '5271448'), + (1068, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'NmLGzPJd', '5271449'), + (1068, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmLGzPJd', '5276469'), + (1068, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmLGzPJd', '5278159'), + (1068, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'NmLGzPJd', '5363695'), + (1068, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLGzPJd', '5365960'), + (1068, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmLGzPJd', '5368973'), + (1068, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'NmLGzPJd', '5378247'), + (1068, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'NmLGzPJd', '5389605'), + (1068, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'NmLGzPJd', '5397265'), + (1068, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmLGzPJd', '5403967'), + (1068, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLGzPJd', '5404786'), + (1068, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmLGzPJd', '5405203'), + (1068, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'NmLGzPJd', '5408794'), + (1068, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLGzPJd', '5411699'), + (1068, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'NmLGzPJd', '5412550'), + (1068, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmLGzPJd', '5415046'), + (1068, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'NmLGzPJd', '5422086'), + (1068, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'NmLGzPJd', '5422406'), + (1068, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLGzPJd', '5424565'), + (1068, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLGzPJd', '5426882'), + (1068, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmLGzPJd', '5427083'), + (1068, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLGzPJd', '5441125'), + (1068, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmLGzPJd', '5441126'), + (1068, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmLGzPJd', '5441128'), + (1068, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'NmLGzPJd', '5441131'), + (1068, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLGzPJd', '5441132'), + (1068, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLGzPJd', '5446643'), + (1068, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLGzPJd', '5453325'), + (1068, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLGzPJd', '5454516'), + (1068, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLGzPJd', '5454605'), + (1068, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLGzPJd', '5455037'), + (1068, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLGzPJd', '5461278'), + (1068, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLGzPJd', '5469480'), + (1068, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLGzPJd', '5471073'), + (1068, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'NmLGzPJd', '5474663'), + (1068, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLGzPJd', '5482022'), + (1068, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLGzPJd', '5482793'), + (1068, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLGzPJd', '5488912'), + (1068, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLGzPJd', '5492192'), + (1068, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLGzPJd', '5493139'), + (1068, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLGzPJd', '5493200'), + (1068, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLGzPJd', '5502188'), + (1068, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLGzPJd', '5505059'), + (1068, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'NmLGzPJd', '5509055'), + (1068, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLGzPJd', '5512862'), + (1068, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLGzPJd', '5513985'), + (1068, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'NmLGzPJd', '5519981'), + (1068, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLGzPJd', '5522550'), + (1068, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLGzPJd', '5534683'), + (1068, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLGzPJd', '5537735'), + (1068, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLGzPJd', '5540859'), + (1068, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLGzPJd', '5546619'), + (1068, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLGzPJd', '5555245'), + (1068, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLGzPJd', '5557747'), + (1068, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLGzPJd', '5560255'), + (1068, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLGzPJd', '5562906'), + (1068, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLGzPJd', '5600604'), + (1068, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLGzPJd', '5605544'), + (1068, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'NmLGzPJd', '5606737'), + (1068, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLGzPJd', '5630960'), + (1068, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLGzPJd', '5630961'), + (1068, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLGzPJd', '5630962'), + (1068, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLGzPJd', '5630966'), + (1068, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLGzPJd', '5630967'), + (1068, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLGzPJd', '5630968'), + (1068, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLGzPJd', '5635406'), + (1068, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLGzPJd', '5638765'), + (1068, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLGzPJd', '5640097'), + (1068, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLGzPJd', '5640843'), + (1068, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLGzPJd', '5641521'), + (1068, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLGzPJd', '5642818'), + (1068, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLGzPJd', '5652395'), + (1068, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLGzPJd', '5670445'), + (1068, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLGzPJd', '5671637'), + (1068, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLGzPJd', '5672329'), + (1068, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLGzPJd', '5674057'), + (1068, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLGzPJd', '5674060'), + (1068, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLGzPJd', '5677461'), + (1068, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLGzPJd', '5698046'), + (1068, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLGzPJd', '5699760'), + (1068, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLGzPJd', '5741601'), + (1068, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLGzPJd', '5763458'), + (1068, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLGzPJd', '5774172'), + (1068, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'NmLGzPJd', '5818247'), + (1068, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLGzPJd', '5819471'), + (1068, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLGzPJd', '5827739'), + (1068, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLGzPJd', '5844306'), + (1068, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLGzPJd', '5850159'), + (1068, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLGzPJd', '5858999'), + (1068, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLGzPJd', '5871984'), + (1068, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLGzPJd', '5876354'), + (1068, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLGzPJd', '5880939'), + (1068, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLGzPJd', '5880940'), + (1068, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLGzPJd', '5880942'), + (1068, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'NmLGzPJd', '5880943'), + (1068, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLGzPJd', '5887890'), + (1068, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLGzPJd', '5888598'), + (1068, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLGzPJd', '5893260'), + (1068, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLGzPJd', '5899826'), + (1068, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLGzPJd', '5900199'), + (1068, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLGzPJd', '5900200'), + (1068, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'NmLGzPJd', '5900202'), + (1068, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLGzPJd', '5900203'), + (1068, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLGzPJd', '5901108'), + (1068, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLGzPJd', '5901126'), + (1068, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLGzPJd', '5909655'), + (1068, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLGzPJd', '5910522'), + (1068, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLGzPJd', '5910526'), + (1068, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLGzPJd', '5910528'), + (1068, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLGzPJd', '5916219'), + (1068, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'NmLGzPJd', '5936234'), + (1068, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLGzPJd', '5958351'), + (1068, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'NmLGzPJd', '5959751'), + (1068, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'NmLGzPJd', '5959755'), + (1068, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'NmLGzPJd', '5960055'), + (1068, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLGzPJd', '5961684'), + (1068, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'NmLGzPJd', '5962132'), + (1068, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'NmLGzPJd', '5962133'), + (1068, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLGzPJd', '5962134'), + (1068, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLGzPJd', '5962317'), + (1068, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLGzPJd', '5962318'), + (1068, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'NmLGzPJd', '5965933'), + (1068, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLGzPJd', '5967014'), + (1068, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLGzPJd', '5972815'), + (1068, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'NmLGzPJd', '5974016'), + (1068, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLGzPJd', '5981515'), + (1068, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'NmLGzPJd', '5993516'), + (1068, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'NmLGzPJd', '5998939'), + (1068, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLGzPJd', '6028191'), + (1068, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'NmLGzPJd', '6040066'), + (1068, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'NmLGzPJd', '6042717'), + (1068, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLGzPJd', '6044838'), + (1068, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLGzPJd', '6044839'), + (1068, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLGzPJd', '6045684'), + (1068, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLGzPJd', '6050104'), + (1068, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLGzPJd', '6053195'), + (1068, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'NmLGzPJd', '6053198'), + (1068, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'NmLGzPJd', '6056085'), + (1068, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLGzPJd', '6056916'), + (1068, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLGzPJd', '6059290'), + (1068, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLGzPJd', '6060328'), + (1068, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLGzPJd', '6061037'), + (1068, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLGzPJd', '6061039'), + (1068, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLGzPJd', '6067245'), + (1068, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLGzPJd', '6068094'), + (1068, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'NmLGzPJd', '6068252'), + (1068, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'NmLGzPJd', '6068253'), + (1068, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'NmLGzPJd', '6068254'), + (1068, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'NmLGzPJd', '6068280'), + (1068, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLGzPJd', '6069093'), + (1068, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'NmLGzPJd', '6072528'), + (1068, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'NmLGzPJd', '6079840'), + (1068, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLGzPJd', '6083398'), + (1068, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'NmLGzPJd', '6093504'), + (1068, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'NmLGzPJd', '6097414'), + (1068, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLGzPJd', '6097442'), + (1068, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLGzPJd', '6097684'), + (1068, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLGzPJd', '6098762'), + (1068, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'NmLGzPJd', '6101361'), + (1068, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLGzPJd', '6101362'), + (1068, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'NmLGzPJd', '6103752'), + (1068, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLGzPJd', '6107314'), + (1068, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'NmLGzPJd', '6120034'), + (1068, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'NmLGzPJd', '6136733'), + (1068, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'NmLGzPJd', '6137989'), + (1068, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'NmLGzPJd', '6150864'), + (1068, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'NmLGzPJd', '6155491'), + (1068, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'NmLGzPJd', '6164417'), + (1068, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'NmLGzPJd', '6166388'), + (1068, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'NmLGzPJd', '6176439'), + (1068, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'NmLGzPJd', '6182410'), + (1068, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'NmLGzPJd', '6185812'), + (1068, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'NmLGzPJd', '6187651'), + (1068, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'NmLGzPJd', '6187963'), + (1068, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'NmLGzPJd', '6187964'), + (1068, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'NmLGzPJd', '6187966'), + (1068, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'NmLGzPJd', '6187967'), + (1068, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'NmLGzPJd', '6187969'), + (1068, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'NmLGzPJd', '6334878'), + (1068, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'NmLGzPJd', '6337236'), + (1068, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'NmLGzPJd', '6337970'), + (1068, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'NmLGzPJd', '6338308'), + (1068, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'NmLGzPJd', '6340845'), + (1068, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'NmLGzPJd', '6341710'), + (1068, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'NmLGzPJd', '6342044'), + (1068, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'NmLGzPJd', '6342298'), + (1068, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'NmLGzPJd', '6343294'), + (1068, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'NmLGzPJd', '6347034'), + (1068, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'NmLGzPJd', '6347056'), + (1068, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'NmLGzPJd', '6353830'), + (1068, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'NmLGzPJd', '6353831'), + (1068, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'NmLGzPJd', '6357867'), + (1068, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'NmLGzPJd', '6358652'), + (1068, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'NmLGzPJd', '6361709'), + (1068, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'NmLGzPJd', '6361710'), + (1068, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'NmLGzPJd', '6361711'), + (1068, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'NmLGzPJd', '6361712'), + (1068, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'NmLGzPJd', '6361713'), + (1068, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'NmLGzPJd', '6382573'), + (1068, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'NmLGzPJd', '6388604'), + (1068, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'NmLGzPJd', '6394629'), + (1068, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'NmLGzPJd', '6394631'), + (1068, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'NmLGzPJd', '6440863'), + (1068, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLGzPJd', '6445440'), + (1068, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLGzPJd', '6453951'), + (1068, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'NmLGzPJd', '6461696'), + (1068, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'NmLGzPJd', '6462129'), + (1068, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLGzPJd', '6463218'), + (1068, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'NmLGzPJd', '6472181'), + (1068, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'NmLGzPJd', '6482693'), + (1068, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'NmLGzPJd', '6484200'), + (1068, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'NmLGzPJd', '6484680'), + (1068, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'NmLGzPJd', '6507741'), + (1068, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'NmLGzPJd', '6514659'), + (1068, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'NmLGzPJd', '6514660'), + (1068, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'NmLGzPJd', '6519103'), + (1068, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'NmLGzPJd', '6535681'), + (1068, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLGzPJd', '6584747'), + (1068, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLGzPJd', '6587097'), + (1068, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLGzPJd', '6609022'), + (1068, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'NmLGzPJd', '6632757'), + (1068, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLGzPJd', '6644187'), + (1068, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLGzPJd', '6648951'), + (1068, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'NmLGzPJd', '6648952'), + (1068, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'NmLGzPJd', '6655401'), + (1068, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'NmLGzPJd', '6661585'), + (1068, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'NmLGzPJd', '6661588'), + (1068, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'NmLGzPJd', '6661589'), + (1068, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLGzPJd', '6699906'), + (1068, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'NmLGzPJd', '6701109'), + (1068, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLGzPJd', '6705219'), + (1068, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLGzPJd', '6710153'), + (1068, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLGzPJd', '6711552'), + (1068, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'NmLGzPJd', '6711553'), + (1069, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'Ae7VLJOd', '4136947'), + (1069, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Ae7VLJOd', '4210314'), + (1069, 893, 'attending', '2021-07-23 16:47:39', '2025-12-17 19:47:40', 'Ae7VLJOd', '4229420'), + (1069, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'Ae7VLJOd', '4229423'), + (1069, 900, 'attending', '2021-07-24 22:46:42', '2025-12-17 19:47:40', 'Ae7VLJOd', '4240316'), + (1069, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Ae7VLJOd', '4240317'), + (1069, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Ae7VLJOd', '4240318'), + (1069, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Ae7VLJOd', '4240320'), + (1069, 919, 'not_attending', '2021-07-17 04:16:39', '2025-12-17 19:47:39', 'Ae7VLJOd', '4275957'), + (1069, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Ae7VLJOd', '4277819'), + (1069, 923, 'not_attending', '2021-07-20 02:30:14', '2025-12-17 19:47:40', 'Ae7VLJOd', '4292773'), + (1069, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Ae7VLJOd', '4301723'), + (1069, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'Ae7VLJOd', '4302093'), + (1069, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Ae7VLJOd', '4304151'), + (1069, 940, 'not_attending', '2021-07-30 16:29:46', '2025-12-17 19:47:40', 'Ae7VLJOd', '4309049'), + (1069, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'Ae7VLJOd', '4315713'), + (1069, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'Ae7VLJOd', '4315714'), + (1069, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'Ae7VLJOd', '4315726'), + (1069, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Ae7VLJOd', '4356801'), + (1069, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Ae7VLJOd', '4366186'), + (1069, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Ae7VLJOd', '4366187'), + (1069, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Ae7VLJOd', '4420735'), + (1069, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Ae7VLJOd', '4420738'), + (1069, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Ae7VLJOd', '4420739'), + (1069, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Ae7VLJOd', '4420741'), + (1069, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Ae7VLJOd', '4420744'), + (1069, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Ae7VLJOd', '4420747'), + (1069, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Ae7VLJOd', '4420748'), + (1069, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Ae7VLJOd', '4420749'), + (1069, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Ae7VLJOd', '4461883'), + (1069, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Ae7VLJOd', '4508342'), + (1069, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Ae7VLJOd', '4568602'), + (1069, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Ae7VLJOd', '4572153'), + (1069, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'Ae7VLJOd', '4585962'), + (1069, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'Ae7VLJOd', '4596356'), + (1069, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Ae7VLJOd', '4598860'), + (1069, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Ae7VLJOd', '4598861'), + (1069, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Ae7VLJOd', '4602797'), + (1069, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Ae7VLJOd', '4637896'), + (1069, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Ae7VLJOd', '4642994'), + (1069, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Ae7VLJOd', '4642995'), + (1069, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Ae7VLJOd', '4642996'), + (1069, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Ae7VLJOd', '4642997'), + (1069, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Ae7VLJOd', '4645687'), + (1069, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Ae7VLJOd', '4645698'), + (1069, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Ae7VLJOd', '4645704'), + (1069, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Ae7VLJOd', '4645705'), + (1069, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae7VLJOd', '4668385'), + (1069, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Ae7VLJOd', '4694407'), + (1069, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Ae7VLJOd', '4736497'), + (1069, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Ae7VLJOd', '4736499'), + (1069, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Ae7VLJOd', '4736500'), + (1069, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Ae7VLJOd', '4736503'), + (1069, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Ae7VLJOd', '4736504'), + (1069, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Ae7VLJOd', '4746789'), + (1069, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Ae7VLJOd', '4753929'), + (1069, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Ae7VLJOd', '5038850'), + (1069, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Ae7VLJOd', '5045826'), + (1069, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Ae7VLJOd', '5132533'), + (1069, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Ae7VLJOd', '5186582'), + (1069, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Ae7VLJOd', '5186583'), + (1069, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Ae7VLJOd', '5186585'), + (1069, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Ae7VLJOd', '5190437'), + (1069, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Ae7VLJOd', '5195095'), + (1069, 1288, 'not_attending', '2022-03-23 01:16:50', '2025-12-17 19:47:25', 'Ae7VLJOd', '5199460'), + (1069, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Ae7VLJOd', '5215989'), + (1069, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Ae7VLJOd', '5223686'), + (1069, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Ae7VLJOd', '5247467'), + (1069, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Ae7VLJOd', '5260800'), + (1069, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Ae7VLJOd', '5269930'), + (1069, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Ae7VLJOd', '5271448'), + (1069, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'Ae7VLJOd', '5271449'), + (1069, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Ae7VLJOd', '5278159'), + (1069, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Ae7VLJOd', '5363695'), + (1069, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Ae7VLJOd', '5365960'), + (1069, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Ae7VLJOd', '5378247'), + (1069, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'Ae7VLJOd', '5389605'), + (1069, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Ae7VLJOd', '5397265'), + (1069, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Ae7VLJOd', '5404786'), + (1069, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Ae7VLJOd', '5405203'), + (1069, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Ae7VLJOd', '5412550'), + (1069, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Ae7VLJOd', '5415046'), + (1069, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Ae7VLJOd', '5422086'), + (1069, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Ae7VLJOd', '5422406'), + (1069, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Ae7VLJOd', '5424565'), + (1069, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Ae7VLJOd', '5426882'), + (1069, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Ae7VLJOd', '5441125'), + (1069, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Ae7VLJOd', '5441126'), + (1069, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Ae7VLJOd', '5441128'), + (1069, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Ae7VLJOd', '5441131'), + (1069, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Ae7VLJOd', '5441132'), + (1069, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Ae7VLJOd', '5453325'), + (1069, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Ae7VLJOd', '5454516'), + (1069, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Ae7VLJOd', '5454605'), + (1069, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Ae7VLJOd', '5455037'), + (1069, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Ae7VLJOd', '5461278'), + (1069, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Ae7VLJOd', '5469480'), + (1069, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Ae7VLJOd', '5474663'), + (1069, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Ae7VLJOd', '5482022'), + (1069, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Ae7VLJOd', '5488912'), + (1069, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Ae7VLJOd', '5492192'), + (1069, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Ae7VLJOd', '5493139'), + (1069, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Ae7VLJOd', '5493200'), + (1069, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Ae7VLJOd', '5502188'), + (1069, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Ae7VLJOd', '5505059'), + (1069, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Ae7VLJOd', '5509055'), + (1069, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Ae7VLJOd', '5512862'), + (1069, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Ae7VLJOd', '5513985'), + (1069, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'Ae7VLJOd', '5519981'), + (1069, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Ae7VLJOd', '5522550'), + (1069, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Ae7VLJOd', '5534683'), + (1069, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Ae7VLJOd', '5537735'), + (1069, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Ae7VLJOd', '5540859'), + (1069, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Ae7VLJOd', '5546619'), + (1069, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Ae7VLJOd', '5557747'), + (1069, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Ae7VLJOd', '5560255'), + (1069, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Ae7VLJOd', '5562906'), + (1069, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Ae7VLJOd', '5600604'), + (1069, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Ae7VLJOd', '5605544'), + (1069, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Ae7VLJOd', '5630960'), + (1069, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Ae7VLJOd', '5630961'), + (1069, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Ae7VLJOd', '5630962'), + (1069, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Ae7VLJOd', '5630966'), + (1069, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Ae7VLJOd', '5630967'), + (1069, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Ae7VLJOd', '5630968'), + (1069, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Ae7VLJOd', '5635406'), + (1069, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Ae7VLJOd', '5638765'), + (1069, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Ae7VLJOd', '5640097'), + (1069, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Ae7VLJOd', '5640843'), + (1069, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Ae7VLJOd', '5641521'), + (1069, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Ae7VLJOd', '5642818'), + (1069, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Ae7VLJOd', '5652395'), + (1069, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Ae7VLJOd', '5670445'), + (1069, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Ae7VLJOd', '5671637'), + (1069, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Ae7VLJOd', '5672329'), + (1069, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Ae7VLJOd', '5674057'), + (1069, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Ae7VLJOd', '5674060'), + (1069, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Ae7VLJOd', '5677461'), + (1069, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Ae7VLJOd', '5698046'), + (1069, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Ae7VLJOd', '5699760'), + (1069, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Ae7VLJOd', '5741601'), + (1069, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Ae7VLJOd', '5763458'), + (1069, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Ae7VLJOd', '5774172'), + (1069, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'Ae7VLJOd', '5818247'), + (1069, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Ae7VLJOd', '5819471'), + (1069, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Ae7VLJOd', '5827739'), + (1069, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Ae7VLJOd', '5844306'), + (1069, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Ae7VLJOd', '5850159'), + (1069, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Ae7VLJOd', '5858999'), + (1069, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Ae7VLJOd', '5871984'), + (1069, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Ae7VLJOd', '5876354'), + (1069, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Ae7VLJOd', '5880939'), + (1069, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Ae7VLJOd', '5880940'), + (1069, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Ae7VLJOd', '5880942'), + (1069, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Ae7VLJOd', '5880943'), + (1069, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Ae7VLJOd', '5887890'), + (1069, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Ae7VLJOd', '5888598'), + (1069, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Ae7VLJOd', '5893260'), + (1069, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Ae7VLJOd', '5899826'), + (1069, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Ae7VLJOd', '5900199'), + (1069, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Ae7VLJOd', '5900200'), + (1069, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Ae7VLJOd', '5900202'), + (1069, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Ae7VLJOd', '5900203'), + (1069, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Ae7VLJOd', '5901108'), + (1069, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Ae7VLJOd', '5901126'), + (1069, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Ae7VLJOd', '5909655'), + (1069, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Ae7VLJOd', '5910522'), + (1069, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Ae7VLJOd', '5910526'), + (1069, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Ae7VLJOd', '5910528'), + (1069, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Ae7VLJOd', '5916219'), + (1069, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Ae7VLJOd', '5936234'), + (1069, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Ae7VLJOd', '5958351'), + (1069, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Ae7VLJOd', '5959751'), + (1069, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Ae7VLJOd', '5959755'), + (1069, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Ae7VLJOd', '5960055'), + (1069, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Ae7VLJOd', '5961684'), + (1069, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Ae7VLJOd', '5962132'), + (1069, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Ae7VLJOd', '5962133'), + (1069, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Ae7VLJOd', '5962134'), + (1069, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Ae7VLJOd', '5962317'), + (1069, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Ae7VLJOd', '5962318'), + (1069, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Ae7VLJOd', '5965933'), + (1069, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Ae7VLJOd', '5967014'), + (1069, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Ae7VLJOd', '5972815'), + (1069, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Ae7VLJOd', '5974016'), + (1069, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Ae7VLJOd', '5981515'), + (1069, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Ae7VLJOd', '5993516'), + (1069, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Ae7VLJOd', '5998939'), + (1069, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Ae7VLJOd', '6028191'), + (1069, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Ae7VLJOd', '6040066'), + (1069, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Ae7VLJOd', '6042717'), + (1069, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Ae7VLJOd', '6044838'), + (1069, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Ae7VLJOd', '6044839'), + (1069, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Ae7VLJOd', '6045684'), + (1069, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Ae7VLJOd', '6050104'), + (1069, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Ae7VLJOd', '6053195'), + (1069, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Ae7VLJOd', '6053198'), + (1069, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Ae7VLJOd', '6056085'), + (1069, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Ae7VLJOd', '6056916'), + (1069, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Ae7VLJOd', '6059290'), + (1069, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Ae7VLJOd', '6060328'), + (1069, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Ae7VLJOd', '6061037'), + (1069, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Ae7VLJOd', '6061039'), + (1069, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Ae7VLJOd', '6067245'), + (1069, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Ae7VLJOd', '6068094'), + (1069, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Ae7VLJOd', '6068252'), + (1069, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Ae7VLJOd', '6068253'), + (1069, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Ae7VLJOd', '6068254'), + (1069, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Ae7VLJOd', '6068280'), + (1069, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Ae7VLJOd', '6069093'), + (1069, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Ae7VLJOd', '6072528'), + (1069, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Ae7VLJOd', '6079840'), + (1069, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Ae7VLJOd', '6083398'), + (1069, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Ae7VLJOd', '6093504'), + (1069, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Ae7VLJOd', '6097414'), + (1069, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Ae7VLJOd', '6097442'), + (1069, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Ae7VLJOd', '6097684'), + (1069, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Ae7VLJOd', '6098762'), + (1069, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Ae7VLJOd', '6101361'), + (1069, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Ae7VLJOd', '6101362'), + (1069, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Ae7VLJOd', '6107314'), + (1069, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Ae7VLJOd', '6120034'), + (1069, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'Ae7VLJOd', '6136733'), + (1069, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Ae7VLJOd', '6137989'), + (1069, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Ae7VLJOd', '6150864'), + (1069, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Ae7VLJOd', '6155491'), + (1069, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Ae7VLJOd', '6164417'), + (1069, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Ae7VLJOd', '6166388'), + (1069, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Ae7VLJOd', '6176439'), + (1069, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Ae7VLJOd', '6182410'), + (1069, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Ae7VLJOd', '6185812'), + (1069, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Ae7VLJOd', '6187651'), + (1069, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Ae7VLJOd', '6187963'), + (1069, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Ae7VLJOd', '6187964'), + (1069, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Ae7VLJOd', '6187966'), + (1069, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Ae7VLJOd', '6187967'), + (1069, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Ae7VLJOd', '6187969'), + (1069, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Ae7VLJOd', '6334878'), + (1069, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Ae7VLJOd', '6337236'), + (1069, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Ae7VLJOd', '6337970'), + (1069, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Ae7VLJOd', '6338308'), + (1069, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Ae7VLJOd', '6341710'), + (1069, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Ae7VLJOd', '6342044'), + (1069, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Ae7VLJOd', '6342298'), + (1069, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Ae7VLJOd', '6343294'), + (1069, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Ae7VLJOd', '6347034'), + (1069, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Ae7VLJOd', '6347056'), + (1069, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Ae7VLJOd', '6353830'), + (1069, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Ae7VLJOd', '6353831'), + (1069, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Ae7VLJOd', '6357867'), + (1069, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Ae7VLJOd', '6358652'), + (1069, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Ae7VLJOd', '6361709'), + (1069, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Ae7VLJOd', '6361710'), + (1069, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Ae7VLJOd', '6361711'), + (1069, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Ae7VLJOd', '6361712'), + (1069, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Ae7VLJOd', '6361713'), + (1069, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Ae7VLJOd', '6382573'), + (1069, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Ae7VLJOd', '6388604'), + (1069, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Ae7VLJOd', '6394629'), + (1069, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Ae7VLJOd', '6394631'), + (1069, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Ae7VLJOd', '6440863'), + (1069, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Ae7VLJOd', '6445440'), + (1069, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Ae7VLJOd', '6453951'), + (1069, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Ae7VLJOd', '6461696'), + (1069, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Ae7VLJOd', '6462129'), + (1069, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Ae7VLJOd', '6463218'), + (1069, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Ae7VLJOd', '6472181'), + (1069, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Ae7VLJOd', '6482693'), + (1069, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'Ae7VLJOd', '6484200'), + (1069, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Ae7VLJOd', '6484680'), + (1069, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Ae7VLJOd', '6507741'), + (1069, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Ae7VLJOd', '6514659'), + (1069, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Ae7VLJOd', '6514660'), + (1069, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Ae7VLJOd', '6519103'), + (1069, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Ae7VLJOd', '6535681'), + (1069, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Ae7VLJOd', '6584747'), + (1069, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Ae7VLJOd', '6587097'), + (1069, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Ae7VLJOd', '6609022'), + (1069, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Ae7VLJOd', '6632757'), + (1069, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Ae7VLJOd', '6644187'), + (1069, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Ae7VLJOd', '6648951'), + (1069, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Ae7VLJOd', '6648952'), + (1069, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Ae7VLJOd', '6655401'), + (1069, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Ae7VLJOd', '6661585'), + (1069, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Ae7VLJOd', '6661588'), + (1069, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Ae7VLJOd', '6661589'), + (1069, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Ae7VLJOd', '6699906'), + (1069, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Ae7VLJOd', '6699913'), + (1069, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Ae7VLJOd', '6701109'), + (1069, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Ae7VLJOd', '6705219'), + (1069, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Ae7VLJOd', '6710153'), + (1069, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Ae7VLJOd', '6711552'), + (1069, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'Ae7VLJOd', '6711553'), + (1069, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Ae7VLJOd', '6722688'), + (1069, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Ae7VLJOd', '6730620'), + (1069, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Ae7VLJOd', '6740364'), + (1069, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Ae7VLJOd', '6743829'), + (1069, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Ae7VLJOd', '7030380'), + (1069, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Ae7VLJOd', '7033677'), + (1069, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Ae7VLJOd', '7044715'), + (1069, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Ae7VLJOd', '7050318'), + (1069, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Ae7VLJOd', '7050319'), + (1069, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Ae7VLJOd', '7050322'), + (1069, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Ae7VLJOd', '7057804'), + (1069, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Ae7VLJOd', '7072824'), + (1069, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Ae7VLJOd', '7074348'), + (1069, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Ae7VLJOd', '7074364'), + (1069, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'Ae7VLJOd', '7089267'), + (1069, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Ae7VLJOd', '7098747'), + (1069, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Ae7VLJOd', '7113468'), + (1069, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Ae7VLJOd', '7114856'), + (1069, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Ae7VLJOd', '7114951'), + (1069, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Ae7VLJOd', '7114955'), + (1069, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Ae7VLJOd', '7114956'), + (1069, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Ae7VLJOd', '7114957'), + (1069, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Ae7VLJOd', '7159484'), + (1069, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Ae7VLJOd', '7178446'), + (1069, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Ae7VLJOd', '7220467'), + (1069, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Ae7VLJOd', '7240354'), + (1069, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Ae7VLJOd', '7251633'), + (1069, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Ae7VLJOd', '7324073'), + (1069, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Ae7VLJOd', '7324074'), + (1069, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Ae7VLJOd', '7324075'), + (1069, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Ae7VLJOd', '7324078'), + (1069, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Ae7VLJOd', '7324082'), + (1069, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Ae7VLJOd', '7331457'), + (1069, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Ae7VLJOd', '7363643'), + (1069, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Ae7VLJOd', '7368606'), + (1069, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Ae7VLJOd', '7397462'), + (1069, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Ae7VLJOd', '7424275'), + (1069, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Ae7VLJOd', '7432751'), + (1069, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Ae7VLJOd', '7432752'), + (1069, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Ae7VLJOd', '7432753'), + (1069, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432754'), + (1069, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432755'), + (1069, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432756'), + (1069, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432758'), + (1069, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432759'), + (1069, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Ae7VLJOd', '7433834'), + (1069, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Ae7VLJOd', '7470197'), + (1069, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Ae7VLJOd', '7685613'), + (1069, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Ae7VLJOd', '7688194'), + (1069, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Ae7VLJOd', '7688196'), + (1069, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Ae7VLJOd', '7688289'), + (1069, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Ae7VLJOd', '7692763'), + (1069, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Ae7VLJOd', '7697552'), + (1069, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Ae7VLJOd', '7699878'), + (1069, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Ae7VLJOd', '7704043'), + (1069, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Ae7VLJOd', '7712467'), + (1069, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Ae7VLJOd', '7713585'), + (1069, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Ae7VLJOd', '7713586'), + (1069, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Ae7VLJOd', '7738518'), + (1069, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Ae7VLJOd', '7750636'), + (1069, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Ae7VLJOd', '7796540'), + (1069, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Ae7VLJOd', '7796541'), + (1069, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Ae7VLJOd', '7796542'), + (1069, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Ae7VLJOd', '7825913'), + (1069, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Ae7VLJOd', '7826209'), + (1069, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Ae7VLJOd', '7834742'), + (1069, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Ae7VLJOd', '7842108'), + (1069, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Ae7VLJOd', '7842902'), + (1069, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Ae7VLJOd', '7842903'), + (1069, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Ae7VLJOd', '7842904'), + (1069, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Ae7VLJOd', '7842905'), + (1069, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Ae7VLJOd', '7855719'), + (1069, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Ae7VLJOd', '7860683'), + (1069, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Ae7VLJOd', '7860684'), + (1069, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Ae7VLJOd', '7866095'), + (1069, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Ae7VLJOd', '7869170'), + (1069, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Ae7VLJOd', '7869188'), + (1069, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Ae7VLJOd', '7869201'), + (1069, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Ae7VLJOd', '7877465'), + (1069, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Ae7VLJOd', '7888250'), + (1069, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Ae7VLJOd', '7904777'), + (1069, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Ae7VLJOd', '8349164'), + (1069, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Ae7VLJOd', '8349545'), + (1069, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Ae7VLJOd', '8368028'), + (1069, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Ae7VLJOd', '8368029'), + (1069, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Ae7VLJOd', '8388462'), + (1069, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Ae7VLJOd', '8400273'), + (1069, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Ae7VLJOd', '8400275'), + (1069, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Ae7VLJOd', '8400276'), + (1069, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Ae7VLJOd', '8404977'), + (1069, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Ae7VLJOd', '8430783'), + (1069, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Ae7VLJOd', '8430784'), + (1069, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Ae7VLJOd', '8430799'), + (1069, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Ae7VLJOd', '8430800'), + (1069, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Ae7VLJOd', '8430801'), + (1069, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Ae7VLJOd', '8438709'), + (1069, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Ae7VLJOd', '8457738'), + (1069, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Ae7VLJOd', '8459566'), + (1069, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Ae7VLJOd', '8459567'), + (1069, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Ae7VLJOd', '8461032'), + (1069, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Ae7VLJOd', '8477877'), + (1069, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Ae7VLJOd', '8485688'), + (1069, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Ae7VLJOd', '8490587'), + (1069, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Ae7VLJOd', '8493552'), + (1069, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Ae7VLJOd', '8493553'), + (1069, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Ae7VLJOd', '8493554'), + (1069, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Ae7VLJOd', '8493555'), + (1069, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Ae7VLJOd', '8493556'), + (1069, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Ae7VLJOd', '8493557'), + (1069, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Ae7VLJOd', '8493558'), + (1069, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Ae7VLJOd', '8493559'), + (1069, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Ae7VLJOd', '8493560'), + (1069, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Ae7VLJOd', '8493561'), + (1069, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Ae7VLJOd', '8493572'), + (1069, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Ae7VLJOd', '8540725'), + (1069, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Ae7VLJOd', '8555421'), + (1070, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'w4WENrEm', '3236450'), + (1070, 823, 'not_attending', '2021-06-18 12:02:07', '2025-12-17 19:47:48', 'w4WENrEm', '3974109'), + (1070, 827, 'maybe', '2021-06-05 22:35:00', '2025-12-17 19:47:47', 'w4WENrEm', '3975311'), + (1070, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4WENrEm', '3975312'), + (1070, 834, 'maybe', '2021-06-10 21:33:10', '2025-12-17 19:47:47', 'w4WENrEm', '3990439'), + (1070, 838, 'maybe', '2021-06-09 06:25:09', '2025-12-17 19:47:47', 'w4WENrEm', '3994992'), + (1070, 842, 'attending', '2021-06-08 15:38:36', '2025-12-17 19:47:47', 'w4WENrEm', '4009741'), + (1070, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4WENrEm', '4014338'), + (1070, 859, 'not_attending', '2021-06-16 21:36:11', '2025-12-17 19:47:48', 'w4WENrEm', '4015993'), + (1070, 866, 'not_attending', '2021-06-18 12:05:58', '2025-12-17 19:47:38', 'w4WENrEm', '4020424'), + (1070, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'w4WENrEm', '4021848'), + (1070, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4WENrEm', '4136744'), + (1070, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4WENrEm', '4136937'), + (1070, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4WENrEm', '4136938'), + (1070, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4WENrEm', '4136947'), + (1070, 873, 'not_attending', '2021-06-18 12:05:59', '2025-12-17 19:47:48', 'w4WENrEm', '4138297'), + (1070, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4WENrEm', '4210314'), + (1070, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4WENrEm', '4225444'), + (1070, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4WENrEm', '4239259'), + (1070, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4WENrEm', '4240316'), + (1070, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4WENrEm', '4240317'), + (1070, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4WENrEm', '4240318'), + (1070, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4WENrEm', '4240320'), + (1070, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4WENrEm', '4250163'), + (1070, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4WENrEm', '4275957'), + (1070, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4WENrEm', '4277819'), + (1070, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4WENrEm', '4301723'), + (1070, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'w4WENrEm', '4302093'), + (1070, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4WENrEm', '4304151'), + (1070, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'w4WENrEm', '4345519'), + (1070, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'w4WENrEm', '4358025'), + (1070, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4WENrEm', '4366186'), + (1070, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'w4WENrEm', '4366187'), + (1070, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WENrEm', '6045684'), + (1071, 846, 'attending', '2021-07-04 02:48:30', '2025-12-17 19:47:39', 'nm62xD1m', '4015718'), + (1071, 851, 'attending', '2021-08-18 16:16:57', '2025-12-17 19:47:42', 'nm62xD1m', '4015723'), + (1071, 853, 'attending', '2021-08-10 17:53:55', '2025-12-17 19:47:41', 'nm62xD1m', '4015725'), + (1071, 870, 'attending', '2021-07-03 01:53:26', '2025-12-17 19:47:39', 'nm62xD1m', '4136937'), + (1071, 871, 'attending', '2021-07-05 18:13:22', '2025-12-17 19:47:39', 'nm62xD1m', '4136938'), + (1071, 872, 'attending', '2021-07-19 10:20:45', '2025-12-17 19:47:40', 'nm62xD1m', '4136947'), + (1071, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nm62xD1m', '4210314'), + (1071, 887, 'attending', '2021-07-11 02:34:21', '2025-12-17 19:47:39', 'nm62xD1m', '4225444'), + (1071, 891, 'attending', '2021-07-01 19:00:40', '2025-12-17 19:47:38', 'nm62xD1m', '4229417'), + (1071, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'nm62xD1m', '4239259'), + (1071, 900, 'attending', '2021-07-19 10:20:37', '2025-12-17 19:47:40', 'nm62xD1m', '4240316'), + (1071, 901, 'attending', '2021-07-27 15:43:02', '2025-12-17 19:47:40', 'nm62xD1m', '4240317'), + (1071, 902, 'attending', '2021-08-07 03:21:44', '2025-12-17 19:47:41', 'nm62xD1m', '4240318'), + (1071, 903, 'attending', '2021-08-10 17:54:54', '2025-12-17 19:47:42', 'nm62xD1m', '4240320'), + (1071, 905, 'attending', '2021-07-04 14:50:44', '2025-12-17 19:47:39', 'nm62xD1m', '4250163'), + (1071, 916, 'attending', '2021-07-18 00:02:37', '2025-12-17 19:47:40', 'nm62xD1m', '4273772'), + (1071, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'nm62xD1m', '4275957'), + (1071, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nm62xD1m', '4277819'), + (1071, 933, 'attending', '2021-07-27 15:39:09', '2025-12-17 19:47:40', 'nm62xD1m', '4301723'), + (1071, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'nm62xD1m', '4302093'), + (1071, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nm62xD1m', '4304151'), + (1071, 937, 'attending', '2021-07-27 15:38:50', '2025-12-17 19:47:40', 'nm62xD1m', '4306596'), + (1071, 940, 'attending', '2021-07-27 15:42:59', '2025-12-17 19:47:40', 'nm62xD1m', '4309049'), + (1071, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'nm62xD1m', '4345519'), + (1071, 971, 'attending', '2021-09-07 10:32:18', '2025-12-17 19:47:43', 'nm62xD1m', '4356801'), + (1071, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'nm62xD1m', '4358025'), + (1071, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'nm62xD1m', '4366186'), + (1071, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'nm62xD1m', '4366187'), + (1071, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'nm62xD1m', '4402823'), + (1071, 990, 'attending', '2021-08-29 04:32:18', '2025-12-17 19:47:43', 'nm62xD1m', '4420735'), + (1071, 991, 'attending', '2021-08-29 04:32:16', '2025-12-17 19:47:43', 'nm62xD1m', '4420738'), + (1071, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nm62xD1m', '4420739'), + (1071, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm62xD1m', '4420741'), + (1071, 995, 'attending', '2021-10-04 09:01:01', '2025-12-17 19:47:34', 'nm62xD1m', '4420744'), + (1071, 996, 'attending', '2021-10-05 03:39:08', '2025-12-17 19:47:35', 'nm62xD1m', '4420747'), + (1071, 997, 'attending', '2021-10-23 17:41:48', '2025-12-17 19:47:35', 'nm62xD1m', '4420748'), + (1071, 998, 'attending', '2021-10-27 00:26:21', '2025-12-17 19:47:36', 'nm62xD1m', '4420749'), + (1071, 1022, 'attending', '2021-09-15 22:59:20', '2025-12-17 19:47:43', 'nm62xD1m', '4458628'), + (1071, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nm62xD1m', '4461883'), + (1071, 1040, 'attending', '2021-12-12 00:01:46', '2025-12-17 19:47:38', 'nm62xD1m', '4496605'), + (1071, 1041, 'attending', '2021-12-04 20:24:52', '2025-12-17 19:47:37', 'nm62xD1m', '4496606'), + (1071, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nm62xD1m', '4508342'), + (1071, 1079, 'attending', '2021-10-20 21:58:38', '2025-12-17 19:47:35', 'nm62xD1m', '4563823'), + (1071, 1082, 'attending', '2021-10-15 17:56:22', '2025-12-17 19:47:35', 'nm62xD1m', '4566762'), + (1071, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nm62xD1m', '4568602'), + (1071, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nm62xD1m', '4572153'), + (1071, 1092, 'attending', '2021-10-21 03:35:01', '2025-12-17 19:47:35', 'nm62xD1m', '4582837'), + (1071, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'nm62xD1m', '4585962'), + (1071, 1094, 'attending', '2021-10-21 03:39:36', '2025-12-17 19:47:36', 'nm62xD1m', '4587337'), + (1071, 1095, 'attending', '2021-10-27 00:25:43', '2025-12-17 19:47:35', 'nm62xD1m', '4596356'), + (1071, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nm62xD1m', '4598860'), + (1071, 1098, 'attending', '2021-11-10 20:31:16', '2025-12-17 19:47:36', 'nm62xD1m', '4598861'), + (1071, 1099, 'attending', '2021-10-31 01:27:16', '2025-12-17 19:47:36', 'nm62xD1m', '4602797'), + (1071, 1103, 'attending', '2021-11-13 08:58:22', '2025-12-17 19:47:36', 'nm62xD1m', '4616350'), + (1071, 1106, 'attending', '2021-11-11 18:38:29', '2025-12-17 19:47:36', 'nm62xD1m', '4620452'), + (1071, 1114, 'attending', '2021-11-14 00:28:23', '2025-12-17 19:47:36', 'nm62xD1m', '4637896'), + (1071, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nm62xD1m', '4642994'), + (1071, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'nm62xD1m', '4642995'), + (1071, 1118, 'attending', '2021-12-15 21:18:17', '2025-12-17 19:47:38', 'nm62xD1m', '4642996'), + (1071, 1119, 'attending', '2021-12-21 15:15:43', '2025-12-17 19:47:31', 'nm62xD1m', '4642997'), + (1071, 1126, 'attending', '2021-12-11 18:23:23', '2025-12-17 19:47:38', 'nm62xD1m', '4645687'), + (1071, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nm62xD1m', '4645698'), + (1071, 1128, 'attending', '2021-11-21 00:04:21', '2025-12-17 19:47:37', 'nm62xD1m', '4645704'), + (1071, 1129, 'attending', '2021-11-27 22:37:56', '2025-12-17 19:47:37', 'nm62xD1m', '4645705'), + (1071, 1130, 'attending', '2021-12-04 20:24:50', '2025-12-17 19:47:37', 'nm62xD1m', '4658824'), + (1071, 1134, 'attending', '2021-11-24 22:11:56', '2025-12-17 19:47:37', 'nm62xD1m', '4668385'), + (1071, 1135, 'attending', '2021-11-26 23:08:11', '2025-12-17 19:47:37', 'nm62xD1m', '4670469'), + (1071, 1137, 'maybe', '2021-11-29 17:48:58', '2025-12-17 19:47:37', 'nm62xD1m', '4674797'), + (1071, 1143, 'attending', '2021-12-02 00:17:44', '2025-12-17 19:47:37', 'nm62xD1m', '4683667'), + (1071, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nm62xD1m', '4694407'), + (1071, 1151, 'attending', '2022-01-05 23:28:07', '2025-12-17 19:47:31', 'nm62xD1m', '4708704'), + (1071, 1152, 'attending', '2022-01-13 00:10:43', '2025-12-17 19:47:31', 'nm62xD1m', '4708705'), + (1071, 1154, 'attending', '2022-01-25 22:40:33', '2025-12-17 19:47:32', 'nm62xD1m', '4708708'), + (1071, 1163, 'maybe', '2022-01-08 15:58:00', '2025-12-17 19:47:31', 'nm62xD1m', '4724206'), + (1071, 1173, 'attending', '2022-01-07 17:00:05', '2025-12-17 19:47:31', 'nm62xD1m', '4736495'), + (1071, 1174, 'attending', '2022-01-15 18:30:34', '2025-12-17 19:47:31', 'nm62xD1m', '4736496'), + (1071, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm62xD1m', '4736497'), + (1071, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nm62xD1m', '4736499'), + (1071, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm62xD1m', '4736500'), + (1071, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nm62xD1m', '4736503'), + (1071, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nm62xD1m', '4736504'), + (1071, 1183, 'attending', '2022-01-11 23:48:33', '2025-12-17 19:47:31', 'nm62xD1m', '4742171'), + (1071, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nm62xD1m', '4746789'), + (1071, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'nm62xD1m', '4753929'), + (1071, 1222, 'attending', '2022-02-17 00:32:03', '2025-12-17 19:47:32', 'nm62xD1m', '5015628'), + (1071, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nm62xD1m', '5038850'), + (1071, 1236, 'attending', '2022-02-17 22:41:44', '2025-12-17 19:47:32', 'nm62xD1m', '5045826'), + (1071, 1239, 'attending', '2022-03-02 20:32:29', '2025-12-17 19:47:33', 'nm62xD1m', '5052238'), + (1071, 1241, 'attending', '2022-03-23 23:07:35', '2025-12-17 19:47:25', 'nm62xD1m', '5052240'), + (1071, 1245, 'attending', '2022-03-02 22:41:16', '2025-12-17 19:47:33', 'nm62xD1m', '5061301'), + (1071, 1249, 'maybe', '2022-03-10 00:30:16', '2025-12-17 19:47:33', 'nm62xD1m', '5068530'), + (1071, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm62xD1m', '5132533'), + (1071, 1272, 'maybe', '2022-03-19 03:42:09', '2025-12-17 19:47:25', 'nm62xD1m', '5186582'), + (1071, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nm62xD1m', '5186583'), + (1071, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nm62xD1m', '5186585'), + (1071, 1276, 'attending', '2022-03-27 22:45:41', '2025-12-17 19:47:25', 'nm62xD1m', '5186820'), + (1071, 1281, 'attending', '2022-04-09 20:33:58', '2025-12-17 19:47:27', 'nm62xD1m', '5190437'), + (1071, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nm62xD1m', '5195095'), + (1071, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm62xD1m', '5215989'), + (1071, 1304, 'attending', '2022-04-06 19:08:10', '2025-12-17 19:47:26', 'nm62xD1m', '5223468'), + (1071, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm62xD1m', '5223686'), + (1071, 1308, 'attending', '2022-04-13 01:20:30', '2025-12-17 19:47:27', 'nm62xD1m', '5226703'), + (1071, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'nm62xD1m', '5227432'), + (1071, 1315, 'attending', '2022-04-21 20:07:11', '2025-12-17 19:47:27', 'nm62xD1m', '5237522'), + (1071, 1337, 'attending', '2022-04-20 21:04:51', '2025-12-17 19:47:27', 'nm62xD1m', '5245036'), + (1071, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nm62xD1m', '5247467'), + (1071, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nm62xD1m', '5260800'), + (1071, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nm62xD1m', '5269930'), + (1071, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nm62xD1m', '5271448'), + (1071, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'nm62xD1m', '5271449'), + (1071, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'nm62xD1m', '5276469'), + (1071, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm62xD1m', '5278159'), + (1071, 1407, 'attending', '2022-06-04 20:14:36', '2025-12-17 19:47:30', 'nm62xD1m', '5363695'), + (1071, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm62xD1m', '5365960'), + (1071, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'nm62xD1m', '5368973'), + (1071, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm62xD1m', '5378247'), + (1071, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'nm62xD1m', '5389605'), + (1071, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nm62xD1m', '5397265'), + (1071, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'nm62xD1m', '5403967'), + (1071, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm62xD1m', '5404786'), + (1071, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm62xD1m', '5405203'), + (1071, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'nm62xD1m', '5408794'), + (1071, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'nm62xD1m', '5411699'), + (1071, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm62xD1m', '5412550'), + (1071, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm62xD1m', '5415046'), + (1071, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm62xD1m', '5422086'), + (1071, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nm62xD1m', '5422406'), + (1071, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm62xD1m', '5424565'), + (1071, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm62xD1m', '5426882'), + (1071, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'nm62xD1m', '5427083'), + (1071, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm62xD1m', '5441125'), + (1071, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm62xD1m', '5441126'), + (1071, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nm62xD1m', '5441128'), + (1071, 1517, 'attending', '2022-08-27 18:39:04', '2025-12-17 19:47:23', 'nm62xD1m', '5441130'), + (1071, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm62xD1m', '5441131'), + (1071, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm62xD1m', '5441132'), + (1071, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'nm62xD1m', '5446643'), + (1071, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm62xD1m', '5453325'), + (1071, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm62xD1m', '5454516'), + (1071, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm62xD1m', '5454605'), + (1071, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm62xD1m', '5455037'), + (1071, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm62xD1m', '5461278'), + (1071, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm62xD1m', '5469480'), + (1071, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'nm62xD1m', '5471073'), + (1071, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm62xD1m', '5474663'), + (1071, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm62xD1m', '5482022'), + (1071, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'nm62xD1m', '5482793'), + (1071, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm62xD1m', '5488912'), + (1071, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm62xD1m', '5492192'), + (1071, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm62xD1m', '5493139'), + (1071, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm62xD1m', '5493200'), + (1071, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm62xD1m', '5502188'), + (1071, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm62xD1m', '5505059'), + (1071, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm62xD1m', '5509055'), + (1071, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm62xD1m', '5512862'), + (1071, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm62xD1m', '5513985'), + (1071, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nm62xD1m', '5519981'), + (1071, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm62xD1m', '5522550'), + (1071, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm62xD1m', '5534683'), + (1071, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm62xD1m', '5537735'), + (1071, 1636, 'attending', '2022-09-03 05:07:28', '2025-12-17 19:47:24', 'nm62xD1m', '5538454'), + (1071, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm62xD1m', '5540859'), + (1071, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm62xD1m', '5546619'), + (1071, 1647, 'attending', '2022-09-16 10:30:19', '2025-12-17 19:47:11', 'nm62xD1m', '5548660'), + (1071, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'nm62xD1m', '5555245'), + (1071, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm62xD1m', '5557747'), + (1071, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm62xD1m', '5560255'), + (1071, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm62xD1m', '5562906'), + (1071, 1673, 'attending', '2022-09-18 23:22:58', '2025-12-17 19:47:11', 'nm62xD1m', '5592454'), + (1071, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm62xD1m', '5600604'), + (1071, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm62xD1m', '5605544'), + (1071, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'nm62xD1m', '5606737'), + (1071, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm62xD1m', '5630960'), + (1071, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm62xD1m', '5630961'), + (1071, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm62xD1m', '5630962'), + (1071, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm62xD1m', '5630966'), + (1071, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm62xD1m', '5630967'), + (1071, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm62xD1m', '5630968'), + (1071, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm62xD1m', '5635406'), + (1071, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm62xD1m', '5638765'), + (1071, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm62xD1m', '5640097'), + (1071, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm62xD1m', '5640843'), + (1071, 1742, 'attending', '2022-10-17 03:51:57', '2025-12-17 19:47:13', 'nm62xD1m', '5641245'), + (1071, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm62xD1m', '5641521'), + (1071, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm62xD1m', '5642818'), + (1071, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm62xD1m', '5652395'), + (1071, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm62xD1m', '5670445'), + (1071, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm62xD1m', '5671637'), + (1071, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm62xD1m', '5672329'), + (1071, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm62xD1m', '5674057'), + (1071, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm62xD1m', '5674060'), + (1071, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm62xD1m', '5677461'), + (1071, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm62xD1m', '5698046'), + (1071, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm62xD1m', '5699760'), + (1071, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm62xD1m', '5741601'), + (1071, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm62xD1m', '5763458'), + (1071, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm62xD1m', '5774172'), + (1071, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nm62xD1m', '5818247'), + (1071, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm62xD1m', '5819471'), + (1071, 1842, 'attending', '2022-12-17 07:45:55', '2025-12-17 19:47:04', 'nm62xD1m', '5827739'), + (1071, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm62xD1m', '5844306'), + (1071, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm62xD1m', '5850159'), + (1071, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm62xD1m', '5858999'), + (1071, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm62xD1m', '5871984'), + (1071, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm62xD1m', '5876354'), + (1071, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm62xD1m', '5880939'), + (1071, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm62xD1m', '5880940'), + (1071, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm62xD1m', '5880942'), + (1071, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm62xD1m', '5880943'), + (1071, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm62xD1m', '5887890'), + (1071, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm62xD1m', '5888598'), + (1071, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm62xD1m', '5893260'), + (1071, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm62xD1m', '5899826'), + (1071, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm62xD1m', '5900199'), + (1071, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm62xD1m', '5900200'), + (1071, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm62xD1m', '5900202'), + (1071, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm62xD1m', '5900203'), + (1071, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm62xD1m', '5901108'), + (1071, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm62xD1m', '5901126'), + (1071, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm62xD1m', '5909655'), + (1071, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm62xD1m', '5910522'), + (1071, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm62xD1m', '5910526'), + (1071, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm62xD1m', '5910528'), + (1071, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm62xD1m', '5916219'), + (1071, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm62xD1m', '5936234'), + (1071, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm62xD1m', '5958351'), + (1071, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm62xD1m', '5959751'), + (1071, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm62xD1m', '5959755'), + (1071, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm62xD1m', '5960055'), + (1071, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm62xD1m', '5961684'), + (1071, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm62xD1m', '5962132'), + (1071, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'nm62xD1m', '5962133'), + (1071, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm62xD1m', '5962134'), + (1071, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm62xD1m', '5962317'), + (1071, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm62xD1m', '5962318'), + (1071, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'nm62xD1m', '5965933'), + (1071, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm62xD1m', '5967014'), + (1071, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm62xD1m', '5972815'), + (1071, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm62xD1m', '5974016'), + (1071, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm62xD1m', '5981515'), + (1071, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm62xD1m', '5993516'), + (1071, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm62xD1m', '5998939'), + (1071, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm62xD1m', '6028191'), + (1071, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm62xD1m', '6040066'), + (1071, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm62xD1m', '6042717'), + (1071, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm62xD1m', '6044838'), + (1071, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm62xD1m', '6044839'), + (1071, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm62xD1m', '6045684'), + (1071, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm62xD1m', '6050104'), + (1071, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm62xD1m', '6053195'), + (1071, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm62xD1m', '6053198'), + (1071, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm62xD1m', '6056085'), + (1071, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm62xD1m', '6056916'), + (1071, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm62xD1m', '6059290'), + (1071, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm62xD1m', '6060328'), + (1071, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm62xD1m', '6061037'), + (1071, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm62xD1m', '6061039'), + (1071, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm62xD1m', '6067245'), + (1071, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm62xD1m', '6068094'), + (1071, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm62xD1m', '6068252'), + (1071, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm62xD1m', '6068253'), + (1071, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm62xD1m', '6068254'), + (1071, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm62xD1m', '6068280'), + (1071, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm62xD1m', '6069093'), + (1071, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm62xD1m', '6072528'), + (1071, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm62xD1m', '6079840'), + (1071, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm62xD1m', '6083398'), + (1071, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm62xD1m', '6093504'), + (1071, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm62xD1m', '6097414'), + (1071, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm62xD1m', '6097442'), + (1071, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm62xD1m', '6097684'), + (1071, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm62xD1m', '6098762'), + (1071, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm62xD1m', '6101361'), + (1071, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm62xD1m', '6101362'), + (1071, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm62xD1m', '6107314'), + (1071, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm62xD1m', '6120034'), + (1071, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nm62xD1m', '6136733'), + (1071, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm62xD1m', '6137989'), + (1071, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm62xD1m', '6150864'), + (1071, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm62xD1m', '6155491'), + (1071, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm62xD1m', '6164417'), + (1071, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm62xD1m', '6166388'), + (1071, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm62xD1m', '6176439'), + (1071, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm62xD1m', '6182410'), + (1071, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm62xD1m', '6185812'), + (1071, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm62xD1m', '6187651'), + (1071, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm62xD1m', '6187963'), + (1071, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm62xD1m', '6187964'), + (1071, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm62xD1m', '6187966'), + (1071, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm62xD1m', '6187967'), + (1071, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm62xD1m', '6187969'), + (1071, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm62xD1m', '6334878'), + (1071, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm62xD1m', '6337236'), + (1071, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm62xD1m', '6337970'), + (1071, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm62xD1m', '6338308'), + (1071, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm62xD1m', '6341710'), + (1071, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm62xD1m', '6342044'), + (1071, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm62xD1m', '6342298'), + (1071, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm62xD1m', '6343294'), + (1071, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm62xD1m', '6347034'), + (1071, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm62xD1m', '6347056'), + (1071, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm62xD1m', '6353830'), + (1071, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm62xD1m', '6353831'), + (1071, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm62xD1m', '6357867'), + (1071, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm62xD1m', '6358652'), + (1071, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm62xD1m', '6361709'), + (1071, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm62xD1m', '6361710'), + (1071, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm62xD1m', '6361711'), + (1071, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm62xD1m', '6361712'), + (1071, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm62xD1m', '6361713'), + (1071, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nm62xD1m', '6382573'), + (1071, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm62xD1m', '6388604'), + (1071, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm62xD1m', '6394629'), + (1071, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm62xD1m', '6394631'), + (1071, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm62xD1m', '6440863'), + (1071, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm62xD1m', '6445440'), + (1071, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm62xD1m', '6453951'), + (1071, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm62xD1m', '6461696'), + (1071, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm62xD1m', '6462129'), + (1071, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm62xD1m', '6463218'), + (1071, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm62xD1m', '6472181'), + (1071, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm62xD1m', '6482693'), + (1071, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nm62xD1m', '6484200'), + (1071, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm62xD1m', '6484680'), + (1071, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm62xD1m', '6507741'), + (1071, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm62xD1m', '6514659'), + (1071, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm62xD1m', '6514660'), + (1071, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm62xD1m', '6519103'), + (1071, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm62xD1m', '6535681'), + (1071, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm62xD1m', '6584747'), + (1071, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm62xD1m', '6587097'), + (1071, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm62xD1m', '6609022'), + (1071, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nm62xD1m', '6632757'), + (1071, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm62xD1m', '6644187'), + (1071, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm62xD1m', '6648951'), + (1071, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm62xD1m', '6648952'), + (1071, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm62xD1m', '6655401'), + (1071, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm62xD1m', '6661585'), + (1071, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm62xD1m', '6661588'), + (1071, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm62xD1m', '6661589'), + (1071, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm62xD1m', '6699906'), + (1071, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm62xD1m', '6699913'), + (1071, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm62xD1m', '6701109'), + (1071, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm62xD1m', '6705219'), + (1071, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm62xD1m', '6710153'), + (1071, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm62xD1m', '6711552'), + (1071, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nm62xD1m', '6711553'), + (1071, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm62xD1m', '6722688'), + (1071, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm62xD1m', '6730620'), + (1071, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm62xD1m', '6740364'), + (1071, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm62xD1m', '6743829'), + (1071, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm62xD1m', '7030380'), + (1071, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nm62xD1m', '7033677'), + (1071, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm62xD1m', '7044715'), + (1071, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm62xD1m', '7050318'), + (1071, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm62xD1m', '7050319'), + (1071, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm62xD1m', '7050322'), + (1071, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm62xD1m', '7057804'), + (1071, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm62xD1m', '7072824'), + (1071, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm62xD1m', '7074348'), + (1071, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm62xD1m', '7074364'), + (1071, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nm62xD1m', '7089267'), + (1071, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm62xD1m', '7098747'), + (1071, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm62xD1m', '7113468'), + (1071, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm62xD1m', '7114856'), + (1071, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm62xD1m', '7114951'), + (1071, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm62xD1m', '7114955'), + (1071, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm62xD1m', '7114956'), + (1071, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm62xD1m', '7114957'), + (1071, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm62xD1m', '7159484'), + (1071, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm62xD1m', '7178446'), + (1071, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nm62xD1m', '7220467'), + (1071, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm62xD1m', '7240354'), + (1071, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm62xD1m', '7251633'), + (1071, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm62xD1m', '7324073'), + (1071, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm62xD1m', '7324074'), + (1071, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm62xD1m', '7324075'), + (1071, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm62xD1m', '7324078'), + (1071, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm62xD1m', '7324082'), + (1071, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm62xD1m', '7331457'), + (1071, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm62xD1m', '7363643'), + (1071, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm62xD1m', '7368606'), + (1071, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm62xD1m', '7397462'), + (1071, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm62xD1m', '7424275'), + (1071, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm62xD1m', '7432751'), + (1071, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm62xD1m', '7432752'), + (1071, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm62xD1m', '7432753'), + (1071, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm62xD1m', '7432754'), + (1071, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm62xD1m', '7432755'), + (1071, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm62xD1m', '7432756'), + (1071, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm62xD1m', '7432758'), + (1071, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm62xD1m', '7432759'), + (1071, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm62xD1m', '7433834'), + (1071, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nm62xD1m', '7470197'), + (1071, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm62xD1m', '7685613'), + (1071, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm62xD1m', '7688194'), + (1071, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm62xD1m', '7688196'), + (1071, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm62xD1m', '7688289'), + (1071, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm62xD1m', '7692763'), + (1071, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm62xD1m', '7697552'), + (1071, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm62xD1m', '7699878'), + (1071, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nm62xD1m', '7704043'), + (1071, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm62xD1m', '7712467'), + (1071, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm62xD1m', '7713585'), + (1071, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm62xD1m', '7713586'), + (1071, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm62xD1m', '7738518'), + (1071, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm62xD1m', '7750636'), + (1071, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm62xD1m', '7796540'), + (1071, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm62xD1m', '7796541'), + (1071, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm62xD1m', '7796542'), + (1071, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm62xD1m', '7825913'), + (1071, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm62xD1m', '7826209'), + (1071, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm62xD1m', '7834742'), + (1071, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm62xD1m', '7842108'), + (1071, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm62xD1m', '7842902'), + (1071, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm62xD1m', '7842903'), + (1071, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm62xD1m', '7842904'), + (1071, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm62xD1m', '7842905'), + (1071, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm62xD1m', '7855719'), + (1071, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm62xD1m', '7860683'), + (1071, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm62xD1m', '7860684'), + (1071, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm62xD1m', '7866095'), + (1071, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm62xD1m', '7869170'), + (1071, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm62xD1m', '7869188'), + (1071, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm62xD1m', '7869201'), + (1071, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm62xD1m', '7877465'), + (1071, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm62xD1m', '7888250'), + (1071, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm62xD1m', '7904777'), + (1071, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm62xD1m', '8349164'), + (1071, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm62xD1m', '8349545'), + (1071, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm62xD1m', '8368028'), + (1071, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm62xD1m', '8368029'), + (1071, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm62xD1m', '8388462'), + (1071, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm62xD1m', '8400273'), + (1071, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm62xD1m', '8400275'), + (1071, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nm62xD1m', '8400276'), + (1071, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm62xD1m', '8404977'), + (1071, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm62xD1m', '8430783'), + (1071, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm62xD1m', '8430784'), + (1071, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm62xD1m', '8430799'), + (1071, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm62xD1m', '8430800'), + (1071, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm62xD1m', '8430801'), + (1071, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm62xD1m', '8438709'), + (1071, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm62xD1m', '8457738'), + (1071, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm62xD1m', '8459566'), + (1071, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm62xD1m', '8459567'), + (1071, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm62xD1m', '8461032'), + (1071, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm62xD1m', '8477877'), + (1071, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm62xD1m', '8485688'), + (1071, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm62xD1m', '8490587'), + (1071, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm62xD1m', '8493552'), + (1071, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm62xD1m', '8493553'), + (1071, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm62xD1m', '8493554'), + (1071, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm62xD1m', '8493555'), + (1071, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm62xD1m', '8493556'), + (1071, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm62xD1m', '8493557'), + (1071, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm62xD1m', '8493558'), + (1071, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm62xD1m', '8493559'), + (1071, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm62xD1m', '8493560'), + (1071, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nm62xD1m', '8493561'), + (1071, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm62xD1m', '8493572'), + (1071, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm62xD1m', '8540725'), + (1071, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm62xD1m', '8555421'), + (1072, 401, 'maybe', '2021-05-10 01:09:17', '2025-12-17 19:47:46', 'ydwD6DMm', '3236456'), + (1072, 646, 'not_attending', '2021-05-10 19:13:45', '2025-12-17 19:47:46', 'ydwD6DMm', '3539921'), + (1072, 647, 'not_attending', '2021-05-10 19:13:56', '2025-12-17 19:47:46', 'ydwD6DMm', '3539922'), + (1072, 648, 'not_attending', '2021-05-28 02:45:00', '2025-12-17 19:47:47', 'ydwD6DMm', '3539923'), + (1072, 667, 'attending', '2021-08-28 21:59:38', '2025-12-17 19:47:42', 'ydwD6DMm', '3547145'), + (1072, 741, 'not_attending', '2021-05-19 13:21:10', '2025-12-17 19:47:46', 'ydwD6DMm', '3680618'), + (1072, 742, 'attending', '2021-06-18 23:15:18', '2025-12-17 19:47:48', 'ydwD6DMm', '3680622'), + (1072, 743, 'maybe', '2021-06-25 19:37:22', '2025-12-17 19:47:38', 'ydwD6DMm', '3680623'), + (1072, 761, 'not_attending', '2021-05-10 01:09:23', '2025-12-17 19:47:46', 'ydwD6DMm', '3716041'), + (1072, 792, 'attending', '2021-05-10 19:15:24', '2025-12-17 19:47:46', 'ydwD6DMm', '3793156'), + (1072, 793, 'attending', '2021-06-02 13:34:25', '2025-12-17 19:47:47', 'ydwD6DMm', '3793537'), + (1072, 795, 'maybe', '2021-06-09 16:11:44', '2025-12-17 19:47:47', 'ydwD6DMm', '3793539'), + (1072, 800, 'attending', '2021-05-12 18:37:39', '2025-12-17 19:47:46', 'ydwD6DMm', '3800908'), + (1072, 801, 'attending', '2021-05-13 20:52:00', '2025-12-17 19:47:46', 'ydwD6DMm', '3800910'), + (1072, 807, 'attending', '2021-05-13 00:53:44', '2025-12-17 19:47:46', 'ydwD6DMm', '3807154'), + (1072, 812, 'attending', '2021-05-19 13:20:18', '2025-12-17 19:47:46', 'ydwD6DMm', '3808031'), + (1072, 817, 'not_attending', '2021-05-21 00:19:48', '2025-12-17 19:47:46', 'ydwD6DMm', '3832498'), + (1072, 819, 'maybe', '2021-05-30 16:10:21', '2025-12-17 19:47:47', 'ydwD6DMm', '3833017'), + (1072, 823, 'attending', '2021-06-19 17:34:41', '2025-12-17 19:47:48', 'ydwD6DMm', '3974109'), + (1072, 825, 'attending', '2021-06-08 17:55:35', '2025-12-17 19:47:47', 'ydwD6DMm', '3975283'), + (1072, 826, 'not_attending', '2021-06-16 20:20:54', '2025-12-17 19:47:48', 'ydwD6DMm', '3975310'), + (1072, 827, 'attending', '2021-06-05 22:33:26', '2025-12-17 19:47:47', 'ydwD6DMm', '3975311'), + (1072, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydwD6DMm', '3975312'), + (1072, 830, 'maybe', '2021-05-31 00:04:31', '2025-12-17 19:47:47', 'ydwD6DMm', '3976648'), + (1072, 831, 'attending', '2021-06-04 21:42:42', '2025-12-17 19:47:47', 'ydwD6DMm', '3976649'), + (1072, 832, 'attending', '2021-05-31 00:04:39', '2025-12-17 19:47:47', 'ydwD6DMm', '3976650'), + (1072, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydwD6DMm', '3994992'), + (1072, 844, 'not_attending', '2021-06-23 23:49:05', '2025-12-17 19:47:38', 'ydwD6DMm', '4014338'), + (1072, 866, 'not_attending', '2021-06-18 23:15:21', '2025-12-17 19:47:38', 'ydwD6DMm', '4020424'), + (1072, 867, 'attending', '2021-06-20 16:10:21', '2025-12-17 19:47:38', 'ydwD6DMm', '4021848'), + (1072, 869, 'maybe', '2021-06-30 16:49:08', '2025-12-17 19:47:38', 'ydwD6DMm', '4136744'), + (1072, 870, 'not_attending', '2021-07-03 01:39:17', '2025-12-17 19:47:39', 'ydwD6DMm', '4136937'), + (1072, 871, 'not_attending', '2021-07-03 01:39:23', '2025-12-17 19:47:39', 'ydwD6DMm', '4136938'), + (1072, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwD6DMm', '4136947'), + (1072, 877, 'attending', '2021-06-16 20:20:56', '2025-12-17 19:47:48', 'ydwD6DMm', '4140575'), + (1072, 884, 'not_attending', '2021-07-17 13:14:48', '2025-12-17 19:47:42', 'ydwD6DMm', '4210314'), + (1072, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwD6DMm', '4225444'), + (1072, 899, 'maybe', '2021-07-02 18:06:25', '2025-12-17 19:47:39', 'ydwD6DMm', '4239259'), + (1072, 900, 'attending', '2021-07-20 00:14:19', '2025-12-17 19:47:40', 'ydwD6DMm', '4240316'), + (1072, 901, 'attending', '2021-07-30 22:56:30', '2025-12-17 19:47:40', 'ydwD6DMm', '4240317'), + (1072, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ydwD6DMm', '4240318'), + (1072, 903, 'not_attending', '2021-08-11 17:41:00', '2025-12-17 19:47:42', 'ydwD6DMm', '4240320'), + (1072, 904, 'attending', '2021-07-11 11:23:07', '2025-12-17 19:47:39', 'ydwD6DMm', '4241594'), + (1072, 905, 'maybe', '2021-07-05 02:49:15', '2025-12-17 19:47:39', 'ydwD6DMm', '4250163'), + (1072, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ydwD6DMm', '4275957'), + (1072, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydwD6DMm', '4277819'), + (1072, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydwD6DMm', '4301723'), + (1072, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ydwD6DMm', '4302093'), + (1072, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydwD6DMm', '4304151'), + (1072, 940, 'attending', '2021-07-30 22:56:57', '2025-12-17 19:47:40', 'ydwD6DMm', '4309049'), + (1072, 958, 'attending', '2021-08-12 00:30:29', '2025-12-17 19:47:41', 'ydwD6DMm', '4342996'), + (1072, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ydwD6DMm', '4366186'), + (1072, 974, 'attending', '2021-08-25 17:35:31', '2025-12-17 19:47:42', 'ydwD6DMm', '4366187'), + (1072, 984, 'maybe', '2021-08-22 19:30:07', '2025-12-17 19:47:42', 'ydwD6DMm', '4391258'), + (1072, 990, 'attending', '2021-08-29 03:34:39', '2025-12-17 19:47:43', 'ydwD6DMm', '4420735'), + (1072, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ydwD6DMm', '4420738'), + (1072, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ydwD6DMm', '4420739'), + (1072, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ydwD6DMm', '4420741'), + (1072, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ydwD6DMm', '4420744'), + (1072, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ydwD6DMm', '4420747'), + (1072, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ydwD6DMm', '4420748'), + (1072, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ydwD6DMm', '4420749'), + (1072, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwD6DMm', '6045684'), + (1073, 2530, 'maybe', '2024-08-15 16:53:23', '2025-12-17 19:46:31', 'mRoDkloA', '7074373'), + (1073, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mRoDkloA', '7324082'), + (1073, 2798, 'attending', '2024-08-12 18:59:41', '2025-12-17 19:46:31', 'mRoDkloA', '7395910'), + (1073, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mRoDkloA', '7397462'), + (1073, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mRoDkloA', '7432751'), + (1073, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mRoDkloA', '7432752'), + (1073, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mRoDkloA', '7432753'), + (1073, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mRoDkloA', '7432754'), + (1073, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mRoDkloA', '7432755'), + (1073, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mRoDkloA', '7432756'), + (1073, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mRoDkloA', '7432758'), + (1073, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mRoDkloA', '7432759'), + (1073, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mRoDkloA', '7433834'), + (1074, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'R40OJqVA', '3236452'), + (1074, 646, 'not_attending', '2021-05-13 00:01:49', '2025-12-17 19:47:46', 'R40OJqVA', '3539921'), + (1074, 647, 'not_attending', '2021-05-22 17:49:12', '2025-12-17 19:47:46', 'R40OJqVA', '3539922'), + (1074, 648, 'not_attending', '2021-05-28 20:56:47', '2025-12-17 19:47:47', 'R40OJqVA', '3539923'), + (1074, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'R40OJqVA', '3806392'), + (1074, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'R40OJqVA', '3963335'), + (1074, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40OJqVA', '3974109'), + (1074, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'R40OJqVA', '3975311'), + (1074, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40OJqVA', '3975312'), + (1074, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'R40OJqVA', '3994992'), + (1074, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40OJqVA', '4014338'), + (1074, 867, 'maybe', '2021-07-02 23:31:25', '2025-12-17 19:47:38', 'R40OJqVA', '4021848'), + (1074, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40OJqVA', '4136744'), + (1074, 870, 'maybe', '2021-07-03 23:09:41', '2025-12-17 19:47:39', 'R40OJqVA', '4136937'), + (1074, 871, 'not_attending', '2021-07-10 06:02:16', '2025-12-17 19:47:39', 'R40OJqVA', '4136938'), + (1074, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40OJqVA', '4136947'), + (1074, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'R40OJqVA', '4210314'), + (1074, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40OJqVA', '4225444'), + (1074, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40OJqVA', '4239259'), + (1074, 900, 'not_attending', '2021-07-31 21:15:07', '2025-12-17 19:47:40', 'R40OJqVA', '4240316'), + (1074, 901, 'not_attending', '2021-07-31 21:15:03', '2025-12-17 19:47:40', 'R40OJqVA', '4240317'), + (1074, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'R40OJqVA', '4240318'), + (1074, 903, 'not_attending', '2021-08-13 20:57:41', '2025-12-17 19:47:42', 'R40OJqVA', '4240320'), + (1074, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40OJqVA', '4250163'), + (1074, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'R40OJqVA', '4275957'), + (1074, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'R40OJqVA', '4277819'), + (1074, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'R40OJqVA', '4301723'), + (1074, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'R40OJqVA', '4302093'), + (1074, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'R40OJqVA', '4304151'), + (1074, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'R40OJqVA', '4345519'), + (1074, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'R40OJqVA', '4356801'), + (1074, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'R40OJqVA', '4358025'), + (1074, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'R40OJqVA', '4366186'), + (1074, 974, 'maybe', '2021-08-28 12:31:16', '2025-12-17 19:47:43', 'R40OJqVA', '4366187'), + (1074, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'R40OJqVA', '4402823'), + (1074, 990, 'not_attending', '2021-09-04 17:15:31', '2025-12-17 19:47:43', 'R40OJqVA', '4420735'), + (1074, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'R40OJqVA', '4420738'), + (1074, 992, 'not_attending', '2021-09-18 21:36:19', '2025-12-17 19:47:34', 'R40OJqVA', '4420739'), + (1074, 993, 'not_attending', '2021-09-25 19:40:11', '2025-12-17 19:47:34', 'R40OJqVA', '4420741'), + (1074, 995, 'not_attending', '2021-10-09 17:44:02', '2025-12-17 19:47:34', 'R40OJqVA', '4420744'), + (1074, 996, 'maybe', '2021-10-09 17:45:13', '2025-12-17 19:47:35', 'R40OJqVA', '4420747'), + (1074, 997, 'not_attending', '2021-10-30 21:40:27', '2025-12-17 19:47:35', 'R40OJqVA', '4420748'), + (1074, 998, 'not_attending', '2021-10-30 21:40:07', '2025-12-17 19:47:36', 'R40OJqVA', '4420749'), + (1074, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'R40OJqVA', '4461883'), + (1074, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'R40OJqVA', '4508342'), + (1074, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'R40OJqVA', '4568602'), + (1074, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'R40OJqVA', '4572153'), + (1074, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'R40OJqVA', '4585962'), + (1074, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'R40OJqVA', '4596356'), + (1074, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'R40OJqVA', '4598860'), + (1074, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'R40OJqVA', '4598861'), + (1074, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'R40OJqVA', '4602797'), + (1074, 1108, 'not_attending', '2021-11-18 02:09:37', '2025-12-17 19:47:37', 'R40OJqVA', '4632276'), + (1074, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'R40OJqVA', '4637896'), + (1074, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'R40OJqVA', '4642994'), + (1074, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'R40OJqVA', '4642995'), + (1074, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'R40OJqVA', '4642996'), + (1074, 1119, 'maybe', '2021-12-17 22:03:54', '2025-12-17 19:47:31', 'R40OJqVA', '4642997'), + (1074, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'R40OJqVA', '4645687'), + (1074, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'R40OJqVA', '4645698'), + (1074, 1128, 'not_attending', '2021-11-20 17:39:58', '2025-12-17 19:47:37', 'R40OJqVA', '4645704'), + (1074, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'R40OJqVA', '4645705'), + (1074, 1130, 'not_attending', '2021-12-04 22:21:40', '2025-12-17 19:47:37', 'R40OJqVA', '4658824'), + (1074, 1131, 'attending', '2021-12-17 22:03:32', '2025-12-17 19:47:31', 'R40OJqVA', '4658825'), + (1074, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'R40OJqVA', '4668385'), + (1074, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'R40OJqVA', '4694407'), + (1074, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'R40OJqVA', '4736497'), + (1074, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'R40OJqVA', '4736499'), + (1074, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'R40OJqVA', '4736500'), + (1074, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'R40OJqVA', '4736503'), + (1074, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'R40OJqVA', '4736504'), + (1074, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'R40OJqVA', '4746789'), + (1074, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'R40OJqVA', '4753929'), + (1074, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'R40OJqVA', '5038850'), + (1074, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'R40OJqVA', '5045826'), + (1074, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'R40OJqVA', '5132533'), + (1074, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'R40OJqVA', '5186582'), + (1074, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'R40OJqVA', '5186583'), + (1074, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'R40OJqVA', '5186585'), + (1074, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'R40OJqVA', '5190437'), + (1074, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'R40OJqVA', '5215989'), + (1074, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40OJqVA', '6045684'), + (1075, 1725, 'not_attending', '2022-11-18 09:02:55', '2025-12-17 19:47:16', '8d8DY6Nd', '5630967'), + (1075, 1726, 'maybe', '2022-11-20 22:48:56', '2025-12-17 19:47:16', '8d8DY6Nd', '5630968'), + (1075, 1727, 'attending', '2022-11-21 12:10:21', '2025-12-17 19:47:16', '8d8DY6Nd', '5630969'), + (1075, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '8d8DY6Nd', '5642818'), + (1075, 1761, 'maybe', '2022-11-17 11:59:46', '2025-12-17 19:47:16', '8d8DY6Nd', '5670434'), + (1075, 1762, 'maybe', '2022-11-21 12:10:13', '2025-12-17 19:47:16', '8d8DY6Nd', '5670445'), + (1075, 1768, 'attending', '2022-11-17 22:25:20', '2025-12-17 19:47:16', '8d8DY6Nd', '5674062'), + (1075, 1787, 'attending', '2022-11-17 22:32:33', '2025-12-17 19:47:16', '8d8DY6Nd', '5727234'), + (1075, 1793, 'attending', '2022-11-17 07:32:05', '2025-12-17 19:47:16', '8d8DY6Nd', '5736365'), + (1075, 1797, 'maybe', '2022-12-08 23:30:19', '2025-12-17 19:47:17', '8d8DY6Nd', '5757486'), + (1075, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '8d8DY6Nd', '5763458'), + (1075, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '8d8DY6Nd', '5774172'), + (1075, 1828, 'attending', '2022-11-28 20:40:03', '2025-12-17 19:47:16', '8d8DY6Nd', '5778865'), + (1075, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '8d8DY6Nd', '5818247'), + (1075, 1834, 'maybe', '2022-12-08 23:30:12', '2025-12-17 19:47:17', '8d8DY6Nd', '5819470'), + (1075, 1835, 'maybe', '2022-12-10 13:07:09', '2025-12-17 19:47:05', '8d8DY6Nd', '5819471'), + (1075, 1840, 'maybe', '2022-12-08 23:29:33', '2025-12-17 19:47:17', '8d8DY6Nd', '5822288'), + (1075, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '8d8DY6Nd', '5827739'), + (1075, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '8d8DY6Nd', '5844306'), + (1075, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '8d8DY6Nd', '5850159'), + (1075, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '8d8DY6Nd', '5858999'), + (1075, 1853, 'maybe', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '8d8DY6Nd', '5871984'), + (1075, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '8d8DY6Nd', '5876354'), + (1075, 1864, 'maybe', '2023-01-21 19:52:07', '2025-12-17 19:47:05', '8d8DY6Nd', '5879675'), + (1075, 1865, 'maybe', '2023-01-22 00:32:18', '2025-12-17 19:47:06', '8d8DY6Nd', '5879676'), + (1075, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '8d8DY6Nd', '5880939'), + (1075, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '8d8DY6Nd', '5880940'), + (1075, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '8d8DY6Nd', '5880942'), + (1075, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '8d8DY6Nd', '5880943'), + (1075, 1870, 'attending', '2023-01-17 22:17:02', '2025-12-17 19:47:05', '8d8DY6Nd', '5881740'), + (1075, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '8d8DY6Nd', '5887890'), + (1075, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '8d8DY6Nd', '5888598'), + (1075, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '8d8DY6Nd', '5893260'), + (1075, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '8d8DY6Nd', '5899826'), + (1075, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '8d8DY6Nd', '5900199'), + (1075, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '8d8DY6Nd', '5900200'), + (1075, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '8d8DY6Nd', '5900202'), + (1075, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '8d8DY6Nd', '5900203'), + (1075, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '8d8DY6Nd', '5901108'), + (1075, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '8d8DY6Nd', '5901126'), + (1075, 1897, 'maybe', '2023-02-10 21:49:25', '2025-12-17 19:47:07', '8d8DY6Nd', '5901128'), + (1075, 1899, 'not_attending', '2023-02-10 21:49:14', '2025-12-17 19:47:07', '8d8DY6Nd', '5901323'), + (1075, 1909, 'not_attending', '2023-02-10 21:49:02', '2025-12-17 19:47:07', '8d8DY6Nd', '5906541'), + (1075, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '8d8DY6Nd', '5909655'), + (1075, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '8d8DY6Nd', '5910522'), + (1075, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '8d8DY6Nd', '5910526'), + (1075, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '8d8DY6Nd', '5910528'), + (1075, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '8d8DY6Nd', '5916219'), + (1075, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '8d8DY6Nd', '5936234'), + (1075, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '8d8DY6Nd', '5958351'), + (1075, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '8d8DY6Nd', '5959751'), + (1075, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '8d8DY6Nd', '5959755'), + (1075, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '8d8DY6Nd', '5960055'), + (1075, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '8d8DY6Nd', '5961684'), + (1075, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '8d8DY6Nd', '5962132'), + (1075, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '8d8DY6Nd', '5962133'), + (1075, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '8d8DY6Nd', '5962134'), + (1075, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '8d8DY6Nd', '5962317'), + (1075, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '8d8DY6Nd', '5962318'), + (1075, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '8d8DY6Nd', '5965933'), + (1075, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '8d8DY6Nd', '5967014'), + (1075, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '8d8DY6Nd', '5972815'), + (1075, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '8d8DY6Nd', '5974016'), + (1075, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '8d8DY6Nd', '5975052'), + (1075, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '8d8DY6Nd', '5975054'), + (1075, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '8d8DY6Nd', '5981515'), + (1075, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '8d8DY6Nd', '5993516'), + (1075, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '8d8DY6Nd', '5998939'), + (1075, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '8d8DY6Nd', '6028191'), + (1075, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '8d8DY6Nd', '6040066'), + (1075, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '8d8DY6Nd', '6042717'), + (1075, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '8d8DY6Nd', '6044838'), + (1075, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '8d8DY6Nd', '6044839'), + (1075, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '8d8DY6Nd', '6045684'), + (1075, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '8d8DY6Nd', '6050104'), + (1075, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '8d8DY6Nd', '6053195'), + (1075, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '8d8DY6Nd', '6053198'), + (1075, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '8d8DY6Nd', '6056085'), + (1075, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '8d8DY6Nd', '6056916'), + (1075, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '8d8DY6Nd', '6059290'), + (1075, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '8d8DY6Nd', '6060328'), + (1075, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '8d8DY6Nd', '6061037'), + (1075, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '8d8DY6Nd', '6061039'), + (1075, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8d8DY6Nd', '6067245'), + (1075, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '8d8DY6Nd', '6068094'), + (1075, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '8d8DY6Nd', '6068252'), + (1075, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '8d8DY6Nd', '6068253'), + (1075, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '8d8DY6Nd', '6068254'), + (1075, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '8d8DY6Nd', '6068280'), + (1075, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '8d8DY6Nd', '6069093'), + (1075, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '8d8DY6Nd', '6072528'), + (1075, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '8d8DY6Nd', '6075556'), + (1075, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '8d8DY6Nd', '6079840'), + (1075, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '8d8DY6Nd', '6083398'), + (1075, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '8d8DY6Nd', '6093504'), + (1075, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '8d8DY6Nd', '6097414'), + (1075, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '8d8DY6Nd', '6097442'), + (1075, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '8d8DY6Nd', '6097684'), + (1075, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '8d8DY6Nd', '6098762'), + (1075, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8d8DY6Nd', '6101362'), + (1075, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8d8DY6Nd', '6107314'), + (1076, 2555, 'attending', '2024-04-13 18:08:16', '2025-12-17 19:46:34', 'dzb96lLd', '7114951'), + (1076, 2556, 'attending', '2024-04-16 22:15:50', '2025-12-17 19:46:34', 'dzb96lLd', '7114955'), + (1076, 2582, 'maybe', '2024-04-16 22:15:08', '2025-12-17 19:46:34', 'dzb96lLd', '7169765'), + (1076, 2587, 'attending', '2024-04-16 20:02:22', '2025-12-17 19:46:34', 'dzb96lLd', '7176152'), + (1076, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzb96lLd', '7178446'), + (1077, 971, 'attending', '2021-09-08 22:26:49', '2025-12-17 19:47:43', '4oMyE8om', '4356801'), + (1077, 991, 'attending', '2021-09-07 05:41:28', '2025-12-17 19:47:43', '4oMyE8om', '4420738'), + (1077, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', '4oMyE8om', '4420739'), + (1077, 993, 'not_attending', '2021-09-25 21:03:58', '2025-12-17 19:47:34', '4oMyE8om', '4420741'), + (1077, 995, 'maybe', '2021-10-09 16:38:52', '2025-12-17 19:47:34', '4oMyE8om', '4420744'), + (1077, 996, 'attending', '2021-10-10 16:49:42', '2025-12-17 19:47:35', '4oMyE8om', '4420747'), + (1077, 1003, 'attending', '2021-09-03 22:12:30', '2025-12-17 19:47:43', '4oMyE8om', '4438802'), + (1077, 1023, 'not_attending', '2021-09-09 23:49:24', '2025-12-17 19:47:43', '4oMyE8om', '4461883'), + (1077, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4oMyE8om', '4508342'), + (1077, 1086, 'not_attending', '2021-10-15 22:52:25', '2025-12-17 19:47:35', '4oMyE8om', '4568602'), + (1077, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4oMyE8om', '4572153'), + (1077, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMyE8om', '4585962'), + (1077, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4oMyE8om', '4596356'), + (1077, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4oMyE8om', '4598860'), + (1077, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4oMyE8om', '4598861'), + (1077, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4oMyE8om', '4602797'), + (1077, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4oMyE8om', '4637896'), + (1077, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4oMyE8om', '4642994'), + (1077, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4oMyE8om', '4642995'), + (1077, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4oMyE8om', '4642996'), + (1077, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4oMyE8om', '4642997'), + (1077, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4oMyE8om', '4645687'), + (1077, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4oMyE8om', '4645698'), + (1077, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4oMyE8om', '4645704'), + (1077, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4oMyE8om', '4645705'), + (1077, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4oMyE8om', '4668385'), + (1077, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4oMyE8om', '4694407'), + (1077, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMyE8om', '4736497'), + (1077, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMyE8om', '4736499'), + (1077, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4oMyE8om', '4736500'), + (1077, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMyE8om', '4736503'), + (1077, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMyE8om', '4736504'), + (1077, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4oMyE8om', '4746789'), + (1077, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMyE8om', '4753929'), + (1077, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMyE8om', '5038850'), + (1077, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMyE8om', '5045826'), + (1077, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMyE8om', '5132533'), + (1077, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMyE8om', '5186582'), + (1077, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMyE8om', '5186583'), + (1077, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMyE8om', '5186585'), + (1077, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMyE8om', '5190437'), + (1077, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMyE8om', '5215989'), + (1077, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4oMyE8om', '6045684'), + (1078, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBnge3wd', '6045684'), + (1079, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '41qWD0b4', '7324082'), + (1079, 2798, 'not_attending', '2024-08-11 19:42:25', '2025-12-17 19:46:31', '41qWD0b4', '7395910'), + (1079, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '41qWD0b4', '7397462'), + (1079, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '41qWD0b4', '7424275'), + (1079, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '41qWD0b4', '7432751'), + (1079, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '41qWD0b4', '7432752'), + (1079, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '41qWD0b4', '7432753'), + (1079, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '41qWD0b4', '7432754'), + (1079, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '41qWD0b4', '7432755'), + (1079, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '41qWD0b4', '7432756'), + (1079, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '41qWD0b4', '7432758'), + (1079, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '41qWD0b4', '7432759'), + (1079, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '41qWD0b4', '7433834'), + (1079, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '41qWD0b4', '7470197'), + (1079, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '41qWD0b4', '7685613'), + (1079, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '41qWD0b4', '7688194'), + (1079, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '41qWD0b4', '7688196'), + (1079, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '41qWD0b4', '7688289'), + (1080, 1515, 'maybe', '2022-08-06 14:04:51', '2025-12-17 19:47:21', 'd3VYzrO4', '5441128'), + (1080, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd3VYzrO4', '5441131'), + (1080, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd3VYzrO4', '5441132'), + (1080, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd3VYzrO4', '5461278'), + (1080, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd3VYzrO4', '5469480'), + (1080, 1569, 'attending', '2022-08-05 19:33:46', '2025-12-17 19:47:21', 'd3VYzrO4', '5481507'), + (1080, 1574, 'attending', '2022-08-08 05:40:19', '2025-12-17 19:47:22', 'd3VYzrO4', '5482153'), + (1080, 1576, 'attending', '2022-08-02 03:04:28', '2025-12-17 19:47:21', 'd3VYzrO4', '5482623'), + (1080, 1577, 'attending', '2022-08-03 22:06:56', '2025-12-17 19:47:21', 'd3VYzrO4', '5482793'), + (1080, 1578, 'maybe', '2022-08-02 05:55:46', '2025-12-17 19:47:21', 'd3VYzrO4', '5483073'), + (1080, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd3VYzrO4', '5488912'), + (1080, 1582, 'maybe', '2022-08-08 05:40:03', '2025-12-17 19:47:23', 'd3VYzrO4', '5492001'), + (1080, 1583, 'attending', '2022-08-08 05:39:53', '2025-12-17 19:47:22', 'd3VYzrO4', '5492002'), + (1080, 1586, 'attending', '2022-08-08 05:40:05', '2025-12-17 19:47:23', 'd3VYzrO4', '5492019'), + (1080, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd3VYzrO4', '5492192'), + (1080, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd3VYzrO4', '5493139'), + (1080, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd3VYzrO4', '5493200'), + (1080, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd3VYzrO4', '5502188'), + (1080, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd3VYzrO4', '5505059'), + (1080, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', 'd3VYzrO4', '5509055'), + (1080, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd3VYzrO4', '5512862'), + (1080, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd3VYzrO4', '5513985'), + (1080, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'd3VYzrO4', '5519981'), + (1080, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd3VYzrO4', '5522550'), + (1080, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd3VYzrO4', '5534683'), + (1080, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd3VYzrO4', '5537735'), + (1080, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd3VYzrO4', '5540859'), + (1080, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd3VYzrO4', '5546619'), + (1080, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd3VYzrO4', '5555245'), + (1080, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd3VYzrO4', '5557747'), + (1080, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd3VYzrO4', '5560255'), + (1080, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd3VYzrO4', '5562906'), + (1080, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd3VYzrO4', '5600604'), + (1080, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd3VYzrO4', '5605544'), + (1080, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', 'd3VYzrO4', '5606737'), + (1080, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd3VYzrO4', '5630960'), + (1080, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd3VYzrO4', '5630961'), + (1080, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd3VYzrO4', '5630962'), + (1080, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd3VYzrO4', '5630966'), + (1080, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd3VYzrO4', '5630967'), + (1080, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd3VYzrO4', '5630968'), + (1080, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd3VYzrO4', '5635406'), + (1080, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd3VYzrO4', '5638765'), + (1080, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd3VYzrO4', '5640097'), + (1080, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'd3VYzrO4', '5640843'), + (1080, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd3VYzrO4', '5641521'), + (1080, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd3VYzrO4', '5642818'), + (1080, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd3VYzrO4', '5652395'), + (1080, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd3VYzrO4', '5670445'), + (1080, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd3VYzrO4', '5671637'), + (1080, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd3VYzrO4', '5672329'), + (1080, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd3VYzrO4', '5674057'), + (1080, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd3VYzrO4', '5674060'), + (1080, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd3VYzrO4', '5677461'), + (1080, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd3VYzrO4', '5698046'), + (1080, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd3VYzrO4', '5699760'), + (1080, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd3VYzrO4', '5741601'), + (1080, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd3VYzrO4', '5763458'), + (1080, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd3VYzrO4', '5774172'), + (1080, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd3VYzrO4', '5818247'), + (1080, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd3VYzrO4', '5819471'), + (1080, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd3VYzrO4', '5827739'), + (1080, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd3VYzrO4', '5844306'), + (1080, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd3VYzrO4', '5850159'), + (1080, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd3VYzrO4', '5858999'), + (1080, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd3VYzrO4', '5871984'), + (1080, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd3VYzrO4', '5876354'), + (1080, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd3VYzrO4', '5880939'), + (1080, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd3VYzrO4', '5887890'), + (1080, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd3VYzrO4', '5888598'), + (1080, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd3VYzrO4', '5893260'), + (1080, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3VYzrO4', '6045684'), + (1081, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4oxjazYd', '5441131'), + (1081, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '4oxjazYd', '5441132'), + (1081, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4oxjazYd', '5505059'), + (1081, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4oxjazYd', '5509055'), + (1081, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', '4oxjazYd', '5513985'), + (1081, 1628, 'attending', '2022-08-29 22:47:19', '2025-12-17 19:47:23', '4oxjazYd', '5522500'), + (1081, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', '4oxjazYd', '5534683'), + (1081, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4oxjazYd', '5537735'), + (1081, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4oxjazYd', '5540859'), + (1081, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4oxjazYd', '5546619'), + (1081, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4oxjazYd', '5555245'), + (1081, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4oxjazYd', '5557747'), + (1081, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4oxjazYd', '5560255'), + (1081, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4oxjazYd', '5562906'), + (1081, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4oxjazYd', '5600604'), + (1081, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4oxjazYd', '5605544'), + (1081, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', '4oxjazYd', '5606737'), + (1081, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4oxjazYd', '5630960'), + (1081, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4oxjazYd', '5630961'), + (1081, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4oxjazYd', '5630962'), + (1081, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4oxjazYd', '5630966'), + (1081, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4oxjazYd', '5630967'), + (1081, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4oxjazYd', '5630968'), + (1081, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4oxjazYd', '5635406'), + (1081, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4oxjazYd', '5638765'), + (1081, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4oxjazYd', '5640097'), + (1081, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4oxjazYd', '5640843'), + (1081, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4oxjazYd', '5641521'), + (1081, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4oxjazYd', '5642818'), + (1081, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4oxjazYd', '5652395'), + (1081, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4oxjazYd', '5670445'), + (1081, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4oxjazYd', '5671637'), + (1081, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4oxjazYd', '5672329'), + (1081, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4oxjazYd', '5674057'), + (1081, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4oxjazYd', '5674060'), + (1081, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4oxjazYd', '5677461'), + (1081, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4oxjazYd', '5698046'), + (1081, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4oxjazYd', '5699760'), + (1081, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4oxjazYd', '5741601'), + (1081, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4oxjazYd', '5763458'), + (1081, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4oxjazYd', '5774172'), + (1081, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4oxjazYd', '5818247'), + (1081, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4oxjazYd', '5819471'), + (1081, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4oxjazYd', '5827739'), + (1081, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4oxjazYd', '5844306'), + (1081, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4oxjazYd', '5850159'), + (1081, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4oxjazYd', '5858999'), + (1081, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4oxjazYd', '5871984'), + (1081, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4oxjazYd', '5876354'), + (1081, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4oxjazYd', '5880939'), + (1081, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4oxjazYd', '5887890'), + (1081, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4oxjazYd', '5888598'), + (1081, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4oxjazYd', '5893260'), + (1081, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oxjazYd', '6045684'), + (1082, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'o4PK2xrA', '5630966'), + (1082, 1725, 'attending', '2022-11-13 04:50:33', '2025-12-17 19:47:16', 'o4PK2xrA', '5630967'), + (1082, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'o4PK2xrA', '5630968'), + (1082, 1727, 'attending', '2022-12-03 03:35:39', '2025-12-17 19:47:16', 'o4PK2xrA', '5630969'), + (1082, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'o4PK2xrA', '5642818'), + (1082, 1750, 'not_attending', '2022-11-03 03:14:46', '2025-12-17 19:47:15', 'o4PK2xrA', '5652365'), + (1082, 1757, 'attending', '2022-11-03 03:05:42', '2025-12-17 19:47:15', 'o4PK2xrA', '5668974'), + (1082, 1761, 'maybe', '2022-11-14 06:22:19', '2025-12-17 19:47:16', 'o4PK2xrA', '5670434'), + (1082, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'o4PK2xrA', '5670445'), + (1082, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'o4PK2xrA', '5699760'), + (1082, 1786, 'not_attending', '2022-11-07 00:16:26', '2025-12-17 19:47:15', 'o4PK2xrA', '5727232'), + (1082, 1789, 'attending', '2022-11-10 02:28:49', '2025-12-17 19:47:15', 'o4PK2xrA', '5727274'), + (1082, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'o4PK2xrA', '5741601'), + (1082, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'o4PK2xrA', '5763458'), + (1082, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'o4PK2xrA', '5774172'), + (1082, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'o4PK2xrA', '5818247'), + (1082, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'o4PK2xrA', '5819471'), + (1082, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'o4PK2xrA', '5827739'), + (1082, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'o4PK2xrA', '5844306'), + (1082, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'o4PK2xrA', '5850159'), + (1082, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'o4PK2xrA', '5858999'), + (1082, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'o4PK2xrA', '5871984'), + (1082, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'o4PK2xrA', '5876354'), + (1082, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'o4PK2xrA', '5880939'), + (1082, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'o4PK2xrA', '5880940'), + (1082, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'o4PK2xrA', '5880942'), + (1082, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'o4PK2xrA', '5880943'), + (1082, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'o4PK2xrA', '5887890'), + (1082, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'o4PK2xrA', '5888598'), + (1082, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'o4PK2xrA', '5893260'), + (1082, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'o4PK2xrA', '5899826'), + (1082, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'o4PK2xrA', '5900199'), + (1082, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'o4PK2xrA', '5900200'), + (1082, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'o4PK2xrA', '5900202'), + (1082, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'o4PK2xrA', '5900203'), + (1082, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'o4PK2xrA', '5901108'), + (1082, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'o4PK2xrA', '5901126'), + (1082, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'o4PK2xrA', '5909655'), + (1082, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'o4PK2xrA', '5910522'), + (1082, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'o4PK2xrA', '5910526'), + (1082, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'o4PK2xrA', '5910528'), + (1082, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'o4PK2xrA', '5916219'), + (1082, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'o4PK2xrA', '5936234'), + (1082, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'o4PK2xrA', '5958351'), + (1082, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'o4PK2xrA', '5959751'), + (1082, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'o4PK2xrA', '5959755'), + (1082, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'o4PK2xrA', '5960055'), + (1082, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'o4PK2xrA', '5961684'), + (1082, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'o4PK2xrA', '5962132'), + (1082, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'o4PK2xrA', '5962133'), + (1082, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'o4PK2xrA', '5962134'), + (1082, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'o4PK2xrA', '5962317'), + (1082, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'o4PK2xrA', '5962318'), + (1082, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'o4PK2xrA', '5965933'), + (1082, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'o4PK2xrA', '5967014'), + (1082, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'o4PK2xrA', '5972815'), + (1082, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'o4PK2xrA', '5974016'), + (1082, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'o4PK2xrA', '5981515'), + (1082, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'o4PK2xrA', '5993516'), + (1082, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'o4PK2xrA', '5998939'), + (1082, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'o4PK2xrA', '6028191'), + (1082, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'o4PK2xrA', '6040066'), + (1082, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'o4PK2xrA', '6042717'), + (1082, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'o4PK2xrA', '6044838'), + (1082, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'o4PK2xrA', '6044839'), + (1082, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'o4PK2xrA', '6045684'), + (1082, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'o4PK2xrA', '6050104'), + (1082, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'o4PK2xrA', '6053195'), + (1082, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'o4PK2xrA', '6053198'), + (1082, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'o4PK2xrA', '6056085'), + (1082, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'o4PK2xrA', '6056916'), + (1082, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'o4PK2xrA', '6059290'), + (1082, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'o4PK2xrA', '6060328'), + (1082, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'o4PK2xrA', '6061037'), + (1082, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'o4PK2xrA', '6061039'), + (1082, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'o4PK2xrA', '6067245'), + (1082, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'o4PK2xrA', '6068094'), + (1082, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'o4PK2xrA', '6068252'), + (1082, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'o4PK2xrA', '6068253'), + (1082, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'o4PK2xrA', '6068254'), + (1082, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'o4PK2xrA', '6068280'), + (1082, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'o4PK2xrA', '6069093'), + (1082, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'o4PK2xrA', '6072528'), + (1082, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'o4PK2xrA', '6079840'), + (1082, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'o4PK2xrA', '6083398'), + (1082, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'o4PK2xrA', '6093504'), + (1082, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'o4PK2xrA', '6097414'), + (1082, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'o4PK2xrA', '6097442'), + (1082, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'o4PK2xrA', '6097684'), + (1082, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'o4PK2xrA', '6098762'), + (1082, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'o4PK2xrA', '6101362'), + (1082, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'o4PK2xrA', '6103752'), + (1082, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'o4PK2xrA', '6107314'), + (1083, 197, 'attending', '2020-08-22 17:39:59', '2025-12-17 19:47:56', 'x4o1pKJm', '3087266'), + (1083, 198, 'attending', '2020-08-28 18:57:32', '2025-12-17 19:47:56', 'x4o1pKJm', '3087267'), + (1083, 199, 'not_attending', '2020-09-05 23:18:15', '2025-12-17 19:47:56', 'x4o1pKJm', '3087268'), + (1083, 219, 'attending', '2020-08-19 22:57:19', '2025-12-17 19:47:56', 'x4o1pKJm', '3129263'), + (1083, 223, 'not_attending', '2020-09-05 21:28:16', '2025-12-17 19:47:56', 'x4o1pKJm', '3129980'), + (1083, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'x4o1pKJm', '3186057'), + (1083, 313, 'maybe', '2020-08-23 14:42:26', '2025-12-17 19:47:56', 'x4o1pKJm', '3188127'), + (1083, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'x4o1pKJm', '3191735'), + (1083, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', 'x4o1pKJm', '3193885'), + (1083, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'x4o1pKJm', '3200209'), + (1083, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', 'x4o1pKJm', '3200495'), + (1083, 343, 'not_attending', '2020-09-21 22:56:44', '2025-12-17 19:47:56', 'x4o1pKJm', '3206759'), + (1083, 362, 'not_attending', '2020-09-25 19:23:20', '2025-12-17 19:47:52', 'x4o1pKJm', '3214207'), + (1083, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'x4o1pKJm', '3217037'), + (1083, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'x4o1pKJm', '3218510'), + (1083, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', 'x4o1pKJm', '3221403'), + (1083, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'x4o1pKJm', '3228698'), + (1083, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'x4o1pKJm', '3228699'), + (1083, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'x4o1pKJm', '3228700'), + (1083, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'x4o1pKJm', '3228701'), + (1083, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'x4o1pKJm', '3245751'), + (1083, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'x4o1pKJm', '3250232'), + (1083, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'x4o1pKJm', '3256168'), + (1083, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4o1pKJm', '6045684'), + (1084, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRBbYXYm', '6045684'), + (1085, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dK3xjJ9d', '4736497'), + (1085, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dK3xjJ9d', '4736499'), + (1085, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dK3xjJ9d', '4736500'), + (1085, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dK3xjJ9d', '4736503'), + (1085, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dK3xjJ9d', '4736504'), + (1085, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dK3xjJ9d', '4746789'), + (1085, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dK3xjJ9d', '4753929'), + (1085, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dK3xjJ9d', '5038850'), + (1085, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dK3xjJ9d', '5045826'), + (1085, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dK3xjJ9d', '5132533'), + (1085, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dK3xjJ9d', '6045684'), + (1086, 707, 'maybe', '2021-04-11 10:30:01', '2025-12-17 19:47:46', 'bdz1vya4', '3583262'), + (1086, 724, 'maybe', '2021-04-11 10:29:54', '2025-12-17 19:47:46', 'bdz1vya4', '3661369'), + (1086, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz1vya4', '6045684'), + (1087, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'VmM1BMQm', '3406988'), + (1087, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'VmM1BMQm', '3416576'), + (1087, 564, 'attending', '2021-01-22 21:46:55', '2025-12-17 19:47:49', 'VmM1BMQm', '3426074'), + (1087, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'VmM1BMQm', '3430267'), + (1087, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'VmM1BMQm', '3468125'), + (1087, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VmM1BMQm', '3470303'), + (1087, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'VmM1BMQm', '3470305'), + (1087, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VmM1BMQm', '3470991'), + (1087, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VmM1BMQm', '3517815'), + (1087, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'VmM1BMQm', '3523941'), + (1087, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VmM1BMQm', '3533850'), + (1087, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VmM1BMQm', '3536632'), + (1087, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VmM1BMQm', '3536656'), + (1087, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VmM1BMQm', '3539916'), + (1087, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VmM1BMQm', '3539917'), + (1087, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VmM1BMQm', '3539918'), + (1087, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VmM1BMQm', '3539919'), + (1087, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VmM1BMQm', '3539920'), + (1087, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VmM1BMQm', '3539921'), + (1087, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VmM1BMQm', '3539922'), + (1087, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VmM1BMQm', '3539923'), + (1087, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmM1BMQm', '6045684'), + (1088, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'dlK19nw4', '5513985'), + (1088, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'dlK19nw4', '5534683'), + (1088, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dlK19nw4', '5537735'), + (1088, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dlK19nw4', '5540859'), + (1088, 1643, 'maybe', '2022-09-20 03:22:57', '2025-12-17 19:47:11', 'dlK19nw4', '5545856'), + (1088, 1644, 'attending', '2022-09-19 15:04:23', '2025-12-17 19:47:11', 'dlK19nw4', '5545857'), + (1088, 1654, 'not_attending', '2022-09-05 18:28:29', '2025-12-17 19:47:25', 'dlK19nw4', '5554471'), + (1088, 1655, 'not_attending', '2022-09-09 13:34:03', '2025-12-17 19:47:11', 'dlK19nw4', '5554482'), + (1088, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dlK19nw4', '5555245'), + (1088, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dlK19nw4', '5557747'), + (1088, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dlK19nw4', '5560255'), + (1088, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dlK19nw4', '5562906'), + (1088, 1675, 'attending', '2022-09-18 21:09:28', '2025-12-17 19:47:11', 'dlK19nw4', '5593342'), + (1088, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dlK19nw4', '5600604'), + (1088, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dlK19nw4', '5605544'), + (1088, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'dlK19nw4', '5606737'), + (1088, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dlK19nw4', '5630960'), + (1088, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dlK19nw4', '5630961'), + (1088, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dlK19nw4', '5630962'), + (1088, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dlK19nw4', '5630966'), + (1088, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dlK19nw4', '5630967'), + (1088, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dlK19nw4', '5630968'), + (1088, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dlK19nw4', '5635406'), + (1088, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dlK19nw4', '5638765'), + (1088, 1739, 'maybe', '2022-10-22 15:17:07', '2025-12-17 19:47:14', 'dlK19nw4', '5640097'), + (1088, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dlK19nw4', '5640843'), + (1088, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dlK19nw4', '5641521'), + (1088, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dlK19nw4', '5642818'), + (1088, 1750, 'maybe', '2022-10-31 18:32:15', '2025-12-17 19:47:15', 'dlK19nw4', '5652365'), + (1088, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dlK19nw4', '5652395'), + (1088, 1757, 'attending', '2022-10-31 18:31:54', '2025-12-17 19:47:15', 'dlK19nw4', '5668974'), + (1088, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dlK19nw4', '5670445'), + (1088, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dlK19nw4', '5671637'), + (1088, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dlK19nw4', '5672329'), + (1088, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dlK19nw4', '5674057'), + (1088, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dlK19nw4', '5674060'), + (1088, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dlK19nw4', '5677461'), + (1088, 1773, 'not_attending', '2022-10-31 18:30:58', '2025-12-17 19:47:14', 'dlK19nw4', '5677707'), + (1088, 1776, 'attending', '2022-11-09 13:57:36', '2025-12-17 19:47:15', 'dlK19nw4', '5691067'), + (1088, 1781, 'attending', '2022-11-02 21:36:10', '2025-12-17 19:47:15', 'dlK19nw4', '5696178'), + (1088, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dlK19nw4', '5698046'), + (1088, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dlK19nw4', '5699760'), + (1088, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dlK19nw4', '5741601'), + (1088, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dlK19nw4', '5763458'), + (1088, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dlK19nw4', '5774172'), + (1088, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dlK19nw4', '5818247'), + (1088, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dlK19nw4', '5819471'), + (1088, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dlK19nw4', '5827739'), + (1088, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dlK19nw4', '5844306'), + (1088, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dlK19nw4', '5850159'), + (1088, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dlK19nw4', '5858999'), + (1088, 1852, 'attending', '2023-01-09 18:55:30', '2025-12-17 19:47:05', 'dlK19nw4', '5869898'), + (1088, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dlK19nw4', '5871984'), + (1088, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dlK19nw4', '5876354'), + (1088, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dlK19nw4', '5880939'), + (1088, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dlK19nw4', '5880940'), + (1088, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dlK19nw4', '5880942'), + (1088, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dlK19nw4', '5880943'), + (1088, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dlK19nw4', '5887890'), + (1088, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dlK19nw4', '5888598'), + (1088, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dlK19nw4', '5893260'), + (1088, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dlK19nw4', '5899826'), + (1088, 1888, 'attending', '2023-02-17 16:58:58', '2025-12-17 19:47:07', 'dlK19nw4', '5900197'), + (1088, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dlK19nw4', '5900199'), + (1088, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dlK19nw4', '5900200'), + (1088, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dlK19nw4', '5900202'), + (1088, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dlK19nw4', '5900203'), + (1088, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dlK19nw4', '5901108'), + (1088, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dlK19nw4', '5901126'), + (1088, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dlK19nw4', '5909655'), + (1088, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dlK19nw4', '5910522'), + (1088, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dlK19nw4', '5910526'), + (1088, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dlK19nw4', '5910528'), + (1088, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dlK19nw4', '5916219'), + (1088, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dlK19nw4', '5936234'), + (1088, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dlK19nw4', '5958351'), + (1088, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dlK19nw4', '5959751'), + (1088, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dlK19nw4', '5959755'), + (1088, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dlK19nw4', '5960055'), + (1088, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dlK19nw4', '5961684'), + (1088, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dlK19nw4', '5962132'), + (1088, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dlK19nw4', '5962133'), + (1088, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dlK19nw4', '5962134'), + (1088, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dlK19nw4', '5962317'), + (1088, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dlK19nw4', '5962318'), + (1088, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dlK19nw4', '5965933'), + (1088, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dlK19nw4', '5967014'), + (1088, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dlK19nw4', '5972815'), + (1088, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dlK19nw4', '5974016'), + (1088, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dlK19nw4', '5981515'), + (1088, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dlK19nw4', '5993516'), + (1088, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dlK19nw4', '5998939'), + (1088, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dlK19nw4', '6028191'), + (1088, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dlK19nw4', '6040066'), + (1088, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dlK19nw4', '6042717'), + (1088, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dlK19nw4', '6044838'), + (1088, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dlK19nw4', '6044839'), + (1088, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlK19nw4', '6045684'), + (1088, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dlK19nw4', '6050104'), + (1088, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dlK19nw4', '6053195'), + (1088, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dlK19nw4', '6053198'), + (1088, 2008, 'attending', '2023-04-07 19:25:47', '2025-12-17 19:46:58', 'dlK19nw4', '6055808'), + (1088, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dlK19nw4', '6056085'), + (1088, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dlK19nw4', '6056916'), + (1088, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dlK19nw4', '6059290'), + (1088, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dlK19nw4', '6060328'), + (1088, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dlK19nw4', '6061037'), + (1088, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dlK19nw4', '6061039'), + (1088, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dlK19nw4', '6067245'), + (1088, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dlK19nw4', '6068094'), + (1088, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dlK19nw4', '6068252'), + (1088, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dlK19nw4', '6068253'), + (1088, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dlK19nw4', '6068254'), + (1088, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dlK19nw4', '6068280'), + (1088, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dlK19nw4', '6069093'), + (1088, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dlK19nw4', '6072528'), + (1088, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dlK19nw4', '6079840'), + (1088, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dlK19nw4', '6083398'), + (1088, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dlK19nw4', '6093504'), + (1088, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dlK19nw4', '6097414'), + (1088, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dlK19nw4', '6097442'), + (1088, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dlK19nw4', '6097684'), + (1088, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dlK19nw4', '6098762'), + (1088, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dlK19nw4', '6101361'), + (1088, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dlK19nw4', '6101362'), + (1088, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dlK19nw4', '6103752'), + (1088, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dlK19nw4', '6107314'), + (1088, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dlK19nw4', '6120034'), + (1088, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dlK19nw4', '6136733'), + (1088, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dlK19nw4', '6137989'), + (1088, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dlK19nw4', '6150864'), + (1088, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dlK19nw4', '6155491'), + (1088, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dlK19nw4', '6164417'), + (1088, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dlK19nw4', '6166388'), + (1088, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dlK19nw4', '6176439'), + (1088, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dlK19nw4', '6182410'), + (1088, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dlK19nw4', '6185812'), + (1088, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dlK19nw4', '6187651'), + (1088, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dlK19nw4', '6187963'), + (1088, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dlK19nw4', '6187964'), + (1088, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dlK19nw4', '6187966'), + (1088, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dlK19nw4', '6187967'), + (1088, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dlK19nw4', '6187969'), + (1088, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dlK19nw4', '6334878'), + (1088, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dlK19nw4', '6337236'), + (1088, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dlK19nw4', '6337970'), + (1088, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dlK19nw4', '6338308'), + (1088, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dlK19nw4', '6340845'), + (1088, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dlK19nw4', '6341710'), + (1088, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dlK19nw4', '6342044'), + (1088, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dlK19nw4', '6342298'), + (1088, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dlK19nw4', '6343294'), + (1088, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dlK19nw4', '6347034'), + (1088, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dlK19nw4', '6347056'), + (1088, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dlK19nw4', '6353830'), + (1088, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dlK19nw4', '6353831'), + (1088, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dlK19nw4', '6357867'), + (1088, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dlK19nw4', '6358652'), + (1088, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dlK19nw4', '6361709'), + (1088, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dlK19nw4', '6361710'), + (1088, 2210, 'not_attending', '2023-08-28 04:18:29', '2025-12-17 19:46:55', 'dlK19nw4', '6361711'), + (1088, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dlK19nw4', '6361712'), + (1088, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dlK19nw4', '6361713'), + (1088, 2219, 'not_attending', '2023-08-28 04:18:15', '2025-12-17 19:46:55', 'dlK19nw4', '6367309'), + (1088, 2220, 'not_attending', '2023-08-28 04:19:35', '2025-12-17 19:46:56', 'dlK19nw4', '6367310'), + (1088, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dlK19nw4', '6382573'), + (1088, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dlK19nw4', '6388604'), + (1088, 2245, 'attending', '2023-09-26 16:54:48', '2025-12-17 19:46:45', 'dlK19nw4', '6393703'), + (1088, 2248, 'attending', '2023-09-11 14:27:54', '2025-12-17 19:46:44', 'dlK19nw4', '6394629'), + (1088, 2249, 'maybe', '2023-09-16 21:50:05', '2025-12-17 19:46:45', 'dlK19nw4', '6394630'), + (1088, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dlK19nw4', '6394631'), + (1088, 2253, 'maybe', '2023-09-30 15:14:43', '2025-12-17 19:46:45', 'dlK19nw4', '6401811'), + (1088, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dlK19nw4', '6440863'), + (1088, 2270, 'attending', '2023-10-03 16:32:34', '2025-12-17 19:46:46', 'dlK19nw4', '6443067'), + (1088, 2272, 'maybe', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dlK19nw4', '6445440'), + (1088, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dlK19nw4', '6453951'), + (1088, 2277, 'not_attending', '2023-10-12 21:29:45', '2025-12-17 19:46:46', 'dlK19nw4', '6455211'), + (1088, 2279, 'not_attending', '2023-10-12 21:29:30', '2025-12-17 19:46:46', 'dlK19nw4', '6455460'), + (1088, 2284, 'not_attending', '2023-10-12 21:29:42', '2025-12-17 19:46:46', 'dlK19nw4', '6460928'), + (1088, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dlK19nw4', '6461696'), + (1088, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dlK19nw4', '6462129'), + (1088, 2290, 'maybe', '2023-10-12 21:29:58', '2025-12-17 19:46:46', 'dlK19nw4', '6462214'), + (1088, 2292, 'not_attending', '2023-10-30 04:25:35', '2025-12-17 19:46:47', 'dlK19nw4', '6462216'), + (1088, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dlK19nw4', '6463218'), + (1088, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dlK19nw4', '6472181'), + (1088, 2300, 'not_attending', '2023-10-30 04:25:22', '2025-12-17 19:46:47', 'dlK19nw4', '6472185'), + (1088, 2304, 'not_attending', '2023-10-30 04:25:40', '2025-12-17 19:46:47', 'dlK19nw4', '6482693'), + (1088, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dlK19nw4', '6484200'), + (1088, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dlK19nw4', '6484680'), + (1088, 2310, 'not_attending', '2023-10-30 04:25:52', '2025-12-17 19:46:47', 'dlK19nw4', '6487709'), + (1088, 2311, 'not_attending', '2023-10-30 04:25:47', '2025-12-17 19:46:47', 'dlK19nw4', '6487725'), + (1088, 2314, 'not_attending', '2023-10-30 04:25:38', '2025-12-17 19:46:47', 'dlK19nw4', '6493665'), + (1088, 2315, 'not_attending', '2023-10-30 04:25:43', '2025-12-17 19:46:47', 'dlK19nw4', '6493666'), + (1088, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dlK19nw4', '6507741'), + (1088, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dlK19nw4', '6514659'), + (1088, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dlK19nw4', '6514660'), + (1088, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dlK19nw4', '6519103'), + (1088, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dlK19nw4', '6535681'), + (1088, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlK19nw4', '6584747'), + (1088, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlK19nw4', '6587097'), + (1088, 2357, 'attending', '2023-12-17 05:01:57', '2025-12-17 19:46:36', 'dlK19nw4', '6593341'), + (1088, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlK19nw4', '6609022'), + (1088, 2373, 'not_attending', '2024-01-14 16:17:33', '2025-12-17 19:46:38', 'dlK19nw4', '6632678'), + (1088, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlK19nw4', '6632757'), + (1088, 2375, 'attending', '2023-12-21 00:28:46', '2025-12-17 19:46:36', 'dlK19nw4', '6634548'), + (1088, 2376, 'not_attending', '2024-01-19 17:03:34', '2025-12-17 19:46:40', 'dlK19nw4', '6642900'), + (1088, 2377, 'attending', '2024-01-07 07:08:39', '2025-12-17 19:46:37', 'dlK19nw4', '6643448'), + (1088, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlK19nw4', '6644187'), + (1088, 2385, 'not_attending', '2024-01-07 07:09:00', '2025-12-17 19:46:37', 'dlK19nw4', '6648943'), + (1088, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlK19nw4', '6648951'), + (1088, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlK19nw4', '6648952'), + (1088, 2389, 'not_attending', '2024-01-07 07:10:30', '2025-12-17 19:46:40', 'dlK19nw4', '6651094'), + (1088, 2391, 'not_attending', '2024-01-07 07:09:26', '2025-12-17 19:46:37', 'dlK19nw4', '6654138'), + (1088, 2392, 'not_attending', '2024-01-07 07:09:15', '2025-12-17 19:46:37', 'dlK19nw4', '6654412'), + (1088, 2393, 'not_attending', '2024-01-07 07:09:54', '2025-12-17 19:46:38', 'dlK19nw4', '6654468'), + (1088, 2394, 'not_attending', '2024-01-07 07:10:04', '2025-12-17 19:46:38', 'dlK19nw4', '6654470'), + (1088, 2395, 'not_attending', '2024-01-14 16:17:58', '2025-12-17 19:46:38', 'dlK19nw4', '6654471'), + (1088, 2396, 'not_attending', '2024-01-14 16:18:00', '2025-12-17 19:46:38', 'dlK19nw4', '6655401'), + (1088, 2397, 'not_attending', '2024-01-07 07:08:48', '2025-12-17 19:46:37', 'dlK19nw4', '6657379'), + (1088, 2398, 'not_attending', '2024-01-07 07:09:12', '2025-12-17 19:46:37', 'dlK19nw4', '6657381'), + (1088, 2399, 'not_attending', '2024-01-13 19:05:47', '2025-12-17 19:46:38', 'dlK19nw4', '6657583'), + (1088, 2400, 'not_attending', '2024-01-10 06:02:58', '2025-12-17 19:46:37', 'dlK19nw4', '6659378'), + (1088, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlK19nw4', '6661585'), + (1088, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlK19nw4', '6661588'), + (1088, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlK19nw4', '6661589'), + (1088, 2404, 'not_attending', '2024-01-14 16:17:42', '2025-12-17 19:46:38', 'dlK19nw4', '6666858'), + (1088, 2405, 'not_attending', '2024-01-14 16:18:10', '2025-12-17 19:46:38', 'dlK19nw4', '6667332'), + (1088, 2406, 'not_attending', '2024-01-14 16:18:24', '2025-12-17 19:46:40', 'dlK19nw4', '6692344'), + (1088, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlK19nw4', '6699906'), + (1088, 2408, 'not_attending', '2024-01-19 17:02:54', '2025-12-17 19:46:40', 'dlK19nw4', '6699907'), + (1088, 2410, 'not_attending', '2024-02-05 18:28:00', '2025-12-17 19:46:41', 'dlK19nw4', '6699911'), + (1088, 2411, 'not_attending', '2024-02-13 05:17:20', '2025-12-17 19:46:42', 'dlK19nw4', '6699913'), + (1088, 2412, 'not_attending', '2024-02-13 05:17:51', '2025-12-17 19:46:43', 'dlK19nw4', '6700717'), + (1088, 2414, 'not_attending', '2024-01-19 17:02:58', '2025-12-17 19:46:40', 'dlK19nw4', '6701000'), + (1088, 2415, 'not_attending', '2024-01-19 17:03:00', '2025-12-17 19:46:40', 'dlK19nw4', '6701001'), + (1088, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlK19nw4', '6701109'), + (1088, 2417, 'not_attending', '2024-01-19 17:03:09', '2025-12-17 19:46:40', 'dlK19nw4', '6701905'), + (1088, 2421, 'not_attending', '2024-01-19 17:03:25', '2025-12-17 19:46:40', 'dlK19nw4', '6704598'), + (1088, 2422, 'not_attending', '2024-01-19 17:03:22', '2025-12-17 19:46:40', 'dlK19nw4', '6704650'), + (1088, 2423, 'maybe', '2024-01-19 17:03:20', '2025-12-17 19:46:40', 'dlK19nw4', '6705141'), + (1088, 2424, 'not_attending', '2024-01-19 17:02:47', '2025-12-17 19:46:40', 'dlK19nw4', '6705143'), + (1088, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlK19nw4', '6705219'), + (1088, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlK19nw4', '6710153'), + (1088, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlK19nw4', '6711552'), + (1088, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dlK19nw4', '6711553'), + (1088, 2435, 'not_attending', '2024-01-29 02:58:16', '2025-12-17 19:46:41', 'dlK19nw4', '6721547'), + (1088, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlK19nw4', '6722688'), + (1088, 2438, 'attending', '2024-02-05 18:27:48', '2025-12-17 19:46:41', 'dlK19nw4', '6730201'), + (1088, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlK19nw4', '6730620'), + (1088, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlK19nw4', '6730642'), + (1088, 2444, 'not_attending', '2024-02-05 18:27:56', '2025-12-17 19:46:41', 'dlK19nw4', '6734367'), + (1088, 2445, 'not_attending', '2024-02-13 05:17:13', '2025-12-17 19:46:41', 'dlK19nw4', '6734368'), + (1088, 2447, 'not_attending', '2024-03-11 02:37:08', '2025-12-17 19:46:32', 'dlK19nw4', '6734370'), + (1088, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlK19nw4', '6740364'), + (1088, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlK19nw4', '6743829'), + (1088, 2466, 'not_attending', '2024-02-14 22:58:09', '2025-12-17 19:46:41', 'dlK19nw4', '7026777'), + (1088, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlK19nw4', '7030380'), + (1088, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlK19nw4', '7033677'), + (1088, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlK19nw4', '7035415'), + (1088, 2475, 'not_attending', '2024-02-27 08:06:37', '2025-12-17 19:46:43', 'dlK19nw4', '7035643'), + (1088, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlK19nw4', '7044715'), + (1088, 2487, 'not_attending', '2024-03-17 18:07:30', '2025-12-17 19:46:33', 'dlK19nw4', '7049279'), + (1088, 2488, 'not_attending', '2024-03-17 18:07:25', '2025-12-17 19:46:33', 'dlK19nw4', '7049398'), + (1088, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlK19nw4', '7050318'), + (1088, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlK19nw4', '7050319'), + (1088, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlK19nw4', '7050322'), + (1088, 2495, 'not_attending', '2024-03-11 02:37:02', '2025-12-17 19:46:32', 'dlK19nw4', '7052982'), + (1088, 2498, 'not_attending', '2024-03-17 18:07:15', '2025-12-17 19:46:33', 'dlK19nw4', '7057662'), + (1088, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlK19nw4', '7057804'), + (1088, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dlK19nw4', '7059866'), + (1088, 2502, 'not_attending', '2024-03-17 18:07:10', '2025-12-17 19:46:33', 'dlK19nw4', '7061202'), + (1088, 2504, 'not_attending', '2024-03-17 18:07:24', '2025-12-17 19:46:33', 'dlK19nw4', '7063296'), + (1088, 2505, 'not_attending', '2024-03-17 18:07:18', '2025-12-17 19:46:33', 'dlK19nw4', '7069163'), + (1088, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlK19nw4', '7072824'), + (1088, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlK19nw4', '7074348'), + (1088, 2510, 'not_attending', '2024-03-17 18:07:20', '2025-12-17 19:46:33', 'dlK19nw4', '7074350'), + (1088, 2511, 'not_attending', '2024-04-08 20:11:49', '2025-12-17 19:46:33', 'dlK19nw4', '7074351'), + (1088, 2512, 'not_attending', '2024-04-01 15:09:47', '2025-12-17 19:46:33', 'dlK19nw4', '7074352'), + (1088, 2513, 'not_attending', '2024-04-17 22:57:14', '2025-12-17 19:46:34', 'dlK19nw4', '7074353'), + (1088, 2515, 'not_attending', '2024-05-02 16:08:32', '2025-12-17 19:46:35', 'dlK19nw4', '7074355'), + (1088, 2516, 'not_attending', '2024-04-30 09:34:44', '2025-12-17 19:46:35', 'dlK19nw4', '7074356'), + (1088, 2520, 'not_attending', '2024-05-12 16:46:12', '2025-12-17 19:46:35', 'dlK19nw4', '7074360'), + (1088, 2521, 'not_attending', '2024-06-03 18:57:24', '2025-12-17 19:46:29', 'dlK19nw4', '7074361'), + (1088, 2523, 'not_attending', '2024-06-03 18:56:46', '2025-12-17 19:46:36', 'dlK19nw4', '7074363'), + (1088, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dlK19nw4', '7074364'), + (1088, 2525, 'not_attending', '2024-06-03 18:57:07', '2025-12-17 19:46:28', 'dlK19nw4', '7074365'), + (1088, 2533, 'maybe', '2024-08-18 20:02:59', '2025-12-17 19:46:32', 'dlK19nw4', '7074384'), + (1088, 2534, 'not_attending', '2024-03-13 18:30:26', '2025-12-17 19:46:32', 'dlK19nw4', '7076875'), + (1088, 2536, 'not_attending', '2024-03-17 18:07:12', '2025-12-17 19:46:33', 'dlK19nw4', '7077689'), + (1088, 2537, 'maybe', '2024-03-17 18:07:33', '2025-12-17 19:46:33', 'dlK19nw4', '7085484'), + (1088, 2539, 'maybe', '2024-04-01 15:10:02', '2025-12-17 19:46:33', 'dlK19nw4', '7085486'), + (1088, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlK19nw4', '7089267'), + (1088, 2541, 'not_attending', '2024-03-17 18:07:06', '2025-12-17 19:46:33', 'dlK19nw4', '7089404'), + (1088, 2543, 'not_attending', '2024-04-01 15:09:51', '2025-12-17 19:46:33', 'dlK19nw4', '7091456'), + (1088, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlK19nw4', '7098747'), + (1088, 2551, 'not_attending', '2024-04-01 15:09:36', '2025-12-17 19:46:33', 'dlK19nw4', '7109912'), + (1088, 2552, 'attending', '2024-03-27 22:21:13', '2025-12-17 19:46:33', 'dlK19nw4', '7111123'), + (1088, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dlK19nw4', '7113468'), + (1088, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlK19nw4', '7114856'), + (1088, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlK19nw4', '7114951'), + (1088, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlK19nw4', '7114955'), + (1088, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlK19nw4', '7114956'), + (1088, 2558, 'not_attending', '2024-05-02 16:08:28', '2025-12-17 19:46:35', 'dlK19nw4', '7114957'), + (1088, 2559, 'not_attending', '2024-04-01 15:09:40', '2025-12-17 19:46:33', 'dlK19nw4', '7115254'), + (1088, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlK19nw4', '7153615'), + (1088, 2571, 'not_attending', '2024-04-08 20:11:44', '2025-12-17 19:46:33', 'dlK19nw4', '7159484'), + (1088, 2572, 'not_attending', '2024-04-13 21:53:19', '2025-12-17 19:46:33', 'dlK19nw4', '7159522'), + (1088, 2576, 'not_attending', '2024-04-26 22:43:22', '2025-12-17 19:46:34', 'dlK19nw4', '7164538'), + (1088, 2585, 'maybe', '2024-04-24 05:59:00', '2025-12-17 19:46:34', 'dlK19nw4', '7175828'), + (1088, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dlK19nw4', '7178446'), + (1088, 2596, 'not_attending', '2024-04-27 13:45:00', '2025-12-17 19:46:34', 'dlK19nw4', '7183788'), + (1088, 2597, 'not_attending', '2024-04-26 22:43:20', '2025-12-17 19:46:34', 'dlK19nw4', '7186726'), + (1088, 2600, 'not_attending', '2024-04-30 09:34:13', '2025-12-17 19:46:35', 'dlK19nw4', '7196794'), + (1088, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dlK19nw4', '7220467'), + (1088, 2603, 'attending', '2024-05-12 16:46:08', '2025-12-17 19:46:35', 'dlK19nw4', '7225669'), + (1088, 2604, 'not_attending', '2024-05-29 15:02:10', '2025-12-17 19:46:36', 'dlK19nw4', '7225670'), + (1088, 2605, 'not_attending', '2024-05-02 16:08:25', '2025-12-17 19:46:35', 'dlK19nw4', '7229243'), + (1088, 2607, 'not_attending', '2024-04-30 09:34:23', '2025-12-17 19:46:35', 'dlK19nw4', '7240136'), + (1088, 2608, 'not_attending', '2024-04-30 09:34:29', '2025-12-17 19:46:35', 'dlK19nw4', '7240272'), + (1088, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dlK19nw4', '7240354'), + (1088, 2610, 'not_attending', '2024-05-02 16:08:26', '2025-12-17 19:46:35', 'dlK19nw4', '7241797'), + (1088, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dlK19nw4', '7251633'), + (1088, 2620, 'not_attending', '2024-05-12 16:46:13', '2025-12-17 19:46:35', 'dlK19nw4', '7258097'), + (1088, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dlK19nw4', '7263048'), + (1088, 2624, 'not_attending', '2024-05-12 16:46:00', '2025-12-17 19:46:35', 'dlK19nw4', '7263301'), + (1088, 2625, 'not_attending', '2024-05-12 16:46:03', '2025-12-17 19:46:35', 'dlK19nw4', '7263302'), + (1088, 2626, 'attending', '2024-05-12 16:46:16', '2025-12-17 19:46:35', 'dlK19nw4', '7264723'), + (1088, 2627, 'not_attending', '2024-05-24 09:59:44', '2025-12-17 19:46:35', 'dlK19nw4', '7264724'), + (1088, 2629, 'not_attending', '2024-06-03 18:56:56', '2025-12-17 19:46:28', 'dlK19nw4', '7264726'), + (1088, 2630, 'not_attending', '2024-05-12 16:46:10', '2025-12-17 19:46:35', 'dlK19nw4', '7264801'), + (1088, 2631, 'not_attending', '2024-05-12 16:45:59', '2025-12-17 19:46:35', 'dlK19nw4', '7265589'), + (1088, 2647, 'not_attending', '2024-06-03 18:57:01', '2025-12-17 19:46:28', 'dlK19nw4', '7282057'), + (1088, 2658, 'not_attending', '2024-06-03 18:57:04', '2025-12-17 19:46:36', 'dlK19nw4', '7298846'), + (1088, 2660, 'not_attending', '2024-06-03 18:57:03', '2025-12-17 19:46:36', 'dlK19nw4', '7301638'), + (1088, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dlK19nw4', '7302674'), + (1088, 2662, 'not_attending', '2024-06-03 18:56:46', '2025-12-17 19:46:36', 'dlK19nw4', '7302815'), + (1088, 2678, 'attending', '2024-06-14 21:25:59', '2025-12-17 19:46:28', 'dlK19nw4', '7319489'), + (1088, 2679, 'not_attending', '2024-06-17 07:42:57', '2025-12-17 19:46:29', 'dlK19nw4', '7319490'), + (1088, 2686, 'not_attending', '2024-06-17 07:42:51', '2025-12-17 19:46:29', 'dlK19nw4', '7323802'), + (1088, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dlK19nw4', '7324073'), + (1088, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dlK19nw4', '7324074'), + (1088, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dlK19nw4', '7324075'), + (1088, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dlK19nw4', '7324078'), + (1088, 2696, 'not_attending', '2024-08-18 20:03:08', '2025-12-17 19:46:32', 'dlK19nw4', '7324081'), + (1088, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dlK19nw4', '7324082'), + (1088, 2706, 'attending', '2024-06-17 07:42:44', '2025-12-17 19:46:28', 'dlK19nw4', '7324947'), + (1088, 2707, 'not_attending', '2024-06-17 07:42:40', '2025-12-17 19:46:28', 'dlK19nw4', '7324952'), + (1088, 2708, 'not_attending', '2024-06-14 21:25:57', '2025-12-17 19:46:28', 'dlK19nw4', '7325048'), + (1088, 2710, 'not_attending', '2024-06-17 07:42:47', '2025-12-17 19:46:29', 'dlK19nw4', '7325108'), + (1088, 2716, 'not_attending', '2024-06-17 07:42:56', '2025-12-17 19:46:29', 'dlK19nw4', '7329096'), + (1088, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dlK19nw4', '7331457'), + (1088, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dlK19nw4', '7356752'), + (1088, 2764, 'not_attending', '2024-07-26 00:16:03', '2025-12-17 19:46:30', 'dlK19nw4', '7363595'), + (1088, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dlK19nw4', '7363643'), + (1088, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dlK19nw4', '7368606'), + (1088, 2801, 'not_attending', '2024-08-18 20:02:46', '2025-12-17 19:46:32', 'dlK19nw4', '7397462'), + (1088, 2803, 'not_attending', '2024-08-18 20:02:37', '2025-12-17 19:46:32', 'dlK19nw4', '7397869'), + (1088, 2804, 'not_attending', '2024-08-18 20:03:12', '2025-12-17 19:46:32', 'dlK19nw4', '7399270'), + (1088, 2805, 'not_attending', '2024-08-20 20:49:01', '2025-12-17 19:46:32', 'dlK19nw4', '7403620'), + (1088, 2807, 'not_attending', '2024-08-23 04:33:43', '2025-12-17 19:46:32', 'dlK19nw4', '7406485'), + (1088, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dlK19nw4', '7424275'), + (1088, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dlK19nw4', '7424276'), + (1088, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dlK19nw4', '7432751'), + (1088, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dlK19nw4', '7432752'), + (1088, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dlK19nw4', '7432753'), + (1088, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dlK19nw4', '7432754'), + (1088, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dlK19nw4', '7432755'), + (1088, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dlK19nw4', '7432756'), + (1088, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dlK19nw4', '7432758'), + (1088, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dlK19nw4', '7432759'), + (1088, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dlK19nw4', '7433834'), + (1088, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dlK19nw4', '7470197'), + (1088, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dlK19nw4', '7685613'), + (1088, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dlK19nw4', '7688194'), + (1088, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dlK19nw4', '7688196'), + (1088, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dlK19nw4', '7688289'), + (1089, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'rdO1gaWA', '6045684'), + (1090, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '406JJWRm', '5880943'), + (1090, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '406JJWRm', '5900202'), + (1090, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '406JJWRm', '5900203'), + (1090, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '406JJWRm', '5910528'), + (1090, 1945, 'maybe', '2023-03-08 05:15:16', '2025-12-17 19:47:10', '406JJWRm', '5962133'), + (1090, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '406JJWRm', '5962317'), + (1090, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '406JJWRm', '5962318'), + (1090, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '406JJWRm', '5965933'), + (1090, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '406JJWRm', '5972815'), + (1090, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '406JJWRm', '5974016'), + (1090, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '406JJWRm', '5981515'), + (1090, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '406JJWRm', '5993516'), + (1090, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '406JJWRm', '5998939'), + (1090, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '406JJWRm', '6028191'), + (1090, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '406JJWRm', '6040066'), + (1090, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '406JJWRm', '6042717'), + (1090, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '406JJWRm', '6044838'), + (1090, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '406JJWRm', '6044839'), + (1090, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '406JJWRm', '6045684'), + (1090, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', '406JJWRm', '6048955'), + (1090, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '406JJWRm', '6050104'), + (1090, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '406JJWRm', '6053195'), + (1090, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '406JJWRm', '6053198'), + (1090, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '406JJWRm', '6056085'), + (1090, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '406JJWRm', '6056916'), + (1090, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '406JJWRm', '6059290'), + (1090, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '406JJWRm', '6060328'), + (1090, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '406JJWRm', '6061037'), + (1090, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '406JJWRm', '6061039'), + (1090, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '406JJWRm', '6067245'), + (1090, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '406JJWRm', '6068094'), + (1090, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '406JJWRm', '6068252'), + (1090, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '406JJWRm', '6068253'), + (1090, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '406JJWRm', '6068254'), + (1090, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '406JJWRm', '6068280'), + (1090, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '406JJWRm', '6069093'), + (1090, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '406JJWRm', '6072528'), + (1090, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '406JJWRm', '6079840'), + (1090, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '406JJWRm', '6083398'), + (1090, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '406JJWRm', '6093504'), + (1090, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '406JJWRm', '6097414'), + (1090, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '406JJWRm', '6097442'), + (1090, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '406JJWRm', '6097684'), + (1090, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '406JJWRm', '6098762'), + (1090, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '406JJWRm', '6101362'), + (1090, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '406JJWRm', '6107314'), + (1090, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '406JJWRm', '6120034'), + (1091, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dlk7oNl4', '7869188'), + (1091, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dlk7oNl4', '7888250'), + (1091, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dlk7oNl4', '7897784'), + (1091, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dlk7oNl4', '7903856'), + (1091, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dlk7oNl4', '8347770'), + (1091, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dlk7oNl4', '8349164'), + (1091, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dlk7oNl4', '8349545'), + (1091, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dlk7oNl4', '8353584'), + (1092, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '8dB9BjL4', '6655401'), + (1092, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '8dB9BjL4', '6699906'), + (1092, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '8dB9BjL4', '6699913'), + (1092, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '8dB9BjL4', '6701109'), + (1092, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '8dB9BjL4', '6705219'), + (1092, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '8dB9BjL4', '6710153'), + (1092, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '8dB9BjL4', '6711552'), + (1092, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '8dB9BjL4', '6711553'), + (1092, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '8dB9BjL4', '6722688'), + (1092, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '8dB9BjL4', '6730620'), + (1092, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '8dB9BjL4', '6730642'), + (1092, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '8dB9BjL4', '6740364'), + (1092, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '8dB9BjL4', '6743829'), + (1092, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '8dB9BjL4', '7030380'), + (1092, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '8dB9BjL4', '7033677'), + (1092, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '8dB9BjL4', '7035415'), + (1092, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '8dB9BjL4', '7044715'), + (1092, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '8dB9BjL4', '7050318'), + (1092, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '8dB9BjL4', '7050319'), + (1092, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '8dB9BjL4', '7050322'), + (1092, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '8dB9BjL4', '7057804'), + (1092, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '8dB9BjL4', '7072824'), + (1092, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '8dB9BjL4', '7074348'), + (1092, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '8dB9BjL4', '7089267'), + (1092, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '8dB9BjL4', '7098747'), + (1092, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '8dB9BjL4', '7113468'), + (1092, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '8dB9BjL4', '7114856'), + (1092, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '8dB9BjL4', '7114951'), + (1092, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '8dB9BjL4', '7114955'), + (1092, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '8dB9BjL4', '7114956'), + (1092, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '8dB9BjL4', '7153615'), + (1092, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '8dB9BjL4', '7159484'), + (1092, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '8dB9BjL4', '7178446'), + (1093, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AYpq90wm', '8477877'), + (1093, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AYpq90wm', '8485688'), + (1093, 3234, 'not_attending', '2025-08-15 02:57:00', '2025-12-17 19:46:17', 'AYpq90wm', '8488773'), + (1093, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AYpq90wm', '8490587'), + (1093, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AYpq90wm', '8493552'), + (1093, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AYpq90wm', '8493553'), + (1093, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AYpq90wm', '8493554'), + (1093, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AYpq90wm', '8493555'), + (1093, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AYpq90wm', '8493556'), + (1093, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AYpq90wm', '8493557'), + (1093, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AYpq90wm', '8493558'), + (1093, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AYpq90wm', '8493559'), + (1093, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AYpq90wm', '8493560'), + (1093, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'AYpq90wm', '8493561'), + (1093, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AYpq90wm', '8493572'), + (1093, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'AYpq90wm', '8529058'), + (1094, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Pm7vD5ad', '3386848'), + (1094, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Pm7vD5ad', '3389527'), + (1094, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Pm7vD5ad', '3396499'), + (1094, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Pm7vD5ad', '3403650'), + (1094, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Pm7vD5ad', '3406988'), + (1094, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Pm7vD5ad', '3416576'), + (1094, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Pm7vD5ad', '3426074'), + (1094, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'Pm7vD5ad', '3430267'), + (1094, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'Pm7vD5ad', '3468125'), + (1094, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'Pm7vD5ad', '3470303'), + (1094, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Pm7vD5ad', '3470991'), + (1094, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7vD5ad', '6045684'), + (1095, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mqEnP9lm', '4736503'), + (1095, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mqEnP9lm', '4736504'), + (1095, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mqEnP9lm', '5045826'), + (1095, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mqEnP9lm', '5132533'), + (1095, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mqEnP9lm', '5186582'), + (1095, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mqEnP9lm', '5186583'), + (1095, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mqEnP9lm', '5186585'), + (1095, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mqEnP9lm', '5190437'), + (1095, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'mqEnP9lm', '5196763'), + (1095, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'mqEnP9lm', '5199460'), + (1095, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mqEnP9lm', '5215989'), + (1095, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mqEnP9lm', '6045684'), + (1096, 21, 'maybe', '2020-04-27 01:24:34', '2025-12-17 19:47:57', '64veN7BA', '2958065'), + (1096, 57, 'not_attending', '2020-04-27 14:12:02', '2025-12-17 19:47:57', '64veN7BA', '2976575'), + (1096, 59, 'attending', '2020-05-04 21:42:01', '2025-12-17 19:47:57', '64veN7BA', '2977128'), + (1096, 62, 'maybe', '2020-05-11 02:30:50', '2025-12-17 19:47:57', '64veN7BA', '2977131'), + (1096, 63, 'maybe', '2020-05-11 20:04:11', '2025-12-17 19:47:57', '64veN7BA', '2977132'), + (1096, 64, 'maybe', '2020-05-27 07:11:16', '2025-12-17 19:47:58', '64veN7BA', '2977133'), + (1096, 65, 'maybe', '2020-05-26 21:27:52', '2025-12-17 19:47:57', '64veN7BA', '2977134'), + (1096, 66, 'maybe', '2020-06-06 01:41:48', '2025-12-17 19:47:58', '64veN7BA', '2977135'), + (1096, 67, 'maybe', '2020-06-11 03:06:11', '2025-12-17 19:47:58', '64veN7BA', '2977136'), + (1096, 68, 'maybe', '2020-06-20 13:46:02', '2025-12-17 19:47:58', '64veN7BA', '2977137'), + (1096, 69, 'maybe', '2020-06-29 18:50:50', '2025-12-17 19:47:55', '64veN7BA', '2977138'), + (1096, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '64veN7BA', '2977812'), + (1096, 76, 'attending', '2020-05-02 16:14:10', '2025-12-17 19:47:57', '64veN7BA', '2978246'), + (1096, 77, 'maybe', '2020-05-04 18:01:18', '2025-12-17 19:47:57', '64veN7BA', '2978247'), + (1096, 78, 'maybe', '2020-05-14 23:01:38', '2025-12-17 19:47:57', '64veN7BA', '2978249'), + (1096, 79, 'maybe', '2020-05-26 21:28:37', '2025-12-17 19:47:57', '64veN7BA', '2978250'), + (1096, 80, 'maybe', '2020-05-27 07:11:21', '2025-12-17 19:47:58', '64veN7BA', '2978251'), + (1096, 81, 'maybe', '2020-06-07 16:32:42', '2025-12-17 19:47:58', '64veN7BA', '2978252'), + (1096, 83, 'maybe', '2020-05-08 23:10:22', '2025-12-17 19:47:57', '64veN7BA', '2978438'), + (1096, 97, 'attending', '2020-05-04 21:42:12', '2025-12-17 19:47:57', '64veN7BA', '2987454'), + (1096, 98, 'attending', '2020-05-11 20:03:36', '2025-12-17 19:47:57', '64veN7BA', '2987455'), + (1096, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', '64veN7BA', '2990784'), + (1096, 106, 'maybe', '2020-05-03 15:43:10', '2025-12-17 19:47:57', '64veN7BA', '2993501'), + (1096, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '64veN7BA', '2994480'), + (1096, 113, 'maybe', '2020-07-28 18:38:19', '2025-12-17 19:47:56', '64veN7BA', '2994909'), + (1096, 115, 'maybe', '2020-05-09 06:30:23', '2025-12-17 19:47:57', '64veN7BA', '3001217'), + (1096, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', '64veN7BA', '3023063'), + (1096, 123, 'attending', '2020-05-15 21:03:13', '2025-12-17 19:47:57', '64veN7BA', '3023729'), + (1096, 125, 'attending', '2020-05-15 21:03:05', '2025-12-17 19:47:57', '64veN7BA', '3023987'), + (1096, 130, 'attending', '2020-05-21 22:36:55', '2025-12-17 19:47:57', '64veN7BA', '3028781'), + (1096, 132, 'attending', '2020-05-25 21:22:33', '2025-12-17 19:47:58', '64veN7BA', '3033648'), + (1096, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '64veN7BA', '3034321'), + (1096, 135, 'maybe', '2020-05-26 00:42:27', '2025-12-17 19:47:57', '64veN7BA', '3034368'), + (1096, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '64veN7BA', '3035881'), + (1096, 138, 'maybe', '2020-06-07 09:57:30', '2025-12-17 19:47:58', '64veN7BA', '3042932'), + (1096, 140, 'attending', '2020-06-01 01:04:06', '2025-12-17 19:47:57', '64veN7BA', '3046980'), + (1096, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '64veN7BA', '3049983'), + (1096, 170, 'attending', '2020-06-08 01:08:02', '2025-12-17 19:47:58', '64veN7BA', '3058742'), + (1096, 171, 'maybe', '2020-06-07 02:23:15', '2025-12-17 19:47:58', '64veN7BA', '3058743'), + (1096, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '64veN7BA', '3058959'), + (1096, 173, 'maybe', '2020-06-11 03:06:14', '2025-12-17 19:47:58', '64veN7BA', '3067093'), + (1096, 181, 'maybe', '2020-06-15 22:29:34', '2025-12-17 19:47:58', '64veN7BA', '3074513'), + (1096, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '64veN7BA', '3075228'), + (1096, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '64veN7BA', '3075456'), + (1096, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '64veN7BA', '3083791'), + (1096, 187, 'maybe', '2020-06-28 19:51:53', '2025-12-17 19:47:55', '64veN7BA', '3085151'), + (1096, 190, 'not_attending', '2020-07-03 03:42:24', '2025-12-17 19:47:55', '64veN7BA', '3087258'), + (1096, 191, 'attending', '2020-07-07 16:56:34', '2025-12-17 19:47:55', '64veN7BA', '3087259'), + (1096, 192, 'maybe', '2020-07-08 19:55:52', '2025-12-17 19:47:55', '64veN7BA', '3087260'), + (1096, 193, 'maybe', '2020-07-19 16:17:13', '2025-12-17 19:47:55', '64veN7BA', '3087261'), + (1096, 194, 'maybe', '2020-07-28 18:38:00', '2025-12-17 19:47:56', '64veN7BA', '3087262'), + (1096, 195, 'maybe', '2020-08-01 16:00:07', '2025-12-17 19:47:56', '64veN7BA', '3087264'), + (1096, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '64veN7BA', '3087265'), + (1096, 197, 'not_attending', '2020-08-21 00:36:20', '2025-12-17 19:47:56', '64veN7BA', '3087266'), + (1096, 198, 'maybe', '2020-08-24 17:28:11', '2025-12-17 19:47:56', '64veN7BA', '3087267'), + (1096, 199, 'not_attending', '2020-09-04 12:59:21', '2025-12-17 19:47:56', '64veN7BA', '3087268'), + (1096, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '64veN7BA', '3088653'), + (1096, 205, 'attending', '2020-06-29 18:37:38', '2025-12-17 19:47:55', '64veN7BA', '3104804'), + (1096, 206, 'maybe', '2020-07-08 19:55:47', '2025-12-17 19:47:55', '64veN7BA', '3104806'), + (1096, 207, 'maybe', '2020-07-19 16:17:02', '2025-12-17 19:47:55', '64veN7BA', '3104807'), + (1096, 208, 'maybe', '2020-08-01 16:00:02', '2025-12-17 19:47:56', '64veN7BA', '3104808'), + (1096, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '64veN7BA', '3106813'), + (1096, 210, 'maybe', '2020-07-03 03:41:09', '2025-12-17 19:47:55', '64veN7BA', '3108972'), + (1096, 214, 'maybe', '2020-07-06 16:57:48', '2025-12-17 19:47:55', '64veN7BA', '3124139'), + (1096, 215, 'attending', '2020-07-07 16:49:20', '2025-12-17 19:47:55', '64veN7BA', '3124987'), + (1096, 223, 'maybe', '2020-09-08 17:13:34', '2025-12-17 19:47:56', '64veN7BA', '3129980'), + (1096, 226, 'maybe', '2020-07-13 19:52:04', '2025-12-17 19:47:55', '64veN7BA', '3132817'), + (1096, 227, 'maybe', '2020-07-13 21:23:11', '2025-12-17 19:47:55', '64veN7BA', '3132820'), + (1096, 233, 'attending', '2020-07-19 21:20:03', '2025-12-17 19:47:55', '64veN7BA', '3139773'), + (1096, 236, 'maybe', '2020-07-20 22:07:24', '2025-12-17 19:47:55', '64veN7BA', '3140873'), + (1096, 264, 'maybe', '2020-08-02 21:10:30', '2025-12-17 19:47:56', '64veN7BA', '3150735'), + (1096, 269, 'attending', '2020-07-28 22:28:09', '2025-12-17 19:47:55', '64veN7BA', '3153076'), + (1096, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '64veN7BA', '3155321'), + (1096, 272, 'maybe', '2020-08-02 18:41:35', '2025-12-17 19:47:56', '64veN7BA', '3161472'), + (1096, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '64veN7BA', '3162006'), + (1096, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '64veN7BA', '3163442'), + (1096, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '64veN7BA', '3169555'), + (1096, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '64veN7BA', '3172832'), + (1096, 294, 'not_attending', '2020-08-24 17:35:26', '2025-12-17 19:47:56', '64veN7BA', '3172833'), + (1096, 295, 'not_attending', '2020-08-24 17:38:32', '2025-12-17 19:47:56', '64veN7BA', '3172834'), + (1096, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '64veN7BA', '3172876'), + (1096, 298, 'maybe', '2020-08-24 17:35:49', '2025-12-17 19:47:56', '64veN7BA', '3174556'), + (1096, 311, 'not_attending', '2020-09-12 21:27:54', '2025-12-17 19:47:56', '64veN7BA', '3186057'), + (1096, 314, 'maybe', '2020-08-24 17:35:55', '2025-12-17 19:47:56', '64veN7BA', '3188480'), + (1096, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '64veN7BA', '3191735'), + (1096, 319, 'not_attending', '2020-08-31 20:21:41', '2025-12-17 19:47:56', '64veN7BA', '3194179'), + (1096, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '64veN7BA', '3200209'), + (1096, 339, 'not_attending', '2020-09-08 17:13:29', '2025-12-17 19:47:56', '64veN7BA', '3204469'), + (1096, 340, 'not_attending', '2020-09-13 22:55:05', '2025-12-17 19:47:56', '64veN7BA', '3204470'), + (1096, 341, 'maybe', '2020-09-23 17:49:48', '2025-12-17 19:47:52', '64veN7BA', '3204471'), + (1096, 342, 'not_attending', '2020-09-23 17:49:58', '2025-12-17 19:47:52', '64veN7BA', '3204472'), + (1096, 355, 'maybe', '2020-09-13 23:03:01', '2025-12-17 19:47:56', '64veN7BA', '3212571'), + (1096, 362, 'maybe', '2020-09-24 18:20:22', '2025-12-17 19:47:52', '64veN7BA', '3214207'), + (1096, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '64veN7BA', '3217037'), + (1096, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '64veN7BA', '3218510'), + (1096, 375, 'not_attending', '2020-10-01 15:14:10', '2025-12-17 19:47:52', '64veN7BA', '3222825'), + (1096, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', '64veN7BA', '3228698'), + (1096, 386, 'not_attending', '2020-10-01 15:14:00', '2025-12-17 19:47:52', '64veN7BA', '3228699'), + (1096, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', '64veN7BA', '3228700'), + (1096, 388, 'not_attending', '2020-10-18 04:16:47', '2025-12-17 19:47:52', '64veN7BA', '3228701'), + (1096, 418, 'not_attending', '2020-10-12 01:01:58', '2025-12-17 19:47:52', '64veN7BA', '3241728'), + (1096, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', '64veN7BA', '3245751'), + (1096, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '64veN7BA', '3250232'), + (1096, 435, 'not_attending', '2020-10-18 04:16:45', '2025-12-17 19:47:52', '64veN7BA', '3254790'), + (1096, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', '64veN7BA', '3256168'), + (1096, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', '64veN7BA', '3263578'), + (1096, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', '64veN7BA', '3266138'), + (1096, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '64veN7BA', '3276428'), + (1096, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '64veN7BA', '3281467'), + (1096, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '64veN7BA', '3281470'), + (1096, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '64veN7BA', '3281829'), + (1096, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '64veN7BA', '3285413'), + (1096, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '64veN7BA', '3285414'), + (1096, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '64veN7BA', '3297764'), + (1096, 493, 'not_attending', '2020-11-30 22:20:08', '2025-12-17 19:47:54', '64veN7BA', '3313856'), + (1096, 496, 'not_attending', '2020-11-30 22:19:32', '2025-12-17 19:47:54', '64veN7BA', '3314269'), + (1096, 497, 'not_attending', '2020-12-02 21:00:00', '2025-12-17 19:47:55', '64veN7BA', '3314270'), + (1096, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '64veN7BA', '3314909'), + (1096, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '64veN7BA', '3314964'), + (1096, 502, 'not_attending', '2020-12-08 05:51:25', '2025-12-17 19:47:55', '64veN7BA', '3323365'), + (1096, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '64veN7BA', '3329383'), + (1096, 518, 'not_attending', '2021-01-03 23:47:06', '2025-12-17 19:47:48', '64veN7BA', '3337138'), + (1096, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '64veN7BA', '3351539'), + (1096, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '64veN7BA', '3386848'), + (1096, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '64veN7BA', '3389527'), + (1096, 542, 'not_attending', '2021-01-11 18:44:06', '2025-12-17 19:47:48', '64veN7BA', '3395013'), + (1096, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '64veN7BA', '3396499'), + (1096, 548, 'not_attending', '2021-01-16 03:55:49', '2025-12-17 19:47:48', '64veN7BA', '3403650'), + (1096, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '64veN7BA', '3406988'), + (1096, 555, 'not_attending', '2021-01-23 03:49:47', '2025-12-17 19:47:49', '64veN7BA', '3416576'), + (1096, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '64veN7BA', '3418925'), + (1096, 568, 'not_attending', '2021-01-27 21:57:45', '2025-12-17 19:47:50', '64veN7BA', '3430267'), + (1096, 569, 'not_attending', '2021-01-27 21:57:27', '2025-12-17 19:47:49', '64veN7BA', '3432673'), + (1096, 576, 'not_attending', '2021-01-29 18:30:52', '2025-12-17 19:47:50', '64veN7BA', '3438748'), + (1096, 579, 'not_attending', '2021-01-29 18:30:59', '2025-12-17 19:47:50', '64veN7BA', '3440978'), + (1096, 591, 'not_attending', '2021-02-08 18:12:42', '2025-12-17 19:47:50', '64veN7BA', '3465880'), + (1096, 598, 'not_attending', '2021-02-08 18:12:19', '2025-12-17 19:47:50', '64veN7BA', '3468003'), + (1096, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', '64veN7BA', '3468125'), + (1096, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '64veN7BA', '3470303'), + (1096, 603, 'not_attending', '2021-02-16 17:36:19', '2025-12-17 19:47:50', '64veN7BA', '3470304'), + (1096, 604, 'not_attending', '2021-02-26 09:09:58', '2025-12-17 19:47:50', '64veN7BA', '3470305'), + (1096, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '64veN7BA', '3470991'), + (1096, 621, 'not_attending', '2021-03-04 20:52:40', '2025-12-17 19:47:51', '64veN7BA', '3517815'), + (1096, 622, 'not_attending', '2021-03-09 18:44:25', '2025-12-17 19:47:51', '64veN7BA', '3517816'), + (1096, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '64veN7BA', '3523941'), + (1096, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '64veN7BA', '3533850'), + (1096, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '64veN7BA', '3536632'), + (1096, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '64veN7BA', '3536656'), + (1096, 641, 'not_attending', '2021-04-03 17:45:39', '2025-12-17 19:47:44', '64veN7BA', '3539916'), + (1096, 642, 'not_attending', '2021-04-03 17:45:44', '2025-12-17 19:47:44', '64veN7BA', '3539917'), + (1096, 643, 'not_attending', '2021-04-03 17:45:52', '2025-12-17 19:47:45', '64veN7BA', '3539918'), + (1096, 644, 'not_attending', '2021-04-14 02:18:16', '2025-12-17 19:47:46', '64veN7BA', '3539919'), + (1096, 645, 'not_attending', '2021-04-27 11:38:26', '2025-12-17 19:47:46', '64veN7BA', '3539920'), + (1096, 646, 'not_attending', '2021-05-15 14:12:48', '2025-12-17 19:47:46', '64veN7BA', '3539921'), + (1096, 647, 'not_attending', '2021-05-17 05:04:00', '2025-12-17 19:47:46', '64veN7BA', '3539922'), + (1096, 648, 'not_attending', '2021-05-22 19:07:59', '2025-12-17 19:47:47', '64veN7BA', '3539923'), + (1096, 649, 'not_attending', '2021-03-18 17:38:04', '2025-12-17 19:47:51', '64veN7BA', '3539927'), + (1096, 650, 'not_attending', '2021-03-18 17:37:56', '2025-12-17 19:47:44', '64veN7BA', '3539928'), + (1096, 651, 'not_attending', '2021-03-09 18:44:21', '2025-12-17 19:47:51', '64veN7BA', '3541045'), + (1096, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '64veN7BA', '3582734'), + (1096, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '64veN7BA', '3583262'), + (1096, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '64veN7BA', '3619523'), + (1096, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '64veN7BA', '3661369'), + (1096, 728, 'not_attending', '2021-04-03 17:46:03', '2025-12-17 19:47:44', '64veN7BA', '3668073'), + (1096, 729, 'not_attending', '2021-04-03 17:46:14', '2025-12-17 19:47:46', '64veN7BA', '3668075'), + (1096, 730, 'not_attending', '2021-04-27 11:38:20', '2025-12-17 19:47:46', '64veN7BA', '3668076'), + (1096, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '64veN7BA', '3674262'), + (1096, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '64veN7BA', '3677402'), + (1096, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '64veN7BA', '3730212'), + (1096, 777, 'not_attending', '2021-04-27 11:38:15', '2025-12-17 19:47:46', '64veN7BA', '3746248'), + (1096, 782, 'not_attending', '2021-05-01 03:36:25', '2025-12-17 19:47:46', '64veN7BA', '3761843'), + (1096, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '64veN7BA', '3793156'), + (1096, 815, 'not_attending', '2021-05-17 05:04:03', '2025-12-17 19:47:47', '64veN7BA', '3818136'), + (1096, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64veN7BA', '6045684'), + (1097, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'kdKVpzR4', '3149491'), + (1097, 395, 'not_attending', '2021-06-07 16:53:08', '2025-12-17 19:47:47', 'kdKVpzR4', '3236450'), + (1097, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKVpzR4', '3975312'), + (1097, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKVpzR4', '4014338'), + (1097, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKVpzR4', '4136744'), + (1097, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKVpzR4', '6045684'), + (1098, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'myDE7GWd', '4637896'), + (1098, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'myDE7GWd', '4642994'), + (1098, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'myDE7GWd', '4642995'), + (1098, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'myDE7GWd', '4642996'), + (1098, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'myDE7GWd', '4642997'), + (1098, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'myDE7GWd', '4645687'), + (1098, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'myDE7GWd', '4645698'), + (1098, 1128, 'attending', '2021-11-20 17:15:27', '2025-12-17 19:47:37', 'myDE7GWd', '4645704'), + (1098, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'myDE7GWd', '4645705'), + (1098, 1130, 'attending', '2021-12-04 23:57:41', '2025-12-17 19:47:37', 'myDE7GWd', '4658824'), + (1098, 1131, 'attending', '2021-12-18 21:18:49', '2025-12-17 19:47:31', 'myDE7GWd', '4658825'), + (1098, 1132, 'attending', '2021-11-23 00:03:46', '2025-12-17 19:47:37', 'myDE7GWd', '4660657'), + (1098, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'myDE7GWd', '4668385'), + (1098, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'myDE7GWd', '4694407'), + (1098, 1153, 'attending', '2022-01-19 23:47:56', '2025-12-17 19:47:32', 'myDE7GWd', '4708707'), + (1098, 1167, 'attending', '2022-01-06 22:35:18', '2025-12-17 19:47:31', 'myDE7GWd', '4731015'), + (1098, 1173, 'attending', '2022-01-08 22:51:59', '2025-12-17 19:47:31', 'myDE7GWd', '4736495'), + (1098, 1175, 'attending', '2022-01-22 18:23:31', '2025-12-17 19:47:32', 'myDE7GWd', '4736497'), + (1098, 1178, 'attending', '2022-01-29 18:49:03', '2025-12-17 19:47:32', 'myDE7GWd', '4736500'), + (1098, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'myDE7GWd', '4746789'), + (1098, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'myDE7GWd', '4753929'), + (1098, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'myDE7GWd', '5038850'), + (1098, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myDE7GWd', '6045684'), + (1099, 2142, 'not_attending', '2023-07-17 19:04:57', '2025-12-17 19:46:52', 'dKZ5lWY4', '6333850'), + (1099, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKZ5lWY4', '6337970'), + (1099, 2159, 'not_attending', '2023-07-22 12:20:23', '2025-12-17 19:46:53', 'dKZ5lWY4', '6338355'), + (1099, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKZ5lWY4', '6342044'), + (1099, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKZ5lWY4', '6342298'), + (1099, 2172, 'attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dKZ5lWY4', '6342591'), + (1099, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dKZ5lWY4', '6343294'), + (1099, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKZ5lWY4', '6347034'), + (1099, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKZ5lWY4', '6347056'), + (1099, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKZ5lWY4', '6353830'), + (1099, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKZ5lWY4', '6353831'), + (1099, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKZ5lWY4', '6357867'), + (1099, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKZ5lWY4', '6358652'), + (1099, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKZ5lWY4', '6361709'), + (1099, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKZ5lWY4', '6361710'), + (1099, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKZ5lWY4', '6361711'), + (1099, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dKZ5lWY4', '6361712'), + (1099, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKZ5lWY4', '6361713'), + (1099, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKZ5lWY4', '6382573'), + (1099, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dKZ5lWY4', '6388604'), + (1099, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKZ5lWY4', '6394629'), + (1099, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKZ5lWY4', '6394631'), + (1099, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKZ5lWY4', '6440863'), + (1099, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKZ5lWY4', '6445440'), + (1099, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKZ5lWY4', '6453951'), + (1099, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKZ5lWY4', '6461696'), + (1099, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKZ5lWY4', '6462129'), + (1099, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKZ5lWY4', '6463218'), + (1099, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dKZ5lWY4', '6472181'), + (1099, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZ5lWY4', '6482693'), + (1099, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZ5lWY4', '6484200'), + (1099, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKZ5lWY4', '6484680'), + (1099, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZ5lWY4', '6507741'), + (1099, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZ5lWY4', '6514659'), + (1099, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZ5lWY4', '6514660'), + (1099, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZ5lWY4', '6519103'), + (1099, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZ5lWY4', '6535681'), + (1099, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZ5lWY4', '6584747'), + (1099, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZ5lWY4', '6587097'), + (1099, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZ5lWY4', '6609022'), + (1099, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZ5lWY4', '6632757'), + (1099, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZ5lWY4', '6644187'), + (1099, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZ5lWY4', '6648951'), + (1099, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZ5lWY4', '6648952'), + (1099, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZ5lWY4', '6655401'), + (1099, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZ5lWY4', '6661585'), + (1099, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZ5lWY4', '6661588'), + (1099, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZ5lWY4', '6661589'), + (1099, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZ5lWY4', '6699906'), + (1099, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZ5lWY4', '6701109'), + (1099, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZ5lWY4', '6705219'), + (1099, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZ5lWY4', '6710153'), + (1099, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZ5lWY4', '6711552'), + (1099, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZ5lWY4', '6711553'), + (1100, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'GmjoW3aA', '3149491'), + (1100, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'GmjoW3aA', '3236450'), + (1100, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjoW3aA', '3974109'), + (1100, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjoW3aA', '3975311'), + (1100, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjoW3aA', '3975312'), + (1100, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjoW3aA', '3994992'), + (1100, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjoW3aA', '4014338'), + (1100, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjoW3aA', '4136744'), + (1100, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjoW3aA', '6045684'), + (1101, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArgyLXL4', '6045684'), + (1102, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Pm7XqnMA', '3236465'), + (1102, 642, 'attending', '2021-04-10 22:48:15', '2025-12-17 19:47:44', 'Pm7XqnMA', '3539917'), + (1102, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Pm7XqnMA', '3539918'), + (1102, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Pm7XqnMA', '3539919'), + (1102, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm7XqnMA', '3539920'), + (1102, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm7XqnMA', '3539921'), + (1102, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm7XqnMA', '3583262'), + (1102, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7XqnMA', '3661369'), + (1102, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7XqnMA', '3730212'), + (1102, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7XqnMA', '3793156'), + (1102, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Pm7XqnMA', '3803310'), + (1102, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Pm7XqnMA', '3806392'), + (1102, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7XqnMA', '6045684'), + (1103, 408, 'attending', '2021-02-16 01:18:46', '2025-12-17 19:47:50', '8dB5vBw4', '3236466'), + (1103, 603, 'not_attending', '2021-02-21 00:37:18', '2025-12-17 19:47:50', '8dB5vBw4', '3470304'), + (1103, 604, 'attending', '2021-02-27 16:54:13', '2025-12-17 19:47:50', '8dB5vBw4', '3470305'), + (1103, 607, 'attending', '2021-02-18 22:15:10', '2025-12-17 19:47:50', '8dB5vBw4', '3471882'), + (1103, 621, 'not_attending', '2021-03-07 00:43:48', '2025-12-17 19:47:51', '8dB5vBw4', '3517815'), + (1103, 622, 'maybe', '2021-03-12 23:30:44', '2025-12-17 19:47:51', '8dB5vBw4', '3517816'), + (1103, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '8dB5vBw4', '3523941'), + (1103, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '8dB5vBw4', '3533850'), + (1103, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8dB5vBw4', '3536632'), + (1103, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8dB5vBw4', '3536656'), + (1103, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '8dB5vBw4', '3539916'), + (1103, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '8dB5vBw4', '3539917'), + (1103, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '8dB5vBw4', '3539918'), + (1103, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '8dB5vBw4', '3539919'), + (1103, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '8dB5vBw4', '3539920'), + (1103, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '8dB5vBw4', '3539921'), + (1103, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '8dB5vBw4', '3539922'), + (1103, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8dB5vBw4', '3539923'), + (1103, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8dB5vBw4', '3539927'), + (1103, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8dB5vBw4', '3582734'), + (1103, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8dB5vBw4', '3583262'), + (1103, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8dB5vBw4', '3619523'), + (1103, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8dB5vBw4', '3661369'), + (1103, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8dB5vBw4', '3674262'), + (1103, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8dB5vBw4', '3677402'), + (1103, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '8dB5vBw4', '3730212'), + (1103, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dB5vBw4', '6045684'), + (1104, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'o4PX3ww4', '7074364'), + (1104, 2661, 'not_attending', '2024-06-16 14:15:12', '2025-12-17 19:46:28', 'o4PX3ww4', '7302674'), + (1104, 2678, 'maybe', '2024-06-14 20:25:32', '2025-12-17 19:46:28', 'o4PX3ww4', '7319489'), + (1104, 2679, 'not_attending', '2024-06-14 20:25:28', '2025-12-17 19:46:29', 'o4PX3ww4', '7319490'), + (1104, 2685, 'attending', '2024-06-12 21:55:26', '2025-12-17 19:46:28', 'o4PX3ww4', '7322675'), + (1104, 2686, 'maybe', '2024-06-11 13:37:36', '2025-12-17 19:46:29', 'o4PX3ww4', '7323802'), + (1104, 2688, 'attending', '2024-06-14 20:25:24', '2025-12-17 19:46:29', 'o4PX3ww4', '7324073'), + (1104, 2689, 'attending', '2024-06-23 23:10:12', '2025-12-17 19:46:29', 'o4PX3ww4', '7324074'), + (1104, 2690, 'attending', '2024-07-03 22:28:39', '2025-12-17 19:46:30', 'o4PX3ww4', '7324075'), + (1104, 2691, 'attending', '2024-07-03 22:28:41', '2025-12-17 19:46:30', 'o4PX3ww4', '7324076'), + (1104, 2692, 'not_attending', '2024-07-25 20:06:23', '2025-12-17 19:46:30', 'o4PX3ww4', '7324077'), + (1104, 2693, 'maybe', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'o4PX3ww4', '7324078'), + (1104, 2694, 'attending', '2024-08-09 22:32:56', '2025-12-17 19:46:31', 'o4PX3ww4', '7324079'), + (1104, 2696, 'attending', '2024-08-24 22:40:45', '2025-12-17 19:46:32', 'o4PX3ww4', '7324081'), + (1104, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'o4PX3ww4', '7324082'), + (1104, 2700, 'attending', '2024-06-14 22:39:52', '2025-12-17 19:46:28', 'o4PX3ww4', '7324388'), + (1104, 2710, 'maybe', '2024-06-14 20:25:07', '2025-12-17 19:46:28', 'o4PX3ww4', '7325108'), + (1104, 2717, 'attending', '2024-06-27 18:45:58', '2025-12-17 19:46:29', 'o4PX3ww4', '7329149'), + (1104, 2720, 'not_attending', '2024-06-18 20:49:46', '2025-12-17 19:46:28', 'o4PX3ww4', '7331436'), + (1104, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'o4PX3ww4', '7331457'), + (1104, 2747, 'maybe', '2024-07-17 20:47:15', '2025-12-17 19:46:30', 'o4PX3ww4', '7353587'), + (1104, 2755, 'attending', '2024-07-09 21:02:32', '2025-12-17 19:46:29', 'o4PX3ww4', '7357808'), + (1104, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'o4PX3ww4', '7363643'), + (1104, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'o4PX3ww4', '7368606'), + (1104, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'o4PX3ww4', '7397462'), + (1104, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'o4PX3ww4', '7424275'), + (1104, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'o4PX3ww4', '7432751'), + (1104, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'o4PX3ww4', '7432752'), + (1104, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'o4PX3ww4', '7432753'), + (1104, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'o4PX3ww4', '7432754'), + (1104, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'o4PX3ww4', '7432755'), + (1104, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'o4PX3ww4', '7432756'), + (1104, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'o4PX3ww4', '7432758'), + (1104, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'o4PX3ww4', '7432759'), + (1104, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'o4PX3ww4', '7433834'), + (1104, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'o4PX3ww4', '7470197'), + (1104, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'o4PX3ww4', '7685613'), + (1104, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'o4PX3ww4', '7688194'), + (1104, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'o4PX3ww4', '7688196'), + (1104, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'o4PX3ww4', '7688289'), + (1104, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'o4PX3ww4', '7692763'), + (1104, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'o4PX3ww4', '7697552'), + (1104, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'o4PX3ww4', '7699878'), + (1104, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'o4PX3ww4', '7704043'), + (1104, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'o4PX3ww4', '7712467'), + (1104, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'o4PX3ww4', '7713585'), + (1104, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'o4PX3ww4', '7713586'), + (1104, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'o4PX3ww4', '7738518'), + (1104, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'o4PX3ww4', '7750636'), + (1104, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'o4PX3ww4', '7796540'), + (1104, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'o4PX3ww4', '7796541'), + (1104, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'o4PX3ww4', '7796542'), + (1104, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'o4PX3ww4', '7825913'), + (1104, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'o4PX3ww4', '7826209'), + (1104, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'o4PX3ww4', '7834742'), + (1104, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'o4PX3ww4', '7842108'), + (1104, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'o4PX3ww4', '7842902'), + (1104, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'o4PX3ww4', '7842903'), + (1104, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'o4PX3ww4', '7842904'), + (1104, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'o4PX3ww4', '7842905'), + (1104, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'o4PX3ww4', '7855719'), + (1104, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'o4PX3ww4', '7860683'), + (1104, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'o4PX3ww4', '7860684'), + (1104, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'o4PX3ww4', '7866095'), + (1104, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'o4PX3ww4', '7869170'), + (1104, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'o4PX3ww4', '7869188'), + (1104, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'o4PX3ww4', '7869201'), + (1104, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'o4PX3ww4', '7877465'), + (1104, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'o4PX3ww4', '7888250'), + (1104, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'o4PX3ww4', '7904777'), + (1104, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'o4PX3ww4', '8349164'), + (1104, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'o4PX3ww4', '8349545'), + (1104, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'o4PX3ww4', '8368028'), + (1104, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'o4PX3ww4', '8368029'), + (1104, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'o4PX3ww4', '8388462'), + (1104, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'o4PX3ww4', '8400273'), + (1104, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'o4PX3ww4', '8400275'), + (1104, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'o4PX3ww4', '8400276'), + (1104, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'o4PX3ww4', '8404977'), + (1104, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'o4PX3ww4', '8430783'), + (1104, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'o4PX3ww4', '8430784'), + (1104, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'o4PX3ww4', '8430799'), + (1104, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'o4PX3ww4', '8430800'), + (1104, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'o4PX3ww4', '8430801'), + (1104, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'o4PX3ww4', '8438709'), + (1104, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'o4PX3ww4', '8457738'), + (1104, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'o4PX3ww4', '8459566'), + (1104, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'o4PX3ww4', '8459567'), + (1104, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'o4PX3ww4', '8461032'), + (1104, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'o4PX3ww4', '8477877'), + (1104, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'o4PX3ww4', '8485688'), + (1104, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'o4PX3ww4', '8490587'), + (1104, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'o4PX3ww4', '8493552'), + (1104, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'o4PX3ww4', '8493553'), + (1104, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'o4PX3ww4', '8493554'), + (1104, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'o4PX3ww4', '8493555'), + (1104, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'o4PX3ww4', '8493556'), + (1104, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'o4PX3ww4', '8493557'), + (1104, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'o4PX3ww4', '8493558'), + (1104, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'o4PX3ww4', '8493559'), + (1104, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'o4PX3ww4', '8493560'), + (1104, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'o4PX3ww4', '8493561'), + (1104, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'o4PX3ww4', '8493572'), + (1104, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'o4PX3ww4', '8540725'), + (1104, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'o4PX3ww4', '8555421'), + (1105, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm7GvVXem', '5880943'), + (1105, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm7GvVXem', '5900202'), + (1105, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm7GvVXem', '5900203'), + (1105, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'm7GvVXem', '5910528'), + (1105, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'm7GvVXem', '5962317'), + (1105, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'm7GvVXem', '5962318'), + (1105, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm7GvVXem', '5965933'), + (1105, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm7GvVXem', '5972815'), + (1105, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm7GvVXem', '5974016'), + (1105, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm7GvVXem', '5981515'), + (1105, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm7GvVXem', '5993516'), + (1105, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm7GvVXem', '5998939'), + (1105, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm7GvVXem', '6028191'), + (1105, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm7GvVXem', '6040066'), + (1105, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm7GvVXem', '6042717'), + (1105, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm7GvVXem', '6044838'), + (1105, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm7GvVXem', '6044839'), + (1105, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7GvVXem', '6045684'), + (1105, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'm7GvVXem', '6048955'), + (1105, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm7GvVXem', '6050104'), + (1105, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm7GvVXem', '6053195'), + (1105, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm7GvVXem', '6053198'), + (1105, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm7GvVXem', '6056085'), + (1105, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm7GvVXem', '6056916'), + (1105, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm7GvVXem', '6059290'), + (1105, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm7GvVXem', '6060328'), + (1105, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm7GvVXem', '6061037'), + (1105, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm7GvVXem', '6061039'), + (1105, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm7GvVXem', '6067245'), + (1105, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm7GvVXem', '6068094'), + (1105, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm7GvVXem', '6068252'), + (1105, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm7GvVXem', '6068253'), + (1105, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm7GvVXem', '6068254'), + (1105, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm7GvVXem', '6068280'), + (1105, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm7GvVXem', '6069093'), + (1105, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'm7GvVXem', '6072528'), + (1105, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm7GvVXem', '6079840'), + (1105, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm7GvVXem', '6083398'), + (1105, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm7GvVXem', '6093504'), + (1105, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm7GvVXem', '6097414'), + (1105, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm7GvVXem', '6097442'), + (1105, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm7GvVXem', '6097684'), + (1105, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm7GvVXem', '6098762'), + (1105, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm7GvVXem', '6101362'), + (1105, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm7GvVXem', '6107314'), + (1105, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'm7GvVXem', '6120034'), + (1106, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxM7BL2m', '6337236'), + (1106, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxM7BL2m', '6337970'), + (1106, 2163, 'not_attending', '2023-07-16 20:18:47', '2025-12-17 19:46:52', 'dxM7BL2m', '6341710'), + (1106, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxM7BL2m', '6342044'), + (1106, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxM7BL2m', '6342298'), + (1106, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxM7BL2m', '6342591'), + (1106, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dxM7BL2m', '6343294'), + (1106, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxM7BL2m', '6347034'), + (1106, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxM7BL2m', '6347056'), + (1106, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxM7BL2m', '6353830'), + (1106, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxM7BL2m', '6353831'), + (1106, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxM7BL2m', '6357867'), + (1106, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxM7BL2m', '6358652'), + (1106, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxM7BL2m', '6361709'), + (1106, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxM7BL2m', '6361710'), + (1106, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxM7BL2m', '6361711'), + (1106, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxM7BL2m', '6361712'), + (1106, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxM7BL2m', '6361713'), + (1106, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxM7BL2m', '6382573'), + (1106, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dxM7BL2m', '6388604'), + (1106, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxM7BL2m', '6394629'), + (1106, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxM7BL2m', '6394631'), + (1106, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxM7BL2m', '6431478'), + (1107, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PPQNEG4', '6045684'), + (1108, 221, 'attending', '2020-09-17 03:29:27', '2025-12-17 19:47:56', 'VdxRqJDA', '3129265'), + (1108, 311, 'maybe', '2020-09-18 21:01:18', '2025-12-17 19:47:56', 'VdxRqJDA', '3186057'), + (1108, 340, 'attending', '2020-09-18 21:01:25', '2025-12-17 19:47:56', 'VdxRqJDA', '3204470'), + (1108, 345, 'not_attending', '2020-09-19 19:39:29', '2025-12-17 19:47:56', 'VdxRqJDA', '3207423'), + (1108, 362, 'attending', '2020-09-18 02:59:39', '2025-12-17 19:47:52', 'VdxRqJDA', '3214207'), + (1108, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'VdxRqJDA', '3217037'), + (1108, 365, 'maybe', '2020-09-18 21:01:03', '2025-12-17 19:47:51', 'VdxRqJDA', '3218510'), + (1108, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'VdxRqJDA', '3228698'), + (1108, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'VdxRqJDA', '3228699'), + (1108, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'VdxRqJDA', '3228700'), + (1108, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'VdxRqJDA', '3228701'), + (1108, 399, 'not_attending', '2020-11-13 00:48:28', '2025-12-17 19:47:54', 'VdxRqJDA', '3236454'), + (1108, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'VdxRqJDA', '3245751'), + (1108, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'VdxRqJDA', '3250232'), + (1108, 440, 'not_attending', '2020-11-07 07:17:41', '2025-12-17 19:47:53', 'VdxRqJDA', '3256168'), + (1108, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'VdxRqJDA', '3263578'), + (1108, 445, 'attending', '2020-11-13 00:48:35', '2025-12-17 19:47:54', 'VdxRqJDA', '3266138'), + (1108, 449, 'not_attending', '2020-11-08 21:48:01', '2025-12-17 19:47:53', 'VdxRqJDA', '3272055'), + (1108, 456, 'maybe', '2020-11-17 00:45:38', '2025-12-17 19:47:54', 'VdxRqJDA', '3276428'), + (1108, 459, 'not_attending', '2020-11-16 22:30:24', '2025-12-17 19:47:54', 'VdxRqJDA', '3281467'), + (1108, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'VdxRqJDA', '3281470'), + (1108, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'VdxRqJDA', '3281829'), + (1108, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'VdxRqJDA', '3285413'), + (1108, 469, 'not_attending', '2020-11-28 23:21:57', '2025-12-17 19:47:54', 'VdxRqJDA', '3285414'), + (1108, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'VdxRqJDA', '3297764'), + (1108, 492, 'not_attending', '2020-12-06 22:39:14', '2025-12-17 19:47:54', 'VdxRqJDA', '3313731'), + (1108, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'VdxRqJDA', '3313856'), + (1108, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'VdxRqJDA', '3314909'), + (1108, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'VdxRqJDA', '3314964'), + (1108, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'VdxRqJDA', '3323365'), + (1108, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'VdxRqJDA', '3329383'), + (1108, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'VdxRqJDA', '3351539'), + (1108, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'VdxRqJDA', '3386848'), + (1108, 538, 'maybe', '2021-01-14 17:28:19', '2025-12-17 19:47:48', 'VdxRqJDA', '3388151'), + (1108, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'VdxRqJDA', '3389527'), + (1108, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'VdxRqJDA', '3396499'), + (1108, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'VdxRqJDA', '3403650'), + (1108, 549, 'maybe', '2021-01-18 18:03:25', '2025-12-17 19:47:49', 'VdxRqJDA', '3406988'), + (1108, 555, 'maybe', '2021-01-19 04:09:07', '2025-12-17 19:47:49', 'VdxRqJDA', '3416576'), + (1108, 558, 'not_attending', '2021-01-23 00:41:44', '2025-12-17 19:47:49', 'VdxRqJDA', '3418925'), + (1108, 560, 'not_attending', '2021-01-22 01:19:56', '2025-12-17 19:47:49', 'VdxRqJDA', '3421715'), + (1108, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'VdxRqJDA', '3430267'), + (1108, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'VdxRqJDA', '3432673'), + (1108, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'VdxRqJDA', '3468125'), + (1108, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VdxRqJDA', '3470303'), + (1108, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'VdxRqJDA', '3470305'), + (1108, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VdxRqJDA', '3470991'), + (1108, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VdxRqJDA', '3517815'), + (1108, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VdxRqJDA', '3517816'), + (1108, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'VdxRqJDA', '3523941'), + (1108, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VdxRqJDA', '3533850'), + (1108, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VdxRqJDA', '3536632'), + (1108, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VdxRqJDA', '3536656'), + (1108, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VdxRqJDA', '3539916'), + (1108, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VdxRqJDA', '3539917'), + (1108, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VdxRqJDA', '3539918'), + (1108, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VdxRqJDA', '3539919'), + (1108, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VdxRqJDA', '3539920'), + (1108, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VdxRqJDA', '3539921'), + (1108, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VdxRqJDA', '3539922'), + (1108, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VdxRqJDA', '3539923'), + (1108, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VdxRqJDA', '3539927'), + (1108, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VdxRqJDA', '3582734'), + (1108, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'VdxRqJDA', '3583262'), + (1108, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VdxRqJDA', '3619523'), + (1108, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'VdxRqJDA', '3661369'), + (1108, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VdxRqJDA', '3674262'), + (1108, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VdxRqJDA', '3677402'), + (1108, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'VdxRqJDA', '3730212'), + (1108, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxRqJDA', '6045684'), + (1109, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'kdK0MoRm', '3539921'), + (1109, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'kdK0MoRm', '3539922'), + (1109, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'kdK0MoRm', '3539923'), + (1109, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'kdK0MoRm', '3974109'), + (1109, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdK0MoRm', '3975311'), + (1109, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdK0MoRm', '3975312'), + (1109, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdK0MoRm', '3994992'), + (1109, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdK0MoRm', '4014338'), + (1109, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdK0MoRm', '4021848'), + (1109, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdK0MoRm', '4136744'), + (1109, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdK0MoRm', '4136937'), + (1109, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdK0MoRm', '4136938'), + (1109, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdK0MoRm', '4136947'), + (1109, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdK0MoRm', '4210314'), + (1109, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdK0MoRm', '4225444'), + (1109, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdK0MoRm', '4239259'), + (1109, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdK0MoRm', '4240316'), + (1109, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdK0MoRm', '4240317'), + (1109, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdK0MoRm', '4240318'), + (1109, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdK0MoRm', '4240320'), + (1109, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdK0MoRm', '4250163'), + (1109, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdK0MoRm', '4275957'), + (1109, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdK0MoRm', '4277819'), + (1109, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdK0MoRm', '4301723'), + (1109, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdK0MoRm', '4302093'), + (1109, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdK0MoRm', '4304151'), + (1109, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdK0MoRm', '4356801'), + (1109, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdK0MoRm', '4366186'), + (1109, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdK0MoRm', '4366187'), + (1109, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdK0MoRm', '4420735'), + (1109, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdK0MoRm', '4420738'), + (1109, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdK0MoRm', '4420739'), + (1109, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'kdK0MoRm', '4420741'), + (1109, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdK0MoRm', '4420744'), + (1109, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdK0MoRm', '4420747'), + (1109, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdK0MoRm', '4420748'), + (1109, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdK0MoRm', '4420749'), + (1109, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdK0MoRm', '4461883'), + (1109, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdK0MoRm', '4508342'), + (1109, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdK0MoRm', '4568602'), + (1109, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdK0MoRm', '4572153'), + (1109, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdK0MoRm', '4585962'), + (1109, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdK0MoRm', '4596356'), + (1109, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdK0MoRm', '4598860'), + (1109, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdK0MoRm', '4598861'), + (1109, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdK0MoRm', '4602797'), + (1109, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdK0MoRm', '4637896'), + (1109, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdK0MoRm', '4642994'), + (1109, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdK0MoRm', '4642995'), + (1109, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdK0MoRm', '4642996'), + (1109, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdK0MoRm', '4642997'), + (1109, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdK0MoRm', '4645687'), + (1109, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdK0MoRm', '4645698'), + (1109, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdK0MoRm', '4645704'), + (1109, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdK0MoRm', '4645705'), + (1109, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdK0MoRm', '4668385'), + (1109, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdK0MoRm', '4694407'), + (1109, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'kdK0MoRm', '4706262'), + (1109, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdK0MoRm', '4736497'), + (1109, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdK0MoRm', '4736499'), + (1109, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdK0MoRm', '4736500'), + (1109, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdK0MoRm', '4736503'), + (1109, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdK0MoRm', '4736504'), + (1109, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdK0MoRm', '4746789'), + (1109, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdK0MoRm', '4753929'), + (1109, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdK0MoRm', '5038850'), + (1109, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdK0MoRm', '5045826'), + (1109, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdK0MoRm', '5132533'), + (1109, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdK0MoRm', '5186582'), + (1109, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdK0MoRm', '5186583'), + (1109, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdK0MoRm', '5186585'), + (1109, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdK0MoRm', '5190437'), + (1109, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdK0MoRm', '5195095'), + (1109, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdK0MoRm', '5215989'), + (1109, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdK0MoRm', '5223686'), + (1109, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'kdK0MoRm', '5227432'), + (1109, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdK0MoRm', '5247467'), + (1109, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdK0MoRm', '5260800'), + (1109, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdK0MoRm', '5269930'), + (1109, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdK0MoRm', '5271448'), + (1109, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'kdK0MoRm', '5271449'), + (1109, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'kdK0MoRm', '5276469'), + (1109, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdK0MoRm', '5278159'), + (1109, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdK0MoRm', '5363695'), + (1109, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdK0MoRm', '5365960'), + (1109, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'kdK0MoRm', '5368973'), + (1109, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdK0MoRm', '5378247'), + (1109, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'kdK0MoRm', '5389605'), + (1109, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdK0MoRm', '5397265'), + (1109, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'kdK0MoRm', '5403967'), + (1109, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdK0MoRm', '5404786'), + (1109, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdK0MoRm', '5405203'), + (1109, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'kdK0MoRm', '5411699'), + (1109, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdK0MoRm', '5412550'), + (1109, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdK0MoRm', '5415046'), + (1109, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdK0MoRm', '5422086'), + (1109, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdK0MoRm', '5422406'), + (1109, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdK0MoRm', '5424565'), + (1109, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdK0MoRm', '5426882'), + (1109, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'kdK0MoRm', '5427083'), + (1109, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdK0MoRm', '5441125'), + (1109, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdK0MoRm', '5441126'), + (1109, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdK0MoRm', '5441128'), + (1109, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdK0MoRm', '5441131'), + (1109, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdK0MoRm', '5441132'), + (1109, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'kdK0MoRm', '5446643'), + (1109, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdK0MoRm', '5453325'), + (1109, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdK0MoRm', '5454516'), + (1109, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdK0MoRm', '5454605'), + (1109, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdK0MoRm', '5455037'), + (1109, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdK0MoRm', '5461278'), + (1109, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdK0MoRm', '5469480'), + (1109, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'kdK0MoRm', '5471073'), + (1109, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdK0MoRm', '5474663'), + (1109, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdK0MoRm', '5482022'), + (1109, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'kdK0MoRm', '5482793'), + (1109, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdK0MoRm', '5488912'), + (1109, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdK0MoRm', '5492192'), + (1109, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdK0MoRm', '5493139'), + (1109, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdK0MoRm', '5493200'), + (1109, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdK0MoRm', '5502188'), + (1109, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdK0MoRm', '5505059'), + (1109, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdK0MoRm', '5509055'), + (1109, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdK0MoRm', '5512862'), + (1109, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdK0MoRm', '5513985'), + (1109, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'kdK0MoRm', '5519981'), + (1109, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdK0MoRm', '5522550'), + (1109, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdK0MoRm', '5534683'), + (1109, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdK0MoRm', '5537735'), + (1109, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdK0MoRm', '5540859'), + (1109, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdK0MoRm', '5546619'), + (1109, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'kdK0MoRm', '5555245'), + (1109, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdK0MoRm', '5557747'), + (1109, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdK0MoRm', '5560255'), + (1109, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdK0MoRm', '5562906'), + (1109, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdK0MoRm', '5600604'), + (1109, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdK0MoRm', '5605544'), + (1109, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'kdK0MoRm', '5606737'), + (1109, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdK0MoRm', '5630960'), + (1109, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdK0MoRm', '5630961'), + (1109, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdK0MoRm', '5630962'), + (1109, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdK0MoRm', '5630966'), + (1109, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdK0MoRm', '5630967'), + (1109, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdK0MoRm', '5630968'), + (1109, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdK0MoRm', '5635406'), + (1109, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdK0MoRm', '5638765'), + (1109, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdK0MoRm', '5640097'), + (1109, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdK0MoRm', '5640843'), + (1109, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdK0MoRm', '5641521'), + (1109, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdK0MoRm', '5642818'), + (1109, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdK0MoRm', '5652395'), + (1109, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdK0MoRm', '5670445'), + (1109, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdK0MoRm', '5671637'), + (1109, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdK0MoRm', '5672329'), + (1109, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdK0MoRm', '5674057'), + (1109, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdK0MoRm', '5674060'), + (1109, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdK0MoRm', '5677461'), + (1109, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdK0MoRm', '5698046'), + (1109, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdK0MoRm', '5699760'), + (1109, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdK0MoRm', '5741601'), + (1109, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdK0MoRm', '5763458'), + (1109, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdK0MoRm', '5774172'), + (1109, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'kdK0MoRm', '5818247'), + (1109, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdK0MoRm', '5819471'), + (1109, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdK0MoRm', '5827739'), + (1109, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdK0MoRm', '5844306'), + (1109, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdK0MoRm', '5850159'), + (1109, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdK0MoRm', '5858999'), + (1109, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdK0MoRm', '5871984'), + (1109, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdK0MoRm', '5876354'), + (1109, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdK0MoRm', '5880939'), + (1109, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdK0MoRm', '5880940'), + (1109, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdK0MoRm', '5880942'), + (1109, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdK0MoRm', '5880943'), + (1109, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdK0MoRm', '5887890'), + (1109, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdK0MoRm', '5888598'), + (1109, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdK0MoRm', '5893260'), + (1109, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdK0MoRm', '5899826'), + (1109, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdK0MoRm', '5900199'), + (1109, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdK0MoRm', '5900200'), + (1109, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdK0MoRm', '5900202'), + (1109, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdK0MoRm', '5900203'), + (1109, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdK0MoRm', '5901108'), + (1109, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdK0MoRm', '5901126'), + (1109, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdK0MoRm', '5909655'), + (1109, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdK0MoRm', '5910522'), + (1109, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdK0MoRm', '5910526'), + (1109, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdK0MoRm', '5910528'), + (1109, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdK0MoRm', '5916219'), + (1109, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdK0MoRm', '5936234'), + (1109, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdK0MoRm', '5958351'), + (1109, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdK0MoRm', '5959751'), + (1109, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdK0MoRm', '5959755'), + (1109, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdK0MoRm', '5960055'), + (1109, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdK0MoRm', '5961684'), + (1109, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdK0MoRm', '5962132'), + (1109, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdK0MoRm', '5962133'), + (1109, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdK0MoRm', '5962134'), + (1109, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdK0MoRm', '5962317'), + (1109, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdK0MoRm', '5962318'), + (1109, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdK0MoRm', '5965933'), + (1109, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdK0MoRm', '5967014'), + (1109, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdK0MoRm', '5972815'), + (1109, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdK0MoRm', '5974016'), + (1109, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'kdK0MoRm', '5975052'), + (1109, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'kdK0MoRm', '5975054'), + (1109, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdK0MoRm', '5981515'), + (1109, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdK0MoRm', '5993516'), + (1109, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdK0MoRm', '5998939'), + (1109, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdK0MoRm', '6028191'), + (1109, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0MoRm', '6045684'), + (1111, 1315, 'attending', '2022-04-21 19:32:53', '2025-12-17 19:47:27', 'AeVQQNX4', '5237522'), + (1111, 1319, 'attending', '2022-04-19 19:28:43', '2025-12-17 19:47:27', 'AeVQQNX4', '5238353'), + (1111, 1320, 'attending', '2022-04-24 23:27:19', '2025-12-17 19:47:27', 'AeVQQNX4', '5238354'), + (1111, 1322, 'attending', '2022-04-19 19:38:49', '2025-12-17 19:47:27', 'AeVQQNX4', '5238356'), + (1111, 1327, 'not_attending', '2022-04-19 19:53:57', '2025-12-17 19:47:27', 'AeVQQNX4', '5238445'), + (1111, 1331, 'attending', '2022-04-19 19:37:40', '2025-12-17 19:47:27', 'AeVQQNX4', '5242156'), + (1111, 1336, 'attending', '2022-04-19 19:36:27', '2025-12-17 19:47:27', 'AeVQQNX4', '5244915'), + (1111, 1337, 'attending', '2022-04-20 01:59:52', '2025-12-17 19:47:27', 'AeVQQNX4', '5245036'), + (1111, 1346, 'maybe', '2022-04-23 20:52:34', '2025-12-17 19:47:27', 'AeVQQNX4', '5247467'), + (1111, 1350, 'attending', '2022-04-19 19:15:11', '2025-12-17 19:47:27', 'AeVQQNX4', '5249763'), + (1111, 1357, 'attending', '2022-04-24 18:07:12', '2025-12-17 19:47:27', 'AeVQQNX4', '5256017'), + (1111, 1362, 'attending', '2022-04-29 06:42:01', '2025-12-17 19:47:28', 'AeVQQNX4', '5260800'), + (1111, 1363, 'attending', '2022-04-26 04:10:08', '2025-12-17 19:47:28', 'AeVQQNX4', '5261577'), + (1111, 1364, 'attending', '2022-04-26 04:09:39', '2025-12-17 19:47:28', 'AeVQQNX4', '5261598'), + (1111, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AeVQQNX4', '6045684'), + (1112, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40R7wQm', '3974109'), + (1112, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'R40R7wQm', '3975311'), + (1112, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40R7wQm', '3975312'), + (1112, 838, 'attending', '2021-06-06 20:26:25', '2025-12-17 19:47:47', 'R40R7wQm', '3994992'), + (1112, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40R7wQm', '4014338'), + (1112, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'R40R7wQm', '4021848'), + (1112, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40R7wQm', '4136744'), + (1112, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40R7wQm', '4136937'), + (1112, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40R7wQm', '4136938'), + (1112, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40R7wQm', '4136947'), + (1112, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40R7wQm', '4225444'), + (1112, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40R7wQm', '4239259'), + (1112, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40R7wQm', '4250163'), + (1112, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40R7wQm', '6045684'), + (1113, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'daB7qbDm', '4366186'), + (1113, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'daB7qbDm', '4366187'), + (1113, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daB7qbDm', '6045684'), + (1114, 2145, 'not_attending', '2023-07-13 20:59:41', '2025-12-17 19:46:52', 'AYR3ME94', '6334903'), + (1114, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AYR3ME94', '6337236'), + (1114, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AYR3ME94', '6337970'), + (1114, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AYR3ME94', '6338308'), + (1114, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AYR3ME94', '6341710'), + (1114, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AYR3ME94', '6342044'), + (1114, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AYR3ME94', '6342298'), + (1114, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'AYR3ME94', '6342591'), + (1114, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AYR3ME94', '6343294'), + (1114, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AYR3ME94', '6347034'), + (1114, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AYR3ME94', '6347056'), + (1114, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AYR3ME94', '6353830'), + (1114, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AYR3ME94', '6353831'), + (1114, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AYR3ME94', '6357867'), + (1114, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AYR3ME94', '6358652'), + (1114, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AYR3ME94', '6361709'), + (1114, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AYR3ME94', '6361710'), + (1114, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AYR3ME94', '6361711'), + (1114, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AYR3ME94', '6361712'), + (1114, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AYR3ME94', '6361713'), + (1114, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AYR3ME94', '6382573'), + (1114, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'AYR3ME94', '6388604'), + (1114, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AYR3ME94', '6394629'), + (1114, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AYR3ME94', '6394631'), + (1114, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'AYR3ME94', '6431478'), + (1116, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'rdOa9l5A', '3149489'), + (1116, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'rdOa9l5A', '3149491'), + (1116, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'rdOa9l5A', '3236450'), + (1116, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'rdOa9l5A', '3236452'), + (1116, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'rdOa9l5A', '3539922'), + (1116, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'rdOa9l5A', '3539923'), + (1116, 814, 'attending', '2021-05-16 03:51:41', '2025-12-17 19:47:46', 'rdOa9l5A', '3817706'), + (1116, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'rdOa9l5A', '3963335'), + (1116, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'rdOa9l5A', '3975311'), + (1116, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'rdOa9l5A', '3975312'), + (1116, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOa9l5A', '3994992'), + (1116, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'rdOa9l5A', '4014338'), + (1116, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'rdOa9l5A', '4136744'), + (1116, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOa9l5A', '6045684'), + (1117, 2806, 'attending', '2024-09-14 01:14:02', '2025-12-17 19:46:25', 'Arxb8YZd', '7404888'), + (1117, 2821, 'maybe', '2024-09-22 02:21:56', '2025-12-17 19:46:26', 'Arxb8YZd', '7424275'), + (1117, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Arxb8YZd', '7424276'), + (1117, 2824, 'attending', '2024-09-13 01:10:52', '2025-12-17 19:46:25', 'Arxb8YZd', '7432751'), + (1117, 2825, 'attending', '2024-09-14 01:02:33', '2025-12-17 19:46:25', 'Arxb8YZd', '7432752'), + (1117, 2826, 'attending', '2024-09-14 01:02:57', '2025-12-17 19:46:25', 'Arxb8YZd', '7432753'), + (1117, 2827, 'attending', '2024-09-22 02:21:45', '2025-12-17 19:46:26', 'Arxb8YZd', '7432754'), + (1117, 2828, 'not_attending', '2024-10-18 02:57:03', '2025-12-17 19:46:26', 'Arxb8YZd', '7432755'), + (1117, 2829, 'attending', '2024-10-22 17:52:28', '2025-12-17 19:46:26', 'Arxb8YZd', '7432756'), + (1117, 2830, 'attending', '2024-10-24 01:41:41', '2025-12-17 19:46:26', 'Arxb8YZd', '7432758'), + (1117, 2831, 'attending', '2024-11-08 07:17:19', '2025-12-17 19:46:26', 'Arxb8YZd', '7432759'), + (1117, 2833, 'attending', '2024-09-13 01:13:34', '2025-12-17 19:46:24', 'Arxb8YZd', '7433834'), + (1117, 2834, 'attending', '2024-09-13 22:36:23', '2025-12-17 19:46:25', 'Arxb8YZd', '7433852'), + (1117, 2838, 'attending', '2024-09-21 21:28:47', '2025-12-17 19:46:25', 'Arxb8YZd', '7439182'), + (1117, 2839, 'attending', '2024-09-15 04:25:13', '2025-12-17 19:46:25', 'Arxb8YZd', '7439262'), + (1117, 2841, 'attending', '2024-09-17 01:55:23', '2025-12-17 19:46:25', 'Arxb8YZd', '7444444'), + (1117, 2844, 'attending', '2024-09-20 15:26:55', '2025-12-17 19:46:25', 'Arxb8YZd', '7450233'), + (1117, 2847, 'attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', 'Arxb8YZd', '7452299'), + (1117, 2849, 'attending', '2024-09-25 14:34:51', '2025-12-17 19:46:25', 'Arxb8YZd', '7457114'), + (1117, 2850, 'attending', '2024-09-25 14:34:39', '2025-12-17 19:46:25', 'Arxb8YZd', '7457153'), + (1117, 2855, 'attending', '2024-09-30 18:20:01', '2025-12-17 19:46:26', 'Arxb8YZd', '7469385'), + (1117, 2856, 'maybe', '2024-10-03 23:17:19', '2025-12-17 19:46:26', 'Arxb8YZd', '7469386'), + (1117, 2861, 'attending', '2024-10-02 22:37:59', '2025-12-17 19:46:26', 'Arxb8YZd', '7469826'), + (1117, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Arxb8YZd', '7470197'), + (1117, 2874, 'attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'Arxb8YZd', '7482239'), + (1117, 2878, 'maybe', '2024-10-10 23:26:05', '2025-12-17 19:46:26', 'Arxb8YZd', '7633857'), + (1117, 2879, 'not_attending', '2024-10-16 21:38:11', '2025-12-17 19:46:26', 'Arxb8YZd', '7633863'), + (1117, 2883, 'attending', '2024-10-22 02:43:34', '2025-12-17 19:46:26', 'Arxb8YZd', '7649157'), + (1117, 2888, 'attending', '2024-10-20 22:24:39', '2025-12-17 19:46:26', 'Arxb8YZd', '7654822'), + (1117, 2889, 'attending', '2024-10-22 17:50:51', '2025-12-17 19:46:26', 'Arxb8YZd', '7660485'), + (1117, 2893, 'attending', '2024-10-31 16:05:19', '2025-12-17 19:46:26', 'Arxb8YZd', '7672705'), + (1117, 2896, 'attending', '2024-11-08 07:17:34', '2025-12-17 19:46:27', 'Arxb8YZd', '7683647'), + (1117, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Arxb8YZd', '7685613'), + (1117, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Arxb8YZd', '7688194'), + (1117, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Arxb8YZd', '7688196'), + (1117, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Arxb8YZd', '7688289'), + (1117, 2909, 'not_attending', '2024-11-10 21:20:50', '2025-12-17 19:46:27', 'Arxb8YZd', '7689771'), + (1117, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Arxb8YZd', '7692763'), + (1117, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Arxb8YZd', '7697552'), + (1117, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Arxb8YZd', '7699878'), + (1117, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Arxb8YZd', '7704043'), + (1117, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Arxb8YZd', '7712467'), + (1117, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Arxb8YZd', '7713585'), + (1117, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Arxb8YZd', '7713586'), + (1117, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'Arxb8YZd', '7738518'), + (1117, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Arxb8YZd', '7750636'), + (1117, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Arxb8YZd', '7796540'), + (1117, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Arxb8YZd', '7796541'), + (1117, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Arxb8YZd', '7796542'), + (1117, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Arxb8YZd', '7825913'), + (1117, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Arxb8YZd', '7826209'), + (1117, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Arxb8YZd', '7834742'), + (1117, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Arxb8YZd', '7842108'), + (1117, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Arxb8YZd', '7842902'), + (1117, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Arxb8YZd', '7842903'), + (1117, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Arxb8YZd', '7842904'), + (1117, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Arxb8YZd', '7842905'), + (1117, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Arxb8YZd', '7855719'), + (1117, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Arxb8YZd', '7860683'), + (1117, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Arxb8YZd', '7860684'), + (1117, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Arxb8YZd', '7866095'), + (1117, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Arxb8YZd', '7869170'), + (1117, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Arxb8YZd', '7869188'), + (1117, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Arxb8YZd', '7869201'), + (1117, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Arxb8YZd', '7877465'), + (1117, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'Arxb8YZd', '7878570'), + (1117, 3040, 'not_attending', '2025-03-14 03:06:02', '2025-12-17 19:46:19', 'Arxb8YZd', '7881994'), + (1117, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Arxb8YZd', '7888250'), + (1117, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Arxb8YZd', '8349164'), + (1117, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Arxb8YZd', '8349545'), + (1117, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'Arxb8YZd', '8353584'), + (1118, 3087, 'not_attending', '2025-04-16 14:59:55', '2025-12-17 19:46:20', '4ZElzOLA', '7903856'), + (1118, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', '4ZElzOLA', '8347770'), + (1118, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4ZElzOLA', '8349164'), + (1118, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4ZElzOLA', '8349545'), + (1118, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4ZElzOLA', '8353584'), + (1118, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4ZElzOLA', '8368028'), + (1118, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4ZElzOLA', '8368029'), + (1118, 3140, 'not_attending', '2025-05-21 04:07:31', '2025-12-17 19:46:21', '4ZElzOLA', '8380399'), + (1118, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', '4ZElzOLA', '8387505'), + (1118, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4ZElzOLA', '8388462'), + (1118, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4ZElzOLA', '8400273'), + (1119, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '841yBBp4', '4642994'), + (1119, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '841yBBp4', '4642995'), + (1119, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '841yBBp4', '4642996'), + (1119, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '841yBBp4', '4642997'), + (1119, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '841yBBp4', '4645687'), + (1119, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '841yBBp4', '4645698'), + (1119, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '841yBBp4', '4645704'), + (1119, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '841yBBp4', '4645705'), + (1119, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '841yBBp4', '4668385'), + (1119, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '841yBBp4', '4694407'), + (1119, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '841yBBp4', '4746789'), + (1119, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '841yBBp4', '4753929'), + (1119, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '841yBBp4', '6045684'), + (1120, 374, 'not_attending', '2020-10-26 21:36:47', '2025-12-17 19:47:53', 'nm6bl8qm', '3221415'), + (1120, 392, 'attending', '2020-10-29 21:46:11', '2025-12-17 19:47:53', 'nm6bl8qm', '3236447'), + (1120, 428, 'attending', '2020-10-26 21:37:16', '2025-12-17 19:47:53', 'nm6bl8qm', '3250332'), + (1120, 438, 'attending', '2020-10-30 02:38:50', '2025-12-17 19:47:53', 'nm6bl8qm', '3256163'), + (1120, 440, 'not_attending', '2020-11-03 03:35:37', '2025-12-17 19:47:53', 'nm6bl8qm', '3256168'), + (1120, 441, 'attending', '2020-11-09 03:24:52', '2025-12-17 19:47:54', 'nm6bl8qm', '3256169'), + (1120, 444, 'not_attending', '2020-10-30 21:51:26', '2025-12-17 19:47:53', 'nm6bl8qm', '3263745'), + (1120, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'nm6bl8qm', '3266138'), + (1120, 446, 'attending', '2020-10-26 21:57:17', '2025-12-17 19:47:53', 'nm6bl8qm', '3267163'), + (1120, 456, 'maybe', '2020-11-17 00:36:51', '2025-12-17 19:47:54', 'nm6bl8qm', '3276428'), + (1120, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'nm6bl8qm', '3281467'), + (1120, 460, 'maybe', '2020-11-17 03:32:04', '2025-12-17 19:47:54', 'nm6bl8qm', '3281468'), + (1120, 461, 'not_attending', '2020-11-10 01:02:41', '2025-12-17 19:47:53', 'nm6bl8qm', '3281469'), + (1120, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'nm6bl8qm', '3281470'), + (1120, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'nm6bl8qm', '3281829'), + (1120, 468, 'not_attending', '2020-11-22 00:57:42', '2025-12-17 19:47:54', 'nm6bl8qm', '3285413'), + (1120, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'nm6bl8qm', '3285414'), + (1120, 478, 'maybe', '2020-11-17 22:50:56', '2025-12-17 19:47:54', 'nm6bl8qm', '3290899'), + (1120, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'nm6bl8qm', '3297764'), + (1120, 484, 'attending', '2020-11-20 13:34:39', '2025-12-17 19:47:54', 'nm6bl8qm', '3297792'), + (1120, 493, 'not_attending', '2020-12-06 00:16:12', '2025-12-17 19:47:54', 'nm6bl8qm', '3313856'), + (1120, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'nm6bl8qm', '3314909'), + (1120, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'nm6bl8qm', '3314964'), + (1120, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'nm6bl8qm', '3323365'), + (1120, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'nm6bl8qm', '3329383'), + (1120, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'nm6bl8qm', '3351539'), + (1120, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'nm6bl8qm', '3386848'), + (1120, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'nm6bl8qm', '3389527'), + (1120, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'nm6bl8qm', '3396499'), + (1120, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'nm6bl8qm', '3403650'), + (1120, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nm6bl8qm', '3406988'), + (1120, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'nm6bl8qm', '3416576'), + (1120, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'nm6bl8qm', '3418925'), + (1120, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6bl8qm', '6045684'), + (1121, 2160, 'attending', '2023-07-29 22:14:51', '2025-12-17 19:46:54', '4vbVvX14', '6338358'), + (1121, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4vbVvX14', '6342044'), + (1121, 2174, 'not_attending', '2023-07-26 20:15:40', '2025-12-17 19:46:54', '4vbVvX14', '6343294'), + (1121, 2176, 'not_attending', '2023-07-27 17:23:49', '2025-12-17 19:46:54', '4vbVvX14', '6347034'), + (1121, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4vbVvX14', '6353830'), + (1121, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4vbVvX14', '6353831'), + (1121, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4vbVvX14', '6357867'), + (1121, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4vbVvX14', '6358652'), + (1121, 2203, 'attending', '2023-08-09 22:18:40', '2025-12-17 19:46:55', '4vbVvX14', '6361524'), + (1121, 2204, 'maybe', '2023-08-19 22:09:28', '2025-12-17 19:46:55', '4vbVvX14', '6361542'), + (1121, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4vbVvX14', '6361709'), + (1121, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4vbVvX14', '6361710'), + (1121, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4vbVvX14', '6361711'), + (1121, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4vbVvX14', '6361712'), + (1121, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4vbVvX14', '6361713'), + (1121, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4vbVvX14', '6382573'), + (1121, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4vbVvX14', '6388604'), + (1121, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4vbVvX14', '6394629'), + (1121, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4vbVvX14', '6394631'), + (1121, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4vbVvX14', '6440863'), + (1121, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4vbVvX14', '6445440'), + (1121, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4vbVvX14', '6453951'), + (1121, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4vbVvX14', '6461696'), + (1121, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4vbVvX14', '6462129'), + (1121, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4vbVvX14', '6463218'), + (1121, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4vbVvX14', '6472181'), + (1121, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4vbVvX14', '6482693'), + (1121, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4vbVvX14', '6484200'), + (1121, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4vbVvX14', '6484680'), + (1121, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4vbVvX14', '6507741'), + (1121, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4vbVvX14', '6514659'), + (1121, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4vbVvX14', '6514660'), + (1121, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4vbVvX14', '6519103'), + (1121, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4vbVvX14', '6535681'), + (1121, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4vbVvX14', '6584747'), + (1121, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4vbVvX14', '6587097'), + (1121, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4vbVvX14', '6609022'), + (1121, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4vbVvX14', '6632757'), + (1121, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4vbVvX14', '6644187'), + (1121, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4vbVvX14', '6648951'), + (1121, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4vbVvX14', '6648952'), + (1121, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4vbVvX14', '6655401'), + (1121, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4vbVvX14', '6661585'), + (1121, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4vbVvX14', '6661588'), + (1121, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4vbVvX14', '6661589'), + (1121, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4vbVvX14', '6699906'), + (1121, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4vbVvX14', '6701109'), + (1121, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4vbVvX14', '6705219'), + (1121, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4vbVvX14', '6710153'), + (1121, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4vbVvX14', '6711552'), + (1121, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4vbVvX14', '6711553'), + (1122, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mM9kM09m', '4736497'), + (1122, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mM9kM09m', '4736500'), + (1122, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mM9kM09m', '4746789'), + (1122, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mM9kM09m', '4753929'), + (1122, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mM9kM09m', '6045684'), + (1123, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ArgqoEq4', '4736497'), + (1123, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ArgqoEq4', '4736500'), + (1123, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ArgqoEq4', '4746789'), + (1123, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ArgqoEq4', '4753929'), + (1123, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArgqoEq4', '6045684'), + (1124, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daJjeOZm', '4736504'), + (1124, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'daJjeOZm', '5132533'), + (1124, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'daJjeOZm', '5186582'), + (1124, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'daJjeOZm', '5186583'), + (1124, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'daJjeOZm', '5186585'), + (1124, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'daJjeOZm', '5190437'), + (1124, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'daJjeOZm', '5196763'), + (1124, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'daJjeOZm', '5199460'), + (1124, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'daJjeOZm', '5215989'), + (1124, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'daJjeOZm', '5223686'), + (1124, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'daJjeOZm', '5227432'), + (1124, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daJjeOZm', '6045684'), + (1125, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', 'GmjzRPbm', '4136938'), + (1125, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'GmjzRPbm', '4136947'), + (1125, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjzRPbm', '4210314'), + (1125, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjzRPbm', '4225444'), + (1125, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', 'GmjzRPbm', '4229418'), + (1125, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'GmjzRPbm', '4229420'), + (1125, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'GmjzRPbm', '4229423'), + (1125, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GmjzRPbm', '4240316'), + (1125, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GmjzRPbm', '4240317'), + (1125, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GmjzRPbm', '4240318'), + (1125, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GmjzRPbm', '4240320'), + (1125, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjzRPbm', '4275957'), + (1125, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjzRPbm', '4277819'), + (1125, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'GmjzRPbm', '4292773'), + (1125, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjzRPbm', '4301723'), + (1125, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'GmjzRPbm', '4302093'), + (1125, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjzRPbm', '4304151'), + (1125, 940, 'not_attending', '2021-07-30 16:29:44', '2025-12-17 19:47:40', 'GmjzRPbm', '4309049'), + (1125, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'GmjzRPbm', '4315713'), + (1125, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'GmjzRPbm', '4315714'), + (1125, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'GmjzRPbm', '4315726'), + (1125, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjzRPbm', '4356801'), + (1125, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GmjzRPbm', '4366186'), + (1125, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GmjzRPbm', '4366187'), + (1125, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GmjzRPbm', '4420735'), + (1125, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GmjzRPbm', '4420738'), + (1125, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GmjzRPbm', '4420739'), + (1125, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjzRPbm', '4420741'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (1125, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GmjzRPbm', '4420744'), + (1125, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GmjzRPbm', '4420747'), + (1125, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GmjzRPbm', '4420748'), + (1125, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjzRPbm', '4420749'), + (1125, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjzRPbm', '6045684'), + (1126, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'oAgR0gjm', '6632757'), + (1126, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAgR0gjm', '6644187'), + (1126, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAgR0gjm', '6648951'), + (1126, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAgR0gjm', '6648952'), + (1126, 2390, 'attending', '2024-01-05 20:37:43', '2025-12-17 19:46:37', 'oAgR0gjm', '6651141'), + (1126, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAgR0gjm', '6655401'), + (1126, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAgR0gjm', '6661585'), + (1126, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAgR0gjm', '6661588'), + (1126, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAgR0gjm', '6661589'), + (1126, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAgR0gjm', '6699906'), + (1126, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'oAgR0gjm', '6699913'), + (1126, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAgR0gjm', '6701109'), + (1126, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAgR0gjm', '6705219'), + (1126, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAgR0gjm', '6710153'), + (1126, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAgR0gjm', '6711552'), + (1126, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'oAgR0gjm', '6711553'), + (1126, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAgR0gjm', '6722688'), + (1126, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAgR0gjm', '6730620'), + (1126, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'oAgR0gjm', '6730642'), + (1126, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAgR0gjm', '6740364'), + (1126, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAgR0gjm', '6743829'), + (1126, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAgR0gjm', '7030380'), + (1126, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'oAgR0gjm', '7033677'), + (1126, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'oAgR0gjm', '7035415'), + (1126, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAgR0gjm', '7044715'), + (1126, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAgR0gjm', '7050318'), + (1126, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAgR0gjm', '7050319'), + (1126, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAgR0gjm', '7050322'), + (1126, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAgR0gjm', '7057804'), + (1126, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAgR0gjm', '7072824'), + (1126, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAgR0gjm', '7074348'), + (1126, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAgR0gjm', '7089267'), + (1126, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAgR0gjm', '7098747'), + (1126, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'oAgR0gjm', '7113468'), + (1126, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAgR0gjm', '7114856'), + (1126, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAgR0gjm', '7114951'), + (1126, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAgR0gjm', '7114955'), + (1126, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAgR0gjm', '7114956'), + (1126, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'oAgR0gjm', '7153615'), + (1126, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAgR0gjm', '7159484'), + (1126, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAgR0gjm', '7178446'), + (1127, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', '4oj6kOMA', '7291219'), + (1127, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', '4oj6kOMA', '7301638'), + (1128, 2498, 'attending', '2024-03-20 21:17:04', '2025-12-17 19:46:33', 'd3yBZLDA', '7057662'), + (1128, 2509, 'attending', '2024-03-25 02:25:56', '2025-12-17 19:46:33', 'd3yBZLDA', '7074349'), + (1128, 2511, 'not_attending', '2024-04-07 06:45:32', '2025-12-17 19:46:33', 'd3yBZLDA', '7074351'), + (1128, 2512, 'attending', '2024-04-05 00:27:50', '2025-12-17 19:46:33', 'd3yBZLDA', '7074352'), + (1128, 2516, 'attending', '2024-04-29 17:26:10', '2025-12-17 19:46:35', 'd3yBZLDA', '7074356'), + (1128, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd3yBZLDA', '7074364'), + (1128, 2537, 'attending', '2024-03-23 02:09:37', '2025-12-17 19:46:33', 'd3yBZLDA', '7085484'), + (1128, 2539, 'attending', '2024-04-06 23:11:46', '2025-12-17 19:46:33', 'd3yBZLDA', '7085486'), + (1128, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd3yBZLDA', '7098747'), + (1128, 2551, 'maybe', '2024-03-29 17:21:46', '2025-12-17 19:46:33', 'd3yBZLDA', '7109912'), + (1128, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd3yBZLDA', '7113468'), + (1128, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd3yBZLDA', '7114856'), + (1128, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd3yBZLDA', '7114951'), + (1128, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd3yBZLDA', '7114955'), + (1128, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd3yBZLDA', '7114956'), + (1128, 2558, 'attending', '2024-04-30 01:35:34', '2025-12-17 19:46:35', 'd3yBZLDA', '7114957'), + (1128, 2563, 'attending', '2024-04-12 21:04:04', '2025-12-17 19:46:33', 'd3yBZLDA', '7134734'), + (1128, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd3yBZLDA', '7153615'), + (1128, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd3yBZLDA', '7159484'), + (1128, 2576, 'maybe', '2024-04-26 00:52:27', '2025-12-17 19:46:34', 'd3yBZLDA', '7164538'), + (1128, 2584, 'attending', '2024-04-21 01:28:40', '2025-12-17 19:46:34', 'd3yBZLDA', '7175057'), + (1128, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd3yBZLDA', '7178446'), + (1128, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'd3yBZLDA', '7220467'), + (1128, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd3yBZLDA', '7240354'), + (1128, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd3yBZLDA', '7251633'), + (1128, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'd3yBZLDA', '7263048'), + (1128, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd3yBZLDA', '7302674'), + (1128, 2683, 'attending', '2024-06-16 06:32:01', '2025-12-17 19:46:28', 'd3yBZLDA', '7321978'), + (1128, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd3yBZLDA', '7324073'), + (1128, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd3yBZLDA', '7324074'), + (1128, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd3yBZLDA', '7324075'), + (1128, 2691, 'attending', '2024-07-18 02:48:49', '2025-12-17 19:46:30', 'd3yBZLDA', '7324076'), + (1128, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd3yBZLDA', '7324078'), + (1128, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd3yBZLDA', '7324082'), + (1128, 2706, 'not_attending', '2024-06-18 15:12:28', '2025-12-17 19:46:28', 'd3yBZLDA', '7324947'), + (1128, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd3yBZLDA', '7331457'), + (1128, 2723, 'maybe', '2024-06-21 20:23:09', '2025-12-17 19:46:29', 'd3yBZLDA', '7332389'), + (1128, 2747, 'attending', '2024-07-16 13:11:50', '2025-12-17 19:46:30', 'd3yBZLDA', '7353587'), + (1128, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'd3yBZLDA', '7356752'), + (1128, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd3yBZLDA', '7363643'), + (1128, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd3yBZLDA', '7368606'), + (1128, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd3yBZLDA', '7397462'), + (1128, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd3yBZLDA', '7424275'), + (1128, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd3yBZLDA', '7424276'), + (1128, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd3yBZLDA', '7432751'), + (1128, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd3yBZLDA', '7432752'), + (1128, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd3yBZLDA', '7432753'), + (1128, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd3yBZLDA', '7432754'), + (1128, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd3yBZLDA', '7432755'), + (1128, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd3yBZLDA', '7432756'), + (1128, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd3yBZLDA', '7432758'), + (1128, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd3yBZLDA', '7432759'), + (1128, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd3yBZLDA', '7433834'), + (1128, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd3yBZLDA', '7470197'), + (1128, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd3yBZLDA', '7685613'), + (1128, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd3yBZLDA', '7688194'), + (1128, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd3yBZLDA', '7688196'), + (1128, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd3yBZLDA', '7688289'), + (1129, 5, 'maybe', '2020-04-12 18:36:46', '2025-12-17 19:47:58', 'kdKXkBam', '2958047'), + (1129, 18, 'attending', '2020-04-16 19:24:43', '2025-12-17 19:47:57', 'kdKXkBam', '2958062'), + (1129, 22, 'attending', '2020-05-24 04:36:25', '2025-12-17 19:47:57', 'kdKXkBam', '2958066'), + (1129, 23, 'attending', '2020-06-10 13:36:58', '2025-12-17 19:47:58', 'kdKXkBam', '2958067'), + (1129, 24, 'not_attending', '2020-06-20 23:41:35', '2025-12-17 19:47:55', 'kdKXkBam', '2958068'), + (1129, 40, 'attending', '2020-04-09 12:09:13', '2025-12-17 19:47:57', 'kdKXkBam', '2970718'), + (1129, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'kdKXkBam', '2971546'), + (1129, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'kdKXkBam', '2974534'), + (1129, 46, 'attending', '2020-04-12 18:37:02', '2025-12-17 19:47:57', 'kdKXkBam', '2974955'), + (1129, 50, 'not_attending', '2020-07-28 20:51:50', '2025-12-17 19:47:55', 'kdKXkBam', '2975275'), + (1129, 52, 'attending', '2020-06-16 20:23:57', '2025-12-17 19:47:58', 'kdKXkBam', '2975277'), + (1129, 53, 'attending', '2020-07-13 22:04:03', '2025-12-17 19:47:55', 'kdKXkBam', '2975278'), + (1129, 54, 'attending', '2020-08-26 23:44:54', '2025-12-17 19:47:56', 'kdKXkBam', '2975279'), + (1129, 56, 'maybe', '2020-04-12 18:38:51', '2025-12-17 19:47:57', 'kdKXkBam', '2975385'), + (1129, 57, 'attending', '2020-04-27 22:39:02', '2025-12-17 19:47:57', 'kdKXkBam', '2976575'), + (1129, 62, 'attending', '2020-05-12 22:32:40', '2025-12-17 19:47:57', 'kdKXkBam', '2977131'), + (1129, 63, 'attending', '2020-05-19 14:14:29', '2025-12-17 19:47:57', 'kdKXkBam', '2977132'), + (1129, 64, 'attending', '2020-05-31 22:45:30', '2025-12-17 19:47:58', 'kdKXkBam', '2977133'), + (1129, 65, 'not_attending', '2020-05-26 22:31:13', '2025-12-17 19:47:57', 'kdKXkBam', '2977134'), + (1129, 66, 'attending', '2020-06-09 20:34:47', '2025-12-17 19:47:58', 'kdKXkBam', '2977135'), + (1129, 67, 'not_attending', '2020-06-16 20:24:01', '2025-12-17 19:47:58', 'kdKXkBam', '2977136'), + (1129, 68, 'not_attending', '2020-06-20 02:07:49', '2025-12-17 19:47:58', 'kdKXkBam', '2977137'), + (1129, 69, 'not_attending', '2020-06-25 16:17:16', '2025-12-17 19:47:55', 'kdKXkBam', '2977138'), + (1129, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'kdKXkBam', '2977343'), + (1129, 72, 'attending', '2020-05-07 22:42:33', '2025-12-17 19:47:57', 'kdKXkBam', '2977812'), + (1129, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'kdKXkBam', '2977931'), + (1129, 74, 'attending', '2020-04-18 22:04:06', '2025-12-17 19:47:57', 'kdKXkBam', '2978244'), + (1129, 75, 'attending', '2020-04-25 15:38:01', '2025-12-17 19:47:57', 'kdKXkBam', '2978245'), + (1129, 76, 'attending', '2020-05-02 14:47:55', '2025-12-17 19:47:57', 'kdKXkBam', '2978246'), + (1129, 77, 'attending', '2020-05-09 19:35:38', '2025-12-17 19:47:57', 'kdKXkBam', '2978247'), + (1129, 78, 'attending', '2020-05-19 21:14:17', '2025-12-17 19:47:57', 'kdKXkBam', '2978249'), + (1129, 79, 'attending', '2020-05-29 18:55:38', '2025-12-17 19:47:57', 'kdKXkBam', '2978250'), + (1129, 80, 'attending', '2020-06-06 22:38:22', '2025-12-17 19:47:58', 'kdKXkBam', '2978251'), + (1129, 81, 'attending', '2020-06-10 13:50:27', '2025-12-17 19:47:58', 'kdKXkBam', '2978252'), + (1129, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'kdKXkBam', '2978433'), + (1129, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'kdKXkBam', '2978438'), + (1129, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'kdKXkBam', '2980871'), + (1129, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'kdKXkBam', '2981388'), + (1129, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'kdKXkBam', '2986743'), + (1129, 95, 'attending', '2020-04-28 23:46:18', '2025-12-17 19:47:57', 'kdKXkBam', '2987452'), + (1129, 98, 'attending', '2020-05-18 21:15:43', '2025-12-17 19:47:57', 'kdKXkBam', '2987455'), + (1129, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', 'kdKXkBam', '2990784'), + (1129, 104, 'not_attending', '2020-04-24 14:20:07', '2025-12-17 19:47:57', 'kdKXkBam', '2991471'), + (1129, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'kdKXkBam', '2993501'), + (1129, 109, 'attending', '2020-05-13 22:55:27', '2025-12-17 19:47:57', 'kdKXkBam', '2994480'), + (1129, 111, 'attending', '2020-06-07 01:49:42', '2025-12-17 19:47:58', 'kdKXkBam', '2994907'), + (1129, 112, 'not_attending', '2020-07-05 18:50:33', '2025-12-17 19:47:55', 'kdKXkBam', '2994908'), + (1129, 113, 'attending', '2020-08-02 03:21:35', '2025-12-17 19:47:56', 'kdKXkBam', '2994909'), + (1129, 115, 'attending', '2020-05-12 19:06:18', '2025-12-17 19:47:57', 'kdKXkBam', '3001217'), + (1129, 121, 'attending', '2020-05-26 09:49:09', '2025-12-17 19:47:57', 'kdKXkBam', '3023063'), + (1129, 122, 'attending', '2020-05-14 15:18:11', '2025-12-17 19:47:57', 'kdKXkBam', '3023491'), + (1129, 123, 'attending', '2020-05-25 00:20:45', '2025-12-17 19:47:57', 'kdKXkBam', '3023729'), + (1129, 125, 'attending', '2020-05-22 17:29:06', '2025-12-17 19:47:57', 'kdKXkBam', '3023987'), + (1129, 129, 'attending', '2020-05-20 02:55:40', '2025-12-17 19:47:58', 'kdKXkBam', '3028743'), + (1129, 130, 'attending', '2020-05-28 23:10:51', '2025-12-17 19:47:57', 'kdKXkBam', '3028781'), + (1129, 132, 'attending', '2020-05-25 21:32:16', '2025-12-17 19:47:58', 'kdKXkBam', '3033648'), + (1129, 133, 'not_attending', '2020-06-20 02:07:54', '2025-12-17 19:47:58', 'kdKXkBam', '3034321'), + (1129, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'kdKXkBam', '3035881'), + (1129, 137, 'not_attending', '2020-06-04 19:24:34', '2025-12-17 19:47:58', 'kdKXkBam', '3042188'), + (1129, 138, 'attending', '2020-05-29 03:54:23', '2025-12-17 19:47:58', 'kdKXkBam', '3042932'), + (1129, 141, 'attending', '2020-05-31 22:37:58', '2025-12-17 19:47:58', 'kdKXkBam', '3049830'), + (1129, 143, 'not_attending', '2020-06-08 17:38:46', '2025-12-17 19:47:58', 'kdKXkBam', '3049983'), + (1129, 145, 'attending', '2020-06-10 13:50:25', '2025-12-17 19:47:58', 'kdKXkBam', '3058680'), + (1129, 146, 'attending', '2020-06-20 23:41:41', '2025-12-17 19:47:55', 'kdKXkBam', '3058683'), + (1129, 147, 'attending', '2020-08-18 22:54:42', '2025-12-17 19:47:56', 'kdKXkBam', '3058684'), + (1129, 148, 'attending', '2020-07-10 15:50:28', '2025-12-17 19:47:55', 'kdKXkBam', '3058685'), + (1129, 149, 'not_attending', '2020-07-18 21:08:43', '2025-12-17 19:47:55', 'kdKXkBam', '3058686'), + (1129, 150, 'attending', '2020-07-20 15:57:41', '2025-12-17 19:47:55', 'kdKXkBam', '3058687'), + (1129, 151, 'not_attending', '2020-08-29 17:00:12', '2025-12-17 19:47:56', 'kdKXkBam', '3058688'), + (1129, 152, 'attending', '2020-09-05 13:13:49', '2025-12-17 19:47:56', 'kdKXkBam', '3058689'), + (1129, 153, 'attending', '2020-07-28 04:12:39', '2025-12-17 19:47:55', 'kdKXkBam', '3058690'), + (1129, 154, 'attending', '2020-08-06 14:01:36', '2025-12-17 19:47:56', 'kdKXkBam', '3058691'), + (1129, 155, 'not_attending', '2020-08-15 21:21:03', '2025-12-17 19:47:56', 'kdKXkBam', '3058692'), + (1129, 156, 'not_attending', '2020-09-12 21:05:00', '2025-12-17 19:47:56', 'kdKXkBam', '3058693'), + (1129, 157, 'attending', '2020-09-19 21:31:44', '2025-12-17 19:47:56', 'kdKXkBam', '3058694'), + (1129, 158, 'not_attending', '2020-09-26 21:18:42', '2025-12-17 19:47:52', 'kdKXkBam', '3058695'), + (1129, 159, 'attending', '2020-10-03 21:17:58', '2025-12-17 19:47:52', 'kdKXkBam', '3058696'), + (1129, 160, 'not_attending', '2020-10-24 10:16:00', '2025-12-17 19:47:52', 'kdKXkBam', '3058697'), + (1129, 161, 'attending', '2020-10-09 22:47:37', '2025-12-17 19:47:52', 'kdKXkBam', '3058698'), + (1129, 162, 'attending', '2020-10-17 13:14:16', '2025-12-17 19:47:52', 'kdKXkBam', '3058699'), + (1129, 164, 'not_attending', '2020-11-14 23:41:47', '2025-12-17 19:47:54', 'kdKXkBam', '3058701'), + (1129, 165, 'not_attending', '2020-11-07 01:46:08', '2025-12-17 19:47:53', 'kdKXkBam', '3058702'), + (1129, 166, 'attending', '2020-11-21 21:50:58', '2025-12-17 19:47:54', 'kdKXkBam', '3058704'), + (1129, 167, 'attending', '2020-11-28 22:22:51', '2025-12-17 19:47:54', 'kdKXkBam', '3058705'), + (1129, 171, 'attending', '2020-06-10 13:37:00', '2025-12-17 19:47:58', 'kdKXkBam', '3058743'), + (1129, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'kdKXkBam', '3058959'), + (1129, 173, 'not_attending', '2020-06-17 20:58:19', '2025-12-17 19:47:58', 'kdKXkBam', '3067093'), + (1129, 174, 'attending', '2020-06-10 20:54:19', '2025-12-17 19:47:58', 'kdKXkBam', '3067927'), + (1129, 175, 'attending', '2020-06-17 20:56:15', '2025-12-17 19:47:58', 'kdKXkBam', '3068305'), + (1129, 180, 'not_attending', '2020-06-18 22:41:51', '2025-12-17 19:47:58', 'kdKXkBam', '3074048'), + (1129, 181, 'not_attending', '2020-06-20 02:07:22', '2025-12-17 19:47:58', 'kdKXkBam', '3074513'), + (1129, 182, 'not_attending', '2020-06-25 10:58:24', '2025-12-17 19:47:55', 'kdKXkBam', '3074514'), + (1129, 183, 'not_attending', '2020-06-20 02:07:42', '2025-12-17 19:47:58', 'kdKXkBam', '3075228'), + (1129, 184, 'not_attending', '2020-06-17 21:01:01', '2025-12-17 19:47:58', 'kdKXkBam', '3075262'), + (1129, 185, 'not_attending', '2020-06-20 23:40:58', '2025-12-17 19:47:58', 'kdKXkBam', '3075456'), + (1129, 186, 'not_attending', '2020-06-20 02:08:04', '2025-12-17 19:47:55', 'kdKXkBam', '3083791'), + (1129, 187, 'not_attending', '2020-06-25 10:58:33', '2025-12-17 19:47:55', 'kdKXkBam', '3085151'), + (1129, 188, 'not_attending', '2020-06-20 23:41:05', '2025-12-17 19:47:58', 'kdKXkBam', '3086646'), + (1129, 189, 'maybe', '2020-06-20 02:04:33', '2025-12-17 19:47:58', 'kdKXkBam', '3087016'), + (1129, 190, 'not_attending', '2020-06-25 16:17:45', '2025-12-17 19:47:55', 'kdKXkBam', '3087258'), + (1129, 191, 'attending', '2020-07-10 15:50:32', '2025-12-17 19:47:55', 'kdKXkBam', '3087259'), + (1129, 192, 'not_attending', '2020-07-17 18:43:33', '2025-12-17 19:47:55', 'kdKXkBam', '3087260'), + (1129, 193, 'attending', '2020-07-20 15:57:42', '2025-12-17 19:47:55', 'kdKXkBam', '3087261'), + (1129, 194, 'attending', '2020-07-28 04:12:36', '2025-12-17 19:47:55', 'kdKXkBam', '3087262'), + (1129, 195, 'not_attending', '2020-08-06 14:01:42', '2025-12-17 19:47:56', 'kdKXkBam', '3087264'), + (1129, 196, 'not_attending', '2020-08-15 21:21:05', '2025-12-17 19:47:56', 'kdKXkBam', '3087265'), + (1129, 197, 'attending', '2020-08-19 19:08:29', '2025-12-17 19:47:56', 'kdKXkBam', '3087266'), + (1129, 198, 'not_attending', '2020-08-29 17:00:13', '2025-12-17 19:47:56', 'kdKXkBam', '3087267'), + (1129, 199, 'attending', '2020-09-05 13:13:46', '2025-12-17 19:47:56', 'kdKXkBam', '3087268'), + (1129, 200, 'attending', '2020-09-04 23:34:48', '2025-12-17 19:47:56', 'kdKXkBam', '3087269'), + (1129, 201, 'not_attending', '2020-06-20 22:35:16', '2025-12-17 19:47:55', 'kdKXkBam', '3088653'), + (1129, 202, 'not_attending', '2020-06-25 16:17:41', '2025-12-17 19:47:55', 'kdKXkBam', '3090353'), + (1129, 203, 'not_attending', '2020-06-22 17:54:12', '2025-12-17 19:47:58', 'kdKXkBam', '3091624'), + (1129, 205, 'attending', '2020-07-10 22:56:15', '2025-12-17 19:47:55', 'kdKXkBam', '3104804'), + (1129, 206, 'not_attending', '2020-07-17 18:43:27', '2025-12-17 19:47:55', 'kdKXkBam', '3104806'), + (1129, 207, 'maybe', '2020-07-24 19:01:29', '2025-12-17 19:47:55', 'kdKXkBam', '3104807'), + (1129, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'kdKXkBam', '3106813'), + (1129, 220, 'attending', '2020-09-02 23:30:01', '2025-12-17 19:47:56', 'kdKXkBam', '3129264'), + (1129, 223, 'not_attending', '2020-09-12 21:05:01', '2025-12-17 19:47:56', 'kdKXkBam', '3129980'), + (1129, 224, 'attending', '2020-07-23 14:49:46', '2025-12-17 19:47:55', 'kdKXkBam', '3130712'), + (1129, 225, 'maybe', '2020-07-18 19:35:00', '2025-12-17 19:47:55', 'kdKXkBam', '3132378'), + (1129, 226, 'attending', '2020-07-15 19:31:40', '2025-12-17 19:47:55', 'kdKXkBam', '3132817'), + (1129, 227, 'attending', '2020-07-16 01:01:08', '2025-12-17 19:47:55', 'kdKXkBam', '3132820'), + (1129, 229, 'not_attending', '2020-07-17 18:43:24', '2025-12-17 19:47:55', 'kdKXkBam', '3134135'), + (1129, 233, 'attending', '2020-07-19 21:20:10', '2025-12-17 19:47:55', 'kdKXkBam', '3139773'), + (1129, 234, 'attending', '2020-07-20 16:20:00', '2025-12-17 19:47:55', 'kdKXkBam', '3140456'), + (1129, 235, 'attending', '2020-07-22 16:34:10', '2025-12-17 19:47:55', 'kdKXkBam', '3140861'), + (1129, 236, 'attending', '2020-07-21 21:50:29', '2025-12-17 19:47:55', 'kdKXkBam', '3140873'), + (1129, 237, 'attending', '2020-07-23 14:50:48', '2025-12-17 19:47:55', 'kdKXkBam', '3142085'), + (1129, 245, 'attending', '2020-12-01 23:11:32', '2025-12-17 19:47:54', 'kdKXkBam', '3149476'), + (1129, 263, 'attending', '2020-07-25 22:22:06', '2025-12-17 19:47:55', 'kdKXkBam', '3149671'), + (1129, 264, 'not_attending', '2020-08-02 18:09:25', '2025-12-17 19:47:56', 'kdKXkBam', '3150735'), + (1129, 267, 'attending', '2020-07-28 23:17:56', '2025-12-17 19:47:55', 'kdKXkBam', '3152781'), + (1129, 269, 'attending', '2020-07-28 22:18:07', '2025-12-17 19:47:55', 'kdKXkBam', '3153076'), + (1129, 270, 'not_attending', '2020-08-13 22:56:00', '2025-12-17 19:47:56', 'kdKXkBam', '3154457'), + (1129, 271, 'not_attending', '2020-08-02 18:09:23', '2025-12-17 19:47:56', 'kdKXkBam', '3155321'), + (1129, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'kdKXkBam', '3162006'), + (1129, 275, 'not_attending', '2020-08-03 20:14:35', '2025-12-17 19:47:56', 'kdKXkBam', '3163405'), + (1129, 277, 'not_attending', '2020-08-06 14:01:27', '2025-12-17 19:47:56', 'kdKXkBam', '3163442'), + (1129, 281, 'attending', '2020-08-09 12:18:36', '2025-12-17 19:47:56', 'kdKXkBam', '3166945'), + (1129, 293, 'not_attending', '2020-08-19 22:37:30', '2025-12-17 19:47:56', 'kdKXkBam', '3172832'), + (1129, 294, 'not_attending', '2020-08-26 23:45:02', '2025-12-17 19:47:56', 'kdKXkBam', '3172833'), + (1129, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'kdKXkBam', '3172834'), + (1129, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'kdKXkBam', '3172876'), + (1129, 297, 'not_attending', '2020-08-11 20:24:08', '2025-12-17 19:47:56', 'kdKXkBam', '3173937'), + (1129, 299, 'not_attending', '2020-08-17 22:58:07', '2025-12-17 19:47:56', 'kdKXkBam', '3176591'), + (1129, 303, 'attending', '2020-08-13 18:05:50', '2025-12-17 19:47:56', 'kdKXkBam', '3178444'), + (1129, 304, 'not_attending', '2020-09-07 22:33:53', '2025-12-17 19:47:56', 'kdKXkBam', '3178916'), + (1129, 305, 'not_attending', '2020-08-17 22:58:11', '2025-12-17 19:47:56', 'kdKXkBam', '3179555'), + (1129, 308, 'not_attending', '2020-09-02 23:29:58', '2025-12-17 19:47:56', 'kdKXkBam', '3183341'), + (1129, 310, 'attending', '2020-08-20 18:47:33', '2025-12-17 19:47:56', 'kdKXkBam', '3186005'), + (1129, 311, 'attending', '2020-09-19 21:31:49', '2025-12-17 19:47:56', 'kdKXkBam', '3186057'), + (1129, 314, 'attending', '2020-08-24 17:24:52', '2025-12-17 19:47:56', 'kdKXkBam', '3188480'), + (1129, 317, 'not_attending', '2020-08-29 01:48:26', '2025-12-17 19:47:56', 'kdKXkBam', '3191735'), + (1129, 335, 'maybe', '2020-09-04 19:02:39', '2025-12-17 19:47:56', 'kdKXkBam', '3200209'), + (1129, 344, 'not_attending', '2020-10-25 01:49:35', '2025-12-17 19:47:53', 'kdKXkBam', '3206906'), + (1129, 345, 'attending', '2020-09-09 20:39:40', '2025-12-17 19:47:56', 'kdKXkBam', '3207423'), + (1129, 346, 'not_attending', '2020-09-15 18:29:34', '2025-12-17 19:47:56', 'kdKXkBam', '3207515'), + (1129, 348, 'attending', '2020-09-29 21:12:47', '2025-12-17 19:47:52', 'kdKXkBam', '3209159'), + (1129, 360, 'not_attending', '2020-09-17 22:13:51', '2025-12-17 19:47:56', 'kdKXkBam', '3212671'), + (1129, 361, 'attending', '2020-09-14 18:46:17', '2025-12-17 19:47:56', 'kdKXkBam', '3213323'), + (1129, 362, 'not_attending', '2020-09-26 21:18:47', '2025-12-17 19:47:52', 'kdKXkBam', '3214207'), + (1129, 363, 'maybe', '2020-09-17 10:20:54', '2025-12-17 19:47:52', 'kdKXkBam', '3217037'), + (1129, 365, 'not_attending', '2020-09-24 06:14:16', '2025-12-17 19:47:52', 'kdKXkBam', '3218510'), + (1129, 382, 'maybe', '2020-10-13 21:22:33', '2025-12-17 19:47:52', 'kdKXkBam', '3226873'), + (1129, 385, 'attending', '2020-10-03 21:17:59', '2025-12-17 19:47:52', 'kdKXkBam', '3228698'), + (1129, 386, 'attending', '2020-10-09 22:47:37', '2025-12-17 19:47:52', 'kdKXkBam', '3228699'), + (1129, 387, 'attending', '2020-10-17 13:14:16', '2025-12-17 19:47:52', 'kdKXkBam', '3228700'), + (1129, 388, 'not_attending', '2020-10-24 10:15:56', '2025-12-17 19:47:52', 'kdKXkBam', '3228701'), + (1129, 390, 'attending', '2020-09-30 22:55:50', '2025-12-17 19:47:52', 'kdKXkBam', '3231510'), + (1129, 399, 'not_attending', '2020-11-13 00:17:24', '2025-12-17 19:47:54', 'kdKXkBam', '3236454'), + (1129, 409, 'attending', '2020-12-11 01:00:30', '2025-12-17 19:47:54', 'kdKXkBam', '3236467'), + (1129, 414, 'attending', '2020-10-05 21:37:25', '2025-12-17 19:47:52', 'kdKXkBam', '3237277'), + (1129, 416, 'not_attending', '2020-10-09 22:00:03', '2025-12-17 19:47:52', 'kdKXkBam', '3238073'), + (1129, 417, 'attending', '2020-10-08 11:45:07', '2025-12-17 19:47:52', 'kdKXkBam', '3238779'), + (1129, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'kdKXkBam', '3245751'), + (1129, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'kdKXkBam', '3250232'), + (1129, 429, 'attending', '2020-12-03 12:40:20', '2025-12-17 19:47:54', 'kdKXkBam', '3250523'), + (1129, 439, 'not_attending', '2020-10-28 13:28:18', '2025-12-17 19:47:53', 'kdKXkBam', '3256164'), + (1129, 440, 'not_attending', '2020-11-07 01:46:10', '2025-12-17 19:47:53', 'kdKXkBam', '3256168'), + (1129, 441, 'not_attending', '2020-11-14 23:41:50', '2025-12-17 19:47:54', 'kdKXkBam', '3256169'), + (1129, 443, 'not_attending', '2020-10-25 21:51:20', '2025-12-17 19:47:53', 'kdKXkBam', '3263578'), + (1129, 445, 'not_attending', '2020-11-13 00:17:25', '2025-12-17 19:47:54', 'kdKXkBam', '3266138'), + (1129, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'kdKXkBam', '3276428'), + (1129, 459, 'attending', '2020-11-08 18:11:38', '2025-12-17 19:47:54', 'kdKXkBam', '3281467'), + (1129, 462, 'not_attending', '2020-11-10 16:25:11', '2025-12-17 19:47:54', 'kdKXkBam', '3281470'), + (1129, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'kdKXkBam', '3281829'), + (1129, 468, 'attending', '2020-11-21 23:47:12', '2025-12-17 19:47:54', 'kdKXkBam', '3285413'), + (1129, 469, 'attending', '2020-11-28 22:22:53', '2025-12-17 19:47:54', 'kdKXkBam', '3285414'), + (1129, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'kdKXkBam', '3297764'), + (1129, 493, 'not_attending', '2020-12-05 19:10:19', '2025-12-17 19:47:54', 'kdKXkBam', '3313856'), + (1129, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'kdKXkBam', '3314909'), + (1129, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'kdKXkBam', '3314964'), + (1129, 502, 'not_attending', '2020-12-12 01:27:39', '2025-12-17 19:47:55', 'kdKXkBam', '3323365'), + (1129, 513, 'not_attending', '2020-12-19 23:52:13', '2025-12-17 19:47:55', 'kdKXkBam', '3329383'), + (1129, 514, 'not_attending', '2020-12-12 01:27:43', '2025-12-17 19:47:55', 'kdKXkBam', '3329400'), + (1129, 516, 'not_attending', '2020-12-27 00:28:39', '2025-12-17 19:47:48', 'kdKXkBam', '3334530'), + (1129, 524, 'not_attending', '2020-12-19 23:52:12', '2025-12-17 19:47:55', 'kdKXkBam', '3350120'), + (1129, 526, 'attending', '2021-01-02 05:51:00', '2025-12-17 19:47:48', 'kdKXkBam', '3351539'), + (1129, 528, 'attending', '2020-12-31 23:53:51', '2025-12-17 19:47:48', 'kdKXkBam', '3363022'), + (1129, 531, 'attending', '2021-01-02 05:51:05', '2025-12-17 19:47:48', 'kdKXkBam', '3378210'), + (1129, 536, 'not_attending', '2021-01-09 00:42:55', '2025-12-17 19:47:48', 'kdKXkBam', '3386848'), + (1129, 540, 'not_attending', '2021-01-07 01:50:33', '2025-12-17 19:47:48', 'kdKXkBam', '3389527'), + (1129, 541, 'not_attending', '2021-01-09 23:25:36', '2025-12-17 19:47:48', 'kdKXkBam', '3391683'), + (1129, 543, 'not_attending', '2021-01-16 01:46:23', '2025-12-17 19:47:48', 'kdKXkBam', '3396499'), + (1129, 548, 'attending', '2021-01-16 04:32:18', '2025-12-17 19:47:48', 'kdKXkBam', '3403650'), + (1129, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdKXkBam', '3406988'), + (1129, 553, 'attending', '2021-01-16 04:32:16', '2025-12-17 19:47:48', 'kdKXkBam', '3407248'), + (1129, 555, 'not_attending', '2021-01-23 20:03:47', '2025-12-17 19:47:49', 'kdKXkBam', '3416576'), + (1129, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'kdKXkBam', '3418925'), + (1129, 561, 'not_attending', '2021-01-23 23:50:00', '2025-12-17 19:47:49', 'kdKXkBam', '3421916'), + (1129, 568, 'not_attending', '2021-01-30 23:31:48', '2025-12-17 19:47:50', 'kdKXkBam', '3430267'), + (1129, 569, 'not_attending', '2021-01-27 22:08:42', '2025-12-17 19:47:49', 'kdKXkBam', '3432673'), + (1129, 571, 'not_attending', '2021-02-13 01:49:11', '2025-12-17 19:47:50', 'kdKXkBam', '3435539'), + (1129, 575, 'not_attending', '2021-01-30 23:31:47', '2025-12-17 19:47:50', 'kdKXkBam', '3437492'), + (1129, 579, 'not_attending', '2021-02-06 20:59:05', '2025-12-17 19:47:50', 'kdKXkBam', '3440978'), + (1129, 580, 'not_attending', '2021-01-30 02:08:16', '2025-12-17 19:47:50', 'kdKXkBam', '3444240'), + (1129, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'kdKXkBam', '3468125'), + (1129, 602, 'not_attending', '2021-02-13 21:56:05', '2025-12-17 19:47:50', 'kdKXkBam', '3470303'), + (1129, 603, 'not_attending', '2021-02-20 17:58:19', '2025-12-17 19:47:50', 'kdKXkBam', '3470304'), + (1129, 604, 'not_attending', '2021-02-27 20:59:18', '2025-12-17 19:47:50', 'kdKXkBam', '3470305'), + (1129, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdKXkBam', '3470991'), + (1129, 609, 'not_attending', '2021-02-13 21:56:04', '2025-12-17 19:47:50', 'kdKXkBam', '3480916'), + (1129, 619, 'not_attending', '2021-02-20 17:58:18', '2025-12-17 19:47:50', 'kdKXkBam', '3506310'), + (1129, 621, 'not_attending', '2021-03-06 23:53:44', '2025-12-17 19:47:51', 'kdKXkBam', '3517815'), + (1129, 622, 'not_attending', '2021-03-14 01:26:13', '2025-12-17 19:47:51', 'kdKXkBam', '3517816'), + (1129, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKXkBam', '3523941'), + (1129, 624, 'not_attending', '2021-02-27 20:59:18', '2025-12-17 19:47:50', 'kdKXkBam', '3528556'), + (1129, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKXkBam', '3533850'), + (1129, 637, 'maybe', '2021-03-20 15:19:01', '2025-12-17 19:47:51', 'kdKXkBam', '3536411'), + (1129, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKXkBam', '3536632'), + (1129, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKXkBam', '3536656'), + (1129, 641, 'not_attending', '2021-04-04 23:00:36', '2025-12-17 19:47:44', 'kdKXkBam', '3539916'), + (1129, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdKXkBam', '3539917'), + (1129, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKXkBam', '3539918'), + (1129, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKXkBam', '3539919'), + (1129, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKXkBam', '3539920'), + (1129, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKXkBam', '3539921'), + (1129, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKXkBam', '3539922'), + (1129, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKXkBam', '3539923'), + (1129, 649, 'not_attending', '2021-03-20 15:18:54', '2025-12-17 19:47:51', 'kdKXkBam', '3539927'), + (1129, 650, 'not_attending', '2021-03-27 20:06:10', '2025-12-17 19:47:44', 'kdKXkBam', '3539928'), + (1129, 653, 'not_attending', '2021-03-06 23:53:42', '2025-12-17 19:47:51', 'kdKXkBam', '3546917'), + (1129, 656, 'not_attending', '2021-03-20 15:18:49', '2025-12-17 19:47:51', 'kdKXkBam', '3547130'), + (1129, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKXkBam', '3582734'), + (1129, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKXkBam', '3619523'), + (1129, 718, 'not_attending', '2021-03-27 20:06:09', '2025-12-17 19:47:44', 'kdKXkBam', '3626844'), + (1129, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', 'kdKXkBam', '4420739'), + (1129, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'kdKXkBam', '4420741'), + (1129, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'kdKXkBam', '4420744'), + (1129, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'kdKXkBam', '4420747'), + (1129, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKXkBam', '4508342'), + (1129, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKXkBam', '4568602'), + (1129, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKXkBam', '4572153'), + (1129, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdKXkBam', '4585962'), + (1129, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdKXkBam', '4596356'), + (1129, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKXkBam', '4598860'), + (1129, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKXkBam', '4598861'), + (1129, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKXkBam', '4602797'), + (1129, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKXkBam', '4637896'), + (1129, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKXkBam', '4642994'), + (1129, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdKXkBam', '4642995'), + (1129, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKXkBam', '4642996'), + (1129, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKXkBam', '4642997'), + (1129, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKXkBam', '4645687'), + (1129, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKXkBam', '4645698'), + (1129, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdKXkBam', '4645704'), + (1129, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKXkBam', '4645705'), + (1129, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKXkBam', '4668385'), + (1129, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKXkBam', '4694407'), + (1129, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKXkBam', '4736497'), + (1129, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKXkBam', '4736499'), + (1129, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKXkBam', '4736500'), + (1129, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKXkBam', '4736503'), + (1129, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKXkBam', '4736504'), + (1129, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKXkBam', '4746789'), + (1129, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'kdKXkBam', '4753929'), + (1129, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKXkBam', '5038850'), + (1129, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKXkBam', '5045826'), + (1129, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKXkBam', '5132533'), + (1129, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdKXkBam', '5186582'), + (1129, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdKXkBam', '5186583'), + (1129, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdKXkBam', '5186585'), + (1129, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdKXkBam', '5190437'), + (1129, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdKXkBam', '5195095'), + (1129, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKXkBam', '5215989'), + (1129, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdKXkBam', '5223686'), + (1129, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdKXkBam', '5247467'), + (1129, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdKXkBam', '5260800'), + (1129, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdKXkBam', '5269930'), + (1129, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdKXkBam', '5271448'), + (1129, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'kdKXkBam', '5271449'), + (1129, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdKXkBam', '5278159'), + (1129, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdKXkBam', '5363695'), + (1129, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdKXkBam', '5365960'), + (1129, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdKXkBam', '5378247'), + (1129, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'kdKXkBam', '5389605'), + (1129, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdKXkBam', '5397265'), + (1129, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdKXkBam', '5404786'), + (1129, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdKXkBam', '5405203'), + (1129, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdKXkBam', '5412550'), + (1129, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdKXkBam', '5415046'), + (1129, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdKXkBam', '5422086'), + (1129, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdKXkBam', '5422406'), + (1129, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdKXkBam', '5424565'), + (1129, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdKXkBam', '5426882'), + (1129, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdKXkBam', '5441125'), + (1129, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdKXkBam', '5441126'), + (1129, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdKXkBam', '5441128'), + (1129, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdKXkBam', '5441131'), + (1129, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdKXkBam', '5441132'), + (1129, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdKXkBam', '5453325'), + (1129, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdKXkBam', '5454516'), + (1129, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdKXkBam', '5454605'), + (1129, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdKXkBam', '5455037'), + (1129, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdKXkBam', '5461278'), + (1129, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdKXkBam', '5469480'), + (1129, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdKXkBam', '5474663'), + (1129, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdKXkBam', '5482022'), + (1129, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdKXkBam', '5488912'), + (1129, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdKXkBam', '5492192'), + (1129, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdKXkBam', '5493139'), + (1129, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdKXkBam', '5493200'), + (1129, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdKXkBam', '5502188'), + (1129, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdKXkBam', '5505059'), + (1129, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdKXkBam', '5509055'), + (1129, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdKXkBam', '5512862'), + (1129, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdKXkBam', '5513985'), + (1129, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdKXkBam', '5519981'), + (1129, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdKXkBam', '5522550'), + (1129, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdKXkBam', '5534683'), + (1129, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdKXkBam', '5537735'), + (1129, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdKXkBam', '5540859'), + (1129, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdKXkBam', '5546619'), + (1129, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdKXkBam', '5557747'), + (1129, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdKXkBam', '5560255'), + (1129, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdKXkBam', '5562906'), + (1129, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdKXkBam', '5600604'), + (1129, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdKXkBam', '5605544'), + (1129, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdKXkBam', '5630960'), + (1129, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdKXkBam', '5630961'), + (1129, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdKXkBam', '5630962'), + (1129, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdKXkBam', '5630966'), + (1129, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdKXkBam', '5630967'), + (1129, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdKXkBam', '5630968'), + (1129, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdKXkBam', '5635406'), + (1129, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdKXkBam', '5638765'), + (1129, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdKXkBam', '5640097'), + (1129, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdKXkBam', '5640843'), + (1129, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdKXkBam', '5641521'), + (1129, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdKXkBam', '5642818'), + (1129, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdKXkBam', '5652395'), + (1129, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdKXkBam', '5670445'), + (1129, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdKXkBam', '5671637'), + (1129, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdKXkBam', '5672329'), + (1129, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdKXkBam', '5674057'), + (1129, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdKXkBam', '5674060'), + (1129, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdKXkBam', '5677461'), + (1129, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdKXkBam', '5698046'), + (1129, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdKXkBam', '5699760'), + (1129, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdKXkBam', '5741601'), + (1129, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdKXkBam', '5763458'), + (1129, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdKXkBam', '5774172'), + (1129, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdKXkBam', '5818247'), + (1129, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdKXkBam', '5819471'), + (1129, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'kdKXkBam', '5827739'), + (1129, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdKXkBam', '5844306'), + (1129, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdKXkBam', '5850159'), + (1129, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdKXkBam', '5858999'), + (1129, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdKXkBam', '5871984'), + (1129, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdKXkBam', '5876354'), + (1129, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdKXkBam', '5880939'), + (1129, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdKXkBam', '5880940'), + (1129, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdKXkBam', '5880942'), + (1129, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdKXkBam', '5880943'), + (1129, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdKXkBam', '5887890'), + (1129, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdKXkBam', '5888598'), + (1129, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdKXkBam', '5893260'), + (1129, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdKXkBam', '5899826'), + (1129, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdKXkBam', '5900199'), + (1129, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdKXkBam', '5900200'), + (1129, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdKXkBam', '5900202'), + (1129, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdKXkBam', '5900203'), + (1129, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdKXkBam', '5901108'), + (1129, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdKXkBam', '5901126'), + (1129, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdKXkBam', '5909655'), + (1129, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdKXkBam', '5910522'), + (1129, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdKXkBam', '5910526'), + (1129, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdKXkBam', '5910528'), + (1129, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdKXkBam', '5916219'), + (1129, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdKXkBam', '5936234'), + (1129, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdKXkBam', '5958351'), + (1129, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdKXkBam', '5959751'), + (1129, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdKXkBam', '5959755'), + (1129, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdKXkBam', '5960055'), + (1129, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdKXkBam', '5961684'), + (1129, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdKXkBam', '5962132'), + (1129, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdKXkBam', '5962133'), + (1129, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdKXkBam', '5962134'), + (1129, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdKXkBam', '5962317'), + (1129, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdKXkBam', '5962318'), + (1129, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdKXkBam', '5965933'), + (1129, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdKXkBam', '5967014'), + (1129, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdKXkBam', '5972815'), + (1129, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdKXkBam', '5974016'), + (1129, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdKXkBam', '5981515'), + (1129, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdKXkBam', '5993516'), + (1129, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdKXkBam', '5998939'), + (1129, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdKXkBam', '6028191'), + (1129, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdKXkBam', '6040066'), + (1129, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdKXkBam', '6042717'), + (1129, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdKXkBam', '6044838'), + (1129, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdKXkBam', '6044839'), + (1129, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKXkBam', '6045684'), + (1129, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdKXkBam', '6050104'), + (1129, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdKXkBam', '6053195'), + (1129, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdKXkBam', '6053198'), + (1129, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdKXkBam', '6056085'), + (1129, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdKXkBam', '6056916'), + (1129, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdKXkBam', '6059290'), + (1129, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdKXkBam', '6060328'), + (1129, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdKXkBam', '6061037'), + (1129, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdKXkBam', '6061039'), + (1129, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdKXkBam', '6067245'), + (1129, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdKXkBam', '6068094'), + (1129, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdKXkBam', '6068252'), + (1129, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdKXkBam', '6068253'), + (1129, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdKXkBam', '6068254'), + (1129, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdKXkBam', '6068280'), + (1129, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdKXkBam', '6069093'), + (1129, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdKXkBam', '6072528'), + (1129, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdKXkBam', '6079840'), + (1129, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdKXkBam', '6083398'), + (1129, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdKXkBam', '6093504'), + (1129, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdKXkBam', '6097414'), + (1129, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdKXkBam', '6097442'), + (1129, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdKXkBam', '6097684'), + (1129, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdKXkBam', '6098762'), + (1129, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdKXkBam', '6101361'), + (1129, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdKXkBam', '6101362'), + (1129, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'kdKXkBam', '6103752'), + (1129, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdKXkBam', '6107314'), + (1129, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdKXkBam', '6120034'), + (1129, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'kdKXkBam', '6136733'), + (1129, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdKXkBam', '6137989'), + (1129, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdKXkBam', '6150864'), + (1129, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdKXkBam', '6155491'), + (1129, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdKXkBam', '6164417'), + (1129, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdKXkBam', '6166388'), + (1129, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdKXkBam', '6176439'), + (1129, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdKXkBam', '6182410'), + (1129, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdKXkBam', '6185812'), + (1129, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdKXkBam', '6187651'), + (1129, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdKXkBam', '6187963'), + (1129, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdKXkBam', '6187964'), + (1129, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdKXkBam', '6187966'), + (1129, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdKXkBam', '6187967'), + (1129, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdKXkBam', '6187969'), + (1129, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdKXkBam', '6334878'), + (1129, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdKXkBam', '6337236'), + (1129, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdKXkBam', '6337970'), + (1129, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdKXkBam', '6338308'), + (1129, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdKXkBam', '6341710'), + (1129, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdKXkBam', '6342044'), + (1129, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdKXkBam', '6342298'), + (1129, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdKXkBam', '6343294'), + (1129, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdKXkBam', '6347034'), + (1129, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdKXkBam', '6347056'), + (1129, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdKXkBam', '6353830'), + (1129, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdKXkBam', '6353831'), + (1129, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdKXkBam', '6357867'), + (1129, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdKXkBam', '6358652'), + (1129, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdKXkBam', '6361709'), + (1129, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdKXkBam', '6361710'), + (1129, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdKXkBam', '6361711'), + (1129, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdKXkBam', '6361712'), + (1129, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdKXkBam', '6361713'), + (1129, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'kdKXkBam', '6382573'), + (1129, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdKXkBam', '6388604'), + (1129, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdKXkBam', '6394629'), + (1129, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdKXkBam', '6394631'), + (1129, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdKXkBam', '6440863'), + (1129, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdKXkBam', '6445440'), + (1129, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdKXkBam', '6453951'), + (1129, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdKXkBam', '6461696'), + (1129, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdKXkBam', '6462129'), + (1129, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdKXkBam', '6463218'), + (1129, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdKXkBam', '6472181'), + (1129, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdKXkBam', '6482693'), + (1129, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdKXkBam', '6484200'), + (1129, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdKXkBam', '6484680'), + (1129, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdKXkBam', '6507741'), + (1129, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdKXkBam', '6514659'), + (1129, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdKXkBam', '6514660'), + (1129, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdKXkBam', '6519103'), + (1129, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdKXkBam', '6535681'), + (1129, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdKXkBam', '6584747'), + (1129, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdKXkBam', '6587097'), + (1129, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdKXkBam', '6609022'), + (1129, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'kdKXkBam', '6632757'), + (1129, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdKXkBam', '6644187'), + (1129, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdKXkBam', '6648951'), + (1129, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdKXkBam', '6648952'), + (1129, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdKXkBam', '6655401'), + (1129, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdKXkBam', '6661585'), + (1129, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdKXkBam', '6661588'), + (1129, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdKXkBam', '6661589'), + (1129, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdKXkBam', '6699906'), + (1129, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdKXkBam', '6699913'), + (1129, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdKXkBam', '6701109'), + (1129, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdKXkBam', '6705219'), + (1129, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdKXkBam', '6710153'), + (1129, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdKXkBam', '6711552'), + (1129, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdKXkBam', '6711553'), + (1129, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdKXkBam', '6722688'), + (1129, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdKXkBam', '6730620'), + (1129, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdKXkBam', '6740364'), + (1129, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdKXkBam', '6743829'), + (1129, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdKXkBam', '7030380'), + (1129, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'kdKXkBam', '7033677'), + (1129, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdKXkBam', '7044715'), + (1129, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdKXkBam', '7050318'), + (1129, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdKXkBam', '7050319'), + (1129, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdKXkBam', '7050322'), + (1129, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdKXkBam', '7057804'), + (1129, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdKXkBam', '7072824'), + (1129, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdKXkBam', '7074348'), + (1129, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdKXkBam', '7074364'), + (1129, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdKXkBam', '7089267'), + (1129, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdKXkBam', '7098747'), + (1129, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdKXkBam', '7113468'), + (1129, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdKXkBam', '7114856'), + (1129, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdKXkBam', '7114951'), + (1129, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdKXkBam', '7114955'), + (1129, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdKXkBam', '7114956'), + (1129, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdKXkBam', '7114957'), + (1129, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdKXkBam', '7159484'), + (1129, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdKXkBam', '7178446'), + (1129, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdKXkBam', '7220467'), + (1129, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdKXkBam', '7240354'), + (1129, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdKXkBam', '7251633'), + (1129, 2678, 'attending', '2024-06-15 22:29:48', '2025-12-17 19:46:28', 'kdKXkBam', '7319489'), + (1129, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdKXkBam', '7324073'), + (1129, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdKXkBam', '7324074'), + (1129, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdKXkBam', '7324075'), + (1129, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdKXkBam', '7324078'), + (1129, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdKXkBam', '7324082'), + (1129, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdKXkBam', '7331457'), + (1129, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdKXkBam', '7363643'), + (1129, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdKXkBam', '7368606'), + (1129, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdKXkBam', '7397462'), + (1129, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdKXkBam', '7424275'), + (1129, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdKXkBam', '7432751'), + (1129, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdKXkBam', '7432752'), + (1129, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdKXkBam', '7432753'), + (1129, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdKXkBam', '7432754'), + (1129, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdKXkBam', '7432755'), + (1129, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdKXkBam', '7432756'), + (1129, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdKXkBam', '7432758'), + (1129, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdKXkBam', '7432759'), + (1129, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdKXkBam', '7433834'), + (1129, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'kdKXkBam', '7470197'), + (1129, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdKXkBam', '7685613'), + (1129, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdKXkBam', '7688194'), + (1129, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdKXkBam', '7688196'), + (1129, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdKXkBam', '7688289'), + (1129, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdKXkBam', '7692763'), + (1129, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdKXkBam', '7697552'), + (1129, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdKXkBam', '7699878'), + (1129, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdKXkBam', '7704043'), + (1129, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdKXkBam', '7712467'), + (1129, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdKXkBam', '7713585'), + (1129, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdKXkBam', '7713586'), + (1129, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdKXkBam', '7738518'), + (1129, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdKXkBam', '7750636'), + (1129, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdKXkBam', '7796540'), + (1129, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdKXkBam', '7796541'), + (1129, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdKXkBam', '7796542'), + (1129, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdKXkBam', '7825913'), + (1129, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdKXkBam', '7826209'), + (1129, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdKXkBam', '7834742'), + (1129, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'kdKXkBam', '7842108'), + (1129, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdKXkBam', '7842902'), + (1129, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdKXkBam', '7842903'), + (1129, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdKXkBam', '7842904'), + (1129, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdKXkBam', '7842905'), + (1129, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdKXkBam', '7855719'), + (1129, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdKXkBam', '7860683'), + (1129, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdKXkBam', '7860684'), + (1129, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdKXkBam', '7866095'), + (1129, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdKXkBam', '7869170'), + (1129, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdKXkBam', '7869188'), + (1129, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdKXkBam', '7869201'), + (1129, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdKXkBam', '7877465'), + (1129, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdKXkBam', '7888250'), + (1129, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdKXkBam', '7904777'), + (1129, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdKXkBam', '8349164'), + (1129, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdKXkBam', '8349545'), + (1129, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdKXkBam', '8368028'), + (1129, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdKXkBam', '8368029'), + (1129, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdKXkBam', '8388462'), + (1129, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdKXkBam', '8400273'), + (1129, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdKXkBam', '8400275'), + (1129, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'kdKXkBam', '8400276'), + (1129, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdKXkBam', '8404977'), + (1129, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdKXkBam', '8430783'), + (1129, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdKXkBam', '8430784'), + (1129, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdKXkBam', '8430799'), + (1129, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdKXkBam', '8430800'), + (1129, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdKXkBam', '8430801'), + (1129, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdKXkBam', '8438709'), + (1129, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdKXkBam', '8457738'), + (1129, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdKXkBam', '8459566'), + (1129, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdKXkBam', '8459567'), + (1129, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdKXkBam', '8461032'), + (1129, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdKXkBam', '8477877'), + (1129, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdKXkBam', '8485688'), + (1129, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdKXkBam', '8490587'), + (1129, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdKXkBam', '8493552'), + (1129, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdKXkBam', '8493553'), + (1129, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdKXkBam', '8493554'), + (1129, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdKXkBam', '8493555'), + (1129, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdKXkBam', '8493556'), + (1129, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdKXkBam', '8493557'), + (1129, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdKXkBam', '8493558'), + (1129, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdKXkBam', '8493559'), + (1129, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdKXkBam', '8493560'), + (1129, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdKXkBam', '8493561'), + (1129, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdKXkBam', '8493572'), + (1129, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdKXkBam', '8540725'), + (1129, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdKXkBam', '8555421'), + (1130, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4ZknkYGd', '6045684'), + (1131, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'R40q8LQd', '3149491'), + (1131, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'R40q8LQd', '3149493'), + (1131, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'R40q8LQd', '3236448'), + (1131, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'R40q8LQd', '3236450'), + (1131, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40q8LQd', '3974109'), + (1131, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40q8LQd', '3975312'), + (1131, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40q8LQd', '4014338'), + (1131, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'R40q8LQd', '4021848'), + (1131, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40q8LQd', '4136744'), + (1131, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40q8LQd', '4136937'), + (1131, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40q8LQd', '4136938'), + (1131, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40q8LQd', '4136947'), + (1131, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40q8LQd', '4225444'), + (1131, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'R40q8LQd', '4229417'), + (1131, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'R40q8LQd', '4229418'), + (1131, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40q8LQd', '4239259'), + (1131, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40q8LQd', '4250163'), + (1131, 951, 'attending', '2021-08-29 20:25:14', '2025-12-17 19:47:43', 'R40q8LQd', '4315731'), + (1131, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'R40q8LQd', '4356801'), + (1131, 975, 'not_attending', '2021-08-27 14:38:18', '2025-12-17 19:47:42', 'R40q8LQd', '4367341'), + (1131, 981, 'not_attending', '2021-08-27 14:42:28', '2025-12-17 19:47:42', 'R40q8LQd', '4387305'), + (1131, 987, 'maybe', '2021-08-31 23:24:56', '2025-12-17 19:47:43', 'R40q8LQd', '4402634'), + (1131, 988, 'not_attending', '2021-08-27 22:59:26', '2025-12-17 19:47:42', 'R40q8LQd', '4402823'), + (1131, 990, 'attending', '2021-09-04 20:57:52', '2025-12-17 19:47:43', 'R40q8LQd', '4420735'), + (1131, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'R40q8LQd', '4420738'), + (1131, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'R40q8LQd', '4420739'), + (1131, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'R40q8LQd', '4420741'), + (1131, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'R40q8LQd', '4420744'), + (1131, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'R40q8LQd', '4420747'), + (1131, 1002, 'attending', '2021-08-30 18:42:40', '2025-12-17 19:47:43', 'R40q8LQd', '4424932'), + (1131, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'R40q8LQd', '4461883'), + (1131, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'R40q8LQd', '4508342'), + (1131, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'R40q8LQd', '4568602'), + (1131, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40q8LQd', '6045684'), + (1132, 1241, 'attending', '2022-03-23 17:48:24', '2025-12-17 19:47:25', 'dx61xDGA', '5052240'), + (1132, 1242, 'maybe', '2022-03-30 22:11:58', '2025-12-17 19:47:25', 'dx61xDGA', '5052241'), + (1132, 1264, 'attending', '2022-03-22 14:45:50', '2025-12-17 19:47:25', 'dx61xDGA', '5160281'), + (1132, 1274, 'attending', '2022-04-02 19:38:13', '2025-12-17 19:47:26', 'dx61xDGA', '5186585'), + (1132, 1276, 'maybe', '2022-03-27 19:39:09', '2025-12-17 19:47:25', 'dx61xDGA', '5186820'), + (1132, 1281, 'not_attending', '2022-04-06 14:19:00', '2025-12-17 19:47:27', 'dx61xDGA', '5190437'), + (1132, 1284, 'not_attending', '2022-04-16 22:21:55', '2025-12-17 19:47:27', 'dx61xDGA', '5195095'), + (1132, 1288, 'not_attending', '2022-03-28 14:36:43', '2025-12-17 19:47:25', 'dx61xDGA', '5199460'), + (1132, 1289, 'attending', '2022-03-23 17:38:11', '2025-12-17 19:47:25', 'dx61xDGA', '5200190'), + (1132, 1290, 'attending', '2022-03-23 17:48:12', '2025-12-17 19:47:25', 'dx61xDGA', '5200196'), + (1132, 1294, 'maybe', '2022-04-03 01:40:13', '2025-12-17 19:47:26', 'dx61xDGA', '5214686'), + (1132, 1295, 'attending', '2022-03-28 14:29:41', '2025-12-17 19:47:25', 'dx61xDGA', '5215609'), + (1132, 1297, 'maybe', '2022-03-29 14:48:42', '2025-12-17 19:47:26', 'dx61xDGA', '5215989'), + (1132, 1300, 'attending', '2022-03-30 12:52:27', '2025-12-17 19:47:25', 'dx61xDGA', '5217936'), + (1132, 1304, 'not_attending', '2022-04-06 14:18:52', '2025-12-17 19:47:26', 'dx61xDGA', '5223468'), + (1132, 1307, 'attending', '2022-04-04 13:01:17', '2025-12-17 19:47:26', 'dx61xDGA', '5223686'), + (1132, 1308, 'not_attending', '2022-04-13 15:31:50', '2025-12-17 19:47:27', 'dx61xDGA', '5226703'), + (1132, 1309, 'not_attending', '2022-04-06 14:19:23', '2025-12-17 19:47:26', 'dx61xDGA', '5227432'), + (1132, 1316, 'not_attending', '2022-04-14 14:12:03', '2025-12-17 19:47:27', 'dx61xDGA', '5237536'), + (1132, 1318, 'attending', '2022-04-14 14:31:33', '2025-12-17 19:47:27', 'dx61xDGA', '5238343'), + (1132, 1319, 'attending', '2022-04-16 22:12:22', '2025-12-17 19:47:27', 'dx61xDGA', '5238353'), + (1132, 1320, 'not_attending', '2022-04-17 15:03:22', '2025-12-17 19:47:27', 'dx61xDGA', '5238354'), + (1132, 1322, 'attending', '2022-04-16 00:54:49', '2025-12-17 19:47:27', 'dx61xDGA', '5238356'), + (1132, 1323, 'not_attending', '2022-04-25 12:15:29', '2025-12-17 19:47:27', 'dx61xDGA', '5238357'), + (1132, 1324, 'not_attending', '2022-04-24 13:07:48', '2025-12-17 19:47:27', 'dx61xDGA', '5238360'), + (1132, 1327, 'attending', '2022-04-19 12:24:17', '2025-12-17 19:47:27', 'dx61xDGA', '5238445'), + (1132, 1330, 'attending', '2022-04-15 00:39:57', '2025-12-17 19:47:27', 'dx61xDGA', '5242155'), + (1132, 1331, 'attending', '2022-04-15 00:39:59', '2025-12-17 19:47:27', 'dx61xDGA', '5242156'), + (1132, 1332, 'attending', '2022-04-13 20:38:47', '2025-12-17 19:47:27', 'dx61xDGA', '5243274'), + (1132, 1337, 'attending', '2022-04-20 14:12:00', '2025-12-17 19:47:27', 'dx61xDGA', '5245036'), + (1132, 1340, 'not_attending', '2022-04-25 12:15:37', '2025-12-17 19:47:27', 'dx61xDGA', '5245754'), + (1132, 1341, 'not_attending', '2022-04-25 02:55:29', '2025-12-17 19:47:28', 'dx61xDGA', '5245755'), + (1132, 1346, 'attending', '2022-04-20 23:06:25', '2025-12-17 19:47:27', 'dx61xDGA', '5247467'), + (1132, 1348, 'attending', '2022-04-18 15:02:58', '2025-12-17 19:47:28', 'dx61xDGA', '5247605'), + (1132, 1351, 'not_attending', '2022-05-02 13:59:53', '2025-12-17 19:47:28', 'dx61xDGA', '5251561'), + (1132, 1354, 'not_attending', '2022-04-23 20:41:18', '2025-12-17 19:47:27', 'dx61xDGA', '5252569'), + (1132, 1359, 'not_attending', '2022-05-02 14:00:22', '2025-12-17 19:47:28', 'dx61xDGA', '5258360'), + (1132, 1362, 'attending', '2022-04-25 19:48:41', '2025-12-17 19:47:28', 'dx61xDGA', '5260800'), + (1132, 1364, 'attending', '2022-04-28 15:17:11', '2025-12-17 19:47:28', 'dx61xDGA', '5261598'), + (1132, 1366, 'attending', '2022-04-26 20:53:11', '2025-12-17 19:47:27', 'dx61xDGA', '5262344'), + (1132, 1367, 'attending', '2022-04-26 20:53:13', '2025-12-17 19:47:28', 'dx61xDGA', '5262345'), + (1132, 1369, 'not_attending', '2022-05-03 23:18:10', '2025-12-17 19:47:28', 'dx61xDGA', '5262809'), + (1132, 1372, 'attending', '2022-05-03 12:58:54', '2025-12-17 19:47:28', 'dx61xDGA', '5264352'), + (1132, 1374, 'attending', '2022-04-30 21:44:11', '2025-12-17 19:47:28', 'dx61xDGA', '5269930'), + (1132, 1376, 'not_attending', '2022-05-12 20:27:41', '2025-12-17 19:47:28', 'dx61xDGA', '5271446'), + (1132, 1377, 'not_attending', '2022-05-12 20:27:49', '2025-12-17 19:47:28', 'dx61xDGA', '5271447'), + (1132, 1378, 'not_attending', '2022-05-12 20:28:01', '2025-12-17 19:47:29', 'dx61xDGA', '5271448'), + (1132, 1379, 'not_attending', '2022-05-21 21:52:28', '2025-12-17 19:47:30', 'dx61xDGA', '5271449'), + (1132, 1380, 'not_attending', '2022-05-27 17:53:09', '2025-12-17 19:47:30', 'dx61xDGA', '5271450'), + (1132, 1383, 'not_attending', '2022-05-12 20:27:48', '2025-12-17 19:47:28', 'dx61xDGA', '5276469'), + (1132, 1385, 'not_attending', '2022-05-11 13:26:56', '2025-12-17 19:47:28', 'dx61xDGA', '5277822'), + (1132, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx61xDGA', '5278159'), + (1132, 1390, 'not_attending', '2022-05-12 20:28:05', '2025-12-17 19:47:28', 'dx61xDGA', '5279509'), + (1132, 1392, 'attending', '2022-05-10 13:31:15', '2025-12-17 19:47:28', 'dx61xDGA', '5279532'), + (1132, 1403, 'maybe', '2022-05-17 12:23:17', '2025-12-17 19:47:29', 'dx61xDGA', '5288052'), + (1132, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dx61xDGA', '5363695'), + (1132, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dx61xDGA', '5365960'), + (1132, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dx61xDGA', '5368973'), + (1132, 1424, 'attending', '2022-05-24 13:09:46', '2025-12-17 19:47:30', 'dx61xDGA', '5375772'), + (1132, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dx61xDGA', '5378247'), + (1132, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dx61xDGA', '5389605'), + (1132, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dx61xDGA', '5397265'), + (1132, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dx61xDGA', '5403967'), + (1132, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dx61xDGA', '5404786'), + (1132, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dx61xDGA', '5405203'), + (1132, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dx61xDGA', '5408794'), + (1132, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dx61xDGA', '5411699'), + (1132, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dx61xDGA', '5412550'), + (1132, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dx61xDGA', '5415046'), + (1132, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dx61xDGA', '5422086'), + (1132, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dx61xDGA', '5422406'), + (1132, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dx61xDGA', '5424565'), + (1132, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dx61xDGA', '5426882'), + (1132, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dx61xDGA', '5427083'), + (1132, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dx61xDGA', '5441125'), + (1132, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dx61xDGA', '5441126'), + (1132, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dx61xDGA', '5441128'), + (1132, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dx61xDGA', '5446643'), + (1132, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dx61xDGA', '5453325'), + (1132, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dx61xDGA', '5454516'), + (1132, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dx61xDGA', '5454605'), + (1132, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dx61xDGA', '5455037'), + (1132, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dx61xDGA', '5461278'), + (1132, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dx61xDGA', '5469480'), + (1132, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dx61xDGA', '5471073'), + (1132, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dx61xDGA', '5474663'), + (1132, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dx61xDGA', '5482022'), + (1132, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dx61xDGA', '5482793'), + (1132, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dx61xDGA', '5488912'), + (1132, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dx61xDGA', '5492192'), + (1132, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dx61xDGA', '5493139'), + (1132, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dx61xDGA', '5493200'), + (1132, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dx61xDGA', '5502188'), + (1132, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dx61xDGA', '5512862'), + (1132, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dx61xDGA', '5513985'), + (1132, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx61xDGA', '6045684'), + (1133, 857, 'attending', '2021-11-16 23:38:16', '2025-12-17 19:47:37', '4oMDG0nm', '4015731'), + (1133, 993, 'attending', '2021-09-24 22:23:11', '2025-12-17 19:47:34', '4oMDG0nm', '4420741'), + (1133, 994, 'attending', '2021-10-02 18:52:29', '2025-12-17 19:47:34', '4oMDG0nm', '4420742'), + (1133, 995, 'attending', '2021-09-26 13:12:25', '2025-12-17 19:47:34', '4oMDG0nm', '4420744'), + (1133, 996, 'attending', '2021-09-26 14:37:05', '2025-12-17 19:47:35', '4oMDG0nm', '4420747'), + (1133, 997, 'attending', '2021-09-26 14:37:08', '2025-12-17 19:47:35', '4oMDG0nm', '4420748'), + (1133, 998, 'attending', '2021-09-26 14:37:10', '2025-12-17 19:47:36', '4oMDG0nm', '4420749'), + (1133, 1006, 'not_attending', '2021-09-24 19:35:45', '2025-12-17 19:47:34', '4oMDG0nm', '4438808'), + (1133, 1007, 'attending', '2021-09-29 15:35:40', '2025-12-17 19:47:34', '4oMDG0nm', '4438809'), + (1133, 1009, 'not_attending', '2021-10-07 13:08:33', '2025-12-17 19:47:34', '4oMDG0nm', '4438811'), + (1133, 1040, 'attending', '2021-12-11 06:46:32', '2025-12-17 19:47:38', '4oMDG0nm', '4496605'), + (1133, 1049, 'attending', '2022-01-22 22:47:09', '2025-12-17 19:47:32', '4oMDG0nm', '4496614'), + (1133, 1050, 'attending', '2022-01-22 22:47:09', '2025-12-17 19:47:32', '4oMDG0nm', '4496615'), + (1133, 1051, 'attending', '2022-02-01 23:06:08', '2025-12-17 19:47:32', '4oMDG0nm', '4496616'), + (1133, 1052, 'attending', '2022-01-14 18:25:50', '2025-12-17 19:47:31', '4oMDG0nm', '4496617'), + (1133, 1055, 'attending', '2021-12-18 16:17:42', '2025-12-17 19:47:31', '4oMDG0nm', '4496621'), + (1133, 1056, 'attending', '2022-01-03 20:33:58', '2025-12-17 19:47:31', '4oMDG0nm', '4496622'), + (1133, 1059, 'attending', '2022-03-06 16:24:27', '2025-12-17 19:47:33', '4oMDG0nm', '4496626'), + (1133, 1061, 'attending', '2022-02-10 06:44:12', '2025-12-17 19:47:32', '4oMDG0nm', '4496628'), + (1133, 1062, 'attending', '2022-02-27 21:30:56', '2025-12-17 19:47:33', '4oMDG0nm', '4496629'), + (1133, 1068, 'attending', '2021-09-26 20:34:38', '2025-12-17 19:47:34', '4oMDG0nm', '4511471'), + (1133, 1069, 'attending', '2021-09-24 19:35:33', '2025-12-17 19:47:34', '4oMDG0nm', '4512090'), + (1133, 1070, 'attending', '2021-09-26 13:12:01', '2025-12-17 19:47:34', '4oMDG0nm', '4512562'), + (1133, 1071, 'attending', '2021-09-26 22:27:29', '2025-12-17 19:47:34', '4oMDG0nm', '4516078'), + (1133, 1072, 'attending', '2021-10-03 18:01:28', '2025-12-17 19:47:34', '4oMDG0nm', '4516287'), + (1133, 1074, 'attending', '2021-09-29 20:41:45', '2025-12-17 19:47:34', '4oMDG0nm', '4528953'), + (1133, 1075, 'attending', '2021-10-06 04:02:29', '2025-12-17 19:47:34', '4oMDG0nm', '4536351'), + (1133, 1077, 'attending', '2021-10-04 21:50:13', '2025-12-17 19:47:34', '4oMDG0nm', '4540903'), + (1133, 1078, 'attending', '2021-10-04 21:50:05', '2025-12-17 19:47:34', '4oMDG0nm', '4541281'), + (1133, 1079, 'attending', '2021-10-20 02:30:14', '2025-12-17 19:47:35', '4oMDG0nm', '4563823'), + (1133, 1082, 'attending', '2021-10-11 22:53:40', '2025-12-17 19:47:35', '4oMDG0nm', '4566762'), + (1133, 1083, 'not_attending', '2021-10-14 17:45:31', '2025-12-17 19:47:34', '4oMDG0nm', '4566768'), + (1133, 1085, 'attending', '2021-12-18 23:47:02', '2025-12-17 19:47:31', '4oMDG0nm', '4568542'), + (1133, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4oMDG0nm', '4568602'), + (1133, 1087, 'not_attending', '2021-10-15 14:03:18', '2025-12-17 19:47:35', '4oMDG0nm', '4572153'), + (1133, 1088, 'attending', '2021-10-22 02:47:44', '2025-12-17 19:47:35', '4oMDG0nm', '4574382'), + (1133, 1089, 'not_attending', '2021-10-17 22:55:40', '2025-12-17 19:47:35', '4oMDG0nm', '4574712'), + (1133, 1090, 'attending', '2021-10-16 16:34:22', '2025-12-17 19:47:35', '4oMDG0nm', '4574713'), + (1133, 1091, 'attending', '2021-10-17 22:55:41', '2025-12-17 19:47:35', '4oMDG0nm', '4575829'), + (1133, 1092, 'attending', '2021-10-19 22:26:14', '2025-12-17 19:47:35', '4oMDG0nm', '4582837'), + (1133, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMDG0nm', '4585962'), + (1133, 1094, 'attending', '2021-10-21 03:39:29', '2025-12-17 19:47:36', '4oMDG0nm', '4587337'), + (1133, 1095, 'attending', '2021-10-27 01:05:52', '2025-12-17 19:47:35', '4oMDG0nm', '4596356'), + (1133, 1096, 'attending', '2021-10-27 01:05:49', '2025-12-17 19:47:36', '4oMDG0nm', '4596453'), + (1133, 1097, 'attending', '2021-10-28 02:33:06', '2025-12-17 19:47:36', '4oMDG0nm', '4598860'), + (1133, 1098, 'attending', '2021-10-28 02:34:14', '2025-12-17 19:47:36', '4oMDG0nm', '4598861'), + (1133, 1099, 'attending', '2021-10-31 04:30:59', '2025-12-17 19:47:36', '4oMDG0nm', '4602797'), + (1133, 1101, 'attending', '2021-11-03 05:34:44', '2025-12-17 19:47:36', '4oMDG0nm', '4607339'), + (1133, 1103, 'attending', '2021-11-07 04:02:07', '2025-12-17 19:47:36', '4oMDG0nm', '4616350'), + (1133, 1106, 'not_attending', '2021-11-12 22:28:48', '2025-12-17 19:47:36', '4oMDG0nm', '4620452'), + (1133, 1108, 'attending', '2021-11-11 15:28:06', '2025-12-17 19:47:37', '4oMDG0nm', '4632276'), + (1133, 1109, 'not_attending', '2021-11-20 23:09:49', '2025-12-17 19:47:37', '4oMDG0nm', '4635221'), + (1133, 1111, 'not_attending', '2021-11-20 23:09:48', '2025-12-17 19:47:31', '4oMDG0nm', '4635279'), + (1133, 1112, 'not_attending', '2021-11-27 21:59:39', '2025-12-17 19:47:37', '4oMDG0nm', '4635420'), + (1133, 1114, 'attending', '2021-11-11 16:17:23', '2025-12-17 19:47:36', '4oMDG0nm', '4637896'), + (1133, 1115, 'attending', '2021-11-12 00:45:21', '2025-12-17 19:47:37', '4oMDG0nm', '4638673'), + (1133, 1116, 'attending', '2021-11-13 00:49:05', '2025-12-17 19:47:37', '4oMDG0nm', '4642994'), + (1133, 1117, 'not_attending', '2021-12-08 17:43:17', '2025-12-17 19:47:38', '4oMDG0nm', '4642995'), + (1133, 1118, 'attending', '2021-11-13 00:49:08', '2025-12-17 19:47:38', '4oMDG0nm', '4642996'), + (1133, 1119, 'attending', '2021-11-13 00:49:02', '2025-12-17 19:47:31', '4oMDG0nm', '4642997'), + (1133, 1124, 'attending', '2021-12-11 19:04:33', '2025-12-17 19:47:38', '4oMDG0nm', '4644025'), + (1133, 1125, 'attending', '2021-12-20 23:29:14', '2025-12-17 19:47:31', '4oMDG0nm', '4644027'), + (1133, 1126, 'attending', '2021-11-16 23:22:43', '2025-12-17 19:47:38', '4oMDG0nm', '4645687'), + (1133, 1127, 'attending', '2021-12-09 20:29:14', '2025-12-17 19:47:38', '4oMDG0nm', '4645698'), + (1133, 1128, 'attending', '2021-11-16 23:22:21', '2025-12-17 19:47:37', '4oMDG0nm', '4645704'), + (1133, 1129, 'not_attending', '2021-11-29 22:07:56', '2025-12-17 19:47:37', '4oMDG0nm', '4645705'), + (1133, 1130, 'not_attending', '2021-12-03 04:56:46', '2025-12-17 19:47:37', '4oMDG0nm', '4658824'), + (1133, 1131, 'attending', '2021-12-13 01:04:49', '2025-12-17 19:47:31', '4oMDG0nm', '4658825'), + (1133, 1132, 'attending', '2021-11-21 19:49:00', '2025-12-17 19:47:37', '4oMDG0nm', '4660657'), + (1133, 1133, 'attending', '2021-11-22 00:37:16', '2025-12-17 19:47:37', '4oMDG0nm', '4661671'), + (1133, 1134, 'attending', '2021-11-24 15:02:11', '2025-12-17 19:47:37', '4oMDG0nm', '4668385'), + (1133, 1135, 'attending', '2021-11-25 04:19:56', '2025-12-17 19:47:37', '4oMDG0nm', '4670469'), + (1133, 1136, 'attending', '2021-11-25 05:05:24', '2025-12-17 19:47:37', '4oMDG0nm', '4670473'), + (1133, 1139, 'not_attending', '2021-11-30 03:35:43', '2025-12-17 19:47:37', '4oMDG0nm', '4675604'), + (1133, 1141, 'attending', '2021-12-01 00:13:56', '2025-12-17 19:47:37', '4oMDG0nm', '4680695'), + (1133, 1142, 'attending', '2021-12-06 20:48:31', '2025-12-17 19:47:37', '4oMDG0nm', '4681923'), + (1133, 1143, 'attending', '2021-12-01 21:48:02', '2025-12-17 19:47:37', '4oMDG0nm', '4683667'), + (1133, 1145, 'attending', '2021-12-06 15:47:51', '2025-12-17 19:47:38', '4oMDG0nm', '4691157'), + (1133, 1147, 'not_attending', '2021-12-09 01:47:31', '2025-12-17 19:47:38', '4oMDG0nm', '4692842'), + (1133, 1148, 'attending', '2021-12-17 23:55:46', '2025-12-17 19:47:31', '4oMDG0nm', '4692843'), + (1133, 1149, 'not_attending', '2021-12-08 05:22:13', '2025-12-17 19:47:38', '4oMDG0nm', '4694407'), + (1133, 1150, 'attending', '2021-12-13 00:52:01', '2025-12-17 19:47:38', '4oMDG0nm', '4706262'), + (1133, 1151, 'not_attending', '2022-01-05 07:25:47', '2025-12-17 19:47:31', '4oMDG0nm', '4708704'), + (1133, 1152, 'not_attending', '2022-01-12 20:28:03', '2025-12-17 19:47:31', '4oMDG0nm', '4708705'), + (1133, 1153, 'not_attending', '2022-01-19 23:33:08', '2025-12-17 19:47:32', '4oMDG0nm', '4708707'), + (1133, 1159, 'attending', '2021-12-21 00:13:31', '2025-12-17 19:47:31', '4oMDG0nm', '4717532'), + (1133, 1162, 'attending', '2022-01-03 20:33:47', '2025-12-17 19:47:31', '4oMDG0nm', '4718771'), + (1133, 1171, 'not_attending', '2022-01-04 17:12:54', '2025-12-17 19:47:31', '4oMDG0nm', '4733292'), + (1133, 1173, 'attending', '2022-01-03 20:33:52', '2025-12-17 19:47:31', '4oMDG0nm', '4736495'), + (1133, 1174, 'attending', '2022-01-09 20:22:35', '2025-12-17 19:47:31', '4oMDG0nm', '4736496'), + (1133, 1175, 'attending', '2022-01-22 02:32:18', '2025-12-17 19:47:32', '4oMDG0nm', '4736497'), + (1133, 1176, 'attending', '2022-02-05 00:51:54', '2025-12-17 19:47:32', '4oMDG0nm', '4736498'), + (1133, 1177, 'attending', '2022-02-09 20:12:14', '2025-12-17 19:47:32', '4oMDG0nm', '4736499'), + (1133, 1178, 'attending', '2022-01-22 22:47:09', '2025-12-17 19:47:32', '4oMDG0nm', '4736500'), + (1133, 1179, 'attending', '2022-02-13 05:31:57', '2025-12-17 19:47:32', '4oMDG0nm', '4736501'), + (1133, 1180, 'not_attending', '2022-02-27 00:37:50', '2025-12-17 19:47:33', '4oMDG0nm', '4736502'), + (1133, 1181, 'attending', '2022-02-27 21:30:53', '2025-12-17 19:47:33', '4oMDG0nm', '4736503'), + (1133, 1182, 'not_attending', '2022-03-12 18:26:35', '2025-12-17 19:47:33', '4oMDG0nm', '4736504'), + (1133, 1184, 'not_attending', '2022-01-12 20:28:10', '2025-12-17 19:47:31', '4oMDG0nm', '4742350'), + (1133, 1185, 'not_attending', '2022-01-12 20:28:08', '2025-12-17 19:47:31', '4oMDG0nm', '4746789'), + (1133, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMDG0nm', '4753929'), + (1133, 1203, 'attending', '2022-01-22 19:25:12', '2025-12-17 19:47:32', '4oMDG0nm', '4773535'), + (1133, 1204, 'attending', '2022-02-13 05:39:28', '2025-12-17 19:47:32', '4oMDG0nm', '4773576'), + (1133, 1205, 'attending', '2022-03-06 16:24:40', '2025-12-17 19:47:33', '4oMDG0nm', '4773577'), + (1133, 1206, 'attending', '2022-03-23 15:15:58', '2025-12-17 19:47:27', '4oMDG0nm', '4773578'), + (1133, 1207, 'attending', '2022-05-04 16:11:20', '2025-12-17 19:47:28', '4oMDG0nm', '4773579'), + (1133, 1223, 'attending', '2022-01-30 04:52:31', '2025-12-17 19:47:32', '4oMDG0nm', '5015635'), + (1133, 1225, 'attending', '2022-01-31 23:48:57', '2025-12-17 19:47:32', '4oMDG0nm', '5019063'), + (1133, 1231, 'not_attending', '2022-02-24 19:48:29', '2025-12-17 19:47:33', '4oMDG0nm', '5037637'), + (1133, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMDG0nm', '5038850'), + (1133, 1236, 'not_attending', '2022-02-17 17:30:23', '2025-12-17 19:47:32', '4oMDG0nm', '5045826'), + (1133, 1254, 'attending', '2022-02-28 22:26:31', '2025-12-17 19:47:33', '4oMDG0nm', '5129129'), + (1133, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMDG0nm', '5132533'), + (1133, 1272, 'attending', '2022-03-15 20:49:23', '2025-12-17 19:47:25', '4oMDG0nm', '5186582'), + (1133, 1273, 'attending', '2022-03-15 20:49:26', '2025-12-17 19:47:25', '4oMDG0nm', '5186583'), + (1133, 1274, 'attending', '2022-03-15 20:49:31', '2025-12-17 19:47:26', '4oMDG0nm', '5186585'), + (1133, 1281, 'attending', '2022-03-17 16:00:14', '2025-12-17 19:47:27', '4oMDG0nm', '5190437'), + (1133, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4oMDG0nm', '5195095'), + (1133, 1293, 'attending', '2022-03-27 20:17:29', '2025-12-17 19:47:27', '4oMDG0nm', '5214641'), + (1133, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', '4oMDG0nm', '5215989'), + (1133, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4oMDG0nm', '5223686'), + (1133, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4oMDG0nm', '5227432'), + (1133, 1310, 'attending', '2022-04-08 01:00:22', '2025-12-17 19:47:27', '4oMDG0nm', '5231071'), + (1133, 1311, 'attending', '2022-04-08 02:44:30', '2025-12-17 19:47:27', '4oMDG0nm', '5231430'), + (1133, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', '4oMDG0nm', '5231461'), + (1133, 1316, 'not_attending', '2022-04-12 13:53:21', '2025-12-17 19:47:27', '4oMDG0nm', '5237536'), + (1133, 1346, 'attending', '2022-04-17 21:44:26', '2025-12-17 19:47:27', '4oMDG0nm', '5247467'), + (1133, 1348, 'attending', '2022-04-18 00:19:21', '2025-12-17 19:47:28', '4oMDG0nm', '5247605'), + (1133, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', '4oMDG0nm', '5249631'), + (1133, 1362, 'attending', '2022-04-25 17:57:05', '2025-12-17 19:47:28', '4oMDG0nm', '5260800'), + (1133, 1374, 'attending', '2022-04-30 19:52:14', '2025-12-17 19:47:28', '4oMDG0nm', '5269930'), + (1133, 1378, 'not_attending', '2022-05-14 22:54:57', '2025-12-17 19:47:29', '4oMDG0nm', '5271448'), + (1133, 1379, 'attending', '2022-05-04 16:11:12', '2025-12-17 19:47:29', '4oMDG0nm', '5271449'), + (1133, 1380, 'attending', '2022-05-27 15:58:23', '2025-12-17 19:47:30', '4oMDG0nm', '5271450'), + (1133, 1383, 'not_attending', '2022-05-13 22:45:33', '2025-12-17 19:47:28', '4oMDG0nm', '5276469'), + (1133, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4oMDG0nm', '5278159'), + (1133, 1395, 'attending', '2022-05-07 16:28:52', '2025-12-17 19:47:28', '4oMDG0nm', '5281102'), + (1133, 1396, 'attending', '2022-05-07 16:28:53', '2025-12-17 19:47:28', '4oMDG0nm', '5281103'), + (1133, 1397, 'attending', '2022-05-07 16:28:56', '2025-12-17 19:47:29', '4oMDG0nm', '5281104'), + (1133, 1407, 'attending', '2022-06-02 18:44:11', '2025-12-17 19:47:30', '4oMDG0nm', '5363695'), + (1133, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMDG0nm', '5365960'), + (1133, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMDG0nm', '5368973'), + (1133, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMDG0nm', '5378247'), + (1133, 1431, 'attending', '2022-06-03 03:11:03', '2025-12-17 19:47:30', '4oMDG0nm', '5389605'), + (1133, 1442, 'attending', '2022-06-03 03:11:05', '2025-12-17 19:47:17', '4oMDG0nm', '5397265'), + (1133, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMDG0nm', '5403967'), + (1133, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMDG0nm', '5404786'), + (1133, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMDG0nm', '5405203'), + (1133, 1465, 'attending', '2022-06-12 02:56:59', '2025-12-17 19:47:31', '4oMDG0nm', '5406355'), + (1133, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMDG0nm', '5411699'), + (1133, 1482, 'attending', '2022-06-19 23:25:45', '2025-12-17 19:47:19', '4oMDG0nm', '5412550'), + (1133, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMDG0nm', '5415046'), + (1133, 1494, 'attending', '2022-06-25 15:22:35', '2025-12-17 19:47:19', '4oMDG0nm', '5421626'), + (1133, 1495, 'attending', '2022-06-26 03:32:05', '2025-12-17 19:47:19', '4oMDG0nm', '5422086'), + (1133, 1498, 'attending', '2022-06-26 18:06:57', '2025-12-17 19:47:19', '4oMDG0nm', '5422406'), + (1133, 1499, 'attending', '2022-06-26 18:08:55', '2025-12-17 19:47:19', '4oMDG0nm', '5422407'), + (1133, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMDG0nm', '5424565'), + (1133, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMDG0nm', '5426882'), + (1133, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMDG0nm', '5427083'), + (1133, 1513, 'attending', '2022-07-12 13:49:30', '2025-12-17 19:47:19', '4oMDG0nm', '5441125'), + (1133, 1514, 'not_attending', '2022-07-12 13:49:33', '2025-12-17 19:47:20', '4oMDG0nm', '5441126'), + (1133, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMDG0nm', '5441128'), + (1133, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMDG0nm', '5446643'), + (1133, 1531, 'attending', '2022-07-16 21:11:27', '2025-12-17 19:47:19', '4oMDG0nm', '5448756'), + (1133, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMDG0nm', '5453325'), + (1133, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMDG0nm', '5454516'), + (1133, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMDG0nm', '5454605'), + (1133, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMDG0nm', '5455037'), + (1133, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMDG0nm', '5469480'), + (1133, 1565, 'not_attending', '2022-07-25 22:36:45', '2025-12-17 19:47:21', '4oMDG0nm', '5471073'), + (1133, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMDG0nm', '5474663'), + (1133, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMDG0nm', '5482022'), + (1133, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMDG0nm', '5482793'), + (1133, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4oMDG0nm', '5880940'), + (1133, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4oMDG0nm', '5880942'), + (1133, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4oMDG0nm', '5880943'), + (1133, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4oMDG0nm', '5900199'), + (1133, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4oMDG0nm', '5900200'), + (1133, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4oMDG0nm', '5900202'), + (1133, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4oMDG0nm', '5900203'), + (1133, 1895, 'not_attending', '2023-02-03 03:04:24', '2025-12-17 19:47:06', '4oMDG0nm', '5901108'), + (1133, 1896, 'attending', '2023-02-02 06:20:44', '2025-12-17 19:47:06', '4oMDG0nm', '5901126'), + (1133, 1897, 'maybe', '2023-02-07 03:59:21', '2025-12-17 19:47:07', '4oMDG0nm', '5901128'), + (1133, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4oMDG0nm', '5909655'), + (1133, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4oMDG0nm', '5910522'), + (1133, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4oMDG0nm', '5910526'), + (1133, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4oMDG0nm', '5910528'), + (1133, 1922, 'not_attending', '2023-02-13 03:40:23', '2025-12-17 19:47:07', '4oMDG0nm', '5916219'), + (1133, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4oMDG0nm', '5936234'), + (1133, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4oMDG0nm', '5958351'), + (1133, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4oMDG0nm', '5959751'), + (1133, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4oMDG0nm', '5959755'), + (1133, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4oMDG0nm', '5960055'), + (1133, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4oMDG0nm', '5961684'), + (1133, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4oMDG0nm', '5962132'), + (1133, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4oMDG0nm', '5962133'), + (1133, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4oMDG0nm', '5962134'), + (1133, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4oMDG0nm', '5962317'), + (1133, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4oMDG0nm', '5962318'), + (1133, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4oMDG0nm', '5965933'), + (1133, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4oMDG0nm', '5967014'), + (1133, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4oMDG0nm', '5972815'), + (1133, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4oMDG0nm', '5974016'), + (1133, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '4oMDG0nm', '5975052'), + (1133, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '4oMDG0nm', '5975054'), + (1133, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4oMDG0nm', '5981515'), + (1133, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4oMDG0nm', '5993516'), + (1133, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4oMDG0nm', '5998939'), + (1133, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4oMDG0nm', '6028191'), + (1133, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4oMDG0nm', '6040066'), + (1133, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4oMDG0nm', '6042717'), + (1133, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4oMDG0nm', '6044838'), + (1133, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4oMDG0nm', '6044839'), + (1133, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMDG0nm', '6045684'), + (1133, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4oMDG0nm', '6050104'), + (1133, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4oMDG0nm', '6053195'), + (1133, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4oMDG0nm', '6053198'), + (1133, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4oMDG0nm', '6056085'), + (1133, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4oMDG0nm', '6056916'), + (1133, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4oMDG0nm', '6059290'), + (1133, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4oMDG0nm', '6060328'), + (1133, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4oMDG0nm', '6061037'), + (1133, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4oMDG0nm', '6061039'), + (1133, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4oMDG0nm', '6067245'), + (1133, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4oMDG0nm', '6068094'), + (1133, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4oMDG0nm', '6068252'), + (1133, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4oMDG0nm', '6068253'), + (1133, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4oMDG0nm', '6068254'), + (1133, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4oMDG0nm', '6068280'), + (1133, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4oMDG0nm', '6069093'), + (1133, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4oMDG0nm', '6072528'), + (1133, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4oMDG0nm', '6075556'), + (1133, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4oMDG0nm', '6079840'), + (1133, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4oMDG0nm', '6083398'), + (1133, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4oMDG0nm', '6093504'), + (1133, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4oMDG0nm', '6097414'), + (1133, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4oMDG0nm', '6097442'), + (1133, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4oMDG0nm', '6097684'), + (1133, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4oMDG0nm', '6098762'), + (1133, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4oMDG0nm', '6101361'), + (1133, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4oMDG0nm', '6101362'), + (1133, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4oMDG0nm', '6107314'), + (1133, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4oMDG0nm', '6120034'), + (1133, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4oMDG0nm', '6136733'), + (1133, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4oMDG0nm', '6137989'), + (1134, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '2d2WQWJm', '3236465'), + (1134, 622, 'attending', '2021-03-11 15:13:45', '2025-12-17 19:47:51', '2d2WQWJm', '3517816'), + (1134, 628, 'attending', '2021-03-11 03:57:40', '2025-12-17 19:47:51', '2d2WQWJm', '3533305'), + (1134, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '2d2WQWJm', '3539916'), + (1134, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '2d2WQWJm', '3539918'), + (1134, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '2d2WQWJm', '3539919'), + (1134, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '2d2WQWJm', '3539920'), + (1134, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '2d2WQWJm', '3539921'), + (1134, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '2d2WQWJm', '3539927'); +INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (1134, 678, 'attending', '2021-03-12 00:36:36', '2025-12-17 19:47:51', '2d2WQWJm', '3547158'), + (1134, 684, 'not_attending', '2021-03-12 21:35:54', '2025-12-17 19:47:51', '2d2WQWJm', '3549257'), + (1134, 688, 'not_attending', '2021-03-16 22:45:27', '2025-12-17 19:47:51', '2d2WQWJm', '3553729'), + (1134, 690, 'attending', '2021-03-12 15:22:58', '2025-12-17 19:47:43', '2d2WQWJm', '3559954'), + (1134, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '2d2WQWJm', '3582734'), + (1134, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '2d2WQWJm', '3583262'), + (1134, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '2d2WQWJm', '3619523'), + (1134, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '2d2WQWJm', '3661369'), + (1134, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '2d2WQWJm', '3674262'), + (1134, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '2d2WQWJm', '3677402'), + (1134, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '2d2WQWJm', '3730212'), + (1134, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '2d2WQWJm', '3793156'), + (1134, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '2d2WQWJm', '3803310'), + (1134, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '2d2WQWJm', '3806392'), + (1134, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2WQWJm', '6045684'), + (1135, 257, 'attending', '2021-04-20 15:10:09', '2025-12-17 19:47:45', 'EdVl2G5A', '3149488'), + (1135, 644, 'attending', '2021-04-21 02:32:17', '2025-12-17 19:47:45', 'EdVl2G5A', '3539919'), + (1135, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'EdVl2G5A', '3539920'), + (1135, 646, 'attending', '2021-05-17 22:37:07', '2025-12-17 19:47:46', 'EdVl2G5A', '3539921'), + (1135, 647, 'not_attending', '2021-05-22 13:42:35', '2025-12-17 19:47:46', 'EdVl2G5A', '3539922'), + (1135, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'EdVl2G5A', '3539923'), + (1135, 707, 'attending', '2021-04-21 15:16:31', '2025-12-17 19:47:46', 'EdVl2G5A', '3583262'), + (1135, 726, 'attending', '2021-06-05 01:52:35', '2025-12-17 19:47:47', 'EdVl2G5A', '3661374'), + (1135, 774, 'not_attending', '2021-04-21 15:17:01', '2025-12-17 19:47:45', 'EdVl2G5A', '3730212'), + (1135, 777, 'attending', '2021-04-29 16:31:54', '2025-12-17 19:47:46', 'EdVl2G5A', '3746248'), + (1135, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'EdVl2G5A', '3793156'), + (1135, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'EdVl2G5A', '3974109'), + (1135, 827, 'not_attending', '2021-06-05 01:52:18', '2025-12-17 19:47:47', 'EdVl2G5A', '3975311'), + (1135, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'EdVl2G5A', '3975312'), + (1135, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'EdVl2G5A', '3994992'), + (1135, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'EdVl2G5A', '4014338'), + (1135, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'EdVl2G5A', '4021848'), + (1135, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'EdVl2G5A', '4136744'), + (1135, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'EdVl2G5A', '4136937'), + (1135, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'EdVl2G5A', '4136938'), + (1135, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'EdVl2G5A', '4136947'), + (1135, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'EdVl2G5A', '4225444'), + (1135, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'EdVl2G5A', '4239259'), + (1135, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'EdVl2G5A', '4250163'), + (1135, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVl2G5A', '6045684'), + (1136, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ydweXYjA', '6044839'), + (1136, 1994, 'not_attending', '2023-04-05 21:32:02', '2025-12-17 19:46:59', 'ydweXYjA', '6050104'), + (1136, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ydweXYjA', '6053198'), + (1136, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ydweXYjA', '6056085'), + (1136, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ydweXYjA', '6056916'), + (1136, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ydweXYjA', '6059290'), + (1136, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ydweXYjA', '6060328'), + (1136, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ydweXYjA', '6061037'), + (1136, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ydweXYjA', '6061039'), + (1136, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ydweXYjA', '6067245'), + (1136, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ydweXYjA', '6068094'), + (1136, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ydweXYjA', '6068252'), + (1136, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ydweXYjA', '6068253'), + (1136, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ydweXYjA', '6068254'), + (1136, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ydweXYjA', '6068280'), + (1136, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ydweXYjA', '6069093'), + (1136, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ydweXYjA', '6072528'), + (1136, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ydweXYjA', '6079840'), + (1136, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ydweXYjA', '6083398'), + (1136, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ydweXYjA', '6093504'), + (1136, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ydweXYjA', '6097414'), + (1136, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ydweXYjA', '6097442'), + (1136, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ydweXYjA', '6097684'), + (1136, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ydweXYjA', '6098762'), + (1136, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ydweXYjA', '6101362'), + (1136, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ydweXYjA', '6107314'), + (1136, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ydweXYjA', '6120034'), + (1137, 1431, 'attending', '2022-06-11 02:41:19', '2025-12-17 19:47:30', 'dBWV8YPm', '5389605'), + (1137, 1442, 'attending', '2022-06-12 02:57:04', '2025-12-17 19:47:17', 'dBWV8YPm', '5397265'), + (1137, 1444, 'maybe', '2022-06-11 02:49:18', '2025-12-17 19:47:30', 'dBWV8YPm', '5397614'), + (1137, 1445, 'maybe', '2022-06-12 02:57:10', '2025-12-17 19:47:17', 'dBWV8YPm', '5397615'), + (1137, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dBWV8YPm', '5403967'), + (1137, 1455, 'not_attending', '2022-06-13 23:42:25', '2025-12-17 19:47:31', 'dBWV8YPm', '5404772'), + (1137, 1459, 'attending', '2022-06-20 13:00:25', '2025-12-17 19:47:17', 'dBWV8YPm', '5404793'), + (1137, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dBWV8YPm', '5405203'), + (1137, 1469, 'attending', '2022-06-20 23:15:30', '2025-12-17 19:47:17', 'dBWV8YPm', '5406838'), + (1137, 1473, 'not_attending', '2022-06-14 21:51:09', '2025-12-17 19:47:31', 'dBWV8YPm', '5407267'), + (1137, 1478, 'not_attending', '2022-06-24 19:15:22', '2025-12-17 19:47:19', 'dBWV8YPm', '5408794'), + (1137, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dBWV8YPm', '5411699'), + (1137, 1481, 'not_attending', '2022-06-21 01:37:12', '2025-12-17 19:47:17', 'dBWV8YPm', '5412237'), + (1137, 1482, 'attending', '2022-06-20 13:00:48', '2025-12-17 19:47:19', 'dBWV8YPm', '5412550'), + (1137, 1484, 'not_attending', '2022-06-22 14:12:49', '2025-12-17 19:47:17', 'dBWV8YPm', '5415046'), + (1137, 1487, 'not_attending', '2022-06-27 23:04:38', '2025-12-17 19:47:19', 'dBWV8YPm', '5419006'), + (1137, 1488, 'attending', '2022-07-03 04:46:33', '2025-12-17 19:47:19', 'dBWV8YPm', '5420154'), + (1137, 1490, 'attending', '2022-07-03 04:46:41', '2025-12-17 19:47:19', 'dBWV8YPm', '5420156'), + (1137, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dBWV8YPm', '5422086'), + (1137, 1498, 'maybe', '2022-07-02 21:43:02', '2025-12-17 19:47:19', 'dBWV8YPm', '5422406'), + (1137, 1501, 'not_attending', '2022-06-29 23:58:10', '2025-12-17 19:47:19', 'dBWV8YPm', '5424546'), + (1137, 1502, 'not_attending', '2022-07-08 22:55:47', '2025-12-17 19:47:19', 'dBWV8YPm', '5424565'), + (1137, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dBWV8YPm', '5426882'), + (1137, 1505, 'maybe', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dBWV8YPm', '5427083'), + (1137, 1513, 'attending', '2022-07-10 23:32:33', '2025-12-17 19:47:19', 'dBWV8YPm', '5441125'), + (1137, 1514, 'attending', '2022-07-21 02:04:39', '2025-12-17 19:47:20', 'dBWV8YPm', '5441126'), + (1137, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dBWV8YPm', '5441128'), + (1137, 1517, 'attending', '2022-08-15 19:38:17', '2025-12-17 19:47:23', 'dBWV8YPm', '5441130'), + (1137, 1518, 'maybe', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dBWV8YPm', '5441131'), + (1137, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dBWV8YPm', '5441132'), + (1137, 1520, 'not_attending', '2022-07-12 00:37:19', '2025-12-17 19:47:19', 'dBWV8YPm', '5441645'), + (1137, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dBWV8YPm', '5446643'), + (1137, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dBWV8YPm', '5453325'), + (1137, 1541, 'attending', '2022-07-25 22:44:40', '2025-12-17 19:47:20', 'dBWV8YPm', '5453542'), + (1137, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dBWV8YPm', '5454516'), + (1137, 1544, 'attending', '2022-09-17 17:57:50', '2025-12-17 19:47:11', 'dBWV8YPm', '5454517'), + (1137, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dBWV8YPm', '5454605'), + (1137, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dBWV8YPm', '5455037'), + (1137, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dBWV8YPm', '5461278'), + (1137, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dBWV8YPm', '5469480'), + (1137, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dBWV8YPm', '5471073'), + (1137, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dBWV8YPm', '5474663'), + (1137, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dBWV8YPm', '5482022'), + (1137, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dBWV8YPm', '5482793'), + (1137, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dBWV8YPm', '5488912'), + (1137, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dBWV8YPm', '5492192'), + (1137, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dBWV8YPm', '5493139'), + (1137, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dBWV8YPm', '5493200'), + (1137, 1598, 'attending', '2022-08-15 19:36:48', '2025-12-17 19:47:22', 'dBWV8YPm', '5496567'), + (1137, 1603, 'maybe', '2022-08-15 19:37:27', '2025-12-17 19:47:23', 'dBWV8YPm', '5497895'), + (1137, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dBWV8YPm', '5502188'), + (1137, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dBWV8YPm', '5505059'), + (1137, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dBWV8YPm', '5509055'), + (1137, 1617, 'not_attending', '2022-09-07 03:44:56', '2025-12-17 19:47:24', 'dBWV8YPm', '5512003'), + (1137, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dBWV8YPm', '5512862'), + (1137, 1621, 'not_attending', '2022-08-23 00:13:12', '2025-12-17 19:47:23', 'dBWV8YPm', '5513531'), + (1137, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dBWV8YPm', '5513985'), + (1137, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dBWV8YPm', '5519981'), + (1137, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dBWV8YPm', '5522550'), + (1137, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dBWV8YPm', '5534683'), + (1137, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dBWV8YPm', '5537735'), + (1137, 1636, 'attending', '2022-09-05 00:14:37', '2025-12-17 19:47:24', 'dBWV8YPm', '5538454'), + (1137, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dBWV8YPm', '5540859'), + (1137, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dBWV8YPm', '5546619'), + (1137, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dBWV8YPm', '5555245'), + (1137, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dBWV8YPm', '5557747'), + (1137, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dBWV8YPm', '5560255'), + (1137, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dBWV8YPm', '5562906'), + (1137, 1667, 'attending', '2022-09-21 13:31:58', '2025-12-17 19:47:11', 'dBWV8YPm', '5563221'), + (1137, 1668, 'attending', '2022-09-30 16:23:40', '2025-12-17 19:47:12', 'dBWV8YPm', '5563222'), + (1137, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dBWV8YPm', '5600604'), + (1137, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dBWV8YPm', '5605544'), + (1137, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'dBWV8YPm', '5606737'), + (1137, 1720, 'attending', '2022-10-15 14:00:34', '2025-12-17 19:47:12', 'dBWV8YPm', '5630959'), + (1137, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dBWV8YPm', '5630960'), + (1137, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dBWV8YPm', '5630961'), + (1137, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dBWV8YPm', '5630962'), + (1137, 1724, 'attending', '2022-11-05 03:34:59', '2025-12-17 19:47:15', 'dBWV8YPm', '5630966'), + (1137, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dBWV8YPm', '5630967'), + (1137, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dBWV8YPm', '5630968'), + (1137, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dBWV8YPm', '5635406'), + (1137, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dBWV8YPm', '5638765'), + (1137, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dBWV8YPm', '5640097'), + (1137, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dBWV8YPm', '5640843'), + (1137, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dBWV8YPm', '5641521'), + (1137, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dBWV8YPm', '5642818'), + (1137, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dBWV8YPm', '5652395'), + (1137, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dBWV8YPm', '5670445'), + (1137, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dBWV8YPm', '5671637'), + (1137, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dBWV8YPm', '5672329'), + (1137, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dBWV8YPm', '5674057'), + (1137, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dBWV8YPm', '5674060'), + (1137, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dBWV8YPm', '5677461'), + (1137, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dBWV8YPm', '5698046'), + (1137, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dBWV8YPm', '5699760'), + (1137, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dBWV8YPm', '5741601'), + (1137, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dBWV8YPm', '5763458'), + (1137, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dBWV8YPm', '5774172'), + (1137, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dBWV8YPm', '5818247'), + (1137, 1834, 'attending', '2022-12-10 18:01:14', '2025-12-17 19:47:17', 'dBWV8YPm', '5819470'), + (1137, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dBWV8YPm', '5819471'), + (1137, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dBWV8YPm', '5827739'), + (1137, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dBWV8YPm', '5844306'), + (1137, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dBWV8YPm', '5850159'), + (1137, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dBWV8YPm', '5858999'), + (1137, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dBWV8YPm', '5871984'), + (1137, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dBWV8YPm', '5876354'), + (1137, 1864, 'attending', '2023-01-21 18:52:24', '2025-12-17 19:47:05', 'dBWV8YPm', '5879675'), + (1137, 1865, 'attending', '2023-01-25 04:45:33', '2025-12-17 19:47:06', 'dBWV8YPm', '5879676'), + (1137, 1866, 'attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dBWV8YPm', '5880939'), + (1137, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dBWV8YPm', '5880940'), + (1137, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dBWV8YPm', '5880942'), + (1137, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dBWV8YPm', '5880943'), + (1137, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dBWV8YPm', '5887890'), + (1137, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dBWV8YPm', '5888598'), + (1137, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dBWV8YPm', '5893260'), + (1137, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dBWV8YPm', '5899826'), + (1137, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dBWV8YPm', '5900199'), + (1137, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dBWV8YPm', '5900200'), + (1137, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dBWV8YPm', '5900202'), + (1137, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dBWV8YPm', '5900203'), + (1137, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dBWV8YPm', '5901108'), + (1137, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dBWV8YPm', '5901126'), + (1137, 1897, 'attending', '2023-02-10 18:29:32', '2025-12-17 19:47:07', 'dBWV8YPm', '5901128'), + (1137, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dBWV8YPm', '5909655'), + (1137, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dBWV8YPm', '5910522'), + (1137, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dBWV8YPm', '5910526'), + (1137, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dBWV8YPm', '5910528'), + (1137, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dBWV8YPm', '5916219'), + (1137, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dBWV8YPm', '5936234'), + (1137, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dBWV8YPm', '5958351'), + (1137, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dBWV8YPm', '5959751'), + (1137, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dBWV8YPm', '5959755'), + (1137, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dBWV8YPm', '5960055'), + (1137, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dBWV8YPm', '5961684'), + (1137, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dBWV8YPm', '5962132'), + (1137, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dBWV8YPm', '5962133'), + (1137, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dBWV8YPm', '5962134'), + (1137, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dBWV8YPm', '5962317'), + (1137, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dBWV8YPm', '5962318'), + (1137, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dBWV8YPm', '5965933'), + (1137, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dBWV8YPm', '5967014'), + (1137, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dBWV8YPm', '5972815'), + (1137, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dBWV8YPm', '5974016'), + (1137, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dBWV8YPm', '5981515'), + (1137, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dBWV8YPm', '5993516'), + (1137, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dBWV8YPm', '5998939'), + (1137, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dBWV8YPm', '6028191'), + (1137, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dBWV8YPm', '6040066'), + (1137, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dBWV8YPm', '6042717'), + (1137, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dBWV8YPm', '6044838'), + (1137, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dBWV8YPm', '6044839'), + (1137, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBWV8YPm', '6045684'), + (1137, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dBWV8YPm', '6050104'), + (1137, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dBWV8YPm', '6053195'), + (1137, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dBWV8YPm', '6053198'), + (1137, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dBWV8YPm', '6056085'), + (1137, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dBWV8YPm', '6056916'), + (1137, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dBWV8YPm', '6059290'), + (1137, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dBWV8YPm', '6060328'), + (1137, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dBWV8YPm', '6061037'), + (1137, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dBWV8YPm', '6061039'), + (1137, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dBWV8YPm', '6067245'), + (1137, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dBWV8YPm', '6068094'), + (1137, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dBWV8YPm', '6068252'), + (1137, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dBWV8YPm', '6068253'), + (1137, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dBWV8YPm', '6068254'), + (1137, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dBWV8YPm', '6068280'), + (1137, 2032, 'attending', '2023-06-02 18:45:17', '2025-12-17 19:47:04', 'dBWV8YPm', '6068281'), + (1137, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dBWV8YPm', '6069093'), + (1137, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dBWV8YPm', '6072528'), + (1137, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dBWV8YPm', '6079840'), + (1137, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dBWV8YPm', '6083398'), + (1137, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dBWV8YPm', '6093504'), + (1137, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dBWV8YPm', '6097414'), + (1137, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dBWV8YPm', '6097442'), + (1137, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dBWV8YPm', '6097684'), + (1137, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dBWV8YPm', '6098762'), + (1137, 2064, 'attending', '2023-06-24 16:36:00', '2025-12-17 19:46:50', 'dBWV8YPm', '6099988'), + (1137, 2065, 'not_attending', '2023-06-10 01:32:13', '2025-12-17 19:46:49', 'dBWV8YPm', '6101169'), + (1137, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dBWV8YPm', '6101361'), + (1137, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dBWV8YPm', '6101362'), + (1137, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dBWV8YPm', '6103752'), + (1137, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dBWV8YPm', '6107314'), + (1137, 2077, 'attending', '2023-06-10 01:32:04', '2025-12-17 19:46:49', 'dBWV8YPm', '6110217'), + (1137, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dBWV8YPm', '6120034'), + (1137, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dBWV8YPm', '6136733'), + (1137, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dBWV8YPm', '6137989'), + (1137, 2105, 'attending', '2023-06-17 23:14:35', '2025-12-17 19:46:50', 'dBWV8YPm', '6149551'), + (1137, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dBWV8YPm', '6150864'), + (1137, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dBWV8YPm', '6155491'), + (1137, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dBWV8YPm', '6164417'), + (1137, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dBWV8YPm', '6166388'), + (1137, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dBWV8YPm', '6176439'), + (1137, 2127, 'maybe', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dBWV8YPm', '6180853'), + (1137, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dBWV8YPm', '6182410'), + (1137, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dBWV8YPm', '6185812'), + (1137, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dBWV8YPm', '6187651'), + (1137, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dBWV8YPm', '6187963'), + (1137, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dBWV8YPm', '6187964'), + (1137, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dBWV8YPm', '6187966'), + (1137, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dBWV8YPm', '6187967'), + (1137, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dBWV8YPm', '6187969'), + (1137, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dBWV8YPm', '6334878'), + (1137, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dBWV8YPm', '6337236'), + (1137, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dBWV8YPm', '6337970'), + (1137, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dBWV8YPm', '6338308'), + (1137, 2160, 'attending', '2023-07-28 13:36:56', '2025-12-17 19:46:54', 'dBWV8YPm', '6338358'), + (1137, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dBWV8YPm', '6340845'), + (1137, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dBWV8YPm', '6341710'), + (1137, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dBWV8YPm', '6342044'), + (1137, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dBWV8YPm', '6342298'), + (1137, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dBWV8YPm', '6343294'), + (1137, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dBWV8YPm', '6347034'), + (1137, 2177, 'attending', '2023-08-12 22:04:41', '2025-12-17 19:46:55', 'dBWV8YPm', '6347053'), + (1137, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dBWV8YPm', '6347056'), + (1137, 2183, 'maybe', '2023-07-28 13:36:51', '2025-12-17 19:46:54', 'dBWV8YPm', '6353008'), + (1137, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dBWV8YPm', '6353830'), + (1137, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dBWV8YPm', '6353831'), + (1137, 2189, 'maybe', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dBWV8YPm', '6357867'), + (1137, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dBWV8YPm', '6358652'), + (1137, 2204, 'attending', '2023-08-19 12:17:17', '2025-12-17 19:46:55', 'dBWV8YPm', '6361542'), + (1137, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dBWV8YPm', '6361709'), + (1137, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dBWV8YPm', '6361710'), + (1137, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dBWV8YPm', '6361711'), + (1137, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dBWV8YPm', '6361712'), + (1137, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dBWV8YPm', '6361713'), + (1137, 2228, 'maybe', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'dBWV8YPm', '6372777'), + (1137, 2232, 'not_attending', '2023-08-23 13:21:11', '2025-12-17 19:46:55', 'dBWV8YPm', '6374818'), + (1137, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dBWV8YPm', '6382573'), + (1137, 2239, 'not_attending', '2023-08-31 18:31:17', '2025-12-17 19:46:56', 'dBWV8YPm', '6387592'), + (1137, 2240, 'attending', '2023-09-09 15:42:51', '2025-12-17 19:46:56', 'dBWV8YPm', '6388603'), + (1137, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dBWV8YPm', '6388604'), + (1137, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dBWV8YPm', '6394629'), + (1137, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dBWV8YPm', '6394631'), + (1137, 2253, 'maybe', '2023-09-27 13:30:46', '2025-12-17 19:46:45', 'dBWV8YPm', '6401811'), + (1137, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dBWV8YPm', '6440863'), + (1137, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dBWV8YPm', '6445440'), + (1137, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dBWV8YPm', '6453951'), + (1137, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dBWV8YPm', '6461696'), + (1137, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dBWV8YPm', '6462129'), + (1137, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dBWV8YPm', '6463218'), + (1137, 2299, 'attending', '2023-10-15 23:18:21', '2025-12-17 19:46:46', 'dBWV8YPm', '6472181'), + (1137, 2303, 'not_attending', '2023-10-28 22:08:35', '2025-12-17 19:46:47', 'dBWV8YPm', '6482691'), + (1137, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dBWV8YPm', '6482693'), + (1137, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dBWV8YPm', '6484200'), + (1137, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dBWV8YPm', '6484680'), + (1137, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dBWV8YPm', '6507741'), + (1137, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dBWV8YPm', '6514659'), + (1137, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dBWV8YPm', '6514660'), + (1137, 2324, 'attending', '2023-12-08 15:54:54', '2025-12-17 19:46:49', 'dBWV8YPm', '6514662'), + (1137, 2325, 'attending', '2023-12-16 05:34:14', '2025-12-17 19:46:36', 'dBWV8YPm', '6514663'), + (1137, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dBWV8YPm', '6519103'), + (1137, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dBWV8YPm', '6535681'), + (1137, 2338, 'not_attending', '2023-11-22 17:45:50', '2025-12-17 19:46:48', 'dBWV8YPm', '6538868'), + (1137, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dBWV8YPm', '6584747'), + (1137, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dBWV8YPm', '6587097'), + (1137, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dBWV8YPm', '6609022'), + (1137, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dBWV8YPm', '6632757'), + (1137, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dBWV8YPm', '6644187'), + (1137, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dBWV8YPm', '6648951'), + (1137, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dBWV8YPm', '6648952'), + (1137, 2388, 'attending', '2024-01-06 22:12:35', '2025-12-17 19:46:37', 'dBWV8YPm', '6649244'), + (1137, 2393, 'attending', '2024-01-15 22:47:43', '2025-12-17 19:46:38', 'dBWV8YPm', '6654468'), + (1137, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dBWV8YPm', '6655401'), + (1137, 2399, 'attending', '2024-01-13 22:47:20', '2025-12-17 19:46:38', 'dBWV8YPm', '6657583'), + (1137, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dBWV8YPm', '6661585'), + (1137, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dBWV8YPm', '6661588'), + (1137, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dBWV8YPm', '6661589'), + (1137, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dBWV8YPm', '6699906'), + (1137, 2408, 'attending', '2024-01-26 17:11:00', '2025-12-17 19:46:40', 'dBWV8YPm', '6699907'), + (1137, 2409, 'attending', '2024-02-03 22:09:37', '2025-12-17 19:46:41', 'dBWV8YPm', '6699909'), + (1137, 2410, 'not_attending', '2024-02-07 00:13:04', '2025-12-17 19:46:41', 'dBWV8YPm', '6699911'), + (1137, 2411, 'attending', '2024-02-12 19:41:49', '2025-12-17 19:46:41', 'dBWV8YPm', '6699913'), + (1137, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dBWV8YPm', '6701109'), + (1137, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dBWV8YPm', '6705219'), + (1137, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dBWV8YPm', '6710153'), + (1137, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dBWV8YPm', '6711552'), + (1137, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dBWV8YPm', '6711553'), + (1137, 2436, 'attending', '2024-01-28 00:23:22', '2025-12-17 19:46:40', 'dBWV8YPm', '6722687'), + (1137, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dBWV8YPm', '6722688'), + (1137, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dBWV8YPm', '6730620'), + (1137, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dBWV8YPm', '6730642'), + (1137, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dBWV8YPm', '6740364'), + (1137, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dBWV8YPm', '6743829'), + (1137, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dBWV8YPm', '7030380'), + (1137, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dBWV8YPm', '7033677'), + (1137, 2474, 'attending', '2024-02-21 00:16:25', '2025-12-17 19:46:43', 'dBWV8YPm', '7035415'), + (1137, 2475, 'maybe', '2024-02-24 23:36:06', '2025-12-17 19:46:43', 'dBWV8YPm', '7035643'), + (1137, 2478, 'attending', '2024-02-21 00:16:18', '2025-12-17 19:46:43', 'dBWV8YPm', '7036478'), + (1137, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dBWV8YPm', '7044715'), + (1137, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dBWV8YPm', '7050318'), + (1137, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dBWV8YPm', '7050319'), + (1137, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dBWV8YPm', '7050322'), + (1137, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dBWV8YPm', '7057804'), + (1137, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dBWV8YPm', '7059866'), + (1137, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dBWV8YPm', '7072824'), + (1137, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dBWV8YPm', '7074348'), + (1137, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dBWV8YPm', '7074364'), + (1137, 2539, 'maybe', '2024-04-05 19:28:18', '2025-12-17 19:46:33', 'dBWV8YPm', '7085486'), + (1137, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dBWV8YPm', '7089267'), + (1137, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dBWV8YPm', '7098747'), + (1137, 2553, 'attending', '2024-03-29 15:38:52', '2025-12-17 19:46:33', 'dBWV8YPm', '7113468'), + (1137, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dBWV8YPm', '7114856'), + (1137, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dBWV8YPm', '7114951'), + (1137, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dBWV8YPm', '7114955'), + (1137, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dBWV8YPm', '7114956'), + (1137, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dBWV8YPm', '7114957'), + (1137, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dBWV8YPm', '7153615'), + (1137, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dBWV8YPm', '7159484'), + (1137, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dBWV8YPm', '7178446'), + (1137, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dBWV8YPm', '7220467'), + (1137, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBWV8YPm', '7240354'), + (1137, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBWV8YPm', '7251633'), + (1137, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBWV8YPm', '7263048'), + (1137, 2626, 'attending', '2024-05-18 21:28:55', '2025-12-17 19:46:35', 'dBWV8YPm', '7264723'), + (1137, 2627, 'not_attending', '2024-05-24 21:10:10', '2025-12-17 19:46:35', 'dBWV8YPm', '7264724'), + (1137, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dBWV8YPm', '7302674'), + (1137, 2679, 'maybe', '2024-06-19 13:36:54', '2025-12-17 19:46:29', 'dBWV8YPm', '7319490'), + (1137, 2688, 'attending', '2024-06-26 15:57:59', '2025-12-17 19:46:29', 'dBWV8YPm', '7324073'), + (1137, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dBWV8YPm', '7324074'), + (1137, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dBWV8YPm', '7324075'), + (1137, 2691, 'maybe', '2024-07-20 21:33:41', '2025-12-17 19:46:30', 'dBWV8YPm', '7324076'), + (1137, 2692, 'not_attending', '2024-07-12 00:01:49', '2025-12-17 19:46:30', 'dBWV8YPm', '7324077'), + (1137, 2693, 'maybe', '2024-07-31 00:24:44', '2025-12-17 19:46:31', 'dBWV8YPm', '7324078'), + (1137, 2694, 'attending', '2024-08-10 19:03:23', '2025-12-17 19:46:31', 'dBWV8YPm', '7324079'), + (1137, 2695, 'attending', '2024-08-16 03:34:05', '2025-12-17 19:46:31', 'dBWV8YPm', '7324080'), + (1137, 2696, 'attending', '2024-08-22 15:39:28', '2025-12-17 19:46:32', 'dBWV8YPm', '7324081'), + (1137, 2697, 'not_attending', '2024-08-31 15:09:02', '2025-12-17 19:46:32', 'dBWV8YPm', '7324082'), + (1137, 2698, 'not_attending', '2024-09-07 21:38:14', '2025-12-17 19:46:24', 'dBWV8YPm', '7324083'), + (1137, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dBWV8YPm', '7331457'), + (1137, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dBWV8YPm', '7356752'), + (1137, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dBWV8YPm', '7363643'), + (1137, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dBWV8YPm', '7368606'), + (1137, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dBWV8YPm', '7397462'), + (1137, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dBWV8YPm', '7424275'), + (1137, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dBWV8YPm', '7424276'), + (1137, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dBWV8YPm', '7432751'), + (1137, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dBWV8YPm', '7432752'), + (1137, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dBWV8YPm', '7432753'), + (1137, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dBWV8YPm', '7432754'), + (1137, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dBWV8YPm', '7432755'), + (1137, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dBWV8YPm', '7432756'), + (1137, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dBWV8YPm', '7432758'), + (1137, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dBWV8YPm', '7432759'), + (1137, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dBWV8YPm', '7433834'), + (1137, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dBWV8YPm', '7470197'), + (1137, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dBWV8YPm', '7685613'), + (1137, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dBWV8YPm', '7688194'), + (1137, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dBWV8YPm', '7688196'), + (1137, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dBWV8YPm', '7688289'), + (1137, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dBWV8YPm', '7692763'), + (1137, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dBWV8YPm', '7697552'), + (1137, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dBWV8YPm', '7699878'), + (1137, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dBWV8YPm', '7704043'), + (1137, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dBWV8YPm', '7712467'), + (1137, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dBWV8YPm', '7713585'), + (1137, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dBWV8YPm', '7713586'), + (1137, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dBWV8YPm', '7738518'), + (1137, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBWV8YPm', '7750636'), + (1137, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBWV8YPm', '7796540'), + (1137, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBWV8YPm', '7796541'), + (1137, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBWV8YPm', '7796542'), + (1137, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dBWV8YPm', '7825913'), + (1137, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dBWV8YPm', '7826209'), + (1137, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dBWV8YPm', '7834742'), + (1137, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dBWV8YPm', '7842108'), + (1137, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dBWV8YPm', '7842902'), + (1137, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dBWV8YPm', '7842903'), + (1137, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dBWV8YPm', '7842904'), + (1137, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dBWV8YPm', '7842905'), + (1137, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dBWV8YPm', '7855719'), + (1137, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dBWV8YPm', '7860683'), + (1137, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dBWV8YPm', '7860684'), + (1137, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dBWV8YPm', '7866095'), + (1137, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dBWV8YPm', '7869170'), + (1137, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dBWV8YPm', '7869188'), + (1137, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dBWV8YPm', '7869201'), + (1137, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dBWV8YPm', '7877465'), + (1137, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dBWV8YPm', '7878570'), + (1137, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dBWV8YPm', '7888250'), + (1137, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dBWV8YPm', '8349164'), + (1137, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dBWV8YPm', '8349545'), + (1137, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dBWV8YPm', '8353584'), + (1138, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'w4WLzQqd', '6045684'), + (1139, 1121, 'attending', '2021-11-14 16:52:43', '2025-12-17 19:47:37', '41oz6QMm', '4644022'), + (1139, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '41oz6QMm', '4645687'), + (1139, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '41oz6QMm', '4645698'), + (1139, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '41oz6QMm', '4645704'), + (1139, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '41oz6QMm', '4645705'), + (1139, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '41oz6QMm', '4668385'), + (1139, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '41oz6QMm', '4694407'), + (1139, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '41oz6QMm', '4746789'), + (1139, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '41oz6QMm', '4753929'), + (1139, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41oz6QMm', '6045684'), + (1140, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Qd5XkkO4', '3236465'), + (1140, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Qd5XkkO4', '3539918'), + (1140, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Qd5XkkO4', '3539919'), + (1140, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Qd5XkkO4', '3539920'), + (1140, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Qd5XkkO4', '3539921'), + (1140, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Qd5XkkO4', '3583262'), + (1140, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Qd5XkkO4', '3661369'), + (1140, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Qd5XkkO4', '3730212'), + (1140, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Qd5XkkO4', '3793156'), + (1140, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Qd5XkkO4', '3803310'), + (1140, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Qd5XkkO4', '3806392'), + (1140, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd5XkkO4', '6045684'), + (1141, 199, 'maybe', '2020-09-04 02:00:02', '2025-12-17 19:47:56', 'v4DbGQqm', '3087268'), + (1141, 220, 'attending', '2020-09-03 22:34:25', '2025-12-17 19:47:56', 'v4DbGQqm', '3129264'), + (1141, 223, 'attending', '2020-09-09 15:45:38', '2025-12-17 19:47:56', 'v4DbGQqm', '3129980'), + (1141, 249, 'not_attending', '2020-11-16 16:26:50', '2025-12-17 19:47:54', 'v4DbGQqm', '3149480'), + (1141, 296, 'not_attending', '2020-09-08 16:56:51', '2025-12-17 19:47:56', 'v4DbGQqm', '3172876'), + (1141, 304, 'not_attending', '2020-09-06 22:09:12', '2025-12-17 19:47:56', 'v4DbGQqm', '3178916'), + (1141, 311, 'maybe', '2020-09-18 15:13:56', '2025-12-17 19:47:56', 'v4DbGQqm', '3186057'), + (1141, 312, 'maybe', '2020-09-08 16:56:32', '2025-12-17 19:47:56', 'v4DbGQqm', '3187795'), + (1141, 315, 'not_attending', '2020-09-08 16:55:46', '2025-12-17 19:47:56', 'v4DbGQqm', '3189085'), + (1141, 330, 'not_attending', '2020-09-06 22:09:00', '2025-12-17 19:47:56', 'v4DbGQqm', '3197322'), + (1141, 335, 'not_attending', '2020-09-04 21:13:19', '2025-12-17 19:47:56', 'v4DbGQqm', '3200209'), + (1141, 339, 'attending', '2020-09-09 15:45:13', '2025-12-17 19:47:56', 'v4DbGQqm', '3204469'), + (1141, 340, 'not_attending', '2020-09-18 15:14:15', '2025-12-17 19:47:56', 'v4DbGQqm', '3204470'), + (1141, 362, 'not_attending', '2020-09-26 22:21:23', '2025-12-17 19:47:52', 'v4DbGQqm', '3214207'), + (1141, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'v4DbGQqm', '3217037'), + (1141, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'v4DbGQqm', '3218510'), + (1141, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'v4DbGQqm', '3228698'), + (1141, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'v4DbGQqm', '3228699'), + (1141, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'v4DbGQqm', '3228700'), + (1141, 388, 'not_attending', '2020-10-24 20:59:45', '2025-12-17 19:47:52', 'v4DbGQqm', '3228701'), + (1141, 397, 'attending', '2021-05-27 22:43:49', '2025-12-17 19:47:47', 'v4DbGQqm', '3236452'), + (1141, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'v4DbGQqm', '3245751'), + (1141, 440, 'not_attending', '2020-11-03 03:35:37', '2025-12-17 19:47:53', 'v4DbGQqm', '3256168'), + (1141, 441, 'attending', '2020-11-14 20:25:40', '2025-12-17 19:47:54', 'v4DbGQqm', '3256169'), + (1141, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'v4DbGQqm', '3266138'), + (1141, 452, 'not_attending', '2020-11-29 17:40:45', '2025-12-17 19:47:54', 'v4DbGQqm', '3272981'), + (1141, 456, 'not_attending', '2020-11-17 00:59:26', '2025-12-17 19:47:54', 'v4DbGQqm', '3276428'), + (1141, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'v4DbGQqm', '3281467'), + (1141, 460, 'attending', '2020-11-16 17:17:36', '2025-12-17 19:47:54', 'v4DbGQqm', '3281468'), + (1141, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'v4DbGQqm', '3281470'), + (1141, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'v4DbGQqm', '3281829'), + (1141, 467, 'not_attending', '2020-11-16 16:25:14', '2025-12-17 19:47:54', 'v4DbGQqm', '3282756'), + (1141, 468, 'attending', '2020-11-16 16:01:21', '2025-12-17 19:47:54', 'v4DbGQqm', '3285413'), + (1141, 469, 'attending', '2020-11-28 23:40:33', '2025-12-17 19:47:54', 'v4DbGQqm', '3285414'), + (1141, 476, 'not_attending', '2020-11-16 16:25:26', '2025-12-17 19:47:54', 'v4DbGQqm', '3286982'), + (1141, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'v4DbGQqm', '3297764'), + (1141, 487, 'not_attending', '2020-11-30 21:01:14', '2025-12-17 19:47:54', 'v4DbGQqm', '3311122'), + (1141, 488, 'attending', '2020-11-29 18:25:35', '2025-12-17 19:47:54', 'v4DbGQqm', '3312757'), + (1141, 493, 'not_attending', '2020-12-06 00:11:07', '2025-12-17 19:47:54', 'v4DbGQqm', '3313856'), + (1141, 494, 'attending', '2020-11-29 17:40:04', '2025-12-17 19:47:54', 'v4DbGQqm', '3313866'), + (1141, 496, 'attending', '2020-12-06 19:26:44', '2025-12-17 19:47:54', 'v4DbGQqm', '3314269'), + (1141, 497, 'attending', '2020-12-06 19:27:29', '2025-12-17 19:47:55', 'v4DbGQqm', '3314270'), + (1141, 498, 'attending', '2020-12-06 19:26:25', '2025-12-17 19:47:54', 'v4DbGQqm', '3314302'), + (1141, 499, 'not_attending', '2020-12-11 22:38:03', '2025-12-17 19:47:55', 'v4DbGQqm', '3314909'), + (1141, 500, 'attending', '2020-12-18 17:06:48', '2025-12-17 19:47:55', 'v4DbGQqm', '3314964'), + (1141, 501, 'attending', '2020-12-06 19:25:59', '2025-12-17 19:47:54', 'v4DbGQqm', '3317834'), + (1141, 502, 'attending', '2020-12-07 16:03:05', '2025-12-17 19:47:55', 'v4DbGQqm', '3323365'), + (1141, 506, 'not_attending', '2020-12-14 00:41:15', '2025-12-17 19:47:55', 'v4DbGQqm', '3323375'), + (1141, 511, 'not_attending', '2020-12-08 01:54:14', '2025-12-17 19:47:55', 'v4DbGQqm', '3325335'), + (1141, 513, 'attending', '2020-12-13 05:33:06', '2025-12-17 19:47:55', 'v4DbGQqm', '3329383'), + (1141, 517, 'attending', '2020-12-30 16:47:23', '2025-12-17 19:47:48', 'v4DbGQqm', '3337137'), + (1141, 518, 'attending', '2020-12-30 16:47:00', '2025-12-17 19:47:48', 'v4DbGQqm', '3337138'), + (1141, 519, 'attending', '2020-12-20 16:20:36', '2025-12-17 19:47:55', 'v4DbGQqm', '3337448'), + (1141, 525, 'attending', '2020-12-20 16:20:46', '2025-12-17 19:47:48', 'v4DbGQqm', '3350467'), + (1141, 526, 'attending', '2020-12-30 16:46:47', '2025-12-17 19:47:48', 'v4DbGQqm', '3351539'), + (1141, 529, 'not_attending', '2021-01-05 23:41:40', '2025-12-17 19:47:48', 'v4DbGQqm', '3364568'), + (1141, 532, 'not_attending', '2021-01-08 23:58:25', '2025-12-17 19:47:48', 'v4DbGQqm', '3381412'), + (1141, 534, 'not_attending', '2021-01-09 22:09:57', '2025-12-17 19:47:48', 'v4DbGQqm', '3384157'), + (1141, 536, 'attending', '2021-01-07 02:45:11', '2025-12-17 19:47:48', 'v4DbGQqm', '3386848'), + (1141, 537, 'not_attending', '2021-01-07 02:46:31', '2025-12-17 19:47:48', 'v4DbGQqm', '3387153'), + (1141, 540, 'attending', '2021-01-07 02:44:00', '2025-12-17 19:47:48', 'v4DbGQqm', '3389527'), + (1141, 542, 'not_attending', '2021-01-11 21:34:33', '2025-12-17 19:47:48', 'v4DbGQqm', '3395013'), + (1141, 543, 'not_attending', '2021-01-15 15:51:27', '2025-12-17 19:47:48', 'v4DbGQqm', '3396499'), + (1141, 548, 'attending', '2021-01-15 15:52:12', '2025-12-17 19:47:48', 'v4DbGQqm', '3403650'), + (1141, 549, 'not_attending', '2021-01-18 23:03:09', '2025-12-17 19:47:49', 'v4DbGQqm', '3406988'), + (1141, 550, 'not_attending', '2021-01-17 21:46:25', '2025-12-17 19:47:48', 'v4DbGQqm', '3407018'), + (1141, 551, 'attending', '2021-01-18 23:03:19', '2025-12-17 19:47:49', 'v4DbGQqm', '3407219'), + (1141, 555, 'attending', '2021-01-18 23:03:51', '2025-12-17 19:47:49', 'v4DbGQqm', '3416576'), + (1141, 557, 'not_attending', '2021-01-21 00:32:12', '2025-12-17 19:47:49', 'v4DbGQqm', '3418748'), + (1141, 558, 'not_attending', '2021-01-22 23:07:03', '2025-12-17 19:47:49', 'v4DbGQqm', '3418925'), + (1141, 561, 'attending', '2021-01-22 23:07:35', '2025-12-17 19:47:49', 'v4DbGQqm', '3421916'), + (1141, 562, 'not_attending', '2021-01-23 20:19:26', '2025-12-17 19:47:49', 'v4DbGQqm', '3424911'), + (1141, 563, 'attending', '2021-01-22 23:08:16', '2025-12-17 19:47:49', 'v4DbGQqm', '3425913'), + (1141, 567, 'attending', '2021-01-25 00:18:56', '2025-12-17 19:47:50', 'v4DbGQqm', '3428895'), + (1141, 568, 'attending', '2021-01-25 00:19:24', '2025-12-17 19:47:50', 'v4DbGQqm', '3430267'), + (1141, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'v4DbGQqm', '3432673'), + (1141, 570, 'not_attending', '2021-02-05 23:52:48', '2025-12-17 19:47:50', 'v4DbGQqm', '3435538'), + (1141, 575, 'attending', '2021-01-30 19:48:45', '2025-12-17 19:47:50', 'v4DbGQqm', '3437492'), + (1141, 578, 'not_attending', '2021-02-04 00:46:26', '2025-12-17 19:47:50', 'v4DbGQqm', '3440043'), + (1141, 579, 'attending', '2021-01-31 15:41:10', '2025-12-17 19:47:50', 'v4DbGQqm', '3440978'), + (1141, 580, 'not_attending', '2021-01-31 15:36:01', '2025-12-17 19:47:50', 'v4DbGQqm', '3444240'), + (1141, 581, 'maybe', '2021-01-31 15:41:59', '2025-12-17 19:47:50', 'v4DbGQqm', '3445029'), + (1141, 598, 'attending', '2021-02-06 00:55:18', '2025-12-17 19:47:50', 'v4DbGQqm', '3468003'), + (1141, 600, 'attending', '2021-02-06 14:30:15', '2025-12-17 19:47:50', 'v4DbGQqm', '3468125'), + (1141, 602, 'attending', '2021-02-07 18:47:03', '2025-12-17 19:47:50', 'v4DbGQqm', '3470303'), + (1141, 603, 'attending', '2021-02-08 12:14:01', '2025-12-17 19:47:50', 'v4DbGQqm', '3470304'), + (1141, 604, 'attending', '2021-02-08 12:14:19', '2025-12-17 19:47:50', 'v4DbGQqm', '3470305'), + (1141, 605, 'attending', '2021-02-15 01:35:02', '2025-12-17 19:47:50', 'v4DbGQqm', '3470991'), + (1141, 607, 'maybe', '2021-02-18 01:11:33', '2025-12-17 19:47:50', 'v4DbGQqm', '3471882'), + (1141, 609, 'attending', '2021-02-13 15:04:28', '2025-12-17 19:47:50', 'v4DbGQqm', '3480916'), + (1141, 611, 'attending', '2021-02-22 23:45:13', '2025-12-17 19:47:50', 'v4DbGQqm', '3482659'), + (1141, 612, 'not_attending', '2021-02-18 00:21:31', '2025-12-17 19:47:50', 'v4DbGQqm', '3490040'), + (1141, 615, 'not_attending', '2021-02-20 20:49:28', '2025-12-17 19:47:50', 'v4DbGQqm', '3490045'), + (1141, 618, 'not_attending', '2021-02-20 20:49:19', '2025-12-17 19:47:50', 'v4DbGQqm', '3503991'), + (1141, 619, 'attending', '2021-02-20 19:55:27', '2025-12-17 19:47:50', 'v4DbGQqm', '3506310'), + (1141, 621, 'attending', '2021-03-05 12:26:00', '2025-12-17 19:47:51', 'v4DbGQqm', '3517815'), + (1141, 622, 'attending', '2021-03-11 07:08:02', '2025-12-17 19:47:51', 'v4DbGQqm', '3517816'), + (1141, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'v4DbGQqm', '3523941'), + (1141, 624, 'attending', '2021-02-27 13:17:43', '2025-12-17 19:47:50', 'v4DbGQqm', '3528556'), + (1141, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'v4DbGQqm', '3533850'), + (1141, 637, 'attending', '2021-03-01 17:31:52', '2025-12-17 19:47:51', 'v4DbGQqm', '3536411'), + (1141, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'v4DbGQqm', '3536632'), + (1141, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'v4DbGQqm', '3536656'), + (1141, 641, 'maybe', '2021-04-02 16:10:16', '2025-12-17 19:47:44', 'v4DbGQqm', '3539916'), + (1141, 642, 'attending', '2021-04-08 12:38:00', '2025-12-17 19:47:44', 'v4DbGQqm', '3539917'), + (1141, 643, 'attending', '2021-04-17 18:42:05', '2025-12-17 19:47:45', 'v4DbGQqm', '3539918'), + (1141, 644, 'attending', '2021-04-24 12:04:13', '2025-12-17 19:47:45', 'v4DbGQqm', '3539919'), + (1141, 645, 'attending', '2021-05-08 18:23:05', '2025-12-17 19:47:46', 'v4DbGQqm', '3539920'), + (1141, 646, 'not_attending', '2021-05-15 10:43:02', '2025-12-17 19:47:46', 'v4DbGQqm', '3539921'), + (1141, 647, 'not_attending', '2021-05-22 21:14:49', '2025-12-17 19:47:47', 'v4DbGQqm', '3539922'), + (1141, 648, 'attending', '2021-05-29 20:05:41', '2025-12-17 19:47:47', 'v4DbGQqm', '3539923'), + (1141, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4DbGQqm', '3539927'), + (1141, 650, 'attending', '2021-03-27 19:21:43', '2025-12-17 19:47:44', 'v4DbGQqm', '3539928'), + (1141, 655, 'attending', '2021-03-11 07:07:56', '2025-12-17 19:47:51', 'v4DbGQqm', '3547129'), + (1141, 656, 'not_attending', '2021-03-20 21:06:45', '2025-12-17 19:47:51', 'v4DbGQqm', '3547130'), + (1141, 657, 'attending', '2021-04-17 18:42:01', '2025-12-17 19:47:45', 'v4DbGQqm', '3547132'), + (1141, 658, 'not_attending', '2021-06-12 20:43:37', '2025-12-17 19:47:47', 'v4DbGQqm', '3547134'), + (1141, 659, 'attending', '2021-04-08 12:37:52', '2025-12-17 19:47:44', 'v4DbGQqm', '3547135'), + (1141, 660, 'attending', '2021-07-10 19:56:27', '2025-12-17 19:47:39', 'v4DbGQqm', '3547136'), + (1141, 661, 'maybe', '2021-04-02 16:10:10', '2025-12-17 19:47:44', 'v4DbGQqm', '3547137'), + (1141, 662, 'attending', '2021-04-24 12:04:10', '2025-12-17 19:47:45', 'v4DbGQqm', '3547138'), + (1141, 663, 'attending', '2021-05-08 18:23:03', '2025-12-17 19:47:46', 'v4DbGQqm', '3547140'), + (1141, 664, 'attending', '2021-09-10 17:05:30', '2025-12-17 19:47:43', 'v4DbGQqm', '3547142'), + (1141, 665, 'attending', '2021-09-04 12:36:46', '2025-12-17 19:47:43', 'v4DbGQqm', '3547143'), + (1141, 666, 'not_attending', '2021-08-14 15:12:31', '2025-12-17 19:47:42', 'v4DbGQqm', '3547144'), + (1141, 668, 'not_attending', '2021-05-15 10:42:54', '2025-12-17 19:47:46', 'v4DbGQqm', '3547146'), + (1141, 670, 'maybe', '2021-06-19 12:44:30', '2025-12-17 19:47:48', 'v4DbGQqm', '3547148'), + (1141, 671, 'attending', '2021-07-17 21:52:21', '2025-12-17 19:47:39', 'v4DbGQqm', '3547149'), + (1141, 672, 'not_attending', '2021-05-22 21:14:45', '2025-12-17 19:47:46', 'v4DbGQqm', '3547150'), + (1141, 674, 'not_attending', '2021-08-07 12:52:33', '2025-12-17 19:47:41', 'v4DbGQqm', '3547152'), + (1141, 675, 'attending', '2021-07-31 16:11:16', '2025-12-17 19:47:40', 'v4DbGQqm', '3547153'), + (1141, 676, 'attending', '2021-07-22 11:39:24', '2025-12-17 19:47:40', 'v4DbGQqm', '3547154'), + (1141, 677, 'attending', '2021-05-29 20:05:35', '2025-12-17 19:47:47', 'v4DbGQqm', '3547155'), + (1141, 686, 'maybe', '2021-03-11 07:09:12', '2025-12-17 19:47:51', 'v4DbGQqm', '3553333'), + (1141, 687, 'not_attending', '2021-03-09 23:12:03', '2025-12-17 19:47:51', 'v4DbGQqm', '3553405'), + (1141, 690, 'attending', '2021-03-11 12:35:01', '2025-12-17 19:47:43', 'v4DbGQqm', '3559954'), + (1141, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4DbGQqm', '3582734'), + (1141, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'v4DbGQqm', '3583262'), + (1141, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4DbGQqm', '3619523'), + (1141, 718, 'attending', '2021-03-27 19:21:52', '2025-12-17 19:47:44', 'v4DbGQqm', '3626844'), + (1141, 719, 'attending', '2021-04-08 21:35:10', '2025-12-17 19:47:44', 'v4DbGQqm', '3635405'), + (1141, 724, 'maybe', '2021-05-09 18:43:05', '2025-12-17 19:47:46', 'v4DbGQqm', '3661369'), + (1141, 726, 'maybe', '2021-06-05 20:33:15', '2025-12-17 19:47:47', 'v4DbGQqm', '3661374'), + (1141, 729, 'not_attending', '2021-04-28 22:41:34', '2025-12-17 19:47:46', 'v4DbGQqm', '3668075'), + (1141, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'v4DbGQqm', '3674262'), + (1141, 735, 'not_attending', '2021-05-02 13:59:45', '2025-12-17 19:47:46', 'v4DbGQqm', '3677402'), + (1141, 737, 'attending', '2021-04-06 22:37:26', '2025-12-17 19:47:44', 'v4DbGQqm', '3679349'), + (1141, 752, 'attending', '2021-04-11 03:15:27', '2025-12-17 19:47:44', 'v4DbGQqm', '3699422'), + (1141, 756, 'not_attending', '2021-04-26 21:30:48', '2025-12-17 19:47:46', 'v4DbGQqm', '3704795'), + (1141, 767, 'not_attending', '2021-05-02 21:37:31', '2025-12-17 19:47:46', 'v4DbGQqm', '3722476'), + (1141, 771, 'maybe', '2021-04-29 19:05:43', '2025-12-17 19:47:46', 'v4DbGQqm', '3726420'), + (1141, 772, 'not_attending', '2021-05-01 00:02:09', '2025-12-17 19:47:46', 'v4DbGQqm', '3726421'), + (1141, 773, 'not_attending', '2021-04-27 22:32:47', '2025-12-17 19:47:46', 'v4DbGQqm', '3729399'), + (1141, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'v4DbGQqm', '3730212'), + (1141, 775, 'not_attending', '2021-04-21 22:42:16', '2025-12-17 19:47:45', 'v4DbGQqm', '3731062'), + (1141, 777, 'attending', '2021-05-01 18:59:13', '2025-12-17 19:47:46', 'v4DbGQqm', '3746248'), + (1141, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'v4DbGQqm', '3793156'), + (1141, 805, 'maybe', '2021-06-13 21:21:56', '2025-12-17 19:47:47', 'v4DbGQqm', '3804777'), + (1141, 819, 'attending', '2021-05-29 20:24:17', '2025-12-17 19:47:47', 'v4DbGQqm', '3833017'), + (1141, 823, 'maybe', '2021-06-19 12:44:33', '2025-12-17 19:47:48', 'v4DbGQqm', '3974109'), + (1141, 827, 'attending', '2021-06-05 20:31:53', '2025-12-17 19:47:47', 'v4DbGQqm', '3975311'), + (1141, 828, 'not_attending', '2021-06-12 20:43:41', '2025-12-17 19:47:47', 'v4DbGQqm', '3975312'), + (1141, 829, 'attending', '2021-05-31 16:28:40', '2025-12-17 19:47:47', 'v4DbGQqm', '3976202'), + (1141, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'v4DbGQqm', '3994992'), + (1141, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4DbGQqm', '4014338'), + (1141, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'v4DbGQqm', '4021848'), + (1141, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4DbGQqm', '4136744'), + (1141, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'v4DbGQqm', '4136937'), + (1141, 871, 'attending', '2021-07-10 19:56:29', '2025-12-17 19:47:39', 'v4DbGQqm', '4136938'), + (1141, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'v4DbGQqm', '4136947'), + (1141, 876, 'not_attending', '2021-06-22 22:22:13', '2025-12-17 19:47:38', 'v4DbGQqm', '4139926'), + (1141, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'v4DbGQqm', '4210314'), + (1141, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4DbGQqm', '4225444'), + (1141, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'v4DbGQqm', '4239259'), + (1141, 900, 'attending', '2021-07-22 11:39:28', '2025-12-17 19:47:40', 'v4DbGQqm', '4240316'), + (1141, 901, 'attending', '2021-07-31 16:11:19', '2025-12-17 19:47:40', 'v4DbGQqm', '4240317'), + (1141, 902, 'not_attending', '2021-08-07 12:52:37', '2025-12-17 19:47:41', 'v4DbGQqm', '4240318'), + (1141, 903, 'not_attending', '2021-08-14 15:12:34', '2025-12-17 19:47:42', 'v4DbGQqm', '4240320'), + (1141, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4DbGQqm', '4250163'), + (1141, 919, 'attending', '2021-07-17 17:49:47', '2025-12-17 19:47:39', 'v4DbGQqm', '4275957'), + (1141, 920, 'maybe', '2021-07-25 20:41:58', '2025-12-17 19:47:40', 'v4DbGQqm', '4277819'), + (1141, 931, 'attending', '2021-07-22 21:33:44', '2025-12-17 19:47:40', 'v4DbGQqm', '4301535'), + (1141, 932, 'attending', '2021-07-22 23:28:49', '2025-12-17 19:47:42', 'v4DbGQqm', '4301664'), + (1141, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'v4DbGQqm', '4301723'), + (1141, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'v4DbGQqm', '4302093'), + (1141, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'v4DbGQqm', '4304151'), + (1141, 942, 'maybe', '2021-07-31 16:11:43', '2025-12-17 19:47:40', 'v4DbGQqm', '4310297'), + (1141, 953, 'attending', '2021-07-30 20:31:14', '2025-12-17 19:47:40', 'v4DbGQqm', '4324152'), + (1141, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'v4DbGQqm', '4345519'), + (1141, 968, 'not_attending', '2021-08-12 22:36:36', '2025-12-17 19:47:42', 'v4DbGQqm', '4356505'), + (1141, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'v4DbGQqm', '4356801'), + (1141, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'v4DbGQqm', '4358025'), + (1141, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'v4DbGQqm', '4366186'), + (1141, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'v4DbGQqm', '4366187'), + (1141, 988, 'not_attending', '2021-08-27 20:56:24', '2025-12-17 19:47:42', 'v4DbGQqm', '4402823'), + (1141, 990, 'attending', '2021-09-04 12:36:49', '2025-12-17 19:47:43', 'v4DbGQqm', '4420735'), + (1141, 991, 'attending', '2021-09-10 17:05:33', '2025-12-17 19:47:43', 'v4DbGQqm', '4420738'), + (1141, 992, 'attending', '2021-09-18 18:05:13', '2025-12-17 19:47:33', 'v4DbGQqm', '4420739'), + (1141, 993, 'attending', '2021-09-24 14:49:45', '2025-12-17 19:47:34', 'v4DbGQqm', '4420741'), + (1141, 994, 'not_attending', '2021-10-02 21:12:00', '2025-12-17 19:47:34', 'v4DbGQqm', '4420742'), + (1141, 995, 'not_attending', '2021-10-09 19:09:12', '2025-12-17 19:47:34', 'v4DbGQqm', '4420744'), + (1141, 996, 'attending', '2021-10-16 00:36:29', '2025-12-17 19:47:35', 'v4DbGQqm', '4420747'), + (1141, 997, 'not_attending', '2021-10-11 01:23:44', '2025-12-17 19:47:35', 'v4DbGQqm', '4420748'), + (1141, 998, 'not_attending', '2021-10-30 17:05:24', '2025-12-17 19:47:36', 'v4DbGQqm', '4420749'), + (1141, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'v4DbGQqm', '4461883'), + (1141, 1033, 'attending', '2021-09-18 18:05:11', '2025-12-17 19:47:43', 'v4DbGQqm', '4486006'), + (1141, 1036, 'attending', '2021-09-18 18:05:54', '2025-12-17 19:47:34', 'v4DbGQqm', '4493166'), + (1141, 1038, 'attending', '2021-09-24 14:49:43', '2025-12-17 19:47:34', 'v4DbGQqm', '4496603'), + (1141, 1039, 'not_attending', '2021-10-02 21:11:57', '2025-12-17 19:47:34', 'v4DbGQqm', '4496604'), + (1141, 1042, 'attending', '2021-11-21 19:19:33', '2025-12-17 19:47:37', 'v4DbGQqm', '4496607'), + (1141, 1043, 'not_attending', '2021-10-11 01:23:41', '2025-12-17 19:47:35', 'v4DbGQqm', '4496608'), + (1141, 1044, 'not_attending', '2021-11-06 22:47:17', '2025-12-17 19:47:36', 'v4DbGQqm', '4496609'), + (1141, 1045, 'not_attending', '2021-10-30 17:05:21', '2025-12-17 19:47:36', 'v4DbGQqm', '4496610'), + (1141, 1046, 'attending', '2021-10-16 00:36:24', '2025-12-17 19:47:35', 'v4DbGQqm', '4496611'), + (1141, 1047, 'not_attending', '2021-10-09 19:09:08', '2025-12-17 19:47:34', 'v4DbGQqm', '4496612'), + (1141, 1048, 'not_attending', '2021-11-13 19:59:47', '2025-12-17 19:47:36', 'v4DbGQqm', '4496613'), + (1141, 1049, 'maybe', '2022-01-22 21:56:20', '2025-12-17 19:47:32', 'v4DbGQqm', '4496614'), + (1141, 1050, 'attending', '2022-01-26 04:26:33', '2025-12-17 19:47:32', 'v4DbGQqm', '4496615'), + (1141, 1051, 'attending', '2022-02-06 00:04:53', '2025-12-17 19:47:32', 'v4DbGQqm', '4496616'), + (1141, 1052, 'attending', '2022-01-03 16:37:07', '2025-12-17 19:47:31', 'v4DbGQqm', '4496617'), + (1141, 1053, 'attending', '2022-02-15 19:13:17', '2025-12-17 19:47:32', 'v4DbGQqm', '4496618'), + (1141, 1054, 'attending', '2022-03-17 09:43:46', '2025-12-17 19:47:25', 'v4DbGQqm', '4496619'), + (1141, 1055, 'attending', '2021-12-17 17:17:09', '2025-12-17 19:47:31', 'v4DbGQqm', '4496621'), + (1141, 1056, 'attending', '2022-01-03 16:36:34', '2025-12-17 19:47:31', 'v4DbGQqm', '4496622'), + (1141, 1057, 'not_attending', '2021-11-20 17:24:55', '2025-12-17 19:47:37', 'v4DbGQqm', '4496624'), + (1141, 1058, 'attending', '2022-02-27 00:20:44', '2025-12-17 19:47:33', 'v4DbGQqm', '4496625'), + (1141, 1059, 'attending', '2022-03-06 15:49:25', '2025-12-17 19:47:33', 'v4DbGQqm', '4496626'), + (1141, 1060, 'attending', '2022-03-18 17:52:58', '2025-12-17 19:47:25', 'v4DbGQqm', '4496627'), + (1141, 1061, 'attending', '2022-02-10 13:34:20', '2025-12-17 19:47:32', 'v4DbGQqm', '4496628'), + (1141, 1062, 'attending', '2022-03-02 06:51:28', '2025-12-17 19:47:33', 'v4DbGQqm', '4496629'), + (1141, 1063, 'attending', '2021-09-21 22:57:17', '2025-12-17 19:47:34', 'v4DbGQqm', '4496630'), + (1141, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'v4DbGQqm', '4508342'), + (1141, 1069, 'attending', '2021-09-24 15:41:06', '2025-12-17 19:47:34', 'v4DbGQqm', '4512090'), + (1141, 1074, 'attending', '2021-09-28 23:32:42', '2025-12-17 19:47:34', 'v4DbGQqm', '4528953'), + (1141, 1079, 'attending', '2021-10-16 14:40:28', '2025-12-17 19:47:35', 'v4DbGQqm', '4563823'), + (1141, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'v4DbGQqm', '4568602'), + (1141, 1087, 'attending', '2021-10-16 14:10:24', '2025-12-17 19:47:35', 'v4DbGQqm', '4572153'), + (1141, 1089, 'attending', '2021-10-16 14:16:41', '2025-12-17 19:47:35', 'v4DbGQqm', '4574712'), + (1141, 1090, 'attending', '2021-10-16 14:35:07', '2025-12-17 19:47:35', 'v4DbGQqm', '4574713'), + (1141, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'v4DbGQqm', '4585962'), + (1141, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'v4DbGQqm', '4596356'), + (1141, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'v4DbGQqm', '4598860'), + (1141, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'v4DbGQqm', '4598861'), + (1141, 1099, 'not_attending', '2021-11-06 22:47:20', '2025-12-17 19:47:36', 'v4DbGQqm', '4602797'), + (1141, 1103, 'not_attending', '2021-11-13 19:59:57', '2025-12-17 19:47:36', 'v4DbGQqm', '4616350'), + (1141, 1104, 'maybe', '2021-11-13 20:00:04', '2025-12-17 19:47:36', 'v4DbGQqm', '4618310'), + (1141, 1108, 'not_attending', '2021-11-18 00:30:43', '2025-12-17 19:47:37', 'v4DbGQqm', '4632276'), + (1141, 1114, 'not_attending', '2021-11-13 19:59:49', '2025-12-17 19:47:36', 'v4DbGQqm', '4637896'), + (1141, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'v4DbGQqm', '4642994'), + (1141, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'v4DbGQqm', '4642995'), + (1141, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'v4DbGQqm', '4642996'), + (1141, 1119, 'attending', '2021-12-19 01:27:43', '2025-12-17 19:47:31', 'v4DbGQqm', '4642997'), + (1141, 1120, 'attending', '2021-11-15 20:11:41', '2025-12-17 19:47:37', 'v4DbGQqm', '4644021'), + (1141, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'v4DbGQqm', '4645687'), + (1141, 1127, 'not_attending', '2021-12-12 21:25:03', '2025-12-17 19:47:38', 'v4DbGQqm', '4645698'), + (1141, 1128, 'not_attending', '2021-11-20 17:24:58', '2025-12-17 19:47:37', 'v4DbGQqm', '4645704'), + (1141, 1129, 'attending', '2021-11-21 19:19:35', '2025-12-17 19:47:37', 'v4DbGQqm', '4645705'), + (1141, 1131, 'attending', '2021-12-17 17:17:12', '2025-12-17 19:47:31', 'v4DbGQqm', '4658825'), + (1141, 1132, 'attending', '2021-11-21 19:14:29', '2025-12-17 19:47:37', 'v4DbGQqm', '4660657'), + (1141, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'v4DbGQqm', '4668385'), + (1141, 1140, 'attending', '2021-11-30 04:28:49', '2025-12-17 19:47:37', 'v4DbGQqm', '4679701'), + (1141, 1148, 'attending', '2021-12-17 17:16:51', '2025-12-17 19:47:31', 'v4DbGQqm', '4692843'), + (1141, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'v4DbGQqm', '4694407'), + (1141, 1150, 'attending', '2021-12-17 00:17:36', '2025-12-17 19:47:38', 'v4DbGQqm', '4706262'), + (1141, 1151, 'not_attending', '2022-01-05 23:37:38', '2025-12-17 19:47:31', 'v4DbGQqm', '4708704'), + (1141, 1153, 'maybe', '2022-01-19 23:42:50', '2025-12-17 19:47:32', 'v4DbGQqm', '4708707'), + (1141, 1154, 'attending', '2022-01-26 22:18:31', '2025-12-17 19:47:32', 'v4DbGQqm', '4708708'), + (1141, 1156, 'attending', '2021-12-18 21:27:04', '2025-12-17 19:47:31', 'v4DbGQqm', '4715207'), + (1141, 1157, 'attending', '2021-12-18 21:29:11', '2025-12-17 19:47:31', 'v4DbGQqm', '4715208'), + (1141, 1158, 'attending', '2021-12-18 23:36:27', '2025-12-17 19:47:31', 'v4DbGQqm', '4715311'), + (1141, 1163, 'attending', '2022-01-08 17:59:14', '2025-12-17 19:47:31', 'v4DbGQqm', '4724206'), + (1141, 1164, 'attending', '2022-01-03 16:26:27', '2025-12-17 19:47:31', 'v4DbGQqm', '4724208'), + (1141, 1165, 'attending', '2022-01-03 16:26:30', '2025-12-17 19:47:31', 'v4DbGQqm', '4724210'), + (1141, 1170, 'not_attending', '2022-01-10 00:19:20', '2025-12-17 19:47:31', 'v4DbGQqm', '4731045'), + (1141, 1171, 'attending', '2022-01-02 04:33:29', '2025-12-17 19:47:31', 'v4DbGQqm', '4733292'), + (1141, 1173, 'attending', '2022-01-03 16:37:16', '2025-12-17 19:47:31', 'v4DbGQqm', '4736495'), + (1141, 1174, 'attending', '2022-01-16 00:06:07', '2025-12-17 19:47:31', 'v4DbGQqm', '4736496'), + (1141, 1175, 'attending', '2022-01-22 14:48:43', '2025-12-17 19:47:32', 'v4DbGQqm', '4736497'), + (1141, 1176, 'attending', '2022-02-06 00:04:50', '2025-12-17 19:47:32', 'v4DbGQqm', '4736498'), + (1141, 1177, 'attending', '2022-02-10 13:34:21', '2025-12-17 19:47:32', 'v4DbGQqm', '4736499'), + (1141, 1178, 'attending', '2022-01-26 04:26:36', '2025-12-17 19:47:32', 'v4DbGQqm', '4736500'), + (1141, 1179, 'attending', '2022-02-15 19:13:19', '2025-12-17 19:47:32', 'v4DbGQqm', '4736501'), + (1141, 1180, 'attending', '2022-02-27 00:20:48', '2025-12-17 19:47:33', 'v4DbGQqm', '4736502'), + (1141, 1181, 'attending', '2022-03-02 06:51:30', '2025-12-17 19:47:33', 'v4DbGQqm', '4736503'), + (1141, 1182, 'attending', '2022-03-06 15:49:27', '2025-12-17 19:47:33', 'v4DbGQqm', '4736504'), + (1141, 1183, 'not_attending', '2022-01-07 16:58:16', '2025-12-17 19:47:31', 'v4DbGQqm', '4742171'), + (1141, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'v4DbGQqm', '4746789'), + (1141, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'v4DbGQqm', '4753929'), + (1141, 1206, 'attending', '2022-04-10 10:37:09', '2025-12-17 19:47:27', 'v4DbGQqm', '4773578'), + (1141, 1207, 'attending', '2022-05-07 19:36:25', '2025-12-17 19:47:28', 'v4DbGQqm', '4773579'), + (1141, 1220, 'attending', '2022-01-27 23:50:00', '2025-12-17 19:47:32', 'v4DbGQqm', '4790257'), + (1141, 1229, 'not_attending', '2022-02-18 19:22:09', '2025-12-17 19:47:32', 'v4DbGQqm', '5034963'), + (1141, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4DbGQqm', '5038850'), + (1141, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4DbGQqm', '5045826'), + (1141, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4DbGQqm', '5132533'), + (1141, 1260, 'attending', '2022-03-01 17:45:57', '2025-12-17 19:47:33', 'v4DbGQqm', '5142082'), + (1141, 1264, 'attending', '2022-03-22 22:49:39', '2025-12-17 19:47:25', 'v4DbGQqm', '5160281'), + (1141, 1265, 'attending', '2022-03-10 13:24:01', '2025-12-17 19:47:33', 'v4DbGQqm', '5160862'), + (1141, 1271, 'attending', '2022-03-18 17:51:59', '2025-12-17 19:47:25', 'v4DbGQqm', '5181648'), + (1141, 1272, 'attending', '2022-03-17 09:43:48', '2025-12-17 19:47:25', 'v4DbGQqm', '5186582'), + (1141, 1273, 'attending', '2022-03-18 17:52:49', '2025-12-17 19:47:25', 'v4DbGQqm', '5186583'), + (1141, 1274, 'attending', '2022-03-24 15:44:33', '2025-12-17 19:47:26', 'v4DbGQqm', '5186585'), + (1141, 1275, 'attending', '2022-03-24 15:44:29', '2025-12-17 19:47:26', 'v4DbGQqm', '5186587'), + (1141, 1279, 'attending', '2022-03-18 17:53:18', '2025-12-17 19:47:25', 'v4DbGQqm', '5187212'), + (1141, 1280, 'not_attending', '2022-03-18 07:23:33', '2025-12-17 19:47:25', 'v4DbGQqm', '5189749'), + (1141, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4DbGQqm', '5190437'), + (1141, 1283, 'attending', '2022-03-19 15:31:12', '2025-12-17 19:47:25', 'v4DbGQqm', '5193533'), + (1141, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'v4DbGQqm', '5195095'), + (1141, 1289, 'not_attending', '2022-03-31 22:45:34', '2025-12-17 19:47:25', 'v4DbGQqm', '5200190'), + (1141, 1290, 'not_attending', '2022-03-29 22:46:33', '2025-12-17 19:47:25', 'v4DbGQqm', '5200196'), + (1141, 1293, 'attending', '2022-04-10 10:36:57', '2025-12-17 19:47:27', 'v4DbGQqm', '5214641'), + (1141, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4DbGQqm', '5215989'), + (1141, 1301, 'attending', '2022-03-30 11:22:55', '2025-12-17 19:47:26', 'v4DbGQqm', '5218175'), + (1141, 1307, 'not_attending', '2022-04-05 10:12:55', '2025-12-17 19:47:27', 'v4DbGQqm', '5223686'), + (1141, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'v4DbGQqm', '5227432'), + (1141, 1312, 'attending', '2022-04-14 14:14:42', '2025-12-17 19:47:27', 'v4DbGQqm', '5231459'), + (1141, 1313, 'attending', '2022-04-12 20:59:22', '2025-12-17 19:47:27', 'v4DbGQqm', '5231461'), + (1141, 1328, 'maybe', '2022-04-14 14:14:37', '2025-12-17 19:47:27', 'v4DbGQqm', '5238759'), + (1141, 1329, 'not_attending', '2022-04-12 12:03:25', '2025-12-17 19:47:27', 'v4DbGQqm', '5240135'), + (1141, 1344, 'not_attending', '2022-04-28 13:06:22', '2025-12-17 19:47:28', 'v4DbGQqm', '5247465'), + (1141, 1345, 'not_attending', '2022-04-23 21:13:43', '2025-12-17 19:47:27', 'v4DbGQqm', '5247466'), + (1141, 1346, 'not_attending', '2022-04-23 21:13:46', '2025-12-17 19:47:27', 'v4DbGQqm', '5247467'), + (1141, 1348, 'not_attending', '2022-05-01 22:20:44', '2025-12-17 19:47:28', 'v4DbGQqm', '5247605'), + (1141, 1362, 'attending', '2022-04-25 19:02:12', '2025-12-17 19:47:28', 'v4DbGQqm', '5260800'), + (1141, 1370, 'attending', '2022-04-28 13:05:44', '2025-12-17 19:47:28', 'v4DbGQqm', '5263775'), + (1141, 1371, 'attending', '2022-04-27 22:39:36', '2025-12-17 19:47:27', 'v4DbGQqm', '5263784'), + (1141, 1374, 'attending', '2022-05-07 16:14:30', '2025-12-17 19:47:28', 'v4DbGQqm', '5269930'), + (1141, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'v4DbGQqm', '5271448'), + (1141, 1379, 'attending', '2022-05-21 16:58:03', '2025-12-17 19:47:29', 'v4DbGQqm', '5271449'), + (1141, 1380, 'not_attending', '2022-05-28 21:52:07', '2025-12-17 19:47:30', 'v4DbGQqm', '5271450'), + (1141, 1381, 'not_attending', '2022-05-05 02:29:58', '2025-12-17 19:47:28', 'v4DbGQqm', '5271453'), + (1141, 1383, 'maybe', '2022-05-12 13:28:03', '2025-12-17 19:47:28', 'v4DbGQqm', '5276469'), + (1141, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'v4DbGQqm', '5278159'), + (1141, 1395, 'attending', '2022-05-07 16:14:25', '2025-12-17 19:47:28', 'v4DbGQqm', '5281102'), + (1141, 1397, 'attending', '2022-05-21 16:57:59', '2025-12-17 19:47:29', 'v4DbGQqm', '5281104'), + (1141, 1407, 'attending', '2022-06-04 21:06:54', '2025-12-17 19:47:30', 'v4DbGQqm', '5363695'), + (1141, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'v4DbGQqm', '5365960'), + (1141, 1415, 'attending', '2022-06-03 22:26:47', '2025-12-17 19:47:30', 'v4DbGQqm', '5368973'), + (1141, 1417, 'attending', '2022-05-23 23:41:28', '2025-12-17 19:47:30', 'v4DbGQqm', '5370465'), + (1141, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'v4DbGQqm', '5378247'), + (1141, 1431, 'attending', '2022-06-11 18:31:05', '2025-12-17 19:47:30', 'v4DbGQqm', '5389605'), + (1141, 1442, 'maybe', '2022-06-18 14:41:01', '2025-12-17 19:47:17', 'v4DbGQqm', '5397265'), + (1141, 1443, 'attending', '2022-06-04 21:06:51', '2025-12-17 19:47:30', 'v4DbGQqm', '5397613'), + (1141, 1444, 'not_attending', '2022-06-11 18:31:02', '2025-12-17 19:47:30', 'v4DbGQqm', '5397614'), + (1141, 1445, 'maybe', '2022-06-18 14:40:58', '2025-12-17 19:47:17', 'v4DbGQqm', '5397615'), + (1141, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'v4DbGQqm', '5403967'), + (1141, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'v4DbGQqm', '5404786'), + (1141, 1460, 'attending', '2022-06-10 04:36:01', '2025-12-17 19:47:31', 'v4DbGQqm', '5404817'), + (1141, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'v4DbGQqm', '5405203'), + (1141, 1465, 'not_attending', '2022-06-12 02:56:50', '2025-12-17 19:47:31', 'v4DbGQqm', '5406355'), + (1141, 1470, 'not_attending', '2022-06-18 14:40:55', '2025-12-17 19:47:17', 'v4DbGQqm', '5407053'), + (1141, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'v4DbGQqm', '5411699'), + (1141, 1482, 'not_attending', '2022-06-25 22:19:50', '2025-12-17 19:47:19', 'v4DbGQqm', '5412550'), + (1141, 1483, 'not_attending', '2022-06-20 21:21:55', '2025-12-17 19:47:17', 'v4DbGQqm', '5414556'), + (1141, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'v4DbGQqm', '5415046'), + (1141, 1494, 'not_attending', '2022-06-25 15:19:20', '2025-12-17 19:47:19', 'v4DbGQqm', '5421626'), + (1141, 1495, 'attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'v4DbGQqm', '5422086'), + (1141, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'v4DbGQqm', '5422406'), + (1141, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'v4DbGQqm', '5424565'), + (1141, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'v4DbGQqm', '5426882'), + (1141, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'v4DbGQqm', '5427083'), + (1141, 1508, 'attending', '2022-07-13 22:14:08', '2025-12-17 19:47:19', 'v4DbGQqm', '5433453'), + (1141, 1512, 'attending', '2022-07-15 21:43:44', '2025-12-17 19:47:19', 'v4DbGQqm', '5441112'), + (1141, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'v4DbGQqm', '5441125'), + (1141, 1514, 'attending', '2022-07-21 19:50:49', '2025-12-17 19:47:20', 'v4DbGQqm', '5441126'), + (1141, 1515, 'attending', '2022-08-06 16:24:52', '2025-12-17 19:47:21', 'v4DbGQqm', '5441128'), + (1141, 1516, 'not_attending', '2022-08-20 17:05:40', '2025-12-17 19:47:23', 'v4DbGQqm', '5441129'), + (1141, 1517, 'attending', '2022-08-25 15:23:55', '2025-12-17 19:47:23', 'v4DbGQqm', '5441130'), + (1141, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'v4DbGQqm', '5441131'), + (1141, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'v4DbGQqm', '5441132'), + (1141, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'v4DbGQqm', '5446643'), + (1141, 1529, 'attending', '2022-07-14 17:54:02', '2025-12-17 19:47:19', 'v4DbGQqm', '5447079'), + (1141, 1532, 'maybe', '2022-07-21 19:51:00', '2025-12-17 19:47:20', 'v4DbGQqm', '5448757'), + (1141, 1533, 'not_attending', '2022-07-29 21:36:09', '2025-12-17 19:47:21', 'v4DbGQqm', '5448758'), + (1141, 1534, 'maybe', '2022-08-06 16:24:49', '2025-12-17 19:47:21', 'v4DbGQqm', '5448759'), + (1141, 1535, 'attending', '2022-07-19 18:01:33', '2025-12-17 19:47:20', 'v4DbGQqm', '5448830'), + (1141, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'v4DbGQqm', '5453325'), + (1141, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'v4DbGQqm', '5454516'), + (1141, 1544, 'maybe', '2022-09-15 14:21:27', '2025-12-17 19:47:11', 'v4DbGQqm', '5454517'), + (1141, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'v4DbGQqm', '5454605'), + (1141, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'v4DbGQqm', '5455037'), + (1141, 1557, 'attending', '2022-08-03 22:16:24', '2025-12-17 19:47:21', 'v4DbGQqm', '5458729'), + (1141, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'v4DbGQqm', '5461278'), + (1141, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'v4DbGQqm', '5469480'), + (1141, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'v4DbGQqm', '5471073'), + (1141, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'v4DbGQqm', '5474663'), + (1141, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'v4DbGQqm', '5482022'), + (1141, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'v4DbGQqm', '5482793'), + (1141, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'v4DbGQqm', '5488912'), + (1141, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'v4DbGQqm', '5492192'), + (1141, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'v4DbGQqm', '5493139'), + (1141, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'v4DbGQqm', '5493200'), + (1141, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'v4DbGQqm', '5502188'), + (1141, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'v4DbGQqm', '5505059'), + (1141, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'v4DbGQqm', '5509055'), + (1141, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'v4DbGQqm', '5512862'), + (1141, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'v4DbGQqm', '5513985'), + (1141, 1626, 'not_attending', '2022-08-25 22:34:49', '2025-12-17 19:47:11', 'v4DbGQqm', '5519981'), + (1141, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'v4DbGQqm', '5522550'), + (1141, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'v4DbGQqm', '5534683'), + (1141, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'v4DbGQqm', '5537735'), + (1141, 1640, 'maybe', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'v4DbGQqm', '5540859'), + (1141, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'v4DbGQqm', '5546619'), + (1141, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'v4DbGQqm', '5555245'), + (1141, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'v4DbGQqm', '5557747'), + (1141, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'v4DbGQqm', '5560255'), + (1141, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'v4DbGQqm', '5562906'), + (1141, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'v4DbGQqm', '5600604'), + (1141, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'v4DbGQqm', '5605544'), + (1141, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'v4DbGQqm', '5606737'), + (1141, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'v4DbGQqm', '5630960'), + (1141, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'v4DbGQqm', '5630961'), + (1141, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'v4DbGQqm', '5630962'), + (1141, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'v4DbGQqm', '5630966'), + (1141, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'v4DbGQqm', '5630967'), + (1141, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'v4DbGQqm', '5630968'), + (1141, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'v4DbGQqm', '5635406'), + (1141, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'v4DbGQqm', '5638765'), + (1141, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'v4DbGQqm', '5640097'), + (1141, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'v4DbGQqm', '5640843'), + (1141, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'v4DbGQqm', '5641521'), + (1141, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'v4DbGQqm', '5642818'), + (1141, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'v4DbGQqm', '5652395'), + (1141, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'v4DbGQqm', '5670445'), + (1141, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'v4DbGQqm', '5671637'), + (1141, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'v4DbGQqm', '5672329'), + (1141, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'v4DbGQqm', '5674057'), + (1141, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'v4DbGQqm', '5674060'), + (1141, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'v4DbGQqm', '5677461'), + (1141, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'v4DbGQqm', '5698046'), + (1141, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'v4DbGQqm', '5699760'), + (1141, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'v4DbGQqm', '5741601'), + (1141, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'v4DbGQqm', '5763458'), + (1141, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'v4DbGQqm', '5774172'), + (1141, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'v4DbGQqm', '5818247'), + (1141, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'v4DbGQqm', '5819471'), + (1141, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'v4DbGQqm', '5827739'), + (1141, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'v4DbGQqm', '5844306'), + (1141, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'v4DbGQqm', '5850159'), + (1141, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'v4DbGQqm', '5858999'), + (1141, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'v4DbGQqm', '5871984'), + (1141, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'v4DbGQqm', '5876354'), + (1141, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'v4DbGQqm', '5880939'), + (1141, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'v4DbGQqm', '5880940'), + (1141, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'v4DbGQqm', '5880942'), + (1141, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'v4DbGQqm', '5880943'), + (1141, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'v4DbGQqm', '5887890'), + (1141, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'v4DbGQqm', '5888598'), + (1141, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'v4DbGQqm', '5893260'), + (1141, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'v4DbGQqm', '5899826'), + (1141, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'v4DbGQqm', '5900199'), + (1141, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'v4DbGQqm', '5900200'), + (1141, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'v4DbGQqm', '5900202'), + (1141, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'v4DbGQqm', '5900203'), + (1141, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'v4DbGQqm', '5901108'), + (1141, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'v4DbGQqm', '5901126'), + (1141, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'v4DbGQqm', '5909655'), + (1141, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'v4DbGQqm', '5910522'), + (1141, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'v4DbGQqm', '5910526'), + (1141, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'v4DbGQqm', '5910528'), + (1141, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'v4DbGQqm', '5916219'), + (1141, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'v4DbGQqm', '5936234'), + (1141, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'v4DbGQqm', '5958351'), + (1141, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'v4DbGQqm', '5959751'), + (1141, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'v4DbGQqm', '5959755'), + (1141, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'v4DbGQqm', '5960055'), + (1141, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'v4DbGQqm', '5961684'), + (1141, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'v4DbGQqm', '5962132'), + (1141, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'v4DbGQqm', '5962133'), + (1141, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'v4DbGQqm', '5962134'), + (1141, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'v4DbGQqm', '5962317'), + (1141, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'v4DbGQqm', '5962318'), + (1141, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'v4DbGQqm', '5965933'), + (1141, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'v4DbGQqm', '5967014'), + (1141, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'v4DbGQqm', '5972763'), + (1141, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'v4DbGQqm', '5972815'), + (1141, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'v4DbGQqm', '5974016'), + (1141, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'v4DbGQqm', '5975052'), + (1141, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'v4DbGQqm', '5975054'), + (1141, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'v4DbGQqm', '5981515'), + (1141, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'v4DbGQqm', '5993516'), + (1141, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'v4DbGQqm', '5998939'), + (1141, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'v4DbGQqm', '6028191'), + (1141, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'v4DbGQqm', '6040066'), + (1141, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'v4DbGQqm', '6042717'), + (1141, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'v4DbGQqm', '6044838'), + (1141, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'v4DbGQqm', '6044839'), + (1141, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DbGQqm', '6045684'), + (1141, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'v4DbGQqm', '6050104'), + (1141, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'v4DbGQqm', '6053195'), + (1141, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'v4DbGQqm', '6053198'), + (1141, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'v4DbGQqm', '6056085'), + (1141, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'v4DbGQqm', '6056916'), + (1141, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'v4DbGQqm', '6059290'), + (1141, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'v4DbGQqm', '6060328'), + (1141, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'v4DbGQqm', '6061037'), + (1141, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'v4DbGQqm', '6061039'), + (1141, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'v4DbGQqm', '6065813'), + (1141, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'v4DbGQqm', '6067245'), + (1141, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'v4DbGQqm', '6068094'), + (1141, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'v4DbGQqm', '6068252'), + (1141, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'v4DbGQqm', '6068253'), + (1141, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'v4DbGQqm', '6068254'), + (1141, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'v4DbGQqm', '6068280'), + (1141, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'v4DbGQqm', '6069093'), + (1141, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'v4DbGQqm', '6072528'), + (1141, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'v4DbGQqm', '6075556'), + (1141, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'v4DbGQqm', '6079840'), + (1141, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'v4DbGQqm', '6083398'), + (1141, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'v4DbGQqm', '6093504'), + (1141, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'v4DbGQqm', '6097414'), + (1141, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'v4DbGQqm', '6097442'), + (1141, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'v4DbGQqm', '6097684'), + (1141, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'v4DbGQqm', '6098762'), + (1141, 2064, 'not_attending', '2023-06-24 16:27:07', '2025-12-17 19:46:50', 'v4DbGQqm', '6099988'), + (1141, 2065, 'not_attending', '2023-06-17 13:50:32', '2025-12-17 19:46:49', 'v4DbGQqm', '6101169'), + (1141, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'v4DbGQqm', '6101361'), + (1141, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'v4DbGQqm', '6101362'), + (1141, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'v4DbGQqm', '6107314'), + (1141, 2077, 'not_attending', '2023-06-17 13:50:38', '2025-12-17 19:46:49', 'v4DbGQqm', '6110217'), + (1141, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'v4DbGQqm', '6120034'), + (1141, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'v4DbGQqm', '6136733'), + (1141, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'v4DbGQqm', '6137989'), + (1141, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'v4DbGQqm', '6150864'), + (1141, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'v4DbGQqm', '6155491'), + (1141, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'v4DbGQqm', '6164417'), + (1141, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'v4DbGQqm', '6166388'), + (1141, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'v4DbGQqm', '6176439'), + (1141, 2123, 'maybe', '2023-06-29 11:09:36', '2025-12-17 19:46:50', 'v4DbGQqm', '6176502'), + (1141, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'v4DbGQqm', '6182410'), + (1141, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'v4DbGQqm', '6185812'), + (1141, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'v4DbGQqm', '6187651'), + (1141, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'v4DbGQqm', '6187963'), + (1141, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'v4DbGQqm', '6187964'), + (1141, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'v4DbGQqm', '6187966'), + (1141, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'v4DbGQqm', '6187967'), + (1141, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'v4DbGQqm', '6187969'), + (1141, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'v4DbGQqm', '6334878'), + (1141, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'v4DbGQqm', '6337236'), + (1141, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'v4DbGQqm', '6337970'), + (1141, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'v4DbGQqm', '6338308'), + (1141, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'v4DbGQqm', '6338342'), + (1141, 2159, 'not_attending', '2023-07-22 21:41:51', '2025-12-17 19:46:53', 'v4DbGQqm', '6338355'), + (1141, 2160, 'not_attending', '2023-07-29 21:33:04', '2025-12-17 19:46:54', 'v4DbGQqm', '6338358'), + (1141, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'v4DbGQqm', '6341710'), + (1141, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'v4DbGQqm', '6342044'), + (1141, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'v4DbGQqm', '6342298'), + (1141, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'v4DbGQqm', '6343294'), + (1141, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'v4DbGQqm', '6347034'), + (1141, 2177, 'not_attending', '2023-08-12 17:22:56', '2025-12-17 19:46:55', 'v4DbGQqm', '6347053'), + (1141, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'v4DbGQqm', '6347056'), + (1141, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'v4DbGQqm', '6353830'), + (1141, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'v4DbGQqm', '6353831'), + (1141, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'v4DbGQqm', '6357867'), + (1141, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'v4DbGQqm', '6358652'), + (1141, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'v4DbGQqm', '6358668'), + (1141, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'v4DbGQqm', '6358669'), + (1141, 2204, 'not_attending', '2023-08-19 21:33:56', '2025-12-17 19:46:55', 'v4DbGQqm', '6361542'), + (1141, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'v4DbGQqm', '6361709'), + (1141, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'v4DbGQqm', '6361710'), + (1141, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'v4DbGQqm', '6361711'), + (1141, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'v4DbGQqm', '6361712'), + (1141, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'v4DbGQqm', '6361713'), + (1141, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'v4DbGQqm', '6382573'), + (1141, 2239, 'not_attending', '2023-09-02 23:46:47', '2025-12-17 19:46:56', 'v4DbGQqm', '6387592'), + (1141, 2240, 'not_attending', '2023-09-09 21:44:39', '2025-12-17 19:46:56', 'v4DbGQqm', '6388603'), + (1141, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'v4DbGQqm', '6388604'), + (1141, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'v4DbGQqm', '6394629'), + (1141, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'v4DbGQqm', '6394631'), + (1141, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'v4DbGQqm', '6440863'), + (1141, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'v4DbGQqm', '6445440'), + (1141, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'v4DbGQqm', '6453951'), + (1141, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'v4DbGQqm', '6461696'), + (1141, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'v4DbGQqm', '6462129'), + (1141, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'v4DbGQqm', '6463218'), + (1141, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'v4DbGQqm', '6472181'), + (1141, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'v4DbGQqm', '6482693'), + (1141, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'v4DbGQqm', '6484200'), + (1141, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'v4DbGQqm', '6484680'), + (1141, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'v4DbGQqm', '6507741'), + (1141, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'v4DbGQqm', '6514659'), + (1141, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'v4DbGQqm', '6514660'), + (1141, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'v4DbGQqm', '6519103'), + (1141, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'v4DbGQqm', '6535681'), + (1141, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'v4DbGQqm', '6584747'), + (1141, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'v4DbGQqm', '6587097'), + (1141, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'v4DbGQqm', '6609022'), + (1141, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'v4DbGQqm', '6632757'), + (1141, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'v4DbGQqm', '6644187'), + (1141, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'v4DbGQqm', '6648951'), + (1141, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'v4DbGQqm', '6648952'), + (1141, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'v4DbGQqm', '6655401'), + (1141, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'v4DbGQqm', '6661585'), + (1141, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'v4DbGQqm', '6661588'), + (1141, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'v4DbGQqm', '6661589'), + (1141, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'v4DbGQqm', '6699906'), + (1141, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'v4DbGQqm', '6699913'), + (1141, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'v4DbGQqm', '6701109'), + (1141, 2419, 'not_attending', '2024-01-18 15:56:08', '2025-12-17 19:46:41', 'v4DbGQqm', '6704505'), + (1141, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'v4DbGQqm', '6704561'), + (1141, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'v4DbGQqm', '6705219'), + (1141, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'v4DbGQqm', '6708410'), + (1141, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'v4DbGQqm', '6710153'), + (1141, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'v4DbGQqm', '6711552'), + (1141, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'v4DbGQqm', '6711553'), + (1141, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'v4DbGQqm', '6722688'), + (1141, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'v4DbGQqm', '6730620'), + (1141, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'v4DbGQqm', '6730642'), + (1141, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'v4DbGQqm', '6740364'), + (1141, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'v4DbGQqm', '6743829'), + (1141, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'v4DbGQqm', '7030380'), + (1141, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'v4DbGQqm', '7033677'), + (1141, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'v4DbGQqm', '7035415'), + (1141, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'v4DbGQqm', '7044715'), + (1141, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'v4DbGQqm', '7050318'), + (1141, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'v4DbGQqm', '7050319'), + (1141, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'v4DbGQqm', '7050322'), + (1141, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'v4DbGQqm', '7057804'), + (1141, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'v4DbGQqm', '7072824'), + (1141, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'v4DbGQqm', '7074348'), + (1141, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'v4DbGQqm', '7074364'), + (1141, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'v4DbGQqm', '7089267'), + (1141, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'v4DbGQqm', '7098747'), + (1141, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'v4DbGQqm', '7113468'), + (1141, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'v4DbGQqm', '7114856'), + (1141, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'v4DbGQqm', '7114951'), + (1141, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'v4DbGQqm', '7114955'), + (1141, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'v4DbGQqm', '7114956'), + (1141, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'v4DbGQqm', '7114957'), + (1141, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'v4DbGQqm', '7153615'), + (1141, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'v4DbGQqm', '7159484'), + (1141, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'v4DbGQqm', '7178446'), + (1141, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'v4DbGQqm', '7220467'), + (1141, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'v4DbGQqm', '7240354'), + (1141, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'v4DbGQqm', '7251633'), + (1141, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'v4DbGQqm', '7302674'), + (1141, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'v4DbGQqm', '7324073'), + (1141, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'v4DbGQqm', '7324074'), + (1141, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'v4DbGQqm', '7324075'), + (1141, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'v4DbGQqm', '7324078'), + (1141, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'v4DbGQqm', '7324082'), + (1141, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'v4DbGQqm', '7331457'), + (1141, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'v4DbGQqm', '7363643'), + (1141, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'v4DbGQqm', '7368606'), + (1141, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'v4DbGQqm', '7397462'), + (1141, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'v4DbGQqm', '7424275'), + (1141, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'v4DbGQqm', '7432751'), + (1141, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'v4DbGQqm', '7432752'), + (1141, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'v4DbGQqm', '7432753'), + (1141, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'v4DbGQqm', '7432754'), + (1141, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'v4DbGQqm', '7432755'), + (1141, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'v4DbGQqm', '7432756'), + (1141, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'v4DbGQqm', '7432758'), + (1141, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'v4DbGQqm', '7432759'), + (1141, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'v4DbGQqm', '7433834'), + (1141, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'v4DbGQqm', '7470197'), + (1141, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'v4DbGQqm', '7685613'), + (1141, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'v4DbGQqm', '7688194'), + (1141, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'v4DbGQqm', '7688196'), + (1141, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'v4DbGQqm', '7688289'), + (1141, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'v4DbGQqm', '7692763'), + (1141, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'v4DbGQqm', '7697552'), + (1141, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'v4DbGQqm', '7699878'), + (1141, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'v4DbGQqm', '7704043'), + (1141, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'v4DbGQqm', '7712467'), + (1141, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'v4DbGQqm', '7713585'), + (1141, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'v4DbGQqm', '7713586'), + (1141, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'v4DbGQqm', '7738518'), + (1141, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'v4DbGQqm', '7750636'), + (1141, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'v4DbGQqm', '7796540'), + (1141, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'v4DbGQqm', '7796541'), + (1141, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'v4DbGQqm', '7796542'), + (1141, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'v4DbGQqm', '7825913'), + (1141, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'v4DbGQqm', '7826209'), + (1141, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'v4DbGQqm', '7834742'), + (1141, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'v4DbGQqm', '7842108'), + (1141, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'v4DbGQqm', '7842902'), + (1141, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'v4DbGQqm', '7842903'), + (1141, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'v4DbGQqm', '7842904'), + (1141, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'v4DbGQqm', '7842905'), + (1141, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'v4DbGQqm', '7855719'), + (1141, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'v4DbGQqm', '7860683'), + (1141, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'v4DbGQqm', '7860684'), + (1141, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'v4DbGQqm', '7866095'), + (1141, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'v4DbGQqm', '7869170'), + (1141, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'v4DbGQqm', '7869188'), + (1141, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'v4DbGQqm', '7869201'), + (1141, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'v4DbGQqm', '7877465'), + (1141, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'v4DbGQqm', '7888250'), + (1141, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'v4DbGQqm', '7904777'), + (1141, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'v4DbGQqm', '8349164'), + (1141, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'v4DbGQqm', '8349545'), + (1141, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'v4DbGQqm', '8368028'), + (1141, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'v4DbGQqm', '8368029'), + (1141, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'v4DbGQqm', '8388462'), + (1141, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'v4DbGQqm', '8400273'), + (1141, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'v4DbGQqm', '8400275'), + (1141, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'v4DbGQqm', '8400276'), + (1141, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'v4DbGQqm', '8404977'), + (1141, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'v4DbGQqm', '8430783'), + (1141, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'v4DbGQqm', '8430784'), + (1141, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'v4DbGQqm', '8430799'), + (1141, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'v4DbGQqm', '8430800'), + (1141, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'v4DbGQqm', '8430801'), + (1141, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'v4DbGQqm', '8438709'), + (1141, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'v4DbGQqm', '8457738'), + (1141, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'v4DbGQqm', '8459566'), + (1141, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'v4DbGQqm', '8459567'), + (1141, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'v4DbGQqm', '8461032'), + (1141, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'v4DbGQqm', '8477877'), + (1141, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'v4DbGQqm', '8485688'), + (1141, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'v4DbGQqm', '8490587'), + (1141, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'v4DbGQqm', '8493552'), + (1141, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'v4DbGQqm', '8493553'), + (1141, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'v4DbGQqm', '8493554'), + (1141, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'v4DbGQqm', '8493555'), + (1141, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'v4DbGQqm', '8493556'), + (1141, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'v4DbGQqm', '8493557'), + (1141, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'v4DbGQqm', '8493558'), + (1141, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'v4DbGQqm', '8493559'), + (1141, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'v4DbGQqm', '8493560'), + (1141, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'v4DbGQqm', '8493561'), + (1141, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'v4DbGQqm', '8493572'), + (1141, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'v4DbGQqm', '8540725'), + (1141, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'v4DbGQqm', '8555421'), + (1142, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4DrX66Mm', '8540725'), + (1142, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4DrX66Mm', '8555421'), + (1142, 3324, 'not_attending', '2025-11-18 00:10:55', '2025-12-17 19:46:14', '4DrX66Mm', '8556406'), + (1142, 3330, 'not_attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', '4DrX66Mm', '8561720'), + (1165, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mqM2p0Lm', '8477877'), + (1165, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mqM2p0Lm', '8485688'), + (1165, 3234, 'not_attending', '2025-08-15 02:57:03', '2025-12-17 19:46:17', 'mqM2p0Lm', '8488773'), + (1165, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mqM2p0Lm', '8490587'), + (1165, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mqM2p0Lm', '8493552'), + (1165, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'mqM2p0Lm', '8493553'), + (1165, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mqM2p0Lm', '8493554'), + (1165, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mqM2p0Lm', '8493555'), + (1165, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mqM2p0Lm', '8493556'), + (1165, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mqM2p0Lm', '8493557'), + (1165, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mqM2p0Lm', '8493558'), + (1165, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mqM2p0Lm', '8493559'), + (1165, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mqM2p0Lm', '8493560'), + (1165, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'mqM2p0Lm', '8493561'), + (1165, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mqM2p0Lm', '8493572'), + (1165, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'mqM2p0Lm', '8529058'), + (1166, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mG2vprPd', '4420747'), + (1166, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mG2vprPd', '4568602'), + (1166, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mG2vprPd', '4572153'), + (1166, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mG2vprPd', '4585962'), + (1166, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mG2vprPd', '4596356'), + (1166, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'mG2vprPd', '4598860'), + (1166, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'mG2vprPd', '4598861'), + (1166, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'mG2vprPd', '4602797'), + (1166, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'mG2vprPd', '4637896'), + (1166, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mG2vprPd', '4642994'), + (1166, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mG2vprPd', '4642995'), + (1166, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mG2vprPd', '4642996'), + (1166, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mG2vprPd', '4642997'), + (1166, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mG2vprPd', '4645687'), + (1166, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mG2vprPd', '4645698'), + (1166, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mG2vprPd', '4645704'), + (1166, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mG2vprPd', '4645705'), + (1166, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mG2vprPd', '4668385'), + (1166, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mG2vprPd', '6045684'), + (1167, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '841vDPwd', '3539921'), + (1167, 802, 'attending', '2021-05-12 21:40:14', '2025-12-17 19:47:46', '841vDPwd', '3803310'), + (1167, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841vDPwd', '6045684'), + (1168, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dKZw1pR4', '6101361'), + (1168, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dKZw1pR4', '6136733'), + (1168, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dKZw1pR4', '6137989'), + (1168, 2098, 'not_attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dKZw1pR4', '6139831'), + (1168, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dKZw1pR4', '6150864'), + (1168, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKZw1pR4', '6155491'), + (1168, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKZw1pR4', '6164417'), + (1168, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKZw1pR4', '6166388'), + (1168, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKZw1pR4', '6176439'), + (1168, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'dKZw1pR4', '6177485'), + (1168, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKZw1pR4', '6182410'), + (1168, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKZw1pR4', '6185812'), + (1168, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKZw1pR4', '6187651'), + (1168, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKZw1pR4', '6187963'), + (1168, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKZw1pR4', '6187964'), + (1168, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKZw1pR4', '6187966'), + (1168, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKZw1pR4', '6187967'), + (1168, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKZw1pR4', '6187969'), + (1168, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKZw1pR4', '6334878'), + (1169, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', '2d26ywPd', '3149493'), + (1169, 393, 'maybe', '2021-06-23 23:16:18', '2025-12-17 19:47:38', '2d26ywPd', '3236448'), + (1169, 823, 'attending', '2021-06-22 16:31:44', '2025-12-17 19:47:48', '2d26ywPd', '3974109'), + (1169, 829, 'attending', '2021-06-21 19:38:53', '2025-12-17 19:47:47', '2d26ywPd', '3976202'), + (1169, 844, 'not_attending', '2021-06-21 14:59:45', '2025-12-17 19:47:38', '2d26ywPd', '4014338'), + (1169, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '2d26ywPd', '4021848'), + (1169, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '2d26ywPd', '4136937'), + (1169, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '2d26ywPd', '4136938'), + (1169, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '2d26ywPd', '4136947'), + (1169, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '2d26ywPd', '4210314'), + (1169, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '2d26ywPd', '4225444'), + (1169, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '2d26ywPd', '4229417'), + (1169, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '2d26ywPd', '4229418'), + (1169, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '2d26ywPd', '4239259'), + (1169, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '2d26ywPd', '4240316'), + (1169, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '2d26ywPd', '4250163'), + (1169, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '2d26ywPd', '4275957'), + (1169, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d26ywPd', '6045684'), + (1170, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4EnnRNDd', '5441131'), + (1170, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4EnnRNDd', '5441132'), + (1170, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4EnnRNDd', '5461278'), + (1170, 1562, 'attending', '2022-08-14 17:14:30', '2025-12-17 19:47:22', '4EnnRNDd', '5469480'), + (1170, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4EnnRNDd', '5488912'), + (1170, 1584, 'maybe', '2022-08-26 21:35:49', '2025-12-17 19:47:23', '4EnnRNDd', '5492004'), + (1170, 1586, 'not_attending', '2022-08-14 17:14:20', '2025-12-17 19:47:23', '4EnnRNDd', '5492019'), + (1170, 1594, 'attending', '2022-08-09 21:25:39', '2025-12-17 19:47:22', '4EnnRNDd', '5495523'), + (1170, 1595, 'attending', '2022-08-11 02:39:06', '2025-12-17 19:47:22', '4EnnRNDd', '5495736'), + (1170, 1597, 'attending', '2022-08-14 17:14:11', '2025-12-17 19:47:22', '4EnnRNDd', '5496566'), + (1170, 1598, 'attending', '2022-08-16 19:49:11', '2025-12-17 19:47:22', '4EnnRNDd', '5496567'), + (1170, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4EnnRNDd', '5502188'), + (1170, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4EnnRNDd', '5505059'), + (1170, 1609, 'attending', '2022-08-21 19:29:58', '2025-12-17 19:47:23', '4EnnRNDd', '5506590'), + (1170, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4EnnRNDd', '5509055'), + (1170, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4EnnRNDd', '5512862'), + (1170, 1620, 'not_attending', '2022-08-23 02:18:00', '2025-12-17 19:47:23', '4EnnRNDd', '5513046'), + (1170, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4EnnRNDd', '5513985'), + (1170, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '4EnnRNDd', '5519981'), + (1170, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4EnnRNDd', '5522550'), + (1170, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4EnnRNDd', '5534683'), + (1170, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4EnnRNDd', '5537735'), + (1170, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4EnnRNDd', '5540859'), + (1170, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4EnnRNDd', '5546619'), + (1170, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4EnnRNDd', '5555245'), + (1170, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4EnnRNDd', '5557747'), + (1170, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4EnnRNDd', '5560255'), + (1170, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4EnnRNDd', '5562906'), + (1170, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4EnnRNDd', '5600604'), + (1170, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4EnnRNDd', '5605544'), + (1170, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', '4EnnRNDd', '5606737'), + (1170, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4EnnRNDd', '5630960'), + (1170, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4EnnRNDd', '5630961'), + (1170, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4EnnRNDd', '5630962'), + (1170, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4EnnRNDd', '5630966'), + (1170, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4EnnRNDd', '5630967'), + (1170, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4EnnRNDd', '5630968'), + (1170, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4EnnRNDd', '5635406'), + (1170, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4EnnRNDd', '5638765'), + (1170, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4EnnRNDd', '5640097'), + (1170, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4EnnRNDd', '5640843'), + (1170, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4EnnRNDd', '5641521'), + (1170, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4EnnRNDd', '5642818'), + (1170, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4EnnRNDd', '5652395'), + (1170, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4EnnRNDd', '5670445'), + (1170, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4EnnRNDd', '5671637'), + (1170, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4EnnRNDd', '5672329'), + (1170, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4EnnRNDd', '5674057'), + (1170, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4EnnRNDd', '5674060'), + (1170, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4EnnRNDd', '5677461'), + (1170, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4EnnRNDd', '5698046'), + (1170, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4EnnRNDd', '5699760'), + (1170, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4EnnRNDd', '5741601'), + (1170, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4EnnRNDd', '5763458'), + (1170, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4EnnRNDd', '5774172'), + (1170, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4EnnRNDd', '5818247'), + (1170, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4EnnRNDd', '5819471'), + (1170, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4EnnRNDd', '5827739'), + (1170, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4EnnRNDd', '5844306'), + (1170, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4EnnRNDd', '5850159'), + (1170, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4EnnRNDd', '5858999'), + (1170, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4EnnRNDd', '5871984'), + (1170, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4EnnRNDd', '5876354'), + (1170, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4EnnRNDd', '5880939'), + (1170, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4EnnRNDd', '5887890'), + (1170, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4EnnRNDd', '5888598'), + (1170, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4EnnRNDd', '5893260'), + (1170, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4EnnRNDd', '6045684'), + (1171, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'Pm7DrZYA', '3149489'), + (1171, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'Pm7DrZYA', '3236450'), + (1171, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'Pm7DrZYA', '3236452'), + (1171, 646, 'not_attending', '2021-05-13 00:01:49', '2025-12-17 19:47:46', 'Pm7DrZYA', '3539921'), + (1171, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Pm7DrZYA', '3539922'), + (1171, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Pm7DrZYA', '3539923'), + (1171, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Pm7DrZYA', '3806392'), + (1171, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'Pm7DrZYA', '3963335'), + (1171, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7DrZYA', '3975311'), + (1171, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7DrZYA', '3994992'), + (1171, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7DrZYA', '6045684'), + (1172, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ9Be37A', '6045684'), + (1173, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVgaBEqm', '5880942'), + (1173, 1869, 'attending', '2023-02-24 17:17:24', '2025-12-17 19:47:09', 'dVgaBEqm', '5880943'), + (1173, 1885, 'attending', '2023-02-23 23:17:40', '2025-12-17 19:47:08', 'dVgaBEqm', '5899928'), + (1173, 1886, 'attending', '2023-02-24 17:17:26', '2025-12-17 19:47:09', 'dVgaBEqm', '5899930'), + (1173, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVgaBEqm', '5900200'), + (1173, 1891, 'attending', '2023-03-21 20:36:41', '2025-12-17 19:46:56', 'dVgaBEqm', '5900202'), + (1173, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVgaBEqm', '5900203'), + (1173, 1916, 'attending', '2023-02-20 04:07:36', '2025-12-17 19:47:08', 'dVgaBEqm', '5910526'), + (1173, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dVgaBEqm', '5910528'), + (1173, 1925, 'attending', '2023-02-23 23:17:31', '2025-12-17 19:47:08', 'dVgaBEqm', '5932619'), + (1173, 1926, 'attending', '2023-02-24 17:17:14', '2025-12-17 19:47:08', 'dVgaBEqm', '5932620'), + (1173, 1930, 'attending', '2023-02-23 00:00:48', '2025-12-17 19:47:08', 'dVgaBEqm', '5933462'), + (1173, 1931, 'attending', '2023-02-23 00:01:03', '2025-12-17 19:47:08', 'dVgaBEqm', '5933464'), + (1173, 1932, 'attending', '2023-02-20 17:07:30', '2025-12-17 19:47:07', 'dVgaBEqm', '5935303'), + (1173, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVgaBEqm', '5936234'), + (1173, 1935, 'attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVgaBEqm', '5958351'), + (1173, 1936, 'attending', '2023-02-24 17:16:25', '2025-12-17 19:47:08', 'dVgaBEqm', '5959397'), + (1173, 1938, 'attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVgaBEqm', '5959751'), + (1173, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVgaBEqm', '5959755'), + (1173, 1940, 'attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVgaBEqm', '5960055'), + (1173, 1941, 'maybe', '2023-02-25 03:31:22', '2025-12-17 19:47:09', 'dVgaBEqm', '5961684'), + (1173, 1942, 'maybe', '2023-02-26 19:22:17', '2025-12-17 19:47:08', 'dVgaBEqm', '5962085'), + (1173, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dVgaBEqm', '5962132'), + (1173, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVgaBEqm', '5962133'), + (1173, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVgaBEqm', '5962134'), + (1173, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVgaBEqm', '5962317'), + (1173, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVgaBEqm', '5962318'), + (1173, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dVgaBEqm', '5965933'), + (1173, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVgaBEqm', '5967014'), + (1173, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVgaBEqm', '5972815'), + (1173, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVgaBEqm', '5974016'), + (1173, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVgaBEqm', '5981515'), + (1173, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVgaBEqm', '5993516'), + (1173, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVgaBEqm', '5998939'), + (1173, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVgaBEqm', '6028191'), + (1173, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVgaBEqm', '6040066'), + (1173, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVgaBEqm', '6042717'), + (1173, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVgaBEqm', '6044838'), + (1173, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVgaBEqm', '6044839'), + (1173, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVgaBEqm', '6045684'), + (1173, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVgaBEqm', '6050104'), + (1173, 1996, 'attending', '2023-04-03 22:53:30', '2025-12-17 19:46:58', 'dVgaBEqm', '6050667'), + (1173, 2005, 'maybe', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVgaBEqm', '6053195'), + (1173, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVgaBEqm', '6053198'), + (1173, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVgaBEqm', '6056085'), + (1173, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVgaBEqm', '6056916'), + (1173, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVgaBEqm', '6059290'), + (1173, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVgaBEqm', '6060328'), + (1173, 2014, 'maybe', '2023-04-11 23:38:33', '2025-12-17 19:46:59', 'dVgaBEqm', '6060337'), + (1173, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVgaBEqm', '6061037'), + (1173, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVgaBEqm', '6061039'), + (1173, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVgaBEqm', '6067245'), + (1173, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVgaBEqm', '6068094'), + (1173, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVgaBEqm', '6068252'), + (1173, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVgaBEqm', '6068253'), + (1173, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVgaBEqm', '6068254'), + (1173, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVgaBEqm', '6068280'), + (1173, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVgaBEqm', '6069093'), + (1173, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVgaBEqm', '6072528'), + (1173, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVgaBEqm', '6079840'), + (1173, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVgaBEqm', '6083398'), + (1173, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVgaBEqm', '6093504'), + (1173, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVgaBEqm', '6097414'), + (1173, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVgaBEqm', '6097442'), + (1173, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVgaBEqm', '6097684'), + (1173, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVgaBEqm', '6098762'), + (1173, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVgaBEqm', '6101362'), + (1173, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVgaBEqm', '6103752'), + (1173, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVgaBEqm', '6107314'), + (1174, 1507, 'attending', '2022-07-30 00:19:51', '2025-12-17 19:47:19', 'dOjDg7O4', '5433100'), + (1174, 1515, 'attending', '2022-08-06 16:06:12', '2025-12-17 19:47:21', 'dOjDg7O4', '5441128'), + (1174, 1517, 'attending', '2022-08-27 20:36:40', '2025-12-17 19:47:23', 'dOjDg7O4', '5441130'), + (1174, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dOjDg7O4', '5441131'), + (1174, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dOjDg7O4', '5441132'), + (1174, 1538, 'attending', '2022-08-01 00:34:26', '2025-12-17 19:47:21', 'dOjDg7O4', '5449565'), + (1174, 1543, 'attending', '2022-07-30 04:07:58', '2025-12-17 19:47:21', 'dOjDg7O4', '5454516'), + (1174, 1557, 'attending', '2022-08-02 22:24:20', '2025-12-17 19:47:21', 'dOjDg7O4', '5458729'), + (1174, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dOjDg7O4', '5461278'), + (1174, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dOjDg7O4', '5469480'), + (1174, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'dOjDg7O4', '5471073'), + (1174, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dOjDg7O4', '5482022'), + (1174, 1576, 'attending', '2022-08-02 22:05:13', '2025-12-17 19:47:21', 'dOjDg7O4', '5482623'), + (1174, 1577, 'attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dOjDg7O4', '5482793'), + (1174, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dOjDg7O4', '5488912'), + (1174, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dOjDg7O4', '5492192'), + (1174, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dOjDg7O4', '5493139'), + (1174, 1589, 'attending', '2022-08-21 18:35:19', '2025-12-17 19:47:23', 'dOjDg7O4', '5493159'), + (1174, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dOjDg7O4', '5493200'), + (1174, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dOjDg7O4', '5502188'), + (1174, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dOjDg7O4', '5505059'), + (1174, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dOjDg7O4', '5509055'), + (1174, 1618, 'attending', '2022-08-28 15:06:53', '2025-12-17 19:47:23', 'dOjDg7O4', '5512005'), + (1174, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dOjDg7O4', '5512862'), + (1174, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dOjDg7O4', '5513985'), + (1174, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'dOjDg7O4', '5519981'), + (1174, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dOjDg7O4', '5522550'), + (1174, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dOjDg7O4', '5534683'), + (1174, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dOjDg7O4', '5537735'), + (1174, 1640, 'attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dOjDg7O4', '5540859'), + (1174, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dOjDg7O4', '5546619'), + (1174, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dOjDg7O4', '5555245'), + (1174, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dOjDg7O4', '5557747'), + (1174, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dOjDg7O4', '5560255'), + (1174, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dOjDg7O4', '5562906'), + (1174, 1668, 'maybe', '2022-10-01 16:56:28', '2025-12-17 19:47:12', 'dOjDg7O4', '5563222'), + (1174, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dOjDg7O4', '5600604'), + (1174, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dOjDg7O4', '5605544'), + (1174, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'dOjDg7O4', '5606737'), + (1174, 1708, 'attending', '2022-10-05 21:54:17', '2025-12-17 19:47:12', 'dOjDg7O4', '5617648'), + (1174, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dOjDg7O4', '5630960'), + (1174, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dOjDg7O4', '5630961'), + (1174, 1723, 'attending', '2022-11-01 20:52:33', '2025-12-17 19:47:15', 'dOjDg7O4', '5630962'), + (1174, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOjDg7O4', '5630966'), + (1174, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOjDg7O4', '5630967'), + (1174, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOjDg7O4', '5630968'), + (1174, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dOjDg7O4', '5635406'), + (1174, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dOjDg7O4', '5638765'), + (1174, 1739, 'attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dOjDg7O4', '5640097'), + (1174, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dOjDg7O4', '5640843'), + (1174, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dOjDg7O4', '5641521'), + (1174, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOjDg7O4', '5642818'), + (1174, 1747, 'attending', '2022-10-23 16:39:16', '2025-12-17 19:47:13', 'dOjDg7O4', '5648009'), + (1174, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dOjDg7O4', '5652395'), + (1174, 1754, 'attending', '2022-10-18 20:44:57', '2025-12-17 19:47:12', 'dOjDg7O4', '5659773'), + (1174, 1755, 'attending', '2022-10-18 21:17:16', '2025-12-17 19:47:12', 'dOjDg7O4', '5659774'), + (1174, 1756, 'attending', '2022-10-24 20:32:38', '2025-12-17 19:47:13', 'dOjDg7O4', '5663338'), + (1174, 1760, 'attending', '2022-10-21 23:04:13', '2025-12-17 19:47:13', 'dOjDg7O4', '5669463'), + (1174, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOjDg7O4', '5670445'), + (1174, 1764, 'attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dOjDg7O4', '5671637'), + (1174, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dOjDg7O4', '5672329'), + (1174, 1766, 'attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dOjDg7O4', '5674057'), + (1174, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dOjDg7O4', '5674060'), + (1174, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dOjDg7O4', '5677461'), + (1174, 1781, 'attending', '2022-11-02 21:46:38', '2025-12-17 19:47:15', 'dOjDg7O4', '5696178'), + (1174, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOjDg7O4', '5698046'), + (1174, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dOjDg7O4', '5699760'), + (1174, 1794, 'attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOjDg7O4', '5741601'), + (1174, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOjDg7O4', '5763458'), + (1174, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOjDg7O4', '5774172'), + (1174, 1832, 'maybe', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'dOjDg7O4', '5818247'), + (1174, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOjDg7O4', '5819471'), + (1174, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOjDg7O4', '5827739'), + (1174, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOjDg7O4', '5844306'), + (1174, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOjDg7O4', '5850159'), + (1174, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOjDg7O4', '5858999'), + (1174, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOjDg7O4', '5871984'), + (1174, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOjDg7O4', '5876354'), + (1174, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOjDg7O4', '5880939'), + (1174, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOjDg7O4', '5887890'), + (1174, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOjDg7O4', '5888598'), + (1174, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOjDg7O4', '5893260'), + (1174, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOjDg7O4', '6045684'), + (1175, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd5wN5bqA', '5900202'), + (1175, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd5wN5bqA', '5900203'), + (1175, 1917, 'not_attending', '2023-03-12 22:26:03', '2025-12-17 19:47:10', 'd5wN5bqA', '5910528'), + (1175, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'd5wN5bqA', '5962317'), + (1175, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'd5wN5bqA', '5962318'), + (1175, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd5wN5bqA', '5965933'), + (1175, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd5wN5bqA', '5993516'), + (1175, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd5wN5bqA', '5998939'), + (1175, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd5wN5bqA', '6028191'), + (1175, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd5wN5bqA', '6040066'), + (1175, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd5wN5bqA', '6042717'), + (1175, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd5wN5bqA', '6044838'), + (1175, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd5wN5bqA', '6044839'), + (1175, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd5wN5bqA', '6045684'), + (1175, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'd5wN5bqA', '6048955'), + (1175, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd5wN5bqA', '6050104'), + (1175, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd5wN5bqA', '6053195'), + (1175, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd5wN5bqA', '6053198'), + (1175, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd5wN5bqA', '6056085'), + (1175, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd5wN5bqA', '6056916'), + (1175, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd5wN5bqA', '6059290'), + (1175, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd5wN5bqA', '6060328'), + (1175, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd5wN5bqA', '6061037'), + (1175, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd5wN5bqA', '6061039'), + (1175, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd5wN5bqA', '6067245'), + (1175, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd5wN5bqA', '6068094'), + (1175, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd5wN5bqA', '6068252'), + (1175, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd5wN5bqA', '6068253'), + (1175, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd5wN5bqA', '6068254'), + (1175, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd5wN5bqA', '6068280'), + (1175, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd5wN5bqA', '6069093'), + (1175, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd5wN5bqA', '6072528'), + (1175, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd5wN5bqA', '6079840'), + (1175, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd5wN5bqA', '6083398'), + (1175, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd5wN5bqA', '6093504'), + (1175, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd5wN5bqA', '6097414'), + (1175, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd5wN5bqA', '6097442'), + (1175, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd5wN5bqA', '6097684'), + (1175, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd5wN5bqA', '6098762'), + (1175, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd5wN5bqA', '6101362'), + (1175, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd5wN5bqA', '6107314'), + (1175, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd5wN5bqA', '6120034'), + (1176, 871, 'maybe', '2021-07-06 09:08:04', '2025-12-17 19:47:39', 'oAg03eq4', '4136938'), + (1176, 872, 'maybe', '2021-07-21 13:32:30', '2025-12-17 19:47:40', 'oAg03eq4', '4136947'), + (1176, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAg03eq4', '4210314'), + (1176, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAg03eq4', '4225444'), + (1176, 893, 'not_attending', '2021-07-23 04:00:52', '2025-12-17 19:47:40', 'oAg03eq4', '4229420'), + (1176, 894, 'attending', '2021-07-18 23:25:09', '2025-12-17 19:47:39', 'oAg03eq4', '4229423'), + (1176, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAg03eq4', '4240316'), + (1176, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAg03eq4', '4240317'), + (1176, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAg03eq4', '4240318'), + (1176, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'oAg03eq4', '4240320'), + (1176, 916, 'maybe', '2021-07-21 12:58:27', '2025-12-17 19:47:40', 'oAg03eq4', '4273772'), + (1176, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAg03eq4', '4275957'), + (1176, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAg03eq4', '4277819'), + (1176, 922, 'maybe', '2021-07-24 19:25:53', '2025-12-17 19:47:40', 'oAg03eq4', '4280811'), + (1176, 923, 'not_attending', '2021-07-23 06:50:25', '2025-12-17 19:47:40', 'oAg03eq4', '4292773'), + (1176, 924, 'not_attending', '2021-07-23 18:00:20', '2025-12-17 19:47:40', 'oAg03eq4', '4297137'), + (1176, 933, 'maybe', '2021-07-28 14:00:08', '2025-12-17 19:47:40', 'oAg03eq4', '4301723'), + (1176, 934, 'attending', '2021-08-04 17:06:30', '2025-12-17 19:47:40', 'oAg03eq4', '4302093'), + (1176, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAg03eq4', '4304151'), + (1176, 939, 'attending', '2021-07-30 21:03:20', '2025-12-17 19:47:40', 'oAg03eq4', '4308354'), + (1176, 943, 'attending', '2021-08-01 21:09:16', '2025-12-17 19:47:41', 'oAg03eq4', '4310979'), + (1176, 944, 'attending', '2021-08-03 21:22:52', '2025-12-17 19:47:41', 'oAg03eq4', '4310980'), + (1176, 945, 'attending', '2021-08-17 00:32:09', '2025-12-17 19:47:42', 'oAg03eq4', '4310981'), + (1176, 954, 'attending', '2021-08-03 21:24:06', '2025-12-17 19:47:41', 'oAg03eq4', '4331303'), + (1176, 958, 'not_attending', '2021-08-11 11:54:02', '2025-12-17 19:47:41', 'oAg03eq4', '4342996'), + (1176, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAg03eq4', '4356801'), + (1176, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAg03eq4', '4366186'), + (1176, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAg03eq4', '4366187'), + (1176, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'oAg03eq4', '4420735'), + (1176, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'oAg03eq4', '4420738'), + (1176, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAg03eq4', '4420739'), + (1176, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAg03eq4', '4420741'), + (1176, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAg03eq4', '4420744'), + (1176, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAg03eq4', '4420747'), + (1176, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAg03eq4', '4420748'), + (1176, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAg03eq4', '4420749'), + (1176, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAg03eq4', '4461883'), + (1176, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAg03eq4', '4508342'), + (1176, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAg03eq4', '4568602'), + (1176, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAg03eq4', '6045684'), + (1177, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9nV8Wpm', '6045684'), + (1178, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dN9ZOJy4', '5195095'), + (1178, 1306, 'not_attending', '2022-04-05 19:30:52', '2025-12-17 19:47:26', 'dN9ZOJy4', '5223682'), + (1178, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dN9ZOJy4', '5223686'), + (1178, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dN9ZOJy4', '5227432'), + (1178, 1314, 'maybe', '2022-04-11 11:19:44', '2025-12-17 19:47:27', 'dN9ZOJy4', '5233137'), + (1178, 1339, 'attending', '2022-04-16 11:07:20', '2025-12-17 19:47:27', 'dN9ZOJy4', '5245284'), + (1178, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dN9ZOJy4', '5247467'), + (1178, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dN9ZOJy4', '5260800'), + (1178, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dN9ZOJy4', '5269930'), + (1178, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dN9ZOJy4', '5271448'), + (1178, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dN9ZOJy4', '5271449'), + (1178, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dN9ZOJy4', '5276469'), + (1178, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'dN9ZOJy4', '5277078'), + (1178, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dN9ZOJy4', '5278159'), + (1178, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dN9ZOJy4', '5363695'), + (1178, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dN9ZOJy4', '5365960'), + (1178, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dN9ZOJy4', '5368973'), + (1178, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dN9ZOJy4', '5378247'), + (1178, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dN9ZOJy4', '5389605'), + (1178, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dN9ZOJy4', '5397265'), + (1178, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dN9ZOJy4', '5403967'), + (1178, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dN9ZOJy4', '5404786'), + (1178, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dN9ZOJy4', '5405203'), + (1178, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dN9ZOJy4', '5411699'), + (1178, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dN9ZOJy4', '5412550'), + (1178, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dN9ZOJy4', '5415046'), + (1178, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dN9ZOJy4', '5422086'), + (1178, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dN9ZOJy4', '5422406'), + (1178, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dN9ZOJy4', '5424565'), + (1178, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dN9ZOJy4', '5426882'), + (1178, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dN9ZOJy4', '5427083'), + (1178, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dN9ZOJy4', '5441125'), + (1178, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dN9ZOJy4', '5441126'), + (1178, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dN9ZOJy4', '5441128'), + (1178, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dN9ZOJy4', '5441131'), + (1178, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dN9ZOJy4', '5441132'), + (1178, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dN9ZOJy4', '5446643'), + (1178, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dN9ZOJy4', '5453325'), + (1178, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dN9ZOJy4', '5454516'), + (1178, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dN9ZOJy4', '5454605'), + (1178, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dN9ZOJy4', '5455037'), + (1178, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dN9ZOJy4', '5461278'), + (1178, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dN9ZOJy4', '5469480'), + (1178, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dN9ZOJy4', '5471073'), + (1178, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dN9ZOJy4', '5474663'), + (1178, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dN9ZOJy4', '5482022'), + (1178, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dN9ZOJy4', '5482793'), + (1178, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dN9ZOJy4', '5488912'), + (1178, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dN9ZOJy4', '5492192'), + (1178, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dN9ZOJy4', '5493139'), + (1178, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dN9ZOJy4', '5493200'), + (1178, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dN9ZOJy4', '5502188'), + (1178, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dN9ZOJy4', '5505059'), + (1178, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dN9ZOJy4', '5509055'), + (1178, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dN9ZOJy4', '5512862'), + (1178, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dN9ZOJy4', '5513985'), + (1178, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dN9ZOJy4', '5519981'), + (1178, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dN9ZOJy4', '5522550'), + (1178, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dN9ZOJy4', '5534683'), + (1178, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dN9ZOJy4', '5537735'), + (1178, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dN9ZOJy4', '5540859'), + (1178, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dN9ZOJy4', '5546619'), + (1178, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dN9ZOJy4', '5555245'), + (1178, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dN9ZOJy4', '5557747'), + (1178, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dN9ZOJy4', '5560255'), + (1178, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dN9ZOJy4', '5562906'), + (1178, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dN9ZOJy4', '5600604'), + (1178, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dN9ZOJy4', '5605544'), + (1178, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'dN9ZOJy4', '5606737'), + (1178, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dN9ZOJy4', '5630960'), + (1178, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dN9ZOJy4', '5630961'), + (1178, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dN9ZOJy4', '5630962'), + (1178, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dN9ZOJy4', '5630966'), + (1178, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dN9ZOJy4', '5630967'), + (1178, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dN9ZOJy4', '5630968'), + (1178, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dN9ZOJy4', '5635406'), + (1178, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dN9ZOJy4', '5638765'), + (1178, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dN9ZOJy4', '5640097'), + (1178, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dN9ZOJy4', '5640843'), + (1178, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dN9ZOJy4', '5641521'), + (1178, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dN9ZOJy4', '5642818'), + (1178, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dN9ZOJy4', '5652395'), + (1178, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dN9ZOJy4', '5670445'), + (1178, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dN9ZOJy4', '5671637'), + (1178, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dN9ZOJy4', '5672329'), + (1178, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dN9ZOJy4', '5674057'), + (1178, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dN9ZOJy4', '5674060'), + (1178, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dN9ZOJy4', '5677461'), + (1178, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dN9ZOJy4', '5698046'), + (1178, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dN9ZOJy4', '5699760'), + (1178, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dN9ZOJy4', '5741601'), + (1178, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dN9ZOJy4', '5763458'), + (1178, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dN9ZOJy4', '5774172'), + (1178, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dN9ZOJy4', '5818247'), + (1178, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dN9ZOJy4', '5819471'), + (1178, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dN9ZOJy4', '5827739'), + (1178, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dN9ZOJy4', '5844306'), + (1178, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dN9ZOJy4', '5850159'), + (1178, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dN9ZOJy4', '5858999'), + (1178, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dN9ZOJy4', '5871984'), + (1178, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dN9ZOJy4', '5876354'), + (1178, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dN9ZOJy4', '5880939'), + (1178, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dN9ZOJy4', '5887890'), + (1178, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dN9ZOJy4', '5888598'), + (1178, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dN9ZOJy4', '5893260'), + (1178, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9ZOJy4', '6045684'), + (1179, 1868, 'maybe', '2023-02-21 19:51:26', '2025-12-17 19:47:07', 'd5wM583A', '5880942'), + (1179, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd5wM583A', '5880943'), + (1179, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd5wM583A', '5900200'), + (1179, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd5wM583A', '5900202'), + (1179, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd5wM583A', '5900203'), + (1179, 1916, 'not_attending', '2023-02-22 04:38:46', '2025-12-17 19:47:08', 'd5wM583A', '5910526'), + (1179, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'd5wM583A', '5910528'), + (1179, 1921, 'attending', '2023-02-25 18:16:12', '2025-12-17 19:47:08', 'd5wM583A', '5914092'), + (1179, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd5wM583A', '5936234'), + (1179, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd5wM583A', '5958351'), + (1179, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd5wM583A', '5959751'), + (1179, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd5wM583A', '5959755'), + (1179, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd5wM583A', '5960055'), + (1179, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd5wM583A', '5961684'), + (1179, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd5wM583A', '5962132'), + (1179, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd5wM583A', '5962133'), + (1179, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd5wM583A', '5962134'), + (1179, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd5wM583A', '5962317'), + (1179, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd5wM583A', '5962318'), + (1179, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd5wM583A', '5965933'), + (1179, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd5wM583A', '5967014'), + (1179, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd5wM583A', '5972815'), + (1179, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd5wM583A', '5974016'), + (1179, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd5wM583A', '5981515'), + (1179, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd5wM583A', '5993516'), + (1179, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd5wM583A', '5998939'), + (1179, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd5wM583A', '6028191'), + (1179, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd5wM583A', '6040066'), + (1179, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd5wM583A', '6042717'), + (1179, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd5wM583A', '6045684'), + (1180, 157, 'not_attending', '2020-09-17 23:01:30', '2025-12-17 19:47:56', 'GAnO3vX4', '3058694'), + (1180, 158, 'not_attending', '2020-09-18 03:05:33', '2025-12-17 19:47:52', 'GAnO3vX4', '3058695'), + (1180, 159, 'not_attending', '2020-09-18 03:06:21', '2025-12-17 19:47:52', 'GAnO3vX4', '3058696'), + (1180, 161, 'not_attending', '2020-09-18 03:06:46', '2025-12-17 19:47:52', 'GAnO3vX4', '3058698'), + (1180, 199, 'not_attending', '2020-09-14 23:17:44', '2025-12-17 19:47:56', 'GAnO3vX4', '3087268'), + (1180, 220, 'attending', '2020-09-14 23:14:28', '2025-12-17 19:47:56', 'GAnO3vX4', '3129264'), + (1180, 221, 'attending', '2020-09-14 23:19:02', '2025-12-17 19:47:56', 'GAnO3vX4', '3129265'), + (1180, 241, 'not_attending', '2020-09-18 03:06:36', '2025-12-17 19:47:52', 'GAnO3vX4', '3149472'), + (1180, 242, 'not_attending', '2020-09-18 03:05:09', '2025-12-17 19:47:56', 'GAnO3vX4', '3149473'), + (1180, 311, 'not_attending', '2020-09-14 23:18:29', '2025-12-17 19:47:56', 'GAnO3vX4', '3186057'), + (1180, 323, 'attending', '2020-09-18 23:20:00', '2025-12-17 19:47:56', 'GAnO3vX4', '3197081'), + (1180, 324, 'not_attending', '2020-09-22 17:37:45', '2025-12-17 19:47:56', 'GAnO3vX4', '3197082'), + (1180, 325, 'attending', '2021-03-11 01:41:15', '2025-12-17 19:47:51', 'GAnO3vX4', '3197083'), + (1180, 326, 'not_attending', '2020-09-25 22:52:01', '2025-12-17 19:47:52', 'GAnO3vX4', '3197084'), + (1180, 327, 'maybe', '2020-09-18 03:25:37', '2025-12-17 19:47:52', 'GAnO3vX4', '3197085'), + (1180, 328, 'maybe', '2020-09-18 03:25:46', '2025-12-17 19:47:52', 'GAnO3vX4', '3197086'), + (1180, 329, 'maybe', '2020-09-18 03:28:55', '2025-12-17 19:47:52', 'GAnO3vX4', '3197087'), + (1180, 333, 'maybe', '2020-09-18 03:28:57', '2025-12-17 19:47:52', 'GAnO3vX4', '3199782'), + (1180, 334, 'maybe', '2020-09-18 03:28:59', '2025-12-17 19:47:52', 'GAnO3vX4', '3199784'), + (1180, 340, 'not_attending', '2020-09-17 23:01:16', '2025-12-17 19:47:56', 'GAnO3vX4', '3204470'), + (1180, 341, 'not_attending', '2020-09-18 03:05:30', '2025-12-17 19:47:52', 'GAnO3vX4', '3204471'), + (1180, 342, 'not_attending', '2020-09-18 03:06:05', '2025-12-17 19:47:52', 'GAnO3vX4', '3204472'), + (1180, 343, 'attending', '2020-09-22 22:55:39', '2025-12-17 19:47:56', 'GAnO3vX4', '3206759'), + (1180, 347, 'attending', '2020-09-18 03:03:22', '2025-12-17 19:47:51', 'GAnO3vX4', '3207930'), + (1180, 348, 'maybe', '2020-09-18 03:28:50', '2025-12-17 19:47:52', 'GAnO3vX4', '3209159'), + (1180, 351, 'not_attending', '2020-09-18 03:21:54', '2025-12-17 19:47:56', 'GAnO3vX4', '3209257'), + (1180, 352, 'not_attending', '2020-09-14 23:54:19', '2025-12-17 19:47:56', 'GAnO3vX4', '3210514'), + (1180, 354, 'not_attending', '2020-09-20 19:57:12', '2025-12-17 19:47:56', 'GAnO3vX4', '3212570'), + (1180, 356, 'not_attending', '2020-09-18 03:05:19', '2025-12-17 19:47:51', 'GAnO3vX4', '3212572'), + (1180, 357, 'not_attending', '2020-09-18 03:06:00', '2025-12-17 19:47:52', 'GAnO3vX4', '3212573'), + (1180, 358, 'attending', '2020-09-17 23:01:23', '2025-12-17 19:47:56', 'GAnO3vX4', '3212579'), + (1180, 359, 'not_attending', '2020-09-19 18:54:47', '2025-12-17 19:47:56', 'GAnO3vX4', '3212624'), + (1180, 360, 'not_attending', '2020-09-17 23:01:03', '2025-12-17 19:47:56', 'GAnO3vX4', '3212671'), + (1180, 361, 'not_attending', '2020-09-18 03:04:38', '2025-12-17 19:47:56', 'GAnO3vX4', '3213323'), + (1180, 362, 'not_attending', '2020-09-27 02:34:55', '2025-12-17 19:47:52', 'GAnO3vX4', '3214207'), + (1180, 363, 'maybe', '2020-09-18 03:25:39', '2025-12-17 19:47:52', 'GAnO3vX4', '3217037'), + (1180, 364, 'not_attending', '2020-09-19 02:26:21', '2025-12-17 19:47:56', 'GAnO3vX4', '3217106'), + (1180, 365, 'not_attending', '2020-09-18 05:38:40', '2025-12-17 19:47:51', 'GAnO3vX4', '3218510'), + (1180, 366, 'not_attending', '2020-09-22 22:55:52', '2025-12-17 19:47:56', 'GAnO3vX4', '3219750'), + (1180, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', 'GAnO3vX4', '3221403'), + (1180, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'GAnO3vX4', '3228698'), + (1180, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'GAnO3vX4', '3228699'), + (1180, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'GAnO3vX4', '3228700'), + (1180, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'GAnO3vX4', '3228701'), + (1180, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'GAnO3vX4', '3245751'), + (1180, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GAnO3vX4', '3250232'), + (1180, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'GAnO3vX4', '3256168'), + (1180, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GAnO3vX4', '3263578'), + (1180, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GAnO3vX4', '3276428'), + (1180, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'GAnO3vX4', '3281467'), + (1180, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GAnO3vX4', '3281470'), + (1180, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GAnO3vX4', '3281829'), + (1180, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'GAnO3vX4', '3285413'), + (1180, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'GAnO3vX4', '3285414'), + (1180, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GAnO3vX4', '3297764'), + (1180, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'GAnO3vX4', '3313856'), + (1180, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GAnO3vX4', '3314909'), + (1180, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GAnO3vX4', '3314964'), + (1180, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'GAnO3vX4', '3323365'), + (1180, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GAnO3vX4', '3329383'), + (1180, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GAnO3vX4', '3351539'), + (1180, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GAnO3vX4', '3386848'), + (1180, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GAnO3vX4', '3389527'), + (1180, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GAnO3vX4', '3396499'), + (1180, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GAnO3vX4', '3403650'), + (1180, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GAnO3vX4', '3406988'), + (1180, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'GAnO3vX4', '3408338'), + (1180, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GAnO3vX4', '3416576'), + (1180, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'GAnO3vX4', '3539916'), + (1180, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'GAnO3vX4', '3539919'), + (1180, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'GAnO3vX4', '3539920'), + (1180, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'GAnO3vX4', '3539921'), + (1180, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'GAnO3vX4', '3539922'), + (1180, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'GAnO3vX4', '3539923'), + (1180, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GAnO3vX4', '3539927'), + (1180, 678, 'not_attending', '2021-03-12 01:35:48', '2025-12-17 19:47:51', 'GAnO3vX4', '3547158'), + (1180, 688, 'not_attending', '2021-03-12 01:35:57', '2025-12-17 19:47:51', 'GAnO3vX4', '3553729'), + (1180, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GAnO3vX4', '3582734'), + (1180, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GAnO3vX4', '3583262'), + (1180, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GAnO3vX4', '3619523'), + (1180, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GAnO3vX4', '3661369'), + (1180, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GAnO3vX4', '3674262'), + (1180, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GAnO3vX4', '3677402'), + (1180, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GAnO3vX4', '3730212'), + (1180, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GAnO3vX4', '3793156'), + (1180, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GAnO3vX4', '3974109'), + (1180, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GAnO3vX4', '3975311'), + (1180, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GAnO3vX4', '3975312'), + (1180, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GAnO3vX4', '3994992'), + (1180, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GAnO3vX4', '4014338'), + (1180, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GAnO3vX4', '4021848'), + (1180, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GAnO3vX4', '4136744'), + (1180, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GAnO3vX4', '4136937'), + (1180, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GAnO3vX4', '4136938'), + (1180, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GAnO3vX4', '4136947'), + (1180, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GAnO3vX4', '4210314'), + (1180, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GAnO3vX4', '4225444'), + (1180, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GAnO3vX4', '4239259'), + (1180, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GAnO3vX4', '4240316'), + (1180, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GAnO3vX4', '4240317'), + (1180, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GAnO3vX4', '4240318'), + (1180, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GAnO3vX4', '4240320'), + (1180, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GAnO3vX4', '4250163'), + (1180, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GAnO3vX4', '4275957'), + (1180, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GAnO3vX4', '4277819'), + (1180, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GAnO3vX4', '4301723'), + (1180, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GAnO3vX4', '4302093'), + (1180, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GAnO3vX4', '4304151'), + (1180, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GAnO3vX4', '4356801'), + (1180, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GAnO3vX4', '4366186'), + (1180, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GAnO3vX4', '4366187'), + (1180, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GAnO3vX4', '4420735'), + (1180, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GAnO3vX4', '4420738'), + (1180, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GAnO3vX4', '4420739'), + (1180, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GAnO3vX4', '4420741'), + (1180, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GAnO3vX4', '4420744'), + (1180, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GAnO3vX4', '4420747'), + (1180, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GAnO3vX4', '4420748'), + (1180, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GAnO3vX4', '4420749'), + (1180, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GAnO3vX4', '4461883'), + (1180, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GAnO3vX4', '4508342'), + (1180, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GAnO3vX4', '4568602'), + (1180, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GAnO3vX4', '4572153'), + (1180, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GAnO3vX4', '4585962'), + (1180, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'GAnO3vX4', '4596356'), + (1180, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GAnO3vX4', '4598860'), + (1180, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'GAnO3vX4', '4598861'), + (1180, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GAnO3vX4', '4602797'), + (1180, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'GAnO3vX4', '4637896'), + (1180, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'GAnO3vX4', '4642994'), + (1180, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'GAnO3vX4', '4642995'), + (1180, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GAnO3vX4', '4642996'), + (1180, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GAnO3vX4', '4642997'), + (1180, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'GAnO3vX4', '4645687'), + (1180, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GAnO3vX4', '4645698'), + (1180, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'GAnO3vX4', '4645704'), + (1180, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'GAnO3vX4', '4645705'), + (1180, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GAnO3vX4', '4668385'), + (1180, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GAnO3vX4', '4694407'), + (1180, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GAnO3vX4', '4736497'), + (1180, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GAnO3vX4', '4736499'), + (1180, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GAnO3vX4', '4736500'), + (1180, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GAnO3vX4', '4736503'), + (1180, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'GAnO3vX4', '4736504'), + (1180, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GAnO3vX4', '4746789'), + (1180, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'GAnO3vX4', '4753929'), + (1180, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GAnO3vX4', '5038850'), + (1180, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GAnO3vX4', '5045826'), + (1180, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GAnO3vX4', '5132533'), + (1180, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GAnO3vX4', '5186582'), + (1180, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GAnO3vX4', '5186583'), + (1180, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'GAnO3vX4', '5186585'), + (1180, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GAnO3vX4', '5190437'), + (1180, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GAnO3vX4', '5195095'), + (1180, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GAnO3vX4', '5215989'), + (1180, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GAnO3vX4', '5223686'), + (1180, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GAnO3vX4', '5247467'), + (1180, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'GAnO3vX4', '5260800'), + (1180, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GAnO3vX4', '5269930'), + (1180, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GAnO3vX4', '5271448'), + (1180, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'GAnO3vX4', '5271449'), + (1180, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GAnO3vX4', '5278159'), + (1180, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'GAnO3vX4', '5363695'), + (1180, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GAnO3vX4', '5365960'), + (1180, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GAnO3vX4', '5378247'), + (1180, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GAnO3vX4', '5389605'), + (1180, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GAnO3vX4', '5397265'), + (1180, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GAnO3vX4', '5404786'), + (1180, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GAnO3vX4', '5405203'), + (1180, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GAnO3vX4', '5412550'), + (1180, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GAnO3vX4', '5415046'), + (1180, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GAnO3vX4', '5422086'), + (1180, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GAnO3vX4', '5422406'), + (1180, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GAnO3vX4', '5424565'), + (1180, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GAnO3vX4', '5426882'), + (1180, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GAnO3vX4', '5441125'), + (1180, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GAnO3vX4', '5441126'), + (1180, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GAnO3vX4', '5441128'), + (1180, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GAnO3vX4', '5441131'), + (1180, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GAnO3vX4', '5441132'), + (1180, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GAnO3vX4', '5453325'), + (1180, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GAnO3vX4', '5454516'), + (1180, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GAnO3vX4', '5454605'), + (1180, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GAnO3vX4', '5455037'), + (1180, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GAnO3vX4', '5461278'), + (1180, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GAnO3vX4', '5469480'), + (1180, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GAnO3vX4', '5474663'), + (1180, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GAnO3vX4', '5482022'), + (1180, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GAnO3vX4', '5488912'), + (1180, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GAnO3vX4', '5492192'), + (1180, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GAnO3vX4', '5493139'), + (1180, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GAnO3vX4', '5493200'), + (1180, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GAnO3vX4', '5502188'), + (1180, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GAnO3vX4', '5505059'), + (1180, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GAnO3vX4', '5509055'), + (1180, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GAnO3vX4', '5512862'), + (1180, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GAnO3vX4', '5513985'), + (1180, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GAnO3vX4', '5519981'), + (1180, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GAnO3vX4', '5522550'), + (1180, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GAnO3vX4', '5534683'), + (1180, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GAnO3vX4', '5537735'), + (1180, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GAnO3vX4', '5540859'), + (1180, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GAnO3vX4', '5546619'), + (1180, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GAnO3vX4', '5557747'), + (1180, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GAnO3vX4', '5560255'), + (1180, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GAnO3vX4', '5562906'), + (1180, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GAnO3vX4', '5600604'), + (1180, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GAnO3vX4', '5605544'), + (1180, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GAnO3vX4', '5630960'), + (1180, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GAnO3vX4', '5630961'), + (1180, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GAnO3vX4', '5630962'), + (1180, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GAnO3vX4', '5630966'), + (1180, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GAnO3vX4', '5630967'), + (1180, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GAnO3vX4', '5630968'), + (1180, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GAnO3vX4', '5635406'), + (1180, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GAnO3vX4', '5638765'), + (1180, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GAnO3vX4', '5640097'), + (1180, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GAnO3vX4', '5640843'), + (1180, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GAnO3vX4', '5641521'), + (1180, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GAnO3vX4', '5642818'), + (1180, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GAnO3vX4', '5652395'), + (1180, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GAnO3vX4', '5670445'), + (1180, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GAnO3vX4', '5671637'), + (1180, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GAnO3vX4', '5672329'), + (1180, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GAnO3vX4', '5674057'), + (1180, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GAnO3vX4', '5674060'), + (1180, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GAnO3vX4', '5677461'), + (1180, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GAnO3vX4', '5698046'), + (1180, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GAnO3vX4', '5699760'), + (1180, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GAnO3vX4', '5741601'), + (1180, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GAnO3vX4', '5763458'), + (1180, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GAnO3vX4', '5774172'), + (1180, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GAnO3vX4', '5818247'), + (1180, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GAnO3vX4', '5819471'), + (1180, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'GAnO3vX4', '5827739'), + (1180, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GAnO3vX4', '5844306'), + (1180, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GAnO3vX4', '5850159'), + (1180, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GAnO3vX4', '5858999'), + (1180, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GAnO3vX4', '5871984'), + (1180, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GAnO3vX4', '5876354'), + (1180, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GAnO3vX4', '5880939'), + (1180, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GAnO3vX4', '5880940'), + (1180, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GAnO3vX4', '5880942'), + (1180, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GAnO3vX4', '5880943'), + (1180, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GAnO3vX4', '5887890'), + (1180, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GAnO3vX4', '5888598'), + (1180, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GAnO3vX4', '5893260'), + (1180, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GAnO3vX4', '5899826'), + (1180, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GAnO3vX4', '5900199'), + (1180, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GAnO3vX4', '5900200'), + (1180, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GAnO3vX4', '5900202'), + (1180, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GAnO3vX4', '5900203'), + (1180, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GAnO3vX4', '5901108'), + (1180, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GAnO3vX4', '5901126'), + (1180, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'GAnO3vX4', '5901606'), + (1180, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GAnO3vX4', '5909655'), + (1180, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GAnO3vX4', '5910522'), + (1180, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GAnO3vX4', '5910526'), + (1180, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GAnO3vX4', '5910528'), + (1180, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GAnO3vX4', '5916219'), + (1180, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GAnO3vX4', '5936234'), + (1180, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GAnO3vX4', '5958351'), + (1180, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GAnO3vX4', '5959751'), + (1180, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GAnO3vX4', '5959755'), + (1180, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GAnO3vX4', '5960055'), + (1180, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GAnO3vX4', '5961684'), + (1180, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GAnO3vX4', '5962132'), + (1180, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GAnO3vX4', '5962133'), + (1180, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GAnO3vX4', '5962134'), + (1180, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GAnO3vX4', '5962317'), + (1180, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GAnO3vX4', '5962318'), + (1180, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GAnO3vX4', '5965933'), + (1180, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GAnO3vX4', '5967014'), + (1180, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GAnO3vX4', '5972815'), + (1180, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GAnO3vX4', '5974016'), + (1180, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GAnO3vX4', '5981515'), + (1180, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GAnO3vX4', '5993516'), + (1180, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GAnO3vX4', '5998939'), + (1180, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GAnO3vX4', '6028191'), + (1180, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GAnO3vX4', '6040066'), + (1180, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GAnO3vX4', '6042717'), + (1180, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GAnO3vX4', '6044838'), + (1180, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GAnO3vX4', '6044839'), + (1180, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GAnO3vX4', '6045684'), + (1180, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GAnO3vX4', '6050104'), + (1180, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GAnO3vX4', '6053195'), + (1180, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GAnO3vX4', '6053198'), + (1180, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GAnO3vX4', '6056085'), + (1180, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GAnO3vX4', '6056916'), + (1180, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GAnO3vX4', '6059290'), + (1180, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GAnO3vX4', '6060328'), + (1180, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GAnO3vX4', '6061037'), + (1180, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GAnO3vX4', '6061039'), + (1180, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GAnO3vX4', '6067245'), + (1180, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GAnO3vX4', '6068094'), + (1180, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GAnO3vX4', '6068252'), + (1180, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GAnO3vX4', '6068253'), + (1180, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GAnO3vX4', '6068254'), + (1180, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'GAnO3vX4', '6068280'), + (1180, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GAnO3vX4', '6069093'), + (1180, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GAnO3vX4', '6072528'), + (1180, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GAnO3vX4', '6079840'), + (1180, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GAnO3vX4', '6083398'), + (1180, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GAnO3vX4', '6093504'), + (1180, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GAnO3vX4', '6097414'), + (1180, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GAnO3vX4', '6097442'), + (1180, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GAnO3vX4', '6097684'), + (1180, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GAnO3vX4', '6098762'), + (1180, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GAnO3vX4', '6101361'), + (1180, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GAnO3vX4', '6101362'), + (1180, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GAnO3vX4', '6107314'), + (1180, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GAnO3vX4', '6120034'), + (1180, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GAnO3vX4', '6136733'), + (1180, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GAnO3vX4', '6137989'), + (1180, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GAnO3vX4', '6150864'), + (1180, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GAnO3vX4', '6155491'), + (1180, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GAnO3vX4', '6164417'), + (1180, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GAnO3vX4', '6166388'), + (1180, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GAnO3vX4', '6176439'), + (1180, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GAnO3vX4', '6182410'), + (1180, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GAnO3vX4', '6185812'), + (1180, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GAnO3vX4', '6187651'), + (1180, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GAnO3vX4', '6187963'), + (1180, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GAnO3vX4', '6187964'), + (1180, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GAnO3vX4', '6187966'), + (1180, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GAnO3vX4', '6187967'), + (1180, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GAnO3vX4', '6187969'), + (1180, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GAnO3vX4', '6334878'), + (1180, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GAnO3vX4', '6337236'), + (1180, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GAnO3vX4', '6337970'), + (1180, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GAnO3vX4', '6338308'), + (1180, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GAnO3vX4', '6341710'), + (1180, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GAnO3vX4', '6342044'), + (1180, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GAnO3vX4', '6342298'), + (1180, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GAnO3vX4', '6343294'), + (1180, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GAnO3vX4', '6347034'), + (1180, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GAnO3vX4', '6347056'), + (1180, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GAnO3vX4', '6353830'), + (1180, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GAnO3vX4', '6353831'), + (1180, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GAnO3vX4', '6357867'), + (1180, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GAnO3vX4', '6358652'), + (1180, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GAnO3vX4', '6361709'), + (1180, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GAnO3vX4', '6361710'), + (1180, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GAnO3vX4', '6361711'), + (1180, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GAnO3vX4', '6361712'), + (1180, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GAnO3vX4', '6361713'), + (1180, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GAnO3vX4', '6382573'), + (1180, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GAnO3vX4', '6388604'), + (1180, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GAnO3vX4', '6394629'), + (1180, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GAnO3vX4', '6394631'), + (1180, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GAnO3vX4', '6440863'), + (1180, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GAnO3vX4', '6445440'), + (1180, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GAnO3vX4', '6453951'), + (1180, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GAnO3vX4', '6461696'), + (1180, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GAnO3vX4', '6462129'), + (1180, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GAnO3vX4', '6463218'), + (1180, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GAnO3vX4', '6472181'), + (1180, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GAnO3vX4', '6482693'), + (1180, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GAnO3vX4', '6484200'), + (1180, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GAnO3vX4', '6484680'), + (1180, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GAnO3vX4', '6507741'), + (1180, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GAnO3vX4', '6514659'), + (1180, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GAnO3vX4', '6514660'), + (1180, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GAnO3vX4', '6519103'), + (1180, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GAnO3vX4', '6535681'), + (1180, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GAnO3vX4', '6584747'), + (1180, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GAnO3vX4', '6587097'), + (1180, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GAnO3vX4', '6609022'), + (1180, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GAnO3vX4', '6632757'), + (1180, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GAnO3vX4', '6644187'), + (1180, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GAnO3vX4', '6648951'), + (1180, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GAnO3vX4', '6648952'), + (1180, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GAnO3vX4', '6655401'), + (1180, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GAnO3vX4', '6661585'), + (1180, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GAnO3vX4', '6661588'), + (1180, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GAnO3vX4', '6661589'), + (1180, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GAnO3vX4', '6699906'), + (1180, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GAnO3vX4', '6699913'), + (1180, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GAnO3vX4', '6701109'), + (1180, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GAnO3vX4', '6705219'), + (1180, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GAnO3vX4', '6710153'), + (1180, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GAnO3vX4', '6711552'), + (1180, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GAnO3vX4', '6711553'), + (1180, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GAnO3vX4', '6722688'), + (1180, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GAnO3vX4', '6730620'), + (1180, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GAnO3vX4', '6740364'), + (1180, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GAnO3vX4', '6743829'), + (1180, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GAnO3vX4', '7030380'), + (1180, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GAnO3vX4', '7033677'), + (1180, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GAnO3vX4', '7044715'), + (1180, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GAnO3vX4', '7050318'), + (1180, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GAnO3vX4', '7050319'), + (1180, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GAnO3vX4', '7050322'), + (1180, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GAnO3vX4', '7057804'), + (1180, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GAnO3vX4', '7072824'), + (1180, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GAnO3vX4', '7074348'), + (1180, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAnO3vX4', '7074364'), + (1180, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GAnO3vX4', '7089267'), + (1180, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GAnO3vX4', '7098747'), + (1180, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GAnO3vX4', '7113468'), + (1180, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GAnO3vX4', '7114856'), + (1180, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GAnO3vX4', '7114951'), + (1180, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GAnO3vX4', '7114955'), + (1180, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GAnO3vX4', '7114956'), + (1180, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GAnO3vX4', '7114957'), + (1180, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GAnO3vX4', '7159484'), + (1180, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GAnO3vX4', '7178446'), + (1180, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GAnO3vX4', '7220467'), + (1180, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GAnO3vX4', '7240354'), + (1180, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GAnO3vX4', '7251633'), + (1180, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GAnO3vX4', '7324073'), + (1180, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAnO3vX4', '7324074'), + (1180, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAnO3vX4', '7324075'), + (1180, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GAnO3vX4', '7324078'), + (1180, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GAnO3vX4', '7324082'), + (1180, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GAnO3vX4', '7331457'), + (1180, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GAnO3vX4', '7363643'), + (1180, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAnO3vX4', '7368606'), + (1180, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GAnO3vX4', '7397462'), + (1180, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GAnO3vX4', '7424275'), + (1180, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAnO3vX4', '7432751'), + (1180, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAnO3vX4', '7432752'), + (1180, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAnO3vX4', '7432753'), + (1180, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAnO3vX4', '7432754'), + (1180, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAnO3vX4', '7432755'), + (1180, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAnO3vX4', '7432756'), + (1180, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAnO3vX4', '7432758'), + (1180, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAnO3vX4', '7432759'), + (1180, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAnO3vX4', '7433834'), + (1180, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GAnO3vX4', '7470197'), + (1180, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GAnO3vX4', '7685613'), + (1180, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAnO3vX4', '7688194'), + (1180, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAnO3vX4', '7688196'), + (1180, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAnO3vX4', '7688289'), + (1180, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAnO3vX4', '7692763'), + (1180, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAnO3vX4', '7697552'), + (1180, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAnO3vX4', '7699878'), + (1180, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GAnO3vX4', '7704043'), + (1180, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GAnO3vX4', '7712467'), + (1180, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GAnO3vX4', '7713585'), + (1180, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAnO3vX4', '7713586'), + (1180, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAnO3vX4', '7738518'), + (1180, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAnO3vX4', '7750636'), + (1180, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAnO3vX4', '7796540'), + (1180, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAnO3vX4', '7796541'), + (1180, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAnO3vX4', '7796542'), + (1180, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAnO3vX4', '7825913'), + (1180, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GAnO3vX4', '7826209'), + (1180, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAnO3vX4', '7834742'), + (1180, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GAnO3vX4', '7842108'), + (1180, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAnO3vX4', '7842902'), + (1180, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAnO3vX4', '7842903'), + (1180, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAnO3vX4', '7842904'), + (1180, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAnO3vX4', '7842905'), + (1180, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAnO3vX4', '7855719'), + (1180, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAnO3vX4', '7860683'), + (1180, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAnO3vX4', '7860684'), + (1180, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAnO3vX4', '7866095'), + (1180, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GAnO3vX4', '7869170'), + (1180, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GAnO3vX4', '7869188'), + (1180, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAnO3vX4', '7869201'), + (1180, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAnO3vX4', '7877465'), + (1180, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAnO3vX4', '7888250'), + (1180, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GAnO3vX4', '7904777'), + (1180, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAnO3vX4', '8349164'), + (1180, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAnO3vX4', '8349545'), + (1180, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GAnO3vX4', '8368028'), + (1180, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GAnO3vX4', '8368029'), + (1180, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAnO3vX4', '8388462'), + (1180, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GAnO3vX4', '8400273'), + (1180, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GAnO3vX4', '8400275'), + (1180, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'GAnO3vX4', '8400276'), + (1180, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GAnO3vX4', '8404977'), + (1180, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GAnO3vX4', '8430783'), + (1180, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GAnO3vX4', '8430784'), + (1180, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GAnO3vX4', '8430799'), + (1180, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GAnO3vX4', '8430800'), + (1180, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GAnO3vX4', '8430801'), + (1180, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GAnO3vX4', '8438709'), + (1180, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAnO3vX4', '8457738'), + (1180, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GAnO3vX4', '8459566'), + (1180, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GAnO3vX4', '8459567'), + (1180, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GAnO3vX4', '8461032'), + (1180, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAnO3vX4', '8477877'), + (1180, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAnO3vX4', '8485688'), + (1180, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAnO3vX4', '8490587'), + (1180, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAnO3vX4', '8493552'), + (1180, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAnO3vX4', '8493553'), + (1180, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAnO3vX4', '8493554'), + (1180, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAnO3vX4', '8493555'), + (1180, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAnO3vX4', '8493556'), + (1180, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAnO3vX4', '8493557'), + (1180, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAnO3vX4', '8493558'), + (1180, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAnO3vX4', '8493559'), + (1180, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAnO3vX4', '8493560'), + (1180, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GAnO3vX4', '8493561'), + (1180, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAnO3vX4', '8493572'), + (1180, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAnO3vX4', '8540725'), + (1180, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAnO3vX4', '8555421'), + (1181, 407, 'maybe', '2021-04-15 14:07:47', '2025-12-17 19:47:44', 'ZdNyKgX4', '3236465'), + (1181, 641, 'maybe', '2021-04-30 02:32:51', '2025-12-17 19:47:44', 'ZdNyKgX4', '3539916'), + (1181, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'ZdNyKgX4', '3539918'), + (1181, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539919'), + (1181, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539920'), + (1181, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539921'), + (1181, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539922'), + (1181, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'ZdNyKgX4', '3539923'), + (1181, 707, 'not_attending', '2021-04-14 12:59:50', '2025-12-17 19:47:46', 'ZdNyKgX4', '3583262'), + (1181, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ZdNyKgX4', '3730212'), + (1181, 777, 'attending', '2021-05-01 21:24:05', '2025-12-17 19:47:46', 'ZdNyKgX4', '3746248'), + (1181, 779, 'maybe', '2021-05-03 22:41:26', '2025-12-17 19:47:46', 'ZdNyKgX4', '3757118'), + (1181, 781, 'attending', '2021-05-05 21:56:50', '2025-12-17 19:47:46', 'ZdNyKgX4', '3760130'), + (1181, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ZdNyKgX4', '3793156'), + (1181, 823, 'attending', '2021-06-19 20:53:47', '2025-12-17 19:47:48', 'ZdNyKgX4', '3974109'), + (1181, 824, 'attending', '2021-06-03 21:56:07', '2025-12-17 19:47:47', 'ZdNyKgX4', '3974112'), + (1181, 827, 'attending', '2021-06-05 21:19:23', '2025-12-17 19:47:47', 'ZdNyKgX4', '3975311'), + (1181, 828, 'attending', '2021-06-12 18:42:08', '2025-12-17 19:47:47', 'ZdNyKgX4', '3975312'), + (1181, 837, 'attending', '2021-06-15 23:34:31', '2025-12-17 19:47:48', 'ZdNyKgX4', '3992545'), + (1181, 838, 'maybe', '2021-06-09 15:54:02', '2025-12-17 19:47:47', 'ZdNyKgX4', '3994992'), + (1181, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ZdNyKgX4', '4014338'), + (1181, 866, 'attending', '2021-06-21 23:04:35', '2025-12-17 19:47:38', 'ZdNyKgX4', '4020424'), + (1181, 867, 'attending', '2021-06-26 19:09:59', '2025-12-17 19:47:38', 'ZdNyKgX4', '4021848'), + (1181, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNyKgX4', '4136744'), + (1181, 870, 'attending', '2021-07-01 18:40:09', '2025-12-17 19:47:39', 'ZdNyKgX4', '4136937'), + (1181, 871, 'attending', '2021-07-10 15:29:58', '2025-12-17 19:47:39', 'ZdNyKgX4', '4136938'), + (1181, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNyKgX4', '4136947'), + (1181, 873, 'attending', '2021-06-15 23:34:59', '2025-12-17 19:47:48', 'ZdNyKgX4', '4138297'), + (1181, 874, 'attending', '2021-06-24 16:36:36', '2025-12-17 19:47:38', 'ZdNyKgX4', '4139815'), + (1181, 875, 'attending', '2021-07-01 18:40:26', '2025-12-17 19:47:38', 'ZdNyKgX4', '4139816'), + (1181, 877, 'attending', '2021-06-16 17:45:23', '2025-12-17 19:47:48', 'ZdNyKgX4', '4140575'), + (1181, 878, 'attending', '2021-06-21 23:04:43', '2025-12-17 19:47:38', 'ZdNyKgX4', '4143331'), + (1181, 879, 'attending', '2021-06-28 21:49:23', '2025-12-17 19:47:38', 'ZdNyKgX4', '4147806'), + (1181, 880, 'attending', '2021-06-19 21:40:18', '2025-12-17 19:47:48', 'ZdNyKgX4', '4205383'), + (1181, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNyKgX4', '4210314'), + (1181, 885, 'attending', '2021-06-27 22:26:36', '2025-12-17 19:47:38', 'ZdNyKgX4', '4222370'), + (1181, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ZdNyKgX4', '4225444'), + (1181, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNyKgX4', '4239259'), + (1181, 900, 'attending', '2021-07-24 18:44:04', '2025-12-17 19:47:40', 'ZdNyKgX4', '4240316'), + (1181, 901, 'attending', '2021-07-31 20:41:32', '2025-12-17 19:47:40', 'ZdNyKgX4', '4240317'), + (1181, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ZdNyKgX4', '4240318'), + (1181, 903, 'attending', '2021-08-14 20:48:55', '2025-12-17 19:47:42', 'ZdNyKgX4', '4240320'), + (1181, 904, 'maybe', '2021-07-05 21:00:41', '2025-12-17 19:47:39', 'ZdNyKgX4', '4241594'), + (1181, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNyKgX4', '4250163'), + (1181, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ZdNyKgX4', '4275957'), + (1181, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNyKgX4', '4277819'), + (1181, 929, 'maybe', '2021-08-05 21:15:21', '2025-12-17 19:47:41', 'ZdNyKgX4', '4297223'), + (1181, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNyKgX4', '4301723'), + (1181, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ZdNyKgX4', '4302093'), + (1181, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ZdNyKgX4', '4304151'), + (1181, 949, 'maybe', '2021-08-16 23:34:54', '2025-12-17 19:47:42', 'ZdNyKgX4', '4315726'), + (1181, 952, 'maybe', '2021-08-05 20:53:34', '2025-12-17 19:47:41', 'ZdNyKgX4', '4318286'), + (1181, 957, 'maybe', '2021-08-05 21:14:26', '2025-12-17 19:47:41', 'ZdNyKgX4', '4338834'), + (1181, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ZdNyKgX4', '4345519'), + (1181, 967, 'maybe', '2021-08-15 01:48:08', '2025-12-17 19:47:42', 'ZdNyKgX4', '4356164'), + (1181, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ZdNyKgX4', '4356801'), + (1181, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ZdNyKgX4', '4358025'), + (1181, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ZdNyKgX4', '4366186'), + (1181, 974, 'maybe', '2021-08-28 21:22:09', '2025-12-17 19:47:43', 'ZdNyKgX4', '4366187'), + (1181, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ZdNyKgX4', '4402823'), + (1181, 990, 'not_attending', '2021-09-04 21:48:38', '2025-12-17 19:47:43', 'ZdNyKgX4', '4420735'), + (1181, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ZdNyKgX4', '4420738'), + (1181, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ZdNyKgX4', '4420739'), + (1181, 993, 'not_attending', '2021-09-25 20:48:04', '2025-12-17 19:47:34', 'ZdNyKgX4', '4420741'), + (1181, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ZdNyKgX4', '4420744'), + (1181, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ZdNyKgX4', '4420747'), + (1181, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ZdNyKgX4', '4420748'), + (1181, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ZdNyKgX4', '4420749'), + (1181, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ZdNyKgX4', '4461883'), + (1181, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ZdNyKgX4', '4508342'), + (1181, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ZdNyKgX4', '4568602'), + (1181, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ZdNyKgX4', '4572153'), + (1181, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ZdNyKgX4', '4585962'), + (1181, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ZdNyKgX4', '4596356'), + (1181, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ZdNyKgX4', '4598860'), + (1181, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ZdNyKgX4', '4598861'), + (1181, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ZdNyKgX4', '4602797'), + (1181, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ZdNyKgX4', '4637896'), + (1181, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ZdNyKgX4', '4642994'), + (1181, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ZdNyKgX4', '4642995'), + (1181, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ZdNyKgX4', '4642996'), + (1181, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ZdNyKgX4', '4642997'), + (1181, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ZdNyKgX4', '4645687'), + (1181, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ZdNyKgX4', '4645698'), + (1181, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ZdNyKgX4', '4645704'), + (1181, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ZdNyKgX4', '4645705'), + (1181, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ZdNyKgX4', '4668385'), + (1181, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ZdNyKgX4', '4694407'), + (1181, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ZdNyKgX4', '4736497'), + (1181, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ZdNyKgX4', '4736499'), + (1181, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ZdNyKgX4', '4736500'), + (1181, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ZdNyKgX4', '4736503'), + (1181, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ZdNyKgX4', '4736504'), + (1181, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ZdNyKgX4', '4746789'), + (1181, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ZdNyKgX4', '4753929'), + (1181, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ZdNyKgX4', '5038850'), + (1181, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ZdNyKgX4', '5045826'), + (1181, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ZdNyKgX4', '5132533'), + (1181, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ZdNyKgX4', '5186582'), + (1181, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ZdNyKgX4', '5186583'), + (1181, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ZdNyKgX4', '5186585'), + (1181, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ZdNyKgX4', '5190437'), + (1181, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ZdNyKgX4', '5215989'), + (1181, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNyKgX4', '6045684'), + (1182, 991, 'not_attending', '2021-09-11 21:32:48', '2025-12-17 19:47:43', 'dVBLOD6d', '4420738'), + (1182, 992, 'attending', '2021-09-16 19:47:26', '2025-12-17 19:47:33', 'dVBLOD6d', '4420739'), + (1182, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dVBLOD6d', '4420741'), + (1182, 994, 'attending', '2021-10-02 02:03:47', '2025-12-17 19:47:34', 'dVBLOD6d', '4420742'), + (1182, 995, 'attending', '2021-10-09 21:09:33', '2025-12-17 19:47:34', 'dVBLOD6d', '4420744'), + (1182, 996, 'attending', '2021-10-16 22:28:33', '2025-12-17 19:47:35', 'dVBLOD6d', '4420747'), + (1182, 1004, 'attending', '2021-09-13 16:58:09', '2025-12-17 19:47:43', 'dVBLOD6d', '4438804'), + (1182, 1019, 'attending', '2021-09-16 19:46:19', '2025-12-17 19:47:43', 'dVBLOD6d', '4450515'), + (1182, 1021, 'attending', '2021-09-18 21:14:48', '2025-12-17 19:47:34', 'dVBLOD6d', '4451803'), + (1182, 1022, 'attending', '2021-09-15 17:31:18', '2025-12-17 19:47:43', 'dVBLOD6d', '4458628'), + (1182, 1023, 'not_attending', '2021-09-10 01:51:52', '2025-12-17 19:47:43', 'dVBLOD6d', '4461883'), + (1182, 1029, 'attending', '2021-09-16 19:47:05', '2025-12-17 19:47:43', 'dVBLOD6d', '4473063'), + (1182, 1031, 'attending', '2021-09-22 18:49:30', '2025-12-17 19:47:34', 'dVBLOD6d', '4473789'), + (1182, 1034, 'attending', '2021-09-16 19:47:19', '2025-12-17 19:47:43', 'dVBLOD6d', '4486265'), + (1182, 1035, 'attending', '2021-09-18 21:14:44', '2025-12-17 19:47:34', 'dVBLOD6d', '4492184'), + (1182, 1037, 'attending', '2021-09-18 21:15:03', '2025-12-17 19:47:34', 'dVBLOD6d', '4493233'), + (1182, 1065, 'attending', '2021-09-21 19:44:21', '2025-12-17 19:47:34', 'dVBLOD6d', '4505800'), + (1182, 1067, 'attending', '2021-09-24 19:52:25', '2025-12-17 19:47:34', 'dVBLOD6d', '4508342'), + (1182, 1078, 'attending', '2021-10-07 02:29:20', '2025-12-17 19:47:34', 'dVBLOD6d', '4541281'), + (1182, 1086, 'not_attending', '2021-10-15 18:12:45', '2025-12-17 19:47:35', 'dVBLOD6d', '4568602'), + (1182, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVBLOD6d', '4572153'), + (1182, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dVBLOD6d', '4585962'), + (1182, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dVBLOD6d', '4596356'), + (1182, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dVBLOD6d', '4598860'), + (1182, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dVBLOD6d', '4598861'), + (1182, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dVBLOD6d', '4602797'), + (1182, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dVBLOD6d', '4637896'), + (1182, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dVBLOD6d', '4642994'), + (1182, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dVBLOD6d', '4642995'), + (1182, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dVBLOD6d', '4642996'), + (1182, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dVBLOD6d', '4642997'), + (1182, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dVBLOD6d', '4645687'), + (1182, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dVBLOD6d', '4645698'), + (1182, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dVBLOD6d', '4645704'), + (1182, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dVBLOD6d', '4645705'), + (1182, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dVBLOD6d', '4668385'), + (1182, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dVBLOD6d', '4694407'), + (1182, 1174, 'attending', '2022-01-15 18:16:17', '2025-12-17 19:47:31', 'dVBLOD6d', '4736496'), + (1182, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dVBLOD6d', '4736497'), + (1182, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dVBLOD6d', '4736499'), + (1182, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dVBLOD6d', '4736500'), + (1182, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dVBLOD6d', '4736503'), + (1182, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dVBLOD6d', '4736504'), + (1182, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVBLOD6d', '4746789'), + (1182, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dVBLOD6d', '4753929'), + (1182, 1197, 'attending', '2022-01-24 23:28:53', '2025-12-17 19:47:32', 'dVBLOD6d', '4766799'), + (1182, 1198, 'attending', '2022-01-24 23:28:47', '2025-12-17 19:47:32', 'dVBLOD6d', '4766801'), + (1182, 1219, 'attending', '2022-02-02 23:12:21', '2025-12-17 19:47:32', 'dVBLOD6d', '4788466'), + (1182, 1232, 'not_attending', '2022-02-10 18:39:54', '2025-12-17 19:47:32', 'dVBLOD6d', '5038850'), + (1182, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dVBLOD6d', '5045826'), + (1182, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVBLOD6d', '5132533'), + (1182, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dVBLOD6d', '5186582'), + (1182, 1273, 'attending', '2022-03-26 19:55:27', '2025-12-17 19:47:25', 'dVBLOD6d', '5186583'), + (1182, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dVBLOD6d', '5186585'), + (1182, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVBLOD6d', '5190437'), + (1182, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dVBLOD6d', '5195095'), + (1182, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVBLOD6d', '5215989'), + (1182, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVBLOD6d', '5223686'), + (1182, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVBLOD6d', '5227432'), + (1182, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dVBLOD6d', '5247467'), + (1182, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dVBLOD6d', '5260800'), + (1182, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dVBLOD6d', '5269930'), + (1182, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dVBLOD6d', '5271448'), + (1182, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dVBLOD6d', '5271449'), + (1182, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dVBLOD6d', '5276469'), + (1182, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVBLOD6d', '5278159'), + (1182, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dVBLOD6d', '5363695'), + (1182, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVBLOD6d', '5365960'), + (1182, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dVBLOD6d', '5368973'), + (1182, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVBLOD6d', '5378247'), + (1182, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'dVBLOD6d', '5389605'), + (1182, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dVBLOD6d', '5397265'), + (1182, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dVBLOD6d', '5403967'), + (1182, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVBLOD6d', '5404786'), + (1182, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVBLOD6d', '5405203'), + (1182, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'dVBLOD6d', '5408794'), + (1182, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dVBLOD6d', '5411699'), + (1182, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dVBLOD6d', '5412550'), + (1182, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dVBLOD6d', '5415046'), + (1182, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVBLOD6d', '5422086'), + (1182, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dVBLOD6d', '5422406'), + (1182, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVBLOD6d', '5424565'), + (1182, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVBLOD6d', '5426882'), + (1182, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dVBLOD6d', '5427083'), + (1182, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dVBLOD6d', '5441125'), + (1182, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dVBLOD6d', '5441126'), + (1182, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVBLOD6d', '5441128'), + (1182, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVBLOD6d', '5441131'), + (1182, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVBLOD6d', '5441132'), + (1182, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVBLOD6d', '5446643'), + (1182, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVBLOD6d', '5453325'), + (1182, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVBLOD6d', '5454516'), + (1182, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVBLOD6d', '5454605'), + (1182, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVBLOD6d', '5455037'), + (1182, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVBLOD6d', '5461278'), + (1182, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVBLOD6d', '5469480'), + (1182, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVBLOD6d', '5471073'), + (1182, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVBLOD6d', '5474663'), + (1182, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVBLOD6d', '5482022'), + (1182, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVBLOD6d', '5482793'), + (1182, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVBLOD6d', '5488912'), + (1182, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVBLOD6d', '5492192'), + (1182, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVBLOD6d', '5493139'), + (1182, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVBLOD6d', '5493200'), + (1182, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVBLOD6d', '5502188'), + (1182, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVBLOD6d', '5505059'), + (1182, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVBLOD6d', '5509055'), + (1182, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVBLOD6d', '5512862'), + (1182, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVBLOD6d', '5513985'), + (1182, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'dVBLOD6d', '5519981'), + (1182, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVBLOD6d', '5522550'), + (1182, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVBLOD6d', '5534683'), + (1182, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dVBLOD6d', '5537735'), + (1182, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVBLOD6d', '5540859'), + (1182, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVBLOD6d', '5546619'), + (1182, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVBLOD6d', '5555245'), + (1182, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVBLOD6d', '5557747'), + (1182, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVBLOD6d', '5560255'), + (1182, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVBLOD6d', '5562906'), + (1182, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVBLOD6d', '5600604'), + (1182, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVBLOD6d', '5605544'), + (1182, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'dVBLOD6d', '5606737'), + (1182, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVBLOD6d', '5635406'), + (1182, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVBLOD6d', '5638765'), + (1182, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVBLOD6d', '5640843'), + (1182, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVBLOD6d', '5641521'), + (1182, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVBLOD6d', '6045684'), + (1183, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd8j0vx0A', '7074364'), + (1183, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'd8j0vx0A', '7301638'), + (1183, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd8j0vx0A', '7324073'), + (1183, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd8j0vx0A', '7324074'), + (1183, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd8j0vx0A', '7324075'), + (1183, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd8j0vx0A', '7324078'), + (1183, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd8j0vx0A', '7331457'), + (1183, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'd8j0vx0A', '7335193'), + (1183, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'd8j0vx0A', '7359624'), + (1183, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd8j0vx0A', '7363643'), + (1183, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd8j0vx0A', '7368606'), + (1184, 643, 'attending', '2021-04-14 03:59:21', '2025-12-17 19:47:45', '64vkO1Wd', '3539918'), + (1184, 644, 'attending', '2021-04-17 00:43:00', '2025-12-17 19:47:45', '64vkO1Wd', '3539919'), + (1184, 645, 'not_attending', '2021-05-08 21:16:45', '2025-12-17 19:47:46', '64vkO1Wd', '3539920'), + (1184, 646, 'attending', '2021-04-18 02:26:35', '2025-12-17 19:47:46', '64vkO1Wd', '3539921'), + (1184, 647, 'attending', '2021-04-18 02:26:36', '2025-12-17 19:47:46', '64vkO1Wd', '3539922'), + (1184, 648, 'attending', '2021-05-29 16:06:18', '2025-12-17 19:47:47', '64vkO1Wd', '3539923'), + (1184, 707, 'attending', '2021-04-26 13:11:53', '2025-12-17 19:47:46', '64vkO1Wd', '3583262'), + (1184, 724, 'attending', '2021-05-09 20:45:13', '2025-12-17 19:47:46', '64vkO1Wd', '3661369'), + (1184, 735, 'attending', '2021-05-01 21:31:28', '2025-12-17 19:47:46', '64vkO1Wd', '3677402'), + (1184, 756, 'attending', '2021-04-17 19:11:51', '2025-12-17 19:47:46', '64vkO1Wd', '3704795'), + (1184, 761, 'attending', '2021-05-14 22:50:35', '2025-12-17 19:47:46', '64vkO1Wd', '3716041'), + (1184, 764, 'maybe', '2021-04-23 20:25:17', '2025-12-17 19:47:45', '64vkO1Wd', '3720507'), + (1184, 765, 'attending', '2021-04-21 02:30:05', '2025-12-17 19:47:45', '64vkO1Wd', '3720508'), + (1184, 767, 'attending', '2021-04-26 13:12:29', '2025-12-17 19:47:46', '64vkO1Wd', '3722476'), + (1184, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '64vkO1Wd', '3730212'), + (1184, 776, 'attending', '2021-04-25 02:38:04', '2025-12-17 19:47:46', '64vkO1Wd', '3733455'), + (1184, 777, 'attending', '2021-05-01 21:31:03', '2025-12-17 19:47:46', '64vkO1Wd', '3746248'), + (1184, 782, 'attending', '2021-05-01 01:17:08', '2025-12-17 19:47:46', '64vkO1Wd', '3761843'), + (1184, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '64vkO1Wd', '3793156'), + (1184, 799, 'maybe', '2021-05-10 00:08:28', '2025-12-17 19:47:46', '64vkO1Wd', '3797767'), + (1184, 809, 'maybe', '2021-05-16 21:34:30', '2025-12-17 19:47:46', '64vkO1Wd', '3807964'), + (1184, 823, 'maybe', '2021-06-16 03:24:23', '2025-12-17 19:47:48', '64vkO1Wd', '3974109'), + (1184, 827, 'attending', '2021-06-05 19:09:25', '2025-12-17 19:47:47', '64vkO1Wd', '3975311'), + (1184, 828, 'attending', '2021-06-13 02:33:15', '2025-12-17 19:47:47', '64vkO1Wd', '3975312'), + (1184, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '64vkO1Wd', '3994992'), + (1184, 841, 'attending', '2021-06-15 23:20:35', '2025-12-17 19:47:48', '64vkO1Wd', '4007434'), + (1184, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '64vkO1Wd', '4014338'), + (1184, 866, 'maybe', '2021-06-15 04:56:33', '2025-12-17 19:47:38', '64vkO1Wd', '4020424'), + (1184, 867, 'attending', '2021-06-16 03:24:25', '2025-12-17 19:47:38', '64vkO1Wd', '4021848'), + (1184, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '64vkO1Wd', '4136744'), + (1184, 870, 'attending', '2021-06-16 03:24:27', '2025-12-17 19:47:38', '64vkO1Wd', '4136937'), + (1184, 871, 'attending', '2021-06-16 03:24:29', '2025-12-17 19:47:39', '64vkO1Wd', '4136938'), + (1184, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '64vkO1Wd', '4136947'), + (1184, 873, 'attending', '2021-06-15 04:56:17', '2025-12-17 19:47:48', '64vkO1Wd', '4138297'), + (1184, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '64vkO1Wd', '4210314'), + (1184, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '64vkO1Wd', '4225444'), + (1184, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '64vkO1Wd', '4239259'), + (1184, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '64vkO1Wd', '4240316'), + (1184, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '64vkO1Wd', '4240317'), + (1184, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '64vkO1Wd', '4240318'), + (1184, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '64vkO1Wd', '4240320'), + (1184, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '64vkO1Wd', '4250163'), + (1184, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '64vkO1Wd', '4275957'), + (1184, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '64vkO1Wd', '4277819'), + (1184, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '64vkO1Wd', '4301723'), + (1184, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '64vkO1Wd', '4302093'), + (1184, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '64vkO1Wd', '4304151'), + (1184, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '64vkO1Wd', '4345519'), + (1184, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '64vkO1Wd', '4356801'), + (1184, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '64vkO1Wd', '4358025'), + (1184, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '64vkO1Wd', '4366186'), + (1184, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '64vkO1Wd', '4366187'), + (1184, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '64vkO1Wd', '4402823'), + (1184, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '64vkO1Wd', '4420735'), + (1184, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '64vkO1Wd', '4420738'), + (1184, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '64vkO1Wd', '4420739'), + (1184, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '64vkO1Wd', '4420741'), + (1184, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '64vkO1Wd', '4420744'), + (1184, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '64vkO1Wd', '4420747'), + (1184, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '64vkO1Wd', '4420748'), + (1184, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '64vkO1Wd', '4420749'), + (1184, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '64vkO1Wd', '4461883'), + (1184, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '64vkO1Wd', '4508342'), + (1184, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '64vkO1Wd', '4568602'), + (1184, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '64vkO1Wd', '4572153'), + (1184, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', '64vkO1Wd', '4585962'), + (1184, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '64vkO1Wd', '4596356'), + (1184, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '64vkO1Wd', '4598860'), + (1184, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '64vkO1Wd', '4598861'), + (1184, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '64vkO1Wd', '4602797'), + (1184, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '64vkO1Wd', '4637896'), + (1184, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '64vkO1Wd', '4642994'), + (1184, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '64vkO1Wd', '4642995'), + (1184, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '64vkO1Wd', '4642996'), + (1184, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '64vkO1Wd', '4642997'), + (1184, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '64vkO1Wd', '4645687'), + (1184, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '64vkO1Wd', '4645698'), + (1184, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '64vkO1Wd', '4645704'), + (1184, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '64vkO1Wd', '4645705'), + (1184, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '64vkO1Wd', '4668385'), + (1184, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '64vkO1Wd', '4694407'), + (1184, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '64vkO1Wd', '4736497'), + (1184, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '64vkO1Wd', '4736499'), + (1184, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '64vkO1Wd', '4736500'), + (1184, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '64vkO1Wd', '4746789'), + (1184, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '64vkO1Wd', '4753929'), + (1184, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '64vkO1Wd', '5038850'), + (1184, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '64vkO1Wd', '5045826'), + (1184, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64vkO1Wd', '6045684'), + (1185, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '8418gG8A', '7074364'), + (1185, 2626, 'not_attending', '2024-05-18 19:20:42', '2025-12-17 19:46:35', '8418gG8A', '7264723'), + (1185, 2627, 'maybe', '2024-05-21 15:17:01', '2025-12-17 19:46:35', '8418gG8A', '7264724'), + (1185, 2628, 'attending', '2024-05-28 00:59:30', '2025-12-17 19:46:36', '8418gG8A', '7264725'), + (1185, 2638, 'not_attending', '2024-05-20 04:32:23', '2025-12-17 19:46:35', '8418gG8A', '7273117'), + (1185, 2640, 'attending', '2024-05-20 03:57:17', '2025-12-17 19:46:35', '8418gG8A', '7275331'), + (1185, 2641, 'attending', '2024-05-18 01:55:38', '2025-12-17 19:46:35', '8418gG8A', '7276107'), + (1185, 2644, 'attending', '2024-05-21 15:16:51', '2025-12-17 19:46:35', '8418gG8A', '7279039'), + (1185, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', '8418gG8A', '7281768'), + (1185, 2647, 'not_attending', '2024-05-21 00:13:44', '2025-12-17 19:46:28', '8418gG8A', '7282057'), + (1185, 2648, 'attending', '2024-05-21 03:26:53', '2025-12-17 19:46:35', '8418gG8A', '7282283'), + (1185, 2650, 'maybe', '2024-05-24 16:29:15', '2025-12-17 19:46:36', '8418gG8A', '7288199'), + (1185, 2651, 'maybe', '2024-05-24 17:12:05', '2025-12-17 19:46:35', '8418gG8A', '7288200'), + (1185, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '8418gG8A', '7302674'), + (1185, 2678, 'attending', '2024-06-15 18:41:21', '2025-12-17 19:46:28', '8418gG8A', '7319489'), + (1185, 2679, 'attending', '2024-06-16 03:25:05', '2025-12-17 19:46:29', '8418gG8A', '7319490'), + (1185, 2686, 'attending', '2024-06-16 03:30:20', '2025-12-17 19:46:29', '8418gG8A', '7323802'), + (1185, 2688, 'attending', '2024-06-16 03:25:01', '2025-12-17 19:46:29', '8418gG8A', '7324073'), + (1185, 2689, 'attending', '2024-06-16 03:25:03', '2025-12-17 19:46:29', '8418gG8A', '7324074'), + (1185, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '8418gG8A', '7324075'), + (1185, 2691, 'not_attending', '2024-07-18 21:38:44', '2025-12-17 19:46:30', '8418gG8A', '7324076'), + (1185, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '8418gG8A', '7324078'), + (1185, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '8418gG8A', '7324082'), + (1185, 2698, 'maybe', '2024-09-07 02:24:55', '2025-12-17 19:46:24', '8418gG8A', '7324083'), + (1185, 2699, 'attending', '2024-06-12 20:36:45', '2025-12-17 19:46:28', '8418gG8A', '7324385'), + (1185, 2700, 'attending', '2024-06-13 20:23:25', '2025-12-17 19:46:28', '8418gG8A', '7324388'), + (1185, 2703, 'not_attending', '2024-06-13 01:45:14', '2025-12-17 19:46:28', '8418gG8A', '7324873'), + (1185, 2707, 'attending', '2024-06-16 03:18:32', '2025-12-17 19:46:28', '8418gG8A', '7324952'), + (1185, 2709, 'maybe', '2024-06-16 03:30:42', '2025-12-17 19:46:29', '8418gG8A', '7325107'), + (1185, 2710, 'attending', '2024-06-16 03:30:23', '2025-12-17 19:46:28', '8418gG8A', '7325108'), + (1185, 2713, 'attending', '2024-06-15 18:56:29', '2025-12-17 19:46:28', '8418gG8A', '7326593'), + (1185, 2721, 'not_attending', '2024-06-18 22:40:21', '2025-12-17 19:46:29', '8418gG8A', '7331456'), + (1185, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '8418gG8A', '7331457'), + (1185, 2756, 'maybe', '2024-07-10 20:55:41', '2025-12-17 19:46:29', '8418gG8A', '7358329'), + (1185, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '8418gG8A', '7363643'), + (1185, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '8418gG8A', '7368606'), + (1185, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '8418gG8A', '7397462'), + (1185, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '8418gG8A', '7424275'), + (1185, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '8418gG8A', '7424276'), + (1185, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '8418gG8A', '7432751'), + (1185, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '8418gG8A', '7432752'), + (1185, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '8418gG8A', '7432753'), + (1185, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '8418gG8A', '7432754'), + (1185, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '8418gG8A', '7432755'), + (1185, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '8418gG8A', '7432756'), + (1185, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '8418gG8A', '7432758'), + (1185, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '8418gG8A', '7432759'), + (1185, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '8418gG8A', '7433834'), + (1185, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '8418gG8A', '7470197'), + (1185, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '8418gG8A', '7685613'), + (1185, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '8418gG8A', '7688194'), + (1185, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '8418gG8A', '7688196'), + (1185, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '8418gG8A', '7688289'), + (1185, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '8418gG8A', '7692763'), + (1185, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '8418gG8A', '7697552'), + (1185, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '8418gG8A', '7699878'), + (1185, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '8418gG8A', '7704043'), + (1185, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '8418gG8A', '7712467'), + (1185, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '8418gG8A', '7713585'), + (1185, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '8418gG8A', '7713586'), + (1185, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '8418gG8A', '7738518'), + (1185, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '8418gG8A', '7750632'), + (1185, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '8418gG8A', '7750636'), + (1185, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '8418gG8A', '7796540'), + (1185, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '8418gG8A', '7796541'), + (1185, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '8418gG8A', '7796542'), + (1185, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '8418gG8A', '7825913'), + (1185, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '8418gG8A', '7826209'), + (1185, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '8418gG8A', '7834742'), + (1185, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '8418gG8A', '7842108'), + (1185, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '8418gG8A', '7842902'), + (1185, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '8418gG8A', '7842903'), + (1185, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '8418gG8A', '7842904'), + (1185, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '8418gG8A', '7842905'), + (1185, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '8418gG8A', '7855719'), + (1185, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '8418gG8A', '7860683'), + (1185, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '8418gG8A', '7860684'), + (1185, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '8418gG8A', '7866095'), + (1185, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '8418gG8A', '7869170'), + (1185, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '8418gG8A', '7869188'), + (1185, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '8418gG8A', '7869201'), + (1185, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '8418gG8A', '7877465'), + (1185, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '8418gG8A', '7888250'), + (1185, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '8418gG8A', '7904777'), + (1185, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '8418gG8A', '8349164'), + (1185, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '8418gG8A', '8349545'), + (1185, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '8418gG8A', '8368028'), + (1185, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '8418gG8A', '8368029'), + (1185, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '8418gG8A', '8388462'), + (1185, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '8418gG8A', '8400273'), + (1185, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '8418gG8A', '8400275'), + (1185, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '8418gG8A', '8400276'), + (1185, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '8418gG8A', '8404977'), + (1185, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '8418gG8A', '8430783'), + (1185, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '8418gG8A', '8430784'), + (1185, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '8418gG8A', '8430799'), + (1185, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '8418gG8A', '8430800'), + (1185, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '8418gG8A', '8430801'), + (1185, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '8418gG8A', '8438709'), + (1185, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '8418gG8A', '8457738'), + (1185, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '8418gG8A', '8459566'), + (1185, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '8418gG8A', '8459567'), + (1185, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '8418gG8A', '8461032'), + (1185, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '8418gG8A', '8477877'), + (1185, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '8418gG8A', '8485688'), + (1185, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '8418gG8A', '8490587'), + (1185, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '8418gG8A', '8493552'), + (1185, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '8418gG8A', '8493553'), + (1185, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '8418gG8A', '8493554'), + (1185, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '8418gG8A', '8493555'), + (1185, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '8418gG8A', '8493556'), + (1185, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '8418gG8A', '8493557'), + (1185, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '8418gG8A', '8493558'), + (1185, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '8418gG8A', '8493559'), + (1185, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '8418gG8A', '8493560'), + (1185, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '8418gG8A', '8493561'), + (1185, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '8418gG8A', '8493572'), + (1185, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '8418gG8A', '8540725'), + (1185, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '8418gG8A', '8555421'), + (1186, 645, 'attending', '2021-05-09 21:03:39', '2025-12-17 19:47:46', 'amGR6vnd', '3539920'), + (1186, 646, 'attending', '2021-05-14 16:38:20', '2025-12-17 19:47:46', 'amGR6vnd', '3539921'), + (1186, 647, 'attending', '2021-05-17 21:04:52', '2025-12-17 19:47:46', 'amGR6vnd', '3539922'), + (1186, 648, 'attending', '2021-05-24 21:59:52', '2025-12-17 19:47:47', 'amGR6vnd', '3539923'), + (1186, 724, 'attending', '2021-05-09 18:41:59', '2025-12-17 19:47:46', 'amGR6vnd', '3661369'), + (1186, 725, 'attending', '2021-05-21 20:36:21', '2025-12-17 19:47:47', 'amGR6vnd', '3661372'), + (1186, 739, 'attending', '2021-05-07 13:59:28', '2025-12-17 19:47:46', 'amGR6vnd', '3680616'), + (1186, 741, 'attending', '2021-05-12 16:51:11', '2025-12-17 19:47:46', 'amGR6vnd', '3680618'), + (1186, 766, 'attending', '2021-05-09 02:45:24', '2025-12-17 19:47:46', 'amGR6vnd', '3721383'), + (1186, 785, 'maybe', '2021-05-11 18:18:12', '2025-12-17 19:47:46', 'amGR6vnd', '3779779'), + (1186, 787, 'not_attending', '2021-05-10 19:09:47', '2025-12-17 19:47:46', 'amGR6vnd', '3780558'), + (1186, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'amGR6vnd', '3793156'), + (1186, 796, 'attending', '2021-05-11 01:20:02', '2025-12-17 19:47:46', 'amGR6vnd', '3793862'), + (1186, 797, 'attending', '2021-05-25 01:53:36', '2025-12-17 19:47:47', 'amGR6vnd', '3796195'), + (1186, 798, 'attending', '2021-05-12 16:51:03', '2025-12-17 19:47:46', 'amGR6vnd', '3796262'), + (1186, 799, 'maybe', '2021-05-11 18:16:31', '2025-12-17 19:47:46', 'amGR6vnd', '3797767'), + (1186, 803, 'attending', '2021-05-12 16:51:08', '2025-12-17 19:47:46', 'amGR6vnd', '3804665'), + (1186, 804, 'attending', '2021-05-12 16:51:29', '2025-12-17 19:47:47', 'amGR6vnd', '3804775'), + (1186, 813, 'attending', '2021-05-14 16:38:13', '2025-12-17 19:47:46', 'amGR6vnd', '3810231'), + (1186, 815, 'attending', '2021-05-28 22:59:32', '2025-12-17 19:47:47', 'amGR6vnd', '3818136'), + (1186, 818, 'attending', '2021-05-31 16:50:37', '2025-12-17 19:47:47', 'amGR6vnd', '3833015'), + (1186, 819, 'attending', '2021-05-30 16:55:54', '2025-12-17 19:47:47', 'amGR6vnd', '3833017'), + (1186, 821, 'attending', '2021-05-28 16:09:43', '2025-12-17 19:47:47', 'amGR6vnd', '3963965'), + (1186, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amGR6vnd', '3974109'), + (1186, 824, 'not_attending', '2021-06-03 16:11:00', '2025-12-17 19:47:47', 'amGR6vnd', '3974112'), + (1186, 825, 'attending', '2021-06-03 16:20:49', '2025-12-17 19:47:47', 'amGR6vnd', '3975283'), + (1186, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGR6vnd', '3975311'), + (1186, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amGR6vnd', '3975312'), + (1186, 830, 'attending', '2021-06-03 16:11:04', '2025-12-17 19:47:47', 'amGR6vnd', '3976648'), + (1186, 831, 'attending', '2021-06-04 21:43:13', '2025-12-17 19:47:47', 'amGR6vnd', '3976649'), + (1186, 832, 'maybe', '2021-06-05 00:29:30', '2025-12-17 19:47:47', 'amGR6vnd', '3976650'), + (1186, 833, 'attending', '2021-06-03 16:14:56', '2025-12-17 19:47:47', 'amGR6vnd', '3990438'), + (1186, 838, 'maybe', '2021-06-09 23:01:03', '2025-12-17 19:47:47', 'amGR6vnd', '3994992'), + (1186, 839, 'not_attending', '2021-06-06 19:05:34', '2025-12-17 19:47:47', 'amGR6vnd', '4002121'), + (1186, 840, 'attending', '2021-06-08 00:51:12', '2025-12-17 19:47:47', 'amGR6vnd', '4007283'), + (1186, 841, 'not_attending', '2021-06-15 22:42:19', '2025-12-17 19:47:48', 'amGR6vnd', '4007434'), + (1186, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGR6vnd', '4014338'), + (1186, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amGR6vnd', '4021848'), + (1186, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amGR6vnd', '4136744'), + (1186, 870, 'maybe', '2021-07-02 16:46:43', '2025-12-17 19:47:39', 'amGR6vnd', '4136937'), + (1186, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'amGR6vnd', '4136938'), + (1186, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amGR6vnd', '4136947'), + (1186, 881, 'not_attending', '2021-06-18 18:41:23', '2025-12-17 19:47:38', 'amGR6vnd', '4205662'), + (1186, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGR6vnd', '4210314'), + (1186, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGR6vnd', '4225444'), + (1186, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amGR6vnd', '4239259'), + (1186, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGR6vnd', '4240316'), + (1186, 901, 'attending', '2021-07-31 19:08:07', '2025-12-17 19:47:40', 'amGR6vnd', '4240317'), + (1186, 902, 'attending', '2021-08-07 16:09:09', '2025-12-17 19:47:41', 'amGR6vnd', '4240318'), + (1186, 903, 'attending', '2021-08-08 02:02:44', '2025-12-17 19:47:42', 'amGR6vnd', '4240320'), + (1186, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amGR6vnd', '4250163'), + (1186, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGR6vnd', '4275957'), + (1186, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amGR6vnd', '4277819'), + (1186, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amGR6vnd', '4301723'), + (1186, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'amGR6vnd', '4302093'), + (1186, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amGR6vnd', '4304151'), + (1186, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'amGR6vnd', '4356801'), + (1186, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'amGR6vnd', '4366186'), + (1186, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'amGR6vnd', '4366187'), + (1186, 990, 'not_attending', '2021-09-04 21:12:12', '2025-12-17 19:47:43', 'amGR6vnd', '4420735'), + (1186, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'amGR6vnd', '4420738'), + (1186, 992, 'attending', '2021-09-17 18:06:27', '2025-12-17 19:47:33', 'amGR6vnd', '4420739'), + (1186, 993, 'attending', '2021-09-24 00:20:46', '2025-12-17 19:47:34', 'amGR6vnd', '4420741'), + (1186, 994, 'attending', '2021-10-02 20:48:20', '2025-12-17 19:47:34', 'amGR6vnd', '4420742'), + (1186, 995, 'attending', '2021-10-02 20:48:16', '2025-12-17 19:47:34', 'amGR6vnd', '4420744'), + (1186, 996, 'attending', '2021-10-02 20:48:11', '2025-12-17 19:47:35', 'amGR6vnd', '4420747'), + (1186, 997, 'attending', '2021-10-18 22:16:06', '2025-12-17 19:47:35', 'amGR6vnd', '4420748'), + (1186, 998, 'attending', '2021-10-28 00:28:58', '2025-12-17 19:47:36', 'amGR6vnd', '4420749'), + (1186, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'amGR6vnd', '4461883'), + (1186, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'amGR6vnd', '4508342'), + (1186, 1070, 'attending', '2021-10-01 22:33:37', '2025-12-17 19:47:34', 'amGR6vnd', '4512562'), + (1186, 1072, 'maybe', '2021-10-06 21:29:51', '2025-12-17 19:47:34', 'amGR6vnd', '4516287'), + (1186, 1078, 'attending', '2021-10-06 21:29:34', '2025-12-17 19:47:34', 'amGR6vnd', '4541281'), + (1186, 1082, 'attending', '2021-10-15 21:04:48', '2025-12-17 19:47:35', 'amGR6vnd', '4566762'), + (1186, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'amGR6vnd', '4568602'), + (1186, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'amGR6vnd', '4572153'), + (1186, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'amGR6vnd', '4585962'), + (1186, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'amGR6vnd', '4596356'), + (1186, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'amGR6vnd', '4598860'), + (1186, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'amGR6vnd', '4598861'), + (1186, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'amGR6vnd', '4602797'), + (1186, 1103, 'attending', '2021-11-07 22:53:48', '2025-12-17 19:47:36', 'amGR6vnd', '4616350'), + (1186, 1106, 'attending', '2021-11-12 20:56:15', '2025-12-17 19:47:36', 'amGR6vnd', '4620452'), + (1186, 1114, 'attending', '2021-11-13 22:52:05', '2025-12-17 19:47:36', 'amGR6vnd', '4637896'), + (1186, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'amGR6vnd', '4642994'), + (1186, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'amGR6vnd', '4642995'), + (1186, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'amGR6vnd', '4642996'), + (1186, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'amGR6vnd', '4642997'), + (1186, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'amGR6vnd', '4645687'), + (1186, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'amGR6vnd', '4645698'), + (1186, 1128, 'attending', '2021-11-19 20:25:27', '2025-12-17 19:47:37', 'amGR6vnd', '4645704'), + (1186, 1129, 'attending', '2021-11-26 21:18:35', '2025-12-17 19:47:37', 'amGR6vnd', '4645705'), + (1186, 1130, 'not_attending', '2021-12-05 00:21:36', '2025-12-17 19:47:37', 'amGR6vnd', '4658824'), + (1186, 1131, 'not_attending', '2021-12-23 18:17:10', '2025-12-17 19:47:31', 'amGR6vnd', '4658825'), + (1186, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'amGR6vnd', '4668385'), + (1186, 1135, 'maybe', '2021-11-26 21:18:54', '2025-12-17 19:47:37', 'amGR6vnd', '4670469'), + (1186, 1139, 'attending', '2021-12-03 15:18:32', '2025-12-17 19:47:37', 'amGR6vnd', '4675604'), + (1186, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amGR6vnd', '4694407'), + (1186, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'amGR6vnd', '4706262'), + (1186, 1173, 'attending', '2022-01-04 22:27:30', '2025-12-17 19:47:31', 'amGR6vnd', '4736495'), + (1186, 1174, 'attending', '2022-01-14 16:57:21', '2025-12-17 19:47:31', 'amGR6vnd', '4736496'), + (1186, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'amGR6vnd', '4736497'), + (1186, 1176, 'attending', '2022-02-05 02:00:11', '2025-12-17 19:47:32', 'amGR6vnd', '4736498'), + (1186, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amGR6vnd', '4736499'), + (1186, 1178, 'attending', '2022-01-26 02:54:35', '2025-12-17 19:47:32', 'amGR6vnd', '4736500'), + (1186, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'amGR6vnd', '4736503'), + (1186, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amGR6vnd', '4736504'), + (1186, 1185, 'attending', '2022-01-14 16:57:15', '2025-12-17 19:47:31', 'amGR6vnd', '4746789'), + (1186, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amGR6vnd', '4753929'), + (1186, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amGR6vnd', '5038850'), + (1186, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amGR6vnd', '5045826'), + (1186, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amGR6vnd', '5132533'), + (1186, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'amGR6vnd', '5186582'), + (1186, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'amGR6vnd', '5186583'), + (1186, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amGR6vnd', '5186585'), + (1186, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amGR6vnd', '5190437'), + (1186, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'amGR6vnd', '5215989'), + (1186, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGR6vnd', '6045684'), + (1187, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mbXGj2V4', '7424276'), + (1187, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'mbXGj2V4', '7432756'), + (1187, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'mbXGj2V4', '7432758'), + (1187, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'mbXGj2V4', '7682072'), + (1187, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'mbXGj2V4', '7685613'), + (1187, 2900, 'attending', '2024-11-07 22:12:14', '2025-12-17 19:46:26', 'mbXGj2V4', '7686090'), + (1187, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mbXGj2V4', '7688194'), + (1187, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mbXGj2V4', '7688196'), + (1187, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mbXGj2V4', '7688289'), + (1187, 2911, 'attending', '2024-11-11 04:01:12', '2025-12-17 19:46:27', 'mbXGj2V4', '7689876'), + (1187, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mbXGj2V4', '7692763'), + (1187, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mbXGj2V4', '7697552'), + (1187, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mbXGj2V4', '7699878'), + (1187, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mbXGj2V4', '7704043'), + (1187, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mbXGj2V4', '7712467'), + (1187, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mbXGj2V4', '7713585'), + (1187, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mbXGj2V4', '7713586'), + (1187, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'mbXGj2V4', '7738518'), + (1187, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mbXGj2V4', '7750636'), + (1187, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mbXGj2V4', '7796540'), + (1187, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mbXGj2V4', '7796541'), + (1187, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mbXGj2V4', '7796542'), + (1187, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mbXGj2V4', '7825913'), + (1187, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mbXGj2V4', '7826209'), + (1187, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mbXGj2V4', '7834742'), + (1187, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mbXGj2V4', '7842108'), + (1187, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mbXGj2V4', '7842902'), + (1187, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mbXGj2V4', '7842903'), + (1187, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mbXGj2V4', '7842904'), + (1187, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mbXGj2V4', '7842905'), + (1187, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mbXGj2V4', '7855719'), + (1187, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mbXGj2V4', '7860683'), + (1187, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mbXGj2V4', '7860684'), + (1187, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mbXGj2V4', '7866095'), + (1187, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mbXGj2V4', '7869170'), + (1187, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mbXGj2V4', '7869188'), + (1187, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mbXGj2V4', '7869201'), + (1187, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mbXGj2V4', '7877465'), + (1187, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'mbXGj2V4', '7878570'), + (1187, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mbXGj2V4', '7888250'), + (1187, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mbXGj2V4', '8349164'), + (1187, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mbXGj2V4', '8349545'), + (1187, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mbXGj2V4', '8353584'), + (1188, 395, 'attending', '2021-06-06 07:05:41', '2025-12-17 19:47:47', 'LmpJy094', '3236450'), + (1188, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'LmpJy094', '3974109'), + (1188, 827, 'attending', '2021-06-06 02:55:32', '2025-12-17 19:47:47', 'LmpJy094', '3975311'), + (1188, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpJy094', '3975312'), + (1188, 836, 'not_attending', '2021-06-04 00:46:16', '2025-12-17 19:47:47', 'LmpJy094', '3992492'), + (1188, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpJy094', '3994992'), + (1188, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpJy094', '4014338'), + (1188, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'LmpJy094', '4021848'), + (1188, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpJy094', '4136744'), + (1188, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJy094', '4136947'), + (1188, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJy094', '6045684'), + (1189, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd95eKEd', '6045684'), + (1190, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Ag5rGXnd', '5900202'), + (1190, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Ag5rGXnd', '5900203'), + (1190, 1917, 'not_attending', '2023-03-12 16:07:19', '2025-12-17 19:47:10', 'Ag5rGXnd', '5910528'), + (1190, 1943, 'attending', '2023-03-14 21:38:58', '2025-12-17 19:47:10', 'Ag5rGXnd', '5962091'), + (1190, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'Ag5rGXnd', '5962317'), + (1190, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'Ag5rGXnd', '5962318'), + (1190, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Ag5rGXnd', '5965933'), + (1190, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Ag5rGXnd', '5981515'), + (1190, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Ag5rGXnd', '5993516'), + (1190, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Ag5rGXnd', '5998939'), + (1190, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Ag5rGXnd', '6028191'), + (1190, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Ag5rGXnd', '6040066'), + (1190, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Ag5rGXnd', '6042717'), + (1190, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Ag5rGXnd', '6044838'), + (1190, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Ag5rGXnd', '6044839'), + (1190, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ag5rGXnd', '6045684'), + (1190, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Ag5rGXnd', '6050104'), + (1190, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Ag5rGXnd', '6053195'), + (1190, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Ag5rGXnd', '6053198'), + (1190, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Ag5rGXnd', '6056085'), + (1190, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Ag5rGXnd', '6056916'), + (1190, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Ag5rGXnd', '6059290'), + (1190, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Ag5rGXnd', '6060328'), + (1190, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Ag5rGXnd', '6061037'), + (1190, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Ag5rGXnd', '6061039'), + (1190, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Ag5rGXnd', '6067245'), + (1190, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Ag5rGXnd', '6068094'), + (1190, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Ag5rGXnd', '6068252'), + (1190, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Ag5rGXnd', '6068253'), + (1190, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Ag5rGXnd', '6068254'), + (1190, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Ag5rGXnd', '6068280'), + (1190, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Ag5rGXnd', '6069093'), + (1190, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'Ag5rGXnd', '6072528'), + (1190, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Ag5rGXnd', '6079840'), + (1190, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Ag5rGXnd', '6083398'), + (1190, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'Ag5rGXnd', '6093504'), + (1190, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Ag5rGXnd', '6097414'), + (1190, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Ag5rGXnd', '6097442'), + (1190, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Ag5rGXnd', '6097684'), + (1190, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Ag5rGXnd', '6098762'), + (1190, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Ag5rGXnd', '6101362'), + (1190, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'Ag5rGXnd', '6103752'), + (1190, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Ag5rGXnd', '6107314'), + (1191, 993, 'attending', '2021-09-25 08:06:08', '2025-12-17 19:47:34', '41orVa7m', '4420741'), + (1191, 994, 'attending', '2021-09-30 08:19:28', '2025-12-17 19:47:34', '41orVa7m', '4420742'), + (1191, 995, 'attending', '2021-10-03 22:40:04', '2025-12-17 19:47:34', '41orVa7m', '4420744'), + (1191, 996, 'attending', '2021-10-10 13:10:10', '2025-12-17 19:47:35', '41orVa7m', '4420747'), + (1191, 997, 'attending', '2021-10-23 22:55:07', '2025-12-17 19:47:35', '41orVa7m', '4420748'), + (1191, 998, 'attending', '2021-10-27 00:38:01', '2025-12-17 19:47:36', '41orVa7m', '4420749'), + (1191, 1005, 'attending', '2021-09-21 03:52:34', '2025-12-17 19:47:34', '41orVa7m', '4438807'), + (1191, 1031, 'not_attending', '2021-09-22 22:52:48', '2025-12-17 19:47:34', '41orVa7m', '4473789'), + (1191, 1036, 'not_attending', '2021-09-22 22:53:06', '2025-12-17 19:47:34', '41orVa7m', '4493166'), + (1191, 1037, 'not_attending', '2021-09-22 23:00:35', '2025-12-17 19:47:34', '41orVa7m', '4493233'), + (1191, 1054, 'attending', '2022-03-13 04:57:32', '2025-12-17 19:47:25', '41orVa7m', '4496619'), + (1191, 1059, 'attending', '2022-03-12 23:11:40', '2025-12-17 19:47:33', '41orVa7m', '4496626'), + (1191, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '41orVa7m', '4508342'), + (1191, 1068, 'maybe', '2021-09-30 22:20:58', '2025-12-17 19:47:34', '41orVa7m', '4511471'), + (1191, 1070, 'attending', '2021-09-30 08:19:36', '2025-12-17 19:47:34', '41orVa7m', '4512562'), + (1191, 1078, 'attending', '2021-10-04 22:06:08', '2025-12-17 19:47:34', '41orVa7m', '4541281'), + (1191, 1082, 'not_attending', '2021-10-16 00:16:28', '2025-12-17 19:47:35', '41orVa7m', '4566762'), + (1191, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '41orVa7m', '4568602'), + (1191, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '41orVa7m', '4572153'), + (1191, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '41orVa7m', '4585962'), + (1191, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '41orVa7m', '4596356'), + (1191, 1096, 'attending', '2021-10-27 01:09:05', '2025-12-17 19:47:36', '41orVa7m', '4596453'), + (1191, 1097, 'maybe', '2021-11-01 03:52:22', '2025-12-17 19:47:36', '41orVa7m', '4598860'), + (1191, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '41orVa7m', '4598861'), + (1191, 1099, 'attending', '2021-10-31 01:25:48', '2025-12-17 19:47:36', '41orVa7m', '4602797'), + (1191, 1103, 'attending', '2021-11-13 22:25:39', '2025-12-17 19:47:36', '41orVa7m', '4616350'), + (1191, 1106, 'maybe', '2021-11-10 05:46:49', '2025-12-17 19:47:36', '41orVa7m', '4620452'), + (1191, 1114, 'maybe', '2021-11-14 00:37:27', '2025-12-17 19:47:37', '41orVa7m', '4637896'), + (1191, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '41orVa7m', '4642994'), + (1191, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '41orVa7m', '4642995'), + (1191, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '41orVa7m', '4642996'), + (1191, 1119, 'attending', '2021-12-23 01:03:26', '2025-12-17 19:47:31', '41orVa7m', '4642997'), + (1191, 1126, 'attending', '2021-12-11 09:49:55', '2025-12-17 19:47:38', '41orVa7m', '4645687'), + (1191, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '41orVa7m', '4645698'), + (1191, 1128, 'maybe', '2021-11-16 22:23:54', '2025-12-17 19:47:37', '41orVa7m', '4645704'), + (1191, 1129, 'maybe', '2021-11-27 05:34:52', '2025-12-17 19:47:37', '41orVa7m', '4645705'), + (1191, 1130, 'attending', '2021-12-04 23:33:12', '2025-12-17 19:47:37', '41orVa7m', '4658824'), + (1191, 1131, 'maybe', '2021-12-14 06:00:33', '2025-12-17 19:47:31', '41orVa7m', '4658825'), + (1191, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '41orVa7m', '4668385'), + (1191, 1135, 'attending', '2021-11-27 05:34:32', '2025-12-17 19:47:37', '41orVa7m', '4670469'), + (1191, 1139, 'attending', '2021-11-29 02:22:16', '2025-12-17 19:47:37', '41orVa7m', '4675604'), + (1191, 1140, 'maybe', '2021-11-30 03:34:52', '2025-12-17 19:47:37', '41orVa7m', '4679701'), + (1191, 1144, 'attending', '2021-12-08 03:04:52', '2025-12-17 19:47:37', '41orVa7m', '4687090'), + (1191, 1145, 'maybe', '2021-12-06 22:39:29', '2025-12-17 19:47:38', '41orVa7m', '4691157'), + (1191, 1146, 'attending', '2021-12-08 06:49:37', '2025-12-17 19:47:38', '41orVa7m', '4692841'), + (1191, 1148, 'maybe', '2021-12-16 02:51:35', '2025-12-17 19:47:31', '41orVa7m', '4692843'), + (1191, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '41orVa7m', '4694407'), + (1191, 1152, 'maybe', '2022-01-09 12:42:48', '2025-12-17 19:47:31', '41orVa7m', '4708705'), + (1191, 1154, 'maybe', '2022-01-27 00:48:05', '2025-12-17 19:47:32', '41orVa7m', '4708708'), + (1191, 1155, 'not_attending', '2021-12-21 01:52:36', '2025-12-17 19:47:31', '41orVa7m', '4715119'), + (1191, 1156, 'attending', '2021-12-19 10:02:42', '2025-12-17 19:47:31', '41orVa7m', '4715207'), + (1191, 1158, 'maybe', '2021-12-20 03:23:50', '2025-12-17 19:47:31', '41orVa7m', '4715311'), + (1191, 1167, 'attending', '2022-01-07 00:35:20', '2025-12-17 19:47:31', '41orVa7m', '4731015'), + (1191, 1168, 'attending', '2022-01-07 00:35:50', '2025-12-17 19:47:31', '41orVa7m', '4731043'), + (1191, 1173, 'attending', '2022-01-04 23:36:11', '2025-12-17 19:47:31', '41orVa7m', '4736495'), + (1191, 1174, 'attending', '2022-01-09 12:42:25', '2025-12-17 19:47:31', '41orVa7m', '4736496'), + (1191, 1175, 'attending', '2022-01-22 11:40:10', '2025-12-17 19:47:32', '41orVa7m', '4736497'), + (1191, 1176, 'attending', '2022-01-30 09:36:35', '2025-12-17 19:47:32', '41orVa7m', '4736498'), + (1191, 1177, 'attending', '2022-02-12 04:59:18', '2025-12-17 19:47:32', '41orVa7m', '4736499'), + (1191, 1178, 'attending', '2022-01-22 22:32:15', '2025-12-17 19:47:32', '41orVa7m', '4736500'), + (1191, 1179, 'attending', '2022-02-19 03:41:32', '2025-12-17 19:47:32', '41orVa7m', '4736501'), + (1191, 1180, 'attending', '2022-02-20 04:42:32', '2025-12-17 19:47:33', '41orVa7m', '4736502'), + (1191, 1181, 'attending', '2022-02-26 07:00:51', '2025-12-17 19:47:33', '41orVa7m', '4736503'), + (1191, 1182, 'attending', '2022-03-06 21:54:34', '2025-12-17 19:47:33', '41orVa7m', '4736504'), + (1191, 1184, 'attending', '2022-01-09 12:42:03', '2025-12-17 19:47:31', '41orVa7m', '4742350'), + (1191, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '41orVa7m', '4746789'), + (1191, 1188, 'maybe', '2022-01-16 23:32:05', '2025-12-17 19:47:32', '41orVa7m', '4753929'), + (1191, 1190, 'maybe', '2022-01-13 00:10:55', '2025-12-17 19:47:31', '41orVa7m', '4757377'), + (1191, 1191, 'attending', '2022-01-11 23:46:06', '2025-12-17 19:47:31', '41orVa7m', '4757390'), + (1191, 1192, 'attending', '2022-01-21 00:57:51', '2025-12-17 19:47:32', '41orVa7m', '4758745'), + (1191, 1200, 'attending', '2022-01-18 05:03:56', '2025-12-17 19:47:32', '41orVa7m', '4766830'), + (1191, 1216, 'maybe', '2022-01-25 08:19:14', '2025-12-17 19:47:32', '41orVa7m', '4781137'), + (1191, 1220, 'maybe', '2022-01-28 00:27:02', '2025-12-17 19:47:32', '41orVa7m', '4790257'), + (1191, 1222, 'maybe', '2022-02-13 13:21:33', '2025-12-17 19:47:32', '41orVa7m', '5015628'), + (1191, 1224, 'maybe', '2022-01-31 00:07:50', '2025-12-17 19:47:32', '41orVa7m', '5016682'), + (1191, 1228, 'maybe', '2022-02-06 23:13:28', '2025-12-17 19:47:32', '41orVa7m', '5028238'), + (1191, 1229, 'attending', '2022-02-13 13:21:50', '2025-12-17 19:47:32', '41orVa7m', '5034963'), + (1191, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '41orVa7m', '5038850'), + (1191, 1234, 'maybe', '2022-02-13 13:21:44', '2025-12-17 19:47:32', '41orVa7m', '5042197'), + (1191, 1236, 'maybe', '2022-02-14 08:57:49', '2025-12-17 19:47:32', '41orVa7m', '5045826'), + (1191, 1238, 'maybe', '2022-02-23 11:59:32', '2025-12-17 19:47:32', '41orVa7m', '5052236'), + (1191, 1239, 'attending', '2022-02-26 06:57:47', '2025-12-17 19:47:33', '41orVa7m', '5052238'), + (1191, 1240, 'attending', '2022-03-16 23:19:31', '2025-12-17 19:47:33', '41orVa7m', '5052239'), + (1191, 1246, 'maybe', '2022-03-03 10:33:45', '2025-12-17 19:47:33', '41orVa7m', '5064727'), + (1191, 1250, 'maybe', '2022-03-04 21:53:33', '2025-12-17 19:47:33', '41orVa7m', '5069735'), + (1191, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '41orVa7m', '5132533'), + (1191, 1260, 'attending', '2022-03-02 00:02:45', '2025-12-17 19:47:33', '41orVa7m', '5142082'), + (1191, 1262, 'maybe', '2022-03-10 23:30:11', '2025-12-17 19:47:33', '41orVa7m', '5157773'), + (1191, 1265, 'attending', '2022-03-10 04:23:51', '2025-12-17 19:47:33', '41orVa7m', '5160862'), + (1191, 1272, 'attending', '2022-03-15 22:13:23', '2025-12-17 19:47:25', '41orVa7m', '5186582'), + (1191, 1273, 'attending', '2022-03-19 22:27:31', '2025-12-17 19:47:25', '41orVa7m', '5186583'), + (1191, 1274, 'attending', '2022-03-30 11:46:20', '2025-12-17 19:47:26', '41orVa7m', '5186585'), + (1191, 1280, 'maybe', '2022-03-18 14:27:13', '2025-12-17 19:47:25', '41orVa7m', '5189749'), + (1191, 1281, 'attending', '2022-04-09 07:45:48', '2025-12-17 19:47:27', '41orVa7m', '5190437'), + (1191, 1284, 'attending', '2022-04-12 07:03:34', '2025-12-17 19:47:27', '41orVa7m', '5195095'), + (1191, 1285, 'attending', '2022-03-25 06:59:42', '2025-12-17 19:47:25', '41orVa7m', '5196763'), + (1191, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41orVa7m', '5215989'), + (1191, 1301, 'attending', '2022-03-30 11:46:26', '2025-12-17 19:47:26', '41orVa7m', '5218175'), + (1191, 1306, 'maybe', '2022-04-05 08:40:51', '2025-12-17 19:47:26', '41orVa7m', '5223682'), + (1191, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41orVa7m', '5223686'), + (1191, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41orVa7m', '5227432'), + (1191, 1312, 'maybe', '2022-04-14 23:07:37', '2025-12-17 19:47:27', '41orVa7m', '5231459'), + (1191, 1313, 'attending', '2022-04-12 09:53:58', '2025-12-17 19:47:27', '41orVa7m', '5231461'), + (1191, 1315, 'maybe', '2022-04-17 11:23:57', '2025-12-17 19:47:27', '41orVa7m', '5237522'), + (1191, 1323, 'not_attending', '2022-04-15 13:01:52', '2025-12-17 19:47:27', '41orVa7m', '5238357'), + (1191, 1333, 'attending', '2022-04-15 11:08:19', '2025-12-17 19:47:27', '41orVa7m', '5243711'), + (1191, 1346, 'attending', '2022-04-17 22:16:54', '2025-12-17 19:47:27', '41orVa7m', '5247467'), + (1191, 1348, 'maybe', '2022-04-25 12:03:03', '2025-12-17 19:47:28', '41orVa7m', '5247605'), + (1191, 1351, 'maybe', '2022-05-02 05:39:51', '2025-12-17 19:47:28', '41orVa7m', '5251561'), + (1191, 1362, 'attending', '2022-04-25 22:54:57', '2025-12-17 19:47:28', '41orVa7m', '5260800'), + (1191, 1368, 'maybe', '2022-05-01 07:17:29', '2025-12-17 19:47:28', '41orVa7m', '5262783'), + (1191, 1370, 'attending', '2022-04-28 08:14:13', '2025-12-17 19:47:28', '41orVa7m', '5263775'), + (1191, 1372, 'maybe', '2022-05-04 22:46:54', '2025-12-17 19:47:28', '41orVa7m', '5264352'), + (1191, 1374, 'attending', '2022-05-06 10:30:07', '2025-12-17 19:47:28', '41orVa7m', '5269930'), + (1191, 1375, 'maybe', '2022-05-02 05:55:08', '2025-12-17 19:47:28', '41orVa7m', '5269932'), + (1191, 1378, 'attending', '2022-05-02 05:57:23', '2025-12-17 19:47:28', '41orVa7m', '5271448'), + (1191, 1379, 'attending', '2022-05-02 05:57:21', '2025-12-17 19:47:29', '41orVa7m', '5271449'), + (1191, 1380, 'attending', '2022-05-02 05:57:17', '2025-12-17 19:47:30', '41orVa7m', '5271450'), + (1191, 1381, 'attending', '2022-05-06 22:12:16', '2025-12-17 19:47:28', '41orVa7m', '5271453'), + (1191, 1383, 'attending', '2022-05-04 00:17:34', '2025-12-17 19:47:28', '41orVa7m', '5276469'), + (1191, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41orVa7m', '5278159'), + (1191, 1407, 'attending', '2022-06-04 02:02:27', '2025-12-17 19:47:30', '41orVa7m', '5363695'), + (1191, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41orVa7m', '5365960'), + (1191, 1412, 'not_attending', '2022-05-20 00:09:46', '2025-12-17 19:47:29', '41orVa7m', '5367532'), + (1191, 1413, 'attending', '2022-05-20 21:21:21', '2025-12-17 19:47:29', '41orVa7m', '5367533'), + (1191, 1415, 'attending', '2022-05-21 01:32:47', '2025-12-17 19:47:30', '41orVa7m', '5368973'), + (1191, 1417, 'not_attending', '2022-05-24 00:29:53', '2025-12-17 19:47:30', '41orVa7m', '5370465'), + (1191, 1423, 'attending', '2022-06-15 23:28:36', '2025-12-17 19:47:17', '41orVa7m', '5375727'), + (1191, 1426, 'maybe', '2022-05-24 11:29:00', '2025-12-17 19:47:30', '41orVa7m', '5375873'), + (1191, 1427, 'attending', '2022-05-25 22:27:21', '2025-12-17 19:47:30', '41orVa7m', '5376074'), + (1191, 1428, 'maybe', '2022-05-26 23:19:18', '2025-12-17 19:47:30', '41orVa7m', '5378247'), + (1191, 1431, 'attending', '2022-06-03 03:06:28', '2025-12-17 19:47:30', '41orVa7m', '5389605'), + (1191, 1438, 'maybe', '2022-06-01 22:43:31', '2025-12-17 19:47:30', '41orVa7m', '5395032'), + (1191, 1439, 'maybe', '2022-06-06 06:53:47', '2025-12-17 19:47:30', '41orVa7m', '5396072'), + (1191, 1442, 'attending', '2022-06-03 03:06:25', '2025-12-17 19:47:17', '41orVa7m', '5397265'), + (1191, 1451, 'attending', '2022-06-09 13:54:18', '2025-12-17 19:47:17', '41orVa7m', '5403967'), + (1191, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41orVa7m', '5404786'), + (1191, 1460, 'maybe', '2022-06-13 13:29:00', '2025-12-17 19:47:31', '41orVa7m', '5404817'), + (1191, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41orVa7m', '5405203'), + (1191, 1477, 'maybe', '2022-06-15 03:10:14', '2025-12-17 19:47:17', '41orVa7m', '5408766'), + (1191, 1478, 'not_attending', '2022-06-24 08:02:47', '2025-12-17 19:47:19', '41orVa7m', '5408794'), + (1191, 1480, 'maybe', '2022-06-21 11:20:58', '2025-12-17 19:47:19', '41orVa7m', '5411699'), + (1191, 1482, 'attending', '2022-06-19 10:19:42', '2025-12-17 19:47:19', '41orVa7m', '5412550'), + (1191, 1483, 'maybe', '2022-06-20 02:04:14', '2025-12-17 19:47:17', '41orVa7m', '5414556'), + (1191, 1484, 'maybe', '2022-06-21 13:40:49', '2025-12-17 19:47:17', '41orVa7m', '5415046'), + (1191, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41orVa7m', '5422086'), + (1191, 1498, 'maybe', '2022-07-02 14:19:41', '2025-12-17 19:47:19', '41orVa7m', '5422406'), + (1191, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41orVa7m', '5424565'), + (1191, 1504, 'maybe', '2022-07-06 07:48:54', '2025-12-17 19:47:19', '41orVa7m', '5426882'), + (1191, 1505, 'maybe', '2022-07-02 16:04:49', '2025-12-17 19:47:19', '41orVa7m', '5427083'), + (1191, 1508, 'maybe', '2022-07-13 13:55:04', '2025-12-17 19:47:19', '41orVa7m', '5433453'), + (1191, 1511, 'attending', '2022-07-07 03:39:21', '2025-12-17 19:47:19', '41orVa7m', '5437733'), + (1191, 1513, 'attending', '2022-07-09 06:09:59', '2025-12-17 19:47:19', '41orVa7m', '5441125'), + (1191, 1514, 'attending', '2022-07-18 07:09:58', '2025-12-17 19:47:20', '41orVa7m', '5441126'), + (1191, 1515, 'attending', '2022-08-03 03:57:19', '2025-12-17 19:47:21', '41orVa7m', '5441128'), + (1191, 1516, 'attending', '2022-08-10 07:48:45', '2025-12-17 19:47:23', '41orVa7m', '5441129'), + (1191, 1517, 'attending', '2022-08-18 12:22:20', '2025-12-17 19:47:23', '41orVa7m', '5441130'), + (1191, 1518, 'attending', '2022-08-23 08:53:49', '2025-12-17 19:47:24', '41orVa7m', '5441131'), + (1191, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41orVa7m', '5441132'), + (1191, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41orVa7m', '5446643'), + (1191, 1539, 'maybe', '2022-07-18 07:09:42', '2025-12-17 19:47:21', '41orVa7m', '5449671'), + (1191, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41orVa7m', '5453325'), + (1191, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41orVa7m', '5454516'), + (1191, 1544, 'attending', '2022-09-17 08:25:43', '2025-12-17 19:47:11', '41orVa7m', '5454517'), + (1191, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41orVa7m', '5454605'), + (1191, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41orVa7m', '5455037'), + (1191, 1561, 'maybe', '2022-08-08 06:21:12', '2025-12-17 19:47:22', '41orVa7m', '5461278'), + (1191, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41orVa7m', '5469480'), + (1191, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41orVa7m', '5471073'), + (1191, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41orVa7m', '5474663'), + (1191, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41orVa7m', '5482022'), + (1191, 1575, 'maybe', '2022-08-18 12:22:13', '2025-12-17 19:47:23', '41orVa7m', '5482250'), + (1191, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41orVa7m', '5482793'), + (1191, 1578, 'maybe', '2022-08-02 13:07:15', '2025-12-17 19:47:21', '41orVa7m', '5483073'), + (1191, 1580, 'maybe', '2022-08-10 05:09:53', '2025-12-17 19:47:22', '41orVa7m', '5488912'), + (1191, 1581, 'maybe', '2022-08-10 01:53:42', '2025-12-17 19:47:22', '41orVa7m', '5490302'), + (1191, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41orVa7m', '5492192'), + (1191, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41orVa7m', '5493139'), + (1191, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41orVa7m', '5493200'), + (1191, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41orVa7m', '5502188'), + (1191, 1606, 'not_attending', '2022-08-29 07:52:54', '2025-12-17 19:47:23', '41orVa7m', '5504585'), + (1191, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41orVa7m', '5505059'), + (1191, 1610, 'attending', '2022-08-22 03:36:11', '2025-12-17 19:47:23', '41orVa7m', '5506595'), + (1191, 1614, 'maybe', '2022-08-23 08:51:56', '2025-12-17 19:47:23', '41orVa7m', '5508371'), + (1191, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41orVa7m', '5509055'), + (1191, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41orVa7m', '5512862'), + (1191, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41orVa7m', '5513985'), + (1191, 1626, 'maybe', '2022-08-26 12:42:27', '2025-12-17 19:47:11', '41orVa7m', '5519981'), + (1191, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41orVa7m', '5522550'), + (1191, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41orVa7m', '5534683'), + (1191, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '41orVa7m', '5537735'), + (1191, 1638, 'maybe', '2022-09-01 09:20:28', '2025-12-17 19:47:24', '41orVa7m', '5540402'), + (1191, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41orVa7m', '5540859'), + (1191, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41orVa7m', '5546619'), + (1191, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41orVa7m', '5555245'), + (1191, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41orVa7m', '5557747'), + (1191, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41orVa7m', '5560255'), + (1191, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41orVa7m', '5562906'), + (1191, 1667, 'attending', '2022-09-24 09:51:40', '2025-12-17 19:47:11', '41orVa7m', '5563221'), + (1191, 1668, 'attending', '2022-09-24 09:51:46', '2025-12-17 19:47:12', '41orVa7m', '5563222'), + (1191, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41orVa7m', '5600604'), + (1191, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41orVa7m', '5605544'), + (1191, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', '41orVa7m', '5606737'), + (1191, 1719, 'attending', '2022-10-05 16:07:01', '2025-12-17 19:47:12', '41orVa7m', '5630958'), + (1191, 1720, 'attending', '2022-10-15 08:52:30', '2025-12-17 19:47:12', '41orVa7m', '5630959'), + (1191, 1721, 'attending', '2022-10-22 12:04:56', '2025-12-17 19:47:13', '41orVa7m', '5630960'), + (1191, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41orVa7m', '5630961'), + (1191, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41orVa7m', '5630962'), + (1191, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41orVa7m', '5630966'), + (1191, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41orVa7m', '5630967'), + (1191, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41orVa7m', '5630968'), + (1191, 1727, 'maybe', '2022-12-03 12:24:04', '2025-12-17 19:47:16', '41orVa7m', '5630969'), + (1191, 1732, 'maybe', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41orVa7m', '5635406'), + (1191, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41orVa7m', '5638765'), + (1191, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41orVa7m', '5640097'), + (1191, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41orVa7m', '5640843'), + (1191, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41orVa7m', '5641521'), + (1191, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41orVa7m', '5642818'), + (1191, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41orVa7m', '5652395'), + (1191, 1762, 'attending', '2022-11-28 07:06:53', '2025-12-17 19:47:16', '41orVa7m', '5670445'), + (1191, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41orVa7m', '5671637'), + (1191, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41orVa7m', '5672329'), + (1191, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41orVa7m', '5674057'), + (1191, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41orVa7m', '5674060'), + (1191, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41orVa7m', '5677461'), + (1191, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41orVa7m', '5698046'), + (1191, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41orVa7m', '5699760'), + (1191, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41orVa7m', '5741601'), + (1191, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41orVa7m', '5763458'), + (1191, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41orVa7m', '5774172'), + (1191, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '41orVa7m', '5818247'), + (1191, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41orVa7m', '5819471'), + (1191, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41orVa7m', '5827739'), + (1191, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41orVa7m', '5844306'), + (1191, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41orVa7m', '5850159'), + (1191, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41orVa7m', '5858999'), + (1191, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41orVa7m', '5871984'), + (1191, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41orVa7m', '5876354'), + (1191, 1864, 'attending', '2023-01-21 04:27:55', '2025-12-17 19:47:05', '41orVa7m', '5879675'), + (1191, 1865, 'attending', '2023-01-28 07:05:36', '2025-12-17 19:47:06', '41orVa7m', '5879676'), + (1191, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '41orVa7m', '5880939'), + (1191, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '41orVa7m', '5880940'), + (1191, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '41orVa7m', '5880942'), + (1191, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '41orVa7m', '5880943'), + (1191, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41orVa7m', '5887890'), + (1191, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41orVa7m', '5888598'), + (1191, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41orVa7m', '5893260'), + (1191, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '41orVa7m', '5899826'), + (1191, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '41orVa7m', '5900199'), + (1191, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '41orVa7m', '5900200'), + (1191, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '41orVa7m', '5900202'), + (1191, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '41orVa7m', '5900203'), + (1191, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '41orVa7m', '5901108'), + (1191, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '41orVa7m', '5901126'), + (1191, 1897, 'attending', '2023-02-11 02:07:29', '2025-12-17 19:47:07', '41orVa7m', '5901128'), + (1191, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '41orVa7m', '5909655'), + (1191, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '41orVa7m', '5910522'), + (1191, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '41orVa7m', '5910526'), + (1191, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '41orVa7m', '5910528'), + (1191, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '41orVa7m', '5916219'), + (1191, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '41orVa7m', '5936234'), + (1191, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '41orVa7m', '5958351'), + (1191, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '41orVa7m', '5959751'), + (1191, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '41orVa7m', '5959755'), + (1191, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '41orVa7m', '5960055'), + (1191, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '41orVa7m', '5961684'), + (1191, 1944, 'maybe', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '41orVa7m', '5962132'), + (1191, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '41orVa7m', '5962133'), + (1191, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '41orVa7m', '5962134'), + (1191, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '41orVa7m', '5962317'), + (1191, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '41orVa7m', '5962318'), + (1191, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '41orVa7m', '5965933'), + (1191, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '41orVa7m', '5967014'), + (1191, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '41orVa7m', '5972763'), + (1191, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '41orVa7m', '5972815'), + (1191, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '41orVa7m', '5974016'), + (1191, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '41orVa7m', '5981515'), + (1191, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '41orVa7m', '5993516'), + (1191, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '41orVa7m', '5998939'), + (1191, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '41orVa7m', '6028191'), + (1191, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '41orVa7m', '6040066'), + (1191, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '41orVa7m', '6042717'), + (1191, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '41orVa7m', '6044838'), + (1191, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '41orVa7m', '6044839'), + (1191, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41orVa7m', '6045684'), + (1191, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '41orVa7m', '6050104'), + (1191, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '41orVa7m', '6053195'), + (1191, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '41orVa7m', '6053198'), + (1191, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '41orVa7m', '6056085'), + (1191, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '41orVa7m', '6056916'), + (1191, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '41orVa7m', '6059290'), + (1191, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '41orVa7m', '6060328'), + (1191, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '41orVa7m', '6061037'), + (1191, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '41orVa7m', '6061039'), + (1191, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '41orVa7m', '6067245'), + (1191, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '41orVa7m', '6068094'), + (1191, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '41orVa7m', '6068252'), + (1191, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '41orVa7m', '6068253'), + (1191, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '41orVa7m', '6068254'), + (1191, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '41orVa7m', '6068280'), + (1191, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '41orVa7m', '6069093'), + (1191, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '41orVa7m', '6072528'), + (1191, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '41orVa7m', '6079840'), + (1191, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '41orVa7m', '6083398'), + (1191, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '41orVa7m', '6093504'), + (1191, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '41orVa7m', '6097414'), + (1191, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '41orVa7m', '6097442'), + (1191, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '41orVa7m', '6097684'), + (1191, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '41orVa7m', '6098762'), + (1191, 2064, 'maybe', '2023-06-19 10:14:36', '2025-12-17 19:46:50', '41orVa7m', '6099988'), + (1191, 2065, 'attending', '2023-05-22 09:55:34', '2025-12-17 19:46:49', '41orVa7m', '6101169'), + (1191, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '41orVa7m', '6101361'), + (1191, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '41orVa7m', '6101362'), + (1191, 2068, 'not_attending', '2023-05-16 00:00:15', '2025-12-17 19:47:03', '41orVa7m', '6102837'), + (1191, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '41orVa7m', '6107314'), + (1191, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '41orVa7m', '6120034'), + (1191, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '41orVa7m', '6136733'), + (1191, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '41orVa7m', '6137989'), + (1191, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '41orVa7m', '6150864'), + (1191, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '41orVa7m', '6155491'), + (1191, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '41orVa7m', '6164417'), + (1191, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '41orVa7m', '6166388'), + (1191, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '41orVa7m', '6176439'), + (1191, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '41orVa7m', '6182410'), + (1191, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '41orVa7m', '6185812'), + (1191, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '41orVa7m', '6187651'), + (1191, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '41orVa7m', '6187963'), + (1191, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '41orVa7m', '6187964'), + (1191, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '41orVa7m', '6187966'), + (1191, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '41orVa7m', '6187967'), + (1191, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '41orVa7m', '6187969'), + (1191, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '41orVa7m', '6334878'), + (1191, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '41orVa7m', '6337236'), + (1191, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '41orVa7m', '6337970'), + (1191, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '41orVa7m', '6338308'), + (1191, 2160, 'attending', '2023-07-29 15:34:16', '2025-12-17 19:46:54', '41orVa7m', '6338358'), + (1191, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '41orVa7m', '6340845'), + (1191, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '41orVa7m', '6341710'), + (1191, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '41orVa7m', '6342044'), + (1191, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '41orVa7m', '6342298'), + (1191, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '41orVa7m', '6343294'), + (1191, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '41orVa7m', '6347034'), + (1191, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '41orVa7m', '6347056'), + (1191, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '41orVa7m', '6353830'), + (1191, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '41orVa7m', '6353831'), + (1191, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '41orVa7m', '6357867'), + (1191, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '41orVa7m', '6358652'), + (1191, 2204, 'attending', '2023-08-20 00:40:15', '2025-12-17 19:46:55', '41orVa7m', '6361542'), + (1191, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '41orVa7m', '6361709'), + (1191, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '41orVa7m', '6361710'), + (1191, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '41orVa7m', '6361711'), + (1191, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '41orVa7m', '6361712'), + (1191, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '41orVa7m', '6361713'), + (1191, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '41orVa7m', '6382573'), + (1191, 2239, 'attending', '2023-09-01 01:39:23', '2025-12-17 19:46:56', '41orVa7m', '6387592'), + (1191, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '41orVa7m', '6388604'), + (1191, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '41orVa7m', '6394629'), + (1191, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '41orVa7m', '6394631'), + (1191, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '41orVa7m', '6440863'), + (1191, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '41orVa7m', '6445440'), + (1191, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '41orVa7m', '6453951'), + (1191, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '41orVa7m', '6461696'), + (1191, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '41orVa7m', '6462129'), + (1191, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '41orVa7m', '6463218'), + (1191, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '41orVa7m', '6472181'), + (1191, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41orVa7m', '6482693'), + (1191, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '41orVa7m', '6484200'), + (1191, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '41orVa7m', '6484680'), + (1191, 2310, 'attending', '2023-11-11 23:57:29', '2025-12-17 19:46:47', '41orVa7m', '6487709'), + (1191, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41orVa7m', '6507741'), + (1191, 2318, 'attending', '2023-10-31 18:41:47', '2025-12-17 19:46:47', '41orVa7m', '6508566'), + (1191, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41orVa7m', '6514659'), + (1191, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41orVa7m', '6514660'), + (1191, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41orVa7m', '6519103'), + (1191, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41orVa7m', '6535681'), + (1191, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41orVa7m', '6584747'), + (1191, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41orVa7m', '6587097'), + (1191, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41orVa7m', '6609022'), + (1191, 2370, 'maybe', '2023-12-13 12:46:48', '2025-12-17 19:46:36', '41orVa7m', '6623765'), + (1191, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41orVa7m', '6632757'), + (1191, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41orVa7m', '6644187'), + (1191, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41orVa7m', '6648951'), + (1191, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41orVa7m', '6648952'), + (1191, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41orVa7m', '6655401'), + (1191, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41orVa7m', '6661585'), + (1191, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41orVa7m', '6661588'), + (1191, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41orVa7m', '6661589'), + (1191, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41orVa7m', '6699906'), + (1191, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41orVa7m', '6699913'), + (1191, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41orVa7m', '6701109'), + (1191, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41orVa7m', '6705219'), + (1191, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41orVa7m', '6710153'), + (1191, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41orVa7m', '6711552'), + (1191, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '41orVa7m', '6711553'), + (1191, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41orVa7m', '6722688'), + (1191, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41orVa7m', '6730620'), + (1191, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '41orVa7m', '6730642'), + (1191, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41orVa7m', '6740364'), + (1191, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41orVa7m', '6743829'), + (1191, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41orVa7m', '7030380'), + (1191, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41orVa7m', '7033677'), + (1191, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '41orVa7m', '7035415'), + (1191, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '41orVa7m', '7074364'), + (1191, 2525, 'maybe', '2024-06-13 20:35:31', '2025-12-17 19:46:28', '41orVa7m', '7074365'), + (1191, 2529, 'maybe', '2024-05-23 01:42:36', '2025-12-17 19:46:35', '41orVa7m', '7074369'), + (1191, 2627, 'maybe', '2024-05-25 16:38:07', '2025-12-17 19:46:35', '41orVa7m', '7264724'), + (1191, 2628, 'maybe', '2024-06-01 21:20:43', '2025-12-17 19:46:36', '41orVa7m', '7264725'), + (1191, 2629, 'maybe', '2024-06-08 21:25:09', '2025-12-17 19:46:28', '41orVa7m', '7264726'), + (1191, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '41orVa7m', '7302674'), + (1191, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '41orVa7m', '7324073'), + (1191, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '41orVa7m', '7324074'), + (1191, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '41orVa7m', '7324075'), + (1191, 2691, 'maybe', '2024-07-18 11:20:59', '2025-12-17 19:46:30', '41orVa7m', '7324076'), + (1191, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '41orVa7m', '7324078'), + (1191, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '41orVa7m', '7324082'), + (1191, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '41orVa7m', '7331457'), + (1191, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '41orVa7m', '7356752'), + (1191, 2766, 'maybe', '2024-07-30 08:08:03', '2025-12-17 19:46:30', '41orVa7m', '7363643'), + (1191, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '41orVa7m', '7368606'), + (1191, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '41orVa7m', '7397462'), + (1191, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '41orVa7m', '7424275'), + (1191, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '41orVa7m', '7424276'), + (1191, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '41orVa7m', '7432751'), + (1191, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '41orVa7m', '7432752'), + (1191, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '41orVa7m', '7432753'), + (1191, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '41orVa7m', '7432754'), + (1191, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '41orVa7m', '7432755'), + (1191, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '41orVa7m', '7432756'), + (1191, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '41orVa7m', '7432758'), + (1191, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '41orVa7m', '7432759'), + (1191, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '41orVa7m', '7433834'), + (1191, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '41orVa7m', '7470197'), + (1191, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '41orVa7m', '7685613'), + (1191, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '41orVa7m', '7688194'), + (1191, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '41orVa7m', '7688196'), + (1191, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '41orVa7m', '7688289'), + (1191, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '41orVa7m', '7692763'), + (1191, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '41orVa7m', '7697552'), + (1191, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '41orVa7m', '7699878'), + (1191, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '41orVa7m', '7704043'), + (1191, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '41orVa7m', '7712467'), + (1191, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '41orVa7m', '7713585'), + (1191, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '41orVa7m', '7713586'), + (1191, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '41orVa7m', '7738518'), + (1191, 2962, 'not_attending', '2024-12-27 22:26:20', '2025-12-17 19:46:22', '41orVa7m', '7750632'), + (1191, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '41orVa7m', '7750636'), + (1191, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '41orVa7m', '7796540'), + (1191, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '41orVa7m', '7796541'), + (1191, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '41orVa7m', '7796542'), + (1192, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mLGq9Nwd', '6045684'), + (1193, 258, 'maybe', '2021-06-25 04:39:22', '2025-12-17 19:47:47', 'NmL3pO8d', '3149489'), + (1193, 262, 'attending', '2021-06-25 04:39:39', '2025-12-17 19:47:38', 'NmL3pO8d', '3149493'), + (1193, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'NmL3pO8d', '4021848'), + (1193, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'NmL3pO8d', '4136937'), + (1193, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'NmL3pO8d', '4136938'), + (1193, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmL3pO8d', '4225444'), + (1193, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'NmL3pO8d', '4229417'), + (1193, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'NmL3pO8d', '4229418'), + (1193, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmL3pO8d', '4239259'), + (1193, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmL3pO8d', '4250163'), + (1193, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'NmL3pO8d', '4275957'), + (1193, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmL3pO8d', '6045684'), + (1194, 262, 'not_attending', '2021-06-29 21:27:42', '2025-12-17 19:47:38', 'nm60xJ14', '3149493'), + (1194, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'nm60xJ14', '3236448'), + (1194, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'nm60xJ14', '3974109'), + (1194, 844, 'not_attending', '2021-06-17 15:28:12', '2025-12-17 19:47:38', 'nm60xJ14', '4014338'), + (1194, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'nm60xJ14', '4021848'), + (1194, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'nm60xJ14', '4136937'), + (1194, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'nm60xJ14', '4136938'), + (1194, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'nm60xJ14', '4136947'), + (1194, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nm60xJ14', '4210314'), + (1194, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'nm60xJ14', '4225444'), + (1194, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'nm60xJ14', '4229417'), + (1194, 892, 'not_attending', '2021-07-06 23:01:50', '2025-12-17 19:47:39', 'nm60xJ14', '4229418'), + (1194, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'nm60xJ14', '4229420'), + (1194, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'nm60xJ14', '4229423'), + (1194, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'nm60xJ14', '4239259'), + (1194, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'nm60xJ14', '4240316'), + (1194, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'nm60xJ14', '4240317'), + (1194, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'nm60xJ14', '4240318'), + (1194, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'nm60xJ14', '4240320'), + (1194, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'nm60xJ14', '4250163'), + (1194, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'nm60xJ14', '4275957'), + (1194, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nm60xJ14', '4277819'), + (1194, 923, 'not_attending', '2021-07-26 20:31:42', '2025-12-17 19:47:40', 'nm60xJ14', '4292773'), + (1194, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'nm60xJ14', '4301723'), + (1194, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'nm60xJ14', '4302093'), + (1194, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nm60xJ14', '4304151'), + (1194, 940, 'not_attending', '2021-07-30 16:29:43', '2025-12-17 19:47:40', 'nm60xJ14', '4309049'), + (1194, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'nm60xJ14', '4315713'), + (1194, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'nm60xJ14', '4315714'), + (1194, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'nm60xJ14', '4315726'), + (1194, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nm60xJ14', '4356801'), + (1194, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'nm60xJ14', '4366186'), + (1194, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'nm60xJ14', '4366187'), + (1194, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'nm60xJ14', '4420735'), + (1194, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nm60xJ14', '4420738'), + (1194, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nm60xJ14', '4420739'), + (1194, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm60xJ14', '4420741'), + (1194, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nm60xJ14', '4420744'), + (1194, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nm60xJ14', '4420747'), + (1194, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nm60xJ14', '4420748'), + (1194, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nm60xJ14', '4420749'), + (1194, 1054, 'maybe', '2022-03-19 17:32:22', '2025-12-17 19:47:25', 'nm60xJ14', '4496619'), + (1194, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm60xJ14', '4736497'), + (1194, 1177, 'attending', '2022-02-11 23:00:53', '2025-12-17 19:47:32', 'nm60xJ14', '4736499'), + (1194, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm60xJ14', '4736500'), + (1194, 1179, 'not_attending', '2022-02-16 16:03:33', '2025-12-17 19:47:32', 'nm60xJ14', '4736501'), + (1194, 1180, 'not_attending', '2022-02-27 00:46:27', '2025-12-17 19:47:33', 'nm60xJ14', '4736502'), + (1194, 1181, 'not_attending', '2022-02-27 00:46:44', '2025-12-17 19:47:33', 'nm60xJ14', '4736503'), + (1194, 1182, 'not_attending', '2022-03-11 00:05:18', '2025-12-17 19:47:33', 'nm60xJ14', '4736504'), + (1194, 1201, 'not_attending', '2022-01-21 00:15:15', '2025-12-17 19:47:32', 'nm60xJ14', '4766841'), + (1194, 1212, 'not_attending', '2022-01-27 21:37:57', '2025-12-17 19:47:32', 'nm60xJ14', '4780759'), + (1194, 1213, 'attending', '2022-01-27 21:38:20', '2025-12-17 19:47:32', 'nm60xJ14', '4780760'), + (1194, 1232, 'not_attending', '2022-02-09 22:29:44', '2025-12-17 19:47:32', 'nm60xJ14', '5038850'), + (1194, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nm60xJ14', '5045826'), + (1194, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm60xJ14', '5132533'), + (1194, 1272, 'attending', '2022-03-19 17:32:15', '2025-12-17 19:47:25', 'nm60xJ14', '5186582'), + (1194, 1273, 'attending', '2022-03-25 15:28:32', '2025-12-17 19:47:25', 'nm60xJ14', '5186583'), + (1194, 1274, 'maybe', '2022-03-22 22:32:41', '2025-12-17 19:47:26', 'nm60xJ14', '5186585'), + (1194, 1281, 'not_attending', '2022-04-08 23:49:42', '2025-12-17 19:47:27', 'nm60xJ14', '5190437'), + (1194, 1284, 'not_attending', '2022-04-12 23:32:11', '2025-12-17 19:47:27', 'nm60xJ14', '5195095'), + (1194, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm60xJ14', '5215989'), + (1194, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm60xJ14', '5223686'), + (1194, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'nm60xJ14', '5227432'), + (1194, 1346, 'not_attending', '2022-04-23 17:50:40', '2025-12-17 19:47:27', 'nm60xJ14', '5247467'), + (1194, 1362, 'not_attending', '2022-04-27 19:03:56', '2025-12-17 19:47:28', 'nm60xJ14', '5260800'), + (1194, 1374, 'not_attending', '2022-05-07 23:06:13', '2025-12-17 19:47:28', 'nm60xJ14', '5269930'), + (1194, 1378, 'not_attending', '2022-05-13 12:43:18', '2025-12-17 19:47:29', 'nm60xJ14', '5271448'), + (1194, 1379, 'not_attending', '2022-05-21 22:33:18', '2025-12-17 19:47:30', 'nm60xJ14', '5271449'), + (1194, 1380, 'not_attending', '2022-05-30 01:18:36', '2025-12-17 19:47:30', 'nm60xJ14', '5271450'), + (1194, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'nm60xJ14', '5276469'), + (1194, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm60xJ14', '5278159'), + (1194, 1407, 'maybe', '2022-05-30 01:18:42', '2025-12-17 19:47:30', 'nm60xJ14', '5363695'), + (1194, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm60xJ14', '5365960'), + (1194, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'nm60xJ14', '5368973'), + (1194, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm60xJ14', '5378247'), + (1194, 1431, 'not_attending', '2022-06-11 22:26:24', '2025-12-17 19:47:31', 'nm60xJ14', '5389605'), + (1194, 1442, 'not_attending', '2022-06-18 22:45:43', '2025-12-17 19:47:17', 'nm60xJ14', '5397265'), + (1194, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'nm60xJ14', '5403967'), + (1194, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm60xJ14', '5404786'), + (1194, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm60xJ14', '5405203'), + (1194, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'nm60xJ14', '5408794'), + (1194, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'nm60xJ14', '5411699'), + (1194, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm60xJ14', '5412550'), + (1194, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm60xJ14', '5415046'), + (1194, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm60xJ14', '5422086'), + (1194, 1498, 'not_attending', '2022-07-02 22:45:40', '2025-12-17 19:47:19', 'nm60xJ14', '5422406'), + (1194, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm60xJ14', '5424565'), + (1194, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm60xJ14', '5426882'), + (1194, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'nm60xJ14', '5427083'), + (1194, 1511, 'not_attending', '2022-07-06 23:39:28', '2025-12-17 19:47:19', 'nm60xJ14', '5437733'), + (1194, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm60xJ14', '5441125'), + (1194, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm60xJ14', '5441126'), + (1194, 1515, 'not_attending', '2022-08-03 21:17:14', '2025-12-17 19:47:21', 'nm60xJ14', '5441128'), + (1194, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm60xJ14', '5441131'), + (1194, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm60xJ14', '5441132'), + (1194, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'nm60xJ14', '5446643'), + (1194, 1534, 'not_attending', '2022-08-03 21:17:11', '2025-12-17 19:47:21', 'nm60xJ14', '5448759'), + (1194, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm60xJ14', '5453325'), + (1194, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm60xJ14', '5454516'), + (1194, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm60xJ14', '5454605'), + (1194, 1546, 'not_attending', '2022-07-25 19:41:54', '2025-12-17 19:47:20', 'nm60xJ14', '5454607'), + (1194, 1547, 'maybe', '2022-07-24 18:43:22', '2025-12-17 19:47:20', 'nm60xJ14', '5454608'), + (1194, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm60xJ14', '5455037'), + (1194, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm60xJ14', '5461278'), + (1194, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm60xJ14', '5469480'), + (1194, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'nm60xJ14', '5471073'), + (1194, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm60xJ14', '5474663'), + (1194, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm60xJ14', '5482022'), + (1194, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'nm60xJ14', '5482793'), + (1194, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm60xJ14', '5488912'), + (1194, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm60xJ14', '5492192'), + (1194, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm60xJ14', '5493139'), + (1194, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm60xJ14', '5493200'), + (1194, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm60xJ14', '5502188'), + (1194, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm60xJ14', '5505059'), + (1194, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm60xJ14', '5509055'), + (1194, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm60xJ14', '5512862'), + (1194, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm60xJ14', '5513985'), + (1194, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nm60xJ14', '5519981'), + (1194, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm60xJ14', '5522550'), + (1194, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm60xJ14', '5534683'), + (1194, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm60xJ14', '5537735'), + (1194, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm60xJ14', '5540859'), + (1194, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm60xJ14', '5546619'), + (1194, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm60xJ14', '5557747'), + (1194, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm60xJ14', '5560255'), + (1194, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm60xJ14', '5562906'), + (1194, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm60xJ14', '5600604'), + (1194, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm60xJ14', '5605544'), + (1194, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm60xJ14', '5630960'), + (1194, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm60xJ14', '5630961'), + (1194, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm60xJ14', '5630962'), + (1194, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm60xJ14', '5630966'), + (1194, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm60xJ14', '5630967'), + (1194, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm60xJ14', '5630968'), + (1194, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm60xJ14', '5635406'), + (1194, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm60xJ14', '5638765'), + (1194, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm60xJ14', '5640097'), + (1194, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm60xJ14', '5640843'), + (1194, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm60xJ14', '5641521'), + (1194, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm60xJ14', '5642818'), + (1194, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm60xJ14', '5652395'), + (1194, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm60xJ14', '5670445'), + (1194, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm60xJ14', '5671637'), + (1194, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm60xJ14', '5672329'), + (1194, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm60xJ14', '5674057'), + (1194, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm60xJ14', '5674060'), + (1194, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm60xJ14', '5677461'), + (1194, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm60xJ14', '5698046'), + (1194, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm60xJ14', '5699760'), + (1194, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm60xJ14', '5741601'), + (1194, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm60xJ14', '5763458'), + (1194, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm60xJ14', '5774172'), + (1194, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nm60xJ14', '5818247'), + (1194, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm60xJ14', '5819471'), + (1194, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'nm60xJ14', '5827739'), + (1194, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm60xJ14', '5844306'), + (1194, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm60xJ14', '5850159'), + (1194, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm60xJ14', '5858999'), + (1194, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm60xJ14', '5871984'), + (1194, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm60xJ14', '5876354'), + (1194, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm60xJ14', '5880939'), + (1194, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm60xJ14', '5880940'), + (1194, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm60xJ14', '5880942'), + (1194, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm60xJ14', '5880943'), + (1194, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm60xJ14', '5887890'), + (1194, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm60xJ14', '5888598'), + (1194, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm60xJ14', '5893260'), + (1194, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm60xJ14', '5899826'), + (1194, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm60xJ14', '5900199'), + (1194, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm60xJ14', '5900200'), + (1194, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm60xJ14', '5900202'), + (1194, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm60xJ14', '5900203'), + (1194, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm60xJ14', '5901108'), + (1194, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm60xJ14', '5901126'), + (1194, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm60xJ14', '5909655'), + (1194, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm60xJ14', '5910522'), + (1194, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm60xJ14', '5910526'), + (1194, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm60xJ14', '5910528'), + (1194, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm60xJ14', '5916219'), + (1194, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm60xJ14', '5936234'), + (1194, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm60xJ14', '5958351'), + (1194, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm60xJ14', '5959751'), + (1194, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm60xJ14', '5959755'), + (1194, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm60xJ14', '5960055'), + (1194, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm60xJ14', '5961684'), + (1194, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm60xJ14', '5962132'), + (1194, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nm60xJ14', '5962133'), + (1194, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm60xJ14', '5962134'), + (1194, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm60xJ14', '5962317'), + (1194, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm60xJ14', '5962318'), + (1194, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nm60xJ14', '5965933'), + (1194, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm60xJ14', '5967014'), + (1194, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm60xJ14', '5972815'), + (1194, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm60xJ14', '5974016'), + (1194, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm60xJ14', '5981515'), + (1194, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm60xJ14', '5993516'), + (1194, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm60xJ14', '5998939'), + (1194, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm60xJ14', '6028191'), + (1194, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm60xJ14', '6040066'), + (1194, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm60xJ14', '6042717'), + (1194, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm60xJ14', '6044838'), + (1194, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm60xJ14', '6044839'), + (1194, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm60xJ14', '6045684'), + (1194, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm60xJ14', '6050104'), + (1194, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm60xJ14', '6053195'), + (1194, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm60xJ14', '6053198'), + (1194, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm60xJ14', '6056085'), + (1194, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm60xJ14', '6056916'), + (1194, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm60xJ14', '6059290'), + (1194, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm60xJ14', '6060328'), + (1194, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm60xJ14', '6061037'), + (1194, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm60xJ14', '6061039'), + (1194, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm60xJ14', '6067245'), + (1194, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm60xJ14', '6068094'), + (1194, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm60xJ14', '6068252'), + (1194, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm60xJ14', '6068253'), + (1194, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm60xJ14', '6068254'), + (1194, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm60xJ14', '6068280'), + (1194, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm60xJ14', '6069093'), + (1194, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm60xJ14', '6072528'), + (1194, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm60xJ14', '6079840'), + (1194, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm60xJ14', '6083398'), + (1194, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm60xJ14', '6093504'), + (1194, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm60xJ14', '6097414'), + (1194, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm60xJ14', '6097442'), + (1194, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm60xJ14', '6097684'), + (1194, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm60xJ14', '6098762'), + (1194, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm60xJ14', '6101361'), + (1194, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm60xJ14', '6101362'), + (1194, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm60xJ14', '6107314'), + (1194, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm60xJ14', '6120034'), + (1194, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nm60xJ14', '6136733'), + (1194, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm60xJ14', '6137989'), + (1194, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm60xJ14', '6150864'), + (1194, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm60xJ14', '6155491'), + (1194, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm60xJ14', '6164417'), + (1194, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm60xJ14', '6166388'), + (1194, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm60xJ14', '6176439'), + (1194, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm60xJ14', '6182410'), + (1194, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm60xJ14', '6185812'), + (1194, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm60xJ14', '6187651'), + (1194, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm60xJ14', '6187963'), + (1194, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm60xJ14', '6187964'), + (1194, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm60xJ14', '6187966'), + (1194, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm60xJ14', '6187967'), + (1194, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm60xJ14', '6187969'), + (1194, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm60xJ14', '6334878'), + (1194, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm60xJ14', '6337236'), + (1194, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm60xJ14', '6337970'), + (1194, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm60xJ14', '6338308'), + (1194, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm60xJ14', '6341710'), + (1194, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm60xJ14', '6342044'), + (1194, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm60xJ14', '6342298'), + (1194, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm60xJ14', '6343294'), + (1194, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm60xJ14', '6347034'), + (1194, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm60xJ14', '6347056'), + (1194, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm60xJ14', '6353830'), + (1194, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm60xJ14', '6353831'), + (1194, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm60xJ14', '6357867'), + (1194, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm60xJ14', '6358652'), + (1194, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm60xJ14', '6361709'), + (1194, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm60xJ14', '6361710'), + (1194, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm60xJ14', '6361711'), + (1194, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm60xJ14', '6361712'), + (1194, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm60xJ14', '6361713'), + (1194, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nm60xJ14', '6382573'), + (1194, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm60xJ14', '6388604'), + (1194, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm60xJ14', '6394629'), + (1194, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm60xJ14', '6394631'), + (1194, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm60xJ14', '6440863'), + (1194, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm60xJ14', '6445440'), + (1194, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm60xJ14', '6453951'), + (1194, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm60xJ14', '6461696'), + (1194, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm60xJ14', '6462129'), + (1194, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm60xJ14', '6463218'), + (1194, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm60xJ14', '6472181'), + (1194, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm60xJ14', '6482693'), + (1194, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nm60xJ14', '6484200'), + (1194, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm60xJ14', '6484680'), + (1194, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm60xJ14', '6507741'), + (1194, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm60xJ14', '6514659'), + (1194, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm60xJ14', '6514660'), + (1194, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm60xJ14', '6519103'), + (1194, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm60xJ14', '6535681'), + (1194, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm60xJ14', '6584747'), + (1194, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm60xJ14', '6587097'), + (1194, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm60xJ14', '6609022'), + (1194, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nm60xJ14', '6632757'), + (1194, 2376, 'maybe', '2024-01-03 16:10:54', '2025-12-17 19:46:40', 'nm60xJ14', '6642900'), + (1194, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm60xJ14', '6644187'), + (1194, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm60xJ14', '6648951'), + (1194, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm60xJ14', '6648952'), + (1194, 2388, 'maybe', '2024-01-03 16:10:39', '2025-12-17 19:46:37', 'nm60xJ14', '6649244'), + (1194, 2391, 'not_attending', '2024-01-11 17:41:46', '2025-12-17 19:46:37', 'nm60xJ14', '6654138'), + (1194, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm60xJ14', '6655401'), + (1194, 2399, 'not_attending', '2024-01-11 17:41:49', '2025-12-17 19:46:38', 'nm60xJ14', '6657583'), + (1194, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm60xJ14', '6661585'), + (1194, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm60xJ14', '6661588'), + (1194, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm60xJ14', '6661589'), + (1194, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm60xJ14', '6699906'), + (1194, 2408, 'not_attending', '2024-01-27 17:21:42', '2025-12-17 19:46:40', 'nm60xJ14', '6699907'), + (1194, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm60xJ14', '6699913'), + (1194, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm60xJ14', '6701109'), + (1194, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm60xJ14', '6705219'), + (1194, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm60xJ14', '6710153'), + (1194, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm60xJ14', '6711552'), + (1194, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nm60xJ14', '6711553'), + (1194, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm60xJ14', '6722688'), + (1194, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm60xJ14', '6730620'), + (1194, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm60xJ14', '6740364'), + (1194, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm60xJ14', '6743829'), + (1194, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm60xJ14', '7030380'), + (1194, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nm60xJ14', '7033677'), + (1194, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm60xJ14', '7044715'), + (1194, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm60xJ14', '7050318'), + (1194, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm60xJ14', '7050319'), + (1194, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm60xJ14', '7050322'), + (1194, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm60xJ14', '7057804'), + (1194, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm60xJ14', '7072824'), + (1194, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm60xJ14', '7074348'), + (1194, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm60xJ14', '7074364'), + (1194, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nm60xJ14', '7089267'), + (1194, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm60xJ14', '7098747'), + (1194, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm60xJ14', '7113468'), + (1194, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm60xJ14', '7114856'), + (1194, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm60xJ14', '7114951'), + (1194, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm60xJ14', '7114955'), + (1194, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm60xJ14', '7114956'), + (1194, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm60xJ14', '7114957'), + (1194, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm60xJ14', '7159484'), + (1194, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm60xJ14', '7178446'), + (1194, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nm60xJ14', '7220467'), + (1194, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm60xJ14', '7240354'), + (1194, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm60xJ14', '7251633'), + (1194, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm60xJ14', '7324073'), + (1194, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm60xJ14', '7324074'), + (1194, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm60xJ14', '7324075'), + (1194, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm60xJ14', '7324078'), + (1194, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm60xJ14', '7324082'), + (1194, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm60xJ14', '7331457'), + (1194, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm60xJ14', '7363643'), + (1194, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm60xJ14', '7368606'), + (1194, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm60xJ14', '7397462'), + (1194, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm60xJ14', '7424275'), + (1194, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm60xJ14', '7432751'), + (1194, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm60xJ14', '7432752'), + (1194, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm60xJ14', '7432753'), + (1194, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm60xJ14', '7432754'), + (1194, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm60xJ14', '7432755'), + (1194, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm60xJ14', '7432756'), + (1194, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm60xJ14', '7432758'), + (1194, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm60xJ14', '7432759'), + (1194, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm60xJ14', '7433834'), + (1194, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nm60xJ14', '7470197'), + (1194, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm60xJ14', '7685613'), + (1194, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm60xJ14', '7688194'), + (1194, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm60xJ14', '7688196'), + (1194, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm60xJ14', '7688289'), + (1194, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm60xJ14', '7692763'), + (1194, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm60xJ14', '7697552'), + (1194, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm60xJ14', '7699878'), + (1194, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nm60xJ14', '7704043'), + (1194, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm60xJ14', '7712467'), + (1194, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm60xJ14', '7713585'), + (1194, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm60xJ14', '7713586'), + (1194, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm60xJ14', '7738518'), + (1194, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm60xJ14', '7750636'), + (1194, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm60xJ14', '7796540'), + (1194, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm60xJ14', '7796541'), + (1194, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm60xJ14', '7796542'), + (1194, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm60xJ14', '7825913'), + (1194, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm60xJ14', '7826209'), + (1194, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm60xJ14', '7834742'), + (1194, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm60xJ14', '7842108'), + (1194, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm60xJ14', '7842902'), + (1194, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm60xJ14', '7842903'), + (1194, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm60xJ14', '7842904'), + (1194, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm60xJ14', '7842905'), + (1194, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm60xJ14', '7855719'), + (1194, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm60xJ14', '7860683'), + (1194, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm60xJ14', '7860684'), + (1194, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm60xJ14', '7866095'), + (1194, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm60xJ14', '7869170'), + (1194, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm60xJ14', '7869188'), + (1194, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm60xJ14', '7869201'), + (1194, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm60xJ14', '7877465'), + (1194, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm60xJ14', '7888250'), + (1194, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm60xJ14', '7904777'), + (1194, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm60xJ14', '8349164'), + (1194, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm60xJ14', '8349545'), + (1194, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm60xJ14', '8368028'), + (1194, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm60xJ14', '8368029'), + (1194, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm60xJ14', '8388462'), + (1194, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm60xJ14', '8400273'), + (1194, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm60xJ14', '8400275'), + (1194, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nm60xJ14', '8400276'), + (1194, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm60xJ14', '8404977'), + (1194, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm60xJ14', '8430783'), + (1194, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm60xJ14', '8430784'), + (1194, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm60xJ14', '8430799'), + (1194, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm60xJ14', '8430800'), + (1194, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm60xJ14', '8430801'), + (1194, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm60xJ14', '8438709'), + (1194, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm60xJ14', '8457738'), + (1194, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm60xJ14', '8459566'), + (1194, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm60xJ14', '8459567'), + (1194, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm60xJ14', '8461032'), + (1194, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm60xJ14', '8477877'), + (1194, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm60xJ14', '8485688'), + (1194, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm60xJ14', '8490587'), + (1194, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm60xJ14', '8493552'), + (1194, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm60xJ14', '8493553'), + (1194, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm60xJ14', '8493554'), + (1194, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm60xJ14', '8493555'), + (1194, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm60xJ14', '8493556'), + (1194, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm60xJ14', '8493557'), + (1194, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm60xJ14', '8493558'), + (1194, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm60xJ14', '8493559'), + (1194, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm60xJ14', '8493560'), + (1194, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nm60xJ14', '8493561'), + (1194, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm60xJ14', '8493572'), + (1194, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm60xJ14', '8540725'), + (1194, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm60xJ14', '8555421'), + (1195, 1098, 'attending', '2021-11-08 01:01:22', '2025-12-17 19:47:36', 'Ae76Mjzd', '4598861'), + (1195, 1103, 'attending', '2021-11-10 20:30:15', '2025-12-17 19:47:36', 'Ae76Mjzd', '4616350'), + (1195, 1114, 'maybe', '2021-11-13 13:58:47', '2025-12-17 19:47:36', 'Ae76Mjzd', '4637896'), + (1195, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Ae76Mjzd', '4642994'), + (1195, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Ae76Mjzd', '4642995'), + (1195, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Ae76Mjzd', '4642996'), + (1195, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Ae76Mjzd', '4642997'), + (1195, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Ae76Mjzd', '4645687'), + (1195, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Ae76Mjzd', '4645698'), + (1195, 1128, 'attending', '2021-11-17 01:44:54', '2025-12-17 19:47:37', 'Ae76Mjzd', '4645704'), + (1195, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Ae76Mjzd', '4645705'), + (1195, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae76Mjzd', '4668385'), + (1195, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Ae76Mjzd', '4694407'), + (1195, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Ae76Mjzd', '4746789'), + (1195, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Ae76Mjzd', '4753929'), + (1195, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ae76Mjzd', '6045684'), + (1196, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mG2V1WYd', '6045684'), + (1197, 665, 'attending', '2021-09-02 09:15:16', '2025-12-17 19:47:43', 'mpKvzeqd', '3547143'), + (1197, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'mpKvzeqd', '4210314'), + (1197, 903, 'not_attending', '2021-08-17 17:29:07', '2025-12-17 19:47:42', 'mpKvzeqd', '4240320'), + (1197, 935, 'not_attending', '2021-08-17 17:29:05', '2025-12-17 19:47:41', 'mpKvzeqd', '4304151'), + (1197, 948, 'not_attending', '2021-08-17 17:29:01', '2025-12-17 19:47:41', 'mpKvzeqd', '4315714'), + (1197, 949, 'not_attending', '2021-08-17 17:28:56', '2025-12-17 19:47:42', 'mpKvzeqd', '4315726'), + (1197, 950, 'not_attending', '2021-08-10 22:12:00', '2025-12-17 19:47:42', 'mpKvzeqd', '4315730'), + (1197, 951, 'attending', '2021-08-10 22:13:03', '2025-12-17 19:47:43', 'mpKvzeqd', '4315731'), + (1197, 971, 'maybe', '2021-09-08 20:31:43', '2025-12-17 19:47:43', 'mpKvzeqd', '4356801'), + (1197, 973, 'maybe', '2021-08-17 17:28:48', '2025-12-17 19:47:42', 'mpKvzeqd', '4366186'), + (1197, 974, 'maybe', '2021-08-17 17:27:01', '2025-12-17 19:47:42', 'mpKvzeqd', '4366187'), + (1197, 990, 'attending', '2021-09-02 09:15:18', '2025-12-17 19:47:43', 'mpKvzeqd', '4420735'), + (1197, 991, 'attending', '2021-09-06 16:18:13', '2025-12-17 19:47:43', 'mpKvzeqd', '4420738'), + (1197, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'mpKvzeqd', '4420739'), + (1197, 993, 'attending', '2021-09-25 13:13:55', '2025-12-17 19:47:34', 'mpKvzeqd', '4420741'), + (1197, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'mpKvzeqd', '4420744'), + (1197, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'mpKvzeqd', '4420747'), + (1197, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'mpKvzeqd', '4420748'), + (1197, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'mpKvzeqd', '4420749'), + (1197, 1000, 'not_attending', '2021-09-02 09:15:26', '2025-12-17 19:47:43', 'mpKvzeqd', '4424456'), + (1197, 1001, 'attending', '2021-09-02 09:15:07', '2025-12-17 19:47:43', 'mpKvzeqd', '4424687'), + (1197, 1002, 'maybe', '2021-08-30 20:57:56', '2025-12-17 19:47:43', 'mpKvzeqd', '4424932'), + (1197, 1003, 'not_attending', '2021-09-06 11:18:35', '2025-12-17 19:47:43', 'mpKvzeqd', '4438802'), + (1197, 1014, 'not_attending', '2021-09-06 11:18:31', '2025-12-17 19:47:43', 'mpKvzeqd', '4439233'), + (1197, 1017, 'not_attending', '2021-09-06 11:18:40', '2025-12-17 19:47:43', 'mpKvzeqd', '4441822'), + (1197, 1018, 'not_attending', '2021-09-06 11:18:25', '2025-12-17 19:47:43', 'mpKvzeqd', '4448883'), + (1197, 1023, 'not_attending', '2021-09-14 09:34:45', '2025-12-17 19:47:43', 'mpKvzeqd', '4461883'), + (1197, 1067, 'maybe', '2021-09-24 21:46:34', '2025-12-17 19:47:34', 'mpKvzeqd', '4508342'), + (1197, 1070, 'attending', '2021-10-01 23:13:46', '2025-12-17 19:47:34', 'mpKvzeqd', '4512562'), + (1197, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mpKvzeqd', '4568602'), + (1197, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mpKvzeqd', '6045684'), + (1198, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd5jgo5Km', '7074364'), + (1198, 2627, 'not_attending', '2024-05-25 22:23:20', '2025-12-17 19:46:35', 'd5jgo5Km', '7264724'), + (1198, 2641, 'attending', '2024-05-18 01:38:45', '2025-12-17 19:46:35', 'd5jgo5Km', '7276107'), + (1198, 2644, 'maybe', '2024-05-23 18:02:52', '2025-12-17 19:46:35', 'd5jgo5Km', '7279039'), + (1198, 2646, 'maybe', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'd5jgo5Km', '7281768'), + (1198, 2651, 'attending', '2024-05-24 23:20:34', '2025-12-17 19:46:35', 'd5jgo5Km', '7288200'), + (1198, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd5jgo5Km', '7302674'), + (1198, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd5jgo5Km', '7324073'), + (1198, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd5jgo5Km', '7324074'), + (1198, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd5jgo5Km', '7324075'), + (1198, 2692, 'attending', '2024-07-27 22:37:29', '2025-12-17 19:46:30', 'd5jgo5Km', '7324077'), + (1198, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd5jgo5Km', '7324078'), + (1198, 2697, 'maybe', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd5jgo5Km', '7324082'), + (1198, 2699, 'maybe', '2024-06-12 21:15:04', '2025-12-17 19:46:28', 'd5jgo5Km', '7324385'), + (1198, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd5jgo5Km', '7331457'), + (1198, 2737, 'attending', '2024-07-02 21:48:48', '2025-12-17 19:46:29', 'd5jgo5Km', '7344070'), + (1198, 2742, 'attending', '2024-07-03 23:22:05', '2025-12-17 19:46:29', 'd5jgo5Km', '7345167'), + (1198, 2743, 'maybe', '2024-07-04 14:13:16', '2025-12-17 19:46:29', 'd5jgo5Km', '7345688'), + (1198, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'd5jgo5Km', '7356752'), + (1198, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd5jgo5Km', '7363643'), + (1198, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd5jgo5Km', '7368606'), + (1198, 2776, 'maybe', '2024-07-25 20:17:40', '2025-12-17 19:46:30', 'd5jgo5Km', '7370690'), + (1198, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd5jgo5Km', '7397462'), + (1198, 2806, 'attending', '2024-09-18 22:30:55', '2025-12-17 19:46:25', 'd5jgo5Km', '7404888'), + (1198, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd5jgo5Km', '7424275'), + (1198, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd5jgo5Km', '7424276'), + (1198, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd5jgo5Km', '7432751'), + (1198, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd5jgo5Km', '7432752'), + (1198, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd5jgo5Km', '7432753'), + (1198, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd5jgo5Km', '7432754'), + (1198, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd5jgo5Km', '7432755'), + (1198, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd5jgo5Km', '7432756'), + (1198, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd5jgo5Km', '7432758'), + (1198, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd5jgo5Km', '7432759'), + (1198, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd5jgo5Km', '7433834'), + (1198, 2839, 'attending', '2024-09-13 03:39:10', '2025-12-17 19:46:25', 'd5jgo5Km', '7439262'), + (1198, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd5jgo5Km', '7470197'), + (1198, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd5jgo5Km', '7685613'), + (1198, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd5jgo5Km', '7688194'), + (1198, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd5jgo5Km', '7688196'), + (1198, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd5jgo5Km', '7688289'), + (1198, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd5jgo5Km', '7692763'), + (1198, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd5jgo5Km', '7697552'), + (1198, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd5jgo5Km', '7699878'), + (1198, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd5jgo5Km', '7704043'), + (1198, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd5jgo5Km', '7712467'), + (1198, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd5jgo5Km', '7713585'), + (1198, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd5jgo5Km', '7713586'), + (1198, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd5jgo5Km', '7738518'), + (1198, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd5jgo5Km', '7750636'), + (1198, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd5jgo5Km', '7796540'), + (1198, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd5jgo5Km', '7796541'), + (1198, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd5jgo5Km', '7796542'), + (1199, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'xAYxbz0m', '4736497'), + (1199, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'xAYxbz0m', '4736499'), + (1199, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'xAYxbz0m', '4736500'), + (1199, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'xAYxbz0m', '4736503'), + (1199, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'xAYxbz0m', '4736504'), + (1199, 1185, 'not_attending', '2022-01-12 23:28:47', '2025-12-17 19:47:31', 'xAYxbz0m', '4746789'), + (1199, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xAYxbz0m', '4753929'), + (1199, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xAYxbz0m', '5038850'), + (1199, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xAYxbz0m', '5045826'), + (1199, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xAYxbz0m', '5132533'), + (1199, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYxbz0m', '6045684'), + (1200, 604, 'maybe', '2021-02-26 03:55:50', '2025-12-17 19:47:50', '6AXgn8Em', '3470305'), + (1200, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '6AXgn8Em', '3517815'), + (1200, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '6AXgn8Em', '3517816'), + (1200, 623, 'not_attending', '2021-02-26 11:21:08', '2025-12-17 19:47:51', '6AXgn8Em', '3523941'), + (1200, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '6AXgn8Em', '3533850'), + (1200, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '6AXgn8Em', '3536632'), + (1200, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '6AXgn8Em', '3536656'), + (1200, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '6AXgn8Em', '3539916'), + (1200, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '6AXgn8Em', '3539917'), + (1200, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '6AXgn8Em', '3539918'), + (1200, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '6AXgn8Em', '3539919'), + (1200, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '6AXgn8Em', '3539920'), + (1200, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '6AXgn8Em', '3539921'), + (1200, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '6AXgn8Em', '3539922'), + (1200, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '6AXgn8Em', '3539923'), + (1200, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '6AXgn8Em', '3539927'), + (1200, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '6AXgn8Em', '3582734'), + (1200, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXgn8Em', '3619523'), + (1200, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXgn8Em', '3674262'), + (1200, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXgn8Em', '3677402'), + (1200, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXgn8Em', '6045684'), + (1201, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AQbW1QN4', '5630967'), + (1201, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AQbW1QN4', '5630968'), + (1201, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AQbW1QN4', '5642818'), + (1201, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AQbW1QN4', '5670445'), + (1201, 1784, 'not_attending', '2022-11-16 19:58:39', '2025-12-17 19:47:16', 'AQbW1QN4', '5699760'), + (1201, 1788, 'not_attending', '2022-11-17 09:26:56', '2025-12-17 19:47:16', 'AQbW1QN4', '5727236'), + (1201, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AQbW1QN4', '5741601'), + (1201, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AQbW1QN4', '5763458'), + (1201, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AQbW1QN4', '5774172'), + (1201, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AQbW1QN4', '5818247'), + (1201, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AQbW1QN4', '5819471'), + (1201, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AQbW1QN4', '5827739'), + (1201, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AQbW1QN4', '5844306'), + (1201, 1846, 'not_attending', '2022-12-18 18:53:42', '2025-12-17 19:47:04', 'AQbW1QN4', '5845237'), + (1201, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AQbW1QN4', '5850159'), + (1201, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AQbW1QN4', '5858999'), + (1201, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AQbW1QN4', '5871984'), + (1201, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AQbW1QN4', '5876354'), + (1201, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQbW1QN4', '6045684'), + (1202, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd81KyXGm', '6514660'), + (1202, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd81KyXGm', '6584747'), + (1202, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd81KyXGm', '6587097'), + (1202, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', 'd81KyXGm', '6596617'), + (1202, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd81KyXGm', '6609022'), + (1202, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd81KyXGm', '6632757'), + (1202, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd81KyXGm', '6644187'), + (1202, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd81KyXGm', '6648951'), + (1202, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd81KyXGm', '6648952'), + (1202, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'd81KyXGm', '6651141'), + (1202, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd81KyXGm', '6655401'), + (1202, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd81KyXGm', '6661585'), + (1202, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd81KyXGm', '6661588'), + (1202, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd81KyXGm', '6661589'), + (1202, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd81KyXGm', '6699906'), + (1202, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd81KyXGm', '6699913'), + (1202, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd81KyXGm', '6701109'), + (1202, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd81KyXGm', '6705219'), + (1202, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd81KyXGm', '6710153'), + (1202, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd81KyXGm', '6711552'), + (1202, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd81KyXGm', '6711553'), + (1202, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd81KyXGm', '6722688'), + (1202, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd81KyXGm', '6730620'), + (1202, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd81KyXGm', '6730642'), + (1202, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd81KyXGm', '6740364'), + (1202, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd81KyXGm', '6743829'), + (1202, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd81KyXGm', '7030380'), + (1202, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd81KyXGm', '7033677'), + (1202, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd81KyXGm', '7035415'), + (1202, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd81KyXGm', '7044715'), + (1202, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd81KyXGm', '7050318'), + (1202, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd81KyXGm', '7050319'), + (1202, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd81KyXGm', '7050322'), + (1202, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd81KyXGm', '7057804'), + (1202, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd81KyXGm', '7072824'), + (1202, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd81KyXGm', '7074348'), + (1202, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd81KyXGm', '7089267'), + (1202, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd81KyXGm', '7098747'), + (1202, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd81KyXGm', '7113468'), + (1202, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd81KyXGm', '7114856'), + (1202, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd81KyXGm', '7114951'), + (1202, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd81KyXGm', '7114955'), + (1202, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd81KyXGm', '7114956'), + (1202, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd81KyXGm', '7153615'), + (1202, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd81KyXGm', '7159484'), + (1202, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd81KyXGm', '7178446'), + (1203, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dKPrJram', '5630968'), + (1203, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dKPrJram', '5642818'), + (1203, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dKPrJram', '5670445'), + (1203, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dKPrJram', '5774172'), + (1203, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dKPrJram', '5818247'), + (1203, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dKPrJram', '5819471'), + (1203, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dKPrJram', '5827739'), + (1203, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dKPrJram', '5844306'), + (1203, 1846, 'not_attending', '2022-12-18 18:53:46', '2025-12-17 19:47:04', 'dKPrJram', '5845237'), + (1203, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dKPrJram', '5850159'), + (1203, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dKPrJram', '5858999'), + (1203, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dKPrJram', '5871984'), + (1203, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dKPrJram', '5876354'), + (1203, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dKPrJram', '5880943'), + (1203, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dKPrJram', '5900202'), + (1203, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dKPrJram', '5900203'), + (1203, 1916, 'not_attending', '2023-02-26 20:49:52', '2025-12-17 19:47:08', 'dKPrJram', '5910526'), + (1203, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dKPrJram', '5910528'), + (1203, 1921, 'attending', '2023-02-26 18:02:44', '2025-12-17 19:47:08', 'dKPrJram', '5914092'), + (1203, 1936, 'not_attending', '2023-02-28 17:17:10', '2025-12-17 19:47:08', 'dKPrJram', '5959397'), + (1203, 1939, 'not_attending', '2023-02-28 17:16:41', '2025-12-17 19:47:08', 'dKPrJram', '5959755'), + (1203, 1941, 'not_attending', '2023-02-26 06:52:06', '2025-12-17 19:47:09', 'dKPrJram', '5961684'), + (1203, 1944, 'not_attending', '2023-02-28 17:11:36', '2025-12-17 19:47:09', 'dKPrJram', '5962132'), + (1203, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dKPrJram', '5962317'), + (1203, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dKPrJram', '5962318'), + (1203, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dKPrJram', '5965933'), + (1203, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dKPrJram', '5967014'), + (1203, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dKPrJram', '5972815'), + (1203, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dKPrJram', '5974016'), + (1203, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dKPrJram', '5975052'), + (1203, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dKPrJram', '5975054'), + (1203, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dKPrJram', '5981515'), + (1203, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dKPrJram', '5993516'), + (1203, 1973, 'attending', '2023-03-13 07:33:17', '2025-12-17 19:46:56', 'dKPrJram', '5993777'), + (1203, 1974, 'maybe', '2023-03-18 22:50:32', '2025-12-17 19:46:57', 'dKPrJram', '5993778'), + (1203, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dKPrJram', '5998939'), + (1203, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dKPrJram', '6028191'), + (1203, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dKPrJram', '6040066'), + (1203, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dKPrJram', '6042717'), + (1203, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dKPrJram', '6044838'), + (1203, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dKPrJram', '6044839'), + (1203, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKPrJram', '6045684'), + (1203, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dKPrJram', '6050104'), + (1203, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dKPrJram', '6053195'), + (1203, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dKPrJram', '6053198'), + (1203, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dKPrJram', '6056085'), + (1203, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dKPrJram', '6056916'), + (1203, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dKPrJram', '6059290'), + (1203, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dKPrJram', '6060328'), + (1203, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dKPrJram', '6061037'), + (1203, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dKPrJram', '6061039'), + (1203, 2020, 'not_attending', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'dKPrJram', '6065813'), + (1203, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dKPrJram', '6067245'), + (1203, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dKPrJram', '6068094'), + (1203, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dKPrJram', '6068252'), + (1203, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dKPrJram', '6068253'), + (1203, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dKPrJram', '6068254'), + (1203, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dKPrJram', '6068280'), + (1203, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dKPrJram', '6069093'), + (1203, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dKPrJram', '6072528'), + (1203, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dKPrJram', '6075556'), + (1203, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dKPrJram', '6079840'), + (1203, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dKPrJram', '6083398'), + (1203, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dKPrJram', '6093504'), + (1203, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dKPrJram', '6097414'), + (1203, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dKPrJram', '6097442'), + (1203, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dKPrJram', '6097684'), + (1203, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dKPrJram', '6098762'), + (1203, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dKPrJram', '6101362'), + (1203, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dKPrJram', '6107314'), + (1204, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AgkXJlRA', '4668385'), + (1204, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'AgkXJlRA', '4694407'), + (1204, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AgkXJlRA', '4746789'), + (1204, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AgkXJlRA', '4753929'), + (1204, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgkXJlRA', '6045684'), + (1205, 1379, 'attending', '2022-05-20 23:11:44', '2025-12-17 19:47:29', 'd5YPxwLd', '5271449'), + (1205, 1380, 'attending', '2022-05-28 22:45:43', '2025-12-17 19:47:30', 'd5YPxwLd', '5271450'), + (1205, 1393, 'attending', '2022-05-22 03:34:56', '2025-12-17 19:47:30', 'd5YPxwLd', '5280603'), + (1205, 1394, 'not_attending', '2022-05-27 03:55:53', '2025-12-17 19:47:30', 'd5YPxwLd', '5280667'), + (1205, 1407, 'not_attending', '2022-06-04 02:33:25', '2025-12-17 19:47:30', 'd5YPxwLd', '5363695'), + (1205, 1409, 'attending', '2022-05-20 23:11:18', '2025-12-17 19:47:30', 'd5YPxwLd', '5367032'), + (1205, 1415, 'not_attending', '2022-06-04 02:33:06', '2025-12-17 19:47:30', 'd5YPxwLd', '5368973'), + (1205, 1416, 'not_attending', '2022-05-24 20:13:08', '2025-12-17 19:47:30', 'd5YPxwLd', '5369628'), + (1205, 1418, 'not_attending', '2022-05-24 19:35:56', '2025-12-17 19:47:30', 'd5YPxwLd', '5372162'), + (1205, 1419, 'not_attending', '2022-06-08 22:52:41', '2025-12-17 19:47:30', 'd5YPxwLd', '5373081'), + (1205, 1420, 'attending', '2022-05-27 20:28:55', '2025-12-17 19:47:30', 'd5YPxwLd', '5374882'), + (1205, 1421, 'attending', '2022-05-30 21:49:01', '2025-12-17 19:47:30', 'd5YPxwLd', '5374885'), + (1205, 1422, 'attending', '2022-05-28 20:04:27', '2025-12-17 19:47:30', 'd5YPxwLd', '5375603'), + (1205, 1423, 'not_attending', '2022-06-16 01:44:38', '2025-12-17 19:47:17', 'd5YPxwLd', '5375727'), + (1205, 1424, 'attending', '2022-05-26 22:58:48', '2025-12-17 19:47:30', 'd5YPxwLd', '5375772'), + (1205, 1425, 'not_attending', '2022-05-26 21:45:22', '2025-12-17 19:47:30', 'd5YPxwLd', '5375861'), + (1205, 1426, 'not_attending', '2022-05-24 22:30:24', '2025-12-17 19:47:30', 'd5YPxwLd', '5375873'), + (1205, 1427, 'not_attending', '2022-05-24 22:30:42', '2025-12-17 19:47:30', 'd5YPxwLd', '5376074'), + (1205, 1428, 'maybe', '2022-05-30 02:24:44', '2025-12-17 19:47:30', 'd5YPxwLd', '5378247'), + (1205, 1429, 'attending', '2022-06-03 03:51:48', '2025-12-17 19:47:30', 'd5YPxwLd', '5388761'), + (1205, 1430, 'attending', '2022-05-30 02:23:50', '2025-12-17 19:47:30', 'd5YPxwLd', '5389402'), + (1205, 1431, 'attending', '2022-06-01 03:25:34', '2025-12-17 19:47:30', 'd5YPxwLd', '5389605'), + (1205, 1433, 'not_attending', '2022-06-01 03:23:50', '2025-12-17 19:47:30', 'd5YPxwLd', '5391667'), + (1205, 1436, 'attending', '2022-06-03 03:51:40', '2025-12-17 19:47:30', 'd5YPxwLd', '5394292'), + (1205, 1437, 'maybe', '2022-06-01 03:23:57', '2025-12-17 19:47:30', 'd5YPxwLd', '5394493'), + (1205, 1440, 'not_attending', '2022-06-08 04:20:55', '2025-12-17 19:47:30', 'd5YPxwLd', '5396080'), + (1205, 1442, 'not_attending', '2022-06-18 13:59:43', '2025-12-17 19:47:17', 'd5YPxwLd', '5397265'), + (1205, 1449, 'not_attending', '2022-06-14 16:30:21', '2025-12-17 19:47:31', 'd5YPxwLd', '5403335'), + (1205, 1450, 'not_attending', '2022-06-10 18:01:56', '2025-12-17 19:47:30', 'd5YPxwLd', '5403421'), + (1205, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd5YPxwLd', '5403967'), + (1205, 1454, 'attending', '2022-06-13 02:37:16', '2025-12-17 19:47:31', 'd5YPxwLd', '5404771'), + (1205, 1455, 'not_attending', '2022-06-13 02:36:56', '2025-12-17 19:47:31', 'd5YPxwLd', '5404772'), + (1205, 1458, 'not_attending', '2022-06-10 17:26:33', '2025-12-17 19:47:17', 'd5YPxwLd', '5404786'), + (1205, 1462, 'not_attending', '2022-06-14 05:03:10', '2025-12-17 19:47:17', 'd5YPxwLd', '5405203'), + (1205, 1463, 'not_attending', '2022-06-14 23:59:44', '2025-12-17 19:47:31', 'd5YPxwLd', '5405208'), + (1205, 1465, 'not_attending', '2022-06-13 05:53:08', '2025-12-17 19:47:31', 'd5YPxwLd', '5406355'), + (1205, 1470, 'attending', '2022-06-13 01:23:14', '2025-12-17 19:47:17', 'd5YPxwLd', '5407053'), + (1205, 1471, 'maybe', '2022-06-18 14:00:04', '2025-12-17 19:47:17', 'd5YPxwLd', '5407063'), + (1205, 1473, 'not_attending', '2022-06-14 23:59:38', '2025-12-17 19:47:31', 'd5YPxwLd', '5407267'), + (1205, 1475, 'attending', '2022-06-16 22:51:54', '2025-12-17 19:47:17', 'd5YPxwLd', '5408108'), + (1205, 1478, 'not_attending', '2022-06-24 22:45:24', '2025-12-17 19:47:19', 'd5YPxwLd', '5408794'), + (1205, 1479, 'attending', '2022-06-17 22:23:09', '2025-12-17 19:47:17', 'd5YPxwLd', '5410322'), + (1205, 1480, 'not_attending', '2022-06-21 22:34:03', '2025-12-17 19:47:19', 'd5YPxwLd', '5411699'), + (1205, 1481, 'not_attending', '2022-06-21 22:34:37', '2025-12-17 19:47:17', 'd5YPxwLd', '5412237'), + (1205, 1482, 'attending', '2022-06-21 02:51:58', '2025-12-17 19:47:19', 'd5YPxwLd', '5412550'), + (1205, 1484, 'maybe', '2022-06-21 02:51:50', '2025-12-17 19:47:17', 'd5YPxwLd', '5415046'), + (1205, 1487, 'not_attending', '2022-06-27 14:42:29', '2025-12-17 19:47:19', 'd5YPxwLd', '5419006'), + (1205, 1489, 'attending', '2022-07-06 14:36:49', '2025-12-17 19:47:19', 'd5YPxwLd', '5420155'), + (1205, 1490, 'maybe', '2022-06-24 18:04:24', '2025-12-17 19:47:19', 'd5YPxwLd', '5420156'), + (1205, 1491, 'attending', '2022-06-24 18:03:56', '2025-12-17 19:47:19', 'd5YPxwLd', '5420158'), + (1205, 1492, 'attending', '2022-06-26 03:26:04', '2025-12-17 19:47:19', 'd5YPxwLd', '5420175'), + (1205, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd5YPxwLd', '5422086'), + (1205, 1496, 'attending', '2022-06-26 15:04:03', '2025-12-17 19:47:19', 'd5YPxwLd', '5422404'), + (1205, 1497, 'attending', '2022-06-26 15:04:05', '2025-12-17 19:47:19', 'd5YPxwLd', '5422405'), + (1205, 1498, 'not_attending', '2022-07-02 22:25:13', '2025-12-17 19:47:19', 'd5YPxwLd', '5422406'), + (1205, 1500, 'not_attending', '2022-06-30 16:29:51', '2025-12-17 19:47:19', 'd5YPxwLd', '5423915'), + (1205, 1501, 'maybe', '2022-06-29 02:39:44', '2025-12-17 19:47:19', 'd5YPxwLd', '5424546'), + (1205, 1502, 'attending', '2022-06-28 17:19:00', '2025-12-17 19:47:19', 'd5YPxwLd', '5424565'), + (1205, 1504, 'not_attending', '2022-07-13 06:05:18', '2025-12-17 19:47:19', 'd5YPxwLd', '5426882'), + (1205, 1505, 'maybe', '2022-07-05 18:28:08', '2025-12-17 19:47:19', 'd5YPxwLd', '5427083'), + (1205, 1509, 'maybe', '2022-07-06 14:36:57', '2025-12-17 19:47:19', 'd5YPxwLd', '5434019'), + (1205, 1511, 'maybe', '2022-07-09 17:06:57', '2025-12-17 19:47:19', 'd5YPxwLd', '5437733'), + (1205, 1513, 'not_attending', '2022-07-09 12:33:49', '2025-12-17 19:47:20', 'd5YPxwLd', '5441125'), + (1205, 1514, 'not_attending', '2022-07-10 21:26:01', '2025-12-17 19:47:20', 'd5YPxwLd', '5441126'), + (1205, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd5YPxwLd', '5441128'), + (1205, 1516, 'not_attending', '2022-08-08 14:34:46', '2025-12-17 19:47:23', 'd5YPxwLd', '5441129'), + (1205, 1517, 'not_attending', '2022-08-18 01:41:46', '2025-12-17 19:47:23', 'd5YPxwLd', '5441130'), + (1205, 1518, 'maybe', '2022-08-29 14:20:14', '2025-12-17 19:47:24', 'd5YPxwLd', '5441131'), + (1205, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'd5YPxwLd', '5441132'), + (1205, 1520, 'not_attending', '2022-07-10 21:25:31', '2025-12-17 19:47:19', 'd5YPxwLd', '5441645'), + (1205, 1521, 'not_attending', '2022-07-13 02:41:34', '2025-12-17 19:47:19', 'd5YPxwLd', '5442180'), + (1205, 1522, 'maybe', '2022-07-10 21:25:50', '2025-12-17 19:47:20', 'd5YPxwLd', '5442832'), + (1205, 1525, 'not_attending', '2022-07-13 02:41:44', '2025-12-17 19:47:19', 'd5YPxwLd', '5444962'), + (1205, 1526, 'attending', '2022-07-13 06:05:48', '2025-12-17 19:47:20', 'd5YPxwLd', '5445059'), + (1205, 1528, 'not_attending', '2022-07-14 03:36:09', '2025-12-17 19:47:20', 'd5YPxwLd', '5446643'), + (1205, 1540, 'attending', '2022-07-18 17:10:02', '2025-12-17 19:47:20', 'd5YPxwLd', '5453325'), + (1205, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd5YPxwLd', '5454516'), + (1205, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd5YPxwLd', '5454605'), + (1205, 1547, 'not_attending', '2022-07-22 03:55:20', '2025-12-17 19:47:20', 'd5YPxwLd', '5454608'), + (1205, 1551, 'maybe', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd5YPxwLd', '5455037'), + (1205, 1558, 'maybe', '2022-09-14 02:18:28', '2025-12-17 19:47:10', 'd5YPxwLd', '5458730'), + (1205, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd5YPxwLd', '5461278'), + (1205, 1562, 'maybe', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd5YPxwLd', '5469480'), + (1205, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd5YPxwLd', '5471073'), + (1205, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd5YPxwLd', '5474663'), + (1205, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd5YPxwLd', '5482022'), + (1205, 1575, 'not_attending', '2022-08-18 01:41:54', '2025-12-17 19:47:23', 'd5YPxwLd', '5482250'), + (1205, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd5YPxwLd', '5482793'), + (1205, 1578, 'attending', '2022-08-03 02:26:00', '2025-12-17 19:47:21', 'd5YPxwLd', '5483073'), + (1205, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd5YPxwLd', '5488912'), + (1205, 1581, 'not_attending', '2022-08-11 20:15:39', '2025-12-17 19:47:22', 'd5YPxwLd', '5490302'), + (1205, 1586, 'maybe', '2022-08-08 14:35:02', '2025-12-17 19:47:23', 'd5YPxwLd', '5492019'), + (1205, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd5YPxwLd', '5492192'), + (1205, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd5YPxwLd', '5493139'), + (1205, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd5YPxwLd', '5493200'), + (1205, 1592, 'attending', '2022-08-10 13:19:10', '2025-12-17 19:47:22', 'd5YPxwLd', '5494031'), + (1205, 1595, 'maybe', '2022-08-10 13:19:31', '2025-12-17 19:47:22', 'd5YPxwLd', '5495736'), + (1205, 1603, 'not_attending', '2022-08-13 23:36:30', '2025-12-17 19:47:23', 'd5YPxwLd', '5497895'), + (1205, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd5YPxwLd', '5502188'), + (1205, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd5YPxwLd', '5505059'), + (1205, 1610, 'maybe', '2022-08-29 14:19:49', '2025-12-17 19:47:23', 'd5YPxwLd', '5506595'), + (1205, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd5YPxwLd', '5509055'), + (1205, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd5YPxwLd', '5512862'), + (1205, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd5YPxwLd', '5513985'), + (1205, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd5YPxwLd', '5519981'), + (1205, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd5YPxwLd', '5522550'), + (1205, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd5YPxwLd', '5534683'), + (1205, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd5YPxwLd', '5537735'), + (1205, 1637, 'not_attending', '2022-09-03 06:53:50', '2025-12-17 19:47:24', 'd5YPxwLd', '5539591'), + (1205, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd5YPxwLd', '5540859'), + (1205, 1643, 'maybe', '2022-09-03 06:54:26', '2025-12-17 19:47:11', 'd5YPxwLd', '5545856'), + (1205, 1644, 'maybe', '2022-09-03 06:54:10', '2025-12-17 19:47:11', 'd5YPxwLd', '5545857'), + (1205, 1645, 'not_attending', '2022-09-11 21:26:29', '2025-12-17 19:47:25', 'd5YPxwLd', '5546559'), + (1205, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd5YPxwLd', '5546619'), + (1205, 1647, 'maybe', '2022-09-18 01:58:20', '2025-12-17 19:47:11', 'd5YPxwLd', '5548660'), + (1205, 1651, 'attending', '2022-09-06 00:43:01', '2025-12-17 19:47:24', 'd5YPxwLd', '5551425'), + (1205, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd5YPxwLd', '5555245'), + (1205, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd5YPxwLd', '5557747'), + (1205, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd5YPxwLd', '5560255'), + (1205, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd5YPxwLd', '5562906'), + (1205, 1665, 'attending', '2022-09-11 21:26:37', '2025-12-17 19:47:25', 'd5YPxwLd', '5563133'), + (1205, 1666, 'not_attending', '2022-09-18 01:59:07', '2025-12-17 19:47:11', 'd5YPxwLd', '5563208'), + (1205, 1667, 'not_attending', '2022-09-24 23:21:08', '2025-12-17 19:47:11', 'd5YPxwLd', '5563221'), + (1205, 1670, 'maybe', '2022-09-18 01:58:13', '2025-12-17 19:47:11', 'd5YPxwLd', '5575076'), + (1205, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd5YPxwLd', '5600604'), + (1205, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd5YPxwLd', '5605544'), + (1205, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'd5YPxwLd', '5606737'), + (1205, 1719, 'not_attending', '2022-10-08 16:23:52', '2025-12-17 19:47:12', 'd5YPxwLd', '5630958'), + (1205, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd5YPxwLd', '5630960'), + (1205, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd5YPxwLd', '5630961'), + (1205, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd5YPxwLd', '5630962'), + (1205, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd5YPxwLd', '5630966'), + (1205, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd5YPxwLd', '5630967'), + (1205, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd5YPxwLd', '5630968'), + (1205, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd5YPxwLd', '5635406'), + (1205, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd5YPxwLd', '5638765'), + (1205, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd5YPxwLd', '5640097'), + (1205, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd5YPxwLd', '5640843'), + (1205, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd5YPxwLd', '5641521'), + (1205, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd5YPxwLd', '5642818'), + (1205, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd5YPxwLd', '5652395'), + (1205, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd5YPxwLd', '5670445'), + (1205, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd5YPxwLd', '5671637'), + (1205, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd5YPxwLd', '5672329'), + (1205, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd5YPxwLd', '5674057'), + (1205, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd5YPxwLd', '5674060'), + (1205, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd5YPxwLd', '5677461'), + (1205, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd5YPxwLd', '5698046'), + (1205, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd5YPxwLd', '5699760'), + (1205, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd5YPxwLd', '5741601'), + (1205, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd5YPxwLd', '5763458'), + (1205, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd5YPxwLd', '5774172'), + (1205, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'd5YPxwLd', '5818247'), + (1205, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd5YPxwLd', '5819471'), + (1205, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd5YPxwLd', '5827739'), + (1205, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd5YPxwLd', '5844306'), + (1205, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd5YPxwLd', '5850159'), + (1205, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd5YPxwLd', '5858999'), + (1205, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd5YPxwLd', '5871984'), + (1205, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd5YPxwLd', '5876354'), + (1205, 1864, 'not_attending', '2023-01-22 00:22:07', '2025-12-17 19:47:05', 'd5YPxwLd', '5879675'), + (1205, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd5YPxwLd', '5880939'), + (1205, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd5YPxwLd', '5887890'), + (1205, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd5YPxwLd', '5888598'), + (1205, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd5YPxwLd', '5893260'), + (1205, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd5YPxwLd', '6045684'), + (1206, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'R40NlObm', '3236465'), + (1206, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'R40NlObm', '3539916'), + (1206, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'R40NlObm', '3539918'), + (1206, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'R40NlObm', '3539919'), + (1206, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'R40NlObm', '3539920'), + (1206, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'R40NlObm', '3539921'), + (1206, 689, 'attending', '2021-03-25 01:59:43', '2025-12-17 19:47:44', 'R40NlObm', '3555564'), + (1206, 700, 'not_attending', '2021-03-30 21:39:53', '2025-12-17 19:47:44', 'R40NlObm', '3575725'), + (1206, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'R40NlObm', '3583262'), + (1206, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'R40NlObm', '3619523'), + (1206, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'R40NlObm', '3661369'), + (1206, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'R40NlObm', '3674262'), + (1206, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'R40NlObm', '3677402'), + (1206, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'R40NlObm', '3730212'), + (1206, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'R40NlObm', '3793156'), + (1206, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'R40NlObm', '3803310'), + (1206, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'R40NlObm', '3806392'), + (1206, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40NlObm', '6045684'), + (1207, 26, 'attending', '2020-04-04 00:37:10', '2025-12-17 19:47:57', '8418nM8A', '2958082'), + (1207, 30, 'not_attending', '2020-04-06 15:55:53', '2025-12-17 19:47:57', '8418nM8A', '2961895'), + (1207, 33, 'attending', '2020-04-07 22:45:59', '2025-12-17 19:47:57', '8418nM8A', '2963932'), + (1207, 40, 'maybe', '2020-04-09 15:23:29', '2025-12-17 19:47:57', '8418nM8A', '2970718'), + (1207, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', '8418nM8A', '2971546'), + (1207, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '8418nM8A', '2974534'), + (1207, 46, 'attending', '2020-04-08 09:32:17', '2025-12-17 19:47:57', '8418nM8A', '2974955'), + (1207, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', '8418nM8A', '2975384'), + (1207, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', '8418nM8A', '2975385'), + (1207, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', '8418nM8A', '2976575'), + (1207, 58, 'attending', '2020-04-16 18:39:55', '2025-12-17 19:47:57', '8418nM8A', '2977127'), + (1207, 60, 'maybe', '2020-04-20 11:08:59', '2025-12-17 19:47:57', '8418nM8A', '2977129'), + (1207, 61, 'attending', '2020-04-12 02:24:49', '2025-12-17 19:47:57', '8418nM8A', '2977130'), + (1207, 62, 'not_attending', '2020-05-12 22:21:29', '2025-12-17 19:47:57', '8418nM8A', '2977131'), + (1207, 64, 'attending', '2020-05-31 22:29:55', '2025-12-17 19:47:58', '8418nM8A', '2977133'), + (1207, 69, 'attending', '2020-06-28 19:03:55', '2025-12-17 19:47:55', '8418nM8A', '2977138'), + (1207, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '8418nM8A', '2977343'), + (1207, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '8418nM8A', '2977812'), + (1207, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', '8418nM8A', '2977931'), + (1207, 74, 'attending', '2020-04-15 01:56:55', '2025-12-17 19:47:57', '8418nM8A', '2978244'), + (1207, 75, 'attending', '2020-04-19 17:31:50', '2025-12-17 19:47:57', '8418nM8A', '2978245'), + (1207, 76, 'attending', '2020-05-02 22:26:51', '2025-12-17 19:47:57', '8418nM8A', '2978246'), + (1207, 77, 'attending', '2020-05-04 00:15:46', '2025-12-17 19:47:57', '8418nM8A', '2978247'), + (1207, 78, 'attending', '2020-05-17 21:44:54', '2025-12-17 19:47:57', '8418nM8A', '2978249'), + (1207, 79, 'attending', '2020-05-24 02:27:52', '2025-12-17 19:47:57', '8418nM8A', '2978250'), + (1207, 80, 'not_attending', '2020-06-03 11:12:08', '2025-12-17 19:47:58', '8418nM8A', '2978251'), + (1207, 81, 'attending', '2020-06-09 22:40:19', '2025-12-17 19:47:58', '8418nM8A', '2978252'), + (1207, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', '8418nM8A', '2978433'), + (1207, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '8418nM8A', '2978438'), + (1207, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '8418nM8A', '2980871'), + (1207, 85, 'attending', '2020-04-22 23:02:37', '2025-12-17 19:47:57', '8418nM8A', '2980872'), + (1207, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '8418nM8A', '2981388'), + (1207, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '8418nM8A', '2986743'), + (1207, 95, 'attending', '2020-04-19 18:21:35', '2025-12-17 19:47:57', '8418nM8A', '2987452'), + (1207, 96, 'attending', '2020-05-04 00:15:03', '2025-12-17 19:47:57', '8418nM8A', '2987453'), + (1207, 97, 'attending', '2020-05-04 00:16:18', '2025-12-17 19:47:57', '8418nM8A', '2987454'), + (1207, 98, 'attending', '2020-05-05 23:48:15', '2025-12-17 19:47:57', '8418nM8A', '2987455'), + (1207, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', '8418nM8A', '2990784'), + (1207, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', '8418nM8A', '2991471'), + (1207, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', '8418nM8A', '2993501'), + (1207, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '8418nM8A', '2994480'), + (1207, 115, 'attending', '2020-05-10 02:04:35', '2025-12-17 19:47:57', '8418nM8A', '3001217'), + (1207, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', '8418nM8A', '3023063'), + (1207, 130, 'attending', '2020-05-19 21:34:12', '2025-12-17 19:47:57', '8418nM8A', '3028781'), + (1207, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '8418nM8A', '3034321'), + (1207, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '8418nM8A', '3035881'), + (1207, 137, 'attending', '2020-05-31 13:21:36', '2025-12-17 19:47:58', '8418nM8A', '3042188'), + (1207, 138, 'maybe', '2020-05-30 21:04:45', '2025-12-17 19:47:58', '8418nM8A', '3042932'), + (1207, 141, 'attending', '2020-05-31 22:30:06', '2025-12-17 19:47:58', '8418nM8A', '3049830'), + (1207, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '8418nM8A', '3049983'), + (1207, 171, 'maybe', '2020-06-09 22:40:14', '2025-12-17 19:47:58', '8418nM8A', '3058743'), + (1207, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '8418nM8A', '3058959'), + (1207, 173, 'not_attending', '2020-06-17 12:09:43', '2025-12-17 19:47:58', '8418nM8A', '3067093'), + (1207, 175, 'attending', '2020-06-09 22:40:58', '2025-12-17 19:47:58', '8418nM8A', '3068305'), + (1207, 180, 'attending', '2020-06-15 18:03:47', '2025-12-17 19:47:58', '8418nM8A', '3074048'), + (1207, 181, 'maybe', '2020-06-17 12:09:49', '2025-12-17 19:47:58', '8418nM8A', '3074513'), + (1207, 182, 'attending', '2020-06-17 12:10:29', '2025-12-17 19:47:55', '8418nM8A', '3074514'), + (1207, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '8418nM8A', '3075228'), + (1207, 184, 'attending', '2020-06-15 19:58:52', '2025-12-17 19:47:58', '8418nM8A', '3075262'), + (1207, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '8418nM8A', '3075456'), + (1207, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '8418nM8A', '3083791'), + (1207, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '8418nM8A', '3085151'), + (1207, 190, 'not_attending', '2020-06-30 19:02:27', '2025-12-17 19:47:55', '8418nM8A', '3087258'), + (1207, 191, 'attending', '2020-06-30 19:02:41', '2025-12-17 19:47:55', '8418nM8A', '3087259'), + (1207, 192, 'not_attending', '2020-07-12 18:43:14', '2025-12-17 19:47:55', '8418nM8A', '3087260'), + (1207, 193, 'not_attending', '2020-07-19 21:20:23', '2025-12-17 19:47:55', '8418nM8A', '3087261'), + (1207, 194, 'not_attending', '2020-07-28 22:28:17', '2025-12-17 19:47:56', '8418nM8A', '3087262'), + (1207, 195, 'attending', '2020-08-06 13:24:19', '2025-12-17 19:47:56', '8418nM8A', '3087264'), + (1207, 196, 'not_attending', '2020-08-09 16:08:14', '2025-12-17 19:47:56', '8418nM8A', '3087265'), + (1207, 197, 'not_attending', '2020-08-14 22:16:29', '2025-12-17 19:47:56', '8418nM8A', '3087266'), + (1207, 198, 'not_attending', '2020-08-29 19:56:40', '2025-12-17 19:47:56', '8418nM8A', '3087267'), + (1207, 199, 'attending', '2020-09-05 17:35:13', '2025-12-17 19:47:56', '8418nM8A', '3087268'), + (1207, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '8418nM8A', '3088653'), + (1207, 205, 'attending', '2020-07-01 11:58:26', '2025-12-17 19:47:55', '8418nM8A', '3104804'), + (1207, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '8418nM8A', '3106813'), + (1207, 210, 'attending', '2020-06-30 19:02:12', '2025-12-17 19:47:55', '8418nM8A', '3108972'), + (1207, 223, 'attending', '2020-09-08 12:15:11', '2025-12-17 19:47:56', '8418nM8A', '3129980'), + (1207, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '8418nM8A', '3132817'), + (1207, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '8418nM8A', '3132820'), + (1207, 233, 'attending', '2020-07-19 21:19:56', '2025-12-17 19:47:55', '8418nM8A', '3139773'), + (1207, 248, 'not_attending', '2021-01-12 13:45:12', '2025-12-17 19:47:48', '8418nM8A', '3149479'), + (1207, 266, 'attending', '2020-07-27 19:34:17', '2025-12-17 19:47:55', '8418nM8A', '3152194'), + (1207, 267, 'attending', '2020-07-29 03:00:38', '2025-12-17 19:47:55', '8418nM8A', '3152781'), + (1207, 269, 'attending', '2020-07-29 03:01:29', '2025-12-17 19:47:55', '8418nM8A', '3153076'), + (1207, 270, 'maybe', '2020-08-09 16:08:20', '2025-12-17 19:47:56', '8418nM8A', '3154457'), + (1207, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '8418nM8A', '3155321'), + (1207, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '8418nM8A', '3162006'), + (1207, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '8418nM8A', '3163442'), + (1207, 281, 'maybe', '2020-08-09 16:05:30', '2025-12-17 19:47:56', '8418nM8A', '3166945'), + (1207, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '8418nM8A', '3169555'), + (1207, 290, 'not_attending', '2020-08-19 17:45:52', '2025-12-17 19:47:56', '8418nM8A', '3170251'), + (1207, 291, 'not_attending', '2020-08-19 17:45:57', '2025-12-17 19:47:56', '8418nM8A', '3170252'), + (1207, 293, 'not_attending', '2020-08-14 22:16:18', '2025-12-17 19:47:56', '8418nM8A', '3172832'), + (1207, 294, 'not_attending', '2020-08-14 22:16:47', '2025-12-17 19:47:56', '8418nM8A', '3172833'), + (1207, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '8418nM8A', '3172834'), + (1207, 296, 'attending', '2020-08-19 17:46:04', '2025-12-17 19:47:56', '8418nM8A', '3172876'), + (1207, 298, 'maybe', '2020-08-23 14:29:20', '2025-12-17 19:47:56', '8418nM8A', '3174556'), + (1207, 303, 'maybe', '2020-08-14 22:13:58', '2025-12-17 19:47:56', '8418nM8A', '3178444'), + (1207, 304, 'maybe', '2020-09-03 21:01:39', '2025-12-17 19:47:56', '8418nM8A', '3178916'), + (1207, 305, 'attending', '2020-08-14 22:14:14', '2025-12-17 19:47:56', '8418nM8A', '3179555'), + (1207, 307, 'not_attending', '2020-08-17 19:16:58', '2025-12-17 19:47:56', '8418nM8A', '3182590'), + (1207, 308, 'attending', '2020-08-19 17:33:48', '2025-12-17 19:47:56', '8418nM8A', '3183341'), + (1207, 311, 'not_attending', '2020-09-16 15:23:31', '2025-12-17 19:47:56', '8418nM8A', '3186057'), + (1207, 312, 'not_attending', '2020-09-08 12:14:57', '2025-12-17 19:47:56', '8418nM8A', '3187795'), + (1207, 314, 'not_attending', '2020-08-23 14:28:54', '2025-12-17 19:47:56', '8418nM8A', '3188480'), + (1207, 315, 'maybe', '2020-09-06 11:25:49', '2025-12-17 19:47:56', '8418nM8A', '3189085'), + (1207, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '8418nM8A', '3191735'), + (1207, 319, 'attending', '2020-08-30 14:13:15', '2025-12-17 19:47:56', '8418nM8A', '3194179'), + (1207, 322, 'not_attending', '2020-09-14 23:51:53', '2025-12-17 19:47:56', '8418nM8A', '3197080'), + (1207, 333, 'not_attending', '2020-09-20 22:18:25', '2025-12-17 19:47:52', '8418nM8A', '3199782'), + (1207, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '8418nM8A', '3200209'), + (1207, 339, 'not_attending', '2020-09-08 12:14:35', '2025-12-17 19:47:56', '8418nM8A', '3204469'), + (1207, 340, 'maybe', '2020-09-18 15:42:20', '2025-12-17 19:47:56', '8418nM8A', '3204470'), + (1207, 341, 'not_attending', '2020-09-21 17:54:15', '2025-12-17 19:47:52', '8418nM8A', '3204471'), + (1207, 342, 'not_attending', '2020-09-24 23:56:09', '2025-12-17 19:47:52', '8418nM8A', '3204472'), + (1207, 344, 'maybe', '2020-10-30 19:48:57', '2025-12-17 19:47:53', '8418nM8A', '3206906'), + (1207, 345, 'maybe', '2020-09-10 22:31:26', '2025-12-17 19:47:56', '8418nM8A', '3207423'), + (1207, 346, 'not_attending', '2020-09-14 11:14:29', '2025-12-17 19:47:56', '8418nM8A', '3207515'), + (1207, 348, 'not_attending', '2020-09-29 15:26:51', '2025-12-17 19:47:52', '8418nM8A', '3209159'), + (1207, 349, 'not_attending', '2020-09-14 23:51:51', '2025-12-17 19:47:56', '8418nM8A', '3209194'), + (1207, 351, 'not_attending', '2020-09-15 20:53:34', '2025-12-17 19:47:56', '8418nM8A', '3209257'), + (1207, 352, 'not_attending', '2020-09-12 22:06:19', '2025-12-17 19:47:56', '8418nM8A', '3210514'), + (1207, 355, 'attending', '2020-09-14 11:14:36', '2025-12-17 19:47:56', '8418nM8A', '3212571'), + (1207, 356, 'attending', '2020-09-14 11:59:51', '2025-12-17 19:47:51', '8418nM8A', '3212572'), + (1207, 357, 'attending', '2020-09-14 12:00:01', '2025-12-17 19:47:52', '8418nM8A', '3212573'), + (1207, 362, 'not_attending', '2020-09-23 21:39:24', '2025-12-17 19:47:52', '8418nM8A', '3214207'), + (1207, 363, 'not_attending', '2020-09-23 21:39:32', '2025-12-17 19:47:52', '8418nM8A', '3217037'), + (1207, 364, 'not_attending', '2020-09-21 21:51:47', '2025-12-17 19:47:56', '8418nM8A', '3217106'), + (1207, 365, 'maybe', '2020-09-18 16:01:30', '2025-12-17 19:47:51', '8418nM8A', '3218510'), + (1207, 366, 'not_attending', '2020-09-20 18:26:04', '2025-12-17 19:47:56', '8418nM8A', '3219750'), + (1207, 367, 'not_attending', '2020-09-24 23:55:34', '2025-12-17 19:47:51', '8418nM8A', '3219751'), + (1207, 375, 'maybe', '2020-10-02 16:33:54', '2025-12-17 19:47:52', '8418nM8A', '3222825'), + (1207, 380, 'not_attending', '2020-09-30 01:25:29', '2025-12-17 19:47:52', '8418nM8A', '3226281'), + (1207, 382, 'not_attending', '2020-10-12 21:01:06', '2025-12-17 19:47:52', '8418nM8A', '3226873'), + (1207, 384, 'attending', '2020-09-29 15:26:30', '2025-12-17 19:47:52', '8418nM8A', '3228696'), + (1207, 385, 'not_attending', '2020-09-29 09:00:26', '2025-12-17 19:47:52', '8418nM8A', '3228698'), + (1207, 386, 'not_attending', '2020-10-10 18:44:58', '2025-12-17 19:47:52', '8418nM8A', '3228699'), + (1207, 387, 'not_attending', '2020-10-11 18:30:08', '2025-12-17 19:47:52', '8418nM8A', '3228700'), + (1207, 388, 'attending', '2020-10-24 22:25:51', '2025-12-17 19:47:52', '8418nM8A', '3228701'), + (1207, 389, 'attending', '2020-09-30 20:20:43', '2025-12-17 19:47:52', '8418nM8A', '3231284'), + (1207, 390, 'not_attending', '2020-10-04 22:01:20', '2025-12-17 19:47:52', '8418nM8A', '3231510'), + (1207, 412, 'not_attending', '2020-10-05 20:25:15', '2025-12-17 19:47:52', '8418nM8A', '3236636'), + (1207, 413, 'not_attending', '2020-10-12 21:01:51', '2025-12-17 19:47:52', '8418nM8A', '3236670'), + (1207, 414, 'not_attending', '2020-10-12 21:01:27', '2025-12-17 19:47:52', '8418nM8A', '3237277'), + (1207, 415, 'maybe', '2020-10-08 00:29:40', '2025-12-17 19:47:52', '8418nM8A', '3238044'), + (1207, 416, 'maybe', '2020-10-06 23:13:14', '2025-12-17 19:47:52', '8418nM8A', '3238073'), + (1207, 417, 'maybe', '2020-10-11 18:29:49', '2025-12-17 19:47:52', '8418nM8A', '3238779'), + (1207, 418, 'not_attending', '2020-10-11 18:29:57', '2025-12-17 19:47:52', '8418nM8A', '3241728'), + (1207, 419, 'not_attending', '2020-10-11 18:29:53', '2025-12-17 19:47:52', '8418nM8A', '3242234'), + (1207, 420, 'not_attending', '2020-10-12 21:01:18', '2025-12-17 19:47:52', '8418nM8A', '3245293'), + (1207, 421, 'not_attending', '2020-10-12 21:01:55', '2025-12-17 19:47:52', '8418nM8A', '3245294'), + (1207, 424, 'not_attending', '2020-10-19 14:26:08', '2025-12-17 19:47:52', '8418nM8A', '3245751'), + (1207, 425, 'maybe', '2020-10-14 17:17:09', '2025-12-17 19:47:52', '8418nM8A', '3250097'), + (1207, 426, 'maybe', '2020-10-14 17:17:31', '2025-12-17 19:47:52', '8418nM8A', '3250232'), + (1207, 428, 'maybe', '2020-10-25 02:13:13', '2025-12-17 19:47:53', '8418nM8A', '3250332'), + (1207, 430, 'not_attending', '2020-10-21 22:55:06', '2025-12-17 19:47:52', '8418nM8A', '3253094'), + (1207, 438, 'maybe', '2020-10-28 23:21:22', '2025-12-17 19:47:53', '8418nM8A', '3256163'), + (1207, 439, 'not_attending', '2020-10-28 22:32:24', '2025-12-17 19:47:53', '8418nM8A', '3256164'), + (1207, 440, 'not_attending', '2020-11-06 21:46:37', '2025-12-17 19:47:53', '8418nM8A', '3256168'), + (1207, 441, 'not_attending', '2020-11-14 20:55:53', '2025-12-17 19:47:54', '8418nM8A', '3256169'), + (1207, 442, 'not_attending', '2020-10-22 23:05:04', '2025-12-17 19:47:52', '8418nM8A', '3260345'), + (1207, 443, 'not_attending', '2020-10-25 02:11:18', '2025-12-17 19:47:53', '8418nM8A', '3263578'), + (1207, 444, 'maybe', '2020-10-27 15:22:06', '2025-12-17 19:47:53', '8418nM8A', '3263745'), + (1207, 445, 'maybe', '2020-10-30 19:49:09', '2025-12-17 19:47:54', '8418nM8A', '3266138'), + (1207, 449, 'attending', '2020-11-06 21:46:46', '2025-12-17 19:47:53', '8418nM8A', '3272055'), + (1207, 451, 'maybe', '2020-11-02 19:22:51', '2025-12-17 19:47:53', '8418nM8A', '3272186'), + (1207, 454, 'maybe', '2020-11-06 21:47:06', '2025-12-17 19:47:54', '8418nM8A', '3275665'), + (1207, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '8418nM8A', '3276428'), + (1207, 458, 'maybe', '2020-11-08 23:42:05', '2025-12-17 19:47:53', '8418nM8A', '3279233'), + (1207, 459, 'not_attending', '2020-11-09 23:31:56', '2025-12-17 19:47:54', '8418nM8A', '3281467'), + (1207, 461, 'not_attending', '2020-11-09 23:25:56', '2025-12-17 19:47:53', '8418nM8A', '3281469'), + (1207, 462, 'attending', '2020-11-08 23:42:13', '2025-12-17 19:47:53', '8418nM8A', '3281470'), + (1207, 466, 'maybe', '2020-11-09 23:32:17', '2025-12-17 19:47:54', '8418nM8A', '3281829'), + (1207, 468, 'not_attending', '2020-11-21 00:33:31', '2025-12-17 19:47:54', '8418nM8A', '3285413'), + (1207, 469, 'not_attending', '2020-11-19 19:23:40', '2025-12-17 19:47:54', '8418nM8A', '3285414'), + (1207, 480, 'not_attending', '2020-11-21 00:33:27', '2025-12-17 19:47:54', '8418nM8A', '3295313'), + (1207, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '8418nM8A', '3297764'), + (1207, 484, 'not_attending', '2020-11-21 00:33:21', '2025-12-17 19:47:54', '8418nM8A', '3297792'), + (1207, 487, 'not_attending', '2020-12-01 01:47:53', '2025-12-17 19:47:54', '8418nM8A', '3311122'), + (1207, 493, 'maybe', '2020-12-01 01:48:07', '2025-12-17 19:47:54', '8418nM8A', '3313856'), + (1207, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '8418nM8A', '3314909'), + (1207, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '8418nM8A', '3314964'), + (1207, 501, 'not_attending', '2020-12-08 01:37:28', '2025-12-17 19:47:54', '8418nM8A', '3317834'), + (1207, 502, 'maybe', '2020-12-08 01:37:51', '2025-12-17 19:47:55', '8418nM8A', '3323365'), + (1207, 508, 'not_attending', '2021-01-13 10:23:46', '2025-12-17 19:47:48', '8418nM8A', '3324231'), + (1207, 513, 'maybe', '2020-12-15 00:22:56', '2025-12-17 19:47:55', '8418nM8A', '3329383'), + (1207, 517, 'attending', '2020-12-27 00:25:26', '2025-12-17 19:47:48', '8418nM8A', '3337137'), + (1207, 521, 'maybe', '2020-12-29 20:49:42', '2025-12-17 19:47:48', '8418nM8A', '3337454'), + (1207, 526, 'attending', '2020-12-27 00:25:19', '2025-12-17 19:47:48', '8418nM8A', '3351539'), + (1207, 529, 'attending', '2020-12-29 20:50:08', '2025-12-17 19:47:48', '8418nM8A', '3364568'), + (1207, 530, 'not_attending', '2021-01-04 19:36:14', '2025-12-17 19:47:48', '8418nM8A', '3373923'), + (1207, 532, 'not_attending', '2021-01-08 13:51:01', '2025-12-17 19:47:48', '8418nM8A', '3381412'), + (1207, 534, 'not_attending', '2021-01-08 13:51:18', '2025-12-17 19:47:48', '8418nM8A', '3384157'), + (1207, 535, 'not_attending', '2021-01-08 13:51:12', '2025-12-17 19:47:48', '8418nM8A', '3384729'), + (1207, 536, 'attending', '2021-01-07 13:40:17', '2025-12-17 19:47:48', '8418nM8A', '3386848'), + (1207, 537, 'not_attending', '2021-01-08 13:51:15', '2025-12-17 19:47:48', '8418nM8A', '3387153'), + (1207, 538, 'maybe', '2021-01-07 13:52:32', '2025-12-17 19:47:48', '8418nM8A', '3388151'), + (1207, 539, 'maybe', '2021-01-12 13:45:28', '2025-12-17 19:47:48', '8418nM8A', '3389158'), + (1207, 540, 'not_attending', '2021-01-07 13:40:32', '2025-12-17 19:47:48', '8418nM8A', '3389527'), + (1207, 543, 'not_attending', '2021-01-12 13:45:40', '2025-12-17 19:47:48', '8418nM8A', '3396499'), + (1207, 544, 'not_attending', '2021-01-12 13:45:15', '2025-12-17 19:47:48', '8418nM8A', '3396500'), + (1207, 548, 'attending', '2021-01-12 13:45:43', '2025-12-17 19:47:48', '8418nM8A', '3403650'), + (1207, 549, 'maybe', '2021-01-18 23:46:08', '2025-12-17 19:47:49', '8418nM8A', '3406988'), + (1207, 555, 'attending', '2021-01-23 20:08:25', '2025-12-17 19:47:49', '8418nM8A', '3416576'), + (1207, 556, 'maybe', '2021-01-26 14:27:53', '2025-12-17 19:47:49', '8418nM8A', '3417170'), + (1207, 557, 'maybe', '2021-01-20 01:55:39', '2025-12-17 19:47:49', '8418nM8A', '3418748'), + (1207, 558, 'maybe', '2021-01-20 17:23:54', '2025-12-17 19:47:49', '8418nM8A', '3418925'), + (1207, 559, 'maybe', '2021-01-25 22:24:31', '2025-12-17 19:47:49', '8418nM8A', '3421439'), + (1207, 560, 'attending', '2021-01-20 01:55:36', '2025-12-17 19:47:49', '8418nM8A', '3421715'), + (1207, 563, 'maybe', '2021-01-25 22:23:57', '2025-12-17 19:47:49', '8418nM8A', '3425913'), + (1207, 568, 'attending', '2021-01-25 22:24:37', '2025-12-17 19:47:50', '8418nM8A', '3430267'), + (1207, 569, 'maybe', '2021-01-27 22:47:33', '2025-12-17 19:47:49', '8418nM8A', '3432673'), + (1207, 570, 'not_attending', '2021-02-06 00:04:52', '2025-12-17 19:47:50', '8418nM8A', '3435538'), + (1207, 571, 'not_attending', '2021-02-13 21:50:11', '2025-12-17 19:47:50', '8418nM8A', '3435539'), + (1207, 577, 'not_attending', '2021-01-28 23:58:39', '2025-12-17 19:47:49', '8418nM8A', '3439167'), + (1207, 578, 'maybe', '2021-01-31 19:01:55', '2025-12-17 19:47:50', '8418nM8A', '3440043'), + (1207, 579, 'not_attending', '2021-02-06 21:31:43', '2025-12-17 19:47:50', '8418nM8A', '3440978'), + (1207, 580, 'not_attending', '2021-01-31 04:12:51', '2025-12-17 19:47:50', '8418nM8A', '3444240'), + (1207, 582, 'maybe', '2021-01-31 04:00:05', '2025-12-17 19:47:50', '8418nM8A', '3445769'), + (1207, 584, 'not_attending', '2021-02-04 12:06:17', '2025-12-17 19:47:50', '8418nM8A', '3449466'), + (1207, 591, 'maybe', '2021-02-08 00:50:51', '2025-12-17 19:47:50', '8418nM8A', '3465880'), + (1207, 598, 'maybe', '2021-02-08 00:51:05', '2025-12-17 19:47:50', '8418nM8A', '3468003'), + (1207, 599, 'not_attending', '2021-02-15 22:23:04', '2025-12-17 19:47:50', '8418nM8A', '3468117'), + (1207, 600, 'not_attending', '2021-02-22 00:29:03', '2025-12-17 19:47:50', '8418nM8A', '3468125'), + (1207, 601, 'maybe', '2021-02-08 23:41:45', '2025-12-17 19:47:50', '8418nM8A', '3468131'), + (1207, 602, 'not_attending', '2021-02-13 21:50:15', '2025-12-17 19:47:50', '8418nM8A', '3470303'), + (1207, 603, 'not_attending', '2021-02-19 23:14:17', '2025-12-17 19:47:50', '8418nM8A', '3470304'), + (1207, 604, 'attending', '2021-02-27 18:50:37', '2025-12-17 19:47:50', '8418nM8A', '3470305'), + (1207, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '8418nM8A', '3470991'), + (1207, 606, 'not_attending', '2021-02-10 00:21:24', '2025-12-17 19:47:50', '8418nM8A', '3470998'), + (1207, 607, 'maybe', '2021-02-15 22:23:21', '2025-12-17 19:47:50', '8418nM8A', '3471882'), + (1207, 608, 'not_attending', '2021-02-10 00:21:18', '2025-12-17 19:47:50', '8418nM8A', '3475332'), + (1207, 612, 'maybe', '2021-02-15 22:23:12', '2025-12-17 19:47:50', '8418nM8A', '3490040'), + (1207, 618, 'not_attending', '2021-02-20 20:03:33', '2025-12-17 19:47:50', '8418nM8A', '3503991'), + (1207, 621, 'attending', '2021-02-28 19:31:44', '2025-12-17 19:47:51', '8418nM8A', '3517815'), + (1207, 622, 'attending', '2021-03-05 01:19:40', '2025-12-17 19:47:51', '8418nM8A', '3517816'), + (1207, 623, 'not_attending', '2021-02-28 19:31:28', '2025-12-17 19:47:51', '8418nM8A', '3523941'), + (1207, 626, 'not_attending', '2021-03-06 20:27:28', '2025-12-17 19:47:51', '8418nM8A', '3533298'), + (1207, 627, 'not_attending', '2021-03-10 00:16:57', '2025-12-17 19:47:51', '8418nM8A', '3533303'), + (1207, 628, 'not_attending', '2021-03-14 22:38:17', '2025-12-17 19:47:51', '8418nM8A', '3533305'), + (1207, 629, 'attending', '2021-03-17 22:53:21', '2025-12-17 19:47:51', '8418nM8A', '3533307'), + (1207, 630, 'not_attending', '2021-02-28 23:39:19', '2025-12-17 19:47:51', '8418nM8A', '3533425'), + (1207, 631, 'maybe', '2021-03-05 21:55:16', '2025-12-17 19:47:51', '8418nM8A', '3533850'), + (1207, 632, 'maybe', '2021-03-05 01:18:55', '2025-12-17 19:47:51', '8418nM8A', '3533853'), + (1207, 638, 'maybe', '2021-03-10 00:18:04', '2025-12-17 19:47:44', '8418nM8A', '3536632'), + (1207, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8418nM8A', '3536656'), + (1207, 641, 'attending', '2021-04-02 18:36:54', '2025-12-17 19:47:44', '8418nM8A', '3539916'), + (1207, 642, 'maybe', '2021-04-10 21:27:28', '2025-12-17 19:47:44', '8418nM8A', '3539917'), + (1207, 643, 'attending', '2021-04-15 00:59:31', '2025-12-17 19:47:45', '8418nM8A', '3539918'), + (1207, 644, 'not_attending', '2021-04-24 18:31:44', '2025-12-17 19:47:46', '8418nM8A', '3539919'), + (1207, 645, 'not_attending', '2021-05-07 22:22:46', '2025-12-17 19:47:46', '8418nM8A', '3539920'), + (1207, 646, 'attending', '2021-05-12 23:27:50', '2025-12-17 19:47:46', '8418nM8A', '3539921'), + (1207, 647, 'not_attending', '2021-05-20 22:04:55', '2025-12-17 19:47:46', '8418nM8A', '3539922'), + (1207, 648, 'not_attending', '2021-05-27 20:59:22', '2025-12-17 19:47:47', '8418nM8A', '3539923'), + (1207, 649, 'maybe', '2021-03-20 20:00:37', '2025-12-17 19:47:51', '8418nM8A', '3539927'), + (1207, 650, 'attending', '2021-03-05 01:25:39', '2025-12-17 19:47:44', '8418nM8A', '3539928'), + (1207, 651, 'not_attending', '2021-03-07 11:59:06', '2025-12-17 19:47:51', '8418nM8A', '3541045'), + (1207, 680, 'maybe', '2021-03-10 00:17:04', '2025-12-17 19:47:51', '8418nM8A', '3547700'), + (1207, 683, 'not_attending', '2021-03-10 00:18:37', '2025-12-17 19:47:51', '8418nM8A', '3548818'), + (1207, 684, 'maybe', '2021-03-10 00:17:31', '2025-12-17 19:47:51', '8418nM8A', '3549257'), + (1207, 687, 'maybe', '2021-03-10 00:17:20', '2025-12-17 19:47:51', '8418nM8A', '3553405'), + (1207, 690, 'maybe', '2021-03-18 23:22:58', '2025-12-17 19:47:44', '8418nM8A', '3559954'), + (1207, 693, 'not_attending', '2021-03-14 22:38:20', '2025-12-17 19:47:51', '8418nM8A', '3565907'), + (1207, 695, 'maybe', '2021-03-14 22:38:38', '2025-12-17 19:47:51', '8418nM8A', '3567535'), + (1207, 696, 'maybe', '2021-03-14 22:38:55', '2025-12-17 19:47:51', '8418nM8A', '3567536'), + (1207, 703, 'maybe', '2021-04-04 20:36:40', '2025-12-17 19:47:44', '8418nM8A', '3578388'), + (1207, 706, 'maybe', '2021-04-04 20:37:16', '2025-12-17 19:47:45', '8418nM8A', '3582734'), + (1207, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8418nM8A', '3583262'), + (1207, 708, 'maybe', '2021-03-23 22:59:11', '2025-12-17 19:47:44', '8418nM8A', '3587850'), + (1207, 709, 'maybe', '2021-04-02 18:37:07', '2025-12-17 19:47:44', '8418nM8A', '3587852'), + (1207, 710, 'maybe', '2021-04-04 20:35:59', '2025-12-17 19:47:44', '8418nM8A', '3587853'), + (1207, 711, 'attending', '2021-04-01 23:11:11', '2025-12-17 19:47:44', '8418nM8A', '3588075'), + (1207, 715, 'maybe', '2021-03-28 18:30:44', '2025-12-17 19:47:44', '8418nM8A', '3604146'), + (1207, 717, 'maybe', '2021-03-27 15:39:22', '2025-12-17 19:47:44', '8418nM8A', '3619523'), + (1207, 719, 'not_attending', '2021-04-04 20:35:45', '2025-12-17 19:47:44', '8418nM8A', '3635405'), + (1207, 723, 'maybe', '2021-04-04 20:35:53', '2025-12-17 19:47:44', '8418nM8A', '3649179'), + (1207, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8418nM8A', '3661369'), + (1207, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8418nM8A', '3674262'), + (1207, 734, 'maybe', '2021-04-07 22:43:20', '2025-12-17 19:47:44', '8418nM8A', '3676806'), + (1207, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8418nM8A', '3677402'), + (1207, 736, 'maybe', '2021-04-08 10:48:08', '2025-12-17 19:47:44', '8418nM8A', '3677701'), + (1207, 737, 'not_attending', '2021-04-06 20:46:38', '2025-12-17 19:47:44', '8418nM8A', '3679349'), + (1207, 752, 'maybe', '2021-04-15 00:59:23', '2025-12-17 19:47:44', '8418nM8A', '3699422'), + (1207, 764, 'maybe', '2021-04-20 10:37:53', '2025-12-17 19:47:45', '8418nM8A', '3720507'), + (1207, 765, 'not_attending', '2021-04-20 10:37:43', '2025-12-17 19:47:45', '8418nM8A', '3720508'), + (1207, 771, 'not_attending', '2021-04-29 22:22:16', '2025-12-17 19:47:46', '8418nM8A', '3726420'), + (1207, 772, 'maybe', '2021-04-29 22:22:28', '2025-12-17 19:47:46', '8418nM8A', '3726421'), + (1207, 774, 'maybe', '2021-04-20 23:35:49', '2025-12-17 19:47:45', '8418nM8A', '3730212'), + (1207, 777, 'maybe', '2021-05-01 19:47:43', '2025-12-17 19:47:46', '8418nM8A', '3746248'), + (1207, 779, 'maybe', '2021-05-02 21:44:02', '2025-12-17 19:47:46', '8418nM8A', '3757118'), + (1207, 782, 'maybe', '2021-05-02 21:44:08', '2025-12-17 19:47:46', '8418nM8A', '3761843'), + (1207, 784, 'maybe', '2021-05-02 21:44:18', '2025-12-17 19:47:46', '8418nM8A', '3768775'), + (1207, 788, 'not_attending', '2021-05-07 22:22:35', '2025-12-17 19:47:46', '8418nM8A', '3781975'), + (1207, 791, 'maybe', '2021-05-07 22:22:59', '2025-12-17 19:47:46', '8418nM8A', '3792735'), + (1207, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8418nM8A', '3793156'), + (1207, 815, 'not_attending', '2021-05-27 20:59:17', '2025-12-17 19:47:47', '8418nM8A', '3818136'), + (1207, 816, 'maybe', '2021-05-19 18:55:05', '2025-12-17 19:47:46', '8418nM8A', '3826524'), + (1207, 823, 'not_attending', '2021-06-19 20:25:07', '2025-12-17 19:47:48', '8418nM8A', '3974109'), + (1207, 825, 'maybe', '2021-05-31 22:36:18', '2025-12-17 19:47:47', '8418nM8A', '3975283'), + (1207, 826, 'maybe', '2021-06-16 14:22:27', '2025-12-17 19:47:48', '8418nM8A', '3975310'), + (1207, 827, 'attending', '2021-06-04 18:24:26', '2025-12-17 19:47:47', '8418nM8A', '3975311'), + (1207, 828, 'not_attending', '2021-06-09 23:09:58', '2025-12-17 19:47:47', '8418nM8A', '3975312'), + (1207, 838, 'not_attending', '2021-06-06 23:36:48', '2025-12-17 19:47:47', '8418nM8A', '3994992'), + (1207, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '8418nM8A', '4014338'), + (1207, 867, 'not_attending', '2021-06-22 09:09:56', '2025-12-17 19:47:38', '8418nM8A', '4021848'), + (1207, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '8418nM8A', '4136744'), + (1207, 870, 'maybe', '2021-06-27 23:27:30', '2025-12-17 19:47:39', '8418nM8A', '4136937'), + (1207, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '8418nM8A', '4136938'), + (1207, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '8418nM8A', '4136947'), + (1207, 882, 'not_attending', '2021-06-22 09:10:04', '2025-12-17 19:47:38', '8418nM8A', '4207630'), + (1207, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '8418nM8A', '4210314'), + (1207, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8418nM8A', '4225444'), + (1207, 897, 'maybe', '2021-06-27 23:27:06', '2025-12-17 19:47:38', '8418nM8A', '4232132'), + (1207, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '8418nM8A', '4239259'), + (1207, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '8418nM8A', '4240316'), + (1207, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '8418nM8A', '4240317'), + (1207, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '8418nM8A', '4240318'), + (1207, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '8418nM8A', '4240320'), + (1207, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8418nM8A', '4250163'), + (1207, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '8418nM8A', '4275957'), + (1207, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '8418nM8A', '4277819'), + (1207, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '8418nM8A', '4301723'), + (1207, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '8418nM8A', '4302093'), + (1207, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '8418nM8A', '4304151'), + (1207, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '8418nM8A', '4345519'), + (1207, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '8418nM8A', '4356801'), + (1207, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '8418nM8A', '4358025'), + (1207, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '8418nM8A', '4366186'), + (1207, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '8418nM8A', '4366187'), + (1207, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '8418nM8A', '4402823'), + (1207, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '8418nM8A', '4420735'), + (1207, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '8418nM8A', '4420738'), + (1207, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '8418nM8A', '4420739'), + (1207, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '8418nM8A', '4420741'), + (1207, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '8418nM8A', '4420744'), + (1207, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '8418nM8A', '4420747'), + (1207, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '8418nM8A', '4420748'), + (1207, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '8418nM8A', '4420749'), + (1207, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '8418nM8A', '4461883'), + (1207, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '8418nM8A', '4508342'), + (1207, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '8418nM8A', '4568602'), + (1207, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '8418nM8A', '4572153'), + (1207, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '8418nM8A', '4585962'), + (1207, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '8418nM8A', '4596356'), + (1207, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '8418nM8A', '4598860'), + (1207, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '8418nM8A', '4598861'), + (1207, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '8418nM8A', '4602797'), + (1207, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '8418nM8A', '4637896'), + (1207, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '8418nM8A', '4642994'), + (1207, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '8418nM8A', '4642995'), + (1207, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '8418nM8A', '4642996'), + (1207, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '8418nM8A', '4642997'), + (1207, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '8418nM8A', '4645687'), + (1207, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '8418nM8A', '4645698'), + (1207, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '8418nM8A', '4645704'), + (1207, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '8418nM8A', '4645705'), + (1207, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '8418nM8A', '4668385'), + (1207, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '8418nM8A', '4694407'), + (1207, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '8418nM8A', '4736497'), + (1207, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '8418nM8A', '4736499'), + (1207, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '8418nM8A', '4736500'), + (1207, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '8418nM8A', '4736503'), + (1207, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '8418nM8A', '4736504'), + (1207, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '8418nM8A', '4746789'), + (1207, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '8418nM8A', '4753929'), + (1207, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '8418nM8A', '5038850'), + (1207, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '8418nM8A', '5045826'), + (1207, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '8418nM8A', '5132533'), + (1207, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '8418nM8A', '5186582'), + (1207, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '8418nM8A', '5186583'), + (1207, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '8418nM8A', '5186585'), + (1207, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '8418nM8A', '5190437'), + (1207, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '8418nM8A', '5215989'), + (1207, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8418nM8A', '6045684'), + (1208, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4Wb8b9pA', '5880942'), + (1208, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4Wb8b9pA', '5880943'), + (1208, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4Wb8b9pA', '5900200'), + (1208, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4Wb8b9pA', '5900202'), + (1208, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4Wb8b9pA', '5900203'), + (1208, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', '4Wb8b9pA', '5910522'), + (1208, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '4Wb8b9pA', '5910526'), + (1208, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '4Wb8b9pA', '5910528'), + (1208, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4Wb8b9pA', '5916219'), + (1208, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4Wb8b9pA', '5936234'), + (1208, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '4Wb8b9pA', '5936691'), + (1208, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4Wb8b9pA', '5958351'), + (1208, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4Wb8b9pA', '5959751'), + (1208, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4Wb8b9pA', '5959755'), + (1208, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4Wb8b9pA', '5960055'), + (1208, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4Wb8b9pA', '5961684'), + (1208, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4Wb8b9pA', '5962132'), + (1208, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4Wb8b9pA', '5962133'), + (1208, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4Wb8b9pA', '5962134'), + (1208, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4Wb8b9pA', '5962317'), + (1208, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4Wb8b9pA', '5962318'), + (1208, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4Wb8b9pA', '5965933'), + (1208, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4Wb8b9pA', '5967014'), + (1208, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4Wb8b9pA', '5972815'), + (1208, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4Wb8b9pA', '5974016'), + (1208, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4Wb8b9pA', '5981515'), + (1208, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4Wb8b9pA', '5993516'), + (1208, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4Wb8b9pA', '5998939'), + (1208, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4Wb8b9pA', '6028191'), + (1208, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4Wb8b9pA', '6040066'), + (1208, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4Wb8b9pA', '6042717'), + (1208, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4Wb8b9pA', '6045684'); --- Dumping structure for table ranger_unit_tracker.calendar_events_signups -CREATE TABLE IF NOT EXISTS `calendar_events_signups` ( - `member_id` int(11) NOT NULL, - `event_id` int(11) NOT NULL, - `status` enum('not_attending','attending','maybe') COLLATE utf8mb4_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT current_timestamp(), - `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - PRIMARY KEY (`member_id`,`event_id`), - KEY `fk_signup_event` (`event_id`), - CONSTRAINT `fk_signup_event` FOREIGN KEY (`event_id`) REFERENCES `calendar_events` (`id`) ON DELETE CASCADE, - CONSTRAINT `fk_signup_member` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON DELETE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- Dumping data for table ranger_unit_tracker.calendar_events_signups: ~0 rows (approximately) - --- Dumping structure for table ranger_unit_tracker.courses -CREATE TABLE IF NOT EXISTS `courses` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(100) NOT NULL, - `short_name` varchar(10) NOT NULL, - `category` varchar(100) NOT NULL, - `description` varchar(1000) DEFAULT NULL, - `image_url` varchar(255) DEFAULT NULL, - `created_at` datetime NOT NULL DEFAULT current_timestamp(), - `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT 0, - `prereq_id` int(11) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `name` (`name`), - UNIQUE KEY `shortName` (`short_name`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4; - --- Dumping data for table ranger_unit_tracker.courses: ~23 rows (approximately) -INSERT INTO `courses` (`id`, `name`, `short_name`, `category`, `description`, `image_url`, `created_at`, `updated_at`, `deleted`, `prereq_id`) VALUES - (1, 'Basic Training', 'BCT', 'Required', 'This is Basic Training', NULL, '2023-04-25 00:18:00', '2023-05-01 05:05:20', 0, NULL), - (2, 'Combat Life Saver', 'CLS', 'Infantry', 'Provides core information needed to be a Combat Life Saver and assist Combat Medics in providing medical care', NULL, '2023-05-01 05:06:06', '2023-05-01 05:06:06', 0, NULL), - (3, 'Demolitions', 'DEMO', 'Infantry', 'Introduces basic demolition and explosives handling and detection skills.', NULL, '2023-05-02 20:28:52', '2023-05-02 20:28:52', 0, NULL), - (4, 'Advanced Infantry Training 1', 'AIT-1', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-02 20:29:29', '2023-05-19 20:38:20', 0, NULL), - (5, 'Combat Medic', '68W', 'Infantry', 'Delves into the intricacies of being a Combat Medic and teaches the procedures and technical knowledge needed to save, stabilize, and revive injured members', NULL, '2023-05-02 20:29:51', '2023-05-19 20:38:19', 0, NULL), - (6, 'Communications / RTO', 'RTO', 'Infantry', 'Trains the ability to manage multiple radios and requests, such as logistics, transportation, mortars, and CAS', NULL, '2023-05-02 20:30:22', '2023-05-19 20:38:19', 0, NULL), - (7, 'Explosive Ordinance Disposal ', 'EOD', 'Infantry', 'Advances knowledge of demolition, explosives handling or disposal, and IED/minefield clearance', NULL, '2023-05-02 20:30:44', '2023-05-19 20:38:19', 0, NULL), - (8, 'Heavy Weapons', 'HVYWP', 'Infantry', 'Provides advanced knowledge and familiarization on infantry-based Anti-Tank launchers and Crew-Served Weapons.', NULL, '2023-05-02 20:31:09', '2023-05-19 20:38:19', 0, NULL), - (9, 'Air Assault', 'AIRASLT', 'Infantry', 'Demonstrates the effectiveness of helicopter Air Assaults, and teaches how to plan and execute Air Assaults.', NULL, '2023-05-02 20:31:45', '2023-05-19 20:38:20', 0, NULL), - (10, 'Anti Armor', 'ATIARM', 'Infantry', 'Provides advanced knowledge on enemy Armored Fighting Vehicles\' capabilities, weaknesses, differences, and identification', NULL, '2023-05-02 20:32:04', '2023-05-19 20:38:20', 0, NULL), - (11, 'Jump Wings', 'JMPWNGS', 'Infantry', 'Trains attendees on the basics of parachute infantry through Static Line or Free Fall parajumps', NULL, '2023-05-02 20:32:26', '2023-05-19 20:38:20', 0, NULL), - (12, 'Land Navigation', 'LANDNAV', 'Infantry', 'Teaches advanced cartography and map reading, navigation, and orientation without use of GPS systems.', NULL, '2023-05-02 20:32:55', '2023-05-19 20:38:20', 0, NULL), - (13, 'Marksman', 'MRKSMN', 'Infantry', 'Qualifies members on rapid snap shooting at close-medium range with accuracy, required to use a 3x scope.', NULL, '2023-05-02 20:33:17', '2023-05-19 20:38:20', 0, NULL), - (14, 'Sharpshooter', 'SHRPSHOT', 'Infantry', 'Qualifies members on rapid, precision shooting at long range with exceptional accuracy, required to use a 4x scope.', NULL, '2023-05-02 20:33:49', '2023-05-19 20:38:20', 0, NULL), - (15, 'Air Crew', 'AIRCRW', 'Support', 'Provides information on how to act as a basic helicopter crew member, guiding the pilots into a tight LZ and providing medical support where needed.', NULL, '2023-05-02 20:34:09', '2023-05-19 20:38:20', 0, NULL), - (16, 'Convoy Training', 'CONVOY', 'Support', NULL, NULL, '2023-05-02 20:34:38', '2023-05-02 20:34:38', 0, NULL), - (17, 'Co-Pilot', 'COPILT', 'Support', 'Introduces the responsibilities of the cockpit crew, teaching copilots how to receive and relay communications, plot flight routes, and operate the helicopter\'s weapon systems.', NULL, '2023-05-02 20:35:13', '2023-05-19 20:38:20', 0, NULL), - (18, 'Echo Orientation', 'ECHORENT', 'Support', 'Introduces attendees to the vehicles, roles, and Echo\'s general scope of operations.', NULL, '2023-05-02 20:35:43', '2023-05-19 20:38:20', 0, NULL), - (19, 'Fixed Wing Close Air Support', 'FWCAS', 'Support', 'Trains fixed-wing pilots in receiving communications and plotting grids while in forward movement, and how to operate the aircraft\'s Air-To-Ground and Air-To-Air systems.', NULL, '2023-05-02 20:36:04', '2023-05-19 20:38:20', 0, NULL), - (20, 'Indirect Fire (Mortars)', 'IDF', 'Support', 'Trains IDF specialists in receiving call-for-fires and calculating artillery solutions for the Mk.6 Mortar, and familiarizing trainees on the M109A6 Paladin and M142 HIMARS.', NULL, '2023-05-02 20:36:28', '2023-05-19 20:38:20', 0, NULL), - (21, 'Joint Terminal Attack Controller', 'JTAC', 'Support', 'Provides the necessary knowledge to interpret CAS requests from infantry elements and request CAS strikes from allied Fixed-Wing or Rotary-Wing aircraft.', NULL, '2023-05-02 20:36:46', '2023-05-19 20:38:20', 0, NULL), - (22, 'Jump Master', 'JMPMSTR', 'Support', 'Trains Jump Masters in plotting paradrop DZs, parameters such as speed and altitude, and executing the jump.', NULL, '2023-05-02 20:36:59', '2023-05-19 20:38:20', 0, NULL), - (23, 'Mechanized', 'MECH', 'Support', 'Trains attendees to be expert mechanized drivers, gunners, and commanders, able to act independently or attached to an infantry element.', NULL, '2023-05-02 20:37:27', '2023-05-19 20:38:20', 0, NULL), - (24, 'Rotary Close Air Support', 'RTRCAS', 'Support', 'Trains Rotary-wing pilots in receiving communications and plotting grids while in forward movement, and how to operate the aircraft\'s Air-To-Ground and Air-To-Air systems.', NULL, '2023-05-02 20:37:44', '2023-05-19 20:38:20', 0, NULL), - (25, 'Rotary Logistics', 'RTRLOGI', 'Support', 'Trains Rotary-wing pilots in conducting landings, paradrops, hot LZs, resupplies in various rotary-wing aircraft, and ensures the pilot can recover from substantial engine or tail-rotor damage.', NULL, '2023-05-02 20:38:12', '2023-05-19 20:38:20', 0, NULL), - (26, 'Advanced Unmanned Aerial Vehicle', 'AUAV', 'Specialty', 'Fully explores the Darter and Yabhon\'s flight abilities, radar and technology suites, armaments, and camera systems to perform reconnaissance and place guided munitions onto targets.', NULL, '2023-05-02 20:38:45', '2023-05-19 20:38:20', 0, NULL), - (27, 'Combat Diver', 'CMBDVR', 'Specialty', 'Teaches the skills need to be a Ranger Recon Company (RRC) diver, and practicing the various methods of insertion such as SDV, Helocast, and diving.', NULL, '2023-05-02 20:39:16', '2023-05-19 20:38:20', 0, NULL), - (28, 'Forward Observer', 'FO', 'Specialty', 'Trains Forward Observers to call in and correct IDF strikes until enemies have been destroyed with 110% accuracy.', NULL, '2023-05-02 20:39:33', '2023-05-19 20:38:20', 0, NULL), - (29, 'Master Free Fall', 'MFF', 'Specialty', 'Advances paradropping abilities to better suit the needs of RRC.', NULL, '2023-05-02 20:39:42', '2023-05-19 20:38:20', 0, NULL), - (30, 'Pathfinder', 'PTHFDR', 'Specialty', 'Teaches the basic scope of action of RRC and trains usage of the Raven drone and general recon and stealth practices.', NULL, '2023-05-02 20:39:57', '2023-05-19 20:38:20', 0, NULL), - (31, 'Reconnaissance and Surveillance Leaders Course', 'RSLC', 'Specialty', 'Trains NCOs to plan, prepare, and execute RRC missions.', NULL, '2023-05-02 20:40:23', '2023-05-19 20:38:20', 0, NULL), - (32, 'Sniper', 'SNPR', 'Specialty', 'Trains personnel on how to employ long-range scopes and rifles to observe areas from protected keyholes, and place high-precision, long-range shots on priority targets.', NULL, '2023-05-02 20:40:37', '2023-05-19 20:38:20', 0, NULL), - (33, 'Basic Communications Proficiency', 'BCOMPROF', 'Additional', 'Trains on the usage of the AN/PRC-152 short-range radio, and general communication etiquette and efficiency. ', NULL, '2023-05-02 20:41:17', '2023-05-19 20:38:20', 0, NULL), - (34, 'Advanced Infantry Training 2', 'AIT-2', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:58:52', '2023-05-19 20:38:20', 0, NULL), - (35, 'Advanced Infantry Training 3', 'AIT-3', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:03', '2023-05-19 20:38:20', 0, NULL), - (36, 'Advanced Infantry Training 4', 'AIT-4', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:18', '2023-05-19 20:38:20', 0, NULL), - (37, 'Advanced Infantry Training', 'AITCORE', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:38', '2023-05-19 20:38:20', 0, NULL), - (38, 'Fixed Wings Logistics', 'FWLOGI', 'Support', 'Trains fixed-wing pilots in receiving and executing logistical requests such as paradrops and resupply while in forward movement.', NULL, '2023-05-19 20:38:19', '2023-05-19 20:38:19', 0, NULL); - --- Dumping structure for table ranger_unit_tracker.courses_single -CREATE TABLE IF NOT EXISTS `courses_single` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(100) NOT NULL, - `short_name` varchar(10) NOT NULL, - `category` varchar(100) NOT NULL, - `description` varchar(1000) DEFAULT NULL, - `image_url` varchar(255) DEFAULT NULL, - `created_at` datetime NOT NULL DEFAULT current_timestamp(), - `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT 0, - `prereq_id` int(11) DEFAULT NULL, - `require_qual` tinyint(4) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `name` (`name`), - UNIQUE KEY `shortName` (`short_name`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4; - --- Dumping data for table ranger_unit_tracker.courses_single: ~0 rows (approximately) -INSERT INTO `courses_single` (`id`, `name`, `short_name`, `category`, `description`, `image_url`, `created_at`, `updated_at`, `deleted`, `prereq_id`, `require_qual`) VALUES - (1, 'Basic Training', 'BCT', 'Required', 'This is Basic Training', NULL, '2023-04-25 00:18:00', '2023-05-01 05:05:20', 0, NULL, NULL), - (2, 'Combat Life Saver', 'CLS', 'Infantry', 'Provides core information needed to be a Combat Life Saver and assist Combat Medics in providing medical care', NULL, '2023-05-01 05:06:06', '2023-05-01 05:06:06', 0, NULL, NULL), - (3, 'Demolitions', 'DEMO', 'Infantry', 'Introduces basic demolition and explosives handling and detection skills.', NULL, '2023-05-02 20:28:52', '2023-05-02 20:28:52', 0, NULL, NULL), - (4, 'Advanced Infantry Training 1', 'AIT-1', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-02 20:29:29', '2023-05-19 20:38:20', 0, NULL, NULL), - (5, 'Combat Medic', '68W', 'Infantry', 'Delves into the intricacies of being a Combat Medic and teaches the procedures and technical knowledge needed to save, stabilize, and revive injured members', NULL, '2023-05-02 20:29:51', '2023-05-19 20:38:19', 0, NULL, NULL), - (6, 'Communications / RTO', 'RTO', 'Infantry', 'Trains the ability to manage multiple radios and requests, such as logistics, transportation, mortars, and CAS', NULL, '2023-05-02 20:30:22', '2023-05-19 20:38:19', 0, NULL, NULL), - (7, 'Explosive Ordinance Disposal ', 'EOD', 'Infantry', 'Advances knowledge of demolition, explosives handling or disposal, and IED/minefield clearance', NULL, '2023-05-02 20:30:44', '2023-05-19 20:38:19', 0, NULL, NULL), - (8, 'Heavy Weapons', 'HVYWP', 'Infantry', 'Provides advanced knowledge and familiarization on infantry-based Anti-Tank launchers and Crew-Served Weapons.', NULL, '2023-05-02 20:31:09', '2023-05-19 20:38:19', 0, NULL, NULL), - (9, 'Air Assault', 'AIRASLT', 'Infantry', 'Demonstrates the effectiveness of helicopter Air Assaults, and teaches how to plan and execute Air Assaults.', NULL, '2023-05-02 20:31:45', '2023-05-19 20:38:20', 0, NULL, NULL), - (10, 'Anti Armor', 'ATIARM', 'Infantry', 'Provides advanced knowledge on enemy Armored Fighting Vehicles\' capabilities, weaknesses, differences, and identification', NULL, '2023-05-02 20:32:04', '2023-05-19 20:38:20', 0, NULL, NULL), - (11, 'Jump Wings', 'JMPWNGS', 'Infantry', 'Trains attendees on the basics of parachute infantry through Static Line or Free Fall parajumps', NULL, '2023-05-02 20:32:26', '2023-05-19 20:38:20', 0, NULL, NULL), - (12, 'Land Navigation', 'LANDNAV', 'Infantry', 'Teaches advanced cartography and map reading, navigation, and orientation without use of GPS systems.', NULL, '2023-05-02 20:32:55', '2023-05-19 20:38:20', 0, NULL, NULL), - (13, 'Marksman', 'MRKSMN', 'Infantry', 'Qualifies members on rapid snap shooting at close-medium range with accuracy, required to use a 3x scope.', NULL, '2023-05-02 20:33:17', '2023-05-19 20:38:20', 0, NULL, NULL), - (14, 'Sharpshooter', 'SHRPSHOT', 'Infantry', 'Qualifies members on rapid, precision shooting at long range with exceptional accuracy, required to use a 4x scope.', NULL, '2023-05-02 20:33:49', '2023-05-19 20:38:20', 0, NULL, NULL), - (15, 'Air Crew', 'AIRCRW', 'Support', 'Provides information on how to act as a basic helicopter crew member, guiding the pilots into a tight LZ and providing medical support where needed.', NULL, '2023-05-02 20:34:09', '2023-05-19 20:38:20', 0, NULL, NULL), - (16, 'Convoy Training', 'CONVOY', 'Support', NULL, NULL, '2023-05-02 20:34:38', '2023-05-02 20:34:38', 0, NULL, NULL), - (17, 'Co-Pilot', 'COPILT', 'Support', 'Introduces the responsibilities of the cockpit crew, teaching copilots how to receive and relay communications, plot flight routes, and operate the helicopter\'s weapon systems.', NULL, '2023-05-02 20:35:13', '2023-05-19 20:38:20', 0, NULL, NULL), - (18, 'Echo Orientation', 'ECHORENT', 'Support', 'Introduces attendees to the vehicles, roles, and Echo\'s general scope of operations.', NULL, '2023-05-02 20:35:43', '2023-05-19 20:38:20', 0, NULL, NULL), - (19, 'Fixed Wing Close Air Support', 'FWCAS', 'Support', 'Trains fixed-wing pilots in receiving communications and plotting grids while in forward movement, and how to operate the aircraft\'s Air-To-Ground and Air-To-Air systems.', NULL, '2023-05-02 20:36:04', '2023-05-19 20:38:20', 0, NULL, NULL), - (20, 'Indirect Fire (Mortars)', 'IDF', 'Support', 'Trains IDF specialists in receiving call-for-fires and calculating artillery solutions for the Mk.6 Mortar, and familiarizing trainees on the M109A6 Paladin and M142 HIMARS.', NULL, '2023-05-02 20:36:28', '2023-05-19 20:38:20', 0, NULL, NULL), - (21, 'Joint Terminal Attack Controller', 'JTAC', 'Support', 'Provides the necessary knowledge to interpret CAS requests from infantry elements and request CAS strikes from allied Fixed-Wing or Rotary-Wing aircraft.', NULL, '2023-05-02 20:36:46', '2023-05-19 20:38:20', 0, NULL, NULL), - (22, 'Jump Master', 'JMPMSTR', 'Support', 'Trains Jump Masters in plotting paradrop DZs, parameters such as speed and altitude, and executing the jump.', NULL, '2023-05-02 20:36:59', '2023-05-19 20:38:20', 0, NULL, NULL), - (23, 'Mechanized', 'MECH', 'Support', 'Trains attendees to be expert mechanized drivers, gunners, and commanders, able to act independently or attached to an infantry element.', NULL, '2023-05-02 20:37:27', '2023-05-19 20:38:20', 0, NULL, NULL), - (24, 'Rotary Close Air Support', 'RTRCAS', 'Support', 'Trains Rotary-wing pilots in receiving communications and plotting grids while in forward movement, and how to operate the aircraft\'s Air-To-Ground and Air-To-Air systems.', NULL, '2023-05-02 20:37:44', '2023-05-19 20:38:20', 0, NULL, NULL), - (25, 'Rotary Logistics', 'RTRLOGI', 'Support', 'Trains Rotary-wing pilots in conducting landings, paradrops, hot LZs, resupplies in various rotary-wing aircraft, and ensures the pilot can recover from substantial engine or tail-rotor damage.', NULL, '2023-05-02 20:38:12', '2023-05-19 20:38:20', 0, NULL, NULL), - (26, 'Advanced Unmanned Aerial Vehicle', 'AUAV', 'Specialty', 'Fully explores the Darter and Yabhon\'s flight abilities, radar and technology suites, armaments, and camera systems to perform reconnaissance and place guided munitions onto targets.', NULL, '2023-05-02 20:38:45', '2023-05-19 20:38:20', 0, NULL, NULL), - (27, 'Combat Diver', 'CMBDVR', 'Specialty', 'Teaches the skills need to be a Ranger Recon Company (RRC) diver, and practicing the various methods of insertion such as SDV, Helocast, and diving.', NULL, '2023-05-02 20:39:16', '2023-05-19 20:38:20', 0, NULL, NULL), - (28, 'Forward Observer', 'FO', 'Specialty', 'Trains Forward Observers to call in and correct IDF strikes until enemies have been destroyed with 110% accuracy.', NULL, '2023-05-02 20:39:33', '2023-05-19 20:38:20', 0, NULL, NULL), - (29, 'Master Free Fall', 'MFF', 'Specialty', 'Advances paradropping abilities to better suit the needs of RRC.', NULL, '2023-05-02 20:39:42', '2023-05-19 20:38:20', 0, NULL, NULL), - (30, 'Pathfinder', 'PTHFDR', 'Specialty', 'Teaches the basic scope of action of RRC and trains usage of the Raven drone and general recon and stealth practices.', NULL, '2023-05-02 20:39:57', '2023-05-19 20:38:20', 0, NULL, NULL), - (31, 'Reconnaissance and Surveillance Leaders Course', 'RSLC', 'Specialty', 'Trains NCOs to plan, prepare, and execute RRC missions.', NULL, '2023-05-02 20:40:23', '2023-05-19 20:38:20', 0, NULL, NULL), - (32, 'Sniper', 'SNPR', 'Specialty', 'Trains personnel on how to employ long-range scopes and rifles to observe areas from protected keyholes, and place high-precision, long-range shots on priority targets.', NULL, '2023-05-02 20:40:37', '2023-05-19 20:38:20', 0, NULL, NULL), - (33, 'Basic Communications Proficiency', 'BCOMPROF', 'Additional', 'Trains on the usage of the AN/PRC-152 short-range radio, and general communication etiquette and efficiency. ', NULL, '2023-05-02 20:41:17', '2023-05-19 20:38:20', 0, NULL, NULL), - (34, 'Advanced Infantry Training 2', 'AIT-2', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:58:52', '2023-05-19 20:38:20', 0, NULL, NULL), - (35, 'Advanced Infantry Training 3', 'AIT-3', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:03', '2023-05-19 20:38:20', 0, NULL, NULL), - (36, 'Advanced Infantry Training 4', 'AIT-4', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:18', '2023-05-19 20:38:20', 0, NULL, NULL), - (37, 'Advanced Infantry Training', 'AITCORE', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:38', '2023-05-19 20:38:20', 0, NULL, NULL), - (38, 'Fixed Wings Logistics', 'FWLOGI', 'Support', 'Trains fixed-wing pilots in receiving and executing logistical requests such as paradrops and resupply while in forward movement.', NULL, '2023-05-19 20:38:19', '2023-05-19 20:38:19', 0, NULL, NULL); - --- Dumping structure for table ranger_unit_tracker.courses_sme -CREATE TABLE IF NOT EXISTS `courses_sme` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `course_id` int(11) NOT NULL DEFAULT 0, - `member_id` int(11) NOT NULL DEFAULT 0, - `created_at` datetime DEFAULT current_timestamp(), - `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), - PRIMARY KEY (`id`), - KEY `fk_course_sme_course_id` (`course_id`), - KEY `fk_course_sme_member_id` (`member_id`), - CONSTRAINT `fk_course_sme_course_id` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON UPDATE CASCADE, - CONSTRAINT `fk_course_sme_member_id` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4; - --- Dumping data for table ranger_unit_tracker.courses_sme: ~3 rows (approximately) -INSERT INTO `courses_sme` (`id`, `course_id`, `member_id`, `created_at`, `updated_at`) VALUES - (1, 3, 9, '2023-05-13 23:38:32', '2023-05-13 23:38:32'), - (2, 37, 3, '2023-05-16 15:48:14', '2023-05-16 15:48:14'), - (5, 5, 12, '2023-08-13 19:38:03', '2023-08-13 19:38:03'); - --- Dumping structure for table ranger_unit_tracker.course_attendees -CREATE TABLE IF NOT EXISTS `course_attendees` ( - `passed` tinyint(1) DEFAULT 0, - `attendee_id` int(11) NOT NULL, - `course_event_id` int(11) NOT NULL, - `attendee_role_id` int(11) DEFAULT NULL, - `created_at` datetime NOT NULL DEFAULT current_timestamp(), - `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - PRIMARY KEY (`attendee_id`,`course_event_id`) USING BTREE, - KEY `courseInstanceId` (`course_event_id`) USING BTREE, - KEY `fk_CourseInstancesMembers_CoureseAttendeeType_id` (`attendee_role_id`) USING BTREE, - CONSTRAINT `fk_course_event_member_coures_attendee_type_id` FOREIGN KEY (`attendee_role_id`) REFERENCES `course_attendee_roles` (`id`) ON UPDATE CASCADE, - CONSTRAINT `fk_course_event_members_coures_event_id` FOREIGN KEY (`course_event_id`) REFERENCES `course_events` (`id`) ON UPDATE CASCADE, - CONSTRAINT `fk_course_event_members_members_id` FOREIGN KEY (`attendee_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; - --- Dumping data for table ranger_unit_tracker.course_attendees: ~3 rows (approximately) -INSERT INTO `course_attendees` (`passed`, `attendee_id`, `course_event_id`, `attendee_role_id`, `created_at`, `updated_at`) VALUES - (0, 29, 4, 2, '2023-05-16 16:10:47', '2023-05-16 16:10:47'), - (0, 63, 2, 2, '2023-05-02 21:49:33', '2023-05-13 23:39:38'), - (0, 63, 4, 2, '2023-05-01 00:42:17', '2023-05-01 05:42:31'); - --- Dumping structure for table ranger_unit_tracker.course_attendee_roles -CREATE TABLE IF NOT EXISTS `course_attendee_roles` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(50) DEFAULT NULL, - `description` text DEFAULT NULL, - `created_at` datetime DEFAULT current_timestamp(), - `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `type` (`name`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COMMENT='Changed from course_attendee_type to event_attendee_type'; - --- Dumping data for table ranger_unit_tracker.course_attendee_roles: ~4 rows (approximately) +-- Dumping data for table milsim_website_development.course_attendee_roles: ~5 rows (approximately) INSERT INTO `course_attendee_roles` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted`) VALUES - (1, 'Primary Trainer', NULL, '2023-05-03 01:48:12', '2023-05-03 01:48:12', 0), - (2, 'Trainee', NULL, '2023-05-03 01:48:12', '2023-05-03 01:48:12', 0), - (3, 'Observer', NULL, '2023-05-03 01:48:12', '2023-05-03 01:48:12', 0), - (4, 'Assistant Trainer', NULL, '2023-05-03 01:48:12', '2023-05-03 01:48:12', 0); + (1, 'Primary Trainer', 'Individual who is leading the training', '2023-05-03 01:48:12', '2025-11-20 16:27:45', 0); +INSERT INTO `course_attendee_roles` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted`) VALUES + (2, 'Trainee', 'Individual who is taking the course', '2023-05-03 01:48:12', '2025-12-15 23:39:11', 0), + (3, 'Observer', 'Individual watching or working towards trainer status.', '2023-05-03 01:48:12', '2025-12-15 23:38:07', 0), + (4, 'Assistant Trainer', 'Individual assisting the Primary Trainer as a support trainer.', '2023-05-03 01:48:12', '2025-12-15 23:38:56', 0), + (5, 'No-Show', 'Individual who signed up but did not attend the training.', '2025-11-20 16:27:35', '2025-11-20 16:28:59', 0); --- Dumping structure for table ranger_unit_tracker.course_category -CREATE TABLE IF NOT EXISTS `course_category` ( - `id` int(11) DEFAULT NULL, - `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +-- Dumping data for table milsim_website_development.course_attendees: ~24 rows (approximately) +INSERT INTO `course_attendees` (`passed_bookwork`, `passed_qual`, `attendee_id`, `course_event_id`, `attendee_role_id`, `created_at`, `updated_at`, `remarks`, `expired`, `expired_reason`) VALUES + (1, 0, 3, 5, 2, '2025-12-21 18:14:52', '2025-12-21 18:14:52', '', 0, '0'); +INSERT INTO `course_attendees` (`passed_bookwork`, `passed_qual`, `attendee_id`, `course_event_id`, `attendee_role_id`, `created_at`, `updated_at`, `remarks`, `expired`, `expired_reason`) VALUES + (0, 0, 8, 2, 5, '2025-12-20 23:53:06', '2025-12-20 23:53:06', '', 0, '0'), + (0, 0, 9, 2, 2, '2025-12-20 23:53:06', '2025-12-20 23:53:06', '', 0, '0'), + (0, 1, 24, 1, 2, '2025-12-17 20:06:22', '2025-12-17 20:06:22', '', 0, '0'), + (0, 0, 24, 9, 2, '2025-12-28 18:53:40', '2025-12-28 18:53:40', 'Soft Failures:\n- Landing at the Hot LZ outside of the 30 second time-frame.\n- Failing to drop the sling loaded vehicle within the helipad during the sling load portion.\n- Moving outside of the Drop Zone assigned during the para-drop portion.\n\nHard Failures:\n- Catastrophic loss of airframe (UH-60) during autorotation.', 0, '0'), + (1, 1, 28, 3, 1, '2025-12-21 18:11:17', '2025-12-21 18:11:17', '', 0, '0'), + (1, 1, 28, 4, 1, '2025-12-21 18:11:17', '2025-12-21 18:11:17', '', 0, '0'), + (1, 0, 28, 5, 1, '2025-12-21 18:14:52', '2025-12-21 18:14:52', '', 0, '0'), + (0, 0, 28, 6, 1, '2025-12-28 13:41:12', '2025-12-28 13:41:12', '', 0, '0'), + (0, 0, 28, 7, 1, '2025-12-28 14:12:36', '2025-12-28 14:12:36', '', 0, '0'), + (1, 1, 28, 8, 1, '2025-12-28 16:24:57', '2025-12-28 16:24:57', '1) Make sure your Steam Wishlist is Up to Date and viewable by others\n2) Wishlist should contain a variety of game categories (Be considerate of others who may not feel comfortable purchasing from specific categories Lack of Variety will void participation.) \n3) Gifts will be selected from your individuals Wishlist\n4) Gift price range will be $10 to $30 (If they have multiple games on their Wishlist, maybe get them two to get to $10)\n5) Users must have joined and been ACTIVE in the Iceberg community for a reasonable amount of time (Iceberg Admin Discretion) and be in good stating within the community.\n6) Secret Santa is just that A Secret ;)\n\n', 0, '0'), + (0, 0, 37, 2, 1, '2025-12-20 23:53:06', '2025-12-20 23:53:06', '', 0, '0'), + (1, 1, 38, 3, 2, '2025-12-21 18:11:17', '2025-12-21 18:11:17', '', 0, '0'), + (1, 1, 38, 4, 2, '2025-12-21 18:11:17', '2025-12-21 18:11:17', '', 0, '0'), + (1, 0, 38, 5, 2, '2025-12-21 18:14:52', '2025-12-21 18:14:52', '', 0, '0'), + (0, 1, 38, 6, 2, '2025-12-28 13:41:12', '2025-12-28 13:41:12', '', 0, '0'), + (1, 0, 46, 7, 2, '2025-12-28 14:12:36', '2025-12-28 14:12:36', '1) Make sure your Steam Wishlist is Up to Date and viewable by others\n2) Wishlist should contain a variety of game categories (Be considerate of others who may not feel comfortable purchasing from specific categories Lack of Variety will void participation.) \n3) Gifts will be selected from your individuals Wishlist\n4) Gift price range will be $10 to $30 (If they have multiple games on their Wishlist, maybe get them two to get to $10)\n5) Users must have joined and been ACTIVE in the Iceberg community for a reasonable amount of time (Iceberg Admin Discretion) and be in good stating within the community.\n6) Secret Santa is just that A Secret ;)', 0, '0'), + (1, 1, 46, 8, 2, '2025-12-28 16:24:57', '2025-12-28 16:24:57', '1) Make sure your Steam Wishlist is Up to Date and viewable by others\n2) Wishlist should contain a variety of game categories (Be considerate of others who may not feel comfortable purchasing from specific categories Lack of Variety will void participation.) \n3) Gifts will be selected from your individuals Wishlist\n4) Gift price range will be $10 to $30 (If they have multiple games on their Wishlist, maybe get them two to get to $10)\n5) Users must have joined and been ACTIVE in the Iceberg community for a reasonable amount of time (Iceberg Admin Discretion) and be in good stating within the community.\n6) Secret Santa is just that A Secret ;)\n\n', 0, '0'), + (0, 0, 47, 2, 2, '2025-12-20 23:53:06', '2025-12-20 23:53:06', '', 0, '0'), + (0, 0, 70, 2, 4, '2025-12-20 23:53:06', '2025-12-20 23:53:06', '', 0, '0'), + (0, 0, 80, 1, 1, '2025-12-17 20:06:22', '2025-12-17 20:06:22', '', 0, '0'), + (0, 0, 80, 9, 1, '2025-12-28 18:53:40', '2025-12-28 18:53:40', '', 0, '0'), + (1, 1, 539, 3, 2, '2025-12-21 18:11:17', '2025-12-21 18:11:17', 'yeeyee', 0, '0'), + (1, 1, 539, 4, 2, '2025-12-21 18:11:17', '2025-12-21 18:11:17', 'yeeyee', 0, '0'); --- Dumping data for table ranger_unit_tracker.course_category: ~0 rows (approximately) +-- Dumping data for table milsim_website_development.course_category: ~0 rows (approximately) --- Dumping structure for table ranger_unit_tracker.course_events -CREATE TABLE IF NOT EXISTS `course_events` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `course_id` int(11) DEFAULT NULL, - `event_type` int(11) DEFAULT NULL, - `event_date` datetime NOT NULL, - `guilded_event_id` int(11) DEFAULT NULL, - `created_at` datetime NOT NULL DEFAULT current_timestamp(), - `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT 0, - `report_url` varchar(2048) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `fk_course_events_event_type_id` (`event_type`) USING BTREE, - KEY `courseId` (`course_id`) USING BTREE, - CONSTRAINT `fk_coures_events_course_id` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON UPDATE CASCADE, - CONSTRAINT `fk_course_events_event_type_id` FOREIGN KEY (`event_type`) REFERENCES `event_types` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4; +-- Dumping data for table milsim_website_development.course_events: ~9 rows (approximately) +INSERT INTO `course_events` (`id`, `course_id`, `event_type`, `event_date`, `guilded_event_id`, `guilded_report_id`, `created_at`, `updated_at`, `deleted`, `report_url`, `remarks`, `created_by`, `hasBookwork`, `hasQual`) VALUES + (1, 25, NULL, '2025-12-16 18:00:00', NULL, '826566727', '2025-12-17 20:06:22', '2025-12-20 23:58:37', 0, NULL, 'This was a re-qualification following up on a qualification previously hosted on 12/4/2025; \n\nThe trainee showed marked improvement in all areas and was able to correct all hard and soft failures during the re-qualification.', 37, 1, 1); +INSERT INTO `course_events` (`id`, `course_id`, `event_type`, `event_date`, `guilded_event_id`, `guilded_report_id`, `created_at`, `updated_at`, `deleted`, `report_url`, `remarks`, `created_by`, `hasBookwork`, `hasQual`) VALUES + (2, 8, NULL, '2025-12-04 18:00:00', NULL, '826566727', '2025-12-20 23:53:06', '2025-12-20 23:58:37', 0, NULL, '', 37, 1, 0), + (3, 9, NULL, '2025-12-20 19:00:00', NULL, NULL, '2025-12-21 18:11:17', '2025-12-21 18:11:17', 0, NULL, 'Remarkable', 28, 1, 1), + (4, 9, NULL, '2025-12-20 19:00:00', NULL, NULL, '2025-12-21 18:11:17', '2025-12-21 18:11:17', 0, NULL, 'Remarkable', 28, 1, 1), + (5, 33, NULL, '2025-12-20 19:00:00', NULL, NULL, '2025-12-21 18:14:52', '2025-12-21 18:14:52', 0, NULL, 'Test', 28, 1, 0), + (6, 14, NULL, '2025-12-27 19:00:00', NULL, NULL, '2025-12-28 13:41:11', '2025-12-28 13:41:11', 0, NULL, '', 28, 0, 1), + (7, 4, NULL, '2025-12-27 19:00:00', NULL, NULL, '2025-12-28 14:12:36', '2025-12-28 14:12:36', 0, NULL, '', 28, 1, 0), + (8, 10, NULL, '2025-12-27 19:00:00', NULL, NULL, '2025-12-28 16:24:57', '2025-12-28 16:24:57', 0, NULL, '', 28, 1, 1), + (9, 25, NULL, '2025-12-03 18:00:00', NULL, NULL, '2025-12-28 18:53:40', '2025-12-28 18:53:40', 0, NULL, 'Trainee was advised to practice autorotations, especially in adverse terrain. Additionally, trainee was asked to practice with sling loading vehicles utilizing the Chinook. *Report Transferred From Guilded*', 38, 1, 1); --- Dumping data for table ranger_unit_tracker.course_events: ~2 rows (approximately) -INSERT INTO `course_events` (`id`, `course_id`, `event_type`, `event_date`, `guilded_event_id`, `created_at`, `updated_at`, `deleted`, `report_url`) VALUES - (2, 1, 2, '2023-04-01 12:34:56', NULL, '2023-04-01 12:34:56', '2023-05-08 06:36:26', 0, NULL), - (4, 1, 2, '2023-05-01 00:00:00', NULL, '2023-05-01 00:31:25', '2023-05-08 06:36:27', 0, NULL), - (5, 8, 1, '2025-02-08 23:47:17', NULL, '2025-02-08 23:47:20', '2025-02-08 23:47:20', 0, NULL); +-- Dumping data for table milsim_website_development.course_qualified_trainers: ~0 rows (approximately) --- Dumping structure for table ranger_unit_tracker.course_qualified_trainers -CREATE TABLE IF NOT EXISTS `course_qualified_trainers` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `member_id` int(11) DEFAULT NULL, - `course_id` int(11) DEFAULT NULL, - `created_at` datetime DEFAULT current_timestamp(), - `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `qualified` tinyint(4) DEFAULT NULL, - `instance_qualified_id` int(11) DEFAULT NULL, - `deleted` tinyint(4) DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `memberId_courseId` (`member_id`,`course_id`) USING BTREE, - KEY `fk_coures_qualified_trainers_coures_id` (`course_id`) USING BTREE, - KEY `fk_CourseTrainers_CourseInstance_id` (`instance_qualified_id`) USING BTREE, - CONSTRAINT `fk_coures_qualified_trainers_coures_events_id` FOREIGN KEY (`instance_qualified_id`) REFERENCES `course_events` (`id`) ON UPDATE CASCADE, - CONSTRAINT `fk_coures_qualified_trainers_coures_id` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON UPDATE CASCADE, - CONSTRAINT `fk_coures_qualified_trainers_mebers_id` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COMMENT='Contains a linked group of qualified trainers'; +-- Dumping data for table milsim_website_development.courses: ~39 rows (approximately) +INSERT INTO `courses` (`id`, `name`, `short_name`, `category`, `description`, `image_url`, `created_at`, `updated_at`, `deleted`, `prereq_id`, `hasBookwork`, `hasQual`) VALUES + (1, 'Basic Training', 'BCT', 'Required', 'This is Basic Training', NULL, '2023-04-25 00:18:00', '2025-11-24 12:39:20', 0, NULL, 1, 0); +INSERT INTO `courses` (`id`, `name`, `short_name`, `category`, `description`, `image_url`, `created_at`, `updated_at`, `deleted`, `prereq_id`, `hasBookwork`, `hasQual`) VALUES + (2, 'Combat Life Saver', 'CLS', 'Infantry', 'Provides core information needed to be a Combat Life Saver and assist Combat Medics in providing medical care', NULL, '2023-05-01 05:06:06', '2023-05-01 05:06:06', 0, NULL, 0, 0), + (3, 'Demolitions', 'DEMO', 'Infantry', 'Introduces basic demolition and explosives handling and detection skills.', NULL, '2023-05-02 20:28:52', '2025-12-17 21:20:06', 0, NULL, 1, 0), + (4, 'Advanced Infantry Training 1', 'AIT-1', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-02 20:29:29', '2025-11-20 12:11:28', 0, NULL, 1, 0), + (5, 'Combat Medic', '68W', 'Infantry', 'Delves into the intricacies of being a Combat Medic and teaches the procedures and technical knowledge needed to save, stabilize, and revive injured members', NULL, '2023-05-02 20:29:51', '2025-11-20 12:11:20', 0, NULL, 1, 1), + (6, 'Communications / RTO', 'RTO', 'Infantry', 'Trains the ability to manage multiple radios and requests, such as logistics, transportation, mortars, and CAS', NULL, '2023-05-02 20:30:22', '2025-11-24 12:39:11', 0, NULL, 1, 1), + (7, 'Explosive Ordinance Disposal ', 'EOD', 'Infantry', 'Advances knowledge of demolition, explosives handling or disposal, and IED/minefield clearance', NULL, '2023-05-02 20:30:44', '2025-11-24 12:39:13', 0, NULL, 1, 1), + (8, 'Heavy Weapons', 'HVYWP', 'Infantry', 'Provides advanced knowledge and familiarization on infantry-based Anti-Tank launchers and Crew-Served Weapons.', NULL, '2023-05-02 20:31:09', '2025-11-24 12:39:15', 0, NULL, 1, 0), + (9, 'Air Assault', 'AIRASLT', 'Infantry', 'Demonstrates the effectiveness of helicopter Air Assaults, and teaches how to plan and execute Air Assaults.', NULL, '2023-05-02 20:31:45', '2025-12-17 21:30:01', 0, NULL, 1, 1), + (10, 'Anti Armor', 'ATIARM', 'Infantry', 'Provides advanced knowledge on enemy Armored Fighting Vehicles\' capabilities, weaknesses, differences, and identification', NULL, '2023-05-02 20:32:04', '2025-12-17 21:30:21', 0, NULL, 1, 1), + (11, 'Jump Wings', 'JMPWNGS', 'Infantry', 'Trains attendees on the basics of parachute infantry through Static Line or Free Fall parajumps', NULL, '2023-05-02 20:32:26', '2025-12-17 21:30:35', 0, NULL, 1, 1), + (12, 'Land Navigation', 'LANDNAV', 'Infantry', 'Teaches advanced cartography and map reading, navigation, and orientation without use of GPS systems.', NULL, '2023-05-02 20:32:55', '2025-11-24 21:49:28', 0, NULL, 1, 1), + (13, 'Marksman', 'MRKSMN', 'Infantry', 'Qualifies members on rapid snap shooting at close-medium range with accuracy, required to use a 3x scope.', NULL, '2023-05-02 20:33:17', '2025-12-02 21:25:25', 0, NULL, 0, 1), + (14, 'Sharpshooter', 'SHRPSHOT', 'Infantry', 'Qualifies members on rapid, precision shooting at long range with exceptional accuracy, required to use a 4x scope.', NULL, '2023-05-02 20:33:49', '2025-12-17 21:30:53', 0, NULL, 0, 1), + (15, 'Air Crew', 'AIRCRW', 'Support', 'Provides information on how to act as a basic helicopter crew member, guiding the pilots into a tight LZ and providing medical support where needed.', NULL, '2023-05-02 20:34:09', '2025-12-17 21:37:12', 1, NULL, 0, 0), + (16, 'Convoy Training', 'CONVOY', 'Support', NULL, NULL, '2023-05-02 20:34:38', '2025-12-17 21:37:34', 0, NULL, 1, 0), + (17, 'Co-Pilot', 'COPILT', 'Support', 'Introduces the responsibilities of the cockpit crew, teaching copilots how to receive and relay communications, plot flight routes, and operate the helicopter\'s weapon systems.', NULL, '2023-05-02 20:35:13', '2025-12-17 21:38:05', 0, NULL, 1, 1), + (18, 'Echo Orientation', 'ECHORENT', 'Support', 'Introduces attendees to the vehicles, roles, and Echo\'s general scope of operations.', NULL, '2023-05-02 20:35:43', '2025-12-17 21:38:15', 0, NULL, 1, 0), + (19, 'Fixed Wing Close Air Support', 'FWCAS', 'Support', 'Trains fixed-wing pilots in receiving communications and plotting grids while in forward movement, and how to operate the aircraft\'s Air-To-Ground and Air-To-Air systems.', NULL, '2023-05-02 20:36:04', '2025-11-24 12:40:06', 0, NULL, 1, 1), + (20, 'Indirect Fire (Mortars)', 'IDF', 'Support', 'Trains IDF specialists in receiving call-for-fires and calculating artillery solutions for the Mk.6 Mortar, and familiarizing trainees on the M109A6 Paladin and M142 HIMARS.', NULL, '2023-05-02 20:36:28', '2025-11-24 12:40:10', 0, NULL, 1, 1), + (21, 'Joint Terminal Attack Controller', 'JTAC', 'Support', 'Provides the necessary knowledge to interpret CAS requests from infantry elements and request CAS strikes from allied Fixed-Wing or Rotary-Wing aircraft.', NULL, '2023-05-02 20:36:46', '2025-12-17 21:43:34', 0, NULL, 1, 1), + (22, 'Jump Master', 'JMPMSTR', 'Support', 'Trains Jump Masters in plotting paradrop DZs, parameters such as speed and altitude, and executing the jump.', NULL, '2023-05-02 20:36:59', '2025-12-17 21:43:44', 0, NULL, 1, 1), + (23, 'Mechanized', 'MECH', 'Support', 'Trains attendees to be expert mechanized drivers, gunners, and commanders, able to act independently or attached to an infantry element.', NULL, '2023-05-02 20:37:27', '2025-12-17 21:44:00', 0, NULL, 1, 1), + (24, 'Rotary Close Air Support', 'RTRCAS', 'Support', 'Trains Rotary-wing pilots in receiving communications and plotting grids while in forward movement, and how to operate the aircraft\'s Air-To-Ground and Air-To-Air systems.', NULL, '2023-05-02 20:37:44', '2025-12-17 21:44:11', 0, NULL, 1, 1), + (25, 'Rotary Logistics', 'RTRLOGI', 'Support', 'Trains Rotary-wing pilots in conducting landings, paradrops, hot LZs, resupplies in various rotary-wing aircraft, and ensures the pilot can recover from substantial engine or tail-rotor damage.', NULL, '2023-05-02 20:38:12', '2025-12-17 21:44:20', 0, NULL, 1, 1), + (26, 'Advanced Unmanned Aerial Vehicle', 'AUAV', 'Specialty', 'Fully explores the Darter and Yabhon\'s flight abilities, radar and technology suites, armaments, and camera systems to perform reconnaissance and place guided munitions onto targets.', NULL, '2023-05-02 20:38:45', '2025-12-17 21:44:32', 0, NULL, 1, 1), + (27, 'Combat Diver', 'CMBDVR', 'Specialty', 'Teaches the skills need to be a Ranger Recon Company (RRC) diver, and practicing the various methods of insertion such as SDV, Helocast, and diving.', NULL, '2023-05-02 20:39:16', '2025-11-24 12:40:41', 0, NULL, 1, 0), + (28, 'Forward Observer', 'FO', 'Specialty', 'Trains Forward Observers to call in and correct IDF strikes until enemies have been destroyed with 110% accuracy.', NULL, '2023-05-02 20:39:33', '2025-11-24 12:39:26', 0, NULL, 1, 1), + (29, 'Master Free Fall', 'MFF', 'Specialty', 'Advances paradropping abilities to better suit the needs of RRC.', NULL, '2023-05-02 20:39:42', '2025-12-17 21:45:17', 0, NULL, 1, 1), + (30, 'Pathfinder', 'PTHFDR', 'Specialty', 'Teaches the basic scope of action of RRC and trains usage of the Raven drone and general recon and stealth practices.', NULL, '2023-05-02 20:39:57', '2025-11-24 12:40:37', 0, NULL, 1, 1), + (31, 'Reconnaissance and Surveillance Leaders Course', 'RSLC', 'Specialty', 'Trains NCOs to plan, prepare, and execute RRC missions.', NULL, '2023-05-02 20:40:23', '2025-11-24 12:40:34', 0, NULL, 1, 1), + (32, 'Sniper', 'SNPR', 'Specialty', 'Trains personnel on how to employ long-range scopes and rifles to observe areas from protected keyholes, and place high-precision, long-range shots on priority targets.', NULL, '2023-05-02 20:40:37', '2025-11-24 12:40:32', 0, NULL, 1, 1), + (33, 'Basic Communications Proficiency', 'BCOMPROF', 'Additional', 'Trains on the usage of the AN/PRC-152 short-range radio, and general communication etiquette and efficiency. ', NULL, '2023-05-02 20:41:17', '2025-12-17 21:45:25', 0, NULL, 1, 0), + (34, 'Advanced Infantry Training 2', 'AIT-2', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:58:52', '2025-11-24 12:40:20', 0, NULL, 1, 0), + (35, 'Advanced Infantry Training 3', 'AIT-3', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:03', '2025-11-24 12:40:21', 0, NULL, 1, 0), + (36, 'Advanced Infantry Training 4', 'AIT-4', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:18', '2025-11-24 12:40:21', 0, NULL, 1, 0), + (37, 'Advanced Infantry Training (GLOBAL)', 'AITCORE', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:38', '2025-12-17 21:46:02', 1, NULL, 0, 0), + (38, 'Fixed Wings Logistics', 'FWLOGI', 'Support', 'Trains fixed-wing pilots in receiving and executing logistical requests such as paradrops and resupply while in forward movement.', NULL, '2023-05-19 20:38:19', '2025-12-17 21:46:18', 0, NULL, 1, 1), + (39, '(USAF) AC-130U Spooky Guide', 'AC-130-SG', 'Additional', 'Learn how to operate the aircraft and it\'s systems.', NULL, '2025-12-01 00:39:57', '2025-12-01 00:39:57', 0, NULL, 1, 0); --- Dumping data for table ranger_unit_tracker.course_qualified_trainers: ~0 rows (approximately) -INSERT INTO `course_qualified_trainers` (`id`, `member_id`, `course_id`, `created_at`, `updated_at`, `qualified`, `instance_qualified_id`, `deleted`) VALUES - (1, 9, 1, '2023-05-08 01:35:42', '2023-05-08 06:35:47', NULL, 2, 0), - (2, 28, 8, '2025-02-08 23:48:07', '2025-02-08 23:48:07', 1, 5, 0); +-- Dumping data for table milsim_website_development.courses_sme: ~0 rows (approximately) --- Dumping structure for table ranger_unit_tracker.event_types -CREATE TABLE IF NOT EXISTS `event_types` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `event_type` varchar(100) DEFAULT NULL, - `event_category` varchar(100) DEFAULT NULL, - `deleted` tinyint(4) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4; - --- Dumping data for table ranger_unit_tracker.event_types: ~8 rows (approximately) +-- Dumping data for table milsim_website_development.event_types: ~8 rows (approximately) +INSERT INTO `event_types` (`id`, `event_type`, `event_category`, `deleted`) VALUES + (1, 'Training', 'Training', 0); INSERT INTO `event_types` (`id`, `event_type`, `event_category`, `deleted`) VALUES - (1, 'Training', 'Training', 0), (2, 'Training/Qualification', 'Training', 0), (3, 'Campaign Operation', 'Mission', 0), (4, 'Mini Operation', 'Mission', 0), @@ -408,3248 +102558,1556 @@ INSERT INTO `event_types` (`id`, `event_type`, `event_category`, `deleted`) VALU (7, 'Field Training Exercise (FTX)', 'Training', 0), (8, 'Challenge Qualification', 'Training', 0); --- Dumping structure for table ranger_unit_tracker.guilded_events -CREATE TABLE IF NOT EXISTS `guilded_events` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `channel_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `event_id` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `event_type` int(11) DEFAULT NULL, - `event_date` datetime DEFAULT NULL, - `created_at` datetime DEFAULT current_timestamp(), - `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` int(11) DEFAULT NULL, - `url` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `calendar_id_event_id` (`channel_id`,`event_id`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=3267 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +-- Dumping data for table milsim_website_development.guilded_events: ~0 rows (approximately) --- Dumping data for table ranger_unit_tracker.guilded_events: ~2,331 rows (approximately) -INSERT INTO `guilded_events` (`id`, `channel_id`, `event_id`, `name`, `event_type`, `event_date`, `created_at`, `updated_at`, `deleted`, `url`) VALUES - (1, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958042', 'OPFOR/BLUFOR Asset Familiarization - Hosted by Toa', NULL, '2020-03-20 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (2, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958045', 'Basic Training', NULL, '2020-03-21 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (3, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958044', 'Ranger Training - Hosted by Del', NULL, '2020-03-21 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (4, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958046', 'Ranger NCO Meeting', NULL, '2020-03-21 23:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (5, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958047', 'Operation Shamshir Week 7', NULL, '2020-03-22 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (6, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958061', 'Pathfinder Training', NULL, '2020-03-22 19:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (7, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958048', 'Basic Training', NULL, '2020-03-24 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (8, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958049', 'Land Navigation Training - Hosted by Mortuus', NULL, '2020-03-25 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (9, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2963118', 'CLS Training', NULL, '2020-03-26 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (10, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958050', 'Sapper 2 - Hosted by Walrus', NULL, '2020-03-26 01:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (11, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958060', 'Ranger Training', NULL, '2020-03-28 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (12, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2966259', '32nd Mechanized Training - Hosted by Ken', NULL, '2020-03-28 00:30:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (13, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958052', 'Ranger NCO Meeting', NULL, '2020-03-28 23:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (14, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958053', 'Operation Shamshir Week 8 (Finale)', NULL, '2020-03-29 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (15, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2969206', 'Quick Radio Course', NULL, '2020-03-30 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (16, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2961309', 'Convoy Training', NULL, '2020-03-31 00:30:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (17, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2969680', 'Movie Mission - Brigade PR', NULL, '2020-03-31 02:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (18, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2963931', 'Land Navigation', NULL, '2020-04-01 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (19, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958056', 'AIT 1 - Hosted by Toast', NULL, '2020-04-02 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (20, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2960421', 'Race Day', NULL, '2020-04-03 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (21, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2969751', 'Ranger Training', NULL, '2020-04-04 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (22, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958063', 'Basic Training', NULL, '2020-04-04 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (23, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2970637', 'Ranger NCO Meeting', NULL, '2020-04-04 23:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (24, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2969208', 'RASP', NULL, '2020-04-05 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (25, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958055', 'Community Round Table', NULL, '2020-04-05 21:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (26, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2973471', 'CSW Training', NULL, '2020-04-06 01:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (27, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2975384', 'Staged Filming Session - Volunteers Needed', NULL, '2020-04-06 23:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (28, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958082', 'Basic Training', NULL, '2020-04-07 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (29, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2961895', 'Prison Rescue - PVP RU vs. US', NULL, '2020-04-07 01:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (30, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2963932', 'Land Navigation', NULL, '2020-04-08 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (31, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2974760', '"Recurve" Weapon Systems Training', NULL, '2020-04-08 01:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (32, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958057', 'Sapper 3 - Hosted by Walrus', NULL, '2020-04-09 01:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (33, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958058', 'AIT 2 - Hosted by Toast', NULL, '2020-04-10 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (34, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977343', 'IFV/TC Training', NULL, '2020-04-10 22:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (35, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2970718', 'Principles of Fireteams', NULL, '2020-04-11 00:00:00', '2023-06-01 04:43:36', '2023-06-01 04:43:36', NULL, NULL), - (36, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977526', 'Ranger NCO Meeting', NULL, '2020-04-11 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (37, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2974955', 'Brigade Training', NULL, '2020-04-12 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (38, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2975385', 'Filming Mission', NULL, '2020-04-12 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (39, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2974534', 'Mechanized Training', NULL, '2020-04-14 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (40, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977130', 'Ranger Training', NULL, '2020-04-15 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (41, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2981388', 'IFV/TC training', NULL, '2020-04-15 23:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (42, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958059', 'AIT 3 - Hosted by Toast', NULL, '2020-04-16 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (43, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2971546', 'Campaign Asset Training & Preview - OP: Balkan Thu', NULL, '2020-04-16 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (44, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2983589', 'Pathfinder Expedition', NULL, '2020-04-17 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (45, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977931', 'Mission Planning/ 6 P\'s', NULL, '2020-04-18 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (46, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958062', 'Basic Training', NULL, '2020-04-18 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (47, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2982603', 'Ranger NCO Meeting', NULL, '2020-04-18 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (48, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2978244', 'Operation: Balkan Thunder - Chapter 1', NULL, '2020-04-19 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (49, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2986743', 'TAKING THE AIRPORT : Liberation', NULL, '2020-04-19 15:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (50, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2974519', 'Pilot Training', NULL, '2020-04-20 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (51, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2980871', '32nd Weapons Familiarization Training', NULL, '2020-04-21 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (52, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958083', 'Basic Training', NULL, '2020-04-22 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (53, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977127', 'Ranger Training', NULL, '2020-04-22 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (54, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2987418', 'NIGHT MISSION TEST', NULL, '2020-04-22 22:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (55, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2980872', 'Movement Techniques and Danger Areas', NULL, '2020-04-23 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (56, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2989975', '68W Training', NULL, '2020-04-23 23:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (57, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2989142', 'RTO Training (Book work)', NULL, '2020-04-24 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (58, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2978433', 'Fire Fight Series: THE HILL', NULL, '2020-04-25 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (59, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2987421', '2 in. Training', NULL, '2020-04-25 19:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (60, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2982602', 'Ranger NCO Meeting', NULL, '2020-04-25 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (61, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2978245', 'Operation: Balkan Thunder - Chapter 2', NULL, '2020-04-26 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (62, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2991471', 'Community Meeting', NULL, '2020-04-26 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (63, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2976575', 'Prison Rescue PVP PART 2 & Mission Testing', NULL, '2020-04-28 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (64, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977129', 'Ranger Training', NULL, '2020-04-29 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (65, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2990784', 'Principles of Fireteams', NULL, '2020-04-30 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (66, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2994911', 'Crew Familiarization Training', NULL, '2020-04-30 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (67, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2987452', 'AIT 1 - Hosted by Turbo', NULL, '2020-05-01 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (68, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958065', 'Basic Training', NULL, '2020-05-02 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (69, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2985130', 'BLUFOR/OPFOR Asset Training', NULL, '2020-05-02 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (70, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2982604', 'Ranger NCO Meeting', NULL, '2020-05-02 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (71, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2978246', 'Operation: Balkan Thunder - Chapter 3', NULL, '2020-05-03 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (72, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2993501', 'LIBERATION OPS', NULL, '2020-05-03 17:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (73, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2994906', 'Command Meeting', NULL, '2020-05-03 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (74, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2988545', 'Pilot Training PT.2', NULL, '2020-05-04 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (75, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3006242', 'Pilot 2 Makeup', NULL, '2020-05-04 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (76, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2991407', 'using trucks for support: ken teaches rangers seri', NULL, '2020-05-05 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (77, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2975272', 'Basic Training', NULL, '2020-05-06 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (78, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977128', 'Ranger Training', NULL, '2020-05-06 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (79, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2987453', 'Sharpshooter Qual', NULL, '2020-05-07 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (80, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3007644', 'DUI', NULL, '2020-05-07 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (81, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2987454', 'AIT 2 - Hosted by Turbo', NULL, '2020-05-07 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (82, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977812', '2IC Practice & Zeus Op', NULL, '2020-05-08 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (83, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3006740', 'Pathfinder Operation', NULL, '2020-05-08 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (84, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2978438', 'FIRE FIGHT SERIES: GHOSTBUSTERS', NULL, '2020-05-09 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (85, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3015486', 'Ranger NCO Meeting', NULL, '2020-05-09 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (86, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2978247', 'Operation: Balkan Thunder - Chapter 4', NULL, '2020-05-10 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (87, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2993500', 'LIBERATION OPS', NULL, '2020-05-10 17:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (88, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3018282', 'Pilot Basic', NULL, '2020-05-12 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (89, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977131', 'Ranger Training', NULL, '2020-05-13 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (90, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2994480', 'HVT TVT PVP - Come to Brazil', NULL, '2020-05-14 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (91, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958064', 'Basic Training', NULL, '2020-05-16 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (92, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3001217', 'RASP', NULL, '2020-05-17 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (93, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2993504', 'LIBERATION OPS', NULL, '2020-05-17 17:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (94, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3023491', 'ZEUS OP - Zeused by Vincent, Assisted by Night', NULL, '2020-05-19 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (95, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2975273', 'Basic Training', NULL, '2020-05-20 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (96, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977132', 'Ranger Training', NULL, '2020-05-20 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (97, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3025623', 'TC/IFV training', NULL, '2020-05-21 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (98, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2987455', 'AIT 3 - Hosted by Turbo', NULL, '2020-05-22 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (99, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3029121', 'Impromptu Basic Training', NULL, '2020-05-23 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (100, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3023987', 'SCP Operation', NULL, '2020-05-23 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (101, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3027185', 'Ranger NCO Meeting', NULL, '2020-05-23 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (102, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2978249', 'Operation: Balkan Thunder - Chapter 5', NULL, '2020-05-24 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (103, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2993502', 'LIBERATION OPS', NULL, '2020-05-24 17:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (104, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3024022', 'Convoy Training', NULL, '2020-05-25 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (105, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3034367', 'CAS Training', NULL, '2020-05-25 22:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (106, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3023729', 'Land Navigation', NULL, '2020-05-26 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (107, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977134', 'Ranger Training', NULL, '2020-05-27 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (108, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3035881', 'TANKS AND THINGS TRAINING', NULL, '2020-05-27 00:45:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (109, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3034368', 'Air Crew Training', NULL, '2020-05-27 22:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (110, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3023063', 'PvPvE Mini-OP - Serbia vs. Croatia', NULL, '2020-05-28 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (111, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3028781', 'CLS Training', NULL, '2020-05-29 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (112, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958066', 'Basic Training', NULL, '2020-05-30 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (113, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3023809', 'BLUFOR/OPFOR Asset Training', NULL, '2020-05-30 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (114, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2978250', 'Operation: Balkan Thunder - Chapter 6', NULL, '2020-05-30 23:50:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (115, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3046980', 'AIT 1- Hosted by Kron', NULL, '2020-06-01 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (116, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3049860', 'Escape & Evasion Training', NULL, '2020-06-02 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (117, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2975274', 'Basic Training', NULL, '2020-06-03 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (118, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977133', 'Pathfinder Training', NULL, '2020-06-03 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (119, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3033648', 'Sharpshooter Qualification', NULL, '2020-06-04 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (120, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3049830', 'Pathfinder Assessment', NULL, '2020-06-04 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (121, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3042188', 'Side Op: Capture HVT', NULL, '2020-06-05 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (122, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3028743', 'Defense Operation: BLUFOR HQ', NULL, '2020-06-06 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (123, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058679', 'Ranger NCO Meeting', NULL, '2020-06-06 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (124, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2978251', 'Operation: Balkan Thunder - Chapter 7', NULL, '2020-06-06 23:50:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (125, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2994907', 'Command Meeting', NULL, '2020-06-07 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (126, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058742', 'Liberation Vietnam', NULL, '2020-06-08 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (127, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3049983', 'AIT 2 Hosted by Kron', NULL, '2020-06-08 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (128, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977135', 'MOUT Ranger Training', NULL, '2020-06-10 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (129, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3067927', 'Pilot Training', NULL, '2020-06-10 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (130, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958067', 'Basic Training', NULL, '2020-06-13 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (131, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058743', '17BCT Photo Shoot', NULL, '2020-06-13 01:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (132, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058680', 'Ranger NCO Meeting', NULL, '2020-06-13 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (133, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2978252', 'Operation: Balkan Thunder - Chapter 8 - FINALE', NULL, '2020-06-13 23:50:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (134, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058959', 'TC/IFV training:big gun go boom', NULL, '2020-06-14 20:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (135, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3042932', 'Arma 3 Racing', NULL, '2020-06-15 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (136, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058741', 'Land Navigation', NULL, '2020-06-16 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (137, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3073195', 'Pilot Training', NULL, '2020-06-16 02:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (138, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977136', 'Ranger Training', NULL, '2020-06-17 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (139, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2975277', 'Basic Training', NULL, '2020-06-17 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (140, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3068305', 'InDirect Fire Support Training.', NULL, '2020-06-18 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (141, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058740', 'Air Crew Escape & Evasion Training', NULL, '2020-06-18 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (142, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3073193', 'Helicopter Logistics Training', NULL, '2020-06-18 02:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (143, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3074048', 'Pathfinder Training', NULL, '2020-06-19 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (144, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3046190', '32nd Crew Familiarization Training', NULL, '2020-06-19 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (145, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3067093', 'Op. Balkan Thunder - Epilogue', NULL, '2020-06-20 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (146, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3073687', 'Pilot Training', NULL, '2020-06-20 18:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (147, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087016', 'Ranger NCO meeting', NULL, '2020-06-20 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (148, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3074513', 'RASP', NULL, '2020-06-21 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (149, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3075456', 'TC/IFV training', NULL, '2020-06-21 20:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (150, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3086646', 'AIT 3', NULL, '2020-06-21 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (151, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3075228', 'Convoy Training', NULL, '2020-06-22 22:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (152, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3091624', 'Marksman/Sharpshooter Qualifications', NULL, '2020-06-22 23:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (153, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3075262', 'Pathfinder Exam', NULL, '2020-06-23 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (154, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3073192', 'Pilot Exams', NULL, '2020-06-23 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (155, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977137', 'Ranger Training', NULL, '2020-06-24 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (156, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3034321', 'PvPvP event: Hostage Negotiation.', NULL, '2020-06-25 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (157, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3088653', 'Ranger Exibition', NULL, '2020-06-26 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (158, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3083791', 'Anti-Armor / Heavy Weapon Familiarzation', NULL, '2020-06-27 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (159, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958068', 'Basic Training', NULL, '2020-06-27 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (160, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058683', 'Ranger NCO Meeting', NULL, '2020-06-27 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (161, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3074514', 'Brigade Training', NULL, '2020-06-28 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (162, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3085151', 'Trouble in Terrorist Town', NULL, '2020-06-28 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (163, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3102758', 'Air Crew & Co-Pilot Training', NULL, '2020-06-29 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (164, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2975276', 'Basic Training', NULL, '2020-07-01 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (165, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3106813', 'TC/IFV Training', NULL, '2020-07-01 20:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (166, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2977138', 'Ranger Training', NULL, '2020-07-03 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (167, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3108972', 'Marksman/Sharpshooter Quals', NULL, '2020-07-03 20:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (168, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3113785', 'Basic Training', NULL, '2020-07-04 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (169, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087258', 'Brigade Ops', NULL, '2020-07-05 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (170, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2994908', 'Command Meeting', NULL, '2020-07-05 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (171, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3090353', 'FireTeam Ops: Secure Enemy Intel', NULL, '2020-07-07 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (172, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3124987', 'Fireteam Training', NULL, '2020-07-07 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (173, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3121083', 'Basic Training', NULL, '2020-07-08 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (174, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3124139', 'Ranger Squad Training', NULL, '2020-07-08 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (175, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3126500', '32nd Crew Familiarization Training', NULL, '2020-07-10 01:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (176, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2958069', 'Basic Training', NULL, '2020-07-11 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (177, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3104804', 'Ranger Training', NULL, '2020-07-11 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (178, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058685', 'Ranger NCO Meeting', NULL, '2020-07-11 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (179, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087259', 'Operation Iron Fist Part 1', NULL, '2020-07-12 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (180, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3126684', 'MECHINIZED TRAINING AND QUAL', NULL, '2020-07-14 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (181, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2975278', 'Basic Training', NULL, '2020-07-15 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (182, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3118517', 'AIT 1', NULL, '2020-07-15 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (183, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3132817', 'Support by Fire - Squad Training', NULL, '2020-07-16 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (184, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3132821', 'Pilot Training', NULL, '2020-07-16 02:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (185, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3132820', 'Fireteam Ranger Training', NULL, '2020-07-17 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (186, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3134135', 'Marksman and Sharpshooter Quals', NULL, '2020-07-17 19:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (187, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3104806', 'Ranger Training', NULL, '2020-07-18 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (188, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058686', 'Ranger NCO Meeting', NULL, '2020-07-18 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (189, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087260', 'Joint Op with CML', NULL, '2020-07-19 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (190, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3139770', 'Mission Planning', NULL, '2020-07-20 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (191, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3139762', 'Aviation Crew', NULL, '2020-07-21 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (192, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3140873', 'Fireteam Training', NULL, '2020-07-22 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (193, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3132378', 'Battle of the AJ’s PvP', NULL, '2020-07-22 02:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (194, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3139773', 'combat diver badge', NULL, '2020-07-23 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (195, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3129262', 'Basic Training', NULL, '2020-07-24 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (196, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3104807', 'Ranger Training', NULL, '2020-07-25 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (197, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3140861', 'Marksman and Sharpshooter Training', NULL, '2020-07-25 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (198, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058687', 'Ranger NCO Meeting', NULL, '2020-07-25 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (199, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087261', 'Operation Iron Fist Part 2', NULL, '2020-07-26 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (200, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3145669', 'Copilot', NULL, '2020-07-26 19:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (201, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149671', 'Pathfinder Asset Training', NULL, '2020-07-27 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (202, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3130712', 'CLS Training', NULL, '2020-07-28 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (203, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3150806', '32nd Crew Familiarization', NULL, '2020-07-28 01:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (204, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2975275', 'Basic Training', NULL, '2020-07-29 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (205, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3152194', 'Pathfinder Assessment', NULL, '2020-07-29 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (206, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3142085', 'AIT 2', NULL, '2020-07-29 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (207, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3140456', 'Operation: Capture', NULL, '2020-07-30 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (208, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3139232', 'Anti-Armor and Heavy Asset Training', NULL, '2020-07-31 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (209, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3153060', 'RTO Practical - Limited Space', NULL, '2020-07-31 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (210, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3152781', 'Sandtable Work', NULL, '2020-08-01 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (211, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3153076', '68W Training', NULL, '2020-08-01 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (212, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058690', 'Ranger NCO Meeting', NULL, '2020-08-01 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (213, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087262', 'Operation Iron Fist Part 3', NULL, '2020-08-02 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (214, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2994909', 'Command Meeting', NULL, '2020-08-02 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (215, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3155321', 'BD1A Training', NULL, '2020-08-03 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (216, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3161472', 'Air Crew Training', NULL, '2020-08-03 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (217, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3163405', 'RTO Training (Book work)', NULL, '2020-08-04 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (218, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3163408', 'Fireteam Training - Breaking Contact', NULL, '2020-08-05 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (219, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3150735', 'Persistent Server Ops: Just Liberate Tanoa', NULL, '2020-08-06 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (220, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3163404', 'Squad Level Training - Fireteam/Squad-wide Mass Ca', NULL, '2020-08-07 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (221, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3129266', 'Basic Training', NULL, '2020-08-07 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (222, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3162006', 'IFV/TC Training', NULL, '2020-08-07 01:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (223, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3169070', 'Marksman/Sharpshooter Quals', NULL, '2020-08-07 21:45:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (224, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3163442', 'Pilot training 1', NULL, '2020-08-07 22:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (225, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3104808', 'Ranger Training', NULL, '2020-08-08 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (226, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058691', 'Ranger NCO Meeting', NULL, '2020-08-08 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (227, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087264', 'Operation Iron Fist Part 4', NULL, '2020-08-09 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (228, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3166945', 'Community Roundtable', NULL, '2020-08-09 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (229, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3169555', 'pilot 2', NULL, '2020-08-09 23:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (230, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3165192', 'Co-Pilot Part 1', NULL, '2020-08-10 22:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (231, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3170480', 'Pointman Training', NULL, '2020-08-11 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (232, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3169556', 'pilot 3', NULL, '2020-08-11 22:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (233, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '2975279', 'Basic Training', NULL, '2020-08-12 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (234, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3173937', 'Ranger fire team training', NULL, '2020-08-12 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (235, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3177986', 'RTO Qualification - (Requested Time)', NULL, '2020-08-13 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (236, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3166942', 'AIT 3', NULL, '2020-08-13 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (237, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3154457', 'Side Op: Destroy Insurgent Weapons Cache', NULL, '2020-08-14 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (238, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3165202', 'Co-Pilot Part 2', NULL, '2020-08-14 22:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (239, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058692', 'Ranger NCO Meeting', NULL, '2020-08-15 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (240, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087265', 'Mid Campaign RASP', NULL, '2020-08-16 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (241, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3178444', '2IC/FTL training', NULL, '2020-08-16 19:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (242, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3176591', 'Fireteam Training', NULL, '2020-08-19 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (243, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3179555', 'PATHFINDER OP', NULL, '2020-08-19 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (244, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3172832', 'Ranger Training', NULL, '2020-08-20 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (245, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3129263', 'Basic Training', NULL, '2020-08-21 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (246, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3182590', 'Sniper School- Non Offical', NULL, '2020-08-21 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (247, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3179777', 'Train Your Aim - How to Click Heads [Fireteam Trai', NULL, '2020-08-22 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (248, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3185332', 'Air Crew Training', NULL, '2020-08-22 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (249, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058684', 'Ranger NCO Meeting', NULL, '2020-08-22 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (250, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087266', 'Operation Iron Fist Part 5', NULL, '2020-08-23 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (251, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3186005', 'Breaking Contact - Fireteam Training', NULL, '2020-08-23 19:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (252, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3188127', 'Air Crew Qual', NULL, '2020-08-23 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (253, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3170245', 'Copilot Training 1', NULL, '2020-08-25 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (254, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3188480', 'Fireteam Training - Breaking Contact/Counter Attac', NULL, '2020-08-25 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (255, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149470', 'Basic Training', NULL, '2020-08-26 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (256, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3178028', 'IFV School', NULL, '2020-08-26 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (257, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3172833', 'Ranger Training', NULL, '2020-08-27 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (258, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3170246', 'Copilot Training 2', NULL, '2020-08-27 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (259, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3191519', 'RTO Practical - By Request', NULL, '2020-08-28 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (260, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3178027', 'IFV School Test', NULL, '2020-08-28 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (261, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3170247', 'Copilot 2', NULL, '2020-08-29 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (262, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3174556', 'Counter Attack - Squad Training', NULL, '2020-08-29 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (263, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3191735', 'Persistent Server Side Ops', NULL, '2020-08-29 02:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (264, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058688', 'Ranger NCO Meeting', NULL, '2020-08-29 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (265, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087267', 'Operation Iron Fist Part 6', NULL, '2020-08-30 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (266, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3194179', 'AIR ASSAULT', NULL, '2020-09-01 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (267, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3193885', '32nd Training', NULL, '2020-09-02 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (268, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3170249', 'Pilot Training 1', NULL, '2020-09-03 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (269, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3172834', 'Ranger Training', NULL, '2020-09-03 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (270, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3183341', 'Operation Clear Sky', NULL, '2020-09-04 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (271, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3129264', 'Basic Training', NULL, '2020-09-04 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (272, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3195552', 'IDF Training & Qualification', NULL, '2020-09-04 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (273, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3170250', 'Pilot Training 2', NULL, '2020-09-05 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (274, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3200209', 'Persistent Server Side Ops', NULL, '2020-09-05 01:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (275, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3198871', 'Crew Familiarization', NULL, '2020-09-05 20:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (276, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058689', 'Ranger NCO Meeting', NULL, '2020-09-05 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (277, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087268', 'Operation Iron Fist Part 7', NULL, '2020-09-06 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (278, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3203106', 'Marksman/Sharpshooter Quals', NULL, '2020-09-06 18:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (279, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3087269', 'Command Meeting', NULL, '2020-09-06 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (280, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3197077', 'Pilot Training 3', NULL, '2020-09-06 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (281, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3197322', 'Pointman Training', NULL, '2020-09-07 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (282, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3178916', 'Side Op: Combat Patrol', NULL, '2020-09-08 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (283, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3189085', 'Anti-Armor Training', NULL, '2020-09-09 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (284, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149471', 'Basic Training', NULL, '2020-09-09 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (285, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3170251', 'CAS Training 1', NULL, '2020-09-09 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (286, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3201771', 'JTAC TEST RUN', NULL, '2020-09-10 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (287, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3198873', 'Crew Familiarization', NULL, '2020-09-10 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (288, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3204469', 'Ranger Training', NULL, '2020-09-10 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (289, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3187795', 'Train Your Aim - How to Click Heads', NULL, '2020-09-11 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (290, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3170252', 'CAS Training 2', NULL, '2020-09-11 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (291, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3172876', 'BRIGADE FTX', NULL, '2020-09-12 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (292, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3209255', 'Recruit Orientation', NULL, '2020-09-12 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (293, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058693', 'Ranger NCO Meeting', NULL, '2020-09-12 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (294, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3129980', 'Operation Iron First Part 8', NULL, '2020-09-13 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (295, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3210789', 'Command Meeting', NULL, '2020-09-13 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (296, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3207423', '2IC and FTL Training', NULL, '2020-09-14 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (297, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3210514', 'Fireteam Training', NULL, '2020-09-15 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (298, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3207515', 'Land Navigation', NULL, '2020-09-16 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (299, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3200495', '32nd Training', NULL, '2020-09-16 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (300, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3209194', 'Sharpshooter/Marksman Qualifications', NULL, '2020-09-16 22:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (301, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3197080', 'Air Crew Training', NULL, '2020-09-17 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (302, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3212571', 'Sapper Training', NULL, '2020-09-17 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (303, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3209257', 'Land Vehicle Training', NULL, '2020-09-18 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (304, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3129265', 'Basic Training', NULL, '2020-09-18 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (305, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3212671', 'RSLC and Master freefall train the trainer', NULL, '2020-09-18 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (306, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3197081', 'Air Crew Training', NULL, '2020-09-19 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (307, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3204470', 'Ranger Training', NULL, '2020-09-19 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (308, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3213323', 'Recruiter Meeting', NULL, '2020-09-19 19:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (309, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3212579', 'Escape & Evade', NULL, '2020-09-19 20:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (310, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058694', 'Ranger NCO Meeting', NULL, '2020-09-19 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (311, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3186057', 'RASP', NULL, '2020-09-20 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (312, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3212624', 'mission maker meeting', NULL, '2020-09-20 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (313, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3212570', 'Pathfinder Bookwork', NULL, '2020-09-21 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (314, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3217106', 'Sniper School', NULL, '2020-09-22 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (315, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3197082', 'Copilot 1', NULL, '2020-09-22 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (316, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3219750', '(Canceled) Fireteam Basics Training', NULL, '2020-09-22 22:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (317, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149473', 'Basic Training', NULL, '2020-09-23 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (318, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3206759', '32nd Training', NULL, '2020-09-23 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (319, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3197083', 'Copilot 2', NULL, '2020-09-24 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (320, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3212572', 'Sapper Training', NULL, '2020-09-24 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (321, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3219751', 'Fireteam Basics Training', NULL, '2020-09-24 22:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (322, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3207930', 'IFV Training', NULL, '2020-09-25 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (323, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3218510', 'Persistent Server Side Ops', NULL, '2020-09-25 03:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (324, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3197084', 'Copilot Qual', NULL, '2020-09-26 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (325, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3204471', 'Ranger Training', NULL, '2020-09-26 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (326, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3226871', 'Marksman/Sharpshooter Qualficiations', NULL, '2020-09-26 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (327, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058695', 'Ranger NCO Meeting', NULL, '2020-09-26 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (328, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3214207', 'Brigade FTX', NULL, '2020-09-27 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (329, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3223725', 'Pathfinder Assessment', NULL, '2020-09-27 21:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (330, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3217037', 'MicroDaggr, and what it can do FOR YOU!', NULL, '2020-09-28 02:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (331, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3197085', 'Pilot Training 1', NULL, '2020-09-29 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (332, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3209159', 'Side Op: Jungle Rescue', NULL, '2020-09-30 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (333, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3228696', 'LRS Quals', NULL, '2020-09-30 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (334, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3197086', 'Pilot Training 2', NULL, '2020-10-01 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (335, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3212573', 'Sapper Training', NULL, '2020-10-01 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (336, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3226281', '(Canceled) Advanced Review of Basics', NULL, '2020-10-02 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (337, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3231284', 'Pathfinder mission - Operation Hanging Garden Part', NULL, '2020-10-02 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (338, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3227946', 'Basic Training', NULL, '2020-10-02 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (339, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3221403', '32nd Training', NULL, '2020-10-02 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (340, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3197087', 'Pilot Training 3', NULL, '2020-10-03 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (341, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3204472', 'Ranger Training', NULL, '2020-10-03 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (342, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058696', 'Ranger NCO Meeting', NULL, '2020-10-03 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (343, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3228698', 'Operating Hanging Garden Part 1', NULL, '2020-10-04 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (344, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3226266', 'command meeting with ken', NULL, '2020-10-04 21:05:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (345, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3231510', 'Operation: Rescue Prisoners!', NULL, '2020-10-05 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (346, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149472', 'Basic Training', NULL, '2020-10-07 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (347, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3199782', 'Air Crew Training', NULL, '2020-10-07 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (348, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236636', 'IDF Training', NULL, '2020-10-08 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (349, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3222825', 'Rolling Breach Refinement - Fireteam Training', NULL, '2020-10-09 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (350, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3199784', 'Air Crew Qual', NULL, '2020-10-09 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (351, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3238073', 'AJ’s mission night', NULL, '2020-10-10 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (352, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058698', 'Ranger NCO Meeting', NULL, '2020-10-10 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (353, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3228699', 'Operation Hanging Garden Chapter 2', NULL, '2020-10-11 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (354, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236596', 'Pointman Training (CANCELLED)', NULL, '2020-10-12 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (355, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3238044', 'Squad-level training', NULL, '2020-10-13 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (356, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3221404', 'Copilot 1', NULL, '2020-10-13 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (357, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3242234', 'IFV Training', NULL, '2020-10-14 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (358, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3226873', 'Side Op: PvP Sabotage', NULL, '2020-10-14 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (359, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3241728', 'CLS Training (DELAYED)', NULL, '2020-10-14 23:45:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (360, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3238779', '(CANCELLED) 2IC/FTL Training (CANCELLED)', NULL, '2020-10-15 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (361, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3221405', 'Copilot 2', NULL, '2020-10-15 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (362, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236446', 'Basic Training (Canceled - no signups)', NULL, '2020-10-16 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (363, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3245293', 'Advanced Infantry Training Part 3', NULL, '2020-10-16 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (364, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3222827', '32nd Training', NULL, '2020-10-16 01:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (365, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3221406', 'Copilot Qual', NULL, '2020-10-17 00:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (366, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3250097', '(Rescheduled) Squad Level Tactics Training', NULL, '2020-10-17 01:30:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (367, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058699', 'Ranger NCO Meeting', NULL, '2020-10-17 23:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (368, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3228700', 'Operation Hanging Garden Chapter 3', NULL, '2020-10-18 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (369, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3250232', 'SQUAD GANG: LETS DO HOOD RAT SHIT', NULL, '2020-10-18 19:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (370, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3237277', 'PVP Side Op: Prisoner Rescue RENEWED', NULL, '2020-10-19 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (371, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3245751', 'Armored Core', NULL, '2020-10-20 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (372, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149475', 'Basic Training', NULL, '2020-10-21 00:00:00', '2023-06-01 04:43:37', '2023-06-01 04:43:37', NULL, NULL), - (373, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3221407', 'Flight Training', NULL, '2020-10-21 00:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (374, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3253094', 'Fireteam Training', NULL, '2020-10-22 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (375, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236670', 'IDF Training', NULL, '2020-10-22 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (376, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3260345', 'LRS Mission', NULL, '2020-10-23 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (377, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3256119', 'Plow Training', NULL, '2020-10-23 23:45:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (378, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3245294', 'Advanced Infantry Training Part 4 (Rescheduled to ', NULL, '2020-10-24 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (379, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3221413', 'Flight Training', NULL, '2020-10-24 19:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (380, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3254790', '68W Combat Medic Training', NULL, '2020-10-24 20:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (381, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058697', 'Ranger NCO Meeting', NULL, '2020-10-24 23:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (382, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3228701', 'Operation Hanging Garden Chapter 4', NULL, '2020-10-25 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (383, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3263578', 'IFV/TC Training', NULL, '2020-10-26 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (384, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3250332', 'Anti-Armor Training', NULL, '2020-10-27 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (385, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3221415', 'Escape & Evade Training', NULL, '2020-10-27 00:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (386, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3267163', 'Gossler\'s CQB Practice', NULL, '2020-10-28 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (387, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3253225', 'Pathfinder Bookwork', NULL, '2020-10-28 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (388, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3267895', 'Marksman/Sharpshooter Qualification', NULL, '2020-10-28 19:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (389, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3256164', 'RASP Preparation', NULL, '2020-10-29 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (390, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3256160', 'IFV/TC Training', NULL, '2020-10-29 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (391, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236447', 'Basic Training', NULL, '2020-10-30 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (392, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3245295', 'Advanced Infantry Training Part 1', NULL, '2020-10-30 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (393, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3222828', '32nd Training', NULL, '2020-10-30 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (394, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3263745', 'Assaulting Enemy Fortifications', NULL, '2020-10-30 23:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (395, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3271831', 'The Hills Have Eyes Side Op', NULL, '2020-10-31 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (396, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3272102', 'Orientation', NULL, '2020-10-31 22:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (397, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058700', 'Ranger NCO Meeting', NULL, '2020-10-31 23:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (398, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3256163', 'RASP', NULL, '2020-11-01 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (399, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3250233', 'Command meeting with KEN', NULL, '2020-11-01 23:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (400, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3206906', 'HALLOWEEN SPOOKY OPERATION', NULL, '2020-11-02 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (401, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3272186', 'LRS FTX', NULL, '2020-11-03 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (402, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149474', 'Basic Training', NULL, '2020-11-04 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (403, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3254416', 'Flight Training', NULL, '2020-11-05 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (404, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3245296', 'Advanced Infantry Training Part 2', NULL, '2020-11-06 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (405, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3254417', 'Air Crew Qual', NULL, '2020-11-07 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (406, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3276391', 'Pathfinder Assesment', NULL, '2020-11-07 02:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (407, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3279087', 'Crew Familiarization', NULL, '2020-11-07 20:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (408, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058702', 'Ranger NCO Meeting', NULL, '2020-11-08 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (409, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3256168', 'Operation Hanging Garden Chapter 5', NULL, '2020-11-08 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (410, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3272055', 'Side Op: Rescue Hostages', NULL, '2020-11-09 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (411, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3281469', '2 Inch Mortar - Training and Usage.', NULL, '2020-11-10 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (412, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3254418', 'Copilot 1', NULL, '2020-11-10 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (413, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3279233', 'Canceled - Squad Level Training', NULL, '2020-11-11 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (414, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3281470', 'Sniper Course', NULL, '2020-11-12 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (415, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3274032', 'Copilot 2', NULL, '2020-11-12 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (416, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3286570', 'Sharpshooter/Marksman Qualifications', NULL, '2020-11-12 23:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (417, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3286541', 'CANCELLED - Air Crew Training', NULL, '2020-11-13 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (418, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236454', 'Basic Training', NULL, '2020-11-13 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (419, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3266138', 'Ranger Training - Casualties & Chaos', NULL, '2020-11-13 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (420, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3275665', 'Pathfinder FTX Training', NULL, '2020-11-14 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (421, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3281553', '32nd Training', NULL, '2020-11-14 02:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (422, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3286569', 'Air Crew Qual', NULL, '2020-11-14 21:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (423, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058701', 'Ranger NCO Meeting', NULL, '2020-11-15 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (424, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3256169', 'Operation Hanging Garden Chapter 6', NULL, '2020-11-15 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (425, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3285443', 'Copilot Qual', NULL, '2020-11-15 20:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (426, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3281467', 'Land Navigation', NULL, '2020-11-16 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (427, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3276428', 'BRIGADE RANGE DAY WITH KEN(BRIGADE TRAINING)', NULL, '2020-11-17 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (428, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149480', 'Basic Training', NULL, '2020-11-18 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (429, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3282756', 'Pathfinder Bookwork', NULL, '2020-11-18 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (430, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3290899', 'Flight', NULL, '2020-11-18 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (431, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3286982', 'Pathfinder Assesment', NULL, '2020-11-19 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (432, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3285445', 'Flight Training', NULL, '2020-11-19 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (433, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3295306', 'Basic Trainer Meeting', NULL, '2020-11-19 23:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (434, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3281468', '(POSTPONED) IDF Training', NULL, '2020-11-20 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (435, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3297792', 'RTO Bookwork', NULL, '2020-11-21 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (436, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3281554', '32nd Training', NULL, '2020-11-21 02:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (437, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058704', 'Ranger NCO Meeting', NULL, '2020-11-22 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (438, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3295313', 'Pathfinder Start', NULL, '2020-11-22 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (439, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3285413', 'Operation Hanging Garden Chapter 7', NULL, '2020-11-22 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (440, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3297791', 'Marksman/Sharpshooter Qualifications', NULL, '2020-11-23 21:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (441, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3297764', 'IFV/TC training', NULL, '2020-11-24 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (442, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3281829', 'Side Op: Mod Testing', NULL, '2020-11-24 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (443, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3297769', 'IDF Training', NULL, '2020-11-25 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (444, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3300281', 'Reaction to Contact', NULL, '2020-11-25 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (445, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3286760', 'AJ’s PVP Prison Rescue', NULL, '2020-11-26 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (446, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3299698', 'THANKSGIVING BREAK', NULL, '2020-11-26 06:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (447, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236469', 'Basic Training', NULL, '2020-11-27 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (448, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3281555', 'CANCELLED - 32nd Training', NULL, '2020-11-28 02:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (449, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3313022', 'Head Hunter PVP', NULL, '2020-11-28 02:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (450, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3058705', 'Ranger NCO Meeting', NULL, '2020-11-29 00:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (451, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3285414', 'Operation Hanging Garden Finale', NULL, '2020-11-29 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (452, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3313866', 'CLS Training 29Nov20', NULL, '2020-11-29 20:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (453, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3272981', 'ATMOSPHERIC OPERATION: PART 2', NULL, '2020-11-30 02:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (454, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3311122', 'JTAC', NULL, '2020-12-01 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (455, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3312757', 'Anti-Armor Training', NULL, '2020-12-02 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (456, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149476', 'Basic Training', NULL, '2020-12-02 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (457, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3313731', 'Escape & Evade Training', NULL, '2020-12-04 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (458, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3289559', '32nd Training', NULL, '2020-12-05 02:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (459, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3313856', 'RASP', NULL, '2020-12-06 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (460, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3250523', 'COMMUNITY ROUNDTABLE WITH KEN', NULL, '2020-12-06 22:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (461, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3314302', 'Pathfinder Bookwork', NULL, '2020-12-08 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (462, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3314009', 'Ground Crew Familiarization', NULL, '2020-12-08 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (463, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3317834', 'Heavy Weapons Training', NULL, '2020-12-09 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (464, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3313532', 'Air Crew Training', NULL, '2020-12-09 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (465, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236467', 'Basic Training', NULL, '2020-12-11 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (466, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3314269', 'Advanced Infantry Training Part 1', NULL, '2020-12-11 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (467, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3313533', 'Air Crew Qual', NULL, '2020-12-11 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (468, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3314909', 'Kommandos Series: GORKA BOYZ', NULL, '2020-12-12 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (469, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3331196', 'Modpack Update - Switch and update for upcoming ev', NULL, '2020-12-12 15:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (470, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3329400', 'Ranger NCO Meeting', NULL, '2020-12-13 00:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (471, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3323365', 'Brigade FTX', NULL, '2020-12-13 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (472, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3323375', 'Side OP: Clear ChDKZ Camp', NULL, '2020-12-14 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (473, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3325336', 'Mechanized Badge Qualificiation', NULL, '2020-12-15 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (474, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149477', 'Basic Training', NULL, '2020-12-16 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (475, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3323366', 'Copilot Training Part 1', NULL, '2020-12-16 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (476, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3325335', 'IDF Training (Rescheduled)', NULL, '2020-12-17 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (477, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3314270', 'Advanced Infantry Training Part 2', NULL, '2020-12-18 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (478, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3323368', 'Copilot Training Part 2', NULL, '2020-12-18 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (479, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3342836', 'Basic Training', NULL, '2020-12-19 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (480, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3314964', 'Kommandos Series: GORKA BOYZ Ep 2', NULL, '2020-12-19 01:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (481, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3350120', 'Ranger NCO Meeting', NULL, '2020-12-20 00:30:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (482, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3329383', 'Operation Lightning', NULL, '2020-12-20 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (483, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3323369', 'Copilot Qual', NULL, '2020-12-20 20:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (484, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3337453', 'Race Day', NULL, '2020-12-21 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (485, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3337448', 'Land Navigation', NULL, '2020-12-22 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (486, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3350467', 'Pointman training', NULL, '2020-12-23 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (487, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3324148', 'Basic Training', NULL, '2020-12-23 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (488, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3355251', 'Secret Santa Deadline.', NULL, '2020-12-24 03:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (489, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3342960', 'Holiday Break', NULL, '2020-12-24 05:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (490, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3334530', 'No Campaign Mission', NULL, '2020-12-27 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (491, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149478', 'Basic Training', NULL, '2020-12-30 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (492, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3337454', 'Race Day', NULL, '2021-01-02 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (493, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3378210', 'Ranger NCO Meeting', NULL, '2021-01-03 00:10:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (494, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3351539', 'OP Fireworks', NULL, '2021-01-03 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (495, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3363022', 'Command Meeting', NULL, '2021-01-03 22:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (496, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3373923', 'LRS Quals', NULL, '2021-01-05 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (497, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3364568', 'Convoy Op', NULL, '2021-01-06 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (498, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3382812', '32nd Ground Asset Familiarization', NULL, '2021-01-07 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (499, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3337138', 'AIT 3', NULL, '2021-01-07 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (500, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236449', 'Basic Training', NULL, '2021-01-08 01:00:00', '2023-06-01 04:43:38', '2023-06-01 04:43:38', NULL, NULL), - (1010, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3337137', 'Pre-Campaign OPFOR Training', NULL, '2021-01-08 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1012, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3381412', 'Airborne Badge', NULL, '2021-01-09 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1013, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3384729', 'Pre-Op Preparation', NULL, '2021-01-09 20:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1014, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3387153', 'C130 Training', NULL, '2021-01-09 21:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1015, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3384157', 'Marksman/Sharpshooter Qual', NULL, '2021-01-09 22:45:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1016, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3391683', 'Ranger NCO Meeting', NULL, '2021-01-10 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1017, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3386848', 'OPERATION BLACK LION 1', NULL, '2021-01-10 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1018, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3389527', 'Halo Side Op', NULL, '2021-01-10 23:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1019, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3395013', 'AIT 4', NULL, '2021-01-12 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1020, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149479', 'Basic Training', NULL, '2021-01-13 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1021, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3396500', 'Air Crew Training', NULL, '2021-01-13 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1022, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3389158', 'RSLC/LRS Training', NULL, '2021-01-14 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1023, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3407225', 'Air Crew Qual', NULL, '2021-01-14 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1024, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3388151', 'COIN Side Op', NULL, '2021-01-15 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1025, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3396499', 'Halo Side op', NULL, '2021-01-16 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1026, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3324231', '32nd Training', NULL, '2021-01-16 02:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1027, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3407248', 'Ranger NCO Meeting', NULL, '2021-01-17 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1028, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3403650', 'Operation Black Lion 2', NULL, '2021-01-17 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1029, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3407018', 'How to Win Friends And Use an AT4', NULL, '2021-01-18 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1030, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3406988', 'Weapon Team Tactics', NULL, '2021-01-19 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1031, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3407219', 'Marksman/Sharpshooter quals', NULL, '2021-01-20 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1032, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3396502', 'Copilot Training Part 1', NULL, '2021-01-20 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1033, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3408338', 'IFV/Armor Training', NULL, '2021-01-21 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1034, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3418748', 'LRS Training', NULL, '2021-01-21 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1035, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3421715', 'LRS Mission', NULL, '2021-01-22 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1036, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236453', 'Basic Training', NULL, '2021-01-22 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1037, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3396503', 'Copilot Training Part 2', NULL, '2021-01-22 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1038, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3418925', 'Ranger Training', NULL, '2021-01-23 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1039, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3324232', '32nd Training', NULL, '2021-01-23 02:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1040, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3396504', 'Copilot Qual', NULL, '2021-01-23 20:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1041, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3424911', 'CLS Training', NULL, '2021-01-23 20:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1042, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3421916', 'Ranger NCO Meeting', NULL, '2021-01-24 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1043, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3416576', 'Operation Black Lion 3', NULL, '2021-01-24 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1044, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3426074', '32nd, Tank crew training', NULL, '2021-01-25 02:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1045, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3425913', 'Pathfinder Assesment/ LRS Training', NULL, '2021-01-26 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1046, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149482', 'Basic Training', NULL, '2021-01-27 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1047, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3417170', 'RTO Qualification', NULL, '2021-01-27 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1048, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3426083', 'Flight Training, MH-6', NULL, '2021-01-28 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1049, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3432673', 'Ranger Training', NULL, '2021-01-28 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1050, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3421439', 'Forward Observer - Test Run', NULL, '2021-01-29 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1051, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3439167', 'Land Navigation', NULL, '2021-01-30 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1052, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3324233', 'CANCELED - 32nd Training', NULL, '2021-01-30 02:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1053, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3427928', 'Flight Training, UH60', NULL, '2021-01-30 20:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1054, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3428895', '68W Medic Training', NULL, '2021-01-30 22:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1055, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3437492', 'Ranger NCO Meeting', NULL, '2021-01-31 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1056, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3430267', 'Operation Black Lion 4', NULL, '2021-01-31 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1057, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3444240', 'High Mobility FTX/Training', NULL, '2021-01-31 20:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1058, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3445029', 'Marksman-Sharpshooter Qualifications', NULL, '2021-02-02 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1059, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3445769', 'Uncommon BLUFOR Armor Practice', NULL, '2021-02-02 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1060, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3438748', 'AIT 1', NULL, '2021-02-03 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1061, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3440043', 'Direct Action - Details to be Provided at time of ', NULL, '2021-02-04 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1062, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236455', 'Basic Training', NULL, '2021-02-05 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1063, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3449466', 'Flight Training C130', NULL, '2021-02-05 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1064, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3435538', 'Enemy and Heavy Weapons Training', NULL, '2021-02-06 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1065, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3435540', 'Echo Training', NULL, '2021-02-06 02:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1066, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3440978', 'RASP', NULL, '2021-02-07 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1067, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3449144', 'Command Meeting', NULL, '2021-02-07 21:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1068, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3465880', 'Anti Armor Training', NULL, '2021-02-09 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1069, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3449468', 'Air Crew Training', NULL, '2021-02-09 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1070, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149481', 'Basic Training', NULL, '2021-02-10 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1071, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3468003', 'Communications Training', NULL, '2021-02-10 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1072, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3475332', 'Pathfinder Bookwork', NULL, '2021-02-11 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1073, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3449469', 'Air Crew Qual', NULL, '2021-02-11 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1074, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3459150', '32nd Ground Crew Familiarization', NULL, '2021-02-12 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1075, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3470998', 'JTAC Qualification *** CANCELLED***', NULL, '2021-02-12 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1076, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3435539', 'Operation Black Lion 5 Sandtable', NULL, '2021-02-13 02:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1077, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3480916', 'Ranger NCO Meeting', NULL, '2021-02-14 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1078, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3470303', 'Operation Black Lion 5', NULL, '2021-02-14 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1079, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3470991', 'S.T.A.L.K.E.R. Call of Livonia | Side Op', NULL, '2021-02-15 02:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1080, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3482159', 'Basic Training (Moved from 2-12 to 2-15)', NULL, '2021-02-16 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1081, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3449470', 'Copilot Training Part 1', NULL, '2021-02-16 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1082, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3468117', 'IDF Training', NULL, '2021-02-17 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1083, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3490040', 'Sapper School, Part 1', NULL, '2021-02-18 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1084, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3449471', 'Copilot Training Part 2', NULL, '2021-02-18 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1085, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236466', 'Basic Training', NULL, '2021-02-19 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1086, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3468131', 'CANCELLED- Forward Observer Training', NULL, '2021-02-19 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1087, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3471882', 'FTL/2IC Training', NULL, '2021-02-20 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1088, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3449473', 'Copilot Qual', NULL, '2021-02-20 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1089, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3503991', 'Jump School', NULL, '2021-02-20 21:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1090, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3490045', 'Marksman/Sharpshooter Qualifications', NULL, '2021-02-20 23:15:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1091, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3506310', 'Ranger NCO Meeting', NULL, '2021-02-21 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1092, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3470304', 'Offical Operation', NULL, '2021-02-21 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1093, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3493478', 'Direct Action - Mission 2', NULL, '2021-02-21 21:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1094, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3468125', 'CANCELLED - BD1A', NULL, '2021-02-22 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1095, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3482659', 'Pathfinder Qualification', NULL, '2021-02-23 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1096, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3467758', 'Flight Training CH47', NULL, '2021-02-23 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1097, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3499119', 'JTAC Qualification', NULL, '2021-02-24 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1098, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149483', 'Basic Training', NULL, '2021-02-24 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1099, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3467757', 'Escape & Evade Training', NULL, '2021-02-25 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1100, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3513703', '32nd Ground Crew Familiarization', NULL, '2021-02-26 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1101, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3490041', 'Sapper School, Part 2', NULL, '2021-02-26 02:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1102, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3435542', 'Echo Training', NULL, '2021-02-27 02:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1103, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3528556', 'Ranger NCO Meeting', NULL, '2021-02-28 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1104, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3470305', 'Operation Black Lion 6', NULL, '2021-02-28 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1105, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3523941', 'Operation Missing Furniture', NULL, '2021-02-28 22:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1106, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3467759', 'Air Crew Training', NULL, '2021-03-02 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1107, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3533425', 'IFV Training', NULL, '2021-03-03 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1108, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3533296', 'Pathfinder Bookwork', NULL, '2021-03-03 02:25:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1109, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3490042', 'Sapper School, part 3', NULL, '2021-03-04 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1110, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236458', 'Basic Training', NULL, '2021-03-05 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1111, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3538866', 'Air Crew Qual', NULL, '2021-03-05 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1112, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3435543', 'Echo Training', NULL, '2021-03-06 02:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1113, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3533298', 'Pathfinder Qualifications', NULL, '2021-03-06 20:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1114, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3546917', 'NCO Meeting that SOMEONE keeps forgetting', NULL, '2021-03-07 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1115, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3517815', 'Operation Black Lion 7', NULL, '2021-03-07 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1116, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3544466', 'Command Meeting', NULL, '2021-03-07 21:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1117, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3533850', 'Operation Crimson Sky', NULL, '2021-03-08 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1118, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3546990', 'Basic Training', NULL, '2021-03-08 14:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1119, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3533853', 'Fireteam Training', NULL, '2021-03-09 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1120, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3467761', 'Copilot Training Part 1', NULL, '2021-03-09 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1121, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149485', 'Basic Training', NULL, '2021-03-10 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1122, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3533303', 'Master FreeFall and RSLC', NULL, '2021-03-10 02:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1123, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3541045', 'Air Assault School', NULL, '2021-03-10 23:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1124, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547700', 'LRS Mission', NULL, '2021-03-11 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1125, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3467762', 'Copilot Training Part 2', NULL, '2021-03-11 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1126, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547158', '32nd Vehicle Crew Familiarization', NULL, '2021-03-12 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1127, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3553405', 'Ranger FTXs', NULL, '2021-03-12 02:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1128, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3549257', 'Joint Training', NULL, '2021-03-12 23:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1129, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3548818', 'Command New Mod Pack Test', NULL, '2021-03-13 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1130, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3467764', 'Copilot Qual', NULL, '2021-03-13 01:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1131, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3566500', 'Orientation', NULL, '2021-03-13 22:30:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1132, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3561995', 'Marksmanship Quals', NULL, '2021-03-13 23:15:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1133, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547129', 'Ranger NCO Meeting', NULL, '2021-03-14 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1134, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3517816', 'Operation Black Lion FINALE', NULL, '2021-03-14 01:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1135, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3565907', 'IDF Training', NULL, '2021-03-16 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1136, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3533305', 'Sniper School', NULL, '2021-03-16 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1137, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3553333', 'Teaching Ranger NCOs stuff', NULL, '2021-03-16 22:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1138, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3553729', 'Basic Training', NULL, '2021-03-17 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1139, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3533307', 'Anti Armor Training', NULL, '2021-03-18 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1140, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3567535', 'RTO bookwork', NULL, '2021-03-18 21:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1141, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3577180', 'Air Crew Training', NULL, '2021-03-19 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1142, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236460', 'Basic Training', NULL, '2021-03-19 00:00:00', '2023-06-01 04:44:28', '2023-06-01 04:44:28', NULL, NULL), - (1143, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3567536', 'RTO Qualifications', NULL, '2021-03-19 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1144, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3577181', 'Air Crew Qual', NULL, '2021-03-20 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1145, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547130', 'Ranger NCO Meeting', NULL, '2021-03-20 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1146, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3539927', 'RASP', NULL, '2021-03-21 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1147, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3536411', 'MISSION MAKER POW WOW', NULL, '2021-03-21 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1148, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3536656', 'Operation Caldera', NULL, '2021-03-21 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1149, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3548806', 'NO SCHEDULED EVENTS AFTER - SERVER UPDATE', NULL, '2021-03-22 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1150, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3548803', 'Server Modpack Refresh - No Missions', NULL, '2021-03-22 05:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1151, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149486', 'Basic Training', NULL, '2021-03-24 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1152, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3559954', 'Mass Cas Training', NULL, '2021-03-24 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1153, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3571867', 'No Training Day', NULL, '2021-03-24 04:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1154, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3587850', 'Communications Training', NULL, '2021-03-26 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1155, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3555564', 'Basic Training', NULL, '2021-03-26 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1156, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3534717', 'Mechanized Badge Qualification', NULL, '2021-03-27 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1157, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3626844', 'Ranger NCO Meeting', NULL, '2021-03-27 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1158, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3539928', 'BN FTX', NULL, '2021-03-28 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1159, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3581895', '17th Round Table', NULL, '2021-03-28 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1160, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3619523', 'The Iceberg/17th Photo shoot', NULL, '2021-03-28 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1161, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3567537', 'Heavy Weapons Training', NULL, '2021-03-29 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1162, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3572241', 'Forward Observer', NULL, '2021-03-30 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1163, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3604056', 'Copilot Training Part 1', NULL, '2021-03-31 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1164, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3643450', 'Teaching Ranger NCOs stuff', NULL, '2021-03-31 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1165, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3575725', 'Basic Training', NULL, '2021-03-31 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1166, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3604146', 'Ranger Training', NULL, '2021-03-31 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1167, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3581429', 'IFV Training', NULL, '2021-04-01 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1168, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236464', 'Basic Training', NULL, '2021-04-02 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1169, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3604061', 'Copilot Training Part 2', NULL, '2021-04-02 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1170, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3588075', 'Combat Diver School', NULL, '2021-04-02 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1171, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3618353', 'Pathfinder Bookwork', NULL, '2021-04-02 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1172, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3604063', 'Copilot Qual', NULL, '2021-04-03 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1173, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3646347', 'Fire Team Training - get a taste of your new light', NULL, '2021-04-03 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1174, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3534718', 'Echo Training - 60mm Mortar', NULL, '2021-04-03 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1175, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3643622', 'Pathfinder Qualifications', NULL, '2021-04-03 19:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1176, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547137', 'Ranger NCO Meeting', NULL, '2021-04-03 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1177, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3539916', 'Operation Kaskara Episode 1', NULL, '2021-04-04 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1178, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547168', 'RESCHEDULED TO Mar, 28TH - 17TH ROUND TABLE', NULL, '2021-04-04 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1179, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3536632', '[Cancelled] Operation Hanging Garden, Prelude', NULL, '2021-04-04 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1180, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3649179', 'Forward Observer Qualification', NULL, '2021-04-06 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1181, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3675473', 'The final shoot', NULL, '2021-04-06 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1182, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3679349', 'Ranger FTX’s', NULL, '2021-04-06 22:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1183, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3587852', 'RTO Bookwork', NULL, '2021-04-07 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1184, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149484', 'Basic Training', NULL, '2021-04-07 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1185, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3674262', 'Up and coming NCO training', NULL, '2021-04-07 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1186, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3676806', 'RRC Operation', NULL, '2021-04-08 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1187, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3587853', 'RTO Qualification', NULL, '2021-04-08 00:20:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1188, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3685353', 'Ground Vehicle Crew Familiarization', NULL, '2021-04-08 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1189, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3635405', 'Ranger Training', NULL, '2021-04-09 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1190, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3677701', 'Ranger Training - Raids', NULL, '2021-04-09 22:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1191, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3534719', 'Flight Training - BlackHawk Raids', NULL, '2021-04-10 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1192, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547135', 'Ranger NCO Meeting', NULL, '2021-04-10 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1193, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3539917', 'Operation Kaskara Episode 2', NULL, '2021-04-11 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1194, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3578388', 'Operation Champion', NULL, '2021-04-12 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1195, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3551564', 'FTL/2IC Training', NULL, '2021-04-13 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1196, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3689769', 'Marksmanship Quals', NULL, '2021-04-14 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1197, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3689962', 'Flight Training - MH-6', NULL, '2021-04-14 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1198, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3668073', 'AIT 1 Training', NULL, '2021-04-15 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1199, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236465', 'Basic Training', NULL, '2021-04-16 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1200, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3699422', 'Alpha/Echo Coop and CQB FTX', NULL, '2021-04-16 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1201, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3534720', 'Echo Training', NULL, '2021-04-17 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1202, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3701861', '[Cancelled]Pathfinder Bookwork', NULL, '2021-04-17 19:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1203, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547132', 'Ranger NCO Meeting', NULL, '2021-04-17 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1204, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3539918', 'Operation Kaskara Episode 3', NULL, '2021-04-18 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1205, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3582734', 'Alien Vs Predator Op - Facility Omega', NULL, '2021-04-18 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1206, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3561928', '[CANCELLED] Operation Battle Axe', NULL, '2021-04-18 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1207, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3719118', 'Pathfinder Bookwork', NULL, '2021-04-19 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1208, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3713700', 'Aircrew Training', NULL, '2021-04-20 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1209, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3684754', 'IDF Training', NULL, '2021-04-20 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1210, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149488', 'Basic Training', NULL, '2021-04-21 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1211, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3691364', 'Echo Ground Crew Familiarization', NULL, '2021-04-21 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1212, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3708109', 'SCP OP test', NULL, '2021-04-22 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1213, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3730212', 'Gillette\'s Weapons squad Training', NULL, '2021-04-22 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1214, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3731062', 'Basic Training', NULL, '2021-04-22 18:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1215, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3720508', 'Alpha Field Day', NULL, '2021-04-22 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1216, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3701863', '[Rescheduled to 4-22]Pathfinder Qualifications', NULL, '2021-04-22 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1217, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3713701', 'Aircrew Qual', NULL, '2021-04-23 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1218, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3674268', '[Rescheduled] Mech Battle PvP', NULL, '2021-04-23 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1219, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3701864', '[Cancelled]Pathfinder Quals', NULL, '2021-04-23 19:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1220, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3720507', 'Alpha Training', NULL, '2021-04-23 22:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1221, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3680615', '[CANCELLED] Echo Training', NULL, '2021-04-24 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1222, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547138', 'Ranger NCO Meeting', NULL, '2021-04-24 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1223, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3539919', 'Operation Kaskara Episode 4', NULL, '2021-04-25 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1224, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3583262', 'SCP: Operation Black Skys', NULL, '2021-04-25 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1225, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3719122', 'Pathfinder Qualifications', NULL, '2021-04-26 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1226, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3704795', 'Land Navigation Training', NULL, '2021-04-27 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1227, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3724124', 'Copilot Training Part 1', NULL, '2021-04-27 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1228, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3733455', '[Cancelled] Convoy Training', NULL, '2021-04-27 23:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1229, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3729399', 'Basic Training', NULL, '2021-04-28 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1230, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3724127', 'Copilot Training Part 2', NULL, '2021-04-28 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1231, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3668075', 'AIT 3 Training', NULL, '2021-04-29 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1232, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3726420', 'Master Free Fall + RSLC', NULL, '2021-04-30 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1233, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236451', 'Basic Training', NULL, '2021-04-30 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1234, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3724559', 'Copilot Qual', NULL, '2021-04-30 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1235, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3751550', '[TEST] Operation Black Nest', NULL, '2021-04-30 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1236, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3726421', 'Advanced UAV', NULL, '2021-05-01 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1237, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3680617', '[Cancelled] Echo Training', NULL, '2021-05-01 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1238, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3746248', 'RASP', NULL, '2021-05-02 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1239, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3677402', 'ALIVE BOOKWORK WIT KEN', NULL, '2021-05-02 20:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1240, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3722476', '[Not Official] Operation Black Nest', NULL, '2021-05-02 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1241, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3767471', 'Command Meeting', NULL, '2021-05-03 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1242, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3757118', 'Anti Armor Training', NULL, '2021-05-04 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1243, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3761843', 'BD1A Training', NULL, '2021-05-04 23:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1244, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149487', '[Cancelled] Basic Training', NULL, '2021-05-05 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1245, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3668076', 'AIT 4 Training', NULL, '2021-05-06 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1246, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3768775', '[Rescheduled] Side Op: Patrol', NULL, '2021-05-07 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1247, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3760130', 'Movement Techniques and Danger Areas', NULL, '2021-05-07 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1248, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3680616', 'Echo Training', NULL, '2021-05-08 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1249, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3781975', 'Emplacing and executing ambushes.', NULL, '2021-05-08 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1250, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3789923', 'CLS Training', NULL, '2021-05-08 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1251, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547140', 'Ranger NCO Meeting', NULL, '2021-05-08 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1252, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3539920', 'Operation Kaskara Episode 5', NULL, '2021-05-09 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1253, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3661369', 'SCP OP Burned Skies', NULL, '2021-05-09 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1254, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3757175', 'Pathfinder Qualifications', NULL, '2021-05-10 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1255, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3792735', 'Patrol Op', NULL, '2021-05-11 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1256, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3780558', 'Echo Ground Crew Familiarization', NULL, '2021-05-11 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1257, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3780093', 'Jump Master School', NULL, '2021-05-12 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1258, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3797767', 'Radio\'s and the 3 D\'s', NULL, '2021-05-12 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1259, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3721383', 'AIT 2 Training', NULL, '2021-05-13 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1260, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3803310', 'Basic Training', NULL, '2021-05-13 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1261, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3800908', 'Air Crew Training', NULL, '2021-05-13 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1262, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3807154', 'Air Crew Qual', NULL, '2021-05-13 02:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1263, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3800910', 'Pilot Qualification', NULL, '2021-05-14 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1264, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236456', 'Basic Training', NULL, '2021-05-14 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1265, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3716035', 'Tyrone Event- No other trainings', NULL, '2021-05-14 13:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1266, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3716041', 'OP Razorback', NULL, '2021-05-15 00:15:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1267, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3806392', 'Basic Training', NULL, '2021-05-15 19:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1268, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3810231', 'Vehicle Crew Familiarization', NULL, '2021-05-15 22:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1269, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547146', 'Ranger NCO Meeting', NULL, '2021-05-15 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1270, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3539921', 'Operation Kaskara Episode 6', NULL, '2021-05-16 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1271, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3779779', 'Sniper School', NULL, '2021-05-17 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1272, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3808029', 'Copilot Training Part 1(rescheduled)', NULL, '2021-05-17 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1273, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3793862', 'Abrams Training', NULL, '2021-05-18 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1274, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3808030', 'Copilot Training Part 2(rescheduled)', NULL, '2021-05-18 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1275, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149490', 'Basic Training', NULL, '2021-05-19 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1276, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3808031', '(CANCELED) Copilot Qual', NULL, '2021-05-19 22:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1277, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3804665', 'Echo Ground Crew Familiarization', NULL, '2021-05-20 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1278, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3793156', 'Chronicles of Jerome: A SOG story', NULL, '2021-05-20 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1279, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3817706', 'Basic Training', NULL, '2021-05-20 20:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1280, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3796262', '[Canceled] IDF Training', NULL, '2021-05-21 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1281, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3826524', 'RRC Operation', NULL, '2021-05-21 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1282, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3807358', 'Pointman Training', NULL, '2021-05-21 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1283, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3832498', 'Pilot Qualification Exam', NULL, '2021-05-21 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1284, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3807964', '(CANCELED) Escape And Evade Training', NULL, '2021-05-21 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1285, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3680618', 'Echo Training', NULL, '2021-05-22 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1286, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547150', 'Ranger NCO Meeting', NULL, '2021-05-22 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1287, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3539922', 'Operation Kaskara Episode 7', NULL, '2021-05-23 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1288, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3661372', 'SCP OP Bird of Hermes', NULL, '2021-05-23 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1289, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3804775', 'Mechanized Qual Training', NULL, '2021-05-25 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1290, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3796195', 'Mechanized Badge Qualification', NULL, '2021-05-26 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1291, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3793538', 'The Chronicles of Jerome: A SOG Story', NULL, '2021-05-27 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1292, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236452', 'Basic Training', NULL, '2021-05-28 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1293, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3963335', 'Basic', NULL, '2021-05-28 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1294, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3818136', 'Airborne Training', NULL, '2021-05-29 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1295, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547155', 'Ranger NCO Meeting', NULL, '2021-05-29 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1296, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3539923', 'Operation Kaskara FInale', NULL, '2021-05-30 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1297, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3785818', '[Not Official] Operation Medicus Contritum (Pt. 1)', NULL, '2021-05-30 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1298, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3833017', 'Advanced UAV', NULL, '2021-05-31 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1299, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3976202', 'Basic Training', NULL, '2021-05-31 18:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1300, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3963965', 'Air Crew Training', NULL, '2021-06-01 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1301, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3833015', 'Pathfinder Bookwork', NULL, '2021-06-02 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1302, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149489', 'Basic Training', NULL, '2021-06-02 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1303, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3793537', 'The Chronicles of Jerome: A SOG Story', NULL, '2021-06-03 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1304, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3976648', 'Copilot Training Part 1', NULL, '2021-06-03 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1305, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3974112', 'AIT 1 - Advanced Infantry Training part 1', NULL, '2021-06-04 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1306, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3992492', '[Cancelled] Basic Training', NULL, '2021-06-04 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1307, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3976649', 'Copilot Training Part 2', NULL, '2021-06-04 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1308, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3976650', 'Copilot Qual', NULL, '2021-06-05 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1309, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3975311', 'RASP', NULL, '2021-06-06 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1310, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3969986', 'Command Meeting', NULL, '2021-06-06 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1311, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3661374', '[RESCHEDULED] SCP OP', NULL, '2021-06-06 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1312, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3992486', '17th Server Coming Down for Modlist Change', NULL, '2021-06-07 01:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1313, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3990438', 'IDF Training', NULL, '2021-06-08 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1314, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4002121', 'Pathfinder Qualifications', NULL, '2021-06-08 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1315, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4009741', 'Accelerated Basic', NULL, '2021-06-08 17:10:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1316, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4007283', 'IDF Part 2', NULL, '2021-06-08 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1317, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3975283', 'RTO Bookwork and Qualification', NULL, '2021-06-09 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1318, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3793539', 'The Chronicles of Jerome: A SOG Story', NULL, '2021-06-10 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1319, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3994992', 'Joint Training - Alpha and Echo', NULL, '2021-06-10 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1320, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236450', 'Basic Training', NULL, '2021-06-11 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1321, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3990439', 'FO-Forward Observer Training', NULL, '2021-06-11 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1322, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4011909', 'RTO Qualification', NULL, '2021-06-11 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1323, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3680624', 'Echo Training', NULL, '2021-06-12 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1324, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547134', 'Ranger NCO Meeting', NULL, '2021-06-12 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1325, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3975312', 'BN FTX', NULL, '2021-06-13 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1326, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3804777', 'SCP OP Creeping Hate', NULL, '2021-06-13 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1327, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4007434', 'Heavy Weapons School', NULL, '2021-06-16 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1328, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149491', 'Basic Training', NULL, '2021-06-16 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1329, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015993', 'Side Ops Assignments', NULL, '2021-06-16 04:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1330, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3975310', 'RRC Operation', NULL, '2021-06-17 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1331, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4140575', 'Air Crew Training', NULL, '2021-06-17 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1332, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3992545', 'AIT 2 - Advanced Infrantry Training phase 2', NULL, '2021-06-18 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1333, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4022012', 'Stress Test Firefight Mission', NULL, '2021-06-18 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1334, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3680622', 'Echo Training', NULL, '2021-06-19 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1335, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4138297', 'Airborne Badge - Jump Training', NULL, '2021-06-19 22:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1336, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4205383', 'CLS Training', NULL, '2021-06-19 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1337, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547148', 'Ranger NCO Meeting', NULL, '2021-06-19 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1338, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3974109', 'Operation Broken Crown Pt. 1', NULL, '2021-06-20 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1339, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3661377', '[Resheduled] SCP Op Meat Grinder', NULL, '2021-06-20 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1340, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4143331', 'marksman/sharpshooter qualifactions', NULL, '2021-06-21 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1341, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4020424', 'JTAC Training', NULL, '2021-06-22 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1342, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4205662', 'Pathfinder Qualifications', NULL, '2021-06-22 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1343, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4209121', 'Armor vs Armor Training', NULL, '2021-06-23 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1344, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4139926', 'Fire Team Training - Learn how to be a good firete', NULL, '2021-06-23 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1345, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4014338', 'Op. Valravn - An Atmospheric Op Series', NULL, '2021-06-24 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1346, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236448', 'Basic Training', NULL, '2021-06-25 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1347, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4139815', 'AIT 3 - MOUT Training - Advanced Infantry Training', NULL, '2021-06-25 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1348, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4207630', 'Master FreeFall and RSLC', NULL, '2021-06-25 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1349, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3680623', '[CANCELLED] Echo Training', NULL, '2021-06-26 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1350, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4226312', 'Vehicle Crew Familiarization', NULL, '2021-06-26 22:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1351, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547147', 'Battalion NCO Meetings', NULL, '2021-06-26 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1352, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4021848', 'Operation Broken Crown Pt. 2', NULL, '2021-06-27 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1353, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4222371', 'Pathfinder Qualifications', NULL, '2021-06-27 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1354, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4222370', 'Anti Armor School', NULL, '2021-06-28 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1355, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4147806', 'Land Nav', NULL, '2021-06-28 23:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1356, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4232132', 'RRC Mission', NULL, '2021-06-29 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1357, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4227492', 'Air Crew Training', NULL, '2021-06-29 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1358, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4231145', 'Mechanized Training', NULL, '2021-06-29 23:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1359, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149493', 'Basic Training', NULL, '2021-06-30 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1360, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4228666', 'JTAC Qualification', NULL, '2021-06-30 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1361, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015717', 'PLACEHOLDER Official Mini Operation', NULL, '2021-07-01 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1362, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4136744', 'OP Dervish - Wednesday Mini Op', NULL, '2021-07-01 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1363, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4236746', 'Marksmanship and Sharpshooter Qualification', NULL, '2021-07-01 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1364, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4139816', 'AIT 4 CQB - Advanced Infantry Training', NULL, '2021-07-02 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1365, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4229417', 'Basic Training', NULL, '2021-07-03 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1366, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3680625', 'Echo Training- Mechanized Support', NULL, '2021-07-03 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1367, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547151', 'Battalion NCO Meetings', NULL, '2021-07-03 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1368, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4136937', 'Operation Broken Crown Pt. 3', NULL, '2021-07-04 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1369, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4254036', '(Test) Crying Skies', NULL, '2021-07-05 19:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1370, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4239259', '[Rescudle] Brid Nest', NULL, '2021-07-06 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1371, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015718', 'PLACEHOLDER Official Mini Operation', NULL, '2021-07-08 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1372, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4250163', 'Operation Crying Skies', NULL, '2021-07-08 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1373, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4229418', 'Basic Training', NULL, '2021-07-09 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1374, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236457', '[Canceled for new Schedule] Basic Training', NULL, '2021-07-09 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1375, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3680626', 'Echo Training', NULL, '2021-07-10 01:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1376, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4258187', 'Co-Pilot Training Part 1', NULL, '2021-07-10 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1377, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547136', 'Battalion NCO Meetings', NULL, '2021-07-10 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1378, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4136938', 'Operation Broken Crown Pt. 4', NULL, '2021-07-11 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1379, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4253431', 'Command Meeting', NULL, '2021-07-11 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1380, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4241594', 'Co-Pilot Training Part 1', NULL, '2021-07-12 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1381, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4229424', 'Basic Training', NULL, '2021-07-12 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1382, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4274486', 'Air Crew Training', NULL, '2021-07-13 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1383, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4271104', 'Echo Ground Familiarization', NULL, '2021-07-13 23:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1384, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4264465', 'Fireteam Radio comms and usage', NULL, '2021-07-14 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1385, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3149492', '[Canceled for new Schedule] Basic Training', NULL, '2021-07-14 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1386, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4273765', 'Pathfinder Bookwork', NULL, '2021-07-14 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1387, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4225444', 'Operation Haven', NULL, '2021-07-15 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1388, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015719', 'PLACEHOLDER Official Mini Operation', NULL, '2021-07-15 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1389, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4257613', '[Rescheduled] IFV/Armor Training', NULL, '2021-07-16 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1390, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4274481', '68 Whiskey - Walk Ins Welcome', NULL, '2021-07-16 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1391, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4278368', 'IFV/Armor Training', NULL, '2021-07-17 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1392, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4258189', 'Co-Pilot Training Part 2', NULL, '2021-07-17 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1393, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547149', 'Battalion NCO Meetings', NULL, '2021-07-17 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1394, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4275957', 'RASP', NULL, '2021-07-18 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1395, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4273767', 'Pathfinder Qualifications', NULL, '2021-07-20 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1396, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4273770', 'Master FreeFall and RSLC', NULL, '2021-07-21 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1397, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4229423', 'Basic Training', NULL, '2021-07-21 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1398, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015994', 'Side Ops Assignments', NULL, '2021-07-21 04:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1399, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015720', 'PLACEHOLDER Official Mini Operation', NULL, '2021-07-22 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1400, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5454701', 'Operation Firefight', NULL, '2021-07-22 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1401, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4136947', '[CANCELED]Operation Bleeding Sunset', NULL, '2021-07-22 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1402, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3236462', '[Canceled for new Schedule] Basic Training', NULL, '2021-07-23 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1403, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4273772', 'Sniper School', NULL, '2021-07-23 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1404, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4297137', 'Fixed Wing CAS Qualification', NULL, '2021-07-24 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1405, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4292773', 'Basic Training', NULL, '2021-07-24 15:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1406, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4280811', 'Co-Pilot Qualification', NULL, '2021-07-24 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1407, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547154', 'Battalion NCO Meetings', NULL, '2021-07-24 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1408, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4240316', 'Operation Broken Crown Pt. 5', NULL, '2021-07-25 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1409, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4277819', 'SCP Op Meatgrinder - SCP Finale', NULL, '2021-07-25 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1410, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4305951', 'Pathfinder Qualifications', NULL, '2021-07-26 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1411, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4309464', 'Fixed Wing CAS Qualification', NULL, '2021-07-26 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1412, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4229420', 'Basic Training', NULL, '2021-07-27 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1413, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4306597', 'Pathfinder Qualifications', NULL, '2021-07-27 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1414, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4306596', 'Sniper School', NULL, '2021-07-28 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1415, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4301535', 'Wally Mission Asset Testing', NULL, '2021-07-28 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1416, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015721', 'PLACEHOLDER Official Mini Operation', NULL, '2021-07-29 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1417, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4301723', 'Operation Dragon Blood', NULL, '2021-07-29 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1418, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4297216', 'IDF Training Part 1', NULL, '2021-07-30 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1419, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4309049', 'RRC Op', NULL, '2021-07-31 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1420, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4297218', 'IDF Training Part 2 (Started Early - completed)', NULL, '2021-07-31 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1421, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4324152', 'Impromptu Basic', NULL, '2021-07-31 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1422, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4310297', '[CANCELED] Master FreeFall + RSLC', NULL, '2021-07-31 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1423, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547153', 'Battalion NCO Meetings', NULL, '2021-07-31 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1424, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4240317', 'Operation Broken Crown Pt. 6', NULL, '2021-08-01 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1425, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4308354', 'Aircrew Training & Qualification', NULL, '2021-08-01 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1426, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4314835', 'AIT 1 - Advanced Infantry Training Part 1', NULL, '2021-08-03 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1427, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4331968', 'Aircrew Training & Qual', NULL, '2021-08-04 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1428, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4302093', 'Operation Dragon Blood 2', NULL, '2021-08-05 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1429, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015729', 'PLACEHOLDER Official Mini Operation', NULL, '2021-08-05 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1430, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4318286', 'Alpha and Echo Joint Training', NULL, '2021-08-05 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1431, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4297223', 'FO Training and Qual', NULL, '2021-08-06 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1432, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4338834', 'MasterFreeFall and RSLC', NULL, '2021-08-06 23:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1433, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4315713', 'Basic Training', NULL, '2021-08-07 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1434, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4344515', 'Marksman and Sharpshooter Quals', NULL, '2021-08-07 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1435, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4310979', 'Copilot Training Part 1', NULL, '2021-08-07 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1436, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547152', 'Battalion NCO Meetings', NULL, '2021-08-07 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1437, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4240318', 'Operation Broken Crown Pt. 7', NULL, '2021-08-08 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1438, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4310980', 'Copilot Training Part 2', NULL, '2021-08-08 21:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1439, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4300787', 'Operation Mortuum Semper', NULL, '2021-08-08 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1440, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4331588', 'AIT 2- Advanced Infantry Training 2', NULL, '2021-08-10 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1441, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4331303', 'Echo Vehicle Crew Orientation', NULL, '2021-08-10 23:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1442, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4342996', 'Marksman & Sharpshooter Qual', NULL, '2021-08-11 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1443, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4304151', 'Operation Korund', NULL, '2021-08-12 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1444, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015725', 'Official Mini Operation', NULL, '2021-08-12 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1445, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4344519', 'RTO Bookwork', NULL, '2021-08-12 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1446, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4315714', 'Basic Training', NULL, '2021-08-13 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1447, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4346305', 'RRC Operation', NULL, '2021-08-13 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1448, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4345519', 'Weapons, Tactics, and Platoon Leading', NULL, '2021-08-13 22:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1449, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4356699', 'Rotary Flight Qual', NULL, '2021-08-14 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1450, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4356798', 'RTO Qualification', NULL, '2021-08-14 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1451, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4356505', 'Basic Training', NULL, '2021-08-14 00:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1452, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547144', 'Battalion NCO Meetings', NULL, '2021-08-14 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1453, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4240320', 'Operation Broken Crown Finale', NULL, '2021-08-15 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1454, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4210314', '17th Round Table', NULL, '2021-08-15 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1455, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015995', 'Side Ops Assignments', NULL, '2021-08-16 04:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1456, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4367341', 'Basic Training', NULL, '2021-08-16 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1457, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4297210', 'Operation Testing', NULL, '2021-08-17 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1458, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4353159', 'AIT 3 - Advanced Infantry Training 3 - MOUT', NULL, '2021-08-17 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1459, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4310981', 'Copilot Qualification', NULL, '2021-08-17 22:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1460, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4315726', 'Basic Training (Canceled lack of attendance)', NULL, '2021-08-18 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1461, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4297211', 'Operation Hatchet', NULL, '2021-08-19 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1462, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015723', 'Official Mini Operation', NULL, '2021-08-19 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1463, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4356164', 'Escape and Evade Trainging', NULL, '2021-08-19 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1464, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4373933', 'General Flight Training', NULL, '2021-08-19 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1465, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4353703', 'IFV Training', NULL, '2021-08-19 23:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1466, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4378479', 'Marksman & Sharpshooter Qual', NULL, '2021-08-20 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1467, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4358025', 'Battle Drill Practice', NULL, '2021-08-21 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1468, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4390051', 'Basic Training - Requested Alternate', NULL, '2021-08-21 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1469, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4380358', 'IFV Qualification', NULL, '2021-08-21 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1470, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4356162', 'Fixed Wing Logistics Qual', NULL, '2021-08-21 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1471, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4391748', 'CLS, 68W Training', NULL, '2021-08-21 21:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1472, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4379085', 'Unit Lead Meeting', NULL, '2021-08-21 22:30:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1473, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4378509', 'Marksman & Sharpshooter Qual', NULL, '2021-08-21 23:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1474, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4366186', 'RASP', NULL, '2021-08-22 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1475, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4301664', 'MISSION MAKER ROUND UP', NULL, '2021-08-22 20:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1476, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4394209', 'Campaign Map Testing', NULL, '2021-08-23 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1477, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4391258', 'CANCELED - Rotary Logistics Flight Qual', NULL, '2021-08-24 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1478, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4315730', 'Basic Training', NULL, '2021-08-24 00:00:00', '2023-06-01 04:44:29', '2023-06-01 04:44:29', NULL, NULL), - (1479, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4353160', 'AIT 4 - Advanced Infantry Training 4 - CQB', NULL, '2021-08-24 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1480, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015722', 'Official Mini Operation', NULL, '2021-08-26 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1481, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4387305', 'IDF Training (Mortars and Arty)', NULL, '2021-08-27 23:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1482, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4402823', 'Ranger Training', NULL, '2021-08-28 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1483, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4389739', 'Copilot Qualification', NULL, '2021-08-28 20:30:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1484, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547145', 'Battalion NCO Meetings', NULL, '2021-08-28 23:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1485, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4366187', 'Battalion Training', NULL, '2021-08-29 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1486, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4315731', 'Basic Training', NULL, '2021-08-30 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1487, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4424932', 'Marksman/Sharpshooter', NULL, '2021-08-31 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1488, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4421150', 'RRC Operation', NULL, '2021-09-01 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1489, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4402634', 'Operation Flapjack', NULL, '2021-09-02 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1490, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015724', 'Official Mini Operation', NULL, '2021-09-02 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1491, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4424456', 'Copilot Pt2 + Qualification', NULL, '2021-09-03 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1492, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4424687', '[RESCHEDULED] Land Navigation', NULL, '2021-09-04 00:30:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1493, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547143', 'Battalion NCO Meetings', NULL, '2021-09-04 23:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1494, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4420735', 'Operation Shattered Hope Part 1', NULL, '2021-09-05 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1495, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4448883', 'Training Meeting to work out joint logistics.', NULL, '2021-09-06 20:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1496, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4439233', 'Echo Ground Crew Familiarization', NULL, '2021-09-06 23:30:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1497, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4438802', 'Basic Training', NULL, '2021-09-07 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1498, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4441822', 'Land Navigation', NULL, '2021-09-07 00:30:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1499, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4438817', '(Cancelled) IDF Training and Qual (Mortars and Art', NULL, '2021-09-08 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1500, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015726', 'PLACEHOLDER Official Mini Operation', NULL, '2021-09-09 00:00:00', '2023-06-01 04:44:30', '2023-06-01 04:44:30', NULL, NULL), - (1514, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4356801', 'Operation Arrow', NULL, '2021-09-09 00:30:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1515, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4441271', 'Combat Diver School', NULL, '2021-09-10 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1516, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4414282', 'FTL/2IC Training', NULL, '2021-09-10 21:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1517, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4462044', 'Pilot Qualification', NULL, '2021-09-11 00:30:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1518, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '3547142', 'Battalion NCO Meetings', NULL, '2021-09-11 23:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1519, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4420738', 'Operation Shattered Hope Part 2', NULL, '2021-09-12 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1520, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4461883', 'JTAC bookwork', NULL, '2021-09-13 22:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1521, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4451787', 'Jump School ! - Come get those wings', NULL, '2021-09-14 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1522, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4462052', 'Pathfinder Bookwork', NULL, '2021-09-15 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1523, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4438804', 'Basic Training', NULL, '2021-09-15 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1524, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4458628', 'Operation: Poseidon', NULL, '2021-09-16 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1525, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015730', 'PLACEHOLDER Official Mini Operation', NULL, '2021-09-16 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1526, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015996', 'Side Ops Assignments', NULL, '2021-09-16 04:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1527, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4450515', 'AIT 1 - Advanced Infantry Training', NULL, '2021-09-17 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1528, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4472951', 'Pilot Qualification', NULL, '2021-09-17 03:30:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1529, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4473063', 'Master Free Fall School and RSLC', NULL, '2021-09-18 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1530, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4486265', 'IFV Qualification', NULL, '2021-09-18 19:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1531, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4440800', 'Aircrew Training & Qualification', NULL, '2021-09-18 22:15:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1532, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4486006', 'Battalion NCO Meetings', NULL, '2021-09-18 23:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1533, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4420739', 'Operation Shattered Hope Part 3', NULL, '2021-09-19 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1534, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4473064', 'Pathfinder Qualification', NULL, '2021-09-20 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1535, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4492184', 'Pathfinder Bookwork', NULL, '2021-09-20 21:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1536, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4451803', 'Air Assault - Ranger Training Phase - Instructiona', NULL, '2021-09-21 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1537, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4499526', 'Shattered Hope 4 RRC', NULL, '2021-09-22 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1538, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4505800', 'RTO / Communication Ribbon qual', NULL, '2021-09-22 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1539, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4493166', 'Operation Flashpoint', NULL, '2021-09-23 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1540, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4473789', 'Land Nav Alternate', NULL, '2021-09-23 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1541, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4493233', 'AIT 2 - Battle Drills', NULL, '2021-09-24 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1542, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4438807', 'Basic Training', NULL, '2021-09-24 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1543, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4472982', 'Copilot Training Day 1', NULL, '2021-09-25 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1544, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4508342', 'JTAC qual', NULL, '2021-09-25 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1545, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496630', 'Platoon Leadership Course', NULL, '2021-09-25 15:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1546, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4512090', 'Basic Training', NULL, '2021-09-25 17:30:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1547, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4506039', 'CLS/68W', NULL, '2021-09-25 20:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1548, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4472983', 'Copilot Training Day 2', NULL, '2021-09-25 22:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1549, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496603', 'Battalion NCO Meetings', NULL, '2021-09-25 22:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1550, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4420741', 'Operation Shattered Hope Part 4', NULL, '2021-09-26 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1551, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4473825', 'Rescheduled (OP) Time Travel with Ms.Frizzle and t', NULL, '2021-09-27 00:00:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1552, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4528953', 'Operation Black Eye', NULL, '2021-09-30 00:30:00', '2023-06-01 04:45:45', '2023-06-01 04:45:45', NULL, NULL), - (1553, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4511471', 'AIT 3 - MOUT', NULL, '2021-10-01 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1554, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4438808', 'Basic Training', NULL, '2021-10-02 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1555, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4512562', 'Anti Armor School', NULL, '2021-10-02 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1556, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4518993', 'Rotary Logistics Pilot Qualification - Rescheduled', NULL, '2021-10-02 00:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1557, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496604', 'Battalion NCO Meetings', NULL, '2021-10-02 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1558, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4420742', 'Battalion Training', NULL, '2021-10-03 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1559, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4438809', 'Canceled-Basic Training', NULL, '2021-10-04 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1560, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4516078', 'Echo Ground Crew Familiarization', NULL, '2021-10-05 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1561, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4516287', 'Operation Thundering Blow', NULL, '2021-10-07 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1562, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4541281', 'AIT 4 - CQB', NULL, '2021-10-08 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1563, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4536351', 'Marksman and Sharpshooter Qual', NULL, '2021-10-09 00:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1564, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4539147', 'Co-Pilot Qualification', NULL, '2021-10-09 00:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1565, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496612', 'Battalion NCO Meetings', NULL, '2021-10-09 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1566, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4420744', 'Operation Shattered Hope Part 5', NULL, '2021-10-10 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1567, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4564599', 'Fixed-Wing Logistics', NULL, '2021-10-11 21:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1568, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4438811', 'Basic Training', NULL, '2021-10-12 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1569, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4564602', 'Air Wing Trainer Qualification', NULL, '2021-10-12 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1570, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4540903', 'Operation Snow Angels', NULL, '2021-10-14 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1571, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4566768', 'IFV Training', NULL, '2021-10-15 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1572, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4568602', 'JTAC Bookwork', NULL, '2021-10-16 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1573, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4566762', 'Training FTX', NULL, '2021-10-16 00:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1574, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015997', 'Side Ops Assignments', NULL, '2021-10-16 04:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1575, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4566769', 'IFV Qual', NULL, '2021-10-16 19:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1576, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4572153', 'Jumpschool an Jumpmaster Crash Course', NULL, '2021-10-16 21:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1577, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496611', 'Battalion NCO Meetings', NULL, '2021-10-16 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1578, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4420747', 'Operation Shattered Hope Part 6', NULL, '2021-10-17 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1579, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4574713', 'Contact Identification Training', NULL, '2021-10-18 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1580, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4574712', 'Land Nav Training and Qual', NULL, '2021-10-19 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1581, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4575829', 'Rotary Logistics Qualification', NULL, '2021-10-19 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1582, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4438810', 'Basic Training', NULL, '2021-10-20 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1583, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4563823', '17th Side Op-Open Zeus', NULL, '2021-10-21 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1584, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4582837', 'FTX - Hearts and Minds', NULL, '2021-10-22 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1585, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4585962', 'JTAC qual', NULL, '2021-10-22 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1586, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4574382', 'Aircrew Training', NULL, '2021-10-23 21:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1587, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496608', 'Battalion NCO Meetings', NULL, '2021-10-23 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1588, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4420748', 'Operation Shattered Hope Part 7', NULL, '2021-10-24 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1589, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4596356', 'Operation Snow Angels Ep 2', NULL, '2021-10-28 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1590, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4438814', 'Basic Training', NULL, '2021-10-29 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1591, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4596453', 'Leadership - Knowns and Unknowns', NULL, '2021-10-30 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1592, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496610', 'Battalion NCO Meetings', NULL, '2021-10-30 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1593, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4420749', 'Operation Shattered Hope Finale', NULL, '2021-10-31 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1594, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4587337', 'Kraige trys to kill the 17th', NULL, '2021-11-01 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1595, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4598860', 'Operation Snow Angels Episode 3', NULL, '2021-11-04 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1596, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4438812', 'Basic Training', NULL, '2021-11-06 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1597, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496609', 'Battalion NCO Meetings', NULL, '2021-11-06 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1598, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4602797', 'RASP', NULL, '2021-11-07 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1599, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4438816', 'Basic Training (Canceled)', NULL, '2021-11-08 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1600, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4607305', 'Echo Vehicle Crew Familiarization', NULL, '2021-11-09 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1601, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4618567', 'Flight training NCO Meeting', NULL, '2021-11-11 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1602, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4598861', 'Operation Snow Angels Episode 3', NULL, '2021-11-11 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1603, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4607339', 'RESCHEDULED: IFV Command Training', NULL, '2021-11-12 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1604, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4620452', 'Combat Diver book work', NULL, '2021-11-13 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1605, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4616350', 'CLS/68W', NULL, '2021-11-13 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1606, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4618310', 'NCO Basic training meeting.', NULL, '2021-11-13 23:45:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1607, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496613', 'Battalion NCO Meetings', NULL, '2021-11-14 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1608, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4637896', 'Battalion Training', NULL, '2021-11-14 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1609, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4612098', '17th Command Meeting', NULL, '2021-11-14 21:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1610, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4644021', 'Basic Training', NULL, '2021-11-16 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1611, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015998', 'Side Ops Assignments', NULL, '2021-11-16 04:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1612, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4638673', 'IFV Command Training', NULL, '2021-11-17 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1613, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4620697', 'Pathfinder Bookwork (Rescheduled 14th --> 16th)', NULL, '2021-11-17 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1614, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015738', 'PLACEHOLDER Official Mini Operation', NULL, '2021-11-18 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1615, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4632276', 'Operation Draken', NULL, '2021-11-18 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1616, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4635224', 'Aircrew Training/Qualification', NULL, '2021-11-20 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1617, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4635221', 'Copilot Training Day 1', NULL, '2021-11-20 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1618, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496624', 'Battalion NCO Meetings', NULL, '2021-11-21 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1619, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4645704', 'Operation Snowfog', NULL, '2021-11-21 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1620, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4660657', 'Training FTX', NULL, '2021-11-23 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1621, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4644022', 'Basic Training', NULL, '2021-11-24 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1622, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4661671', 'IFV Qualification', NULL, '2021-11-24 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1623, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015731', 'Operation Trident (Placeholder)', NULL, '2021-11-25 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1624, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4668385', 'Operation Trident', NULL, '2021-11-25 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1625, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4670473', 'THANKGIVING DAY!!!', NULL, '2021-11-25 06:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1626, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4670469', 'Zeus OP', NULL, '2021-11-27 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1627, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4635421', 'Pilot Qualification', NULL, '2021-11-27 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1628, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496607', 'Battalion NCO Meetings', NULL, '2021-11-28 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1629, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4645705', 'Operation Welcome to Wakanda', NULL, '2021-11-28 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1630, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4674797', 'Marksman/Sharpshooter qualifications', NULL, '2021-11-28 21:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1631, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4675407', 'BASIC TRAINING', NULL, '2021-11-30 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1632, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4680695', '[CANCELED] Something', NULL, '2021-12-01 00:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1633, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4683667', 'Operation Happy Hands', NULL, '2021-12-02 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1634, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4642994', '[Canceled]Operation Snow Angels Episode 4', NULL, '2021-12-02 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1635, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4644023', 'Basic Training', NULL, '2021-12-03 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1636, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4675604', 'AIT 1 - Advanced Infantry Training part 1', NULL, '2021-12-04 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1637, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4679701', 'Master Free Fall (MFF) School', NULL, '2021-12-04 02:15:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1638, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4635420', 'Copilot Pt2 **RESCHEDULE**', NULL, '2021-12-04 21:45:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1639, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496606', 'Battalion NCO Meetings', NULL, '2021-12-05 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1640, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4658824', 'Operation No Vacation', NULL, '2021-12-05 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1641, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4681923', 'Echo Ground Crew Familiarization', NULL, '2021-12-07 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1642, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4687090', 'Pathfinder Bookwork', NULL, '2021-12-08 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1643, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4642995', 'Operation Snow Angels Episode 5', NULL, '2021-12-09 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1644, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4691157', 'Joint Training', NULL, '2021-12-10 01:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1645, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4692841', 'AIT 2 - Battle Drills', NULL, '2021-12-11 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1646, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4644024', '(Cancelled) Basic Training', NULL, '2021-12-11 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1647, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4694407', 'JTAC/CAS Refresher', NULL, '2021-12-11 02:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1648, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496605', 'Battalion NCO Meetings', NULL, '2021-12-12 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1649, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4645687', 'RASP', NULL, '2021-12-12 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1650, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4645698', 'Community Round Table', NULL, '2021-12-12 21:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1651, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4644025', 'Basic Training', NULL, '2021-12-14 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1652, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4692842', 'AIT 3 - MOUT - CANCELED', NULL, '2021-12-15 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1653, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4642996', 'Operation Snow Angels Episode 5', NULL, '2021-12-16 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1654, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4015999', 'Side Ops Assignments', NULL, '2021-12-16 04:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1655, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4706262', 'Echo NCO Meeting', NULL, '2021-12-17 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1656, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4692843', 'AIT 4 - CQB', NULL, '2021-12-18 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1657, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496621', 'Battalion NCO Meetings', NULL, '2021-12-19 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1658, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4635279', 'Copilot Qual (reschedule but won\'t be rescheduled ', NULL, '2021-12-19 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1659, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4658825', 'Operation Tempting Tempest', NULL, '2021-12-19 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1660, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4715208', 'Marksman/Sharpshooter Qual', NULL, '2021-12-20 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1661, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4715311', 'Heavy Weapons Training', NULL, '2021-12-20 08:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1662, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4715119', 'AIT 3 - MOUT', NULL, '2021-12-21 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1663, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4715207', 'Heavy Weapons Training', NULL, '2021-12-22 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1664, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4644027', 'Basic Training', NULL, '2021-12-22 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1665, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4642997', 'Operation Snow Angels Finale', NULL, '2021-12-23 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1666, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4568542', 'NO OFFICAL EVENTS FOR HOLIDAY BREAK', NULL, '2021-12-24 03:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1667, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4724208', 'Demolition Course', NULL, '2022-01-04 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1668, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4724210', 'EOD Course', NULL, '2022-01-04 02:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1669, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4733292', 'Basic Training', NULL, '2022-01-04 18:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1670, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4717532', 'IFV Qualification', NULL, '2022-01-05 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1671, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4708704', 'Operation Dustbowl Destruction Ep 1', NULL, '2022-01-06 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1672, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4731015', 'Master Free Fall', NULL, '2022-01-07 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1673, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4731043', 'Pathfinder Qualifications', NULL, '2022-01-07 03:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1674, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4718771', 'IDF Training', NULL, '2022-01-08 00:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1675, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4731044', 'Pathfinder Qualifications', NULL, '2022-01-08 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1676, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4724206', 'SERE Training checkout', NULL, '2022-01-08 18:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1677, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496622', 'Battalion NCO Meetings', NULL, '2022-01-09 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1678, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4736495', 'Battalion Training', NULL, '2022-01-09 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1679, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4731045', 'Anti Armor School', NULL, '2022-01-10 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1680, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4725109', '[RESCHEDULED]Escape and Evade', NULL, '2022-01-11 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1681, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4753907', 'Impromtu Training w/EagelTrooper Highest Interest', NULL, '2022-01-11 01:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1682, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4742171', 'Basic Training', NULL, '2022-01-12 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1683, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4757390', 'RTO Quaification from Jan 10 Bookwork', NULL, '2022-01-12 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1684, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4708705', 'Operation Dustbowl Destruction Ep 2', NULL, '2022-01-13 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1685, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4757377', 'Sniper School', NULL, '2022-01-14 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1686, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4742350', 'Fire Team Lead FTX', NULL, '2022-01-15 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1687, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4746789', 'JTAC/CAS Refresher', NULL, '2022-01-15 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1688, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4747800', 'Pilot Qualification', NULL, '2022-01-15 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1689, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496617', 'Battalion NCO Meetings', NULL, '2022-01-16 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1690, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4736496', 'Operation Radiant Burn', NULL, '2022-01-16 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1691, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4761202', 'Echo Ground Crew Familiarization', NULL, '2022-01-17 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1692, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4753938', '[Asia/EU] Air Assault Training', NULL, '2022-01-17 19:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1693, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4753929', '[moved to Tues]Air Assault Training', NULL, '2022-01-18 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1694, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4766830', 'Air Assault Training', NULL, '2022-01-19 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1695, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4735348', 'Escape and Evade', NULL, '2022-01-19 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1696, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4761305', 'Side-Ops Assignments', NULL, '2022-01-19 06:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1697, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4708707', 'Operation Dustbowl Destruction Ep 3', NULL, '2022-01-20 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1698, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4758745', 'Land Navigation', NULL, '2022-01-21 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1699, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4766841', 'Basic Training', NULL, '2022-01-21 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1700, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4759563', 'Airborne School', NULL, '2022-01-22 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1701, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4765583', 'JTAC/ CAS Practice', NULL, '2022-01-22 02:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1702, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496614', 'Battalion NCO Meetings', NULL, '2022-01-23 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1703, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4736497', 'Operation Radiant Burn', NULL, '2022-01-23 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1704, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4773535', '17th Command Meeting', NULL, '2022-01-23 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1705, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4766801', 'Combat Life Saver', NULL, '2022-01-25 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1706, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4766802', '68W (Combat Medic)', NULL, '2022-01-25 01:15:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1707, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4774419', '[EU]CLS+68W', NULL, '2022-01-25 19:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1708, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4766799', '[CanceledForFuture]68W (Combat Medic)', NULL, '2022-01-26 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1709, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4776926', '1 on 1 Flight Practice', NULL, '2022-01-26 03:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1710, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4708708', 'Operation Dustbowl Destruction Ep 4', NULL, '2022-01-27 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1711, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4769423', 'AIT 1 - (Advanced Infantry Training)', NULL, '2022-01-28 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1712, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4790257', 'Recon Surveillance and Leadership Course', NULL, '2022-01-29 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1713, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4780754', 'Basic Training', NULL, '2022-01-29 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1714, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4776927', 'Flight Practice', NULL, '2022-01-29 02:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1715, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4781137', 'Demolitions Course', NULL, '2022-01-29 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1716, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4790261', 'Sandtable- Armored Convoy', NULL, '2022-01-29 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1717, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496615', 'Battalion NCO Meetings', NULL, '2022-01-30 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1718, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4736500', 'Operation Radiant Burn', NULL, '2022-01-30 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1719, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4781139', 'EOD Course', NULL, '2022-01-30 21:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1720, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4788464', 'Air Crew Training/Qual', NULL, '2022-01-31 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1721, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5019064', 'Echo Ground Orientation', NULL, '2022-02-03 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1722, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4788466', 'Operation Dustbowl Destruction Episode 5', NULL, '2022-02-03 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1723, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4780759', 'Basic Training', NULL, '2022-02-04 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1724, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5016682', 'Fire Team Lead FTX', NULL, '2022-02-04 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1725, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5019063', 'Echo NCO Meeting', NULL, '2022-02-05 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1726, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5015635', 'IFV/Mechanized Qualification', NULL, '2022-02-05 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1727, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496616', 'Battalion NCO Meetings', NULL, '2022-02-06 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1728, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4736498', 'Operation Radiant Burn', NULL, '2022-02-06 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1729, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4780760', 'Basic Training', NULL, '2022-02-09 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1730, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5037632', 'Rescheduled: Echo Ground Crew Orientation', NULL, '2022-02-10 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1731, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5038850', 'Operation Crimson Sickle', NULL, '2022-02-10 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1732, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5038910', 'Echo Ground Crew Orientation', NULL, '2022-02-11 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1733, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5028238', 'CANCELED - FTX - RRC needs the server', NULL, '2022-02-12 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1734, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496628', 'Battalion NCO Meetings', NULL, '2022-02-13 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1735, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4736499', 'Operation Radiant Burn', NULL, '2022-02-13 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1736, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4773576', '17th Command Meeting', NULL, '2022-02-13 21:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1737, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5027602', 'RESCHEDULED: IDF Training', NULL, '2022-02-15 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1738, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5042197', 'AIT 2 - Battle Drills', NULL, '2022-02-16 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1739, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5044505', 'IDF Training', NULL, '2022-02-16 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1740, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5015628', 'Operation Dustbowl Destruction Finale', NULL, '2022-02-17 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1741, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4780761', 'Basic Training', NULL, '2022-02-18 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1742, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5045826', 'D-Day Russian Landing', NULL, '2022-02-18 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1743, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5034963', 'Advanced UAV Course', NULL, '2022-02-19 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1744, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5050641', 'Demolition & EOD FTX [CANCELED]', NULL, '2022-02-19 03:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1745, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496618', 'Battalion NCO Meetings', NULL, '2022-02-20 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1746, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4736501', 'Operation Radiant Burn', NULL, '2022-02-20 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1747, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5052236', 'Operation Woodland Walk Episode 1', NULL, '2022-02-24 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1748, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5037637', 'Echo Company Range Day', NULL, '2022-02-25 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1749, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5065064', 'Machine Gunnery for Dummies', NULL, '2022-02-25 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1750, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4780763', 'Basic Training', NULL, '2022-02-26 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1751, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5065027', 'CLS/68W', NULL, '2022-02-26 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1752, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5060490', 'JTAC / CAS Practice', NULL, '2022-02-26 02:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1753, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496625', 'Battalion NCO Meetings', NULL, '2022-02-27 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1754, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4736502', 'RASP', NULL, '2022-02-27 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1755, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5129140', 'Defense FTX', NULL, '2022-03-01 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1756, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5129274', 'Basic Training (Tentative on Trainer)', NULL, '2022-03-01 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1757, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5142082', 'Operation Radiant Burn Part 6 RRC', NULL, '2022-03-02 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1758, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5129142', 'RTO / Communications Ribbon (Training / Qual if Ti', NULL, '2022-03-02 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1759, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5061301', 'CAS FTX/Demo - Moved', NULL, '2022-03-02 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1760, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5052238', 'Operation Woodland Walk Episode 2', NULL, '2022-03-03 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1761, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5064727', 'AIT 3 MOUT', NULL, '2022-03-04 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1762, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5132531', 'Echo Ground Crew Orientation', NULL, '2022-03-04 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1763, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5069735', 'Demolitions / Explosive Ordnance Disposal (EOD)', NULL, '2022-03-04 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1764, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5129121', 'Anti Armor School', NULL, '2022-03-05 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1765, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5129129', 'IFV/Mechanized Qualification', NULL, '2022-03-05 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1766, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496629', 'Battalion NCO Meetings', NULL, '2022-03-06 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1767, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4736503', 'Operation Radiant Burn', NULL, '2022-03-06 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1768, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5058336', 'Joint Op - Operation Frostbite', NULL, '2022-03-06 20:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1769, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5129122', 'Pathfinder School [Canceled]', NULL, '2022-03-07 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1770, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5154274', 'Jump Master Training - Master Free Fall Jump Maste', NULL, '2022-03-08 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1771, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5158145', 'Basic Training', NULL, '2022-03-09 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1772, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5068530', 'Operation Final Days', NULL, '2022-03-10 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1773, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5157773', 'AIT 2-4 FTX (AIT not required)', NULL, '2022-03-11 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1774, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5128466', '[Canceled] Basic Training', NULL, '2022-03-11 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1775, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5132533', 'JTAC Bookwork and Refresher', NULL, '2022-03-12 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1776, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5160862', 'Operation Radiant Burn Part 7 RRC', NULL, '2022-03-12 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1777, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496626', 'Battalion NCO Meetings', NULL, '2022-03-13 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1778, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4736504', 'Operation Radiant Burn', NULL, '2022-03-13 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1779, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4718111', 'Daylight saving time', NULL, '2022-03-13 06:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1780, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4773577', '17th Command Meeting', NULL, '2022-03-13 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1781, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5166407', 'Rumble in the Jungle', NULL, '2022-03-15 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1782, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5176296', 'Basic Training', NULL, '2022-03-15 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1783, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5052239', 'Operation Woodland Walk Episode 3', NULL, '2022-03-17 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1784, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5186920', 'Master Free Fall', NULL, '2022-03-17 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1785, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5169578', 'AIT 4 - CQB', NULL, '2022-03-18 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1786, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5181648', 'IDF Training/ Qualification', NULL, '2022-03-18 23:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1787, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5189749', '[Cancelled] Operation Radiant Burn Part 8 RRC', NULL, '2022-03-19 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1788, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5179439', 'Pathfinder Bookwork', NULL, '2022-03-19 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1789, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5186865', 'Fixed Wing Logi Qual', NULL, '2022-03-19 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1790, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5193533', 'Ground Crew Familiarization', NULL, '2022-03-19 21:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1791, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496619', 'Battalion NCO Meetings', NULL, '2022-03-19 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1792, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5186582', 'Operation Radiant Burn Episode 8', NULL, '2022-03-20 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1793, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5187212', 'Combat Diver Course', NULL, '2022-03-20 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1794, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5181277', '(UPDATED) Operation Midnight Kraken', NULL, '2022-03-21 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1795, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5191241', 'RTO Bookwork / Qualification (If time Permitting)', NULL, '2022-03-22 00:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1796, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5160281', 'How to Win Friends and Git Gud at Arma', NULL, '2022-03-23 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1797, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5052240', 'Operation Woodland Walk Episode 4', NULL, '2022-03-24 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1798, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5196789', 'iceberg Side Op - Cytech Lab - Establish Communica', NULL, '2022-03-25 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1799, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5200458', 'Combat Diver Course', NULL, '2022-03-26 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1800, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5196763', 'Basic Training', NULL, '2022-03-26 01:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1801, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4496627', 'Battalion NCO Meetings', NULL, '2022-03-26 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1802, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5186583', 'Operation Radiant Burn Episode 9', NULL, '2022-03-27 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1803, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5186820', 'Sand and Blood Episode 1', NULL, '2022-03-28 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1804, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5215609', 'ACCELERATED BASIC', NULL, '2022-03-28 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1805, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5199425', 'Pathfinder Qualification', NULL, '2022-03-29 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1806, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5199460', 'Basic Training', NULL, '2022-03-29 22:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1807, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5200196', 'Co Pilot Training', NULL, '2022-03-30 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1808, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5052241', 'Firefight mission', NULL, '2022-03-31 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1809, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5217660', 'Marksman/Sharpshooter Open Call', NULL, '2022-04-01 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1810, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5200190', '[MOVED]Air Crew Training', NULL, '2022-04-01 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1811, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5217936', 'Master Free Fall School', NULL, '2022-04-01 02:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1812, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5216645', 'Pathfinder Qualification', NULL, '2022-04-01 21:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1813, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5214043', 'Fixed Wing CAS Qual', NULL, '2022-04-01 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1814, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5215989', 'JTAC bookwork 2.0 and qual', NULL, '2022-04-01 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1815, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5218175', 'Operation Radiant Burn Finale RRC', NULL, '2022-04-02 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1816, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5215985', 'IFV/Mechanized Qual', NULL, '2022-04-02 21:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1817, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5186587', 'Battalion NCO Meetings', NULL, '2022-04-02 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1818, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5186585', 'Operation Radiant Burn - FINALE', NULL, '2022-04-03 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1819, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5214686', 'Sand and Blood Ending', NULL, '2022-04-03 22:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1820, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5223682', 'Basic Training', NULL, '2022-04-05 23:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1821, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5223468', 'Operation Fast and Hard', NULL, '2022-04-07 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1822, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5227432', 'Land Navigation', NULL, '2022-04-08 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1823, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5223686', '[Cancelled] Ground Crew Orientation', NULL, '2022-04-08 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1824, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5231071', 'Basic Training Discussion', NULL, '2022-04-08 02:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1825, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5222531', 'Fixed Wing Logistics Qual', NULL, '2022-04-08 22:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1826, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5220867', 'Pointman Training', NULL, '2022-04-09 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1827, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5190437', 'Battalion FTX', NULL, '2022-04-10 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1828, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5214641', '17th Community Round Table', NULL, '2022-04-10 20:30:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1829, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4773578', '17th Command Meeting', NULL, '2022-04-10 23:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1830, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5231430', 'Echo NCO Meeting', NULL, '2022-04-11 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1831, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5223673', 'FTX What Alpha Does Best', NULL, '2022-04-11 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1832, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5233137', 'Basic Training', NULL, '2022-04-12 00:00:00', '2023-06-01 04:45:46', '2023-06-01 04:45:46', NULL, NULL), - (1833, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5237543', 'Maneuver FTX', NULL, '2022-04-12 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1834, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5231461', 'The Concepts of Teaching Trainings', NULL, '2022-04-13 00:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1835, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5226703', 'Operation Void Cart', NULL, '2022-04-14 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1836, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5237536', 'Guided Munitions Familiarization and Utilization', NULL, '2022-04-14 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1837, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5240135', 'Basic Training', NULL, '2022-04-15 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1838, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5238343', 'Echo Orientation', NULL, '2022-04-15 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1839, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5243711', 'Basic Training EU/Asia/Africa', NULL, '2022-04-15 13:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1840, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5243274', '68W/CLS Training', NULL, '2022-04-16 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1841, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5244906', 'Anti Armor School [Cancelled]', NULL, '2022-04-16 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1842, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5238759', 'Anti Armor School', NULL, '2022-04-16 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1843, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5231459', 'Basic training Discussion Pt 2 Electric Boogaloo', NULL, '2022-04-16 01:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1844, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5245284', 'Basic Training for EU Timezones', NULL, '2022-04-16 13:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1845, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5245270', 'Basic Training', NULL, '2022-04-16 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1846, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5246530', 'Basic Orientation', NULL, '2022-04-16 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1847, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5195095', 'RASP', NULL, '2022-04-17 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1848, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5244797', 'Mod Pack Updated (No Training Scheduled)', NULL, '2022-04-17 05:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1849, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5242155', 'AIT 1 - Fireteam members', NULL, '2022-04-19 01:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1850, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5244915', 'Anti Armor School', NULL, '2022-04-20 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1851, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5245036', 'Aj\'s Drug Runners', NULL, '2022-04-21 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1852, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5249763', 'Basic Training', NULL, '2022-04-21 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1853, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5249631', 'Guided Munitions Training', NULL, '2022-04-22 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1854, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5242156', 'AIT 2 - Battle Drills', NULL, '2022-04-22 01:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1855, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5238355', 'Co-Pilot Course', NULL, '2022-04-22 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1856, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5237522', 'FTL FTX', NULL, '2022-04-23 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1857, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5252913', 'IFV/Mechanized Qual', NULL, '2022-04-23 20:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1858, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5252569', 'Rotary - Logistics Training Course', NULL, '2022-04-23 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1859, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5247466', 'Battalion NCO Meeting', NULL, '2022-04-23 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1860, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5247467', 'Battalion FTX', NULL, '2022-04-24 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1861, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5251777', 'Basic Training', NULL, '2022-04-24 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1862, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5238353', 'Demolitions Course', NULL, '2022-04-24 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1863, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5238354', 'EOD Course', NULL, '2022-04-25 00:45:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1864, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5238445', 'Air Assault Course', NULL, '2022-04-26 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1865, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5256017', 'Aj\'s Campaign Test Run', NULL, '2022-04-26 01:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1866, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5258022', 'Basic Training', NULL, '2022-04-26 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1867, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5238356', 'Airborne (Jump Wings) Course', NULL, '2022-04-26 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1868, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5238357', 'Master Free Fall (MFF) Course', NULL, '2022-04-27 01:15:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1869, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5260197', 'Forest Fighting FTX', NULL, '2022-04-27 01:15:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1870, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5238360', 'Combat Diver Course', NULL, '2022-04-27 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1871, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5263784', 'Operation Last Minute', NULL, '2022-04-28 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1872, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5247537', 'Operation Breaking Bottle[Details moved to Iceberg', NULL, '2022-04-28 20:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1873, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5262344', 'Fixed Wing CAS Training', NULL, '2022-04-28 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1874, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5245754', 'Pathfinder Bookwork', NULL, '2022-04-29 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1875, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5252573', 'Basic Training', NULL, '2022-04-29 20:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1876, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5238361', '[Cancelled] Jump Master Course', NULL, '2022-04-29 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1877, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5263775', 'RRC Operation', NULL, '2022-04-30 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1878, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5261577', '[Cancelled]Airborne/Land Nav FTX', NULL, '2022-04-30 00:45:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1879, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5238362', '[Cancelled] Master Free Fall Jump Master (MFF JM) ', NULL, '2022-04-30 00:45:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1880, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5266746', 'FTX An Easy Detail', NULL, '2022-04-30 02:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1881, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5247465', 'Battalion NCO Meeting', NULL, '2022-04-30 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1882, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5260800', 'Operation Eclipse Part 1', NULL, '2022-05-01 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1883, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5261600', 'Advanced UAV School', NULL, '2022-05-01 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1884, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5262345', 'Fixed Wing CAS Training Take 2', NULL, '2022-05-01 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1885, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5247605', 'Big Brother Bradley FTX', NULL, '2022-05-02 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1886, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5245755', 'Pathfinder Qualification', NULL, '2022-05-02 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1887, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5251561', 'Escape and Evade', NULL, '2022-05-03 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1888, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5260491', 'Basic Training', NULL, '2022-05-03 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1889, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5261598', 'Heavy Weapons School', NULL, '2022-05-04 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1890, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5258360', 'Rotary CAS Training', NULL, '2022-05-04 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1891, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5264352', 'Operation Placeholder', NULL, '2022-05-05 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1892, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5269932', 'Convoy Operations FTX', NULL, '2022-05-06 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1893, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5251618', 'Rotary CAS Qual', NULL, '2022-05-06 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1894, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5278201', 'Basic Training', NULL, '2022-05-06 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1895, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5278159', 'Echo armor training', NULL, '2022-05-06 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1896, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5247200', '[Cancelled] Bradley Crew FTX', NULL, '2022-05-07 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1897, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5271453', 'RRC Operation', NULL, '2022-05-07 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1898, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5262783', 'Ranger Training', NULL, '2022-05-07 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1899, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5277078', 'Echo Orientation', NULL, '2022-05-07 19:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1900, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5281102', 'NCO Meetings', NULL, '2022-05-07 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1901, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5269930', 'Operation Eclipse pt 2', NULL, '2022-05-08 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1902, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5279531', 'Demolitions Course', NULL, '2022-05-08 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1903, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4773579', '17th Command Meeting', NULL, '2022-05-08 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1904, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5278202', 'Basic Training', NULL, '2022-05-09 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1905, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5281795', 'Rotary CAS Qual', NULL, '2022-05-10 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1906, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5276350', 'Practical Land Nav practice', NULL, '2022-05-10 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1907, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5262809', 'Anti Armor but you\'re in armor as well', NULL, '2022-05-11 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1908, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5279532', 'EOD Course', NULL, '2022-05-11 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1909, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5278173', 'F/A-18 Ordinance Training', NULL, '2022-05-11 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1910, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5277822', 'Operation I Hate Sand', NULL, '2022-05-12 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1911, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5281796', 'Rotary Logistics Qual', NULL, '2022-05-13 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1912, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5271446', 'Pathfinder Bookwork', NULL, '2022-05-13 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1913, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5271447', 'Master Free Fall School', NULL, '2022-05-14 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1914, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5276469', 'Savanna Shock TX', NULL, '2022-05-14 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1915, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5279509', 'Sniper Course', NULL, '2022-05-14 21:45:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1916, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5281103', 'NCO Meetings', NULL, '2022-05-14 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1917, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5271448', 'Operation Eclipse pt 3', NULL, '2022-05-15 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1918, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5288619', 'Pathfinder Qualification', NULL, '2022-05-16 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1919, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5284864', 'Basic Training', NULL, '2022-05-16 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1920, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5288114', 'Rotary Logistics Training and Qual', NULL, '2022-05-18 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1921, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5367533', 'Master Free Fall Jump Master Course', NULL, '2022-05-20 22:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1922, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5367531', 'Jump Master Course', NULL, '2022-05-19 23:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1923, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5288052', 'Fire Team Leading FTX', NULL, '2022-05-21 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1924, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5368445', 'CBRN Crash Course', NULL, '2022-05-21 02:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1925, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5286295', 'Operation Ringed City', NULL, '2022-05-19 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1926, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5367530', 'Sniper Course', NULL, '2022-05-19 21:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1927, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5288115', 'Rotary CAS Training and Qual', NULL, '2022-05-20 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1928, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5367532', 'Forward Observer Course', NULL, '2022-05-20 01:15:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1929, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5365960', 'Mortar and IDF trainig', NULL, '2022-05-20 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1930, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5281104', 'NCO Meetings', NULL, '2022-05-21 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1931, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5271449', 'Operation Eclipse pt 4', NULL, '2022-05-22 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1932, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5367032', 'Basic Training', NULL, '2022-05-22 18:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1933, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5370465', 'Basic Training', NULL, '2022-05-24 02:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1934, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5375873', 'Logistics Qual TRAINING Session', NULL, '2022-05-25 01:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1935, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5376074', 'FireFight: Fight by Night', NULL, '2022-05-26 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1936, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5375861', 'Fixed Wing CAS Training', NULL, '2022-05-26 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1937, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5375772', 'AIT 3', NULL, '2022-05-27 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1938, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5372162', 'Rotary Logistics Qual', NULL, '2022-05-27 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1939, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5287977', 'Basic Training', NULL, '2022-05-27 18:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1940, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5374882', 'Air Crew Course', NULL, '2022-05-27 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1941, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5280667', '[Rescheduled] Ranger Training', NULL, '2022-05-28 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1942, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5375603', 'IFV/Mechanized Qual', NULL, '2022-05-28 21:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1943, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5271450', 'RASP', NULL, '2022-05-29 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1944, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5369628', 'Master Free Fall + Recon Surviellance Leadership C', NULL, '2022-05-30 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1945, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5374885', 'Copilot Course', NULL, '2022-05-30 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1946, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5388761', 'CLS (Combat Life Saver) Ribbon', NULL, '2022-05-31 00:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1947, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5393861', '[RESCHEDULED] Pointman Training', NULL, '2022-06-01 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1948, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5395032', 'Operation Traveling Fiend', NULL, '2022-06-02 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1949, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5394015', 'Pointman Training', NULL, '2022-06-02 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1950, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5394292', 'AIT 4 - CQB', NULL, '2022-06-03 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1951, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5391566', 'Basic Training', NULL, '2022-06-03 18:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1952, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5391667', 'Marksman/Sharpshooter', NULL, '2022-06-03 20:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1953, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5394493', 'Sniper Course', NULL, '2022-06-03 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1954, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5368973', 'Operation Hobson’s Rift P1', NULL, '2022-06-04 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1955, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5397613', 'NCO Meetings', NULL, '2022-06-04 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1956, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5363695', 'Operation Eclipse pt 5', NULL, '2022-06-05 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1957, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5397171', 'How to Zeus: Basics', NULL, '2022-06-06 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1958, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5396072', 'Pathfinder Qualificaton', NULL, '2022-06-07 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1959, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5401479', 'Basic Training', NULL, '2022-06-08 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1960, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5396080', 'Anti Armor School', NULL, '2022-06-08 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1961, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5373081', 'Operation Longbow', NULL, '2022-06-09 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1962, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5399721', '[Rescheduled] Movement Techniques and Danger Areas', NULL, '2022-06-09 22:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1963, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5389402', 'Echo Orientation', NULL, '2022-06-10 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1964, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5401089', 'Fixed-Wing Logistics Qual', NULL, '2022-06-10 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1965, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5403421', 'Basic Training', NULL, '2022-06-10 19:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1966, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5378247', '[Rescheduled] Ranger Training', NULL, '2022-06-11 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1967, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5405212', 'Synchronized Assault FTX', NULL, '2022-06-11 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1968, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5280603', '[Rescheduled]Echo Orientation', NULL, '2022-06-11 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1969, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5404197', 'C-130 Improvised airfield practice', NULL, '2022-06-11 02:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1970, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5397614', 'NCO Meetings', NULL, '2022-06-11 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1971, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5389605', 'Operation Eclipse Pt 6', NULL, '2022-06-12 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1972, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5406355', '17th Command Meeting', NULL, '2022-06-12 22:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1973, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5404745', '[Rescheduled] Movement Techniques and Danger Areas', NULL, '2022-06-13 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1974, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5404780', 'Pathfinder Qualification', NULL, '2022-06-13 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1975, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5404771', 'Demolitions Course', NULL, '2022-06-13 02:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1976, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5404817', '17th NCO Training Discussion', NULL, '2022-06-14 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1977, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5404772', 'EOD Course', NULL, '2022-06-14 01:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1978, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5407267', 'Grenadier Training', NULL, '2022-06-14 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1979, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5403335', 'One on One Flight Training', NULL, '2022-06-14 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1980, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5405208', 'Movement Techniques and Danger Areas', NULL, '2022-06-15 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1981, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5405149', 'Rotary Logistics Qualification', NULL, '2022-06-15 01:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1982, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5375727', 'Operation Frostbreath (Mini-op)', NULL, '2022-06-16 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1983, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5408108', 'Forward Observer (FO) Training', NULL, '2022-06-17 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1984, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5404779', 'Heavy Weapons School', NULL, '2022-06-17 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1985, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5406427', 'Basic Training', NULL, '2022-06-17 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1986, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5403967', 'Operation Hobson\'s Rift P2', NULL, '2022-06-18 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1987, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5405203', '[RESCHEDULED DONT GO TO THIS ONE]Ranger Training', NULL, '2022-06-18 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1988, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5410322', 'RTO - Special for Scheduling', NULL, '2022-06-18 00:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1989, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5407053', '68W', NULL, '2022-06-18 19:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1990, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5397615', 'NCO Meetings', NULL, '2022-06-18 23:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1991, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5397265', 'Operation Eclipse Pt 7', NULL, '2022-06-19 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1992, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5408130', 'Combat Live Saver', NULL, '2022-06-19 21:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1993, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5404786', 'CSW FAMILIARZATION WITH KEN', NULL, '2022-06-20 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1994, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5404793', '[CANCELED] Machine Gunnery Need-to-Knows', NULL, '2022-06-21 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1995, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5406838', 'Aircrew Training', NULL, '2022-06-21 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1996, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5412237', 'Sniper Training', NULL, '2022-06-21 22:30:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1997, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5407063', 'Escape and Evade', NULL, '2022-06-22 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1998, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5408766', 'Alpha NCO Meeting', NULL, '2022-06-22 01:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (1999, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5415046', 'Operation Pandora', NULL, '2022-06-23 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (2000, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5407065', '[Rescheduled] Rotary Logi Training + (Maybe) Qual', NULL, '2022-06-24 00:00:00', '2023-06-01 04:45:47', '2023-06-01 04:45:47', NULL, NULL), - (2054, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5414556', 'RRC Operation', NULL, '2022-06-24 00:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2056, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5406831', 'NON TRAINING/FTX/OP DAY MOT TEST OP ONLY', NULL, '2022-06-24 05:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2057, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5416276', 'Basic Training', NULL, '2022-06-24 20:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2058, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5408794', 'Ranger Training', NULL, '2022-06-25 00:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2059, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5408029', '[Cancelled] Rotary Cas Qual', NULL, '2022-06-25 00:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2060, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5420218', 'NCO Meetings', NULL, '2022-06-25 23:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2061, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5412550', 'Operation Eclipse FINALE', NULL, '2022-06-26 00:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2062, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5411699', 'Operation Hobson\'s Rift: Combat Patrol - Mountain ', NULL, '2022-06-27 00:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2063, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5419006', 'Rotary Logi Training + (Maybe) Qual', NULL, '2022-06-28 00:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2064, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5422404', 'AIT 1 - Standard Field Operations', NULL, '2022-06-29 01:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2065, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5424546', 'Operation Boarding Party', NULL, '2022-06-30 00:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2066, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5416339', 'Basic Training', NULL, '2022-06-30 23:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2067, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5422405', 'AIT 2 - Battle Drills', NULL, '2022-07-01 01:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2068, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5406832', 'KENS MOD TEST(NO OTHER EVENTS ARE TO BE SCHEDULED)', NULL, '2022-07-01 05:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2069, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5426820', 'IFV/Mechanized Qual', NULL, '2022-07-02 20:30:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2070, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5422407', 'NCO Meeting', NULL, '2022-07-02 23:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2071, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5422406', 'Brigade Training', NULL, '2022-07-03 00:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2072, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5429935', 'Aditional Mod Testing - OPS Events', NULL, '2022-07-03 05:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2073, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5420154', 'Anti Armor School', NULL, '2022-07-06 00:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2074, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5420155', 'Pathfinder Bookwork', NULL, '2022-07-06 21:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2075, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5434019', 'Land Navigation', NULL, '2022-07-07 00:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2076, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5423915', 'CQB Workshop', NULL, '2022-07-07 22:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2077, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5420156', 'Sniper School', NULL, '2022-07-07 23:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2078, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5422086', 'Command Meeting', NULL, '2022-07-08 01:00:00', '2023-06-01 04:46:21', '2023-06-01 04:46:21', NULL, NULL), - (2079, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5420175', 'Advanced UAV School', NULL, '2022-07-08 02:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2080, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5433100', 'Basic Training', NULL, '2022-07-08 19:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2081, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5424565', 'JTAC bookwork', NULL, '2022-07-08 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2082, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5420158', 'Master Free Fall School', NULL, '2022-07-09 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2083, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5427083', 'Operation Hobson’s Rift: Sabotage Strike', NULL, '2022-07-09 01:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2084, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5437733', 'RASP', NULL, '2022-07-10 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2085, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5436855', 'NO EVENTS [SERVER / MOD UPDATES]', NULL, '2022-07-10 05:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2086, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5421626', '[Rescheduled] Command Meeting', NULL, '2022-07-11 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2087, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5442868', 'Fixed Wing CAS Qual', NULL, '2022-07-11 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2088, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5443300', 'Raids - Own the Night', NULL, '2022-07-12 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2089, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5442180', '[Cancelled] Pathfinder Qualification', NULL, '2022-07-13 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2090, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5433453', 'Operation Banana Snatcher', NULL, '2022-07-14 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2091, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5441645', '68 W Training', NULL, '2022-07-15 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2092, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5444962', 'Combat Diver', NULL, '2022-07-15 02:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2093, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5447079', 'TBD Reps', NULL, '2022-07-15 19:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2094, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5441112', 'Basic Training', NULL, '2022-07-15 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2095, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5426882', 'Operation Hobson’s Rift P3', NULL, '2022-07-16 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2096, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5448756', 'NCO Meetings', NULL, '2022-07-16 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2097, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5441125', 'Operation Siren Song', NULL, '2022-07-17 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2098, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5446643', 'Fireteam FTX: Leadership Initiative', NULL, '2022-07-18 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2099, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5449117', 'Echo Orienation', NULL, '2022-07-19 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2100, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5448830', 'Echo Mechanized Training', NULL, '2022-07-20 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2101, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5442832', 'CLS', NULL, '2022-07-20 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2102, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5455230', 'Operation Testing', NULL, '2022-07-20 18:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2103, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5455037', 'Operation Sea Serpent', NULL, '2022-07-21 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2104, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5446425', 'F/A-18 Familiarization Training', NULL, '2022-07-22 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2105, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5455164', 'AIT 3 - MOUT', NULL, '2022-07-22 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2106, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5449068', 'Basic Training', NULL, '2022-07-22 00:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2107, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5456489', 'Operation Test on Private Ops Server', NULL, '2022-07-22 18:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2108, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5453325', 'JTAC Qualification', NULL, '2022-07-22 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2109, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5454605', 'Air Assault Familiarization', NULL, '2022-07-23 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2110, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5445059', 'Pathfinder Qualification', NULL, '2022-07-23 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2111, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5457734', 'CoPilot Training and maybe qual', NULL, '2022-07-23 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2112, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5448757', 'NCO Meetings', NULL, '2022-07-23 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2113, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5441126', 'Operation Siren Song 1 (Rerun + Tweaks)', NULL, '2022-07-24 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2114, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5454789', 'Rotary Wing Logistical Training and potential Qual', NULL, '2022-07-25 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2115, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5454064', 'Basic Training', NULL, '2022-07-26 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2116, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5453542', 'EOD Training', NULL, '2022-07-26 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2117, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5454608', 'Air Assault Training Placeholder', NULL, '2022-07-27 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2118, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5454607', 'Operation Icarus - Air Assault FTX', NULL, '2022-07-28 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2119, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5454803', 'Fire Team Leading and Squad Leading FTX', NULL, '2022-07-29 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2120, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5448612', 'F/A-18 Familiarization Training [Cancelled]', NULL, '2022-07-29 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2121, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5455149', '[Cancelled]Basic Training', NULL, '2022-07-29 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2122, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5449671', '[RESCHEDULED] Operation Hobson\'s Rift P4', NULL, '2022-07-30 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2123, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5474663', 'GOTHIC SERPANT SAND TABLE', NULL, '2022-07-30 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2124, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5448758', 'NCO Meetings', NULL, '2022-07-30 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2125, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5454516', 'Operation Gothic Serpent Joint Op', NULL, '2022-07-31 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2126, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5449565', 'Side Op', NULL, '2022-08-01 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2127, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5480628', '[RESCHEDUALED] CLS With Homie and Doc Halladay', NULL, '2022-08-01 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2128, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5469889', '[Rescheduled] Echo Orientation', NULL, '2022-08-02 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2129, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5482623', 'Accelerated Basic Training', NULL, '2022-08-03 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2130, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5469890', 'Air Crew', NULL, '2022-08-03 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2131, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5458729', 'Operation COIN', NULL, '2022-08-04 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2132, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5477629', 'Basic Training', NULL, '2022-08-04 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2133, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5481830', 'Echo Orientation', NULL, '2022-08-05 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2134, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5483073', 'Operation Siren Song 2 RRC', NULL, '2022-08-05 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2135, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5481507', 'CLS with Homie and Doc Halladay', NULL, '2022-08-05 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2136, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5482022', 'Mech Quallification', NULL, '2022-08-06 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2137, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5482793', 'Fireteam FTX: Movement Maneuvers', NULL, '2022-08-06 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2138, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5448759', 'NCO Meetings', NULL, '2022-08-06 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2139, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5441128', 'Operation Siren Song 2', NULL, '2022-08-07 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2140, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5471073', 'Community Round Table', NULL, '2022-08-07 20:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2141, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5486019', '[Rescheduled] Operation Hazy Skies', NULL, '2022-08-08 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2142, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5492013', 'FTX - Practice some stuff', NULL, '2022-08-08 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2143, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5482078', '[Rescheduled TBD] EOD Training', NULL, '2022-08-08 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2144, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5482152', '[Cancelled]Pathfinder Bookwork', NULL, '2022-08-09 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2145, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5482153', '[Cancelled]Heavy Weapons School', NULL, '2022-08-10 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2146, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5495523', 'Accelerated Basic Training, by Special Request', NULL, '2022-08-10 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2147, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5495822', 'Server Reboot after Scheduled Events', NULL, '2022-08-10 04:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2148, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5494031', 'How to Zeus: Basics', NULL, '2022-08-10 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2149, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5488912', 'Operation Crimson Cinder P1', NULL, '2022-08-11 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2150, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5492002', '[Canceled] AIT 4 - CQB', NULL, '2022-08-12 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2151, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5490302', 'Operation Hazy Skies', NULL, '2022-08-12 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2152, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5495736', 'Jump Wings Training', NULL, '2022-08-12 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2153, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5492192', 'Echo Pow Wow', NULL, '2022-08-12 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2154, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5461278', 'Operation Hobson\'s Rift P4', NULL, '2022-08-13 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2155, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5497383', '17th Administrator Meeting', NULL, '2022-08-13 21:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2156, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5493139', 'RASP', NULL, '2022-08-14 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2157, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5494043', '17th Command Meeting', NULL, '2022-08-14 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2158, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5493764', 'Basic Training', NULL, '2022-08-15 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2159, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5496566', 'Pathfinder Bookwork', NULL, '2022-08-16 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2160, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5496589', 'Rotary Wing CAS Qual', NULL, '2022-08-16 21:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2161, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5496567', 'Heavy Weapons School', NULL, '2022-08-17 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2162, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5501504', 'Rotary Pilot Training', NULL, '2022-08-17 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2163, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5469480', 'Operation Saladin', NULL, '2022-08-18 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2164, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5493200', 'Convoy Operations Training [POSTPONED]', NULL, '2022-08-18 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2165, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5492019', '68W Training', NULL, '2022-08-19 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2166, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5497895', 'Coms Profiencey Training', NULL, '2022-08-20 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2167, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5458768', '[RESCHEDULED]Operating Restoring Hope', NULL, '2022-08-20 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2168, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5492001', 'AIT 1 - Fireteam positions', NULL, '2022-08-20 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2169, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5441129', 'Operation Siren Song 3', NULL, '2022-08-21 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2170, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5504589', 'Air Crew Training', NULL, '2022-08-21 19:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2171, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5493159', 'Operation Hazy Skies Pt.2', NULL, '2022-08-22 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2172, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5509478', 'Heli Hell', NULL, '2022-08-22 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2173, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5508371', 'Basic Training', NULL, '2022-08-24 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2174, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5513531', '[Rescheduled] Sniper Course', NULL, '2022-08-24 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2175, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5512862', 'Operation Limelight', NULL, '2022-08-25 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2176, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5513677', 'Rotary Flight Training [CANCELED]', NULL, '2022-08-25 20:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2177, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5513046', 'Master Free Fall', NULL, '2022-08-25 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2178, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5502188', 'Convoy Ops Training', NULL, '2022-08-26 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2179, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5513678', 'Sniper Course', NULL, '2022-08-26 21:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2180, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5519736', '17th Administrator Meeting', NULL, '2022-08-26 22:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2181, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5482250', 'Operation Hobson’s Rift P5', NULL, '2022-08-27 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2182, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5492004', 'AIT 2 - Battle Drills', NULL, '2022-08-27 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2183, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5534684', 'NCO Meeting', NULL, '2022-08-27 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2184, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5441130', 'Operation Siren Song 4', NULL, '2022-08-28 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2185, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5512005', 'Operation Hazy Skies Part 3', NULL, '2022-08-28 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2186, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5522500', 'Basic Training', NULL, '2022-08-29 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2187, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5496568', '{Rescheduled} Echo Mechanized Training', NULL, '2022-08-30 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2188, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5506590', 'CLS Training 2.0', NULL, '2022-08-30 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2189, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5536950', 'Accelerated Basic Training', NULL, '2022-08-30 01:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2190, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5506595', 'Advanced Triage and Mass Cas', NULL, '2022-08-31 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2191, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5504585', '[Rescheduled to 1 SEPT] Echo Mechanized Training', NULL, '2022-08-31 00:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2192, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5534954', 'Rotary Wing CAS Qual', NULL, '2022-08-31 21:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2193, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5509055', 'Operation Crimson Cinder P2', NULL, '2022-09-01 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2194, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5540402', 'Echo Mechanized Training', NULL, '2022-09-02 00:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2195, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5496569', '[Rescheduled to 3 SEPT] Echo Mechanized Qualificat', NULL, '2022-09-02 00:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2196, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5521552', 'Pathfinder Bookwork', NULL, '2022-09-02 03:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2197, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5540403', 'Echo Mechanized Qualification', NULL, '2022-09-03 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2198, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5505059', 'Operation Double Negative', NULL, '2022-09-03 00:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2199, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5544226', 'AIT 3 - MOUT', NULL, '2022-09-03 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2200, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5549346', 'NCO Meeting', NULL, '2022-09-03 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2201, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5441131', 'Operation Siren Song 5', NULL, '2022-09-04 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2202, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5536575', 'Basic Training ( Time Flexible 11AM EST - 8PM EST)', NULL, '2022-09-04 15:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2203, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5549611', 'Echo General Flight Training', NULL, '2022-09-04 20:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2204, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5538454', 'Operation Hazy Skies Pt 4', NULL, '2022-09-05 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2205, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5554729', 'Basic Training', NULL, '2022-09-05 19:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2206, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5554738', '[Cancelled] Echo Training Day', NULL, '2022-09-06 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2207, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5507652', 'Echo Training day', NULL, '2022-09-06 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2208, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5551425', 'Mobile artillery familiarization', NULL, '2022-09-06 21:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2209, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5513985', 'Operation Crisis Control', NULL, '2022-09-07 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2210, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5546619', 'Operation Perun', NULL, '2022-09-08 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2211, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5539591', 'Combat Dive Training', NULL, '2022-09-09 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2212, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5555245', 'SERVER PERFORMANCE VALIDTAION', NULL, '2022-09-09 01:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2213, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5548974', 'Convoy Operations Training', NULL, '2022-09-09 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2214, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5558979', '[Rescheduled]Operation Perun Finale', NULL, '2022-09-10 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2215, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5512003', '[Rescheduled] Operation Hazy Skies Part 4', NULL, '2022-09-10 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2216, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5560254', 'RTO Training/Bookwork', NULL, '2022-09-10 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2217, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5544227', 'AIT 4 - CQB', NULL, '2022-09-10 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2218, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5562345', '17th Administrator Meeting', NULL, '2022-09-10 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2219, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5552671', 'NCO Meeting', NULL, '2022-09-10 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2220, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5441132', 'Operation Siren Song 6', NULL, '2022-09-11 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2221, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5554471', 'Basic Training', NULL, '2022-09-11 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2222, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5562906', 'Operation Zero-Dark30', NULL, '2022-09-11 20:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2223, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5546559', 'Joint Training', NULL, '2022-09-12 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2224, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5563133', 'AJ\'s Script Test Drive', NULL, '2022-09-13 02:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2225, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5534683', 'Operation Clear Skies', NULL, '2022-09-14 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2226, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5458730', 'Operation Civil Rest', NULL, '2022-09-15 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2227, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5540859', 'Operation Hobson\'s Rift Finale P1', NULL, '2022-09-16 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2228, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5564033', 'Basic Training', NULL, '2022-09-16 19:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2229, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5585041', '1-on-1 Rotary Flight Training', NULL, '2022-09-16 20:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2230, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5537735', 'Operation Hobson’s Rift Finale P2', NULL, '2022-09-17 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2231, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5586237', 'NCO Meeting', NULL, '2022-09-17 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2232, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5454517', 'Operation Siren Song Finale', NULL, '2022-09-18 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2233, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5575076', 'How to Zeus 101: Basics', NULL, '2022-09-18 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2234, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5593342', 'Impromptu Basic Training', NULL, '2022-09-18 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2235, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5548660', '(Rescheduled) Iceberg spooky op (See link)', NULL, '2022-09-18 23:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2236, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5545857', 'CLS 2.0 Training', NULL, '2022-09-20 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2237, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5522550', 'Operation Close Call', NULL, '2022-09-21 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2238, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5560255', 'Operation Shadow Run', NULL, '2022-09-22 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2239, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5601654', 'mission testing', NULL, '2022-09-22 03:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2240, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5596181', 'Basic Training', NULL, '2022-09-22 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2241, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5554400', 'Land Navigation', NULL, '2022-09-23 00:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2242, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5600731', 'Rotary Logi Qual', NULL, '2022-09-23 22:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2243, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5557747', 'Operation Double Negative PT. 2', NULL, '2022-09-24 00:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2244, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605317', 'NCO Meeting', NULL, '2022-09-24 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2245, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5563221', 'Battalion Training FTX', NULL, '2022-09-25 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2246, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605468', 'Mission testing', NULL, '2022-09-25 15:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2247, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5600604', 'Operation Hornets Nest PT. 1', NULL, '2022-09-26 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2248, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5554482', '[RESCHEDULED] Basic Training', NULL, '2022-09-26 21:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2249, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5545856', 'Advanced Triage and Mass Cas Training', NULL, '2022-09-27 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2250, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5563208', 'Operation Broken Trust', NULL, '2022-09-28 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2251, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5601577', 'Rotary Close Air Support Qualification', NULL, '2022-09-28 00:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2252, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5606366', 'Basic Training', NULL, '2022-09-28 21:45:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2253, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5458731', 'Operation Argonne', NULL, '2022-09-29 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2254, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5607857', 'Fixed Wing CAS Qualification', NULL, '2022-09-29 21:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2255, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5592454', 'The Search for the Source (Blaze\'s Spooky op)', NULL, '2022-09-29 23:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2256, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5612840', 'Server Updates', NULL, '2022-09-30 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2257, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5519981', 'DAY IF NO SCHEDUELED ACTIVITY( THE REVOLUTION OP P', NULL, '2022-10-01 00:45:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2258, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605560', 'Basic Training (flex schedule)', NULL, '2022-10-01 15:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2259, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5606814', 'Basic Training', NULL, '2022-10-01 20:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2260, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5563222', 'RASP', NULL, '2022-10-02 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2261, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5593112', 'Demolitions Training', NULL, '2022-10-02 14:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2262, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605547', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-10-02 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2263, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5612209', 'IDF Training', NULL, '2022-10-03 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2264, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5507653', 'Echo Training Day', NULL, '2022-10-04 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2265, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5621822', 'Heli Hell', NULL, '2022-10-04 21:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2266, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5601099', 'Operation Title Defense', NULL, '2022-10-05 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2267, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5617648', 'Operation Black Sun', NULL, '2022-10-06 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2268, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5609176', 'F/A-18 Ordinance Training', NULL, '2022-10-06 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2269, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5621883', 'AIT 1 - Fire Team Positions', NULL, '2022-10-07 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2270, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5610508', 'AJ\'s Script Test Drive 2: Electric Boogaloo', NULL, '2022-10-07 02:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2271, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5635406', 'Operation Obscura', NULL, '2022-10-08 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2272, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5635226', 'Basic Training', NULL, '2022-10-08 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2273, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5606737', '[Canceled] 17th Liberation Ops', NULL, '2022-10-08 00:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2274, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5637484', 'NCO Meeting', NULL, '2022-10-08 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2275, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630958', 'THE END GAME: A TYRONE SAGA - Part 1', NULL, '2022-10-09 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2276, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605548', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-10-09 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2277, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5609173', '17th Command Meeting', NULL, '2022-10-10 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2278, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5634666', 'Basic training', NULL, '2022-10-10 22:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2279, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5641132', 'Accelerated Basic (After CMD Meeting)', NULL, '2022-10-11 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2280, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5622411', '[Cancelled] FTX Placeholder', NULL, '2022-10-11 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2281, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5635411', 'Heli Hell', NULL, '2022-10-11 21:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2282, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605544', 'Operation Injustice', NULL, '2022-10-12 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2283, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5622429', 'JTAC Bookwork / Practice', NULL, '2022-10-13 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2284, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5641521', 'Operation Mandate', NULL, '2022-10-13 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2285, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5622073', 'AIT 2 - Battle Drills and more', NULL, '2022-10-14 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2286, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5613104', '[Cancelled] Jaeger Op Placeholder', NULL, '2022-10-15 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2287, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5647518', 'Anti Armor School', NULL, '2022-10-15 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2288, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5643088', 'Jump Wings Training', NULL, '2022-10-15 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2289, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630959', 'THE END GAME: A TYRONE SAGA - Part 2', NULL, '2022-10-16 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2290, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5653503', 'Basic Training', NULL, '2022-10-16 16:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2291, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605549', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-10-16 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2292, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5635567', 'Blaze\'s spooky op (ICEBERG', NULL, '2022-10-17 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2293, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5659773', 'Master Free Fall class', NULL, '2022-10-18 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2294, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630907', 'Operation Title Defense Phase 2', NULL, '2022-10-19 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2295, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5659774', '[Rescheduled] Combat Diver', NULL, '2022-10-19 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2296, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5640843', 'Operation Guardian Angel', NULL, '2022-10-20 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2297, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5622108', 'AIT 3 - MOUT', NULL, '2022-10-21 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2298, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5641245', 'Basic training', NULL, '2022-10-21 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2299, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5652395', 'CQB Workshop', NULL, '2022-10-21 21:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2300, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5622842', 'Operation Restoring Hope', NULL, '2022-10-22 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2301, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5669463', 'Standup DEMO / EOD', NULL, '2022-10-22 00:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2302, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5656228', '[Rescheduled] JTAC bookwork / Qual [Rescheduled]', NULL, '2022-10-22 20:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2303, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5668976', '17th Administrator Meeting/Training.', NULL, '2022-10-22 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2304, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5669097', 'NCO Meeting', NULL, '2022-10-22 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2305, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630960', 'THE END GAME: A TYRONE SAGA - Part 3', NULL, '2022-10-23 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2306, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5650702', 'Whitelist Map Vote Goes Up', NULL, '2022-10-23 05:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2307, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605550', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-10-23 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2308, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5619533', '[CANCELLED] Iceberg - Operation Olympic Recovery', NULL, '2022-10-25 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2309, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5663338', '[Cancelled] Combat Diver', NULL, '2022-10-25 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2310, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5648009', 'CLS', NULL, '2022-10-26 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2311, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5677018', 'Basic Training', NULL, '2022-10-26 21:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2312, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5638765', 'Operation Devil\'s Triton', NULL, '2022-10-27 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2313, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5622347', 'AIT 4 - CQB', NULL, '2022-10-28 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2314, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5679063', 'Basic Training EU/ASIA', NULL, '2022-10-28 18:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2315, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5676936', 'Sniper Course', NULL, '2022-10-28 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2316, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5640097', 'Ranger Training', NULL, '2022-10-29 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2317, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5671637', 'Ranger Training', NULL, '2022-10-29 16:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2318, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630961', 'THE END GAME: A TYRONE SAGA - Part 4', NULL, '2022-10-30 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2319, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5650703', 'Witelist Map Vote Closed', NULL, '2022-10-30 05:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2320, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5677707', 'Master Free Fall Course', NULL, '2022-10-31 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2321, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5507654', '[Cancelled] Echo Training Day', NULL, '2022-11-01 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2322, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5672329', 'OPERATION SNAKEBITE', NULL, '2022-11-01 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2323, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5677461', 'Mechanized Training', NULL, '2022-11-02 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2324, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5694251', 'Basic Training', NULL, '2022-11-02 21:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2325, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5638456', '[Cancelled] Raccoon Op Placeholder', NULL, '2022-11-03 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2326, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5696178', 'Eagle Op (In place of Racoon)', NULL, '2022-11-03 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2327, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5677843', 'Pathfinder Qualification', NULL, '2022-11-03 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2328, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5668974', 'Triage & Mass Cas Advanced Training', NULL, '2022-11-04 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2329, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5652365', 'FTX: Bounding Battle Buddies', NULL, '2022-11-05 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2330, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5676351', '[Canceled] JTAC/CAS Practice', NULL, '2022-11-05 01:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2331, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5674057', 'Ranger Training', NULL, '2022-11-05 16:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2332, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630962', 'RASP', NULL, '2022-11-06 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2333, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '4718112', 'End Daylight saving time', NULL, '2022-11-06 05:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2334, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605556', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-11-06 18:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2335, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5694252', '[Time reschedule] Pathfinder Qualification', NULL, '2022-11-08 02:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2336, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5728511', '[TIME RESCHEDULED] Rotary Logi Training + Qual', NULL, '2022-11-08 20:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2337, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5693021', 'Mechanized Qual', NULL, '2022-11-09 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2338, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5691067', 'Operation Island Sun', NULL, '2022-11-10 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2339, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5696082', '68 Whiskey', NULL, '2022-11-11 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2340, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5728512', '[TIME RESCHEDULE] Copilot Training', NULL, '2022-11-11 17:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2341, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5727274', 'Accelerated Basic Training', NULL, '2022-11-11 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2342, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5698046', 'Advanced UAV School', NULL, '2022-11-12 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2343, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5670803', 'Operation Red Dust', NULL, '2022-11-12 02:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2344, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5674060', 'Ranger Training', NULL, '2022-11-12 17:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2345, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5727232', 'Basic Training', NULL, '2022-11-12 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2346, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5727424', '17th Command Meeting', NULL, '2022-11-12 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2347, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630966', 'THE END GAME: A TYRONE SAGA - Part 5', NULL, '2022-11-13 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2348, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605551', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-11-13 18:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2349, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5702414', 'Echo Orientation', NULL, '2022-11-16 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2350, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5699760', 'Operation Red Sky', NULL, '2022-11-17 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2351, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5698621', '[Cancelled] Air to Air training', NULL, '2022-11-17 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2352, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5727234', 'Basic Training', NULL, '2022-11-17 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2353, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5754366', 'Accelerated Basic', NULL, '2022-11-18 02:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2354, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5670434', 'Operation Green Blitz', NULL, '2022-11-19 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2355, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5674062', 'Ranger Training', NULL, '2022-11-19 17:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2356, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764667', 'NCO Meeting', NULL, '2022-11-20 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2357, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630967', 'THE END GAME: A TYRONE SAGA - Part 6', NULL, '2022-11-20 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2358, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605553', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-11-20 18:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2359, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5727236', 'Basic Training', NULL, '2022-11-22 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2360, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5741601', 'Heavy Weapons School', NULL, '2022-11-23 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2361, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5642818', 'Operation Golden Rise', NULL, '2022-11-24 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2362, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5763458', 'Convoy Operations Training [RESCHEDULED]', NULL, '2022-11-25 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2363, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5736365', 'Operation Road to Hell', NULL, '2022-11-26 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2364, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764666', 'NCO Meeting', NULL, '2022-11-27 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2365, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630968', 'THE END GAME: A TYRONE SAGA - Part 7', NULL, '2022-11-27 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2366, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605554', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-11-27 18:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2367, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5776786', 'Bradley Combat Ex', NULL, '2022-11-30 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2368, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5778871', 'Basic Training', NULL, '2022-11-30 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2369, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5638457', 'Operation Bleeding Giant', NULL, '2022-12-01 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2370, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5778865', 'Radio Telephone Operator (RTO) Training', NULL, '2022-12-01 20:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2371, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5756755', 'Advanced Fireteam Training', NULL, '2022-12-02 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2372, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5670445', 'Operation Hobson\'s Reflect - Part 1', NULL, '2022-12-03 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2373, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764668', 'NCO Meeting', NULL, '2022-12-04 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2374, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630969', 'THE END GAME: A TYRONE SAGA - Part 8', NULL, '2022-12-04 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2375, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605557', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-12-04 18:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2376, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5778867', 'JTAC Training/Practice', NULL, '2022-12-06 01:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2377, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5821722', 'RTO training and qualification', NULL, '2022-12-06 20:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2378, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5819465', 'Pointman Training', NULL, '2022-12-07 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2379, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5819484', 'Basic Training [TIME TBD]', NULL, '2022-12-07 21:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2380, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5820146', 'Operation Power Change', NULL, '2022-12-08 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2381, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5818247', 'Critical Skills Training: MOUT/CQB (POSTPONED)', NULL, '2022-12-08 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2382, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5813239', '[CANCELED] Advanced Infantry Practice', NULL, '2022-12-09 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2383, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5768880', 'CLS Training-CANCELLED', NULL, '2022-12-09 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2384, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5776760', 'Air / Ground / Controller / Training', NULL, '2022-12-09 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2385, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5822288', 'Sniper Course', NULL, '2022-12-09 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2386, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5757486', 'Operation Tortuga', NULL, '2022-12-10 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2387, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764669', 'NCO Meeting', NULL, '2022-12-11 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2388, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5819470', 'Battalion Training FTX', NULL, '2022-12-11 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2389, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605555', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-12-11 18:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2390, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630970', 'Community Round Table', NULL, '2022-12-11 21:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2391, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5630971', 'NO OFFICIAL EVENTS FOR HOLIDAY BREAK', NULL, '2022-12-12 06:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2392, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5831512', '[CANCELLED] Rotary Logi Qual', NULL, '2022-12-12 22:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2393, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5827625', 'Basic Training', NULL, '2022-12-12 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2394, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5827649', 'Fixed wing basics training', NULL, '2022-12-14 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2395, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5826031', 'Operation White Noise', NULL, '2022-12-15 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2396, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5768884', 'Triage & Mass Cas Advanced Training', NULL, '2022-12-16 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2397, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5826592', 'Fixed Wing CAS Training [Cancelled]', NULL, '2022-12-17 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2398, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5840582', 'Virtual Leadership Training', NULL, '2022-12-17 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2399, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5844304', 'UNOFFICAL MOB THE PERSISTENT SERVER NIGHT', NULL, '2022-12-18 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2400, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605558', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-12-18 18:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2401, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5845237', 'Basic Training', NULL, '2022-12-18 23:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2402, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5776768', 'CLS Training', NULL, '2022-12-20 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2403, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5821920', '68W Training', NULL, '2022-12-21 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2404, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5774172', 'Operation Dark Omen', NULL, '2022-12-22 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2405, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5827739', 'Operation Time Frame', NULL, '2022-12-23 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2406, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5850159', 'UNOFFICAL MOB THE PERSISTENT SERVER NIGHT', NULL, '2022-12-24 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2407, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5844406', 'JTAC Qualification', NULL, '2022-12-24 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2408, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5605559', 'No 17th Events [ ICEBERG BLOCK]', NULL, '2022-12-25 18:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2409, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5844306', 'UNOFFICAL MOB THE PERSISTENT SERVER NIGHT', NULL, '2022-12-31 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2410, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5852466', 'Virtual Leadership Training P2', NULL, '2023-01-04 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2411, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5858999', 'OPERATION SHADOW RUN', NULL, '2023-01-05 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2412, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5852467', 'Virtual Leadership Training P3', NULL, '2023-01-07 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2413, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764673', 'NCO Meeting', NULL, '2023-01-08 00:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2414, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5819471', 'RASP', NULL, '2023-01-08 01:00:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2415, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5827665', '17th New Command Vote', NULL, '2023-01-08 21:30:00', '2023-06-01 04:46:22', '2023-06-01 04:46:22', NULL, NULL), - (2416, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5871989', '17th Modpack Update', NULL, '2023-01-10 03:30:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2417, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5869316', 'Demolitions Training', NULL, '2023-01-11 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2418, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5869898', 'Operation Jungle Storm', NULL, '2023-01-12 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2419, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5873968', 'Basic Training', NULL, '2023-01-14 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2420, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764677', 'NCO Meeting', NULL, '2023-01-15 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2421, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5871984', 'Operation Gargoyle Pt. 1', NULL, '2023-01-15 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2422, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5875044', 'combat air logistics training', NULL, '2023-01-17 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2423, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5873970', 'Basic Training', NULL, '2023-01-18 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2424, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5876354', 'Operation Cold Current', NULL, '2023-01-19 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2425, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5876309', 'echo smoke sesh', NULL, '2023-01-19 01:30:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2426, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5883502', '60mm Mortar Familiarization', NULL, '2023-01-20 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2427, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5876234', 'Operation Pinecone Express', NULL, '2023-01-21 00:30:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2428, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5883546', 'Command Pre-Op Planning', NULL, '2023-01-21 03:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2429, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5881740', 'Echo Orientation', NULL, '2023-01-21 19:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2430, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764676', 'NCO Meeting', NULL, '2023-01-22 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2431, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5879675', 'Operation Gargoyle Pt. 2', NULL, '2023-01-22 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2432, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5885295', '[RESCHEDULED] How to Zeus 101', NULL, '2023-01-22 05:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2433, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5887890', 'RTO Training', NULL, '2023-01-22 23:30:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2434, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5888693', 'How to Zeus 101', NULL, '2023-01-23 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2435, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5873973', 'Basic Training', NULL, '2023-01-24 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2436, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5880939', 'AIT 1 - Fire Team Positions', NULL, '2023-01-25 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2437, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5893260', 'Operation Serpent Hunt', NULL, '2023-01-26 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2438, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5887908', 'Operation Highway to Hell pt.2', NULL, '2023-01-28 00:30:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2439, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764674', 'NCO Meeting', NULL, '2023-01-29 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2440, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5879676', 'Operation Gargoyle Pt. 2', NULL, '2023-01-29 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2441, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5898762', 'Campaign Mission testing', NULL, '2023-01-29 21:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2442, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5877255', 'Basic Training', NULL, '2023-01-29 23:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2443, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5893001', 'Persistent Ops', NULL, '2023-01-30 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2444, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5888598', '[CANCELLED] Master Free Fall Training', NULL, '2023-01-31 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2445, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5899826', 'Hotwire Ftx AIT', NULL, '2023-01-31 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2446, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5898447', 'Mechanized Training', NULL, '2023-02-01 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2447, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5901055', 'Basic Training Requested Time', NULL, '2023-02-01 00:30:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2448, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5901263', 'AJ\'s Rough Water', NULL, '2023-02-02 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2449, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5902612', 'Private testing', NULL, '2023-02-03 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2450, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5901100', 'Basic Training', NULL, '2023-02-03 20:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2451, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5901331', 'Land Nav Training', NULL, '2023-02-03 23:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2452, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5901108', 'OPERATION BUCKAROO BONZAI', NULL, '2023-02-04 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2453, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5902254', 'RRC Operation "To Own the Skies"', NULL, '2023-02-04 21:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2454, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764675', 'NCO Meeting', NULL, '2023-02-05 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2455, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5901126', 'Operation Gargoyle Pt. 3 "Distant Thunder"', NULL, '2023-02-05 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2456, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5904479', 'Demolition Training', NULL, '2023-02-05 22:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2457, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5877254', '[Rescheduled] Basic Training', NULL, '2023-02-05 23:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2458, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5901606', 'Basic Training', NULL, '2023-02-06 00:30:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2459, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5904716', '[Cancelled] Pathfinder Bookwork', NULL, '2023-02-06 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2460, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5893000', 'CLS', NULL, '2023-02-07 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2461, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5909761', '17th Arma Servers Offline for New Install.', NULL, '2023-02-07 03:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2462, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5880940', 'AIT - 2 Battle Drills and more', NULL, '2023-02-08 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2463, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5900199', 'Operation Tundra Tension PT 1', NULL, '2023-02-09 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2464, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5910300', 'Pathfinder Bookwork', NULL, '2023-02-10 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2465, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5911180', 'JTAC training and qual', NULL, '2023-02-10 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2466, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5903239', '[Cancelled] Coping with AA', NULL, '2023-02-10 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2467, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5906541', '[RESCHEDULED] General Individualized Rotary Traini', NULL, '2023-02-11 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2468, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5901323', 'Operation Tannenberg', NULL, '2023-02-11 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2469, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764688', 'NCO Meeting', NULL, '2023-02-12 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2470, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5901128', 'Operation Gargoyle Pt 4', NULL, '2023-02-12 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2471, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5911860', 'AIT3', NULL, '2023-02-12 17:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2472, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5894218', '17th command meeting', NULL, '2023-02-12 20:30:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2473, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5910302', '[Cancelled] Anti Armor School', NULL, '2023-02-13 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2474, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5909655', 'Heli Hell', NULL, '2023-02-14 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2475, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5914091', 'Basic Training', NULL, '2023-02-14 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2476, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5910522', 'Operation Sand Viper - PT-1', NULL, '2023-02-16 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2477, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5905018', '68W Training', NULL, '2023-02-17 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2478, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5909808', 'Rotary Practice', NULL, '2023-02-17 21:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2479, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5900197', 'Osprey Down', NULL, '2023-02-18 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2480, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764685', 'Cadre Meeting', NULL, '2023-02-19 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2481, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5916219', 'RASP', NULL, '2023-02-19 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2482, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5931095', 'Demolitions Training', NULL, '2023-02-19 16:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2483, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5932627', 'Sniper Training', NULL, '2023-02-19 19:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2484, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5930436', 'mission maker meeting', NULL, '2023-02-19 22:30:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2485, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5935303', 'Basic Training', NULL, '2023-02-20 19:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2486, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5932628', '[Cancelled] Master FreeFall', NULL, '2023-02-21 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2487, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5880942', 'AIT - 3 MOUT', NULL, '2023-02-22 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2488, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5900200', 'Operation Tundra Tension P2', NULL, '2023-02-23 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2489, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5936691', 'Basic Training', NULL, '2023-02-23 22:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2490, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5932619', 'Air Assault -', NULL, '2023-02-24 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2491, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5899928', 'Operation Holy Grail', NULL, '2023-02-25 00:30:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2492, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764684', 'NCO Meeting', NULL, '2023-02-26 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2493, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5936234', 'Operation Gargoyle Part 5', NULL, '2023-02-26 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2494, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5959584', 'MISSION FILE TESTING', NULL, '2023-02-26 21:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2495, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5933462', 'Demolitions Training', NULL, '2023-02-26 22:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2496, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5933464', 'EOD Training/Qual', NULL, '2023-02-27 00:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2497, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5959751', 'Fixed Wing CAS Training', NULL, '2023-02-28 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2498, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5914092', 'Basic Training', NULL, '2023-02-28 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2499, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5965230', 'Arme 3 Server Updates (', NULL, '2023-02-28 23:30:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2500, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5959755', 'Master FreeFall', NULL, '2023-03-01 01:00:00', '2023-06-01 04:46:23', '2023-06-01 04:46:23', NULL, NULL), - (2592, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5959397', 'CLS Training', NULL, '2023-03-01 01:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2594, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5962085', 'Combat Diver', NULL, '2023-03-01 23:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2595, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5910526', 'OP Hide N Seek', NULL, '2023-03-02 01:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2596, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5965937', 'Mechanized Training', NULL, '2023-03-02 23:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2597, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5932620', 'Jump School', NULL, '2023-03-03 01:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2598, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5967014', 'Operation Tundra Tension P3', NULL, '2023-03-04 01:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2599, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764678', 'NCO Meeting', NULL, '2023-03-05 00:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2600, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5962132', 'Operation Gargoyle Part 6', NULL, '2023-03-05 01:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2601, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5966307', 'mission maker kick back', NULL, '2023-03-05 22:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2602, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5958351', 'Air Crew Training/Qual', NULL, '2023-03-06 00:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2603, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5962233', 'Command Meeting', NULL, '2023-03-06 03:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2604, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5972821', 'Basic Training', NULL, '2023-03-06 23:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2605, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5961684', 'Coms Skill Training.', NULL, '2023-03-07 01:30:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2606, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5880943', 'AIT 4 - CQB', NULL, '2023-03-08 01:00:00', '2023-06-01 04:46:37', '2023-06-01 04:46:37', NULL, NULL), - (2607, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5899930', 'Operation Chlorophyll', NULL, '2023-03-09 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2608, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5975052', 'Rotary Pilot - Logistics Qual', NULL, '2023-03-09 03:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2609, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5972763', 'NCO Leadership Training Course', NULL, '2023-03-10 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2610, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5904523', 'DAY OF NO SCHEDULED ACTOVITY', NULL, '2023-03-10 06:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2611, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5960055', '(CANCALLED DUE TRO DAY OF NO SCHEDUELED ACTIVITY)', NULL, '2023-03-11 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2612, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5981515', 'Operation Field Day', NULL, '2023-03-11 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2613, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5973267', 'RTO Training and Qual', NULL, '2023-03-11 21:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2614, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5977129', 'RRC Mission', NULL, '2023-03-11 22:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2615, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764682', 'NCO Meeting', NULL, '2023-03-12 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2616, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5962133', 'Operation Gargoyle Part 7', NULL, '2023-03-12 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2617, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5983042', 'ECHO SMOKE SESH', NULL, '2023-03-12 22:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2618, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5974016', '[CANCELLED] Anti Armor School', NULL, '2023-03-12 23:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2619, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5975054', 'Rotary Pilot - CAS Qual', NULL, '2023-03-13 02:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2620, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5985650', 'Basic Training.', NULL, '2023-03-13 19:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2621, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5972815', 'Co-Pilot Training & Qual', NULL, '2023-03-13 22:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2622, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5962091', 'Basic Training', NULL, '2023-03-14 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2623, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5993515', 'Anti Armor', NULL, '2023-03-15 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2624, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5910528', 'OPERATION FROSTBITE', NULL, '2023-03-16 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2625, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5932621', 'Jump Master', NULL, '2023-03-17 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2626, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5900203', 'Operation Tundra Tension P4', NULL, '2023-03-18 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2627, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5997410', 'Server down for MODPACK SWITCH FOR TESTING', NULL, '2023-03-18 03:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2628, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764691', 'NCO Meeting', NULL, '2023-03-18 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2629, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5962134', 'Operation Georgia Black Snake Pt. 1', NULL, '2023-03-19 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2630, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6030009', 'Admin Prepper', NULL, '2023-03-19 22:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2631, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5993777', 'Stitchin\' & Bitchin\'', NULL, '2023-03-19 22:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2632, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5993776', 'NCO Leadership Training Course', NULL, '2023-03-20 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2633, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5993765', 'Basic Training', NULL, '2023-03-20 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2634, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5998939', '[Cancelled] Ranger Training - Assaulting Fortified', NULL, '2023-03-21 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2635, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5993516', 'Advanced UAV School', NULL, '2023-03-22 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2636, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5900202', 'Operation Tundra Tension Part 5', NULL, '2023-03-23 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2637, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5899931', '(REMOVED)Wednesday op', NULL, '2023-03-23 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2638, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5993758', 'Pathfinder Qualification', NULL, '2023-03-24 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2639, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5965933', 'OPERATION DESERT THUNDER', NULL, '2023-03-25 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2640, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764687', 'NCO Meeting', NULL, '2023-03-25 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2641, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5962317', 'RASP', NULL, '2023-03-26 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2642, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6039339', 'Server Reboot / Updates', NULL, '2023-03-26 05:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2643, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5995351', 'Basic Training', NULL, '2023-03-27 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2644, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6043041', 'Echo Orientatiom', NULL, '2023-03-28 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2645, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6040066', 'Pathfinder Bookwork', NULL, '2023-03-28 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2646, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6036032', '[Cancelled] Modpack testing at a less absurd hour', NULL, '2023-03-28 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2647, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6042717', 'Ranger Training - Assaulting Fortified Compounds/P', NULL, '2023-03-29 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2648, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5972529', 'Operation Humanitarian', NULL, '2023-03-30 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2649, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5993778', '68W Training', NULL, '2023-03-31 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2650, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6045684', 'Operation Red Shark', NULL, '2023-04-01 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2651, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5972829', '[Canceled] FTL FTX', NULL, '2023-04-01 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2652, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764689', 'NCO Meeting', NULL, '2023-04-01 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2653, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6028191', 'Operation Georgia Black Snake Pt. 2', NULL, '2023-04-02 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2654, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6047354', 'echo smoke session', NULL, '2023-04-02 20:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2655, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6048742', '[Canceled] meeting with ocean and command', NULL, '2023-04-03 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2656, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6050667', 'Mechanized Training', NULL, '2023-04-04 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2657, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6048955', 'Basic Training', NULL, '2023-04-04 21:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2658, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6044838', 'AIT-1', NULL, '2023-04-05 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2659, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6053195', 'Operation Brutus', NULL, '2023-04-06 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2660, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6052569', 'Document Rework Day', NULL, '2023-04-06 17:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2661, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6050663', 'JTAC Bookwork', NULL, '2023-04-07 00:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2662, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6051604', 'BCO Open Office hours', NULL, '2023-04-07 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2663, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6055808', 'Operation Free fall', NULL, '2023-04-08 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2664, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6052107', '[CANCELED]Master Free Fall', NULL, '2023-04-08 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2665, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6055291', 'Basic Training', NULL, '2023-04-08 20:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2666, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764690', 'NCO Meeting', NULL, '2023-04-08 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2667, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6050104', 'OPERATION BURNING PHOENIX', NULL, '2023-04-09 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2668, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5962318', '[Rescheduled] Community Round Table April 8th 2023', NULL, '2023-04-09 20:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2669, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6055993', 'Arma Server Mod Updates', NULL, '2023-04-10 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2670, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6052056', 'CLS Training', NULL, '2023-04-11 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2671, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6059290', '[Rescheduled] Co-Pilot Training', NULL, '2023-04-11 22:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2672, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6056916', 'OPERATION BLACK DAGGER', NULL, '2023-04-13 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2673, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6061099', 'ACO Candidate Planning', NULL, '2023-04-14 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2674, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6040068', 'Basic Training', NULL, '2023-04-14 19:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2675, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6053198', 'Operation Hobson\'s Reflect - Part 2', NULL, '2023-04-15 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2676, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6065813', 'Echo Op Practice - Air Assault and Formation Flyin', NULL, '2023-04-15 03:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2677, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6061171', 'CoPilot Qualification - EU friendly edition', NULL, '2023-04-15 08:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2678, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6060337', '[CANCELLED]Copilot Training', NULL, '2023-04-15 22:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2679, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764679', 'NCO Meeting', NULL, '2023-04-15 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2680, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6060328', 'Operation Wish You Were Here', NULL, '2023-04-16 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2681, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6056085', '17th Community Round table', NULL, '2023-04-16 20:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2682, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6066316', 'Mechanized Combat Training', NULL, '2023-04-17 23:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2683, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6044839', 'AIT-2', NULL, '2023-04-19 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2684, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6068094', 'JTAC/CAS Hip pocket training', NULL, '2023-04-19 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2685, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6067396', 'Basic Training', NULL, '2023-04-19 21:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2686, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6069093', 'Operation Killzone', NULL, '2023-04-20 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2687, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6062934', 'Operation Jungle Maniac RRC 1st Operation', NULL, '2023-04-21 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2688, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6052057', '[CANCELLED] Triage & Mass Cas Advanced Training', NULL, '2023-04-21 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2689, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6061037', 'OPERATION RED HAMMER', NULL, '2023-04-22 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2690, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6067437', 'JTAC Qualification', NULL, '2023-04-22 00:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2691, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764680', 'NCO Meeting', NULL, '2023-04-22 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2692, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6068252', 'Operation Jungle Maniac 1', NULL, '2023-04-23 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2693, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6067457', 'NCO Leadership Course', NULL, '2023-04-23 18:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2694, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6069372', 'Basic Training', NULL, '2023-04-24 19:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2695, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6071943', 'Demo Training', NULL, '2023-04-26 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2696, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6072398', 'Meetings with iceberg ken', NULL, '2023-04-26 00:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2697, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6073023', 'Missions with KEN', NULL, '2023-04-27 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2698, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6072941', 'Basic Training', NULL, '2023-04-27 19:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2699, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6068078', 'NCO Leadership Course', NULL, '2023-04-28 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2700, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6072453', 'Demo Training', NULL, '2023-04-28 02:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2701, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6052605', 'Operation Hidden Dark', NULL, '2023-04-29 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2702, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6071944', 'EOD Training', NULL, '2023-04-29 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2703, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764683', 'NCO Meeting', NULL, '2023-04-29 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2704, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6068253', 'Operation Jungle Maniac 2', NULL, '2023-04-30 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2705, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6075556', 'ECHO SMOKE SESH', NULL, '2023-04-30 20:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2706, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6070780', '68 whiskey', NULL, '2023-05-02 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2707, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6079840', 'Heavy Weapons School', NULL, '2023-05-02 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2708, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6044840', '[Canceled] AIT-3', NULL, '2023-05-03 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2709, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6072528', 'Forward Observer Bookwork', NULL, '2023-05-03 02:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2710, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6083398', 'Operation Postcard', NULL, '2023-05-04 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2711, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6070142', '(Canceled) RRC FTX', NULL, '2023-05-05 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2712, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6061039', 'OPERATION SCARLET SPEAR', NULL, '2023-05-06 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2713, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6088220', 'Mission for mod testing', NULL, '2023-05-06 03:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2714, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764681', 'NCO Meeting', NULL, '2023-05-06 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2715, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6068254', 'Operation Jungle Maniac 3', NULL, '2023-05-07 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2716, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6076027', 'Sniper Course', NULL, '2023-05-08 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2717, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6080489', 'Triage & Mass Cas Advanced Training', NULL, '2023-05-09 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2718, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6092644', 'Mission for mod testing: Part 2', NULL, '2023-05-09 02:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2719, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6093692', '[CANCELED] Moneyshot Training Day', NULL, '2023-05-10 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2720, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6097684', 'Operation Delayed Flight', NULL, '2023-05-11 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2721, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6096374', '[Cancelled] Mechanized Training', NULL, '2023-05-11 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2722, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6097442', 'Operation Scarlet Letter', NULL, '2023-05-12 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2723, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6097361', 'Basic Trainig', NULL, '2023-05-12 21:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2724, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6076020', 'FTX - Identifying and Locating IDF', NULL, '2023-05-13 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2725, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764692', 'NCO Meeting', NULL, '2023-05-13 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2726, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6093504', 'RASP', NULL, '2023-05-14 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2727, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6076415', 'MIssion maker smoke sesh', NULL, '2023-05-14 20:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2728, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6098762', '17th Command Meeting', NULL, '2023-05-14 21:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2729, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6104949', 'Fixed Wing Logistics Training/(Maybe) Qual', NULL, '2023-05-15 22:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2730, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6093445', '[RESCHEDULED TO TUESDAY] Basic Training', NULL, '2023-05-15 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2731, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6102837', 'Advanced UAV School', NULL, '2023-05-16 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2732, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6044842', 'AIT-4', NULL, '2023-05-17 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2733, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6105573', 'Basic Training [RESCHEDULED FROM MONDAY]', NULL, '2023-05-17 00:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2734, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6101362', 'Operation Broken Leg', NULL, '2023-05-18 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2735, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6103750', 'Echo Rotary Training (Not a Qual)', NULL, '2023-05-18 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2736, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6103752', 'Alpha Meeting', NULL, '2023-05-19 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2737, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6052606', 'Operation Black Blaze', NULL, '2023-05-20 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2738, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6108350', 'Operation Jungle Maniac 4 RRC Scouting', NULL, '2023-05-20 20:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2739, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '5764686', 'NCO Meeting', NULL, '2023-05-20 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2740, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6097414', 'Operation Jungle Maniac Pt 4', NULL, '2023-05-21 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2741, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6106002', 'RTO Training and (possible) Qualification', NULL, '2023-05-22 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2742, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6093473', 'Basic Training', NULL, '2023-05-22 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2743, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6115612', 'Admin Smoke Sesh', NULL, '2023-05-22 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2744, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6115611', 'DEMO Training', NULL, '2023-05-24 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2745, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6114163', 'Combat Life Saver (CLS) Training', NULL, '2023-05-24 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2746, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6073678', '17th Recruitment Follow up', NULL, '2023-05-24 01:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2747, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6107312', 'The Killing Fields', NULL, '2023-05-25 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2748, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6114521', 'Mechanized Training', NULL, '2023-05-26 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2749, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6067245', 'Op Stille Nacht', NULL, '2023-05-27 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2750, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6068280', 'Operation Jungle Maniac 5', NULL, '2023-05-28 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2751, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6117127', 'Virtual Leadership Course', NULL, '2023-05-29 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2752, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6122711', 'Mechanized Training', NULL, '2023-05-29 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2753, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6115629', '[Moved 1 Hour] Land Nav', NULL, '2023-05-30 01:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2754, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6114677', 'Foward Observer', NULL, '2023-05-31 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2755, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6120034', 'Operation No Time', NULL, '2023-06-01 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2756, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6118068', 'Basic Training', NULL, '2023-06-01 19:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2757, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6119877', 'NCO Leadership Course', NULL, '2023-06-02 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2758, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6127961', 'Operation Jungle Maniac Finale RRC Deployment', NULL, '2023-06-02 19:30:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2759, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6068281', 'Operation Jungle Maniac 6', NULL, '2023-06-04 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2760, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6125227', 'Triage & Mass Cas Training', NULL, '2023-06-09 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2761, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6052607', 'Flex op', NULL, '2023-06-10 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2762, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6101361', 'Operation Usurpers Throne', NULL, '2023-06-11 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2763, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6110217', 'NCO Meeting', NULL, '2023-06-17 23:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2764, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6101169', 'Conflict: Delayed Censor', NULL, '2023-06-18 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2765, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6099988', 'Battalion FTX', NULL, '2023-06-25 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (2766, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6107314', 'A Cheeks Enthusiast Presents: Gorka Boyz', NULL, '2023-07-02 00:00:00', '2023-06-01 04:46:38', '2023-06-01 04:46:38', NULL, NULL), - (3025, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6132543', 'NCO Meeting', NULL, '2023-06-03 23:00:00', '2025-02-22 17:31:07', '2025-02-22 17:31:07', NULL, NULL), - (3027, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6130657', 'Operation Quicktime Event', NULL, '2023-06-04 23:00:00', '2025-02-22 17:31:07', '2025-02-22 17:31:07', NULL, NULL), - (3028, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6137989', 'The Battle of Malden', NULL, '2023-06-08 00:00:00', '2025-02-22 17:31:07', '2025-02-22 17:31:07', NULL, NULL), - (3030, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6139831', 'Basic Training', NULL, '2023-06-09 21:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3031, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6135924', '17th Command Meeting', NULL, '2023-06-09 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3034, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6144740', 'Private ops server down for testing', NULL, '2023-06-12 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3035, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6139059', 'CLS/Combat lifesaver', NULL, '2023-06-13 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3036, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6132598', 'IDF Training (Rescheduled)', NULL, '2023-06-13 21:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3037, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6143012', 'Convoy Knowlege and Training', NULL, '2023-06-15 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3038, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6144741', 'Private aops server down for testing', NULL, '2023-06-16 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3041, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6146559', 'IDF Training (Reschedule)', NULL, '2023-06-18 22:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3042, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6150864', 'The rescue of CPT Hilmar', NULL, '2023-06-19 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3043, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6149451', 'IDF Training', NULL, '2023-06-19 22:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3044, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6149551', 'NCO Leadership Course', NULL, '2023-06-20 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3045, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6150479', 'Stack-Set-Breach Training', NULL, '2023-06-21 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3046, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6150480', 'Pointman Training', NULL, '2023-06-21 22:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3047, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6156213', 'Air Crew Training', NULL, '2023-06-22 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3048, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6155491', 'Battle of the Boonie Hat', NULL, '2023-06-22 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3049, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6156121', 'RTO School', NULL, '2023-06-23 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3050, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6149499', 'Defence of Mazar-i-Sharif', NULL, '2023-06-23 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3051, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6156215', 'Co-Pilot', NULL, '2023-06-23 21:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3053, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6164417', 'Battle for Green Mountain', NULL, '2023-06-25 23:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3054, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6152821', '[POSTPONED] Demo Training', NULL, '2023-06-26 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3055, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6158648', 'IDF Training', NULL, '2023-06-26 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3056, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6163750', 'Combat Diver', NULL, '2023-06-27 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3057, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6165461', 'Demo Training', NULL, '2023-06-28 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3058, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6166388', 'The Raid on Elektro', NULL, '2023-06-28 23:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3059, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6176502', 'Gorkha Boyz training/ftx/familiarization/thing/bly', NULL, '2023-06-29 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3060, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6176439', 'Operation Atlas', NULL, '2023-06-30 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3061, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6161437', 'Carrier Landing Training', NULL, '2023-06-30 19:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3062, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6180853', 'NCO Meeting', NULL, '2023-07-01 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3064, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6182410', 'The Evacuation', NULL, '2023-07-03 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3065, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6177548', '[Rescheduled] JTAC Bookwork and Qualification', NULL, '2023-07-03 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3066, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6182825', 'Mechanized Training/Qual', NULL, '2023-07-05 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3067, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6185812', 'Operation Atlas P2', NULL, '2023-07-06 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3068, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6177485', 'Basic Training', NULL, '2023-07-07 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3069, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6176476', '68W Training', NULL, '2023-07-07 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3070, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6183891', 'JTAC Bookwork', NULL, '2023-07-07 00:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3071, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6163389', 'Operation Refill', NULL, '2023-07-08 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3072, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6176988', 'Sniper Course', NULL, '2023-07-08 01:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3073, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6334348', 'NCO Meeting', NULL, '2023-07-08 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3074, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6187651', 'A lovely stroll through contact', NULL, '2023-07-09 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3075, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6136733', 'COMMUNITY ROUNDTABLE & LEADERSHIP VOTES', NULL, '2023-07-09 19:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3076, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6187015', 'Demolitions Training', NULL, '2023-07-10 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3077, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6187969', 'Anti Armor School', NULL, '2023-07-11 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3078, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6187963', 'AIT 1', NULL, '2023-07-12 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3079, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6335687', 'Rotary Logistics Qualification', NULL, '2023-07-12 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3080, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6188819', 'Echo Orientation', NULL, '2023-07-12 23:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3081, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6334878', 'All Quiet on the Eastern Front', NULL, '2023-07-13 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3082, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6334903', 'Basic Training', NULL, '2023-07-14 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3083, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6188074', 'JTAC Qualification', NULL, '2023-07-14 00:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3084, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6188027', '[Rescheduled] Enter and Clear a Trench', NULL, '2023-07-15 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3085, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6337021', 'Friday Night Fire Fight - An AJ production', NULL, '2023-07-15 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3086, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6335700', '[RESCHEDULED] Echo gang meet', NULL, '2023-07-15 18:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3087, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6340748', 'NCO Meeting', NULL, '2023-07-15 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3088, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6338308', 'Taskforce 74 : A Bridge Too Far', NULL, '2023-07-16 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3089, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6337689', '[Cancelled] ECHO GANG MEET FOR REAL', NULL, '2023-07-16 18:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3090, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6335666', '68W Training', NULL, '2023-07-16 20:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3091, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6341710', 'Cold Pipe Event - A mostly prepared affair', NULL, '2023-07-16 23:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3092, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6333850', 'Forward Observer', NULL, '2023-07-18 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3093, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6342302', 'Rotary Logistics Training', NULL, '2023-07-18 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3094, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6187964', 'AIT 2', NULL, '2023-07-19 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3095, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6338342', 'Copilot Training/Qual', NULL, '2023-07-19 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3096, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6337236', 'JTAC/CAS Reps practice', NULL, '2023-07-19 22:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3097, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6337970', 'Operation Atlas P3', NULL, '2023-07-20 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3098, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6340845', 'Alpha Meeting', NULL, '2023-07-20 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3099, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6335682', '[RESCHEDULED] A CO TRAINING 60MM', NULL, '2023-07-21 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3100, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6342769', 'Basic Training', NULL, '2023-07-21 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3101, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6342591', 'Basic Training', NULL, '2023-07-21 22:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3102, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6335638', 'Operation Mighty Mouse', NULL, '2023-07-22 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3103, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6346982', 'NCO Meeting', NULL, '2023-07-22 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3104, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6338355', 'Taskforce74: The Hornet\'s Nest', NULL, '2023-07-23 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3105, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6338353', 'BN SMOKE SESH(reschuedeled for the 30th)', NULL, '2023-07-23 19:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3106, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6347056', 'Operation Jubilant : The Ignition', NULL, '2023-07-23 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3107, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6335667', 'Triage & Mass Cas Training', NULL, '2023-07-25 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3108, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6342298', 'Fixed Wing CAS Training', NULL, '2023-07-25 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3109, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6342306', 'Rotary Logistics Training', NULL, '2023-07-25 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3110, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6187966', 'AIT 3', NULL, '2023-07-26 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3111, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6342307', '[RESCHEDULED] Rotary Logistics Qual', NULL, '2023-07-26 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3112, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6349618', 'Calling All Pilots', NULL, '2023-07-26 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3113, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6343294', 'Operation Jubilant Part 1 : Unwavering Resolve', NULL, '2023-07-27 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3114, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6348788', 'Jump Wings', NULL, '2023-07-27 22:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3115, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6347034', 'Op Jubilant Part 2 : Unwavering Resolve', NULL, '2023-07-28 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3116, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6342115', '[RESCHEDULED] Jump Wings', NULL, '2023-07-28 00:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3117, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6342328', 'Demo Training', NULL, '2023-07-29 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3118, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6349354', 'Rotary Logistics Qualification', NULL, '2023-07-29 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3119, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6353008', 'BN smoke sesh', NULL, '2023-07-29 22:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3120, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6353825', 'NCO Meeting', NULL, '2023-07-29 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3121, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6338358', 'Taskforce 74: The Killing Fields', NULL, '2023-07-30 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3122, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6341797', '[CANCELLED] Stitchin’ and Bitchin’', NULL, '2023-07-30 22:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3123, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6353830', 'AIT 3', NULL, '2023-08-02 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3124, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6187967', '[Rescheduled] AIT 4', NULL, '2023-08-02 01:15:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3125, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6342044', 'Operation Atlas P4', NULL, '2023-08-03 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3126, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6357710', 'A training I don\'t know what yet', NULL, '2023-08-03 21:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3127, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6347591', 'Echo Orientation', NULL, '2023-08-04 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3128, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6358666', 'Basic Training', NULL, '2023-08-05 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3129, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6358652', 'Exterminautus : An extremely fictional operation', NULL, '2023-08-05 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3130, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6359940', 'NCO Meeting', NULL, '2023-08-05 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3131, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6357867', 'Taskforce 74: Apocalypse Now', NULL, '2023-08-06 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3132, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6360509', 'Altis Excursion', NULL, '2023-08-07 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3133, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6361592', 'Arma3 Server Performance Work', NULL, '2023-08-08 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3134, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6358668', 'Fixed Wing Logistics Training', NULL, '2023-08-08 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3135, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6353831', 'AIT 4', NULL, '2023-08-09 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3136, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6358669', 'Fixed Wing Logistics Qualification', NULL, '2023-08-09 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3137, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6361704', 'Arma 3 Whitelist Maintance', NULL, '2023-08-09 03:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3138, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6357892', 'Combat life saver', NULL, '2023-08-10 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3139, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6361709', 'Operation Atlas P5', NULL, '2023-08-10 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3140, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6361659', 'NCO Course Testing', NULL, '2023-08-10 03:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3141, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6361524', 'Basic Training', NULL, '2023-08-10 22:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3142, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6359850', 'The Takistan Crisis 1', NULL, '2023-08-11 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3143, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6363479', 'Mechanized Testing P2', NULL, '2023-08-12 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3144, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6357559', '[Canceled] NEW RSLC TRIAL MISSION', NULL, '2023-08-12 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3145, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6347053', 'RASP', NULL, '2023-08-13 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3146, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6363218', 'Stitchin\' and Bitchin\' Take 2', NULL, '2023-08-13 22:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3147, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6364333', 'Alpha Meeting', NULL, '2023-08-14 22:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3148, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6362935', 'Armed Blackfish Practice', NULL, '2023-08-16 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3149, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6359849', 'The Takistan Crisis 2', NULL, '2023-08-17 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3150, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6367635', 'Rotary Wing CAS Training', NULL, '2023-08-17 20:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3151, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6367439', 'Basic Training', NULL, '2023-08-17 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3152, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6370006', 'LEADERS RECON WIT KEN', NULL, '2023-08-18 01:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3153, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6361712', 'Operation Atlas P6', NULL, '2023-08-19 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3154, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6372777', 'NCO Meeting', NULL, '2023-08-19 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3155, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6361542', 'Taskforce 74: Act of Valor', NULL, '2023-08-20 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3156, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6364123', 'command meeting with Ken', NULL, '2023-08-20 20:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3157, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6367357', 'How to Zeus 101', NULL, '2023-08-20 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3158, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6373942', 'Iceberg Server Reboot', NULL, '2023-08-21 02:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3159, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6370581', 'Land Navigation', NULL, '2023-08-22 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3160, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6367308', 'Combat Life Saver Training', NULL, '2023-08-23 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3161, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6377590', 'Basic Training', NULL, '2023-08-23 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3162, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6361710', 'Operation Atlas P7', NULL, '2023-08-24 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3163, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6373787', 'Rotary Wing CAS Qualification', NULL, '2023-08-25 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3164, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6359397', 'Operation Stonewall', NULL, '2023-08-26 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3165, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6383149', 'NCO Meeting', NULL, '2023-08-26 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3166, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6374818', 'Taskforce 74: Courage Under Fire', NULL, '2023-08-27 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3167, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6367358', '[RESCHEDULED] Eden Editor Workshop #1', NULL, '2023-08-27 22:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3168, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6367309', '68W (Medic) Training', NULL, '2023-08-29 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3169, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6368434', 'EOD Training', NULL, '2023-08-30 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3170, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6361711', 'Operation Atlas P8', NULL, '2023-08-31 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3171, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6382618', 'Alpha 60mm mortar training', NULL, '2023-08-31 23:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3172, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6374748', '[CANEX] RSLC', NULL, '2023-09-01 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3173, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6382573', 'MOD SHAKEDOWN SEREIS: THE DRIP', NULL, '2023-09-02 00:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3174, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6387592', 'Taskforce 74: Behind Enemy Lines', NULL, '2023-09-03 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3175, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6382559', 'Campaign Maker smoke sesh', NULL, '2023-09-03 20:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3176, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6387266', 'Fixed Wing CAS training', NULL, '2023-09-04 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3177, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6367310', 'Mass Cas & Triage Training', NULL, '2023-09-05 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3178, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6394610', 'A3 Serer Updates 2.14', NULL, '2023-09-05 19:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3179, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6394628', 'The Battle for Altis ; Part 1', NULL, '2023-09-07 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3180, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6393686', 'Combat Drills: Ground Assault', NULL, '2023-09-08 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3181, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6395182', 'Co-Pilot Training/Qual', NULL, '2023-09-08 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3182, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6359398', 'North Takistan SERE - Stage 1', NULL, '2023-09-09 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3183, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6388603', 'Taskforce 74: A Few Good Men(and Baker)', NULL, '2023-09-10 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3184, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6393700', 'NCO Leadership Training', NULL, '2023-09-13 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3185, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6394629', 'The Battle for Altis ; Part 2', NULL, '2023-09-14 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3186, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6359399', 'North Takistan SERE - Stage 2', NULL, '2023-09-16 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3187, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6401889', 'Basic Training', NULL, '2023-09-16 17:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3188, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6408068', 'Alpha NCO meeting', NULL, '2023-09-16 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3189, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6388604', 'Taskforce 74: POST CREDIT OP(USING TEST SHADOW MOD', NULL, '2023-09-17 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3190, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6403562', 'COMMAND MEETING WIT KEN', NULL, '2023-09-17 20:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3191, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6394630', 'The Battle for Altis ; Part 3', NULL, '2023-09-21 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3192, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6404369', 'Mechanized Training/Qual', NULL, '2023-09-21 23:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3193, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6359400', 'North Takistan SERE - Stage 3', NULL, '2023-09-23 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3194, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6421257', 'ACE ARMOR ADJUSTER', NULL, '2023-09-23 02:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3195, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6388606', 'BN TRAINING: SQUAD LANES', NULL, '2023-09-24 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3196, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6419492', 'DnD FTL/SL Training', NULL, '2023-09-25 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3197, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6396837', 'Demo Training', NULL, '2023-09-26 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3198, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6393703', 'AIT 1', NULL, '2023-09-27 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3199, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6394631', 'The Battle for Altis ; FINALE', NULL, '2023-09-28 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3200, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6427422', 'DnD FTL/SL Training Session #2', NULL, '2023-09-29 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3201, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6431478', 'Basic Training', NULL, '2023-09-29 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3202, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6361713', 'Operation Atlas Finale', NULL, '2023-09-30 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3203, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6401811', 'RASP', NULL, '2023-10-01 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3204, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6425022', '17th Shadow Mod Update - Mod Change Prioroty over ', NULL, '2023-10-01 18:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3205, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6439625', 'COMAMND THINGS WIT KEN(NOT THE MONTHLY MEETING)', NULL, '2023-10-01 20:30:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3206, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6427423', 'DnD FTL/SL Training Session #3', NULL, '2023-10-02 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3207, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6429351', 'Advanced UAV', NULL, '2023-10-04 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3208, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6440863', 'CSAT familiarization training', NULL, '2023-10-06 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3209, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6448282', 'Echo Orientation', NULL, '2023-10-06 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3210, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6442978', 'DnD FTL/SL Training Session #4', NULL, '2023-10-06 02:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3211, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6440034', 'Rotary Logistics Training', NULL, '2023-10-06 20:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3212, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6448287', 'Basic Training', NULL, '2023-10-06 21:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3213, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6445375', 'AIT 1 Second Run', NULL, '2023-10-06 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3214, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6453777', 'NCO Meeting', NULL, '2023-10-07 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3215, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6445440', 'The Interitus Campaign - Part 1', NULL, '2023-10-08 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3216, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6439635', 'COMMAND MEETING WITH KEN', NULL, '2023-10-08 20:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3217, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6455213', 'Echo Orientation', NULL, '2023-10-09 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3218, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6455470', 'Mechanized Training', NULL, '2023-10-10 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3219, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6443067', 'AIT 2', NULL, '2023-10-11 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3220, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6455503', 'Combat Life Saver Training', NULL, '2023-10-11 21:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3221, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6462068', '[Canceled] Understanding the AI Targeting System', NULL, '2023-10-12 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3222, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6463218', 'Battle of the Boonie P2', NULL, '2023-10-12 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3223, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6455460', 'FTX: Big Brother Bradley V2', NULL, '2023-10-13 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3224, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6460928', 'Operation New Threat', NULL, '2023-10-14 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3225, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6455211', 'Echo Mechanized Gunnery', NULL, '2023-10-14 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3226, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6469583', '[Cancelled] Basic Training', NULL, '2023-10-14 19:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3227, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6470016', 'NCO Meeting', NULL, '2023-10-14 23:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3228, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6453951', 'The Interitus Campaign - Part 2', NULL, '2023-10-15 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3229, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6461696', 'CSAT Familiarization', NULL, '2023-10-17 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3230, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6462129', 'Heavy Weapons School', NULL, '2023-10-18 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3231, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6462214', 'The Most Dangerous Game P1', NULL, '2023-10-19 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3232, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6465907', 'flight training with Ken', NULL, '2023-10-20 00:00:00', '2025-02-22 17:31:08', '2025-02-22 17:31:08', NULL, NULL), - (3233, 'f50565c0-fdae-4483-ac65-4ccb8563ceb0', '6462215', '[RESCHEDULED] The Most Dangerous Game P2